diff --git a/cmd/readeef/server.go b/cmd/readeef/server.go index a20f3ffa..6ccbf254 100644 --- a/cmd/readeef/server.go +++ b/cmd/readeef/server.go @@ -384,9 +384,9 @@ func initThumbnailGenerator( log log.Log, ) (thumbnail.Generator, error) { - switch config.ThumbnailGenerator { + switch config.Thumbnail.Generator { case "extract": - if t, err := thumbnail.FromExtract(service.ThumbnailRepo(), service.ExtractRepo(), extract, processors, log); err == nil { + if t, err := thumbnail.FromExtract(service.ThumbnailRepo(), service.ExtractRepo(), extract, processors, config.Thumbnail.Store, log); err == nil { return t, nil } else { return nil, errors.WithMessage(err, "initializing Extract thumbnail generator") @@ -394,7 +394,7 @@ func initThumbnailGenerator( case "description": fallthrough default: - return thumbnail.FromDescription(service.ThumbnailRepo(), log), nil + return thumbnail.FromDescription(service.ThumbnailRepo(), config.Thumbnail.Store, log), nil } } diff --git a/config/config.go b/config/config.go index 8e06ccbb..62cf11c2 100644 --- a/config/config.go +++ b/config/config.go @@ -37,7 +37,7 @@ func Read(path string) (Config, error) { return Config{}, err } - for _, c := range []converter{&c.API, &c.Log, &c.Timeout, &c.FeedManager, &c.Popularity} { + for _, c := range []converter{&c.API, &c.Log, &c.Timeout, &c.FeedManager, &c.Popularity, &c.Content} { c.Convert() } diff --git a/config/default.go b/config/default.go index 2615651a..1920d65a 100644 --- a/config/default.go +++ b/config/default.go @@ -53,8 +53,6 @@ var DefaultCfg = ` [feed-parser] processors = ["cleanup", "top-image-marker", "absolutize-urls"] proxy-http-url-template = "/proxy?url={{ . }}" -[content] - thumbnail-generator = "description" [content.extract] generator = "goose" # readability [content.search] @@ -65,6 +63,8 @@ var DefaultCfg = ` [content.article] processors = ["insert-thumbnail-target"] proxy-http-url-template = "/proxy?url={{ . }}" +[content.thumbnail] + store = true [ui] path = "./rf-ng/ui" ` diff --git a/config/parts.go b/config/parts.go index 2056a58c..4a797e2b 100644 --- a/config/parts.go +++ b/config/parts.go @@ -109,7 +109,10 @@ type FeedManager struct { } type Content struct { - ThumbnailGenerator string `toml:"thumbnail-generator"` + Thumbnail struct { + Generator string `toml:"generator"` + Store bool `toml:"store"` + } `toml:"thumbnail"` Extract struct { Generator string `toml:"generator"` @@ -127,6 +130,9 @@ type Content struct { Processors []string `toml:"processors"` ProxyHTTPURLTemplate string `toml:"proxy-http-url-template"` } `toml:"article"` + + // deprecated + ThumbnailGenerator string `toml:"thumbnail-generator"` } type UI struct { @@ -183,3 +189,13 @@ func (c *FeedManager) Convert() { c.Converted.UpdateInterval = 30 * time.Minute } } + +func (c *Content) Convert() { + if c.Thumbnail.Generator == "" { + if c.ThumbnailGenerator != "" { + c.Thumbnail.Generator = c.ThumbnailGenerator + } else { + c.Thumbnail.Generator = "description" + } + } +} diff --git a/content/thumbnail/description.go b/content/thumbnail/description.go index 34f32d99..45013c2d 100644 --- a/content/thumbnail/description.go +++ b/content/thumbnail/description.go @@ -11,12 +11,13 @@ import ( ) type description struct { - repo repo.Thumbnail - log log.Log + repo repo.Thumbnail + store bool + log log.Log } -func FromDescription(repo repo.Thumbnail, log log.Log) Generator { - return description{repo: repo, log: log} +func FromDescription(repo repo.Thumbnail, store bool, log log.Log) Generator { + return description{repo: repo, store: store, log: log} } func (t description) Generate(a content.Article) error { @@ -27,6 +28,10 @@ func (t description) Generate(a content.Article) error { thumbnail.Thumbnail, thumbnail.Link = generateThumbnailFromDescription(strings.NewReader(a.Description)) + if !t.store { + thumbnail.Thumbnail = "" + } + if err := t.repo.Update(thumbnail); err != nil { return errors.WithMessage(err, fmt.Sprintf("saving thumbnail of %s", a)) } diff --git a/content/thumbnail/extract.go b/content/thumbnail/extract.go index 036f7ce2..116527c1 100644 --- a/content/thumbnail/extract.go +++ b/content/thumbnail/extract.go @@ -18,6 +18,7 @@ type ext struct { extractRepo repo.Extract generator extract.Generator processors []processor.Article + store bool log log.Log } @@ -26,6 +27,7 @@ func FromExtract( extractRepo repo.Extract, g extract.Generator, processors []processor.Article, + store bool, log log.Log, ) (Generator, error) { if g == nil { @@ -34,7 +36,7 @@ func FromExtract( processors = filterProcessors(processors) - return ext{repo: repo, extractRepo: extractRepo, generator: g, processors: processors, log: log}, nil + return ext{repo: repo, extractRepo: extractRepo, generator: g, processors: processors, store: store, log: log}, nil } func (t ext) Generate(a content.Article) error { @@ -57,11 +59,17 @@ func (t ext) Generate(a content.Article) error { t.log.Debugf("Extract for %s doesn't contain a top image", a) } else { t.log.Debugf("Generating thumbnail from top image %s of %s\n", extract.TopImage, a) - thumbnail.Thumbnail = generateThumbnailFromImageLink(extract.TopImage) + if t.store { + thumbnail.Thumbnail = generateThumbnailFromImageLink(extract.TopImage) + } thumbnail.Link = extract.TopImage } } + if !t.store { + thumbnail.Thumbnail = "" + } + if err := t.repo.Update(thumbnail); err != nil { return errors.WithMessage(err, "saving thumbnail to repo") } diff --git a/fs_files.go b/fs_files.go index f7f6e52d..de8b8aab 100644 --- a/fs_files.go +++ b/fs_files.go @@ -20,83 +20,83 @@ func NewFileSystem() (http.FileSystem, error) { fs.Fallback = true - if err := fs.Add("rf-ng/ui/bg/3rdpartylicenses.txt", 34866, os.FileMode(420), time.Unix(1584880252, 0), "@angular-devkit/build-angular\nMIT\nThe MIT License\n\nCopyright (c) 2017 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n@angular/animations\nMIT\n\n@angular/cdk\nMIT\nThe MIT License\n\nCopyright (c) 2020 Google LLC.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\n@angular/common\nMIT\n\n@angular/core\nMIT\n\n@angular/forms\nMIT\n\n@angular/material\nMIT\nThe MIT License\n\nCopyright (c) 2020 Google LLC.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\n@angular/platform-browser\nMIT\n\n@angular/router\nMIT\n\n@ng-bootstrap/ng-bootstrap\nMIT\nThe MIT License (MIT)\n\nCopyright (c) 2015-2018 Angular ng-bootstrap team\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\n@tweenjs/tween.js\nMIT\nThe MIT License\n\nCopyright (c) 2010-2012 Tween.js authors.\n\nEasing equations Copyright (c) 2001 Robert Penner http://robertpenner.com/easing/\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\nbootstrap\nMIT\nThe MIT License (MIT)\n\nCopyright (c) 2011-2019 Twitter, Inc.\nCopyright (c) 2011-2019 The Bootstrap Authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\ncore-js\nMIT\nCopyright (c) 2014-2020 Denis Pushkarev\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\njwt-decode\nMIT\nThe MIT License (MIT)\n \nCopyright (c) 2015 Auth0, Inc. (http://auth0.com)\n \nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n \nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n \nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\nmoment\nMIT\nCopyright (c) JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\n\nngx-virtual-scroller\nMIT\nThe MIT License (MIT)\n\nCopyright (c) 2016 Rinto Jose (rintoj)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\nregenerator-runtime\nMIT\nMIT License\n\nCopyright (c) 2014-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\nrxjs\nApache-2.0\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n \n\n\ntslib\nApache-2.0\nApache License\n\nVersion 2.0, January 2004\n\nhttp://www.apache.org/licenses/ \n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of this License; and\n\nYou must cause any modified files to carry prominent notices stating that You changed the files; and\n\nYou must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\n\nwebpack\nMIT\nCopyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nzone.js\nMIT\nThe MIT License\n\nCopyright (c) 2010-2020 Google LLC. http://angular.io/license\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"); err != nil { + if err := fs.Add("rf-ng/ui/bg/3rdpartylicenses.txt", 34866, os.FileMode(420), time.Unix(1587937639, 0), "@angular-devkit/build-angular\nMIT\nThe MIT License\n\nCopyright (c) 2017 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n@angular/animations\nMIT\n\n@angular/cdk\nMIT\nThe MIT License\n\nCopyright (c) 2020 Google LLC.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\n@angular/common\nMIT\n\n@angular/core\nMIT\n\n@angular/forms\nMIT\n\n@angular/material\nMIT\nThe MIT License\n\nCopyright (c) 2020 Google LLC.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\n@angular/platform-browser\nMIT\n\n@angular/router\nMIT\n\n@ng-bootstrap/ng-bootstrap\nMIT\nThe MIT License (MIT)\n\nCopyright (c) 2015-2018 Angular ng-bootstrap team\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\n@tweenjs/tween.js\nMIT\nThe MIT License\n\nCopyright (c) 2010-2012 Tween.js authors.\n\nEasing equations Copyright (c) 2001 Robert Penner http://robertpenner.com/easing/\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\nbootstrap\nMIT\nThe MIT License (MIT)\n\nCopyright (c) 2011-2019 Twitter, Inc.\nCopyright (c) 2011-2019 The Bootstrap Authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\ncore-js\nMIT\nCopyright (c) 2014-2020 Denis Pushkarev\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\njwt-decode\nMIT\nThe MIT License (MIT)\n \nCopyright (c) 2015 Auth0, Inc. (http://auth0.com)\n \nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n \nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n \nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\nmoment\nMIT\nCopyright (c) JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\n\nngx-virtual-scroller\nMIT\nThe MIT License (MIT)\n\nCopyright (c) 2016 Rinto Jose (rintoj)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\nregenerator-runtime\nMIT\nMIT License\n\nCopyright (c) 2014-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\nrxjs\nApache-2.0\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n \n\n\ntslib\nApache-2.0\nApache License\n\nVersion 2.0, January 2004\n\nhttp://www.apache.org/licenses/ \n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of this License; and\n\nYou must cause any modified files to carry prominent notices stating that You changed the files; and\n\nYou must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\n\nwebpack\nMIT\nCopyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\nzone.js\nMIT\nThe MIT License\n\nCopyright (c) 2010-2020 Google LLC. http://angular.io/license\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"); err != nil { return nil, errors.Wrap(err, fmt.Sprintf("packing file rf-ng/ui/bg/3rdpartylicenses.txt")) } - if err := fs.Add("rf-ng/ui/bg/favicon.ico", 5430, os.FileMode(420), time.Unix(1584880252, 0), "\x00\x00\x01\x00\x02\x00\x10\x10\x00\x00\x00\x00 \x00h\x04\x00\x00&\x00\x00\x00 \x00\x00\x00\x00 \x00\xa8\x10\x00\x00\x8e\x04\x00\x00(\x00\x00\x00\x10\x00\x00\x00 \x00\x00\x00\x01\x00 \x00\x00\x00\x00\x00@\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1U61\xdf\xdf0-\xba\xc72.\xc3;\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1971\xe1\xc771\xe1\xff71\xe0\xff0-\xb5\xff0-\xb5\xff1-\xbb\xad3/\xc7#\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1!71\xe1\xab71\xe1\xff71\xe1\xff71\xe1\xff71\xe0\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb6\xfb1-\xbc\x8f3/\xca\x0f\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1U71\xe1\xfbOI\xe4\xffVQ\xe5\xff82\xe1\xff71\xe1\xff71\xe0\xff0-\xb5\xff0-\xb5\xff0-\xb5\xffUR\xc2\xffKH\xbe\xff0-\xb8\xf12.\xc2=\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\x8771\xe1\xff\x93\x8f\xee\xff\xff\xff\xff\xffmh\xe9\xff71\xe1\xff71\xe0\xff0-\xb5\xff0-\xb5\xff[X\xc4\xff\xff\xff\xff\xff\x87\x85\xd4\xff0-\xb5\xff1.\xbc{\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xb371\xe1\xffC=\xe2\xff\xf5\xf4\xfd\xff\xbd\xbb\xf5\xff71\xe1\xff71\xe0\xff0-\xb5\xff0-\xb5\xff\xb4\xb3\xe4\xff\xee\xee\xf9\xff85\xb7\xff0-\xb5\xff0-\xb7\x8d\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xd971\xe1\xff71\xe1\xff\xa8\xa5\xf2\xff\xfb\xfb\xfe\xff\xd9\xd8\xf9\xff\xd9\xd8\xf9\xff\xd8\xd8\xf1\xff\xd8\xd8\xf1\xff\xfb\xfb\xfd\xff\x96\x95\xd9\xff0-\xb5\xff0-\xb5\xff1-\xbb\xbf\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xf371\xe1\xff71\xe1\xffQL\xe5\xff\xfc\xfc\xfe\xff\xe5\xe4\xfb\xff\xb4\xb2\xf3\xff\xb1\xb0\xe3\xff\xe3\xe2\xf5\xff\xf6\xf6\xfc\xff?<\xba\xff0-\xb5\xff0-\xb5\xff0-\xbb\xe5\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xfd71\xe1\xff71\xe1\xff71\xe1\xff\xbe\xbb\xf5\xff\xed\xed\xfc\xff;5\xe0\xff:7\xb8\xff\xf0\xef\xf9\xff\xa5\xa4\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb8\xf9\xff\xff\xff\x0171\xe1#71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffd_\xe7\xff\xff\xff\xff\xff}y\xea\xff\x8e\x8c\xd6\xff\xfb\xfb\xfd\xffIG\xbe\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff4/\xcb\x0f71\xe1M71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\xd3\xd1\xf8\xff\xd4\xd2\xf8\xff\xeb\xeb\xf7\xff\xb5\xb4\xe5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff3/\xc7A71\xe1k71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffzv\xea\xff\xff\xff\xff\xff\xfe\xfe\xff\xffVS\xc2\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff2.\xc3e71\xe1}71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff93\xe1\xff\xe6\xe5\xfb\xff\xc5\xc4\xea\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1.\xbc{71\xe1A71\xe1\xd571\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\x8f\x8c\xee\xffdb\xc8\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1-\xba\xdd0-\xb9E\xff\xff\xff\x01\xff\xff\xff\x0171\xe1)71\xe1\x8571\xe1\xe771\xe1\xff71\xe1\xff=7\xe1\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xba\xe51-\xbb\x853/\xc7/\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1A71\xe1\x9761\xdf\xf30-\xb9\xeb0-\xba\x8b3.\xc69\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff(\x00\x00\x00 \x00\x00\x00@\x00\x00\x00\x01\x00 \x00\x00\x00\x00\x00\x80\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\x8b61\xdd\xf72.\xc0\xe33/\xca?\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1_71\xe1\xf171\xe1\xff71\xdf\xff0-\xb5\xff0-\xb6\xff2.\xc3\xcb3/\xca\x1f\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1;71\xe1\xe171\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb8\xff3.ŭ4/\xcd\v\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\x1d71\xe1\xc771\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1.\xbb\xfb3/lj\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\t71\xe1\xa971\xe1\xfd71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1.\xbd\xf13/\xc9_\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\x8371\xe1\xf971\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff2.\xc1\xdf3/\xca;\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1Y71\xe1\xef71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb6\xff2.\xc3\xc73/\xcb\x1d\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xf971\xe1\xff71\xe1\xffXS\xe6\xffwr\xeb\xffvr\xea\xffvr\xea\xff<7\xe2\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xffwu\xce\xff~|\xd1\xff~|\xd1\xffNK\xc0\xff0-\xb5\xff0-\xb5\xff2.\xc1\xd9\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xff71\xe1\xff71\xe1\xffUP\xe5\xff\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff{w\xeb\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xffYW\xc4\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfa\xfa\xfd\xffDB\xbc\xff0-\xb5\xff0-\xb5\xff1.\xbe\xed\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\x1b71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\xc2\xc0\xf6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xcb\xca\xf7\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff\xb3\xb2\xe4\xff\xff\xff\xff\xff\xff\xff\xff\xff\xae\xad\xe2\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1.\xbb\xfb\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1O71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffhc\xe8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xffSN\xe5\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xffB?\xbb\xff\xfa\xfa\xfd\xff\xff\xff\xff\xff\xfe\xfe\xff\xffPM\xc0\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb6\xff50\xd2\x03\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1}71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\xd7\xd6\xf9\xff\xff\xff\xff\xff\xff\xff\xff\xff\xa3\xa0\xf1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff\x95\x94\xd9\xff\xff\xff\xff\xff\xff\xff\xff\xff\xbd\xbc\xe7\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff3/\xcb3\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xa571\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff~{\xec\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf2\xf1\xfd\xff\xb4\xb2\xf4\xff\xb4\xb2\xf4\xff\xb4\xb2\xf4\xff\xb4\xb2\xf3\xff\xb2\xb1\xe3\xff\xb2\xb1\xe3\xff\xb2\xb1\xe3\xff\xb2\xb1\xe3\xff\xef\xef\xf9\xff\xff\xff\xff\xff\xff\xff\xff\xff][\xc5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff3/\xc8i\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xc371\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff;5\xe2\xff\xe9\xe8\xfc\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xcd\xcd\xed\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff3/Ǘ\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xdd71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\x93\x90\xef\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xffmk\xcb\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff2.Ž\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xef71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffD>\xe3\xff\xf6\xf6\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\x97\x94\xef\xffie\xe9\xffie\xe7\xffdb\xc8\xffdb\xc8\xff\x90\x8e\xd7\xff\xff\xff\xff\xff\xff\xff\xff\xff\xdc\xdc\xf3\xff1.\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff2.\xc2\xd9\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xfb71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\xaa\xa7\xf2\xff\xff\xff\xff\xff\xff\xff\xff\xff\xbc\xba\xf5\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff\xc3\xc2\xea\xff\xff\xff\xff\xff\xff\xff\xff\xff|z\xd0\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff2.\xbe\xed\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffRL\xe5\xff\xfd\xfd\xff\xff\xff\xff\xff\xff\xfc\xfc\xff\xffJD\xe4\xff71\xdf\xff0-\xb5\xffXU\xc3\xff\xff\xff\xff\xff\xff\xff\xff\xff\xe7\xe7\xf7\xff52\xb7\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1.\xbb\xfb\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1+71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\xbe\xbc\xf5\xff\xff\xff\xff\xff\xff\xff\xff\xff\x9a\x97\xf0\xff71\xdf\xff0-\xb5\xff\xba\xb9\xe6\xff\xff\xff\xff\xff\xff\xff\xff\xff\x8d\x8b\xd6\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb6\xff50\xd6\x05\xff\xff\xff\x01\xff\xff\xff\x0171\xe1]71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffea\xe8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xea\xe9\xfc\xff:4\xe0\xffQO\xc1\xff\xfe\xfe\xff\xff\xff\xff\xff\xff\xf2\xf2\xfa\xff:7\xb8\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff4/\xcb5\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\x8971\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\xd5\xd3\xf9\xff\xff\xff\xff\xff\xff\xff\xff\xffwr\xe9\xff\xb2\xb1\xe3\xff\xff\xff\xff\xff\xff\xff\xff\xff\x9c\x9b\xdc\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff3/\xc9k\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xad71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffzv\xeb\xff\xff\xff\xff\xff\xff\xff\xff\xff\xdb\xda\xf9\xff\xfd\xfd\xfe\xff\xff\xff\xff\xff\xf9\xf8\xfd\xffC@\xbc\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff3/Ǘ\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xcb71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff:4\xe1\xff\xe7\xe6\xfb\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xab\xa9\xe1\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff2.Ž\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xe371\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\x90\x8d\xee\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xff\xffMK\xbf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff2.\xc2\xd9\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xf371\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffB<\xe3\xff\xf5\xf4\xfd\xff\xff\xff\xff\xff\xff\xff\xff\xff\xbb\xba\xe7\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff2.\xbf\xef\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xfd71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\xa5\xa2\xf1\xff\xff\xff\xff\xff\xff\xff\xff\xff[Y\xc4\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1.\xbb\xfb\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xfd71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffOJ\xe5\xff\xfd\xfd\xff\xff\xc9\xc9\xec\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb8\xff\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\x0571\xe1y71\xe1\xdd71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\xbc\xba\xf4\xffjg\xca\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb6\xff2.\xc0\xe73/Ɠ4/\xce\x15\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\x1371\xe1\x9371\xe1\xe971\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffPK\xe3\xff1.\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb6\xff2.\xbf\xeb3/Ǜ3/\xca\x1d\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1)71\xe1\xa971\xe1\xf371\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1.\xbe\xef3/ƥ4/\xcc'\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1C71\xe1\xbf71\xe1\xf971\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1.\xbd\xf33.ů3/\xca1\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1a71\xe1\xd161\xde\xfb1.\xbc\xf72.ŷ3/\xcb=\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"); err != nil { + if err := fs.Add("rf-ng/ui/bg/favicon.ico", 5430, os.FileMode(420), time.Unix(1587937639, 0), "\x00\x00\x01\x00\x02\x00\x10\x10\x00\x00\x00\x00 \x00h\x04\x00\x00&\x00\x00\x00 \x00\x00\x00\x00 \x00\xa8\x10\x00\x00\x8e\x04\x00\x00(\x00\x00\x00\x10\x00\x00\x00 \x00\x00\x00\x01\x00 \x00\x00\x00\x00\x00@\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1U61\xdf\xdf0-\xba\xc72.\xc3;\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1971\xe1\xc771\xe1\xff71\xe0\xff0-\xb5\xff0-\xb5\xff1-\xbb\xad3/\xc7#\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1!71\xe1\xab71\xe1\xff71\xe1\xff71\xe1\xff71\xe0\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb6\xfb1-\xbc\x8f3/\xca\x0f\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1U71\xe1\xfbOI\xe4\xffVQ\xe5\xff82\xe1\xff71\xe1\xff71\xe0\xff0-\xb5\xff0-\xb5\xff0-\xb5\xffUR\xc2\xffKH\xbe\xff0-\xb8\xf12.\xc2=\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\x8771\xe1\xff\x93\x8f\xee\xff\xff\xff\xff\xffmh\xe9\xff71\xe1\xff71\xe0\xff0-\xb5\xff0-\xb5\xff[X\xc4\xff\xff\xff\xff\xff\x87\x85\xd4\xff0-\xb5\xff1.\xbc{\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xb371\xe1\xffC=\xe2\xff\xf5\xf4\xfd\xff\xbd\xbb\xf5\xff71\xe1\xff71\xe0\xff0-\xb5\xff0-\xb5\xff\xb4\xb3\xe4\xff\xee\xee\xf9\xff85\xb7\xff0-\xb5\xff0-\xb7\x8d\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xd971\xe1\xff71\xe1\xff\xa8\xa5\xf2\xff\xfb\xfb\xfe\xff\xd9\xd8\xf9\xff\xd9\xd8\xf9\xff\xd8\xd8\xf1\xff\xd8\xd8\xf1\xff\xfb\xfb\xfd\xff\x96\x95\xd9\xff0-\xb5\xff0-\xb5\xff1-\xbb\xbf\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xf371\xe1\xff71\xe1\xffQL\xe5\xff\xfc\xfc\xfe\xff\xe5\xe4\xfb\xff\xb4\xb2\xf3\xff\xb1\xb0\xe3\xff\xe3\xe2\xf5\xff\xf6\xf6\xfc\xff?<\xba\xff0-\xb5\xff0-\xb5\xff0-\xbb\xe5\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xfd71\xe1\xff71\xe1\xff71\xe1\xff\xbe\xbb\xf5\xff\xed\xed\xfc\xff;5\xe0\xff:7\xb8\xff\xf0\xef\xf9\xff\xa5\xa4\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb8\xf9\xff\xff\xff\x0171\xe1#71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffd_\xe7\xff\xff\xff\xff\xff}y\xea\xff\x8e\x8c\xd6\xff\xfb\xfb\xfd\xffIG\xbe\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff4/\xcb\x0f71\xe1M71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\xd3\xd1\xf8\xff\xd4\xd2\xf8\xff\xeb\xeb\xf7\xff\xb5\xb4\xe5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff3/\xc7A71\xe1k71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffzv\xea\xff\xff\xff\xff\xff\xfe\xfe\xff\xffVS\xc2\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff2.\xc3e71\xe1}71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff93\xe1\xff\xe6\xe5\xfb\xff\xc5\xc4\xea\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1.\xbc{71\xe1A71\xe1\xd571\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\x8f\x8c\xee\xffdb\xc8\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1-\xba\xdd0-\xb9E\xff\xff\xff\x01\xff\xff\xff\x0171\xe1)71\xe1\x8571\xe1\xe771\xe1\xff71\xe1\xff=7\xe1\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xba\xe51-\xbb\x853/\xc7/\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1A71\xe1\x9761\xdf\xf30-\xb9\xeb0-\xba\x8b3.\xc69\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff\x00\x00\xff\xff(\x00\x00\x00 \x00\x00\x00@\x00\x00\x00\x01\x00 \x00\x00\x00\x00\x00\x80\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\x8b61\xdd\xf72.\xc0\xe33/\xca?\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1_71\xe1\xf171\xe1\xff71\xdf\xff0-\xb5\xff0-\xb6\xff2.\xc3\xcb3/\xca\x1f\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1;71\xe1\xe171\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb8\xff3.ŭ4/\xcd\v\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\x1d71\xe1\xc771\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1.\xbb\xfb3/lj\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\t71\xe1\xa971\xe1\xfd71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1.\xbd\xf13/\xc9_\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\x8371\xe1\xf971\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff2.\xc1\xdf3/\xca;\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1Y71\xe1\xef71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb6\xff2.\xc3\xc73/\xcb\x1d\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xf971\xe1\xff71\xe1\xffXS\xe6\xffwr\xeb\xffvr\xea\xffvr\xea\xff<7\xe2\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xffwu\xce\xff~|\xd1\xff~|\xd1\xffNK\xc0\xff0-\xb5\xff0-\xb5\xff2.\xc1\xd9\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xff71\xe1\xff71\xe1\xffUP\xe5\xff\xfe\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff{w\xeb\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xffYW\xc4\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfa\xfa\xfd\xffDB\xbc\xff0-\xb5\xff0-\xb5\xff1.\xbe\xed\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\x1b71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\xc2\xc0\xf6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xcb\xca\xf7\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff\xb3\xb2\xe4\xff\xff\xff\xff\xff\xff\xff\xff\xff\xae\xad\xe2\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1.\xbb\xfb\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1O71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffhc\xe8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xffSN\xe5\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xffB?\xbb\xff\xfa\xfa\xfd\xff\xff\xff\xff\xff\xfe\xfe\xff\xffPM\xc0\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb6\xff50\xd2\x03\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1}71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\xd7\xd6\xf9\xff\xff\xff\xff\xff\xff\xff\xff\xff\xa3\xa0\xf1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff\x95\x94\xd9\xff\xff\xff\xff\xff\xff\xff\xff\xff\xbd\xbc\xe7\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff3/\xcb3\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xa571\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff~{\xec\xff\xff\xff\xff\xff\xff\xff\xff\xff\xf2\xf1\xfd\xff\xb4\xb2\xf4\xff\xb4\xb2\xf4\xff\xb4\xb2\xf4\xff\xb4\xb2\xf3\xff\xb2\xb1\xe3\xff\xb2\xb1\xe3\xff\xb2\xb1\xe3\xff\xb2\xb1\xe3\xff\xef\xef\xf9\xff\xff\xff\xff\xff\xff\xff\xff\xff][\xc5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff3/\xc8i\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xc371\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff;5\xe2\xff\xe9\xe8\xfc\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xcd\xcd\xed\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff3/Ǘ\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xdd71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\x93\x90\xef\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xffmk\xcb\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff2.Ž\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xef71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffD>\xe3\xff\xf6\xf6\xfe\xff\xff\xff\xff\xff\xff\xff\xff\xff\x97\x94\xef\xffie\xe9\xffie\xe7\xffdb\xc8\xffdb\xc8\xff\x90\x8e\xd7\xff\xff\xff\xff\xff\xff\xff\xff\xff\xdc\xdc\xf3\xff1.\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff2.\xc2\xd9\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xfb71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\xaa\xa7\xf2\xff\xff\xff\xff\xff\xff\xff\xff\xff\xbc\xba\xf5\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff\xc3\xc2\xea\xff\xff\xff\xff\xff\xff\xff\xff\xff|z\xd0\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff2.\xbe\xed\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffRL\xe5\xff\xfd\xfd\xff\xff\xff\xff\xff\xff\xfc\xfc\xff\xffJD\xe4\xff71\xdf\xff0-\xb5\xffXU\xc3\xff\xff\xff\xff\xff\xff\xff\xff\xff\xe7\xe7\xf7\xff52\xb7\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1.\xbb\xfb\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1+71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\xbe\xbc\xf5\xff\xff\xff\xff\xff\xff\xff\xff\xff\x9a\x97\xf0\xff71\xdf\xff0-\xb5\xff\xba\xb9\xe6\xff\xff\xff\xff\xff\xff\xff\xff\xff\x8d\x8b\xd6\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb6\xff50\xd6\x05\xff\xff\xff\x01\xff\xff\xff\x0171\xe1]71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffea\xe8\xff\xff\xff\xff\xff\xff\xff\xff\xff\xea\xe9\xfc\xff:4\xe0\xffQO\xc1\xff\xfe\xfe\xff\xff\xff\xff\xff\xff\xf2\xf2\xfa\xff:7\xb8\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff4/\xcb5\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\x8971\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\xd5\xd3\xf9\xff\xff\xff\xff\xff\xff\xff\xff\xffwr\xe9\xff\xb2\xb1\xe3\xff\xff\xff\xff\xff\xff\xff\xff\xff\x9c\x9b\xdc\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff3/\xc9k\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xad71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffzv\xeb\xff\xff\xff\xff\xff\xff\xff\xff\xff\xdb\xda\xf9\xff\xfd\xfd\xfe\xff\xff\xff\xff\xff\xf9\xf8\xfd\xffC@\xbc\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff3/Ǘ\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xcb71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff:4\xe1\xff\xe7\xe6\xfb\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xab\xa9\xe1\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff2.Ž\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xe371\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\x90\x8d\xee\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xfe\xff\xffMK\xbf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff2.\xc2\xd9\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xf371\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffB<\xe3\xff\xf5\xf4\xfd\xff\xff\xff\xff\xff\xff\xff\xff\xff\xbb\xba\xe7\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff2.\xbf\xef\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xfd71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\xa5\xa2\xf1\xff\xff\xff\xff\xff\xff\xff\xff\xff[Y\xc4\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1.\xbb\xfb\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\xfd71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffOJ\xe5\xff\xfd\xfd\xff\xff\xc9\xc9\xec\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb8\xff\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\x0571\xe1y71\xe1\xdd71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff\xbc\xba\xf4\xffjg\xca\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb6\xff2.\xc0\xe73/Ɠ4/\xce\x15\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1\x1371\xe1\x9371\xe1\xe971\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xffPK\xe3\xff1.\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb6\xff2.\xbf\xeb3/Ǜ3/\xca\x1d\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1)71\xe1\xa971\xe1\xf371\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1.\xbe\xef3/ƥ4/\xcc'\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1C71\xe1\xbf71\xe1\xf971\xe1\xff71\xe1\xff71\xdf\xff0-\xb5\xff0-\xb5\xff0-\xb5\xff1.\xbd\xf33.ů3/\xca1\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x0171\xe1a71\xe1\xd161\xde\xfb1.\xbc\xf72.ŷ3/\xcb=\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\xff\xff\xff\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"); err != nil { return nil, errors.Wrap(err, fmt.Sprintf("packing file rf-ng/ui/bg/favicon.ico")) } - if err := fs.Add("rf-ng/ui/bg/index.html", 1618, os.FileMode(420), time.Unix(1584880252, 0), "\n\n\n \n readeef: feed aggregator\n \n \n \n\n \n \n\n \n \n \n \n\n \n \n\n\n \n\n\n"); err != nil { + if err := fs.Add("rf-ng/ui/bg/index.html", 1618, os.FileMode(420), time.Unix(1587937639, 0), "\n\n\n \n readeef: feed aggregator\n \n \n \n\n \n \n\n \n \n \n \n\n \n \n\n\n \n\n\n"); err != nil { return nil, errors.Wrap(err, fmt.Sprintf("packing file rf-ng/ui/bg/index.html")) } - if err := fs.Add("rf-ng/ui/bg/main-es2015.f6c9f28337fd1027e64c.js", 1174645, os.FileMode(420), time.Unix(1584880252, 0), "/**\n * @license\n * Copyright Google Inc. All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n!function(n){n.ng=n.ng||{},n.ng.common=n.ng.common||{},n.ng.common.locales=n.ng.common.locales||{};const o=void 0;n.ng.common.locales.bg=[\"bg\",[[\"am\",\"pm\"],o,[\"\\u043f\\u0440.\\u043e\\u0431.\",\"\\u0441\\u043b.\\u043e\\u0431.\"]],[[\"am\",\"pm\"],o,o],[[\"\\u043d\",\"\\u043f\",\"\\u0432\",\"\\u0441\",\"\\u0447\",\"\\u043f\",\"\\u0441\"],[\"\\u043d\\u0434\",\"\\u043f\\u043d\",\"\\u0432\\u0442\",\"\\u0441\\u0440\",\"\\u0447\\u0442\",\"\\u043f\\u0442\",\"\\u0441\\u0431\"],[\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u044f\",\"\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a\",\"\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a\",\"\\u0441\\u0440\\u044f\\u0434\\u0430\",\"\\u0447\\u0435\\u0442\\u0432\\u044a\\u0440\\u0442\\u044a\\u043a\",\"\\u043f\\u0435\\u0442\\u044a\\u043a\",\"\\u0441\\u044a\\u0431\\u043e\\u0442\\u0430\"],[\"\\u043d\\u0434\",\"\\u043f\\u043d\",\"\\u0432\\u0442\",\"\\u0441\\u0440\",\"\\u0447\\u0442\",\"\\u043f\\u0442\",\"\\u0441\\u0431\"]],o,[[\"\\u044f\",\"\\u0444\",\"\\u043c\",\"\\u0430\",\"\\u043c\",\"\\u044e\",\"\\u044e\",\"\\u0430\",\"\\u0441\",\"\\u043e\",\"\\u043d\",\"\\u0434\"],[\"\\u044f\\u043d\\u0443\",\"\\u0444\\u0435\\u0432\",\"\\u043c\\u0430\\u0440\\u0442\",\"\\u0430\\u043f\\u0440\",\"\\u043c\\u0430\\u0439\",\"\\u044e\\u043d\\u0438\",\"\\u044e\\u043b\\u0438\",\"\\u0430\\u0432\\u0433\",\"\\u0441\\u0435\\u043f\",\"\\u043e\\u043a\\u0442\",\"\\u043d\\u043e\\u0435\",\"\\u0434\\u0435\\u043a\"],[\"\\u044f\\u043d\\u0443\\u0430\\u0440\\u0438\",\"\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438\",\"\\u043c\\u0430\\u0440\\u0442\",\"\\u0430\\u043f\\u0440\\u0438\\u043b\",\"\\u043c\\u0430\\u0439\",\"\\u044e\\u043d\\u0438\",\"\\u044e\\u043b\\u0438\",\"\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\",\"\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438\",\"\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438\",\"\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438\",\"\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\"]],o,[[\"\\u043f\\u0440.\\u0425\\u0440.\",\"\\u0441\\u043b.\\u0425\\u0440.\"],o,[\"\\u043f\\u0440\\u0435\\u0434\\u0438 \\u0425\\u0440\\u0438\\u0441\\u0442\\u0430\",\"\\u0441\\u043b\\u0435\\u0434 \\u0425\\u0440\\u0438\\u0441\\u0442\\u0430\"]],1,[6,0],[\"d.MM.yy '\\u0433'.\",\"d.MM.y '\\u0433'.\",\"d MMMM y '\\u0433'.\",\"EEEE, d MMMM y '\\u0433'.\"],[\"H:mm\",\"H:mm:ss\",\"H:mm:ss z\",\"H:mm:ss zzzz\"],[\"{1}, {0}\",o,o,o],[\",\",\"\\xa0\",\";\",\"%\",\"+\",\"-\",\"E\",\"\\xd7\",\"\\u2030\",\"\\u221e\",\"NaN\",\":\"],[\"#,##0.###\",\"#,##0%\",\"0.00\\xa0\\xa4\",\"#E0\"],\"BGN\",\"\\u043b\\u0432.\",\"\\u0411\\u044a\\u043b\\u0433\\u0430\\u0440\\u0441\\u043a\\u0438 \\u043b\\u0435\\u0432\",{ARS:[],AUD:[],BBD:[],BDT:[],BGN:[\"\\u043b\\u0432.\"],BMD:[],BND:[],BRL:[],BSD:[],BYN:[],BZD:[],CAD:[],CLP:[],CNY:[],COP:[],CRC:[],CUP:[],DOP:[],FJD:[],FKP:[],GBP:[o,\"\\xa3\"],GIP:[],GYD:[],HKD:[],ILS:[],INR:[],JMD:[],JPY:[o,\"\\xa5\"],KHR:[],KRW:[],KYD:[],KZT:[],LAK:[],LRD:[],MNT:[],MXN:[],NAD:[],NGN:[],NZD:[],PHP:[],PYG:[],RON:[],SBD:[],SGD:[],SRD:[],SSP:[],TRY:[],TTD:[],TWD:[],UAH:[],USD:[\"\\u0449.\\u0434.\",\"$\"],UYU:[],VND:[],XCD:[o,\"$\"]},function(n){return 1===n?1:5},[[[\"\\u043f\\u043e\\u043b\\u0443\\u043d\\u043e\\u0449\",\"\\u0441\\u0443\\u0442\\u0440\\u0438\\u043d\\u0442\\u0430\",\"\\u043d\\u0430 \\u043e\\u0431\\u044f\\u0434\",\"\\u0441\\u043b\\u0435\\u0434\\u043e\\u0431\\u0435\\u0434\",\"\\u0432\\u0435\\u0447\\u0435\\u0440\\u0442\\u0430\",\"\\u043f\\u0440\\u0435\\u0437 \\u043d\\u043e\\u0449\\u0442\\u0430\"],o,o],o,[\"00:00\",[\"04:00\",\"11:00\"],[\"11:00\",\"14:00\"],[\"14:00\",\"18:00\"],[\"18:00\",\"22:00\"],[\"22:00\",\"04:00\"]]]]}(\"undefined\"!=typeof globalThis&&globalThis||\"undefined\"!=typeof global&&global||\"undefined\"!=typeof window&&window);;var $localize=Object.assign(void 0===$localize?{}:$localize,{locale:\"bg\"});(window.webpackJsonp=window.webpackJsonp||[]).push([[1],{\"+s0g\":function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),n=\"jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),i=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],s=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\\.?|feb\\.?|mrt\\.?|apr\\.?|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i;e.defineLocale(\"nl\",{months:\"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\\.?|feb\\.?|mrt\\.?|apr\\.?|mei|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag\".split(\"_\"),weekdaysShort:\"zo._ma._di._wo._do._vr._za.\".split(\"_\"),weekdaysMin:\"zo_ma_di_wo_do_vr_za\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[vandaag om] LT\",nextDay:\"[morgen om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[gisteren om] LT\",lastWeek:\"[afgelopen] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"over %s\",past:\"%s geleden\",s:\"een paar seconden\",ss:\"%d seconden\",m:\"\\xe9\\xe9n minuut\",mm:\"%d minuten\",h:\"\\xe9\\xe9n uur\",hh:\"%d uur\",d:\"\\xe9\\xe9n dag\",dd:\"%d dagen\",M:\"\\xe9\\xe9n maand\",MM:\"%d maanden\",y:\"\\xe9\\xe9n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"//9w\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"se\",{months:\"o\\u0111\\u0111ajagem\\xe1nnu_guovvam\\xe1nnu_njuk\\u010dam\\xe1nnu_cuo\\u014bom\\xe1nnu_miessem\\xe1nnu_geassem\\xe1nnu_suoidnem\\xe1nnu_borgem\\xe1nnu_\\u010dak\\u010dam\\xe1nnu_golggotm\\xe1nnu_sk\\xe1bmam\\xe1nnu_juovlam\\xe1nnu\".split(\"_\"),monthsShort:\"o\\u0111\\u0111j_guov_njuk_cuo_mies_geas_suoi_borg_\\u010dak\\u010d_golg_sk\\xe1b_juov\".split(\"_\"),weekdays:\"sotnabeaivi_vuoss\\xe1rga_ma\\u014b\\u014beb\\xe1rga_gaskavahkku_duorastat_bearjadat_l\\xe1vvardat\".split(\"_\"),weekdaysShort:\"sotn_vuos_ma\\u014b_gask_duor_bear_l\\xe1v\".split(\"_\"),weekdaysMin:\"s_v_m_g_d_b_L\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"MMMM D. [b.] YYYY\",LLL:\"MMMM D. [b.] YYYY [ti.] HH:mm\",LLLL:\"dddd, MMMM D. [b.] YYYY [ti.] HH:mm\"},calendar:{sameDay:\"[otne ti] LT\",nextDay:\"[ihttin ti] LT\",nextWeek:\"dddd [ti] LT\",lastDay:\"[ikte ti] LT\",lastWeek:\"[ovddit] dddd [ti] LT\",sameElse:\"L\"},relativeTime:{future:\"%s gea\\u017ees\",past:\"ma\\u014bit %s\",s:\"moadde sekunddat\",ss:\"%d sekunddat\",m:\"okta minuhta\",mm:\"%d minuhtat\",h:\"okta diimmu\",hh:\"%d diimmut\",d:\"okta beaivi\",dd:\"%d beaivvit\",M:\"okta m\\xe1nnu\",MM:\"%d m\\xe1nut\",y:\"okta jahki\",yy:\"%d jagit\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"/X5v\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"x-pseudo\",{months:\"J~\\xe1\\xf1\\xfa\\xe1~r\\xfd_F~\\xe9br\\xfa~\\xe1r\\xfd_~M\\xe1rc~h_\\xc1p~r\\xedl_~M\\xe1\\xfd_~J\\xfa\\xf1\\xe9~_J\\xfal~\\xfd_\\xc1\\xfa~g\\xfast~_S\\xe9p~t\\xe9mb~\\xe9r_\\xd3~ct\\xf3b~\\xe9r_\\xd1~\\xf3v\\xe9m~b\\xe9r_~D\\xe9c\\xe9~mb\\xe9r\".split(\"_\"),monthsShort:\"J~\\xe1\\xf1_~F\\xe9b_~M\\xe1r_~\\xc1pr_~M\\xe1\\xfd_~J\\xfa\\xf1_~J\\xfal_~\\xc1\\xfag_~S\\xe9p_~\\xd3ct_~\\xd1\\xf3v_~D\\xe9c\".split(\"_\"),monthsParseExact:!0,weekdays:\"S~\\xfa\\xf1d\\xe1~\\xfd_M\\xf3~\\xf1d\\xe1\\xfd~_T\\xfa\\xe9~sd\\xe1\\xfd~_W\\xe9d~\\xf1\\xe9sd~\\xe1\\xfd_T~h\\xfars~d\\xe1\\xfd_~Fr\\xedd~\\xe1\\xfd_S~\\xe1t\\xfar~d\\xe1\\xfd\".split(\"_\"),weekdaysShort:\"S~\\xfa\\xf1_~M\\xf3\\xf1_~T\\xfa\\xe9_~W\\xe9d_~Th\\xfa_~Fr\\xed_~S\\xe1t\".split(\"_\"),weekdaysMin:\"S~\\xfa_M\\xf3~_T\\xfa_~W\\xe9_T~h_Fr~_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[T~\\xf3d\\xe1~\\xfd \\xe1t] LT\",nextDay:\"[T~\\xf3m\\xf3~rr\\xf3~w \\xe1t] LT\",nextWeek:\"dddd [\\xe1t] LT\",lastDay:\"[\\xdd~\\xe9st~\\xe9rd\\xe1~\\xfd \\xe1t] LT\",lastWeek:\"[L~\\xe1st] dddd [\\xe1t] LT\",sameElse:\"L\"},relativeTime:{future:\"\\xed~\\xf1 %s\",past:\"%s \\xe1~g\\xf3\",s:\"\\xe1 ~f\\xe9w ~s\\xe9c\\xf3~\\xf1ds\",ss:\"%d s~\\xe9c\\xf3\\xf1~ds\",m:\"\\xe1 ~m\\xed\\xf1~\\xfat\\xe9\",mm:\"%d m~\\xed\\xf1\\xfa~t\\xe9s\",h:\"\\xe1~\\xf1 h\\xf3~\\xfar\",hh:\"%d h~\\xf3\\xfars\",d:\"\\xe1 ~d\\xe1\\xfd\",dd:\"%d d~\\xe1\\xfds\",M:\"\\xe1 ~m\\xf3\\xf1~th\",MM:\"%d m~\\xf3\\xf1t~hs\",y:\"\\xe1 ~\\xfd\\xe9\\xe1r\",yy:\"%d \\xfd~\\xe9\\xe1rs\"},dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},0:function(e,t,n){e.exports=n(\"zUnb\")},\"0mo+\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0f21\",2:\"\\u0f22\",3:\"\\u0f23\",4:\"\\u0f24\",5:\"\\u0f25\",6:\"\\u0f26\",7:\"\\u0f27\",8:\"\\u0f28\",9:\"\\u0f29\",0:\"\\u0f20\"},n={\"\\u0f21\":\"1\",\"\\u0f22\":\"2\",\"\\u0f23\":\"3\",\"\\u0f24\":\"4\",\"\\u0f25\":\"5\",\"\\u0f26\":\"6\",\"\\u0f27\":\"7\",\"\\u0f28\":\"8\",\"\\u0f29\":\"9\",\"\\u0f20\":\"0\"};e.defineLocale(\"bo\",{months:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f44\\u0f0b\\u0f54\\u0f7c_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f66\\u0f74\\u0f58\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f5e\\u0f72\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f63\\u0f94\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0fb2\\u0f74\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f62\\u0f92\\u0fb1\\u0f51\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f42\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54\".split(\"_\"),monthsShort:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f44\\u0f0b\\u0f54\\u0f7c_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f66\\u0f74\\u0f58\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f5e\\u0f72\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f63\\u0f94\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0fb2\\u0f74\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f62\\u0f92\\u0fb1\\u0f51\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f42\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54\".split(\"_\"),weekdays:\"\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),weekdaysShort:\"\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),weekdaysMin:\"\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0f51\\u0f72\\u0f0b\\u0f62\\u0f72\\u0f44] LT\",nextDay:\"[\\u0f66\\u0f44\\u0f0b\\u0f49\\u0f72\\u0f53] LT\",nextWeek:\"[\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f55\\u0fb2\\u0f42\\u0f0b\\u0f62\\u0f97\\u0f7a\\u0f66\\u0f0b\\u0f58], LT\",lastDay:\"[\\u0f41\\u0f0b\\u0f66\\u0f44] LT\",lastWeek:\"[\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f55\\u0fb2\\u0f42\\u0f0b\\u0f58\\u0f50\\u0f60\\u0f0b\\u0f58] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0f63\\u0f0b\",past:\"%s \\u0f66\\u0f94\\u0f53\\u0f0b\\u0f63\",s:\"\\u0f63\\u0f58\\u0f0b\\u0f66\\u0f44\",ss:\"%d \\u0f66\\u0f90\\u0f62\\u0f0b\\u0f46\\u0f0d\",m:\"\\u0f66\\u0f90\\u0f62\\u0f0b\\u0f58\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",mm:\"%d \\u0f66\\u0f90\\u0f62\\u0f0b\\u0f58\",h:\"\\u0f46\\u0f74\\u0f0b\\u0f5a\\u0f7c\\u0f51\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",hh:\"%d \\u0f46\\u0f74\\u0f0b\\u0f5a\\u0f7c\\u0f51\",d:\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",dd:\"%d \\u0f49\\u0f72\\u0f53\\u0f0b\",M:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",MM:\"%d \\u0f5f\\u0fb3\\u0f0b\\u0f56\",y:\"\\u0f63\\u0f7c\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",yy:\"%d \\u0f63\\u0f7c\"},preparse:function(e){return e.replace(/[\\u0f21\\u0f22\\u0f23\\u0f24\\u0f25\\u0f26\\u0f27\\u0f28\\u0f29\\u0f20]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c|\\u0f5e\\u0f7c\\u0f42\\u0f66\\u0f0b\\u0f40\\u0f66|\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44|\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42|\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\"===t&&e>=4||\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44\"===t&&e<5||\"\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\":e<10?\"\\u0f5e\\u0f7c\\u0f42\\u0f66\\u0f0b\\u0f40\\u0f66\":e<17?\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44\":e<20?\"\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42\":\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"0tRk\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt-br\",{months:\"Janeiro_Fevereiro_Mar\\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingo_Segunda-feira_Ter\\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\\xe1bado\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ter_Qua_Qui_Sex_S\\xe1b\".split(\"_\"),weekdaysMin:\"Do_2\\xaa_3\\xaa_4\\xaa_5\\xaa_6\\xaa_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY [\\xe0s] HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY [\\xe0s] HH:mm\"},calendar:{sameDay:\"[Hoje \\xe0s] LT\",nextDay:\"[Amanh\\xe3 \\xe0s] LT\",nextWeek:\"dddd [\\xe0s] LT\",lastDay:\"[Ontem \\xe0s] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[\\xdaltimo] dddd [\\xe0s] LT\":\"[\\xdaltima] dddd [\\xe0s] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"h\\xe1 %s\",s:\"poucos segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",M:\"um m\\xeas\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\"})}(n(\"wd/R\"))},\"1rYy\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"hy-am\",{months:{format:\"\\u0570\\u0578\\u0582\\u0576\\u057e\\u0561\\u0580\\u056b_\\u0583\\u0565\\u057f\\u0580\\u057e\\u0561\\u0580\\u056b_\\u0574\\u0561\\u0580\\u057f\\u056b_\\u0561\\u057a\\u0580\\u056b\\u056c\\u056b_\\u0574\\u0561\\u0575\\u056b\\u057d\\u056b_\\u0570\\u0578\\u0582\\u0576\\u056b\\u057d\\u056b_\\u0570\\u0578\\u0582\\u056c\\u056b\\u057d\\u056b_\\u0585\\u0563\\u0578\\u057d\\u057f\\u0578\\u057d\\u056b_\\u057d\\u0565\\u057a\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0570\\u0578\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0576\\u0578\\u0575\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0564\\u0565\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b\".split(\"_\"),standalone:\"\\u0570\\u0578\\u0582\\u0576\\u057e\\u0561\\u0580_\\u0583\\u0565\\u057f\\u0580\\u057e\\u0561\\u0580_\\u0574\\u0561\\u0580\\u057f_\\u0561\\u057a\\u0580\\u056b\\u056c_\\u0574\\u0561\\u0575\\u056b\\u057d_\\u0570\\u0578\\u0582\\u0576\\u056b\\u057d_\\u0570\\u0578\\u0582\\u056c\\u056b\\u057d_\\u0585\\u0563\\u0578\\u057d\\u057f\\u0578\\u057d_\\u057d\\u0565\\u057a\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0570\\u0578\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0576\\u0578\\u0575\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0564\\u0565\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\".split(\"_\")},monthsShort:\"\\u0570\\u0576\\u057e_\\u0583\\u057f\\u0580_\\u0574\\u0580\\u057f_\\u0561\\u057a\\u0580_\\u0574\\u0575\\u057d_\\u0570\\u0576\\u057d_\\u0570\\u056c\\u057d_\\u0585\\u0563\\u057d_\\u057d\\u057a\\u057f_\\u0570\\u056f\\u057f_\\u0576\\u0574\\u0562_\\u0564\\u056f\\u057f\".split(\"_\"),weekdays:\"\\u056f\\u056b\\u0580\\u0561\\u056f\\u056b_\\u0565\\u0580\\u056f\\u0578\\u0582\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0565\\u0580\\u0565\\u0584\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0579\\u0578\\u0580\\u0565\\u0584\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0570\\u056b\\u0576\\u0563\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0578\\u0582\\u0580\\u0562\\u0561\\u0569_\\u0577\\u0561\\u0562\\u0561\\u0569\".split(\"_\"),weekdaysShort:\"\\u056f\\u0580\\u056f_\\u0565\\u0580\\u056f_\\u0565\\u0580\\u0584_\\u0579\\u0580\\u0584_\\u0570\\u0576\\u0563_\\u0578\\u0582\\u0580\\u0562_\\u0577\\u0562\\u0569\".split(\"_\"),weekdaysMin:\"\\u056f\\u0580\\u056f_\\u0565\\u0580\\u056f_\\u0565\\u0580\\u0584_\\u0579\\u0580\\u0584_\\u0570\\u0576\\u0563_\\u0578\\u0582\\u0580\\u0562_\\u0577\\u0562\\u0569\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0569.\",LLL:\"D MMMM YYYY \\u0569., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0569., HH:mm\"},calendar:{sameDay:\"[\\u0561\\u0575\\u057d\\u0585\\u0580] LT\",nextDay:\"[\\u057e\\u0561\\u0572\\u0568] LT\",lastDay:\"[\\u0565\\u0580\\u0565\\u056f] LT\",nextWeek:function(){return\"dddd [\\u0585\\u0580\\u0568 \\u056a\\u0561\\u0574\\u0568] LT\"},lastWeek:function(){return\"[\\u0561\\u0576\\u0581\\u0561\\u056e] dddd [\\u0585\\u0580\\u0568 \\u056a\\u0561\\u0574\\u0568] LT\"},sameElse:\"L\"},relativeTime:{future:\"%s \\u0570\\u0565\\u057f\\u0578\",past:\"%s \\u0561\\u057c\\u0561\\u057b\",s:\"\\u0574\\u056b \\u0584\\u0561\\u0576\\u056b \\u057e\\u0561\\u0575\\u0580\\u056f\\u0575\\u0561\\u0576\",ss:\"%d \\u057e\\u0561\\u0575\\u0580\\u056f\\u0575\\u0561\\u0576\",m:\"\\u0580\\u0578\\u057a\\u0565\",mm:\"%d \\u0580\\u0578\\u057a\\u0565\",h:\"\\u056a\\u0561\\u0574\",hh:\"%d \\u056a\\u0561\\u0574\",d:\"\\u0585\\u0580\",dd:\"%d \\u0585\\u0580\",M:\"\\u0561\\u0574\\u056b\\u057d\",MM:\"%d \\u0561\\u0574\\u056b\\u057d\",y:\"\\u057f\\u0561\\u0580\\u056b\",yy:\"%d \\u057f\\u0561\\u0580\\u056b\"},meridiemParse:/\\u0563\\u056b\\u0577\\u0565\\u0580\\u057e\\u0561|\\u0561\\u057c\\u0561\\u057e\\u0578\\u057f\\u057e\\u0561|\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561|\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576/,isPM:function(e){return/^(\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561|\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576)$/.test(e)},meridiem:function(e){return e<4?\"\\u0563\\u056b\\u0577\\u0565\\u0580\\u057e\\u0561\":e<12?\"\\u0561\\u057c\\u0561\\u057e\\u0578\\u057f\\u057e\\u0561\":e<17?\"\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561\":\"\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576\"},dayOfMonthOrdinalParse:/\\d{1,2}|\\d{1,2}-(\\u056b\\u0576|\\u0580\\u0564)/,ordinal:function(e,t){switch(t){case\"DDD\":case\"w\":case\"W\":case\"DDDo\":return 1===e?e+\"-\\u056b\\u0576\":e+\"-\\u0580\\u0564\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"1xZ4\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ca\",{months:{standalone:\"gener_febrer_mar\\xe7_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre\".split(\"_\"),format:\"de gener_de febrer_de mar\\xe7_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre\".split(\"_\"),isFormat:/D[oD]?(\\s)+MMMM/},monthsShort:\"gen._febr._mar\\xe7_abr._maig_juny_jul._ag._set._oct._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte\".split(\"_\"),weekdaysShort:\"dg._dl._dt._dc._dj._dv._ds.\".split(\"_\"),weekdaysMin:\"dg_dl_dt_dc_dj_dv_ds\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [de] YYYY\",ll:\"D MMM YYYY\",LLL:\"D MMMM [de] YYYY [a les] H:mm\",lll:\"D MMM YYYY, H:mm\",LLLL:\"dddd D MMMM [de] YYYY [a les] H:mm\",llll:\"ddd D MMM YYYY, H:mm\"},calendar:{sameDay:function(){return\"[avui a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextDay:function(){return\"[dem\\xe0 a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextWeek:function(){return\"dddd [a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastDay:function(){return\"[ahir a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [passat a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"d'aqu\\xed %s\",past:\"fa %s\",s:\"uns segons\",ss:\"%d segons\",m:\"un minut\",mm:\"%d minuts\",h:\"una hora\",hh:\"%d hores\",d:\"un dia\",dd:\"%d dies\",M:\"un mes\",MM:\"%d mesos\",y:\"un any\",yy:\"%d anys\"},dayOfMonthOrdinalParse:/\\d{1,2}(r|n|t|\\xe8|a)/,ordinal:function(e,t){var n=1===e?\"r\":2===e?\"n\":3===e?\"r\":4===e?\"t\":\"\\xe8\";return\"w\"!==t&&\"W\"!==t||(n=\"a\"),e+n},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"2fjn\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ca\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}}})}(n(\"wd/R\"))},\"2ykv\":function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),n=\"jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),i=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],s=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\\.?|feb\\.?|mrt\\.?|apr\\.?|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i;e.defineLocale(\"nl-be\",{months:\"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\\.?|feb\\.?|mrt\\.?|apr\\.?|mei|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag\".split(\"_\"),weekdaysShort:\"zo._ma._di._wo._do._vr._za.\".split(\"_\"),weekdaysMin:\"zo_ma_di_wo_do_vr_za\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[vandaag om] LT\",nextDay:\"[morgen om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[gisteren om] LT\",lastWeek:\"[afgelopen] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"over %s\",past:\"%s geleden\",s:\"een paar seconden\",ss:\"%d seconden\",m:\"\\xe9\\xe9n minuut\",mm:\"%d minuten\",h:\"\\xe9\\xe9n uur\",hh:\"%d uur\",d:\"\\xe9\\xe9n dag\",dd:\"%d dagen\",M:\"\\xe9\\xe9n maand\",MM:\"%d maanden\",y:\"\\xe9\\xe9n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"3E1r\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};e.defineLocale(\"hi\",{months:\"\\u091c\\u0928\\u0935\\u0930\\u0940_\\u092b\\u093c\\u0930\\u0935\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u0948\\u0932_\\u092e\\u0908_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908_\\u0905\\u0917\\u0938\\u094d\\u0924_\\u0938\\u093f\\u0924\\u092e\\u094d\\u092c\\u0930_\\u0905\\u0915\\u094d\\u091f\\u0942\\u092c\\u0930_\\u0928\\u0935\\u092e\\u094d\\u092c\\u0930_\\u0926\\u093f\\u0938\\u092e\\u094d\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u0928._\\u092b\\u093c\\u0930._\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u0948._\\u092e\\u0908_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932._\\u0905\\u0917._\\u0938\\u093f\\u0924._\\u0905\\u0915\\u094d\\u091f\\u0942._\\u0928\\u0935._\\u0926\\u093f\\u0938.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0930\\u0935\\u093f\\u0935\\u093e\\u0930_\\u0938\\u094b\\u092e\\u0935\\u093e\\u0930_\\u092e\\u0902\\u0917\\u0932\\u0935\\u093e\\u0930_\\u092c\\u0941\\u0927\\u0935\\u093e\\u0930_\\u0917\\u0941\\u0930\\u0942\\u0935\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u0935\\u093e\\u0930_\\u0936\\u0928\\u093f\\u0935\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0930\\u0935\\u093f_\\u0938\\u094b\\u092e_\\u092e\\u0902\\u0917\\u0932_\\u092c\\u0941\\u0927_\\u0917\\u0941\\u0930\\u0942_\\u0936\\u0941\\u0915\\u094d\\u0930_\\u0936\\u0928\\u093f\".split(\"_\"),weekdaysMin:\"\\u0930_\\u0938\\u094b_\\u092e\\u0902_\\u092c\\u0941_\\u0917\\u0941_\\u0936\\u0941_\\u0936\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u092c\\u091c\\u0947\",LTS:\"A h:mm:ss \\u092c\\u091c\\u0947\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u092c\\u091c\\u0947\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u092c\\u091c\\u0947\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u0915\\u0932] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0915\\u0932] LT\",lastWeek:\"[\\u092a\\u093f\\u091b\\u0932\\u0947] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u092e\\u0947\\u0902\",past:\"%s \\u092a\\u0939\\u0932\\u0947\",s:\"\\u0915\\u0941\\u091b \\u0939\\u0940 \\u0915\\u094d\\u0937\\u0923\",ss:\"%d \\u0938\\u0947\\u0915\\u0902\\u0921\",m:\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u091f\",mm:\"%d \\u092e\\u093f\\u0928\\u091f\",h:\"\\u090f\\u0915 \\u0918\\u0902\\u091f\\u093e\",hh:\"%d \\u0918\\u0902\\u091f\\u0947\",d:\"\\u090f\\u0915 \\u0926\\u093f\\u0928\",dd:\"%d \\u0926\\u093f\\u0928\",M:\"\\u090f\\u0915 \\u092e\\u0939\\u0940\\u0928\\u0947\",MM:\"%d \\u092e\\u0939\\u0940\\u0928\\u0947\",y:\"\\u090f\\u0915 \\u0935\\u0930\\u094d\\u0937\",yy:\"%d \\u0935\\u0930\\u094d\\u0937\"},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924|\\u0938\\u0941\\u092c\\u0939|\\u0926\\u094b\\u092a\\u0939\\u0930|\\u0936\\u093e\\u092e/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\"===t?e<4?e:e+12:\"\\u0938\\u0941\\u092c\\u0939\"===t?e:\"\\u0926\\u094b\\u092a\\u0939\\u0930\"===t?e>=10?e:e+12:\"\\u0936\\u093e\\u092e\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0930\\u093e\\u0924\":e<10?\"\\u0938\\u0941\\u092c\\u0939\":e<17?\"\\u0926\\u094b\\u092a\\u0939\\u0930\":e<20?\"\\u0936\\u093e\\u092e\":\"\\u0930\\u093e\\u0924\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"4MV3\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0ae7\",2:\"\\u0ae8\",3:\"\\u0ae9\",4:\"\\u0aea\",5:\"\\u0aeb\",6:\"\\u0aec\",7:\"\\u0aed\",8:\"\\u0aee\",9:\"\\u0aef\",0:\"\\u0ae6\"},n={\"\\u0ae7\":\"1\",\"\\u0ae8\":\"2\",\"\\u0ae9\":\"3\",\"\\u0aea\":\"4\",\"\\u0aeb\":\"5\",\"\\u0aec\":\"6\",\"\\u0aed\":\"7\",\"\\u0aee\":\"8\",\"\\u0aef\":\"9\",\"\\u0ae6\":\"0\"};e.defineLocale(\"gu\",{months:\"\\u0a9c\\u0abe\\u0aa8\\u0acd\\u0aaf\\u0ac1\\u0a86\\u0ab0\\u0ac0_\\u0aab\\u0ac7\\u0aac\\u0acd\\u0ab0\\u0ac1\\u0a86\\u0ab0\\u0ac0_\\u0aae\\u0abe\\u0ab0\\u0acd\\u0a9a_\\u0a8f\\u0aaa\\u0acd\\u0ab0\\u0abf\\u0ab2_\\u0aae\\u0ac7_\\u0a9c\\u0ac2\\u0aa8_\\u0a9c\\u0ac1\\u0ab2\\u0abe\\u0a88_\\u0a91\\u0a97\\u0ab8\\u0acd\\u0a9f_\\u0ab8\\u0aaa\\u0acd\\u0a9f\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0_\\u0a91\\u0a95\\u0acd\\u0a9f\\u0acd\\u0aac\\u0ab0_\\u0aa8\\u0ab5\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0_\\u0aa1\\u0abf\\u0ab8\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0\".split(\"_\"),monthsShort:\"\\u0a9c\\u0abe\\u0aa8\\u0acd\\u0aaf\\u0ac1._\\u0aab\\u0ac7\\u0aac\\u0acd\\u0ab0\\u0ac1._\\u0aae\\u0abe\\u0ab0\\u0acd\\u0a9a_\\u0a8f\\u0aaa\\u0acd\\u0ab0\\u0abf._\\u0aae\\u0ac7_\\u0a9c\\u0ac2\\u0aa8_\\u0a9c\\u0ac1\\u0ab2\\u0abe._\\u0a91\\u0a97._\\u0ab8\\u0aaa\\u0acd\\u0a9f\\u0ac7._\\u0a91\\u0a95\\u0acd\\u0a9f\\u0acd._\\u0aa8\\u0ab5\\u0ac7._\\u0aa1\\u0abf\\u0ab8\\u0ac7.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0ab0\\u0ab5\\u0abf\\u0ab5\\u0abe\\u0ab0_\\u0ab8\\u0acb\\u0aae\\u0ab5\\u0abe\\u0ab0_\\u0aae\\u0a82\\u0a97\\u0ab3\\u0ab5\\u0abe\\u0ab0_\\u0aac\\u0ac1\\u0aa7\\u0acd\\u0ab5\\u0abe\\u0ab0_\\u0a97\\u0ac1\\u0ab0\\u0ac1\\u0ab5\\u0abe\\u0ab0_\\u0ab6\\u0ac1\\u0a95\\u0acd\\u0ab0\\u0ab5\\u0abe\\u0ab0_\\u0ab6\\u0aa8\\u0abf\\u0ab5\\u0abe\\u0ab0\".split(\"_\"),weekdaysShort:\"\\u0ab0\\u0ab5\\u0abf_\\u0ab8\\u0acb\\u0aae_\\u0aae\\u0a82\\u0a97\\u0ab3_\\u0aac\\u0ac1\\u0aa7\\u0acd_\\u0a97\\u0ac1\\u0ab0\\u0ac1_\\u0ab6\\u0ac1\\u0a95\\u0acd\\u0ab0_\\u0ab6\\u0aa8\\u0abf\".split(\"_\"),weekdaysMin:\"\\u0ab0_\\u0ab8\\u0acb_\\u0aae\\u0a82_\\u0aac\\u0ac1_\\u0a97\\u0ac1_\\u0ab6\\u0ac1_\\u0ab6\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",LTS:\"A h:mm:ss \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\"},calendar:{sameDay:\"[\\u0a86\\u0a9c] LT\",nextDay:\"[\\u0a95\\u0abe\\u0ab2\\u0ac7] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0a97\\u0a87\\u0a95\\u0abe\\u0ab2\\u0ac7] LT\",lastWeek:\"[\\u0aaa\\u0abe\\u0a9b\\u0ab2\\u0abe] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0aae\\u0abe\",past:\"%s \\u0aaa\\u0ac7\\u0ab9\\u0ab2\\u0abe\",s:\"\\u0a85\\u0aae\\u0ac1\\u0a95 \\u0aaa\\u0ab3\\u0acb\",ss:\"%d \\u0ab8\\u0ac7\\u0a95\\u0a82\\u0aa1\",m:\"\\u0a8f\\u0a95 \\u0aae\\u0abf\\u0aa8\\u0abf\\u0a9f\",mm:\"%d \\u0aae\\u0abf\\u0aa8\\u0abf\\u0a9f\",h:\"\\u0a8f\\u0a95 \\u0a95\\u0ab2\\u0abe\\u0a95\",hh:\"%d \\u0a95\\u0ab2\\u0abe\\u0a95\",d:\"\\u0a8f\\u0a95 \\u0aa6\\u0abf\\u0ab5\\u0ab8\",dd:\"%d \\u0aa6\\u0abf\\u0ab5\\u0ab8\",M:\"\\u0a8f\\u0a95 \\u0aae\\u0ab9\\u0abf\\u0aa8\\u0acb\",MM:\"%d \\u0aae\\u0ab9\\u0abf\\u0aa8\\u0acb\",y:\"\\u0a8f\\u0a95 \\u0ab5\\u0ab0\\u0acd\\u0ab7\",yy:\"%d \\u0ab5\\u0ab0\\u0acd\\u0ab7\"},preparse:function(e){return e.replace(/[\\u0ae7\\u0ae8\\u0ae9\\u0aea\\u0aeb\\u0aec\\u0aed\\u0aee\\u0aef\\u0ae6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0ab0\\u0abe\\u0aa4|\\u0aac\\u0aaa\\u0acb\\u0ab0|\\u0ab8\\u0ab5\\u0abe\\u0ab0|\\u0ab8\\u0abe\\u0a82\\u0a9c/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0ab0\\u0abe\\u0aa4\"===t?e<4?e:e+12:\"\\u0ab8\\u0ab5\\u0abe\\u0ab0\"===t?e:\"\\u0aac\\u0aaa\\u0acb\\u0ab0\"===t?e>=10?e:e+12:\"\\u0ab8\\u0abe\\u0a82\\u0a9c\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0ab0\\u0abe\\u0aa4\":e<10?\"\\u0ab8\\u0ab5\\u0abe\\u0ab0\":e<17?\"\\u0aac\\u0aaa\\u0acb\\u0ab0\":e<20?\"\\u0ab8\\u0abe\\u0a82\\u0a9c\":\"\\u0ab0\\u0abe\\u0aa4\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"4dOw\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ie\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"6+QB\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"6B0Y\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u17e1\",2:\"\\u17e2\",3:\"\\u17e3\",4:\"\\u17e4\",5:\"\\u17e5\",6:\"\\u17e6\",7:\"\\u17e7\",8:\"\\u17e8\",9:\"\\u17e9\",0:\"\\u17e0\"},n={\"\\u17e1\":\"1\",\"\\u17e2\":\"2\",\"\\u17e3\":\"3\",\"\\u17e4\":\"4\",\"\\u17e5\":\"5\",\"\\u17e6\":\"6\",\"\\u17e7\":\"7\",\"\\u17e8\":\"8\",\"\\u17e9\":\"9\",\"\\u17e0\":\"0\"};e.defineLocale(\"km\",{months:\"\\u1798\\u1780\\u179a\\u17b6_\\u1780\\u17bb\\u1798\\u17d2\\u1797\\u17c8_\\u1798\\u17b8\\u1793\\u17b6_\\u1798\\u17c1\\u179f\\u17b6_\\u17a7\\u179f\\u1797\\u17b6_\\u1798\\u17b7\\u1790\\u17bb\\u1793\\u17b6_\\u1780\\u1780\\u17d2\\u1780\\u178a\\u17b6_\\u179f\\u17b8\\u17a0\\u17b6_\\u1780\\u1789\\u17d2\\u1789\\u17b6_\\u178f\\u17bb\\u179b\\u17b6_\\u179c\\u17b7\\u1785\\u17d2\\u1786\\u17b7\\u1780\\u17b6_\\u1792\\u17d2\\u1793\\u17bc\".split(\"_\"),monthsShort:\"\\u1798\\u1780\\u179a\\u17b6_\\u1780\\u17bb\\u1798\\u17d2\\u1797\\u17c8_\\u1798\\u17b8\\u1793\\u17b6_\\u1798\\u17c1\\u179f\\u17b6_\\u17a7\\u179f\\u1797\\u17b6_\\u1798\\u17b7\\u1790\\u17bb\\u1793\\u17b6_\\u1780\\u1780\\u17d2\\u1780\\u178a\\u17b6_\\u179f\\u17b8\\u17a0\\u17b6_\\u1780\\u1789\\u17d2\\u1789\\u17b6_\\u178f\\u17bb\\u179b\\u17b6_\\u179c\\u17b7\\u1785\\u17d2\\u1786\\u17b7\\u1780\\u17b6_\\u1792\\u17d2\\u1793\\u17bc\".split(\"_\"),weekdays:\"\\u17a2\\u17b6\\u1791\\u17b7\\u178f\\u17d2\\u1799_\\u1785\\u17d0\\u1793\\u17d2\\u1791_\\u17a2\\u1784\\u17d2\\u1782\\u17b6\\u179a_\\u1796\\u17bb\\u1792_\\u1796\\u17d2\\u179a\\u17a0\\u179f\\u17d2\\u1794\\u178f\\u17b7\\u17cd_\\u179f\\u17bb\\u1780\\u17d2\\u179a_\\u179f\\u17c5\\u179a\\u17cd\".split(\"_\"),weekdaysShort:\"\\u17a2\\u17b6_\\u1785_\\u17a2_\\u1796_\\u1796\\u17d2\\u179a_\\u179f\\u17bb_\\u179f\".split(\"_\"),weekdaysMin:\"\\u17a2\\u17b6_\\u1785_\\u17a2_\\u1796_\\u1796\\u17d2\\u179a_\\u179f\\u17bb_\\u179f\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u1796\\u17d2\\u179a\\u17b9\\u1780|\\u179b\\u17d2\\u1784\\u17b6\\u1785/,isPM:function(e){return\"\\u179b\\u17d2\\u1784\\u17b6\\u1785\"===e},meridiem:function(e,t,n){return e<12?\"\\u1796\\u17d2\\u179a\\u17b9\\u1780\":\"\\u179b\\u17d2\\u1784\\u17b6\\u1785\"},calendar:{sameDay:\"[\\u1790\\u17d2\\u1784\\u17c3\\u1793\\u17c1\\u17c7 \\u1798\\u17c9\\u17c4\\u1784] LT\",nextDay:\"[\\u179f\\u17d2\\u17a2\\u17c2\\u1780 \\u1798\\u17c9\\u17c4\\u1784] LT\",nextWeek:\"dddd [\\u1798\\u17c9\\u17c4\\u1784] LT\",lastDay:\"[\\u1798\\u17d2\\u179f\\u17b7\\u179b\\u1798\\u17b7\\u1789 \\u1798\\u17c9\\u17c4\\u1784] LT\",lastWeek:\"dddd [\\u179f\\u1794\\u17d2\\u178f\\u17b6\\u17a0\\u17cd\\u1798\\u17bb\\u1793] [\\u1798\\u17c9\\u17c4\\u1784] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u1791\\u17c0\\u178f\",past:\"%s\\u1798\\u17bb\\u1793\",s:\"\\u1794\\u17c9\\u17bb\\u1793\\u17d2\\u1798\\u17b6\\u1793\\u179c\\u17b7\\u1793\\u17b6\\u1791\\u17b8\",ss:\"%d \\u179c\\u17b7\\u1793\\u17b6\\u1791\\u17b8\",m:\"\\u1798\\u17bd\\u1799\\u1793\\u17b6\\u1791\\u17b8\",mm:\"%d \\u1793\\u17b6\\u1791\\u17b8\",h:\"\\u1798\\u17bd\\u1799\\u1798\\u17c9\\u17c4\\u1784\",hh:\"%d \\u1798\\u17c9\\u17c4\\u1784\",d:\"\\u1798\\u17bd\\u1799\\u1790\\u17d2\\u1784\\u17c3\",dd:\"%d \\u1790\\u17d2\\u1784\\u17c3\",M:\"\\u1798\\u17bd\\u1799\\u1781\\u17c2\",MM:\"%d \\u1781\\u17c2\",y:\"\\u1798\\u17bd\\u1799\\u1786\\u17d2\\u1793\\u17b6\\u17c6\",yy:\"%d \\u1786\\u17d2\\u1793\\u17b6\\u17c6\"},dayOfMonthOrdinalParse:/\\u1791\\u17b8\\d{1,2}/,ordinal:\"\\u1791\\u17b8%d\",preparse:function(e){return e.replace(/[\\u17e1\\u17e2\\u17e3\\u17e4\\u17e5\\u17e6\\u17e7\\u17e8\\u17e9\\u17e0]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"7BjC\":function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={s:[\"m\\xf5ne sekundi\",\"m\\xf5ni sekund\",\"paar sekundit\"],ss:[e+\"sekundi\",e+\"sekundit\"],m:[\"\\xfche minuti\",\"\\xfcks minut\"],mm:[e+\" minuti\",e+\" minutit\"],h:[\"\\xfche tunni\",\"tund aega\",\"\\xfcks tund\"],hh:[e+\" tunni\",e+\" tundi\"],d:[\"\\xfche p\\xe4eva\",\"\\xfcks p\\xe4ev\"],M:[\"kuu aja\",\"kuu aega\",\"\\xfcks kuu\"],MM:[e+\" kuu\",e+\" kuud\"],y:[\"\\xfche aasta\",\"aasta\",\"\\xfcks aasta\"],yy:[e+\" aasta\",e+\" aastat\"]};return t?s[n][2]?s[n][2]:s[n][1]:i?s[n][0]:s[n][1]}e.defineLocale(\"et\",{months:\"jaanuar_veebruar_m\\xe4rts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember\".split(\"_\"),monthsShort:\"jaan_veebr_m\\xe4rts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets\".split(\"_\"),weekdays:\"p\\xfchap\\xe4ev_esmasp\\xe4ev_teisip\\xe4ev_kolmap\\xe4ev_neljap\\xe4ev_reede_laup\\xe4ev\".split(\"_\"),weekdaysShort:\"P_E_T_K_N_R_L\".split(\"_\"),weekdaysMin:\"P_E_T_K_N_R_L\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[T\\xe4na,] LT\",nextDay:\"[Homme,] LT\",nextWeek:\"[J\\xe4rgmine] dddd LT\",lastDay:\"[Eile,] LT\",lastWeek:\"[Eelmine] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s p\\xe4rast\",past:\"%s tagasi\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:\"%d p\\xe4eva\",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"7aV9\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"si\",{months:\"\\u0da2\\u0db1\\u0dc0\\u0dcf\\u0dbb\\u0dd2_\\u0db4\\u0dd9\\u0db6\\u0dbb\\u0dc0\\u0dcf\\u0dbb\\u0dd2_\\u0db8\\u0dcf\\u0dbb\\u0dca\\u0dad\\u0dd4_\\u0d85\\u0db4\\u0dca\\u200d\\u0dbb\\u0dda\\u0dbd\\u0dca_\\u0db8\\u0dd0\\u0dba\\u0dd2_\\u0da2\\u0dd6\\u0db1\\u0dd2_\\u0da2\\u0dd6\\u0dbd\\u0dd2_\\u0d85\\u0d9c\\u0ddd\\u0dc3\\u0dca\\u0dad\\u0dd4_\\u0dc3\\u0dd0\\u0db4\\u0dca\\u0dad\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca_\\u0d94\\u0d9a\\u0dca\\u0dad\\u0ddd\\u0db6\\u0dbb\\u0dca_\\u0db1\\u0ddc\\u0dc0\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca_\\u0daf\\u0dd9\\u0dc3\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca\".split(\"_\"),monthsShort:\"\\u0da2\\u0db1_\\u0db4\\u0dd9\\u0db6_\\u0db8\\u0dcf\\u0dbb\\u0dca_\\u0d85\\u0db4\\u0dca_\\u0db8\\u0dd0\\u0dba\\u0dd2_\\u0da2\\u0dd6\\u0db1\\u0dd2_\\u0da2\\u0dd6\\u0dbd\\u0dd2_\\u0d85\\u0d9c\\u0ddd_\\u0dc3\\u0dd0\\u0db4\\u0dca_\\u0d94\\u0d9a\\u0dca_\\u0db1\\u0ddc\\u0dc0\\u0dd0_\\u0daf\\u0dd9\\u0dc3\\u0dd0\".split(\"_\"),weekdays:\"\\u0d89\\u0dbb\\u0dd2\\u0daf\\u0dcf_\\u0dc3\\u0db3\\u0dd4\\u0daf\\u0dcf_\\u0d85\\u0d9f\\u0dc4\\u0dbb\\u0dd4\\u0dc0\\u0dcf\\u0daf\\u0dcf_\\u0db6\\u0daf\\u0dcf\\u0daf\\u0dcf_\\u0db6\\u0dca\\u200d\\u0dbb\\u0dc4\\u0dc3\\u0dca\\u0db4\\u0dad\\u0dd2\\u0db1\\u0dca\\u0daf\\u0dcf_\\u0dc3\\u0dd2\\u0d9a\\u0dd4\\u0dbb\\u0dcf\\u0daf\\u0dcf_\\u0dc3\\u0dd9\\u0db1\\u0dc3\\u0dd4\\u0dbb\\u0dcf\\u0daf\\u0dcf\".split(\"_\"),weekdaysShort:\"\\u0d89\\u0dbb\\u0dd2_\\u0dc3\\u0db3\\u0dd4_\\u0d85\\u0d9f_\\u0db6\\u0daf\\u0dcf_\\u0db6\\u0dca\\u200d\\u0dbb\\u0dc4_\\u0dc3\\u0dd2\\u0d9a\\u0dd4_\\u0dc3\\u0dd9\\u0db1\".split(\"_\"),weekdaysMin:\"\\u0d89_\\u0dc3_\\u0d85_\\u0db6_\\u0db6\\u0dca\\u200d\\u0dbb_\\u0dc3\\u0dd2_\\u0dc3\\u0dd9\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"a h:mm\",LTS:\"a h:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY MMMM D\",LLL:\"YYYY MMMM D, a h:mm\",LLLL:\"YYYY MMMM D [\\u0dc0\\u0dd0\\u0db1\\u0dd2] dddd, a h:mm:ss\"},calendar:{sameDay:\"[\\u0d85\\u0daf] LT[\\u0da7]\",nextDay:\"[\\u0dc4\\u0dd9\\u0da7] LT[\\u0da7]\",nextWeek:\"dddd LT[\\u0da7]\",lastDay:\"[\\u0d8a\\u0dba\\u0dda] LT[\\u0da7]\",lastWeek:\"[\\u0db4\\u0dc3\\u0dd4\\u0d9c\\u0dd2\\u0dba] dddd LT[\\u0da7]\",sameElse:\"L\"},relativeTime:{future:\"%s\\u0d9a\\u0dd2\\u0db1\\u0dca\",past:\"%s\\u0d9a\\u0da7 \\u0db4\\u0dd9\\u0dbb\",s:\"\\u0dad\\u0dad\\u0dca\\u0db4\\u0dbb \\u0d9a\\u0dd2\\u0dc4\\u0dd2\\u0db4\\u0dba\",ss:\"\\u0dad\\u0dad\\u0dca\\u0db4\\u0dbb %d\",m:\"\\u0db8\\u0dd2\\u0db1\\u0dd2\\u0dad\\u0dca\\u0dad\\u0dd4\\u0dc0\",mm:\"\\u0db8\\u0dd2\\u0db1\\u0dd2\\u0dad\\u0dca\\u0dad\\u0dd4 %d\",h:\"\\u0db4\\u0dd0\\u0dba\",hh:\"\\u0db4\\u0dd0\\u0dba %d\",d:\"\\u0daf\\u0dd2\\u0db1\\u0dba\",dd:\"\\u0daf\\u0dd2\\u0db1 %d\",M:\"\\u0db8\\u0dcf\\u0dc3\\u0dba\",MM:\"\\u0db8\\u0dcf\\u0dc3 %d\",y:\"\\u0dc0\\u0dc3\\u0dbb\",yy:\"\\u0dc0\\u0dc3\\u0dbb %d\"},dayOfMonthOrdinalParse:/\\d{1,2} \\u0dc0\\u0dd0\\u0db1\\u0dd2/,ordinal:function(e){return e+\" \\u0dc0\\u0dd0\\u0db1\\u0dd2\"},meridiemParse:/\\u0db4\\u0dd9\\u0dbb \\u0dc0\\u0dbb\\u0dd4|\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4|\\u0db4\\u0dd9.\\u0dc0|\\u0db4.\\u0dc0./,isPM:function(e){return\"\\u0db4.\\u0dc0.\"===e||\"\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4\"===e},meridiem:function(e,t,n){return e>11?n?\"\\u0db4.\\u0dc0.\":\"\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4\":n?\"\\u0db4\\u0dd9.\\u0dc0.\":\"\\u0db4\\u0dd9\\u0dbb \\u0dc0\\u0dbb\\u0dd4\"}})}(n(\"wd/R\"))},\"8/+R\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0a67\",2:\"\\u0a68\",3:\"\\u0a69\",4:\"\\u0a6a\",5:\"\\u0a6b\",6:\"\\u0a6c\",7:\"\\u0a6d\",8:\"\\u0a6e\",9:\"\\u0a6f\",0:\"\\u0a66\"},n={\"\\u0a67\":\"1\",\"\\u0a68\":\"2\",\"\\u0a69\":\"3\",\"\\u0a6a\":\"4\",\"\\u0a6b\":\"5\",\"\\u0a6c\":\"6\",\"\\u0a6d\":\"7\",\"\\u0a6e\":\"8\",\"\\u0a6f\":\"9\",\"\\u0a66\":\"0\"};e.defineLocale(\"pa-in\",{months:\"\\u0a1c\\u0a28\\u0a35\\u0a30\\u0a40_\\u0a2b\\u0a3c\\u0a30\\u0a35\\u0a30\\u0a40_\\u0a2e\\u0a3e\\u0a30\\u0a1a_\\u0a05\\u0a2a\\u0a4d\\u0a30\\u0a48\\u0a32_\\u0a2e\\u0a08_\\u0a1c\\u0a42\\u0a28_\\u0a1c\\u0a41\\u0a32\\u0a3e\\u0a08_\\u0a05\\u0a17\\u0a38\\u0a24_\\u0a38\\u0a24\\u0a70\\u0a2c\\u0a30_\\u0a05\\u0a15\\u0a24\\u0a42\\u0a2c\\u0a30_\\u0a28\\u0a35\\u0a70\\u0a2c\\u0a30_\\u0a26\\u0a38\\u0a70\\u0a2c\\u0a30\".split(\"_\"),monthsShort:\"\\u0a1c\\u0a28\\u0a35\\u0a30\\u0a40_\\u0a2b\\u0a3c\\u0a30\\u0a35\\u0a30\\u0a40_\\u0a2e\\u0a3e\\u0a30\\u0a1a_\\u0a05\\u0a2a\\u0a4d\\u0a30\\u0a48\\u0a32_\\u0a2e\\u0a08_\\u0a1c\\u0a42\\u0a28_\\u0a1c\\u0a41\\u0a32\\u0a3e\\u0a08_\\u0a05\\u0a17\\u0a38\\u0a24_\\u0a38\\u0a24\\u0a70\\u0a2c\\u0a30_\\u0a05\\u0a15\\u0a24\\u0a42\\u0a2c\\u0a30_\\u0a28\\u0a35\\u0a70\\u0a2c\\u0a30_\\u0a26\\u0a38\\u0a70\\u0a2c\\u0a30\".split(\"_\"),weekdays:\"\\u0a10\\u0a24\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a4b\\u0a2e\\u0a35\\u0a3e\\u0a30_\\u0a2e\\u0a70\\u0a17\\u0a32\\u0a35\\u0a3e\\u0a30_\\u0a2c\\u0a41\\u0a27\\u0a35\\u0a3e\\u0a30_\\u0a35\\u0a40\\u0a30\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a71\\u0a15\\u0a30\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\\u0a1a\\u0a30\\u0a35\\u0a3e\\u0a30\".split(\"_\"),weekdaysShort:\"\\u0a10\\u0a24_\\u0a38\\u0a4b\\u0a2e_\\u0a2e\\u0a70\\u0a17\\u0a32_\\u0a2c\\u0a41\\u0a27_\\u0a35\\u0a40\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a15\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\".split(\"_\"),weekdaysMin:\"\\u0a10\\u0a24_\\u0a38\\u0a4b\\u0a2e_\\u0a2e\\u0a70\\u0a17\\u0a32_\\u0a2c\\u0a41\\u0a27_\\u0a35\\u0a40\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a15\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0a35\\u0a1c\\u0a47\",LTS:\"A h:mm:ss \\u0a35\\u0a1c\\u0a47\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0a35\\u0a1c\\u0a47\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0a35\\u0a1c\\u0a47\"},calendar:{sameDay:\"[\\u0a05\\u0a1c] LT\",nextDay:\"[\\u0a15\\u0a32] LT\",nextWeek:\"[\\u0a05\\u0a17\\u0a32\\u0a3e] dddd, LT\",lastDay:\"[\\u0a15\\u0a32] LT\",lastWeek:\"[\\u0a2a\\u0a3f\\u0a1b\\u0a32\\u0a47] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0a35\\u0a3f\\u0a71\\u0a1a\",past:\"%s \\u0a2a\\u0a3f\\u0a1b\\u0a32\\u0a47\",s:\"\\u0a15\\u0a41\\u0a1d \\u0a38\\u0a15\\u0a3f\\u0a70\\u0a1f\",ss:\"%d \\u0a38\\u0a15\\u0a3f\\u0a70\\u0a1f\",m:\"\\u0a07\\u0a15 \\u0a2e\\u0a3f\\u0a70\\u0a1f\",mm:\"%d \\u0a2e\\u0a3f\\u0a70\\u0a1f\",h:\"\\u0a07\\u0a71\\u0a15 \\u0a18\\u0a70\\u0a1f\\u0a3e\",hh:\"%d \\u0a18\\u0a70\\u0a1f\\u0a47\",d:\"\\u0a07\\u0a71\\u0a15 \\u0a26\\u0a3f\\u0a28\",dd:\"%d \\u0a26\\u0a3f\\u0a28\",M:\"\\u0a07\\u0a71\\u0a15 \\u0a2e\\u0a39\\u0a40\\u0a28\\u0a3e\",MM:\"%d \\u0a2e\\u0a39\\u0a40\\u0a28\\u0a47\",y:\"\\u0a07\\u0a71\\u0a15 \\u0a38\\u0a3e\\u0a32\",yy:\"%d \\u0a38\\u0a3e\\u0a32\"},preparse:function(e){return e.replace(/[\\u0a67\\u0a68\\u0a69\\u0a6a\\u0a6b\\u0a6c\\u0a6d\\u0a6e\\u0a6f\\u0a66]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0a30\\u0a3e\\u0a24|\\u0a38\\u0a35\\u0a47\\u0a30|\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30|\\u0a38\\u0a3c\\u0a3e\\u0a2e/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0a30\\u0a3e\\u0a24\"===t?e<4?e:e+12:\"\\u0a38\\u0a35\\u0a47\\u0a30\"===t?e:\"\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30\"===t?e>=10?e:e+12:\"\\u0a38\\u0a3c\\u0a3e\\u0a2e\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0a30\\u0a3e\\u0a24\":e<10?\"\\u0a38\\u0a35\\u0a47\\u0a30\":e<17?\"\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30\":e<20?\"\\u0a38\\u0a3c\\u0a3e\\u0a2e\":\"\\u0a30\\u0a3e\\u0a24\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"8mBD\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt\",{months:\"Janeiro_Fevereiro_Mar\\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingo_Segunda-feira_Ter\\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\\xe1bado\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ter_Qua_Qui_Sex_S\\xe1b\".split(\"_\"),weekdaysMin:\"Do_2\\xaa_3\\xaa_4\\xaa_5\\xaa_6\\xaa_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY HH:mm\"},calendar:{sameDay:\"[Hoje \\xe0s] LT\",nextDay:\"[Amanh\\xe3 \\xe0s] LT\",nextWeek:\"dddd [\\xe0s] LT\",lastDay:\"[Ontem \\xe0s] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[\\xdaltimo] dddd [\\xe0s] LT\":\"[\\xdaltima] dddd [\\xe0s] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"h\\xe1 %s\",s:\"segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",M:\"um m\\xeas\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"9rRi\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"gd\",{months:[\"Am Faoilleach\",\"An Gearran\",\"Am M\\xe0rt\",\"An Giblean\",\"An C\\xe8itean\",\"An t-\\xd2gmhios\",\"An t-Iuchar\",\"An L\\xf9nastal\",\"An t-Sultain\",\"An D\\xe0mhair\",\"An t-Samhain\",\"An D\\xf9bhlachd\"],monthsShort:[\"Faoi\",\"Gear\",\"M\\xe0rt\",\"Gibl\",\"C\\xe8it\",\"\\xd2gmh\",\"Iuch\",\"L\\xf9n\",\"Sult\",\"D\\xe0mh\",\"Samh\",\"D\\xf9bh\"],monthsParseExact:!0,weekdays:[\"Did\\xf2mhnaich\",\"Diluain\",\"Dim\\xe0irt\",\"Diciadain\",\"Diardaoin\",\"Dihaoine\",\"Disathairne\"],weekdaysShort:[\"Did\",\"Dil\",\"Dim\",\"Dic\",\"Dia\",\"Dih\",\"Dis\"],weekdaysMin:[\"D\\xf2\",\"Lu\",\"M\\xe0\",\"Ci\",\"Ar\",\"Ha\",\"Sa\"],longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[An-diugh aig] LT\",nextDay:\"[A-m\\xe0ireach aig] LT\",nextWeek:\"dddd [aig] LT\",lastDay:\"[An-d\\xe8 aig] LT\",lastWeek:\"dddd [seo chaidh] [aig] LT\",sameElse:\"L\"},relativeTime:{future:\"ann an %s\",past:\"bho chionn %s\",s:\"beagan diogan\",ss:\"%d diogan\",m:\"mionaid\",mm:\"%d mionaidean\",h:\"uair\",hh:\"%d uairean\",d:\"latha\",dd:\"%d latha\",M:\"m\\xecos\",MM:\"%d m\\xecosan\",y:\"bliadhna\",yy:\"%d bliadhna\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"A+xa\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cv\",{months:\"\\u043a\\u04d1\\u0440\\u043b\\u0430\\u0447_\\u043d\\u0430\\u0440\\u04d1\\u0441_\\u043f\\u0443\\u0448_\\u0430\\u043a\\u0430_\\u043c\\u0430\\u0439_\\u04ab\\u04d7\\u0440\\u0442\\u043c\\u0435_\\u0443\\u0442\\u04d1_\\u04ab\\u0443\\u0440\\u043b\\u0430_\\u0430\\u0432\\u04d1\\u043d_\\u044e\\u043f\\u0430_\\u0447\\u04f3\\u043a_\\u0440\\u0430\\u0448\\u0442\\u0430\\u0432\".split(\"_\"),monthsShort:\"\\u043a\\u04d1\\u0440_\\u043d\\u0430\\u0440_\\u043f\\u0443\\u0448_\\u0430\\u043a\\u0430_\\u043c\\u0430\\u0439_\\u04ab\\u04d7\\u0440_\\u0443\\u0442\\u04d1_\\u04ab\\u0443\\u0440_\\u0430\\u0432\\u043d_\\u044e\\u043f\\u0430_\\u0447\\u04f3\\u043a_\\u0440\\u0430\\u0448\".split(\"_\"),weekdays:\"\\u0432\\u044b\\u0440\\u0441\\u0430\\u0440\\u043d\\u0438\\u043a\\u0443\\u043d_\\u0442\\u0443\\u043d\\u0442\\u0438\\u043a\\u0443\\u043d_\\u044b\\u0442\\u043b\\u0430\\u0440\\u0438\\u043a\\u0443\\u043d_\\u044e\\u043d\\u043a\\u0443\\u043d_\\u043a\\u04d7\\u04ab\\u043d\\u0435\\u0440\\u043d\\u0438\\u043a\\u0443\\u043d_\\u044d\\u0440\\u043d\\u0435\\u043a\\u0443\\u043d_\\u0448\\u04d1\\u043c\\u0430\\u0442\\u043a\\u0443\\u043d\".split(\"_\"),weekdaysShort:\"\\u0432\\u044b\\u0440_\\u0442\\u0443\\u043d_\\u044b\\u0442\\u043b_\\u044e\\u043d_\\u043a\\u04d7\\u04ab_\\u044d\\u0440\\u043d_\\u0448\\u04d1\\u043c\".split(\"_\"),weekdaysMin:\"\\u0432\\u0440_\\u0442\\u043d_\\u044b\\u0442_\\u044e\\u043d_\\u043a\\u04ab_\\u044d\\u0440_\\u0448\\u043c\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7]\",LLL:\"YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7], HH:mm\",LLLL:\"dddd, YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7], HH:mm\"},calendar:{sameDay:\"[\\u041f\\u0430\\u044f\\u043d] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",nextDay:\"[\\u042b\\u0440\\u0430\\u043d] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",lastDay:\"[\\u04d6\\u043d\\u0435\\u0440] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",nextWeek:\"[\\u04aa\\u0438\\u0442\\u0435\\u0441] dddd LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",lastWeek:\"[\\u0418\\u0440\\u0442\\u043d\\u04d7] dddd LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",sameElse:\"L\"},relativeTime:{future:function(e){return e+(/\\u0441\\u0435\\u0445\\u0435\\u0442$/i.exec(e)?\"\\u0440\\u0435\\u043d\":/\\u04ab\\u0443\\u043b$/i.exec(e)?\"\\u0442\\u0430\\u043d\":\"\\u0440\\u0430\\u043d\")},past:\"%s \\u043a\\u0430\\u044f\\u043b\\u043b\\u0430\",s:\"\\u043f\\u04d7\\u0440-\\u0438\\u043a \\u04ab\\u0435\\u043a\\u043a\\u0443\\u043d\\u0442\",ss:\"%d \\u04ab\\u0435\\u043a\\u043a\\u0443\\u043d\\u0442\",m:\"\\u043f\\u04d7\\u0440 \\u043c\\u0438\\u043d\\u0443\\u0442\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\",h:\"\\u043f\\u04d7\\u0440 \\u0441\\u0435\\u0445\\u0435\\u0442\",hh:\"%d \\u0441\\u0435\\u0445\\u0435\\u0442\",d:\"\\u043f\\u04d7\\u0440 \\u043a\\u0443\\u043d\",dd:\"%d \\u043a\\u0443\\u043d\",M:\"\\u043f\\u04d7\\u0440 \\u0443\\u0439\\u04d1\\u0445\",MM:\"%d \\u0443\\u0439\\u04d1\\u0445\",y:\"\\u043f\\u04d7\\u0440 \\u04ab\\u0443\\u043b\",yy:\"%d \\u04ab\\u0443\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-\\u043c\\u04d7\\u0448/,ordinal:\"%d-\\u043c\\u04d7\\u0448\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},AQ68:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz-latn\",{months:\"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr\".split(\"_\"),monthsShort:\"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek\".split(\"_\"),weekdays:\"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba\".split(\"_\"),weekdaysShort:\"Yak_Dush_Sesh_Chor_Pay_Jum_Shan\".split(\"_\"),weekdaysMin:\"Ya_Du_Se_Cho_Pa_Ju_Sha\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[Bugun soat] LT [da]\",nextDay:\"[Ertaga] LT [da]\",nextWeek:\"dddd [kuni soat] LT [da]\",lastDay:\"[Kecha soat] LT [da]\",lastWeek:\"[O'tgan] dddd [kuni soat] LT [da]\",sameElse:\"L\"},relativeTime:{future:\"Yaqin %s ichida\",past:\"Bir necha %s oldin\",s:\"soniya\",ss:\"%d soniya\",m:\"bir daqiqa\",mm:\"%d daqiqa\",h:\"bir soat\",hh:\"%d soat\",d:\"bir kun\",dd:\"%d kun\",M:\"bir oy\",MM:\"%d oy\",y:\"bir yil\",yy:\"%d yil\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},AvvY:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ml\",{months:\"\\u0d1c\\u0d28\\u0d41\\u0d35\\u0d30\\u0d3f_\\u0d2b\\u0d46\\u0d2c\\u0d4d\\u0d30\\u0d41\\u0d35\\u0d30\\u0d3f_\\u0d2e\\u0d3e\\u0d7c\\u0d1a\\u0d4d\\u0d1a\\u0d4d_\\u0d0f\\u0d2a\\u0d4d\\u0d30\\u0d3f\\u0d7d_\\u0d2e\\u0d47\\u0d2f\\u0d4d_\\u0d1c\\u0d42\\u0d7a_\\u0d1c\\u0d42\\u0d32\\u0d48_\\u0d13\\u0d17\\u0d38\\u0d4d\\u0d31\\u0d4d\\u0d31\\u0d4d_\\u0d38\\u0d46\\u0d2a\\u0d4d\\u0d31\\u0d4d\\u0d31\\u0d02\\u0d2c\\u0d7c_\\u0d12\\u0d15\\u0d4d\\u0d1f\\u0d4b\\u0d2c\\u0d7c_\\u0d28\\u0d35\\u0d02\\u0d2c\\u0d7c_\\u0d21\\u0d3f\\u0d38\\u0d02\\u0d2c\\u0d7c\".split(\"_\"),monthsShort:\"\\u0d1c\\u0d28\\u0d41._\\u0d2b\\u0d46\\u0d2c\\u0d4d\\u0d30\\u0d41._\\u0d2e\\u0d3e\\u0d7c._\\u0d0f\\u0d2a\\u0d4d\\u0d30\\u0d3f._\\u0d2e\\u0d47\\u0d2f\\u0d4d_\\u0d1c\\u0d42\\u0d7a_\\u0d1c\\u0d42\\u0d32\\u0d48._\\u0d13\\u0d17._\\u0d38\\u0d46\\u0d2a\\u0d4d\\u0d31\\u0d4d\\u0d31._\\u0d12\\u0d15\\u0d4d\\u0d1f\\u0d4b._\\u0d28\\u0d35\\u0d02._\\u0d21\\u0d3f\\u0d38\\u0d02.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0d1e\\u0d3e\\u0d2f\\u0d31\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d24\\u0d3f\\u0d19\\u0d4d\\u0d15\\u0d33\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d1a\\u0d4a\\u0d35\\u0d4d\\u0d35\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d2c\\u0d41\\u0d27\\u0d28\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d35\\u0d4d\\u0d2f\\u0d3e\\u0d34\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d35\\u0d46\\u0d33\\u0d4d\\u0d33\\u0d3f\\u0d2f\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d36\\u0d28\\u0d3f\\u0d2f\\u0d3e\\u0d34\\u0d4d\\u0d1a\".split(\"_\"),weekdaysShort:\"\\u0d1e\\u0d3e\\u0d2f\\u0d7c_\\u0d24\\u0d3f\\u0d19\\u0d4d\\u0d15\\u0d7e_\\u0d1a\\u0d4a\\u0d35\\u0d4d\\u0d35_\\u0d2c\\u0d41\\u0d27\\u0d7b_\\u0d35\\u0d4d\\u0d2f\\u0d3e\\u0d34\\u0d02_\\u0d35\\u0d46\\u0d33\\u0d4d\\u0d33\\u0d3f_\\u0d36\\u0d28\\u0d3f\".split(\"_\"),weekdaysMin:\"\\u0d1e\\u0d3e_\\u0d24\\u0d3f_\\u0d1a\\u0d4a_\\u0d2c\\u0d41_\\u0d35\\u0d4d\\u0d2f\\u0d3e_\\u0d35\\u0d46_\\u0d36\".split(\"_\"),longDateFormat:{LT:\"A h:mm -\\u0d28\\u0d41\",LTS:\"A h:mm:ss -\\u0d28\\u0d41\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm -\\u0d28\\u0d41\",LLLL:\"dddd, D MMMM YYYY, A h:mm -\\u0d28\\u0d41\"},calendar:{sameDay:\"[\\u0d07\\u0d28\\u0d4d\\u0d28\\u0d4d] LT\",nextDay:\"[\\u0d28\\u0d3e\\u0d33\\u0d46] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0d07\\u0d28\\u0d4d\\u0d28\\u0d32\\u0d46] LT\",lastWeek:\"[\\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\",past:\"%s \\u0d2e\\u0d41\\u0d7b\\u0d2a\\u0d4d\",s:\"\\u0d05\\u0d7d\\u0d2a \\u0d28\\u0d3f\\u0d2e\\u0d3f\\u0d37\\u0d19\\u0d4d\\u0d19\\u0d7e\",ss:\"%d \\u0d38\\u0d46\\u0d15\\u0d4d\\u0d15\\u0d7b\\u0d21\\u0d4d\",m:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d3f\\u0d28\\u0d3f\\u0d31\\u0d4d\\u0d31\\u0d4d\",mm:\"%d \\u0d2e\\u0d3f\\u0d28\\u0d3f\\u0d31\\u0d4d\\u0d31\\u0d4d\",h:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d23\\u0d3f\\u0d15\\u0d4d\\u0d15\\u0d42\\u0d7c\",hh:\"%d \\u0d2e\\u0d23\\u0d3f\\u0d15\\u0d4d\\u0d15\\u0d42\\u0d7c\",d:\"\\u0d12\\u0d30\\u0d41 \\u0d26\\u0d3f\\u0d35\\u0d38\\u0d02\",dd:\"%d \\u0d26\\u0d3f\\u0d35\\u0d38\\u0d02\",M:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d3e\\u0d38\\u0d02\",MM:\"%d \\u0d2e\\u0d3e\\u0d38\\u0d02\",y:\"\\u0d12\\u0d30\\u0d41 \\u0d35\\u0d7c\\u0d37\\u0d02\",yy:\"%d \\u0d35\\u0d7c\\u0d37\\u0d02\"},meridiemParse:/\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f|\\u0d30\\u0d3e\\u0d35\\u0d3f\\u0d32\\u0d46|\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d|\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02|\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f/i,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\"===t&&e>=4||\"\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\"===t||\"\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\":e<12?\"\\u0d30\\u0d3e\\u0d35\\u0d3f\\u0d32\\u0d46\":e<17?\"\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\":e<20?\"\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02\":\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\"}})}(n(\"wd/R\"))},B55N:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ja\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u65e5\\u66dc\\u65e5_\\u6708\\u66dc\\u65e5_\\u706b\\u66dc\\u65e5_\\u6c34\\u66dc\\u65e5_\\u6728\\u66dc\\u65e5_\\u91d1\\u66dc\\u65e5_\\u571f\\u66dc\\u65e5\".split(\"_\"),weekdaysShort:\"\\u65e5_\\u6708_\\u706b_\\u6c34_\\u6728_\\u91d1_\\u571f\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u6708_\\u706b_\\u6c34_\\u6728_\\u91d1_\\u571f\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5 dddd HH:mm\",l:\"YYYY/MM/DD\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5(ddd) HH:mm\"},meridiemParse:/\\u5348\\u524d|\\u5348\\u5f8c/i,isPM:function(e){return\"\\u5348\\u5f8c\"===e},meridiem:function(e,t,n){return e<12?\"\\u5348\\u524d\":\"\\u5348\\u5f8c\"},calendar:{sameDay:\"[\\u4eca\\u65e5] LT\",nextDay:\"[\\u660e\\u65e5] LT\",nextWeek:function(e){return e.week()12?e:e+12:\"sanje\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"rati\":e<12?\"sokalli\":e<16?\"donparam\":e<20?\"sanje\":\"rati\"}})}(n(\"wd/R\"))},Dkky:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ch\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Dmvi:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-au\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},DoHr:function(e,t,n){!function(e){\"use strict\";var t={1:\"'inci\",5:\"'inci\",8:\"'inci\",70:\"'inci\",80:\"'inci\",2:\"'nci\",7:\"'nci\",20:\"'nci\",50:\"'nci\",3:\"'\\xfcnc\\xfc\",4:\"'\\xfcnc\\xfc\",100:\"'\\xfcnc\\xfc\",6:\"'nc\\u0131\",9:\"'uncu\",10:\"'uncu\",30:\"'uncu\",60:\"'\\u0131nc\\u0131\",90:\"'\\u0131nc\\u0131\"};e.defineLocale(\"tr\",{months:\"Ocak_\\u015eubat_Mart_Nisan_May\\u0131s_Haziran_Temmuz_A\\u011fustos_Eyl\\xfcl_Ekim_Kas\\u0131m_Aral\\u0131k\".split(\"_\"),monthsShort:\"Oca_\\u015eub_Mar_Nis_May_Haz_Tem_A\\u011fu_Eyl_Eki_Kas_Ara\".split(\"_\"),weekdays:\"Pazar_Pazartesi_Sal\\u0131_\\xc7ar\\u015famba_Per\\u015fembe_Cuma_Cumartesi\".split(\"_\"),weekdaysShort:\"Paz_Pts_Sal_\\xc7ar_Per_Cum_Cts\".split(\"_\"),weekdaysMin:\"Pz_Pt_Sa_\\xc7a_Pe_Cu_Ct\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bug\\xfcn saat] LT\",nextDay:\"[yar\\u0131n saat] LT\",nextWeek:\"[gelecek] dddd [saat] LT\",lastDay:\"[d\\xfcn] LT\",lastWeek:\"[ge\\xe7en] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s \\xf6nce\",s:\"birka\\xe7 saniye\",ss:\"%d saniye\",m:\"bir dakika\",mm:\"%d dakika\",h:\"bir saat\",hh:\"%d saat\",d:\"bir g\\xfcn\",dd:\"%d g\\xfcn\",M:\"bir ay\",MM:\"%d ay\",y:\"bir y\\u0131l\",yy:\"%d y\\u0131l\"},ordinal:function(e,n){switch(n){case\"d\":case\"D\":case\"Do\":case\"DD\":return e;default:if(0===e)return e+\"'\\u0131nc\\u0131\";var i=e%10;return e+(t[i]||t[e%100-i]||t[e>=100?100:null])}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},DxQv:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"da\",{months:\"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"s\\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\\xf8rdag\".split(\"_\"),weekdaysShort:\"s\\xf8n_man_tir_ons_tor_fre_l\\xf8r\".split(\"_\"),weekdaysMin:\"s\\xf8_ma_ti_on_to_fr_l\\xf8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd [d.] D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"p\\xe5 dddd [kl.] LT\",lastDay:\"[i g\\xe5r kl.] LT\",lastWeek:\"[i] dddd[s kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"f\\xe5 sekunder\",ss:\"%d sekunder\",m:\"et minut\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dage\",M:\"en m\\xe5ned\",MM:\"%d m\\xe5neder\",y:\"et \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},Dzi0:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tl-ph\",{months:\"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre\".split(\"_\"),monthsShort:\"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis\".split(\"_\"),weekdays:\"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado\".split(\"_\"),weekdaysShort:\"Lin_Lun_Mar_Miy_Huw_Biy_Sab\".split(\"_\"),weekdaysMin:\"Li_Lu_Ma_Mi_Hu_Bi_Sab\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"MM/D/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY HH:mm\",LLLL:\"dddd, MMMM DD, YYYY HH:mm\"},calendar:{sameDay:\"LT [ngayong araw]\",nextDay:\"[Bukas ng] LT\",nextWeek:\"LT [sa susunod na] dddd\",lastDay:\"LT [kahapon]\",lastWeek:\"LT [noong nakaraang] dddd\",sameElse:\"L\"},relativeTime:{future:\"sa loob ng %s\",past:\"%s ang nakalipas\",s:\"ilang segundo\",ss:\"%d segundo\",m:\"isang minuto\",mm:\"%d minuto\",h:\"isang oras\",hh:\"%d oras\",d:\"isang araw\",dd:\"%d araw\",M:\"isang buwan\",MM:\"%d buwan\",y:\"isang taon\",yy:\"%d taon\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"E+lV\":function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430\",\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0435\",\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\"],m:[\"\\u0458\\u0435\\u0434\\u0430\\u043d \\u043c\\u0438\\u043d\\u0443\\u0442\",\"\\u0458\\u0435\\u0434\\u043d\\u0435 \\u043c\\u0438\\u043d\\u0443\\u0442\\u0435\"],mm:[\"\\u043c\\u0438\\u043d\\u0443\\u0442\",\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0435\",\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\"],h:[\"\\u0458\\u0435\\u0434\\u0430\\u043d \\u0441\\u0430\\u0442\",\"\\u0458\\u0435\\u0434\\u043d\\u043e\\u0433 \\u0441\\u0430\\u0442\\u0430\"],hh:[\"\\u0441\\u0430\\u0442\",\"\\u0441\\u0430\\u0442\\u0430\",\"\\u0441\\u0430\\u0442\\u0438\"],dd:[\"\\u0434\\u0430\\u043d\",\"\\u0434\\u0430\\u043d\\u0430\",\"\\u0434\\u0430\\u043d\\u0430\"],MM:[\"\\u043c\\u0435\\u0441\\u0435\\u0446\",\"\\u043c\\u0435\\u0441\\u0435\\u0446\\u0430\",\"\\u043c\\u0435\\u0441\\u0435\\u0446\\u0438\"],yy:[\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0435\",\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var s=t.words[i];return 1===i.length?n?s[0]:s[1]:e+\" \"+t.correctGrammaticalCase(e,s)}};e.defineLocale(\"sr-cyrl\",{months:\"\\u0458\\u0430\\u043d\\u0443\\u0430\\u0440_\\u0444\\u0435\\u0431\\u0440\\u0443\\u0430\\u0440_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0431\\u0430\\u0440_\\u043e\\u043a\\u0442\\u043e\\u0431\\u0430\\u0440_\\u043d\\u043e\\u0432\\u0435\\u043c\\u0431\\u0430\\u0440_\\u0434\\u0435\\u0446\\u0435\\u043c\\u0431\\u0430\\u0440\".split(\"_\"),monthsShort:\"\\u0458\\u0430\\u043d._\\u0444\\u0435\\u0431._\\u043c\\u0430\\u0440._\\u0430\\u043f\\u0440._\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043f._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u0432._\\u0434\\u0435\\u0446.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u0459\\u0430_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u0459\\u0430\\u043a_\\u0443\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u0430\\u043a_\\u043f\\u0435\\u0442\\u0430\\u043a_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434._\\u043f\\u043e\\u043d._\\u0443\\u0442\\u043e._\\u0441\\u0440\\u0435._\\u0447\\u0435\\u0442._\\u043f\\u0435\\u0442._\\u0441\\u0443\\u0431.\".split(\"_\"),weekdaysMin:\"\\u043d\\u0435_\\u043f\\u043e_\\u0443\\u0442_\\u0441\\u0440_\\u0447\\u0435_\\u043f\\u0435_\\u0441\\u0443\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0434\\u0430\\u043d\\u0430\\u0441 \\u0443] LT\",nextDay:\"[\\u0441\\u0443\\u0442\\u0440\\u0430 \\u0443] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[\\u0443] [\\u043d\\u0435\\u0434\\u0435\\u0459\\u0443] [\\u0443] LT\";case 3:return\"[\\u0443] [\\u0441\\u0440\\u0435\\u0434\\u0443] [\\u0443] LT\";case 6:return\"[\\u0443] [\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443] [\\u0443] LT\";case 1:case 2:case 4:case 5:return\"[\\u0443] dddd [\\u0443] LT\"}},lastDay:\"[\\u0458\\u0443\\u0447\\u0435 \\u0443] LT\",lastWeek:function(){return[\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u043d\\u0435\\u0434\\u0435\\u0459\\u0435] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u0459\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u0443\\u0442\\u043e\\u0440\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u0441\\u0440\\u0435\\u0434\\u0435] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u043f\\u0435\\u0442\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u0441\\u0443\\u0431\\u043e\\u0442\\u0435] [\\u0443] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"\\u0437\\u0430 %s\",past:\"\\u043f\\u0440\\u0435 %s\",s:\"\\u043d\\u0435\\u043a\\u043e\\u043b\\u0438\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"\\u0434\\u0430\\u043d\",dd:t.translate,M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:t.translate,y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},EOgW:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"th\",{months:\"\\u0e21\\u0e01\\u0e23\\u0e32\\u0e04\\u0e21_\\u0e01\\u0e38\\u0e21\\u0e20\\u0e32\\u0e1e\\u0e31\\u0e19\\u0e18\\u0e4c_\\u0e21\\u0e35\\u0e19\\u0e32\\u0e04\\u0e21_\\u0e40\\u0e21\\u0e29\\u0e32\\u0e22\\u0e19_\\u0e1e\\u0e24\\u0e29\\u0e20\\u0e32\\u0e04\\u0e21_\\u0e21\\u0e34\\u0e16\\u0e38\\u0e19\\u0e32\\u0e22\\u0e19_\\u0e01\\u0e23\\u0e01\\u0e0e\\u0e32\\u0e04\\u0e21_\\u0e2a\\u0e34\\u0e07\\u0e2b\\u0e32\\u0e04\\u0e21_\\u0e01\\u0e31\\u0e19\\u0e22\\u0e32\\u0e22\\u0e19_\\u0e15\\u0e38\\u0e25\\u0e32\\u0e04\\u0e21_\\u0e1e\\u0e24\\u0e28\\u0e08\\u0e34\\u0e01\\u0e32\\u0e22\\u0e19_\\u0e18\\u0e31\\u0e19\\u0e27\\u0e32\\u0e04\\u0e21\".split(\"_\"),monthsShort:\"\\u0e21.\\u0e04._\\u0e01.\\u0e1e._\\u0e21\\u0e35.\\u0e04._\\u0e40\\u0e21.\\u0e22._\\u0e1e.\\u0e04._\\u0e21\\u0e34.\\u0e22._\\u0e01.\\u0e04._\\u0e2a.\\u0e04._\\u0e01.\\u0e22._\\u0e15.\\u0e04._\\u0e1e.\\u0e22._\\u0e18.\\u0e04.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0e2d\\u0e32\\u0e17\\u0e34\\u0e15\\u0e22\\u0e4c_\\u0e08\\u0e31\\u0e19\\u0e17\\u0e23\\u0e4c_\\u0e2d\\u0e31\\u0e07\\u0e04\\u0e32\\u0e23_\\u0e1e\\u0e38\\u0e18_\\u0e1e\\u0e24\\u0e2b\\u0e31\\u0e2a\\u0e1a\\u0e14\\u0e35_\\u0e28\\u0e38\\u0e01\\u0e23\\u0e4c_\\u0e40\\u0e2a\\u0e32\\u0e23\\u0e4c\".split(\"_\"),weekdaysShort:\"\\u0e2d\\u0e32\\u0e17\\u0e34\\u0e15\\u0e22\\u0e4c_\\u0e08\\u0e31\\u0e19\\u0e17\\u0e23\\u0e4c_\\u0e2d\\u0e31\\u0e07\\u0e04\\u0e32\\u0e23_\\u0e1e\\u0e38\\u0e18_\\u0e1e\\u0e24\\u0e2b\\u0e31\\u0e2a_\\u0e28\\u0e38\\u0e01\\u0e23\\u0e4c_\\u0e40\\u0e2a\\u0e32\\u0e23\\u0e4c\".split(\"_\"),weekdaysMin:\"\\u0e2d\\u0e32._\\u0e08._\\u0e2d._\\u0e1e._\\u0e1e\\u0e24._\\u0e28._\\u0e2a.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY \\u0e40\\u0e27\\u0e25\\u0e32 H:mm\",LLLL:\"\\u0e27\\u0e31\\u0e19dddd\\u0e17\\u0e35\\u0e48 D MMMM YYYY \\u0e40\\u0e27\\u0e25\\u0e32 H:mm\"},meridiemParse:/\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07|\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07/,isPM:function(e){return\"\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\"===e},meridiem:function(e,t,n){return e<12?\"\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\":\"\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\"},calendar:{sameDay:\"[\\u0e27\\u0e31\\u0e19\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",nextDay:\"[\\u0e1e\\u0e23\\u0e38\\u0e48\\u0e07\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",nextWeek:\"dddd[\\u0e2b\\u0e19\\u0e49\\u0e32 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",lastDay:\"[\\u0e40\\u0e21\\u0e37\\u0e48\\u0e2d\\u0e27\\u0e32\\u0e19\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",lastWeek:\"[\\u0e27\\u0e31\\u0e19]dddd[\\u0e17\\u0e35\\u0e48\\u0e41\\u0e25\\u0e49\\u0e27 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0e2d\\u0e35\\u0e01 %s\",past:\"%s\\u0e17\\u0e35\\u0e48\\u0e41\\u0e25\\u0e49\\u0e27\",s:\"\\u0e44\\u0e21\\u0e48\\u0e01\\u0e35\\u0e48\\u0e27\\u0e34\\u0e19\\u0e32\\u0e17\\u0e35\",ss:\"%d \\u0e27\\u0e34\\u0e19\\u0e32\\u0e17\\u0e35\",m:\"1 \\u0e19\\u0e32\\u0e17\\u0e35\",mm:\"%d \\u0e19\\u0e32\\u0e17\\u0e35\",h:\"1 \\u0e0a\\u0e31\\u0e48\\u0e27\\u0e42\\u0e21\\u0e07\",hh:\"%d \\u0e0a\\u0e31\\u0e48\\u0e27\\u0e42\\u0e21\\u0e07\",d:\"1 \\u0e27\\u0e31\\u0e19\",dd:\"%d \\u0e27\\u0e31\\u0e19\",M:\"1 \\u0e40\\u0e14\\u0e37\\u0e2d\\u0e19\",MM:\"%d \\u0e40\\u0e14\\u0e37\\u0e2d\\u0e19\",y:\"1 \\u0e1b\\u0e35\",yy:\"%d \\u0e1b\\u0e35\"}})}(n(\"wd/R\"))},G0Uy:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mt\",{months:\"Jannar_Frar_Marzu_April_Mejju_\\u0120unju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Di\\u010bembru\".split(\"_\"),monthsShort:\"Jan_Fra_Mar_Apr_Mej_\\u0120un_Lul_Aww_Set_Ott_Nov_Di\\u010b\".split(\"_\"),weekdays:\"Il-\\u0126add_It-Tnejn_It-Tlieta_L-Erbg\\u0127a_Il-\\u0126amis_Il-\\u0120img\\u0127a_Is-Sibt\".split(\"_\"),weekdaysShort:\"\\u0126ad_Tne_Tli_Erb_\\u0126am_\\u0120im_Sib\".split(\"_\"),weekdaysMin:\"\\u0126a_Tn_Tl_Er_\\u0126a_\\u0120i_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Illum fil-]LT\",nextDay:\"[G\\u0127ada fil-]LT\",nextWeek:\"dddd [fil-]LT\",lastDay:\"[Il-biera\\u0127 fil-]LT\",lastWeek:\"dddd [li g\\u0127adda] [fil-]LT\",sameElse:\"L\"},relativeTime:{future:\"f\\u2019 %s\",past:\"%s ilu\",s:\"ftit sekondi\",ss:\"%d sekondi\",m:\"minuta\",mm:\"%d minuti\",h:\"sieg\\u0127a\",hh:\"%d sieg\\u0127at\",d:\"\\u0121urnata\",dd:\"%d \\u0121ranet\",M:\"xahar\",MM:\"%d xhur\",y:\"sena\",yy:\"%d sni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},H8ED:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i,s;return\"m\"===n?t?\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0430\":\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0443\":\"h\"===n?t?\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0430\":\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0443\":e+\" \"+(i=+e,s={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0430_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u044b_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\":\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0443_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u044b_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\",hh:t?\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0430_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u044b_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\":\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0443_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u044b_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\",dd:\"\\u0434\\u0437\\u0435\\u043d\\u044c_\\u0434\\u043d\\u0456_\\u0434\\u0437\\u0451\\u043d\",MM:\"\\u043c\\u0435\\u0441\\u044f\\u0446_\\u043c\\u0435\\u0441\\u044f\\u0446\\u044b_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0430\\u045e\",yy:\"\\u0433\\u043e\\u0434_\\u0433\\u0430\\u0434\\u044b_\\u0433\\u0430\\u0434\\u043e\\u045e\"}[n].split(\"_\"),i%10==1&&i%100!=11?s[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?s[1]:s[2])}e.defineLocale(\"be\",{months:{format:\"\\u0441\\u0442\\u0443\\u0434\\u0437\\u0435\\u043d\\u044f_\\u043b\\u044e\\u0442\\u0430\\u0433\\u0430_\\u0441\\u0430\\u043a\\u0430\\u0432\\u0456\\u043a\\u0430_\\u043a\\u0440\\u0430\\u0441\\u0430\\u0432\\u0456\\u043a\\u0430_\\u0442\\u0440\\u0430\\u045e\\u043d\\u044f_\\u0447\\u044d\\u0440\\u0432\\u0435\\u043d\\u044f_\\u043b\\u0456\\u043f\\u0435\\u043d\\u044f_\\u0436\\u043d\\u0456\\u045e\\u043d\\u044f_\\u0432\\u0435\\u0440\\u0430\\u0441\\u043d\\u044f_\\u043a\\u0430\\u0441\\u0442\\u0440\\u044b\\u0447\\u043d\\u0456\\u043a\\u0430_\\u043b\\u0456\\u0441\\u0442\\u0430\\u043f\\u0430\\u0434\\u0430_\\u0441\\u043d\\u0435\\u0436\\u043d\\u044f\".split(\"_\"),standalone:\"\\u0441\\u0442\\u0443\\u0434\\u0437\\u0435\\u043d\\u044c_\\u043b\\u044e\\u0442\\u044b_\\u0441\\u0430\\u043a\\u0430\\u0432\\u0456\\u043a_\\u043a\\u0440\\u0430\\u0441\\u0430\\u0432\\u0456\\u043a_\\u0442\\u0440\\u0430\\u0432\\u0435\\u043d\\u044c_\\u0447\\u044d\\u0440\\u0432\\u0435\\u043d\\u044c_\\u043b\\u0456\\u043f\\u0435\\u043d\\u044c_\\u0436\\u043d\\u0456\\u0432\\u0435\\u043d\\u044c_\\u0432\\u0435\\u0440\\u0430\\u0441\\u0435\\u043d\\u044c_\\u043a\\u0430\\u0441\\u0442\\u0440\\u044b\\u0447\\u043d\\u0456\\u043a_\\u043b\\u0456\\u0441\\u0442\\u0430\\u043f\\u0430\\u0434_\\u0441\\u043d\\u0435\\u0436\\u0430\\u043d\\u044c\".split(\"_\")},monthsShort:\"\\u0441\\u0442\\u0443\\u0434_\\u043b\\u044e\\u0442_\\u0441\\u0430\\u043a_\\u043a\\u0440\\u0430\\u0441_\\u0442\\u0440\\u0430\\u0432_\\u0447\\u044d\\u0440\\u0432_\\u043b\\u0456\\u043f_\\u0436\\u043d\\u0456\\u0432_\\u0432\\u0435\\u0440_\\u043a\\u0430\\u0441\\u0442_\\u043b\\u0456\\u0441\\u0442_\\u0441\\u043d\\u0435\\u0436\".split(\"_\"),weekdays:{format:\"\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u044e_\\u043f\\u0430\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u0430\\u043a_\\u0430\\u045e\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0435\\u0440\\u0430\\u0434\\u0443_\\u0447\\u0430\\u0446\\u0432\\u0435\\u0440_\\u043f\\u044f\\u0442\\u043d\\u0456\\u0446\\u0443_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),standalone:\"\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u044f_\\u043f\\u0430\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u0430\\u043a_\\u0430\\u045e\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0435\\u0440\\u0430\\u0434\\u0430_\\u0447\\u0430\\u0446\\u0432\\u0435\\u0440_\\u043f\\u044f\\u0442\\u043d\\u0456\\u0446\\u0430_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),isFormat:/\\[ ?[\\u0423\\u0443\\u045e] ?(?:\\u043c\\u0456\\u043d\\u0443\\u043b\\u0443\\u044e|\\u043d\\u0430\\u0441\\u0442\\u0443\\u043f\\u043d\\u0443\\u044e)? ?\\] ?dddd/},weekdaysShort:\"\\u043d\\u0434_\\u043f\\u043d_\\u0430\\u0442_\\u0441\\u0440_\\u0447\\u0446_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0430\\u0442_\\u0441\\u0440_\\u0447\\u0446_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0433.\",LLL:\"D MMMM YYYY \\u0433., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0433., HH:mm\"},calendar:{sameDay:\"[\\u0421\\u0451\\u043d\\u043d\\u044f \\u045e] LT\",nextDay:\"[\\u0417\\u0430\\u045e\\u0442\\u0440\\u0430 \\u045e] LT\",lastDay:\"[\\u0423\\u0447\\u043e\\u0440\\u0430 \\u045e] LT\",nextWeek:function(){return\"[\\u0423] dddd [\\u045e] LT\"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return\"[\\u0423 \\u043c\\u0456\\u043d\\u0443\\u043b\\u0443\\u044e] dddd [\\u045e] LT\";case 1:case 2:case 4:return\"[\\u0423 \\u043c\\u0456\\u043d\\u0443\\u043b\\u044b] dddd [\\u045e] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u043f\\u0440\\u0430\\u0437 %s\",past:\"%s \\u0442\\u0430\\u043c\\u0443\",s:\"\\u043d\\u0435\\u043a\\u0430\\u043b\\u044c\\u043a\\u0456 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:t,mm:t,h:t,hh:t,d:\"\\u0434\\u0437\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0435\\u0441\\u044f\\u0446\",MM:t,y:\"\\u0433\\u043e\\u0434\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u044b|\\u0440\\u0430\\u043d\\u0456\\u0446\\u044b|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430/,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u044b\":e<12?\"\\u0440\\u0430\\u043d\\u0456\\u0446\\u044b\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0456|\\u044b|\\u0433\\u0430)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e%10!=2&&e%10!=3||e%100==12||e%100==13?e+\"-\\u044b\":e+\"-\\u0456\";case\"D\":return e+\"-\\u0433\\u0430\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},HP3h:function(e,t,n){!function(e){\"use strict\";var t={1:\"1\",2:\"2\",3:\"3\",4:\"4\",5:\"5\",6:\"6\",7:\"7\",8:\"8\",9:\"9\",0:\"0\"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},i={s:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062b\\u0627\\u0646\\u064a\\u0629\",\"\\u062b\\u0627\\u0646\\u064a\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u0627\\u0646\",\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u064a\\u0646\"],\"%d \\u062b\\u0648\\u0627\\u0646\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\"],m:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062f\\u0642\\u064a\\u0642\\u0629\",\"\\u062f\\u0642\\u064a\\u0642\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u0627\\u0646\",\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u064a\\u0646\"],\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\"],h:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0633\\u0627\\u0639\\u0629\",\"\\u0633\\u0627\\u0639\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u0633\\u0627\\u0639\\u062a\\u0627\\u0646\",\"\\u0633\\u0627\\u0639\\u062a\\u064a\\u0646\"],\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",\"%d \\u0633\\u0627\\u0639\\u0629\",\"%d \\u0633\\u0627\\u0639\\u0629\"],d:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u064a\\u0648\\u0645\",\"\\u064a\\u0648\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u064a\\u0648\\u0645\\u0627\\u0646\",\"\\u064a\\u0648\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u064a\\u0627\\u0645\",\"%d \\u064a\\u0648\\u0645\\u064b\\u0627\",\"%d \\u064a\\u0648\\u0645\"],M:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0634\\u0647\\u0631\",\"\\u0634\\u0647\\u0631 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0634\\u0647\\u0631\\u0627\\u0646\",\"\\u0634\\u0647\\u0631\\u064a\\u0646\"],\"%d \\u0623\\u0634\\u0647\\u0631\",\"%d \\u0634\\u0647\\u0631\\u0627\",\"%d \\u0634\\u0647\\u0631\"],y:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0639\\u0627\\u0645\",\"\\u0639\\u0627\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0639\\u0627\\u0645\\u0627\\u0646\",\"\\u0639\\u0627\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u0639\\u0648\\u0627\\u0645\",\"%d \\u0639\\u0627\\u0645\\u064b\\u0627\",\"%d \\u0639\\u0627\\u0645\"]},s=function(e){return function(t,s,r,o){var a=n(t),l=i[e][n(t)];return 2===a&&(l=l[s?0:1]),l.replace(/%d/i,t)}},r=[\"\\u064a\\u0646\\u0627\\u064a\\u0631\",\"\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631\",\"\\u0645\\u0627\\u0631\\u0633\",\"\\u0623\\u0628\\u0631\\u064a\\u0644\",\"\\u0645\\u0627\\u064a\\u0648\",\"\\u064a\\u0648\\u0646\\u064a\\u0648\",\"\\u064a\\u0648\\u0644\\u064a\\u0648\",\"\\u0623\\u063a\\u0633\\u0637\\u0633\",\"\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631\",\"\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631\",\"\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\"];e.defineLocale(\"ar-ly\",{months:r,monthsShort:r,weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/\\u200fM/\\u200fYYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u064b\\u0627 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0628\\u0639\\u062f %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:s(\"s\"),ss:s(\"s\"),m:s(\"m\"),mm:s(\"m\"),h:s(\"h\"),hh:s(\"h\"),d:s(\"d\"),dd:s(\"d\"),M:s(\"M\"),MM:s(\"M\"),y:s(\"y\"),yy:s(\"y\")},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},IBtZ:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ka\",{months:{standalone:\"\\u10d8\\u10d0\\u10dc\\u10d5\\u10d0\\u10e0\\u10d8_\\u10d7\\u10d4\\u10d1\\u10d4\\u10e0\\u10d5\\u10d0\\u10da\\u10d8_\\u10db\\u10d0\\u10e0\\u10e2\\u10d8_\\u10d0\\u10de\\u10e0\\u10d8\\u10da\\u10d8_\\u10db\\u10d0\\u10d8\\u10e1\\u10d8_\\u10d8\\u10d5\\u10dc\\u10d8\\u10e1\\u10d8_\\u10d8\\u10d5\\u10da\\u10d8\\u10e1\\u10d8_\\u10d0\\u10d2\\u10d5\\u10d8\\u10e1\\u10e2\\u10dd_\\u10e1\\u10d4\\u10e5\\u10e2\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10dd\\u10e5\\u10e2\\u10dd\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10dc\\u10dd\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10d3\\u10d4\\u10d9\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8\".split(\"_\"),format:\"\\u10d8\\u10d0\\u10dc\\u10d5\\u10d0\\u10e0\\u10e1_\\u10d7\\u10d4\\u10d1\\u10d4\\u10e0\\u10d5\\u10d0\\u10da\\u10e1_\\u10db\\u10d0\\u10e0\\u10e2\\u10e1_\\u10d0\\u10de\\u10e0\\u10d8\\u10da\\u10d8\\u10e1_\\u10db\\u10d0\\u10d8\\u10e1\\u10e1_\\u10d8\\u10d5\\u10dc\\u10d8\\u10e1\\u10e1_\\u10d8\\u10d5\\u10da\\u10d8\\u10e1\\u10e1_\\u10d0\\u10d2\\u10d5\\u10d8\\u10e1\\u10e2\\u10e1_\\u10e1\\u10d4\\u10e5\\u10e2\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10dd\\u10e5\\u10e2\\u10dd\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10dc\\u10dd\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10d3\\u10d4\\u10d9\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1\".split(\"_\")},monthsShort:\"\\u10d8\\u10d0\\u10dc_\\u10d7\\u10d4\\u10d1_\\u10db\\u10d0\\u10e0_\\u10d0\\u10de\\u10e0_\\u10db\\u10d0\\u10d8_\\u10d8\\u10d5\\u10dc_\\u10d8\\u10d5\\u10da_\\u10d0\\u10d2\\u10d5_\\u10e1\\u10d4\\u10e5_\\u10dd\\u10e5\\u10e2_\\u10dc\\u10dd\\u10d4_\\u10d3\\u10d4\\u10d9\".split(\"_\"),weekdays:{standalone:\"\\u10d9\\u10d5\\u10d8\\u10e0\\u10d0_\\u10dd\\u10e0\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10e1\\u10d0\\u10db\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10dd\\u10d7\\u10ee\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10ee\\u10e3\\u10d7\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10de\\u10d0\\u10e0\\u10d0\\u10e1\\u10d9\\u10d4\\u10d5\\u10d8_\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8\".split(\"_\"),format:\"\\u10d9\\u10d5\\u10d8\\u10e0\\u10d0\\u10e1_\\u10dd\\u10e0\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10e1\\u10d0\\u10db\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10dd\\u10d7\\u10ee\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10ee\\u10e3\\u10d7\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10de\\u10d0\\u10e0\\u10d0\\u10e1\\u10d9\\u10d4\\u10d5\\u10e1_\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1\".split(\"_\"),isFormat:/(\\u10ec\\u10d8\\u10dc\\u10d0|\\u10e8\\u10d4\\u10db\\u10d3\\u10d4\\u10d2)/},weekdaysShort:\"\\u10d9\\u10d5\\u10d8_\\u10dd\\u10e0\\u10e8_\\u10e1\\u10d0\\u10db_\\u10dd\\u10d7\\u10ee_\\u10ee\\u10e3\\u10d7_\\u10de\\u10d0\\u10e0_\\u10e8\\u10d0\\u10d1\".split(\"_\"),weekdaysMin:\"\\u10d9\\u10d5_\\u10dd\\u10e0_\\u10e1\\u10d0_\\u10dd\\u10d7_\\u10ee\\u10e3_\\u10de\\u10d0_\\u10e8\\u10d0\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[\\u10d3\\u10e6\\u10d4\\u10e1] LT[-\\u10d6\\u10d4]\",nextDay:\"[\\u10ee\\u10d5\\u10d0\\u10da] LT[-\\u10d6\\u10d4]\",lastDay:\"[\\u10d2\\u10e3\\u10e8\\u10d8\\u10dc] LT[-\\u10d6\\u10d4]\",nextWeek:\"[\\u10e8\\u10d4\\u10db\\u10d3\\u10d4\\u10d2] dddd LT[-\\u10d6\\u10d4]\",lastWeek:\"[\\u10ec\\u10d8\\u10dc\\u10d0] dddd LT-\\u10d6\\u10d4\",sameElse:\"L\"},relativeTime:{future:function(e){return/(\\u10ec\\u10d0\\u10db\\u10d8|\\u10ec\\u10e3\\u10d7\\u10d8|\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8|\\u10ec\\u10d4\\u10da\\u10d8)/.test(e)?e.replace(/\\u10d8$/,\"\\u10e8\\u10d8\"):e+\"\\u10e8\\u10d8\"},past:function(e){return/(\\u10ec\\u10d0\\u10db\\u10d8|\\u10ec\\u10e3\\u10d7\\u10d8|\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8|\\u10d3\\u10e6\\u10d4|\\u10d7\\u10d5\\u10d4)/.test(e)?e.replace(/(\\u10d8|\\u10d4)$/,\"\\u10d8\\u10e1 \\u10ec\\u10d8\\u10dc\"):/\\u10ec\\u10d4\\u10da\\u10d8/.test(e)?e.replace(/\\u10ec\\u10d4\\u10da\\u10d8$/,\"\\u10ec\\u10da\\u10d8\\u10e1 \\u10ec\\u10d8\\u10dc\"):void 0},s:\"\\u10e0\\u10d0\\u10db\\u10d3\\u10d4\\u10dc\\u10d8\\u10db\\u10d4 \\u10ec\\u10d0\\u10db\\u10d8\",ss:\"%d \\u10ec\\u10d0\\u10db\\u10d8\",m:\"\\u10ec\\u10e3\\u10d7\\u10d8\",mm:\"%d \\u10ec\\u10e3\\u10d7\\u10d8\",h:\"\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8\",hh:\"%d \\u10e1\\u10d0\\u10d0\\u10d7\\u10d8\",d:\"\\u10d3\\u10e6\\u10d4\",dd:\"%d \\u10d3\\u10e6\\u10d4\",M:\"\\u10d7\\u10d5\\u10d4\",MM:\"%d \\u10d7\\u10d5\\u10d4\",y:\"\\u10ec\\u10d4\\u10da\\u10d8\",yy:\"%d \\u10ec\\u10d4\\u10da\\u10d8\"},dayOfMonthOrdinalParse:/0|1-\\u10da\\u10d8|\\u10db\\u10d4-\\d{1,2}|\\d{1,2}-\\u10d4/,ordinal:function(e){return 0===e?e:1===e?e+\"-\\u10da\\u10d8\":e<20||e<=100&&e%20==0||e%100==0?\"\\u10db\\u10d4-\"+e:e+\"-\\u10d4\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"Ivi+\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ko\",{months:\"1\\uc6d4_2\\uc6d4_3\\uc6d4_4\\uc6d4_5\\uc6d4_6\\uc6d4_7\\uc6d4_8\\uc6d4_9\\uc6d4_10\\uc6d4_11\\uc6d4_12\\uc6d4\".split(\"_\"),monthsShort:\"1\\uc6d4_2\\uc6d4_3\\uc6d4_4\\uc6d4_5\\uc6d4_6\\uc6d4_7\\uc6d4_8\\uc6d4_9\\uc6d4_10\\uc6d4_11\\uc6d4_12\\uc6d4\".split(\"_\"),weekdays:\"\\uc77c\\uc694\\uc77c_\\uc6d4\\uc694\\uc77c_\\ud654\\uc694\\uc77c_\\uc218\\uc694\\uc77c_\\ubaa9\\uc694\\uc77c_\\uae08\\uc694\\uc77c_\\ud1a0\\uc694\\uc77c\".split(\"_\"),weekdaysShort:\"\\uc77c_\\uc6d4_\\ud654_\\uc218_\\ubaa9_\\uae08_\\ud1a0\".split(\"_\"),weekdaysMin:\"\\uc77c_\\uc6d4_\\ud654_\\uc218_\\ubaa9_\\uae08_\\ud1a0\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY\\ub144 MMMM D\\uc77c\",LLL:\"YYYY\\ub144 MMMM D\\uc77c A h:mm\",LLLL:\"YYYY\\ub144 MMMM D\\uc77c dddd A h:mm\",l:\"YYYY.MM.DD.\",ll:\"YYYY\\ub144 MMMM D\\uc77c\",lll:\"YYYY\\ub144 MMMM D\\uc77c A h:mm\",llll:\"YYYY\\ub144 MMMM D\\uc77c dddd A h:mm\"},calendar:{sameDay:\"\\uc624\\ub298 LT\",nextDay:\"\\ub0b4\\uc77c LT\",nextWeek:\"dddd LT\",lastDay:\"\\uc5b4\\uc81c LT\",lastWeek:\"\\uc9c0\\ub09c\\uc8fc dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\ud6c4\",past:\"%s \\uc804\",s:\"\\uba87 \\ucd08\",ss:\"%d\\ucd08\",m:\"1\\ubd84\",mm:\"%d\\ubd84\",h:\"\\ud55c \\uc2dc\\uac04\",hh:\"%d\\uc2dc\\uac04\",d:\"\\ud558\\ub8e8\",dd:\"%d\\uc77c\",M:\"\\ud55c \\ub2ec\",MM:\"%d\\ub2ec\",y:\"\\uc77c \\ub144\",yy:\"%d\\ub144\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\uc77c|\\uc6d4|\\uc8fc)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\uc77c\";case\"M\":return e+\"\\uc6d4\";case\"w\":case\"W\":return e+\"\\uc8fc\";default:return e}},meridiemParse:/\\uc624\\uc804|\\uc624\\ud6c4/,isPM:function(e){return\"\\uc624\\ud6c4\"===e},meridiem:function(e,t,n){return e<12?\"\\uc624\\uc804\":\"\\uc624\\ud6c4\"}})}(n(\"wd/R\"))},\"JCF/\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"},i=[\"\\u06a9\\u0627\\u0646\\u0648\\u0646\\u06cc \\u062f\\u0648\\u0648\\u06d5\\u0645\",\"\\u0634\\u0648\\u0628\\u0627\\u062a\",\"\\u0626\\u0627\\u0632\\u0627\\u0631\",\"\\u0646\\u06cc\\u0633\\u0627\\u0646\",\"\\u0626\\u0627\\u06cc\\u0627\\u0631\",\"\\u062d\\u0648\\u0632\\u06d5\\u06cc\\u0631\\u0627\\u0646\",\"\\u062a\\u06d5\\u0645\\u0645\\u0648\\u0632\",\"\\u0626\\u0627\\u0628\",\"\\u0626\\u06d5\\u06cc\\u0644\\u0648\\u0648\\u0644\",\"\\u062a\\u0634\\u0631\\u06cc\\u0646\\u06cc \\u06cc\\u06d5\\u0643\\u06d5\\u0645\",\"\\u062a\\u0634\\u0631\\u06cc\\u0646\\u06cc \\u062f\\u0648\\u0648\\u06d5\\u0645\",\"\\u0643\\u0627\\u0646\\u0648\\u0646\\u06cc \\u06cc\\u06d5\\u06a9\\u06d5\\u0645\"];e.defineLocale(\"ku\",{months:i,monthsShort:i,weekdays:\"\\u06cc\\u0647\\u200c\\u0643\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u062f\\u0648\\u0648\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0633\\u06ce\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0686\\u0648\\u0627\\u0631\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u067e\\u06ce\\u0646\\u062c\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0647\\u0647\\u200c\\u06cc\\u0646\\u06cc_\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c\".split(\"_\"),weekdaysShort:\"\\u06cc\\u0647\\u200c\\u0643\\u0634\\u0647\\u200c\\u0645_\\u062f\\u0648\\u0648\\u0634\\u0647\\u200c\\u0645_\\u0633\\u06ce\\u0634\\u0647\\u200c\\u0645_\\u0686\\u0648\\u0627\\u0631\\u0634\\u0647\\u200c\\u0645_\\u067e\\u06ce\\u0646\\u062c\\u0634\\u0647\\u200c\\u0645_\\u0647\\u0647\\u200c\\u06cc\\u0646\\u06cc_\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c\".split(\"_\"),weekdaysMin:\"\\u06cc_\\u062f_\\u0633_\\u0686_\\u067e_\\u0647_\\u0634\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c|\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc/,isPM:function(e){return/\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c/.test(e)},meridiem:function(e,t,n){return e<12?\"\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc\":\"\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c\"},calendar:{sameDay:\"[\\u0626\\u0647\\u200c\\u0645\\u0631\\u06c6 \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",nextDay:\"[\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",nextWeek:\"dddd [\\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",lastDay:\"[\\u062f\\u0648\\u06ce\\u0646\\u06ce \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",lastWeek:\"dddd [\\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0644\\u0647\\u200c %s\",past:\"%s\",s:\"\\u0686\\u0647\\u200c\\u0646\\u062f \\u0686\\u0631\\u0643\\u0647\\u200c\\u06cc\\u0647\\u200c\\u0643\",ss:\"\\u0686\\u0631\\u0643\\u0647\\u200c %d\",m:\"\\u06cc\\u0647\\u200c\\u0643 \\u062e\\u0648\\u0644\\u0647\\u200c\\u0643\",mm:\"%d \\u062e\\u0648\\u0644\\u0647\\u200c\\u0643\",h:\"\\u06cc\\u0647\\u200c\\u0643 \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631\",hh:\"%d \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631\",d:\"\\u06cc\\u0647\\u200c\\u0643 \\u0695\\u06c6\\u0698\",dd:\"%d \\u0695\\u06c6\\u0698\",M:\"\\u06cc\\u0647\\u200c\\u0643 \\u0645\\u0627\\u0646\\u06af\",MM:\"%d \\u0645\\u0627\\u0646\\u06af\",y:\"\\u06cc\\u0647\\u200c\\u0643 \\u0633\\u0627\\u06b5\",yy:\"%d \\u0633\\u0627\\u06b5\"},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},JVSJ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i=e+\" \";switch(n){case\"ss\":return i+(1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\");case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return i+(1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\");case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return i+(1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\");case\"dd\":return i+(1===e?\"dan\":\"dana\");case\"MM\":return i+(1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\");case\"yy\":return i+(1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\")}}e.defineLocale(\"bs\",{months:\"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010der u] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:return\"[pro\\u0161lu] dddd [u] LT\";case 6:return\"[pro\\u0161le] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[pro\\u0161li] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},JvlW:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekund\\u0117_sekund\\u017ei\\u0173_sekundes\",m:\"minut\\u0117_minut\\u0117s_minut\\u0119\",mm:\"minut\\u0117s_minu\\u010di\\u0173_minutes\",h:\"valanda_valandos_valand\\u0105\",hh:\"valandos_valand\\u0173_valandas\",d:\"diena_dienos_dien\\u0105\",dd:\"dienos_dien\\u0173_dienas\",M:\"m\\u0117nuo_m\\u0117nesio_m\\u0117nes\\u012f\",MM:\"m\\u0117nesiai_m\\u0117nesi\\u0173_m\\u0117nesius\",y:\"metai_met\\u0173_metus\",yy:\"metai_met\\u0173_metus\"};function n(e,t,n,i){return t?s(n)[0]:i?s(n)[1]:s(n)[2]}function i(e){return e%10==0||e>10&&e<20}function s(e){return t[e].split(\"_\")}function r(e,t,r,o){var a=e+\" \";return 1===e?a+n(0,t,r[0],o):t?a+(i(e)?s(r)[1]:s(r)[0]):o?a+s(r)[1]:a+(i(e)?s(r)[1]:s(r)[2])}e.defineLocale(\"lt\",{months:{format:\"sausio_vasario_kovo_baland\\u017eio_gegu\\u017e\\u0117s_bir\\u017eelio_liepos_rugpj\\u016b\\u010dio_rugs\\u0117jo_spalio_lapkri\\u010dio_gruod\\u017eio\".split(\"_\"),standalone:\"sausis_vasaris_kovas_balandis_gegu\\u017e\\u0117_bir\\u017eelis_liepa_rugpj\\u016btis_rugs\\u0117jis_spalis_lapkritis_gruodis\".split(\"_\"),isFormat:/D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|MMMM?(\\[[^\\[\\]]*\\]|\\s)+D[oD]?/},monthsShort:\"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd\".split(\"_\"),weekdays:{format:\"sekmadien\\u012f_pirmadien\\u012f_antradien\\u012f_tre\\u010diadien\\u012f_ketvirtadien\\u012f_penktadien\\u012f_\\u0161e\\u0161tadien\\u012f\".split(\"_\"),standalone:\"sekmadienis_pirmadienis_antradienis_tre\\u010diadienis_ketvirtadienis_penktadienis_\\u0161e\\u0161tadienis\".split(\"_\"),isFormat:/dddd HH:mm/},weekdaysShort:\"Sek_Pir_Ant_Tre_Ket_Pen_\\u0160e\\u0161\".split(\"_\"),weekdaysMin:\"S_P_A_T_K_Pn_\\u0160\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY [m.] MMMM D [d.]\",LLL:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",LLLL:\"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]\",l:\"YYYY-MM-DD\",ll:\"YYYY [m.] MMMM D [d.]\",lll:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",llll:\"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]\"},calendar:{sameDay:\"[\\u0160iandien] LT\",nextDay:\"[Rytoj] LT\",nextWeek:\"dddd LT\",lastDay:\"[Vakar] LT\",lastWeek:\"[Pra\\u0117jus\\u012f] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"po %s\",past:\"prie\\u0161 %s\",s:function(e,t,n,i){return t?\"kelios sekund\\u0117s\":i?\"keli\\u0173 sekund\\u017ei\\u0173\":\"kelias sekundes\"},ss:r,m:n,mm:r,h:n,hh:r,d:n,dd:r,M:n,MM:r,y:n,yy:r},dayOfMonthOrdinalParse:/\\d{1,2}-oji/,ordinal:function(e){return e+\"-oji\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"K/tc\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"af\",{months:\"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag\".split(\"_\"),weekdaysShort:\"Son_Maa_Din_Woe_Don_Vry_Sat\".split(\"_\"),weekdaysMin:\"So_Ma_Di_Wo_Do_Vr_Sa\".split(\"_\"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"vm\":\"VM\":n?\"nm\":\"NM\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Vandag om] LT\",nextDay:\"[M\\xf4re om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[Gister om] LT\",lastWeek:\"[Laas] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oor %s\",past:\"%s gelede\",s:\"'n paar sekondes\",ss:\"%d sekondes\",m:\"'n minuut\",mm:\"%d minute\",h:\"'n uur\",hh:\"%d ure\",d:\"'n dag\",dd:\"%d dae\",M:\"'n maand\",MM:\"%d maande\",y:\"'n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},KSF8:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"vi\",{months:\"th\\xe1ng 1_th\\xe1ng 2_th\\xe1ng 3_th\\xe1ng 4_th\\xe1ng 5_th\\xe1ng 6_th\\xe1ng 7_th\\xe1ng 8_th\\xe1ng 9_th\\xe1ng 10_th\\xe1ng 11_th\\xe1ng 12\".split(\"_\"),monthsShort:\"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12\".split(\"_\"),monthsParseExact:!0,weekdays:\"ch\\u1ee7 nh\\u1eadt_th\\u1ee9 hai_th\\u1ee9 ba_th\\u1ee9 t\\u01b0_th\\u1ee9 n\\u0103m_th\\u1ee9 s\\xe1u_th\\u1ee9 b\\u1ea3y\".split(\"_\"),weekdaysShort:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysMin:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"sa\":\"SA\":n?\"ch\":\"CH\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [n\\u0103m] YYYY\",LLL:\"D MMMM [n\\u0103m] YYYY HH:mm\",LLLL:\"dddd, D MMMM [n\\u0103m] YYYY HH:mm\",l:\"DD/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[H\\xf4m nay l\\xfac] LT\",nextDay:\"[Ng\\xe0y mai l\\xfac] LT\",nextWeek:\"dddd [tu\\u1ea7n t\\u1edbi l\\xfac] LT\",lastDay:\"[H\\xf4m qua l\\xfac] LT\",lastWeek:\"dddd [tu\\u1ea7n r\\u1ed3i l\\xfac] LT\",sameElse:\"L\"},relativeTime:{future:\"%s t\\u1edbi\",past:\"%s tr\\u01b0\\u1edbc\",s:\"v\\xe0i gi\\xe2y\",ss:\"%d gi\\xe2y\",m:\"m\\u1ed9t ph\\xfat\",mm:\"%d ph\\xfat\",h:\"m\\u1ed9t gi\\u1edd\",hh:\"%d gi\\u1edd\",d:\"m\\u1ed9t ng\\xe0y\",dd:\"%d ng\\xe0y\",M:\"m\\u1ed9t th\\xe1ng\",MM:\"%d th\\xe1ng\",y:\"m\\u1ed9t n\\u0103m\",yy:\"%d n\\u0103m\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(\"wd/R\"))},KTz0:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekund\",\"sekunda\",\"sekundi\"],m:[\"jedan minut\",\"jednog minuta\"],mm:[\"minut\",\"minuta\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mjesec\",\"mjeseca\",\"mjeseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var s=t.words[i];return 1===i.length?n?s[0]:s[1]:e+\" \"+t.correctGrammaticalCase(e,s)}};e.defineLocale(\"me\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sjutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010de u] LT\",lastWeek:function(){return[\"[pro\\u0161le] [nedjelje] [u] LT\",\"[pro\\u0161log] [ponedjeljka] [u] LT\",\"[pro\\u0161log] [utorka] [u] LT\",\"[pro\\u0161le] [srijede] [u] LT\",\"[pro\\u0161log] [\\u010detvrtka] [u] LT\",\"[pro\\u0161log] [petka] [u] LT\",\"[pro\\u0161le] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mjesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},Loxo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440_\\u043d\\u043e\\u044f\\u0431\\u0440_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u042f\\u043a\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0414\\u0443\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0421\\u0435\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0427\\u043e\\u0440\\u0448\\u0430\\u043d\\u0431\\u0430_\\u041f\\u0430\\u0439\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0416\\u0443\\u043c\\u0430_\\u0428\\u0430\\u043d\\u0431\\u0430\".split(\"_\"),weekdaysShort:\"\\u042f\\u043a\\u0448_\\u0414\\u0443\\u0448_\\u0421\\u0435\\u0448_\\u0427\\u043e\\u0440_\\u041f\\u0430\\u0439_\\u0416\\u0443\\u043c_\\u0428\\u0430\\u043d\".split(\"_\"),weekdaysMin:\"\\u042f\\u043a_\\u0414\\u0443_\\u0421\\u0435_\\u0427\\u043e_\\u041f\\u0430_\\u0416\\u0443_\\u0428\\u0430\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[\\u0411\\u0443\\u0433\\u0443\\u043d \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",nextDay:\"[\\u042d\\u0440\\u0442\\u0430\\u0433\\u0430] LT [\\u0434\\u0430]\",nextWeek:\"dddd [\\u043a\\u0443\\u043d\\u0438 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",lastDay:\"[\\u041a\\u0435\\u0447\\u0430 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",lastWeek:\"[\\u0423\\u0442\\u0433\\u0430\\u043d] dddd [\\u043a\\u0443\\u043d\\u0438 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",sameElse:\"L\"},relativeTime:{future:\"\\u042f\\u043a\\u0438\\u043d %s \\u0438\\u0447\\u0438\\u0434\\u0430\",past:\"\\u0411\\u0438\\u0440 \\u043d\\u0435\\u0447\\u0430 %s \\u043e\\u043b\\u0434\\u0438\\u043d\",s:\"\\u0444\\u0443\\u0440\\u0441\\u0430\\u0442\",ss:\"%d \\u0444\\u0443\\u0440\\u0441\\u0430\\u0442\",m:\"\\u0431\\u0438\\u0440 \\u0434\\u0430\\u043a\\u0438\\u043a\\u0430\",mm:\"%d \\u0434\\u0430\\u043a\\u0438\\u043a\\u0430\",h:\"\\u0431\\u0438\\u0440 \\u0441\\u043e\\u0430\\u0442\",hh:\"%d \\u0441\\u043e\\u0430\\u0442\",d:\"\\u0431\\u0438\\u0440 \\u043a\\u0443\\u043d\",dd:\"%d \\u043a\\u0443\\u043d\",M:\"\\u0431\\u0438\\u0440 \\u043e\\u0439\",MM:\"%d \\u043e\\u0439\",y:\"\\u0431\\u0438\\u0440 \\u0439\\u0438\\u043b\",yy:\"%d \\u0439\\u0438\\u043b\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},OIYi:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ca\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"YYYY-MM-DD\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(\"wd/R\"))},Oaa7:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-gb\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Ob0Z:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};function i(e,t,n,i){var s=\"\";if(t)switch(n){case\"s\":s=\"\\u0915\\u093e\\u0939\\u0940 \\u0938\\u0947\\u0915\\u0902\\u0926\";break;case\"ss\":s=\"%d \\u0938\\u0947\\u0915\\u0902\\u0926\";break;case\"m\":s=\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u093f\\u091f\";break;case\"mm\":s=\"%d \\u092e\\u093f\\u0928\\u093f\\u091f\\u0947\";break;case\"h\":s=\"\\u090f\\u0915 \\u0924\\u093e\\u0938\";break;case\"hh\":s=\"%d \\u0924\\u093e\\u0938\";break;case\"d\":s=\"\\u090f\\u0915 \\u0926\\u093f\\u0935\\u0938\";break;case\"dd\":s=\"%d \\u0926\\u093f\\u0935\\u0938\";break;case\"M\":s=\"\\u090f\\u0915 \\u092e\\u0939\\u093f\\u0928\\u093e\";break;case\"MM\":s=\"%d \\u092e\\u0939\\u093f\\u0928\\u0947\";break;case\"y\":s=\"\\u090f\\u0915 \\u0935\\u0930\\u094d\\u0937\";break;case\"yy\":s=\"%d \\u0935\\u0930\\u094d\\u0937\\u0947\"}else switch(n){case\"s\":s=\"\\u0915\\u093e\\u0939\\u0940 \\u0938\\u0947\\u0915\\u0902\\u0926\\u093e\\u0902\";break;case\"ss\":s=\"%d \\u0938\\u0947\\u0915\\u0902\\u0926\\u093e\\u0902\";break;case\"m\":s=\"\\u090f\\u0915\\u093e \\u092e\\u093f\\u0928\\u093f\\u091f\\u093e\";break;case\"mm\":s=\"%d \\u092e\\u093f\\u0928\\u093f\\u091f\\u093e\\u0902\";break;case\"h\":s=\"\\u090f\\u0915\\u093e \\u0924\\u093e\\u0938\\u093e\";break;case\"hh\":s=\"%d \\u0924\\u093e\\u0938\\u093e\\u0902\";break;case\"d\":s=\"\\u090f\\u0915\\u093e \\u0926\\u093f\\u0935\\u0938\\u093e\";break;case\"dd\":s=\"%d \\u0926\\u093f\\u0935\\u0938\\u093e\\u0902\";break;case\"M\":s=\"\\u090f\\u0915\\u093e \\u092e\\u0939\\u093f\\u0928\\u094d\\u092f\\u093e\";break;case\"MM\":s=\"%d \\u092e\\u0939\\u093f\\u0928\\u094d\\u092f\\u093e\\u0902\";break;case\"y\":s=\"\\u090f\\u0915\\u093e \\u0935\\u0930\\u094d\\u0937\\u093e\";break;case\"yy\":s=\"%d \\u0935\\u0930\\u094d\\u0937\\u093e\\u0902\"}return s.replace(/%d/i,e)}e.defineLocale(\"mr\",{months:\"\\u091c\\u093e\\u0928\\u0947\\u0935\\u093e\\u0930\\u0940_\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941\\u0935\\u093e\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u090f\\u092a\\u094d\\u0930\\u093f\\u0932_\\u092e\\u0947_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932\\u0948_\\u0911\\u0917\\u0938\\u094d\\u091f_\\u0938\\u092a\\u094d\\u091f\\u0947\\u0902\\u092c\\u0930_\\u0911\\u0915\\u094d\\u091f\\u094b\\u092c\\u0930_\\u0928\\u094b\\u0935\\u094d\\u0939\\u0947\\u0902\\u092c\\u0930_\\u0921\\u093f\\u0938\\u0947\\u0902\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u093e\\u0928\\u0947._\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941._\\u092e\\u093e\\u0930\\u094d\\u091a._\\u090f\\u092a\\u094d\\u0930\\u093f._\\u092e\\u0947._\\u091c\\u0942\\u0928._\\u091c\\u0941\\u0932\\u0948._\\u0911\\u0917._\\u0938\\u092a\\u094d\\u091f\\u0947\\u0902._\\u0911\\u0915\\u094d\\u091f\\u094b._\\u0928\\u094b\\u0935\\u094d\\u0939\\u0947\\u0902._\\u0921\\u093f\\u0938\\u0947\\u0902.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0930\\u0935\\u093f\\u0935\\u093e\\u0930_\\u0938\\u094b\\u092e\\u0935\\u093e\\u0930_\\u092e\\u0902\\u0917\\u0933\\u0935\\u093e\\u0930_\\u092c\\u0941\\u0927\\u0935\\u093e\\u0930_\\u0917\\u0941\\u0930\\u0942\\u0935\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u0935\\u093e\\u0930_\\u0936\\u0928\\u093f\\u0935\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0930\\u0935\\u093f_\\u0938\\u094b\\u092e_\\u092e\\u0902\\u0917\\u0933_\\u092c\\u0941\\u0927_\\u0917\\u0941\\u0930\\u0942_\\u0936\\u0941\\u0915\\u094d\\u0930_\\u0936\\u0928\\u093f\".split(\"_\"),weekdaysMin:\"\\u0930_\\u0938\\u094b_\\u092e\\u0902_\\u092c\\u0941_\\u0917\\u0941_\\u0936\\u0941_\\u0936\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\",LTS:\"A h:mm:ss \\u0935\\u093e\\u091c\\u0924\\u093e\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u0909\\u0926\\u094d\\u092f\\u093e] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0915\\u093e\\u0932] LT\",lastWeek:\"[\\u092e\\u093e\\u0917\\u0940\\u0932] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u092e\\u0927\\u094d\\u092f\\u0947\",past:\"%s\\u092a\\u0942\\u0930\\u094d\\u0935\\u0940\",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940|\\u0938\\u0915\\u093e\\u0933\\u0940|\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940|\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\"===t?e<4?e:e+12:\"\\u0938\\u0915\\u093e\\u0933\\u0940\"===t?e:\"\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940\"===t?e>=10?e:e+12:\"\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\":e<10?\"\\u0938\\u0915\\u093e\\u0933\\u0940\":e<17?\"\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940\":e<20?\"\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940\":\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},OjkT:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};e.defineLocale(\"ne\",{months:\"\\u091c\\u0928\\u0935\\u0930\\u0940_\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941\\u0935\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u093f\\u0932_\\u092e\\u0908_\\u091c\\u0941\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908_\\u0905\\u0917\\u0937\\u094d\\u091f_\\u0938\\u0947\\u092a\\u094d\\u091f\\u0947\\u092e\\u094d\\u092c\\u0930_\\u0905\\u0915\\u094d\\u091f\\u094b\\u092c\\u0930_\\u0928\\u094b\\u092d\\u0947\\u092e\\u094d\\u092c\\u0930_\\u0921\\u093f\\u0938\\u0947\\u092e\\u094d\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u0928._\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941._\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u093f._\\u092e\\u0908_\\u091c\\u0941\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908._\\u0905\\u0917._\\u0938\\u0947\\u092a\\u094d\\u091f._\\u0905\\u0915\\u094d\\u091f\\u094b._\\u0928\\u094b\\u092d\\u0947._\\u0921\\u093f\\u0938\\u0947.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0906\\u0907\\u0924\\u092c\\u093e\\u0930_\\u0938\\u094b\\u092e\\u092c\\u093e\\u0930_\\u092e\\u0919\\u094d\\u0917\\u0932\\u092c\\u093e\\u0930_\\u092c\\u0941\\u0927\\u092c\\u093e\\u0930_\\u092c\\u093f\\u0939\\u093f\\u092c\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u092c\\u093e\\u0930_\\u0936\\u0928\\u093f\\u092c\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0906\\u0907\\u0924._\\u0938\\u094b\\u092e._\\u092e\\u0919\\u094d\\u0917\\u0932._\\u092c\\u0941\\u0927._\\u092c\\u093f\\u0939\\u093f._\\u0936\\u0941\\u0915\\u094d\\u0930._\\u0936\\u0928\\u093f.\".split(\"_\"),weekdaysMin:\"\\u0906._\\u0938\\u094b._\\u092e\\u0902._\\u092c\\u0941._\\u092c\\u093f._\\u0936\\u0941._\\u0936.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\",LTS:\"A\\u0915\\u094b h:mm:ss \\u092c\\u091c\\u0947\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\",LLLL:\"dddd, D MMMM YYYY, A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\"},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924\\u093f|\\u092c\\u093f\\u0939\\u093e\\u0928|\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b|\\u0938\\u093e\\u0901\\u091d/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\\u093f\"===t?e<4?e:e+12:\"\\u092c\\u093f\\u0939\\u093e\\u0928\"===t?e:\"\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b\"===t?e>=10?e:e+12:\"\\u0938\\u093e\\u0901\\u091d\"===t?e+12:void 0},meridiem:function(e,t,n){return e<3?\"\\u0930\\u093e\\u0924\\u093f\":e<12?\"\\u092c\\u093f\\u0939\\u093e\\u0928\":e<16?\"\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b\":e<20?\"\\u0938\\u093e\\u0901\\u091d\":\"\\u0930\\u093e\\u0924\\u093f\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u092d\\u094b\\u0932\\u093f] LT\",nextWeek:\"[\\u0906\\u0909\\u0901\\u0926\\u094b] dddd[,] LT\",lastDay:\"[\\u0939\\u093f\\u091c\\u094b] LT\",lastWeek:\"[\\u0917\\u090f\\u0915\\u094b] dddd[,] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u092e\\u093e\",past:\"%s \\u0905\\u0917\\u093e\\u0921\\u093f\",s:\"\\u0915\\u0947\\u0939\\u0940 \\u0915\\u094d\\u0937\\u0923\",ss:\"%d \\u0938\\u0947\\u0915\\u0947\\u0923\\u094d\\u0921\",m:\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u0947\\u091f\",mm:\"%d \\u092e\\u093f\\u0928\\u0947\\u091f\",h:\"\\u090f\\u0915 \\u0918\\u0923\\u094d\\u091f\\u093e\",hh:\"%d \\u0918\\u0923\\u094d\\u091f\\u093e\",d:\"\\u090f\\u0915 \\u0926\\u093f\\u0928\",dd:\"%d \\u0926\\u093f\\u0928\",M:\"\\u090f\\u0915 \\u092e\\u0939\\u093f\\u0928\\u093e\",MM:\"%d \\u092e\\u0939\\u093f\\u0928\\u093e\",y:\"\\u090f\\u0915 \\u092c\\u0930\\u094d\\u0937\",yy:\"%d \\u092c\\u0930\\u094d\\u0937\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},Oxv6:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0443\\u043c\",1:\"-\\u0443\\u043c\",2:\"-\\u044e\\u043c\",3:\"-\\u044e\\u043c\",4:\"-\\u0443\\u043c\",5:\"-\\u0443\\u043c\",6:\"-\\u0443\\u043c\",7:\"-\\u0443\\u043c\",8:\"-\\u0443\\u043c\",9:\"-\\u0443\\u043c\",10:\"-\\u0443\\u043c\",12:\"-\\u0443\\u043c\",13:\"-\\u0443\\u043c\",20:\"-\\u0443\\u043c\",30:\"-\\u044e\\u043c\",40:\"-\\u0443\\u043c\",50:\"-\\u0443\\u043c\",60:\"-\\u0443\\u043c\",70:\"-\\u0443\\u043c\",80:\"-\\u0443\\u043c\",90:\"-\\u0443\\u043c\",100:\"-\\u0443\\u043c\"};e.defineLocale(\"tg\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440_\\u043d\\u043e\\u044f\\u0431\\u0440_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u044f\\u043a\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0434\\u0443\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0441\\u0435\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0447\\u043e\\u0440\\u0448\\u0430\\u043d\\u0431\\u0435_\\u043f\\u0430\\u043d\\u04b7\\u0448\\u0430\\u043d\\u0431\\u0435_\\u04b7\\u0443\\u043c\\u044a\\u0430_\\u0448\\u0430\\u043d\\u0431\\u0435\".split(\"_\"),weekdaysShort:\"\\u044f\\u0448\\u0431_\\u0434\\u0448\\u0431_\\u0441\\u0448\\u0431_\\u0447\\u0448\\u0431_\\u043f\\u0448\\u0431_\\u04b7\\u0443\\u043c_\\u0448\\u043d\\u0431\".split(\"_\"),weekdaysMin:\"\\u044f\\u0448_\\u0434\\u0448_\\u0441\\u0448_\\u0447\\u0448_\\u043f\\u0448_\\u04b7\\u043c_\\u0448\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0418\\u043c\\u0440\\u04ef\\u0437 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",nextDay:\"[\\u041f\\u0430\\u0433\\u043e\\u04b3 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",lastDay:\"[\\u0414\\u0438\\u0440\\u04ef\\u0437 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",nextWeek:\"dddd[\\u0438] [\\u04b3\\u0430\\u0444\\u0442\\u0430\\u0438 \\u043e\\u044f\\u043d\\u0434\\u0430 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",lastWeek:\"dddd[\\u0438] [\\u04b3\\u0430\\u0444\\u0442\\u0430\\u0438 \\u0433\\u0443\\u0437\\u0430\\u0448\\u0442\\u0430 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0431\\u0430\\u044a\\u0434\\u0438 %s\",past:\"%s \\u043f\\u0435\\u0448\",s:\"\\u044f\\u043a\\u0447\\u0430\\u043d\\u0434 \\u0441\\u043e\\u043d\\u0438\\u044f\",m:\"\\u044f\\u043a \\u0434\\u0430\\u049b\\u0438\\u049b\\u0430\",mm:\"%d \\u0434\\u0430\\u049b\\u0438\\u049b\\u0430\",h:\"\\u044f\\u043a \\u0441\\u043e\\u0430\\u0442\",hh:\"%d \\u0441\\u043e\\u0430\\u0442\",d:\"\\u044f\\u043a \\u0440\\u04ef\\u0437\",dd:\"%d \\u0440\\u04ef\\u0437\",M:\"\\u044f\\u043a \\u043c\\u043e\\u04b3\",MM:\"%d \\u043c\\u043e\\u04b3\",y:\"\\u044f\\u043a \\u0441\\u043e\\u043b\",yy:\"%d \\u0441\\u043e\\u043b\"},meridiemParse:/\\u0448\\u0430\\u0431|\\u0441\\u0443\\u0431\\u04b3|\\u0440\\u04ef\\u0437|\\u0431\\u0435\\u0433\\u043e\\u04b3/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0448\\u0430\\u0431\"===t?e<4?e:e+12:\"\\u0441\\u0443\\u0431\\u04b3\"===t?e:\"\\u0440\\u04ef\\u0437\"===t?e>=11?e:e+12:\"\\u0431\\u0435\\u0433\\u043e\\u04b3\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0448\\u0430\\u0431\":e<11?\"\\u0441\\u0443\\u0431\\u04b3\":e<16?\"\\u0440\\u04ef\\u0437\":e<19?\"\\u0431\\u0435\\u0433\\u043e\\u04b3\":\"\\u0448\\u0430\\u0431\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0443\\u043c|\\u044e\\u043c)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},PA2r:function(e,t,n){!function(e){\"use strict\";var t=\"leden_\\xfanor_b\\u0159ezen_duben_kv\\u011bten_\\u010derven_\\u010dervenec_srpen_z\\xe1\\u0159\\xed_\\u0159\\xedjen_listopad_prosinec\".split(\"_\"),n=\"led_\\xfano_b\\u0159e_dub_kv\\u011b_\\u010dvn_\\u010dvc_srp_z\\xe1\\u0159_\\u0159\\xedj_lis_pro\".split(\"_\"),i=[/^led/i,/^\\xfano/i,/^b\\u0159e/i,/^dub/i,/^kv\\u011b/i,/^(\\u010dvn|\\u010derven$|\\u010dervna)/i,/^(\\u010dvc|\\u010dervenec|\\u010dervence)/i,/^srp/i,/^z\\xe1\\u0159/i,/^\\u0159\\xedj/i,/^lis/i,/^pro/i],s=/^(leden|\\xfanor|b\\u0159ezen|duben|kv\\u011bten|\\u010dervenec|\\u010dervence|\\u010derven|\\u010dervna|srpen|z\\xe1\\u0159\\xed|\\u0159\\xedjen|listopad|prosinec|led|\\xfano|b\\u0159e|dub|kv\\u011b|\\u010dvn|\\u010dvc|srp|z\\xe1\\u0159|\\u0159\\xedj|lis|pro)/i;function r(e){return e>1&&e<5&&1!=~~(e/10)}function o(e,t,n,i){var s=e+\" \";switch(n){case\"s\":return t||i?\"p\\xe1r sekund\":\"p\\xe1r sekundami\";case\"ss\":return t||i?s+(r(e)?\"sekundy\":\"sekund\"):s+\"sekundami\";case\"m\":return t?\"minuta\":i?\"minutu\":\"minutou\";case\"mm\":return t||i?s+(r(e)?\"minuty\":\"minut\"):s+\"minutami\";case\"h\":return t?\"hodina\":i?\"hodinu\":\"hodinou\";case\"hh\":return t||i?s+(r(e)?\"hodiny\":\"hodin\"):s+\"hodinami\";case\"d\":return t||i?\"den\":\"dnem\";case\"dd\":return t||i?s+(r(e)?\"dny\":\"dn\\xed\"):s+\"dny\";case\"M\":return t||i?\"m\\u011bs\\xedc\":\"m\\u011bs\\xedcem\";case\"MM\":return t||i?s+(r(e)?\"m\\u011bs\\xedce\":\"m\\u011bs\\xedc\\u016f\"):s+\"m\\u011bs\\xedci\";case\"y\":return t||i?\"rok\":\"rokem\";case\"yy\":return t||i?s+(r(e)?\"roky\":\"let\"):s+\"lety\"}}e.defineLocale(\"cs\",{months:t,monthsShort:n,monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(leden|ledna|\\xfanora|\\xfanor|b\\u0159ezen|b\\u0159ezna|duben|dubna|kv\\u011bten|kv\\u011btna|\\u010dervenec|\\u010dervence|\\u010derven|\\u010dervna|srpen|srpna|z\\xe1\\u0159\\xed|\\u0159\\xedjen|\\u0159\\xedjna|listopadu|listopad|prosinec|prosince)/i,monthsShortStrictRegex:/^(led|\\xfano|b\\u0159e|dub|kv\\u011b|\\u010dvn|\\u010dvc|srp|z\\xe1\\u0159|\\u0159\\xedj|lis|pro)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"ned\\u011ble_pond\\u011bl\\xed_\\xfater\\xfd_st\\u0159eda_\\u010dtvrtek_p\\xe1tek_sobota\".split(\"_\"),weekdaysShort:\"ne_po_\\xfat_st_\\u010dt_p\\xe1_so\".split(\"_\"),weekdaysMin:\"ne_po_\\xfat_st_\\u010dt_p\\xe1_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\",l:\"D. M. YYYY\"},calendar:{sameDay:\"[dnes v] LT\",nextDay:\"[z\\xedtra v] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v ned\\u011bli v] LT\";case 1:case 2:return\"[v] dddd [v] LT\";case 3:return\"[ve st\\u0159edu v] LT\";case 4:return\"[ve \\u010dtvrtek v] LT\";case 5:return\"[v p\\xe1tek v] LT\";case 6:return\"[v sobotu v] LT\"}},lastDay:\"[v\\u010dera v] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minulou ned\\u011bli v] LT\";case 1:case 2:return\"[minul\\xe9] dddd [v] LT\";case 3:return\"[minulou st\\u0159edu v] LT\";case 4:case 5:return\"[minul\\xfd] dddd [v] LT\";case 6:return\"[minulou sobotu v] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"p\\u0159ed %s\",s:o,ss:o,m:o,mm:o,h:o,hh:o,d:o,dd:o,M:o,MM:o,y:o,yy:o},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},PeUW:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0be7\",2:\"\\u0be8\",3:\"\\u0be9\",4:\"\\u0bea\",5:\"\\u0beb\",6:\"\\u0bec\",7:\"\\u0bed\",8:\"\\u0bee\",9:\"\\u0bef\",0:\"\\u0be6\"},n={\"\\u0be7\":\"1\",\"\\u0be8\":\"2\",\"\\u0be9\":\"3\",\"\\u0bea\":\"4\",\"\\u0beb\":\"5\",\"\\u0bec\":\"6\",\"\\u0bed\":\"7\",\"\\u0bee\":\"8\",\"\\u0bef\":\"9\",\"\\u0be6\":\"0\"};e.defineLocale(\"ta\",{months:\"\\u0b9c\\u0ba9\\u0bb5\\u0bb0\\u0bbf_\\u0baa\\u0bbf\\u0baa\\u0bcd\\u0bb0\\u0bb5\\u0bb0\\u0bbf_\\u0bae\\u0bbe\\u0bb0\\u0bcd\\u0b9a\\u0bcd_\\u0b8f\\u0baa\\u0bcd\\u0bb0\\u0bb2\\u0bcd_\\u0bae\\u0bc7_\\u0b9c\\u0bc2\\u0ba9\\u0bcd_\\u0b9c\\u0bc2\\u0bb2\\u0bc8_\\u0b86\\u0b95\\u0bb8\\u0bcd\\u0b9f\\u0bcd_\\u0b9a\\u0bc6\\u0baa\\u0bcd\\u0b9f\\u0bc6\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b85\\u0b95\\u0bcd\\u0b9f\\u0bc7\\u0bbe\\u0baa\\u0bb0\\u0bcd_\\u0ba8\\u0bb5\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b9f\\u0bbf\\u0b9a\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd\".split(\"_\"),monthsShort:\"\\u0b9c\\u0ba9\\u0bb5\\u0bb0\\u0bbf_\\u0baa\\u0bbf\\u0baa\\u0bcd\\u0bb0\\u0bb5\\u0bb0\\u0bbf_\\u0bae\\u0bbe\\u0bb0\\u0bcd\\u0b9a\\u0bcd_\\u0b8f\\u0baa\\u0bcd\\u0bb0\\u0bb2\\u0bcd_\\u0bae\\u0bc7_\\u0b9c\\u0bc2\\u0ba9\\u0bcd_\\u0b9c\\u0bc2\\u0bb2\\u0bc8_\\u0b86\\u0b95\\u0bb8\\u0bcd\\u0b9f\\u0bcd_\\u0b9a\\u0bc6\\u0baa\\u0bcd\\u0b9f\\u0bc6\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b85\\u0b95\\u0bcd\\u0b9f\\u0bc7\\u0bbe\\u0baa\\u0bb0\\u0bcd_\\u0ba8\\u0bb5\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b9f\\u0bbf\\u0b9a\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd\".split(\"_\"),weekdays:\"\\u0b9e\\u0bbe\\u0baf\\u0bbf\\u0bb1\\u0bcd\\u0bb1\\u0bc1\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0ba4\\u0bbf\\u0b99\\u0bcd\\u0b95\\u0b9f\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0b9a\\u0bc6\\u0bb5\\u0bcd\\u0bb5\\u0bbe\\u0baf\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0baa\\u0bc1\\u0ba4\\u0ba9\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0bb5\\u0bbf\\u0baf\\u0bbe\\u0bb4\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0bb5\\u0bc6\\u0bb3\\u0bcd\\u0bb3\\u0bbf\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0b9a\\u0ba9\\u0bbf\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8\".split(\"_\"),weekdaysShort:\"\\u0b9e\\u0bbe\\u0baf\\u0bbf\\u0bb1\\u0bc1_\\u0ba4\\u0bbf\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd_\\u0b9a\\u0bc6\\u0bb5\\u0bcd\\u0bb5\\u0bbe\\u0baf\\u0bcd_\\u0baa\\u0bc1\\u0ba4\\u0ba9\\u0bcd_\\u0bb5\\u0bbf\\u0baf\\u0bbe\\u0bb4\\u0ba9\\u0bcd_\\u0bb5\\u0bc6\\u0bb3\\u0bcd\\u0bb3\\u0bbf_\\u0b9a\\u0ba9\\u0bbf\".split(\"_\"),weekdaysMin:\"\\u0b9e\\u0bbe_\\u0ba4\\u0bbf_\\u0b9a\\u0bc6_\\u0baa\\u0bc1_\\u0bb5\\u0bbf_\\u0bb5\\u0bc6_\\u0b9a\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, HH:mm\",LLLL:\"dddd, D MMMM YYYY, HH:mm\"},calendar:{sameDay:\"[\\u0b87\\u0ba9\\u0bcd\\u0bb1\\u0bc1] LT\",nextDay:\"[\\u0ba8\\u0bbe\\u0bb3\\u0bc8] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0ba8\\u0bc7\\u0bb1\\u0bcd\\u0bb1\\u0bc1] LT\",lastWeek:\"[\\u0b95\\u0b9f\\u0ba8\\u0bcd\\u0ba4 \\u0bb5\\u0bbe\\u0bb0\\u0bae\\u0bcd] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0b87\\u0bb2\\u0bcd\",past:\"%s \\u0bae\\u0bc1\\u0ba9\\u0bcd\",s:\"\\u0b92\\u0bb0\\u0bc1 \\u0b9a\\u0bbf\\u0bb2 \\u0bb5\\u0bbf\\u0ba8\\u0bbe\\u0b9f\\u0bbf\\u0b95\\u0bb3\\u0bcd\",ss:\"%d \\u0bb5\\u0bbf\\u0ba8\\u0bbe\\u0b9f\\u0bbf\\u0b95\\u0bb3\\u0bcd\",m:\"\\u0b92\\u0bb0\\u0bc1 \\u0ba8\\u0bbf\\u0bae\\u0bbf\\u0b9f\\u0bae\\u0bcd\",mm:\"%d \\u0ba8\\u0bbf\\u0bae\\u0bbf\\u0b9f\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd\",h:\"\\u0b92\\u0bb0\\u0bc1 \\u0bae\\u0ba3\\u0bbf \\u0ba8\\u0bc7\\u0bb0\\u0bae\\u0bcd\",hh:\"%d \\u0bae\\u0ba3\\u0bbf \\u0ba8\\u0bc7\\u0bb0\\u0bae\\u0bcd\",d:\"\\u0b92\\u0bb0\\u0bc1 \\u0ba8\\u0bbe\\u0bb3\\u0bcd\",dd:\"%d \\u0ba8\\u0bbe\\u0b9f\\u0bcd\\u0b95\\u0bb3\\u0bcd\",M:\"\\u0b92\\u0bb0\\u0bc1 \\u0bae\\u0bbe\\u0ba4\\u0bae\\u0bcd\",MM:\"%d \\u0bae\\u0bbe\\u0ba4\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd\",y:\"\\u0b92\\u0bb0\\u0bc1 \\u0bb5\\u0bb0\\u0bc1\\u0b9f\\u0bae\\u0bcd\",yy:\"%d \\u0b86\\u0ba3\\u0bcd\\u0b9f\\u0bc1\\u0b95\\u0bb3\\u0bcd\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u0bb5\\u0ba4\\u0bc1/,ordinal:function(e){return e+\"\\u0bb5\\u0ba4\\u0bc1\"},preparse:function(e){return e.replace(/[\\u0be7\\u0be8\\u0be9\\u0bea\\u0beb\\u0bec\\u0bed\\u0bee\\u0bef\\u0be6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd|\\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8|\\u0b95\\u0bbe\\u0bb2\\u0bc8|\\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd|\\u0b8e\\u0bb1\\u0bcd\\u0baa\\u0bbe\\u0b9f\\u0bc1|\\u0bae\\u0bbe\\u0bb2\\u0bc8/,meridiem:function(e,t,n){return e<2?\" \\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\":e<6?\" \\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8\":e<10?\" \\u0b95\\u0bbe\\u0bb2\\u0bc8\":e<14?\" \\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd\":e<18?\" \\u0b8e\\u0bb1\\u0bcd\\u0baa\\u0bbe\\u0b9f\\u0bc1\":e<22?\" \\u0bae\\u0bbe\\u0bb2\\u0bc8\":\" \\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\"===t?e<2?e:e+12:\"\\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8\"===t||\"\\u0b95\\u0bbe\\u0bb2\\u0bc8\"===t||\"\\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd\"===t&&e>=10?e:e+12},week:{dow:0,doy:6}})}(n(\"wd/R\"))},PpIw:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0ce7\",2:\"\\u0ce8\",3:\"\\u0ce9\",4:\"\\u0cea\",5:\"\\u0ceb\",6:\"\\u0cec\",7:\"\\u0ced\",8:\"\\u0cee\",9:\"\\u0cef\",0:\"\\u0ce6\"},n={\"\\u0ce7\":\"1\",\"\\u0ce8\":\"2\",\"\\u0ce9\":\"3\",\"\\u0cea\":\"4\",\"\\u0ceb\":\"5\",\"\\u0cec\":\"6\",\"\\u0ced\":\"7\",\"\\u0cee\":\"8\",\"\\u0cef\":\"9\",\"\\u0ce6\":\"0\"};e.defineLocale(\"kn\",{months:\"\\u0c9c\\u0ca8\\u0cb5\\u0cb0\\u0cbf_\\u0cab\\u0cc6\\u0cac\\u0ccd\\u0cb0\\u0cb5\\u0cb0\\u0cbf_\\u0cae\\u0cbe\\u0cb0\\u0ccd\\u0c9a\\u0ccd_\\u0c8f\\u0caa\\u0ccd\\u0cb0\\u0cbf\\u0cb2\\u0ccd_\\u0cae\\u0cc6\\u0cd5_\\u0c9c\\u0cc2\\u0ca8\\u0ccd_\\u0c9c\\u0cc1\\u0cb2\\u0cc6\\u0cd6_\\u0c86\\u0c97\\u0cb8\\u0ccd\\u0c9f\\u0ccd_\\u0cb8\\u0cc6\\u0caa\\u0ccd\\u0c9f\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd_\\u0c85\\u0c95\\u0ccd\\u0c9f\\u0cc6\\u0cc2\\u0cd5\\u0cac\\u0cb0\\u0ccd_\\u0ca8\\u0cb5\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd_\\u0ca1\\u0cbf\\u0cb8\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd\".split(\"_\"),monthsShort:\"\\u0c9c\\u0ca8_\\u0cab\\u0cc6\\u0cac\\u0ccd\\u0cb0_\\u0cae\\u0cbe\\u0cb0\\u0ccd\\u0c9a\\u0ccd_\\u0c8f\\u0caa\\u0ccd\\u0cb0\\u0cbf\\u0cb2\\u0ccd_\\u0cae\\u0cc6\\u0cd5_\\u0c9c\\u0cc2\\u0ca8\\u0ccd_\\u0c9c\\u0cc1\\u0cb2\\u0cc6\\u0cd6_\\u0c86\\u0c97\\u0cb8\\u0ccd\\u0c9f\\u0ccd_\\u0cb8\\u0cc6\\u0caa\\u0ccd\\u0c9f\\u0cc6\\u0c82_\\u0c85\\u0c95\\u0ccd\\u0c9f\\u0cc6\\u0cc2\\u0cd5_\\u0ca8\\u0cb5\\u0cc6\\u0c82_\\u0ca1\\u0cbf\\u0cb8\\u0cc6\\u0c82\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0cad\\u0cbe\\u0ca8\\u0cc1\\u0cb5\\u0cbe\\u0cb0_\\u0cb8\\u0cc6\\u0cc2\\u0cd5\\u0cae\\u0cb5\\u0cbe\\u0cb0_\\u0cae\\u0c82\\u0c97\\u0cb3\\u0cb5\\u0cbe\\u0cb0_\\u0cac\\u0cc1\\u0ca7\\u0cb5\\u0cbe\\u0cb0_\\u0c97\\u0cc1\\u0cb0\\u0cc1\\u0cb5\\u0cbe\\u0cb0_\\u0cb6\\u0cc1\\u0c95\\u0ccd\\u0cb0\\u0cb5\\u0cbe\\u0cb0_\\u0cb6\\u0ca8\\u0cbf\\u0cb5\\u0cbe\\u0cb0\".split(\"_\"),weekdaysShort:\"\\u0cad\\u0cbe\\u0ca8\\u0cc1_\\u0cb8\\u0cc6\\u0cc2\\u0cd5\\u0cae_\\u0cae\\u0c82\\u0c97\\u0cb3_\\u0cac\\u0cc1\\u0ca7_\\u0c97\\u0cc1\\u0cb0\\u0cc1_\\u0cb6\\u0cc1\\u0c95\\u0ccd\\u0cb0_\\u0cb6\\u0ca8\\u0cbf\".split(\"_\"),weekdaysMin:\"\\u0cad\\u0cbe_\\u0cb8\\u0cc6\\u0cc2\\u0cd5_\\u0cae\\u0c82_\\u0cac\\u0cc1_\\u0c97\\u0cc1_\\u0cb6\\u0cc1_\\u0cb6\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0c87\\u0c82\\u0ca6\\u0cc1] LT\",nextDay:\"[\\u0ca8\\u0cbe\\u0cb3\\u0cc6] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0ca8\\u0cbf\\u0ca8\\u0ccd\\u0ca8\\u0cc6] LT\",lastWeek:\"[\\u0c95\\u0cc6\\u0cc2\\u0ca8\\u0cc6\\u0caf] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0ca8\\u0c82\\u0ca4\\u0cb0\",past:\"%s \\u0cb9\\u0cbf\\u0c82\\u0ca6\\u0cc6\",s:\"\\u0c95\\u0cc6\\u0cb2\\u0cb5\\u0cc1 \\u0c95\\u0ccd\\u0cb7\\u0ca3\\u0c97\\u0cb3\\u0cc1\",ss:\"%d \\u0cb8\\u0cc6\\u0c95\\u0cc6\\u0c82\\u0ca1\\u0cc1\\u0c97\\u0cb3\\u0cc1\",m:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca8\\u0cbf\\u0cae\\u0cbf\\u0cb7\",mm:\"%d \\u0ca8\\u0cbf\\u0cae\\u0cbf\\u0cb7\",h:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0c97\\u0c82\\u0c9f\\u0cc6\",hh:\"%d \\u0c97\\u0c82\\u0c9f\\u0cc6\",d:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca6\\u0cbf\\u0ca8\",dd:\"%d \\u0ca6\\u0cbf\\u0ca8\",M:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca4\\u0cbf\\u0c82\\u0c97\\u0cb3\\u0cc1\",MM:\"%d \\u0ca4\\u0cbf\\u0c82\\u0c97\\u0cb3\\u0cc1\",y:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0cb5\\u0cb0\\u0ccd\\u0cb7\",yy:\"%d \\u0cb5\\u0cb0\\u0ccd\\u0cb7\"},preparse:function(e){return e.replace(/[\\u0ce7\\u0ce8\\u0ce9\\u0cea\\u0ceb\\u0cec\\u0ced\\u0cee\\u0cef\\u0ce6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf|\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6|\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8|\\u0cb8\\u0c82\\u0c9c\\u0cc6/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\"===t?e<4?e:e+12:\"\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6\"===t?e:\"\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8\"===t?e>=10?e:e+12:\"\\u0cb8\\u0c82\\u0c9c\\u0cc6\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\":e<10?\"\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6\":e<17?\"\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8\":e<20?\"\\u0cb8\\u0c82\\u0c9c\\u0cc6\":\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u0ca8\\u0cc6\\u0cd5)/,ordinal:function(e){return e+\"\\u0ca8\\u0cc6\\u0cd5\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},Qj4J:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-kw\",{months:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648\\u0632_\\u063a\\u0634\\u062a_\\u0634\\u062a\\u0646\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0646\\u0628\\u0631_\\u062f\\u062c\\u0646\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648\\u0632_\\u063a\\u0634\\u062a_\\u0634\\u062a\\u0646\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0646\\u0628\\u0631_\\u062f\\u062c\\u0646\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062a\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0627\\u062d\\u062f_\\u0627\\u062a\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:0,doy:12}})}(n(\"wd/R\"))},RAwQ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eng Minutt\",\"enger Minutt\"],h:[\"eng Stonn\",\"enger Stonn\"],d:[\"een Dag\",\"engem Dag\"],M:[\"ee Mount\",\"engem Mount\"],y:[\"ee Joer\",\"engem Joer\"]};return t?s[n][0]:s[n][1]}function n(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var t=e%10;return n(0===t?e/10:t)}if(e<1e4){for(;e>=10;)e/=10;return n(e)}return n(e/=1e3)}e.defineLocale(\"lb\",{months:\"Januar_Februar_M\\xe4erz_Abr\\xebll_Mee_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonndeg_M\\xe9indeg_D\\xebnschdeg_M\\xebttwoch_Donneschdeg_Freideg_Samschdeg\".split(\"_\"),weekdaysShort:\"So._M\\xe9._D\\xeb._M\\xeb._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_M\\xe9_D\\xeb_M\\xeb_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm [Auer]\",LTS:\"H:mm:ss [Auer]\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm [Auer]\",LLLL:\"dddd, D. MMMM YYYY H:mm [Auer]\"},calendar:{sameDay:\"[Haut um] LT\",sameElse:\"L\",nextDay:\"[Muer um] LT\",nextWeek:\"dddd [um] LT\",lastDay:\"[G\\xebschter um] LT\",lastWeek:function(){switch(this.day()){case 2:case 4:return\"[Leschten] dddd [um] LT\";default:return\"[Leschte] dddd [um] LT\"}}},relativeTime:{future:function(e){return n(e.substr(0,e.indexOf(\" \")))?\"a \"+e:\"an \"+e},past:function(e){return n(e.substr(0,e.indexOf(\" \")))?\"viru \"+e:\"virun \"+e},s:\"e puer Sekonnen\",ss:\"%d Sekonnen\",m:t,mm:\"%d Minutten\",h:t,hh:\"%d Stonnen\",d:t,dd:\"%d Deeg\",M:t,MM:\"%d M\\xe9int\",y:t,yy:\"%d Joer\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},RnhZ:function(e,t,n){var i={\"./af\":\"K/tc\",\"./af.js\":\"K/tc\",\"./ar\":\"jnO4\",\"./ar-dz\":\"o1bE\",\"./ar-dz.js\":\"o1bE\",\"./ar-kw\":\"Qj4J\",\"./ar-kw.js\":\"Qj4J\",\"./ar-ly\":\"HP3h\",\"./ar-ly.js\":\"HP3h\",\"./ar-ma\":\"CoRJ\",\"./ar-ma.js\":\"CoRJ\",\"./ar-sa\":\"gjCT\",\"./ar-sa.js\":\"gjCT\",\"./ar-tn\":\"bYM6\",\"./ar-tn.js\":\"bYM6\",\"./ar.js\":\"jnO4\",\"./az\":\"SFxW\",\"./az.js\":\"SFxW\",\"./be\":\"H8ED\",\"./be.js\":\"H8ED\",\"./bg\":\"hKrs\",\"./bg.js\":\"hKrs\",\"./bm\":\"p/rL\",\"./bm.js\":\"p/rL\",\"./bn\":\"kEOa\",\"./bn.js\":\"kEOa\",\"./bo\":\"0mo+\",\"./bo.js\":\"0mo+\",\"./br\":\"aIdf\",\"./br.js\":\"aIdf\",\"./bs\":\"JVSJ\",\"./bs.js\":\"JVSJ\",\"./ca\":\"1xZ4\",\"./ca.js\":\"1xZ4\",\"./cs\":\"PA2r\",\"./cs.js\":\"PA2r\",\"./cv\":\"A+xa\",\"./cv.js\":\"A+xa\",\"./cy\":\"l5ep\",\"./cy.js\":\"l5ep\",\"./da\":\"DxQv\",\"./da.js\":\"DxQv\",\"./de\":\"tGlX\",\"./de-at\":\"s+uk\",\"./de-at.js\":\"s+uk\",\"./de-ch\":\"u3GI\",\"./de-ch.js\":\"u3GI\",\"./de.js\":\"tGlX\",\"./dv\":\"WYrj\",\"./dv.js\":\"WYrj\",\"./el\":\"jUeY\",\"./el.js\":\"jUeY\",\"./en-SG\":\"zavE\",\"./en-SG.js\":\"zavE\",\"./en-au\":\"Dmvi\",\"./en-au.js\":\"Dmvi\",\"./en-ca\":\"OIYi\",\"./en-ca.js\":\"OIYi\",\"./en-gb\":\"Oaa7\",\"./en-gb.js\":\"Oaa7\",\"./en-ie\":\"4dOw\",\"./en-ie.js\":\"4dOw\",\"./en-il\":\"czMo\",\"./en-il.js\":\"czMo\",\"./en-nz\":\"b1Dy\",\"./en-nz.js\":\"b1Dy\",\"./eo\":\"Zduo\",\"./eo.js\":\"Zduo\",\"./es\":\"iYuL\",\"./es-do\":\"CjzT\",\"./es-do.js\":\"CjzT\",\"./es-us\":\"Vclq\",\"./es-us.js\":\"Vclq\",\"./es.js\":\"iYuL\",\"./et\":\"7BjC\",\"./et.js\":\"7BjC\",\"./eu\":\"D/JM\",\"./eu.js\":\"D/JM\",\"./fa\":\"jfSC\",\"./fa.js\":\"jfSC\",\"./fi\":\"gekB\",\"./fi.js\":\"gekB\",\"./fo\":\"ByF4\",\"./fo.js\":\"ByF4\",\"./fr\":\"nyYc\",\"./fr-ca\":\"2fjn\",\"./fr-ca.js\":\"2fjn\",\"./fr-ch\":\"Dkky\",\"./fr-ch.js\":\"Dkky\",\"./fr.js\":\"nyYc\",\"./fy\":\"cRix\",\"./fy.js\":\"cRix\",\"./ga\":\"USCx\",\"./ga.js\":\"USCx\",\"./gd\":\"9rRi\",\"./gd.js\":\"9rRi\",\"./gl\":\"iEDd\",\"./gl.js\":\"iEDd\",\"./gom-latn\":\"DKr+\",\"./gom-latn.js\":\"DKr+\",\"./gu\":\"4MV3\",\"./gu.js\":\"4MV3\",\"./he\":\"x6pH\",\"./he.js\":\"x6pH\",\"./hi\":\"3E1r\",\"./hi.js\":\"3E1r\",\"./hr\":\"S6ln\",\"./hr.js\":\"S6ln\",\"./hu\":\"WxRl\",\"./hu.js\":\"WxRl\",\"./hy-am\":\"1rYy\",\"./hy-am.js\":\"1rYy\",\"./id\":\"UDhR\",\"./id.js\":\"UDhR\",\"./is\":\"BVg3\",\"./is.js\":\"BVg3\",\"./it\":\"bpih\",\"./it-ch\":\"bxKX\",\"./it-ch.js\":\"bxKX\",\"./it.js\":\"bpih\",\"./ja\":\"B55N\",\"./ja.js\":\"B55N\",\"./jv\":\"tUCv\",\"./jv.js\":\"tUCv\",\"./ka\":\"IBtZ\",\"./ka.js\":\"IBtZ\",\"./kk\":\"bXm7\",\"./kk.js\":\"bXm7\",\"./km\":\"6B0Y\",\"./km.js\":\"6B0Y\",\"./kn\":\"PpIw\",\"./kn.js\":\"PpIw\",\"./ko\":\"Ivi+\",\"./ko.js\":\"Ivi+\",\"./ku\":\"JCF/\",\"./ku.js\":\"JCF/\",\"./ky\":\"lgnt\",\"./ky.js\":\"lgnt\",\"./lb\":\"RAwQ\",\"./lb.js\":\"RAwQ\",\"./lo\":\"sp3z\",\"./lo.js\":\"sp3z\",\"./lt\":\"JvlW\",\"./lt.js\":\"JvlW\",\"./lv\":\"uXwI\",\"./lv.js\":\"uXwI\",\"./me\":\"KTz0\",\"./me.js\":\"KTz0\",\"./mi\":\"aIsn\",\"./mi.js\":\"aIsn\",\"./mk\":\"aQkU\",\"./mk.js\":\"aQkU\",\"./ml\":\"AvvY\",\"./ml.js\":\"AvvY\",\"./mn\":\"lYtQ\",\"./mn.js\":\"lYtQ\",\"./mr\":\"Ob0Z\",\"./mr.js\":\"Ob0Z\",\"./ms\":\"6+QB\",\"./ms-my\":\"ZAMP\",\"./ms-my.js\":\"ZAMP\",\"./ms.js\":\"6+QB\",\"./mt\":\"G0Uy\",\"./mt.js\":\"G0Uy\",\"./my\":\"honF\",\"./my.js\":\"honF\",\"./nb\":\"bOMt\",\"./nb.js\":\"bOMt\",\"./ne\":\"OjkT\",\"./ne.js\":\"OjkT\",\"./nl\":\"+s0g\",\"./nl-be\":\"2ykv\",\"./nl-be.js\":\"2ykv\",\"./nl.js\":\"+s0g\",\"./nn\":\"uEye\",\"./nn.js\":\"uEye\",\"./pa-in\":\"8/+R\",\"./pa-in.js\":\"8/+R\",\"./pl\":\"jVdC\",\"./pl.js\":\"jVdC\",\"./pt\":\"8mBD\",\"./pt-br\":\"0tRk\",\"./pt-br.js\":\"0tRk\",\"./pt.js\":\"8mBD\",\"./ro\":\"lyxo\",\"./ro.js\":\"lyxo\",\"./ru\":\"lXzo\",\"./ru.js\":\"lXzo\",\"./sd\":\"Z4QM\",\"./sd.js\":\"Z4QM\",\"./se\":\"//9w\",\"./se.js\":\"//9w\",\"./si\":\"7aV9\",\"./si.js\":\"7aV9\",\"./sk\":\"e+ae\",\"./sk.js\":\"e+ae\",\"./sl\":\"gVVK\",\"./sl.js\":\"gVVK\",\"./sq\":\"yPMs\",\"./sq.js\":\"yPMs\",\"./sr\":\"zx6S\",\"./sr-cyrl\":\"E+lV\",\"./sr-cyrl.js\":\"E+lV\",\"./sr.js\":\"zx6S\",\"./ss\":\"Ur1D\",\"./ss.js\":\"Ur1D\",\"./sv\":\"X709\",\"./sv.js\":\"X709\",\"./sw\":\"dNwA\",\"./sw.js\":\"dNwA\",\"./ta\":\"PeUW\",\"./ta.js\":\"PeUW\",\"./te\":\"XLvN\",\"./te.js\":\"XLvN\",\"./tet\":\"V2x9\",\"./tet.js\":\"V2x9\",\"./tg\":\"Oxv6\",\"./tg.js\":\"Oxv6\",\"./th\":\"EOgW\",\"./th.js\":\"EOgW\",\"./tl-ph\":\"Dzi0\",\"./tl-ph.js\":\"Dzi0\",\"./tlh\":\"z3Vd\",\"./tlh.js\":\"z3Vd\",\"./tr\":\"DoHr\",\"./tr.js\":\"DoHr\",\"./tzl\":\"z1FC\",\"./tzl.js\":\"z1FC\",\"./tzm\":\"wQk9\",\"./tzm-latn\":\"tT3J\",\"./tzm-latn.js\":\"tT3J\",\"./tzm.js\":\"wQk9\",\"./ug-cn\":\"YRex\",\"./ug-cn.js\":\"YRex\",\"./uk\":\"raLr\",\"./uk.js\":\"raLr\",\"./ur\":\"UpQW\",\"./ur.js\":\"UpQW\",\"./uz\":\"Loxo\",\"./uz-latn\":\"AQ68\",\"./uz-latn.js\":\"AQ68\",\"./uz.js\":\"Loxo\",\"./vi\":\"KSF8\",\"./vi.js\":\"KSF8\",\"./x-pseudo\":\"/X5v\",\"./x-pseudo.js\":\"/X5v\",\"./yo\":\"fzPg\",\"./yo.js\":\"fzPg\",\"./zh-cn\":\"XDpg\",\"./zh-cn.js\":\"XDpg\",\"./zh-hk\":\"SatO\",\"./zh-hk.js\":\"SatO\",\"./zh-tw\":\"kOpN\",\"./zh-tw.js\":\"kOpN\"};function s(e){var t=r(e);return n(t)}function r(e){if(!n.o(i,e)){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}return i[e]}s.keys=function(){return Object.keys(i)},s.resolve=r,e.exports=s,s.id=\"RnhZ\"},S6ln:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i=e+\" \";switch(n){case\"ss\":return i+(1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\");case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return i+(1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\");case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return i+(1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\");case\"dd\":return i+(1===e?\"dan\":\"dana\");case\"MM\":return i+(1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\");case\"yy\":return i+(1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\")}}e.defineLocale(\"hr\",{months:{format:\"sije\\u010dnja_velja\\u010de_o\\u017eujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca\".split(\"_\"),standalone:\"sije\\u010danj_velja\\u010da_o\\u017eujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac\".split(\"_\")},monthsShort:\"sij._velj._o\\u017eu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010der u] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:return\"[pro\\u0161lu] dddd [u] LT\";case 6:return\"[pro\\u0161le] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[pro\\u0161li] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},SFxW:function(e,t,n){!function(e){\"use strict\";var t={1:\"-inci\",5:\"-inci\",8:\"-inci\",70:\"-inci\",80:\"-inci\",2:\"-nci\",7:\"-nci\",20:\"-nci\",50:\"-nci\",3:\"-\\xfcnc\\xfc\",4:\"-\\xfcnc\\xfc\",100:\"-\\xfcnc\\xfc\",6:\"-nc\\u0131\",9:\"-uncu\",10:\"-uncu\",30:\"-uncu\",60:\"-\\u0131nc\\u0131\",90:\"-\\u0131nc\\u0131\"};e.defineLocale(\"az\",{months:\"yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr\".split(\"_\"),monthsShort:\"yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek\".split(\"_\"),weekdays:\"Bazar_Bazar ert\\u0259si_\\xc7\\u0259r\\u015f\\u0259nb\\u0259 ax\\u015fam\\u0131_\\xc7\\u0259r\\u015f\\u0259nb\\u0259_C\\xfcm\\u0259 ax\\u015fam\\u0131_C\\xfcm\\u0259_\\u015e\\u0259nb\\u0259\".split(\"_\"),weekdaysShort:\"Baz_BzE_\\xc7Ax_\\xc7\\u0259r_CAx_C\\xfcm_\\u015e\\u0259n\".split(\"_\"),weekdaysMin:\"Bz_BE_\\xc7A_\\xc7\\u0259_CA_C\\xfc_\\u015e\\u0259\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bug\\xfcn saat] LT\",nextDay:\"[sabah saat] LT\",nextWeek:\"[g\\u0259l\\u0259n h\\u0259ft\\u0259] dddd [saat] LT\",lastDay:\"[d\\xfcn\\u0259n] LT\",lastWeek:\"[ke\\xe7\\u0259n h\\u0259ft\\u0259] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s \\u0259vv\\u0259l\",s:\"birne\\xe7\\u0259 saniy\\u0259\",ss:\"%d saniy\\u0259\",m:\"bir d\\u0259qiq\\u0259\",mm:\"%d d\\u0259qiq\\u0259\",h:\"bir saat\",hh:\"%d saat\",d:\"bir g\\xfcn\",dd:\"%d g\\xfcn\",M:\"bir ay\",MM:\"%d ay\",y:\"bir il\",yy:\"%d il\"},meridiemParse:/gec\\u0259|s\\u0259h\\u0259r|g\\xfcnd\\xfcz|ax\\u015fam/,isPM:function(e){return/^(g\\xfcnd\\xfcz|ax\\u015fam)$/.test(e)},meridiem:function(e,t,n){return e<4?\"gec\\u0259\":e<12?\"s\\u0259h\\u0259r\":e<17?\"g\\xfcnd\\xfcz\":\"ax\\u015fam\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0131nc\\u0131|inci|nci|\\xfcnc\\xfc|nc\\u0131|uncu)/,ordinal:function(e){if(0===e)return e+\"-\\u0131nc\\u0131\";var n=e%10;return e+(t[n]||t[e%100-n]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},SatO:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-hk\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u9031\\u65e5_\\u9031\\u4e00_\\u9031\\u4e8c_\\u9031\\u4e09_\\u9031\\u56db_\\u9031\\u4e94_\\u9031\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e2d\\u5348\"===t?e>=11?e:e+12:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:void 0},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"\\u51cc\\u6668\":i<900?\"\\u65e9\\u4e0a\":i<1130?\"\\u4e0a\\u5348\":i<1230?\"\\u4e2d\\u5348\":i<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929]LT\",nextDay:\"[\\u660e\\u5929]LT\",nextWeek:\"[\\u4e0b]ddddLT\",lastDay:\"[\\u6628\\u5929]LT\",lastWeek:\"[\\u4e0a]ddddLT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u9031)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u9031\";default:return e}},relativeTime:{future:\"%s\\u5167\",past:\"%s\\u524d\",s:\"\\u5e7e\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u9418\",mm:\"%d \\u5206\\u9418\",h:\"1 \\u5c0f\\u6642\",hh:\"%d \\u5c0f\\u6642\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u500b\\u6708\",MM:\"%d \\u500b\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"}})}(n(\"wd/R\"))},UDhR:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"id\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Rab_Kam_Jum_Sab\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"siang\"===t?e>=11?e:e+12:\"sore\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"siang\":e<19?\"sore\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Besok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kemarin pukul] LT\",lastWeek:\"dddd [lalu pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lalu\",s:\"beberapa detik\",ss:\"%d detik\",m:\"semenit\",mm:\"%d menit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},USCx:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ga\",{months:[\"Ean\\xe1ir\",\"Feabhra\",\"M\\xe1rta\",\"Aibre\\xe1n\",\"Bealtaine\",\"M\\xe9itheamh\",\"I\\xfail\",\"L\\xfanasa\",\"Me\\xe1n F\\xf3mhair\",\"Deaireadh F\\xf3mhair\",\"Samhain\",\"Nollaig\"],monthsShort:[\"Ean\\xe1\",\"Feab\",\"M\\xe1rt\",\"Aibr\",\"Beal\",\"M\\xe9it\",\"I\\xfail\",\"L\\xfana\",\"Me\\xe1n\",\"Deai\",\"Samh\",\"Noll\"],monthsParseExact:!0,weekdays:[\"D\\xe9 Domhnaigh\",\"D\\xe9 Luain\",\"D\\xe9 M\\xe1irt\",\"D\\xe9 C\\xe9adaoin\",\"D\\xe9ardaoin\",\"D\\xe9 hAoine\",\"D\\xe9 Satharn\"],weekdaysShort:[\"Dom\",\"Lua\",\"M\\xe1i\",\"C\\xe9a\",\"D\\xe9a\",\"hAo\",\"Sat\"],weekdaysMin:[\"Do\",\"Lu\",\"M\\xe1\",\"Ce\",\"D\\xe9\",\"hA\",\"Sa\"],longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Inniu ag] LT\",nextDay:\"[Am\\xe1rach ag] LT\",nextWeek:\"dddd [ag] LT\",lastDay:\"[Inn\\xe9 aig] LT\",lastWeek:\"dddd [seo caite] [ag] LT\",sameElse:\"L\"},relativeTime:{future:\"i %s\",past:\"%s \\xf3 shin\",s:\"c\\xfapla soicind\",ss:\"%d soicind\",m:\"n\\xf3im\\xe9ad\",mm:\"%d n\\xf3im\\xe9ad\",h:\"uair an chloig\",hh:\"%d uair an chloig\",d:\"l\\xe1\",dd:\"%d l\\xe1\",M:\"m\\xed\",MM:\"%d m\\xed\",y:\"bliain\",yy:\"%d bliain\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},UpQW:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u062c\\u0646\\u0648\\u0631\\u06cc\",\"\\u0641\\u0631\\u0648\\u0631\\u06cc\",\"\\u0645\\u0627\\u0631\\u0686\",\"\\u0627\\u067e\\u0631\\u06cc\\u0644\",\"\\u0645\\u0626\\u06cc\",\"\\u062c\\u0648\\u0646\",\"\\u062c\\u0648\\u0644\\u0627\\u0626\\u06cc\",\"\\u0627\\u06af\\u0633\\u062a\",\"\\u0633\\u062a\\u0645\\u0628\\u0631\",\"\\u0627\\u06a9\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0645\\u0628\\u0631\",\"\\u062f\\u0633\\u0645\\u0628\\u0631\"],n=[\"\\u0627\\u062a\\u0648\\u0627\\u0631\",\"\\u067e\\u06cc\\u0631\",\"\\u0645\\u0646\\u06af\\u0644\",\"\\u0628\\u062f\\u06be\",\"\\u062c\\u0645\\u0639\\u0631\\u0627\\u062a\",\"\\u062c\\u0645\\u0639\\u06c1\",\"\\u06c1\\u0641\\u062a\\u06c1\"];e.defineLocale(\"ur\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd\\u060c D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635\\u0628\\u062d|\\u0634\\u0627\\u0645/,isPM:function(e){return\"\\u0634\\u0627\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\\u0628\\u062d\":\"\\u0634\\u0627\\u0645\"},calendar:{sameDay:\"[\\u0622\\u062c \\u0628\\u0648\\u0642\\u062a] LT\",nextDay:\"[\\u06a9\\u0644 \\u0628\\u0648\\u0642\\u062a] LT\",nextWeek:\"dddd [\\u0628\\u0648\\u0642\\u062a] LT\",lastDay:\"[\\u06af\\u0630\\u0634\\u062a\\u06c1 \\u0631\\u0648\\u0632 \\u0628\\u0648\\u0642\\u062a] LT\",lastWeek:\"[\\u06af\\u0630\\u0634\\u062a\\u06c1] dddd [\\u0628\\u0648\\u0642\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0628\\u0639\\u062f\",past:\"%s \\u0642\\u0628\\u0644\",s:\"\\u0686\\u0646\\u062f \\u0633\\u06cc\\u06a9\\u0646\\u0688\",ss:\"%d \\u0633\\u06cc\\u06a9\\u0646\\u0688\",m:\"\\u0627\\u06cc\\u06a9 \\u0645\\u0646\\u0679\",mm:\"%d \\u0645\\u0646\\u0679\",h:\"\\u0627\\u06cc\\u06a9 \\u06af\\u06be\\u0646\\u0679\\u06c1\",hh:\"%d \\u06af\\u06be\\u0646\\u0679\\u06d2\",d:\"\\u0627\\u06cc\\u06a9 \\u062f\\u0646\",dd:\"%d \\u062f\\u0646\",M:\"\\u0627\\u06cc\\u06a9 \\u0645\\u0627\\u06c1\",MM:\"%d \\u0645\\u0627\\u06c1\",y:\"\\u0627\\u06cc\\u06a9 \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Ur1D:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ss\",{months:\"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni\".split(\"_\"),monthsShort:\"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo\".split(\"_\"),weekdays:\"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo\".split(\"_\"),weekdaysShort:\"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg\".split(\"_\"),weekdaysMin:\"Li_Us_Lb_Lt_Ls_Lh_Ug\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Namuhla nga] LT\",nextDay:\"[Kusasa nga] LT\",nextWeek:\"dddd [nga] LT\",lastDay:\"[Itolo nga] LT\",lastWeek:\"dddd [leliphelile] [nga] LT\",sameElse:\"L\"},relativeTime:{future:\"nga %s\",past:\"wenteka nga %s\",s:\"emizuzwana lomcane\",ss:\"%d mzuzwana\",m:\"umzuzu\",mm:\"%d emizuzu\",h:\"lihora\",hh:\"%d emahora\",d:\"lilanga\",dd:\"%d emalanga\",M:\"inyanga\",MM:\"%d tinyanga\",y:\"umnyaka\",yy:\"%d iminyaka\"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(e,t,n){return e<11?\"ekuseni\":e<15?\"emini\":e<19?\"entsambama\":\"ebusuku\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"ekuseni\"===t?e:\"emini\"===t?e>=11?e:e+12:\"entsambama\"===t||\"ebusuku\"===t?0===e?0:e+12:void 0},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:\"%d\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},V2x9:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tet\",{months:\"Janeiru_Fevereiru_Marsu_Abril_Maiu_Ju\\xf1u_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ters_Kua_Kint_Sest_Sab\".split(\"_\"),weekdaysMin:\"Do_Seg_Te_Ku_Ki_Ses_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Ohin iha] LT\",nextDay:\"[Aban iha] LT\",nextWeek:\"dddd [iha] LT\",lastDay:\"[Horiseik iha] LT\",lastWeek:\"dddd [semana kotuk] [iha] LT\",sameElse:\"L\"},relativeTime:{future:\"iha %s\",past:\"%s liuba\",s:\"minutu balun\",ss:\"minutu %d\",m:\"minutu ida\",mm:\"minutu %d\",h:\"oras ida\",hh:\"oras %d\",d:\"loron ida\",dd:\"loron %d\",M:\"fulan ida\",MM:\"fulan %d\",y:\"tinan ida\",yy:\"tinan %d\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Vclq:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],s=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es-us\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"domingo_lunes_martes_mi\\xe9rcoles_jueves_viernes_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mi\\xe9._jue._vie._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"MM/DD/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY h:mm A\",LLLL:\"dddd, D [de] MMMM [de] YYYY h:mm A\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1ana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un a\\xf1o\",yy:\"%d a\\xf1os\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:0,doy:6}})}(n(\"wd/R\"))},WYrj:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u0796\\u07ac\\u0782\\u07aa\\u0787\\u07a6\\u0783\\u07a9\",\"\\u078a\\u07ac\\u0784\\u07b0\\u0783\\u07aa\\u0787\\u07a6\\u0783\\u07a9\",\"\\u0789\\u07a7\\u0783\\u07a8\\u0797\\u07aa\",\"\\u0787\\u07ad\\u0795\\u07b0\\u0783\\u07a9\\u078d\\u07aa\",\"\\u0789\\u07ad\",\"\\u0796\\u07ab\\u0782\\u07b0\",\"\\u0796\\u07aa\\u078d\\u07a6\\u0787\\u07a8\",\"\\u0787\\u07af\\u078e\\u07a6\\u0790\\u07b0\\u0793\\u07aa\",\"\\u0790\\u07ac\\u0795\\u07b0\\u0793\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0787\\u07ae\\u0786\\u07b0\\u0793\\u07af\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0782\\u07ae\\u0788\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0791\\u07a8\\u0790\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\"],n=[\"\\u0787\\u07a7\\u078b\\u07a8\\u0787\\u07b0\\u078c\\u07a6\",\"\\u0780\\u07af\\u0789\\u07a6\",\"\\u0787\\u07a6\\u0782\\u07b0\\u078e\\u07a7\\u0783\\u07a6\",\"\\u0784\\u07aa\\u078b\\u07a6\",\"\\u0784\\u07aa\\u0783\\u07a7\\u0790\\u07b0\\u078a\\u07a6\\u078c\\u07a8\",\"\\u0780\\u07aa\\u0786\\u07aa\\u0783\\u07aa\",\"\\u0780\\u07ae\\u0782\\u07a8\\u0780\\u07a8\\u0783\\u07aa\"];e.defineLocale(\"dv\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:\"\\u0787\\u07a7\\u078b\\u07a8_\\u0780\\u07af\\u0789\\u07a6_\\u0787\\u07a6\\u0782\\u07b0_\\u0784\\u07aa\\u078b\\u07a6_\\u0784\\u07aa\\u0783\\u07a7_\\u0780\\u07aa\\u0786\\u07aa_\\u0780\\u07ae\\u0782\\u07a8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/M/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0789\\u0786|\\u0789\\u078a/,isPM:function(e){return\"\\u0789\\u078a\"===e},meridiem:function(e,t,n){return e<12?\"\\u0789\\u0786\":\"\\u0789\\u078a\"},calendar:{sameDay:\"[\\u0789\\u07a8\\u0787\\u07a6\\u078b\\u07aa] LT\",nextDay:\"[\\u0789\\u07a7\\u078b\\u07a6\\u0789\\u07a7] LT\",nextWeek:\"dddd LT\",lastDay:\"[\\u0787\\u07a8\\u0787\\u07b0\\u0794\\u07ac] LT\",lastWeek:\"[\\u078a\\u07a7\\u0787\\u07a8\\u078c\\u07aa\\u0788\\u07a8] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"\\u078c\\u07ac\\u0783\\u07ad\\u078e\\u07a6\\u0787\\u07a8 %s\",past:\"\\u0786\\u07aa\\u0783\\u07a8\\u0782\\u07b0 %s\",s:\"\\u0790\\u07a8\\u0786\\u07aa\\u0782\\u07b0\\u078c\\u07aa\\u0786\\u07ae\\u0785\\u07ac\\u0787\\u07b0\",ss:\"d% \\u0790\\u07a8\\u0786\\u07aa\\u0782\\u07b0\\u078c\\u07aa\",m:\"\\u0789\\u07a8\\u0782\\u07a8\\u0793\\u07ac\\u0787\\u07b0\",mm:\"\\u0789\\u07a8\\u0782\\u07a8\\u0793\\u07aa %d\",h:\"\\u078e\\u07a6\\u0791\\u07a8\\u0787\\u07a8\\u0783\\u07ac\\u0787\\u07b0\",hh:\"\\u078e\\u07a6\\u0791\\u07a8\\u0787\\u07a8\\u0783\\u07aa %d\",d:\"\\u078b\\u07aa\\u0788\\u07a6\\u0780\\u07ac\\u0787\\u07b0\",dd:\"\\u078b\\u07aa\\u0788\\u07a6\\u0790\\u07b0 %d\",M:\"\\u0789\\u07a6\\u0780\\u07ac\\u0787\\u07b0\",MM:\"\\u0789\\u07a6\\u0790\\u07b0 %d\",y:\"\\u0787\\u07a6\\u0780\\u07a6\\u0783\\u07ac\\u0787\\u07b0\",yy:\"\\u0787\\u07a6\\u0780\\u07a6\\u0783\\u07aa %d\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:7,doy:12}})}(n(\"wd/R\"))},WxRl:function(e,t,n){!function(e){\"use strict\";var t=\"vas\\xe1rnap h\\xe9tf\\u0151n kedden szerd\\xe1n cs\\xfct\\xf6rt\\xf6k\\xf6n p\\xe9nteken szombaton\".split(\" \");function n(e,t,n,i){var s=e;switch(n){case\"s\":return i||t?\"n\\xe9h\\xe1ny m\\xe1sodperc\":\"n\\xe9h\\xe1ny m\\xe1sodperce\";case\"ss\":return s+(i||t)?\" m\\xe1sodperc\":\" m\\xe1sodperce\";case\"m\":return\"egy\"+(i||t?\" perc\":\" perce\");case\"mm\":return s+(i||t?\" perc\":\" perce\");case\"h\":return\"egy\"+(i||t?\" \\xf3ra\":\" \\xf3r\\xe1ja\");case\"hh\":return s+(i||t?\" \\xf3ra\":\" \\xf3r\\xe1ja\");case\"d\":return\"egy\"+(i||t?\" nap\":\" napja\");case\"dd\":return s+(i||t?\" nap\":\" napja\");case\"M\":return\"egy\"+(i||t?\" h\\xf3nap\":\" h\\xf3napja\");case\"MM\":return s+(i||t?\" h\\xf3nap\":\" h\\xf3napja\");case\"y\":return\"egy\"+(i||t?\" \\xe9v\":\" \\xe9ve\");case\"yy\":return s+(i||t?\" \\xe9v\":\" \\xe9ve\")}return\"\"}function i(e){return(e?\"\":\"[m\\xfalt] \")+\"[\"+t[this.day()]+\"] LT[-kor]\"}e.defineLocale(\"hu\",{months:\"janu\\xe1r_febru\\xe1r_m\\xe1rcius_\\xe1prilis_m\\xe1jus_j\\xfanius_j\\xfalius_augusztus_szeptember_okt\\xf3ber_november_december\".split(\"_\"),monthsShort:\"jan_feb_m\\xe1rc_\\xe1pr_m\\xe1j_j\\xfan_j\\xfal_aug_szept_okt_nov_dec\".split(\"_\"),weekdays:\"vas\\xe1rnap_h\\xe9tf\\u0151_kedd_szerda_cs\\xfct\\xf6rt\\xf6k_p\\xe9ntek_szombat\".split(\"_\"),weekdaysShort:\"vas_h\\xe9t_kedd_sze_cs\\xfct_p\\xe9n_szo\".split(\"_\"),weekdaysMin:\"v_h_k_sze_cs_p_szo\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY. MMMM D.\",LLL:\"YYYY. MMMM D. H:mm\",LLLL:\"YYYY. MMMM D., dddd H:mm\"},meridiemParse:/de|du/i,isPM:function(e){return\"u\"===e.charAt(1).toLowerCase()},meridiem:function(e,t,n){return e<12?!0===n?\"de\":\"DE\":!0===n?\"du\":\"DU\"},calendar:{sameDay:\"[ma] LT[-kor]\",nextDay:\"[holnap] LT[-kor]\",nextWeek:function(){return i.call(this,!0)},lastDay:\"[tegnap] LT[-kor]\",lastWeek:function(){return i.call(this,!1)},sameElse:\"L\"},relativeTime:{future:\"%s m\\xfalva\",past:\"%s\",s:n,ss:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},X709:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sv\",{months:\"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"s\\xf6ndag_m\\xe5ndag_tisdag_onsdag_torsdag_fredag_l\\xf6rdag\".split(\"_\"),weekdaysShort:\"s\\xf6n_m\\xe5n_tis_ons_tor_fre_l\\xf6r\".split(\"_\"),weekdaysMin:\"s\\xf6_m\\xe5_ti_on_to_fr_l\\xf6\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D MMMM YYYY [kl.] HH:mm\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd D MMM YYYY HH:mm\"},calendar:{sameDay:\"[Idag] LT\",nextDay:\"[Imorgon] LT\",lastDay:\"[Ig\\xe5r] LT\",nextWeek:\"[P\\xe5] dddd LT\",lastWeek:\"[I] dddd[s] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"f\\xf6r %s sedan\",s:\"n\\xe5gra sekunder\",ss:\"%d sekunder\",m:\"en minut\",mm:\"%d minuter\",h:\"en timme\",hh:\"%d timmar\",d:\"en dag\",dd:\"%d dagar\",M:\"en m\\xe5nad\",MM:\"%d m\\xe5nader\",y:\"ett \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}(e|a)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"e\":1===t||2===t?\"a\":\"e\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},XDpg:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-cn\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u5468\\u65e5_\\u5468\\u4e00_\\u5468\\u4e8c_\\u5468\\u4e09_\\u5468\\u56db_\\u5468\\u4e94_\\u5468\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5Ah\\u70b9mm\\u5206\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5ddddAh\\u70b9mm\\u5206\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"\\u51cc\\u6668\":i<900?\"\\u65e9\\u4e0a\":i<1130?\"\\u4e0a\\u5348\":i<1230?\"\\u4e2d\\u5348\":i<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929]LT\",nextDay:\"[\\u660e\\u5929]LT\",nextWeek:\"[\\u4e0b]ddddLT\",lastDay:\"[\\u6628\\u5929]LT\",lastWeek:\"[\\u4e0a]ddddLT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u5468)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u5468\";default:return e}},relativeTime:{future:\"%s\\u5185\",past:\"%s\\u524d\",s:\"\\u51e0\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u949f\",mm:\"%d \\u5206\\u949f\",h:\"1 \\u5c0f\\u65f6\",hh:\"%d \\u5c0f\\u65f6\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u4e2a\\u6708\",MM:\"%d \\u4e2a\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},XLvN:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"te\",{months:\"\\u0c1c\\u0c28\\u0c35\\u0c30\\u0c3f_\\u0c2b\\u0c3f\\u0c2c\\u0c4d\\u0c30\\u0c35\\u0c30\\u0c3f_\\u0c2e\\u0c3e\\u0c30\\u0c4d\\u0c1a\\u0c3f_\\u0c0f\\u0c2a\\u0c4d\\u0c30\\u0c3f\\u0c32\\u0c4d_\\u0c2e\\u0c47_\\u0c1c\\u0c42\\u0c28\\u0c4d_\\u0c1c\\u0c41\\u0c32\\u0c48_\\u0c06\\u0c17\\u0c38\\u0c4d\\u0c1f\\u0c41_\\u0c38\\u0c46\\u0c2a\\u0c4d\\u0c1f\\u0c46\\u0c02\\u0c2c\\u0c30\\u0c4d_\\u0c05\\u0c15\\u0c4d\\u0c1f\\u0c4b\\u0c2c\\u0c30\\u0c4d_\\u0c28\\u0c35\\u0c02\\u0c2c\\u0c30\\u0c4d_\\u0c21\\u0c3f\\u0c38\\u0c46\\u0c02\\u0c2c\\u0c30\\u0c4d\".split(\"_\"),monthsShort:\"\\u0c1c\\u0c28._\\u0c2b\\u0c3f\\u0c2c\\u0c4d\\u0c30._\\u0c2e\\u0c3e\\u0c30\\u0c4d\\u0c1a\\u0c3f_\\u0c0f\\u0c2a\\u0c4d\\u0c30\\u0c3f._\\u0c2e\\u0c47_\\u0c1c\\u0c42\\u0c28\\u0c4d_\\u0c1c\\u0c41\\u0c32\\u0c48_\\u0c06\\u0c17._\\u0c38\\u0c46\\u0c2a\\u0c4d._\\u0c05\\u0c15\\u0c4d\\u0c1f\\u0c4b._\\u0c28\\u0c35._\\u0c21\\u0c3f\\u0c38\\u0c46.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0c06\\u0c26\\u0c3f\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c38\\u0c4b\\u0c2e\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c2e\\u0c02\\u0c17\\u0c33\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c2c\\u0c41\\u0c27\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c17\\u0c41\\u0c30\\u0c41\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c36\\u0c41\\u0c15\\u0c4d\\u0c30\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c36\\u0c28\\u0c3f\\u0c35\\u0c3e\\u0c30\\u0c02\".split(\"_\"),weekdaysShort:\"\\u0c06\\u0c26\\u0c3f_\\u0c38\\u0c4b\\u0c2e_\\u0c2e\\u0c02\\u0c17\\u0c33_\\u0c2c\\u0c41\\u0c27_\\u0c17\\u0c41\\u0c30\\u0c41_\\u0c36\\u0c41\\u0c15\\u0c4d\\u0c30_\\u0c36\\u0c28\\u0c3f\".split(\"_\"),weekdaysMin:\"\\u0c06_\\u0c38\\u0c4b_\\u0c2e\\u0c02_\\u0c2c\\u0c41_\\u0c17\\u0c41_\\u0c36\\u0c41_\\u0c36\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0c28\\u0c47\\u0c21\\u0c41] LT\",nextDay:\"[\\u0c30\\u0c47\\u0c2a\\u0c41] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0c28\\u0c3f\\u0c28\\u0c4d\\u0c28] LT\",lastWeek:\"[\\u0c17\\u0c24] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0c32\\u0c4b\",past:\"%s \\u0c15\\u0c4d\\u0c30\\u0c3f\\u0c24\\u0c02\",s:\"\\u0c15\\u0c4a\\u0c28\\u0c4d\\u0c28\\u0c3f \\u0c15\\u0c4d\\u0c37\\u0c23\\u0c3e\\u0c32\\u0c41\",ss:\"%d \\u0c38\\u0c46\\u0c15\\u0c28\\u0c4d\\u0c32\\u0c41\",m:\"\\u0c12\\u0c15 \\u0c28\\u0c3f\\u0c2e\\u0c3f\\u0c37\\u0c02\",mm:\"%d \\u0c28\\u0c3f\\u0c2e\\u0c3f\\u0c37\\u0c3e\\u0c32\\u0c41\",h:\"\\u0c12\\u0c15 \\u0c17\\u0c02\\u0c1f\",hh:\"%d \\u0c17\\u0c02\\u0c1f\\u0c32\\u0c41\",d:\"\\u0c12\\u0c15 \\u0c30\\u0c4b\\u0c1c\\u0c41\",dd:\"%d \\u0c30\\u0c4b\\u0c1c\\u0c41\\u0c32\\u0c41\",M:\"\\u0c12\\u0c15 \\u0c28\\u0c46\\u0c32\",MM:\"%d \\u0c28\\u0c46\\u0c32\\u0c32\\u0c41\",y:\"\\u0c12\\u0c15 \\u0c38\\u0c02\\u0c35\\u0c24\\u0c4d\\u0c38\\u0c30\\u0c02\",yy:\"%d \\u0c38\\u0c02\\u0c35\\u0c24\\u0c4d\\u0c38\\u0c30\\u0c3e\\u0c32\\u0c41\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u0c35/,ordinal:\"%d\\u0c35\",meridiemParse:/\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f|\\u0c09\\u0c26\\u0c2f\\u0c02|\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02|\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\"===t?e<4?e:e+12:\"\\u0c09\\u0c26\\u0c2f\\u0c02\"===t?e:\"\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02\"===t?e>=10?e:e+12:\"\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\":e<10?\"\\u0c09\\u0c26\\u0c2f\\u0c02\":e<17?\"\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02\":e<20?\"\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02\":\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},YRex:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ug-cn\",{months:\"\\u064a\\u0627\\u0646\\u06cb\\u0627\\u0631_\\u0641\\u06d0\\u06cb\\u0631\\u0627\\u0644_\\u0645\\u0627\\u0631\\u062a_\\u0626\\u0627\\u067e\\u0631\\u06d0\\u0644_\\u0645\\u0627\\u064a_\\u0626\\u0649\\u064a\\u06c7\\u0646_\\u0626\\u0649\\u064a\\u06c7\\u0644_\\u0626\\u0627\\u06cb\\u063a\\u06c7\\u0633\\u062a_\\u0633\\u06d0\\u0646\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0626\\u06c6\\u0643\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0646\\u0648\\u064a\\u0627\\u0628\\u0649\\u0631_\\u062f\\u06d0\\u0643\\u0627\\u0628\\u0649\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0627\\u0646\\u06cb\\u0627\\u0631_\\u0641\\u06d0\\u06cb\\u0631\\u0627\\u0644_\\u0645\\u0627\\u0631\\u062a_\\u0626\\u0627\\u067e\\u0631\\u06d0\\u0644_\\u0645\\u0627\\u064a_\\u0626\\u0649\\u064a\\u06c7\\u0646_\\u0626\\u0649\\u064a\\u06c7\\u0644_\\u0626\\u0627\\u06cb\\u063a\\u06c7\\u0633\\u062a_\\u0633\\u06d0\\u0646\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0626\\u06c6\\u0643\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0646\\u0648\\u064a\\u0627\\u0628\\u0649\\u0631_\\u062f\\u06d0\\u0643\\u0627\\u0628\\u0649\\u0631\".split(\"_\"),weekdays:\"\\u064a\\u06d5\\u0643\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u062f\\u06c8\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u0633\\u06d5\\u064a\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u0686\\u0627\\u0631\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u067e\\u06d5\\u064a\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u062c\\u06c8\\u0645\\u06d5_\\u0634\\u06d5\\u0646\\u0628\\u06d5\".split(\"_\"),weekdaysShort:\"\\u064a\\u06d5_\\u062f\\u06c8_\\u0633\\u06d5_\\u0686\\u0627_\\u067e\\u06d5_\\u062c\\u06c8_\\u0634\\u06d5\".split(\"_\"),weekdaysMin:\"\\u064a\\u06d5_\\u062f\\u06c8_\\u0633\\u06d5_\\u0686\\u0627_\\u067e\\u06d5_\\u062c\\u06c8_\\u0634\\u06d5\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\",LLL:\"YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\\u060c HH:mm\",LLLL:\"dddd\\u060c YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\\u060c HH:mm\"},meridiemParse:/\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5|\\u0633\\u06d5\\u06be\\u06d5\\u0631|\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646|\\u0686\\u06c8\\u0634|\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646|\\u0643\\u06d5\\u0686/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5\"===t||\"\\u0633\\u06d5\\u06be\\u06d5\\u0631\"===t||\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646\"===t?e:\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646\"===t||\"\\u0643\\u06d5\\u0686\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5\":i<900?\"\\u0633\\u06d5\\u06be\\u06d5\\u0631\":i<1130?\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646\":i<1230?\"\\u0686\\u06c8\\u0634\":i<1800?\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646\":\"\\u0643\\u06d5\\u0686\"},calendar:{sameDay:\"[\\u0628\\u06c8\\u06af\\u06c8\\u0646 \\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",nextDay:\"[\\u0626\\u06d5\\u062a\\u06d5 \\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",nextWeek:\"[\\u0643\\u06d0\\u0644\\u06d5\\u0631\\u0643\\u0649] dddd [\\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",lastDay:\"[\\u062a\\u06c6\\u0646\\u06c8\\u06af\\u06c8\\u0646] LT\",lastWeek:\"[\\u0626\\u0627\\u0644\\u062f\\u0649\\u0646\\u0642\\u0649] dddd [\\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0643\\u06d0\\u064a\\u0649\\u0646\",past:\"%s \\u0628\\u06c7\\u0631\\u06c7\\u0646\",s:\"\\u0646\\u06d5\\u0686\\u0686\\u06d5 \\u0633\\u06d0\\u0643\\u0648\\u0646\\u062a\",ss:\"%d \\u0633\\u06d0\\u0643\\u0648\\u0646\\u062a\",m:\"\\u0628\\u0649\\u0631 \\u0645\\u0649\\u0646\\u06c7\\u062a\",mm:\"%d \\u0645\\u0649\\u0646\\u06c7\\u062a\",h:\"\\u0628\\u0649\\u0631 \\u0633\\u0627\\u0626\\u06d5\\u062a\",hh:\"%d \\u0633\\u0627\\u0626\\u06d5\\u062a\",d:\"\\u0628\\u0649\\u0631 \\u0643\\u06c8\\u0646\",dd:\"%d \\u0643\\u06c8\\u0646\",M:\"\\u0628\\u0649\\u0631 \\u0626\\u0627\\u064a\",MM:\"%d \\u0626\\u0627\\u064a\",y:\"\\u0628\\u0649\\u0631 \\u064a\\u0649\\u0644\",yy:\"%d \\u064a\\u0649\\u0644\"},dayOfMonthOrdinalParse:/\\d{1,2}(-\\u0643\\u06c8\\u0646\\u0649|-\\u0626\\u0627\\u064a|-\\u06be\\u06d5\\u067e\\u062a\\u06d5)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"-\\u0643\\u06c8\\u0646\\u0649\";case\"w\":case\"W\":return e+\"-\\u06be\\u06d5\\u067e\\u062a\\u06d5\";default:return e}},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:7}})}(n(\"wd/R\"))},YuTi:function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,\"loaded\",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,\"id\",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},Z4QM:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u062c\\u0646\\u0648\\u0631\\u064a\",\"\\u0641\\u064a\\u0628\\u0631\\u0648\\u0631\\u064a\",\"\\u0645\\u0627\\u0631\\u0686\",\"\\u0627\\u067e\\u0631\\u064a\\u0644\",\"\\u0645\\u0626\\u064a\",\"\\u062c\\u0648\\u0646\",\"\\u062c\\u0648\\u0644\\u0627\\u0621\\u0650\",\"\\u0622\\u06af\\u0633\\u067d\",\"\\u0633\\u064a\\u067e\\u067d\\u0645\\u0628\\u0631\",\"\\u0622\\u06aa\\u067d\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0645\\u0628\\u0631\",\"\\u068a\\u0633\\u0645\\u0628\\u0631\"],n=[\"\\u0622\\u0686\\u0631\",\"\\u0633\\u0648\\u0645\\u0631\",\"\\u0627\\u06b1\\u0627\\u0631\\u0648\",\"\\u0627\\u0631\\u0628\\u0639\",\"\\u062e\\u0645\\u064a\\u0633\",\"\\u062c\\u0645\\u0639\",\"\\u0687\\u0646\\u0687\\u0631\"];e.defineLocale(\"sd\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd\\u060c D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635\\u0628\\u062d|\\u0634\\u0627\\u0645/,isPM:function(e){return\"\\u0634\\u0627\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\\u0628\\u062d\":\"\\u0634\\u0627\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0684] LT\",nextDay:\"[\\u0633\\u0680\\u0627\\u06bb\\u064a] LT\",nextWeek:\"dddd [\\u0627\\u06b3\\u064a\\u0646 \\u0647\\u0641\\u062a\\u064a \\u062a\\u064a] LT\",lastDay:\"[\\u06aa\\u0627\\u0644\\u0647\\u0647] LT\",lastWeek:\"[\\u06af\\u0632\\u0631\\u064a\\u0644 \\u0647\\u0641\\u062a\\u064a] dddd [\\u062a\\u064a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u067e\\u0648\\u0621\",past:\"%s \\u0627\\u06b3\",s:\"\\u0686\\u0646\\u062f \\u0633\\u064a\\u06aa\\u0646\\u068a\",ss:\"%d \\u0633\\u064a\\u06aa\\u0646\\u068a\",m:\"\\u0647\\u06aa \\u0645\\u0646\\u067d\",mm:\"%d \\u0645\\u0646\\u067d\",h:\"\\u0647\\u06aa \\u06aa\\u0644\\u0627\\u06aa\",hh:\"%d \\u06aa\\u0644\\u0627\\u06aa\",d:\"\\u0647\\u06aa \\u068f\\u064a\\u0646\\u0647\\u0646\",dd:\"%d \\u068f\\u064a\\u0646\\u0647\\u0646\",M:\"\\u0647\\u06aa \\u0645\\u0647\\u064a\\u0646\\u0648\",MM:\"%d \\u0645\\u0647\\u064a\\u0646\\u0627\",y:\"\\u0647\\u06aa \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},ZAMP:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms-my\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},Zduo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"eo\",{months:\"januaro_februaro_marto_aprilo_majo_junio_julio_a\\u016dgusto_septembro_oktobro_novembro_decembro\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_a\\u016dg_sep_okt_nov_dec\".split(\"_\"),weekdays:\"diman\\u0109o_lundo_mardo_merkredo_\\u0135a\\u016ddo_vendredo_sabato\".split(\"_\"),weekdaysShort:\"dim_lun_mard_merk_\\u0135a\\u016d_ven_sab\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_\\u0135a_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D[-a de] MMMM, YYYY\",LLL:\"D[-a de] MMMM, YYYY HH:mm\",LLLL:\"dddd, [la] D[-a de] MMMM, YYYY HH:mm\"},meridiemParse:/[ap]\\.t\\.m/i,isPM:function(e){return\"p\"===e.charAt(0).toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"p.t.m.\":\"P.T.M.\":n?\"a.t.m.\":\"A.T.M.\"},calendar:{sameDay:\"[Hodia\\u016d je] LT\",nextDay:\"[Morga\\u016d je] LT\",nextWeek:\"dddd [je] LT\",lastDay:\"[Hiera\\u016d je] LT\",lastWeek:\"[pasinta] dddd [je] LT\",sameElse:\"L\"},relativeTime:{future:\"post %s\",past:\"anta\\u016d %s\",s:\"sekundoj\",ss:\"%d sekundoj\",m:\"minuto\",mm:\"%d minutoj\",h:\"horo\",hh:\"%d horoj\",d:\"tago\",dd:\"%d tagoj\",M:\"monato\",MM:\"%d monatoj\",y:\"jaro\",yy:\"%d jaroj\"},dayOfMonthOrdinalParse:/\\d{1,2}a/,ordinal:\"%da\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},aCrv:function(e,t,n){var i,s=function(){this._tweens={},this._tweensAddedDuringUpdate={}};s.prototype={getAll:function(){return Object.keys(this._tweens).map((function(e){return this._tweens[e]}).bind(this))},removeAll:function(){this._tweens={}},add:function(e){this._tweens[e.getId()]=e,this._tweensAddedDuringUpdate[e.getId()]=e},remove:function(e){delete this._tweens[e.getId()],delete this._tweensAddedDuringUpdate[e.getId()]},update:function(e,t){var n=Object.keys(this._tweens);if(0===n.length)return!1;for(e=void 0!==e?e:o.now();n.length>0;){this._tweensAddedDuringUpdate={};for(var i=0;i1?1:n),this._valuesEnd)if(void 0!==this._valuesStart[t]){var s=this._valuesStart[t]||0,r=this._valuesEnd[t];r instanceof Array?this._object[t]=this._interpolationFunction(r,i):(\"string\"==typeof r&&(r=\"+\"===r.charAt(0)||\"-\"===r.charAt(0)?s+parseFloat(r):parseFloat(r)),\"number\"==typeof r&&(this._object[t]=s+(r-s)*i))}if(null!==this._onUpdateCallback&&this._onUpdateCallback(this._object,n),1===n){if(this._repeat>0){for(t in isFinite(this._repeat)&&this._repeat--,this._valuesStartRepeat){if(\"string\"==typeof this._valuesEnd[t]&&(this._valuesStartRepeat[t]=this._valuesStartRepeat[t]+parseFloat(this._valuesEnd[t])),this._yoyo){var o=this._valuesStartRepeat[t];this._valuesStartRepeat[t]=this._valuesEnd[t],this._valuesEnd[t]=o}this._valuesStart[t]=this._valuesStartRepeat[t]}return this._yoyo&&(this._reversed=!this._reversed),this._startTime=void 0!==this._repeatDelayTime?e+this._repeatDelayTime:e+this._delayTime,null!==this._onRepeatCallback&&this._onRepeatCallback(this._object),!0}null!==this._onCompleteCallback&&this._onCompleteCallback(this._object);for(var a=0,l=this._chainedTweens.length;a1?r(e[n],e[n-1],n-i):r(e[s],e[s+1>n?n:s+1],i-s)},Bezier:function(e,t){for(var n=0,i=e.length-1,s=Math.pow,r=o.Interpolation.Utils.Bernstein,a=0;a<=i;a++)n+=s(1-t,i-a)*s(t,a)*e[a]*r(i,a);return n},CatmullRom:function(e,t){var n=e.length-1,i=n*t,s=Math.floor(i),r=o.Interpolation.Utils.CatmullRom;return e[0]===e[n]?(t<0&&(s=Math.floor(i=n*(1+t))),r(e[(s-1+n)%n],e[s],e[(s+1)%n],e[(s+2)%n],i-s)):t<0?e[0]-(r(e[0],e[0],e[1],e[1],-i)-e[0]):t>1?e[n]-(r(e[n],e[n],e[n-1],e[n-1],i-n)-e[n]):r(e[s?s-1:0],e[s],e[n1;n--)t*=n;return r[e]=t,t}),CatmullRom:function(e,t,n,i,s){var r=.5*(n-e),o=.5*(i-t),a=s*s;return(2*t-2*n+r+o)*(s*a)+(-3*t+3*n-2*r-o)*a+r*s+t}}},void 0===(i=(function(){return o}).apply(t,[]))||(e.exports=i)},aIdf:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){return e+\" \"+function(e,t){return 2===t?function(e){var t={m:\"v\",b:\"v\",d:\"z\"};return void 0===t[e.charAt(0)]?e:t[e.charAt(0)]+e.substring(1)}(e):e}({mm:\"munutenn\",MM:\"miz\",dd:\"devezh\"}[n],e)}e.defineLocale(\"br\",{months:\"Genver_C'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu\".split(\"_\"),monthsShort:\"Gen_C'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker\".split(\"_\"),weekdays:\"Sul_Lun_Meurzh_Merc'her_Yaou_Gwener_Sadorn\".split(\"_\"),weekdaysShort:\"Sul_Lun_Meu_Mer_Yao_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Lu_Me_Mer_Ya_Gw_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h[e]mm A\",LTS:\"h[e]mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D [a viz] MMMM YYYY\",LLL:\"D [a viz] MMMM YYYY h[e]mm A\",LLLL:\"dddd, D [a viz] MMMM YYYY h[e]mm A\"},calendar:{sameDay:\"[Hiziv da] LT\",nextDay:\"[Warc'hoazh da] LT\",nextWeek:\"dddd [da] LT\",lastDay:\"[Dec'h da] LT\",lastWeek:\"dddd [paset da] LT\",sameElse:\"L\"},relativeTime:{future:\"a-benn %s\",past:\"%s 'zo\",s:\"un nebeud segondenno\\xf9\",ss:\"%d eilenn\",m:\"ur vunutenn\",mm:t,h:\"un eur\",hh:\"%d eur\",d:\"un devezh\",dd:t,M:\"ur miz\",MM:t,y:\"ur bloaz\",yy:function(e){switch(function e(t){return t>9?e(t%10):t}(e)){case 1:case 3:case 4:case 5:case 9:return e+\" bloaz\";default:return e+\" vloaz\"}}},dayOfMonthOrdinalParse:/\\d{1,2}(a\\xf1|vet)/,ordinal:function(e){return e+(1===e?\"a\\xf1\":\"vet\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},aIsn:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mi\",{months:\"Kohi-t\\u0101te_Hui-tanguru_Pout\\u016b-te-rangi_Paenga-wh\\u0101wh\\u0101_Haratua_Pipiri_H\\u014dngoingoi_Here-turi-k\\u014dk\\u0101_Mahuru_Whiringa-\\u0101-nuku_Whiringa-\\u0101-rangi_Hakihea\".split(\"_\"),monthsShort:\"Kohi_Hui_Pou_Pae_Hara_Pipi_H\\u014dngoi_Here_Mahu_Whi-nu_Whi-ra_Haki\".split(\"_\"),monthsRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,2}/i,weekdays:\"R\\u0101tapu_Mane_T\\u016brei_Wenerei_T\\u0101ite_Paraire_H\\u0101tarei\".split(\"_\"),weekdaysShort:\"Ta_Ma_T\\u016b_We_T\\u0101i_Pa_H\\u0101\".split(\"_\"),weekdaysMin:\"Ta_Ma_T\\u016b_We_T\\u0101i_Pa_H\\u0101\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [i] HH:mm\",LLLL:\"dddd, D MMMM YYYY [i] HH:mm\"},calendar:{sameDay:\"[i teie mahana, i] LT\",nextDay:\"[apopo i] LT\",nextWeek:\"dddd [i] LT\",lastDay:\"[inanahi i] LT\",lastWeek:\"dddd [whakamutunga i] LT\",sameElse:\"L\"},relativeTime:{future:\"i roto i %s\",past:\"%s i mua\",s:\"te h\\u0113kona ruarua\",ss:\"%d h\\u0113kona\",m:\"he meneti\",mm:\"%d meneti\",h:\"te haora\",hh:\"%d haora\",d:\"he ra\",dd:\"%d ra\",M:\"he marama\",MM:\"%d marama\",y:\"he tau\",yy:\"%d tau\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},aQkU:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mk\",{months:\"\\u0458\\u0430\\u043d\\u0443\\u0430\\u0440\\u0438_\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d\\u0438_\\u0458\\u0443\\u043b\\u0438_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438_\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438_\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438_\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\".split(\"_\"),monthsShort:\"\\u0458\\u0430\\u043d_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043f_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u0435_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u0430_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u043e\\u043a_\\u043f\\u0435\\u0442\\u043e\\u043a_\\u0441\\u0430\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434_\\u043f\\u043e\\u043d_\\u0432\\u0442\\u043e_\\u0441\\u0440\\u0435_\\u0447\\u0435\\u0442_\\u043f\\u0435\\u0442_\\u0441\\u0430\\u0431\".split(\"_\"),weekdaysMin:\"\\u043de_\\u043fo_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0435_\\u043f\\u0435_\\u0441a\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0414\\u0435\\u043d\\u0435\\u0441 \\u0432\\u043e] LT\",nextDay:\"[\\u0423\\u0442\\u0440\\u0435 \\u0432\\u043e] LT\",nextWeek:\"[\\u0412\\u043e] dddd [\\u0432\\u043e] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430 \\u0432\\u043e] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[\\u0418\\u0437\\u043c\\u0438\\u043d\\u0430\\u0442\\u0430\\u0442\\u0430] dddd [\\u0432\\u043e] LT\";case 1:case 2:case 4:case 5:return\"[\\u0418\\u0437\\u043c\\u0438\\u043d\\u0430\\u0442\\u0438\\u043e\\u0442] dddd [\\u0432\\u043e] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u043f\\u043e\\u0441\\u043b\\u0435 %s\",past:\"\\u043f\\u0440\\u0435\\u0434 %s\",s:\"\\u043d\\u0435\\u043a\\u043e\\u043b\\u043a\\u0443 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",m:\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\\u0438\",h:\"\\u0447\\u0430\\u0441\",hh:\"%d \\u0447\\u0430\\u0441\\u0430\",d:\"\\u0434\\u0435\\u043d\",dd:\"%d \\u0434\\u0435\\u043d\\u0430\",M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:\"%d \\u043c\\u0435\\u0441\\u0435\\u0446\\u0438\",y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",yy:\"%d \\u0433\\u043e\\u0434\\u0438\\u043d\\u0438\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0435\\u0432|\\u0435\\u043d|\\u0442\\u0438|\\u0432\\u0438|\\u0440\\u0438|\\u043c\\u0438)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-\\u0435\\u0432\":0===n?e+\"-\\u0435\\u043d\":n>10&&n<20?e+\"-\\u0442\\u0438\":1===t?e+\"-\\u0432\\u0438\":2===t?e+\"-\\u0440\\u0438\":7===t||8===t?e+\"-\\u043c\\u0438\":e+\"-\\u0442\\u0438\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},b1Dy:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-nz\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},bOMt:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nb\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"s\\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\\xf8rdag\".split(\"_\"),weekdaysShort:\"s\\xf8._ma._ti._on._to._fr._l\\xf8.\".split(\"_\"),weekdaysMin:\"s\\xf8_ma_ti_on_to_fr_l\\xf8\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"dddd [kl.] LT\",lastDay:\"[i g\\xe5r kl.] LT\",lastWeek:\"[forrige] dddd [kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"noen sekunder\",ss:\"%d sekunder\",m:\"ett minutt\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dager\",M:\"en m\\xe5ned\",MM:\"%d m\\xe5neder\",y:\"ett \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},bXm7:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0448\\u0456\",1:\"-\\u0448\\u0456\",2:\"-\\u0448\\u0456\",3:\"-\\u0448\\u0456\",4:\"-\\u0448\\u0456\",5:\"-\\u0448\\u0456\",6:\"-\\u0448\\u044b\",7:\"-\\u0448\\u0456\",8:\"-\\u0448\\u0456\",9:\"-\\u0448\\u044b\",10:\"-\\u0448\\u044b\",20:\"-\\u0448\\u044b\",30:\"-\\u0448\\u044b\",40:\"-\\u0448\\u044b\",50:\"-\\u0448\\u0456\",60:\"-\\u0448\\u044b\",70:\"-\\u0448\\u0456\",80:\"-\\u0448\\u0456\",90:\"-\\u0448\\u044b\",100:\"-\\u0448\\u0456\"};e.defineLocale(\"kk\",{months:\"\\u049b\\u0430\\u04a3\\u0442\\u0430\\u0440_\\u0430\\u049b\\u043f\\u0430\\u043d_\\u043d\\u0430\\u0443\\u0440\\u044b\\u0437_\\u0441\\u04d9\\u0443\\u0456\\u0440_\\u043c\\u0430\\u043c\\u044b\\u0440_\\u043c\\u0430\\u0443\\u0441\\u044b\\u043c_\\u0448\\u0456\\u043b\\u0434\\u0435_\\u0442\\u0430\\u043c\\u044b\\u0437_\\u049b\\u044b\\u0440\\u043a\\u04af\\u0439\\u0435\\u043a_\\u049b\\u0430\\u0437\\u0430\\u043d_\\u049b\\u0430\\u0440\\u0430\\u0448\\u0430_\\u0436\\u0435\\u043b\\u0442\\u043e\\u049b\\u0441\\u0430\\u043d\".split(\"_\"),monthsShort:\"\\u049b\\u0430\\u04a3_\\u0430\\u049b\\u043f_\\u043d\\u0430\\u0443_\\u0441\\u04d9\\u0443_\\u043c\\u0430\\u043c_\\u043c\\u0430\\u0443_\\u0448\\u0456\\u043b_\\u0442\\u0430\\u043c_\\u049b\\u044b\\u0440_\\u049b\\u0430\\u0437_\\u049b\\u0430\\u0440_\\u0436\\u0435\\u043b\".split(\"_\"),weekdays:\"\\u0436\\u0435\\u043a\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0434\\u04af\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0441\\u0435\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0441\\u04d9\\u0440\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0431\\u0435\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0436\\u04b1\\u043c\\u0430_\\u0441\\u0435\\u043d\\u0431\\u0456\".split(\"_\"),weekdaysShort:\"\\u0436\\u0435\\u043a_\\u0434\\u04af\\u0439_\\u0441\\u0435\\u0439_\\u0441\\u04d9\\u0440_\\u0431\\u0435\\u0439_\\u0436\\u04b1\\u043c_\\u0441\\u0435\\u043d\".split(\"_\"),weekdaysMin:\"\\u0436\\u043a_\\u0434\\u0439_\\u0441\\u0439_\\u0441\\u0440_\\u0431\\u0439_\\u0436\\u043c_\\u0441\\u043d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0411\\u04af\\u0433\\u0456\\u043d \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",nextDay:\"[\\u0415\\u0440\\u0442\\u0435\\u04a3 \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",nextWeek:\"dddd [\\u0441\\u0430\\u0493\\u0430\\u0442] LT\",lastDay:\"[\\u041a\\u0435\\u0448\\u0435 \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",lastWeek:\"[\\u04e8\\u0442\\u043a\\u0435\\u043d \\u0430\\u043f\\u0442\\u0430\\u043d\\u044b\\u04a3] dddd [\\u0441\\u0430\\u0493\\u0430\\u0442] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0456\\u0448\\u0456\\u043d\\u0434\\u0435\",past:\"%s \\u0431\\u04b1\\u0440\\u044b\\u043d\",s:\"\\u0431\\u0456\\u0440\\u043d\\u0435\\u0448\\u0435 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:\"\\u0431\\u0456\\u0440 \\u043c\\u0438\\u043d\\u0443\\u0442\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\",h:\"\\u0431\\u0456\\u0440 \\u0441\\u0430\\u0493\\u0430\\u0442\",hh:\"%d \\u0441\\u0430\\u0493\\u0430\\u0442\",d:\"\\u0431\\u0456\\u0440 \\u043a\\u04af\\u043d\",dd:\"%d \\u043a\\u04af\\u043d\",M:\"\\u0431\\u0456\\u0440 \\u0430\\u0439\",MM:\"%d \\u0430\\u0439\",y:\"\\u0431\\u0456\\u0440 \\u0436\\u044b\\u043b\",yy:\"%d \\u0436\\u044b\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0448\\u0456|\\u0448\\u044b)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},bYM6:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-tn\",{months:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},bpih:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_luned\\xec_marted\\xec_mercoled\\xec_gioved\\xec_venerd\\xec_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Oggi alle] LT\",nextDay:\"[Domani alle] LT\",nextWeek:\"dddd [alle] LT\",lastDay:\"[Ieri alle] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[la scorsa] dddd [alle] LT\";default:return\"[lo scorso] dddd [alle] LT\"}},sameElse:\"L\"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?\"tra\":\"in\")+\" \"+e},past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},bxKX:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it-ch\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_luned\\xec_marted\\xec_mercoled\\xec_gioved\\xec_venerd\\xec_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Oggi alle] LT\",nextDay:\"[Domani alle] LT\",nextWeek:\"dddd [alle] LT\",lastDay:\"[Ieri alle] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[la scorsa] dddd [alle] LT\";default:return\"[lo scorso] dddd [alle] LT\"}},sameElse:\"L\"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?\"tra\":\"in\")+\" \"+e},past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},cRix:function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.\".split(\"_\"),n=\"jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\");e.defineLocale(\"fy\",{months:\"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsParseExact:!0,weekdays:\"snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon\".split(\"_\"),weekdaysShort:\"si._mo._ti._wo._to._fr._so.\".split(\"_\"),weekdaysMin:\"Si_Mo_Ti_Wo_To_Fr_So\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[hjoed om] LT\",nextDay:\"[moarn om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[juster om] LT\",lastWeek:\"[\\xf4fr\\xfbne] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oer %s\",past:\"%s lyn\",s:\"in pear sekonden\",ss:\"%d sekonden\",m:\"ien min\\xfat\",mm:\"%d minuten\",h:\"ien oere\",hh:\"%d oeren\",d:\"ien dei\",dd:\"%d dagen\",M:\"ien moanne\",MM:\"%d moannen\",y:\"ien jier\",yy:\"%d jierren\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},czMo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-il\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(\"wd/R\"))},dNwA:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sw\",{months:\"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi\".split(\"_\"),weekdaysShort:\"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos\".split(\"_\"),weekdaysMin:\"J2_J3_J4_J5_Al_Ij_J1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[leo saa] LT\",nextDay:\"[kesho saa] LT\",nextWeek:\"[wiki ijayo] dddd [saat] LT\",lastDay:\"[jana] LT\",lastWeek:\"[wiki iliyopita] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s baadaye\",past:\"tokea %s\",s:\"hivi punde\",ss:\"sekunde %d\",m:\"dakika moja\",mm:\"dakika %d\",h:\"saa limoja\",hh:\"masaa %d\",d:\"siku moja\",dd:\"masiku %d\",M:\"mwezi mmoja\",MM:\"miezi %d\",y:\"mwaka mmoja\",yy:\"miaka %d\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"e+ae\":function(e,t,n){!function(e){\"use strict\";var t=\"janu\\xe1r_febru\\xe1r_marec_apr\\xedl_m\\xe1j_j\\xfan_j\\xfal_august_september_okt\\xf3ber_november_december\".split(\"_\"),n=\"jan_feb_mar_apr_m\\xe1j_j\\xfan_j\\xfal_aug_sep_okt_nov_dec\".split(\"_\");function i(e){return e>1&&e<5}function s(e,t,n,s){var r=e+\" \";switch(n){case\"s\":return t||s?\"p\\xe1r sek\\xfand\":\"p\\xe1r sekundami\";case\"ss\":return t||s?r+(i(e)?\"sekundy\":\"sek\\xfand\"):r+\"sekundami\";case\"m\":return t?\"min\\xfata\":s?\"min\\xfatu\":\"min\\xfatou\";case\"mm\":return t||s?r+(i(e)?\"min\\xfaty\":\"min\\xfat\"):r+\"min\\xfatami\";case\"h\":return t?\"hodina\":s?\"hodinu\":\"hodinou\";case\"hh\":return t||s?r+(i(e)?\"hodiny\":\"hod\\xedn\"):r+\"hodinami\";case\"d\":return t||s?\"de\\u0148\":\"d\\u0148om\";case\"dd\":return t||s?r+(i(e)?\"dni\":\"dn\\xed\"):r+\"d\\u0148ami\";case\"M\":return t||s?\"mesiac\":\"mesiacom\";case\"MM\":return t||s?r+(i(e)?\"mesiace\":\"mesiacov\"):r+\"mesiacmi\";case\"y\":return t||s?\"rok\":\"rokom\";case\"yy\":return t||s?r+(i(e)?\"roky\":\"rokov\"):r+\"rokmi\"}}e.defineLocale(\"sk\",{months:t,monthsShort:n,weekdays:\"nede\\u013ea_pondelok_utorok_streda_\\u0161tvrtok_piatok_sobota\".split(\"_\"),weekdaysShort:\"ne_po_ut_st_\\u0161t_pi_so\".split(\"_\"),weekdaysMin:\"ne_po_ut_st_\\u0161t_pi_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[dnes o] LT\",nextDay:\"[zajtra o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v nede\\u013eu o] LT\";case 1:case 2:return\"[v] dddd [o] LT\";case 3:return\"[v stredu o] LT\";case 4:return\"[vo \\u0161tvrtok o] LT\";case 5:return\"[v piatok o] LT\";case 6:return\"[v sobotu o] LT\"}},lastDay:\"[v\\u010dera o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minul\\xfa nede\\u013eu o] LT\";case 1:case 2:return\"[minul\\xfd] dddd [o] LT\";case 3:return\"[minul\\xfa stredu o] LT\";case 4:case 5:return\"[minul\\xfd] dddd [o] LT\";case 6:return\"[minul\\xfa sobotu o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pred %s\",s,ss:s,m:s,mm:s,h:s,hh:s,d:s,dd:s,M:s,MM:s,y:s,yy:s},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},evrj:function(e,t,n){var i=n(\"m4GZ\");e.exports=function(e){var t=e.replace(/-/g,\"+\").replace(/_/g,\"/\");switch(t.length%4){case 0:break;case 2:t+=\"==\";break;case 3:t+=\"=\";break;default:throw\"Illegal base64url string!\"}try{return function(e){return decodeURIComponent(i(e).replace(/(.)/g,(function(e,t){var n=t.charCodeAt(0).toString(16).toUpperCase();return n.length<2&&(n=\"0\"+n),\"%\"+n})))}(t)}catch(n){return i(t)}}},fzPg:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"yo\",{months:\"S\\u1eb9\\u0301r\\u1eb9\\u0301_E\\u0300re\\u0300le\\u0300_\\u1eb8r\\u1eb9\\u0300na\\u0300_I\\u0300gbe\\u0301_E\\u0300bibi_O\\u0300ku\\u0300du_Ag\\u1eb9mo_O\\u0300gu\\u0301n_Owewe_\\u1ecc\\u0300wa\\u0300ra\\u0300_Be\\u0301lu\\u0301_\\u1ecc\\u0300p\\u1eb9\\u0300\\u0300\".split(\"_\"),monthsShort:\"S\\u1eb9\\u0301r_E\\u0300rl_\\u1eb8rn_I\\u0300gb_E\\u0300bi_O\\u0300ku\\u0300_Ag\\u1eb9_O\\u0300gu\\u0301_Owe_\\u1ecc\\u0300wa\\u0300_Be\\u0301l_\\u1ecc\\u0300p\\u1eb9\\u0300\\u0300\".split(\"_\"),weekdays:\"A\\u0300i\\u0300ku\\u0301_Aje\\u0301_I\\u0300s\\u1eb9\\u0301gun_\\u1eccj\\u1ecd\\u0301ru\\u0301_\\u1eccj\\u1ecd\\u0301b\\u1ecd_\\u1eb8ti\\u0300_A\\u0300ba\\u0301m\\u1eb9\\u0301ta\".split(\"_\"),weekdaysShort:\"A\\u0300i\\u0300k_Aje\\u0301_I\\u0300s\\u1eb9\\u0301_\\u1eccjr_\\u1eccjb_\\u1eb8ti\\u0300_A\\u0300ba\\u0301\".split(\"_\"),weekdaysMin:\"A\\u0300i\\u0300_Aj_I\\u0300s_\\u1eccr_\\u1eccb_\\u1eb8t_A\\u0300b\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[O\\u0300ni\\u0300 ni] LT\",nextDay:\"[\\u1ecc\\u0300la ni] LT\",nextWeek:\"dddd [\\u1eccs\\u1eb9\\u0300 to\\u0301n'b\\u1ecd] [ni] LT\",lastDay:\"[A\\u0300na ni] LT\",lastWeek:\"dddd [\\u1eccs\\u1eb9\\u0300 to\\u0301l\\u1ecd\\u0301] [ni] LT\",sameElse:\"L\"},relativeTime:{future:\"ni\\u0301 %s\",past:\"%s k\\u1ecdja\\u0301\",s:\"i\\u0300s\\u1eb9ju\\u0301 aaya\\u0301 die\",ss:\"aaya\\u0301 %d\",m:\"i\\u0300s\\u1eb9ju\\u0301 kan\",mm:\"i\\u0300s\\u1eb9ju\\u0301 %d\",h:\"wa\\u0301kati kan\",hh:\"wa\\u0301kati %d\",d:\"\\u1ecdj\\u1ecd\\u0301 kan\",dd:\"\\u1ecdj\\u1ecd\\u0301 %d\",M:\"osu\\u0300 kan\",MM:\"osu\\u0300 %d\",y:\"\\u1ecddu\\u0301n kan\",yy:\"\\u1ecddu\\u0301n %d\"},dayOfMonthOrdinalParse:/\\u1ecdj\\u1ecd\\u0301\\s\\d{1,2}/,ordinal:\"\\u1ecdj\\u1ecd\\u0301 %d\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},gVVK:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s=e+\" \";switch(n){case\"s\":return t||i?\"nekaj sekund\":\"nekaj sekundami\";case\"ss\":return s+(1===e?t?\"sekundo\":\"sekundi\":2===e?t||i?\"sekundi\":\"sekundah\":e<5?t||i?\"sekunde\":\"sekundah\":\"sekund\");case\"m\":return t?\"ena minuta\":\"eno minuto\";case\"mm\":return s+(1===e?t?\"minuta\":\"minuto\":2===e?t||i?\"minuti\":\"minutama\":e<5?t||i?\"minute\":\"minutami\":t||i?\"minut\":\"minutami\");case\"h\":return t?\"ena ura\":\"eno uro\";case\"hh\":return s+(1===e?t?\"ura\":\"uro\":2===e?t||i?\"uri\":\"urama\":e<5?t||i?\"ure\":\"urami\":t||i?\"ur\":\"urami\");case\"d\":return t||i?\"en dan\":\"enim dnem\";case\"dd\":return s+(1===e?t||i?\"dan\":\"dnem\":2===e?t||i?\"dni\":\"dnevoma\":t||i?\"dni\":\"dnevi\");case\"M\":return t||i?\"en mesec\":\"enim mesecem\";case\"MM\":return s+(1===e?t||i?\"mesec\":\"mesecem\":2===e?t||i?\"meseca\":\"mesecema\":e<5?t||i?\"mesece\":\"meseci\":t||i?\"mesecev\":\"meseci\");case\"y\":return t||i?\"eno leto\":\"enim letom\";case\"yy\":return s+(1===e?t||i?\"leto\":\"letom\":2===e?t||i?\"leti\":\"letoma\":e<5?t||i?\"leta\":\"leti\":t||i?\"let\":\"leti\")}}e.defineLocale(\"sl\",{months:\"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljek_torek_sreda_\\u010detrtek_petek_sobota\".split(\"_\"),weekdaysShort:\"ned._pon._tor._sre._\\u010det._pet._sob.\".split(\"_\"),weekdaysMin:\"ne_po_to_sr_\\u010de_pe_so\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danes ob] LT\",nextDay:\"[jutri ob] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v] [nedeljo] [ob] LT\";case 3:return\"[v] [sredo] [ob] LT\";case 6:return\"[v] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[v] dddd [ob] LT\"}},lastDay:\"[v\\u010deraj ob] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[prej\\u0161njo] [nedeljo] [ob] LT\";case 3:return\"[prej\\u0161njo] [sredo] [ob] LT\";case 6:return\"[prej\\u0161njo] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[prej\\u0161nji] dddd [ob] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u010dez %s\",past:\"pred %s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},gekB:function(e,t,n){!function(e){\"use strict\";var t=\"nolla yksi kaksi kolme nelj\\xe4 viisi kuusi seitsem\\xe4n kahdeksan yhdeks\\xe4n\".split(\" \"),n=[\"nolla\",\"yhden\",\"kahden\",\"kolmen\",\"nelj\\xe4n\",\"viiden\",\"kuuden\",t[7],t[8],t[9]];function i(e,i,s,r){var o=\"\";switch(s){case\"s\":return r?\"muutaman sekunnin\":\"muutama sekunti\";case\"ss\":return r?\"sekunnin\":\"sekuntia\";case\"m\":return r?\"minuutin\":\"minuutti\";case\"mm\":o=r?\"minuutin\":\"minuuttia\";break;case\"h\":return r?\"tunnin\":\"tunti\";case\"hh\":o=r?\"tunnin\":\"tuntia\";break;case\"d\":return r?\"p\\xe4iv\\xe4n\":\"p\\xe4iv\\xe4\";case\"dd\":o=r?\"p\\xe4iv\\xe4n\":\"p\\xe4iv\\xe4\\xe4\";break;case\"M\":return r?\"kuukauden\":\"kuukausi\";case\"MM\":o=r?\"kuukauden\":\"kuukautta\";break;case\"y\":return r?\"vuoden\":\"vuosi\";case\"yy\":o=r?\"vuoden\":\"vuotta\"}return function(e,i){return e<10?i?n[e]:t[e]:e}(e,r)+\" \"+o}e.defineLocale(\"fi\",{months:\"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kes\\xe4kuu_hein\\xe4kuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu\".split(\"_\"),monthsShort:\"tammi_helmi_maalis_huhti_touko_kes\\xe4_hein\\xe4_elo_syys_loka_marras_joulu\".split(\"_\"),weekdays:\"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai\".split(\"_\"),weekdaysShort:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),weekdaysMin:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"Do MMMM[ta] YYYY\",LLL:\"Do MMMM[ta] YYYY, [klo] HH.mm\",LLLL:\"dddd, Do MMMM[ta] YYYY, [klo] HH.mm\",l:\"D.M.YYYY\",ll:\"Do MMM YYYY\",lll:\"Do MMM YYYY, [klo] HH.mm\",llll:\"ddd, Do MMM YYYY, [klo] HH.mm\"},calendar:{sameDay:\"[t\\xe4n\\xe4\\xe4n] [klo] LT\",nextDay:\"[huomenna] [klo] LT\",nextWeek:\"dddd [klo] LT\",lastDay:\"[eilen] [klo] LT\",lastWeek:\"[viime] dddd[na] [klo] LT\",sameElse:\"L\"},relativeTime:{future:\"%s p\\xe4\\xe4st\\xe4\",past:\"%s sitten\",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},gjCT:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"};e.defineLocale(\"ar-sa\",{months:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a\\u0648_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648_\\u0623\\u063a\\u0633\\u0637\\u0633_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a\\u0648_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648_\\u0623\\u063a\\u0633\\u0637\\u0633_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:0,doy:6}})}(n(\"wd/R\"))},hKrs:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bg\",{months:\"\\u044f\\u043d\\u0443\\u0430\\u0440\\u0438_\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0439_\\u044e\\u043d\\u0438_\\u044e\\u043b\\u0438_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438_\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438_\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438_\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0440_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u044e\\u043d\\u0438_\\u044e\\u043b\\u0438_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043f_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u0435_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u044f_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u044f\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u044a\\u0440\\u0442\\u044a\\u043a_\\u043f\\u0435\\u0442\\u044a\\u043a_\\u0441\\u044a\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434_\\u043f\\u043e\\u043d_\\u0432\\u0442\\u043e_\\u0441\\u0440\\u044f_\\u0447\\u0435\\u0442_\\u043f\\u0435\\u0442_\\u0441\\u044a\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0414\\u043d\\u0435\\u0441 \\u0432] LT\",nextDay:\"[\\u0423\\u0442\\u0440\\u0435 \\u0432] LT\",nextWeek:\"dddd [\\u0432] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430 \\u0432] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[\\u0412 \\u0438\\u0437\\u043c\\u0438\\u043d\\u0430\\u043b\\u0430\\u0442\\u0430] dddd [\\u0432] LT\";case 1:case 2:case 4:case 5:return\"[\\u0412 \\u0438\\u0437\\u043c\\u0438\\u043d\\u0430\\u043b\\u0438\\u044f] dddd [\\u0432] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u0441\\u043b\\u0435\\u0434 %s\",past:\"\\u043f\\u0440\\u0435\\u0434\\u0438 %s\",s:\"\\u043d\\u044f\\u043a\\u043e\\u043b\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",m:\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\\u0438\",h:\"\\u0447\\u0430\\u0441\",hh:\"%d \\u0447\\u0430\\u0441\\u0430\",d:\"\\u0434\\u0435\\u043d\",dd:\"%d \\u0434\\u043d\\u0438\",M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:\"%d \\u043c\\u0435\\u0441\\u0435\\u0446\\u0430\",y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",yy:\"%d \\u0433\\u043e\\u0434\\u0438\\u043d\\u0438\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0435\\u0432|\\u0435\\u043d|\\u0442\\u0438|\\u0432\\u0438|\\u0440\\u0438|\\u043c\\u0438)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-\\u0435\\u0432\":0===n?e+\"-\\u0435\\u043d\":n>10&&n<20?e+\"-\\u0442\\u0438\":1===t?e+\"-\\u0432\\u0438\":2===t?e+\"-\\u0440\\u0438\":7===t||8===t?e+\"-\\u043c\\u0438\":e+\"-\\u0442\\u0438\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},honF:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u1041\",2:\"\\u1042\",3:\"\\u1043\",4:\"\\u1044\",5:\"\\u1045\",6:\"\\u1046\",7:\"\\u1047\",8:\"\\u1048\",9:\"\\u1049\",0:\"\\u1040\"},n={\"\\u1041\":\"1\",\"\\u1042\":\"2\",\"\\u1043\":\"3\",\"\\u1044\":\"4\",\"\\u1045\":\"5\",\"\\u1046\":\"6\",\"\\u1047\":\"7\",\"\\u1048\":\"8\",\"\\u1049\":\"9\",\"\\u1040\":\"0\"};e.defineLocale(\"my\",{months:\"\\u1007\\u1014\\u103a\\u1014\\u101d\\u102b\\u101b\\u102e_\\u1016\\u1031\\u1016\\u1031\\u102c\\u103a\\u101d\\u102b\\u101b\\u102e_\\u1019\\u1010\\u103a_\\u1027\\u1015\\u103c\\u102e_\\u1019\\u1031_\\u1007\\u103d\\u1014\\u103a_\\u1007\\u1030\\u101c\\u102d\\u102f\\u1004\\u103a_\\u101e\\u103c\\u1002\\u102f\\u1010\\u103a_\\u1005\\u1000\\u103a\\u1010\\u1004\\u103a\\u1018\\u102c_\\u1021\\u1031\\u102c\\u1000\\u103a\\u1010\\u102d\\u102f\\u1018\\u102c_\\u1014\\u102d\\u102f\\u101d\\u1004\\u103a\\u1018\\u102c_\\u1012\\u102e\\u1007\\u1004\\u103a\\u1018\\u102c\".split(\"_\"),monthsShort:\"\\u1007\\u1014\\u103a_\\u1016\\u1031_\\u1019\\u1010\\u103a_\\u1015\\u103c\\u102e_\\u1019\\u1031_\\u1007\\u103d\\u1014\\u103a_\\u101c\\u102d\\u102f\\u1004\\u103a_\\u101e\\u103c_\\u1005\\u1000\\u103a_\\u1021\\u1031\\u102c\\u1000\\u103a_\\u1014\\u102d\\u102f_\\u1012\\u102e\".split(\"_\"),weekdays:\"\\u1010\\u1014\\u1004\\u103a\\u1039\\u1002\\u1014\\u103d\\u1031_\\u1010\\u1014\\u1004\\u103a\\u1039\\u101c\\u102c_\\u1021\\u1004\\u103a\\u1039\\u1002\\u102b_\\u1017\\u102f\\u1012\\u1039\\u1013\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c\\u101e\\u1015\\u1010\\u1031\\u1038_\\u101e\\u1031\\u102c\\u1000\\u103c\\u102c_\\u1005\\u1014\\u1031\".split(\"_\"),weekdaysShort:\"\\u1014\\u103d\\u1031_\\u101c\\u102c_\\u1002\\u102b_\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c_\\u101e\\u1031\\u102c_\\u1014\\u1031\".split(\"_\"),weekdaysMin:\"\\u1014\\u103d\\u1031_\\u101c\\u102c_\\u1002\\u102b_\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c_\\u101e\\u1031\\u102c_\\u1014\\u1031\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u101a\\u1014\\u1031.] LT [\\u1019\\u103e\\u102c]\",nextDay:\"[\\u1019\\u1014\\u1000\\u103a\\u1016\\u103c\\u1014\\u103a] LT [\\u1019\\u103e\\u102c]\",nextWeek:\"dddd LT [\\u1019\\u103e\\u102c]\",lastDay:\"[\\u1019\\u1014\\u1031.\\u1000] LT [\\u1019\\u103e\\u102c]\",lastWeek:\"[\\u1015\\u103c\\u102e\\u1038\\u1001\\u1032\\u1037\\u101e\\u1031\\u102c] dddd LT [\\u1019\\u103e\\u102c]\",sameElse:\"L\"},relativeTime:{future:\"\\u101c\\u102c\\u1019\\u100a\\u103a\\u1037 %s \\u1019\\u103e\\u102c\",past:\"\\u101c\\u103d\\u1014\\u103a\\u1001\\u1032\\u1037\\u101e\\u1031\\u102c %s \\u1000\",s:\"\\u1005\\u1000\\u1039\\u1000\\u1014\\u103a.\\u1021\\u1014\\u100a\\u103a\\u1038\\u1004\\u101a\\u103a\",ss:\"%d \\u1005\\u1000\\u1039\\u1000\\u1014\\u1037\\u103a\",m:\"\\u1010\\u1005\\u103a\\u1019\\u102d\\u1014\\u1005\\u103a\",mm:\"%d \\u1019\\u102d\\u1014\\u1005\\u103a\",h:\"\\u1010\\u1005\\u103a\\u1014\\u102c\\u101b\\u102e\",hh:\"%d \\u1014\\u102c\\u101b\\u102e\",d:\"\\u1010\\u1005\\u103a\\u101b\\u1000\\u103a\",dd:\"%d \\u101b\\u1000\\u103a\",M:\"\\u1010\\u1005\\u103a\\u101c\",MM:\"%d \\u101c\",y:\"\\u1010\\u1005\\u103a\\u1014\\u103e\\u1005\\u103a\",yy:\"%d \\u1014\\u103e\\u1005\\u103a\"},preparse:function(e){return e.replace(/[\\u1041\\u1042\\u1043\\u1044\\u1045\\u1046\\u1047\\u1048\\u1049\\u1040]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(\"wd/R\"))},iEDd:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"gl\",{months:\"xaneiro_febreiro_marzo_abril_maio_xu\\xf1o_xullo_agosto_setembro_outubro_novembro_decembro\".split(\"_\"),monthsShort:\"xan._feb._mar._abr._mai._xu\\xf1._xul._ago._set._out._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"domingo_luns_martes_m\\xe9rcores_xoves_venres_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._m\\xe9r._xov._ven._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_m\\xe9_xo_ve_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoxe \"+(1!==this.hours()?\"\\xe1s\":\"\\xe1\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1\\xe1 \"+(1!==this.hours()?\"\\xe1s\":\"\\xe1\")+\"] LT\"},nextWeek:function(){return\"dddd [\"+(1!==this.hours()?\"\\xe1s\":\"a\")+\"] LT\"},lastDay:function(){return\"[onte \"+(1!==this.hours()?\"\\xe1\":\"a\")+\"] LT\"},lastWeek:function(){return\"[o] dddd [pasado \"+(1!==this.hours()?\"\\xe1s\":\"a\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:function(e){return 0===e.indexOf(\"un\")?\"n\"+e:\"en \"+e},past:\"hai %s\",s:\"uns segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"unha hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},iYuL:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],s=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"domingo_lunes_martes_mi\\xe9rcoles_jueves_viernes_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mi\\xe9._jue._vie._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1ana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un a\\xf1o\",yy:\"%d a\\xf1os\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jUeY:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"el\",{monthsNominativeEl:\"\\u0399\\u03b1\\u03bd\\u03bf\\u03c5\\u03ac\\u03c1\\u03b9\\u03bf\\u03c2_\\u03a6\\u03b5\\u03b2\\u03c1\\u03bf\\u03c5\\u03ac\\u03c1\\u03b9\\u03bf\\u03c2_\\u039c\\u03ac\\u03c1\\u03c4\\u03b9\\u03bf\\u03c2_\\u0391\\u03c0\\u03c1\\u03af\\u03bb\\u03b9\\u03bf\\u03c2_\\u039c\\u03ac\\u03b9\\u03bf\\u03c2_\\u0399\\u03bf\\u03cd\\u03bd\\u03b9\\u03bf\\u03c2_\\u0399\\u03bf\\u03cd\\u03bb\\u03b9\\u03bf\\u03c2_\\u0391\\u03cd\\u03b3\\u03bf\\u03c5\\u03c3\\u03c4\\u03bf\\u03c2_\\u03a3\\u03b5\\u03c0\\u03c4\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u039f\\u03ba\\u03c4\\u03ce\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u039d\\u03bf\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u0394\\u03b5\\u03ba\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2\".split(\"_\"),monthsGenitiveEl:\"\\u0399\\u03b1\\u03bd\\u03bf\\u03c5\\u03b1\\u03c1\\u03af\\u03bf\\u03c5_\\u03a6\\u03b5\\u03b2\\u03c1\\u03bf\\u03c5\\u03b1\\u03c1\\u03af\\u03bf\\u03c5_\\u039c\\u03b1\\u03c1\\u03c4\\u03af\\u03bf\\u03c5_\\u0391\\u03c0\\u03c1\\u03b9\\u03bb\\u03af\\u03bf\\u03c5_\\u039c\\u03b1\\u0390\\u03bf\\u03c5_\\u0399\\u03bf\\u03c5\\u03bd\\u03af\\u03bf\\u03c5_\\u0399\\u03bf\\u03c5\\u03bb\\u03af\\u03bf\\u03c5_\\u0391\\u03c5\\u03b3\\u03bf\\u03cd\\u03c3\\u03c4\\u03bf\\u03c5_\\u03a3\\u03b5\\u03c0\\u03c4\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u039f\\u03ba\\u03c4\\u03c9\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u039d\\u03bf\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u0394\\u03b5\\u03ba\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5\".split(\"_\"),months:function(e,t){return e?\"string\"==typeof t&&/D/.test(t.substring(0,t.indexOf(\"MMMM\")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]:this._monthsNominativeEl},monthsShort:\"\\u0399\\u03b1\\u03bd_\\u03a6\\u03b5\\u03b2_\\u039c\\u03b1\\u03c1_\\u0391\\u03c0\\u03c1_\\u039c\\u03b1\\u03ca_\\u0399\\u03bf\\u03c5\\u03bd_\\u0399\\u03bf\\u03c5\\u03bb_\\u0391\\u03c5\\u03b3_\\u03a3\\u03b5\\u03c0_\\u039f\\u03ba\\u03c4_\\u039d\\u03bf\\u03b5_\\u0394\\u03b5\\u03ba\".split(\"_\"),weekdays:\"\\u039a\\u03c5\\u03c1\\u03b9\\u03b1\\u03ba\\u03ae_\\u0394\\u03b5\\u03c5\\u03c4\\u03ad\\u03c1\\u03b1_\\u03a4\\u03c1\\u03af\\u03c4\\u03b7_\\u03a4\\u03b5\\u03c4\\u03ac\\u03c1\\u03c4\\u03b7_\\u03a0\\u03ad\\u03bc\\u03c0\\u03c4\\u03b7_\\u03a0\\u03b1\\u03c1\\u03b1\\u03c3\\u03ba\\u03b5\\u03c5\\u03ae_\\u03a3\\u03ac\\u03b2\\u03b2\\u03b1\\u03c4\\u03bf\".split(\"_\"),weekdaysShort:\"\\u039a\\u03c5\\u03c1_\\u0394\\u03b5\\u03c5_\\u03a4\\u03c1\\u03b9_\\u03a4\\u03b5\\u03c4_\\u03a0\\u03b5\\u03bc_\\u03a0\\u03b1\\u03c1_\\u03a3\\u03b1\\u03b2\".split(\"_\"),weekdaysMin:\"\\u039a\\u03c5_\\u0394\\u03b5_\\u03a4\\u03c1_\\u03a4\\u03b5_\\u03a0\\u03b5_\\u03a0\\u03b1_\\u03a3\\u03b1\".split(\"_\"),meridiem:function(e,t,n){return e>11?n?\"\\u03bc\\u03bc\":\"\\u039c\\u039c\":n?\"\\u03c0\\u03bc\":\"\\u03a0\\u039c\"},isPM:function(e){return\"\\u03bc\"===(e+\"\").toLowerCase()[0]},meridiemParse:/[\\u03a0\\u039c]\\.?\\u039c?\\.?/i,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendarEl:{sameDay:\"[\\u03a3\\u03ae\\u03bc\\u03b5\\u03c1\\u03b1 {}] LT\",nextDay:\"[\\u0391\\u03cd\\u03c1\\u03b9\\u03bf {}] LT\",nextWeek:\"dddd [{}] LT\",lastDay:\"[\\u03a7\\u03b8\\u03b5\\u03c2 {}] LT\",lastWeek:function(){switch(this.day()){case 6:return\"[\\u03c4\\u03bf \\u03c0\\u03c1\\u03bf\\u03b7\\u03b3\\u03bf\\u03cd\\u03bc\\u03b5\\u03bd\\u03bf] dddd [{}] LT\";default:return\"[\\u03c4\\u03b7\\u03bd \\u03c0\\u03c1\\u03bf\\u03b7\\u03b3\\u03bf\\u03cd\\u03bc\\u03b5\\u03bd\\u03b7] dddd [{}] LT\"}},sameElse:\"L\"},calendar:function(e,t){var n,i=this._calendarEl[e],s=t&&t.hours();return((n=i)instanceof Function||\"[object Function]\"===Object.prototype.toString.call(n))&&(i=i.apply(t)),i.replace(\"{}\",s%12==1?\"\\u03c3\\u03c4\\u03b7\":\"\\u03c3\\u03c4\\u03b9\\u03c2\")},relativeTime:{future:\"\\u03c3\\u03b5 %s\",past:\"%s \\u03c0\\u03c1\\u03b9\\u03bd\",s:\"\\u03bb\\u03af\\u03b3\\u03b1 \\u03b4\\u03b5\\u03c5\\u03c4\\u03b5\\u03c1\\u03cc\\u03bb\\u03b5\\u03c0\\u03c4\\u03b1\",ss:\"%d \\u03b4\\u03b5\\u03c5\\u03c4\\u03b5\\u03c1\\u03cc\\u03bb\\u03b5\\u03c0\\u03c4\\u03b1\",m:\"\\u03ad\\u03bd\\u03b1 \\u03bb\\u03b5\\u03c0\\u03c4\\u03cc\",mm:\"%d \\u03bb\\u03b5\\u03c0\\u03c4\\u03ac\",h:\"\\u03bc\\u03af\\u03b1 \\u03ce\\u03c1\\u03b1\",hh:\"%d \\u03ce\\u03c1\\u03b5\\u03c2\",d:\"\\u03bc\\u03af\\u03b1 \\u03bc\\u03ad\\u03c1\\u03b1\",dd:\"%d \\u03bc\\u03ad\\u03c1\\u03b5\\u03c2\",M:\"\\u03ad\\u03bd\\u03b1\\u03c2 \\u03bc\\u03ae\\u03bd\\u03b1\\u03c2\",MM:\"%d \\u03bc\\u03ae\\u03bd\\u03b5\\u03c2\",y:\"\\u03ad\\u03bd\\u03b1\\u03c2 \\u03c7\\u03c1\\u03cc\\u03bd\\u03bf\\u03c2\",yy:\"%d \\u03c7\\u03c1\\u03cc\\u03bd\\u03b9\\u03b1\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u03b7/,ordinal:\"%d\\u03b7\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jVdC:function(e,t,n){!function(e){\"use strict\";var t=\"stycze\\u0144_luty_marzec_kwiecie\\u0144_maj_czerwiec_lipiec_sierpie\\u0144_wrzesie\\u0144_pa\\u017adziernik_listopad_grudzie\\u0144\".split(\"_\"),n=\"stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_wrze\\u015bnia_pa\\u017adziernika_listopada_grudnia\".split(\"_\");function i(e){return e%10<5&&e%10>1&&~~(e/10)%10!=1}function s(e,t,n){var s=e+\" \";switch(n){case\"ss\":return s+(i(e)?\"sekundy\":\"sekund\");case\"m\":return t?\"minuta\":\"minut\\u0119\";case\"mm\":return s+(i(e)?\"minuty\":\"minut\");case\"h\":return t?\"godzina\":\"godzin\\u0119\";case\"hh\":return s+(i(e)?\"godziny\":\"godzin\");case\"MM\":return s+(i(e)?\"miesi\\u0105ce\":\"miesi\\u0119cy\");case\"yy\":return s+(i(e)?\"lata\":\"lat\")}}e.defineLocale(\"pl\",{months:function(e,i){return e?\"\"===i?\"(\"+n[e.month()]+\"|\"+t[e.month()]+\")\":/D MMMM/.test(i)?n[e.month()]:t[e.month()]:t},monthsShort:\"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_pa\\u017a_lis_gru\".split(\"_\"),weekdays:\"niedziela_poniedzia\\u0142ek_wtorek_\\u015broda_czwartek_pi\\u0105tek_sobota\".split(\"_\"),weekdaysShort:\"ndz_pon_wt_\\u015br_czw_pt_sob\".split(\"_\"),weekdaysMin:\"Nd_Pn_Wt_\\u015ar_Cz_Pt_So\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Dzi\\u015b o] LT\",nextDay:\"[Jutro o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[W niedziel\\u0119 o] LT\";case 2:return\"[We wtorek o] LT\";case 3:return\"[W \\u015brod\\u0119 o] LT\";case 6:return\"[W sobot\\u0119 o] LT\";default:return\"[W] dddd [o] LT\"}},lastDay:\"[Wczoraj o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[W zesz\\u0142\\u0105 niedziel\\u0119 o] LT\";case 3:return\"[W zesz\\u0142\\u0105 \\u015brod\\u0119 o] LT\";case 6:return\"[W zesz\\u0142\\u0105 sobot\\u0119 o] LT\";default:return\"[W zesz\\u0142y] dddd [o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"%s temu\",s:\"kilka sekund\",ss:s,m:s,mm:s,h:s,hh:s,d:\"1 dzie\\u0144\",dd:\"%d dni\",M:\"miesi\\u0105c\",MM:s,y:\"rok\",yy:s},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jfSC:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u06f1\",2:\"\\u06f2\",3:\"\\u06f3\",4:\"\\u06f4\",5:\"\\u06f5\",6:\"\\u06f6\",7:\"\\u06f7\",8:\"\\u06f8\",9:\"\\u06f9\",0:\"\\u06f0\"},n={\"\\u06f1\":\"1\",\"\\u06f2\":\"2\",\"\\u06f3\":\"3\",\"\\u06f4\":\"4\",\"\\u06f5\":\"5\",\"\\u06f6\":\"6\",\"\\u06f7\":\"7\",\"\\u06f8\":\"8\",\"\\u06f9\":\"9\",\"\\u06f0\":\"0\"};e.defineLocale(\"fa\",{months:\"\\u0698\\u0627\\u0646\\u0648\\u06cc\\u0647_\\u0641\\u0648\\u0631\\u06cc\\u0647_\\u0645\\u0627\\u0631\\u0633_\\u0622\\u0648\\u0631\\u06cc\\u0644_\\u0645\\u0647_\\u0698\\u0648\\u0626\\u0646_\\u0698\\u0648\\u0626\\u06cc\\u0647_\\u0627\\u0648\\u062a_\\u0633\\u067e\\u062a\\u0627\\u0645\\u0628\\u0631_\\u0627\\u06a9\\u062a\\u0628\\u0631_\\u0646\\u0648\\u0627\\u0645\\u0628\\u0631_\\u062f\\u0633\\u0627\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u0698\\u0627\\u0646\\u0648\\u06cc\\u0647_\\u0641\\u0648\\u0631\\u06cc\\u0647_\\u0645\\u0627\\u0631\\u0633_\\u0622\\u0648\\u0631\\u06cc\\u0644_\\u0645\\u0647_\\u0698\\u0648\\u0626\\u0646_\\u0698\\u0648\\u0626\\u06cc\\u0647_\\u0627\\u0648\\u062a_\\u0633\\u067e\\u062a\\u0627\\u0645\\u0628\\u0631_\\u0627\\u06a9\\u062a\\u0628\\u0631_\\u0646\\u0648\\u0627\\u0645\\u0628\\u0631_\\u062f\\u0633\\u0627\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u06cc\\u06a9\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062f\\u0648\\u0634\\u0646\\u0628\\u0647_\\u0633\\u0647\\u200c\\u0634\\u0646\\u0628\\u0647_\\u0686\\u0647\\u0627\\u0631\\u0634\\u0646\\u0628\\u0647_\\u067e\\u0646\\u062c\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062c\\u0645\\u0639\\u0647_\\u0634\\u0646\\u0628\\u0647\".split(\"_\"),weekdaysShort:\"\\u06cc\\u06a9\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062f\\u0648\\u0634\\u0646\\u0628\\u0647_\\u0633\\u0647\\u200c\\u0634\\u0646\\u0628\\u0647_\\u0686\\u0647\\u0627\\u0631\\u0634\\u0646\\u0628\\u0647_\\u067e\\u0646\\u062c\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062c\\u0645\\u0639\\u0647_\\u0634\\u0646\\u0628\\u0647\".split(\"_\"),weekdaysMin:\"\\u06cc_\\u062f_\\u0633_\\u0686_\\u067e_\\u062c_\\u0634\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u0642\\u0628\\u0644 \\u0627\\u0632 \\u0638\\u0647\\u0631|\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631/,isPM:function(e){return/\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631/.test(e)},meridiem:function(e,t,n){return e<12?\"\\u0642\\u0628\\u0644 \\u0627\\u0632 \\u0638\\u0647\\u0631\":\"\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631\"},calendar:{sameDay:\"[\\u0627\\u0645\\u0631\\u0648\\u0632 \\u0633\\u0627\\u0639\\u062a] LT\",nextDay:\"[\\u0641\\u0631\\u062f\\u0627 \\u0633\\u0627\\u0639\\u062a] LT\",nextWeek:\"dddd [\\u0633\\u0627\\u0639\\u062a] LT\",lastDay:\"[\\u062f\\u06cc\\u0631\\u0648\\u0632 \\u0633\\u0627\\u0639\\u062a] LT\",lastWeek:\"dddd [\\u067e\\u06cc\\u0634] [\\u0633\\u0627\\u0639\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u062f\\u0631 %s\",past:\"%s \\u067e\\u06cc\\u0634\",s:\"\\u0686\\u0646\\u062f \\u062b\\u0627\\u0646\\u06cc\\u0647\",ss:\"\\u062b\\u0627\\u0646\\u06cc\\u0647 d%\",m:\"\\u06cc\\u06a9 \\u062f\\u0642\\u06cc\\u0642\\u0647\",mm:\"%d \\u062f\\u0642\\u06cc\\u0642\\u0647\",h:\"\\u06cc\\u06a9 \\u0633\\u0627\\u0639\\u062a\",hh:\"%d \\u0633\\u0627\\u0639\\u062a\",d:\"\\u06cc\\u06a9 \\u0631\\u0648\\u0632\",dd:\"%d \\u0631\\u0648\\u0632\",M:\"\\u06cc\\u06a9 \\u0645\\u0627\\u0647\",MM:\"%d \\u0645\\u0627\\u0647\",y:\"\\u06cc\\u06a9 \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/[\\u06f0-\\u06f9]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},dayOfMonthOrdinalParse:/\\d{1,2}\\u0645/,ordinal:\"%d\\u0645\",week:{dow:6,doy:12}})}(n(\"wd/R\"))},jnO4:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"},i=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},s={s:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062b\\u0627\\u0646\\u064a\\u0629\",\"\\u062b\\u0627\\u0646\\u064a\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u0627\\u0646\",\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u064a\\u0646\"],\"%d \\u062b\\u0648\\u0627\\u0646\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\"],m:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062f\\u0642\\u064a\\u0642\\u0629\",\"\\u062f\\u0642\\u064a\\u0642\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u0627\\u0646\",\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u064a\\u0646\"],\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\"],h:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0633\\u0627\\u0639\\u0629\",\"\\u0633\\u0627\\u0639\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u0633\\u0627\\u0639\\u062a\\u0627\\u0646\",\"\\u0633\\u0627\\u0639\\u062a\\u064a\\u0646\"],\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",\"%d \\u0633\\u0627\\u0639\\u0629\",\"%d \\u0633\\u0627\\u0639\\u0629\"],d:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u064a\\u0648\\u0645\",\"\\u064a\\u0648\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u064a\\u0648\\u0645\\u0627\\u0646\",\"\\u064a\\u0648\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u064a\\u0627\\u0645\",\"%d \\u064a\\u0648\\u0645\\u064b\\u0627\",\"%d \\u064a\\u0648\\u0645\"],M:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0634\\u0647\\u0631\",\"\\u0634\\u0647\\u0631 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0634\\u0647\\u0631\\u0627\\u0646\",\"\\u0634\\u0647\\u0631\\u064a\\u0646\"],\"%d \\u0623\\u0634\\u0647\\u0631\",\"%d \\u0634\\u0647\\u0631\\u0627\",\"%d \\u0634\\u0647\\u0631\"],y:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0639\\u0627\\u0645\",\"\\u0639\\u0627\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0639\\u0627\\u0645\\u0627\\u0646\",\"\\u0639\\u0627\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u0639\\u0648\\u0627\\u0645\",\"%d \\u0639\\u0627\\u0645\\u064b\\u0627\",\"%d \\u0639\\u0627\\u0645\"]},r=function(e){return function(t,n,r,o){var a=i(t),l=s[e][i(t)];return 2===a&&(l=l[n?0:1]),l.replace(/%d/i,t)}},o=[\"\\u064a\\u0646\\u0627\\u064a\\u0631\",\"\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631\",\"\\u0645\\u0627\\u0631\\u0633\",\"\\u0623\\u0628\\u0631\\u064a\\u0644\",\"\\u0645\\u0627\\u064a\\u0648\",\"\\u064a\\u0648\\u0646\\u064a\\u0648\",\"\\u064a\\u0648\\u0644\\u064a\\u0648\",\"\\u0623\\u063a\\u0633\\u0637\\u0633\",\"\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631\",\"\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631\",\"\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\"];e.defineLocale(\"ar\",{months:o,monthsShort:o,weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/\\u200fM/\\u200fYYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u064b\\u0627 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0628\\u0639\\u062f %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:r(\"s\"),ss:r(\"s\"),m:r(\"m\"),mm:r(\"m\"),h:r(\"h\"),hh:r(\"h\"),d:r(\"d\"),dd:r(\"d\"),M:r(\"M\"),MM:r(\"M\"),y:r(\"y\"),yy:r(\"y\")},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},kEOa:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u09e7\",2:\"\\u09e8\",3:\"\\u09e9\",4:\"\\u09ea\",5:\"\\u09eb\",6:\"\\u09ec\",7:\"\\u09ed\",8:\"\\u09ee\",9:\"\\u09ef\",0:\"\\u09e6\"},n={\"\\u09e7\":\"1\",\"\\u09e8\":\"2\",\"\\u09e9\":\"3\",\"\\u09ea\":\"4\",\"\\u09eb\":\"5\",\"\\u09ec\":\"6\",\"\\u09ed\":\"7\",\"\\u09ee\":\"8\",\"\\u09ef\":\"9\",\"\\u09e6\":\"0\"};e.defineLocale(\"bn\",{months:\"\\u099c\\u09be\\u09a8\\u09c1\\u09df\\u09be\\u09b0\\u09c0_\\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09c1\\u09df\\u09be\\u09b0\\u09bf_\\u09ae\\u09be\\u09b0\\u09cd\\u099a_\\u098f\\u09aa\\u09cd\\u09b0\\u09bf\\u09b2_\\u09ae\\u09c7_\\u099c\\u09c1\\u09a8_\\u099c\\u09c1\\u09b2\\u09be\\u0987_\\u0986\\u0997\\u09b8\\u09cd\\u099f_\\u09b8\\u09c7\\u09aa\\u09cd\\u099f\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0_\\u0985\\u0995\\u09cd\\u099f\\u09cb\\u09ac\\u09b0_\\u09a8\\u09ad\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0_\\u09a1\\u09bf\\u09b8\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0\".split(\"_\"),monthsShort:\"\\u099c\\u09be\\u09a8\\u09c1_\\u09ab\\u09c7\\u09ac_\\u09ae\\u09be\\u09b0\\u09cd\\u099a_\\u098f\\u09aa\\u09cd\\u09b0_\\u09ae\\u09c7_\\u099c\\u09c1\\u09a8_\\u099c\\u09c1\\u09b2_\\u0986\\u0997_\\u09b8\\u09c7\\u09aa\\u09cd\\u099f_\\u0985\\u0995\\u09cd\\u099f\\u09cb_\\u09a8\\u09ad\\u09c7_\\u09a1\\u09bf\\u09b8\\u09c7\".split(\"_\"),weekdays:\"\\u09b0\\u09ac\\u09bf\\u09ac\\u09be\\u09b0_\\u09b8\\u09cb\\u09ae\\u09ac\\u09be\\u09b0_\\u09ae\\u0999\\u09cd\\u0997\\u09b2\\u09ac\\u09be\\u09b0_\\u09ac\\u09c1\\u09a7\\u09ac\\u09be\\u09b0_\\u09ac\\u09c3\\u09b9\\u09b8\\u09cd\\u09aa\\u09a4\\u09bf\\u09ac\\u09be\\u09b0_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0\\u09ac\\u09be\\u09b0_\\u09b6\\u09a8\\u09bf\\u09ac\\u09be\\u09b0\".split(\"_\"),weekdaysShort:\"\\u09b0\\u09ac\\u09bf_\\u09b8\\u09cb\\u09ae_\\u09ae\\u0999\\u09cd\\u0997\\u09b2_\\u09ac\\u09c1\\u09a7_\\u09ac\\u09c3\\u09b9\\u09b8\\u09cd\\u09aa\\u09a4\\u09bf_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0_\\u09b6\\u09a8\\u09bf\".split(\"_\"),weekdaysMin:\"\\u09b0\\u09ac\\u09bf_\\u09b8\\u09cb\\u09ae_\\u09ae\\u0999\\u09cd\\u0997_\\u09ac\\u09c1\\u09a7_\\u09ac\\u09c3\\u09b9\\u0983_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0_\\u09b6\\u09a8\\u09bf\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u09b8\\u09ae\\u09df\",LTS:\"A h:mm:ss \\u09b8\\u09ae\\u09df\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u09b8\\u09ae\\u09df\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u09b8\\u09ae\\u09df\"},calendar:{sameDay:\"[\\u0986\\u099c] LT\",nextDay:\"[\\u0986\\u0997\\u09be\\u09ae\\u09c0\\u0995\\u09be\\u09b2] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0997\\u09a4\\u0995\\u09be\\u09b2] LT\",lastWeek:\"[\\u0997\\u09a4] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u09aa\\u09b0\\u09c7\",past:\"%s \\u0986\\u0997\\u09c7\",s:\"\\u0995\\u09df\\u09c7\\u0995 \\u09b8\\u09c7\\u0995\\u09c7\\u09a8\\u09cd\\u09a1\",ss:\"%d \\u09b8\\u09c7\\u0995\\u09c7\\u09a8\\u09cd\\u09a1\",m:\"\\u098f\\u0995 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f\",mm:\"%d \\u09ae\\u09bf\\u09a8\\u09bf\\u099f\",h:\"\\u098f\\u0995 \\u0998\\u09a8\\u09cd\\u099f\\u09be\",hh:\"%d \\u0998\\u09a8\\u09cd\\u099f\\u09be\",d:\"\\u098f\\u0995 \\u09a6\\u09bf\\u09a8\",dd:\"%d \\u09a6\\u09bf\\u09a8\",M:\"\\u098f\\u0995 \\u09ae\\u09be\\u09b8\",MM:\"%d \\u09ae\\u09be\\u09b8\",y:\"\\u098f\\u0995 \\u09ac\\u099b\\u09b0\",yy:\"%d \\u09ac\\u099b\\u09b0\"},preparse:function(e){return e.replace(/[\\u09e7\\u09e8\\u09e9\\u09ea\\u09eb\\u09ec\\u09ed\\u09ee\\u09ef\\u09e6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u09b0\\u09be\\u09a4|\\u09b8\\u0995\\u09be\\u09b2|\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0|\\u09ac\\u09bf\\u0995\\u09be\\u09b2|\\u09b0\\u09be\\u09a4/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u09b0\\u09be\\u09a4\"===t&&e>=4||\"\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0\"===t&&e<5||\"\\u09ac\\u09bf\\u0995\\u09be\\u09b2\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u09b0\\u09be\\u09a4\":e<10?\"\\u09b8\\u0995\\u09be\\u09b2\":e<17?\"\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0\":e<20?\"\\u09ac\\u09bf\\u0995\\u09be\\u09b2\":\"\\u09b0\\u09be\\u09a4\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},kOpN:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-tw\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u9031\\u65e5_\\u9031\\u4e00_\\u9031\\u4e8c_\\u9031\\u4e09_\\u9031\\u56db_\\u9031\\u4e94_\\u9031\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e2d\\u5348\"===t?e>=11?e:e+12:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:void 0},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"\\u51cc\\u6668\":i<900?\"\\u65e9\\u4e0a\":i<1130?\"\\u4e0a\\u5348\":i<1230?\"\\u4e2d\\u5348\":i<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929] LT\",nextDay:\"[\\u660e\\u5929] LT\",nextWeek:\"[\\u4e0b]dddd LT\",lastDay:\"[\\u6628\\u5929] LT\",lastWeek:\"[\\u4e0a]dddd LT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u9031)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u9031\";default:return e}},relativeTime:{future:\"%s\\u5167\",past:\"%s\\u524d\",s:\"\\u5e7e\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u9418\",mm:\"%d \\u5206\\u9418\",h:\"1 \\u5c0f\\u6642\",hh:\"%d \\u5c0f\\u6642\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u500b\\u6708\",MM:\"%d \\u500b\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"}})}(n(\"wd/R\"))},l5ep:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cy\",{months:\"Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr\".split(\"_\"),monthsShort:\"Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag\".split(\"_\"),weekdays:\"Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn\".split(\"_\"),weekdaysShort:\"Sul_Llun_Maw_Mer_Iau_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Ll_Ma_Me_Ia_Gw_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Heddiw am] LT\",nextDay:\"[Yfory am] LT\",nextWeek:\"dddd [am] LT\",lastDay:\"[Ddoe am] LT\",lastWeek:\"dddd [diwethaf am] LT\",sameElse:\"L\"},relativeTime:{future:\"mewn %s\",past:\"%s yn \\xf4l\",s:\"ychydig eiliadau\",ss:\"%d eiliad\",m:\"munud\",mm:\"%d munud\",h:\"awr\",hh:\"%d awr\",d:\"diwrnod\",dd:\"%d diwrnod\",M:\"mis\",MM:\"%d mis\",y:\"blwyddyn\",yy:\"%d flynedd\"},dayOfMonthOrdinalParse:/\\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,ordinal:function(e){var t=\"\";return e>20?t=40===e||50===e||60===e||80===e||100===e?\"fed\":\"ain\":e>0&&(t=[\"\",\"af\",\"il\",\"ydd\",\"ydd\",\"ed\",\"ed\",\"ed\",\"fed\",\"fed\",\"fed\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"fed\"][e]),e+t},week:{dow:1,doy:4}})}(n(\"wd/R\"))},lXzo:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i,s;return\"m\"===n?t?\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\":\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0443\":e+\" \"+(i=+e,s={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430_\\u043c\\u0438\\u043d\\u0443\\u0442\\u044b_\\u043c\\u0438\\u043d\\u0443\\u0442\":\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0443_\\u043c\\u0438\\u043d\\u0443\\u0442\\u044b_\\u043c\\u0438\\u043d\\u0443\\u0442\",hh:\"\\u0447\\u0430\\u0441_\\u0447\\u0430\\u0441\\u0430_\\u0447\\u0430\\u0441\\u043e\\u0432\",dd:\"\\u0434\\u0435\\u043d\\u044c_\\u0434\\u043d\\u044f_\\u0434\\u043d\\u0435\\u0439\",MM:\"\\u043c\\u0435\\u0441\\u044f\\u0446_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0430_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0435\\u0432\",yy:\"\\u0433\\u043e\\u0434_\\u0433\\u043e\\u0434\\u0430_\\u043b\\u0435\\u0442\"}[n].split(\"_\"),i%10==1&&i%100!=11?s[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?s[1]:s[2])}var n=[/^\\u044f\\u043d\\u0432/i,/^\\u0444\\u0435\\u0432/i,/^\\u043c\\u0430\\u0440/i,/^\\u0430\\u043f\\u0440/i,/^\\u043c\\u0430[\\u0439\\u044f]/i,/^\\u0438\\u044e\\u043d/i,/^\\u0438\\u044e\\u043b/i,/^\\u0430\\u0432\\u0433/i,/^\\u0441\\u0435\\u043d/i,/^\\u043e\\u043a\\u0442/i,/^\\u043d\\u043e\\u044f/i,/^\\u0434\\u0435\\u043a/i];e.defineLocale(\"ru\",{months:{format:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044f_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044f_\\u043c\\u0430\\u0440\\u0442\\u0430_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044f_\\u043c\\u0430\\u044f_\\u0438\\u044e\\u043d\\u044f_\\u0438\\u044e\\u043b\\u044f_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044f_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044f_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044f_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044f\".split(\"_\"),standalone:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044c_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044c_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044c_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044c_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044c\".split(\"_\")},monthsShort:{format:\"\\u044f\\u043d\\u0432._\\u0444\\u0435\\u0432\\u0440._\\u043c\\u0430\\u0440._\\u0430\\u043f\\u0440._\\u043c\\u0430\\u044f_\\u0438\\u044e\\u043d\\u044f_\\u0438\\u044e\\u043b\\u044f_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043d\\u0442._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u044f\\u0431._\\u0434\\u0435\\u043a.\".split(\"_\"),standalone:\"\\u044f\\u043d\\u0432._\\u0444\\u0435\\u0432\\u0440._\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440._\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043d\\u0442._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u044f\\u0431._\\u0434\\u0435\\u043a.\".split(\"_\")},weekdays:{standalone:\"\\u0432\\u043e\\u0441\\u043a\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c\\u0435_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u044c\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433_\\u043f\\u044f\\u0442\\u043d\\u0438\\u0446\\u0430_\\u0441\\u0443\\u0431\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),format:\"\\u0432\\u043e\\u0441\\u043a\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c\\u0435_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u044c\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0443_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433_\\u043f\\u044f\\u0442\\u043d\\u0438\\u0446\\u0443_\\u0441\\u0443\\u0431\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),isFormat:/\\[ ?[\\u0412\\u0432] ?(?:\\u043f\\u0440\\u043e\\u0448\\u043b\\u0443\\u044e|\\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0443\\u044e|\\u044d\\u0442\\u0443)? ?\\] ?dddd/},weekdaysShort:\"\\u0432\\u0441_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u0432\\u0441_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),monthsParse:n,longMonthsParse:n,shortMonthsParse:n,monthsRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044c\\u044f]|\\u044f\\u043d\\u0432\\.?|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044c\\u044f]|\\u0444\\u0435\\u0432\\u0440?\\.?|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u043c\\u0430\\u0440\\.?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044c\\u044f]|\\u0430\\u043f\\u0440\\.?|\\u043c\\u0430[\\u0439\\u044f]|\\u0438\\u044e\\u043d[\\u044c\\u044f]|\\u0438\\u044e\\u043d\\.?|\\u0438\\u044e\\u043b[\\u044c\\u044f]|\\u0438\\u044e\\u043b\\.?|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0430\\u0432\\u0433\\.?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u0441\\u0435\\u043d\\u0442?\\.?|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043e\\u043a\\u0442\\.?|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043d\\u043e\\u044f\\u0431?\\.?|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044c\\u044f]|\\u0434\\u0435\\u043a\\.?)/i,monthsShortRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044c\\u044f]|\\u044f\\u043d\\u0432\\.?|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044c\\u044f]|\\u0444\\u0435\\u0432\\u0440?\\.?|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u043c\\u0430\\u0440\\.?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044c\\u044f]|\\u0430\\u043f\\u0440\\.?|\\u043c\\u0430[\\u0439\\u044f]|\\u0438\\u044e\\u043d[\\u044c\\u044f]|\\u0438\\u044e\\u043d\\.?|\\u0438\\u044e\\u043b[\\u044c\\u044f]|\\u0438\\u044e\\u043b\\.?|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0430\\u0432\\u0433\\.?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u0441\\u0435\\u043d\\u0442?\\.?|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043e\\u043a\\u0442\\.?|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043d\\u043e\\u044f\\u0431?\\.?|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044c\\u044f]|\\u0434\\u0435\\u043a\\.?)/i,monthsStrictRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044f\\u044c]|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044f\\u044c]|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044f\\u044c]|\\u043c\\u0430[\\u044f\\u0439]|\\u0438\\u044e\\u043d[\\u044f\\u044c]|\\u0438\\u044e\\u043b[\\u044f\\u044c]|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044f\\u044c])/i,monthsShortStrictRegex:/^(\\u044f\\u043d\\u0432\\.|\\u0444\\u0435\\u0432\\u0440?\\.|\\u043c\\u0430\\u0440[\\u0442.]|\\u0430\\u043f\\u0440\\.|\\u043c\\u0430[\\u044f\\u0439]|\\u0438\\u044e\\u043d[\\u044c\\u044f.]|\\u0438\\u044e\\u043b[\\u044c\\u044f.]|\\u0430\\u0432\\u0433\\.|\\u0441\\u0435\\u043d\\u0442?\\.|\\u043e\\u043a\\u0442\\.|\\u043d\\u043e\\u044f\\u0431?\\.|\\u0434\\u0435\\u043a\\.)/i,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0433.\",LLL:\"D MMMM YYYY \\u0433., H:mm\",LLLL:\"dddd, D MMMM YYYY \\u0433., H:mm\"},calendar:{sameDay:\"[\\u0421\\u0435\\u0433\\u043e\\u0434\\u043d\\u044f, \\u0432] LT\",nextDay:\"[\\u0417\\u0430\\u0432\\u0442\\u0440\\u0430, \\u0432] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430, \\u0432] LT\",nextWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[\\u0412\\u043e] dddd, [\\u0432] LT\":\"[\\u0412] dddd, [\\u0432] LT\";switch(this.day()){case 0:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0435\\u0435] dddd, [\\u0432] LT\";case 1:case 2:case 4:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0438\\u0439] dddd, [\\u0432] LT\";case 3:case 5:case 6:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0443\\u044e] dddd, [\\u0432] LT\"}},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[\\u0412\\u043e] dddd, [\\u0432] LT\":\"[\\u0412] dddd, [\\u0432] LT\";switch(this.day()){case 0:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0435] dddd, [\\u0432] LT\";case 1:case 2:case 4:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u044b\\u0439] dddd, [\\u0432] LT\";case 3:case 5:case 6:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u0443\\u044e] dddd, [\\u0432] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u0447\\u0435\\u0440\\u0435\\u0437 %s\",past:\"%s \\u043d\\u0430\\u0437\\u0430\\u0434\",s:\"\\u043d\\u0435\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:t,m:t,mm:t,h:\"\\u0447\\u0430\\u0441\",hh:t,d:\"\\u0434\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0435\\u0441\\u044f\\u0446\",MM:t,y:\"\\u0433\\u043e\\u0434\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u0438|\\u0443\\u0442\\u0440\\u0430|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430/i,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u0438\":e<12?\"\\u0443\\u0442\\u0440\\u0430\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0439|\\u0433\\u043e|\\u044f)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":return e+\"-\\u0439\";case\"D\":return e+\"-\\u0433\\u043e\";case\"w\":case\"W\":return e+\"-\\u044f\";default:return e}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},lYtQ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){switch(n){case\"s\":return t?\"\\u0445\\u044d\\u0434\\u0445\\u044d\\u043d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0445\\u044d\\u0434\\u0445\\u044d\\u043d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b\\u043d\";case\"ss\":return e+(t?\" \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\" \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b\\u043d\");case\"m\":case\"mm\":return e+(t?\" \\u043c\\u0438\\u043d\\u0443\\u0442\":\" \\u043c\\u0438\\u043d\\u0443\\u0442\\u044b\\u043d\");case\"h\":case\"hh\":return e+(t?\" \\u0446\\u0430\\u0433\":\" \\u0446\\u0430\\u0433\\u0438\\u0439\\u043d\");case\"d\":case\"dd\":return e+(t?\" \\u04e9\\u0434\\u04e9\\u0440\":\" \\u04e9\\u0434\\u0440\\u0438\\u0439\\u043d\");case\"M\":case\"MM\":return e+(t?\" \\u0441\\u0430\\u0440\":\" \\u0441\\u0430\\u0440\\u044b\\u043d\");case\"y\":case\"yy\":return e+(t?\" \\u0436\\u0438\\u043b\":\" \\u0436\\u0438\\u043b\\u0438\\u0439\\u043d\");default:return e}}e.defineLocale(\"mn\",{months:\"\\u041d\\u044d\\u0433\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0425\\u043e\\u0451\\u0440\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0413\\u0443\\u0440\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0414\\u04e9\\u0440\\u04e9\\u0432\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0422\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0417\\u0443\\u0440\\u0433\\u0430\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0414\\u043e\\u043b\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u041d\\u0430\\u0439\\u043c\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0415\\u0441\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0432\\u0430\\u043d \\u043d\\u044d\\u0433\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0432\\u0430\\u043d \\u0445\\u043e\\u0451\\u0440\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440\".split(\"_\"),monthsShort:\"1 \\u0441\\u0430\\u0440_2 \\u0441\\u0430\\u0440_3 \\u0441\\u0430\\u0440_4 \\u0441\\u0430\\u0440_5 \\u0441\\u0430\\u0440_6 \\u0441\\u0430\\u0440_7 \\u0441\\u0430\\u0440_8 \\u0441\\u0430\\u0440_9 \\u0441\\u0430\\u0440_10 \\u0441\\u0430\\u0440_11 \\u0441\\u0430\\u0440_12 \\u0441\\u0430\\u0440\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u041d\\u044f\\u043c_\\u0414\\u0430\\u0432\\u0430\\u0430_\\u041c\\u044f\\u0433\\u043c\\u0430\\u0440_\\u041b\\u0445\\u0430\\u0433\\u0432\\u0430_\\u041f\\u04af\\u0440\\u044d\\u0432_\\u0411\\u0430\\u0430\\u0441\\u0430\\u043d_\\u0411\\u044f\\u043c\\u0431\\u0430\".split(\"_\"),weekdaysShort:\"\\u041d\\u044f\\u043c_\\u0414\\u0430\\u0432_\\u041c\\u044f\\u0433_\\u041b\\u0445\\u0430_\\u041f\\u04af\\u0440_\\u0411\\u0430\\u0430_\\u0411\\u044f\\u043c\".split(\"_\"),weekdaysMin:\"\\u041d\\u044f_\\u0414\\u0430_\\u041c\\u044f_\\u041b\\u0445_\\u041f\\u04af_\\u0411\\u0430_\\u0411\\u044f\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D\",LLL:\"YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D HH:mm\",LLLL:\"dddd, YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D HH:mm\"},meridiemParse:/\\u04ae\\u04e8|\\u04ae\\u0425/i,isPM:function(e){return\"\\u04ae\\u0425\"===e},meridiem:function(e,t,n){return e<12?\"\\u04ae\\u04e8\":\"\\u04ae\\u0425\"},calendar:{sameDay:\"[\\u04e8\\u043d\\u04e9\\u04e9\\u0434\\u04e9\\u0440] LT\",nextDay:\"[\\u041c\\u0430\\u0440\\u0433\\u0430\\u0430\\u0448] LT\",nextWeek:\"[\\u0418\\u0440\\u044d\\u0445] dddd LT\",lastDay:\"[\\u04e8\\u0447\\u0438\\u0433\\u0434\\u04e9\\u0440] LT\",lastWeek:\"[\\u04e8\\u043d\\u0433\\u04e9\\u0440\\u0441\\u04e9\\u043d] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0434\\u0430\\u0440\\u0430\\u0430\",past:\"%s \\u04e9\\u043c\\u043d\\u04e9\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2} \\u04e9\\u0434\\u04e9\\u0440/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\" \\u04e9\\u0434\\u04e9\\u0440\";default:return e}}})}(n(\"wd/R\"))},lgnt:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0447\\u04af\",1:\"-\\u0447\\u0438\",2:\"-\\u0447\\u0438\",3:\"-\\u0447\\u04af\",4:\"-\\u0447\\u04af\",5:\"-\\u0447\\u0438\",6:\"-\\u0447\\u044b\",7:\"-\\u0447\\u0438\",8:\"-\\u0447\\u0438\",9:\"-\\u0447\\u0443\",10:\"-\\u0447\\u0443\",20:\"-\\u0447\\u044b\",30:\"-\\u0447\\u0443\",40:\"-\\u0447\\u044b\",50:\"-\\u0447\\u04af\",60:\"-\\u0447\\u044b\",70:\"-\\u0447\\u0438\",80:\"-\\u0447\\u0438\",90:\"-\\u0447\\u0443\",100:\"-\\u0447\\u04af\"};e.defineLocale(\"ky\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044c_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044c_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044c_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044c_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044c\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u0416\\u0435\\u043a\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0414\\u04af\\u0439\\u0448\\u04e9\\u043c\\u0431\\u04af_\\u0428\\u0435\\u0439\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0428\\u0430\\u0440\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0411\\u0435\\u0439\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0416\\u0443\\u043c\\u0430_\\u0418\\u0448\\u0435\\u043c\\u0431\\u0438\".split(\"_\"),weekdaysShort:\"\\u0416\\u0435\\u043a_\\u0414\\u04af\\u0439_\\u0428\\u0435\\u0439_\\u0428\\u0430\\u0440_\\u0411\\u0435\\u0439_\\u0416\\u0443\\u043c_\\u0418\\u0448\\u0435\".split(\"_\"),weekdaysMin:\"\\u0416\\u043a_\\u0414\\u0439_\\u0428\\u0439_\\u0428\\u0440_\\u0411\\u0439_\\u0416\\u043c_\\u0418\\u0448\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0411\\u04af\\u0433\\u04af\\u043d \\u0441\\u0430\\u0430\\u0442] LT\",nextDay:\"[\\u042d\\u0440\\u0442\\u0435\\u04a3 \\u0441\\u0430\\u0430\\u0442] LT\",nextWeek:\"dddd [\\u0441\\u0430\\u0430\\u0442] LT\",lastDay:\"[\\u041a\\u0435\\u0447\\u044d\\u044d \\u0441\\u0430\\u0430\\u0442] LT\",lastWeek:\"[\\u04e8\\u0442\\u043a\\u04e9\\u043d \\u0430\\u043f\\u0442\\u0430\\u043d\\u044b\\u043d] dddd [\\u043a\\u04af\\u043d\\u04af] [\\u0441\\u0430\\u0430\\u0442] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0438\\u0447\\u0438\\u043d\\u0434\\u0435\",past:\"%s \\u043c\\u0443\\u0440\\u0443\\u043d\",s:\"\\u0431\\u0438\\u0440\\u043d\\u0435\\u0447\\u0435 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:\"\\u0431\\u0438\\u0440 \\u043c\\u04af\\u043d\\u04e9\\u0442\",mm:\"%d \\u043c\\u04af\\u043d\\u04e9\\u0442\",h:\"\\u0431\\u0438\\u0440 \\u0441\\u0430\\u0430\\u0442\",hh:\"%d \\u0441\\u0430\\u0430\\u0442\",d:\"\\u0431\\u0438\\u0440 \\u043a\\u04af\\u043d\",dd:\"%d \\u043a\\u04af\\u043d\",M:\"\\u0431\\u0438\\u0440 \\u0430\\u0439\",MM:\"%d \\u0430\\u0439\",y:\"\\u0431\\u0438\\u0440 \\u0436\\u044b\\u043b\",yy:\"%d \\u0436\\u044b\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0447\\u0438|\\u0447\\u044b|\\u0447\\u04af|\\u0447\\u0443)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},lyxo:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i=\" \";return(e%100>=20||e>=100&&e%100==0)&&(i=\" de \"),e+i+{ss:\"secunde\",mm:\"minute\",hh:\"ore\",dd:\"zile\",MM:\"luni\",yy:\"ani\"}[n]}e.defineLocale(\"ro\",{months:\"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie\".split(\"_\"),monthsShort:\"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"duminic\\u0103_luni_mar\\u021bi_miercuri_joi_vineri_s\\xe2mb\\u0103t\\u0103\".split(\"_\"),weekdaysShort:\"Dum_Lun_Mar_Mie_Joi_Vin_S\\xe2m\".split(\"_\"),weekdaysMin:\"Du_Lu_Ma_Mi_Jo_Vi_S\\xe2\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[azi la] LT\",nextDay:\"[m\\xe2ine la] LT\",nextWeek:\"dddd [la] LT\",lastDay:\"[ieri la] LT\",lastWeek:\"[fosta] dddd [la] LT\",sameElse:\"L\"},relativeTime:{future:\"peste %s\",past:\"%s \\xeen urm\\u0103\",s:\"c\\xe2teva secunde\",ss:t,m:\"un minut\",mm:t,h:\"o or\\u0103\",hh:t,d:\"o zi\",dd:t,M:\"o lun\\u0103\",MM:t,y:\"un an\",yy:t},week:{dow:1,doy:7}})}(n(\"wd/R\"))},m4GZ:function(e,t){function n(e){this.message=e}(n.prototype=new Error).name=\"InvalidCharacterError\",e.exports=\"undefined\"!=typeof window&&window.atob&&window.atob.bind(window)||function(e){var t=String(e).replace(/=+$/,\"\");if(t.length%4==1)throw new n(\"'atob' failed: The string to be decoded is not correctly encoded.\");for(var i,s,r=0,o=0,a=\"\";s=t.charAt(o++);~s&&(i=r%4?64*i+s:s,r++%4)?a+=String.fromCharCode(255&i>>(-2*r&6)):0)s=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\".indexOf(s);return a}},nyYc:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|)/,ordinal:function(e,t){switch(t){case\"D\":return e+(1===e?\"er\":\"\");default:case\"M\":case\"Q\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},o1bE:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-dz\",{months:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0627\\u062d\\u062f_\\u0627\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u0623\\u062d_\\u0625\\u062b_\\u062b\\u0644\\u0627_\\u0623\\u0631_\\u062e\\u0645_\\u062c\\u0645_\\u0633\\u0628\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:0,doy:4}})}(n(\"wd/R\"))},\"p/rL\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bm\",{months:\"Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_M\\u025bkalo_Zuw\\u025bnkalo_Zuluyekalo_Utikalo_S\\u025btanburukalo_\\u0254kut\\u0254burukalo_Nowanburukalo_Desanburukalo\".split(\"_\"),monthsShort:\"Zan_Few_Mar_Awi_M\\u025b_Zuw_Zul_Uti_S\\u025bt_\\u0254ku_Now_Des\".split(\"_\"),weekdays:\"Kari_Nt\\u025bn\\u025bn_Tarata_Araba_Alamisa_Juma_Sibiri\".split(\"_\"),weekdaysShort:\"Kar_Nt\\u025b_Tar_Ara_Ala_Jum_Sib\".split(\"_\"),weekdaysMin:\"Ka_Nt_Ta_Ar_Al_Ju_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"MMMM [tile] D [san] YYYY\",LLL:\"MMMM [tile] D [san] YYYY [l\\u025br\\u025b] HH:mm\",LLLL:\"dddd MMMM [tile] D [san] YYYY [l\\u025br\\u025b] HH:mm\"},calendar:{sameDay:\"[Bi l\\u025br\\u025b] LT\",nextDay:\"[Sini l\\u025br\\u025b] LT\",nextWeek:\"dddd [don l\\u025br\\u025b] LT\",lastDay:\"[Kunu l\\u025br\\u025b] LT\",lastWeek:\"dddd [t\\u025bm\\u025bnen l\\u025br\\u025b] LT\",sameElse:\"L\"},relativeTime:{future:\"%s k\\u0254n\\u0254\",past:\"a b\\u025b %s b\\u0254\",s:\"sanga dama dama\",ss:\"sekondi %d\",m:\"miniti kelen\",mm:\"miniti %d\",h:\"l\\u025br\\u025b kelen\",hh:\"l\\u025br\\u025b %d\",d:\"tile kelen\",dd:\"tile %d\",M:\"kalo kelen\",MM:\"kalo %d\",y:\"san kelen\",yy:\"san %d\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},raLr:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i,s;return\"m\"===n?t?\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0430\":\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0443\":\"h\"===n?t?\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\":\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\":e+\" \"+(i=+e,s={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0430_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0438_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\":\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0443_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0438_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\",hh:t?\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430_\\u0433\\u043e\\u0434\\u0438\\u043d\\u0438_\\u0433\\u043e\\u0434\\u0438\\u043d\":\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443_\\u0433\\u043e\\u0434\\u0438\\u043d\\u0438_\\u0433\\u043e\\u0434\\u0438\\u043d\",dd:\"\\u0434\\u0435\\u043d\\u044c_\\u0434\\u043d\\u0456_\\u0434\\u043d\\u0456\\u0432\",MM:\"\\u043c\\u0456\\u0441\\u044f\\u0446\\u044c_\\u043c\\u0456\\u0441\\u044f\\u0446\\u0456_\\u043c\\u0456\\u0441\\u044f\\u0446\\u0456\\u0432\",yy:\"\\u0440\\u0456\\u043a_\\u0440\\u043e\\u043a\\u0438_\\u0440\\u043e\\u043a\\u0456\\u0432\"}[n].split(\"_\"),i%10==1&&i%100!=11?s[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?s[1]:s[2])}function n(e){return function(){return e+\"\\u043e\"+(11===this.hours()?\"\\u0431\":\"\")+\"] LT\"}}e.defineLocale(\"uk\",{months:{format:\"\\u0441\\u0456\\u0447\\u043d\\u044f_\\u043b\\u044e\\u0442\\u043e\\u0433\\u043e_\\u0431\\u0435\\u0440\\u0435\\u0437\\u043d\\u044f_\\u043a\\u0432\\u0456\\u0442\\u043d\\u044f_\\u0442\\u0440\\u0430\\u0432\\u043d\\u044f_\\u0447\\u0435\\u0440\\u0432\\u043d\\u044f_\\u043b\\u0438\\u043f\\u043d\\u044f_\\u0441\\u0435\\u0440\\u043f\\u043d\\u044f_\\u0432\\u0435\\u0440\\u0435\\u0441\\u043d\\u044f_\\u0436\\u043e\\u0432\\u0442\\u043d\\u044f_\\u043b\\u0438\\u0441\\u0442\\u043e\\u043f\\u0430\\u0434\\u0430_\\u0433\\u0440\\u0443\\u0434\\u043d\\u044f\".split(\"_\"),standalone:\"\\u0441\\u0456\\u0447\\u0435\\u043d\\u044c_\\u043b\\u044e\\u0442\\u0438\\u0439_\\u0431\\u0435\\u0440\\u0435\\u0437\\u0435\\u043d\\u044c_\\u043a\\u0432\\u0456\\u0442\\u0435\\u043d\\u044c_\\u0442\\u0440\\u0430\\u0432\\u0435\\u043d\\u044c_\\u0447\\u0435\\u0440\\u0432\\u0435\\u043d\\u044c_\\u043b\\u0438\\u043f\\u0435\\u043d\\u044c_\\u0441\\u0435\\u0440\\u043f\\u0435\\u043d\\u044c_\\u0432\\u0435\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c_\\u0436\\u043e\\u0432\\u0442\\u0435\\u043d\\u044c_\\u043b\\u0438\\u0441\\u0442\\u043e\\u043f\\u0430\\u0434_\\u0433\\u0440\\u0443\\u0434\\u0435\\u043d\\u044c\".split(\"_\")},monthsShort:\"\\u0441\\u0456\\u0447_\\u043b\\u044e\\u0442_\\u0431\\u0435\\u0440_\\u043a\\u0432\\u0456\\u0442_\\u0442\\u0440\\u0430\\u0432_\\u0447\\u0435\\u0440\\u0432_\\u043b\\u0438\\u043f_\\u0441\\u0435\\u0440\\u043f_\\u0432\\u0435\\u0440_\\u0436\\u043e\\u0432\\u0442_\\u043b\\u0438\\u0441\\u0442_\\u0433\\u0440\\u0443\\u0434\".split(\"_\"),weekdays:function(e,t){var n={nominative:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u044f_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043e\\u043a_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043e\\u043a_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u044f_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),accusative:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u044e_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043e\\u043a_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043e\\u043a_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0443_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u044e_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),genitive:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u0456_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043a\\u0430_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043a\\u0430_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0438_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433\\u0430_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u0456_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0438\".split(\"_\")};return!0===e?n.nominative.slice(1,7).concat(n.nominative.slice(0,1)):e?n[/(\\[[\\u0412\\u0432\\u0423\\u0443]\\]) ?dddd/.test(t)?\"accusative\":/\\[?(?:\\u043c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0457|\\u043d\\u0430\\u0441\\u0442\\u0443\\u043f\\u043d\\u043e\\u0457)? ?\\] ?dddd/.test(t)?\"genitive\":\"nominative\"][e.day()]:n.nominative},weekdaysShort:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0440.\",LLL:\"D MMMM YYYY \\u0440., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0440., HH:mm\"},calendar:{sameDay:n(\"[\\u0421\\u044c\\u043e\\u0433\\u043e\\u0434\\u043d\\u0456 \"),nextDay:n(\"[\\u0417\\u0430\\u0432\\u0442\\u0440\\u0430 \"),lastDay:n(\"[\\u0412\\u0447\\u043e\\u0440\\u0430 \"),nextWeek:n(\"[\\u0423] dddd [\"),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return n(\"[\\u041c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0457] dddd [\").call(this);case 1:case 2:case 4:return n(\"[\\u041c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0433\\u043e] dddd [\").call(this)}},sameElse:\"L\"},relativeTime:{future:\"\\u0437\\u0430 %s\",past:\"%s \\u0442\\u043e\\u043c\\u0443\",s:\"\\u0434\\u0435\\u043a\\u0456\\u043b\\u044c\\u043a\\u0430 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:t,m:t,mm:t,h:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\",hh:t,d:\"\\u0434\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0456\\u0441\\u044f\\u0446\\u044c\",MM:t,y:\"\\u0440\\u0456\\u043a\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u0456|\\u0440\\u0430\\u043d\\u043a\\u0443|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430/,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u0456\":e<12?\"\\u0440\\u0430\\u043d\\u043a\\u0443\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0439|\\u0433\\u043e)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e+\"-\\u0439\";case\"D\":return e+\"-\\u0433\\u043e\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"s+uk\":function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?s[n][0]:s[n][1]}e.defineLocale(\"de-at\",{months:\"J\\xe4nner_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"J\\xe4n._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},sp3z:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"lo\",{months:\"\\u0ea1\\u0eb1\\u0e87\\u0e81\\u0ead\\u0e99_\\u0e81\\u0eb8\\u0ea1\\u0e9e\\u0eb2_\\u0ea1\\u0eb5\\u0e99\\u0eb2_\\u0ec0\\u0ea1\\u0eaa\\u0eb2_\\u0e9e\\u0eb6\\u0e94\\u0eaa\\u0eb0\\u0e9e\\u0eb2_\\u0ea1\\u0eb4\\u0e96\\u0eb8\\u0e99\\u0eb2_\\u0e81\\u0ecd\\u0ea5\\u0eb0\\u0e81\\u0ebb\\u0e94_\\u0eaa\\u0eb4\\u0e87\\u0eab\\u0eb2_\\u0e81\\u0eb1\\u0e99\\u0e8d\\u0eb2_\\u0e95\\u0eb8\\u0ea5\\u0eb2_\\u0e9e\\u0eb0\\u0e88\\u0eb4\\u0e81_\\u0e97\\u0eb1\\u0e99\\u0ea7\\u0eb2\".split(\"_\"),monthsShort:\"\\u0ea1\\u0eb1\\u0e87\\u0e81\\u0ead\\u0e99_\\u0e81\\u0eb8\\u0ea1\\u0e9e\\u0eb2_\\u0ea1\\u0eb5\\u0e99\\u0eb2_\\u0ec0\\u0ea1\\u0eaa\\u0eb2_\\u0e9e\\u0eb6\\u0e94\\u0eaa\\u0eb0\\u0e9e\\u0eb2_\\u0ea1\\u0eb4\\u0e96\\u0eb8\\u0e99\\u0eb2_\\u0e81\\u0ecd\\u0ea5\\u0eb0\\u0e81\\u0ebb\\u0e94_\\u0eaa\\u0eb4\\u0e87\\u0eab\\u0eb2_\\u0e81\\u0eb1\\u0e99\\u0e8d\\u0eb2_\\u0e95\\u0eb8\\u0ea5\\u0eb2_\\u0e9e\\u0eb0\\u0e88\\u0eb4\\u0e81_\\u0e97\\u0eb1\\u0e99\\u0ea7\\u0eb2\".split(\"_\"),weekdays:\"\\u0ead\\u0eb2\\u0e97\\u0eb4\\u0e94_\\u0e88\\u0eb1\\u0e99_\\u0ead\\u0eb1\\u0e87\\u0e84\\u0eb2\\u0e99_\\u0e9e\\u0eb8\\u0e94_\\u0e9e\\u0eb0\\u0eab\\u0eb1\\u0e94_\\u0eaa\\u0eb8\\u0e81_\\u0ec0\\u0eaa\\u0ebb\\u0eb2\".split(\"_\"),weekdaysShort:\"\\u0e97\\u0eb4\\u0e94_\\u0e88\\u0eb1\\u0e99_\\u0ead\\u0eb1\\u0e87\\u0e84\\u0eb2\\u0e99_\\u0e9e\\u0eb8\\u0e94_\\u0e9e\\u0eb0\\u0eab\\u0eb1\\u0e94_\\u0eaa\\u0eb8\\u0e81_\\u0ec0\\u0eaa\\u0ebb\\u0eb2\".split(\"_\"),weekdaysMin:\"\\u0e97_\\u0e88_\\u0ead\\u0e84_\\u0e9e_\\u0e9e\\u0eab_\\u0eaa\\u0e81_\\u0eaa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"\\u0ea7\\u0eb1\\u0e99dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0e95\\u0ead\\u0e99\\u0ec0\\u0e8a\\u0ebb\\u0ec9\\u0eb2|\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87/,isPM:function(e){return\"\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87\"===e},meridiem:function(e,t,n){return e<12?\"\\u0e95\\u0ead\\u0e99\\u0ec0\\u0e8a\\u0ebb\\u0ec9\\u0eb2\":\"\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87\"},calendar:{sameDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",nextDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0ead\\u0eb7\\u0ec8\\u0e99\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",nextWeek:\"[\\u0ea7\\u0eb1\\u0e99]dddd[\\u0edc\\u0ec9\\u0eb2\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",lastDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0ea7\\u0eb2\\u0e99\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",lastWeek:\"[\\u0ea7\\u0eb1\\u0e99]dddd[\\u0ec1\\u0ea5\\u0ec9\\u0ea7\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0ead\\u0eb5\\u0e81 %s\",past:\"%s\\u0e9c\\u0ec8\\u0eb2\\u0e99\\u0ea1\\u0eb2\",s:\"\\u0e9a\\u0ecd\\u0ec8\\u0ec0\\u0e97\\u0ebb\\u0ec8\\u0eb2\\u0ec3\\u0e94\\u0ea7\\u0eb4\\u0e99\\u0eb2\\u0e97\\u0eb5\",ss:\"%d \\u0ea7\\u0eb4\\u0e99\\u0eb2\\u0e97\\u0eb5\",m:\"1 \\u0e99\\u0eb2\\u0e97\\u0eb5\",mm:\"%d \\u0e99\\u0eb2\\u0e97\\u0eb5\",h:\"1 \\u0e8a\\u0ebb\\u0ec8\\u0ea7\\u0ec2\\u0ea1\\u0e87\",hh:\"%d \\u0e8a\\u0ebb\\u0ec8\\u0ea7\\u0ec2\\u0ea1\\u0e87\",d:\"1 \\u0ea1\\u0eb7\\u0ec9\",dd:\"%d \\u0ea1\\u0eb7\\u0ec9\",M:\"1 \\u0ec0\\u0e94\\u0eb7\\u0ead\\u0e99\",MM:\"%d \\u0ec0\\u0e94\\u0eb7\\u0ead\\u0e99\",y:\"1 \\u0e9b\\u0eb5\",yy:\"%d \\u0e9b\\u0eb5\"},dayOfMonthOrdinalParse:/(\\u0e97\\u0eb5\\u0ec8)\\d{1,2}/,ordinal:function(e){return\"\\u0e97\\u0eb5\\u0ec8\"+e}})}(n(\"wd/R\"))},tGlX:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?s[n][0]:s[n][1]}e.defineLocale(\"de\",{months:\"Januar_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},tT3J:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm-latn\",{months:\"innayr_br\\u02e4ayr\\u02e4_mar\\u02e4s\\u02e4_ibrir_mayyw_ywnyw_ywlywz_\\u0263w\\u0161t_\\u0161wtanbir_kt\\u02e4wbr\\u02e4_nwwanbir_dwjnbir\".split(\"_\"),monthsShort:\"innayr_br\\u02e4ayr\\u02e4_mar\\u02e4s\\u02e4_ibrir_mayyw_ywnyw_ywlywz_\\u0263w\\u0161t_\\u0161wtanbir_kt\\u02e4wbr\\u02e4_nwwanbir_dwjnbir\".split(\"_\"),weekdays:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),weekdaysShort:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),weekdaysMin:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[asdkh g] LT\",nextDay:\"[aska g] LT\",nextWeek:\"dddd [g] LT\",lastDay:\"[assant g] LT\",lastWeek:\"dddd [g] LT\",sameElse:\"L\"},relativeTime:{future:\"dadkh s yan %s\",past:\"yan %s\",s:\"imik\",ss:\"%d imik\",m:\"minu\\u1e0d\",mm:\"%d minu\\u1e0d\",h:\"sa\\u025ba\",hh:\"%d tassa\\u025bin\",d:\"ass\",dd:\"%d ossan\",M:\"ayowr\",MM:\"%d iyyirn\",y:\"asgas\",yy:\"%d isgasn\"},week:{dow:6,doy:12}})}(n(\"wd/R\"))},tUCv:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"jv\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des\".split(\"_\"),weekdays:\"Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Reb_Kem_Jem_Sep\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sp\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/enjing|siyang|sonten|ndalu/,meridiemHour:function(e,t){return 12===e&&(e=0),\"enjing\"===t?e:\"siyang\"===t?e>=11?e:e+12:\"sonten\"===t||\"ndalu\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"enjing\":e<15?\"siyang\":e<19?\"sonten\":\"ndalu\"},calendar:{sameDay:\"[Dinten puniko pukul] LT\",nextDay:\"[Mbenjang pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kala wingi pukul] LT\",lastWeek:\"dddd [kepengker pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"wonten ing %s\",past:\"%s ingkang kepengker\",s:\"sawetawis detik\",ss:\"%d detik\",m:\"setunggal menit\",mm:\"%d menit\",h:\"setunggal jam\",hh:\"%d jam\",d:\"sedinten\",dd:\"%d dinten\",M:\"sewulan\",MM:\"%d wulan\",y:\"setaun\",yy:\"%d taun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},u3GI:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?s[n][0]:s[n][1]}e.defineLocale(\"de-ch\",{months:\"Januar_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},uEye:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nn\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\"),weekdays:\"sundag_m\\xe5ndag_tysdag_onsdag_torsdag_fredag_laurdag\".split(\"_\"),weekdaysShort:\"sun_m\\xe5n_tys_ons_tor_fre_lau\".split(\"_\"),weekdaysMin:\"su_m\\xe5_ty_on_to_fr_l\\xf8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] H:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[I dag klokka] LT\",nextDay:\"[I morgon klokka] LT\",nextWeek:\"dddd [klokka] LT\",lastDay:\"[I g\\xe5r klokka] LT\",lastWeek:\"[F\\xf8reg\\xe5ande] dddd [klokka] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s sidan\",s:\"nokre sekund\",ss:\"%d sekund\",m:\"eit minutt\",mm:\"%d minutt\",h:\"ein time\",hh:\"%d timar\",d:\"ein dag\",dd:\"%d dagar\",M:\"ein m\\xe5nad\",MM:\"%d m\\xe5nader\",y:\"eit \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},uXwI:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekundes_sekund\\u0113m_sekunde_sekundes\".split(\"_\"),m:\"min\\u016btes_min\\u016bt\\u0113m_min\\u016bte_min\\u016btes\".split(\"_\"),mm:\"min\\u016btes_min\\u016bt\\u0113m_min\\u016bte_min\\u016btes\".split(\"_\"),h:\"stundas_stund\\u0101m_stunda_stundas\".split(\"_\"),hh:\"stundas_stund\\u0101m_stunda_stundas\".split(\"_\"),d:\"dienas_dien\\u0101m_diena_dienas\".split(\"_\"),dd:\"dienas_dien\\u0101m_diena_dienas\".split(\"_\"),M:\"m\\u0113ne\\u0161a_m\\u0113ne\\u0161iem_m\\u0113nesis_m\\u0113ne\\u0161i\".split(\"_\"),MM:\"m\\u0113ne\\u0161a_m\\u0113ne\\u0161iem_m\\u0113nesis_m\\u0113ne\\u0161i\".split(\"_\"),y:\"gada_gadiem_gads_gadi\".split(\"_\"),yy:\"gada_gadiem_gads_gadi\".split(\"_\")};function n(e,t,n){return n?t%10==1&&t%100!=11?e[2]:e[3]:t%10==1&&t%100!=11?e[0]:e[1]}function i(e,i,s){return e+\" \"+n(t[s],e,i)}function s(e,i,s){return n(t[s],e,i)}e.defineLocale(\"lv\",{months:\"janv\\u0101ris_febru\\u0101ris_marts_apr\\u012blis_maijs_j\\u016bnijs_j\\u016blijs_augusts_septembris_oktobris_novembris_decembris\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_j\\u016bn_j\\u016bl_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"sv\\u0113tdiena_pirmdiena_otrdiena_tre\\u0161diena_ceturtdiena_piektdiena_sestdiena\".split(\"_\"),weekdaysShort:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysMin:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY.\",LL:\"YYYY. [gada] D. MMMM\",LLL:\"YYYY. [gada] D. MMMM, HH:mm\",LLLL:\"YYYY. [gada] D. MMMM, dddd, HH:mm\"},calendar:{sameDay:\"[\\u0160odien pulksten] LT\",nextDay:\"[R\\u012bt pulksten] LT\",nextWeek:\"dddd [pulksten] LT\",lastDay:\"[Vakar pulksten] LT\",lastWeek:\"[Pag\\u0101ju\\u0161\\u0101] dddd [pulksten] LT\",sameElse:\"L\"},relativeTime:{future:\"p\\u0113c %s\",past:\"pirms %s\",s:function(e,t){return t?\"da\\u017eas sekundes\":\"da\\u017e\\u0101m sekund\\u0113m\"},ss:i,m:s,mm:i,h:s,hh:i,d:s,dd:i,M:s,MM:i,y:s,yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},wQk9:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm\",{months:\"\\u2d49\\u2d4f\\u2d4f\\u2d30\\u2d62\\u2d54_\\u2d31\\u2d55\\u2d30\\u2d62\\u2d55_\\u2d4e\\u2d30\\u2d55\\u2d5a_\\u2d49\\u2d31\\u2d54\\u2d49\\u2d54_\\u2d4e\\u2d30\\u2d62\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4f\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4d\\u2d62\\u2d53\\u2d63_\\u2d56\\u2d53\\u2d5b\\u2d5c_\\u2d5b\\u2d53\\u2d5c\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d3d\\u2d5f\\u2d53\\u2d31\\u2d55_\\u2d4f\\u2d53\\u2d61\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d37\\u2d53\\u2d4a\\u2d4f\\u2d31\\u2d49\\u2d54\".split(\"_\"),monthsShort:\"\\u2d49\\u2d4f\\u2d4f\\u2d30\\u2d62\\u2d54_\\u2d31\\u2d55\\u2d30\\u2d62\\u2d55_\\u2d4e\\u2d30\\u2d55\\u2d5a_\\u2d49\\u2d31\\u2d54\\u2d49\\u2d54_\\u2d4e\\u2d30\\u2d62\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4f\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4d\\u2d62\\u2d53\\u2d63_\\u2d56\\u2d53\\u2d5b\\u2d5c_\\u2d5b\\u2d53\\u2d5c\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d3d\\u2d5f\\u2d53\\u2d31\\u2d55_\\u2d4f\\u2d53\\u2d61\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d37\\u2d53\\u2d4a\\u2d4f\\u2d31\\u2d49\\u2d54\".split(\"_\"),weekdays:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),weekdaysShort:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),weekdaysMin:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u2d30\\u2d59\\u2d37\\u2d45 \\u2d34] LT\",nextDay:\"[\\u2d30\\u2d59\\u2d3d\\u2d30 \\u2d34] LT\",nextWeek:\"dddd [\\u2d34] LT\",lastDay:\"[\\u2d30\\u2d5a\\u2d30\\u2d4f\\u2d5c \\u2d34] LT\",lastWeek:\"dddd [\\u2d34] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u2d37\\u2d30\\u2d37\\u2d45 \\u2d59 \\u2d62\\u2d30\\u2d4f %s\",past:\"\\u2d62\\u2d30\\u2d4f %s\",s:\"\\u2d49\\u2d4e\\u2d49\\u2d3d\",ss:\"%d \\u2d49\\u2d4e\\u2d49\\u2d3d\",m:\"\\u2d4e\\u2d49\\u2d4f\\u2d53\\u2d3a\",mm:\"%d \\u2d4e\\u2d49\\u2d4f\\u2d53\\u2d3a\",h:\"\\u2d59\\u2d30\\u2d44\\u2d30\",hh:\"%d \\u2d5c\\u2d30\\u2d59\\u2d59\\u2d30\\u2d44\\u2d49\\u2d4f\",d:\"\\u2d30\\u2d59\\u2d59\",dd:\"%d o\\u2d59\\u2d59\\u2d30\\u2d4f\",M:\"\\u2d30\\u2d62o\\u2d53\\u2d54\",MM:\"%d \\u2d49\\u2d62\\u2d62\\u2d49\\u2d54\\u2d4f\",y:\"\\u2d30\\u2d59\\u2d33\\u2d30\\u2d59\",yy:\"%d \\u2d49\\u2d59\\u2d33\\u2d30\\u2d59\\u2d4f\"},week:{dow:6,doy:12}})}(n(\"wd/R\"))},\"wd/R\":function(e,t,n){(function(e){e.exports=function(){\"use strict\";var t,i;function s(){return t.apply(null,arguments)}function r(e){return e instanceof Array||\"[object Array]\"===Object.prototype.toString.call(e)}function o(e){return null!=e&&\"[object Object]\"===Object.prototype.toString.call(e)}function a(e){return void 0===e}function l(e){return\"number\"==typeof e||\"[object Number]\"===Object.prototype.toString.call(e)}function c(e){return e instanceof Date||\"[object Date]\"===Object.prototype.toString.call(e)}function d(e,t){var n,i=[];for(n=0;n>>0,i=0;i0)for(n=0;n=0?n?\"+\":\"\":\"-\")+Math.pow(10,Math.max(0,t-i.length)).toString().substr(1)+i}var N=/(\\[[^\\[]*\\])|(\\\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,z=/(\\[[^\\[]*\\])|(\\\\)?(LTS|LT|LL?L?L?|l{1,4})/g,V={},W={};function U(e,t,n,i){var s=i;\"string\"==typeof i&&(s=function(){return this[i]()}),e&&(W[e]=s),t&&(W[t[0]]=function(){return F(s.apply(this,arguments),t[1],t[2])}),n&&(W[n]=function(){return this.localeData().ordinal(s.apply(this,arguments),e)})}function $(e,t){return e.isValid()?(t=B(t,e.localeData()),V[t]=V[t]||function(e){var t,n,i,s=e.match(N);for(t=0,n=s.length;t=0&&z.test(e);)e=e.replace(z,i),z.lastIndex=0,n-=1;return e}var q=/\\d/,G=/\\d\\d/,J=/\\d{3}/,K=/\\d{4}/,Z=/[+-]?\\d{6}/,Q=/\\d\\d?/,X=/\\d\\d\\d\\d?/,ee=/\\d\\d\\d\\d\\d\\d?/,te=/\\d{1,3}/,ne=/\\d{1,4}/,ie=/[+-]?\\d{1,6}/,se=/\\d+/,re=/[+-]?\\d+/,oe=/Z|[+-]\\d\\d:?\\d\\d/gi,ae=/Z|[+-]\\d\\d(?::?\\d\\d)?/gi,le=/[0-9]{0,256}['a-z\\u00A0-\\u05FF\\u0700-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFF07\\uFF10-\\uFFEF]{1,256}|[\\u0600-\\u06FF\\/]{1,256}(\\s*?[\\u0600-\\u06FF]{1,256}){1,2}/i,ce={};function de(e,t,n){ce[e]=Y(t)?t:function(e,i){return e&&n?n:t}}function ue(e,t){return u(ce,e)?ce[e](t._strict,t._locale):new RegExp(he(e.replace(\"\\\\\",\"\").replace(/\\\\(\\[)|\\\\(\\])|\\[([^\\]\\[]*)\\]|\\\\(.)/g,(function(e,t,n,i,s){return t||n||i||s}))))}function he(e){return e.replace(/[-\\/\\\\^$*+?.()|[\\]{}]/g,\"\\\\$&\")}var me={};function pe(e,t){var n,i=t;for(\"string\"==typeof e&&(e=[e]),l(t)&&(i=function(e,n){n[t]=k(e)}),n=0;n68?1900:2e3)};var be,ve=we(\"FullYear\",!0);function we(e,t){return function(n){return null!=n?(ke(this,e,n),s.updateOffset(this,t),this):Me(this,e)}}function Me(e,t){return e.isValid()?e._d[\"get\"+(e._isUTC?\"UTC\":\"\")+t]():NaN}function ke(e,t,n){e.isValid()&&!isNaN(n)&&(\"FullYear\"===t&&ye(e.year())&&1===e.month()&&29===e.date()?e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n,e.month(),Se(n,e.month())):e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n))}function Se(e,t){if(isNaN(e)||isNaN(t))return NaN;var n=(t%12+12)%12;return e+=(t-n)/12,1===n?ye(e)?29:28:31-n%7%2}be=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t=0?(a=new Date(e+400,t,n,i,s,r,o),isFinite(a.getFullYear())&&a.setFullYear(e)):a=new Date(e,t,n,i,s,r,o),a}function Ae(e){var t;if(e<100&&e>=0){var n=Array.prototype.slice.call(arguments);n[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)}else t=new Date(Date.UTC.apply(null,arguments));return t}function Re(e,t,n){var i=7+t-n;return-(7+Ae(e,0,i).getUTCDay()-t)%7+i-1}function He(e,t,n,i,s){var r,o,a=1+7*(t-1)+(7+n-i)%7+Re(e,i,s);return a<=0?o=ge(r=e-1)+a:a>ge(e)?(r=e+1,o=a-ge(e)):(r=e,o=a),{year:r,dayOfYear:o}}function je(e,t,n){var i,s,r=Re(e.year(),t,n),o=Math.floor((e.dayOfYear()-r-1)/7)+1;return o<1?i=o+Fe(s=e.year()-1,t,n):o>Fe(e.year(),t,n)?(i=o-Fe(e.year(),t,n),s=e.year()+1):(s=e.year(),i=o),{week:i,year:s}}function Fe(e,t,n){var i=Re(e,t,n),s=Re(e+1,t,n);return(ge(e)-i+s)/7}function Ne(e,t){return e.slice(t,7).concat(e.slice(0,t))}U(\"w\",[\"ww\",2],\"wo\",\"week\"),U(\"W\",[\"WW\",2],\"Wo\",\"isoWeek\"),P(\"week\",\"w\"),P(\"isoWeek\",\"W\"),j(\"week\",5),j(\"isoWeek\",5),de(\"w\",Q),de(\"ww\",Q,G),de(\"W\",Q),de(\"WW\",Q,G),fe([\"w\",\"ww\",\"W\",\"WW\"],(function(e,t,n,i){t[i.substr(0,1)]=k(e)})),U(\"d\",0,\"do\",\"day\"),U(\"dd\",0,0,(function(e){return this.localeData().weekdaysMin(this,e)})),U(\"ddd\",0,0,(function(e){return this.localeData().weekdaysShort(this,e)})),U(\"dddd\",0,0,(function(e){return this.localeData().weekdays(this,e)})),U(\"e\",0,0,\"weekday\"),U(\"E\",0,0,\"isoWeekday\"),P(\"day\",\"d\"),P(\"weekday\",\"e\"),P(\"isoWeekday\",\"E\"),j(\"day\",11),j(\"weekday\",11),j(\"isoWeekday\",11),de(\"d\",Q),de(\"e\",Q),de(\"E\",Q),de(\"dd\",(function(e,t){return t.weekdaysMinRegex(e)})),de(\"ddd\",(function(e,t){return t.weekdaysShortRegex(e)})),de(\"dddd\",(function(e,t){return t.weekdaysRegex(e)})),fe([\"dd\",\"ddd\",\"dddd\"],(function(e,t,n,i){var s=n._locale.weekdaysParse(e,i,n._strict);null!=s?t.d=s:p(n).invalidWeekday=e})),fe([\"d\",\"e\",\"E\"],(function(e,t,n,i){t[i]=k(e)}));var ze=\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),Ve=\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),We=\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\");function Ue(e,t,n){var i,s,r,o=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],i=0;i<7;++i)r=m([2e3,1]).day(i),this._minWeekdaysParse[i]=this.weekdaysMin(r,\"\").toLocaleLowerCase(),this._shortWeekdaysParse[i]=this.weekdaysShort(r,\"\").toLocaleLowerCase(),this._weekdaysParse[i]=this.weekdays(r,\"\").toLocaleLowerCase();return n?\"dddd\"===t?-1!==(s=be.call(this._weekdaysParse,o))?s:null:\"ddd\"===t?-1!==(s=be.call(this._shortWeekdaysParse,o))?s:null:-1!==(s=be.call(this._minWeekdaysParse,o))?s:null:\"dddd\"===t?-1!==(s=be.call(this._weekdaysParse,o))||-1!==(s=be.call(this._shortWeekdaysParse,o))||-1!==(s=be.call(this._minWeekdaysParse,o))?s:null:\"ddd\"===t?-1!==(s=be.call(this._shortWeekdaysParse,o))||-1!==(s=be.call(this._weekdaysParse,o))||-1!==(s=be.call(this._minWeekdaysParse,o))?s:null:-1!==(s=be.call(this._minWeekdaysParse,o))||-1!==(s=be.call(this._weekdaysParse,o))||-1!==(s=be.call(this._shortWeekdaysParse,o))?s:null}var $e=le,Be=le,qe=le;function Ge(){function e(e,t){return t.length-e.length}var t,n,i,s,r,o=[],a=[],l=[],c=[];for(t=0;t<7;t++)n=m([2e3,1]).day(t),i=this.weekdaysMin(n,\"\"),s=this.weekdaysShort(n,\"\"),r=this.weekdays(n,\"\"),o.push(i),a.push(s),l.push(r),c.push(i),c.push(s),c.push(r);for(o.sort(e),a.sort(e),l.sort(e),c.sort(e),t=0;t<7;t++)a[t]=he(a[t]),l[t]=he(l[t]),c[t]=he(c[t]);this._weekdaysRegex=new RegExp(\"^(\"+c.join(\"|\")+\")\",\"i\"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp(\"^(\"+l.join(\"|\")+\")\",\"i\"),this._weekdaysShortStrictRegex=new RegExp(\"^(\"+a.join(\"|\")+\")\",\"i\"),this._weekdaysMinStrictRegex=new RegExp(\"^(\"+o.join(\"|\")+\")\",\"i\")}function Je(){return this.hours()%12||12}function Ke(e,t){U(e,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)}))}function Ze(e,t){return t._meridiemParse}U(\"H\",[\"HH\",2],0,\"hour\"),U(\"h\",[\"hh\",2],0,Je),U(\"k\",[\"kk\",2],0,(function(){return this.hours()||24})),U(\"hmm\",0,0,(function(){return\"\"+Je.apply(this)+F(this.minutes(),2)})),U(\"hmmss\",0,0,(function(){return\"\"+Je.apply(this)+F(this.minutes(),2)+F(this.seconds(),2)})),U(\"Hmm\",0,0,(function(){return\"\"+this.hours()+F(this.minutes(),2)})),U(\"Hmmss\",0,0,(function(){return\"\"+this.hours()+F(this.minutes(),2)+F(this.seconds(),2)})),Ke(\"a\",!0),Ke(\"A\",!1),P(\"hour\",\"h\"),j(\"hour\",13),de(\"a\",Ze),de(\"A\",Ze),de(\"H\",Q),de(\"h\",Q),de(\"k\",Q),de(\"HH\",Q,G),de(\"hh\",Q,G),de(\"kk\",Q,G),de(\"hmm\",X),de(\"hmmss\",ee),de(\"Hmm\",X),de(\"Hmmss\",ee),pe([\"H\",\"HH\"],3),pe([\"k\",\"kk\"],(function(e,t,n){var i=k(e);t[3]=24===i?0:i})),pe([\"a\",\"A\"],(function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e})),pe([\"h\",\"hh\"],(function(e,t,n){t[3]=k(e),p(n).bigHour=!0})),pe(\"hmm\",(function(e,t,n){var i=e.length-2;t[3]=k(e.substr(0,i)),t[4]=k(e.substr(i)),p(n).bigHour=!0})),pe(\"hmmss\",(function(e,t,n){var i=e.length-4,s=e.length-2;t[3]=k(e.substr(0,i)),t[4]=k(e.substr(i,2)),t[5]=k(e.substr(s)),p(n).bigHour=!0})),pe(\"Hmm\",(function(e,t,n){var i=e.length-2;t[3]=k(e.substr(0,i)),t[4]=k(e.substr(i))})),pe(\"Hmmss\",(function(e,t,n){var i=e.length-4,s=e.length-2;t[3]=k(e.substr(0,i)),t[4]=k(e.substr(i,2)),t[5]=k(e.substr(s))}));var Qe,Xe=we(\"Hours\",!0),et={calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},longDateFormat:{LTS:\"h:mm:ss A\",LT:\"h:mm A\",L:\"MM/DD/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"},invalidDate:\"Invalid date\",ordinal:\"%d\",dayOfMonthOrdinalParse:/\\d{1,2}/,relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},months:xe,monthsShort:Ce,week:{dow:0,doy:6},weekdays:ze,weekdaysMin:We,weekdaysShort:Ve,meridiemParse:/[ap]\\.?m?\\.?/i},tt={},nt={};function it(e){return e?e.toLowerCase().replace(\"_\",\"-\"):e}function st(t){var i=null;if(!tt[t]&&void 0!==e&&e&&e.exports)try{i=Qe._abbr,n(\"RnhZ\")(\"./\"+t),rt(i)}catch(s){}return tt[t]}function rt(e,t){var n;return e&&((n=a(t)?at(e):ot(e,t))?Qe=n:\"undefined\"!=typeof console&&console.warn&&console.warn(\"Locale \"+e+\" not found. Did you forget to load it?\")),Qe._abbr}function ot(e,t){if(null!==t){var n,i=et;if(t.abbr=e,null!=tt[e])D(\"defineLocaleOverride\",\"use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info.\"),i=tt[e]._config;else if(null!=t.parentLocale)if(null!=tt[t.parentLocale])i=tt[t.parentLocale]._config;else{if(null==(n=st(t.parentLocale)))return nt[t.parentLocale]||(nt[t.parentLocale]=[]),nt[t.parentLocale].push({name:e,config:t}),null;i=n._config}return tt[e]=new O(E(i,t)),nt[e]&&nt[e].forEach((function(e){ot(e.name,e.config)})),rt(e),tt[e]}return delete tt[e],null}function at(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return Qe;if(!r(e)){if(t=st(e))return t;e=[e]}return function(e){for(var t,n,i,s,r=0;r0;){if(i=st(s.slice(0,t).join(\"-\")))return i;if(n&&n.length>=t&&S(s,n,!0)>=t-1)break;t--}r++}return Qe}(e)}function lt(e){var t,n=e._a;return n&&-2===p(e).overflow&&(t=n[1]<0||n[1]>11?1:n[2]<1||n[2]>Se(n[0],n[1])?2:n[3]<0||n[3]>24||24===n[3]&&(0!==n[4]||0!==n[5]||0!==n[6])?3:n[4]<0||n[4]>59?4:n[5]<0||n[5]>59?5:n[6]<0||n[6]>999?6:-1,p(e)._overflowDayOfYear&&(t<0||t>2)&&(t=2),p(e)._overflowWeeks&&-1===t&&(t=7),p(e)._overflowWeekday&&-1===t&&(t=8),p(e).overflow=t),e}function ct(e,t,n){return null!=e?e:null!=t?t:n}function dt(e){var t,n,i,r,o,a=[];if(!e._d){for(i=function(e){var t=new Date(s.now());return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}(e),e._w&&null==e._a[2]&&null==e._a[1]&&function(e){var t,n,i,s,r,o,a,l;if(null!=(t=e._w).GG||null!=t.W||null!=t.E)r=1,o=4,n=ct(t.GG,e._a[0],je(St(),1,4).year),i=ct(t.W,1),((s=ct(t.E,1))<1||s>7)&&(l=!0);else{r=e._locale._week.dow,o=e._locale._week.doy;var c=je(St(),r,o);n=ct(t.gg,e._a[0],c.year),i=ct(t.w,c.week),null!=t.d?((s=t.d)<0||s>6)&&(l=!0):null!=t.e?(s=t.e+r,(t.e<0||t.e>6)&&(l=!0)):s=r}i<1||i>Fe(n,r,o)?p(e)._overflowWeeks=!0:null!=l?p(e)._overflowWeekday=!0:(a=He(n,i,s,r,o),e._a[0]=a.year,e._dayOfYear=a.dayOfYear)}(e),null!=e._dayOfYear&&(o=ct(e._a[0],i[0]),(e._dayOfYear>ge(o)||0===e._dayOfYear)&&(p(e)._overflowDayOfYear=!0),n=Ae(o,0,e._dayOfYear),e._a[1]=n.getUTCMonth(),e._a[2]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=a[t]=i[t];for(;t<7;t++)e._a[t]=a[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[3]&&0===e._a[4]&&0===e._a[5]&&0===e._a[6]&&(e._nextDay=!0,e._a[3]=0),e._d=(e._useUTC?Ae:Pe).apply(null,a),r=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[3]=24),e._w&&void 0!==e._w.d&&e._w.d!==r&&(p(e).weekdayMismatch=!0)}}var ut=/^\\s*((?:[+-]\\d{6}|\\d{4})-(?:\\d\\d-\\d\\d|W\\d\\d-\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?::\\d\\d(?::\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,ht=/^\\s*((?:[+-]\\d{6}|\\d{4})(?:\\d\\d\\d\\d|W\\d\\d\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?:\\d\\d(?:\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,mt=/Z|[+-]\\d\\d(?::?\\d\\d)?/,pt=[[\"YYYYYY-MM-DD\",/[+-]\\d{6}-\\d\\d-\\d\\d/],[\"YYYY-MM-DD\",/\\d{4}-\\d\\d-\\d\\d/],[\"GGGG-[W]WW-E\",/\\d{4}-W\\d\\d-\\d/],[\"GGGG-[W]WW\",/\\d{4}-W\\d\\d/,!1],[\"YYYY-DDD\",/\\d{4}-\\d{3}/],[\"YYYY-MM\",/\\d{4}-\\d\\d/,!1],[\"YYYYYYMMDD\",/[+-]\\d{10}/],[\"YYYYMMDD\",/\\d{8}/],[\"GGGG[W]WWE\",/\\d{4}W\\d{3}/],[\"GGGG[W]WW\",/\\d{4}W\\d{2}/,!1],[\"YYYYDDD\",/\\d{7}/]],ft=[[\"HH:mm:ss.SSSS\",/\\d\\d:\\d\\d:\\d\\d\\.\\d+/],[\"HH:mm:ss,SSSS\",/\\d\\d:\\d\\d:\\d\\d,\\d+/],[\"HH:mm:ss\",/\\d\\d:\\d\\d:\\d\\d/],[\"HH:mm\",/\\d\\d:\\d\\d/],[\"HHmmss.SSSS\",/\\d\\d\\d\\d\\d\\d\\.\\d+/],[\"HHmmss,SSSS\",/\\d\\d\\d\\d\\d\\d,\\d+/],[\"HHmmss\",/\\d\\d\\d\\d\\d\\d/],[\"HHmm\",/\\d\\d\\d\\d/],[\"HH\",/\\d\\d/]],_t=/^\\/?Date\\((\\-?\\d+)/i;function gt(e){var t,n,i,s,r,o,a=e._i,l=ut.exec(a)||ht.exec(a);if(l){for(p(e).iso=!0,t=0,n=pt.length;t0&&p(e).unusedInput.push(o),a=a.slice(a.indexOf(n)+n.length),c+=n.length),W[r]?(n?p(e).empty=!1:p(e).unusedTokens.push(r),_e(r,n,e)):e._strict&&!n&&p(e).unusedTokens.push(r);p(e).charsLeftOver=l-c,a.length>0&&p(e).unusedInput.push(a),e._a[3]<=12&&!0===p(e).bigHour&&e._a[3]>0&&(p(e).bigHour=void 0),p(e).parsedDateParts=e._a.slice(0),p(e).meridiem=e._meridiem,e._a[3]=function(e,t,n){var i;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((i=e.isPM(n))&&t<12&&(t+=12),i||12!==t||(t=0),t):t}(e._locale,e._a[3],e._meridiem),dt(e),lt(e)}else vt(e);else gt(e)}function Mt(e){var t=e._i,n=e._f;return e._locale=e._locale||at(e._l),null===t||void 0===n&&\"\"===t?_({nullInput:!0}):(\"string\"==typeof t&&(e._i=t=e._locale.preparse(t)),w(t)?new v(lt(t)):(c(t)?e._d=t:r(n)?function(e){var t,n,i,s,r;if(0===e._f.length)return p(e).invalidFormat=!0,void(e._d=new Date(NaN));for(s=0;sthis?this:e:_()}));function Ct(e,t){var n,i;if(1===t.length&&r(t[0])&&(t=t[0]),!t.length)return St();for(n=t[0],i=1;i=0?new Date(e+400,t,n)-126227808e5:new Date(e,t,n).valueOf()}function Xt(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-126227808e5:Date.UTC(e,t,n)}function en(e,t){U(0,[e,e.length],0,t)}function tn(e,t,n,i,s){var r;return null==e?je(this,i,s).year:(t>(r=Fe(e,i,s))&&(t=r),nn.call(this,e,t,n,i,s))}function nn(e,t,n,i,s){var r=He(e,t,n,i,s),o=Ae(r.year,0,r.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}U(0,[\"gg\",2],0,(function(){return this.weekYear()%100})),U(0,[\"GG\",2],0,(function(){return this.isoWeekYear()%100})),en(\"gggg\",\"weekYear\"),en(\"ggggg\",\"weekYear\"),en(\"GGGG\",\"isoWeekYear\"),en(\"GGGGG\",\"isoWeekYear\"),P(\"weekYear\",\"gg\"),P(\"isoWeekYear\",\"GG\"),j(\"weekYear\",1),j(\"isoWeekYear\",1),de(\"G\",re),de(\"g\",re),de(\"GG\",Q,G),de(\"gg\",Q,G),de(\"GGGG\",ne,K),de(\"gggg\",ne,K),de(\"GGGGG\",ie,Z),de(\"ggggg\",ie,Z),fe([\"gggg\",\"ggggg\",\"GGGG\",\"GGGGG\"],(function(e,t,n,i){t[i.substr(0,2)]=k(e)})),fe([\"gg\",\"GG\"],(function(e,t,n,i){t[i]=s.parseTwoDigitYear(e)})),U(\"Q\",0,\"Qo\",\"quarter\"),P(\"quarter\",\"Q\"),j(\"quarter\",7),de(\"Q\",q),pe(\"Q\",(function(e,t){t[1]=3*(k(e)-1)})),U(\"D\",[\"DD\",2],\"Do\",\"date\"),P(\"date\",\"D\"),j(\"date\",9),de(\"D\",Q),de(\"DD\",Q,G),de(\"Do\",(function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient})),pe([\"D\",\"DD\"],2),pe(\"Do\",(function(e,t){t[2]=k(e.match(Q)[0])}));var sn=we(\"Date\",!0);U(\"DDD\",[\"DDDD\",3],\"DDDo\",\"dayOfYear\"),P(\"dayOfYear\",\"DDD\"),j(\"dayOfYear\",4),de(\"DDD\",te),de(\"DDDD\",J),pe([\"DDD\",\"DDDD\"],(function(e,t,n){n._dayOfYear=k(e)})),U(\"m\",[\"mm\",2],0,\"minute\"),P(\"minute\",\"m\"),j(\"minute\",14),de(\"m\",Q),de(\"mm\",Q,G),pe([\"m\",\"mm\"],4);var rn=we(\"Minutes\",!1);U(\"s\",[\"ss\",2],0,\"second\"),P(\"second\",\"s\"),j(\"second\",15),de(\"s\",Q),de(\"ss\",Q,G),pe([\"s\",\"ss\"],5);var on,an=we(\"Seconds\",!1);for(U(\"S\",0,0,(function(){return~~(this.millisecond()/100)})),U(0,[\"SS\",2],0,(function(){return~~(this.millisecond()/10)})),U(0,[\"SSS\",3],0,\"millisecond\"),U(0,[\"SSSS\",4],0,(function(){return 10*this.millisecond()})),U(0,[\"SSSSS\",5],0,(function(){return 100*this.millisecond()})),U(0,[\"SSSSSS\",6],0,(function(){return 1e3*this.millisecond()})),U(0,[\"SSSSSSS\",7],0,(function(){return 1e4*this.millisecond()})),U(0,[\"SSSSSSSS\",8],0,(function(){return 1e5*this.millisecond()})),U(0,[\"SSSSSSSSS\",9],0,(function(){return 1e6*this.millisecond()})),P(\"millisecond\",\"ms\"),j(\"millisecond\",16),de(\"S\",te,q),de(\"SS\",te,G),de(\"SSS\",te,J),on=\"SSSS\";on.length<=9;on+=\"S\")de(on,se);function ln(e,t){t[6]=k(1e3*(\"0.\"+e))}for(on=\"S\";on.length<=9;on+=\"S\")pe(on,ln);var cn=we(\"Milliseconds\",!1);U(\"z\",0,0,\"zoneAbbr\"),U(\"zz\",0,0,\"zoneName\");var dn=v.prototype;function un(e){return e}dn.add=$t,dn.calendar=function(e,t){var n=e||St(),i=At(n,this).startOf(\"day\"),r=s.calendarFormat(this,i)||\"sameElse\",o=t&&(Y(t[r])?t[r].call(this,n):t[r]);return this.format(o||this.localeData().calendar(r,this,St(n)))},dn.clone=function(){return new v(this)},dn.diff=function(e,t,n){var i,s,r;if(!this.isValid())return NaN;if(!(i=At(e,this)).isValid())return NaN;switch(s=6e4*(i.utcOffset()-this.utcOffset()),t=A(t)){case\"year\":r=qt(this,i)/12;break;case\"month\":r=qt(this,i);break;case\"quarter\":r=qt(this,i)/3;break;case\"second\":r=(this-i)/1e3;break;case\"minute\":r=(this-i)/6e4;break;case\"hour\":r=(this-i)/36e5;break;case\"day\":r=(this-i-s)/864e5;break;case\"week\":r=(this-i-s)/6048e5;break;default:r=this-i}return n?r:M(r)},dn.endOf=function(e){var t;if(void 0===(e=A(e))||\"millisecond\"===e||!this.isValid())return this;var n=this._isUTC?Xt:Qt;switch(e){case\"year\":t=n(this.year()+1,0,1)-1;break;case\"quarter\":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case\"month\":t=n(this.year(),this.month()+1,1)-1;break;case\"week\":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case\"isoWeek\":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case\"day\":case\"date\":t=n(this.year(),this.month(),this.date()+1)-1;break;case\"hour\":t=this._d.valueOf(),t+=36e5-Zt(t+(this._isUTC?0:6e4*this.utcOffset()),36e5)-1;break;case\"minute\":t=this._d.valueOf(),t+=6e4-Zt(t,6e4)-1;break;case\"second\":t=this._d.valueOf(),t+=1e3-Zt(t,1e3)-1}return this._d.setTime(t),s.updateOffset(this,!0),this},dn.format=function(e){e||(e=this.isUtc()?s.defaultFormatUtc:s.defaultFormat);var t=$(this,e);return this.localeData().postformat(t)},dn.from=function(e,t){return this.isValid()&&(w(e)&&e.isValid()||St(e).isValid())?Nt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},dn.fromNow=function(e){return this.from(St(),e)},dn.to=function(e,t){return this.isValid()&&(w(e)&&e.isValid()||St(e).isValid())?Nt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},dn.toNow=function(e){return this.to(St(),e)},dn.get=function(e){return Y(this[e=A(e)])?this[e]():this},dn.invalidAt=function(){return p(this).overflow},dn.isAfter=function(e,t){var n=w(e)?e:St(e);return!(!this.isValid()||!n.isValid())&&(\"millisecond\"===(t=A(t)||\"millisecond\")?this.valueOf()>n.valueOf():n.valueOf()9999?$(n,t?\"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ\"):Y(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace(\"Z\",$(n,\"Z\")):$(n,t?\"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYY-MM-DD[T]HH:mm:ss.SSSZ\")},dn.inspect=function(){if(!this.isValid())return\"moment.invalid(/* \"+this._i+\" */)\";var e=\"moment\",t=\"\";this.isLocal()||(e=0===this.utcOffset()?\"moment.utc\":\"moment.parseZone\",t=\"Z\");var n=\"[\"+e+'(\"]',i=0<=this.year()&&this.year()<=9999?\"YYYY\":\"YYYYYY\";return this.format(n+i+\"-MM-DD[T]HH:mm:ss.SSS\"+t+'[\")]')},dn.toJSON=function(){return this.isValid()?this.toISOString():null},dn.toString=function(){return this.clone().locale(\"en\").format(\"ddd MMM DD YYYY HH:mm:ss [GMT]ZZ\")},dn.unix=function(){return Math.floor(this.valueOf()/1e3)},dn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},dn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},dn.year=ve,dn.isLeapYear=function(){return ye(this.year())},dn.weekYear=function(e){return tn.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},dn.isoWeekYear=function(e){return tn.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)},dn.quarter=dn.quarters=function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},dn.month=Ye,dn.daysInMonth=function(){return Se(this.year(),this.month())},dn.week=dn.weeks=function(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),\"d\")},dn.isoWeek=dn.isoWeeks=function(e){var t=je(this,1,4).week;return null==e?t:this.add(7*(e-t),\"d\")},dn.weeksInYear=function(){var e=this.localeData()._week;return Fe(this.year(),e.dow,e.doy)},dn.isoWeeksInYear=function(){return Fe(this.year(),1,4)},dn.date=sn,dn.day=dn.days=function(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=function(e,t){return\"string\"!=typeof e?e:isNaN(e)?\"number\"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}(e,this.localeData()),this.add(e-t,\"d\")):t},dn.weekday=function(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,\"d\")},dn.isoWeekday=function(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=function(e,t){return\"string\"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7},dn.dayOfYear=function(e){var t=Math.round((this.clone().startOf(\"day\")-this.clone().startOf(\"year\"))/864e5)+1;return null==e?t:this.add(e-t,\"d\")},dn.hour=dn.hours=Xe,dn.minute=dn.minutes=rn,dn.second=dn.seconds=an,dn.millisecond=dn.milliseconds=cn,dn.utcOffset=function(e,t,n){var i,r=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null!=e){if(\"string\"==typeof e){if(null===(e=Pt(ae,e)))return this}else Math.abs(e)<16&&!n&&(e*=60);return!this._isUTC&&t&&(i=Rt(this)),this._offset=e,this._isUTC=!0,null!=i&&this.add(i,\"m\"),r!==e&&(!t||this._changeInProgress?Ut(this,Nt(e-r,\"m\"),1,!1):this._changeInProgress||(this._changeInProgress=!0,s.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?r:Rt(this)},dn.utc=function(e){return this.utcOffset(0,e)},dn.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(Rt(this),\"m\")),this},dn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if(\"string\"==typeof this._i){var e=Pt(oe,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this},dn.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?St(e).utcOffset():0,(this.utcOffset()-e)%60==0)},dn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},dn.isLocal=function(){return!!this.isValid()&&!this._isUTC},dn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},dn.isUtc=Ht,dn.isUTC=Ht,dn.zoneAbbr=function(){return this._isUTC?\"UTC\":\"\"},dn.zoneName=function(){return this._isUTC?\"Coordinated Universal Time\":\"\"},dn.dates=x(\"dates accessor is deprecated. Use date instead.\",sn),dn.months=x(\"months accessor is deprecated. Use month instead\",Ye),dn.years=x(\"years accessor is deprecated. Use year instead\",ve),dn.zone=x(\"moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/\",(function(e,t){return null!=e?(\"string\"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()})),dn.isDSTShifted=x(\"isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information\",(function(){if(!a(this._isDSTShifted))return this._isDSTShifted;var e={};if(y(e,this),(e=Mt(e))._a){var t=e._isUTC?m(e._a):St(e._a);this._isDSTShifted=this.isValid()&&S(e._a,t.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}));var hn=O.prototype;function mn(e,t,n,i){var s=at(),r=m().set(i,t);return s[n](r,e)}function pn(e,t,n){if(l(e)&&(t=e,e=void 0),e=e||\"\",null!=t)return mn(e,t,n,\"month\");var i,s=[];for(i=0;i<12;i++)s[i]=mn(e,i,n,\"month\");return s}function fn(e,t,n,i){\"boolean\"==typeof e?(l(t)&&(n=t,t=void 0),t=t||\"\"):(n=t=e,e=!1,l(t)&&(n=t,t=void 0),t=t||\"\");var s,r=at(),o=e?r._week.dow:0;if(null!=n)return mn(t,(n+o)%7,i,\"day\");var a=[];for(s=0;s<7;s++)a[s]=mn(t,(s+o)%7,i,\"day\");return a}hn.calendar=function(e,t,n){var i=this._calendar[e]||this._calendar.sameElse;return Y(i)?i.call(t,n):i},hn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.replace(/MMMM|MM|DD|dddd/g,(function(e){return e.slice(1)})),this._longDateFormat[e])},hn.invalidDate=function(){return this._invalidDate},hn.ordinal=function(e){return this._ordinal.replace(\"%d\",e)},hn.preparse=un,hn.postformat=un,hn.relativeTime=function(e,t,n,i){var s=this._relativeTime[n];return Y(s)?s(e,t,n,i):s.replace(/%d/i,e)},hn.pastFuture=function(e,t){var n=this._relativeTime[e>0?\"future\":\"past\"];return Y(n)?n(t):n.replace(/%s/i,t)},hn.set=function(e){var t,n;for(n in e)Y(t=e[n])?this[n]=t:this[\"_\"+n]=t;this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+\"|\"+/\\d{1,2}/.source)},hn.months=function(e,t){return e?r(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||Le).test(t)?\"format\":\"standalone\"][e.month()]:r(this._months)?this._months:this._months.standalone},hn.monthsShort=function(e,t){return e?r(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[Le.test(t)?\"format\":\"standalone\"][e.month()]:r(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},hn.monthsParse=function(e,t,n){var i,s,r;if(this._monthsParseExact)return Te.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),i=0;i<12;i++){if(s=m([2e3,i]),n&&!this._longMonthsParse[i]&&(this._longMonthsParse[i]=new RegExp(\"^\"+this.months(s,\"\").replace(\".\",\"\")+\"$\",\"i\"),this._shortMonthsParse[i]=new RegExp(\"^\"+this.monthsShort(s,\"\").replace(\".\",\"\")+\"$\",\"i\")),n||this._monthsParse[i]||(r=\"^\"+this.months(s,\"\")+\"|^\"+this.monthsShort(s,\"\"),this._monthsParse[i]=new RegExp(r.replace(\".\",\"\"),\"i\")),n&&\"MMMM\"===t&&this._longMonthsParse[i].test(e))return i;if(n&&\"MMM\"===t&&this._shortMonthsParse[i].test(e))return i;if(!n&&this._monthsParse[i].test(e))return i}},hn.monthsRegex=function(e){return this._monthsParseExact?(u(this,\"_monthsRegex\")||Ie.call(this),e?this._monthsStrictRegex:this._monthsRegex):(u(this,\"_monthsRegex\")||(this._monthsRegex=Oe),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},hn.monthsShortRegex=function(e){return this._monthsParseExact?(u(this,\"_monthsRegex\")||Ie.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(u(this,\"_monthsShortRegex\")||(this._monthsShortRegex=Ee),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},hn.week=function(e){return je(e,this._week.dow,this._week.doy).week},hn.firstDayOfYear=function(){return this._week.doy},hn.firstDayOfWeek=function(){return this._week.dow},hn.weekdays=function(e,t){var n=r(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?\"format\":\"standalone\"];return!0===e?Ne(n,this._week.dow):e?n[e.day()]:n},hn.weekdaysMin=function(e){return!0===e?Ne(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin},hn.weekdaysShort=function(e){return!0===e?Ne(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort},hn.weekdaysParse=function(e,t,n){var i,s,r;if(this._weekdaysParseExact)return Ue.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),i=0;i<7;i++){if(s=m([2e3,1]).day(i),n&&!this._fullWeekdaysParse[i]&&(this._fullWeekdaysParse[i]=new RegExp(\"^\"+this.weekdays(s,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._shortWeekdaysParse[i]=new RegExp(\"^\"+this.weekdaysShort(s,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._minWeekdaysParse[i]=new RegExp(\"^\"+this.weekdaysMin(s,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\")),this._weekdaysParse[i]||(r=\"^\"+this.weekdays(s,\"\")+\"|^\"+this.weekdaysShort(s,\"\")+\"|^\"+this.weekdaysMin(s,\"\"),this._weekdaysParse[i]=new RegExp(r.replace(\".\",\"\"),\"i\")),n&&\"dddd\"===t&&this._fullWeekdaysParse[i].test(e))return i;if(n&&\"ddd\"===t&&this._shortWeekdaysParse[i].test(e))return i;if(n&&\"dd\"===t&&this._minWeekdaysParse[i].test(e))return i;if(!n&&this._weekdaysParse[i].test(e))return i}},hn.weekdaysRegex=function(e){return this._weekdaysParseExact?(u(this,\"_weekdaysRegex\")||Ge.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(u(this,\"_weekdaysRegex\")||(this._weekdaysRegex=$e),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},hn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(u(this,\"_weekdaysRegex\")||Ge.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(u(this,\"_weekdaysShortRegex\")||(this._weekdaysShortRegex=Be),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},hn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(u(this,\"_weekdaysRegex\")||Ge.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(u(this,\"_weekdaysMinRegex\")||(this._weekdaysMinRegex=qe),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},hn.isPM=function(e){return\"p\"===(e+\"\").toLowerCase().charAt(0)},hn.meridiem=function(e,t,n){return e>11?n?\"pm\":\"PM\":n?\"am\":\"AM\"},rt(\"en\",{dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===k(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}}),s.lang=x(\"moment.lang is deprecated. Use moment.locale instead.\",rt),s.langData=x(\"moment.langData is deprecated. Use moment.localeData instead.\",at);var _n=Math.abs;function gn(e,t,n,i){var s=Nt(t,n);return e._milliseconds+=i*s._milliseconds,e._days+=i*s._days,e._months+=i*s._months,e._bubble()}function yn(e){return e<0?Math.floor(e):Math.ceil(e)}function bn(e){return 4800*e/146097}function vn(e){return 146097*e/4800}function wn(e){return function(){return this.as(e)}}var Mn=wn(\"ms\"),kn=wn(\"s\"),Sn=wn(\"m\"),Ln=wn(\"h\"),xn=wn(\"d\"),Cn=wn(\"w\"),Tn=wn(\"M\"),Dn=wn(\"Q\"),Yn=wn(\"y\");function En(e){return function(){return this.isValid()?this._data[e]:NaN}}var On=En(\"milliseconds\"),In=En(\"seconds\"),Pn=En(\"minutes\"),An=En(\"hours\"),Rn=En(\"days\"),Hn=En(\"months\"),jn=En(\"years\"),Fn=Math.round,Nn={ss:44,s:45,m:45,h:22,d:26,M:11};function zn(e,t,n,i,s){return s.relativeTime(t||1,!!n,e,i)}var Vn=Math.abs;function Wn(e){return(e>0)-(e<0)||+e}function Un(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n=Vn(this._milliseconds)/1e3,i=Vn(this._days),s=Vn(this._months);e=M(n/60),t=M(e/60),n%=60,e%=60;var r=M(s/12),o=s%=12,a=i,l=t,c=e,d=n?n.toFixed(3).replace(/\\.?0+$/,\"\"):\"\",u=this.asSeconds();if(!u)return\"P0D\";var h=u<0?\"-\":\"\",m=Wn(this._months)!==Wn(u)?\"-\":\"\",p=Wn(this._days)!==Wn(u)?\"-\":\"\",f=Wn(this._milliseconds)!==Wn(u)?\"-\":\"\";return h+\"P\"+(r?m+r+\"Y\":\"\")+(o?m+o+\"M\":\"\")+(a?p+a+\"D\":\"\")+(l||c||d?\"T\":\"\")+(l?f+l+\"H\":\"\")+(c?f+c+\"M\":\"\")+(d?f+d+\"S\":\"\")}var $n=Dt.prototype;return $n.isValid=function(){return this._isValid},$n.abs=function(){var e=this._data;return this._milliseconds=_n(this._milliseconds),this._days=_n(this._days),this._months=_n(this._months),e.milliseconds=_n(e.milliseconds),e.seconds=_n(e.seconds),e.minutes=_n(e.minutes),e.hours=_n(e.hours),e.months=_n(e.months),e.years=_n(e.years),this},$n.add=function(e,t){return gn(this,e,t,1)},$n.subtract=function(e,t){return gn(this,e,t,-1)},$n.as=function(e){if(!this.isValid())return NaN;var t,n,i=this._milliseconds;if(\"month\"===(e=A(e))||\"quarter\"===e||\"year\"===e)switch(n=this._months+bn(t=this._days+i/864e5),e){case\"month\":return n;case\"quarter\":return n/3;case\"year\":return n/12}else switch(t=this._days+Math.round(vn(this._months)),e){case\"week\":return t/7+i/6048e5;case\"day\":return t+i/864e5;case\"hour\":return 24*t+i/36e5;case\"minute\":return 1440*t+i/6e4;case\"second\":return 86400*t+i/1e3;case\"millisecond\":return Math.floor(864e5*t)+i;default:throw new Error(\"Unknown unit \"+e)}},$n.asMilliseconds=Mn,$n.asSeconds=kn,$n.asMinutes=Sn,$n.asHours=Ln,$n.asDays=xn,$n.asWeeks=Cn,$n.asMonths=Tn,$n.asQuarters=Dn,$n.asYears=Yn,$n.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*k(this._months/12):NaN},$n._bubble=function(){var e,t,n,i,s,r=this._milliseconds,o=this._days,a=this._months,l=this._data;return r>=0&&o>=0&&a>=0||r<=0&&o<=0&&a<=0||(r+=864e5*yn(vn(a)+o),o=0,a=0),l.milliseconds=r%1e3,e=M(r/1e3),l.seconds=e%60,t=M(e/60),l.minutes=t%60,n=M(t/60),l.hours=n%24,o+=M(n/24),a+=s=M(bn(o)),o-=yn(vn(s)),i=M(a/12),a%=12,l.days=o,l.months=a,l.years=i,this},$n.clone=function(){return Nt(this)},$n.get=function(e){return e=A(e),this.isValid()?this[e+\"s\"]():NaN},$n.milliseconds=On,$n.seconds=In,$n.minutes=Pn,$n.hours=An,$n.days=Rn,$n.weeks=function(){return M(this.days()/7)},$n.months=Hn,$n.years=jn,$n.humanize=function(e){if(!this.isValid())return this.localeData().invalidDate();var t=this.localeData(),n=function(e,t,n){var i=Nt(e).abs(),s=Fn(i.as(\"s\")),r=Fn(i.as(\"m\")),o=Fn(i.as(\"h\")),a=Fn(i.as(\"d\")),l=Fn(i.as(\"M\")),c=Fn(i.as(\"y\")),d=s<=Nn.ss&&[\"s\",s]||s0,d[4]=n,zn.apply(null,d)}(this,!e,t);return e&&(n=t.pastFuture(+this,n)),t.postformat(n)},$n.toISOString=Un,$n.toString=Un,$n.toJSON=Un,$n.locale=Gt,$n.localeData=Kt,$n.toIsoString=x(\"toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)\",Un),$n.lang=Jt,U(\"X\",0,0,\"unix\"),U(\"x\",0,0,\"valueOf\"),de(\"x\",re),de(\"X\",/[+-]?\\d+(\\.\\d{1,3})?/),pe(\"X\",(function(e,t,n){n._d=new Date(1e3*parseFloat(e,10))})),pe(\"x\",(function(e,t,n){n._d=new Date(k(e))})),s.version=\"2.24.0\",t=St,s.fn=dn,s.min=function(){var e=[].slice.call(arguments,0);return Ct(\"isBefore\",e)},s.max=function(){var e=[].slice.call(arguments,0);return Ct(\"isAfter\",e)},s.now=function(){return Date.now?Date.now():+new Date},s.utc=m,s.unix=function(e){return St(1e3*e)},s.months=function(e,t){return pn(e,t,\"months\")},s.isDate=c,s.locale=rt,s.invalid=_,s.duration=Nt,s.isMoment=w,s.weekdays=function(e,t,n){return fn(e,t,n,\"weekdays\")},s.parseZone=function(){return St.apply(null,arguments).parseZone()},s.localeData=at,s.isDuration=Yt,s.monthsShort=function(e,t){return pn(e,t,\"monthsShort\")},s.weekdaysMin=function(e,t,n){return fn(e,t,n,\"weekdaysMin\")},s.defineLocale=ot,s.updateLocale=function(e,t){if(null!=t){var n,i,s=et;null!=(i=st(e))&&(s=i._config),(n=new O(t=E(s,t))).parentLocale=tt[e],tt[e]=n,rt(e)}else null!=tt[e]&&(null!=tt[e].parentLocale?tt[e]=tt[e].parentLocale:null!=tt[e]&&delete tt[e]);return tt[e]},s.locales=function(){return C(tt)},s.weekdaysShort=function(e,t,n){return fn(e,t,n,\"weekdaysShort\")},s.normalizeUnits=A,s.relativeTimeRounding=function(e){return void 0===e?Fn:\"function\"==typeof e&&(Fn=e,!0)},s.relativeTimeThreshold=function(e,t){return void 0!==Nn[e]&&(void 0===t?Nn[e]:(Nn[e]=t,\"s\"===e&&(Nn.ss=t-1),!0))},s.calendarFormat=function(e,t){var n=e.diff(t,\"days\",!0);return n<-6?\"sameElse\":n<-1?\"lastWeek\":n<0?\"lastDay\":n<1?\"sameDay\":n<2?\"nextDay\":n<7?\"nextWeek\":\"sameElse\"},s.prototype=dn,s.HTML5_FMT={DATETIME_LOCAL:\"YYYY-MM-DDTHH:mm\",DATETIME_LOCAL_SECONDS:\"YYYY-MM-DDTHH:mm:ss\",DATETIME_LOCAL_MS:\"YYYY-MM-DDTHH:mm:ss.SSS\",DATE:\"YYYY-MM-DD\",TIME:\"HH:mm\",TIME_SECONDS:\"HH:mm:ss\",TIME_MS:\"HH:mm:ss.SSS\",WEEK:\"GGGG-[W]WW\",MONTH:\"YYYY-MM\"},s}()}).call(this,n(\"YuTi\")(e))},x6pH:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"he\",{months:\"\\u05d9\\u05e0\\u05d5\\u05d0\\u05e8_\\u05e4\\u05d1\\u05e8\\u05d5\\u05d0\\u05e8_\\u05de\\u05e8\\u05e5_\\u05d0\\u05e4\\u05e8\\u05d9\\u05dc_\\u05de\\u05d0\\u05d9_\\u05d9\\u05d5\\u05e0\\u05d9_\\u05d9\\u05d5\\u05dc\\u05d9_\\u05d0\\u05d5\\u05d2\\u05d5\\u05e1\\u05d8_\\u05e1\\u05e4\\u05d8\\u05de\\u05d1\\u05e8_\\u05d0\\u05d5\\u05e7\\u05d8\\u05d5\\u05d1\\u05e8_\\u05e0\\u05d5\\u05d1\\u05de\\u05d1\\u05e8_\\u05d3\\u05e6\\u05de\\u05d1\\u05e8\".split(\"_\"),monthsShort:\"\\u05d9\\u05e0\\u05d5\\u05f3_\\u05e4\\u05d1\\u05e8\\u05f3_\\u05de\\u05e8\\u05e5_\\u05d0\\u05e4\\u05e8\\u05f3_\\u05de\\u05d0\\u05d9_\\u05d9\\u05d5\\u05e0\\u05d9_\\u05d9\\u05d5\\u05dc\\u05d9_\\u05d0\\u05d5\\u05d2\\u05f3_\\u05e1\\u05e4\\u05d8\\u05f3_\\u05d0\\u05d5\\u05e7\\u05f3_\\u05e0\\u05d5\\u05d1\\u05f3_\\u05d3\\u05e6\\u05de\\u05f3\".split(\"_\"),weekdays:\"\\u05e8\\u05d0\\u05e9\\u05d5\\u05df_\\u05e9\\u05e0\\u05d9_\\u05e9\\u05dc\\u05d9\\u05e9\\u05d9_\\u05e8\\u05d1\\u05d9\\u05e2\\u05d9_\\u05d7\\u05de\\u05d9\\u05e9\\u05d9_\\u05e9\\u05d9\\u05e9\\u05d9_\\u05e9\\u05d1\\u05ea\".split(\"_\"),weekdaysShort:\"\\u05d0\\u05f3_\\u05d1\\u05f3_\\u05d2\\u05f3_\\u05d3\\u05f3_\\u05d4\\u05f3_\\u05d5\\u05f3_\\u05e9\\u05f3\".split(\"_\"),weekdaysMin:\"\\u05d0_\\u05d1_\\u05d2_\\u05d3_\\u05d4_\\u05d5_\\u05e9\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [\\u05d1]MMMM YYYY\",LLL:\"D [\\u05d1]MMMM YYYY HH:mm\",LLLL:\"dddd, D [\\u05d1]MMMM YYYY HH:mm\",l:\"D/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u05d4\\u05d9\\u05d5\\u05dd \\u05d1\\u05be]LT\",nextDay:\"[\\u05de\\u05d7\\u05e8 \\u05d1\\u05be]LT\",nextWeek:\"dddd [\\u05d1\\u05e9\\u05e2\\u05d4] LT\",lastDay:\"[\\u05d0\\u05ea\\u05de\\u05d5\\u05dc \\u05d1\\u05be]LT\",lastWeek:\"[\\u05d1\\u05d9\\u05d5\\u05dd] dddd [\\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05df \\u05d1\\u05e9\\u05e2\\u05d4] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u05d1\\u05e2\\u05d5\\u05d3 %s\",past:\"\\u05dc\\u05e4\\u05e0\\u05d9 %s\",s:\"\\u05de\\u05e1\\u05e4\\u05e8 \\u05e9\\u05e0\\u05d9\\u05d5\\u05ea\",ss:\"%d \\u05e9\\u05e0\\u05d9\\u05d5\\u05ea\",m:\"\\u05d3\\u05e7\\u05d4\",mm:\"%d \\u05d3\\u05e7\\u05d5\\u05ea\",h:\"\\u05e9\\u05e2\\u05d4\",hh:function(e){return 2===e?\"\\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd\":e+\" \\u05e9\\u05e2\\u05d5\\u05ea\"},d:\"\\u05d9\\u05d5\\u05dd\",dd:function(e){return 2===e?\"\\u05d9\\u05d5\\u05de\\u05d9\\u05d9\\u05dd\":e+\" \\u05d9\\u05de\\u05d9\\u05dd\"},M:\"\\u05d7\\u05d5\\u05d3\\u05e9\",MM:function(e){return 2===e?\"\\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05d9\\u05dd\":e+\" \\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05dd\"},y:\"\\u05e9\\u05e0\\u05d4\",yy:function(e){return 2===e?\"\\u05e9\\u05e0\\u05ea\\u05d9\\u05d9\\u05dd\":e%10==0&&10!==e?e+\" \\u05e9\\u05e0\\u05d4\":e+\" \\u05e9\\u05e0\\u05d9\\u05dd\"}},meridiemParse:/\\u05d0\\u05d7\\u05d4\"\\u05e6|\\u05dc\\u05e4\\u05e0\\u05d4\"\\u05e6|\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05dc\\u05e4\\u05e0\\u05d5\\u05ea \\u05d1\\u05d5\\u05e7\\u05e8|\\u05d1\\u05d1\\u05d5\\u05e7\\u05e8|\\u05d1\\u05e2\\u05e8\\u05d1/i,isPM:function(e){return/^(\\u05d0\\u05d7\\u05d4\"\\u05e6|\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05d1\\u05e2\\u05e8\\u05d1)$/.test(e)},meridiem:function(e,t,n){return e<5?\"\\u05dc\\u05e4\\u05e0\\u05d5\\u05ea \\u05d1\\u05d5\\u05e7\\u05e8\":e<10?\"\\u05d1\\u05d1\\u05d5\\u05e7\\u05e8\":e<12?n?'\\u05dc\\u05e4\\u05e0\\u05d4\"\\u05e6':\"\\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd\":e<18?n?'\\u05d0\\u05d7\\u05d4\"\\u05e6':\"\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd\":\"\\u05d1\\u05e2\\u05e8\\u05d1\"}})}(n(\"wd/R\"))},yPMs:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sq\",{months:\"Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_N\\xebntor_Dhjetor\".split(\"_\"),monthsShort:\"Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_N\\xebn_Dhj\".split(\"_\"),weekdays:\"E Diel_E H\\xebn\\xeb_E Mart\\xeb_E M\\xebrkur\\xeb_E Enjte_E Premte_E Shtun\\xeb\".split(\"_\"),weekdaysShort:\"Die_H\\xebn_Mar_M\\xebr_Enj_Pre_Sht\".split(\"_\"),weekdaysMin:\"D_H_Ma_M\\xeb_E_P_Sh\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/PD|MD/,isPM:function(e){return\"M\"===e.charAt(0)},meridiem:function(e,t,n){return e<12?\"PD\":\"MD\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Sot n\\xeb] LT\",nextDay:\"[Nes\\xebr n\\xeb] LT\",nextWeek:\"dddd [n\\xeb] LT\",lastDay:\"[Dje n\\xeb] LT\",lastWeek:\"dddd [e kaluar n\\xeb] LT\",sameElse:\"L\"},relativeTime:{future:\"n\\xeb %s\",past:\"%s m\\xeb par\\xeb\",s:\"disa sekonda\",ss:\"%d sekonda\",m:\"nj\\xeb minut\\xeb\",mm:\"%d minuta\",h:\"nj\\xeb or\\xeb\",hh:\"%d or\\xeb\",d:\"nj\\xeb dit\\xeb\",dd:\"%d dit\\xeb\",M:\"nj\\xeb muaj\",MM:\"%d muaj\",y:\"nj\\xeb vit\",yy:\"%d vite\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},z1FC:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={s:[\"viensas secunds\",\"'iensas secunds\"],ss:[e+\" secunds\",e+\" secunds\"],m:[\"'n m\\xedut\",\"'iens m\\xedut\"],mm:[e+\" m\\xeduts\",e+\" m\\xeduts\"],h:[\"'n \\xfeora\",\"'iensa \\xfeora\"],hh:[e+\" \\xfeoras\",e+\" \\xfeoras\"],d:[\"'n ziua\",\"'iensa ziua\"],dd:[e+\" ziuas\",e+\" ziuas\"],M:[\"'n mes\",\"'iens mes\"],MM:[e+\" mesen\",e+\" mesen\"],y:[\"'n ar\",\"'iens ar\"],yy:[e+\" ars\",e+\" ars\"]};return i||t?s[n][0]:s[n][1]}e.defineLocale(\"tzl\",{months:\"Januar_Fevraglh_Mar\\xe7_Avr\\xefu_Mai_G\\xfcn_Julia_Guscht_Setemvar_Listop\\xe4ts_Noemvar_Zecemvar\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Avr_Mai_G\\xfcn_Jul_Gus_Set_Lis_Noe_Zec\".split(\"_\"),weekdays:\"S\\xfaladi_L\\xfane\\xe7i_Maitzi_M\\xe1rcuri_Xh\\xfaadi_Vi\\xe9ner\\xe7i_S\\xe1turi\".split(\"_\"),weekdaysShort:\"S\\xfal_L\\xfan_Mai_M\\xe1r_Xh\\xfa_Vi\\xe9_S\\xe1t\".split(\"_\"),weekdaysMin:\"S\\xfa_L\\xfa_Ma_M\\xe1_Xh_Vi_S\\xe1\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM [dallas] YYYY\",LLL:\"D. MMMM [dallas] YYYY HH.mm\",LLLL:\"dddd, [li] D. MMMM [dallas] YYYY HH.mm\"},meridiemParse:/d\\'o|d\\'a/i,isPM:function(e){return\"d'o\"===e.toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"d'o\":\"D'O\":n?\"d'a\":\"D'A\"},calendar:{sameDay:\"[oxhi \\xe0] LT\",nextDay:\"[dem\\xe0 \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[ieiri \\xe0] LT\",lastWeek:\"[s\\xfcr el] dddd [lasteu \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"osprei %s\",past:\"ja%s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},z3Vd:function(e,t,n){!function(e){\"use strict\";var t=\"pagh_wa\\u2019_cha\\u2019_wej_loS_vagh_jav_Soch_chorgh_Hut\".split(\"_\");function n(e,n,i,s){var r=function(e){var n=Math.floor(e%1e3/100),i=Math.floor(e%100/10),s=e%10,r=\"\";return n>0&&(r+=t[n]+\"vatlh\"),i>0&&(r+=(\"\"!==r?\" \":\"\")+t[i]+\"maH\"),s>0&&(r+=(\"\"!==r?\" \":\"\")+t[s]),\"\"===r?\"pagh\":r}(e);switch(i){case\"ss\":return r+\" lup\";case\"mm\":return r+\" tup\";case\"hh\":return r+\" rep\";case\"dd\":return r+\" jaj\";case\"MM\":return r+\" jar\";case\"yy\":return r+\" DIS\"}}e.defineLocale(\"tlh\",{months:\"tera\\u2019 jar wa\\u2019_tera\\u2019 jar cha\\u2019_tera\\u2019 jar wej_tera\\u2019 jar loS_tera\\u2019 jar vagh_tera\\u2019 jar jav_tera\\u2019 jar Soch_tera\\u2019 jar chorgh_tera\\u2019 jar Hut_tera\\u2019 jar wa\\u2019maH_tera\\u2019 jar wa\\u2019maH wa\\u2019_tera\\u2019 jar wa\\u2019maH cha\\u2019\".split(\"_\"),monthsShort:\"jar wa\\u2019_jar cha\\u2019_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa\\u2019maH_jar wa\\u2019maH wa\\u2019_jar wa\\u2019maH cha\\u2019\".split(\"_\"),monthsParseExact:!0,weekdays:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysShort:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysMin:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[DaHjaj] LT\",nextDay:\"[wa\\u2019leS] LT\",nextWeek:\"LLL\",lastDay:\"[wa\\u2019Hu\\u2019] LT\",lastWeek:\"LLL\",sameElse:\"L\"},relativeTime:{future:function(e){var t=e;return-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"leS\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"waQ\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"nem\":t+\" pIq\"},past:function(e){var t=e;return-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"Hu\\u2019\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"wen\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"ben\":t+\" ret\"},s:\"puS lup\",ss:n,m:\"wa\\u2019 tup\",mm:n,h:\"wa\\u2019 rep\",hh:n,d:\"wa\\u2019 jaj\",dd:n,M:\"wa\\u2019 jar\",MM:n,y:\"wa\\u2019 DIS\",yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},zUnb:function(e,t,n){\"use strict\";function i(e){return\"function\"==typeof e}n.r(t);let s=!1;const r={Promise:void 0,set useDeprecatedSynchronousErrorHandling(e){if(e){const e=new Error;console.warn(\"DEPRECATED! RxJS was set to use deprecated synchronous error handling behavior by code at: \\n\"+e.stack)}else s&&console.log(\"RxJS: Back to a better error behavior. Thank you. <3\");s=e},get useDeprecatedSynchronousErrorHandling(){return s}};function o(e){setTimeout(()=>{throw e},0)}const a={closed:!0,next(e){},error(e){if(r.useDeprecatedSynchronousErrorHandling)throw e;o(e)},complete(){}},l=(()=>Array.isArray||(e=>e&&\"number\"==typeof e.length))();function c(e){return null!==e&&\"object\"==typeof e}const d=(()=>{function e(e){return Error.call(this),this.message=e?`${e.length} errors occurred during unsubscription:\\n${e.map((e,t)=>`${t+1}) ${e.toString()}`).join(\"\\n \")}`:\"\",this.name=\"UnsubscriptionError\",this.errors=e,this}return e.prototype=Object.create(Error.prototype),e})();let u=(()=>{class e{constructor(e){this.closed=!1,this._parentOrParents=null,this._subscriptions=null,e&&(this._unsubscribe=e)}unsubscribe(){let t;if(this.closed)return;let{_parentOrParents:n,_unsubscribe:s,_subscriptions:r}=this;if(this.closed=!0,this._parentOrParents=null,this._subscriptions=null,n instanceof e)n.remove(this);else if(null!==n)for(let e=0;ee.concat(t instanceof d?t.errors:t),[])}const m=(()=>\"function\"==typeof Symbol?Symbol(\"rxSubscriber\"):\"@@rxSubscriber_\"+Math.random())();class p extends u{constructor(e,t,n){switch(super(),this.syncErrorValue=null,this.syncErrorThrown=!1,this.syncErrorThrowable=!1,this.isStopped=!1,arguments.length){case 0:this.destination=a;break;case 1:if(!e){this.destination=a;break}if(\"object\"==typeof e){e instanceof p?(this.syncErrorThrowable=e.syncErrorThrowable,this.destination=e,e.add(this)):(this.syncErrorThrowable=!0,this.destination=new f(this,e));break}default:this.syncErrorThrowable=!0,this.destination=new f(this,e,t,n)}}[m](){return this}static create(e,t,n){const i=new p(e,t,n);return i.syncErrorThrowable=!1,i}next(e){this.isStopped||this._next(e)}error(e){this.isStopped||(this.isStopped=!0,this._error(e))}complete(){this.isStopped||(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe())}_next(e){this.destination.next(e)}_error(e){this.destination.error(e),this.unsubscribe()}_complete(){this.destination.complete(),this.unsubscribe()}_unsubscribeAndRecycle(){const{_parentOrParents:e}=this;return this._parentOrParents=null,this.unsubscribe(),this.closed=!1,this.isStopped=!1,this._parentOrParents=e,this}}class f extends p{constructor(e,t,n,s){let r;super(),this._parentSubscriber=e;let o=this;i(t)?r=t:t&&(r=t.next,n=t.error,s=t.complete,t!==a&&(o=Object.create(t),i(o.unsubscribe)&&this.add(o.unsubscribe.bind(o)),o.unsubscribe=this.unsubscribe.bind(this))),this._context=o,this._next=r,this._error=n,this._complete=s}next(e){if(!this.isStopped&&this._next){const{_parentSubscriber:t}=this;r.useDeprecatedSynchronousErrorHandling&&t.syncErrorThrowable?this.__tryOrSetError(t,this._next,e)&&this.unsubscribe():this.__tryOrUnsub(this._next,e)}}error(e){if(!this.isStopped){const{_parentSubscriber:t}=this,{useDeprecatedSynchronousErrorHandling:n}=r;if(this._error)n&&t.syncErrorThrowable?(this.__tryOrSetError(t,this._error,e),this.unsubscribe()):(this.__tryOrUnsub(this._error,e),this.unsubscribe());else if(t.syncErrorThrowable)n?(t.syncErrorValue=e,t.syncErrorThrown=!0):o(e),this.unsubscribe();else{if(this.unsubscribe(),n)throw e;o(e)}}}complete(){if(!this.isStopped){const{_parentSubscriber:e}=this;if(this._complete){const t=()=>this._complete.call(this._context);r.useDeprecatedSynchronousErrorHandling&&e.syncErrorThrowable?(this.__tryOrSetError(e,t),this.unsubscribe()):(this.__tryOrUnsub(t),this.unsubscribe())}else this.unsubscribe()}}__tryOrUnsub(e,t){try{e.call(this._context,t)}catch(n){if(this.unsubscribe(),r.useDeprecatedSynchronousErrorHandling)throw n;o(n)}}__tryOrSetError(e,t,n){if(!r.useDeprecatedSynchronousErrorHandling)throw new Error(\"bad call\");try{t.call(this._context,n)}catch(i){return r.useDeprecatedSynchronousErrorHandling?(e.syncErrorValue=i,e.syncErrorThrown=!0,!0):(o(i),!0)}return!1}_unsubscribe(){const{_parentSubscriber:e}=this;this._context=null,this._parentSubscriber=null,e.unsubscribe()}}const _=(()=>\"function\"==typeof Symbol&&Symbol.observable||\"@@observable\")();function g(){}function y(...e){return b(e)}function b(e){return e?1===e.length?e[0]:function(t){return e.reduce((e,t)=>t(e),t)}:g}let v=(()=>{class e{constructor(e){this._isScalar=!1,e&&(this._subscribe=e)}lift(t){const n=new e;return n.source=this,n.operator=t,n}subscribe(e,t,n){const{operator:i}=this,s=function(e,t,n){if(e){if(e instanceof p)return e;if(e[m])return e[m]()}return e||t||n?new p(e,t,n):new p(a)}(e,t,n);if(s.add(i?i.call(s,this.source):this.source||r.useDeprecatedSynchronousErrorHandling&&!s.syncErrorThrowable?this._subscribe(s):this._trySubscribe(s)),r.useDeprecatedSynchronousErrorHandling&&s.syncErrorThrowable&&(s.syncErrorThrowable=!1,s.syncErrorThrown))throw s.syncErrorValue;return s}_trySubscribe(e){try{return this._subscribe(e)}catch(t){r.useDeprecatedSynchronousErrorHandling&&(e.syncErrorThrown=!0,e.syncErrorValue=t),function(e){for(;e;){const{closed:t,destination:n,isStopped:i}=e;if(t||i)return!1;e=n&&n instanceof p?n:null}return!0}(e)?e.error(t):console.warn(t)}}forEach(e,t){return new(t=w(t))((t,n)=>{let i;i=this.subscribe(t=>{try{e(t)}catch(s){n(s),i&&i.unsubscribe()}},n,t)})}_subscribe(e){const{source:t}=this;return t&&t.subscribe(e)}[_](){return this}pipe(...e){return 0===e.length?this:b(e)(this)}toPromise(e){return new(e=w(e))((e,t)=>{let n;this.subscribe(e=>n=e,e=>t(e),()=>e(n))})}}return e.create=t=>new e(t),e})();function w(e){if(e||(e=r.Promise||Promise),!e)throw new Error(\"no Promise impl found\");return e}const M=(()=>{function e(){return Error.call(this),this.message=\"object unsubscribed\",this.name=\"ObjectUnsubscribedError\",this}return e.prototype=Object.create(Error.prototype),e})();class k extends u{constructor(e,t){super(),this.subject=e,this.subscriber=t,this.closed=!1}unsubscribe(){if(this.closed)return;this.closed=!0;const e=this.subject,t=e.observers;if(this.subject=null,!t||0===t.length||e.isStopped||e.closed)return;const n=t.indexOf(this.subscriber);-1!==n&&t.splice(n,1)}}class S extends p{constructor(e){super(e),this.destination=e}}let L=(()=>{class e extends v{constructor(){super(),this.observers=[],this.closed=!1,this.isStopped=!1,this.hasError=!1,this.thrownError=null}[m](){return new S(this)}lift(e){const t=new x(this,this);return t.operator=e,t}next(e){if(this.closed)throw new M;if(!this.isStopped){const{observers:t}=this,n=t.length,i=t.slice();for(let s=0;snew x(e,t),e})();class x extends L{constructor(e,t){super(),this.destination=e,this.source=t}next(e){const{destination:t}=this;t&&t.next&&t.next(e)}error(e){const{destination:t}=this;t&&t.error&&this.destination.error(e)}complete(){const{destination:e}=this;e&&e.complete&&this.destination.complete()}_subscribe(e){const{source:t}=this;return t?this.source.subscribe(e):u.EMPTY}}function C(e){return e&&\"function\"==typeof e.schedule}class T extends p{constructor(e,t,n){super(),this.parent=e,this.outerValue=t,this.outerIndex=n,this.index=0}_next(e){this.parent.notifyNext(this.outerValue,e,this.outerIndex,this.index++,this)}_error(e){this.parent.notifyError(e,this),this.unsubscribe()}_complete(){this.parent.notifyComplete(this),this.unsubscribe()}}const D=e=>t=>{for(let n=0,i=e.length;ne&&\"number\"==typeof e.length&&\"function\"!=typeof e;function I(e){return!!e&&\"function\"!=typeof e.subscribe&&\"function\"==typeof e.then}const P=e=>{if(e&&\"function\"==typeof e[_])return i=e,e=>{const t=i[_]();if(\"function\"!=typeof t.subscribe)throw new TypeError(\"Provided object does not correctly implement Symbol.observable\");return t.subscribe(e)};if(O(e))return D(e);if(I(e))return n=e,e=>(n.then(t=>{e.closed||(e.next(t),e.complete())},t=>e.error(t)).then(null,o),e);if(e&&\"function\"==typeof e[E])return t=e,e=>{const n=t[E]();for(;;){const t=n.next();if(t.done){e.complete();break}if(e.next(t.value),e.closed)break}return\"function\"==typeof n.return&&e.add(()=>{n.return&&n.return()}),e};{const t=c(e)?\"an invalid object\":`'${e}'`;throw new TypeError(`You provided ${t} where a stream was expected.`+\" You can provide an Observable, Promise, Array, or Iterable.\")}var t,n,i};function A(e,t,n,i,s=new T(e,n,i)){if(!s.closed)return t instanceof v?t.subscribe(s):P(t)(s)}class R extends p{notifyNext(e,t,n,i,s){this.destination.next(t)}notifyError(e,t){this.destination.error(e)}notifyComplete(e){this.destination.complete()}}function H(e,t){return function(n){if(\"function\"!=typeof e)throw new TypeError(\"argument is not a function. Are you looking for `mapTo()`?\");return n.lift(new j(e,t))}}class j{constructor(e,t){this.project=e,this.thisArg=t}call(e,t){return t.subscribe(new F(e,this.project,this.thisArg))}}class F extends p{constructor(e,t,n){super(e),this.project=t,this.count=0,this.thisArg=n||this}_next(e){let t;try{t=this.project.call(this.thisArg,e,this.count++)}catch(n){return void this.destination.error(n)}this.destination.next(t)}}function N(e,t){return new v(n=>{const i=new u;let s=0;return i.add(t.schedule((function(){s!==e.length?(n.next(e[s++]),n.closed||i.add(this.schedule())):n.complete()}))),i})}function z(e,t){return t?function(e,t){if(null!=e){if(function(e){return e&&\"function\"==typeof e[_]}(e))return function(e,t){return new v(n=>{const i=new u;return i.add(t.schedule(()=>{const s=e[_]();i.add(s.subscribe({next(e){i.add(t.schedule(()=>n.next(e)))},error(e){i.add(t.schedule(()=>n.error(e)))},complete(){i.add(t.schedule(()=>n.complete()))}}))})),i})}(e,t);if(I(e))return function(e,t){return new v(n=>{const i=new u;return i.add(t.schedule(()=>e.then(e=>{i.add(t.schedule(()=>{n.next(e),i.add(t.schedule(()=>n.complete()))}))},e=>{i.add(t.schedule(()=>n.error(e)))}))),i})}(e,t);if(O(e))return N(e,t);if(function(e){return e&&\"function\"==typeof e[E]}(e)||\"string\"==typeof e)return function(e,t){if(!e)throw new Error(\"Iterable cannot be null\");return new v(n=>{const i=new u;let s;return i.add(()=>{s&&\"function\"==typeof s.return&&s.return()}),i.add(t.schedule(()=>{s=e[E](),i.add(t.schedule((function(){if(n.closed)return;let e,t;try{const n=s.next();e=n.value,t=n.done}catch(i){return void n.error(i)}t?n.complete():(n.next(e),this.schedule())})))})),i})}(e,t)}throw new TypeError((null!==e&&typeof e||e)+\" is not observable\")}(e,t):e instanceof v?e:new v(P(e))}function V(e,t,n=Number.POSITIVE_INFINITY){return\"function\"==typeof t?i=>i.pipe(V((n,i)=>z(e(n,i)).pipe(H((e,s)=>t(n,e,i,s))),n)):(\"number\"==typeof t&&(n=t),t=>t.lift(new W(e,n)))}class W{constructor(e,t=Number.POSITIVE_INFINITY){this.project=e,this.concurrent=t}call(e,t){return t.subscribe(new U(e,this.project,this.concurrent))}}class U extends R{constructor(e,t,n=Number.POSITIVE_INFINITY){super(e),this.project=t,this.concurrent=n,this.hasCompleted=!1,this.buffer=[],this.active=0,this.index=0}_next(e){this.active0?this._next(t.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()}}function $(e){return e}function B(e=Number.POSITIVE_INFINITY){return V($,e)}function q(e,t){return t?N(e,t):new v(D(e))}function G(...e){let t=Number.POSITIVE_INFINITY,n=null,i=e[e.length-1];return C(i)?(n=e.pop(),e.length>1&&\"number\"==typeof e[e.length-1]&&(t=e.pop())):\"number\"==typeof i&&(t=e.pop()),null===n&&1===e.length&&e[0]instanceof v?e[0]:B(t)(q(e,n))}function J(){return function(e){return e.lift(new K(e))}}class K{constructor(e){this.connectable=e}call(e,t){const{connectable:n}=this;n._refCount++;const i=new Z(e,n),s=t.subscribe(i);return i.closed||(i.connection=n.connect()),s}}class Z extends p{constructor(e,t){super(e),this.connectable=t}_unsubscribe(){const{connectable:e}=this;if(!e)return void(this.connection=null);this.connectable=null;const t=e._refCount;if(t<=0)return void(this.connection=null);if(e._refCount=t-1,t>1)return void(this.connection=null);const{connection:n}=this,i=e._connection;this.connection=null,!i||n&&i!==n||i.unsubscribe()}}class Q extends v{constructor(e,t){super(),this.source=e,this.subjectFactory=t,this._refCount=0,this._isComplete=!1}_subscribe(e){return this.getSubject().subscribe(e)}getSubject(){const e=this._subject;return e&&!e.isStopped||(this._subject=this.subjectFactory()),this._subject}connect(){let e=this._connection;return e||(this._isComplete=!1,e=this._connection=new u,e.add(this.source.subscribe(new ee(this.getSubject(),this))),e.closed&&(this._connection=null,e=u.EMPTY)),e}refCount(){return J()(this)}}const X=(()=>{const e=Q.prototype;return{operator:{value:null},_refCount:{value:0,writable:!0},_subject:{value:null,writable:!0},_connection:{value:null,writable:!0},_subscribe:{value:e._subscribe},_isComplete:{value:e._isComplete,writable:!0},getSubject:{value:e.getSubject},connect:{value:e.connect},refCount:{value:e.refCount}}})();class ee extends S{constructor(e,t){super(e),this.connectable=t}_error(e){this._unsubscribe(),super._error(e)}_complete(){this.connectable._isComplete=!0,this._unsubscribe(),super._complete()}_unsubscribe(){const e=this.connectable;if(e){this.connectable=null;const t=e._connection;e._refCount=0,e._subject=null,e._connection=null,t&&t.unsubscribe()}}}function te(e,t){return function(n){let i;if(i=\"function\"==typeof e?e:function(){return e},\"function\"==typeof t)return n.lift(new ne(i,t));const s=Object.create(n,X);return s.source=n,s.subjectFactory=i,s}}class ne{constructor(e,t){this.subjectFactory=e,this.selector=t}call(e,t){const{selector:n}=this,i=this.subjectFactory(),s=n(i).subscribe(e);return s.add(t.subscribe(i)),s}}function ie(){return new L}function se(){return e=>J()(te(ie)(e))}function re(e){return{toString:e}.toString()}function oe(e,t,n){return re(()=>{const i=function(e){return function(...t){if(e){const n=e(...t);for(const e in n)this[e]=n[e]}}}(t);function s(...e){if(this instanceof s)return i.apply(this,e),this;const t=new s(...e);return n.annotation=t,n;function n(e,n,i){const s=e.hasOwnProperty(\"__parameters__\")?e.__parameters__:Object.defineProperty(e,\"__parameters__\",{value:[]}).__parameters__;for(;s.length<=i;)s.push(null);return(s[i]=s[i]||[]).push(t),e}}return n&&(s.prototype=Object.create(n.prototype)),s.prototype.ngMetadataName=e,s.annotationCls=s,s})}const ae=oe(\"Inject\",e=>({token:e})),le=oe(\"Optional\"),ce=oe(\"Self\"),de=oe(\"SkipSelf\");var ue=function(e){return e[e.Default=0]=\"Default\",e[e.Host=1]=\"Host\",e[e.Self=2]=\"Self\",e[e.SkipSelf=4]=\"SkipSelf\",e[e.Optional=8]=\"Optional\",e}({});function he(e){for(let t in e)if(e[t]===he)return t;throw Error(\"Could not find renamed property on target object.\")}function me(e,t){for(const n in t)t.hasOwnProperty(n)&&!e.hasOwnProperty(n)&&(e[n]=t[n])}function pe(e){return{token:e.token,providedIn:e.providedIn||null,factory:e.factory,value:void 0}}function fe(e){return{factory:e.factory,providers:e.providers||[],imports:e.imports||[]}}function _e(e){return ge(e,e[be])||ge(e,e[Me])}function ge(e,t){return t&&t.token===e?t:null}function ye(e){return e&&(e.hasOwnProperty(ve)||e.hasOwnProperty(ke))?e[ve]:null}const be=he({\"\\u0275prov\":he}),ve=he({\"\\u0275inj\":he}),we=he({\"\\u0275provFallback\":he}),Me=he({ngInjectableDef:he}),ke=he({ngInjectorDef:he});function Se(e){if(\"string\"==typeof e)return e;if(Array.isArray(e))return\"[\"+e.map(Se).join(\", \")+\"]\";if(null==e)return\"\"+e;if(e.overriddenName)return`${e.overriddenName}`;if(e.name)return`${e.name}`;const t=e.toString();if(null==t)return\"\"+t;const n=t.indexOf(\"\\n\");return-1===n?t:t.substring(0,n)}function Le(e,t){return null==e||\"\"===e?null===t?\"\":t:null==t||\"\"===t?e:e+\" \"+t}const xe=he({__forward_ref__:he});function Ce(e){return e.__forward_ref__=Ce,e.toString=function(){return Se(this())},e}function Te(e){return De(e)?e():e}function De(e){return\"function\"==typeof e&&e.hasOwnProperty(xe)&&e.__forward_ref__===Ce}const Ye=\"undefined\"!=typeof globalThis&&globalThis,Ee=\"undefined\"!=typeof window&&window,Oe=\"undefined\"!=typeof self&&\"undefined\"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&self,Ie=\"undefined\"!=typeof global&&global,Pe=Ye||Ie||Ee||Oe,Ae=he({\"\\u0275cmp\":he}),Re=he({\"\\u0275dir\":he}),He=he({\"\\u0275pipe\":he}),je=he({\"\\u0275mod\":he}),Fe=he({\"\\u0275loc\":he}),Ne=he({\"\\u0275fac\":he}),ze=he({__NG_ELEMENT_ID__:he});class Ve{constructor(e,t){this._desc=e,this.ngMetadataName=\"InjectionToken\",this.\\u0275prov=void 0,\"number\"==typeof t?this.__NG_ELEMENT_ID__=t:void 0!==t&&(this.\\u0275prov=pe({token:this,providedIn:t.providedIn||\"root\",factory:t.factory}))}toString(){return`InjectionToken ${this._desc}`}}const We=new Ve(\"INJECTOR\",-1),Ue={},$e=/\\n/gm,Be=he({provide:String,useValue:he});let qe,Ge=void 0;function Je(e){const t=Ge;return Ge=e,t}function Ke(e){const t=qe;return qe=e,t}function Ze(e,t=ue.Default){if(void 0===Ge)throw new Error(\"inject() must be called from an injection context\");return null===Ge?et(e,void 0,t):Ge.get(e,t&ue.Optional?null:void 0,t)}function Qe(e,t=ue.Default){return(qe||Ze)(Te(e),t)}const Xe=Qe;function et(e,t,n){const i=_e(e);if(i&&\"root\"==i.providedIn)return void 0===i.value?i.value=i.factory():i.value;if(n&ue.Optional)return null;if(void 0!==t)return t;throw new Error(`Injector: NOT_FOUND [${Se(e)}]`)}function tt(e){const t=[];for(let n=0;nArray.isArray(e)?ot(e,t):t(e))}function at(e,t,n){t>=e.length?e.push(n):e.splice(t,0,n)}function lt(e,t){return t>=e.length-1?e.pop():e.splice(t,1)[0]}function ct(e,t){const n=[];for(let i=0;i=0?e[1|i]=n:(i=~i,function(e,t,n,i){let s=e.length;if(s==t)e.push(n,i);else if(1===s)e.push(i,e[0]),e[0]=n;else{for(s--,e.push(e[s-1],e[s]);s>t;)e[s]=e[s-2],s--;e[t]=n,e[t+1]=i}}(e,i,t,n)),i}function ut(e,t){const n=ht(e,t);if(n>=0)return e[1|n]}function ht(e,t){return function(e,t,n){let i=0,s=e.length>>1;for(;s!==i;){const n=i+(s-i>>1),r=e[n<<1];if(t===r)return n<<1;r>t?s=n:i=n+1}return~(s<<1)}(e,t)}const mt=function(){var e={OnPush:0,Default:1};return e[e.OnPush]=\"OnPush\",e[e.Default]=\"Default\",e}(),pt=function(){var e={Emulated:0,Native:1,None:2,ShadowDom:3};return e[e.Emulated]=\"Emulated\",e[e.Native]=\"Native\",e[e.None]=\"None\",e[e.ShadowDom]=\"ShadowDom\",e}(),ft={},_t=[];let gt=0;function yt(e){return re(()=>{const t=e.type,n=t.prototype,i={},s={type:t,providersResolver:null,decls:e.decls,vars:e.vars,factory:null,template:e.template||null,consts:e.consts||null,ngContentSelectors:e.ngContentSelectors,hostBindings:e.hostBindings||null,hostVars:e.hostVars||0,hostAttrs:e.hostAttrs||null,contentQueries:e.contentQueries||null,declaredInputs:i,inputs:null,outputs:null,exportAs:e.exportAs||null,onChanges:null,onInit:n.ngOnInit||null,doCheck:n.ngDoCheck||null,afterContentInit:n.ngAfterContentInit||null,afterContentChecked:n.ngAfterContentChecked||null,afterViewInit:n.ngAfterViewInit||null,afterViewChecked:n.ngAfterViewChecked||null,onDestroy:n.ngOnDestroy||null,onPush:e.changeDetection===mt.OnPush,directiveDefs:null,pipeDefs:null,selectors:e.selectors||_t,viewQuery:e.viewQuery||null,features:e.features||null,data:e.data||{},encapsulation:e.encapsulation||pt.Emulated,id:\"c\",styles:e.styles||_t,_:null,setInput:null,schemas:e.schemas||null,tView:null},r=e.directives,o=e.features,a=e.pipes;return s.id+=gt++,s.inputs=kt(e.inputs,i),s.outputs=kt(e.outputs),o&&o.forEach(e=>e(s)),s.directiveDefs=r?()=>(\"function\"==typeof r?r():r).map(bt):null,s.pipeDefs=a?()=>(\"function\"==typeof a?a():a).map(vt):null,s})}function bt(e){return Lt(e)||function(e){return e[Re]||null}(e)}function vt(e){return function(e){return e[He]||null}(e)}const wt={};function Mt(e){const t={type:e.type,bootstrap:e.bootstrap||_t,declarations:e.declarations||_t,imports:e.imports||_t,exports:e.exports||_t,transitiveCompileScopes:null,schemas:e.schemas||null,id:e.id||null};return null!=e.id&&re(()=>{wt[e.id]=e.type}),t}function kt(e,t){if(null==e)return ft;const n={};for(const i in e)if(e.hasOwnProperty(i)){let s=e[i],r=s;Array.isArray(s)&&(r=s[1],s=s[0]),n[s]=i,t&&(t[s]=r)}return n}const St=yt;function Lt(e){return e[Ae]||null}function xt(e,t){return e.hasOwnProperty(Ne)?e[Ne]:null}function Ct(e,t){const n=e[je]||null;if(!n&&!0===t)throw new Error(`Type ${Se(e)} does not have '\\u0275mod' property.`);return n}function Tt(e){return Array.isArray(e)&&\"object\"==typeof e[1]}function Dt(e){return Array.isArray(e)&&!0===e[1]}function Yt(e){return 0!=(8&e.flags)}function Et(e){return 2==(2&e.flags)}function Ot(e){return 1==(1&e.flags)}function It(e){return null!==e.template}function Pt(e){return 0!=(512&e[2])}let At=void 0;function Rt(){return void 0!==At?At:\"undefined\"!=typeof document?document:void 0}function Ht(e){return!!e.listen}const jt={createRenderer:(e,t)=>Rt()};function Ft(e){for(;Array.isArray(e);)e=e[0];return e}function Nt(e,t){return Ft(t[e+19])}function zt(e,t){return Ft(t[e.index])}function Vt(e,t){return e.data[t+19]}function Wt(e,t){return e[t+19]}function Ut(e,t){const n=t[e];return Tt(n)?n:n[0]}function $t(e){const t=function(e){return e.__ngContext__||null}(e);return t?Array.isArray(t)?t:t.lView:null}function Bt(e){return 4==(4&e[2])}function qt(e){return 128==(128&e[2])}function Gt(e,t){return null===e||null==t?null:e[t]}function Jt(e){e[18]=0}const Kt={lFrame:_n(null),bindingsEnabled:!0,checkNoChangesMode:!1};function Zt(){return Kt.bindingsEnabled}function Qt(){return Kt.lFrame.lView}function Xt(){return Kt.lFrame.tView}function en(e){Kt.lFrame.contextLView=e}function tn(){return Kt.lFrame.previousOrParentTNode}function nn(e,t){Kt.lFrame.previousOrParentTNode=e,Kt.lFrame.isParent=t}function sn(){return Kt.lFrame.isParent}function rn(){Kt.lFrame.isParent=!1}function on(){return Kt.checkNoChangesMode}function an(e){Kt.checkNoChangesMode=e}function ln(){return Kt.lFrame.bindingIndex++}function cn(e){const t=Kt.lFrame,n=t.bindingIndex;return t.bindingIndex=t.bindingIndex+e,n}function dn(e,t){const n=Kt.lFrame;n.bindingIndex=n.bindingRootIndex=e,n.currentDirectiveIndex=t}function un(){return Kt.lFrame.currentQueryIndex}function hn(e){Kt.lFrame.currentQueryIndex=e}function mn(e,t){const n=fn();Kt.lFrame=n,n.previousOrParentTNode=t,n.lView=e}function pn(e,t){const n=fn(),i=e[1];Kt.lFrame=n,n.previousOrParentTNode=t,n.lView=e,n.tView=i,n.contextLView=e,n.bindingIndex=i.bindingStartIndex}function fn(){const e=Kt.lFrame,t=null===e?null:e.child;return null===t?_n(e):t}function _n(e){const t={previousOrParentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:0,contextLView:null,elementDepthCount:0,currentNamespace:null,currentSanitizer:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:e,child:null};return null!==e&&(e.child=t),t}function gn(){const e=Kt.lFrame;return Kt.lFrame=e.parent,e.previousOrParentTNode=null,e.lView=null,e}const yn=gn;function bn(){const e=gn();e.isParent=!0,e.tView=null,e.selectedIndex=0,e.contextLView=null,e.elementDepthCount=0,e.currentDirectiveIndex=-1,e.currentNamespace=null,e.currentSanitizer=null,e.bindingRootIndex=-1,e.bindingIndex=-1,e.currentQueryIndex=0}function vn(){return Kt.lFrame.selectedIndex}function wn(e){Kt.lFrame.selectedIndex=e}function Mn(){const e=Kt.lFrame;return Vt(e.tView,e.selectedIndex)}function kn(){Kt.lFrame.currentNamespace=\"http://www.w3.org/2000/svg\"}function Sn(){Kt.lFrame.currentNamespace=null}function Ln(e,t){for(let n=t.directiveStart,i=t.directiveEnd;n=i)break}else t[o]<0&&(e[18]+=65536),(r>10>16&&(3&e[2])===t&&(e[2]+=1024,r.call(o)):r.call(o)}class En{constructor(e,t,n){this.factory=e,this.resolving=!1,this.canSeeViewProviders=t,this.injectImpl=n}}function On(e,t,n){const i=Ht(e);let s=0;for(;st){o=r-1;break}}}for(;r>16}function Nn(e,t){let n=Fn(e),i=t;for(;n>0;)i=i[15],n--;return i}function zn(e){return\"string\"==typeof e?e:null==e?\"\":\"\"+e}function Vn(e){return\"function\"==typeof e?e.name||e.toString():\"object\"==typeof e&&null!=e&&\"function\"==typeof e.type?e.type.name||e.type.toString():zn(e)}const Wn=(()=>(\"undefined\"!=typeof requestAnimationFrame&&requestAnimationFrame||setTimeout).bind(Pe))();function Un(e){return{name:\"window\",target:e.ownerDocument.defaultView}}function $n(e){return e instanceof Function?e():e}let Bn=!0;function qn(e){const t=Bn;return Bn=e,t}let Gn=0;function Jn(e,t){const n=Zn(e,t);if(-1!==n)return n;const i=t[1];i.firstCreatePass&&(e.injectorIndex=t.length,Kn(i.data,e),Kn(t,null),Kn(i.blueprint,null));const s=Qn(e,t),r=e.injectorIndex;if(Hn(s)){const e=jn(s),n=Nn(s,t),i=n[1].data;for(let s=0;s<8;s++)t[r+s]=n[e+s]|i[e+s]}return t[r+8]=s,r}function Kn(e,t){e.push(0,0,0,0,0,0,0,0,t)}function Zn(e,t){return-1===e.injectorIndex||e.parent&&e.parent.injectorIndex===e.injectorIndex||null==t[e.injectorIndex+8]?-1:e.injectorIndex}function Qn(e,t){if(e.parent&&-1!==e.parent.injectorIndex)return e.parent.injectorIndex;let n=t[6],i=1;for(;n&&-1===n.injectorIndex;)n=(t=t[15])?t[6]:null,i++;return n?n.injectorIndex|i<<16:-1}function Xn(e,t,n){!function(e,t,n){let i=\"string\"!=typeof n?n[ze]:n.charCodeAt(0)||0;null==i&&(i=n[ze]=Gn++);const s=255&i,r=1<0?255&t:t}(n);if(\"function\"==typeof s){mn(t,e);try{const e=s();if(null!=e||i&ue.Optional)return e;throw new Error(`No provider for ${Vn(n)}!`)}finally{yn()}}else if(\"number\"==typeof s){if(-1===s)return new ai(e,t);let r=null,o=Zn(e,t),a=-1,l=i&ue.Host?t[16][6]:null;for((-1===o||i&ue.SkipSelf)&&(a=-1===o?Qn(e,t):t[o+8],oi(i,!1)?(r=t[1],o=jn(a),t=Nn(a,t)):o=-1);-1!==o;){a=t[o+8];const e=t[1];if(ri(s,o,e.data)){const e=ni(o,t,n,r,i,l);if(e!==ti)return e}oi(i,t[1].data[o+8]===l)&&ri(s,o,t)?(r=e,o=jn(a),t=Nn(a,t)):o=-1}}}if(i&ue.Optional&&void 0===s&&(s=null),0==(i&(ue.Self|ue.Host))){const e=t[9],r=Ke(void 0);try{return e?e.get(n,s,i&ue.Optional):et(n,s,i&ue.Optional)}finally{Ke(r)}}if(i&ue.Optional)return s;throw new Error(`NodeInjector: NOT_FOUND [${Vn(n)}]`)}const ti={};function ni(e,t,n,i,s,r){const o=t[1],a=o.data[e+8],l=ii(a,o,n,null==i?Et(a)&&Bn:i!=o&&3===a.type,s&ue.Host&&r===a);return null!==l?si(t,o,l,a):ti}function ii(e,t,n,i,s){const r=e.providerIndexes,o=t.data,a=65535&r,l=e.directiveStart,c=r>>16,d=s?a+c:e.directiveEnd;for(let u=i?a:a+c;u=l&&e.type===n)return u}if(s){const e=o[l];if(e&&It(e)&&e.type===n)return l}return null}function si(e,t,n,i){let s=e[n];const r=t.data;if(s instanceof En){const o=s;if(o.resolving)throw new Error(`Circular dep for ${Vn(r[n])}`);const a=qn(o.canSeeViewProviders);let l;o.resolving=!0,o.injectImpl&&(l=Ke(o.injectImpl)),mn(e,i);try{s=e[n]=o.factory(void 0,r,e,i),t.firstCreatePass&&n>=i.directiveStart&&function(e,t,n){const{onChanges:i,onInit:s,doCheck:r}=t;i&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,i),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,i)),s&&(n.preOrderHooks||(n.preOrderHooks=[])).push(-e,s),r&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,r),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,r))}(n,r[n],t)}finally{o.injectImpl&&Ke(l),qn(a),o.resolving=!1,yn()}}return s}function ri(e,t,n){const i=64&e,s=32&e;let r;return r=128&e?i?s?n[t+7]:n[t+6]:s?n[t+5]:n[t+4]:i?s?n[t+3]:n[t+2]:s?n[t+1]:n[t],!!(r&1<{const t=Object.getPrototypeOf(e.prototype).constructor,n=t[Ne]||function e(t){const n=t;if(De(t))return()=>{const t=e(Te(n));return t?t():null};let i=xt(n);if(null===i){const e=ye(n);i=e&&e.factory}return i||null}(t);return null!==n?n:e=>new e})}function ci(e){return e.ngDebugContext}function di(e){return e.ngOriginalError}function ui(e,...t){e.error(...t)}class hi{constructor(){this._console=console}handleError(e){const t=this._findOriginalError(e),n=this._findContext(e),i=function(e){return e.ngErrorLogger||ui}(e);i(this._console,\"ERROR\",e),t&&i(this._console,\"ORIGINAL ERROR\",t),n&&i(this._console,\"ERROR CONTEXT\",n)}_findContext(e){return e?ci(e)?ci(e):this._findContext(di(e)):null}_findOriginalError(e){let t=di(e);for(;t&&di(t);)t=di(t);return t}}class mi{constructor(e){this.changingThisBreaksApplicationSecurity=e}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity}`+\" (see http://g.co/ng/security#xss)\"}}class pi extends mi{getTypeName(){return\"HTML\"}}class fi extends mi{getTypeName(){return\"Style\"}}class _i extends mi{getTypeName(){return\"Script\"}}class gi extends mi{getTypeName(){return\"URL\"}}class yi extends mi{getTypeName(){return\"ResourceURL\"}}function bi(e){return e instanceof mi?e.changingThisBreaksApplicationSecurity:e}function vi(e,t){const n=wi(e);if(null!=n&&n!==t){if(\"ResourceURL\"===n&&\"URL\"===t)return!0;throw new Error(`Required a safe ${t}, got a ${n} (see http://g.co/ng/security#xss)`)}return n===t}function wi(e){return e instanceof mi&&e.getTypeName()||null}let Mi=!0,ki=!1;function Si(){return ki=!0,Mi}class Li{constructor(e){this.defaultDoc=e,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument(\"sanitization-inert\");let t=this.inertDocument.body;if(null==t){const e=this.inertDocument.createElement(\"html\");this.inertDocument.appendChild(e),t=this.inertDocument.createElement(\"body\"),e.appendChild(t)}t.innerHTML='',!t.querySelector||t.querySelector(\"svg\")?(t.innerHTML='

',this.getInertBodyElement=t.querySelector&&t.querySelector(\"svg img\")&&function(){try{return!!window.DOMParser}catch(e){return!1}}()?this.getInertBodyElement_DOMParser:this.getInertBodyElement_InertDocument):this.getInertBodyElement=this.getInertBodyElement_XHR}getInertBodyElement_XHR(e){e=\"\"+e+\"\";try{e=encodeURI(e)}catch(i){return null}const t=new XMLHttpRequest;t.responseType=\"document\",t.open(\"GET\",\"data:text/html;charset=utf-8,\"+e,!1),t.send(void 0);const n=t.response.body;return n.removeChild(n.firstChild),n}getInertBodyElement_DOMParser(e){e=\"\"+e+\"\";try{const t=(new window.DOMParser).parseFromString(e,\"text/html\").body;return t.removeChild(t.firstChild),t}catch(t){return null}}getInertBodyElement_InertDocument(e){const t=this.inertDocument.createElement(\"template\");if(\"content\"in t)return t.innerHTML=e,t;const n=this.inertDocument.createElement(\"body\");return n.innerHTML=e,this.defaultDoc.documentMode&&this.stripCustomNsAttrs(n),n}stripCustomNsAttrs(e){const t=e.attributes;for(let i=t.length-1;0Ti(e.trim())).join(\", \")}function Yi(e){const t={};for(const n of e.split(\",\"))t[n]=!0;return t}function Ei(...e){const t={};for(const n of e)for(const e in n)n.hasOwnProperty(e)&&(t[e]=!0);return t}const Oi=Yi(\"area,br,col,hr,img,wbr\"),Ii=Yi(\"colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr\"),Pi=Yi(\"rp,rt\"),Ai=Ei(Pi,Ii),Ri=Ei(Oi,Ei(Ii,Yi(\"address,article,aside,blockquote,caption,center,del,details,dialog,dir,div,dl,figure,figcaption,footer,h1,h2,h3,h4,h5,h6,header,hgroup,hr,ins,main,map,menu,nav,ol,pre,section,summary,table,ul\")),Ei(Pi,Yi(\"a,abbr,acronym,audio,b,bdi,bdo,big,br,cite,code,del,dfn,em,font,i,img,ins,kbd,label,map,mark,picture,q,ruby,rp,rt,s,samp,small,source,span,strike,strong,sub,sup,time,track,tt,u,var,video\")),Ai),Hi=Yi(\"background,cite,href,itemtype,longdesc,poster,src,xlink:href\"),ji=Yi(\"srcset\"),Fi=Ei(Hi,ji,Yi(\"abbr,accesskey,align,alt,autoplay,axis,bgcolor,border,cellpadding,cellspacing,class,clear,color,cols,colspan,compact,controls,coords,datetime,default,dir,download,face,headers,height,hidden,hreflang,hspace,ismap,itemscope,itemprop,kind,label,lang,language,loop,media,muted,nohref,nowrap,open,preload,rel,rev,role,rows,rowspan,rules,scope,scrolling,shape,size,sizes,span,srclang,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width\"),Yi(\"aria-activedescendant,aria-atomic,aria-autocomplete,aria-busy,aria-checked,aria-colcount,aria-colindex,aria-colspan,aria-controls,aria-current,aria-describedby,aria-details,aria-disabled,aria-dropeffect,aria-errormessage,aria-expanded,aria-flowto,aria-grabbed,aria-haspopup,aria-hidden,aria-invalid,aria-keyshortcuts,aria-label,aria-labelledby,aria-level,aria-live,aria-modal,aria-multiline,aria-multiselectable,aria-orientation,aria-owns,aria-placeholder,aria-posinset,aria-pressed,aria-readonly,aria-relevant,aria-required,aria-roledescription,aria-rowcount,aria-rowindex,aria-rowspan,aria-selected,aria-setsize,aria-sort,aria-valuemax,aria-valuemin,aria-valuenow,aria-valuetext\")),Ni=Yi(\"script,style,template\");class zi{constructor(){this.sanitizedSomething=!1,this.buf=[]}sanitizeChildren(e){let t=e.firstChild,n=!0;for(;t;)if(t.nodeType===Node.ELEMENT_NODE?n=this.startElement(t):t.nodeType===Node.TEXT_NODE?this.chars(t.nodeValue):this.sanitizedSomething=!0,n&&t.firstChild)t=t.firstChild;else for(;t;){t.nodeType===Node.ELEMENT_NODE&&this.endElement(t);let e=this.checkClobberedElement(t,t.nextSibling);if(e){t=e;break}t=this.checkClobberedElement(t,t.parentNode)}return this.buf.join(\"\")}startElement(e){const t=e.nodeName.toLowerCase();if(!Ri.hasOwnProperty(t))return this.sanitizedSomething=!0,!Ni.hasOwnProperty(t);this.buf.push(\"<\"),this.buf.push(t);const n=e.attributes;for(let i=0;i\"),!0}endElement(e){const t=e.nodeName.toLowerCase();Ri.hasOwnProperty(t)&&!Oi.hasOwnProperty(t)&&(this.buf.push(\"\"))}chars(e){this.buf.push(Ui(e))}checkClobberedElement(e,t){if(t&&(e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error(`Failed to sanitize html because the element is clobbered: ${e.outerHTML}`);return t}}const Vi=/[\\uD800-\\uDBFF][\\uDC00-\\uDFFF]/g,Wi=/([^\\#-~ |!])/g;function Ui(e){return e.replace(/&/g,\"&\").replace(Vi,(function(e){return\"&#\"+(1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320)+65536)+\";\"})).replace(Wi,(function(e){return\"&#\"+e.charCodeAt(0)+\";\"})).replace(//g,\">\")}let $i;function Bi(e,t){let n=null;try{$i=$i||new Li(e);let i=t?String(t):\"\";n=$i.getInertBodyElement(i);let s=5,r=i;do{if(0===s)throw new Error(\"Failed to sanitize html because the input is unstable\");s--,i=r,r=n.innerHTML,n=$i.getInertBodyElement(i)}while(i!==r);const o=new zi,a=o.sanitizeChildren(qi(n)||n);return Si()&&o.sanitizedSomething&&console.warn(\"WARNING: sanitizing HTML stripped some content, see http://g.co/ng/security#xss\"),a}finally{if(n){const e=qi(n)||n;for(;e.firstChild;)e.removeChild(e.firstChild)}}}function qi(e){return\"content\"in e&&function(e){return e.nodeType===Node.ELEMENT_NODE&&\"TEMPLATE\"===e.nodeName}(e)?e.content:null}const Gi=function(){var e={NONE:0,HTML:1,STYLE:2,SCRIPT:3,URL:4,RESOURCE_URL:5};return e[e.NONE]=\"NONE\",e[e.HTML]=\"HTML\",e[e.STYLE]=\"STYLE\",e[e.SCRIPT]=\"SCRIPT\",e[e.URL]=\"URL\",e[e.RESOURCE_URL]=\"RESOURCE_URL\",e}(),Ji=new RegExp(\"^([-,.\\\"'%_!# a-zA-Z0-9]+|(?:(?:matrix|translate|scale|rotate|skew|perspective)(?:X|Y|Z|3d)?|(?:rgb|hsl)a?|(?:repeating-)?(?:linear|radial)-gradient|(?:attr|calc|var))\\\\([-0-9.%, #a-zA-Z]+\\\\))$\",\"g\"),Ki=/^url\\(([^)]+)\\)$/;function Zi(e){if(!(e=String(e).trim()))return\"\";const t=e.match(Ki);return t&&Ti(t[1])===t[1]||e.match(Ji)&&function(e){let t=!0,n=!0;for(let i=0;ir?\"\":s[d+1].toLowerCase();const t=8&i?e:null;if(t&&-1!==os(t,c,0)||2&i&&c!==e){if(ds(i))return!1;o=!0}}}}else{if(!o&&!ds(i)&&!ds(l))return!1;if(o&&ds(l))continue;o=!1,i=l|1&i}}return ds(i)||o}function ds(e){return 0==(1&e)}function us(e,t,n,i){if(null===t)return-1;let s=0;if(i||!n){let n=!1;for(;s-1)for(n++;n0?'=\"'+t+'\"':\"\")+\"]\"}else 8&i?s+=\".\"+o:4&i&&(s+=\" \"+o);else\"\"===s||ds(o)||(t+=ps(r,s),s=\"\"),i=o,r=r||!ds(i);n++}return\"\"!==s&&(t+=ps(r,s)),t}const _s={};function gs(e){const t=e[3];return Dt(t)?t[3]:t}function ys(e){bs(Xt(),Qt(),vn()+e,on())}function bs(e,t,n,i){if(!i)if(3==(3&t[2])){const i=e.preOrderCheckHooks;null!==i&&xn(t,i,n)}else{const i=e.preOrderHooks;null!==i&&Cn(t,i,0,n)}wn(n)}const vs={marker:\"element\"},ws={marker:\"comment\"};function Ms(e,t){return e<<17|t<<2}function ks(e){return e>>17&32767}function Ss(e){return 2|e}function Ls(e){return(131068&e)>>2}function xs(e,t){return-131069&e|t<<2}function Cs(e){return 1|e}function Ts(e,t){const n=e.contentQueries;if(null!==n)for(let i=0;i>1==-1){for(let e=9;e19&&bs(e,t,0,on()),n(i,s)}finally{wn(r)}}function Rs(e,t,n){if(Yt(t)){const i=t.directiveEnd;for(let s=t.directiveStart;sPromise.resolve(null))();function mr(e){return e[7]||(e[7]=[])}function pr(e){return e.cleanup||(e.cleanup=[])}function fr(e,t){return function(e){for(;Array.isArray(e);){if(\"object\"==typeof e[1])return e;e=e[0]}return null}(t[e.index])[11]}function _r(e,t){const n=e[9],i=n?n.get(hi,null):null;i&&i.handleError(t)}function gr(e,t,n,i,s){for(let r=0;r0&&(e[n-1][4]=i[4]);const r=lt(e,9+t);kr(i[1],i,!1,null);const o=r[5];null!==o&&o.detachView(r[1]),i[3]=null,i[4]=null,i[2]&=-129}return i}function xr(e,t){if(!(256&t[2])){const n=t[11];Ht(n)&&n.destroyNode&&Fr(e,t,n,3,null,null),function(e){let t=e[13];if(!t)return Tr(e[1],e);for(;t;){let n=null;if(Tt(t))n=t[13];else{const e=t[9];e&&(n=e)}if(!n){for(;t&&!t[4]&&t!==e;)Tt(t)&&Tr(t[1],t),t=Cr(t,e);null===t&&(t=e),Tt(t)&&Tr(t[1],t),n=t&&t[4]}t=n}}(t)}}function Cr(e,t){let n;return Tt(e)&&(n=e[6])&&2===n.type?br(n,e):e[3]===t?null:e[3]}function Tr(e,t){if(!(256&t[2])){t[2]&=-129,t[2]|=256,function(e,t){let n;if(null!=e&&null!=(n=e.destroyHooks))for(let i=0;i=0?e[a]():e[-a].unsubscribe(),i+=2}else n[i].call(e[n[i+1]]);t[7]=null}}(e,t);const n=t[6];n&&3===n.type&&Ht(t[11])&&t[11].destroy();const i=t[17];if(null!==i&&Dt(t[3])){i!==t[3]&&Sr(i,t);const n=t[5];null!==n&&n.detachView(e)}}}function Dr(e,t,n){let i=t.parent;for(;null!=i&&(4===i.type||5===i.type);)i=(t=i).parent;if(null==i){const e=n[6];return 2===e.type?vr(e,n):n[0]}if(t&&5===t.type&&4&t.flags)return zt(t,n).parentNode;if(2&i.flags){const t=e.data,n=t[t[i.index].directiveStart].encapsulation;if(n!==pt.ShadowDom&&n!==pt.Native)return null}return zt(i,n)}function Yr(e,t,n,i){Ht(e)?e.insertBefore(t,n,i):t.insertBefore(n,i,!0)}function Er(e,t,n){Ht(e)?e.appendChild(t,n):t.appendChild(n)}function Or(e,t,n,i){null!==i?Yr(e,t,n,i):Er(e,t,n)}function Ir(e,t){return Ht(e)?e.parentNode(t):t.parentNode}function Pr(e,t){if(2===e.type){const n=br(e,t);return null===n?null:Rr(n.indexOf(t,9)-9,n)}return 4===e.type||5===e.type?zt(e,t):null}function Ar(e,t,n,i){const s=Dr(e,i,t);if(null!=s){const e=t[11],r=Pr(i.parent||t[6],t);if(Array.isArray(n))for(let t=0;t-1&&this._viewContainerRef.detach(e),this._viewContainerRef=null}xr(this._lView[1],this._lView)}onDestroy(e){var t,n,i;t=this._lView[1],i=e,mr(n=this._lView).push(i),t.firstCreatePass&&pr(t).push(n[7].length-1,null)}markForCheck(){lr(this._cdRefInjectingView||this._lView)}detach(){this._lView[2]&=-129}reattach(){this._lView[2]|=128}detectChanges(){cr(this._lView[1],this._lView,this.context)}checkNoChanges(){!function(e,t,n){an(!0);try{cr(e,t,n)}finally{an(!1)}}(this._lView[1],this._lView,this.context)}attachToViewContainerRef(e){if(this._appRef)throw new Error(\"This view is already attached directly to the ApplicationRef!\");this._viewContainerRef=e}detachFromAppRef(){var e;this._appRef=null,Fr(this._lView[1],e=this._lView,e[11],2,null,null)}attachToAppRef(e){if(this._viewContainerRef)throw new Error(\"This view is already attached to a ViewContainer!\");this._appRef=e}}class $r extends Ur{constructor(e){super(e),this._view=e}detectChanges(){dr(this._view)}checkNoChanges(){!function(e){an(!0);try{dr(e)}finally{an(!1)}}(this._view)}get context(){return null}}let Br,qr,Gr;function Jr(e,t,n){return Br||(Br=class extends e{}),new Br(zt(t,n))}function Kr(e,t,n,i){return qr||(qr=class extends e{constructor(e,t,n){super(),this._declarationView=e,this._declarationTContainer=t,this.elementRef=n}createEmbeddedView(e){const t=this._declarationTContainer.tViews,n=Ys(this._declarationView,t,e,16,null,t.node);n[17]=this._declarationView[this._declarationTContainer.index];const i=this._declarationView[5];null!==i&&(n[5]=i.createEmbeddedView(t)),Os(t,n,e);const s=new Ur(n);return s._tViewNode=n[6],s}}),0===n.type?new qr(i,n,Jr(t,n,i)):null}function Zr(e,t,n,i){let s;Gr||(Gr=class extends e{constructor(e,t,n){super(),this._lContainer=e,this._hostTNode=t,this._hostView=n}get element(){return Jr(t,this._hostTNode,this._hostView)}get injector(){return new ai(this._hostTNode,this._hostView)}get parentInjector(){const e=Qn(this._hostTNode,this._hostView),t=Nn(e,this._hostView),n=function(e,t,n){if(n.parent&&-1!==n.parent.injectorIndex){const e=n.parent.injectorIndex;let t=n.parent;for(;null!=t.parent&&e==t.parent.injectorIndex;)t=t.parent;return t}let i=Fn(e),s=t,r=t[6];for(;i>1;)s=s[15],r=s[6],i--;return r}(e,this._hostView,this._hostTNode);return Hn(e)&&null!=n?new ai(n,t):new ai(null,this._hostView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(e){return null!==this._lContainer[8]&&this._lContainer[8][e]||null}get length(){return this._lContainer.length-9}createEmbeddedView(e,t,n){const i=e.createEmbeddedView(t||{});return this.insert(i,n),i}createComponent(e,t,n,i,s){const r=n||this.parentInjector;if(!s&&null==e.ngModule&&r){const e=r.get(it,null);e&&(s=e)}const o=e.create(r,i,void 0,s);return this.insert(o.hostView,t),o}insert(e,t){const n=e._lView,i=n[1];if(e.destroyed)throw new Error(\"Cannot insert a destroyed View in a ViewContainer!\");if(this.allocateContainerIfNeeded(),Dt(n[3])){const t=this.indexOf(e);if(-1!==t)this.detach(t);else{const t=n[3],i=new Gr(t,t[6],t[3]);i.detach(i.indexOf(e))}}const s=this._adjustIndex(t);return function(e,t,n,i){const s=9+i,r=n.length;i>0&&(n[s-1][4]=t),i{class e{}return e.__NG_ELEMENT_ID__=()=>Xr(),e})();const Xr=function(e=!1){return function(e,t,n){if(!n&&Et(e)){const n=Ut(e.index,t);return new Ur(n,n)}return 3===e.type||0===e.type||4===e.type||5===e.type?new Ur(t[16],t):null}(tn(),Qt(),e)},eo=new Ve(\"Set Injector scope.\"),to={},no={},io=[];let so=void 0;function ro(){return void 0===so&&(so=new nt),so}function oo(e,t=null,n=null,i){return new ao(e,n,t||ro(),i)}class ao{constructor(e,t,n,i=null){this.parent=n,this.records=new Map,this.injectorDefTypes=new Set,this.onDestroy=new Set,this._destroyed=!1;const s=[];t&&ot(t,n=>this.processProvider(n,e,t)),ot([e],e=>this.processInjectorType(e,[],s)),this.records.set(We,uo(void 0,this));const r=this.records.get(eo);this.scope=null!=r?r.value:null,this.source=i||(\"object\"==typeof e?null:Se(e))}get destroyed(){return this._destroyed}destroy(){this.assertNotDestroyed(),this._destroyed=!0;try{this.onDestroy.forEach(e=>e.ngOnDestroy())}finally{this.records.clear(),this.onDestroy.clear(),this.injectorDefTypes.clear()}}get(e,t=Ue,n=ue.Default){this.assertNotDestroyed();const i=Je(this);try{if(!(n&ue.SkipSelf)){let t=this.records.get(e);if(void 0===t){const n=(\"function\"==typeof(s=e)||\"object\"==typeof s&&s instanceof Ve)&&_e(e);t=n&&this.injectableDefInScope(n)?uo(lo(e),to):null,this.records.set(e,t)}if(null!=t)return this.hydrate(e,t)}return(n&ue.Self?ro():this.parent).get(e,t=n&ue.Optional&&t===Ue?null:t)}catch(r){if(\"NullInjectorError\"===r.name){if((r.ngTempTokenPath=r.ngTempTokenPath||[]).unshift(Se(e)),i)throw r;return function(e,t,n,i){const s=e.ngTempTokenPath;throw t.__source&&s.unshift(t.__source),e.message=function(e,t,n,i=null){e=e&&\"\\n\"===e.charAt(0)&&\"\\u0275\"==e.charAt(1)?e.substr(2):e;let s=Se(t);if(Array.isArray(t))s=t.map(Se).join(\" -> \");else if(\"object\"==typeof t){let e=[];for(let n in t)if(t.hasOwnProperty(n)){let i=t[n];e.push(n+\":\"+(\"string\"==typeof i?JSON.stringify(i):Se(i)))}s=`{${e.join(\", \")}}`}return`${n}${i?\"(\"+i+\")\":\"\"}[${s}]: ${e.replace($e,\"\\n \")}`}(\"\\n\"+e.message,s,n,i),e.ngTokenPath=s,e.ngTempTokenPath=null,e}(r,e,\"R3InjectorError\",this.source)}throw r}finally{Je(i)}var s}_resolveInjectorDefTypes(){this.injectorDefTypes.forEach(e=>this.get(e))}toString(){const e=[];return this.records.forEach((t,n)=>e.push(Se(n))),`R3Injector[${e.join(\", \")}]`}assertNotDestroyed(){if(this._destroyed)throw new Error(\"Injector has already been destroyed.\")}processInjectorType(e,t,n){if(!(e=Te(e)))return!1;let i=ye(e);const s=null==i&&e.ngModule||void 0,r=void 0===s?e:s,o=-1!==n.indexOf(r);if(void 0!==s&&(i=ye(s)),null==i)return!1;if(null!=i.imports&&!o){let e;n.push(r);try{ot(i.imports,i=>{this.processInjectorType(i,t,n)&&(void 0===e&&(e=[]),e.push(i))})}finally{}if(void 0!==e)for(let t=0;tthis.processProvider(e,n,i||io))}}this.injectorDefTypes.add(r),this.records.set(r,uo(i.factory,to));const a=i.providers;if(null!=a&&!o){const t=e;ot(a,e=>this.processProvider(e,t,a))}return void 0!==s&&void 0!==e.providers}processProvider(e,t,n){let i=mo(e=Te(e))?e:Te(e&&e.provide);const s=function(e,t,n){return ho(e)?uo(void 0,e.useValue):uo(co(e,t,n),to)}(e,t,n);if(mo(e)||!0!==e.multi){const e=this.records.get(i);e&&void 0!==e.multi&&rs()}else{let t=this.records.get(i);t?void 0===t.multi&&rs():(t=uo(void 0,to,!0),t.factory=()=>tt(t.multi),this.records.set(i,t)),i=e,t.multi.push(e)}this.records.set(i,s)}hydrate(e,t){var n;return t.value===no?function(e){throw new Error(`Cannot instantiate cyclic dependency! ${e}`)}(Se(e)):t.value===to&&(t.value=no,t.value=t.factory()),\"object\"==typeof t.value&&t.value&&null!==(n=t.value)&&\"object\"==typeof n&&\"function\"==typeof n.ngOnDestroy&&this.onDestroy.add(t.value),t.value}injectableDefInScope(e){return!!e.providedIn&&(\"string\"==typeof e.providedIn?\"any\"===e.providedIn||e.providedIn===this.scope:this.injectorDefTypes.has(e.providedIn))}}function lo(e){const t=_e(e),n=null!==t?t.factory:xt(e);if(null!==n)return n;const i=ye(e);if(null!==i)return i.factory;if(e instanceof Ve)throw new Error(`Token ${Se(e)} is missing a \\u0275prov definition.`);if(e instanceof Function)return function(e){const t=e.length;if(t>0){const n=ct(t,\"?\");throw new Error(`Can't resolve all parameters for ${Se(e)}: (${n.join(\", \")}).`)}const n=function(e){const t=e&&(e[be]||e[Me]||e[we]&&e[we]());if(t){const n=function(e){if(e.hasOwnProperty(\"name\"))return e.name;const t=(\"\"+e).match(/^function\\s*([^\\s(]+)/);return null===t?\"\":t[1]}(e);return console.warn(`DEPRECATED: DI is instantiating a token \"${n}\" that inherits its @Injectable decorator but does not provide one itself.\\n`+`This will become an error in v10. Please add @Injectable() to the \"${n}\" class.`),t}return null}(e);return null!==n?()=>n.factory(e):()=>new e}(e);throw new Error(\"unreachable\")}function co(e,t,n){let i=void 0;if(mo(e)){const t=Te(e);return xt(t)||lo(t)}if(ho(e))i=()=>Te(e.useValue);else if((s=e)&&s.useFactory)i=()=>e.useFactory(...tt(e.deps||[]));else if(function(e){return!(!e||!e.useExisting)}(e))i=()=>Qe(Te(e.useExisting));else{const s=Te(e&&(e.useClass||e.provide));if(s||function(e,t,n){let i=\"\";throw e&&t&&(i=` - only instances of Provider and Type are allowed, got: [${t.map(e=>e==n?\"?\"+n+\"?\":\"...\").join(\", \")}]`),new Error(`Invalid provider for the NgModule '${Se(e)}'`+i)}(t,n,e),!function(e){return!!e.deps}(e))return xt(s)||lo(s);i=()=>new s(...tt(e.deps))}var s;return i}function uo(e,t,n=!1){return{factory:e,value:t,multi:n?[]:void 0}}function ho(e){return null!==e&&\"object\"==typeof e&&Be in e}function mo(e){return\"function\"==typeof e}const po=function(e,t,n){return function(e,t=null,n=null,i){const s=oo(e,t,n,i);return s._resolveInjectorDefTypes(),s}({name:n},t,e,n)};let fo=(()=>{class e{static create(e,t){return Array.isArray(e)?po(e,t,\"\"):po(e.providers,e.parent,e.name||\"\")}}return e.THROW_IF_NOT_FOUND=Ue,e.NULL=new nt,e.\\u0275prov=pe({token:e,providedIn:\"any\",factory:()=>Qe(We)}),e.__NG_ELEMENT_ID__=-1,e})();const _o=new Ve(\"AnalyzeForEntryComponents\");let go=new Map;const yo=new Set;function bo(e){return\"string\"==typeof e?e:e.text()}function vo(e,t){let n=e.styles,i=e.classes,s=0;for(let r=0;ra(Ft(e[i.index])).target:i.index;if(Ht(n)){let o=null;if(!a&&l&&(o=function(e,t,n,i){const s=e.cleanup;if(null!=s)for(let r=0;rn?e[n]:null}\"string\"==typeof e&&(r+=2)}return null}(e,t,s,i.index)),null!==o)(o.__ngLastListenerFn__||o).__ngNextListenerFn__=r,o.__ngLastListenerFn__=r,u=!1;else{r=Go(i,t,r,!1);const e=n.listen(m.name||p,s,r);d.push(r,e),c&&c.push(s,_,f,f+1)}}else r=Go(i,t,r,!0),p.addEventListener(s,r,o),d.push(r),c&&c.push(s,_,f,o)}const h=i.outputs;let m;if(u&&null!==h&&(m=h[s])){const e=m.length;if(e)for(let n=0;n0;)t=t[15],e--;return t}(e,Kt.lFrame.contextLView))[8]}(e)}function Ko(e,t){let n=null;const i=function(e){const t=e.attrs;if(null!=t){const e=t.indexOf(5);if(0==(1&e))return t[e+1]}return null}(e);for(let s=0;s=0}const oa={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function aa(e){return e.substring(oa.key,oa.keyEnd)}function la(e,t){const n=oa.textEnd;return n===t?-1:(t=oa.keyEnd=function(e,t,n){for(;t32;)t++;return t}(e,oa.key=t,n),ca(e,t,n))}function ca(e,t,n){for(;t=0;n=la(t,n))dt(e,aa(t),!0)}function pa(e,t,n,i){const s=Qt(),r=Xt(),o=cn(2);if(r.firstUpdatePass&&ga(r,e,o,i),t!==_s&&xo(s,o,t)){let a;null==n&&(a=function(){const e=Kt.lFrame;return null===e?null:e.currentSanitizer}())&&(n=a),va(r,r.data[vn()+19],s,s[11],e,s[o+1]=function(e,t){return null==e||(\"function\"==typeof t?e=t(e):\"string\"==typeof t?e+=t:\"object\"==typeof e&&(e=Se(bi(e)))),e}(t,n),i,o)}}function fa(e,t,n,i){const s=Xt(),r=cn(2);s.firstUpdatePass&&ga(s,null,r,i);const o=Qt();if(n!==_s&&xo(o,r,n)){const a=s.data[vn()+19];if(ka(a,i)&&!_a(s,r)){let e=i?a.classes:a.styles;null!==e&&(n=Le(e,n||\"\")),Ao(s,a,o,n,i)}else!function(e,t,n,i,s,r,o,a){s===_s&&(s=ia);let l=0,c=0,d=0=e.expandoStartIndex}function ga(e,t,n,i){const s=e.data;if(null===s[n+1]){const r=s[vn()+19],o=_a(e,n);ka(r,i)&&null===t&&!o&&(t=!1),t=function(e,t,n,i){const s=function(e){const t=Kt.lFrame.currentDirectiveIndex;return-1===t?null:e[t]}(e);let r=i?t.residualClasses:t.residualStyles;if(null===s)0===(i?t.classBindings:t.styleBindings)&&(n=ba(n=ya(null,e,t,n,i),t.attrs,i),r=null);else{const o=t.directiveStylingLast;if(-1===o||e[o]!==s)if(n=ya(s,e,t,n,i),null===r){let n=function(e,t,n){const i=n?t.classBindings:t.styleBindings;if(0!==Ls(i))return e[ks(i)]}(e,t,i);void 0!==n&&Array.isArray(n)&&(n=ya(null,e,t,n[1],i),n=ba(n,t.attrs,i),function(e,t,n,i){e[ks(n?t.classBindings:t.styleBindings)]=i}(e,t,i,n))}else r=function(e,t,n){let i=void 0;const s=t.directiveEnd;for(let r=1+t.directiveStylingLast;r0)&&(d=!0)}else c=n;if(s)if(0!==l){const t=ks(e[a+1]);e[i+1]=Ms(t,a),0!==t&&(e[t+1]=xs(e[t+1],i)),e[a+1]=131071&e[a+1]|i<<17}else e[i+1]=Ms(a,0),0!==a&&(e[a+1]=xs(e[a+1],i)),a=i;else e[i+1]=Ms(l,0),0===a?a=i:e[l+1]=xs(e[l+1],i),l=i;d&&(e[i+1]=Ss(e[i+1])),sa(e,c,i,!0),sa(e,c,i,!1),function(e,t,n,i,s){const r=s?e.residualClasses:e.residualStyles;null!=r&&\"string\"==typeof t&&ht(r,t)>=0&&(n[i+1]=Cs(n[i+1]))}(t,c,e,i,r),o=Ms(a,l),r?t.classBindings=o:t.styleBindings=o}(s,r,t,n,o,i)}}function ya(e,t,n,i,s){let r=null;const o=n.directiveEnd;let a=n.directiveStylingLast;for(-1===a?a=n.directiveStart:a++;a0;){const t=e[s],r=Array.isArray(t),l=r?t[1]:t,c=null===l;let d=n[s+1];d===_s&&(d=c?ia:void 0);let u=c?ut(d,i):l===i?d:void 0;if(r&&!Ma(u)&&(u=ut(t,i)),Ma(u)&&(a=u,o))return a;const h=e[s+1];s=o?ks(h):Ls(h)}if(null!==t){let e=r?t.residualClasses:t.residualStyles;null!=e&&(a=ut(e,i))}return a}function Ma(e){return void 0!==e}function ka(e,t){return 0!=(e.flags&(t?16:32))}function Sa(e,t=\"\"){const n=Qt(),i=Xt(),s=e+19,r=i.firstCreatePass?Es(i,n[6],e,3,null,null):i.data[s],o=n[s]=Mr(t,n[11]);Ar(i,n,o,r),nn(r,!1)}function La(e){return xa(\"\",e,\"\"),La}function xa(e,t,n){const i=Qt(),s=To(i,e,t,n);return s!==_s&&yr(i,vn(),s),xa}function Ca(e,t,n){const i=Qt();return xo(i,ln(),t)&&Ws(Xt(),Mn(),i,e,t,i[11],n,!0),Ca}function Ta(e,t,n){const i=Qt();if(xo(i,ln(),t)){const s=Xt(),r=Mn();Ws(s,r,i,e,t,fr(r,i),n,!0)}return Ta}function Da(e,t){const n=$t(e)[1],i=n.data.length-1;Ln(n,{directiveStart:i,directiveEnd:i+1})}function Ya(e){let t=Object.getPrototypeOf(e.type.prototype).constructor,n=!0;const i=[e];for(;t;){let s=void 0;if(It(e))s=t.\\u0275cmp||t.\\u0275dir;else{if(t.\\u0275cmp)throw new Error(\"Directives cannot inherit Components\");s=t.\\u0275dir}if(s){if(n){i.push(s);const t=e;t.inputs=Ea(e.inputs),t.declaredInputs=Ea(e.declaredInputs),t.outputs=Ea(e.outputs);const n=s.hostBindings;n&&Pa(e,n);const r=s.viewQuery,o=s.contentQueries;if(r&&Oa(e,r),o&&Ia(e,o),me(e.inputs,s.inputs),me(e.declaredInputs,s.declaredInputs),me(e.outputs,s.outputs),It(s)&&s.data.animation){const t=e.data;t.animation=(t.animation||[]).concat(s.data.animation)}t.afterContentChecked=t.afterContentChecked||s.afterContentChecked,t.afterContentInit=e.afterContentInit||s.afterContentInit,t.afterViewChecked=e.afterViewChecked||s.afterViewChecked,t.afterViewInit=e.afterViewInit||s.afterViewInit,t.doCheck=e.doCheck||s.doCheck,t.onDestroy=e.onDestroy||s.onDestroy,t.onInit=e.onInit||s.onInit}const t=s.features;if(t)for(let i=0;i=0;i--){const s=e[i];s.hostVars=t+=s.hostVars,s.hostAttrs=An(s.hostAttrs,n=An(n,s.hostAttrs))}}(i)}function Ea(e){return e===ft?{}:e===_t?[]:e}function Oa(e,t){const n=e.viewQuery;e.viewQuery=n?(e,i)=>{t(e,i),n(e,i)}:t}function Ia(e,t){const n=e.contentQueries;e.contentQueries=n?(e,i,s)=>{t(e,i,s),n(e,i,s)}:t}function Pa(e,t){const n=e.hostBindings;e.hostBindings=n?(e,i)=>{t(e,i),n(e,i)}:t}class Aa{constructor(e,t,n){this.previousValue=e,this.currentValue=t,this.firstChange=n}isFirstChange(){return this.firstChange}}function Ra(e){e.type.prototype.ngOnChanges&&(e.setInput=Ha,e.onChanges=function(){const e=ja(this),t=e&&e.current;if(t){const n=e.previous;if(n===ft)e.previous=t;else for(let e in t)n[e]=t[e];e.current=null,this.ngOnChanges(t)}})}function Ha(e,t,n,i){const s=ja(e)||function(e,t){return e.__ngSimpleChanges__=t}(e,{previous:ft,current:null}),r=s.current||(s.current={}),o=s.previous,a=this.declaredInputs[n],l=o[a];r[a]=new Aa(l&&l.currentValue,t,o===ft),e[i]=t}function ja(e){return e.__ngSimpleChanges__||null}function Fa(e,t,n,i,s){if(e=Te(e),Array.isArray(e))for(let r=0;r>16;if(mo(e)||!e.multi){const i=new En(l,s,Eo),m=Va(a,t,s?d:d+h,u);-1===m?(Xn(Jn(c,o),r,a),Na(r,e,t.length),t.push(a),c.directiveStart++,c.directiveEnd++,s&&(c.providerIndexes+=65536),n.push(i),o.push(i)):(n[m]=i,o[m]=i)}else{const m=Va(a,t,d+h,u),p=Va(a,t,d,d+h),f=m>=0&&n[m],_=p>=0&&n[p];if(s&&!_||!s&&!f){Xn(Jn(c,o),r,a);const d=function(e,t,n,i,s){const r=new En(e,n,Eo);return r.multi=[],r.index=t,r.componentProviders=0,za(r,s,i&&!n),r}(s?Ua:Wa,n.length,s,i,l);!s&&_&&(n[p].providerFactory=d),Na(r,e,t.length),t.push(a),c.directiveStart++,c.directiveEnd++,s&&(c.providerIndexes+=65536),n.push(d),o.push(d)}else Na(r,e,m>-1?m:p),za(n[s?p:m],l,!s&&i);!s&&i&&_&&n[p].componentProviders++}}}function Na(e,t,n){if(mo(t)||t.useClass){const i=(t.useClass||t).prototype.ngOnDestroy;i&&(e.destroyHooks||(e.destroyHooks=[])).push(n,i)}}function za(e,t,n){e.multi.push(t),n&&e.componentProviders++}function Va(e,t,n,i){for(let s=n;s{n.providersResolver=(n,i)=>function(e,t,n){const i=Xt();if(i.firstCreatePass){const s=It(e);Fa(n,i.data,i.blueprint,s,!0),Fa(t,i.data,i.blueprint,s,!1)}}(n,i?i(e):e,t)}}Ra.ngInherit=!0;class qa{}class Ga{resolveComponentFactory(e){throw function(e){const t=Error(`No component factory found for ${Se(e)}. Did you add it to @NgModule.entryComponents?`);return t.ngComponent=e,t}(e)}}let Ja=(()=>{class e{}return e.NULL=new Ga,e})(),Ka=(()=>{class e{constructor(e){this.nativeElement=e}}return e.__NG_ELEMENT_ID__=()=>Za(e),e})();const Za=function(e){return Jr(e,tn(),Qt())};class Qa{}const Xa=function(){var e={Important:1,DashCase:2};return e[e.Important]=\"Important\",e[e.DashCase]=\"DashCase\",e}();let el=(()=>{class e{}return e.__NG_ELEMENT_ID__=()=>tl(),e})();const tl=function(){const e=Qt(),t=Ut(tn().index,e);return function(e){const t=e[11];if(Ht(t))return t;throw new Error(\"Cannot inject Renderer2 when the application uses Renderer3!\")}(Tt(t)?t:e)};let nl=(()=>{class e{}return e.\\u0275prov=pe({token:e,providedIn:\"root\",factory:()=>null}),e})();class il{constructor(e){this.full=e,this.major=e.split(\".\")[0],this.minor=e.split(\".\")[1],this.patch=e.split(\".\").slice(2).join(\".\")}}const sl=new il(\"9.0.7\");class rl{constructor(){}supports(e){return So(e)}create(e){return new al(e)}}const ol=(e,t)=>t;class al{constructor(e){this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=e||ol}forEachItem(e){let t;for(t=this._itHead;null!==t;t=t._next)e(t)}forEachOperation(e){let t=this._itHead,n=this._removalsHead,i=0,s=null;for(;t||n;){const r=!n||t&&t.currentIndex{i=this._trackByFn(t,e),null!==s&&ko(s.trackById,i)?(r&&(s=this._verifyReinsertion(s,e,i,t)),ko(s.item,e)||this._addIdentityChange(s,e)):(s=this._mismatch(s,e,i,t),r=!0),s=s._next,t++}),this.length=t;return this._truncate(s),this.collection=e,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let e,t;for(e=this._previousItHead=this._itHead;null!==e;e=e._next)e._nextPrevious=e._next;for(e=this._additionsHead;null!==e;e=e._nextAdded)e.previousIndex=e.currentIndex;for(this._additionsHead=this._additionsTail=null,e=this._movesHead;null!==e;e=t)e.previousIndex=e.currentIndex,t=e._nextMoved;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(e,t,n,i){let s;return null===e?s=this._itTail:(s=e._prev,this._remove(e)),null!==(e=null===this._linkedRecords?null:this._linkedRecords.get(n,i))?(ko(e.item,t)||this._addIdentityChange(e,t),this._moveAfter(e,s,i)):null!==(e=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null))?(ko(e.item,t)||this._addIdentityChange(e,t),this._reinsertAfter(e,s,i)):e=this._addAfter(new ll(t,n),s,i),e}_verifyReinsertion(e,t,n,i){let s=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null);return null!==s?e=this._reinsertAfter(s,e._prev,i):e.currentIndex!=i&&(e.currentIndex=i,this._addToMoves(e,i)),e}_truncate(e){for(;null!==e;){const t=e._next;this._addToRemovals(this._unlink(e)),e=t}null!==this._unlinkedRecords&&this._unlinkedRecords.clear(),null!==this._additionsTail&&(this._additionsTail._nextAdded=null),null!==this._movesTail&&(this._movesTail._nextMoved=null),null!==this._itTail&&(this._itTail._next=null),null!==this._removalsTail&&(this._removalsTail._nextRemoved=null),null!==this._identityChangesTail&&(this._identityChangesTail._nextIdentityChange=null)}_reinsertAfter(e,t,n){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(e);const i=e._prevRemoved,s=e._nextRemoved;return null===i?this._removalsHead=s:i._nextRemoved=s,null===s?this._removalsTail=i:s._prevRemoved=i,this._insertAfter(e,t,n),this._addToMoves(e,n),e}_moveAfter(e,t,n){return this._unlink(e),this._insertAfter(e,t,n),this._addToMoves(e,n),e}_addAfter(e,t,n){return this._insertAfter(e,t,n),this._additionsTail=null===this._additionsTail?this._additionsHead=e:this._additionsTail._nextAdded=e,e}_insertAfter(e,t,n){const i=null===t?this._itHead:t._next;return e._next=i,e._prev=t,null===i?this._itTail=e:i._prev=e,null===t?this._itHead=e:t._next=e,null===this._linkedRecords&&(this._linkedRecords=new dl),this._linkedRecords.put(e),e.currentIndex=n,e}_remove(e){return this._addToRemovals(this._unlink(e))}_unlink(e){null!==this._linkedRecords&&this._linkedRecords.remove(e);const t=e._prev,n=e._next;return null===t?this._itHead=n:t._next=n,null===n?this._itTail=t:n._prev=t,e}_addToMoves(e,t){return e.previousIndex===t||(this._movesTail=null===this._movesTail?this._movesHead=e:this._movesTail._nextMoved=e),e}_addToRemovals(e){return null===this._unlinkedRecords&&(this._unlinkedRecords=new dl),this._unlinkedRecords.put(e),e.currentIndex=null,e._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=e,e._prevRemoved=null):(e._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=e),e}_addIdentityChange(e,t){return e.item=t,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=e:this._identityChangesTail._nextIdentityChange=e,e}}class ll{constructor(e,t){this.item=e,this.trackById=t,this.currentIndex=null,this.previousIndex=null,this._nextPrevious=null,this._prev=null,this._next=null,this._prevDup=null,this._nextDup=null,this._prevRemoved=null,this._nextRemoved=null,this._nextAdded=null,this._nextMoved=null,this._nextIdentityChange=null}}class cl{constructor(){this._head=null,this._tail=null}add(e){null===this._head?(this._head=this._tail=e,e._nextDup=null,e._prevDup=null):(this._tail._nextDup=e,e._prevDup=this._tail,e._nextDup=null,this._tail=e)}get(e,t){let n;for(n=this._head;null!==n;n=n._nextDup)if((null===t||t<=n.currentIndex)&&ko(n.trackById,e))return n;return null}remove(e){const t=e._prevDup,n=e._nextDup;return null===t?this._head=n:t._nextDup=n,null===n?this._tail=t:n._prevDup=t,null===this._head}}class dl{constructor(){this.map=new Map}put(e){const t=e.trackById;let n=this.map.get(t);n||(n=new cl,this.map.set(t,n)),n.add(e)}get(e,t){const n=this.map.get(e);return n?n.get(e,t):null}remove(e){const t=e.trackById;return this.map.get(t).remove(e)&&this.map.delete(t),e}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function ul(e,t,n){const i=e.previousIndex;if(null===i)return i;let s=0;return n&&i{if(t&&t.key===n)this._maybeAddToChanges(t,e),this._appendAfter=t,t=t._next;else{const i=this._getOrCreateRecordForKey(n,e);t=this._insertBeforeOrAppend(t,i)}}),t){t._prev&&(t._prev._next=null),this._removalsHead=t;for(let e=t;null!==e;e=e._nextRemoved)e===this._mapHead&&(this._mapHead=null),this._records.delete(e.key),e._nextRemoved=e._next,e.previousValue=e.currentValue,e.currentValue=null,e._prev=null,e._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(e,t){if(e){const n=e._prev;return t._next=e,t._prev=n,e._prev=t,n&&(n._next=t),e===this._mapHead&&(this._mapHead=t),this._appendAfter=e,e}return this._appendAfter?(this._appendAfter._next=t,t._prev=this._appendAfter):this._mapHead=t,this._appendAfter=t,null}_getOrCreateRecordForKey(e,t){if(this._records.has(e)){const n=this._records.get(e);this._maybeAddToChanges(n,t);const i=n._prev,s=n._next;return i&&(i._next=s),s&&(s._prev=i),n._next=null,n._prev=null,n}const n=new pl(e);return this._records.set(e,n),n.currentValue=t,this._addToAdditions(n),n}_reset(){if(this.isDirty){let e;for(this._previousMapHead=this._mapHead,e=this._previousMapHead;null!==e;e=e._next)e._nextPrevious=e._next;for(e=this._changesHead;null!==e;e=e._nextChanged)e.previousValue=e.currentValue;for(e=this._additionsHead;null!=e;e=e._nextAdded)e.previousValue=e.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(e,t){ko(t,e.currentValue)||(e.previousValue=e.currentValue,e.currentValue=t,this._addToChanges(e))}_addToAdditions(e){null===this._additionsHead?this._additionsHead=this._additionsTail=e:(this._additionsTail._nextAdded=e,this._additionsTail=e)}_addToChanges(e){null===this._changesHead?this._changesHead=this._changesTail=e:(this._changesTail._nextChanged=e,this._changesTail=e)}_forEach(e,t){e instanceof Map?e.forEach(t):Object.keys(e).forEach(n=>t(e[n],n))}}class pl{constructor(e){this.key=e,this.previousValue=null,this.currentValue=null,this._nextPrevious=null,this._next=null,this._prev=null,this._nextAdded=null,this._nextRemoved=null,this._nextChanged=null}}let fl=(()=>{class e{constructor(e){this.factories=e}static create(t,n){if(null!=n){const e=n.factories.slice();t=t.concat(e)}return new e(t)}static extend(t){return{provide:e,useFactory:n=>{if(!n)throw new Error(\"Cannot extend IterableDiffers without a parent injector\");return e.create(t,n)},deps:[[e,new de,new le]]}}find(e){const t=this.factories.find(t=>t.supports(e));if(null!=t)return t;throw new Error(`Cannot find a differ supporting object '${e}' of type '${n=e,n.name||typeof n}'`);var n}}return e.\\u0275prov=pe({token:e,providedIn:\"root\",factory:()=>new e([new rl])}),e})(),_l=(()=>{class e{constructor(e){this.factories=e}static create(t,n){if(n){const e=n.factories.slice();t=t.concat(e)}return new e(t)}static extend(t){return{provide:e,useFactory:n=>{if(!n)throw new Error(\"Cannot extend KeyValueDiffers without a parent injector\");return e.create(t,n)},deps:[[e,new de,new le]]}}find(e){const t=this.factories.find(t=>t.supports(e));if(t)return t;throw new Error(`Cannot find a differ supporting object '${e}'`)}}return e.\\u0275prov=pe({token:e,providedIn:\"root\",factory:()=>new e([new hl])}),e})();const gl=[new hl],yl=new fl([new rl]),bl=new _l(gl);let vl=(()=>{class e{}return e.__NG_ELEMENT_ID__=()=>wl(e,Ka),e})();const wl=function(e,t){return Kr(e,t,tn(),Qt())};let Ml=(()=>{class e{}return e.__NG_ELEMENT_ID__=()=>kl(e,Ka),e})();const kl=function(e,t){return Zr(e,t,tn(),Qt())},Sl={};class Ll extends Ja{constructor(e){super(),this.ngModule=e}resolveComponentFactory(e){const t=Lt(e);return new Tl(t,this.ngModule)}}function xl(e){const t=[];for(let n in e)e.hasOwnProperty(n)&&t.push({propName:e[n],templateName:n});return t}const Cl=new Ve(\"SCHEDULER_TOKEN\",{providedIn:\"root\",factory:()=>Wn});class Tl extends qa{constructor(e,t){super(),this.componentDef=e,this.ngModule=t,this.componentType=e.type,this.selector=e.selectors.map(fs).join(\",\"),this.ngContentSelectors=e.ngContentSelectors?e.ngContentSelectors:[],this.isBoundToModule=!!t}get inputs(){return xl(this.componentDef.inputs)}get outputs(){return xl(this.componentDef.outputs)}create(e,t,n,i){const s=(i=i||this.ngModule)?function(e,t){return{get:(n,i,s)=>{const r=e.get(n,Sl,s);return r!==Sl||i===Sl?r:t.get(n,i,s)}}}(e,i.injector):e,r=s.get(Qa,jt),o=s.get(nl,null),a=r.createRenderer(null,this.componentDef),l=this.componentDef.selectors[0][0]||\"div\",c=n?function(e,t,n){if(Ht(e))return e.selectRootElement(t,n===pt.ShadowDom);let i=\"string\"==typeof t?e.querySelector(t):t;return i.textContent=\"\",i}(a,n,this.componentDef.encapsulation):Ds(l,r.createRenderer(null,this.componentDef),function(e){const t=e.toLowerCase();return\"svg\"===t?\"http://www.w3.org/2000/svg\":\"math\"===t?\"http://www.w3.org/1998/MathML/\":null}(l)),d=this.componentDef.onPush?576:528,u=\"string\"==typeof n&&/^#root-ng-internal-isolated-\\d+/.test(n),h={components:[],scheduler:Wn,clean:hr,playerHandler:null,flags:0},m=Ns(0,-1,null,1,0,null,null,null,null,null),p=Ys(null,m,h,d,null,null,r,a,o,s);let f,_;pn(p,null);try{const e=function(e,t,n,i,s,r){const o=n[1];n[19]=e;const a=Es(o,null,0,3,null,null),l=a.mergedAttrs=t.hostAttrs;null!==l&&(vo(a,l),null!==e&&(On(s,e,l),null!==a.classes&&Wr(s,e,a.classes),null!==a.styles&&Vr(s,e,a.styles)));const c=i.createRenderer(e,t),d=Ys(n,Fs(t),null,t.onPush?64:16,n[19],a,i,c,void 0);return o.firstCreatePass&&(Xn(Jn(a,n),o,t.type),Js(o,a),Zs(a,n.length,1)),ar(n,d),n[19]=d}(c,this.componentDef,p,r,a);if(c)if(n)On(a,c,[\"ng-version\",sl.full]);else{const{attrs:e,classes:t}=function(e){const t=[],n=[];let i=1,s=2;for(;i0&&Wr(a,c,t.join(\" \"))}_=Vt(p[1],0),t&&(_.projection=t.map(e=>Array.from(e))),f=function(e,t,n,i,s){const r=n[1],o=function(e,t,n){const i=tn();e.firstCreatePass&&(n.providersResolver&&n.providersResolver(n),Gs(e,i,1),Qs(e,t,n));const s=si(t,e,t.length-1,i);is(s,t);const r=zt(i,t);return r&&is(r,t),s}(r,n,t);i.components.push(o),e[8]=o,s&&s.forEach(e=>e(o,t)),t.contentQueries&&t.contentQueries(1,o,n.length-1);const a=tn();if(r.firstCreatePass&&(null!==t.hostBindings||null!==t.hostAttrs)){wn(a.index-19);const e=n[1];$s(e,t),Bs(e,n,t.hostVars),qs(t,o)}return o}(e,this.componentDef,p,h,[Da]),Os(m,p,null)}finally{bn()}const g=new Dl(this.componentType,f,Jr(Ka,_,p),p,_);return n&&!u||(g.hostView._tViewNode.child=_),g}}class Dl extends class{}{constructor(e,t,n,i,s){super(),this.location=n,this._rootLView=i,this._tNode=s,this.destroyCbs=[],this.instance=t,this.hostView=this.changeDetectorRef=new $r(i),this.hostView._tViewNode=function(e,t,n,i){let s=e.node;return null==s&&(e.node=s=zs(0,null,2,-1,null,null)),i[6]=s}(i[1],0,0,i),this.componentType=e}get injector(){return new ai(this._tNode,this._rootLView)}destroy(){this.destroyCbs&&(this.destroyCbs.forEach(e=>e()),this.destroyCbs=null,!this.hostView.destroyed&&this.hostView.destroy())}onDestroy(e){this.destroyCbs&&this.destroyCbs.push(e)}}const Yl=void 0;var El=[\"en\",[[\"a\",\"p\"],[\"AM\",\"PM\"],Yl],[[\"AM\",\"PM\"],Yl,Yl],[[\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"],[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"]],Yl,[[\"J\",\"F\",\"M\",\"A\",\"M\",\"J\",\"J\",\"A\",\"S\",\"O\",\"N\",\"D\"],[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"]],Yl,[[\"B\",\"A\"],[\"BC\",\"AD\"],[\"Before Christ\",\"Anno Domini\"]],0,[6,0],[\"M/d/yy\",\"MMM d, y\",\"MMMM d, y\",\"EEEE, MMMM d, y\"],[\"h:mm a\",\"h:mm:ss a\",\"h:mm:ss a z\",\"h:mm:ss a zzzz\"],[\"{1}, {0}\",Yl,\"{1} 'at' {0}\",Yl],[\".\",\",\",\";\",\"%\",\"+\",\"-\",\"E\",\"\\xd7\",\"\\u2030\",\"\\u221e\",\"NaN\",\":\"],[\"#,##0.###\",\"#,##0%\",\"\\xa4#,##0.00\",\"#E0\"],\"USD\",\"$\",\"US Dollar\",{},function(e){let t=Math.floor(Math.abs(e)),n=e.toString().replace(/^[^.]*\\.?/,\"\").length;return 1===t&&0===n?1:5}];let Ol={};function Il(e){return function(e){const t=function(e){return e.toLowerCase().replace(/_/g,\"-\")}(e);let n=Pl(t);if(n)return n;const i=t.split(\"-\")[0];if(n=Pl(i),n)return n;if(\"en\"===i)return El;throw new Error(`Missing locale data for the locale \"${e}\".`)}(e)[Al.PluralCase]}function Pl(e){return e in Ol||(Ol[e]=Pe.ng&&Pe.ng.common&&Pe.ng.common.locales&&Pe.ng.common.locales[e]),Ol[e]}const Al=function(){var e={LocaleId:0,DayPeriodsFormat:1,DayPeriodsStandalone:2,DaysFormat:3,DaysStandalone:4,MonthsFormat:5,MonthsStandalone:6,Eras:7,FirstDayOfWeek:8,WeekendRange:9,DateFormat:10,TimeFormat:11,DateTimeFormat:12,NumberSymbols:13,NumberFormats:14,CurrencyCode:15,CurrencySymbol:16,CurrencyName:17,Currencies:18,PluralCase:19,ExtraData:20};return e[e.LocaleId]=\"LocaleId\",e[e.DayPeriodsFormat]=\"DayPeriodsFormat\",e[e.DayPeriodsStandalone]=\"DayPeriodsStandalone\",e[e.DaysFormat]=\"DaysFormat\",e[e.DaysStandalone]=\"DaysStandalone\",e[e.MonthsFormat]=\"MonthsFormat\",e[e.MonthsStandalone]=\"MonthsStandalone\",e[e.Eras]=\"Eras\",e[e.FirstDayOfWeek]=\"FirstDayOfWeek\",e[e.WeekendRange]=\"WeekendRange\",e[e.DateFormat]=\"DateFormat\",e[e.TimeFormat]=\"TimeFormat\",e[e.DateTimeFormat]=\"DateTimeFormat\",e[e.NumberSymbols]=\"NumberSymbols\",e[e.NumberFormats]=\"NumberFormats\",e[e.CurrencyCode]=\"CurrencyCode\",e[e.CurrencySymbol]=\"CurrencySymbol\",e[e.CurrencyName]=\"CurrencyName\",e[e.Currencies]=\"Currencies\",e[e.PluralCase]=\"PluralCase\",e[e.ExtraData]=\"ExtraData\",e}(),Rl=/^\\s*(\\ufffd\\d+:?\\d*\\ufffd)\\s*,\\s*(select|plural)\\s*,/,Hl=/\\ufffd\\/?\\*(\\d+:\\d+)\\ufffd/gi,jl=/\\ufffd(\\/?[#*!]\\d+):?\\d*\\ufffd/gi,Fl=/\\ufffd(\\d+):?\\d*\\ufffd/gi,Nl=/({\\s*\\ufffd\\d+:?\\d*\\ufffd\\s*,\\s*\\S{6}\\s*,[\\s\\S]*})/gi;function zl(e){if(!e)return[];let t=0;const n=[],i=[],s=/[{}]/g;let r;for(s.lastIndex=0;r=s.exec(e);){const s=r.index;if(\"}\"==r[0]){if(n.pop(),0==n.length){const n=e.substring(t,s);Rl.test(n)?i.push(Vl(n)):i.push(n),t=s+1}}else{if(0==n.length){const n=e.substring(t,s);i.push(n),t=s+1}n.push(\"{\")}}const o=e.substring(t);return i.push(o),i}function Vl(e){const t=[],n=[];let i=1,s=0;const r=zl(e=e.replace(Rl,(function(e,t,n){return i=\"select\"===n?0:1,s=parseInt(t.substr(1),10),\"\"})));for(let o=0;on.length&&n.push(s)}return{type:i,mainBinding:s,cases:t,values:n}}function Wl(e){let t,n,i=\"\",s=0,r=!1;for(;null!==(t=Hl.exec(e));)r?t[0]===`\\ufffd/*${n}\\ufffd`&&(s=t.index,r=!1):(i+=e.substring(s,t.index+t[0].length),n=t[1],r=!0);return i+=e.substr(s),i}function Ul(e,t,n,i=null){const s=[null,null],r=e.split(Fl);let o=0;for(let a=0;a>>17;let d;d=s===e?i[6]:Vt(n,s),o=Zl(n,r,d,o,i);break;case 0:const u=c>=0,h=(u?c:~c)>>>3;a.push(h),o=r,r=Vt(n,h),r&&nn(r,u);break;case 5:o=r=Vt(n,c>>>3),nn(r,!1);break;case 4:const m=t[++l],p=t[++l];er(Vt(n,c>>>3),i,m,p,null,null);break;default:throw new Error(`Unable to determine the type of mutate operation for \"${c}\"`)}else switch(c){case ws:const e=t[++l],d=t[++l],u=s.createComment(e);o=r,r=Ql(n,i,d,5,u,null),a.push(d),is(u,i),r.activeCaseIndex=null,rn();break;case vs:const h=t[++l],m=t[++l];o=r,r=Ql(n,i,m,3,s.createElement(h),h),a.push(m);break;default:throw new Error(`Unable to determine the type of mutate operation for \"${c}\"`)}}return rn(),a}function ec(e,t,n,i){const s=Vt(e,n),r=Nt(n,t);r&&Hr(t[11],r);const o=Wt(t,n);if(Dt(o)){const e=o;0!==s.type&&Hr(t[11],e[7])}i&&(s.flags|=64)}function tc(e,t,n){(function(e,t,n){const i=Xt();Bl[++ql]=e,Xo(!0),i.firstCreatePass&&null===i.data[e+19]&&function(e,t,n,i,s){const r=t.blueprint.length-19;Kl=0;const o=tn(),a=sn()?o:o&&o.parent;let l=a&&a!==e[6]?a.index-19:n,c=0;Jl[c]=l;const d=[];if(n>0&&o!==a){let e=o.index-19;sn()||(e=~e),d.push(e<<3|0)}const u=[],h=[],m=function(e,t){if(\"number\"!=typeof t)return Wl(e);{const n=e.indexOf(`:${t}\\ufffd`)+2+t.toString().length,i=e.search(new RegExp(`\\ufffd\\\\/\\\\*\\\\d+:${t}\\ufffd`));return Wl(e.substring(n,i))}}(i,s),p=(f=m,f.replace(uc,\" \")).split(jl);var f;for(let _=0;_0&&function(e,t,n){if(n>0&&e.firstCreatePass){for(let i=0;i>1),o++}}(Xt(),e),Xo(!1)}()}function nc(e,t){!function(e,t,n,i){const s=tn().index-19,r=[];for(let o=0;o>>2;let h,m,p;switch(3&c){case 1:const c=t[++d],f=t[++d];Ws(r,Vt(r,u),o,c,a,o[11],f,!1);break;case 0:yr(o,u,a);break;case 2:if(h=t[++d],m=n[h],p=Vt(r,u),null!==p.activeCaseIndex){const e=m.remove[p.activeCaseIndex];for(let t=0;t>>3,!1);break;case 6:const s=Vt(r,e[t+1]>>>3).activeCaseIndex;null!==s&&rt(n[i>>>3].remove[s],e)}}}const _=ac(m,a);p.activeCaseIndex=-1!==_?_:null,_>-1&&(Xl(-1,m.create[_],r,o),l=!0);break;case 3:h=t[++d],m=n[h],p=Vt(r,u),null!==p.activeCaseIndex&&e(m.update[p.activeCaseIndex],n,i,s,r,o,l)}}}}c+=u}}(i,s,r,ic,t,o),ic=0,sc=0}}function ac(e,t){let n=e.cases.indexOf(t);if(-1===n)switch(e.type){case 1:{const i=function(e,t){switch(Il(t)(e)){case 0:return\"zero\";case 1:return\"one\";case 2:return\"two\";case 3:return\"few\";case 4:return\"many\";default:return\"other\"}}(t,hc);n=e.cases.indexOf(i),-1===n&&\"other\"!==i&&(n=e.cases.indexOf(\"other\"));break}case 0:n=e.cases.indexOf(\"other\")}return n}function lc(e,t,n,i){const s=[],r=[],o=[],a=[],l=[];for(let c=0;c null != ${t} <=Actual]`)}(n,t),\"string\"==typeof e&&(hc=e.toLowerCase().replace(/_/g,\"-\"))}const pc=new Map;class fc extends it{constructor(e,t){super(),this._parent=t,this._bootstrapComponents=[],this.injector=this,this.destroyCbs=[],this.componentFactoryResolver=new Ll(this);const n=Ct(e),i=e[Fe]||null;i&&mc(i),this._bootstrapComponents=$n(n.bootstrap),this._r3Injector=oo(e,t,[{provide:it,useValue:this},{provide:Ja,useValue:this.componentFactoryResolver}],Se(e)),this._r3Injector._resolveInjectorDefTypes(),this.instance=this.get(e)}get(e,t=fo.THROW_IF_NOT_FOUND,n=ue.Default){return e===fo||e===it||e===We?this:this._r3Injector.get(e,t,n)}destroy(){const e=this._r3Injector;!e.destroyed&&e.destroy(),this.destroyCbs.forEach(e=>e()),this.destroyCbs=null}onDestroy(e){this.destroyCbs.push(e)}}class _c extends st{constructor(e){super(),this.moduleType=e,null!==Ct(e)&&function e(t){if(null!==t.\\u0275mod.id){const e=t.\\u0275mod.id;(function(e,t,n){if(t&&t!==n)throw new Error(`Duplicate module registered for ${e} - ${Se(t)} vs ${Se(t.name)}`)})(e,pc.get(e),t),pc.set(e,t)}let n=t.\\u0275mod.imports;n instanceof Function&&(n=n()),n&&n.forEach(t=>e(t))}(e)}create(e){return new fc(this.moduleType,e)}}function gc(e,t,n){const i=function(){const e=Kt.lFrame;let t=e.bindingRootIndex;return-1===t&&(t=e.bindingRootIndex=e.tView.bindingStartIndex),t}()+e,s=Qt();return s[i]===_s?function(e,t,n){return e[t]=n}(s,i,n?t.call(n):t()):function(e,t){return e[t]}(s,i)}class yc extends L{constructor(e=!1){super(),this.__isAsync=e}emit(e){super.next(e)}subscribe(e,t,n){let i,s=e=>null,r=()=>null;e&&\"object\"==typeof e?(i=this.__isAsync?t=>{setTimeout(()=>e.next(t))}:t=>{e.next(t)},e.error&&(s=this.__isAsync?t=>{setTimeout(()=>e.error(t))}:t=>{e.error(t)}),e.complete&&(r=this.__isAsync?()=>{setTimeout(()=>e.complete())}:()=>{e.complete()})):(i=this.__isAsync?t=>{setTimeout(()=>e(t))}:t=>{e(t)},t&&(s=this.__isAsync?e=>{setTimeout(()=>t(e))}:e=>{t(e)}),n&&(r=this.__isAsync?()=>{setTimeout(()=>n())}:()=>{n()}));const o=super.subscribe(i,s,r);return e instanceof u&&e.add(o),o}}function bc(){return this._results[Mo()]()}class vc{constructor(){this.dirty=!0,this._results=[],this.changes=new yc,this.length=0;const e=Mo(),t=vc.prototype;t[e]||(t[e]=bc)}map(e){return this._results.map(e)}filter(e){return this._results.filter(e)}find(e){return this._results.find(e)}reduce(e,t){return this._results.reduce(e,t)}forEach(e){this._results.forEach(e)}some(e){return this._results.some(e)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(e){this._results=function e(t,n){void 0===n&&(n=t);for(let i=0;i0)s.push(a[t/2]);else{const r=o[t+1],a=n[-i];for(let t=9;t{class e{constructor(e){this.appInits=e,this.initialized=!1,this.done=!1,this.donePromise=new Promise((e,t)=>{this.resolve=e,this.reject=t})}runInitializers(){if(this.initialized)return;const e=[],t=()=>{this.done=!0,this.resolve()};if(this.appInits)for(let n=0;n{t()}).catch(e=>{this.reject(e)}),0===e.length&&t(),this.initialized=!0}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nc,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const Vc=new Ve(\"AppId\"),Wc={provide:Vc,useFactory:function(){return`${Uc()}${Uc()}${Uc()}`},deps:[]};function Uc(){return String.fromCharCode(97+Math.floor(25*Math.random()))}const $c=new Ve(\"Platform Initializer\"),Bc=new Ve(\"Platform ID\"),qc=new Ve(\"appBootstrapListener\");let Gc=(()=>{class e{log(e){console.log(e)}warn(e){console.warn(e)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const Jc=new Ve(\"LocaleId\"),Kc=new Ve(\"DefaultCurrencyCode\");class Zc{constructor(e,t){this.ngModuleFactory=e,this.componentFactories=t}}const Qc=function(e){return new _c(e)},Xc=Qc,ed=function(e){return Promise.resolve(Qc(e))},td=function(e){const t=Qc(e),n=$n(Ct(e).declarations).reduce((e,t)=>{const n=Lt(t);return n&&e.push(new Tl(n)),e},[]);return new Zc(t,n)},nd=td,id=function(e){return Promise.resolve(td(e))};let sd=(()=>{class e{constructor(){this.compileModuleSync=Xc,this.compileModuleAsync=ed,this.compileModuleAndAllComponentsSync=nd,this.compileModuleAndAllComponentsAsync=id}clearCache(){}clearCacheFor(e){}getModuleId(e){}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const rd=new Ve(\"compilerOptions\"),od=(()=>Promise.resolve(0))();function ad(e){\"undefined\"==typeof Zone?od.then(()=>{e&&e.apply(null,null)}):Zone.current.scheduleMicroTask(\"scheduleMicrotask\",e)}class ld{constructor({enableLongStackTrace:e=!1,shouldCoalesceEventChangeDetection:t=!1}){if(this.hasPendingMacrotasks=!1,this.hasPendingMicrotasks=!1,this.isStable=!0,this.onUnstable=new yc(!1),this.onMicrotaskEmpty=new yc(!1),this.onStable=new yc(!1),this.onError=new yc(!1),\"undefined\"==typeof Zone)throw new Error(\"In this configuration Angular requires Zone.js\");Zone.assertZonePatched(),this._nesting=0,this._outer=this._inner=Zone.current,Zone.wtfZoneSpec&&(this._inner=this._inner.fork(Zone.wtfZoneSpec)),Zone.TaskTrackingZoneSpec&&(this._inner=this._inner.fork(new Zone.TaskTrackingZoneSpec)),e&&Zone.longStackTraceZoneSpec&&(this._inner=this._inner.fork(Zone.longStackTraceZoneSpec)),this.shouldCoalesceEventChangeDetection=t,this.lastRequestAnimationFrameId=-1,this.nativeRequestAnimationFrame=function(){let e=Pe.requestAnimationFrame,t=Pe.cancelAnimationFrame;if(\"undefined\"!=typeof Zone&&e&&t){const n=e[Zone.__symbol__(\"OriginalDelegate\")];n&&(e=n);const i=t[Zone.__symbol__(\"OriginalDelegate\")];i&&(t=i)}return{nativeRequestAnimationFrame:e,nativeCancelAnimationFrame:t}}().nativeRequestAnimationFrame,function(e){const t=!!e.shouldCoalesceEventChangeDetection&&e.nativeRequestAnimationFrame&&(()=>{!function(e){-1===e.lastRequestAnimationFrameId&&(e.lastRequestAnimationFrameId=e.nativeRequestAnimationFrame.call(Pe,()=>{e.lastRequestAnimationFrameId=-1,hd(e),ud(e)}),hd(e))}(e)});e._inner=e._inner.fork({name:\"angular\",properties:{isAngularZone:!0,maybeDelayChangeDetection:t},onInvokeTask:(n,i,s,r,o,a)=>{try{return md(e),n.invokeTask(s,r,o,a)}finally{t&&\"eventTask\"===r.type&&t(),pd(e)}},onInvoke:(t,n,i,s,r,o,a)=>{try{return md(e),t.invoke(i,s,r,o,a)}finally{pd(e)}},onHasTask:(t,n,i,s)=>{t.hasTask(i,s),n===i&&(\"microTask\"==s.change?(e._hasPendingMicrotasks=s.microTask,hd(e),ud(e)):\"macroTask\"==s.change&&(e.hasPendingMacrotasks=s.macroTask))},onHandleError:(t,n,i,s)=>(t.handleError(i,s),e.runOutsideAngular(()=>e.onError.emit(s)),!1)})}(this)}static isInAngularZone(){return!0===Zone.current.get(\"isAngularZone\")}static assertInAngularZone(){if(!ld.isInAngularZone())throw new Error(\"Expected to be in Angular Zone, but it is not!\")}static assertNotInAngularZone(){if(ld.isInAngularZone())throw new Error(\"Expected to not be in Angular Zone, but it is!\")}run(e,t,n){return this._inner.run(e,t,n)}runTask(e,t,n,i){const s=this._inner,r=s.scheduleEventTask(\"NgZoneEvent: \"+i,e,dd,cd,cd);try{return s.runTask(r,t,n)}finally{s.cancelTask(r)}}runGuarded(e,t,n){return this._inner.runGuarded(e,t,n)}runOutsideAngular(e){return this._outer.run(e)}}function cd(){}const dd={};function ud(e){if(0==e._nesting&&!e.hasPendingMicrotasks&&!e.isStable)try{e._nesting++,e.onMicrotaskEmpty.emit(null)}finally{if(e._nesting--,!e.hasPendingMicrotasks)try{e.runOutsideAngular(()=>e.onStable.emit(null))}finally{e.isStable=!0}}}function hd(e){e.hasPendingMicrotasks=!!(e._hasPendingMicrotasks||e.shouldCoalesceEventChangeDetection&&-1!==e.lastRequestAnimationFrameId)}function md(e){e._nesting++,e.isStable&&(e.isStable=!1,e.onUnstable.emit(null))}function pd(e){e._nesting--,ud(e)}class fd{constructor(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new yc,this.onMicrotaskEmpty=new yc,this.onStable=new yc,this.onError=new yc}run(e,t,n){return e.apply(t,n)}runGuarded(e,t,n){return e.apply(t,n)}runOutsideAngular(e){return e()}runTask(e,t,n,i){return e.apply(t,n)}}let _d=(()=>{class e{constructor(e){this._ngZone=e,this._pendingCount=0,this._isZoneStable=!0,this._didWork=!1,this._callbacks=[],this.taskTrackingZone=null,this._watchAngularEvents(),e.run(()=>{this.taskTrackingZone=\"undefined\"==typeof Zone?null:Zone.current.get(\"TaskTrackingZone\")})}_watchAngularEvents(){this._ngZone.onUnstable.subscribe({next:()=>{this._didWork=!0,this._isZoneStable=!1}}),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.subscribe({next:()=>{ld.assertNotInAngularZone(),ad(()=>{this._isZoneStable=!0,this._runCallbacksIfReady()})}})})}increasePendingRequestCount(){return this._pendingCount+=1,this._didWork=!0,this._pendingCount}decreasePendingRequestCount(){if(this._pendingCount-=1,this._pendingCount<0)throw new Error(\"pending async requests below zero\");return this._runCallbacksIfReady(),this._pendingCount}isStable(){return this._isZoneStable&&0===this._pendingCount&&!this._ngZone.hasPendingMacrotasks}_runCallbacksIfReady(){if(this.isStable())ad(()=>{for(;0!==this._callbacks.length;){let e=this._callbacks.pop();clearTimeout(e.timeoutId),e.doneCb(this._didWork)}this._didWork=!1});else{let e=this.getPendingTasks();this._callbacks=this._callbacks.filter(t=>!t.updateCb||!t.updateCb(e)||(clearTimeout(t.timeoutId),!1)),this._didWork=!0}}getPendingTasks(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(e=>({source:e.source,creationLocation:e.creationLocation,data:e.data})):[]}addCallback(e,t,n){let i=-1;t&&t>0&&(i=setTimeout(()=>{this._callbacks=this._callbacks.filter(e=>e.timeoutId!==i),e(this._didWork,this.getPendingTasks())},t)),this._callbacks.push({doneCb:e,timeoutId:i,updateCb:n})}whenStable(e,t,n){if(n&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is \"zone.js/dist/task-tracking.js\" loaded?');this.addCallback(e,t,n),this._runCallbacksIfReady()}getPendingRequestCount(){return this._pendingCount}findProviders(e,t,n){return[]}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ld))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),gd=(()=>{class e{constructor(){this._applications=new Map,vd.addToWindow(this)}registerApplication(e,t){this._applications.set(e,t)}unregisterApplication(e){this._applications.delete(e)}unregisterAllApplications(){this._applications.clear()}getTestability(e){return this._applications.get(e)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(e,t=!0){return vd.findTestabilityInTree(this,e,t)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class yd{addToWindow(e){}findTestabilityInTree(e,t,n){return null}}let bd,vd=new yd,wd=function(e,t,n){const i=new _c(n);if(0===go.size)return Promise.resolve(i);const s=function(e){const t=[];return e.forEach(e=>e&&t.push(...e)),t}(e.get(rd,[]).concat(t).map(e=>e.providers));if(0===s.length)return Promise.resolve(i);const r=function(){const e=Pe.ng;if(!e||!e.\\u0275compilerFacade)throw new Error(\"Angular JIT compilation failed: '@angular/compiler' not loaded!\\n - JIT compilation is discouraged for production use-cases! Consider AOT mode instead.\\n - Did you bootstrap using '@angular/platform-browser-dynamic' or '@angular/platform-server'?\\n - Alternatively provide the compiler with 'import \\\"@angular/compiler\\\";' before bootstrapping.\");return e.\\u0275compilerFacade}(),o=fo.create({providers:s}).get(r.ResourceLoader);return function(e){const t=[],n=new Map;function i(e){let t=n.get(e);if(!t){const i=(e=>Promise.resolve(o.get(e)))(e);n.set(e,t=i.then(bo))}return t}return go.forEach((e,n)=>{const s=[];e.templateUrl&&s.push(i(e.templateUrl).then(t=>{e.template=t}));const r=e.styleUrls,o=e.styles||(e.styles=[]),a=e.styles.length;r&&r.forEach((t,n)=>{o.push(\"\"),s.push(i(t).then(i=>{o[a+n]=i,r.splice(r.indexOf(t),1),0==r.length&&(e.styleUrls=void 0)}))});const l=Promise.all(s).then(()=>function(e){yo.delete(e)}(n));t.push(l)}),go=new Map,Promise.all(t).then(()=>{})}().then(()=>i)};const Md=new Ve(\"AllowMultipleToken\");class kd{constructor(e,t){this.name=e,this.token=t}}function Sd(e,t,n=[]){const i=`Platform: ${t}`,s=new Ve(i);return(t=[])=>{let r=Ld();if(!r||r.injector.get(Md,!1))if(e)e(n.concat(t).concat({provide:s,useValue:!0}));else{const e=n.concat(t).concat({provide:s,useValue:!0},{provide:eo,useValue:\"platform\"});!function(e){if(bd&&!bd.destroyed&&!bd.injector.get(Md,!1))throw new Error(\"There can be only one platform. Destroy the previous one to create a new one.\");bd=e.get(xd);const t=e.get($c,null);t&&t.forEach(e=>e())}(fo.create({providers:e,name:i}))}return function(e){const t=Ld();if(!t)throw new Error(\"No platform exists!\");if(!t.injector.get(e,null))throw new Error(\"A platform with a different configuration has been created. Please destroy it first.\");return t}(s)}}function Ld(){return bd&&!bd.destroyed?bd:null}let xd=(()=>{class e{constructor(e){this._injector=e,this._modules=[],this._destroyListeners=[],this._destroyed=!1}bootstrapModuleFactory(e,t){const n=function(e,t){let n;return n=\"noop\"===e?new fd:(\"zone.js\"===e?void 0:e)||new ld({enableLongStackTrace:Si(),shouldCoalesceEventChangeDetection:t}),n}(t?t.ngZone:void 0,t&&t.ngZoneEventCoalescing||!1),i=[{provide:ld,useValue:n}];return n.run(()=>{const t=fo.create({providers:i,parent:this.injector,name:e.moduleType.name}),s=e.create(t),r=s.injector.get(hi,null);if(!r)throw new Error(\"No ErrorHandler. Is platform module (BrowserModule) included?\");return s.onDestroy(()=>Dd(this._modules,s)),n.runOutsideAngular(()=>n.onError.subscribe({next:e=>{r.handleError(e)}})),function(e,t,n){try{const i=n();return Vo(i)?i.catch(n=>{throw t.runOutsideAngular(()=>e.handleError(n)),n}):i}catch(i){throw t.runOutsideAngular(()=>e.handleError(i)),i}}(r,n,()=>{const e=s.injector.get(zc);return e.runInitializers(),e.donePromise.then(()=>(mc(s.injector.get(Jc,\"en-US\")||\"en-US\"),this._moduleDoBootstrap(s),s))})})}bootstrapModule(e,t=[]){const n=Cd({},t);return wd(this.injector,n,e).then(e=>this.bootstrapModuleFactory(e,n))}_moduleDoBootstrap(e){const t=e.injector.get(Td);if(e._bootstrapComponents.length>0)e._bootstrapComponents.forEach(e=>t.bootstrap(e));else{if(!e.instance.ngDoBootstrap)throw new Error(`The module ${Se(e.instance.constructor)} was bootstrapped, but it does not declare \"@NgModule.bootstrap\" components nor a \"ngDoBootstrap\" method. `+\"Please define one of these.\");e.instance.ngDoBootstrap(t)}this._modules.push(e)}onDestroy(e){this._destroyListeners.push(e)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new Error(\"The platform has already been destroyed!\");this._modules.slice().forEach(e=>e.destroy()),this._destroyListeners.forEach(e=>e()),this._destroyed=!0}get destroyed(){return this._destroyed}}return e.\\u0275fac=function(t){return new(t||e)(Qe(fo))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function Cd(e,t){return Array.isArray(t)?t.reduce(Cd,e):Object.assign(Object.assign({},e),t)}let Td=(()=>{class e{constructor(e,t,n,i,s,r){this._zone=e,this._console=t,this._injector=n,this._exceptionHandler=i,this._componentFactoryResolver=s,this._initStatus=r,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._enforceNoNewChanges=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._enforceNoNewChanges=Si(),this._zone.onMicrotaskEmpty.subscribe({next:()=>{this._zone.run(()=>{this.tick()})}});const o=new v(e=>{this._stable=this._zone.isStable&&!this._zone.hasPendingMacrotasks&&!this._zone.hasPendingMicrotasks,this._zone.runOutsideAngular(()=>{e.next(this._stable),e.complete()})}),a=new v(e=>{let t;this._zone.runOutsideAngular(()=>{t=this._zone.onStable.subscribe(()=>{ld.assertNotInAngularZone(),ad(()=>{this._stable||this._zone.hasPendingMacrotasks||this._zone.hasPendingMicrotasks||(this._stable=!0,e.next(!0))})})});const n=this._zone.onUnstable.subscribe(()=>{ld.assertInAngularZone(),this._stable&&(this._stable=!1,this._zone.runOutsideAngular(()=>{e.next(!1)}))});return()=>{t.unsubscribe(),n.unsubscribe()}});this.isStable=G(o,a.pipe(se()))}bootstrap(e,t){if(!this._initStatus.done)throw new Error(\"Cannot bootstrap as there are still asynchronous initializers running. Bootstrap components in the `ngDoBootstrap` method of the root module.\");let n;n=e instanceof qa?e:this._componentFactoryResolver.resolveComponentFactory(e),this.componentTypes.push(n.componentType);const i=n.isBoundToModule?void 0:this._injector.get(it),s=n.create(fo.NULL,[],t||n.selector,i);s.onDestroy(()=>{this._unloadComponent(s)});const r=s.injector.get(_d,null);return r&&s.injector.get(gd).registerApplication(s.location.nativeElement,r),this._loadComponent(s),Si()&&this._console.log(\"Angular is running in the development mode. Call enableProdMode() to enable the production mode.\"),s}tick(){if(this._runningTick)throw new Error(\"ApplicationRef.tick is called recursively\");try{this._runningTick=!0;for(let e of this._views)e.detectChanges();if(this._enforceNoNewChanges)for(let e of this._views)e.checkNoChanges()}catch(e){this._zone.runOutsideAngular(()=>this._exceptionHandler.handleError(e))}finally{this._runningTick=!1}}attachView(e){const t=e;this._views.push(t),t.attachToAppRef(this)}detachView(e){const t=e;Dd(this._views,t),t.detachFromAppRef()}_loadComponent(e){this.attachView(e.hostView),this.tick(),this.components.push(e),this._injector.get(qc,[]).concat(this._bootstrapListeners).forEach(t=>t(e))}_unloadComponent(e){this.detachView(e.hostView),Dd(this.components,e)}ngOnDestroy(){this._views.slice().forEach(e=>e.destroy())}get viewCount(){return this._views.length}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ld),Qe(Gc),Qe(fo),Qe(hi),Qe(Ja),Qe(zc))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function Dd(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}class Yd{}class Ed{}const Od={factoryPathPrefix:\"\",factoryPathSuffix:\".ngfactory\"};let Id=(()=>{class e{constructor(e,t){this._compiler=e,this._config=t||Od}load(e){return this.loadAndCompile(e)}loadAndCompile(e){let[t,i]=e.split(\"#\");return void 0===i&&(i=\"default\"),n(\"zn8P\")(t).then(e=>e[i]).then(e=>Pd(e,t,i)).then(e=>this._compiler.compileModuleAsync(e))}loadFactory(e){let[t,i]=e.split(\"#\"),s=\"NgFactory\";return void 0===i&&(i=\"default\",s=\"\"),n(\"zn8P\")(this._config.factoryPathPrefix+t+this._config.factoryPathSuffix).then(e=>e[i+s]).then(e=>Pd(e,t,i))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(sd),Qe(Ed,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function Pd(e,t,n){if(!e)throw new Error(`Cannot find '${n}' in '${t}'`);return e}const Ad=Sd(null,\"core\",[{provide:Bc,useValue:\"unknown\"},{provide:xd,deps:[fo]},{provide:gd,deps:[]},{provide:Gc,deps:[]}]),Rd=[{provide:Td,useClass:Td,deps:[ld,Gc,fo,hi,Ja,zc]},{provide:Cl,deps:[ld],useFactory:function(e){let t=[];return e.onStable.subscribe(()=>{for(;t.length;)t.pop()()}),function(e){t.push(e)}}},{provide:zc,useClass:zc,deps:[[new le,Nc]]},{provide:sd,useClass:sd,deps:[]},Wc,{provide:fl,useFactory:function(){return yl},deps:[]},{provide:_l,useFactory:function(){return bl},deps:[]},{provide:Jc,useFactory:function(e){return mc(e=e||\"undefined\"!=typeof $localize&&$localize.locale||\"en-US\"),e},deps:[[new ae(Jc),new le,new de]]},{provide:Kc,useValue:\"USD\"}];let Hd=(()=>{class e{constructor(e){}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)(Qe(Td))},providers:Rd}),e})(),jd=null;function Fd(){return jd}const Nd=new Ve(\"DocumentToken\");let zd=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:Vd,token:e,providedIn:\"platform\"}),e})();function Vd(){return Qe(Ud)}const Wd=new Ve(\"Location Initialized\");let Ud=(()=>{class e extends zd{constructor(e){super(),this._doc=e,this._init()}_init(){this.location=Fd().getLocation(),this._history=Fd().getHistory()}getBaseHrefFromDOM(){return Fd().getBaseHref(this._doc)}onPopState(e){Fd().getGlobalEventTarget(this._doc,\"window\").addEventListener(\"popstate\",e,!1)}onHashChange(e){Fd().getGlobalEventTarget(this._doc,\"window\").addEventListener(\"hashchange\",e,!1)}get href(){return this.location.href}get protocol(){return this.location.protocol}get hostname(){return this.location.hostname}get port(){return this.location.port}get pathname(){return this.location.pathname}get search(){return this.location.search}get hash(){return this.location.hash}set pathname(e){this.location.pathname=e}pushState(e,t,n){$d()?this._history.pushState(e,t,n):this.location.hash=n}replaceState(e,t,n){$d()?this._history.replaceState(e,t,n):this.location.hash=n}forward(){this._history.forward()}back(){this._history.back()}getState(){return this._history.state}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({factory:Bd,token:e,providedIn:\"platform\"}),e})();function $d(){return!!window.history.pushState}function Bd(){return new Ud(Qe(Nd))}function qd(e,t){if(0==e.length)return t;if(0==t.length)return e;let n=0;return e.endsWith(\"/\")&&n++,t.startsWith(\"/\")&&n++,2==n?e+t.substring(1):1==n?e+t:e+\"/\"+t}function Gd(e){const t=e.match(/#|\\?|$/),n=t&&t.index||e.length;return e.slice(0,n-(\"/\"===e[n-1]?1:0))+e.slice(n)}function Jd(e){return e&&\"?\"!==e[0]?\"?\"+e:e}let Kd=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:Zd,token:e,providedIn:\"root\"}),e})();function Zd(e){const t=Qe(Nd).location;return new Xd(Qe(zd),t&&t.origin||\"\")}const Qd=new Ve(\"appBaseHref\");let Xd=(()=>{class e extends Kd{constructor(e,t){if(super(),this._platformLocation=e,null==t&&(t=this._platformLocation.getBaseHrefFromDOM()),null==t)throw new Error(\"No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.\");this._baseHref=t}onPopState(e){this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e)}getBaseHref(){return this._baseHref}prepareExternalUrl(e){return qd(this._baseHref,e)}path(e=!1){const t=this._platformLocation.pathname+Jd(this._platformLocation.search),n=this._platformLocation.hash;return n&&e?`${t}${n}`:t}pushState(e,t,n,i){const s=this.prepareExternalUrl(n+Jd(i));this._platformLocation.pushState(e,t,s)}replaceState(e,t,n,i){const s=this.prepareExternalUrl(n+Jd(i));this._platformLocation.replaceState(e,t,s)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(zd),Qe(Qd,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),eu=(()=>{class e extends Kd{constructor(e,t){super(),this._platformLocation=e,this._baseHref=\"\",null!=t&&(this._baseHref=t)}onPopState(e){this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e)}getBaseHref(){return this._baseHref}path(e=!1){let t=this._platformLocation.hash;return null==t&&(t=\"#\"),t.length>0?t.substring(1):t}prepareExternalUrl(e){const t=qd(this._baseHref,e);return t.length>0?\"#\"+t:t}pushState(e,t,n,i){let s=this.prepareExternalUrl(n+Jd(i));0==s.length&&(s=this._platformLocation.pathname),this._platformLocation.pushState(e,t,s)}replaceState(e,t,n,i){let s=this.prepareExternalUrl(n+Jd(i));0==s.length&&(s=this._platformLocation.pathname),this._platformLocation.replaceState(e,t,s)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(zd),Qe(Qd,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),tu=(()=>{class e{constructor(e,t){this._subject=new yc,this._urlChangeListeners=[],this._platformStrategy=e;const n=this._platformStrategy.getBaseHref();this._platformLocation=t,this._baseHref=Gd(iu(n)),this._platformStrategy.onPopState(e=>{this._subject.emit({url:this.path(!0),pop:!0,state:e.state,type:e.type})})}path(e=!1){return this.normalize(this._platformStrategy.path(e))}getState(){return this._platformLocation.getState()}isCurrentPathEqualTo(e,t=\"\"){return this.path()==this.normalize(e+Jd(t))}normalize(t){return e.stripTrailingSlash(function(e,t){return e&&t.startsWith(e)?t.substring(e.length):t}(this._baseHref,iu(t)))}prepareExternalUrl(e){return e&&\"/\"!==e[0]&&(e=\"/\"+e),this._platformStrategy.prepareExternalUrl(e)}go(e,t=\"\",n=null){this._platformStrategy.pushState(n,\"\",e,t),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+Jd(t)),n)}replaceState(e,t=\"\",n=null){this._platformStrategy.replaceState(n,\"\",e,t),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+Jd(t)),n)}forward(){this._platformStrategy.forward()}back(){this._platformStrategy.back()}onUrlChange(e){this._urlChangeListeners.push(e),this.subscribe(e=>{this._notifyUrlChangeListeners(e.url,e.state)})}_notifyUrlChangeListeners(e=\"\",t){this._urlChangeListeners.forEach(n=>n(e,t))}subscribe(e,t,n){return this._subject.subscribe({next:e,error:t,complete:n})}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Kd),Qe(zd))},e.normalizeQueryParams=Jd,e.joinWithSlash=qd,e.stripTrailingSlash=Gd,e.\\u0275prov=pe({factory:nu,token:e,providedIn:\"root\"}),e})();function nu(){return new tu(Qe(Kd),Qe(zd))}function iu(e){return e.replace(/\\/index.html$/,\"\")}const su=function(){var e={Zero:0,One:1,Two:2,Few:3,Many:4,Other:5};return e[e.Zero]=\"Zero\",e[e.One]=\"One\",e[e.Two]=\"Two\",e[e.Few]=\"Few\",e[e.Many]=\"Many\",e[e.Other]=\"Other\",e}(),ru=Il;class ou{}let au=(()=>{class e extends ou{constructor(e){super(),this.locale=e}getPluralCategory(e,t){switch(ru(t||this.locale)(e)){case su.Zero:return\"zero\";case su.One:return\"one\";case su.Two:return\"two\";case su.Few:return\"few\";case su.Many:return\"many\";default:return\"other\"}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Jc))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function lu(e,t){t=encodeURIComponent(t);for(const n of e.split(\";\")){const e=n.indexOf(\"=\"),[i,s]=-1==e?[n,\"\"]:[n.slice(0,e),n.slice(e+1)];if(i.trim()===t)return decodeURIComponent(s)}return null}let cu=(()=>{class e{constructor(e,t,n,i){this._iterableDiffers=e,this._keyValueDiffers=t,this._ngEl=n,this._renderer=i,this._iterableDiffer=null,this._keyValueDiffer=null,this._initialClasses=[],this._rawClass=null}set klass(e){this._removeClasses(this._initialClasses),this._initialClasses=\"string\"==typeof e?e.split(/\\s+/):[],this._applyClasses(this._initialClasses),this._applyClasses(this._rawClass)}set ngClass(e){this._removeClasses(this._rawClass),this._applyClasses(this._initialClasses),this._iterableDiffer=null,this._keyValueDiffer=null,this._rawClass=\"string\"==typeof e?e.split(/\\s+/):e,this._rawClass&&(So(this._rawClass)?this._iterableDiffer=this._iterableDiffers.find(this._rawClass).create():this._keyValueDiffer=this._keyValueDiffers.find(this._rawClass).create())}ngDoCheck(){if(this._iterableDiffer){const e=this._iterableDiffer.diff(this._rawClass);e&&this._applyIterableChanges(e)}else if(this._keyValueDiffer){const e=this._keyValueDiffer.diff(this._rawClass);e&&this._applyKeyValueChanges(e)}}_applyKeyValueChanges(e){e.forEachAddedItem(e=>this._toggleClass(e.key,e.currentValue)),e.forEachChangedItem(e=>this._toggleClass(e.key,e.currentValue)),e.forEachRemovedItem(e=>{e.previousValue&&this._toggleClass(e.key,!1)})}_applyIterableChanges(e){e.forEachAddedItem(e=>{if(\"string\"!=typeof e.item)throw new Error(`NgClass can only toggle CSS classes expressed as strings, got ${Se(e.item)}`);this._toggleClass(e.item,!0)}),e.forEachRemovedItem(e=>this._toggleClass(e.item,!1))}_applyClasses(e){e&&(Array.isArray(e)||e instanceof Set?e.forEach(e=>this._toggleClass(e,!0)):Object.keys(e).forEach(t=>this._toggleClass(t,!!e[t])))}_removeClasses(e){e&&(Array.isArray(e)||e instanceof Set?e.forEach(e=>this._toggleClass(e,!1)):Object.keys(e).forEach(e=>this._toggleClass(e,!1)))}_toggleClass(e,t){(e=e.trim())&&e.split(/\\s+/g).forEach(e=>{t?this._renderer.addClass(this._ngEl.nativeElement,e):this._renderer.removeClass(this._ngEl.nativeElement,e)})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(fl),Eo(_l),Eo(Ka),Eo(el))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngClass\",\"\"]],inputs:{klass:[\"class\",\"klass\"],ngClass:\"ngClass\"}}),e})();class du{constructor(e,t,n,i){this.$implicit=e,this.ngForOf=t,this.index=n,this.count=i}get first(){return 0===this.index}get last(){return this.index===this.count-1}get even(){return this.index%2==0}get odd(){return!this.even}}let uu=(()=>{class e{constructor(e,t,n){this._viewContainer=e,this._template=t,this._differs=n,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}set ngForOf(e){this._ngForOf=e,this._ngForOfDirty=!0}set ngForTrackBy(e){Si()&&null!=e&&\"function\"!=typeof e&&console&&console.warn&&console.warn(`trackBy must be a function, but received ${JSON.stringify(e)}. `+\"See https://angular.io/api/common/NgForOf#change-propagation for more information.\"),this._trackByFn=e}get ngForTrackBy(){return this._trackByFn}set ngForTemplate(e){e&&(this._template=e)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const n=this._ngForOf;if(!this._differ&&n)try{this._differ=this._differs.find(n).create(this.ngForTrackBy)}catch(t){throw new Error(`Cannot find a differ supporting object '${n}' of type '${e=n,e.name||typeof e}'. NgFor only supports binding to Iterables such as Arrays.`)}}var e;if(this._differ){const e=this._differ.diff(this._ngForOf);e&&this._applyChanges(e)}}_applyChanges(e){const t=[];e.forEachOperation((e,n,i)=>{if(null==e.previousIndex){const n=this._viewContainer.createEmbeddedView(this._template,new du(null,this._ngForOf,-1,-1),null===i?void 0:i),s=new hu(e,n);t.push(s)}else if(null==i)this._viewContainer.remove(null===n?void 0:n);else if(null!==n){const s=this._viewContainer.get(n);this._viewContainer.move(s,i);const r=new hu(e,s);t.push(r)}});for(let n=0;n{this._viewContainer.get(e.currentIndex).context.$implicit=e.item})}_perViewChange(e,t){e.context.$implicit=t.item}static ngTemplateContextGuard(e,t){return!0}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml),Eo(vl),Eo(fl))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngFor\",\"\",\"ngForOf\",\"\"]],inputs:{ngForOf:\"ngForOf\",ngForTrackBy:\"ngForTrackBy\",ngForTemplate:\"ngForTemplate\"}}),e})();class hu{constructor(e,t){this.record=e,this.view=t}}let mu=(()=>{class e{constructor(e,t){this._viewContainer=e,this._context=new pu,this._thenTemplateRef=null,this._elseTemplateRef=null,this._thenViewRef=null,this._elseViewRef=null,this._thenTemplateRef=t}set ngIf(e){this._context.$implicit=this._context.ngIf=e,this._updateView()}set ngIfThen(e){fu(\"ngIfThen\",e),this._thenTemplateRef=e,this._thenViewRef=null,this._updateView()}set ngIfElse(e){fu(\"ngIfElse\",e),this._elseTemplateRef=e,this._elseViewRef=null,this._updateView()}_updateView(){this._context.$implicit?this._thenViewRef||(this._viewContainer.clear(),this._elseViewRef=null,this._thenTemplateRef&&(this._thenViewRef=this._viewContainer.createEmbeddedView(this._thenTemplateRef,this._context))):this._elseViewRef||(this._viewContainer.clear(),this._thenViewRef=null,this._elseTemplateRef&&(this._elseViewRef=this._viewContainer.createEmbeddedView(this._elseTemplateRef,this._context)))}static ngTemplateContextGuard(e,t){return!0}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml),Eo(vl))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngIf\",\"\"]],inputs:{ngIf:\"ngIf\",ngIfThen:\"ngIfThen\",ngIfElse:\"ngIfElse\"}}),e})();class pu{constructor(){this.$implicit=null,this.ngIf=null}}function fu(e,t){if(t&&!t.createEmbeddedView)throw new Error(`${e} must be a TemplateRef, but received '${Se(t)}'.`)}class _u{constructor(e,t){this._viewContainerRef=e,this._templateRef=t,this._created=!1}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(e){e&&!this._created?this.create():!e&&this._created&&this.destroy()}}let gu=(()=>{class e{constructor(){this._defaultUsed=!1,this._caseCount=0,this._lastCaseCheckIndex=0,this._lastCasesMatched=!1}set ngSwitch(e){this._ngSwitch=e,0===this._caseCount&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(e){this._defaultViews||(this._defaultViews=[]),this._defaultViews.push(e)}_matchCase(e){const t=e==this._ngSwitch;return this._lastCasesMatched=this._lastCasesMatched||t,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),t}_updateDefaultCases(e){if(this._defaultViews&&e!==this._defaultUsed){this._defaultUsed=e;for(let t=0;t{class e{constructor(e,t,n){this.ngSwitch=n,n._addCase(),this._view=new _u(e,t)}ngDoCheck(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml),Eo(vl),Eo(gu,1))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngSwitchCase\",\"\"]],inputs:{ngSwitchCase:\"ngSwitchCase\"}}),e})(),bu=(()=>{class e{constructor(e,t,n){n._addDefault(new _u(e,t))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml),Eo(vl),Eo(gu,1))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngSwitchDefault\",\"\"]]}),e})(),vu=(()=>{class e{constructor(e,t,n){this._ngEl=e,this._differs=t,this._renderer=n,this._ngStyle=null,this._differ=null}set ngStyle(e){this._ngStyle=e,!this._differ&&e&&(this._differ=this._differs.find(e).create())}ngDoCheck(){if(this._differ){const e=this._differ.diff(this._ngStyle);e&&this._applyChanges(e)}}_setStyle(e,t){const[n,i]=e.split(\".\");null!=(t=null!=t&&i?`${t}${i}`:t)?this._renderer.setStyle(this._ngEl.nativeElement,n,t):this._renderer.removeStyle(this._ngEl.nativeElement,n)}_applyChanges(e){e.forEachRemovedItem(e=>this._setStyle(e.key,null)),e.forEachAddedItem(e=>this._setStyle(e.key,e.currentValue)),e.forEachChangedItem(e=>this._setStyle(e.key,e.currentValue))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(_l),Eo(el))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngStyle\",\"\"]],inputs:{ngStyle:\"ngStyle\"}}),e})(),wu=(()=>{class e{constructor(e){this._viewContainerRef=e,this._viewRef=null,this.ngTemplateOutletContext=null,this.ngTemplateOutlet=null}ngOnChanges(e){if(this._shouldRecreateView(e)){const e=this._viewContainerRef;this._viewRef&&e.remove(e.indexOf(this._viewRef)),this._viewRef=this.ngTemplateOutlet?e.createEmbeddedView(this.ngTemplateOutlet,this.ngTemplateOutletContext):null}else this._viewRef&&this.ngTemplateOutletContext&&this._updateExistingContext(this.ngTemplateOutletContext)}_shouldRecreateView(e){const t=e.ngTemplateOutletContext;return!!e.ngTemplateOutlet||t&&this._hasContextShapeChanged(t)}_hasContextShapeChanged(e){const t=Object.keys(e.previousValue||{}),n=Object.keys(e.currentValue||{});if(t.length===n.length){for(let e of n)if(-1===t.indexOf(e))return!0;return!1}return!0}_updateExistingContext(e){for(let t of Object.keys(e))this._viewRef.context[t]=this.ngTemplateOutletContext[t]}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngTemplateOutlet\",\"\"]],inputs:{ngTemplateOutletContext:\"ngTemplateOutletContext\",ngTemplateOutlet:\"ngTemplateOutlet\"},features:[Ra]}),e})(),Mu=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[{provide:ou,useClass:au}]}),e})();function ku(e){return\"browser\"===e}let Su=(()=>{class e{}return e.\\u0275prov=pe({token:e,providedIn:\"root\",factory:()=>new Lu(Qe(Nd),window,Qe(hi))}),e})();class Lu{constructor(e,t,n){this.document=e,this.window=t,this.errorHandler=n,this.offset=()=>[0,0]}setOffset(e){this.offset=Array.isArray(e)?()=>e:e}getScrollPosition(){return this.supportScrollRestoration()?[this.window.scrollX,this.window.scrollY]:[0,0]}scrollToPosition(e){this.supportScrollRestoration()&&this.window.scrollTo(e[0],e[1])}scrollToAnchor(e){if(this.supportScrollRestoration()){e=this.window.CSS&&this.window.CSS.escape?this.window.CSS.escape(e):e.replace(/(\\\"|\\'\\ |:|\\.|\\[|\\]|,|=)/g,\"\\\\$1\");try{const t=this.document.querySelector(`#${e}`);if(t)return void this.scrollToElement(t);const n=this.document.querySelector(`[name='${e}']`);if(n)return void this.scrollToElement(n)}catch(t){this.errorHandler.handleError(t)}}}setHistoryScrollRestoration(e){if(this.supportScrollRestoration()){const t=this.window.history;t&&t.scrollRestoration&&(t.scrollRestoration=e)}}scrollToElement(e){const t=e.getBoundingClientRect(),n=t.left+this.window.pageXOffset,i=t.top+this.window.pageYOffset,s=this.offset();this.window.scrollTo(n-s[0],i-s[1])}supportScrollRestoration(){try{return!!this.window&&!!this.window.scrollTo}catch(e){return!1}}}function xu(...e){let t=e[e.length-1];return C(t)?(e.pop(),N(e,t)):q(e)}function Cu(e,t){return V(e,t,1)}function Tu(e,t){return function(n){return n.lift(new Du(e,t))}}class Du{constructor(e,t){this.predicate=e,this.thisArg=t}call(e,t){return t.subscribe(new Yu(e,this.predicate,this.thisArg))}}class Yu extends p{constructor(e,t,n){super(e),this.predicate=t,this.thisArg=n,this.count=0}_next(e){let t;try{t=this.predicate.call(this.thisArg,e,this.count++)}catch(n){return void this.destination.error(n)}t&&this.destination.next(e)}}class Eu{}class Ou{}class Iu{constructor(e){this.normalizedNames=new Map,this.lazyUpdate=null,e?this.lazyInit=\"string\"==typeof e?()=>{this.headers=new Map,e.split(\"\\n\").forEach(e=>{const t=e.indexOf(\":\");if(t>0){const n=e.slice(0,t),i=n.toLowerCase(),s=e.slice(t+1).trim();this.maybeSetNormalizedName(n,i),this.headers.has(i)?this.headers.get(i).push(s):this.headers.set(i,[s])}})}:()=>{this.headers=new Map,Object.keys(e).forEach(t=>{let n=e[t];const i=t.toLowerCase();\"string\"==typeof n&&(n=[n]),n.length>0&&(this.headers.set(i,n),this.maybeSetNormalizedName(t,i))})}:this.headers=new Map}has(e){return this.init(),this.headers.has(e.toLowerCase())}get(e){this.init();const t=this.headers.get(e.toLowerCase());return t&&t.length>0?t[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(e){return this.init(),this.headers.get(e.toLowerCase())||null}append(e,t){return this.clone({name:e,value:t,op:\"a\"})}set(e,t){return this.clone({name:e,value:t,op:\"s\"})}delete(e,t){return this.clone({name:e,value:t,op:\"d\"})}maybeSetNormalizedName(e,t){this.normalizedNames.has(t)||this.normalizedNames.set(t,e)}init(){this.lazyInit&&(this.lazyInit instanceof Iu?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(e=>this.applyUpdate(e)),this.lazyUpdate=null))}copyFrom(e){e.init(),Array.from(e.headers.keys()).forEach(t=>{this.headers.set(t,e.headers.get(t)),this.normalizedNames.set(t,e.normalizedNames.get(t))})}clone(e){const t=new Iu;return t.lazyInit=this.lazyInit&&this.lazyInit instanceof Iu?this.lazyInit:this,t.lazyUpdate=(this.lazyUpdate||[]).concat([e]),t}applyUpdate(e){const t=e.name.toLowerCase();switch(e.op){case\"a\":case\"s\":let n=e.value;if(\"string\"==typeof n&&(n=[n]),0===n.length)return;this.maybeSetNormalizedName(e.name,t);const i=(\"a\"===e.op?this.headers.get(t):void 0)||[];i.push(...n),this.headers.set(t,i);break;case\"d\":const s=e.value;if(s){let e=this.headers.get(t);if(!e)return;e=e.filter(e=>-1===s.indexOf(e)),0===e.length?(this.headers.delete(t),this.normalizedNames.delete(t)):this.headers.set(t,e)}else this.headers.delete(t),this.normalizedNames.delete(t)}}forEach(e){this.init(),Array.from(this.normalizedNames.keys()).forEach(t=>e(this.normalizedNames.get(t),this.headers.get(t)))}}class Pu{encodeKey(e){return Au(e)}encodeValue(e){return Au(e)}decodeKey(e){return decodeURIComponent(e)}decodeValue(e){return decodeURIComponent(e)}}function Au(e){return encodeURIComponent(e).replace(/%40/gi,\"@\").replace(/%3A/gi,\":\").replace(/%24/gi,\"$\").replace(/%2C/gi,\",\").replace(/%3B/gi,\";\").replace(/%2B/gi,\"+\").replace(/%3D/gi,\"=\").replace(/%3F/gi,\"?\").replace(/%2F/gi,\"/\")}class Ru{constructor(e={}){if(this.updates=null,this.cloneFrom=null,this.encoder=e.encoder||new Pu,e.fromString){if(e.fromObject)throw new Error(\"Cannot specify both fromString and fromObject.\");this.map=function(e,t){const n=new Map;return e.length>0&&e.split(\"&\").forEach(e=>{const i=e.indexOf(\"=\"),[s,r]=-1==i?[t.decodeKey(e),\"\"]:[t.decodeKey(e.slice(0,i)),t.decodeValue(e.slice(i+1))],o=n.get(s)||[];o.push(r),n.set(s,o)}),n}(e.fromString,this.encoder)}else e.fromObject?(this.map=new Map,Object.keys(e.fromObject).forEach(t=>{const n=e.fromObject[t];this.map.set(t,Array.isArray(n)?n:[n])})):this.map=null}has(e){return this.init(),this.map.has(e)}get(e){this.init();const t=this.map.get(e);return t?t[0]:null}getAll(e){return this.init(),this.map.get(e)||null}keys(){return this.init(),Array.from(this.map.keys())}append(e,t){return this.clone({param:e,value:t,op:\"a\"})}set(e,t){return this.clone({param:e,value:t,op:\"s\"})}delete(e,t){return this.clone({param:e,value:t,op:\"d\"})}toString(){return this.init(),this.keys().map(e=>{const t=this.encoder.encodeKey(e);return this.map.get(e).map(e=>t+\"=\"+this.encoder.encodeValue(e)).join(\"&\")}).filter(e=>\"\"!==e).join(\"&\")}clone(e){const t=new Ru({encoder:this.encoder});return t.cloneFrom=this.cloneFrom||this,t.updates=(this.updates||[]).concat([e]),t}init(){null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(e=>this.map.set(e,this.cloneFrom.map.get(e))),this.updates.forEach(e=>{switch(e.op){case\"a\":case\"s\":const t=(\"a\"===e.op?this.map.get(e.param):void 0)||[];t.push(e.value),this.map.set(e.param,t);break;case\"d\":if(void 0===e.value){this.map.delete(e.param);break}{let t=this.map.get(e.param)||[];const n=t.indexOf(e.value);-1!==n&&t.splice(n,1),t.length>0?this.map.set(e.param,t):this.map.delete(e.param)}}}),this.cloneFrom=this.updates=null)}}function Hu(e){return\"undefined\"!=typeof ArrayBuffer&&e instanceof ArrayBuffer}function ju(e){return\"undefined\"!=typeof Blob&&e instanceof Blob}function Fu(e){return\"undefined\"!=typeof FormData&&e instanceof FormData}class Nu{constructor(e,t,n,i){let s;if(this.url=t,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType=\"json\",this.method=e.toUpperCase(),function(e){switch(e){case\"DELETE\":case\"GET\":case\"HEAD\":case\"OPTIONS\":case\"JSONP\":return!1;default:return!0}}(this.method)||i?(this.body=void 0!==n?n:null,s=i):s=n,s&&(this.reportProgress=!!s.reportProgress,this.withCredentials=!!s.withCredentials,s.responseType&&(this.responseType=s.responseType),s.headers&&(this.headers=s.headers),s.params&&(this.params=s.params)),this.headers||(this.headers=new Iu),this.params){const e=this.params.toString();if(0===e.length)this.urlWithParams=t;else{const n=t.indexOf(\"?\");this.urlWithParams=t+(-1===n?\"?\":nt.set(n,e.setHeaders[n]),a)),e.setParams&&(l=Object.keys(e.setParams).reduce((t,n)=>t.set(n,e.setParams[n]),l)),new Nu(t,n,s,{params:l,headers:a,reportProgress:o,responseType:i,withCredentials:r})}}const zu=function(){var e={Sent:0,UploadProgress:1,ResponseHeader:2,DownloadProgress:3,Response:4,User:5};return e[e.Sent]=\"Sent\",e[e.UploadProgress]=\"UploadProgress\",e[e.ResponseHeader]=\"ResponseHeader\",e[e.DownloadProgress]=\"DownloadProgress\",e[e.Response]=\"Response\",e[e.User]=\"User\",e}();class Vu{constructor(e,t=200,n=\"OK\"){this.headers=e.headers||new Iu,this.status=void 0!==e.status?e.status:t,this.statusText=e.statusText||n,this.url=e.url||null,this.ok=this.status>=200&&this.status<300}}class Wu extends Vu{constructor(e={}){super(e),this.type=zu.ResponseHeader}clone(e={}){return new Wu({headers:e.headers||this.headers,status:void 0!==e.status?e.status:this.status,statusText:e.statusText||this.statusText,url:e.url||this.url||void 0})}}class Uu extends Vu{constructor(e={}){super(e),this.type=zu.Response,this.body=void 0!==e.body?e.body:null}clone(e={}){return new Uu({body:void 0!==e.body?e.body:this.body,headers:e.headers||this.headers,status:void 0!==e.status?e.status:this.status,statusText:e.statusText||this.statusText,url:e.url||this.url||void 0})}}class $u extends Vu{constructor(e){super(e,0,\"Unknown Error\"),this.name=\"HttpErrorResponse\",this.ok=!1,this.message=this.status>=200&&this.status<300?`Http failure during parsing for ${e.url||\"(unknown url)\"}`:`Http failure response for ${e.url||\"(unknown url)\"}: ${e.status} ${e.statusText}`,this.error=e.error||null}}function Bu(e,t){return{body:t,headers:e.headers,observe:e.observe,params:e.params,reportProgress:e.reportProgress,responseType:e.responseType,withCredentials:e.withCredentials}}let qu=(()=>{class e{constructor(e){this.handler=e}request(e,t,n={}){let i;if(e instanceof Nu)i=e;else{let s=void 0;s=n.headers instanceof Iu?n.headers:new Iu(n.headers);let r=void 0;n.params&&(r=n.params instanceof Ru?n.params:new Ru({fromObject:n.params})),i=new Nu(e,t,void 0!==n.body?n.body:null,{headers:s,params:r,reportProgress:n.reportProgress,responseType:n.responseType||\"json\",withCredentials:n.withCredentials})}const s=xu(i).pipe(Cu(e=>this.handler.handle(e)));if(e instanceof Nu||\"events\"===n.observe)return s;const r=s.pipe(Tu(e=>e instanceof Uu));switch(n.observe||\"body\"){case\"body\":switch(i.responseType){case\"arraybuffer\":return r.pipe(H(e=>{if(null!==e.body&&!(e.body instanceof ArrayBuffer))throw new Error(\"Response is not an ArrayBuffer.\");return e.body}));case\"blob\":return r.pipe(H(e=>{if(null!==e.body&&!(e.body instanceof Blob))throw new Error(\"Response is not a Blob.\");return e.body}));case\"text\":return r.pipe(H(e=>{if(null!==e.body&&\"string\"!=typeof e.body)throw new Error(\"Response is not a string.\");return e.body}));case\"json\":default:return r.pipe(H(e=>e.body))}case\"response\":return r;default:throw new Error(`Unreachable: unhandled observe type ${n.observe}}`)}}delete(e,t={}){return this.request(\"DELETE\",e,t)}get(e,t={}){return this.request(\"GET\",e,t)}head(e,t={}){return this.request(\"HEAD\",e,t)}jsonp(e,t){return this.request(\"JSONP\",e,{params:(new Ru).append(t,\"JSONP_CALLBACK\"),observe:\"body\",responseType:\"json\"})}options(e,t={}){return this.request(\"OPTIONS\",e,t)}patch(e,t,n={}){return this.request(\"PATCH\",e,Bu(n,t))}post(e,t,n={}){return this.request(\"POST\",e,Bu(n,t))}put(e,t,n={}){return this.request(\"PUT\",e,Bu(n,t))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Eu))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class Gu{constructor(e,t){this.next=e,this.interceptor=t}handle(e){return this.interceptor.intercept(e,this.next)}}const Ju=new Ve(\"HTTP_INTERCEPTORS\");let Ku=(()=>{class e{intercept(e,t){return t.handle(e)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const Zu=/^\\)\\]\\}',?\\n/;class Qu{}let Xu=(()=>{class e{constructor(){}build(){return new XMLHttpRequest}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),eh=(()=>{class e{constructor(e){this.xhrFactory=e}handle(e){if(\"JSONP\"===e.method)throw new Error(\"Attempted to construct Jsonp request without JsonpClientModule installed.\");return new v(t=>{const n=this.xhrFactory.build();if(n.open(e.method,e.urlWithParams),e.withCredentials&&(n.withCredentials=!0),e.headers.forEach((e,t)=>n.setRequestHeader(e,t.join(\",\"))),e.headers.has(\"Accept\")||n.setRequestHeader(\"Accept\",\"application/json, text/plain, */*\"),!e.headers.has(\"Content-Type\")){const t=e.detectContentTypeHeader();null!==t&&n.setRequestHeader(\"Content-Type\",t)}if(e.responseType){const t=e.responseType.toLowerCase();n.responseType=\"json\"!==t?t:\"text\"}const i=e.serializeBody();let s=null;const r=()=>{if(null!==s)return s;const t=1223===n.status?204:n.status,i=n.statusText||\"OK\",r=new Iu(n.getAllResponseHeaders()),o=function(e){return\"responseURL\"in e&&e.responseURL?e.responseURL:/^X-Request-URL:/m.test(e.getAllResponseHeaders())?e.getResponseHeader(\"X-Request-URL\"):null}(n)||e.url;return s=new Wu({headers:r,status:t,statusText:i,url:o}),s},o=()=>{let{headers:i,status:s,statusText:o,url:a}=r(),l=null;204!==s&&(l=void 0===n.response?n.responseText:n.response),0===s&&(s=l?200:0);let c=s>=200&&s<300;if(\"json\"===e.responseType&&\"string\"==typeof l){const e=l;l=l.replace(Zu,\"\");try{l=\"\"!==l?JSON.parse(l):null}catch(d){l=e,c&&(c=!1,l={error:d,text:l})}}c?(t.next(new Uu({body:l,headers:i,status:s,statusText:o,url:a||void 0})),t.complete()):t.error(new $u({error:l,headers:i,status:s,statusText:o,url:a||void 0}))},a=e=>{const{url:i}=r(),s=new $u({error:e,status:n.status||0,statusText:n.statusText||\"Unknown Error\",url:i||void 0});t.error(s)};let l=!1;const c=i=>{l||(t.next(r()),l=!0);let s={type:zu.DownloadProgress,loaded:i.loaded};i.lengthComputable&&(s.total=i.total),\"text\"===e.responseType&&n.responseText&&(s.partialText=n.responseText),t.next(s)},d=e=>{let n={type:zu.UploadProgress,loaded:e.loaded};e.lengthComputable&&(n.total=e.total),t.next(n)};return n.addEventListener(\"load\",o),n.addEventListener(\"error\",a),e.reportProgress&&(n.addEventListener(\"progress\",c),null!==i&&n.upload&&n.upload.addEventListener(\"progress\",d)),n.send(i),t.next({type:zu.Sent}),()=>{n.removeEventListener(\"error\",a),n.removeEventListener(\"load\",o),e.reportProgress&&(n.removeEventListener(\"progress\",c),null!==i&&n.upload&&n.upload.removeEventListener(\"progress\",d)),n.abort()}})}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Qu))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const th=new Ve(\"XSRF_COOKIE_NAME\"),nh=new Ve(\"XSRF_HEADER_NAME\");class ih{}let sh=(()=>{class e{constructor(e,t,n){this.doc=e,this.platform=t,this.cookieName=n,this.lastCookieString=\"\",this.lastToken=null,this.parseCount=0}getToken(){if(\"server\"===this.platform)return null;const e=this.doc.cookie||\"\";return e!==this.lastCookieString&&(this.parseCount++,this.lastToken=lu(e,this.cookieName),this.lastCookieString=e),this.lastToken}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd),Qe(Bc),Qe(th))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),rh=(()=>{class e{constructor(e,t){this.tokenService=e,this.headerName=t}intercept(e,t){const n=e.url.toLowerCase();if(\"GET\"===e.method||\"HEAD\"===e.method||n.startsWith(\"http://\")||n.startsWith(\"https://\"))return t.handle(e);const i=this.tokenService.getToken();return null===i||e.headers.has(this.headerName)||(e=e.clone({headers:e.headers.set(this.headerName,i)})),t.handle(e)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ih),Qe(nh))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),oh=(()=>{class e{constructor(e,t){this.backend=e,this.injector=t,this.chain=null}handle(e){if(null===this.chain){const e=this.injector.get(Ju,[]);this.chain=e.reduceRight((e,t)=>new Gu(e,t),this.backend)}return this.chain.handle(e)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Ou),Qe(fo))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),ah=(()=>{class e{static disable(){return{ngModule:e,providers:[{provide:rh,useClass:Ku}]}}static withOptions(t={}){return{ngModule:e,providers:[t.cookieName?{provide:th,useValue:t.cookieName}:[],t.headerName?{provide:nh,useValue:t.headerName}:[]]}}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[rh,{provide:Ju,useExisting:rh,multi:!0},{provide:ih,useClass:sh},{provide:th,useValue:\"XSRF-TOKEN\"},{provide:nh,useValue:\"X-XSRF-TOKEN\"}]}),e})(),lh=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[qu,{provide:Eu,useClass:oh},eh,{provide:Ou,useExisting:eh},Xu,{provide:Qu,useExisting:Xu}],imports:[[ah.withOptions({cookieName:\"XSRF-TOKEN\",headerName:\"X-XSRF-TOKEN\"})]]}),e})();function ch(...e){if(1===e.length){const t=e[0];if(l(t))return dh(t,null);if(c(t)&&Object.getPrototypeOf(t)===Object.prototype){const e=Object.keys(t);return dh(e.map(e=>t[e]),e)}}if(\"function\"==typeof e[e.length-1]){const t=e.pop();return dh(e=1===e.length&&l(e[0])?e[0]:e,null).pipe(H(e=>t(...e)))}return dh(e,null)}function dh(e,t){return new v(n=>{const i=e.length;if(0===i)return void n.complete();const s=new Array(i);let r=0,o=0;for(let a=0;a{c||(c=!0,o++),s[a]=e},error:e=>n.error(e),complete:()=>{r++,r!==i&&c||(o===i&&n.next(t?t.reduce((e,t,n)=>(e[t]=s[n],e),{}):s),n.complete())}}))}})}const uh=new Ve(\"NgValueAccessor\"),hh={provide:uh,useExisting:Ce(()=>mh),multi:!0};let mh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this.onChange=e=>{},this.onTouched=()=>{}}writeValue(e){this._renderer.setProperty(this._elementRef.nativeElement,\"checked\",e)}registerOnChange(e){this.onChange=e}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"type\",\"checkbox\",\"formControlName\",\"\"],[\"input\",\"type\",\"checkbox\",\"formControl\",\"\"],[\"input\",\"type\",\"checkbox\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(e){return t.onChange(e.target.checked)}))(\"blur\",(function(){return t.onTouched()}))},features:[Ba([hh])]}),e})();const ph={provide:uh,useExisting:Ce(()=>_h),multi:!0},fh=new Ve(\"CompositionEventMode\");let _h=(()=>{class e{constructor(e,t,n){this._renderer=e,this._elementRef=t,this._compositionMode=n,this.onChange=e=>{},this.onTouched=()=>{},this._composing=!1,null==this._compositionMode&&(this._compositionMode=!function(){const e=Fd()?Fd().getUserAgent():\"\";return/android (\\d+)/.test(e.toLowerCase())}())}writeValue(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",null==e?\"\":e)}registerOnChange(e){this.onChange=e}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}_handleInput(e){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(e)}_compositionStart(){this._composing=!0}_compositionEnd(e){this._composing=!1,this._compositionMode&&this.onChange(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka),Eo(fh,8))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"formControlName\",\"\",3,\"type\",\"checkbox\"],[\"textarea\",\"formControlName\",\"\"],[\"input\",\"formControl\",\"\",3,\"type\",\"checkbox\"],[\"textarea\",\"formControl\",\"\"],[\"input\",\"ngModel\",\"\",3,\"type\",\"checkbox\"],[\"textarea\",\"ngModel\",\"\"],[\"\",\"ngDefaultControl\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"input\",(function(e){return t._handleInput(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))(\"compositionstart\",(function(){return t._compositionStart()}))(\"compositionend\",(function(e){return t._compositionEnd(e.target.value)}))},features:[Ba([ph])]}),e})(),gh=(()=>{class e{get value(){return this.control?this.control.value:null}get valid(){return this.control?this.control.valid:null}get invalid(){return this.control?this.control.invalid:null}get pending(){return this.control?this.control.pending:null}get disabled(){return this.control?this.control.disabled:null}get enabled(){return this.control?this.control.enabled:null}get errors(){return this.control?this.control.errors:null}get pristine(){return this.control?this.control.pristine:null}get dirty(){return this.control?this.control.dirty:null}get touched(){return this.control?this.control.touched:null}get status(){return this.control?this.control.status:null}get untouched(){return this.control?this.control.untouched:null}get statusChanges(){return this.control?this.control.statusChanges:null}get valueChanges(){return this.control?this.control.valueChanges:null}get path(){return null}reset(e){this.control&&this.control.reset(e)}hasError(e,t){return!!this.control&&this.control.hasError(e,t)}getError(e,t){return this.control?this.control.getError(e,t):null}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e}),e})(),yh=(()=>{class e extends gh{get formDirective(){return null}get path(){return null}}return e.\\u0275fac=function(t){return bh(t||e)},e.\\u0275dir=St({type:e,features:[Ya]}),e})();const bh=li(yh);function vh(){throw new Error(\"unimplemented\")}class wh extends gh{constructor(){super(...arguments),this._parent=null,this.name=null,this.valueAccessor=null,this._rawValidators=[],this._rawAsyncValidators=[]}get validator(){return vh()}get asyncValidator(){return vh()}}class Mh{constructor(e){this._cd=e}get ngClassUntouched(){return!!this._cd.control&&this._cd.control.untouched}get ngClassTouched(){return!!this._cd.control&&this._cd.control.touched}get ngClassPristine(){return!!this._cd.control&&this._cd.control.pristine}get ngClassDirty(){return!!this._cd.control&&this._cd.control.dirty}get ngClassValid(){return!!this._cd.control&&this._cd.control.valid}get ngClassInvalid(){return!!this._cd.control&&this._cd.control.invalid}get ngClassPending(){return!!this._cd.control&&this._cd.control.pending}}let kh=(()=>{class e extends Mh{constructor(e){super(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(wh,2))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formControlName\",\"\"],[\"\",\"ngModel\",\"\"],[\"\",\"formControl\",\"\"]],hostVars:14,hostBindings:function(e,t){2&e&&ua(\"ng-untouched\",t.ngClassUntouched)(\"ng-touched\",t.ngClassTouched)(\"ng-pristine\",t.ngClassPristine)(\"ng-dirty\",t.ngClassDirty)(\"ng-valid\",t.ngClassValid)(\"ng-invalid\",t.ngClassInvalid)(\"ng-pending\",t.ngClassPending)},features:[Ya]}),e})(),Sh=(()=>{class e extends Mh{constructor(e){super(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,2))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formGroupName\",\"\"],[\"\",\"formArrayName\",\"\"],[\"\",\"ngModelGroup\",\"\"],[\"\",\"formGroup\",\"\"],[\"form\",3,\"ngNoForm\",\"\"],[\"\",\"ngForm\",\"\"]],hostVars:14,hostBindings:function(e,t){2&e&&ua(\"ng-untouched\",t.ngClassUntouched)(\"ng-touched\",t.ngClassTouched)(\"ng-pristine\",t.ngClassPristine)(\"ng-dirty\",t.ngClassDirty)(\"ng-valid\",t.ngClassValid)(\"ng-invalid\",t.ngClassInvalid)(\"ng-pending\",t.ngClassPending)},features:[Ya]}),e})();function Lh(e){return null==e||0===e.length}const xh=new Ve(\"NgValidators\"),Ch=new Ve(\"NgAsyncValidators\"),Th=/^(?=.{1,254}$)(?=.{1,64}@)[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;class Dh{static min(e){return t=>{if(Lh(t.value)||Lh(e))return null;const n=parseFloat(t.value);return!isNaN(n)&&n{if(Lh(t.value)||Lh(e))return null;const n=parseFloat(t.value);return!isNaN(n)&&n>e?{max:{max:e,actual:t.value}}:null}}static required(e){return Lh(e.value)?{required:!0}:null}static requiredTrue(e){return!0===e.value?null:{required:!0}}static email(e){return Lh(e.value)||Th.test(e.value)?null:{email:!0}}static minLength(e){return t=>{if(Lh(t.value))return null;const n=t.value?t.value.length:0;return n{const n=t.value?t.value.length:0;return n>e?{maxlength:{requiredLength:e,actualLength:n}}:null}}static pattern(e){if(!e)return Dh.nullValidator;let t,n;return\"string\"==typeof e?(n=\"\",\"^\"!==e.charAt(0)&&(n+=\"^\"),n+=e,\"$\"!==e.charAt(e.length-1)&&(n+=\"$\"),t=new RegExp(n)):(n=e.toString(),t=e),e=>{if(Lh(e.value))return null;const i=e.value;return t.test(i)?null:{pattern:{requiredPattern:n,actualValue:i}}}}static nullValidator(e){return null}static compose(e){if(!e)return null;const t=e.filter(Yh);return 0==t.length?null:function(e){return Oh(function(e,t){return t.map(t=>t(e))}(e,t))}}static composeAsync(e){if(!e)return null;const t=e.filter(Yh);return 0==t.length?null:function(e){return ch(function(e,t){return t.map(t=>t(e))}(e,t).map(Eh)).pipe(H(Oh))}}}function Yh(e){return null!=e}function Eh(e){const t=Vo(e)?z(e):e;if(!Wo(t))throw new Error(\"Expected validator to return Promise or Observable.\");return t}function Oh(e){let t={};return e.forEach(e=>{t=null!=e?Object.assign(Object.assign({},t),e):t}),0===Object.keys(t).length?null:t}function Ih(e){return e.validate?t=>e.validate(t):e}function Ph(e){return e.validate?t=>e.validate(t):e}const Ah={provide:uh,useExisting:Ce(()=>Rh),multi:!0};let Rh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this.onChange=e=>{},this.onTouched=()=>{}}writeValue(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",null==e?\"\":e)}registerOnChange(e){this.onChange=t=>{e(\"\"==t?null:parseFloat(t))}}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"type\",\"number\",\"formControlName\",\"\"],[\"input\",\"type\",\"number\",\"formControl\",\"\"],[\"input\",\"type\",\"number\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"input\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},features:[Ba([Ah])]}),e})();const Hh={provide:uh,useExisting:Ce(()=>Fh),multi:!0};let jh=(()=>{class e{constructor(){this._accessors=[]}add(e,t){this._accessors.push([e,t])}remove(e){for(let t=this._accessors.length-1;t>=0;--t)if(this._accessors[t][1]===e)return void this._accessors.splice(t,1)}select(e){this._accessors.forEach(t=>{this._isSameGroup(t,e)&&t[1]!==e&&t[1].fireUncheck(e.value)})}_isSameGroup(e,t){return!!e[0].control&&e[0]._parent===t._control._parent&&e[1].name===t.name}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),Fh=(()=>{class e{constructor(e,t,n,i){this._renderer=e,this._elementRef=t,this._registry=n,this._injector=i,this.onChange=()=>{},this.onTouched=()=>{}}ngOnInit(){this._control=this._injector.get(wh),this._checkName(),this._registry.add(this._control,this)}ngOnDestroy(){this._registry.remove(this)}writeValue(e){this._state=e===this.value,this._renderer.setProperty(this._elementRef.nativeElement,\"checked\",this._state)}registerOnChange(e){this._fn=e,this.onChange=()=>{e(this.value),this._registry.select(this)}}fireUncheck(e){this.writeValue(e)}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}_checkName(){this.name&&this.formControlName&&this.name!==this.formControlName&&this._throwNameError(),!this.name&&this.formControlName&&(this.name=this.formControlName)}_throwNameError(){throw new Error('\\n If you define both a name and a formControlName attribute on your radio button, their values\\n must match. Ex: \\n ')}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka),Eo(jh),Eo(fo))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"type\",\"radio\",\"formControlName\",\"\"],[\"input\",\"type\",\"radio\",\"formControl\",\"\"],[\"input\",\"type\",\"radio\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(){return t.onChange()}))(\"blur\",(function(){return t.onTouched()}))},inputs:{name:\"name\",formControlName:\"formControlName\",value:\"value\"},features:[Ba([Hh])]}),e})();const Nh={provide:uh,useExisting:Ce(()=>zh),multi:!0};let zh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this.onChange=e=>{},this.onTouched=()=>{}}writeValue(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",parseFloat(e))}registerOnChange(e){this.onChange=t=>{e(\"\"==t?null:parseFloat(t))}}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"type\",\"range\",\"formControlName\",\"\"],[\"input\",\"type\",\"range\",\"formControl\",\"\"],[\"input\",\"type\",\"range\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"input\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},features:[Ba([Nh])]}),e})();const Vh='\\n

\\n \\n
\\n\\n In your class:\\n\\n this.myGroup = new FormGroup({\\n firstName: new FormControl()\\n });',Wh='\\n
\\n
\\n \\n
\\n
\\n\\n In your class:\\n\\n this.myGroup = new FormGroup({\\n person: new FormGroup({ firstName: new FormControl() })\\n });',Uh='\\n
\\n
\\n \\n
\\n
';class $h{static controlParentException(){throw new Error(`formControlName must be used with a parent formGroup directive. You'll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n ${Vh}`)}static ngModelGroupException(){throw new Error(`formControlName cannot be used with an ngModelGroup parent. It is only compatible with parents\\n that also have a \"form\" prefix: formGroupName, formArrayName, or formGroup.\\n\\n Option 1: Update the parent to be formGroupName (reactive form strategy)\\n\\n ${Wh}\\n\\n Option 2: Use ngModel instead of formControlName (template-driven strategy)\\n\\n ${Uh}`)}static missingFormException(){throw new Error(`formGroup expects a FormGroup instance. Please pass one in.\\n\\n Example:\\n\\n ${Vh}`)}static groupParentException(){throw new Error(`formGroupName must be used with a parent formGroup directive. You'll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n ${Wh}`)}static arrayParentException(){throw new Error('formArrayName must be used with a parent formGroup directive. You\\'ll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n \\n
\\n
\\n
\\n \\n
\\n
\\n
\\n\\n In your class:\\n\\n this.cityArray = new FormArray([new FormControl(\\'SF\\')]);\\n this.myGroup = new FormGroup({\\n cities: this.cityArray\\n });')}static disabledAttrWarning(){console.warn(\"\\n It looks like you're using the disabled attribute with a reactive form directive. If you set disabled to true\\n when you set up this control in your component class, the disabled attribute will actually be set in the DOM for\\n you. We recommend using this approach to avoid 'changed after checked' errors.\\n \\n Example: \\n form = new FormGroup({\\n first: new FormControl({value: 'Nancy', disabled: true}, Validators.required),\\n last: new FormControl('Drew', Validators.required)\\n });\\n \")}static ngModelWarning(e){console.warn(`\\n It looks like you're using ngModel on the same form field as ${e}. \\n Support for using the ngModel input property and ngModelChange event with \\n reactive form directives has been deprecated in Angular v6 and will be removed \\n in Angular v7.\\n \\n For more information on this, see our API docs here:\\n https://angular.io/api/forms/${\"formControl\"===e?\"FormControlDirective\":\"FormControlName\"}#use-with-ngmodel\\n `)}}const Bh={provide:uh,useExisting:Ce(()=>qh),multi:!0};let qh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this._optionMap=new Map,this._idCounter=0,this.onChange=e=>{},this.onTouched=()=>{},this._compareWith=ko}set compareWith(e){if(\"function\"!=typeof e)throw new Error(`compareWith must be a function, but received ${JSON.stringify(e)}`);this._compareWith=e}writeValue(e){this.value=e;const t=this._getOptionId(e);null==t&&this._renderer.setProperty(this._elementRef.nativeElement,\"selectedIndex\",-1);const n=function(e,t){return null==e?`${t}`:(t&&\"object\"==typeof t&&(t=\"Object\"),`${e}: ${t}`.slice(0,50))}(t,e);this._renderer.setProperty(this._elementRef.nativeElement,\"value\",n)}registerOnChange(e){this.onChange=t=>{this.value=this._getOptionValue(t),e(this.value)}}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}_registerOption(){return(this._idCounter++).toString()}_getOptionId(e){for(const t of Array.from(this._optionMap.keys()))if(this._compareWith(this._optionMap.get(t),e))return t;return null}_getOptionValue(e){const t=function(e){return e.split(\":\")[0]}(e);return this._optionMap.has(t)?this._optionMap.get(t):e}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"select\",\"formControlName\",\"\",3,\"multiple\",\"\"],[\"select\",\"formControl\",\"\",3,\"multiple\",\"\"],[\"select\",\"ngModel\",\"\",3,\"multiple\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},inputs:{compareWith:\"compareWith\"},features:[Ba([Bh])]}),e})();const Gh={provide:uh,useExisting:Ce(()=>Jh),multi:!0};let Jh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this._optionMap=new Map,this._idCounter=0,this.onChange=e=>{},this.onTouched=()=>{},this._compareWith=ko}set compareWith(e){if(\"function\"!=typeof e)throw new Error(`compareWith must be a function, but received ${JSON.stringify(e)}`);this._compareWith=e}writeValue(e){let t;if(this.value=e,Array.isArray(e)){const n=e.map(e=>this._getOptionId(e));t=(e,t)=>{e._setSelected(n.indexOf(t.toString())>-1)}}else t=(e,t)=>{e._setSelected(!1)};this._optionMap.forEach(t)}registerOnChange(e){this.onChange=t=>{const n=[];if(t.hasOwnProperty(\"selectedOptions\")){const e=t.selectedOptions;for(let t=0;t{e._pendingValue=n,e._pendingChange=!0,e._pendingDirty=!0,\"change\"===e.updateOn&&Qh(e,t)})}(e,t),function(e,t){e.registerOnChange((e,n)=>{t.valueAccessor.writeValue(e),n&&t.viewToModelUpdate(e)})}(e,t),function(e,t){t.valueAccessor.registerOnTouched(()=>{e._pendingTouched=!0,\"blur\"===e.updateOn&&e._pendingChange&&Qh(e,t),\"submit\"!==e.updateOn&&e.markAsTouched()})}(e,t),t.valueAccessor.setDisabledState&&e.registerOnDisabledChange(e=>{t.valueAccessor.setDisabledState(e)}),t._rawValidators.forEach(t=>{t.registerOnValidatorChange&&t.registerOnValidatorChange(()=>e.updateValueAndValidity())}),t._rawAsyncValidators.forEach(t=>{t.registerOnValidatorChange&&t.registerOnValidatorChange(()=>e.updateValueAndValidity())})}function Qh(e,t){e._pendingDirty&&e.markAsDirty(),e.setValue(e._pendingValue,{emitModelToViewChange:!1}),t.viewToModelUpdate(e._pendingValue),e._pendingChange=!1}function Xh(e,t){null==e&&tm(t,\"Cannot find control with\"),e.validator=Dh.compose([e.validator,t.validator]),e.asyncValidator=Dh.composeAsync([e.asyncValidator,t.asyncValidator])}function em(e){return tm(e,\"There is no FormControl instance attached to form control element with\")}function tm(e,t){let n;throw n=e.path.length>1?`path: '${e.path.join(\" -> \")}'`:e.path[0]?`name: '${e.path}'`:\"unspecified name attribute\",new Error(`${t} ${n}`)}function nm(e){return null!=e?Dh.compose(e.map(Ih)):null}function im(e){return null!=e?Dh.composeAsync(e.map(Ph)):null}function sm(e,t){if(!e.hasOwnProperty(\"model\"))return!1;const n=e.model;return!!n.isFirstChange()||!ko(t,n.currentValue)}const rm=[mh,zh,Rh,qh,Jh,Fh];function om(e,t){e._syncPendingControls(),t.forEach(e=>{const t=e.control;\"submit\"===t.updateOn&&t._pendingChange&&(e.viewToModelUpdate(t._pendingValue),t._pendingChange=!1)})}function am(e,t){if(!t)return null;Array.isArray(t)||tm(e,\"Value accessor was not provided as an array for form control with\");let n=void 0,i=void 0,s=void 0;return t.forEach(t=>{var r;t.constructor===_h?n=t:(r=t,rm.some(e=>r.constructor===e)?(i&&tm(e,\"More than one built-in value accessor matches form control with\"),i=t):(s&&tm(e,\"More than one custom value accessor matches form control with\"),s=t))}),s||i||n||(tm(e,\"No valid value accessor for form control with\"),null)}function lm(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}function cm(e,t,n,i){Si()&&\"never\"!==i&&((null!==i&&\"once\"!==i||t._ngModelWarningSentOnce)&&(\"always\"!==i||n._ngModelWarningSent)||($h.ngModelWarning(e),t._ngModelWarningSentOnce=!0,n._ngModelWarningSent=!0))}function dm(e){const t=hm(e)?e.validators:e;return Array.isArray(t)?nm(t):t||null}function um(e,t){const n=hm(t)?t.asyncValidators:e;return Array.isArray(n)?im(n):n||null}function hm(e){return null!=e&&!Array.isArray(e)&&\"object\"==typeof e}class mm{constructor(e,t){this.validator=e,this.asyncValidator=t,this._onCollectionChange=()=>{},this.pristine=!0,this.touched=!1,this._onDisabledChange=[]}get parent(){return this._parent}get valid(){return\"VALID\"===this.status}get invalid(){return\"INVALID\"===this.status}get pending(){return\"PENDING\"==this.status}get disabled(){return\"DISABLED\"===this.status}get enabled(){return\"DISABLED\"!==this.status}get dirty(){return!this.pristine}get untouched(){return!this.touched}get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:\"change\"}setValidators(e){this.validator=dm(e)}setAsyncValidators(e){this.asyncValidator=um(e)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(e={}){this.touched=!0,this._parent&&!e.onlySelf&&this._parent.markAsTouched(e)}markAllAsTouched(){this.markAsTouched({onlySelf:!0}),this._forEachChild(e=>e.markAllAsTouched())}markAsUntouched(e={}){this.touched=!1,this._pendingTouched=!1,this._forEachChild(e=>{e.markAsUntouched({onlySelf:!0})}),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)}markAsDirty(e={}){this.pristine=!1,this._parent&&!e.onlySelf&&this._parent.markAsDirty(e)}markAsPristine(e={}){this.pristine=!0,this._pendingDirty=!1,this._forEachChild(e=>{e.markAsPristine({onlySelf:!0})}),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)}markAsPending(e={}){this.status=\"PENDING\",!1!==e.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!e.onlySelf&&this._parent.markAsPending(e)}disable(e={}){const t=this._parentMarkedDirty(e.onlySelf);this.status=\"DISABLED\",this.errors=null,this._forEachChild(t=>{t.disable(Object.assign(Object.assign({},e),{onlySelf:!0}))}),this._updateValue(),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(Object.assign(Object.assign({},e),{skipPristineCheck:t})),this._onDisabledChange.forEach(e=>e(!0))}enable(e={}){const t=this._parentMarkedDirty(e.onlySelf);this.status=\"VALID\",this._forEachChild(t=>{t.enable(Object.assign(Object.assign({},e),{onlySelf:!0}))}),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent}),this._updateAncestors(Object.assign(Object.assign({},e),{skipPristineCheck:t})),this._onDisabledChange.forEach(e=>e(!1))}_updateAncestors(e){this._parent&&!e.onlySelf&&(this._parent.updateValueAndValidity(e),e.skipPristineCheck||this._parent._updatePristine(),this._parent._updateTouched())}setParent(e){this._parent=e}updateValueAndValidity(e={}){this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),\"VALID\"!==this.status&&\"PENDING\"!==this.status||this._runAsyncValidator(e.emitEvent)),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!e.onlySelf&&this._parent.updateValueAndValidity(e)}_updateTreeValidity(e={emitEvent:!0}){this._forEachChild(t=>t._updateTreeValidity(e)),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?\"DISABLED\":\"VALID\"}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(e){if(this.asyncValidator){this.status=\"PENDING\";const t=Eh(this.asyncValidator(this));this._asyncValidationSubscription=t.subscribe(t=>this.setErrors(t,{emitEvent:e}))}}_cancelExistingSubscription(){this._asyncValidationSubscription&&this._asyncValidationSubscription.unsubscribe()}setErrors(e,t={}){this.errors=e,this._updateControlsErrors(!1!==t.emitEvent)}get(e){return function(e,t,n){if(null==t)return null;if(Array.isArray(t)||(t=t.split(\".\")),Array.isArray(t)&&0===t.length)return null;let i=e;return t.forEach(e=>{i=i instanceof fm?i.controls.hasOwnProperty(e)?i.controls[e]:null:i instanceof _m&&i.at(e)||null}),i}(this,e)}getError(e,t){const n=t?this.get(t):this;return n&&n.errors?n.errors[e]:null}hasError(e,t){return!!this.getError(e,t)}get root(){let e=this;for(;e._parent;)e=e._parent;return e}_updateControlsErrors(e){this.status=this._calculateStatus(),e&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(e)}_initObservables(){this.valueChanges=new yc,this.statusChanges=new yc}_calculateStatus(){return this._allControlsDisabled()?\"DISABLED\":this.errors?\"INVALID\":this._anyControlsHaveStatus(\"PENDING\")?\"PENDING\":this._anyControlsHaveStatus(\"INVALID\")?\"INVALID\":\"VALID\"}_anyControlsHaveStatus(e){return this._anyControls(t=>t.status===e)}_anyControlsDirty(){return this._anyControls(e=>e.dirty)}_anyControlsTouched(){return this._anyControls(e=>e.touched)}_updatePristine(e={}){this.pristine=!this._anyControlsDirty(),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)}_updateTouched(e={}){this.touched=this._anyControlsTouched(),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)}_isBoxedValue(e){return\"object\"==typeof e&&null!==e&&2===Object.keys(e).length&&\"value\"in e&&\"disabled\"in e}_registerOnCollectionChange(e){this._onCollectionChange=e}_setUpdateStrategy(e){hm(e)&&null!=e.updateOn&&(this._updateOn=e.updateOn)}_parentMarkedDirty(e){return!e&&this._parent&&this._parent.dirty&&!this._parent._anyControlsDirty()}}class pm extends mm{constructor(e=null,t,n){super(dm(t),um(n,t)),this._onChange=[],this._applyFormState(e),this._setUpdateStrategy(t),this.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),this._initObservables()}setValue(e,t={}){this.value=this._pendingValue=e,this._onChange.length&&!1!==t.emitModelToViewChange&&this._onChange.forEach(e=>e(this.value,!1!==t.emitViewToModelChange)),this.updateValueAndValidity(t)}patchValue(e,t={}){this.setValue(e,t)}reset(e=null,t={}){this._applyFormState(e),this.markAsPristine(t),this.markAsUntouched(t),this.setValue(this.value,t),this._pendingChange=!1}_updateValue(){}_anyControls(e){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(e){this._onChange.push(e)}_clearChangeFns(){this._onChange=[],this._onDisabledChange=[],this._onCollectionChange=()=>{}}registerOnDisabledChange(e){this._onDisabledChange.push(e)}_forEachChild(e){}_syncPendingControls(){return!(\"submit\"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))}_applyFormState(e){this._isBoxedValue(e)?(this.value=this._pendingValue=e.value,e.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=e}}class fm extends mm{constructor(e,t,n){super(dm(t),um(n,t)),this.controls=e,this._initObservables(),this._setUpdateStrategy(t),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!1})}registerControl(e,t){return this.controls[e]?this.controls[e]:(this.controls[e]=t,t.setParent(this),t._registerOnCollectionChange(this._onCollectionChange),t)}addControl(e,t){this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()}removeControl(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange(()=>{}),delete this.controls[e],this.updateValueAndValidity(),this._onCollectionChange()}setControl(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange(()=>{}),delete this.controls[e],t&&this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()}contains(e){return this.controls.hasOwnProperty(e)&&this.controls[e].enabled}setValue(e,t={}){this._checkAllValuesPresent(e),Object.keys(e).forEach(n=>{this._throwIfControlMissing(n),this.controls[n].setValue(e[n],{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}patchValue(e,t={}){Object.keys(e).forEach(n=>{this.controls[n]&&this.controls[n].patchValue(e[n],{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}reset(e={},t={}){this._forEachChild((n,i)=>{n.reset(e[i],{onlySelf:!0,emitEvent:t.emitEvent})}),this._updatePristine(t),this._updateTouched(t),this.updateValueAndValidity(t)}getRawValue(){return this._reduceChildren({},(e,t,n)=>(e[n]=t instanceof pm?t.value:t.getRawValue(),e))}_syncPendingControls(){let e=this._reduceChildren(!1,(e,t)=>!!t._syncPendingControls()||e);return e&&this.updateValueAndValidity({onlySelf:!0}),e}_throwIfControlMissing(e){if(!Object.keys(this.controls).length)throw new Error(\"\\n There are no form controls registered with this group yet. If you're using ngModel,\\n you may want to check next tick (e.g. use setTimeout).\\n \");if(!this.controls[e])throw new Error(`Cannot find form control with name: ${e}.`)}_forEachChild(e){Object.keys(this.controls).forEach(t=>e(this.controls[t],t))}_setUpControls(){this._forEachChild(e=>{e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(e){let t=!1;return this._forEachChild((n,i)=>{t=t||this.contains(i)&&e(n)}),t}_reduceValue(){return this._reduceChildren({},(e,t,n)=>((t.enabled||this.disabled)&&(e[n]=t.value),e))}_reduceChildren(e,t){let n=e;return this._forEachChild((e,i)=>{n=t(n,e,i)}),n}_allControlsDisabled(){for(const e of Object.keys(this.controls))if(this.controls[e].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}_checkAllValuesPresent(e){this._forEachChild((t,n)=>{if(void 0===e[n])throw new Error(`Must supply a value for form control with name: '${n}'.`)})}}class _m extends mm{constructor(e,t,n){super(dm(t),um(n,t)),this.controls=e,this._initObservables(),this._setUpdateStrategy(t),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!1})}at(e){return this.controls[e]}push(e){this.controls.push(e),this._registerControl(e),this.updateValueAndValidity(),this._onCollectionChange()}insert(e,t){this.controls.splice(e,0,t),this._registerControl(t),this.updateValueAndValidity()}removeAt(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange(()=>{}),this.controls.splice(e,1),this.updateValueAndValidity()}setControl(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange(()=>{}),this.controls.splice(e,1),t&&(this.controls.splice(e,0,t),this._registerControl(t)),this.updateValueAndValidity(),this._onCollectionChange()}get length(){return this.controls.length}setValue(e,t={}){this._checkAllValuesPresent(e),e.forEach((e,n)=>{this._throwIfControlMissing(n),this.at(n).setValue(e,{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}patchValue(e,t={}){e.forEach((e,n)=>{this.at(n)&&this.at(n).patchValue(e,{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}reset(e=[],t={}){this._forEachChild((n,i)=>{n.reset(e[i],{onlySelf:!0,emitEvent:t.emitEvent})}),this._updatePristine(t),this._updateTouched(t),this.updateValueAndValidity(t)}getRawValue(){return this.controls.map(e=>e instanceof pm?e.value:e.getRawValue())}clear(){this.controls.length<1||(this._forEachChild(e=>e._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity())}_syncPendingControls(){let e=this.controls.reduce((e,t)=>!!t._syncPendingControls()||e,!1);return e&&this.updateValueAndValidity({onlySelf:!0}),e}_throwIfControlMissing(e){if(!this.controls.length)throw new Error(\"\\n There are no form controls registered with this array yet. If you're using ngModel,\\n you may want to check next tick (e.g. use setTimeout).\\n \");if(!this.at(e))throw new Error(`Cannot find form control at index ${e}`)}_forEachChild(e){this.controls.forEach((t,n)=>{e(t,n)})}_updateValue(){this.value=this.controls.filter(e=>e.enabled||this.disabled).map(e=>e.value)}_anyControls(e){return this.controls.some(t=>t.enabled&&e(t))}_setUpControls(){this._forEachChild(e=>this._registerControl(e))}_checkAllValuesPresent(e){this._forEachChild((t,n)=>{if(void 0===e[n])throw new Error(`Must supply a value for form control at index: ${n}.`)})}_allControlsDisabled(){for(const e of this.controls)if(e.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(e){e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange)}}const gm={provide:yh,useExisting:Ce(()=>bm)},ym=(()=>Promise.resolve(null))();let bm=(()=>{class e extends yh{constructor(e,t){super(),this.submitted=!1,this._directives=[],this.ngSubmit=new yc,this.form=new fm({},nm(e),im(t))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(e){ym.then(()=>{const t=this._findContainer(e.path);e.control=t.registerControl(e.name,e.control),Zh(e.control,e),e.control.updateValueAndValidity({emitEvent:!1}),this._directives.push(e)})}getControl(e){return this.form.get(e.path)}removeControl(e){ym.then(()=>{const t=this._findContainer(e.path);t&&t.removeControl(e.name),lm(this._directives,e)})}addFormGroup(e){ym.then(()=>{const t=this._findContainer(e.path),n=new fm({});Xh(n,e),t.registerControl(e.name,n),n.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(e){ym.then(()=>{const t=this._findContainer(e.path);t&&t.removeControl(e.name)})}getFormGroup(e){return this.form.get(e.path)}updateModel(e,t){ym.then(()=>{this.form.get(e.path).setValue(t)})}setValue(e){this.control.setValue(e)}onSubmit(e){return this.submitted=!0,om(this.form,this._directives),this.ngSubmit.emit(e),!1}onReset(){this.resetForm()}resetForm(e){this.form.reset(e),this.submitted=!1}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}_findContainer(e){return e.pop(),e.length?this.form.get(e):this.form}}return e.\\u0275fac=function(t){return new(t||e)(Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"form\",3,\"ngNoForm\",\"\",3,\"formGroup\",\"\"],[\"ng-form\"],[\"\",\"ngForm\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"submit\",(function(e){return t.onSubmit(e)}))(\"reset\",(function(){return t.onReset()}))},inputs:{options:[\"ngFormOptions\",\"options\"]},outputs:{ngSubmit:\"ngSubmit\"},exportAs:[\"ngForm\"],features:[Ba([gm]),Ya]}),e})(),vm=(()=>{class e extends yh{ngOnInit(){this._checkParentType(),this.formDirective.addFormGroup(this)}ngOnDestroy(){this.formDirective&&this.formDirective.removeFormGroup(this)}get control(){return this.formDirective.getFormGroup(this)}get path(){return Kh(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}get validator(){return nm(this._validators)}get asyncValidator(){return im(this._asyncValidators)}_checkParentType(){}}return e.\\u0275fac=function(t){return wm(t||e)},e.\\u0275dir=St({type:e,features:[Ya]}),e})();const wm=li(vm);class Mm{static modelParentException(){throw new Error(`\\n ngModel cannot be used to register form controls with a parent formGroup directive. Try using\\n formGroup's partner directive \"formControlName\" instead. Example:\\n\\n ${Vh}\\n\\n Or, if you'd like to avoid registering this form control, indicate that it's standalone in ngModelOptions:\\n\\n Example:\\n\\n \\n
\\n \\n \\n
\\n `)}static formGroupNameException(){throw new Error(`\\n ngModel cannot be used to register form controls with a parent formGroupName or formArrayName directive.\\n\\n Option 1: Use formControlName instead of ngModel (reactive strategy):\\n\\n ${Wh}\\n\\n Option 2: Update ngModel's parent be ngModelGroup (template-driven strategy):\\n\\n ${Uh}`)}static missingNameException(){throw new Error('If ngModel is used within a form tag, either the name attribute must be set or the form\\n control must be defined as \\'standalone\\' in ngModelOptions.\\n\\n Example 1: \\n Example 2: ')}static modelGroupParentException(){throw new Error(`\\n ngModelGroup cannot be used with a parent formGroup directive.\\n\\n Option 1: Use formGroupName instead of ngModelGroup (reactive strategy):\\n\\n ${Wh}\\n\\n Option 2: Use a regular form tag instead of the formGroup directive (template-driven strategy):\\n\\n ${Uh}`)}}const km={provide:yh,useExisting:Ce(()=>Sm)};let Sm=(()=>{class e extends vm{constructor(e,t,n){super(),this._parent=e,this._validators=t,this._asyncValidators=n}_checkParentType(){this._parent instanceof e||this._parent instanceof bm||Mm.modelGroupParentException()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,5),Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngModelGroup\",\"\"]],inputs:{name:[\"ngModelGroup\",\"name\"]},exportAs:[\"ngModelGroup\"],features:[Ba([km]),Ya]}),e})();const Lm={provide:wh,useExisting:Ce(()=>Cm)},xm=(()=>Promise.resolve(null))();let Cm=(()=>{class e extends wh{constructor(e,t,n,i){super(),this.control=new pm,this._registered=!1,this.update=new yc,this._parent=e,this._rawValidators=t||[],this._rawAsyncValidators=n||[],this.valueAccessor=am(this,i)}ngOnChanges(e){this._checkForErrors(),this._registered||this._setUpControl(),\"isDisabled\"in e&&this._updateDisabled(e),sm(e,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}get path(){return this._parent?Kh(this.name,this._parent):[this.name]}get formDirective(){return this._parent?this._parent.formDirective:null}get validator(){return nm(this._rawValidators)}get asyncValidator(){return im(this._rawAsyncValidators)}viewToModelUpdate(e){this.viewModel=e,this.update.emit(e)}_setUpControl(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)}_isStandalone(){return!this._parent||!(!this.options||!this.options.standalone)}_setUpStandalone(){Zh(this.control,this),this.control.updateValueAndValidity({emitEvent:!1})}_checkForErrors(){this._isStandalone()||this._checkParentType(),this._checkName()}_checkParentType(){!(this._parent instanceof Sm)&&this._parent instanceof vm?Mm.formGroupNameException():this._parent instanceof Sm||this._parent instanceof bm||Mm.modelParentException()}_checkName(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()||this.name||Mm.missingNameException()}_updateValue(e){xm.then(()=>{this.control.setValue(e,{emitViewToModelChange:!1})})}_updateDisabled(e){const t=e.isDisabled.currentValue,n=\"\"===t||t&&\"false\"!==t;xm.then(()=>{n&&!this.control.disabled?this.control.disable():!n&&this.control.disabled&&this.control.enable()})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,9),Eo(xh,10),Eo(Ch,10),Eo(uh,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngModel\",\"\",3,\"formControlName\",\"\",3,\"formControl\",\"\"]],inputs:{name:\"name\",isDisabled:[\"disabled\",\"isDisabled\"],model:[\"ngModel\",\"model\"],options:[\"ngModelOptions\",\"options\"]},outputs:{update:\"ngModelChange\"},exportAs:[\"ngModel\"],features:[Ba([Lm]),Ya,Ra]}),e})(),Tm=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"form\",3,\"ngNoForm\",\"\",3,\"ngNativeValidate\",\"\"]],hostAttrs:[\"novalidate\",\"\"]}),e})();const Dm=new Ve(\"NgModelWithFormControlWarning\"),Ym={provide:wh,useExisting:Ce(()=>Em)};let Em=(()=>{class e extends wh{constructor(e,t,n,i){super(),this._ngModelWarningConfig=i,this.update=new yc,this._ngModelWarningSent=!1,this._rawValidators=e||[],this._rawAsyncValidators=t||[],this.valueAccessor=am(this,n)}set isDisabled(e){$h.disabledAttrWarning()}ngOnChanges(t){this._isControlChanged(t)&&(Zh(this.form,this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this.form.updateValueAndValidity({emitEvent:!1})),sm(t,this.viewModel)&&(cm(\"formControl\",e,this,this._ngModelWarningConfig),this.form.setValue(this.model),this.viewModel=this.model)}get path(){return[]}get validator(){return nm(this._rawValidators)}get asyncValidator(){return im(this._rawAsyncValidators)}get control(){return this.form}viewToModelUpdate(e){this.viewModel=e,this.update.emit(e)}_isControlChanged(e){return e.hasOwnProperty(\"form\")}}return e.\\u0275fac=function(t){return new(t||e)(Eo(xh,10),Eo(Ch,10),Eo(uh,10),Eo(Dm,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formControl\",\"\"]],inputs:{isDisabled:[\"disabled\",\"isDisabled\"],form:[\"formControl\",\"form\"],model:[\"ngModel\",\"model\"]},outputs:{update:\"ngModelChange\"},exportAs:[\"ngForm\"],features:[Ba([Ym]),Ya,Ra]}),e._ngModelWarningSentOnce=!1,e})();const Om={provide:yh,useExisting:Ce(()=>Im)};let Im=(()=>{class e extends yh{constructor(e,t){super(),this._validators=e,this._asyncValidators=t,this.submitted=!1,this.directives=[],this.form=null,this.ngSubmit=new yc}ngOnChanges(e){this._checkFormPresent(),e.hasOwnProperty(\"form\")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations())}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(e){const t=this.form.get(e.path);return Zh(t,e),t.updateValueAndValidity({emitEvent:!1}),this.directives.push(e),t}getControl(e){return this.form.get(e.path)}removeControl(e){lm(this.directives,e)}addFormGroup(e){const t=this.form.get(e.path);Xh(t,e),t.updateValueAndValidity({emitEvent:!1})}removeFormGroup(e){}getFormGroup(e){return this.form.get(e.path)}addFormArray(e){const t=this.form.get(e.path);Xh(t,e),t.updateValueAndValidity({emitEvent:!1})}removeFormArray(e){}getFormArray(e){return this.form.get(e.path)}updateModel(e,t){this.form.get(e.path).setValue(t)}onSubmit(e){return this.submitted=!0,om(this.form,this.directives),this.ngSubmit.emit(e),!1}onReset(){this.resetForm()}resetForm(e){this.form.reset(e),this.submitted=!1}_updateDomValue(){this.directives.forEach(e=>{const t=this.form.get(e.path);e.control!==t&&(function(e,t){t.valueAccessor.registerOnChange(()=>em(t)),t.valueAccessor.registerOnTouched(()=>em(t)),t._rawValidators.forEach(e=>{e.registerOnValidatorChange&&e.registerOnValidatorChange(null)}),t._rawAsyncValidators.forEach(e=>{e.registerOnValidatorChange&&e.registerOnValidatorChange(null)}),e&&e._clearChangeFns()}(e.control,e),t&&Zh(t,e),e.control=t)}),this.form._updateTreeValidity({emitEvent:!1})}_updateRegistrations(){this.form._registerOnCollectionChange(()=>this._updateDomValue()),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{}),this._oldForm=this.form}_updateValidators(){const e=nm(this._validators);this.form.validator=Dh.compose([this.form.validator,e]);const t=im(this._asyncValidators);this.form.asyncValidator=Dh.composeAsync([this.form.asyncValidator,t])}_checkFormPresent(){this.form||$h.missingFormException()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formGroup\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"submit\",(function(e){return t.onSubmit(e)}))(\"reset\",(function(){return t.onReset()}))},inputs:{form:[\"formGroup\",\"form\"]},outputs:{ngSubmit:\"ngSubmit\"},exportAs:[\"ngForm\"],features:[Ba([Om]),Ya,Ra]}),e})();const Pm={provide:yh,useExisting:Ce(()=>Am)};let Am=(()=>{class e extends vm{constructor(e,t,n){super(),this._parent=e,this._validators=t,this._asyncValidators=n}_checkParentType(){jm(this._parent)&&$h.groupParentException()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,13),Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formGroupName\",\"\"]],inputs:{name:[\"formGroupName\",\"name\"]},features:[Ba([Pm]),Ya]}),e})();const Rm={provide:yh,useExisting:Ce(()=>Hm)};let Hm=(()=>{class e extends yh{constructor(e,t,n){super(),this._parent=e,this._validators=t,this._asyncValidators=n}ngOnInit(){this._checkParentType(),this.formDirective.addFormArray(this)}ngOnDestroy(){this.formDirective&&this.formDirective.removeFormArray(this)}get control(){return this.formDirective.getFormArray(this)}get formDirective(){return this._parent?this._parent.formDirective:null}get path(){return Kh(null==this.name?this.name:this.name.toString(),this._parent)}get validator(){return nm(this._validators)}get asyncValidator(){return im(this._asyncValidators)}_checkParentType(){jm(this._parent)&&$h.arrayParentException()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,13),Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formArrayName\",\"\"]],inputs:{name:[\"formArrayName\",\"name\"]},features:[Ba([Rm]),Ya]}),e})();function jm(e){return!(e instanceof Am||e instanceof Im||e instanceof Hm)}const Fm={provide:wh,useExisting:Ce(()=>Nm)};let Nm=(()=>{class e extends wh{constructor(e,t,n,i,s){super(),this._ngModelWarningConfig=s,this._added=!1,this.update=new yc,this._ngModelWarningSent=!1,this._parent=e,this._rawValidators=t||[],this._rawAsyncValidators=n||[],this.valueAccessor=am(this,i)}set isDisabled(e){$h.disabledAttrWarning()}ngOnChanges(t){this._added||this._setUpControl(),sm(t,this.viewModel)&&(cm(\"formControlName\",e,this,this._ngModelWarningConfig),this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(e){this.viewModel=e,this.update.emit(e)}get path(){return Kh(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}get validator(){return nm(this._rawValidators)}get asyncValidator(){return im(this._rawAsyncValidators)}_checkParentType(){!(this._parent instanceof Am)&&this._parent instanceof vm?$h.ngModelGroupException():this._parent instanceof Am||this._parent instanceof Im||this._parent instanceof Hm||$h.controlParentException()}_setUpControl(){this._checkParentType(),this.control=this.formDirective.addControl(this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this._added=!0}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,13),Eo(xh,10),Eo(Ch,10),Eo(uh,10),Eo(Dm,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formControlName\",\"\"]],inputs:{isDisabled:[\"disabled\",\"isDisabled\"],name:[\"formControlName\",\"name\"],model:[\"ngModel\",\"model\"]},outputs:{update:\"ngModelChange\"},features:[Ba([Fm]),Ya,Ra]}),e._ngModelWarningSentOnce=!1,e})();const zm={provide:xh,useExisting:Ce(()=>Vm),multi:!0};let Vm=(()=>{class e{get required(){return this._required}set required(e){this._required=null!=e&&!1!==e&&\"false\"!==`${e}`,this._onChange&&this._onChange()}validate(e){return this.required?Dh.required(e):null}registerOnValidatorChange(e){this._onChange=e}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"required\",\"\",\"formControlName\",\"\",3,\"type\",\"checkbox\"],[\"\",\"required\",\"\",\"formControl\",\"\",3,\"type\",\"checkbox\"],[\"\",\"required\",\"\",\"ngModel\",\"\",3,\"type\",\"checkbox\"]],hostVars:1,hostBindings:function(e,t){2&e&&Co(\"required\",t.required?\"\":null)},inputs:{required:\"required\"},features:[Ba([zm])]}),e})(),Wm=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),Um=(()=>{class e{group(e,t=null){const n=this._reduceControls(e);let i=null,s=null,r=void 0;return null!=t&&(function(e){return void 0!==e.asyncValidators||void 0!==e.validators||void 0!==e.updateOn}(t)?(i=null!=t.validators?t.validators:null,s=null!=t.asyncValidators?t.asyncValidators:null,r=null!=t.updateOn?t.updateOn:void 0):(i=null!=t.validator?t.validator:null,s=null!=t.asyncValidator?t.asyncValidator:null)),new fm(n,{asyncValidators:s,updateOn:r,validators:i})}control(e,t,n){return new pm(e,t,n)}array(e,t,n){const i=e.map(e=>this._createControl(e));return new _m(i,t,n)}_reduceControls(e){const t={};return Object.keys(e).forEach(n=>{t[n]=this._createControl(e[n])}),t}_createControl(e){return e instanceof pm||e instanceof fm||e instanceof _m?e:Array.isArray(e)?this.control(e[0],e.length>1?e[1]:null,e.length>2?e[2]:null):this.control(e)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),$m=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[jh],imports:[Wm]}),e})(),Bm=(()=>{class e{static withConfig(t){return{ngModule:e,providers:[{provide:Dm,useValue:t.warnOnNgModelWithFormControl}]}}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[Um,jh],imports:[Wm]}),e})();function qm(e,...t){return t.length?t.some(t=>e[t]):e.altKey||e.shiftKey||e.ctrlKey||e.metaKey}function Gm(e,t,n){return function(i){return i.lift(new Jm(e,t,n))}}class Jm{constructor(e,t,n){this.nextOrObserver=e,this.error=t,this.complete=n}call(e,t){return t.subscribe(new Km(e,this.nextOrObserver,this.error,this.complete))}}class Km extends p{constructor(e,t,n,s){super(e),this._tapNext=g,this._tapError=g,this._tapComplete=g,this._tapError=n||g,this._tapComplete=s||g,i(t)?(this._context=this,this._tapNext=t):t&&(this._context=t,this._tapNext=t.next||g,this._tapError=t.error||g,this._tapComplete=t.complete||g)}_next(e){try{this._tapNext.call(this._context,e)}catch(t){return void this.destination.error(t)}this.destination.next(e)}_error(e){try{this._tapError.call(this._context,e)}catch(e){return void this.destination.error(e)}this.destination.error(e)}_complete(){try{this._tapComplete.call(this._context)}catch(e){return void this.destination.error(e)}return this.destination.complete()}}class Zm extends u{constructor(e,t){super()}schedule(e,t=0){return this}}class Qm extends Zm{constructor(e,t){super(e,t),this.scheduler=e,this.work=t,this.pending=!1}schedule(e,t=0){if(this.closed)return this;this.state=e;const n=this.id,i=this.scheduler;return null!=n&&(this.id=this.recycleAsyncId(i,n,t)),this.pending=!0,this.delay=t,this.id=this.id||this.requestAsyncId(i,this.id,t),this}requestAsyncId(e,t,n=0){return setInterval(e.flush.bind(e,this),n)}recycleAsyncId(e,t,n=0){if(null!==n&&this.delay===n&&!1===this.pending)return t;clearInterval(t)}execute(e,t){if(this.closed)return new Error(\"executing a cancelled action\");this.pending=!1;const n=this._execute(e,t);if(n)return n;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(e,t){let n=!1,i=void 0;try{this.work(e)}catch(s){n=!0,i=!!s&&s||new Error(s)}if(n)return this.unsubscribe(),i}_unsubscribe(){const e=this.id,t=this.scheduler,n=t.actions,i=n.indexOf(this);this.work=null,this.state=null,this.pending=!1,this.scheduler=null,-1!==i&&n.splice(i,1),null!=e&&(this.id=this.recycleAsyncId(t,e,null)),this.delay=null}}let Xm=(()=>{class e{constructor(t,n=e.now){this.SchedulerAction=t,this.now=n}schedule(e,t=0,n){return new this.SchedulerAction(this,e).schedule(n,t)}}return e.now=()=>Date.now(),e})();class ep extends Xm{constructor(e,t=Xm.now){super(e,()=>ep.delegate&&ep.delegate!==this?ep.delegate.now():t()),this.actions=[],this.active=!1,this.scheduled=void 0}schedule(e,t=0,n){return ep.delegate&&ep.delegate!==this?ep.delegate.schedule(e,t,n):super.schedule(e,t,n)}flush(e){const{actions:t}=this;if(this.active)return void t.push(e);let n;this.active=!0;do{if(n=e.execute(e.state,e.delay))break}while(e=t.shift());if(this.active=!1,n){for(;e=t.shift();)e.unsubscribe();throw n}}}const tp=new ep(Qm);function np(e,t=tp){return n=>n.lift(new ip(e,t))}class ip{constructor(e,t){this.dueTime=e,this.scheduler=t}call(e,t){return t.subscribe(new sp(e,this.dueTime,this.scheduler))}}class sp extends p{constructor(e,t,n){super(e),this.dueTime=t,this.scheduler=n,this.debouncedSubscription=null,this.lastValue=null,this.hasValue=!1}_next(e){this.clearDebounce(),this.lastValue=e,this.hasValue=!0,this.add(this.debouncedSubscription=this.scheduler.schedule(rp,this.dueTime,this))}_complete(){this.debouncedNext(),this.destination.complete()}debouncedNext(){if(this.clearDebounce(),this.hasValue){const{lastValue:e}=this;this.lastValue=null,this.hasValue=!1,this.destination.next(e)}}clearDebounce(){const e=this.debouncedSubscription;null!==e&&(this.remove(e),e.unsubscribe(),this.debouncedSubscription=null)}}function rp(e){e.debouncedNext()}const op=(()=>{function e(){return Error.call(this),this.message=\"argument out of range\",this.name=\"ArgumentOutOfRangeError\",this}return e.prototype=Object.create(Error.prototype),e})(),ap=new v(e=>e.complete());function lp(e){return e?function(e){return new v(t=>e.schedule(()=>t.complete()))}(e):ap}function cp(e){return t=>0===e?lp():t.lift(new dp(e))}class dp{constructor(e){if(this.total=e,this.total<0)throw new op}call(e,t){return t.subscribe(new up(e,this.total))}}class up extends p{constructor(e,t){super(e),this.total=t,this.count=0}_next(e){const t=this.total,n=++this.count;n<=t&&(this.destination.next(e),n===t&&(this.destination.complete(),this.unsubscribe()))}}function hp(e){return null!=e&&\"false\"!==`${e}`}function mp(e,t=0){return function(e){return!isNaN(parseFloat(e))&&!isNaN(Number(e))}(e)?Number(e):t}function pp(e){return Array.isArray(e)?e:[e]}function fp(e){return null==e?\"\":\"string\"==typeof e?e:`${e}px`}function _p(e){return e instanceof Ka?e.nativeElement:e}let gp;try{gp=\"undefined\"!=typeof Intl&&Intl.v8BreakIterator}catch(NI){gp=!1}let yp,bp=(()=>{class e{constructor(e){this._platformId=e,this.isBrowser=this._platformId?ku(this._platformId):\"object\"==typeof document&&!!document,this.EDGE=this.isBrowser&&/(edge)/i.test(navigator.userAgent),this.TRIDENT=this.isBrowser&&/(msie|trident)/i.test(navigator.userAgent),this.BLINK=this.isBrowser&&!(!window.chrome&&!gp)&&\"undefined\"!=typeof CSS&&!this.EDGE&&!this.TRIDENT,this.WEBKIT=this.isBrowser&&/AppleWebKit/i.test(navigator.userAgent)&&!this.BLINK&&!this.EDGE&&!this.TRIDENT,this.IOS=this.isBrowser&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!(\"MSStream\"in window),this.FIREFOX=this.isBrowser&&/(firefox|minefield)/i.test(navigator.userAgent),this.ANDROID=this.isBrowser&&/android/i.test(navigator.userAgent)&&!this.TRIDENT,this.SAFARI=this.isBrowser&&/safari/i.test(navigator.userAgent)&&this.WEBKIT}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Bc,8))},e.\\u0275prov=pe({factory:function(){return new e(Qe(Bc,8))},token:e,providedIn:\"root\"}),e})(),vp=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();const wp=[\"color\",\"button\",\"checkbox\",\"date\",\"datetime-local\",\"email\",\"file\",\"hidden\",\"image\",\"month\",\"number\",\"password\",\"radio\",\"range\",\"reset\",\"search\",\"submit\",\"tel\",\"text\",\"time\",\"url\",\"week\"];function Mp(){if(yp)return yp;if(\"object\"!=typeof document||!document)return yp=new Set(wp),yp;let e=document.createElement(\"input\");return yp=new Set(wp.filter(t=>(e.setAttribute(\"type\",t),e.type===t))),yp}let kp;function Sp(e){return function(){if(null==kp&&\"undefined\"!=typeof window)try{window.addEventListener(\"test\",null,Object.defineProperty({},\"passive\",{get:()=>kp=!0}))}finally{kp=kp||!1}return kp}()?e:!!e.capture}const Lp=function(){var e={NORMAL:0,NEGATED:1,INVERTED:2};return e[e.NORMAL]=\"NORMAL\",e[e.NEGATED]=\"NEGATED\",e[e.INVERTED]=\"INVERTED\",e}();let xp;function Cp(){if(\"object\"!=typeof document||!document)return Lp.NORMAL;if(!xp){const e=document.createElement(\"div\"),t=e.style;e.dir=\"rtl\",t.height=\"1px\",t.width=\"1px\",t.overflow=\"auto\",t.visibility=\"hidden\",t.pointerEvents=\"none\",t.position=\"absolute\";const n=document.createElement(\"div\"),i=n.style;i.width=\"2px\",i.height=\"1px\",e.appendChild(n),document.body.appendChild(e),xp=Lp.NORMAL,0===e.scrollLeft&&(e.scrollLeft=1,xp=0===e.scrollLeft?Lp.NEGATED:Lp.INVERTED),e.parentNode.removeChild(e)}return xp}let Tp=(()=>{class e{create(e){return\"undefined\"==typeof MutationObserver?null:new MutationObserver(e)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})(),Dp=(()=>{class e{constructor(e){this._mutationObserverFactory=e,this._observedElements=new Map}ngOnDestroy(){this._observedElements.forEach((e,t)=>this._cleanupObserver(t))}observe(e){const t=_p(e);return new v(e=>{const n=this._observeElement(t).subscribe(e);return()=>{n.unsubscribe(),this._unobserveElement(t)}})}_observeElement(e){if(this._observedElements.has(e))this._observedElements.get(e).count++;else{const t=new L,n=this._mutationObserverFactory.create(e=>t.next(e));n&&n.observe(e,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(e,{observer:n,stream:t,count:1})}return this._observedElements.get(e).stream}_unobserveElement(e){this._observedElements.has(e)&&(this._observedElements.get(e).count--,this._observedElements.get(e).count||this._cleanupObserver(e))}_cleanupObserver(e){if(this._observedElements.has(e)){const{observer:t,stream:n}=this._observedElements.get(e);t&&t.disconnect(),n.complete(),this._observedElements.delete(e)}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Tp))},e.\\u0275prov=pe({factory:function(){return new e(Qe(Tp))},token:e,providedIn:\"root\"}),e})(),Yp=(()=>{class e{constructor(e,t,n){this._contentObserver=e,this._elementRef=t,this._ngZone=n,this.event=new yc,this._disabled=!1,this._currentSubscription=null}get disabled(){return this._disabled}set disabled(e){this._disabled=hp(e),this._disabled?this._unsubscribe():this._subscribe()}get debounce(){return this._debounce}set debounce(e){this._debounce=mp(e),this._subscribe()}ngAfterContentInit(){this._currentSubscription||this.disabled||this._subscribe()}ngOnDestroy(){this._unsubscribe()}_subscribe(){this._unsubscribe();const e=this._contentObserver.observe(this._elementRef);this._ngZone.runOutsideAngular(()=>{this._currentSubscription=(this.debounce?e.pipe(np(this.debounce)):e).subscribe(this.event)})}_unsubscribe(){this._currentSubscription&&this._currentSubscription.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Dp),Eo(Ka),Eo(ld))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdkObserveContent\",\"\"]],inputs:{disabled:[\"cdkObserveContentDisabled\",\"disabled\"],debounce:\"debounce\"},outputs:{event:\"cdkObserveContent\"},exportAs:[\"cdkObserveContent\"]}),e})(),Ep=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[Tp]}),e})();class Op{constructor(e){this._items=e,this._activeItemIndex=-1,this._activeItem=null,this._wrap=!1,this._letterKeyStream=new L,this._typeaheadSubscription=u.EMPTY,this._vertical=!0,this._allowedModifierKeys=[],this._skipPredicateFn=e=>e.disabled,this._pressedLetters=[],this.tabOut=new L,this.change=new L,e instanceof vc&&e.changes.subscribe(e=>{if(this._activeItem){const t=e.toArray().indexOf(this._activeItem);t>-1&&t!==this._activeItemIndex&&(this._activeItemIndex=t)}})}skipPredicate(e){return this._skipPredicateFn=e,this}withWrap(e=!0){return this._wrap=e,this}withVerticalOrientation(e=!0){return this._vertical=e,this}withHorizontalOrientation(e){return this._horizontal=e,this}withAllowedModifierKeys(e){return this._allowedModifierKeys=e,this}withTypeAhead(e=200){if(this._items.length&&this._items.some(e=>\"function\"!=typeof e.getLabel))throw Error(\"ListKeyManager items in typeahead mode must implement the `getLabel` method.\");return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe(Gm(e=>this._pressedLetters.push(e)),np(e),Tu(()=>this._pressedLetters.length>0),H(()=>this._pressedLetters.join(\"\"))).subscribe(e=>{const t=this._getItemsArray();for(let n=1;n!e[t]||this._allowedModifierKeys.indexOf(t)>-1);switch(t){case 9:return void this.tabOut.next();case 40:if(this._vertical&&n){this.setNextItemActive();break}return;case 38:if(this._vertical&&n){this.setPreviousItemActive();break}return;case 39:if(this._horizontal&&n){\"rtl\"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case 37:if(this._horizontal&&n){\"rtl\"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;default:return void((n||qm(e,\"shiftKey\"))&&(e.key&&1===e.key.length?this._letterKeyStream.next(e.key.toLocaleUpperCase()):(t>=65&&t<=90||t>=48&&t<=57)&&this._letterKeyStream.next(String.fromCharCode(t))))}this._pressedLetters=[],e.preventDefault()}get activeItemIndex(){return this._activeItemIndex}get activeItem(){return this._activeItem}isTyping(){return this._pressedLetters.length>0}setFirstItemActive(){this._setActiveItemByIndex(0,1)}setLastItemActive(){this._setActiveItemByIndex(this._items.length-1,-1)}setNextItemActive(){this._activeItemIndex<0?this.setFirstItemActive():this._setActiveItemByDelta(1)}setPreviousItemActive(){this._activeItemIndex<0&&this._wrap?this.setLastItemActive():this._setActiveItemByDelta(-1)}updateActiveItem(e){const t=this._getItemsArray(),n=\"number\"==typeof e?e:t.indexOf(e),i=t[n];this._activeItem=null==i?null:i,this._activeItemIndex=n}_setActiveItemByDelta(e){this._wrap?this._setActiveInWrapMode(e):this._setActiveInDefaultMode(e)}_setActiveInWrapMode(e){const t=this._getItemsArray();for(let n=1;n<=t.length;n++){const i=(this._activeItemIndex+e*n+t.length)%t.length;if(!this._skipPredicateFn(t[i]))return void this.setActiveItem(i)}}_setActiveInDefaultMode(e){this._setActiveItemByIndex(this._activeItemIndex+e,e)}_setActiveItemByIndex(e,t){const n=this._getItemsArray();if(n[e]){for(;this._skipPredicateFn(n[e]);)if(!n[e+=t])return;this.setActiveItem(e)}}_getItemsArray(){return this._items instanceof vc?this._items.toArray():this._items}}class Ip extends Op{setActiveItem(e){this.activeItem&&this.activeItem.setInactiveStyles(),super.setActiveItem(e),this.activeItem&&this.activeItem.setActiveStyles()}}class Pp extends Op{constructor(){super(...arguments),this._origin=\"program\"}setFocusOrigin(e){return this._origin=e,this}setActiveItem(e){super.setActiveItem(e),this.activeItem&&this.activeItem.focus(this._origin)}}let Ap=(()=>{class e{constructor(e){this._platform=e}isDisabled(e){return e.hasAttribute(\"disabled\")}isVisible(e){return function(e){return!!(e.offsetWidth||e.offsetHeight||\"function\"==typeof e.getClientRects&&e.getClientRects().length)}(e)&&\"visible\"===getComputedStyle(e).visibility}isTabbable(e){if(!this._platform.isBrowser)return!1;const t=function(e){try{return e.frameElement}catch(NI){return null}}((n=e).ownerDocument&&n.ownerDocument.defaultView||window);var n;if(t){const e=t&&t.nodeName.toLowerCase();if(-1===Hp(t))return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&\"object\"===e)return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&!this.isVisible(t))return!1}let i=e.nodeName.toLowerCase(),s=Hp(e);if(e.hasAttribute(\"contenteditable\"))return-1!==s;if(\"iframe\"===i)return!1;if(\"audio\"===i){if(!e.hasAttribute(\"controls\"))return!1;if(this._platform.BLINK)return!0}if(\"video\"===i){if(!e.hasAttribute(\"controls\")&&this._platform.TRIDENT)return!1;if(this._platform.BLINK||this._platform.FIREFOX)return!0}return(\"object\"!==i||!this._platform.BLINK&&!this._platform.WEBKIT)&&!(this._platform.WEBKIT&&this._platform.IOS&&!function(e){let t=e.nodeName.toLowerCase(),n=\"input\"===t&&e.type;return\"text\"===n||\"password\"===n||\"select\"===t||\"textarea\"===t}(e))&&e.tabIndex>=0}isFocusable(e){return function(e){return!function(e){return function(e){return\"input\"==e.nodeName.toLowerCase()}(e)&&\"hidden\"==e.type}(e)&&(function(e){let t=e.nodeName.toLowerCase();return\"input\"===t||\"select\"===t||\"button\"===t||\"textarea\"===t}(e)||function(e){return function(e){return\"a\"==e.nodeName.toLowerCase()}(e)&&e.hasAttribute(\"href\")}(e)||e.hasAttribute(\"contenteditable\")||Rp(e))}(e)&&!this.isDisabled(e)&&this.isVisible(e)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(bp))},e.\\u0275prov=pe({factory:function(){return new e(Qe(bp))},token:e,providedIn:\"root\"}),e})();function Rp(e){if(!e.hasAttribute(\"tabindex\")||void 0===e.tabIndex)return!1;let t=e.getAttribute(\"tabindex\");return\"-32768\"!=t&&!(!t||isNaN(parseInt(t,10)))}function Hp(e){if(!Rp(e))return null;const t=parseInt(e.getAttribute(\"tabindex\")||\"\",10);return isNaN(t)?-1:t}class jp{constructor(e,t,n,i,s=!1){this._element=e,this._checker=t,this._ngZone=n,this._document=i,this._hasAttached=!1,this.startAnchorListener=()=>this.focusLastTabbableElement(),this.endAnchorListener=()=>this.focusFirstTabbableElement(),this._enabled=!0,s||this.attachAnchors()}get enabled(){return this._enabled}set enabled(e){this._enabled=e,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(e,this._startAnchor),this._toggleAnchorTabIndex(e,this._endAnchor))}destroy(){const e=this._startAnchor,t=this._endAnchor;e&&(e.removeEventListener(\"focus\",this.startAnchorListener),e.parentNode&&e.parentNode.removeChild(e)),t&&(t.removeEventListener(\"focus\",this.endAnchorListener),t.parentNode&&t.parentNode.removeChild(t)),this._startAnchor=this._endAnchor=null}attachAnchors(){return!!this._hasAttached||(this._ngZone.runOutsideAngular(()=>{this._startAnchor||(this._startAnchor=this._createAnchor(),this._startAnchor.addEventListener(\"focus\",this.startAnchorListener)),this._endAnchor||(this._endAnchor=this._createAnchor(),this._endAnchor.addEventListener(\"focus\",this.endAnchorListener))}),this._element.parentNode&&(this._element.parentNode.insertBefore(this._startAnchor,this._element),this._element.parentNode.insertBefore(this._endAnchor,this._element.nextSibling),this._hasAttached=!0),this._hasAttached)}focusInitialElementWhenReady(){return new Promise(e=>{this._executeOnStable(()=>e(this.focusInitialElement()))})}focusFirstTabbableElementWhenReady(){return new Promise(e=>{this._executeOnStable(()=>e(this.focusFirstTabbableElement()))})}focusLastTabbableElementWhenReady(){return new Promise(e=>{this._executeOnStable(()=>e(this.focusLastTabbableElement()))})}_getRegionBoundary(e){let t=this._element.querySelectorAll(`[cdk-focus-region-${e}], `+`[cdkFocusRegion${e}], `+`[cdk-focus-${e}]`);for(let n=0;n=0;n--){let e=t[n].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(t[n]):null;if(e)return e}return null}_createAnchor(){const e=this._document.createElement(\"div\");return this._toggleAnchorTabIndex(this._enabled,e),e.classList.add(\"cdk-visually-hidden\"),e.classList.add(\"cdk-focus-trap-anchor\"),e.setAttribute(\"aria-hidden\",\"true\"),e}_toggleAnchorTabIndex(e,t){e?t.setAttribute(\"tabindex\",\"0\"):t.removeAttribute(\"tabindex\")}_executeOnStable(e){this._ngZone.isStable?e():this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(e)}}let Fp=(()=>{class e{constructor(e,t,n){this._checker=e,this._ngZone=t,this._document=n}create(e,t=!1){return new jp(e,this._checker,this._ngZone,this._document,t)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Ap),Qe(ld),Qe(Nd))},e.\\u0275prov=pe({factory:function(){return new e(Qe(Ap),Qe(ld),Qe(Nd))},token:e,providedIn:\"root\"}),e})();const Np=new Ve(\"liveAnnouncerElement\",{providedIn:\"root\",factory:function(){return null}}),zp=new Ve(\"LIVE_ANNOUNCER_DEFAULT_OPTIONS\");let Vp=(()=>{class e{constructor(e,t,n,i){this._ngZone=t,this._defaultOptions=i,this._document=n,this._liveElement=e||this._createLiveElement()}announce(e,...t){const n=this._defaultOptions;let i,s;return 1===t.length&&\"number\"==typeof t[0]?s=t[0]:[i,s]=t,this.clear(),clearTimeout(this._previousTimeout),i||(i=n&&n.politeness?n.politeness:\"polite\"),null==s&&n&&(s=n.duration),this._liveElement.setAttribute(\"aria-live\",i),this._ngZone.runOutsideAngular(()=>new Promise(t=>{clearTimeout(this._previousTimeout),this._previousTimeout=setTimeout(()=>{this._liveElement.textContent=e,t(),\"number\"==typeof s&&(this._previousTimeout=setTimeout(()=>this.clear(),s))},100)}))}clear(){this._liveElement&&(this._liveElement.textContent=\"\")}ngOnDestroy(){clearTimeout(this._previousTimeout),this._liveElement&&this._liveElement.parentNode&&(this._liveElement.parentNode.removeChild(this._liveElement),this._liveElement=null)}_createLiveElement(){const e=this._document.getElementsByClassName(\"cdk-live-announcer-element\"),t=this._document.createElement(\"div\");for(let n=0;n{class e{constructor(e,t){this._ngZone=e,this._platform=t,this._origin=null,this._windowFocused=!1,this._elementInfo=new Map,this._monitoredElementCount=0,this._documentKeydownListener=()=>{this._lastTouchTarget=null,this._setOriginForCurrentEventQueue(\"keyboard\")},this._documentMousedownListener=()=>{this._lastTouchTarget||this._setOriginForCurrentEventQueue(\"mouse\")},this._documentTouchstartListener=e=>{null!=this._touchTimeoutId&&clearTimeout(this._touchTimeoutId),this._lastTouchTarget=e.composedPath?e.composedPath()[0]:e.target,this._touchTimeoutId=setTimeout(()=>this._lastTouchTarget=null,650)},this._windowFocusListener=()=>{this._windowFocused=!0,this._windowFocusTimeoutId=setTimeout(()=>this._windowFocused=!1)}}monitor(e,t=!1){if(!this._platform.isBrowser)return xu(null);const n=_p(e);if(this._elementInfo.has(n)){let e=this._elementInfo.get(n);return e.checkChildren=t,e.subject.asObservable()}let i={unlisten:()=>{},checkChildren:t,subject:new L};this._elementInfo.set(n,i),this._incrementMonitoredElementCount();let s=e=>this._onFocus(e,n),r=e=>this._onBlur(e,n);return this._ngZone.runOutsideAngular(()=>{n.addEventListener(\"focus\",s,!0),n.addEventListener(\"blur\",r,!0)}),i.unlisten=()=>{n.removeEventListener(\"focus\",s,!0),n.removeEventListener(\"blur\",r,!0)},i.subject.asObservable()}stopMonitoring(e){const t=_p(e),n=this._elementInfo.get(t);n&&(n.unlisten(),n.subject.complete(),this._setClasses(t),this._elementInfo.delete(t),this._decrementMonitoredElementCount())}focusVia(e,t,n){const i=_p(e);this._setOriginForCurrentEventQueue(t),\"function\"==typeof i.focus&&i.focus(n)}ngOnDestroy(){this._elementInfo.forEach((e,t)=>this.stopMonitoring(t))}_toggleClass(e,t,n){n?e.classList.add(t):e.classList.remove(t)}_setClasses(e,t){this._elementInfo.get(e)&&(this._toggleClass(e,\"cdk-focused\",!!t),this._toggleClass(e,\"cdk-touch-focused\",\"touch\"===t),this._toggleClass(e,\"cdk-keyboard-focused\",\"keyboard\"===t),this._toggleClass(e,\"cdk-mouse-focused\",\"mouse\"===t),this._toggleClass(e,\"cdk-program-focused\",\"program\"===t))}_setOriginForCurrentEventQueue(e){this._ngZone.runOutsideAngular(()=>{this._origin=e,this._originTimeoutId=setTimeout(()=>this._origin=null,1)})}_wasCausedByTouch(e){let t=e.target;return this._lastTouchTarget instanceof Node&&t instanceof Node&&(t===this._lastTouchTarget||t.contains(this._lastTouchTarget))}_onFocus(e,t){const n=this._elementInfo.get(t);if(!n||!n.checkChildren&&t!==e.target)return;let i=this._origin;i||(i=this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:this._wasCausedByTouch(e)?\"touch\":\"program\"),this._setClasses(t,i),this._emitOrigin(n.subject,i),this._lastFocusOrigin=i}_onBlur(e,t){const n=this._elementInfo.get(t);!n||n.checkChildren&&e.relatedTarget instanceof Node&&t.contains(e.relatedTarget)||(this._setClasses(t),this._emitOrigin(n.subject,null))}_emitOrigin(e,t){this._ngZone.run(()=>e.next(t))}_incrementMonitoredElementCount(){1==++this._monitoredElementCount&&this._platform.isBrowser&&this._ngZone.runOutsideAngular(()=>{document.addEventListener(\"keydown\",this._documentKeydownListener,Wp),document.addEventListener(\"mousedown\",this._documentMousedownListener,Wp),document.addEventListener(\"touchstart\",this._documentTouchstartListener,Wp),window.addEventListener(\"focus\",this._windowFocusListener)})}_decrementMonitoredElementCount(){--this._monitoredElementCount||(document.removeEventListener(\"keydown\",this._documentKeydownListener,Wp),document.removeEventListener(\"mousedown\",this._documentMousedownListener,Wp),document.removeEventListener(\"touchstart\",this._documentTouchstartListener,Wp),window.removeEventListener(\"focus\",this._windowFocusListener),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._touchTimeoutId),clearTimeout(this._originTimeoutId))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ld),Qe(bp))},e.\\u0275prov=pe({factory:function(){return new e(Qe(ld),Qe(bp))},token:e,providedIn:\"root\"}),e})();function $p(e){return 0===e.buttons}let Bp=(()=>{class e{constructor(e,t){this._platform=e,this._document=t}getHighContrastMode(){if(!this._platform.isBrowser)return 0;const e=this._document.createElement(\"div\");e.style.backgroundColor=\"rgb(1,2,3)\",e.style.position=\"absolute\",this._document.body.appendChild(e);const t=(this._document.defaultView.getComputedStyle(e).backgroundColor||\"\").replace(/ /g,\"\");switch(this._document.body.removeChild(e),t){case\"rgb(0,0,0)\":return 2;case\"rgb(255,255,255)\":return 1}return 0}_applyBodyHighContrastModeCssClasses(){if(this._platform.isBrowser&&this._document.body){const e=this._document.body.classList;e.remove(\"cdk-high-contrast-active\"),e.remove(\"cdk-high-contrast-black-on-white\"),e.remove(\"cdk-high-contrast-white-on-black\");const t=this.getHighContrastMode();1===t?(e.add(\"cdk-high-contrast-active\"),e.add(\"cdk-high-contrast-black-on-white\")):2===t&&(e.add(\"cdk-high-contrast-active\"),e.add(\"cdk-high-contrast-white-on-black\"))}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(bp),Qe(Nd))},e.\\u0275prov=pe({factory:function(){return new e(Qe(bp),Qe(Nd))},token:e,providedIn:\"root\"}),e})();const qp=new Ve(\"cdk-dir-doc\",{providedIn:\"root\",factory:function(){return Xe(Nd)}});let Gp=(()=>{class e{constructor(e){if(this.value=\"ltr\",this.change=new yc,e){const t=e.documentElement?e.documentElement.dir:null,n=(e.body?e.body.dir:null)||t;this.value=\"ltr\"===n||\"rtl\"===n?n:\"ltr\"}}ngOnDestroy(){this.change.complete()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(qp,8))},e.\\u0275prov=pe({factory:function(){return new e(Qe(qp,8))},token:e,providedIn:\"root\"}),e})(),Jp=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();const Kp=new il(\"9.0.1\");class Zp extends class extends class{}{constructor(){super()}supportsDOMEvents(){return!0}}{static makeCurrent(){var e;e=new Zp,jd||(jd=e)}getProperty(e,t){return e[t]}log(e){window.console&&window.console.log&&window.console.log(e)}logGroup(e){window.console&&window.console.group&&window.console.group(e)}logGroupEnd(){window.console&&window.console.groupEnd&&window.console.groupEnd()}onAndCancel(e,t,n){return e.addEventListener(t,n,!1),()=>{e.removeEventListener(t,n,!1)}}dispatchEvent(e,t){e.dispatchEvent(t)}remove(e){return e.parentNode&&e.parentNode.removeChild(e),e}getValue(e){return e.value}createElement(e,t){return(t=t||this.getDefaultDocument()).createElement(e)}createHtmlDocument(){return document.implementation.createHTMLDocument(\"fakeTitle\")}getDefaultDocument(){return document}isElementNode(e){return e.nodeType===Node.ELEMENT_NODE}isShadowRoot(e){return e instanceof DocumentFragment}getGlobalEventTarget(e,t){return\"window\"===t?window:\"document\"===t?e:\"body\"===t?e.body:null}getHistory(){return window.history}getLocation(){return window.location}getBaseHref(e){const t=Xp||(Xp=document.querySelector(\"base\"),Xp)?Xp.getAttribute(\"href\"):null;return null==t?null:(n=t,Qp||(Qp=document.createElement(\"a\")),Qp.setAttribute(\"href\",n),\"/\"===Qp.pathname.charAt(0)?Qp.pathname:\"/\"+Qp.pathname);var n}resetBaseElement(){Xp=null}getUserAgent(){return window.navigator.userAgent}performanceNow(){return window.performance&&window.performance.now?window.performance.now():(new Date).getTime()}supportsCookies(){return!0}getCookie(e){return lu(document.cookie,e)}}let Qp,Xp=null;const ef=new Ve(\"TRANSITION_ID\"),tf=[{provide:Nc,useFactory:function(e,t,n){return()=>{n.get(zc).donePromise.then(()=>{const n=Fd();Array.prototype.slice.apply(t.querySelectorAll(\"style[ng-transition]\")).filter(t=>t.getAttribute(\"ng-transition\")===e).forEach(e=>n.remove(e))})}},deps:[ef,Nd,fo],multi:!0}];class nf{static init(){var e;e=new nf,vd=e}addToWindow(e){Pe.getAngularTestability=(t,n=!0)=>{const i=e.findTestabilityInTree(t,n);if(null==i)throw new Error(\"Could not find testability for element.\");return i},Pe.getAllAngularTestabilities=()=>e.getAllTestabilities(),Pe.getAllAngularRootElements=()=>e.getAllRootElements(),Pe.frameworkStabilizers||(Pe.frameworkStabilizers=[]),Pe.frameworkStabilizers.push(e=>{const t=Pe.getAllAngularTestabilities();let n=t.length,i=!1;const s=function(t){i=i||t,n--,0==n&&e(i)};t.forEach((function(e){e.whenStable(s)}))})}findTestabilityInTree(e,t,n){if(null==t)return null;const i=e.getTestability(t);return null!=i?i:n?Fd().isShadowRoot(t)?this.findTestabilityInTree(e,t.host,!0):this.findTestabilityInTree(e,t.parentElement,!0):null}}const sf=new Ve(\"EventManagerPlugins\");let rf=(()=>{class e{constructor(e,t){this._zone=t,this._eventNameToPlugin=new Map,e.forEach(e=>e.manager=this),this._plugins=e.slice().reverse()}addEventListener(e,t,n){return this._findPluginFor(t).addEventListener(e,t,n)}addGlobalEventListener(e,t,n){return this._findPluginFor(t).addGlobalEventListener(e,t,n)}getZone(){return this._zone}_findPluginFor(e){const t=this._eventNameToPlugin.get(e);if(t)return t;const n=this._plugins;for(let i=0;i{class e{constructor(){this._stylesSet=new Set}addStyles(e){const t=new Set;e.forEach(e=>{this._stylesSet.has(e)||(this._stylesSet.add(e),t.add(e))}),this.onStylesAdded(t)}onStylesAdded(e){}getAllStyles(){return Array.from(this._stylesSet)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),lf=(()=>{class e extends af{constructor(e){super(),this._doc=e,this._hostNodes=new Set,this._styleNodes=new Set,this._hostNodes.add(e.head)}_addStylesToHost(e,t){e.forEach(e=>{const n=this._doc.createElement(\"style\");n.textContent=e,this._styleNodes.add(t.appendChild(n))})}addHost(e){this._addStylesToHost(this._stylesSet,e),this._hostNodes.add(e)}removeHost(e){this._hostNodes.delete(e)}onStylesAdded(e){this._hostNodes.forEach(t=>this._addStylesToHost(e,t))}ngOnDestroy(){this._styleNodes.forEach(e=>Fd().remove(e))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const cf={svg:\"http://www.w3.org/2000/svg\",xhtml:\"http://www.w3.org/1999/xhtml\",xlink:\"http://www.w3.org/1999/xlink\",xml:\"http://www.w3.org/XML/1998/namespace\",xmlns:\"http://www.w3.org/2000/xmlns/\"},df=/%COMP%/g;function uf(e,t,n){for(let i=0;i{if(\"__ngUnwrap__\"===t)return e;!1===e(t)&&(t.preventDefault(),t.returnValue=!1)}}let mf=(()=>{class e{constructor(e,t,n){this.eventManager=e,this.sharedStylesHost=t,this.appId=n,this.rendererByCompId=new Map,this.defaultRenderer=new pf(e)}createRenderer(e,t){if(!e||!t)return this.defaultRenderer;switch(t.encapsulation){case pt.Emulated:{let n=this.rendererByCompId.get(t.id);return n||(n=new ff(this.eventManager,this.sharedStylesHost,t,this.appId),this.rendererByCompId.set(t.id,n)),n.applyToHost(e),n}case pt.Native:case pt.ShadowDom:return new _f(this.eventManager,this.sharedStylesHost,e,t);default:if(!this.rendererByCompId.has(t.id)){const e=uf(t.id,t.styles,[]);this.sharedStylesHost.addStyles(e),this.rendererByCompId.set(t.id,this.defaultRenderer)}return this.defaultRenderer}}begin(){}end(){}}return e.\\u0275fac=function(t){return new(t||e)(Qe(rf),Qe(lf),Qe(Vc))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class pf{constructor(e){this.eventManager=e,this.data=Object.create(null)}destroy(){}createElement(e,t){return t?document.createElementNS(cf[t]||t,e):document.createElement(e)}createComment(e){return document.createComment(e)}createText(e){return document.createTextNode(e)}appendChild(e,t){e.appendChild(t)}insertBefore(e,t,n){e&&e.insertBefore(t,n)}removeChild(e,t){e&&e.removeChild(t)}selectRootElement(e,t){let n=\"string\"==typeof e?document.querySelector(e):e;if(!n)throw new Error(`The selector \"${e}\" did not match any elements`);return t||(n.textContent=\"\"),n}parentNode(e){return e.parentNode}nextSibling(e){return e.nextSibling}setAttribute(e,t,n,i){if(i){t=i+\":\"+t;const s=cf[i];s?e.setAttributeNS(s,t,n):e.setAttribute(t,n)}else e.setAttribute(t,n)}removeAttribute(e,t,n){if(n){const i=cf[n];i?e.removeAttributeNS(i,t):e.removeAttribute(`${n}:${t}`)}else e.removeAttribute(t)}addClass(e,t){e.classList.add(t)}removeClass(e,t){e.classList.remove(t)}setStyle(e,t,n,i){i&Xa.DashCase?e.style.setProperty(t,n,i&Xa.Important?\"important\":\"\"):e.style[t]=n}removeStyle(e,t,n){n&Xa.DashCase?e.style.removeProperty(t):e.style[t]=\"\"}setProperty(e,t,n){e[t]=n}setValue(e,t){e.nodeValue=t}listen(e,t,n){return\"string\"==typeof e?this.eventManager.addGlobalEventListener(e,t,hf(n)):this.eventManager.addEventListener(e,t,hf(n))}}class ff extends pf{constructor(e,t,n,i){super(e),this.component=n;const s=uf(i+\"-\"+n.id,n.styles,[]);t.addStyles(s),this.contentAttr=\"_ngcontent-%COMP%\".replace(df,i+\"-\"+n.id),this.hostAttr=function(e){return\"_nghost-%COMP%\".replace(df,e)}(i+\"-\"+n.id)}applyToHost(e){super.setAttribute(e,this.hostAttr,\"\")}createElement(e,t){const n=super.createElement(e,t);return super.setAttribute(n,this.contentAttr,\"\"),n}}class _f extends pf{constructor(e,t,n,i){super(e),this.sharedStylesHost=t,this.hostEl=n,this.component=i,this.shadowRoot=i.encapsulation===pt.ShadowDom?n.attachShadow({mode:\"open\"}):n.createShadowRoot(),this.sharedStylesHost.addHost(this.shadowRoot);const s=uf(i.id,i.styles,[]);for(let r=0;r{class e extends of{constructor(e){super(e)}supports(e){return!0}addEventListener(e,t,n){return e.addEventListener(t,n,!1),()=>this.removeEventListener(e,t,n)}removeEventListener(e,t,n){return e.removeEventListener(t,n)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const yf={pan:!0,panstart:!0,panmove:!0,panend:!0,pancancel:!0,panleft:!0,panright:!0,panup:!0,pandown:!0,pinch:!0,pinchstart:!0,pinchmove:!0,pinchend:!0,pinchcancel:!0,pinchin:!0,pinchout:!0,press:!0,pressup:!0,rotate:!0,rotatestart:!0,rotatemove:!0,rotateend:!0,rotatecancel:!0,swipe:!0,swipeleft:!0,swiperight:!0,swipeup:!0,swipedown:!0,tap:!0},bf=new Ve(\"HammerGestureConfig\"),vf=new Ve(\"HammerLoader\");let wf=(()=>{class e{constructor(){this.events=[],this.overrides={}}buildHammer(e){const t=new Hammer(e,this.options);t.get(\"pinch\").set({enable:!0}),t.get(\"rotate\").set({enable:!0});for(const n in this.overrides)t.get(n).set(this.overrides[n]);return t}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const Mf=[{provide:sf,useClass:(()=>{class e extends of{constructor(e,t,n,i){super(e),this._config=t,this.console=n,this.loader=i}supports(e){return!(!yf.hasOwnProperty(e.toLowerCase())&&!this.isCustomEvent(e)||!window.Hammer&&!this.loader&&(this.console.warn(`The \"${e}\" event cannot be bound because Hammer.JS is not `+\"loaded and no custom loader has been specified.\"),1))}addEventListener(e,t,n){const i=this.manager.getZone();if(t=t.toLowerCase(),!window.Hammer&&this.loader){let i=!1,s=()=>{i=!0};return this.loader().then(()=>{if(!window.Hammer)return this.console.warn(\"The custom HAMMER_LOADER completed, but Hammer.JS is not present.\"),void(s=()=>{});i||(s=this.addEventListener(e,t,n))}).catch(()=>{this.console.warn(`The \"${t}\" event cannot be bound because the custom `+\"Hammer.JS loader failed.\"),s=()=>{}}),()=>{s()}}return i.runOutsideAngular(()=>{const s=this._config.buildHammer(e),r=function(e){i.runGuarded((function(){n(e)}))};return s.on(t,r),()=>{s.off(t,r),\"function\"==typeof s.destroy&&s.destroy()}})}isCustomEvent(e){return this._config.events.indexOf(e)>-1}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd),Qe(bf),Qe(Gc),Qe(vf,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),multi:!0,deps:[Nd,bf,Gc,[new le,vf]]},{provide:bf,useClass:wf,deps:[]}];let kf=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:Mf}),e})();const Sf=[\"alt\",\"control\",\"meta\",\"shift\"],Lf={\"\\b\":\"Backspace\",\"\\t\":\"Tab\",\"\\x7f\":\"Delete\",\"\\x1b\":\"Escape\",Del:\"Delete\",Esc:\"Escape\",Left:\"ArrowLeft\",Right:\"ArrowRight\",Up:\"ArrowUp\",Down:\"ArrowDown\",Menu:\"ContextMenu\",Scroll:\"ScrollLock\",Win:\"OS\"},xf={A:\"1\",B:\"2\",C:\"3\",D:\"4\",E:\"5\",F:\"6\",G:\"7\",H:\"8\",I:\"9\",J:\"*\",K:\"+\",M:\"-\",N:\".\",O:\"/\",\"`\":\"0\",\"\\x90\":\"NumLock\"},Cf={alt:e=>e.altKey,control:e=>e.ctrlKey,meta:e=>e.metaKey,shift:e=>e.shiftKey};let Tf=(()=>{class e extends of{constructor(e){super(e)}supports(t){return null!=e.parseEventName(t)}addEventListener(t,n,i){const s=e.parseEventName(n),r=e.eventCallback(s.fullKey,i,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>Fd().onAndCancel(t,s.domEventName,r))}static parseEventName(t){const n=t.toLowerCase().split(\".\"),i=n.shift();if(0===n.length||\"keydown\"!==i&&\"keyup\"!==i)return null;const s=e._normalizeKey(n.pop());let r=\"\";if(Sf.forEach(e=>{const t=n.indexOf(e);t>-1&&(n.splice(t,1),r+=e+\".\")}),r+=s,0!=n.length||0===s.length)return null;const o={};return o.domEventName=i,o.fullKey=r,o}static getEventFullKey(e){let t=\"\",n=function(e){let t=e.key;if(null==t){if(t=e.keyIdentifier,null==t)return\"Unidentified\";t.startsWith(\"U+\")&&(t=String.fromCharCode(parseInt(t.substring(2),16)),3===e.location&&xf.hasOwnProperty(t)&&(t=xf[t]))}return Lf[t]||t}(e);return n=n.toLowerCase(),\" \"===n?n=\"space\":\".\"===n&&(n=\"dot\"),Sf.forEach(i=>{i!=n&&(0,Cf[i])(e)&&(t+=i+\".\")}),t+=n,t}static eventCallback(t,n,i){return s=>{e.getEventFullKey(s)===t&&i.runGuarded(()=>n(s))}}static _normalizeKey(e){switch(e){case\"esc\":return\"escape\";default:return e}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),Df=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:function(){return Qe(Yf)},token:e,providedIn:\"root\"}),e})(),Yf=(()=>{class e extends Df{constructor(e){super(),this._doc=e}sanitize(e,t){if(null==t)return null;switch(e){case Gi.NONE:return t;case Gi.HTML:return vi(t,\"HTML\")?bi(t):Bi(this._doc,String(t));case Gi.STYLE:return vi(t,\"Style\")?bi(t):Zi(t);case Gi.SCRIPT:if(vi(t,\"Script\"))return bi(t);throw new Error(\"unsafe value used in a script context\");case Gi.URL:return wi(t),vi(t,\"URL\")?bi(t):Ti(String(t));case Gi.RESOURCE_URL:if(vi(t,\"ResourceURL\"))return bi(t);throw new Error(\"unsafe value used in a resource URL context (see http://g.co/ng/security#xss)\");default:throw new Error(`Unexpected SecurityContext ${e} (see http://g.co/ng/security#xss)`)}}bypassSecurityTrustHtml(e){return new pi(e)}bypassSecurityTrustStyle(e){return new fi(e)}bypassSecurityTrustScript(e){return new _i(e)}bypassSecurityTrustUrl(e){return new gi(e)}bypassSecurityTrustResourceUrl(e){return new yi(e)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({factory:function(){return e=Qe(We),new Yf(e.get(Nd));var e},token:e,providedIn:\"root\"}),e})();const Ef=Sd(Ad,\"browser\",[{provide:Bc,useValue:\"browser\"},{provide:$c,useValue:function(){Zp.makeCurrent(),nf.init()},multi:!0},{provide:Nd,useFactory:function(){return function(e){At=e}(document),document},deps:[]}]),Of=[[],{provide:eo,useValue:\"root\"},{provide:hi,useFactory:function(){return new hi},deps:[]},{provide:sf,useClass:gf,multi:!0,deps:[Nd,ld,Bc]},{provide:sf,useClass:Tf,multi:!0,deps:[Nd]},[],{provide:mf,useClass:mf,deps:[rf,lf,Vc]},{provide:Qa,useExisting:mf},{provide:af,useExisting:lf},{provide:lf,useClass:lf,deps:[Nd]},{provide:_d,useClass:_d,deps:[ld]},{provide:rf,useClass:rf,deps:[sf,ld]},[]];let If=(()=>{class e{constructor(e){if(e)throw new Error(\"BrowserModule has already been loaded. If you need access to common directives such as NgIf and NgFor from a lazy loaded module, import CommonModule instead.\")}static withServerTransition(t){return{ngModule:e,providers:[{provide:Vc,useValue:t.appId},{provide:ef,useExisting:Vc},tf]}}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)(Qe(e,12))},providers:Of,imports:[Mu,Hd]}),e})();function Pf(){return B(1)}function Af(...e){return Pf()(xu(...e))}function Rf(...e){const t=e[e.length-1];return C(t)?(e.pop(),n=>Af(e,n,t)):t=>Af(e,t)}\"undefined\"!=typeof window&&window;class Hf{}function jf(e,t){return{type:7,name:e,definitions:t,options:{}}}function Ff(e,t=null){return{type:4,styles:t,timings:e}}function Nf(e,t=null){return{type:3,steps:e,options:t}}function zf(e,t=null){return{type:2,steps:e,options:t}}function Vf(e){return{type:6,styles:e,offset:null}}function Wf(e,t,n){return{type:0,name:e,styles:t,options:n}}function Uf(e,t,n=null){return{type:1,expr:e,animation:t,options:n}}function $f(e=null){return{type:9,options:e}}function Bf(e,t,n=null){return{type:11,selector:e,animation:t,options:n}}function qf(e){Promise.resolve(null).then(e)}class Gf{constructor(e=0,t=0){this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this.parentPlayer=null,this.totalTime=e+t}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(e=>e()),this._onDoneFns=[])}onStart(e){this._onStartFns.push(e)}onDone(e){this._onDoneFns.push(e)}onDestroy(e){this._onDestroyFns.push(e)}hasStarted(){return this._started}init(){}play(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}triggerMicrotask(){qf(()=>this._onFinish())}_onStart(){this._onStartFns.forEach(e=>e()),this._onStartFns=[]}pause(){}restart(){}finish(){this._onFinish()}destroy(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach(e=>e()),this._onDestroyFns=[])}reset(){}setPosition(e){}getPosition(){return 0}triggerCallback(e){const t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach(e=>e()),t.length=0}}class Jf{constructor(e){this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=e;let t=0,n=0,i=0;const s=this.players.length;0==s?qf(()=>this._onFinish()):this.players.forEach(e=>{e.onDone(()=>{++t==s&&this._onFinish()}),e.onDestroy(()=>{++n==s&&this._onDestroy()}),e.onStart(()=>{++i==s&&this._onStart()})}),this.totalTime=this.players.reduce((e,t)=>Math.max(e,t.totalTime),0)}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(e=>e()),this._onDoneFns=[])}init(){this.players.forEach(e=>e.init())}onStart(e){this._onStartFns.push(e)}_onStart(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach(e=>e()),this._onStartFns=[])}onDone(e){this._onDoneFns.push(e)}onDestroy(e){this._onDestroyFns.push(e)}hasStarted(){return this._started}play(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach(e=>e.play())}pause(){this.players.forEach(e=>e.pause())}restart(){this.players.forEach(e=>e.restart())}finish(){this._onFinish(),this.players.forEach(e=>e.finish())}destroy(){this._onDestroy()}_onDestroy(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach(e=>e.destroy()),this._onDestroyFns.forEach(e=>e()),this._onDestroyFns=[])}reset(){this.players.forEach(e=>e.reset()),this._destroyed=!1,this._finished=!1,this._started=!1}setPosition(e){const t=e*this.totalTime;this.players.forEach(e=>{const n=e.totalTime?Math.min(1,t/e.totalTime):1;e.setPosition(n)})}getPosition(){let e=0;return this.players.forEach(t=>{const n=t.getPosition();e=Math.min(n,e)}),e}beforeDestroy(){this.players.forEach(e=>{e.beforeDestroy&&e.beforeDestroy()})}triggerCallback(e){const t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach(e=>e()),t.length=0}}function Kf(){return\"undefined\"!=typeof process&&\"[object process]\"==={}.toString.call(process)}function Zf(e){switch(e.length){case 0:return new Gf;case 1:return e[0];default:return new Jf(e)}}function Qf(e,t,n,i,s={},r={}){const o=[],a=[];let l=-1,c=null;if(i.forEach(e=>{const n=e.offset,i=n==l,d=i&&c||{};Object.keys(e).forEach(n=>{let i=n,a=e[n];if(\"offset\"!==n)switch(i=t.normalizePropertyName(i,o),a){case\"!\":a=s[n];break;case\"*\":a=r[n];break;default:a=t.normalizeStyleValue(n,i,a,o)}d[i]=a}),i||a.push(d),c=d,l=n}),o.length){const e=\"\\n - \";throw new Error(`Unable to animate due to the following errors:${e}${o.join(e)}`)}return a}function Xf(e,t,n,i){switch(t){case\"start\":e.onStart(()=>i(n&&e_(n,\"start\",e)));break;case\"done\":e.onDone(()=>i(n&&e_(n,\"done\",e)));break;case\"destroy\":e.onDestroy(()=>i(n&&e_(n,\"destroy\",e)))}}function e_(e,t,n){const i=n.totalTime,s=t_(e.element,e.triggerName,e.fromState,e.toState,t||e.phaseName,null==i?e.totalTime:i,!!n.disabled),r=e._data;return null!=r&&(s._data=r),s}function t_(e,t,n,i,s=\"\",r=0,o){return{element:e,triggerName:t,fromState:n,toState:i,phaseName:s,totalTime:r,disabled:!!o}}function n_(e,t,n){let i;return e instanceof Map?(i=e.get(t),i||e.set(t,i=n)):(i=e[t],i||(i=e[t]=n)),i}function i_(e){const t=e.indexOf(\":\");return[e.substring(1,t),e.substr(t+1)]}let s_=(e,t)=>!1,r_=(e,t)=>!1,o_=(e,t,n)=>[];const a_=Kf();(a_||\"undefined\"!=typeof Element)&&(s_=(e,t)=>e.contains(t),r_=(()=>{if(a_||Element.prototype.matches)return(e,t)=>e.matches(t);{const e=Element.prototype,t=e.matchesSelector||e.mozMatchesSelector||e.msMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;return t?(e,n)=>t.apply(e,[n]):r_}})(),o_=(e,t,n)=>{let i=[];if(n)i.push(...e.querySelectorAll(t));else{const n=e.querySelector(t);n&&i.push(n)}return i});let l_=null,c_=!1;function d_(e){l_||(l_=(\"undefined\"!=typeof document?document.body:null)||{},c_=!!l_.style&&\"WebkitAppearance\"in l_.style);let t=!0;return l_.style&&!function(e){return\"ebkit\"==e.substring(1,6)}(e)&&(t=e in l_.style,!t&&c_)&&(t=\"Webkit\"+e.charAt(0).toUpperCase()+e.substr(1)in l_.style),t}const u_=r_,h_=s_,m_=o_;function p_(e){const t={};return Object.keys(e).forEach(n=>{const i=n.replace(/([a-z])([A-Z])/g,\"$1-$2\");t[i]=e[n]}),t}let f_=(()=>{class e{validateStyleProperty(e){return d_(e)}matchesElement(e,t){return u_(e,t)}containsElement(e,t){return h_(e,t)}query(e,t,n){return m_(e,t,n)}computeStyle(e,t,n){return n||\"\"}animate(e,t,n,i,s,r=[],o){return new Gf(n,i)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),__=(()=>{class e{}return e.NOOP=new f_,e})();function g_(e){if(\"number\"==typeof e)return e;const t=e.match(/^(-?[\\.\\d]+)(m?s)/);return!t||t.length<2?0:y_(parseFloat(t[1]),t[2])}function y_(e,t){switch(t){case\"s\":return 1e3*e;default:return e}}function b_(e,t,n){return e.hasOwnProperty(\"duration\")?e:function(e,t,n){let i,s=0,r=\"\";if(\"string\"==typeof e){const n=e.match(/^(-?[\\.\\d]+)(m?s)(?:\\s+(-?[\\.\\d]+)(m?s))?(?:\\s+([-a-z]+(?:\\(.+?\\))?))?$/i);if(null===n)return t.push(`The provided timing value \"${e}\" is invalid.`),{duration:0,delay:0,easing:\"\"};i=y_(parseFloat(n[1]),n[2]);const o=n[3];null!=o&&(s=y_(parseFloat(o),n[4]));const a=n[5];a&&(r=a)}else i=e;if(!n){let n=!1,r=t.length;i<0&&(t.push(\"Duration values below 0 are not allowed for this animation step.\"),n=!0),s<0&&(t.push(\"Delay values below 0 are not allowed for this animation step.\"),n=!0),n&&t.splice(r,0,`The provided timing value \"${e}\" is invalid.`)}return{duration:i,delay:s,easing:r}}(e,t,n)}function v_(e,t={}){return Object.keys(e).forEach(n=>{t[n]=e[n]}),t}function w_(e,t,n={}){if(t)for(let i in e)n[i]=e[i];else v_(e,n);return n}function M_(e,t,n){return n?t+\":\"+n+\";\":\"\"}function k_(e){let t=\"\";for(let n=0;n{const s=O_(i);n&&!n.hasOwnProperty(i)&&(n[i]=e.style[s]),e.style[s]=t[i]}),Kf()&&k_(e))}function L_(e,t){e.style&&(Object.keys(t).forEach(t=>{const n=O_(t);e.style[n]=\"\"}),Kf()&&k_(e))}function x_(e){return Array.isArray(e)?1==e.length?e[0]:zf(e):e}const C_=new RegExp(\"{{\\\\s*(.+?)\\\\s*}}\",\"g\");function T_(e){let t=[];if(\"string\"==typeof e){let n;for(;n=C_.exec(e);)t.push(n[1]);C_.lastIndex=0}return t}function D_(e,t,n){const i=e.toString(),s=i.replace(C_,(e,i)=>{let s=t[i];return t.hasOwnProperty(i)||(n.push(`Please provide a value for the animation param ${i}`),s=\"\"),s.toString()});return s==i?e:s}function Y_(e){const t=[];let n=e.next();for(;!n.done;)t.push(n.value),n=e.next();return t}const E_=/-+([a-z0-9])/g;function O_(e){return e.replace(E_,(...e)=>e[1].toUpperCase())}function I_(e,t){return 0===e||0===t}function P_(e,t,n){const i=Object.keys(n);if(i.length&&t.length){let r=t[0],o=[];if(i.forEach(e=>{r.hasOwnProperty(e)||o.push(e),r[e]=n[e]}),o.length)for(var s=1;sfunction(e,t,n){if(\":\"==e[0]){const i=function(e,t){switch(e){case\":enter\":return\"void => *\";case\":leave\":return\"* => void\";case\":increment\":return(e,t)=>parseFloat(t)>parseFloat(e);case\":decrement\":return(e,t)=>parseFloat(t) *\"}}(e,n);if(\"function\"==typeof i)return void t.push(i);e=i}const i=e.match(/^(\\*|[-\\w]+)\\s*()\\s*(\\*|[-\\w]+)$/);if(null==i||i.length<4)return n.push(`The provided transition expression \"${e}\" is not supported`),t;const s=i[1],r=i[2],o=i[3];t.push(N_(s,o)),\"<\"!=r[0]||\"*\"==s&&\"*\"==o||t.push(N_(o,s))}(e,n,t)):n.push(e),n}const j_=new Set([\"true\",\"1\"]),F_=new Set([\"false\",\"0\"]);function N_(e,t){const n=j_.has(e)||F_.has(e),i=j_.has(t)||F_.has(t);return(s,r)=>{let o=\"*\"==e||e==s,a=\"*\"==t||t==r;return!o&&n&&\"boolean\"==typeof s&&(o=s?j_.has(e):F_.has(e)),!a&&i&&\"boolean\"==typeof r&&(a=r?j_.has(t):F_.has(t)),o&&a}}const z_=new RegExp(\"s*:selfs*,?\",\"g\");function V_(e,t,n){return new W_(e).build(t,n)}class W_{constructor(e){this._driver=e}build(e,t){const n=new U_(t);return this._resetContextStyleTimingState(n),A_(this,x_(e),n)}_resetContextStyleTimingState(e){e.currentQuerySelector=\"\",e.collectedStyles={},e.collectedStyles[\"\"]={},e.currentTime=0}visitTrigger(e,t){let n=t.queryCount=0,i=t.depCount=0;const s=[],r=[];return\"@\"==e.name.charAt(0)&&t.errors.push(\"animation triggers cannot be prefixed with an `@` sign (e.g. trigger('@foo', [...]))\"),e.definitions.forEach(e=>{if(this._resetContextStyleTimingState(t),0==e.type){const n=e,i=n.name;i.toString().split(/\\s*,\\s*/).forEach(e=>{n.name=e,s.push(this.visitState(n,t))}),n.name=i}else if(1==e.type){const s=this.visitTransition(e,t);n+=s.queryCount,i+=s.depCount,r.push(s)}else t.errors.push(\"only state() and transition() definitions can sit inside of a trigger()\")}),{type:7,name:e.name,states:s,transitions:r,queryCount:n,depCount:i,options:null}}visitState(e,t){const n=this.visitStyle(e.styles,t),i=e.options&&e.options.params||null;if(n.containsDynamicStyles){const s=new Set,r=i||{};if(n.styles.forEach(e=>{if($_(e)){const t=e;Object.keys(t).forEach(e=>{T_(t[e]).forEach(e=>{r.hasOwnProperty(e)||s.add(e)})})}}),s.size){const n=Y_(s.values());t.errors.push(`state(\"${e.name}\", ...) must define default values for all the following style substitutions: ${n.join(\", \")}`)}}return{type:0,name:e.name,style:n,options:i?{params:i}:null}}visitTransition(e,t){t.queryCount=0,t.depCount=0;const n=A_(this,x_(e.animation),t);return{type:1,matchers:H_(e.expr,t.errors),animation:n,queryCount:t.queryCount,depCount:t.depCount,options:B_(e.options)}}visitSequence(e,t){return{type:2,steps:e.steps.map(e=>A_(this,e,t)),options:B_(e.options)}}visitGroup(e,t){const n=t.currentTime;let i=0;const s=e.steps.map(e=>{t.currentTime=n;const s=A_(this,e,t);return i=Math.max(i,t.currentTime),s});return t.currentTime=i,{type:3,steps:s,options:B_(e.options)}}visitAnimate(e,t){const n=function(e,t){let n=null;if(e.hasOwnProperty(\"duration\"))n=e;else if(\"number\"==typeof e)return q_(b_(e,t).duration,0,\"\");const i=e;if(i.split(/\\s+/).some(e=>\"{\"==e.charAt(0)&&\"{\"==e.charAt(1))){const e=q_(0,0,\"\");return e.dynamic=!0,e.strValue=i,e}return n=n||b_(i,t),q_(n.duration,n.delay,n.easing)}(e.timings,t.errors);let i;t.currentAnimateTimings=n;let s=e.styles?e.styles:Vf({});if(5==s.type)i=this.visitKeyframes(s,t);else{let s=e.styles,r=!1;if(!s){r=!0;const e={};n.easing&&(e.easing=n.easing),s=Vf(e)}t.currentTime+=n.duration+n.delay;const o=this.visitStyle(s,t);o.isEmptyStep=r,i=o}return t.currentAnimateTimings=null,{type:4,timings:n,style:i,options:null}}visitStyle(e,t){const n=this._makeStyleAst(e,t);return this._validateStyleAst(n,t),n}_makeStyleAst(e,t){const n=[];Array.isArray(e.styles)?e.styles.forEach(e=>{\"string\"==typeof e?\"*\"==e?n.push(e):t.errors.push(`The provided style string value ${e} is not allowed.`):n.push(e)}):n.push(e.styles);let i=!1,s=null;return n.forEach(e=>{if($_(e)){const t=e,n=t.easing;if(n&&(s=n,delete t.easing),!i)for(let e in t)if(t[e].toString().indexOf(\"{{\")>=0){i=!0;break}}}),{type:6,styles:n,easing:s,offset:e.offset,containsDynamicStyles:i,options:null}}_validateStyleAst(e,t){const n=t.currentAnimateTimings;let i=t.currentTime,s=t.currentTime;n&&s>0&&(s-=n.duration+n.delay),e.styles.forEach(e=>{\"string\"!=typeof e&&Object.keys(e).forEach(n=>{if(!this._driver.validateStyleProperty(n))return void t.errors.push(`The provided animation property \"${n}\" is not a supported CSS property for animations`);const r=t.collectedStyles[t.currentQuerySelector],o=r[n];let a=!0;o&&(s!=i&&s>=o.startTime&&i<=o.endTime&&(t.errors.push(`The CSS property \"${n}\" that exists between the times of \"${o.startTime}ms\" and \"${o.endTime}ms\" is also being animated in a parallel animation between the times of \"${s}ms\" and \"${i}ms\"`),a=!1),s=o.startTime),a&&(r[n]={startTime:s,endTime:i}),t.options&&function(e,t,n){const i=t.params||{},s=T_(e);s.length&&s.forEach(e=>{i.hasOwnProperty(e)||n.push(`Unable to resolve the local animation param ${e} in the given list of values`)})}(e[n],t.options,t.errors)})})}visitKeyframes(e,t){const n={type:5,styles:[],options:null};if(!t.currentAnimateTimings)return t.errors.push(\"keyframes() must be placed inside of a call to animate()\"),n;let i=0;const s=[];let r=!1,o=!1,a=0;const l=e.steps.map(e=>{const n=this._makeStyleAst(e,t);let l=null!=n.offset?n.offset:function(e){if(\"string\"==typeof e)return null;let t=null;if(Array.isArray(e))e.forEach(e=>{if($_(e)&&e.hasOwnProperty(\"offset\")){const n=e;t=parseFloat(n.offset),delete n.offset}});else if($_(e)&&e.hasOwnProperty(\"offset\")){const n=e;t=parseFloat(n.offset),delete n.offset}return t}(n.styles),c=0;return null!=l&&(i++,c=n.offset=l),o=o||c<0||c>1,r=r||c0&&i{const r=d>0?i==u?1:d*i:s[i],o=r*p;t.currentTime=h+m.delay+o,m.duration=o,this._validateStyleAst(e,t),e.offset=r,n.styles.push(e)}),n}visitReference(e,t){return{type:8,animation:A_(this,x_(e.animation),t),options:B_(e.options)}}visitAnimateChild(e,t){return t.depCount++,{type:9,options:B_(e.options)}}visitAnimateRef(e,t){return{type:10,animation:this.visitReference(e.animation,t),options:B_(e.options)}}visitQuery(e,t){const n=t.currentQuerySelector,i=e.options||{};t.queryCount++,t.currentQuery=e;const[s,r]=function(e){const t=!!e.split(/\\s*,\\s*/).find(e=>\":self\"==e);return t&&(e=e.replace(z_,\"\")),[e=e.replace(/@\\*/g,\".ng-trigger\").replace(/@\\w+/g,e=>\".ng-trigger-\"+e.substr(1)).replace(/:animating/g,\".ng-animating\"),t]}(e.selector);t.currentQuerySelector=n.length?n+\" \"+s:s,n_(t.collectedStyles,t.currentQuerySelector,{});const o=A_(this,x_(e.animation),t);return t.currentQuery=null,t.currentQuerySelector=n,{type:11,selector:s,limit:i.limit||0,optional:!!i.optional,includeSelf:r,animation:o,originalSelector:e.selector,options:B_(e.options)}}visitStagger(e,t){t.currentQuery||t.errors.push(\"stagger() can only be used inside of query()\");const n=\"full\"===e.timings?{duration:0,delay:0,easing:\"full\"}:b_(e.timings,t.errors,!0);return{type:12,animation:A_(this,x_(e.animation),t),timings:n,options:null}}}class U_{constructor(e){this.errors=e,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles={},this.options=null}}function $_(e){return!Array.isArray(e)&&\"object\"==typeof e}function B_(e){var t;return e?(e=v_(e)).params&&(e.params=(t=e.params)?v_(t):null):e={},e}function q_(e,t,n){return{duration:e,delay:t,easing:n}}function G_(e,t,n,i,s,r,o=null,a=!1){return{type:1,element:e,keyframes:t,preStyleProps:n,postStyleProps:i,duration:s,delay:r,totalTime:s+r,easing:o,subTimeline:a}}class J_{constructor(){this._map=new Map}consume(e){let t=this._map.get(e);return t?this._map.delete(e):t=[],t}append(e,t){let n=this._map.get(e);n||this._map.set(e,n=[]),n.push(...t)}has(e){return this._map.has(e)}clear(){this._map.clear()}}const K_=new RegExp(\":enter\",\"g\"),Z_=new RegExp(\":leave\",\"g\");function Q_(e,t,n,i,s,r={},o={},a,l,c=[]){return(new X_).buildKeyframes(e,t,n,i,s,r,o,a,l,c)}class X_{buildKeyframes(e,t,n,i,s,r,o,a,l,c=[]){l=l||new J_;const d=new tg(e,t,l,i,s,c,[]);d.options=a,d.currentTimeline.setStyles([r],null,d.errors,a),A_(this,n,d);const u=d.timelines.filter(e=>e.containsAnimation());if(u.length&&Object.keys(o).length){const e=u[u.length-1];e.allowOnlyTimelineStyles()||e.setStyles([o],null,d.errors,a)}return u.length?u.map(e=>e.buildKeyframes()):[G_(t,[],[],[],0,0,\"\",!1)]}visitTrigger(e,t){}visitState(e,t){}visitTransition(e,t){}visitAnimateChild(e,t){const n=t.subInstructions.consume(t.element);if(n){const i=t.createSubContext(e.options),s=t.currentTimeline.currentTime,r=this._visitSubInstructions(n,i,i.options);s!=r&&t.transformIntoNewTimeline(r)}t.previousNode=e}visitAnimateRef(e,t){const n=t.createSubContext(e.options);n.transformIntoNewTimeline(),this.visitReference(e.animation,n),t.transformIntoNewTimeline(n.currentTimeline.currentTime),t.previousNode=e}_visitSubInstructions(e,t,n){let i=t.currentTimeline.currentTime;const s=null!=n.duration?g_(n.duration):null,r=null!=n.delay?g_(n.delay):null;return 0!==s&&e.forEach(e=>{const n=t.appendInstructionToTimeline(e,s,r);i=Math.max(i,n.duration+n.delay)}),i}visitReference(e,t){t.updateOptions(e.options,!0),A_(this,e.animation,t),t.previousNode=e}visitSequence(e,t){const n=t.subContextCount;let i=t;const s=e.options;if(s&&(s.params||s.delay)&&(i=t.createSubContext(s),i.transformIntoNewTimeline(),null!=s.delay)){6==i.previousNode.type&&(i.currentTimeline.snapshotCurrentStyles(),i.previousNode=eg);const e=g_(s.delay);i.delayNextStep(e)}e.steps.length&&(e.steps.forEach(e=>A_(this,e,i)),i.currentTimeline.applyStylesToKeyframe(),i.subContextCount>n&&i.transformIntoNewTimeline()),t.previousNode=e}visitGroup(e,t){const n=[];let i=t.currentTimeline.currentTime;const s=e.options&&e.options.delay?g_(e.options.delay):0;e.steps.forEach(r=>{const o=t.createSubContext(e.options);s&&o.delayNextStep(s),A_(this,r,o),i=Math.max(i,o.currentTimeline.currentTime),n.push(o.currentTimeline)}),n.forEach(e=>t.currentTimeline.mergeTimelineCollectedStyles(e)),t.transformIntoNewTimeline(i),t.previousNode=e}_visitTiming(e,t){if(e.dynamic){const n=e.strValue;return b_(t.params?D_(n,t.params,t.errors):n,t.errors)}return{duration:e.duration,delay:e.delay,easing:e.easing}}visitAnimate(e,t){const n=t.currentAnimateTimings=this._visitTiming(e.timings,t),i=t.currentTimeline;n.delay&&(t.incrementTime(n.delay),i.snapshotCurrentStyles());const s=e.style;5==s.type?this.visitKeyframes(s,t):(t.incrementTime(n.duration),this.visitStyle(s,t),i.applyStylesToKeyframe()),t.currentAnimateTimings=null,t.previousNode=e}visitStyle(e,t){const n=t.currentTimeline,i=t.currentAnimateTimings;!i&&n.getCurrentStyleProperties().length&&n.forwardFrame();const s=i&&i.easing||e.easing;e.isEmptyStep?n.applyEmptyStep(s):n.setStyles(e.styles,s,t.errors,t.options),t.previousNode=e}visitKeyframes(e,t){const n=t.currentAnimateTimings,i=t.currentTimeline.duration,s=n.duration,r=t.createSubContext().currentTimeline;r.easing=n.easing,e.styles.forEach(e=>{r.forwardTime((e.offset||0)*s),r.setStyles(e.styles,e.easing,t.errors,t.options),r.applyStylesToKeyframe()}),t.currentTimeline.mergeTimelineCollectedStyles(r),t.transformIntoNewTimeline(i+s),t.previousNode=e}visitQuery(e,t){const n=t.currentTimeline.currentTime,i=e.options||{},s=i.delay?g_(i.delay):0;s&&(6===t.previousNode.type||0==n&&t.currentTimeline.getCurrentStyleProperties().length)&&(t.currentTimeline.snapshotCurrentStyles(),t.previousNode=eg);let r=n;const o=t.invokeQuery(e.selector,e.originalSelector,e.limit,e.includeSelf,!!i.optional,t.errors);t.currentQueryTotal=o.length;let a=null;o.forEach((n,i)=>{t.currentQueryIndex=i;const o=t.createSubContext(e.options,n);s&&o.delayNextStep(s),n===t.element&&(a=o.currentTimeline),A_(this,e.animation,o),o.currentTimeline.applyStylesToKeyframe(),r=Math.max(r,o.currentTimeline.currentTime)}),t.currentQueryIndex=0,t.currentQueryTotal=0,t.transformIntoNewTimeline(r),a&&(t.currentTimeline.mergeTimelineCollectedStyles(a),t.currentTimeline.snapshotCurrentStyles()),t.previousNode=e}visitStagger(e,t){const n=t.parentContext,i=t.currentTimeline,s=e.timings,r=Math.abs(s.duration),o=r*(t.currentQueryTotal-1);let a=r*t.currentQueryIndex;switch(s.duration<0?\"reverse\":s.easing){case\"reverse\":a=o-a;break;case\"full\":a=n.currentStaggerTime}const l=t.currentTimeline;a&&l.delayNextStep(a);const c=l.currentTime;A_(this,e.animation,t),t.previousNode=e,n.currentStaggerTime=i.currentTime-c+(i.startTime-n.currentTimeline.startTime)}}const eg={};class tg{constructor(e,t,n,i,s,r,o,a){this._driver=e,this.element=t,this.subInstructions=n,this._enterClassName=i,this._leaveClassName=s,this.errors=r,this.timelines=o,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=eg,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=a||new ng(this._driver,t,0),o.push(this.currentTimeline)}get params(){return this.options.params}updateOptions(e,t){if(!e)return;const n=e;let i=this.options;null!=n.duration&&(i.duration=g_(n.duration)),null!=n.delay&&(i.delay=g_(n.delay));const s=n.params;if(s){let e=i.params;e||(e=this.options.params={}),Object.keys(s).forEach(n=>{t&&e.hasOwnProperty(n)||(e[n]=D_(s[n],e,this.errors))})}}_copyOptions(){const e={};if(this.options){const t=this.options.params;if(t){const n=e.params={};Object.keys(t).forEach(e=>{n[e]=t[e]})}}return e}createSubContext(e=null,t,n){const i=t||this.element,s=new tg(this._driver,i,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(i,n||0));return s.previousNode=this.previousNode,s.currentAnimateTimings=this.currentAnimateTimings,s.options=this._copyOptions(),s.updateOptions(e),s.currentQueryIndex=this.currentQueryIndex,s.currentQueryTotal=this.currentQueryTotal,s.parentContext=this,this.subContextCount++,s}transformIntoNewTimeline(e){return this.previousNode=eg,this.currentTimeline=this.currentTimeline.fork(this.element,e),this.timelines.push(this.currentTimeline),this.currentTimeline}appendInstructionToTimeline(e,t,n){const i={duration:null!=t?t:e.duration,delay:this.currentTimeline.currentTime+(null!=n?n:0)+e.delay,easing:\"\"},s=new ig(this._driver,e.element,e.keyframes,e.preStyleProps,e.postStyleProps,i,e.stretchStartingKeyframe);return this.timelines.push(s),i}incrementTime(e){this.currentTimeline.forwardTime(this.currentTimeline.duration+e)}delayNextStep(e){e>0&&this.currentTimeline.delayNextStep(e)}invokeQuery(e,t,n,i,s,r){let o=[];if(i&&o.push(this.element),e.length>0){e=(e=e.replace(K_,\".\"+this._enterClassName)).replace(Z_,\".\"+this._leaveClassName);let t=this._driver.query(this.element,e,1!=n);0!==n&&(t=n<0?t.slice(t.length+n,t.length):t.slice(0,n)),o.push(...t)}return s||0!=o.length||r.push(`\\`query(\"${t}\")\\` returned zero elements. (Use \\`query(\"${t}\", { optional: true })\\` if you wish to allow this.)`),o}}class ng{constructor(e,t,n,i){this._driver=e,this.element=t,this.startTime=n,this._elementTimelineStylesLookup=i,this.duration=0,this._previousKeyframe={},this._currentKeyframe={},this._keyframes=new Map,this._styleSummary={},this._pendingStyles={},this._backFill={},this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._localTimelineStyles=Object.create(this._backFill,{}),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(t),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(t,this._localTimelineStyles)),this._loadKeyframe()}containsAnimation(){switch(this._keyframes.size){case 0:return!1;case 1:return this.getCurrentStyleProperties().length>0;default:return!0}}getCurrentStyleProperties(){return Object.keys(this._currentKeyframe)}get currentTime(){return this.startTime+this.duration}delayNextStep(e){const t=1==this._keyframes.size&&Object.keys(this._pendingStyles).length;this.duration||t?(this.forwardTime(this.currentTime+e),t&&this.snapshotCurrentStyles()):this.startTime+=e}fork(e,t){return this.applyStylesToKeyframe(),new ng(this._driver,e,t||this.currentTime,this._elementTimelineStylesLookup)}_loadKeyframe(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=Object.create(this._backFill,{}),this._keyframes.set(this.duration,this._currentKeyframe))}forwardFrame(){this.duration+=1,this._loadKeyframe()}forwardTime(e){this.applyStylesToKeyframe(),this.duration=e,this._loadKeyframe()}_updateStyle(e,t){this._localTimelineStyles[e]=t,this._globalTimelineStyles[e]=t,this._styleSummary[e]={time:this.currentTime,value:t}}allowOnlyTimelineStyles(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}applyEmptyStep(e){e&&(this._previousKeyframe.easing=e),Object.keys(this._globalTimelineStyles).forEach(e=>{this._backFill[e]=this._globalTimelineStyles[e]||\"*\",this._currentKeyframe[e]=\"*\"}),this._currentEmptyStepKeyframe=this._currentKeyframe}setStyles(e,t,n,i){t&&(this._previousKeyframe.easing=t);const s=i&&i.params||{},r=function(e,t){const n={};let i;return e.forEach(e=>{\"*\"===e?(i=i||Object.keys(t),i.forEach(e=>{n[e]=\"*\"})):w_(e,!1,n)}),n}(e,this._globalTimelineStyles);Object.keys(r).forEach(e=>{const t=D_(r[e],s,n);this._pendingStyles[e]=t,this._localTimelineStyles.hasOwnProperty(e)||(this._backFill[e]=this._globalTimelineStyles.hasOwnProperty(e)?this._globalTimelineStyles[e]:\"*\"),this._updateStyle(e,t)})}applyStylesToKeyframe(){const e=this._pendingStyles,t=Object.keys(e);0!=t.length&&(this._pendingStyles={},t.forEach(t=>{this._currentKeyframe[t]=e[t]}),Object.keys(this._localTimelineStyles).forEach(e=>{this._currentKeyframe.hasOwnProperty(e)||(this._currentKeyframe[e]=this._localTimelineStyles[e])}))}snapshotCurrentStyles(){Object.keys(this._localTimelineStyles).forEach(e=>{const t=this._localTimelineStyles[e];this._pendingStyles[e]=t,this._updateStyle(e,t)})}getFinalKeyframe(){return this._keyframes.get(this.duration)}get properties(){const e=[];for(let t in this._currentKeyframe)e.push(t);return e}mergeTimelineCollectedStyles(e){Object.keys(e._styleSummary).forEach(t=>{const n=this._styleSummary[t],i=e._styleSummary[t];(!n||i.time>n.time)&&this._updateStyle(t,i.value)})}buildKeyframes(){this.applyStylesToKeyframe();const e=new Set,t=new Set,n=1===this._keyframes.size&&0===this.duration;let i=[];this._keyframes.forEach((s,r)=>{const o=w_(s,!0);Object.keys(o).forEach(n=>{const i=o[n];\"!\"==i?e.add(n):\"*\"==i&&t.add(n)}),n||(o.offset=r/this.duration),i.push(o)});const s=e.size?Y_(e.values()):[],r=t.size?Y_(t.values()):[];if(n){const e=i[0],t=v_(e);e.offset=0,t.offset=1,i=[e,t]}return G_(this.element,i,s,r,this.duration,this.startTime,this.easing,!1)}}class ig extends ng{constructor(e,t,n,i,s,r,o=!1){super(e,t,r.delay),this.element=t,this.keyframes=n,this.preStyleProps=i,this.postStyleProps=s,this._stretchStartingKeyframe=o,this.timings={duration:r.duration,delay:r.delay,easing:r.easing}}containsAnimation(){return this.keyframes.length>1}buildKeyframes(){let e=this.keyframes,{delay:t,duration:n,easing:i}=this.timings;if(this._stretchStartingKeyframe&&t){const s=[],r=n+t,o=t/r,a=w_(e[0],!1);a.offset=0,s.push(a);const l=w_(e[0],!1);l.offset=sg(o),s.push(l);const c=e.length-1;for(let i=1;i<=c;i++){let o=w_(e[i],!1);o.offset=sg((t+o.offset*n)/r),s.push(o)}n=r,t=0,i=\"\",e=s}return G_(this.element,e,this.preStyleProps,this.postStyleProps,n,t,i,!0)}}function sg(e,t=3){const n=Math.pow(10,t-1);return Math.round(e*n)/n}class rg{}class og extends rg{normalizePropertyName(e,t){return O_(e)}normalizeStyleValue(e,t,n,i){let s=\"\";const r=n.toString().trim();if(ag[t]&&0!==n&&\"0\"!==n)if(\"number\"==typeof n)s=\"px\";else{const t=n.match(/^[+-]?[\\d\\.]+([a-z]*)$/);t&&0==t[1].length&&i.push(`Please provide a CSS unit value for ${e}:${n}`)}return r+s}}const ag=(()=>function(e){const t={};return e.forEach(e=>t[e]=!0),t}(\"width,height,minWidth,minHeight,maxWidth,maxHeight,left,top,bottom,right,fontSize,outlineWidth,outlineOffset,paddingTop,paddingLeft,paddingBottom,paddingRight,marginTop,marginLeft,marginBottom,marginRight,borderRadius,borderWidth,borderTopWidth,borderLeftWidth,borderRightWidth,borderBottomWidth,textIndent,perspective\".split(\",\")))();function lg(e,t,n,i,s,r,o,a,l,c,d,u,h){return{type:0,element:e,triggerName:t,isRemovalTransition:s,fromState:n,fromStyles:r,toState:i,toStyles:o,timelines:a,queriedElements:l,preStyleProps:c,postStyleProps:d,totalTime:u,errors:h}}const cg={};class dg{constructor(e,t,n){this._triggerName=e,this.ast=t,this._stateStyles=n}match(e,t,n,i){return function(e,t,n,i,s){return e.some(e=>e(t,n,i,s))}(this.ast.matchers,e,t,n,i)}buildStyles(e,t,n){const i=this._stateStyles[\"*\"],s=this._stateStyles[e],r=i?i.buildStyles(t,n):{};return s?s.buildStyles(t,n):r}build(e,t,n,i,s,r,o,a,l,c){const d=[],u=this.ast.options&&this.ast.options.params||cg,h=this.buildStyles(n,o&&o.params||cg,d),m=a&&a.params||cg,p=this.buildStyles(i,m,d),f=new Set,_=new Map,g=new Map,y=\"void\"===i,b={params:Object.assign(Object.assign({},u),m)},v=c?[]:Q_(e,t,this.ast.animation,s,r,h,p,b,l,d);let w=0;if(v.forEach(e=>{w=Math.max(e.duration+e.delay,w)}),d.length)return lg(t,this._triggerName,n,i,y,h,p,[],[],_,g,w,d);v.forEach(e=>{const n=e.element,i=n_(_,n,{});e.preStyleProps.forEach(e=>i[e]=!0);const s=n_(g,n,{});e.postStyleProps.forEach(e=>s[e]=!0),n!==t&&f.add(n)});const M=Y_(f.values());return lg(t,this._triggerName,n,i,y,h,p,v,M,_,g,w)}}class ug{constructor(e,t){this.styles=e,this.defaultParams=t}buildStyles(e,t){const n={},i=v_(this.defaultParams);return Object.keys(e).forEach(t=>{const n=e[t];null!=n&&(i[t]=n)}),this.styles.styles.forEach(e=>{if(\"string\"!=typeof e){const s=e;Object.keys(s).forEach(e=>{let r=s[e];r.length>1&&(r=D_(r,i,t)),n[e]=r})}}),n}}class hg{constructor(e,t){this.name=e,this.ast=t,this.transitionFactories=[],this.states={},t.states.forEach(e=>{this.states[e.name]=new ug(e.style,e.options&&e.options.params||{})}),mg(this.states,\"true\",\"1\"),mg(this.states,\"false\",\"0\"),t.transitions.forEach(t=>{this.transitionFactories.push(new dg(e,t,this.states))}),this.fallbackTransition=new dg(e,{type:1,animation:{type:2,steps:[],options:null},matchers:[(e,t)=>!0],options:null,queryCount:0,depCount:0},this.states)}get containsQueries(){return this.ast.queryCount>0}matchTransition(e,t,n,i){return this.transitionFactories.find(s=>s.match(e,t,n,i))||null}matchStyles(e,t,n){return this.fallbackTransition.buildStyles(e,t,n)}}function mg(e,t,n){e.hasOwnProperty(t)?e.hasOwnProperty(n)||(e[n]=e[t]):e.hasOwnProperty(n)&&(e[t]=e[n])}const pg=new J_;class fg{constructor(e,t,n){this.bodyNode=e,this._driver=t,this._normalizer=n,this._animations={},this._playersById={},this.players=[]}register(e,t){const n=[],i=V_(this._driver,t,n);if(n.length)throw new Error(`Unable to build the animation due to the following errors: ${n.join(\"\\n\")}`);this._animations[e]=i}_buildPlayer(e,t,n){const i=e.element,s=Qf(0,this._normalizer,0,e.keyframes,t,n);return this._driver.animate(i,s,e.duration,e.delay,e.easing,[],!0)}create(e,t,n={}){const i=[],s=this._animations[e];let r;const o=new Map;if(s?(r=Q_(this._driver,t,s,\"ng-enter\",\"ng-leave\",{},{},n,pg,i),r.forEach(e=>{const t=n_(o,e.element,{});e.postStyleProps.forEach(e=>t[e]=null)})):(i.push(\"The requested animation doesn't exist or has already been destroyed\"),r=[]),i.length)throw new Error(`Unable to create the animation due to the following errors: ${i.join(\"\\n\")}`);o.forEach((e,t)=>{Object.keys(e).forEach(n=>{e[n]=this._driver.computeStyle(t,n,\"*\")})});const a=Zf(r.map(e=>{const t=o.get(e.element);return this._buildPlayer(e,{},t)}));return this._playersById[e]=a,a.onDestroy(()=>this.destroy(e)),this.players.push(a),a}destroy(e){const t=this._getPlayer(e);t.destroy(),delete this._playersById[e];const n=this.players.indexOf(t);n>=0&&this.players.splice(n,1)}_getPlayer(e){const t=this._playersById[e];if(!t)throw new Error(`Unable to find the timeline player referenced by ${e}`);return t}listen(e,t,n,i){const s=t_(t,\"\",\"\",\"\");return Xf(this._getPlayer(e),n,s,i),()=>{}}command(e,t,n,i){if(\"register\"==n)return void this.register(e,i[0]);if(\"create\"==n)return void this.create(e,t,i[0]||{});const s=this._getPlayer(e);switch(n){case\"play\":s.play();break;case\"pause\":s.pause();break;case\"reset\":s.reset();break;case\"restart\":s.restart();break;case\"finish\":s.finish();break;case\"init\":s.init();break;case\"setPosition\":s.setPosition(parseFloat(i[0]));break;case\"destroy\":this.destroy(e)}}}const _g=[],gg={namespaceId:\"\",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},yg={namespaceId:\"\",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0};class bg{constructor(e,t=\"\"){this.namespaceId=t;const n=e&&e.hasOwnProperty(\"value\");if(this.value=null!=(i=n?e.value:e)?i:null,n){const t=v_(e);delete t.value,this.options=t}else this.options={};var i;this.options.params||(this.options.params={})}get params(){return this.options.params}absorbOptions(e){const t=e.params;if(t){const e=this.options.params;Object.keys(t).forEach(n=>{null==e[n]&&(e[n]=t[n])})}}}const vg=new bg(\"void\");class wg{constructor(e,t,n){this.id=e,this.hostElement=t,this._engine=n,this.players=[],this._triggers={},this._queue=[],this._elementListeners=new Map,this._hostClassName=\"ng-tns-\"+e,Tg(t,this._hostClassName)}listen(e,t,n,i){if(!this._triggers.hasOwnProperty(t))throw new Error(`Unable to listen on the animation trigger event \"${n}\" because the animation trigger \"${t}\" doesn't exist!`);if(null==n||0==n.length)throw new Error(`Unable to listen on the animation trigger \"${t}\" because the provided event is undefined!`);if(\"start\"!=(s=n)&&\"done\"!=s)throw new Error(`The provided animation trigger event \"${n}\" for the animation trigger \"${t}\" is not supported!`);var s;const r=n_(this._elementListeners,e,[]),o={name:t,phase:n,callback:i};r.push(o);const a=n_(this._engine.statesByElement,e,{});return a.hasOwnProperty(t)||(Tg(e,\"ng-trigger\"),Tg(e,\"ng-trigger-\"+t),a[t]=vg),()=>{this._engine.afterFlush(()=>{const e=r.indexOf(o);e>=0&&r.splice(e,1),this._triggers[t]||delete a[t]})}}register(e,t){return!this._triggers[e]&&(this._triggers[e]=t,!0)}_getTrigger(e){const t=this._triggers[e];if(!t)throw new Error(`The provided animation trigger \"${e}\" has not been registered!`);return t}trigger(e,t,n,i=!0){const s=this._getTrigger(t),r=new kg(this.id,t,e);let o=this._engine.statesByElement.get(e);o||(Tg(e,\"ng-trigger\"),Tg(e,\"ng-trigger-\"+t),this._engine.statesByElement.set(e,o={}));let a=o[t];const l=new bg(n,this.id);if(!(n&&n.hasOwnProperty(\"value\"))&&a&&l.absorbOptions(a.options),o[t]=l,a||(a=vg),\"void\"!==l.value&&a.value===l.value){if(!function(e,t){const n=Object.keys(e),i=Object.keys(t);if(n.length!=i.length)return!1;for(let s=0;s{L_(e,n),S_(e,i)})}return}const c=n_(this._engine.playersByElement,e,[]);c.forEach(e=>{e.namespaceId==this.id&&e.triggerName==t&&e.queued&&e.destroy()});let d=s.matchTransition(a.value,l.value,e,l.params),u=!1;if(!d){if(!i)return;d=s.fallbackTransition,u=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:e,triggerName:t,transition:d,fromState:a,toState:l,player:r,isFallbackTransition:u}),u||(Tg(e,\"ng-animate-queued\"),r.onStart(()=>{Dg(e,\"ng-animate-queued\")})),r.onDone(()=>{let t=this.players.indexOf(r);t>=0&&this.players.splice(t,1);const n=this._engine.playersByElement.get(e);if(n){let e=n.indexOf(r);e>=0&&n.splice(e,1)}}),this.players.push(r),c.push(r),r}deregister(e){delete this._triggers[e],this._engine.statesByElement.forEach((t,n)=>{delete t[e]}),this._elementListeners.forEach((t,n)=>{this._elementListeners.set(n,t.filter(t=>t.name!=e))})}clearElementCache(e){this._engine.statesByElement.delete(e),this._elementListeners.delete(e);const t=this._engine.playersByElement.get(e);t&&(t.forEach(e=>e.destroy()),this._engine.playersByElement.delete(e))}_signalRemovalForInnerTriggers(e,t){const n=this._engine.driver.query(e,\".ng-trigger\",!0);n.forEach(e=>{if(e.__ng_removed)return;const n=this._engine.fetchNamespacesByElement(e);n.size?n.forEach(n=>n.triggerLeaveAnimation(e,t,!1,!0)):this.clearElementCache(e)}),this._engine.afterFlushAnimationsDone(()=>n.forEach(e=>this.clearElementCache(e)))}triggerLeaveAnimation(e,t,n,i){const s=this._engine.statesByElement.get(e);if(s){const r=[];if(Object.keys(s).forEach(t=>{if(this._triggers[t]){const n=this.trigger(e,t,\"void\",i);n&&r.push(n)}}),r.length)return this._engine.markElementAsRemoved(this.id,e,!0,t),n&&Zf(r).onDone(()=>this._engine.processLeaveNode(e)),!0}return!1}prepareLeaveAnimationListeners(e){const t=this._elementListeners.get(e);if(t){const n=new Set;t.forEach(t=>{const i=t.name;if(n.has(i))return;n.add(i);const s=this._triggers[i].fallbackTransition,r=this._engine.statesByElement.get(e)[i]||vg,o=new bg(\"void\"),a=new kg(this.id,i,e);this._engine.totalQueuedPlayers++,this._queue.push({element:e,triggerName:i,transition:s,fromState:r,toState:o,player:a,isFallbackTransition:!0})})}}removeNode(e,t){const n=this._engine;if(e.childElementCount&&this._signalRemovalForInnerTriggers(e,t),this.triggerLeaveAnimation(e,t,!0))return;let i=!1;if(n.totalAnimations){const t=n.players.length?n.playersByQueriedElement.get(e):[];if(t&&t.length)i=!0;else{let t=e;for(;t=t.parentNode;)if(n.statesByElement.get(t)){i=!0;break}}}if(this.prepareLeaveAnimationListeners(e),i)n.markElementAsRemoved(this.id,e,!1,t);else{const i=e.__ng_removed;i&&i!==gg||(n.afterFlush(()=>this.clearElementCache(e)),n.destroyInnerAnimations(e),n._onRemovalComplete(e,t))}}insertNode(e,t){Tg(e,this._hostClassName)}drainQueuedTransitions(e){const t=[];return this._queue.forEach(n=>{const i=n.player;if(i.destroyed)return;const s=n.element,r=this._elementListeners.get(s);r&&r.forEach(t=>{if(t.name==n.triggerName){const i=t_(s,n.triggerName,n.fromState.value,n.toState.value);i._data=e,Xf(n.player,t.phase,i,t.callback)}}),i.markedForDestroy?this._engine.afterFlush(()=>{i.destroy()}):t.push(n)}),this._queue=[],t.sort((e,t)=>{const n=e.transition.ast.depCount,i=t.transition.ast.depCount;return 0==n||0==i?n-i:this._engine.driver.containsElement(e.element,t.element)?1:-1})}destroy(e){this.players.forEach(e=>e.destroy()),this._signalRemovalForInnerTriggers(this.hostElement,e)}elementContainsData(e){let t=!1;return this._elementListeners.has(e)&&(t=!0),t=!!this._queue.find(t=>t.element===e)||t,t}}class Mg{constructor(e,t,n){this.bodyNode=e,this.driver=t,this._normalizer=n,this.players=[],this.newHostElements=new Map,this.playersByElement=new Map,this.playersByQueriedElement=new Map,this.statesByElement=new Map,this.disabledNodes=new Set,this.totalAnimations=0,this.totalQueuedPlayers=0,this._namespaceLookup={},this._namespaceList=[],this._flushFns=[],this._whenQuietFns=[],this.namespacesByHostElement=new Map,this.collectedEnterElements=[],this.collectedLeaveElements=[],this.onRemovalComplete=(e,t)=>{}}_onRemovalComplete(e,t){this.onRemovalComplete(e,t)}get queuedPlayers(){const e=[];return this._namespaceList.forEach(t=>{t.players.forEach(t=>{t.queued&&e.push(t)})}),e}createNamespace(e,t){const n=new wg(e,t,this);return t.parentNode?this._balanceNamespaceList(n,t):(this.newHostElements.set(t,n),this.collectEnterElement(t)),this._namespaceLookup[e]=n}_balanceNamespaceList(e,t){const n=this._namespaceList.length-1;if(n>=0){let i=!1;for(let s=n;s>=0;s--)if(this.driver.containsElement(this._namespaceList[s].hostElement,t)){this._namespaceList.splice(s+1,0,e),i=!0;break}i||this._namespaceList.splice(0,0,e)}else this._namespaceList.push(e);return this.namespacesByHostElement.set(t,e),e}register(e,t){let n=this._namespaceLookup[e];return n||(n=this.createNamespace(e,t)),n}registerTrigger(e,t,n){let i=this._namespaceLookup[e];i&&i.register(t,n)&&this.totalAnimations++}destroy(e,t){if(!e)return;const n=this._fetchNamespace(e);this.afterFlush(()=>{this.namespacesByHostElement.delete(n.hostElement),delete this._namespaceLookup[e];const t=this._namespaceList.indexOf(n);t>=0&&this._namespaceList.splice(t,1)}),this.afterFlushAnimationsDone(()=>n.destroy(t))}_fetchNamespace(e){return this._namespaceLookup[e]}fetchNamespacesByElement(e){const t=new Set,n=this.statesByElement.get(e);if(n){const e=Object.keys(n);for(let i=0;i=0&&this.collectedLeaveElements.splice(e,1)}if(e){const i=this._fetchNamespace(e);i&&i.insertNode(t,n)}i&&this.collectEnterElement(t)}collectEnterElement(e){this.collectedEnterElements.push(e)}markElementAsDisabled(e,t){t?this.disabledNodes.has(e)||(this.disabledNodes.add(e),Tg(e,\"ng-animate-disabled\")):this.disabledNodes.has(e)&&(this.disabledNodes.delete(e),Dg(e,\"ng-animate-disabled\"))}removeNode(e,t,n,i){if(Sg(t)){const s=e?this._fetchNamespace(e):null;if(s?s.removeNode(t,i):this.markElementAsRemoved(e,t,!1,i),n){const n=this.namespacesByHostElement.get(t);n&&n.id!==e&&n.removeNode(t,i)}}else this._onRemovalComplete(t,i)}markElementAsRemoved(e,t,n,i){this.collectedLeaveElements.push(t),t.__ng_removed={namespaceId:e,setForRemoval:i,hasAnimation:n,removedBeforeQueried:!1}}listen(e,t,n,i,s){return Sg(t)?this._fetchNamespace(e).listen(t,n,i,s):()=>{}}_buildInstruction(e,t,n,i,s){return e.transition.build(this.driver,e.element,e.fromState.value,e.toState.value,n,i,e.fromState.options,e.toState.options,t,s)}destroyInnerAnimations(e){let t=this.driver.query(e,\".ng-trigger\",!0);t.forEach(e=>this.destroyActiveAnimationsForElement(e)),0!=this.playersByQueriedElement.size&&(t=this.driver.query(e,\".ng-animating\",!0),t.forEach(e=>this.finishActiveQueriedAnimationOnElement(e)))}destroyActiveAnimationsForElement(e){const t=this.playersByElement.get(e);t&&t.forEach(e=>{e.queued?e.markedForDestroy=!0:e.destroy()})}finishActiveQueriedAnimationOnElement(e){const t=this.playersByQueriedElement.get(e);t&&t.forEach(e=>e.finish())}whenRenderingDone(){return new Promise(e=>{if(this.players.length)return Zf(this.players).onDone(()=>e());e()})}processLeaveNode(e){const t=e.__ng_removed;if(t&&t.setForRemoval){if(e.__ng_removed=gg,t.namespaceId){this.destroyInnerAnimations(e);const n=this._fetchNamespace(t.namespaceId);n&&n.clearElementCache(e)}this._onRemovalComplete(e,t.setForRemoval)}this.driver.matchesElement(e,\".ng-animate-disabled\")&&this.markElementAsDisabled(e,!1),this.driver.query(e,\".ng-animate-disabled\",!0).forEach(e=>{this.markElementAsDisabled(e,!1)})}flush(e=-1){let t=[];if(this.newHostElements.size&&(this.newHostElements.forEach((e,t)=>this._balanceNamespaceList(e,t)),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(let n=0;ne()),this._flushFns=[],this._whenQuietFns.length){const e=this._whenQuietFns;this._whenQuietFns=[],t.length?Zf(t).onDone(()=>{e.forEach(e=>e())}):e.forEach(e=>e())}}reportError(e){throw new Error(`Unable to process animations due to the following failed trigger transitions\\n ${e.join(\"\\n\")}`)}_flushAnimations(e,t){const n=new J_,i=[],s=new Map,r=[],o=new Map,a=new Map,l=new Map,c=new Set;this.disabledNodes.forEach(e=>{c.add(e);const t=this.driver.query(e,\".ng-animate-queued\",!0);for(let n=0;n{const n=\"ng-enter\"+p++;m.set(t,n),e.forEach(e=>Tg(e,n))});const f=[],_=new Set,g=new Set;for(let Y=0;Y_.add(e)):g.add(e))}const y=new Map,b=Cg(u,Array.from(_));b.forEach((e,t)=>{const n=\"ng-leave\"+p++;y.set(t,n),e.forEach(e=>Tg(e,n))}),e.push(()=>{h.forEach((e,t)=>{const n=m.get(t);e.forEach(e=>Dg(e,n))}),b.forEach((e,t)=>{const n=y.get(t);e.forEach(e=>Dg(e,n))}),f.forEach(e=>{this.processLeaveNode(e)})});const v=[],w=[];for(let Y=this._namespaceList.length-1;Y>=0;Y--)this._namespaceList[Y].drainQueuedTransitions(t).forEach(e=>{const t=e.player,s=e.element;if(v.push(t),this.collectedEnterElements.length){const e=s.__ng_removed;if(e&&e.setForMove)return void t.destroy()}const c=!d||!this.driver.containsElement(d,s),u=y.get(s),h=m.get(s),p=this._buildInstruction(e,n,h,u,c);if(!p.errors||!p.errors.length)return c||e.isFallbackTransition?(t.onStart(()=>L_(s,p.fromStyles)),t.onDestroy(()=>S_(s,p.toStyles)),void i.push(t)):(p.timelines.forEach(e=>e.stretchStartingKeyframe=!0),n.append(s,p.timelines),r.push({instruction:p,player:t,element:s}),p.queriedElements.forEach(e=>n_(o,e,[]).push(t)),p.preStyleProps.forEach((e,t)=>{const n=Object.keys(e);if(n.length){let e=a.get(t);e||a.set(t,e=new Set),n.forEach(t=>e.add(t))}}),void p.postStyleProps.forEach((e,t)=>{const n=Object.keys(e);let i=l.get(t);i||l.set(t,i=new Set),n.forEach(e=>i.add(e))}));w.push(p)});if(w.length){const e=[];w.forEach(t=>{e.push(`@${t.triggerName} has failed due to:\\n`),t.errors.forEach(t=>e.push(`- ${t}\\n`))}),v.forEach(e=>e.destroy()),this.reportError(e)}const M=new Map,k=new Map;r.forEach(e=>{const t=e.element;n.has(t)&&(k.set(t,t),this._beforeAnimationBuild(e.player.namespaceId,e.instruction,M))}),i.forEach(e=>{const t=e.element;this._getPreviousPlayers(t,!1,e.namespaceId,e.triggerName,null).forEach(e=>{n_(M,t,[]).push(e),e.destroy()})});const S=f.filter(e=>Eg(e,a,l)),L=new Map;xg(L,this.driver,g,l,\"*\").forEach(e=>{Eg(e,a,l)&&S.push(e)});const x=new Map;h.forEach((e,t)=>{xg(x,this.driver,new Set(e),a,\"!\")}),S.forEach(e=>{const t=L.get(e),n=x.get(e);L.set(e,Object.assign(Object.assign({},t),n))});const C=[],T=[],D={};r.forEach(e=>{const{element:t,player:r,instruction:o}=e;if(n.has(t)){if(c.has(t))return r.onDestroy(()=>S_(t,o.toStyles)),r.disabled=!0,r.overrideTotalTime(o.totalTime),void i.push(r);let e=D;if(k.size>1){let n=t;const i=[];for(;n=n.parentNode;){const t=k.get(n);if(t){e=t;break}i.push(n)}i.forEach(t=>k.set(t,e))}const n=this._buildAnimation(r.namespaceId,o,M,s,x,L);if(r.setRealPlayer(n),e===D)C.push(r);else{const t=this.playersByElement.get(e);t&&t.length&&(r.parentPlayer=Zf(t)),i.push(r)}}else L_(t,o.fromStyles),r.onDestroy(()=>S_(t,o.toStyles)),T.push(r),c.has(t)&&i.push(r)}),T.forEach(e=>{const t=s.get(e.element);if(t&&t.length){const n=Zf(t);e.setRealPlayer(n)}}),i.forEach(e=>{e.parentPlayer?e.syncPlayerEvents(e.parentPlayer):e.destroy()});for(let Y=0;Y!e.destroyed);i.length?Yg(this,e,i):this.processLeaveNode(e)}return f.length=0,C.forEach(e=>{this.players.push(e),e.onDone(()=>{e.destroy();const t=this.players.indexOf(e);this.players.splice(t,1)}),e.play()}),C}elementContainsData(e,t){let n=!1;const i=t.__ng_removed;return i&&i.setForRemoval&&(n=!0),this.playersByElement.has(t)&&(n=!0),this.playersByQueriedElement.has(t)&&(n=!0),this.statesByElement.has(t)&&(n=!0),this._fetchNamespace(e).elementContainsData(t)||n}afterFlush(e){this._flushFns.push(e)}afterFlushAnimationsDone(e){this._whenQuietFns.push(e)}_getPreviousPlayers(e,t,n,i,s){let r=[];if(t){const t=this.playersByQueriedElement.get(e);t&&(r=t)}else{const t=this.playersByElement.get(e);if(t){const e=!s||\"void\"==s;t.forEach(t=>{t.queued||(e||t.triggerName==i)&&r.push(t)})}}return(n||i)&&(r=r.filter(e=>!(n&&n!=e.namespaceId||i&&i!=e.triggerName))),r}_beforeAnimationBuild(e,t,n){const i=t.element,s=t.isRemovalTransition?void 0:e,r=t.isRemovalTransition?void 0:t.triggerName;for(const o of t.timelines){const e=o.element,a=e!==i,l=n_(n,e,[]);this._getPreviousPlayers(e,a,s,r,t.toState).forEach(e=>{const t=e.getRealPlayer();t.beforeDestroy&&t.beforeDestroy(),e.destroy(),l.push(e)})}L_(i,t.fromStyles)}_buildAnimation(e,t,n,i,s,r){const o=t.triggerName,a=t.element,l=[],c=new Set,d=new Set,u=t.timelines.map(t=>{const u=t.element;c.add(u);const h=u.__ng_removed;if(h&&h.removedBeforeQueried)return new Gf(t.duration,t.delay);const m=u!==a,p=function(e){const t=[];return function e(t,n){for(let i=0;ie.getRealPlayer())).filter(e=>!!e.element&&e.element===u),f=s.get(u),_=r.get(u),g=Qf(0,this._normalizer,0,t.keyframes,f,_),y=this._buildPlayer(t,g,p);if(t.subTimeline&&i&&d.add(u),m){const t=new kg(e,o,u);t.setRealPlayer(y),l.push(t)}return y});l.forEach(e=>{n_(this.playersByQueriedElement,e.element,[]).push(e),e.onDone(()=>function(e,t,n){let i;if(e instanceof Map){if(i=e.get(t),i){if(i.length){const e=i.indexOf(n);i.splice(e,1)}0==i.length&&e.delete(t)}}else if(i=e[t],i){if(i.length){const e=i.indexOf(n);i.splice(e,1)}0==i.length&&delete e[t]}return i}(this.playersByQueriedElement,e.element,e))}),c.forEach(e=>Tg(e,\"ng-animating\"));const h=Zf(u);return h.onDestroy(()=>{c.forEach(e=>Dg(e,\"ng-animating\")),S_(a,t.toStyles)}),d.forEach(e=>{n_(i,e,[]).push(h)}),h}_buildPlayer(e,t,n){return t.length>0?this.driver.animate(e.element,t,e.duration,e.delay,e.easing,n):new Gf(e.duration,e.delay)}}class kg{constructor(e,t,n){this.namespaceId=e,this.triggerName=t,this.element=n,this._player=new Gf,this._containsRealPlayer=!1,this._queuedCallbacks={},this.destroyed=!1,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}setRealPlayer(e){this._containsRealPlayer||(this._player=e,Object.keys(this._queuedCallbacks).forEach(t=>{this._queuedCallbacks[t].forEach(n=>Xf(e,t,void 0,n))}),this._queuedCallbacks={},this._containsRealPlayer=!0,this.overrideTotalTime(e.totalTime),this.queued=!1)}getRealPlayer(){return this._player}overrideTotalTime(e){this.totalTime=e}syncPlayerEvents(e){const t=this._player;t.triggerCallback&&e.onStart(()=>t.triggerCallback(\"start\")),e.onDone(()=>this.finish()),e.onDestroy(()=>this.destroy())}_queueEvent(e,t){n_(this._queuedCallbacks,e,[]).push(t)}onDone(e){this.queued&&this._queueEvent(\"done\",e),this._player.onDone(e)}onStart(e){this.queued&&this._queueEvent(\"start\",e),this._player.onStart(e)}onDestroy(e){this.queued&&this._queueEvent(\"destroy\",e),this._player.onDestroy(e)}init(){this._player.init()}hasStarted(){return!this.queued&&this._player.hasStarted()}play(){!this.queued&&this._player.play()}pause(){!this.queued&&this._player.pause()}restart(){!this.queued&&this._player.restart()}finish(){this._player.finish()}destroy(){this.destroyed=!0,this._player.destroy()}reset(){!this.queued&&this._player.reset()}setPosition(e){this.queued||this._player.setPosition(e)}getPosition(){return this.queued?0:this._player.getPosition()}triggerCallback(e){const t=this._player;t.triggerCallback&&t.triggerCallback(e)}}function Sg(e){return e&&1===e.nodeType}function Lg(e,t){const n=e.style.display;return e.style.display=null!=t?t:\"none\",n}function xg(e,t,n,i,s){const r=[];n.forEach(e=>r.push(Lg(e)));const o=[];i.forEach((n,i)=>{const r={};n.forEach(e=>{const n=r[e]=t.computeStyle(i,e,s);n&&0!=n.length||(i.__ng_removed=yg,o.push(i))}),e.set(i,r)});let a=0;return n.forEach(e=>Lg(e,r[a++])),o}function Cg(e,t){const n=new Map;if(e.forEach(e=>n.set(e,[])),0==t.length)return n;const i=new Set(t),s=new Map;return t.forEach(e=>{const t=function e(t){if(!t)return 1;let r=s.get(t);if(r)return r;const o=t.parentNode;return r=n.has(o)?o:i.has(o)?1:e(o),s.set(t,r),r}(e);1!==t&&n.get(t).push(e)}),n}function Tg(e,t){if(e.classList)e.classList.add(t);else{let n=e.$$classes;n||(n=e.$$classes={}),n[t]=!0}}function Dg(e,t){if(e.classList)e.classList.remove(t);else{let n=e.$$classes;n&&delete n[t]}}function Yg(e,t,n){Zf(n).onDone(()=>e.processLeaveNode(t))}function Eg(e,t,n){const i=n.get(e);if(!i)return!1;let s=t.get(e);return s?i.forEach(e=>s.add(e)):t.set(e,i),n.delete(e),!0}class Og{constructor(e,t,n){this.bodyNode=e,this._driver=t,this._triggerCache={},this.onRemovalComplete=(e,t)=>{},this._transitionEngine=new Mg(e,t,n),this._timelineEngine=new fg(e,t,n),this._transitionEngine.onRemovalComplete=(e,t)=>this.onRemovalComplete(e,t)}registerTrigger(e,t,n,i,s){const r=e+\"-\"+i;let o=this._triggerCache[r];if(!o){const e=[],t=V_(this._driver,s,e);if(e.length)throw new Error(`The animation trigger \"${i}\" has failed to build due to the following errors:\\n - ${e.join(\"\\n - \")}`);o=function(e,t){return new hg(e,t)}(i,t),this._triggerCache[r]=o}this._transitionEngine.registerTrigger(t,i,o)}register(e,t){this._transitionEngine.register(e,t)}destroy(e,t){this._transitionEngine.destroy(e,t)}onInsert(e,t,n,i){this._transitionEngine.insertNode(e,t,n,i)}onRemove(e,t,n,i){this._transitionEngine.removeNode(e,t,i||!1,n)}disableAnimations(e,t){this._transitionEngine.markElementAsDisabled(e,t)}process(e,t,n,i){if(\"@\"==n.charAt(0)){const[e,s]=i_(n);this._timelineEngine.command(e,t,s,i)}else this._transitionEngine.trigger(e,t,n,i)}listen(e,t,n,i,s){if(\"@\"==n.charAt(0)){const[e,i]=i_(n);return this._timelineEngine.listen(e,t,i,s)}return this._transitionEngine.listen(e,t,n,i,s)}flush(e=-1){this._transitionEngine.flush(e)}get players(){return this._transitionEngine.players.concat(this._timelineEngine.players)}whenRenderingDone(){return this._transitionEngine.whenRenderingDone()}}function Ig(e,t){let n=null,i=null;return Array.isArray(t)&&t.length?(n=Ag(t[0]),t.length>1&&(i=Ag(t[t.length-1]))):t&&(n=Ag(t)),n||i?new Pg(e,n,i):null}let Pg=(()=>{class e{constructor(t,n,i){this._element=t,this._startStyles=n,this._endStyles=i,this._state=0;let s=e.initialStylesByElement.get(t);s||e.initialStylesByElement.set(t,s={}),this._initialStyles=s}start(){this._state<1&&(this._startStyles&&S_(this._element,this._startStyles,this._initialStyles),this._state=1)}finish(){this.start(),this._state<2&&(S_(this._element,this._initialStyles),this._endStyles&&(S_(this._element,this._endStyles),this._endStyles=null),this._state=1)}destroy(){this.finish(),this._state<3&&(e.initialStylesByElement.delete(this._element),this._startStyles&&(L_(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(L_(this._element,this._endStyles),this._endStyles=null),S_(this._element,this._initialStyles),this._state=3)}}return e.initialStylesByElement=new WeakMap,e})();function Ag(e){let t=null;const n=Object.keys(e);for(let i=0;ithis._handleCallback(e)}apply(){!function(e,t){const n=Wg(e,\"\").trim();n.length&&(function(e,t){let n=0;for(let i=0;i=this._delay&&n>=this._duration&&this.finish()}finish(){this._finished||(this._finished=!0,this._onDoneFn(),zg(this._element,this._eventFn,!0))}destroy(){this._destroyed||(this._destroyed=!0,this.finish(),function(e,t){const n=Wg(e,\"\").split(\",\"),i=Ng(n,t);i>=0&&(n.splice(i,1),Vg(e,\"\",n.join(\",\")))}(this._element,this._name))}}function jg(e,t,n){Vg(e,\"PlayState\",n,Fg(e,t))}function Fg(e,t){const n=Wg(e,\"\");return n.indexOf(\",\")>0?Ng(n.split(\",\"),t):Ng([n],t)}function Ng(e,t){for(let n=0;n=0)return n;return-1}function zg(e,t,n){n?e.removeEventListener(\"animationend\",t):e.addEventListener(\"animationend\",t)}function Vg(e,t,n,i){const s=\"animation\"+t;if(null!=i){const t=e.style[s];if(t.length){const e=t.split(\",\");e[i]=n,n=e.join(\",\")}}e.style[s]=n}function Wg(e,t){return e.style[\"animation\"+t]}class Ug{constructor(e,t,n,i,s,r,o,a){this.element=e,this.keyframes=t,this.animationName=n,this._duration=i,this._delay=s,this._finalStyles=o,this._specialStyles=a,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this.currentSnapshot={},this._state=0,this.easing=r||\"linear\",this.totalTime=i+s,this._buildStyler()}onStart(e){this._onStartFns.push(e)}onDone(e){this._onDoneFns.push(e)}onDestroy(e){this._onDestroyFns.push(e)}destroy(){this.init(),this._state>=4||(this._state=4,this._styler.destroy(),this._flushStartFns(),this._flushDoneFns(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(e=>e()),this._onDestroyFns=[])}_flushDoneFns(){this._onDoneFns.forEach(e=>e()),this._onDoneFns=[]}_flushStartFns(){this._onStartFns.forEach(e=>e()),this._onStartFns=[]}finish(){this.init(),this._state>=3||(this._state=3,this._styler.finish(),this._flushStartFns(),this._specialStyles&&this._specialStyles.finish(),this._flushDoneFns())}setPosition(e){this._styler.setPosition(e)}getPosition(){return this._styler.getPosition()}hasStarted(){return this._state>=2}init(){this._state>=1||(this._state=1,this._styler.apply(),this._delay&&this._styler.pause())}play(){this.init(),this.hasStarted()||(this._flushStartFns(),this._state=2,this._specialStyles&&this._specialStyles.start()),this._styler.resume()}pause(){this.init(),this._styler.pause()}restart(){this.reset(),this.play()}reset(){this._styler.destroy(),this._buildStyler(),this._styler.apply()}_buildStyler(){this._styler=new Hg(this.element,this.animationName,this._duration,this._delay,this.easing,\"forwards\",()=>this.finish())}triggerCallback(e){const t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach(e=>e()),t.length=0}beforeDestroy(){this.init();const e={};if(this.hasStarted()){const t=this._state>=3;Object.keys(this._finalStyles).forEach(n=>{\"offset\"!=n&&(e[n]=t?this._finalStyles[n]:R_(this.element,n))})}this.currentSnapshot=e}}class $g extends Gf{constructor(e,t){super(),this.element=e,this._startingStyles={},this.__initialized=!1,this._styles=p_(t)}init(){!this.__initialized&&this._startingStyles&&(this.__initialized=!0,Object.keys(this._styles).forEach(e=>{this._startingStyles[e]=this.element.style[e]}),super.init())}play(){this._startingStyles&&(this.init(),Object.keys(this._styles).forEach(e=>this.element.style.setProperty(e,this._styles[e])),super.play())}destroy(){this._startingStyles&&(Object.keys(this._startingStyles).forEach(e=>{const t=this._startingStyles[e];t?this.element.style.setProperty(e,t):this.element.style.removeProperty(e)}),this._startingStyles=null,super.destroy())}}class Bg{constructor(){this._count=0,this._head=document.querySelector(\"head\"),this._warningIssued=!1}validateStyleProperty(e){return d_(e)}matchesElement(e,t){return u_(e,t)}containsElement(e,t){return h_(e,t)}query(e,t,n){return m_(e,t,n)}computeStyle(e,t,n){return window.getComputedStyle(e)[t]}buildKeyframeElement(e,t,n){n=n.map(e=>p_(e));let i=`@keyframes ${t} {\\n`,s=\"\";n.forEach(e=>{s=\" \";const t=parseFloat(e.offset);i+=`${s}${100*t}% {\\n`,s+=\" \",Object.keys(e).forEach(t=>{const n=e[t];switch(t){case\"offset\":return;case\"easing\":return void(n&&(i+=`${s}animation-timing-function: ${n};\\n`));default:return void(i+=`${s}${t}: ${n};\\n`)}}),i+=`${s}}\\n`}),i+=\"}\\n\";const r=document.createElement(\"style\");return r.innerHTML=i,r}animate(e,t,n,i,s,r=[],o){o&&this._notifyFaultyScrubber();const a=r.filter(e=>e instanceof Ug),l={};I_(n,i)&&a.forEach(e=>{let t=e.currentSnapshot;Object.keys(t).forEach(e=>l[e]=t[e])});const c=function(e){let t={};return e&&(Array.isArray(e)?e:[e]).forEach(e=>{Object.keys(e).forEach(n=>{\"offset\"!=n&&\"easing\"!=n&&(t[n]=e[n])})}),t}(t=P_(e,t,l));if(0==n)return new $g(e,c);const d=`gen_css_kf_${this._count++}`,u=this.buildKeyframeElement(e,d,t);document.querySelector(\"head\").appendChild(u);const h=Ig(e,t),m=new Ug(e,t,d,n,i,s,c,h);return m.onDestroy(()=>{var e;(e=u).parentNode.removeChild(e)}),m}_notifyFaultyScrubber(){this._warningIssued||(console.warn(\"@angular/animations: please load the web-animations.js polyfill to allow programmatic access...\\n\",\" visit http://bit.ly/IWukam to learn more about using the web-animation-js polyfill.\"),this._warningIssued=!0)}}class qg{constructor(e,t,n,i){this.element=e,this.keyframes=t,this.options=n,this._specialStyles=i,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._initialized=!1,this._finished=!1,this._started=!1,this._destroyed=!1,this.time=0,this.parentPlayer=null,this.currentSnapshot={},this._duration=n.duration,this._delay=n.delay||0,this.time=this._duration+this._delay}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(e=>e()),this._onDoneFns=[])}init(){this._buildPlayer(),this._preparePlayerBeforeStart()}_buildPlayer(){if(this._initialized)return;this._initialized=!0;const e=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,e,this.options),this._finalKeyframe=e.length?e[e.length-1]:{},this.domPlayer.addEventListener(\"finish\",()=>this._onFinish())}_preparePlayerBeforeStart(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}_triggerWebAnimation(e,t,n){return e.animate(t,n)}onStart(e){this._onStartFns.push(e)}onDone(e){this._onDoneFns.push(e)}onDestroy(e){this._onDestroyFns.push(e)}play(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach(e=>e()),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),this.domPlayer.play()}pause(){this.init(),this.domPlayer.pause()}finish(){this.init(),this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish()}reset(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1}_resetDomPlayerState(){this.domPlayer&&this.domPlayer.cancel()}restart(){this.reset(),this.play()}hasStarted(){return this._started}destroy(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(e=>e()),this._onDestroyFns=[])}setPosition(e){this.domPlayer.currentTime=e*this.time}getPosition(){return this.domPlayer.currentTime/this.time}get totalTime(){return this._delay+this._duration}beforeDestroy(){const e={};this.hasStarted()&&Object.keys(this._finalKeyframe).forEach(t=>{\"offset\"!=t&&(e[t]=this._finished?this._finalKeyframe[t]:R_(this.element,t))}),this.currentSnapshot=e}triggerCallback(e){const t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach(e=>e()),t.length=0}}class Gg{constructor(){this._isNativeImpl=/\\{\\s*\\[native\\s+code\\]\\s*\\}/.test(Jg().toString()),this._cssKeyframesDriver=new Bg}validateStyleProperty(e){return d_(e)}matchesElement(e,t){return u_(e,t)}containsElement(e,t){return h_(e,t)}query(e,t,n){return m_(e,t,n)}computeStyle(e,t,n){return window.getComputedStyle(e)[t]}overrideWebAnimationsSupport(e){this._isNativeImpl=e}animate(e,t,n,i,s,r=[],o){if(!o&&!this._isNativeImpl)return this._cssKeyframesDriver.animate(e,t,n,i,s,r);const a={duration:n,delay:i,fill:0==i?\"both\":\"forwards\"};s&&(a.easing=s);const l={},c=r.filter(e=>e instanceof qg);I_(n,i)&&c.forEach(e=>{let t=e.currentSnapshot;Object.keys(t).forEach(e=>l[e]=t[e])});const d=Ig(e,t=P_(e,t=t.map(e=>w_(e,!1)),l));return new qg(e,t,a,d)}}function Jg(){return\"undefined\"!=typeof window&&void 0!==window.document&&Element.prototype.animate||{}}let Kg=(()=>{class e extends Hf{constructor(e,t){super(),this._nextAnimationId=0,this._renderer=e.createRenderer(t.body,{id:\"0\",encapsulation:pt.None,styles:[],data:{animation:[]}})}build(e){const t=this._nextAnimationId.toString();this._nextAnimationId++;const n=Array.isArray(e)?zf(e):e;return Xg(this._renderer,null,t,\"register\",[n]),new Zg(t,this._renderer)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Qa),Qe(Nd))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class Zg extends class{}{constructor(e,t){super(),this._id=e,this._renderer=t}create(e,t){return new Qg(this._id,e,t||{},this._renderer)}}class Qg{constructor(e,t,n,i){this.id=e,this.element=t,this._renderer=i,this.parentPlayer=null,this._started=!1,this.totalTime=0,this._command(\"create\",n)}_listen(e,t){return this._renderer.listen(this.element,`@@${this.id}:${e}`,t)}_command(e,...t){return Xg(this._renderer,this.element,this.id,e,t)}onDone(e){this._listen(\"done\",e)}onStart(e){this._listen(\"start\",e)}onDestroy(e){this._listen(\"destroy\",e)}init(){this._command(\"init\")}hasStarted(){return this._started}play(){this._command(\"play\"),this._started=!0}pause(){this._command(\"pause\")}restart(){this._command(\"restart\")}finish(){this._command(\"finish\")}destroy(){this._command(\"destroy\")}reset(){this._command(\"reset\")}setPosition(e){this._command(\"setPosition\",e)}getPosition(){return 0}}function Xg(e,t,n,i,s){return e.setProperty(t,`@@${n}:${i}`,s)}let ey=(()=>{class e{constructor(e,t,n){this.delegate=e,this.engine=t,this._zone=n,this._currentId=0,this._microtaskId=1,this._animationCallbacksBuffer=[],this._rendererCache=new Map,this._cdRecurDepth=0,this.promise=Promise.resolve(0),t.onRemovalComplete=(e,t)=>{t&&t.parentNode(e)&&t.removeChild(e.parentNode,e)}}createRenderer(e,t){const n=this.delegate.createRenderer(e,t);if(!(e&&t&&t.data&&t.data.animation)){let e=this._rendererCache.get(n);return e||(e=new ty(\"\",n,this.engine),this._rendererCache.set(n,e)),e}const i=t.id,s=t.id+\"-\"+this._currentId;this._currentId++,this.engine.register(s,e);const r=t=>{Array.isArray(t)?t.forEach(r):this.engine.registerTrigger(i,s,e,t.name,t)};return t.data.animation.forEach(r),new ny(this,s,n,this.engine)}begin(){this._cdRecurDepth++,this.delegate.begin&&this.delegate.begin()}_scheduleCountTask(){this.promise.then(()=>{this._microtaskId++})}scheduleListenerCallback(e,t,n){e>=0&&et(n)):(0==this._animationCallbacksBuffer.length&&Promise.resolve(null).then(()=>{this._zone.run(()=>{this._animationCallbacksBuffer.forEach(e=>{const[t,n]=e;t(n)}),this._animationCallbacksBuffer=[]})}),this._animationCallbacksBuffer.push([t,n]))}end(){this._cdRecurDepth--,0==this._cdRecurDepth&&this._zone.runOutsideAngular(()=>{this._scheduleCountTask(),this.engine.flush(this._microtaskId)}),this.delegate.end&&this.delegate.end()}whenRenderingDone(){return this.engine.whenRenderingDone()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Qa),Qe(Og),Qe(ld))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class ty{constructor(e,t,n){this.namespaceId=e,this.delegate=t,this.engine=n,this.destroyNode=this.delegate.destroyNode?e=>t.destroyNode(e):null}get data(){return this.delegate.data}destroy(){this.engine.destroy(this.namespaceId,this.delegate),this.delegate.destroy()}createElement(e,t){return this.delegate.createElement(e,t)}createComment(e){return this.delegate.createComment(e)}createText(e){return this.delegate.createText(e)}appendChild(e,t){this.delegate.appendChild(e,t),this.engine.onInsert(this.namespaceId,t,e,!1)}insertBefore(e,t,n){this.delegate.insertBefore(e,t,n),this.engine.onInsert(this.namespaceId,t,e,!0)}removeChild(e,t,n){this.engine.onRemove(this.namespaceId,t,this.delegate,n)}selectRootElement(e,t){return this.delegate.selectRootElement(e,t)}parentNode(e){return this.delegate.parentNode(e)}nextSibling(e){return this.delegate.nextSibling(e)}setAttribute(e,t,n,i){this.delegate.setAttribute(e,t,n,i)}removeAttribute(e,t,n){this.delegate.removeAttribute(e,t,n)}addClass(e,t){this.delegate.addClass(e,t)}removeClass(e,t){this.delegate.removeClass(e,t)}setStyle(e,t,n,i){this.delegate.setStyle(e,t,n,i)}removeStyle(e,t,n){this.delegate.removeStyle(e,t,n)}setProperty(e,t,n){\"@\"==t.charAt(0)&&\"@.disabled\"==t?this.disableAnimations(e,!!n):this.delegate.setProperty(e,t,n)}setValue(e,t){this.delegate.setValue(e,t)}listen(e,t,n){return this.delegate.listen(e,t,n)}disableAnimations(e,t){this.engine.disableAnimations(e,t)}}class ny extends ty{constructor(e,t,n,i){super(t,n,i),this.factory=e,this.namespaceId=t}setProperty(e,t,n){\"@\"==t.charAt(0)?\".\"==t.charAt(1)&&\"@.disabled\"==t?this.disableAnimations(e,n=void 0===n||!!n):this.engine.process(this.namespaceId,e,t.substr(1),n):this.delegate.setProperty(e,t,n)}listen(e,t,n){if(\"@\"==t.charAt(0)){const i=function(e){switch(e){case\"body\":return document.body;case\"document\":return document;case\"window\":return window;default:return e}}(e);let s=t.substr(1),r=\"\";return\"@\"!=s.charAt(0)&&([s,r]=function(e){const t=e.indexOf(\".\");return[e.substring(0,t),e.substr(t+1)]}(s)),this.engine.listen(this.namespaceId,i,s,r,e=>{this.factory.scheduleListenerCallback(e._data||-1,n,e)})}return this.delegate.listen(e,t,n)}}let iy=(()=>{class e extends Og{constructor(e,t,n){super(e.body,t,n)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd),Qe(__),Qe(rg))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const sy=new Ve(\"AnimationModuleType\"),ry=[{provide:__,useFactory:function(){return\"function\"==typeof Jg()?new Gg:new Bg}},{provide:sy,useValue:\"BrowserAnimations\"},{provide:Hf,useClass:Kg},{provide:rg,useFactory:function(){return new og}},{provide:Og,useClass:iy},{provide:Qa,useFactory:function(e,t,n){return new ey(e,t,n)},deps:[mf,Og,ld]}];let oy=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:ry,imports:[If]}),e})();const ay=[\"*\",[[\"mat-option\"],[\"ng-container\"]]],ly=[\"*\",\"mat-option, ng-container\"];function cy(e,t){if(1&e&&jo(0,\"mat-pseudo-checkbox\",3),2&e){const e=Jo();Po(\"state\",e.selected?\"checked\":\"unchecked\")(\"disabled\",e.disabled)}}const dy=[\"*\"],uy=new il(\"9.1.3\"),hy=new Ve(\"mat-sanity-checks\",{providedIn:\"root\",factory:function(){return!0}});let my,py=(()=>{class e{constructor(e,t,n){this._hasDoneGlobalChecks=!1,this._document=n,e._applyBodyHighContrastModeCssClasses(),this._sanityChecks=t,this._hasDoneGlobalChecks||(this._checkDoctypeIsDefined(),this._checkThemeIsPresent(),this._checkCdkVersionMatch(),this._hasDoneGlobalChecks=!0)}_getDocument(){const e=this._document||document;return\"object\"==typeof e&&e?e:null}_getWindow(){var e;const t=(null===(e=this._getDocument())||void 0===e?void 0:e.defaultView)||window;return\"object\"==typeof t&&t?t:null}_checksAreEnabled(){return Si()&&!this._isTestEnv()}_isTestEnv(){const e=this._getWindow();return e&&(e.__karma__||e.jasmine)}_checkDoctypeIsDefined(){const e=this._checksAreEnabled()&&(!0===this._sanityChecks||this._sanityChecks.doctype),t=this._getDocument();e&&t&&!t.doctype&&console.warn(\"Current document does not have a doctype. This may cause some Angular Material components not to behave as expected.\")}_checkThemeIsPresent(){const e=!this._checksAreEnabled()||!1===this._sanityChecks||!this._sanityChecks.theme,t=this._getDocument();if(e||!t||!t.body||\"function\"!=typeof getComputedStyle)return;const n=t.createElement(\"div\");n.classList.add(\"mat-theme-loaded-marker\"),t.body.appendChild(n);const i=getComputedStyle(n);i&&\"none\"!==i.display&&console.warn(\"Could not find Angular Material core theme. Most Material components may not work as expected. For more info refer to the theming guide: https://material.angular.io/guide/theming\"),t.body.removeChild(n)}_checkCdkVersionMatch(){this._checksAreEnabled()&&(!0===this._sanityChecks||this._sanityChecks.version)&&uy.full!==Kp.full&&console.warn(\"The Angular Material version (\"+uy.full+\") does not match the Angular CDK version (\"+Kp.full+\").\\nPlease ensure the versions of these two packages exactly match.\")}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)(Qe(Bp),Qe(hy,8),Qe(Nd,8))},imports:[[Jp],Jp]}),e})();function fy(e){return class extends e{constructor(...e){super(...e),this._disabled=!1}get disabled(){return this._disabled}set disabled(e){this._disabled=hp(e)}}}function _y(e,t){return class extends e{constructor(...e){super(...e),this.color=t}get color(){return this._color}set color(e){const n=e||t;n!==this._color&&(this._color&&this._elementRef.nativeElement.classList.remove(`mat-${this._color}`),n&&this._elementRef.nativeElement.classList.add(`mat-${n}`),this._color=n)}}}function gy(e){return class extends e{constructor(...e){super(...e),this._disableRipple=!1}get disableRipple(){return this._disableRipple}set disableRipple(e){this._disableRipple=hp(e)}}}function yy(e,t=0){return class extends e{constructor(...e){super(...e),this._tabIndex=t}get tabIndex(){return this.disabled?-1:this._tabIndex}set tabIndex(e){this._tabIndex=null!=e?e:t}}}function by(e){return class extends e{constructor(...e){super(...e),this.errorState=!1,this.stateChanges=new L}updateErrorState(){const e=this.errorState,t=(this.errorStateMatcher||this._defaultErrorStateMatcher).isErrorState(this.ngControl?this.ngControl.control:null,this._parentFormGroup||this._parentForm);t!==e&&(this.errorState=t,this.stateChanges.next())}}}try{my=\"undefined\"!=typeof Intl}catch(NI){my=!1}let vy=(()=>{class e{isErrorState(e,t){return!!(e&&e.invalid&&(e.touched||t&&t.submitted))}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})();const wy=new Ve(\"MAT_HAMMER_OPTIONS\");class My{constructor(e,t,n){this._renderer=e,this.element=t,this.config=n,this.state=3}fadeOut(){this._renderer.fadeOutRipple(this)}}const ky={enterDuration:450,exitDuration:400},Sy=Sp({passive:!0});class Ly{constructor(e,t,n,i){this._target=e,this._ngZone=t,this._isPointerDown=!1,this._triggerEvents=new Map,this._activeRipples=new Set,this._onMousedown=e=>{const t=$p(e),n=this._lastTouchStartEvent&&Date.now(){if(!this._target.rippleDisabled){this._lastTouchStartEvent=Date.now(),this._isPointerDown=!0;const t=e.changedTouches;for(let e=0;e{this._isPointerDown&&(this._isPointerDown=!1,this._activeRipples.forEach(e=>{!e.config.persistent&&(1===e.state||e.config.terminateOnPointerUp&&0===e.state)&&e.fadeOut()}))},i.isBrowser&&(this._containerElement=_p(n),this._triggerEvents.set(\"mousedown\",this._onMousedown).set(\"mouseup\",this._onPointerUp).set(\"mouseleave\",this._onPointerUp).set(\"touchstart\",this._onTouchStart).set(\"touchend\",this._onPointerUp).set(\"touchcancel\",this._onPointerUp))}fadeInRipple(e,t,n={}){const i=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),s=Object.assign(Object.assign({},ky),n.animation);n.centered&&(e=i.left+i.width/2,t=i.top+i.height/2);const r=n.radius||function(e,t,n){const i=Math.max(Math.abs(e-n.left),Math.abs(e-n.right)),s=Math.max(Math.abs(t-n.top),Math.abs(t-n.bottom));return Math.sqrt(i*i+s*s)}(e,t,i),o=e-i.left,a=t-i.top,l=s.enterDuration,c=document.createElement(\"div\");c.classList.add(\"mat-ripple-element\"),c.style.left=`${o-r}px`,c.style.top=`${a-r}px`,c.style.height=`${2*r}px`,c.style.width=`${2*r}px`,null!=n.color&&(c.style.backgroundColor=n.color),c.style.transitionDuration=`${l}ms`,this._containerElement.appendChild(c),window.getComputedStyle(c).getPropertyValue(\"opacity\"),c.style.transform=\"scale(1)\";const d=new My(this,c,n);return d.state=0,this._activeRipples.add(d),n.persistent||(this._mostRecentTransientRipple=d),this._runTimeoutOutsideZone(()=>{const e=d===this._mostRecentTransientRipple;d.state=1,n.persistent||e&&this._isPointerDown||d.fadeOut()},l),d}fadeOutRipple(e){const t=this._activeRipples.delete(e);if(e===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),this._activeRipples.size||(this._containerRect=null),!t)return;const n=e.element,i=Object.assign(Object.assign({},ky),e.config.animation);n.style.transitionDuration=`${i.exitDuration}ms`,n.style.opacity=\"0\",e.state=2,this._runTimeoutOutsideZone(()=>{e.state=3,n.parentNode.removeChild(n)},i.exitDuration)}fadeOutAll(){this._activeRipples.forEach(e=>e.fadeOut())}setupTriggerEvents(e){const t=_p(e);t&&t!==this._triggerElement&&(this._removeTriggerEvents(),this._ngZone.runOutsideAngular(()=>{this._triggerEvents.forEach((e,n)=>{t.addEventListener(n,e,Sy)})}),this._triggerElement=t)}_runTimeoutOutsideZone(e,t=0){this._ngZone.runOutsideAngular(()=>setTimeout(e,t))}_removeTriggerEvents(){this._triggerElement&&this._triggerEvents.forEach((e,t)=>{this._triggerElement.removeEventListener(t,e,Sy)})}}const xy=new Ve(\"mat-ripple-global-options\");let Cy=(()=>{class e{constructor(e,t,n,i,s){this._elementRef=e,this.radius=0,this._disabled=!1,this._isInitialized=!1,this._globalOptions=i||{},this._rippleRenderer=new Ly(this,t,e,n),\"NoopAnimations\"===s&&(this._globalOptions.animation={enterDuration:0,exitDuration:0})}get disabled(){return this._disabled}set disabled(e){this._disabled=e,this._setupTriggerEventsIfEnabled()}get trigger(){return this._trigger||this._elementRef.nativeElement}set trigger(e){this._trigger=e,this._setupTriggerEventsIfEnabled()}ngOnInit(){this._isInitialized=!0,this._setupTriggerEventsIfEnabled()}ngOnDestroy(){this._rippleRenderer._removeTriggerEvents()}fadeOutAll(){this._rippleRenderer.fadeOutAll()}get rippleConfig(){return{centered:this.centered,radius:this.radius,color:this.color,animation:Object.assign(Object.assign({},this._globalOptions.animation),this.animation),terminateOnPointerUp:this._globalOptions.terminateOnPointerUp}}get rippleDisabled(){return this.disabled||!!this._globalOptions.disabled}_setupTriggerEventsIfEnabled(){!this.disabled&&this._isInitialized&&this._rippleRenderer.setupTriggerEvents(this.trigger)}launch(e,t=0,n){return\"number\"==typeof e?this._rippleRenderer.fadeInRipple(e,t,Object.assign(Object.assign({},this.rippleConfig),n)):this._rippleRenderer.fadeInRipple(0,0,Object.assign(Object.assign({},this.rippleConfig),e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(ld),Eo(bp),Eo(xy,8),Eo(sy,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"mat-ripple\",\"\"],[\"\",\"matRipple\",\"\"]],hostAttrs:[1,\"mat-ripple\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"mat-ripple-unbounded\",t.unbounded)},inputs:{radius:[\"matRippleRadius\",\"radius\"],disabled:[\"matRippleDisabled\",\"disabled\"],trigger:[\"matRippleTrigger\",\"trigger\"],color:[\"matRippleColor\",\"color\"],unbounded:[\"matRippleUnbounded\",\"unbounded\"],centered:[\"matRippleCentered\",\"centered\"],animation:[\"matRippleAnimation\",\"animation\"]},exportAs:[\"matRipple\"]}),e})(),Ty=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[py,vp],py]}),e})(),Dy=(()=>{class e{constructor(e){this._animationMode=e,this.state=\"unchecked\",this.disabled=!1}}return e.\\u0275fac=function(t){return new(t||e)(Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-pseudo-checkbox\"]],hostAttrs:[1,\"mat-pseudo-checkbox\"],hostVars:8,hostBindings:function(e,t){2&e&&ua(\"mat-pseudo-checkbox-indeterminate\",\"indeterminate\"===t.state)(\"mat-pseudo-checkbox-checked\",\"checked\"===t.state)(\"mat-pseudo-checkbox-disabled\",t.disabled)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode)},inputs:{state:\"state\",disabled:\"disabled\"},decls:0,vars:0,template:function(e,t){},styles:['.mat-pseudo-checkbox{width:16px;height:16px;border:2px solid;border-radius:2px;cursor:pointer;display:inline-block;vertical-align:middle;box-sizing:border-box;position:relative;flex-shrink:0;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1),background-color 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox::after{position:absolute;opacity:0;content:\"\";border-bottom:2px solid currentColor;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox.mat-pseudo-checkbox-indeterminate{border-color:transparent}._mat-animation-noopable.mat-pseudo-checkbox{transition:none;animation:none}._mat-animation-noopable.mat-pseudo-checkbox::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{top:5px;left:1px;width:10px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{top:2.4px;left:1px;width:8px;height:3px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}\\n'],encapsulation:2,changeDetection:0}),e})(),Yy=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();class Ey{}const Oy=fy(Ey);let Iy=0,Py=(()=>{class e extends Oy{constructor(){super(...arguments),this._labelId=`mat-optgroup-label-${Iy++}`}}return e.\\u0275fac=function(t){return Ay(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-optgroup\"]],hostAttrs:[\"role\",\"group\",1,\"mat-optgroup\"],hostVars:4,hostBindings:function(e,t){2&e&&(Co(\"aria-disabled\",t.disabled.toString())(\"aria-labelledby\",t._labelId),ua(\"mat-optgroup-disabled\",t.disabled))},inputs:{disabled:\"disabled\",label:\"label\"},exportAs:[\"matOptgroup\"],features:[Ya],ngContentSelectors:ly,decls:4,vars:2,consts:[[1,\"mat-optgroup-label\",3,\"id\"]],template:function(e,t){1&e&&(Zo(ay),Ro(0,\"label\",0),Sa(1),ea(2),Ho(),ea(3,1)),2&e&&(Po(\"id\",t._labelId),ys(1),xa(\"\",t.label,\" \"))},styles:[\".mat-optgroup-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup-label[disabled]{cursor:default}[dir=rtl] .mat-optgroup-label{text-align:right}.mat-optgroup-label .mat-icon{margin-right:16px;vertical-align:middle}.mat-optgroup-label .mat-icon svg{vertical-align:top}[dir=rtl] .mat-optgroup-label .mat-icon{margin-left:16px;margin-right:0}\\n\"],encapsulation:2,changeDetection:0}),e})();const Ay=li(Py);let Ry=0;class Hy{constructor(e,t=!1){this.source=e,this.isUserInput=t}}const jy=new Ve(\"MAT_OPTION_PARENT_COMPONENT\");let Fy=(()=>{class e{constructor(e,t,n,i){this._element=e,this._changeDetectorRef=t,this._parent=n,this.group=i,this._selected=!1,this._active=!1,this._disabled=!1,this._mostRecentViewValue=\"\",this.id=`mat-option-${Ry++}`,this.onSelectionChange=new yc,this._stateChanges=new L}get multiple(){return this._parent&&this._parent.multiple}get selected(){return this._selected}get disabled(){return this.group&&this.group.disabled||this._disabled}set disabled(e){this._disabled=hp(e)}get disableRipple(){return this._parent&&this._parent.disableRipple}get active(){return this._active}get viewValue(){return(this._getHostElement().textContent||\"\").trim()}select(){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}deselect(){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}focus(e,t){const n=this._getHostElement();\"function\"==typeof n.focus&&n.focus(t)}setActiveStyles(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}setInactiveStyles(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}getLabel(){return this.viewValue}_handleKeydown(e){13!==e.keyCode&&32!==e.keyCode||qm(e)||(this._selectViaInteraction(),e.preventDefault())}_selectViaInteraction(){this.disabled||(this._selected=!this.multiple||!this._selected,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent(!0))}_getAriaSelected(){return this.selected||!this.multiple&&null}_getTabIndex(){return this.disabled?\"-1\":\"0\"}_getHostElement(){return this._element.nativeElement}ngAfterViewChecked(){if(this._selected){const e=this.viewValue;e!==this._mostRecentViewValue&&(this._mostRecentViewValue=e,this._stateChanges.next())}}ngOnDestroy(){this._stateChanges.complete()}_emitSelectionChangeEvent(e=!1){this.onSelectionChange.emit(new Hy(this,e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Qr),Eo(jy,8),Eo(Py,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-option\"]],hostAttrs:[\"role\",\"option\",1,\"mat-option\",\"mat-focus-indicator\"],hostVars:12,hostBindings:function(e,t){1&e&&Uo(\"click\",(function(){return t._selectViaInteraction()}))(\"keydown\",(function(e){return t._handleKeydown(e)})),2&e&&(Ca(\"id\",t.id),Co(\"tabindex\",t._getTabIndex())(\"aria-selected\",t._getAriaSelected())(\"aria-disabled\",t.disabled.toString()),ua(\"mat-selected\",t.selected)(\"mat-option-multiple\",t.multiple)(\"mat-active\",t.active)(\"mat-option-disabled\",t.disabled))},inputs:{id:\"id\",disabled:\"disabled\",value:\"value\"},outputs:{onSelectionChange:\"onSelectionChange\"},exportAs:[\"matOption\"],ngContentSelectors:dy,decls:4,vars:3,consts:[[\"class\",\"mat-option-pseudo-checkbox\",3,\"state\",\"disabled\",4,\"ngIf\"],[1,\"mat-option-text\"],[\"mat-ripple\",\"\",1,\"mat-option-ripple\",3,\"matRippleTrigger\",\"matRippleDisabled\"],[1,\"mat-option-pseudo-checkbox\",3,\"state\",\"disabled\"]],template:function(e,t){1&e&&(Zo(),Do(0,cy,1,2,\"mat-pseudo-checkbox\",0),Ro(1,\"span\",1),ea(2),Ho(),jo(3,\"div\",2)),2&e&&(Po(\"ngIf\",t.multiple),ys(3),Po(\"matRippleTrigger\",t._getHostElement())(\"matRippleDisabled\",t.disabled||t.disableRipple))},directives:[mu,Cy,Dy],styles:[\".mat-option{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative;cursor:pointer;outline:none;display:flex;flex-direction:row;max-width:100%;box-sizing:border-box;align-items:center;-webkit-tap-highlight-color:transparent}.mat-option[disabled]{cursor:default}[dir=rtl] .mat-option{text-align:right}.mat-option .mat-icon{margin-right:16px;vertical-align:middle}.mat-option .mat-icon svg{vertical-align:top}[dir=rtl] .mat-option .mat-icon{margin-left:16px;margin-right:0}.mat-option[aria-disabled=true]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:32px}[dir=rtl] .mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:16px;padding-right:32px}.cdk-high-contrast-active .mat-option{margin:0 1px}.cdk-high-contrast-active .mat-option.mat-active{border:solid 1px currentColor;margin:0}.mat-option-text{display:inline-block;flex-grow:1;overflow:hidden;text-overflow:ellipsis}.mat-option .mat-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.cdk-high-contrast-active .mat-option .mat-option-ripple{opacity:.5}.mat-option-pseudo-checkbox{margin-right:8px}[dir=rtl] .mat-option-pseudo-checkbox{margin-left:8px;margin-right:0}\\n\"],encapsulation:2,changeDetection:0}),e})();function Ny(e,t,n){if(n.length){let i=t.toArray(),s=n.toArray(),r=0;for(let t=0;t{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Ty,Mu,Yy]]}),e})();const Vy=new Ve(\"mat-label-global-options\"),Wy=[\"mat-button\",\"\"],Uy=[\"*\"],$y=[\"mat-button\",\"mat-flat-button\",\"mat-icon-button\",\"mat-raised-button\",\"mat-stroked-button\",\"mat-mini-fab\",\"mat-fab\"];class By{constructor(e){this._elementRef=e}}const qy=_y(fy(gy(By)));let Gy=(()=>{class e extends qy{constructor(e,t,n){super(e),this._focusMonitor=t,this._animationMode=n,this.isRoundButton=this._hasHostAttributes(\"mat-fab\",\"mat-mini-fab\"),this.isIconButton=this._hasHostAttributes(\"mat-icon-button\");for(const i of $y)this._hasHostAttributes(i)&&this._getHostElement().classList.add(i);e.nativeElement.classList.add(\"mat-button-base\"),this._focusMonitor.monitor(this._elementRef,!0),this.isRoundButton&&(this.color=\"accent\")}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}focus(e=\"program\",t){this._focusMonitor.focusVia(this._getHostElement(),e,t)}_getHostElement(){return this._elementRef.nativeElement}_isRippleDisabled(){return this.disableRipple||this.disabled}_hasHostAttributes(...e){return e.some(e=>this._getHostElement().hasAttribute(e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Up),Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"button\",\"mat-button\",\"\"],[\"button\",\"mat-raised-button\",\"\"],[\"button\",\"mat-icon-button\",\"\"],[\"button\",\"mat-fab\",\"\"],[\"button\",\"mat-mini-fab\",\"\"],[\"button\",\"mat-stroked-button\",\"\"],[\"button\",\"mat-flat-button\",\"\"]],viewQuery:function(e,t){var n;1&e&&Ec(Cy,!0),2&e&&Dc(n=Rc())&&(t.ripple=n.first)},hostAttrs:[1,\"mat-focus-indicator\"],hostVars:3,hostBindings:function(e,t){2&e&&(Co(\"disabled\",t.disabled||null),ua(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\"},exportAs:[\"matButton\"],features:[Ya],attrs:Wy,ngContentSelectors:Uy,decls:4,vars:5,consts:[[1,\"mat-button-wrapper\"],[\"matRipple\",\"\",1,\"mat-button-ripple\",3,\"matRippleDisabled\",\"matRippleCentered\",\"matRippleTrigger\"],[1,\"mat-button-focus-overlay\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"span\",0),ea(1),Ho(),jo(2,\"div\",1),jo(3,\"div\",2)),2&e&&(ys(2),ua(\"mat-button-ripple-round\",t.isRoundButton||t.isIconButton),Po(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleCentered\",t.isIconButton)(\"matRippleTrigger\",t._getHostElement()))},directives:[Cy],styles:[\".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:.04}@media(hover: none){.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-button[disabled],.mat-icon-button[disabled],.mat-stroked-button[disabled],.mat-flat-button[disabled]{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button[disabled]{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}._mat-animation-noopable.mat-raised-button{transition:none;animation:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-ripple.mat-ripple,.mat-stroked-button .mat-button-focus-overlay{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab[disabled]{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-fab{transition:none;animation:none}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab[disabled]{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-mini-fab{transition:none;animation:none}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button i,.mat-icon-button .mat-icon{line-height:24px}.mat-button-ripple.mat-ripple,.mat-button-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-ripple.mat-ripple:not(:empty){transform:translateZ(0)}.mat-button-focus-overlay{opacity:0;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1),background-color 200ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}.cdk-high-contrast-active .mat-button-focus-overlay{background-color:#fff}.cdk-high-contrast-black-on-white .mat-button-focus-overlay{background-color:#000}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}\\n\"],encapsulation:2,changeDetection:0}),e})(),Jy=(()=>{class e extends Gy{constructor(e,t,n){super(t,e,n)}_haltDisabledEvents(e){this.disabled&&(e.preventDefault(),e.stopImmediatePropagation())}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Up),Eo(Ka),Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"a\",\"mat-button\",\"\"],[\"a\",\"mat-raised-button\",\"\"],[\"a\",\"mat-icon-button\",\"\"],[\"a\",\"mat-fab\",\"\"],[\"a\",\"mat-mini-fab\",\"\"],[\"a\",\"mat-stroked-button\",\"\"],[\"a\",\"mat-flat-button\",\"\"]],hostAttrs:[1,\"mat-focus-indicator\"],hostVars:5,hostBindings:function(e,t){1&e&&Uo(\"click\",(function(e){return t._haltDisabledEvents(e)})),2&e&&(Co(\"tabindex\",t.disabled?-1:t.tabIndex||0)(\"disabled\",t.disabled||null)(\"aria-disabled\",t.disabled.toString()),ua(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\"},exportAs:[\"matButton\",\"matAnchor\"],features:[Ya],attrs:Wy,ngContentSelectors:Uy,decls:4,vars:5,consts:[[1,\"mat-button-wrapper\"],[\"matRipple\",\"\",1,\"mat-button-ripple\",3,\"matRippleDisabled\",\"matRippleCentered\",\"matRippleTrigger\"],[1,\"mat-button-focus-overlay\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"span\",0),ea(1),Ho(),jo(2,\"div\",1),jo(3,\"div\",2)),2&e&&(ys(2),ua(\"mat-button-ripple-round\",t.isRoundButton||t.isIconButton),Po(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleCentered\",t.isIconButton)(\"matRippleTrigger\",t._getHostElement()))},directives:[Cy],styles:[\".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:.04}@media(hover: none){.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-button[disabled],.mat-icon-button[disabled],.mat-stroked-button[disabled],.mat-flat-button[disabled]{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button[disabled]{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}._mat-animation-noopable.mat-raised-button{transition:none;animation:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-ripple.mat-ripple,.mat-stroked-button .mat-button-focus-overlay{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab[disabled]{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-fab{transition:none;animation:none}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab[disabled]{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-mini-fab{transition:none;animation:none}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button i,.mat-icon-button .mat-icon{line-height:24px}.mat-button-ripple.mat-ripple,.mat-button-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-ripple.mat-ripple:not(:empty){transform:translateZ(0)}.mat-button-focus-overlay{opacity:0;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1),background-color 200ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}.cdk-high-contrast-active .mat-button-focus-overlay{background-color:#fff}.cdk-high-contrast-black-on-white .mat-button-focus-overlay{background-color:#000}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}\\n\"],encapsulation:2,changeDetection:0}),e})(),Ky=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Ty,py],py]}),e})();const Zy=[\"*\",[[\"mat-card-footer\"]]],Qy=[\"*\",\"mat-card-footer\"],Xy=[[[\"\",\"mat-card-avatar\",\"\"],[\"\",\"matCardAvatar\",\"\"]],[[\"mat-card-title\"],[\"mat-card-subtitle\"],[\"\",\"mat-card-title\",\"\"],[\"\",\"mat-card-subtitle\",\"\"],[\"\",\"matCardTitle\",\"\"],[\"\",\"matCardSubtitle\",\"\"]],\"*\"],eb=[\"[mat-card-avatar], [matCardAvatar]\",\"mat-card-title, mat-card-subtitle,\\n [mat-card-title], [mat-card-subtitle],\\n [matCardTitle], [matCardSubtitle]\",\"*\"];let tb=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-card-content\"],[\"\",\"mat-card-content\",\"\"],[\"\",\"matCardContent\",\"\"]],hostAttrs:[1,\"mat-card-content\"]}),e})(),nb=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-card-title\"],[\"\",\"mat-card-title\",\"\"],[\"\",\"matCardTitle\",\"\"]],hostAttrs:[1,\"mat-card-title\"]}),e})(),ib=(()=>{class e{constructor(){this.align=\"start\"}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-card-actions\"]],hostAttrs:[1,\"mat-card-actions\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"mat-card-actions-align-end\",\"end\"===t.align)},inputs:{align:\"align\"},exportAs:[\"matCardActions\"]}),e})(),sb=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"mat-card-image\",\"\"],[\"\",\"matCardImage\",\"\"]],hostAttrs:[1,\"mat-card-image\"]}),e})(),rb=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"mat-card-avatar\",\"\"],[\"\",\"matCardAvatar\",\"\"]],hostAttrs:[1,\"mat-card-avatar\"]}),e})(),ob=(()=>{class e{constructor(e){this._animationMode=e}}return e.\\u0275fac=function(t){return new(t||e)(Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-card\"]],hostAttrs:[1,\"mat-card\",\"mat-focus-indicator\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode)},exportAs:[\"matCard\"],ngContentSelectors:Qy,decls:2,vars:0,template:function(e,t){1&e&&(Zo(Zy),ea(0),ea(1,1))},styles:[\".mat-card{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);display:block;position:relative;padding:16px;border-radius:4px}._mat-animation-noopable.mat-card{transition:none;animation:none}.mat-card .mat-divider-horizontal{position:absolute;left:0;width:100%}[dir=rtl] .mat-card .mat-divider-horizontal{left:auto;right:0}.mat-card .mat-divider-horizontal.mat-divider-inset{position:static;margin:0}[dir=rtl] .mat-card .mat-divider-horizontal.mat-divider-inset{margin-right:0}.cdk-high-contrast-active .mat-card{outline:solid 1px}.mat-card-actions,.mat-card-subtitle,.mat-card-content{display:block;margin-bottom:16px}.mat-card-title{display:block;margin-bottom:8px}.mat-card-actions{margin-left:-8px;margin-right:-8px;padding:8px 0}.mat-card-actions-align-end{display:flex;justify-content:flex-end}.mat-card-image{width:calc(100% + 32px);margin:0 -16px 16px -16px}.mat-card-footer{display:block;margin:0 -16px -16px -16px}.mat-card-actions .mat-button,.mat-card-actions .mat-raised-button,.mat-card-actions .mat-stroked-button{margin:0 8px}.mat-card-header{display:flex;flex-direction:row}.mat-card-header .mat-card-title{margin-bottom:12px}.mat-card-header-text{margin:0 16px}.mat-card-avatar{height:40px;width:40px;border-radius:50%;flex-shrink:0;object-fit:cover}.mat-card-title-group{display:flex;justify-content:space-between}.mat-card-sm-image{width:80px;height:80px}.mat-card-md-image{width:112px;height:112px}.mat-card-lg-image{width:152px;height:152px}.mat-card-xl-image{width:240px;height:240px;margin:-8px}.mat-card-title-group>.mat-card-xl-image{margin:-8px 0 8px}@media(max-width: 599px){.mat-card-title-group{margin:0}.mat-card-xl-image{margin-left:0;margin-right:0}}.mat-card>:first-child,.mat-card-content>:first-child{margin-top:0}.mat-card>:last-child:not(.mat-card-footer),.mat-card-content>:last-child:not(.mat-card-footer){margin-bottom:0}.mat-card-image:first-child{margin-top:-16px;border-top-left-radius:inherit;border-top-right-radius:inherit}.mat-card>.mat-card-actions:last-child{margin-bottom:-8px;padding-bottom:0}.mat-card-actions .mat-button:first-child,.mat-card-actions .mat-raised-button:first-child,.mat-card-actions .mat-stroked-button:first-child{margin-left:0;margin-right:0}.mat-card-title:not(:first-child),.mat-card-subtitle:not(:first-child){margin-top:-4px}.mat-card-header .mat-card-subtitle:not(:first-child){margin-top:-8px}.mat-card>.mat-card-xl-image:first-child{margin-top:-8px}.mat-card>.mat-card-xl-image:last-child{margin-bottom:-8px}\\n\"],encapsulation:2,changeDetection:0}),e})(),ab=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-card-header\"]],hostAttrs:[1,\"mat-card-header\"],ngContentSelectors:eb,decls:4,vars:0,consts:[[1,\"mat-card-header-text\"]],template:function(e,t){1&e&&(Zo(Xy),ea(0),Ro(1,\"div\",0),ea(2,1),Ho(),ea(3,2))},encapsulation:2,changeDetection:0}),e})(),lb=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[py],py]}),e})();const cb=[\"input\"],db=function(){return{enterDuration:150}},ub=[\"*\"],hb=new Ve(\"mat-checkbox-default-options\",{providedIn:\"root\",factory:function(){return{color:\"accent\",clickAction:\"check-indeterminate\"}}}),mb=new Ve(\"mat-checkbox-click-action\");let pb=0;const fb={provide:uh,useExisting:Ce(()=>bb),multi:!0};class _b{}class gb{constructor(e){this._elementRef=e}}const yb=yy(_y(gy(fy(gb))));let bb=(()=>{class e extends yb{constructor(e,t,n,i,s,r,o,a){super(e),this._changeDetectorRef=t,this._focusMonitor=n,this._ngZone=i,this._clickAction=r,this._animationMode=o,this._options=a,this.ariaLabel=\"\",this.ariaLabelledby=null,this._uniqueId=`mat-checkbox-${++pb}`,this.id=this._uniqueId,this.labelPosition=\"after\",this.name=null,this.change=new yc,this.indeterminateChange=new yc,this._onTouched=()=>{},this._currentAnimationClass=\"\",this._currentCheckState=0,this._controlValueAccessorChangeFn=()=>{},this._checked=!1,this._disabled=!1,this._indeterminate=!1,this._options=this._options||{},this._options.color&&(this.color=this._options.color),this.tabIndex=parseInt(s)||0,this._focusMonitor.monitor(e,!0).subscribe(e=>{e||Promise.resolve().then(()=>{this._onTouched(),t.markForCheck()})}),this._clickAction=this._clickAction||this._options.clickAction}get inputId(){return`${this.id||this._uniqueId}-input`}get required(){return this._required}set required(e){this._required=hp(e)}ngAfterViewInit(){this._syncIndeterminate(this._indeterminate)}ngAfterViewChecked(){}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}get checked(){return this._checked}set checked(e){e!=this.checked&&(this._checked=e,this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled}set disabled(e){const t=hp(e);t!==this.disabled&&(this._disabled=t,this._changeDetectorRef.markForCheck())}get indeterminate(){return this._indeterminate}set indeterminate(e){const t=e!=this._indeterminate;this._indeterminate=hp(e),t&&(this._transitionCheckState(this._indeterminate?3:this.checked?1:2),this.indeterminateChange.emit(this._indeterminate)),this._syncIndeterminate(this._indeterminate)}_isRippleDisabled(){return this.disableRipple||this.disabled}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}writeValue(e){this.checked=!!e}registerOnChange(e){this._controlValueAccessorChangeFn=e}registerOnTouched(e){this._onTouched=e}setDisabledState(e){this.disabled=e}_getAriaChecked(){return this.checked?\"true\":this.indeterminate?\"mixed\":\"false\"}_transitionCheckState(e){let t=this._currentCheckState,n=this._elementRef.nativeElement;if(t!==e&&(this._currentAnimationClass.length>0&&n.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(t,e),this._currentCheckState=e,this._currentAnimationClass.length>0)){n.classList.add(this._currentAnimationClass);const e=this._currentAnimationClass;this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{n.classList.remove(e)},1e3)})}}_emitChangeEvent(){const e=new _b;e.source=this,e.checked=this.checked,this._controlValueAccessorChangeFn(this.checked),this.change.emit(e)}toggle(){this.checked=!this.checked}_onInputClick(e){e.stopPropagation(),this.disabled||\"noop\"===this._clickAction?this.disabled||\"noop\"!==this._clickAction||(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&\"check\"!==this._clickAction&&Promise.resolve().then(()=>{this._indeterminate=!1,this.indeterminateChange.emit(this._indeterminate)}),this.toggle(),this._transitionCheckState(this._checked?1:2),this._emitChangeEvent())}focus(e=\"keyboard\",t){this._focusMonitor.focusVia(this._inputElement,e,t)}_onInteractionEvent(e){e.stopPropagation()}_getAnimationClassForCheckStateTransition(e,t){if(\"NoopAnimations\"===this._animationMode)return\"\";let n=\"\";switch(e){case 0:if(1===t)n=\"unchecked-checked\";else{if(3!=t)return\"\";n=\"unchecked-indeterminate\"}break;case 2:n=1===t?\"unchecked-checked\":\"unchecked-indeterminate\";break;case 1:n=2===t?\"checked-unchecked\":\"checked-indeterminate\";break;case 3:n=1===t?\"indeterminate-checked\":\"indeterminate-unchecked\"}return`mat-checkbox-anim-${n}`}_syncIndeterminate(e){const t=this._inputElement;t&&(t.nativeElement.indeterminate=e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Qr),Eo(Up),Eo(ld),Oo(\"tabindex\"),Eo(mb,8),Eo(sy,8),Eo(hb,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-checkbox\"]],viewQuery:function(e,t){var n;1&e&&(Ec(cb,!0),Ec(Cy,!0)),2&e&&(Dc(n=Rc())&&(t._inputElement=n.first),Dc(n=Rc())&&(t.ripple=n.first))},hostAttrs:[1,\"mat-checkbox\"],hostVars:12,hostBindings:function(e,t){2&e&&(Ca(\"id\",t.id),Co(\"tabindex\",null),ua(\"mat-checkbox-indeterminate\",t.indeterminate)(\"mat-checkbox-checked\",t.checked)(\"mat-checkbox-disabled\",t.disabled)(\"mat-checkbox-label-before\",\"before\"==t.labelPosition)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],id:\"id\",labelPosition:\"labelPosition\",name:\"name\",required:\"required\",checked:\"checked\",disabled:\"disabled\",indeterminate:\"indeterminate\",value:\"value\"},outputs:{change:\"change\",indeterminateChange:\"indeterminateChange\"},exportAs:[\"matCheckbox\"],features:[Ba([fb]),Ya],ngContentSelectors:ub,decls:17,vars:19,consts:[[1,\"mat-checkbox-layout\"],[\"label\",\"\"],[1,\"mat-checkbox-inner-container\"],[\"type\",\"checkbox\",1,\"mat-checkbox-input\",\"cdk-visually-hidden\",3,\"id\",\"required\",\"checked\",\"disabled\",\"tabIndex\",\"change\",\"click\"],[\"input\",\"\"],[\"matRipple\",\"\",1,\"mat-checkbox-ripple\",\"mat-focus-indicator\",3,\"matRippleTrigger\",\"matRippleDisabled\",\"matRippleRadius\",\"matRippleCentered\",\"matRippleAnimation\"],[1,\"mat-ripple-element\",\"mat-checkbox-persistent-ripple\"],[1,\"mat-checkbox-frame\"],[1,\"mat-checkbox-background\"],[\"version\",\"1.1\",\"focusable\",\"false\",\"viewBox\",\"0 0 24 24\",0,\"xml\",\"space\",\"preserve\",1,\"mat-checkbox-checkmark\"],[\"fill\",\"none\",\"stroke\",\"white\",\"d\",\"M4.1,12.7 9,17.6 20.3,6.3\",1,\"mat-checkbox-checkmark-path\"],[1,\"mat-checkbox-mixedmark\"],[1,\"mat-checkbox-label\",3,\"cdkObserveContent\"],[\"checkboxLabel\",\"\"],[2,\"display\",\"none\"]],template:function(e,t){if(1&e&&(Zo(),Ro(0,\"label\",0,1),Ro(2,\"div\",2),Ro(3,\"input\",3,4),Uo(\"change\",(function(e){return t._onInteractionEvent(e)}))(\"click\",(function(e){return t._onInputClick(e)})),Ho(),Ro(5,\"div\",5),jo(6,\"div\",6),Ho(),jo(7,\"div\",7),Ro(8,\"div\",8),kn(),Ro(9,\"svg\",9),jo(10,\"path\",10),Ho(),Sn(),jo(11,\"div\",11),Ho(),Ho(),Ro(12,\"span\",12,13),Uo(\"cdkObserveContent\",(function(){return t._onLabelTextChange()})),Ro(14,\"span\",14),Sa(15,\"\\xa0\"),Ho(),ea(16),Ho(),Ho()),2&e){const e=Yo(1),n=Yo(13);Co(\"for\",t.inputId),ys(2),ua(\"mat-checkbox-inner-container-no-side-margin\",!n.textContent||!n.textContent.trim()),ys(1),Po(\"id\",t.inputId)(\"required\",t.required)(\"checked\",t.checked)(\"disabled\",t.disabled)(\"tabIndex\",t.tabIndex),Co(\"value\",t.value)(\"name\",t.name)(\"aria-label\",t.ariaLabel||null)(\"aria-labelledby\",t.ariaLabelledby)(\"aria-checked\",t._getAriaChecked()),ys(2),Po(\"matRippleTrigger\",e)(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleRadius\",20)(\"matRippleCentered\",!0)(\"matRippleAnimation\",gc(18,db))}},directives:[Cy,Yp],styles:[\"@keyframes mat-checkbox-fade-in-background{0%{opacity:0}50%{opacity:1}}@keyframes mat-checkbox-fade-out-background{0%,50%{opacity:1}100%{opacity:0}}@keyframes mat-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:22.910259}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1)}100%{stroke-dashoffset:0}}@keyframes mat-checkbox-unchecked-indeterminate-mixedmark{0%,68.2%{transform:scaleX(0)}68.2%{animation-timing-function:cubic-bezier(0, 0, 0, 1)}100%{transform:scaleX(1)}}@keyframes mat-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);stroke-dashoffset:0}to{stroke-dashoffset:-22.910259}}@keyframes mat-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(45deg)}}@keyframes mat-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:0;transform:rotate(45deg)}to{opacity:1;transform:rotate(360deg)}}@keyframes mat-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:0;transform:rotate(-45deg)}to{opacity:1;transform:rotate(0deg)}}@keyframes mat-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(315deg)}}@keyframes mat-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;opacity:1;transform:scaleX(1)}32.8%,100%{opacity:0;transform:scaleX(0)}}.mat-checkbox-background,.mat-checkbox-frame{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:2px;box-sizing:border-box;pointer-events:none}.mat-checkbox{transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);cursor:pointer;-webkit-tap-highlight-color:transparent}._mat-animation-noopable.mat-checkbox{transition:none;animation:none}.mat-checkbox .mat-ripple-element:not(.mat-checkbox-persistent-ripple){opacity:.16}.mat-checkbox-layout{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:inherit;align-items:baseline;vertical-align:middle;display:inline-flex;white-space:nowrap}.mat-checkbox-label{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.mat-checkbox-inner-container{display:inline-block;height:16px;line-height:0;margin:auto;margin-right:8px;order:0;position:relative;vertical-align:middle;white-space:nowrap;width:16px;flex-shrink:0}[dir=rtl] .mat-checkbox-inner-container{margin-left:8px;margin-right:auto}.mat-checkbox-inner-container-no-side-margin{margin-left:0;margin-right:0}.mat-checkbox-frame{background-color:transparent;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1);border-width:2px;border-style:solid}._mat-animation-noopable .mat-checkbox-frame{transition:none}.mat-checkbox.cdk-keyboard-focused .cdk-high-contrast-active .mat-checkbox-frame{border-style:dotted}.mat-checkbox-background{align-items:center;display:inline-flex;justify-content:center;transition:background-color 90ms cubic-bezier(0, 0, 0.2, 0.1),opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}._mat-animation-noopable .mat-checkbox-background{transition:none}.cdk-high-contrast-active .mat-checkbox .mat-checkbox-background{background:none}.mat-checkbox-persistent-ripple{width:100%;height:100%;transform:none}.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:.04}.mat-checkbox.cdk-keyboard-focused .mat-checkbox-persistent-ripple{opacity:.12}.mat-checkbox-persistent-ripple,.mat-checkbox.mat-checkbox-disabled .mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:0}@media(hover: none){.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{display:none}}.mat-checkbox-checkmark{top:0;left:0;right:0;bottom:0;position:absolute;width:100%}.mat-checkbox-checkmark-path{stroke-dashoffset:22.910259;stroke-dasharray:22.910259;stroke-width:2.1333333333px}.cdk-high-contrast-black-on-white .mat-checkbox-checkmark-path{stroke:#000 !important}.mat-checkbox-mixedmark{width:calc(100% - 6px);height:2px;opacity:0;transform:scaleX(0) rotate(0deg);border-radius:2px}.cdk-high-contrast-active .mat-checkbox-mixedmark{height:0;border-top:solid 2px;margin-top:2px}.mat-checkbox-label-before .mat-checkbox-inner-container{order:1;margin-left:8px;margin-right:auto}[dir=rtl] .mat-checkbox-label-before .mat-checkbox-inner-container{margin-left:auto;margin-right:8px}.mat-checkbox-checked .mat-checkbox-checkmark{opacity:1}.mat-checkbox-checked .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-checked .mat-checkbox-mixedmark{transform:scaleX(1) rotate(-45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark{opacity:0;transform:rotate(45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-indeterminate .mat-checkbox-mixedmark{opacity:1;transform:scaleX(1) rotate(0deg)}.mat-checkbox-unchecked .mat-checkbox-background{background-color:transparent}.mat-checkbox-disabled{cursor:default}.cdk-high-contrast-active .mat-checkbox-disabled{opacity:.5}.mat-checkbox-anim-unchecked-checked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-checked .mat-checkbox-checkmark-path{animation:180ms linear 0ms mat-checkbox-unchecked-checked-checkmark-path}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-unchecked-indeterminate-mixedmark}.mat-checkbox-anim-checked-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-checked-unchecked .mat-checkbox-checkmark-path{animation:90ms linear 0ms mat-checkbox-checked-unchecked-checkmark-path}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-checkmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-checkmark}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-mixedmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-checkmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-checkmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-mixedmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-mixedmark}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-mixedmark{animation:300ms linear 0ms mat-checkbox-indeterminate-unchecked-mixedmark}.mat-checkbox-input{bottom:0;left:50%}.mat-checkbox .mat-checkbox-ripple{position:absolute;left:calc(50% - 20px);top:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}\\n\"],encapsulation:2,changeDetection:0}),e})(),vb=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),wb=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Ty,py,Ep,vb],py,vb]}),e})();function Mb(e,t,n,s){return i(n)&&(s=n,n=void 0),s?Mb(e,t,n).pipe(H(e=>l(e)?s(...e):s(e))):new v(i=>{!function e(t,n,i,s,r){let o;if(function(e){return e&&\"function\"==typeof e.addEventListener&&\"function\"==typeof e.removeEventListener}(t)){const e=t;t.addEventListener(n,i,r),o=()=>e.removeEventListener(n,i,r)}else if(function(e){return e&&\"function\"==typeof e.on&&\"function\"==typeof e.off}(t)){const e=t;t.on(n,i),o=()=>e.off(n,i)}else if(function(e){return e&&\"function\"==typeof e.addListener&&\"function\"==typeof e.removeListener}(t)){const e=t;t.addListener(n,i),o=()=>e.removeListener(n,i)}else{if(!t||!t.length)throw new TypeError(\"Invalid event target\");for(let o=0,a=t.length;o1?Array.prototype.slice.call(arguments):e)}),i,n)})}let kb=1;const Sb=(()=>Promise.resolve())(),Lb={};function xb(e){return e in Lb&&(delete Lb[e],!0)}const Cb={setImmediate(e){const t=kb++;return Lb[t]=!0,Sb.then(()=>xb(t)&&e()),t},clearImmediate(e){xb(e)}};class Tb extends Qm{constructor(e,t){super(e,t),this.scheduler=e,this.work=t}requestAsyncId(e,t,n=0){return null!==n&&n>0?super.requestAsyncId(e,t,n):(e.actions.push(this),e.scheduled||(e.scheduled=Cb.setImmediate(e.flush.bind(e,null))))}recycleAsyncId(e,t,n=0){if(null!==n&&n>0||null===n&&this.delay>0)return super.recycleAsyncId(e,t,n);0===e.actions.length&&(Cb.clearImmediate(t),e.scheduled=void 0)}}class Db extends ep{flush(e){this.active=!0,this.scheduled=void 0;const{actions:t}=this;let n,i=-1,s=t.length;e=e||t.shift();do{if(n=e.execute(e.state,e.delay))break}while(++in.lift(new Ob(e,t))}class Ob{constructor(e,t){this.compare=e,this.keySelector=t}call(e,t){return t.subscribe(new Ib(e,this.compare,this.keySelector))}}class Ib extends p{constructor(e,t,n){super(e),this.keySelector=n,this.hasKey=!1,\"function\"==typeof t&&(this.compare=t)}compare(e,t){return e===t}_next(e){let t;try{const{keySelector:n}=this;t=n?n(e):e}catch(i){return this.destination.error(i)}let n=!1;if(this.hasKey)try{const{compare:e}=this;n=e(this.key,t)}catch(i){return this.destination.error(i)}else this.hasKey=!0;n||(this.key=t,this.destination.next(e))}}class Pb{constructor(e){this.durationSelector=e}call(e,t){return t.subscribe(new Ab(e,this.durationSelector))}}class Ab extends R{constructor(e,t){super(e),this.durationSelector=t,this.hasValue=!1}_next(e){if(this.value=e,this.hasValue=!0,!this.throttled){let n;try{const{durationSelector:t}=this;n=t(e)}catch(t){return this.destination.error(t)}const i=A(this,n);!i||i.closed?this.clearThrottle():this.add(this.throttled=i)}}clearThrottle(){const{value:e,hasValue:t,throttled:n}=this;n&&(this.remove(n),this.throttled=null,n.unsubscribe()),t&&(this.value=null,this.hasValue=!1,this.destination.next(e))}notifyNext(e,t,n,i){this.clearThrottle()}notifyComplete(){this.clearThrottle()}}function Rb(e){return!l(e)&&e-parseFloat(e)+1>=0}function Hb(e=0,t,n){let i=-1;return Rb(t)?i=Number(t)<1?1:Number(t):C(t)&&(n=t),C(n)||(n=tp),new v(t=>{const s=Rb(e)?e:+e-n.now();return n.schedule(jb,s,{index:0,period:i,subscriber:t})})}function jb(e){const{index:t,period:n,subscriber:i}=e;if(i.next(t),!i.closed){if(-1===n)return i.complete();e.index=t+1,this.schedule(e,n)}}function Fb(e,t=tp){return n=()=>Hb(e,t),function(e){return e.lift(new Pb(n))};var n}function Nb(e){return t=>t.lift(new zb(e))}class zb{constructor(e){this.notifier=e}call(e,t){const n=new Vb(e),i=A(n,this.notifier);return i&&!n.seenValue?(n.add(i),t.subscribe(n)):n}}class Vb extends R{constructor(e){super(e),this.seenValue=!1}notifyNext(e,t,n,i,s){this.seenValue=!0,this.complete()}notifyComplete(){}}function Wb(e,t){return\"function\"==typeof t?n=>n.pipe(Wb((n,i)=>z(e(n,i)).pipe(H((e,s)=>t(n,e,i,s))))):t=>t.lift(new Ub(e))}class Ub{constructor(e){this.project=e}call(e,t){return t.subscribe(new $b(e,this.project))}}class $b extends R{constructor(e,t){super(e),this.project=t,this.index=0}_next(e){let t;const n=this.index++;try{t=this.project(e,n)}catch(i){return void this.destination.error(i)}this._innerSub(t,e,n)}_innerSub(e,t,n){const i=this.innerSubscription;i&&i.unsubscribe();const s=new T(this,t,n),r=this.destination;r.add(s),this.innerSubscription=A(this,e,void 0,void 0,s),this.innerSubscription!==s&&r.add(this.innerSubscription)}_complete(){const{innerSubscription:e}=this;e&&!e.closed||super._complete(),this.unsubscribe()}_unsubscribe(){this.innerSubscription=null}notifyComplete(e){this.destination.remove(e),this.innerSubscription=null,this.isStopped&&super._complete()}notifyNext(e,t,n,i,s){this.destination.next(t)}}class Bb extends Qm{constructor(e,t){super(e,t),this.scheduler=e,this.work=t}schedule(e,t=0){return t>0?super.schedule(e,t):(this.delay=t,this.state=e,this.scheduler.flush(this),this)}execute(e,t){return t>0||this.closed?super.execute(e,t):this._execute(e,t)}requestAsyncId(e,t,n=0){return null!==n&&n>0||null===n&&this.delay>0?super.requestAsyncId(e,t,n):e.flush(this)}}class qb extends ep{}const Gb=new qb(Bb);function Jb(e,t){return new v(t?n=>t.schedule(Kb,0,{error:e,subscriber:n}):t=>t.error(e))}function Kb({error:e,subscriber:t}){t.error(e)}let Zb=(()=>{class e{constructor(e,t,n){this.kind=e,this.value=t,this.error=n,this.hasValue=\"N\"===e}observe(e){switch(this.kind){case\"N\":return e.next&&e.next(this.value);case\"E\":return e.error&&e.error(this.error);case\"C\":return e.complete&&e.complete()}}do(e,t,n){switch(this.kind){case\"N\":return e&&e(this.value);case\"E\":return t&&t(this.error);case\"C\":return n&&n()}}accept(e,t,n){return e&&\"function\"==typeof e.next?this.observe(e):this.do(e,t,n)}toObservable(){switch(this.kind){case\"N\":return xu(this.value);case\"E\":return Jb(this.error);case\"C\":return lp()}throw new Error(\"unexpected notification kind value\")}static createNext(t){return void 0!==t?new e(\"N\",t):e.undefinedValueNotification}static createError(t){return new e(\"E\",void 0,t)}static createComplete(){return e.completeNotification}}return e.completeNotification=new e(\"C\"),e.undefinedValueNotification=new e(\"N\",void 0),e})();class Qb extends p{constructor(e,t,n=0){super(e),this.scheduler=t,this.delay=n}static dispatch(e){const{notification:t,destination:n}=e;t.observe(n),this.unsubscribe()}scheduleMessage(e){this.destination.add(this.scheduler.schedule(Qb.dispatch,this.delay,new Xb(e,this.destination)))}_next(e){this.scheduleMessage(Zb.createNext(e))}_error(e){this.scheduleMessage(Zb.createError(e)),this.unsubscribe()}_complete(){this.scheduleMessage(Zb.createComplete()),this.unsubscribe()}}class Xb{constructor(e,t){this.notification=e,this.destination=t}}class ev extends L{constructor(e=Number.POSITIVE_INFINITY,t=Number.POSITIVE_INFINITY,n){super(),this.scheduler=n,this._events=[],this._infiniteTimeWindow=!1,this._bufferSize=e<1?1:e,this._windowTime=t<1?1:t,t===Number.POSITIVE_INFINITY?(this._infiniteTimeWindow=!0,this.next=this.nextInfiniteTimeWindow):this.next=this.nextTimeWindow}nextInfiniteTimeWindow(e){const t=this._events;t.push(e),t.length>this._bufferSize&&t.shift(),super.next(e)}nextTimeWindow(e){this._events.push(new tv(this._getNow(),e)),this._trimBufferThenGetEvents(),super.next(e)}_subscribe(e){const t=this._infiniteTimeWindow,n=t?this._events:this._trimBufferThenGetEvents(),i=this.scheduler,s=n.length;let r;if(this.closed)throw new M;if(this.isStopped||this.hasError?r=u.EMPTY:(this.observers.push(e),r=new k(this,e)),i&&e.add(e=new Qb(e,i)),t)for(let o=0;ot&&(r=Math.max(r,s-t)),r>0&&i.splice(0,r),i}}class tv{constructor(e,t){this.time=e,this.value=t}}function nv(e,t,n){let i;return i=e&&\"object\"==typeof e?e:{bufferSize:e,windowTime:t,refCount:!1,scheduler:n},e=>e.lift(function({bufferSize:e=Number.POSITIVE_INFINITY,windowTime:t=Number.POSITIVE_INFINITY,refCount:n,scheduler:i}){let s,r,o=0,a=!1,l=!1;return function(c){o++,s&&!a||(a=!1,s=new ev(e,t,i),r=c.subscribe({next(e){s.next(e)},error(e){a=!0,s.error(e)},complete(){l=!0,r=void 0,s.complete()}}));const d=s.subscribe(this);this.add(()=>{o--,d.unsubscribe(),r&&!l&&n&&0===o&&(r.unsubscribe(),r=void 0,s=void 0)})}}(i))}class iv{constructor(e=!1,t,n=!0){this._multiple=e,this._emitChanges=n,this._selection=new Set,this._deselectedToEmit=[],this._selectedToEmit=[],this.changed=new L,t&&t.length&&(e?t.forEach(e=>this._markSelected(e)):this._markSelected(t[0]),this._selectedToEmit.length=0)}get selected(){return this._selected||(this._selected=Array.from(this._selection.values())),this._selected}select(...e){this._verifyValueAssignment(e),e.forEach(e=>this._markSelected(e)),this._emitChangeEvent()}deselect(...e){this._verifyValueAssignment(e),e.forEach(e=>this._unmarkSelected(e)),this._emitChangeEvent()}toggle(e){this.isSelected(e)?this.deselect(e):this.select(e)}clear(){this._unmarkAll(),this._emitChangeEvent()}isSelected(e){return this._selection.has(e)}isEmpty(){return 0===this._selection.size}hasValue(){return!this.isEmpty()}sort(e){this._multiple&&this.selected&&this._selected.sort(e)}isMultipleSelection(){return this._multiple}_emitChangeEvent(){this._selected=null,(this._selectedToEmit.length||this._deselectedToEmit.length)&&(this.changed.next({source:this,added:this._selectedToEmit,removed:this._deselectedToEmit}),this._deselectedToEmit=[],this._selectedToEmit=[])}_markSelected(e){this.isSelected(e)||(this._multiple||this._unmarkAll(),this._selection.add(e),this._emitChanges&&this._selectedToEmit.push(e))}_unmarkSelected(e){this.isSelected(e)&&(this._selection.delete(e),this._emitChanges&&this._deselectedToEmit.push(e))}_unmarkAll(){this.isEmpty()||this._selection.forEach(e=>this._unmarkSelected(e))}_verifyValueAssignment(e){if(e.length>1&&!this._multiple)throw Error(\"Cannot pass multiple values into SelectionModel with single-value mode.\")}}let sv=(()=>{class e{constructor(e,t){this._ngZone=e,this._platform=t,this._scrolled=new L,this._globalSubscription=null,this._scrolledCount=0,this.scrollContainers=new Map}register(e){this.scrollContainers.has(e)||this.scrollContainers.set(e,e.elementScrolled().subscribe(()=>this._scrolled.next(e)))}deregister(e){const t=this.scrollContainers.get(e);t&&(t.unsubscribe(),this.scrollContainers.delete(e))}scrolled(e=20){return this._platform.isBrowser?new v(t=>{this._globalSubscription||this._addGlobalListener();const n=e>0?this._scrolled.pipe(Fb(e)).subscribe(t):this._scrolled.subscribe(t);return this._scrolledCount++,()=>{n.unsubscribe(),this._scrolledCount--,this._scrolledCount||this._removeGlobalListener()}}):xu()}ngOnDestroy(){this._removeGlobalListener(),this.scrollContainers.forEach((e,t)=>this.deregister(t)),this._scrolled.complete()}ancestorScrolled(e,t){const n=this.getAncestorScrollContainers(e);return this.scrolled(t).pipe(Tu(e=>!e||n.indexOf(e)>-1))}getAncestorScrollContainers(e){const t=[];return this.scrollContainers.forEach((n,i)=>{this._scrollableContainsElement(i,e)&&t.push(i)}),t}_scrollableContainsElement(e,t){let n=t.nativeElement,i=e.getElementRef().nativeElement;do{if(n==i)return!0}while(n=n.parentElement);return!1}_addGlobalListener(){this._globalSubscription=this._ngZone.runOutsideAngular(()=>Mb(window.document,\"scroll\").subscribe(()=>this._scrolled.next()))}_removeGlobalListener(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ld),Qe(bp))},e.\\u0275prov=pe({factory:function(){return new e(Qe(ld),Qe(bp))},token:e,providedIn:\"root\"}),e})(),rv=(()=>{class e{constructor(e,t,n,i){this.elementRef=e,this.scrollDispatcher=t,this.ngZone=n,this.dir=i,this._destroyed=new L,this._elementScrolled=new v(e=>this.ngZone.runOutsideAngular(()=>Mb(this.elementRef.nativeElement,\"scroll\").pipe(Nb(this._destroyed)).subscribe(e)))}ngOnInit(){this.scrollDispatcher.register(this)}ngOnDestroy(){this.scrollDispatcher.deregister(this),this._destroyed.next(),this._destroyed.complete()}elementScrolled(){return this._elementScrolled}getElementRef(){return this.elementRef}scrollTo(e){const t=this.elementRef.nativeElement,n=this.dir&&\"rtl\"==this.dir.value;e.left=null==e.left?n?e.end:e.start:e.left,e.right=null==e.right?n?e.start:e.end:e.right,null!=e.bottom&&(e.top=t.scrollHeight-t.clientHeight-e.bottom),n&&Cp()!=Lp.NORMAL?(null!=e.left&&(e.right=t.scrollWidth-t.clientWidth-e.left),Cp()==Lp.INVERTED?e.left=e.right:Cp()==Lp.NEGATED&&(e.left=e.right?-e.right:e.right)):null!=e.right&&(e.left=t.scrollWidth-t.clientWidth-e.right),this._applyScrollToOptions(e)}_applyScrollToOptions(e){const t=this.elementRef.nativeElement;\"object\"==typeof document&&\"scrollBehavior\"in document.documentElement.style?t.scrollTo(e):(null!=e.top&&(t.scrollTop=e.top),null!=e.left&&(t.scrollLeft=e.left))}measureScrollOffset(e){const t=this.elementRef.nativeElement;if(\"top\"==e)return t.scrollTop;if(\"bottom\"==e)return t.scrollHeight-t.clientHeight-t.scrollTop;const n=this.dir&&\"rtl\"==this.dir.value;return\"start\"==e?e=n?\"right\":\"left\":\"end\"==e&&(e=n?\"left\":\"right\"),n&&Cp()==Lp.INVERTED?\"left\"==e?t.scrollWidth-t.clientWidth-t.scrollLeft:t.scrollLeft:n&&Cp()==Lp.NEGATED?\"left\"==e?t.scrollLeft+t.scrollWidth-t.clientWidth:-t.scrollLeft:\"left\"==e?t.scrollLeft:t.scrollWidth-t.clientWidth-t.scrollLeft}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(sv),Eo(ld),Eo(Gp,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdk-scrollable\",\"\"],[\"\",\"cdkScrollable\",\"\"]]}),e})(),ov=(()=>{class e{constructor(e,t){this._platform=e,t.runOutsideAngular(()=>{this._change=e.isBrowser?G(Mb(window,\"resize\"),Mb(window,\"orientationchange\")):xu(),this._invalidateCache=this.change().subscribe(()=>this._updateViewportSize())})}ngOnDestroy(){this._invalidateCache.unsubscribe()}getViewportSize(){this._viewportSize||this._updateViewportSize();const e={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),e}getViewportRect(){const e=this.getViewportScrollPosition(),{width:t,height:n}=this.getViewportSize();return{top:e.top,left:e.left,bottom:e.top+n,right:e.left+t,height:n,width:t}}getViewportScrollPosition(){if(!this._platform.isBrowser)return{top:0,left:0};const e=document.documentElement,t=e.getBoundingClientRect();return{top:-t.top||document.body.scrollTop||window.scrollY||e.scrollTop||0,left:-t.left||document.body.scrollLeft||window.scrollX||e.scrollLeft||0}}change(e=20){return e>0?this._change.pipe(Fb(e)):this._change}_updateViewportSize(){this._viewportSize=this._platform.isBrowser?{width:window.innerWidth,height:window.innerHeight}:{width:0,height:0}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(bp),Qe(ld))},e.\\u0275prov=pe({factory:function(){return new e(Qe(bp),Qe(ld))},token:e,providedIn:\"root\"}),e})(),av=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Jp,vp],Jp]}),e})();function lv(){throw Error(\"Host already has a portal attached\")}class cv{attach(e){return null==e&&function(){throw Error(\"Attempting to attach a portal to a null PortalOutlet\")}(),e.hasAttached()&&lv(),this._attachedHost=e,e.attach(this)}detach(){let e=this._attachedHost;null==e?function(){throw Error(\"Attempting to detach a portal that is not attached to a host\")}():(this._attachedHost=null,e.detach())}get isAttached(){return null!=this._attachedHost}setAttachedHost(e){this._attachedHost=e}}class dv extends cv{constructor(e,t,n,i){super(),this.component=e,this.viewContainerRef=t,this.injector=n,this.componentFactoryResolver=i}}class uv extends cv{constructor(e,t,n){super(),this.templateRef=e,this.viewContainerRef=t,this.context=n}get origin(){return this.templateRef.elementRef}attach(e,t=this.context){return this.context=t,super.attach(e)}detach(){return this.context=void 0,super.detach()}}class hv extends cv{constructor(e){super(),this.element=e instanceof Ka?e.nativeElement:e}}class mv{constructor(){this._isDisposed=!1,this.attachDomPortal=null}hasAttached(){return!!this._attachedPortal}attach(e){return e||function(){throw Error(\"Must provide a portal to attach\")}(),this.hasAttached()&&lv(),this._isDisposed&&function(){throw Error(\"This PortalOutlet has already been disposed\")}(),e instanceof dv?(this._attachedPortal=e,this.attachComponentPortal(e)):e instanceof uv?(this._attachedPortal=e,this.attachTemplatePortal(e)):this.attachDomPortal&&e instanceof hv?(this._attachedPortal=e,this.attachDomPortal(e)):void function(){throw Error(\"Attempting to attach an unknown Portal type. BasePortalOutlet accepts either a ComponentPortal or a TemplatePortal.\")}()}detach(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()}dispose(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0}setDisposeFn(e){this._disposeFn=e}_invokeDisposeFn(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}class pv extends mv{constructor(e,t,n,i,s){super(),this.outletElement=e,this._componentFactoryResolver=t,this._appRef=n,this._defaultInjector=i,this.attachDomPortal=e=>{if(!this._document)throw Error(\"Cannot attach DOM portal without _document constructor parameter\");const t=e.element;if(!t.parentNode)throw Error(\"DOM portal content must be attached to a parent node.\");const n=this._document.createComment(\"dom-portal\");t.parentNode.insertBefore(n,t),this.outletElement.appendChild(t),super.setDisposeFn(()=>{n.parentNode&&n.parentNode.replaceChild(t,n)})},this._document=s}attachComponentPortal(e){const t=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component);let n;return e.viewContainerRef?(n=e.viewContainerRef.createComponent(t,e.viewContainerRef.length,e.injector||e.viewContainerRef.injector),this.setDisposeFn(()=>n.destroy())):(n=t.create(e.injector||this._defaultInjector),this._appRef.attachView(n.hostView),this.setDisposeFn(()=>{this._appRef.detachView(n.hostView),n.destroy()})),this.outletElement.appendChild(this._getComponentRootNode(n)),n}attachTemplatePortal(e){let t=e.viewContainerRef,n=t.createEmbeddedView(e.templateRef,e.context);return n.detectChanges(),n.rootNodes.forEach(e=>this.outletElement.appendChild(e)),this.setDisposeFn(()=>{let e=t.indexOf(n);-1!==e&&t.remove(e)}),n}dispose(){super.dispose(),null!=this.outletElement.parentNode&&this.outletElement.parentNode.removeChild(this.outletElement)}_getComponentRootNode(e){return e.hostView.rootNodes[0]}}let fv=(()=>{class e extends mv{constructor(e,t,n){super(),this._componentFactoryResolver=e,this._viewContainerRef=t,this._isInitialized=!1,this.attached=new yc,this.attachDomPortal=e=>{if(!this._document)throw Error(\"Cannot attach DOM portal without _document constructor parameter\");const t=e.element;if(!t.parentNode)throw Error(\"DOM portal content must be attached to a parent node.\");const n=this._document.createComment(\"dom-portal\");e.setAttachedHost(this),t.parentNode.insertBefore(n,t),this._getRootNode().appendChild(t),super.setDisposeFn(()=>{n.parentNode&&n.parentNode.replaceChild(t,n)})},this._document=n}get portal(){return this._attachedPortal}set portal(e){(!this.hasAttached()||e||this._isInitialized)&&(this.hasAttached()&&super.detach(),e&&super.attach(e),this._attachedPortal=e)}get attachedRef(){return this._attachedRef}ngOnInit(){this._isInitialized=!0}ngOnDestroy(){super.dispose(),this._attachedPortal=null,this._attachedRef=null}attachComponentPortal(e){e.setAttachedHost(this);const t=null!=e.viewContainerRef?e.viewContainerRef:this._viewContainerRef,n=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component),i=t.createComponent(n,t.length,e.injector||t.injector);return t!==this._viewContainerRef&&this._getRootNode().appendChild(i.hostView.rootNodes[0]),super.setDisposeFn(()=>i.destroy()),this._attachedPortal=e,this._attachedRef=i,this.attached.emit(i),i}attachTemplatePortal(e){e.setAttachedHost(this);const t=this._viewContainerRef.createEmbeddedView(e.templateRef,e.context);return super.setDisposeFn(()=>this._viewContainerRef.clear()),this._attachedPortal=e,this._attachedRef=t,this.attached.emit(t),t}_getRootNode(){const e=this._viewContainerRef.element.nativeElement;return e.nodeType===e.ELEMENT_NODE?e:e.parentNode}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ja),Eo(Ml),Eo(Nd))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdkPortalOutlet\",\"\"]],inputs:{portal:[\"cdkPortalOutlet\",\"portal\"]},outputs:{attached:\"attached\"},exportAs:[\"cdkPortalOutlet\"],features:[Ya]}),e})(),_v=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();class gv{constructor(e,t){this._viewportRuler=e,this._previousHTMLStyles={top:\"\",left:\"\"},this._isEnabled=!1,this._document=t}attach(){}enable(){if(this._canBeEnabled()){const e=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=e.style.left||\"\",this._previousHTMLStyles.top=e.style.top||\"\",e.style.left=fp(-this._previousScrollPosition.left),e.style.top=fp(-this._previousScrollPosition.top),e.classList.add(\"cdk-global-scrollblock\"),this._isEnabled=!0}}disable(){if(this._isEnabled){const e=this._document.documentElement,t=e.style,n=this._document.body.style,i=t.scrollBehavior||\"\",s=n.scrollBehavior||\"\";this._isEnabled=!1,t.left=this._previousHTMLStyles.left,t.top=this._previousHTMLStyles.top,e.classList.remove(\"cdk-global-scrollblock\"),t.scrollBehavior=n.scrollBehavior=\"auto\",window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),t.scrollBehavior=i,n.scrollBehavior=s}}_canBeEnabled(){if(this._document.documentElement.classList.contains(\"cdk-global-scrollblock\")||this._isEnabled)return!1;const e=this._document.body,t=this._viewportRuler.getViewportSize();return e.scrollHeight>t.height||e.scrollWidth>t.width}}function yv(){return Error(\"Scroll strategy has already been attached.\")}class bv{constructor(e,t,n,i){this._scrollDispatcher=e,this._ngZone=t,this._viewportRuler=n,this._config=i,this._scrollSubscription=null,this._detach=()=>{this.disable(),this._overlayRef.hasAttached()&&this._ngZone.run(()=>this._overlayRef.detach())}}attach(e){if(this._overlayRef)throw yv();this._overlayRef=e}enable(){if(this._scrollSubscription)return;const e=this._scrollDispatcher.scrolled(0);this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=e.subscribe(()=>{const e=this._viewportRuler.getViewportScrollPosition().top;Math.abs(e-this._initialScrollPosition)>this._config.threshold?this._detach():this._overlayRef.updatePosition()})):this._scrollSubscription=e.subscribe(this._detach)}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}class vv{enable(){}disable(){}attach(){}}function wv(e,t){return t.some(t=>e.bottomt.bottom||e.rightt.right)}function Mv(e,t){return t.some(t=>e.topt.bottom||e.leftt.right)}class kv{constructor(e,t,n,i){this._scrollDispatcher=e,this._viewportRuler=t,this._ngZone=n,this._config=i,this._scrollSubscription=null}attach(e){if(this._overlayRef)throw yv();this._overlayRef=e}enable(){this._scrollSubscription||(this._scrollSubscription=this._scrollDispatcher.scrolled(this._config?this._config.scrollThrottle:0).subscribe(()=>{if(this._overlayRef.updatePosition(),this._config&&this._config.autoClose){const e=this._overlayRef.overlayElement.getBoundingClientRect(),{width:t,height:n}=this._viewportRuler.getViewportSize();wv(e,[{width:t,height:n,bottom:n,right:t,top:0,left:0}])&&(this.disable(),this._ngZone.run(()=>this._overlayRef.detach()))}}))}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}let Sv=(()=>{class e{constructor(e,t,n,i){this._scrollDispatcher=e,this._viewportRuler=t,this._ngZone=n,this.noop=()=>new vv,this.close=e=>new bv(this._scrollDispatcher,this._ngZone,this._viewportRuler,e),this.block=()=>new gv(this._viewportRuler,this._document),this.reposition=e=>new kv(this._scrollDispatcher,this._viewportRuler,this._ngZone,e),this._document=i}}return e.\\u0275fac=function(t){return new(t||e)(Qe(sv),Qe(ov),Qe(ld),Qe(Nd))},e.\\u0275prov=pe({factory:function(){return new e(Qe(sv),Qe(ov),Qe(ld),Qe(Nd))},token:e,providedIn:\"root\"}),e})();class Lv{constructor(e){if(this.scrollStrategy=new vv,this.panelClass=\"\",this.hasBackdrop=!1,this.backdropClass=\"cdk-overlay-dark-backdrop\",this.disposeOnNavigation=!1,e){const t=Object.keys(e);for(const n of t)void 0!==e[n]&&(this[n]=e[n])}}}class xv{constructor(e,t,n,i,s){this.offsetX=n,this.offsetY=i,this.panelClass=s,this.originX=e.originX,this.originY=e.originY,this.overlayX=t.overlayX,this.overlayY=t.overlayY}}class Cv{constructor(e,t){this.connectionPair=e,this.scrollableViewProperties=t}}function Tv(e,t){if(\"top\"!==t&&\"bottom\"!==t&&\"center\"!==t)throw Error(`ConnectedPosition: Invalid ${e} \"${t}\". `+'Expected \"top\", \"bottom\" or \"center\".')}function Dv(e,t){if(\"start\"!==t&&\"end\"!==t&&\"center\"!==t)throw Error(`ConnectedPosition: Invalid ${e} \"${t}\". `+'Expected \"start\", \"end\" or \"center\".')}let Yv=(()=>{class e{constructor(e){this._attachedOverlays=[],this._keydownListener=e=>{const t=this._attachedOverlays;for(let n=t.length-1;n>-1;n--)if(t[n]._keydownEventSubscriptions>0){t[n]._keydownEvents.next(e);break}},this._document=e}ngOnDestroy(){this._detach()}add(e){this.remove(e),this._isAttached||(this._document.body.addEventListener(\"keydown\",this._keydownListener),this._isAttached=!0),this._attachedOverlays.push(e)}remove(e){const t=this._attachedOverlays.indexOf(e);t>-1&&this._attachedOverlays.splice(t,1),0===this._attachedOverlays.length&&this._detach()}_detach(){this._isAttached&&(this._document.body.removeEventListener(\"keydown\",this._keydownListener),this._isAttached=!1)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({factory:function(){return new e(Qe(Nd))},token:e,providedIn:\"root\"}),e})();const Ev=!(\"undefined\"==typeof window||!window||!window.__karma__&&!window.jasmine);let Ov=(()=>{class e{constructor(e,t){this._platform=t,this._document=e}ngOnDestroy(){const e=this._containerElement;e&&e.parentNode&&e.parentNode.removeChild(e)}getContainerElement(){return this._containerElement||this._createContainer(),this._containerElement}_createContainer(){const e=this._platform?this._platform.isBrowser:\"undefined\"!=typeof window;if(e||Ev){const e=this._document.querySelectorAll('.cdk-overlay-container[platform=\"server\"], .cdk-overlay-container[platform=\"test\"]');for(let t=0;tthis._backdropClick.next(e),this._keydownEventsObservable=new v(e=>{const t=this._keydownEvents.subscribe(e);return this._keydownEventSubscriptions++,()=>{t.unsubscribe(),this._keydownEventSubscriptions--}}),this._keydownEvents=new L,this._keydownEventSubscriptions=0,i.scrollStrategy&&(this._scrollStrategy=i.scrollStrategy,this._scrollStrategy.attach(this)),this._positionStrategy=i.positionStrategy}get overlayElement(){return this._pane}get backdropElement(){return this._backdropElement}get hostElement(){return this._host}attach(e){let t=this._portalOutlet.attach(e);return this._positionStrategy&&this._positionStrategy.attach(this),!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._scrollStrategy&&this._scrollStrategy.enable(),this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(()=>{this.hasAttached()&&this.updatePosition()}),this._togglePointerEvents(!0),this._config.hasBackdrop&&this._attachBackdrop(),this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!0),this._attachments.next(),this._keyboardDispatcher.add(this),this._config.disposeOnNavigation&&this._location&&(this._locationChanges=this._location.subscribe(()=>this.dispose())),t}detach(){if(!this.hasAttached())return;this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._scrollStrategy&&this._scrollStrategy.disable();const e=this._portalOutlet.detach();return this._detachments.next(),this._keyboardDispatcher.remove(this),this._detachContentWhenStable(),this._locationChanges.unsubscribe(),e}dispose(){const e=this.hasAttached();this._positionStrategy&&this._positionStrategy.dispose(),this._disposeScrollStrategy(),this.detachBackdrop(),this._locationChanges.unsubscribe(),this._keyboardDispatcher.remove(this),this._portalOutlet.dispose(),this._attachments.complete(),this._backdropClick.complete(),this._keydownEvents.complete(),this._host&&this._host.parentNode&&(this._host.parentNode.removeChild(this._host),this._host=null),this._previousHostParent=this._pane=null,e&&this._detachments.next(),this._detachments.complete()}hasAttached(){return this._portalOutlet.hasAttached()}backdropClick(){return this._backdropClick.asObservable()}attachments(){return this._attachments.asObservable()}detachments(){return this._detachments.asObservable()}keydownEvents(){return this._keydownEventsObservable}getConfig(){return this._config}updatePosition(){this._positionStrategy&&this._positionStrategy.apply()}updatePositionStrategy(e){e!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=e,this.hasAttached()&&(e.attach(this),this.updatePosition()))}updateSize(e){this._config=Object.assign(Object.assign({},this._config),e),this._updateElementSize()}setDirection(e){this._config=Object.assign(Object.assign({},this._config),{direction:e}),this._updateElementDirection()}addPanelClass(e){this._pane&&this._toggleClasses(this._pane,e,!0)}removePanelClass(e){this._pane&&this._toggleClasses(this._pane,e,!1)}getDirection(){const e=this._config.direction;return e?\"string\"==typeof e?e:e.value:\"ltr\"}updateScrollStrategy(e){e!==this._scrollStrategy&&(this._disposeScrollStrategy(),this._scrollStrategy=e,this.hasAttached()&&(e.attach(this),e.enable()))}_updateElementDirection(){this._host.setAttribute(\"dir\",this.getDirection())}_updateElementSize(){if(!this._pane)return;const e=this._pane.style;e.width=fp(this._config.width),e.height=fp(this._config.height),e.minWidth=fp(this._config.minWidth),e.minHeight=fp(this._config.minHeight),e.maxWidth=fp(this._config.maxWidth),e.maxHeight=fp(this._config.maxHeight)}_togglePointerEvents(e){this._pane.style.pointerEvents=e?\"auto\":\"none\"}_attachBackdrop(){this._backdropElement=this._document.createElement(\"div\"),this._backdropElement.classList.add(\"cdk-overlay-backdrop\"),this._config.backdropClass&&this._toggleClasses(this._backdropElement,this._config.backdropClass,!0),this._host.parentElement.insertBefore(this._backdropElement,this._host),this._backdropElement.addEventListener(\"click\",this._backdropClickHandler),\"undefined\"!=typeof requestAnimationFrame?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{this._backdropElement&&this._backdropElement.classList.add(\"cdk-overlay-backdrop-showing\")})}):this._backdropElement.classList.add(\"cdk-overlay-backdrop-showing\")}_updateStackingOrder(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)}detachBackdrop(){let e,t=this._backdropElement;if(!t)return;let n=()=>{t&&(t.removeEventListener(\"click\",this._backdropClickHandler),t.removeEventListener(\"transitionend\",n),t.parentNode&&t.parentNode.removeChild(t)),this._backdropElement==t&&(this._backdropElement=null),this._config.backdropClass&&this._toggleClasses(t,this._config.backdropClass,!1),clearTimeout(e)};t.classList.remove(\"cdk-overlay-backdrop-showing\"),this._ngZone.runOutsideAngular(()=>{t.addEventListener(\"transitionend\",n)}),t.style.pointerEvents=\"none\",e=this._ngZone.runOutsideAngular(()=>setTimeout(n,500))}_toggleClasses(e,t,n){const i=e.classList;pp(t).forEach(e=>{e&&(n?i.add(e):i.remove(e))})}_detachContentWhenStable(){this._ngZone.runOutsideAngular(()=>{const e=this._ngZone.onStable.asObservable().pipe(Nb(G(this._attachments,this._detachments))).subscribe(()=>{this._pane&&this._host&&0!==this._pane.children.length||(this._pane&&this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!1),this._host&&this._host.parentElement&&(this._previousHostParent=this._host.parentElement,this._previousHostParent.removeChild(this._host)),e.unsubscribe())})})}_disposeScrollStrategy(){const e=this._scrollStrategy;e&&(e.disable(),e.detach&&e.detach())}}class Pv{constructor(e,t,n,i,s){this._viewportRuler=t,this._document=n,this._platform=i,this._overlayContainer=s,this._lastBoundingBoxSize={width:0,height:0},this._isPushed=!1,this._canPush=!0,this._growAfterOpen=!1,this._hasFlexibleDimensions=!0,this._positionLocked=!1,this._viewportMargin=0,this._scrollables=[],this._preferredPositions=[],this._positionChanges=new L,this._resizeSubscription=u.EMPTY,this._offsetX=0,this._offsetY=0,this._appliedPanelClasses=[],this.positionChanges=this._positionChanges.asObservable(),this.setOrigin(e)}get positions(){return this._preferredPositions}attach(e){if(this._overlayRef&&e!==this._overlayRef)throw Error(\"This position strategy is already attached to an overlay\");this._validatePositions(),e.hostElement.classList.add(\"cdk-overlay-connected-position-bounding-box\"),this._overlayRef=e,this._boundingBox=e.hostElement,this._pane=e.overlayElement,this._isDisposed=!1,this._isInitialRender=!0,this._lastPosition=null,this._resizeSubscription.unsubscribe(),this._resizeSubscription=this._viewportRuler.change().subscribe(()=>{this._isInitialRender=!0,this.apply()})}apply(){if(this._isDisposed||!this._platform.isBrowser)return;if(!this._isInitialRender&&this._positionLocked&&this._lastPosition)return void this.reapplyLastPosition();this._clearPanelClasses(),this._resetOverlayElementStyles(),this._resetBoundingBoxStyles(),this._viewportRect=this._getNarrowedViewportRect(),this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect();const e=this._originRect,t=this._overlayRect,n=this._viewportRect,i=[];let s;for(let r of this._preferredPositions){let o=this._getOriginPoint(e,r),a=this._getOverlayPoint(o,t,r),l=this._getOverlayFit(a,t,n,r);if(l.isCompletelyWithinViewport)return this._isPushed=!1,void this._applyPosition(r,o);this._canFitWithFlexibleDimensions(l,a,n)?i.push({position:r,origin:o,overlayRect:t,boundingBoxRect:this._calculateBoundingBoxRect(o,r)}):(!s||s.overlayFit.visibleAreat&&(t=i,e=n)}return this._isPushed=!1,void this._applyPosition(e.position,e.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(s.position,s.originPoint);this._applyPosition(s.position,s.originPoint)}detach(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}dispose(){this._isDisposed||(this._boundingBox&&Av(this._boundingBox.style,{top:\"\",left:\"\",right:\"\",bottom:\"\",height:\"\",width:\"\",alignItems:\"\",justifyContent:\"\"}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(\"cdk-overlay-connected-position-bounding-box\"),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}reapplyLastPosition(){if(!this._isDisposed&&(!this._platform||this._platform.isBrowser)){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect();const e=this._lastPosition||this._preferredPositions[0],t=this._getOriginPoint(this._originRect,e);this._applyPosition(e,t)}}withScrollableContainers(e){return this._scrollables=e,this}withPositions(e){return this._preferredPositions=e,-1===e.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}withViewportMargin(e){return this._viewportMargin=e,this}withFlexibleDimensions(e=!0){return this._hasFlexibleDimensions=e,this}withGrowAfterOpen(e=!0){return this._growAfterOpen=e,this}withPush(e=!0){return this._canPush=e,this}withLockedPosition(e=!0){return this._positionLocked=e,this}setOrigin(e){return this._origin=e,this}withDefaultOffsetX(e){return this._offsetX=e,this}withDefaultOffsetY(e){return this._offsetY=e,this}withTransformOriginOn(e){return this._transformOriginSelector=e,this}_getOriginPoint(e,t){let n,i;if(\"center\"==t.originX)n=e.left+e.width/2;else{const i=this._isRtl()?e.right:e.left,s=this._isRtl()?e.left:e.right;n=\"start\"==t.originX?i:s}return i=\"center\"==t.originY?e.top+e.height/2:\"top\"==t.originY?e.top:e.bottom,{x:n,y:i}}_getOverlayPoint(e,t,n){let i,s;return i=\"center\"==n.overlayX?-t.width/2:\"start\"===n.overlayX?this._isRtl()?-t.width:0:this._isRtl()?0:-t.width,s=\"center\"==n.overlayY?-t.height/2:\"top\"==n.overlayY?0:-t.height,{x:e.x+i,y:e.y+s}}_getOverlayFit(e,t,n,i){let{x:s,y:r}=e,o=this._getOffset(i,\"x\"),a=this._getOffset(i,\"y\");o&&(s+=o),a&&(r+=a);let l=0-r,c=r+t.height-n.height,d=this._subtractOverflows(t.width,0-s,s+t.width-n.width),u=this._subtractOverflows(t.height,l,c),h=d*u;return{visibleArea:h,isCompletelyWithinViewport:t.width*t.height===h,fitsInViewportVertically:u===t.height,fitsInViewportHorizontally:d==t.width}}_canFitWithFlexibleDimensions(e,t,n){if(this._hasFlexibleDimensions){const i=n.bottom-t.y,s=n.right-t.x,r=this._overlayRef.getConfig().minHeight,o=this._overlayRef.getConfig().minWidth,a=e.fitsInViewportHorizontally||null!=o&&o<=s;return(e.fitsInViewportVertically||null!=r&&r<=i)&&a}return!1}_pushOverlayOnScreen(e,t,n){if(this._previousPushAmount&&this._positionLocked)return{x:e.x+this._previousPushAmount.x,y:e.y+this._previousPushAmount.y};const i=this._viewportRect,s=Math.max(e.x+t.width-i.right,0),r=Math.max(e.y+t.height-i.bottom,0),o=Math.max(i.top-n.top-e.y,0),a=Math.max(i.left-n.left-e.x,0);let l=0,c=0;return l=t.width<=i.width?a||-s:e.xi&&!this._isInitialRender&&!this._growAfterOpen&&(r=e.y-i/2)}if(\"end\"===t.overlayX&&!i||\"start\"===t.overlayX&&i)c=n.width-e.x+this._viewportMargin,a=e.x-this._viewportMargin;else if(\"start\"===t.overlayX&&!i||\"end\"===t.overlayX&&i)l=e.x,a=n.right-e.x;else{const t=Math.min(n.right-e.x+n.left,e.x),i=this._lastBoundingBoxSize.width;a=2*t,l=e.x-t,a>i&&!this._isInitialRender&&!this._growAfterOpen&&(l=e.x-i/2)}return{top:r,left:l,bottom:o,right:c,width:a,height:s}}_setBoundingBoxStyles(e,t){const n=this._calculateBoundingBoxRect(e,t);this._isInitialRender||this._growAfterOpen||(n.height=Math.min(n.height,this._lastBoundingBoxSize.height),n.width=Math.min(n.width,this._lastBoundingBoxSize.width));const i={};if(this._hasExactPosition())i.top=i.left=\"0\",i.bottom=i.right=i.maxHeight=i.maxWidth=\"\",i.width=i.height=\"100%\";else{const e=this._overlayRef.getConfig().maxHeight,s=this._overlayRef.getConfig().maxWidth;i.height=fp(n.height),i.top=fp(n.top),i.bottom=fp(n.bottom),i.width=fp(n.width),i.left=fp(n.left),i.right=fp(n.right),i.alignItems=\"center\"===t.overlayX?\"center\":\"end\"===t.overlayX?\"flex-end\":\"flex-start\",i.justifyContent=\"center\"===t.overlayY?\"center\":\"bottom\"===t.overlayY?\"flex-end\":\"flex-start\",e&&(i.maxHeight=fp(e)),s&&(i.maxWidth=fp(s))}this._lastBoundingBoxSize=n,Av(this._boundingBox.style,i)}_resetBoundingBoxStyles(){Av(this._boundingBox.style,{top:\"0\",left:\"0\",right:\"0\",bottom:\"0\",height:\"\",width:\"\",alignItems:\"\",justifyContent:\"\"})}_resetOverlayElementStyles(){Av(this._pane.style,{top:\"\",left:\"\",bottom:\"\",right:\"\",position:\"\",transform:\"\"})}_setOverlayElementStyles(e,t){const n={},i=this._hasExactPosition(),s=this._hasFlexibleDimensions,r=this._overlayRef.getConfig();if(i){const i=this._viewportRuler.getViewportScrollPosition();Av(n,this._getExactOverlayY(t,e,i)),Av(n,this._getExactOverlayX(t,e,i))}else n.position=\"static\";let o=\"\",a=this._getOffset(t,\"x\"),l=this._getOffset(t,\"y\");a&&(o+=`translateX(${a}px) `),l&&(o+=`translateY(${l}px)`),n.transform=o.trim(),r.maxHeight&&(i?n.maxHeight=fp(r.maxHeight):s&&(n.maxHeight=\"\")),r.maxWidth&&(i?n.maxWidth=fp(r.maxWidth):s&&(n.maxWidth=\"\")),Av(this._pane.style,n)}_getExactOverlayY(e,t,n){let i={top:\"\",bottom:\"\"},s=this._getOverlayPoint(t,this._overlayRect,e);this._isPushed&&(s=this._pushOverlayOnScreen(s,this._overlayRect,n));let r=this._overlayContainer.getContainerElement().getBoundingClientRect().top;return s.y-=r,\"bottom\"===e.overlayY?i.bottom=`${this._document.documentElement.clientHeight-(s.y+this._overlayRect.height)}px`:i.top=fp(s.y),i}_getExactOverlayX(e,t,n){let i,s={left:\"\",right:\"\"},r=this._getOverlayPoint(t,this._overlayRect,e);return this._isPushed&&(r=this._pushOverlayOnScreen(r,this._overlayRect,n)),i=this._isRtl()?\"end\"===e.overlayX?\"left\":\"right\":\"end\"===e.overlayX?\"right\":\"left\",\"right\"===i?s.right=`${this._document.documentElement.clientWidth-(r.x+this._overlayRect.width)}px`:s.left=fp(r.x),s}_getScrollVisibility(){const e=this._getOriginRect(),t=this._pane.getBoundingClientRect(),n=this._scrollables.map(e=>e.getElementRef().nativeElement.getBoundingClientRect());return{isOriginClipped:Mv(e,n),isOriginOutsideView:wv(e,n),isOverlayClipped:Mv(t,n),isOverlayOutsideView:wv(t,n)}}_subtractOverflows(e,...t){return t.reduce((e,t)=>e-Math.max(t,0),e)}_getNarrowedViewportRect(){const e=this._document.documentElement.clientWidth,t=this._document.documentElement.clientHeight,n=this._viewportRuler.getViewportScrollPosition();return{top:n.top+this._viewportMargin,left:n.left+this._viewportMargin,right:n.left+e-this._viewportMargin,bottom:n.top+t-this._viewportMargin,width:e-2*this._viewportMargin,height:t-2*this._viewportMargin}}_isRtl(){return\"rtl\"===this._overlayRef.getDirection()}_hasExactPosition(){return!this._hasFlexibleDimensions||this._isPushed}_getOffset(e,t){return\"x\"===t?null==e.offsetX?this._offsetX:e.offsetX:null==e.offsetY?this._offsetY:e.offsetY}_validatePositions(){if(!this._preferredPositions.length)throw Error(\"FlexibleConnectedPositionStrategy: At least one position is required.\");this._preferredPositions.forEach(e=>{Dv(\"originX\",e.originX),Tv(\"originY\",e.originY),Dv(\"overlayX\",e.overlayX),Tv(\"overlayY\",e.overlayY)})}_addPanelClasses(e){this._pane&&pp(e).forEach(e=>{\"\"!==e&&-1===this._appliedPanelClasses.indexOf(e)&&(this._appliedPanelClasses.push(e),this._pane.classList.add(e))})}_clearPanelClasses(){this._pane&&(this._appliedPanelClasses.forEach(e=>{this._pane.classList.remove(e)}),this._appliedPanelClasses=[])}_getOriginRect(){const e=this._origin;if(e instanceof Ka)return e.nativeElement.getBoundingClientRect();if(e instanceof HTMLElement)return e.getBoundingClientRect();const t=e.width||0,n=e.height||0;return{top:e.y,bottom:e.y+n,left:e.x,right:e.x+t,height:n,width:t}}}function Av(e,t){for(let n in t)t.hasOwnProperty(n)&&(e[n]=t[n]);return e}class Rv{constructor(e,t,n,i,s,r,o){this._preferredPositions=[],this._positionStrategy=new Pv(n,i,s,r,o).withFlexibleDimensions(!1).withPush(!1).withViewportMargin(0),this.withFallbackPosition(e,t)}get _isRtl(){return\"rtl\"===this._overlayRef.getDirection()}get onPositionChange(){return this._positionStrategy.positionChanges}get positions(){return this._preferredPositions}attach(e){this._overlayRef=e,this._positionStrategy.attach(e),this._direction&&(e.setDirection(this._direction),this._direction=null)}dispose(){this._positionStrategy.dispose()}detach(){this._positionStrategy.detach()}apply(){this._positionStrategy.apply()}recalculateLastPosition(){this._positionStrategy.reapplyLastPosition()}withScrollableContainers(e){this._positionStrategy.withScrollableContainers(e)}withFallbackPosition(e,t,n,i){const s=new xv(e,t,n,i);return this._preferredPositions.push(s),this._positionStrategy.withPositions(this._preferredPositions),this}withDirection(e){return this._overlayRef?this._overlayRef.setDirection(e):this._direction=e,this}withOffsetX(e){return this._positionStrategy.withDefaultOffsetX(e),this}withOffsetY(e){return this._positionStrategy.withDefaultOffsetY(e),this}withLockedPosition(e){return this._positionStrategy.withLockedPosition(e),this}withPositions(e){return this._preferredPositions=e.slice(),this._positionStrategy.withPositions(this._preferredPositions),this}setOrigin(e){return this._positionStrategy.setOrigin(e),this}}class Hv{constructor(){this._cssPosition=\"static\",this._topOffset=\"\",this._bottomOffset=\"\",this._leftOffset=\"\",this._rightOffset=\"\",this._alignItems=\"\",this._justifyContent=\"\",this._width=\"\",this._height=\"\"}attach(e){const t=e.getConfig();this._overlayRef=e,this._width&&!t.width&&e.updateSize({width:this._width}),this._height&&!t.height&&e.updateSize({height:this._height}),e.hostElement.classList.add(\"cdk-global-overlay-wrapper\"),this._isDisposed=!1}top(e=\"\"){return this._bottomOffset=\"\",this._topOffset=e,this._alignItems=\"flex-start\",this}left(e=\"\"){return this._rightOffset=\"\",this._leftOffset=e,this._justifyContent=\"flex-start\",this}bottom(e=\"\"){return this._topOffset=\"\",this._bottomOffset=e,this._alignItems=\"flex-end\",this}right(e=\"\"){return this._leftOffset=\"\",this._rightOffset=e,this._justifyContent=\"flex-end\",this}width(e=\"\"){return this._overlayRef?this._overlayRef.updateSize({width:e}):this._width=e,this}height(e=\"\"){return this._overlayRef?this._overlayRef.updateSize({height:e}):this._height=e,this}centerHorizontally(e=\"\"){return this.left(e),this._justifyContent=\"center\",this}centerVertically(e=\"\"){return this.top(e),this._alignItems=\"center\",this}apply(){if(!this._overlayRef||!this._overlayRef.hasAttached())return;const e=this._overlayRef.overlayElement.style,t=this._overlayRef.hostElement.style,n=this._overlayRef.getConfig(),{width:i,height:s,maxWidth:r,maxHeight:o}=n,a=!(\"100%\"!==i&&\"100vw\"!==i||r&&\"100%\"!==r&&\"100vw\"!==r),l=!(\"100%\"!==s&&\"100vh\"!==s||o&&\"100%\"!==o&&\"100vh\"!==o);e.position=this._cssPosition,e.marginLeft=a?\"0\":this._leftOffset,e.marginTop=l?\"0\":this._topOffset,e.marginBottom=this._bottomOffset,e.marginRight=this._rightOffset,a?t.justifyContent=\"flex-start\":\"center\"===this._justifyContent?t.justifyContent=\"center\":\"rtl\"===this._overlayRef.getConfig().direction?\"flex-start\"===this._justifyContent?t.justifyContent=\"flex-end\":\"flex-end\"===this._justifyContent&&(t.justifyContent=\"flex-start\"):t.justifyContent=this._justifyContent,t.alignItems=l?\"flex-start\":this._alignItems}dispose(){if(this._isDisposed||!this._overlayRef)return;const e=this._overlayRef.overlayElement.style,t=this._overlayRef.hostElement,n=t.style;t.classList.remove(\"cdk-global-overlay-wrapper\"),n.justifyContent=n.alignItems=e.marginTop=e.marginBottom=e.marginLeft=e.marginRight=e.position=\"\",this._overlayRef=null,this._isDisposed=!0}}let jv=(()=>{class e{constructor(e,t,n,i){this._viewportRuler=e,this._document=t,this._platform=n,this._overlayContainer=i}global(){return new Hv}connectedTo(e,t,n){return new Rv(t,n,e,this._viewportRuler,this._document,this._platform,this._overlayContainer)}flexibleConnectedTo(e){return new Pv(e,this._viewportRuler,this._document,this._platform,this._overlayContainer)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ov),Qe(Nd),Qe(bp),Qe(Ov))},e.\\u0275prov=pe({factory:function(){return new e(Qe(ov),Qe(Nd),Qe(bp),Qe(Ov))},token:e,providedIn:\"root\"}),e})(),Fv=0,Nv=(()=>{class e{constructor(e,t,n,i,s,r,o,a,l,c){this.scrollStrategies=e,this._overlayContainer=t,this._componentFactoryResolver=n,this._positionBuilder=i,this._keyboardDispatcher=s,this._injector=r,this._ngZone=o,this._document=a,this._directionality=l,this._location=c}create(e){const t=this._createHostElement(),n=this._createPaneElement(t),i=this._createPortalOutlet(n),s=new Lv(e);return s.direction=s.direction||this._directionality.value,new Iv(i,t,n,s,this._ngZone,this._keyboardDispatcher,this._document,this._location)}position(){return this._positionBuilder}_createPaneElement(e){const t=this._document.createElement(\"div\");return t.id=`cdk-overlay-${Fv++}`,t.classList.add(\"cdk-overlay-pane\"),e.appendChild(t),t}_createHostElement(){const e=this._document.createElement(\"div\");return this._overlayContainer.getContainerElement().appendChild(e),e}_createPortalOutlet(e){return this._appRef||(this._appRef=this._injector.get(Td)),new pv(e,this._componentFactoryResolver,this._appRef,this._injector,this._document)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Sv),Qe(Ov),Qe(Ja),Qe(jv),Qe(Yv),Qe(fo),Qe(ld),Qe(Nd),Qe(Gp),Qe(tu,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const zv=[{originX:\"start\",originY:\"bottom\",overlayX:\"start\",overlayY:\"top\"},{originX:\"start\",originY:\"top\",overlayX:\"start\",overlayY:\"bottom\"},{originX:\"end\",originY:\"top\",overlayX:\"end\",overlayY:\"bottom\"},{originX:\"end\",originY:\"bottom\",overlayX:\"end\",overlayY:\"top\"}],Vv=new Ve(\"cdk-connected-overlay-scroll-strategy\");let Wv=(()=>{class e{constructor(e){this.elementRef=e}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdk-overlay-origin\",\"\"],[\"\",\"overlay-origin\",\"\"],[\"\",\"cdkOverlayOrigin\",\"\"]],exportAs:[\"cdkOverlayOrigin\"]}),e})(),Uv=(()=>{class e{constructor(e,t,n,i,s){this._overlay=e,this._dir=s,this._hasBackdrop=!1,this._lockPosition=!1,this._growAfterOpen=!1,this._flexibleDimensions=!1,this._push=!1,this._backdropSubscription=u.EMPTY,this.viewportMargin=0,this.open=!1,this.backdropClick=new yc,this.positionChange=new yc,this.attach=new yc,this.detach=new yc,this.overlayKeydown=new yc,this._templatePortal=new uv(t,n),this._scrollStrategyFactory=i,this.scrollStrategy=this._scrollStrategyFactory()}get offsetX(){return this._offsetX}set offsetX(e){this._offsetX=e,this._position&&this._updatePositionStrategy(this._position)}get offsetY(){return this._offsetY}set offsetY(e){this._offsetY=e,this._position&&this._updatePositionStrategy(this._position)}get hasBackdrop(){return this._hasBackdrop}set hasBackdrop(e){this._hasBackdrop=hp(e)}get lockPosition(){return this._lockPosition}set lockPosition(e){this._lockPosition=hp(e)}get flexibleDimensions(){return this._flexibleDimensions}set flexibleDimensions(e){this._flexibleDimensions=hp(e)}get growAfterOpen(){return this._growAfterOpen}set growAfterOpen(e){this._growAfterOpen=hp(e)}get push(){return this._push}set push(e){this._push=hp(e)}get overlayRef(){return this._overlayRef}get dir(){return this._dir?this._dir.value:\"ltr\"}ngOnDestroy(){this._overlayRef&&this._overlayRef.dispose(),this._backdropSubscription.unsubscribe()}ngOnChanges(e){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),e.origin&&this.open&&this._position.apply()),e.open&&(this.open?this._attachOverlay():this._detachOverlay())}_createOverlay(){this.positions&&this.positions.length||(this.positions=zv),this._overlayRef=this._overlay.create(this._buildConfig()),this._overlayRef.keydownEvents().subscribe(e=>{this.overlayKeydown.next(e),27!==e.keyCode||qm(e)||(e.preventDefault(),this._detachOverlay())})}_buildConfig(){const e=this._position=this.positionStrategy||this._createPositionStrategy(),t=new Lv({direction:this._dir,positionStrategy:e,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop});return(this.width||0===this.width)&&(t.width=this.width),(this.height||0===this.height)&&(t.height=this.height),(this.minWidth||0===this.minWidth)&&(t.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(t.minHeight=this.minHeight),this.backdropClass&&(t.backdropClass=this.backdropClass),this.panelClass&&(t.panelClass=this.panelClass),t}_updatePositionStrategy(e){const t=this.positions.map(e=>({originX:e.originX,originY:e.originY,overlayX:e.overlayX,overlayY:e.overlayY,offsetX:e.offsetX||this.offsetX,offsetY:e.offsetY||this.offsetY,panelClass:e.panelClass||void 0}));return e.setOrigin(this.origin.elementRef).withPositions(t).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}_createPositionStrategy(){const e=this._overlay.position().flexibleConnectedTo(this.origin.elementRef);return this._updatePositionStrategy(e),e.positionChanges.subscribe(e=>this.positionChange.emit(e)),e}_attachOverlay(){this._overlayRef?this._overlayRef.getConfig().hasBackdrop=this.hasBackdrop:this._createOverlay(),this._overlayRef.hasAttached()||(this._overlayRef.attach(this._templatePortal),this.attach.emit()),this.hasBackdrop?this._backdropSubscription=this._overlayRef.backdropClick().subscribe(e=>{this.backdropClick.emit(e)}):this._backdropSubscription.unsubscribe()}_detachOverlay(){this._overlayRef&&(this._overlayRef.detach(),this.detach.emit()),this._backdropSubscription.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Nv),Eo(vl),Eo(Ml),Eo(Vv),Eo(Gp,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdk-connected-overlay\",\"\"],[\"\",\"connected-overlay\",\"\"],[\"\",\"cdkConnectedOverlay\",\"\"]],inputs:{viewportMargin:[\"cdkConnectedOverlayViewportMargin\",\"viewportMargin\"],open:[\"cdkConnectedOverlayOpen\",\"open\"],scrollStrategy:[\"cdkConnectedOverlayScrollStrategy\",\"scrollStrategy\"],offsetX:[\"cdkConnectedOverlayOffsetX\",\"offsetX\"],offsetY:[\"cdkConnectedOverlayOffsetY\",\"offsetY\"],hasBackdrop:[\"cdkConnectedOverlayHasBackdrop\",\"hasBackdrop\"],lockPosition:[\"cdkConnectedOverlayLockPosition\",\"lockPosition\"],flexibleDimensions:[\"cdkConnectedOverlayFlexibleDimensions\",\"flexibleDimensions\"],growAfterOpen:[\"cdkConnectedOverlayGrowAfterOpen\",\"growAfterOpen\"],push:[\"cdkConnectedOverlayPush\",\"push\"],positions:[\"cdkConnectedOverlayPositions\",\"positions\"],origin:[\"cdkConnectedOverlayOrigin\",\"origin\"],positionStrategy:[\"cdkConnectedOverlayPositionStrategy\",\"positionStrategy\"],width:[\"cdkConnectedOverlayWidth\",\"width\"],height:[\"cdkConnectedOverlayHeight\",\"height\"],minWidth:[\"cdkConnectedOverlayMinWidth\",\"minWidth\"],minHeight:[\"cdkConnectedOverlayMinHeight\",\"minHeight\"],backdropClass:[\"cdkConnectedOverlayBackdropClass\",\"backdropClass\"],panelClass:[\"cdkConnectedOverlayPanelClass\",\"panelClass\"],transformOriginSelector:[\"cdkConnectedOverlayTransformOriginOn\",\"transformOriginSelector\"]},outputs:{backdropClick:\"backdropClick\",positionChange:\"positionChange\",attach:\"attach\",detach:\"detach\",overlayKeydown:\"overlayKeydown\"},exportAs:[\"cdkConnectedOverlay\"],features:[Ra]}),e})();const $v={provide:Vv,deps:[Nv],useFactory:function(e){return()=>e.scrollStrategies.reposition()}};let Bv=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[Nv,$v],imports:[[Jp,_v,av],av]}),e})();function qv(e){return new v(t=>{let n;try{n=e()}catch(i){return void t.error(i)}return(n?z(n):lp()).subscribe(t)})}function Gv(e,t){}class Jv{constructor(){this.role=\"dialog\",this.panelClass=\"\",this.hasBackdrop=!0,this.backdropClass=\"\",this.disableClose=!1,this.width=\"\",this.height=\"\",this.maxWidth=\"80vw\",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.autoFocus=!0,this.restoreFocus=!0,this.closeOnNavigation=!0}}const Kv={dialogContainer:jf(\"dialogContainer\",[Wf(\"void, exit\",Vf({opacity:0,transform:\"scale(0.7)\"})),Wf(\"enter\",Vf({transform:\"none\"})),Uf(\"* => enter\",Ff(\"150ms cubic-bezier(0, 0, 0.2, 1)\",Vf({transform:\"none\",opacity:1}))),Uf(\"* => void, * => exit\",Ff(\"75ms cubic-bezier(0.4, 0.0, 0.2, 1)\",Vf({opacity:0})))])};function Zv(){throw Error(\"Attempting to attach dialog content after content is already attached\")}let Qv=(()=>{class e extends mv{constructor(e,t,n,i,s){super(),this._elementRef=e,this._focusTrapFactory=t,this._changeDetectorRef=n,this._config=s,this._elementFocusedBeforeDialogWasOpened=null,this._state=\"enter\",this._animationStateChanged=new yc,this.attachDomPortal=e=>(this._portalOutlet.hasAttached()&&Zv(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachDomPortal(e)),this._ariaLabelledBy=s.ariaLabelledBy||null,this._document=i}attachComponentPortal(e){return this._portalOutlet.hasAttached()&&Zv(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachComponentPortal(e)}attachTemplatePortal(e){return this._portalOutlet.hasAttached()&&Zv(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachTemplatePortal(e)}_trapFocus(){const e=this._elementRef.nativeElement;if(this._focusTrap||(this._focusTrap=this._focusTrapFactory.create(e)),this._config.autoFocus)this._focusTrap.focusInitialElementWhenReady();else{const t=this._document.activeElement;t===e||e.contains(t)||e.focus()}}_restoreFocus(){const e=this._elementFocusedBeforeDialogWasOpened;if(this._config.restoreFocus&&e&&\"function\"==typeof e.focus){const t=this._document.activeElement,n=this._elementRef.nativeElement;t&&t!==this._document.body&&t!==n&&!n.contains(t)||e.focus()}this._focusTrap&&this._focusTrap.destroy()}_savePreviouslyFocusedElement(){this._document&&(this._elementFocusedBeforeDialogWasOpened=this._document.activeElement,this._elementRef.nativeElement.focus&&Promise.resolve().then(()=>this._elementRef.nativeElement.focus()))}_onAnimationDone(e){\"enter\"===e.toState?this._trapFocus():\"exit\"===e.toState&&this._restoreFocus(),this._animationStateChanged.emit(e)}_onAnimationStart(e){this._animationStateChanged.emit(e)}_startExitAnimation(){this._state=\"exit\",this._changeDetectorRef.markForCheck()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Fp),Eo(Qr),Eo(Nd,8),Eo(Jv))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-dialog-container\"]],viewQuery:function(e,t){var n;1&e&&Yc(fv,!0),2&e&&Dc(n=Rc())&&(t._portalOutlet=n.first)},hostAttrs:[\"tabindex\",\"-1\",\"aria-modal\",\"true\",1,\"mat-dialog-container\"],hostVars:6,hostBindings:function(e,t){1&e&&$o(\"@dialogContainer.start\",(function(e){return t._onAnimationStart(e)}))(\"@dialogContainer.done\",(function(e){return t._onAnimationDone(e)})),2&e&&(Co(\"id\",t._id)(\"role\",t._config.role)(\"aria-labelledby\",t._config.ariaLabel?null:t._ariaLabelledBy)(\"aria-label\",t._config.ariaLabel)(\"aria-describedby\",t._config.ariaDescribedBy||null),Ta(\"@dialogContainer\",t._state))},features:[Ya],decls:1,vars:0,consts:[[\"cdkPortalOutlet\",\"\"]],template:function(e,t){1&e&&Do(0,Gv,0,0,\"ng-template\",0)},directives:[fv],styles:[\".mat-dialog-container{display:block;padding:24px;border-radius:4px;box-sizing:border-box;overflow:auto;outline:0;width:100%;height:100%;min-height:inherit;max-height:inherit}.cdk-high-contrast-active .mat-dialog-container{outline:solid 1px}.mat-dialog-content{display:block;margin:0 -24px;padding:0 24px;max-height:65vh;overflow:auto;-webkit-overflow-scrolling:touch}.mat-dialog-title{margin:0 0 20px;display:block}.mat-dialog-actions{padding:8px 0;display:flex;flex-wrap:wrap;min-height:52px;align-items:center;margin-bottom:-24px}.mat-dialog-actions[align=end]{justify-content:flex-end}.mat-dialog-actions[align=center]{justify-content:center}.mat-dialog-actions .mat-button-base+.mat-button-base,.mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}\\n\"],encapsulation:2,data:{animation:[Kv.dialogContainer]}}),e})(),Xv=0;class ew{constructor(e,t,n=`mat-dialog-${Xv++}`){this._overlayRef=e,this._containerInstance=t,this.id=n,this.disableClose=this._containerInstance._config.disableClose,this._afterOpened=new L,this._afterClosed=new L,this._beforeClosed=new L,this._state=0,t._id=n,t._animationStateChanged.pipe(Tu(e=>\"done\"===e.phaseName&&\"enter\"===e.toState),cp(1)).subscribe(()=>{this._afterOpened.next(),this._afterOpened.complete()}),t._animationStateChanged.pipe(Tu(e=>\"done\"===e.phaseName&&\"exit\"===e.toState),cp(1)).subscribe(()=>{clearTimeout(this._closeFallbackTimeout),this._overlayRef.dispose()}),e.detachments().subscribe(()=>{this._beforeClosed.next(this._result),this._beforeClosed.complete(),this._afterClosed.next(this._result),this._afterClosed.complete(),this.componentInstance=null,this._overlayRef.dispose()}),e.keydownEvents().pipe(Tu(e=>27===e.keyCode&&!this.disableClose&&!qm(e))).subscribe(e=>{e.preventDefault(),this.close()})}close(e){this._result=e,this._containerInstance._animationStateChanged.pipe(Tu(e=>\"start\"===e.phaseName),cp(1)).subscribe(t=>{this._beforeClosed.next(e),this._beforeClosed.complete(),this._state=2,this._overlayRef.detachBackdrop(),this._closeFallbackTimeout=setTimeout(()=>{this._overlayRef.dispose()},t.totalTime+100)}),this._containerInstance._startExitAnimation(),this._state=1}afterOpened(){return this._afterOpened.asObservable()}afterClosed(){return this._afterClosed.asObservable()}beforeClosed(){return this._beforeClosed.asObservable()}backdropClick(){return this._overlayRef.backdropClick()}keydownEvents(){return this._overlayRef.keydownEvents()}updatePosition(e){let t=this._getPositionStrategy();return e&&(e.left||e.right)?e.left?t.left(e.left):t.right(e.right):t.centerHorizontally(),e&&(e.top||e.bottom)?e.top?t.top(e.top):t.bottom(e.bottom):t.centerVertically(),this._overlayRef.updatePosition(),this}updateSize(e=\"\",t=\"\"){return this._getPositionStrategy().width(e).height(t),this._overlayRef.updatePosition(),this}addPanelClass(e){return this._overlayRef.addPanelClass(e),this}removePanelClass(e){return this._overlayRef.removePanelClass(e),this}getState(){return this._state}_getPositionStrategy(){return this._overlayRef.getConfig().positionStrategy}}const tw=new Ve(\"MatDialogData\"),nw=new Ve(\"mat-dialog-default-options\"),iw=new Ve(\"mat-dialog-scroll-strategy\"),sw={provide:iw,deps:[Nv],useFactory:function(e){return()=>e.scrollStrategies.block()}};let rw=(()=>{class e{constructor(e,t,n,i,s,r,o){this._overlay=e,this._injector=t,this._defaultOptions=i,this._parentDialog=r,this._overlayContainer=o,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new L,this._afterOpenedAtThisLevel=new L,this._ariaHiddenElements=new Map,this.afterAllClosed=qv(()=>this.openDialogs.length?this._afterAllClosed:this._afterAllClosed.pipe(Rf(void 0))),this._scrollStrategy=s}get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}get _afterAllClosed(){const e=this._parentDialog;return e?e._afterAllClosed:this._afterAllClosedAtThisLevel}open(e,t){if((t=function(e,t){return Object.assign(Object.assign({},t),e)}(t,this._defaultOptions||new Jv)).id&&this.getDialogById(t.id))throw Error(`Dialog with id \"${t.id}\" exists already. The dialog id must be unique.`);const n=this._createOverlay(t),i=this._attachDialogContainer(n,t),s=this._attachDialogContent(e,i,n,t);return this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(s),s.afterClosed().subscribe(()=>this._removeOpenDialog(s)),this.afterOpened.next(s),s}closeAll(){this._closeDialogs(this.openDialogs)}getDialogById(e){return this.openDialogs.find(t=>t.id===e)}ngOnDestroy(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}_createOverlay(e){const t=this._getOverlayConfig(e);return this._overlay.create(t)}_getOverlayConfig(e){const t=new Lv({positionStrategy:this._overlay.position().global(),scrollStrategy:e.scrollStrategy||this._scrollStrategy(),panelClass:e.panelClass,hasBackdrop:e.hasBackdrop,direction:e.direction,minWidth:e.minWidth,minHeight:e.minHeight,maxWidth:e.maxWidth,maxHeight:e.maxHeight,disposeOnNavigation:e.closeOnNavigation});return e.backdropClass&&(t.backdropClass=e.backdropClass),t}_attachDialogContainer(e,t){const n=fo.create({parent:t&&t.viewContainerRef&&t.viewContainerRef.injector||this._injector,providers:[{provide:Jv,useValue:t}]}),i=new dv(Qv,t.viewContainerRef,n,t.componentFactoryResolver);return e.attach(i).instance}_attachDialogContent(e,t,n,i){const s=new ew(n,t,i.id);if(i.hasBackdrop&&n.backdropClick().subscribe(()=>{s.disableClose||s.close()}),e instanceof vl)t.attachTemplatePortal(new uv(e,null,{$implicit:i.data,dialogRef:s}));else{const n=this._createInjector(i,s,t),r=t.attachComponentPortal(new dv(e,i.viewContainerRef,n));s.componentInstance=r.instance}return s.updateSize(i.width,i.height).updatePosition(i.position),s}_createInjector(e,t,n){const i=e&&e.viewContainerRef&&e.viewContainerRef.injector,s=[{provide:Qv,useValue:n},{provide:tw,useValue:e.data},{provide:ew,useValue:t}];return!e.direction||i&&i.get(Gp,null)||s.push({provide:Gp,useValue:{value:e.direction,change:xu()}}),fo.create({parent:i||this._injector,providers:s})}_removeOpenDialog(e){const t=this.openDialogs.indexOf(e);t>-1&&(this.openDialogs.splice(t,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((e,t)=>{e?t.setAttribute(\"aria-hidden\",e):t.removeAttribute(\"aria-hidden\")}),this._ariaHiddenElements.clear(),this._afterAllClosed.next()))}_hideNonDialogContentFromAssistiveTechnology(){const e=this._overlayContainer.getContainerElement();if(e.parentElement){const t=e.parentElement.children;for(let n=t.length-1;n>-1;n--){let i=t[n];i===e||\"SCRIPT\"===i.nodeName||\"STYLE\"===i.nodeName||i.hasAttribute(\"aria-live\")||(this._ariaHiddenElements.set(i,i.getAttribute(\"aria-hidden\")),i.setAttribute(\"aria-hidden\",\"true\"))}}}_closeDialogs(e){let t=e.length;for(;t--;)e[t].close()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nv),Qe(fo),Qe(tu,8),Qe(nw,8),Qe(iw),Qe(e,12),Qe(Ov))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),ow=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[rw,sw],imports:[[Bv,_v,py],py]}),e})();function aw(e){return function(t){const n=new lw(e),i=t.lift(n);return n.caught=i}}class lw{constructor(e){this.selector=e}call(e,t){return t.subscribe(new cw(e,this.selector,this.caught))}}class cw extends R{constructor(e,t,n){super(e),this.selector=t,this.caught=n}error(e){if(!this.isStopped){let n;try{n=this.selector(e,this.caught)}catch(t){return void super.error(t)}this._unsubscribeAndRecycle();const i=new T(this,void 0,void 0);this.add(i);const s=A(this,n,void 0,void 0,i);s!==i&&this.add(s)}}}function dw(e){return t=>t.lift(new uw(e))}class uw{constructor(e){this.callback=e}call(e,t){return t.subscribe(new hw(e,this.callback))}}class hw extends p{constructor(e,t){super(e),this.add(new u(t))}}const mw=[\"*\"];function pw(e){return Error(`Unable to find icon with the name \"${e}\"`)}function fw(e){return Error(\"The URL provided to MatIconRegistry was not trusted as a resource URL \"+`via Angular's DomSanitizer. Attempted URL was \"${e}\".`)}function _w(e){return Error(\"The literal provided to MatIconRegistry was not trusted as safe HTML by \"+`Angular's DomSanitizer. Attempted literal was \"${e}\".`)}class gw{constructor(e,t){this.options=t,e.nodeName?this.svgElement=e:this.url=e}}let yw=(()=>{class e{constructor(e,t,n,i){this._httpClient=e,this._sanitizer=t,this._errorHandler=i,this._svgIconConfigs=new Map,this._iconSetConfigs=new Map,this._cachedIconsByUrl=new Map,this._inProgressUrlFetches=new Map,this._fontCssClassesByAlias=new Map,this._defaultFontSetClass=\"material-icons\",this._document=n}addSvgIcon(e,t,n){return this.addSvgIconInNamespace(\"\",e,t,n)}addSvgIconLiteral(e,t,n){return this.addSvgIconLiteralInNamespace(\"\",e,t,n)}addSvgIconInNamespace(e,t,n,i){return this._addSvgIconConfig(e,t,new gw(n,i))}addSvgIconLiteralInNamespace(e,t,n,i){const s=this._sanitizer.sanitize(Gi.HTML,n);if(!s)throw _w(n);const r=this._createSvgElementForSingleIcon(s,i);return this._addSvgIconConfig(e,t,new gw(r,i))}addSvgIconSet(e,t){return this.addSvgIconSetInNamespace(\"\",e,t)}addSvgIconSetLiteral(e,t){return this.addSvgIconSetLiteralInNamespace(\"\",e,t)}addSvgIconSetInNamespace(e,t,n){return this._addSvgIconSetConfig(e,new gw(t,n))}addSvgIconSetLiteralInNamespace(e,t,n){const i=this._sanitizer.sanitize(Gi.HTML,t);if(!i)throw _w(t);const s=this._svgElementFromString(i);return this._addSvgIconSetConfig(e,new gw(s,n))}registerFontClassAlias(e,t=e){return this._fontCssClassesByAlias.set(e,t),this}classNameForFontAlias(e){return this._fontCssClassesByAlias.get(e)||e}setDefaultFontSetClass(e){return this._defaultFontSetClass=e,this}getDefaultFontSetClass(){return this._defaultFontSetClass}getSvgIconFromUrl(e){const t=this._sanitizer.sanitize(Gi.RESOURCE_URL,e);if(!t)throw fw(e);const n=this._cachedIconsByUrl.get(t);return n?xu(bw(n)):this._loadSvgIconFromConfig(new gw(e)).pipe(Gm(e=>this._cachedIconsByUrl.set(t,e)),H(e=>bw(e)))}getNamedSvgIcon(e,t=\"\"){const n=vw(t,e),i=this._svgIconConfigs.get(n);if(i)return this._getSvgFromConfig(i);const s=this._iconSetConfigs.get(t);return s?this._getSvgFromIconSetConfigs(e,s):Jb(pw(n))}ngOnDestroy(){this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}_getSvgFromConfig(e){return e.svgElement?xu(bw(e.svgElement)):this._loadSvgIconFromConfig(e).pipe(Gm(t=>e.svgElement=t),H(e=>bw(e)))}_getSvgFromIconSetConfigs(e,t){const n=this._extractIconWithNameFromAnySet(e,t);return n?xu(n):ch(t.filter(e=>!e.svgElement).map(e=>this._loadSvgIconSetFromConfig(e).pipe(aw(t=>{const n=`Loading icon set URL: ${this._sanitizer.sanitize(Gi.RESOURCE_URL,e.url)} failed: ${t.message}`;return this._errorHandler?this._errorHandler.handleError(new Error(n)):console.error(n),xu(null)})))).pipe(H(()=>{const n=this._extractIconWithNameFromAnySet(e,t);if(!n)throw pw(e);return n}))}_extractIconWithNameFromAnySet(e,t){for(let n=t.length-1;n>=0;n--){const i=t[n];if(i.svgElement){const t=this._extractSvgIconFromSet(i.svgElement,e,i.options);if(t)return t}}return null}_loadSvgIconFromConfig(e){return this._fetchUrl(e.url).pipe(H(t=>this._createSvgElementForSingleIcon(t,e.options)))}_loadSvgIconSetFromConfig(e){return e.svgElement?xu(e.svgElement):this._fetchUrl(e.url).pipe(H(t=>(e.svgElement||(e.svgElement=this._svgElementFromString(t)),e.svgElement)))}_createSvgElementForSingleIcon(e,t){const n=this._svgElementFromString(e);return this._setSvgAttributes(n,t),n}_extractSvgIconFromSet(e,t,n){const i=e.querySelector(`[id=\"${t}\"]`);if(!i)return null;const s=i.cloneNode(!0);if(s.removeAttribute(\"id\"),\"svg\"===s.nodeName.toLowerCase())return this._setSvgAttributes(s,n);if(\"symbol\"===s.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(s),n);const r=this._svgElementFromString(\"\");return r.appendChild(s),this._setSvgAttributes(r,n)}_svgElementFromString(e){const t=this._document.createElement(\"DIV\");t.innerHTML=e;const n=t.querySelector(\"svg\");if(!n)throw Error(\" tag not found\");return n}_toSvgElement(e){const t=this._svgElementFromString(\"\"),n=e.attributes;for(let i=0;ithis._inProgressUrlFetches.delete(t)),se());return this._inProgressUrlFetches.set(t,i),i}_addSvgIconConfig(e,t,n){return this._svgIconConfigs.set(vw(e,t),n),this}_addSvgIconSetConfig(e,t){const n=this._iconSetConfigs.get(e);return n?n.push(t):this._iconSetConfigs.set(e,[t]),this}}return e.\\u0275fac=function(t){return new(t||e)(Qe(qu,8),Qe(Df),Qe(Nd,8),Qe(hi,8))},e.\\u0275prov=pe({factory:function(){return new e(Qe(qu,8),Qe(Df),Qe(Nd,8),Qe(hi,8))},token:e,providedIn:\"root\"}),e})();function bw(e){return e.cloneNode(!0)}function vw(e,t){return e+\":\"+t}class ww{constructor(e){this._elementRef=e}}const Mw=_y(ww),kw=new Ve(\"mat-icon-location\",{providedIn:\"root\",factory:function(){const e=Xe(Nd),t=e?e.location:null;return{getPathname:()=>t?t.pathname+t.search:\"\"}}}),Sw=[\"clip-path\",\"color-profile\",\"src\",\"cursor\",\"fill\",\"filter\",\"marker\",\"marker-start\",\"marker-mid\",\"marker-end\",\"mask\",\"stroke\"],Lw=Sw.map(e=>`[${e}]`).join(\", \"),xw=/^url\\(['\"]?#(.*?)['\"]?\\)$/;let Cw=(()=>{class e extends Mw{constructor(e,t,n,i,s){super(e),this._iconRegistry=t,this._location=i,this._errorHandler=s,this._inline=!1,n||e.nativeElement.setAttribute(\"aria-hidden\",\"true\")}get inline(){return this._inline}set inline(e){this._inline=hp(e)}get fontSet(){return this._fontSet}set fontSet(e){this._fontSet=this._cleanupFontValue(e)}get fontIcon(){return this._fontIcon}set fontIcon(e){this._fontIcon=this._cleanupFontValue(e)}_splitIconName(e){if(!e)return[\"\",\"\"];const t=e.split(\":\");switch(t.length){case 1:return[\"\",t[0]];case 2:return t;default:throw Error(`Invalid icon name: \"${e}\"`)}}ngOnChanges(e){const t=e.svgIcon;if(t)if(this.svgIcon){const[e,t]=this._splitIconName(this.svgIcon);this._iconRegistry.getNamedSvgIcon(t,e).pipe(cp(1)).subscribe(e=>this._setSvgElement(e),n=>{const i=`Error retrieving icon ${e}:${t}! ${n.message}`;this._errorHandler?this._errorHandler.handleError(new Error(i)):console.error(i)})}else t.previousValue&&this._clearSvgElement();this._usingFontIcon()&&this._updateFontIconClasses()}ngOnInit(){this._usingFontIcon()&&this._updateFontIconClasses()}ngAfterViewChecked(){const e=this._elementsWithExternalReferences;if(e&&this._location&&e.size){const e=this._location.getPathname();e!==this._previousPath&&(this._previousPath=e,this._prependPathToReferences(e))}}ngOnDestroy(){this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear()}_usingFontIcon(){return!this.svgIcon}_setSvgElement(e){this._clearSvgElement();const t=e.querySelectorAll(\"style\");for(let n=0;n{t.forEach(t=>{n.setAttribute(t.name,`url('${e}#${t.value}')`)})})}_cacheChildrenWithExternalReferences(e){const t=e.querySelectorAll(Lw),n=this._elementsWithExternalReferences=this._elementsWithExternalReferences||new Map;for(let i=0;i{const s=t[i],r=s.getAttribute(e),o=r?r.match(xw):null;if(o){let t=n.get(s);t||(t=[],n.set(s,t)),t.push({name:e,value:o[1]})}})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(yw),Oo(\"aria-hidden\"),Eo(kw,8),Eo(hi,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-icon\"]],hostAttrs:[\"role\",\"img\",1,\"mat-icon\",\"notranslate\"],hostVars:4,hostBindings:function(e,t){2&e&&ua(\"mat-icon-inline\",t.inline)(\"mat-icon-no-color\",\"primary\"!==t.color&&\"accent\"!==t.color&&\"warn\"!==t.color)},inputs:{color:\"color\",inline:\"inline\",fontSet:\"fontSet\",fontIcon:\"fontIcon\",svgIcon:\"svgIcon\"},exportAs:[\"matIcon\"],features:[Ya,Ra],ngContentSelectors:mw,decls:1,vars:0,template:function(e,t){1&e&&(Zo(),ea(0))},styles:[\".mat-icon{background-repeat:no-repeat;display:inline-block;fill:currentColor;height:24px;width:24px}.mat-icon.mat-icon-inline{font-size:inherit;height:inherit;line-height:inherit;width:inherit}[dir=rtl] .mat-icon-rtl-mirror{transform:scale(-1, 1)}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon{display:block}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button .mat-icon{margin:auto}\\n\"],encapsulation:2,changeDetection:0}),e})(),Tw=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[py],py]}),e})();const Dw=Sp({passive:!0});let Yw=(()=>{class e{constructor(e,t){this._platform=e,this._ngZone=t,this._monitoredElements=new Map}monitor(e){if(!this._platform.isBrowser)return ap;const t=_p(e),n=this._monitoredElements.get(t);if(n)return n.subject.asObservable();const i=new L,s=\"cdk-text-field-autofilled\",r=e=>{\"cdk-text-field-autofill-start\"!==e.animationName||t.classList.contains(s)?\"cdk-text-field-autofill-end\"===e.animationName&&t.classList.contains(s)&&(t.classList.remove(s),this._ngZone.run(()=>i.next({target:e.target,isAutofilled:!1}))):(t.classList.add(s),this._ngZone.run(()=>i.next({target:e.target,isAutofilled:!0})))};return this._ngZone.runOutsideAngular(()=>{t.addEventListener(\"animationstart\",r,Dw),t.classList.add(\"cdk-text-field-autofill-monitored\")}),this._monitoredElements.set(t,{subject:i,unlisten:()=>{t.removeEventListener(\"animationstart\",r,Dw)}}),i.asObservable()}stopMonitoring(e){const t=_p(e),n=this._monitoredElements.get(t);n&&(n.unlisten(),n.subject.complete(),t.classList.remove(\"cdk-text-field-autofill-monitored\"),t.classList.remove(\"cdk-text-field-autofilled\"),this._monitoredElements.delete(t))}ngOnDestroy(){this._monitoredElements.forEach((e,t)=>this.stopMonitoring(t))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(bp),Qe(ld))},e.\\u0275prov=pe({factory:function(){return new e(Qe(bp),Qe(ld))},token:e,providedIn:\"root\"}),e})(),Ew=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[vp]]}),e})();const Ow=[\"underline\"],Iw=[\"connectionContainer\"],Pw=[\"inputContainer\"],Aw=[\"label\"];function Rw(e,t){1&e&&(Fo(0),Ro(1,\"div\",14),jo(2,\"div\",15),jo(3,\"div\",16),jo(4,\"div\",17),Ho(),Ro(5,\"div\",18),jo(6,\"div\",15),jo(7,\"div\",16),jo(8,\"div\",17),Ho(),No())}function Hw(e,t){1&e&&(Ro(0,\"div\",19),ea(1,1),Ho())}function jw(e,t){if(1&e&&(Fo(0),ea(1,2),Ro(2,\"span\"),Sa(3),Ho(),No()),2&e){const e=Jo(2);ys(3),La(e._control.placeholder)}}function Fw(e,t){1&e&&ea(0,3,[\"*ngSwitchCase\",\"true\"])}function Nw(e,t){1&e&&(Ro(0,\"span\",23),Sa(1,\" *\"),Ho())}function zw(e,t){if(1&e){const e=zo();Ro(0,\"label\",20,21),Uo(\"cdkObserveContent\",(function(){return en(e),Jo().updateOutlineGap()})),Do(2,jw,4,1,\"ng-container\",12),Do(3,Fw,1,0,void 0,12),Do(4,Nw,2,0,\"span\",22),Ho()}if(2&e){const e=Jo();ua(\"mat-empty\",e._control.empty&&!e._shouldAlwaysFloat)(\"mat-form-field-empty\",e._control.empty&&!e._shouldAlwaysFloat)(\"mat-accent\",\"accent\"==e.color)(\"mat-warn\",\"warn\"==e.color),Po(\"cdkObserveContentDisabled\",\"outline\"!=e.appearance)(\"id\",e._labelId)(\"ngSwitch\",e._hasLabel()),Co(\"for\",e._control.id)(\"aria-owns\",e._control.id),ys(2),Po(\"ngSwitchCase\",!1),ys(1),Po(\"ngSwitchCase\",!0),ys(1),Po(\"ngIf\",!e.hideRequiredMarker&&e._control.required&&!e._control.disabled)}}function Vw(e,t){1&e&&(Ro(0,\"div\",24),ea(1,4),Ho())}function Ww(e,t){if(1&e&&(Ro(0,\"div\",25,26),jo(2,\"span\",27),Ho()),2&e){const e=Jo();ys(2),ua(\"mat-accent\",\"accent\"==e.color)(\"mat-warn\",\"warn\"==e.color)}}function Uw(e,t){1&e&&(Ro(0,\"div\"),ea(1,5),Ho()),2&e&&Po(\"@transitionMessages\",Jo()._subscriptAnimationState)}function $w(e,t){if(1&e&&(Ro(0,\"div\",31),Sa(1),Ho()),2&e){const e=Jo(2);Po(\"id\",e._hintLabelId),ys(1),La(e.hintLabel)}}function Bw(e,t){if(1&e&&(Ro(0,\"div\",28),Do(1,$w,2,2,\"div\",29),ea(2,6),jo(3,\"div\",30),ea(4,7),Ho()),2&e){const e=Jo();Po(\"@transitionMessages\",e._subscriptAnimationState),ys(1),Po(\"ngIf\",e.hintLabel)}}const qw=[\"*\",[[\"\",\"matPrefix\",\"\"]],[[\"mat-placeholder\"]],[[\"mat-label\"]],[[\"\",\"matSuffix\",\"\"]],[[\"mat-error\"]],[[\"mat-hint\",3,\"align\",\"end\"]],[[\"mat-hint\",\"align\",\"end\"]]],Gw=[\"*\",\"[matPrefix]\",\"mat-placeholder\",\"mat-label\",\"[matSuffix]\",\"mat-error\",\"mat-hint:not([align='end'])\",\"mat-hint[align='end']\"];let Jw=0,Kw=(()=>{class e{constructor(){this.id=`mat-error-${Jw++}`}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-error\"]],hostAttrs:[\"role\",\"alert\",1,\"mat-error\"],hostVars:1,hostBindings:function(e,t){2&e&&Co(\"id\",t.id)},inputs:{id:\"id\"}}),e})();const Zw={transitionMessages:jf(\"transitionMessages\",[Wf(\"enter\",Vf({opacity:1,transform:\"translateY(0%)\"})),Uf(\"void => enter\",[Vf({opacity:0,transform:\"translateY(-100%)\"}),Ff(\"300ms cubic-bezier(0.55, 0, 0.55, 0.2)\")])])};let Qw=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e}),e})();function Xw(e){return Error(`A hint was already declared for 'align=\"${e}\"'.`)}let eM=0,tM=(()=>{class e{constructor(){this.align=\"start\",this.id=`mat-hint-${eM++}`}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-hint\"]],hostAttrs:[1,\"mat-hint\"],hostVars:4,hostBindings:function(e,t){2&e&&(Co(\"id\",t.id)(\"align\",null),ua(\"mat-right\",\"end\"==t.align))},inputs:{align:\"align\",id:\"id\"}}),e})(),nM=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-label\"]]}),e})(),iM=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-placeholder\"]]}),e})(),sM=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"matPrefix\",\"\"]]}),e})(),rM=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"matSuffix\",\"\"]]}),e})(),oM=0;class aM{constructor(e){this._elementRef=e}}const lM=_y(aM,\"primary\"),cM=new Ve(\"MAT_FORM_FIELD_DEFAULT_OPTIONS\");let dM=(()=>{class e extends lM{constructor(e,t,n,i,s,r,o,a){super(e),this._elementRef=e,this._changeDetectorRef=t,this._dir=i,this._defaults=s,this._platform=r,this._ngZone=o,this._outlineGapCalculationNeededImmediately=!1,this._outlineGapCalculationNeededOnStable=!1,this._destroyed=new L,this._showAlwaysAnimate=!1,this._subscriptAnimationState=\"\",this._hintLabel=\"\",this._hintLabelId=`mat-hint-${oM++}`,this._labelId=`mat-form-field-label-${oM++}`,this._labelOptions=n||{},this.floatLabel=this._getDefaultFloatLabelState(),this._animationsEnabled=\"NoopAnimations\"!==a,this.appearance=s&&s.appearance?s.appearance:\"legacy\",this._hideRequiredMarker=!(!s||null==s.hideRequiredMarker)&&s.hideRequiredMarker}get appearance(){return this._appearance}set appearance(e){const t=this._appearance;this._appearance=e||this._defaults&&this._defaults.appearance||\"legacy\",\"outline\"===this._appearance&&t!==e&&(this._outlineGapCalculationNeededOnStable=!0)}get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(e){this._hideRequiredMarker=hp(e)}get _shouldAlwaysFloat(){return\"always\"===this.floatLabel&&!this._showAlwaysAnimate}get _canLabelFloat(){return\"never\"!==this.floatLabel}get hintLabel(){return this._hintLabel}set hintLabel(e){this._hintLabel=e,this._processHints()}get floatLabel(){return\"legacy\"!==this.appearance&&\"never\"===this._floatLabel?\"auto\":this._floatLabel}set floatLabel(e){e!==this._floatLabel&&(this._floatLabel=e||this._getDefaultFloatLabelState(),this._changeDetectorRef.markForCheck())}get _control(){return this._explicitFormFieldControl||this._controlNonStatic||this._controlStatic}set _control(e){this._explicitFormFieldControl=e}get _labelChild(){return this._labelChildNonStatic||this._labelChildStatic}getConnectedOverlayOrigin(){return this._connectionContainerRef||this._elementRef}ngAfterContentInit(){this._validateControlChild();const e=this._control;e.controlType&&this._elementRef.nativeElement.classList.add(`mat-form-field-type-${e.controlType}`),e.stateChanges.pipe(Rf(null)).subscribe(()=>{this._validatePlaceholders(),this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),e.ngControl&&e.ngControl.valueChanges&&e.ngControl.valueChanges.pipe(Nb(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck()),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.asObservable().pipe(Nb(this._destroyed)).subscribe(()=>{this._outlineGapCalculationNeededOnStable&&this.updateOutlineGap()})}),G(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(()=>{this._outlineGapCalculationNeededOnStable=!0,this._changeDetectorRef.markForCheck()}),this._hintChildren.changes.pipe(Rf(null)).subscribe(()=>{this._processHints(),this._changeDetectorRef.markForCheck()}),this._errorChildren.changes.pipe(Rf(null)).subscribe(()=>{this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),this._dir&&this._dir.change.pipe(Nb(this._destroyed)).subscribe(()=>{\"function\"==typeof requestAnimationFrame?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>this.updateOutlineGap())}):this.updateOutlineGap()})}ngAfterContentChecked(){this._validateControlChild(),this._outlineGapCalculationNeededImmediately&&this.updateOutlineGap()}ngAfterViewInit(){this._subscriptAnimationState=\"enter\",this._changeDetectorRef.detectChanges()}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_shouldForward(e){const t=this._control?this._control.ngControl:null;return t&&t[e]}_hasPlaceholder(){return!!(this._control&&this._control.placeholder||this._placeholderChild)}_hasLabel(){return!!this._labelChild}_shouldLabelFloat(){return this._canLabelFloat&&(this._control.shouldLabelFloat||this._shouldAlwaysFloat)}_hideControlPlaceholder(){return\"legacy\"===this.appearance&&!this._hasLabel()||this._hasLabel()&&!this._shouldLabelFloat()}_hasFloatingLabel(){return this._hasLabel()||\"legacy\"===this.appearance&&this._hasPlaceholder()}_getDisplayedMessages(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?\"error\":\"hint\"}_animateAndLockLabel(){this._hasFloatingLabel()&&this._canLabelFloat&&(this._animationsEnabled&&this._label&&(this._showAlwaysAnimate=!0,Mb(this._label.nativeElement,\"transitionend\").pipe(cp(1)).subscribe(()=>{this._showAlwaysAnimate=!1})),this.floatLabel=\"always\",this._changeDetectorRef.markForCheck())}_validatePlaceholders(){if(this._control.placeholder&&this._placeholderChild)throw Error(\"Placeholder attribute and child element were both specified.\")}_processHints(){this._validateHints(),this._syncDescribedByIds()}_validateHints(){if(this._hintChildren){let e,t;this._hintChildren.forEach(n=>{if(\"start\"===n.align){if(e||this.hintLabel)throw Xw(\"start\");e=n}else if(\"end\"===n.align){if(t)throw Xw(\"end\");t=n}})}}_getDefaultFloatLabelState(){return this._defaults&&this._defaults.floatLabel||this._labelOptions.float||\"auto\"}_syncDescribedByIds(){if(this._control){let e=[];if(\"hint\"===this._getDisplayedMessages()){const t=this._hintChildren?this._hintChildren.find(e=>\"start\"===e.align):null,n=this._hintChildren?this._hintChildren.find(e=>\"end\"===e.align):null;t?e.push(t.id):this._hintLabel&&e.push(this._hintLabelId),n&&e.push(n.id)}else this._errorChildren&&(e=this._errorChildren.map(e=>e.id));this._control.setDescribedByIds(e)}}_validateControlChild(){if(!this._control)throw Error(\"mat-form-field must contain a MatFormFieldControl.\")}updateOutlineGap(){const e=this._label?this._label.nativeElement:null;if(\"outline\"!==this.appearance||!e||!e.children.length||!e.textContent.trim())return;if(!this._platform.isBrowser)return;if(!this._isAttachedToDOM())return void(this._outlineGapCalculationNeededImmediately=!0);let t=0,n=0;const i=this._connectionContainerRef.nativeElement,s=i.querySelectorAll(\".mat-form-field-outline-start\"),r=i.querySelectorAll(\".mat-form-field-outline-gap\");if(this._label&&this._label.nativeElement.children.length){const s=i.getBoundingClientRect();if(0===s.width&&0===s.height)return this._outlineGapCalculationNeededOnStable=!0,void(this._outlineGapCalculationNeededImmediately=!1);const r=this._getStartEnd(s),o=this._getStartEnd(e.children[0].getBoundingClientRect());let a=0;for(const t of e.children)a+=t.offsetWidth;t=o-r-5,n=a>0?.75*a+10:0}for(let o=0;o{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu,Ep]]}),e})();const hM=new Ve(\"MAT_INPUT_VALUE_ACCESSOR\"),mM=[\"button\",\"checkbox\",\"file\",\"hidden\",\"image\",\"radio\",\"range\",\"reset\",\"submit\"];let pM=0;class fM{constructor(e,t,n,i){this._defaultErrorStateMatcher=e,this._parentForm=t,this._parentFormGroup=n,this.ngControl=i}}const _M=by(fM);let gM=(()=>{class e extends _M{constructor(e,t,n,i,s,r,o,a,l){super(r,i,s,n),this._elementRef=e,this._platform=t,this.ngControl=n,this._autofillMonitor=a,this._uid=`mat-input-${pM++}`,this._isServer=!1,this._isNativeSelect=!1,this.focused=!1,this.stateChanges=new L,this.controlType=\"mat-input\",this.autofilled=!1,this._disabled=!1,this._required=!1,this._type=\"text\",this._readonly=!1,this._neverEmptyInputTypes=[\"date\",\"datetime\",\"datetime-local\",\"month\",\"time\",\"week\"].filter(e=>Mp().has(e));const c=this._elementRef.nativeElement;this._inputValueAccessor=o||c,this._previousNativeValue=this.value,this.id=this.id,t.IOS&&l.runOutsideAngular(()=>{e.nativeElement.addEventListener(\"keyup\",e=>{let t=e.target;t.value||t.selectionStart||t.selectionEnd||(t.setSelectionRange(1,1),t.setSelectionRange(0,0))})}),this._isServer=!this._platform.isBrowser,this._isNativeSelect=\"select\"===c.nodeName.toLowerCase(),this._isNativeSelect&&(this.controlType=c.multiple?\"mat-native-select-multiple\":\"mat-native-select\")}get disabled(){return this.ngControl&&null!==this.ngControl.disabled?this.ngControl.disabled:this._disabled}set disabled(e){this._disabled=hp(e),this.focused&&(this.focused=!1,this.stateChanges.next())}get id(){return this._id}set id(e){this._id=e||this._uid}get required(){return this._required}set required(e){this._required=hp(e)}get type(){return this._type}set type(e){this._type=e||\"text\",this._validateType(),!this._isTextarea()&&Mp().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}get value(){return this._inputValueAccessor.value}set value(e){e!==this.value&&(this._inputValueAccessor.value=e,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(e){this._readonly=hp(e)}ngOnInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(e=>{this.autofilled=e.isAutofilled,this.stateChanges.next()})}ngOnChanges(){this.stateChanges.next()}ngOnDestroy(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement)}ngDoCheck(){this.ngControl&&this.updateErrorState(),this._dirtyCheckNativeValue()}focus(e){this._elementRef.nativeElement.focus(e)}_focusChanged(e){e===this.focused||this.readonly&&e||(this.focused=e,this.stateChanges.next())}_onInput(){}_isTextarea(){return\"textarea\"===this._elementRef.nativeElement.nodeName.toLowerCase()}_dirtyCheckNativeValue(){const e=this._elementRef.nativeElement.value;this._previousNativeValue!==e&&(this._previousNativeValue=e,this.stateChanges.next())}_validateType(){if(mM.indexOf(this._type)>-1)throw Error(`Input type \"${this._type}\" isn't supported by matInput.`)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let e=this._elementRef.nativeElement.validity;return e&&e.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const e=this._elementRef.nativeElement,t=e.options[0];return this.focused||e.multiple||!this.empty||!!(e.selectedIndex>-1&&t&&t.label)}return this.focused||!this.empty}setDescribedByIds(e){this._ariaDescribedby=e.join(\" \")}onContainerClick(){this.focused||this.focus()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(bp),Eo(wh,10),Eo(bm,8),Eo(Im,8),Eo(vy),Eo(hM,10),Eo(Yw),Eo(ld))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"matInput\",\"\"],[\"textarea\",\"matInput\",\"\"],[\"select\",\"matNativeControl\",\"\"],[\"input\",\"matNativeControl\",\"\"],[\"textarea\",\"matNativeControl\",\"\"]],hostAttrs:[1,\"mat-input-element\",\"mat-form-field-autofill-control\"],hostVars:10,hostBindings:function(e,t){1&e&&Uo(\"blur\",(function(){return t._focusChanged(!1)}))(\"focus\",(function(){return t._focusChanged(!0)}))(\"input\",(function(){return t._onInput()})),2&e&&(Ca(\"disabled\",t.disabled)(\"required\",t.required),Co(\"id\",t.id)(\"placeholder\",t.placeholder)(\"readonly\",t.readonly&&!t._isNativeSelect||null)(\"aria-describedby\",t._ariaDescribedby||null)(\"aria-invalid\",t.errorState)(\"aria-required\",t.required.toString()),ua(\"mat-input-server\",t._isServer))},inputs:{id:\"id\",disabled:\"disabled\",required:\"required\",type:\"type\",value:\"value\",readonly:\"readonly\",placeholder:\"placeholder\",errorStateMatcher:\"errorStateMatcher\"},exportAs:[\"matInput\"],features:[Ba([{provide:Qw,useExisting:e}]),Ya,Ra]}),e})(),yM=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[vy],imports:[[Ew,uM],Ew,uM]}),e})();function bM(e,t=tp){var n;const i=(n=e)instanceof Date&&!isNaN(+n)?+e-t.now():Math.abs(e);return e=>e.lift(new vM(i,t))}class vM{constructor(e,t){this.delay=e,this.scheduler=t}call(e,t){return t.subscribe(new wM(e,this.delay,this.scheduler))}}class wM extends p{constructor(e,t,n){super(e),this.delay=t,this.scheduler=n,this.queue=[],this.active=!1,this.errored=!1}static dispatch(e){const t=e.source,n=t.queue,i=e.scheduler,s=e.destination;for(;n.length>0&&n[0].time-i.now()<=0;)n.shift().notification.observe(s);if(n.length>0){const t=Math.max(0,n[0].time-i.now());this.schedule(e,t)}else this.unsubscribe(),t.active=!1}_schedule(e){this.active=!0,this.destination.add(e.schedule(wM.dispatch,this.delay,{source:this,destination:this.destination,scheduler:e}))}scheduleNotification(e){if(!0===this.errored)return;const t=this.scheduler,n=new MM(t.now()+this.delay,e);this.queue.push(n),!1===this.active&&this._schedule(t)}_next(e){this.scheduleNotification(Zb.createNext(e))}_error(e){this.errored=!0,this.queue=[],this.destination.error(e),this.unsubscribe()}_complete(){this.scheduleNotification(Zb.createComplete()),this.unsubscribe()}}class MM{constructor(e,t){this.time=e,this.notification=t}}const kM=[\"mat-menu-item\",\"\"],SM=[\"*\"];function LM(e,t){if(1&e){const e=zo();Ro(0,\"div\",0),Uo(\"keydown\",(function(t){return en(e),Jo()._handleKeydown(t)}))(\"click\",(function(){return en(e),Jo().closed.emit(\"click\")}))(\"@transformMenu.start\",(function(t){return en(e),Jo()._onAnimationStart(t)}))(\"@transformMenu.done\",(function(t){return en(e),Jo()._onAnimationDone(t)})),Ro(1,\"div\",1),ea(2),Ho(),Ho()}if(2&e){const e=Jo();Po(\"id\",e.panelId)(\"ngClass\",e._classList)(\"@transformMenu\",e._panelAnimationState),Co(\"aria-label\",e.ariaLabel||null)(\"aria-labelledby\",e.ariaLabelledby||null)(\"aria-describedby\",e.ariaDescribedby||null)}}const xM={transformMenu:jf(\"transformMenu\",[Wf(\"void\",Vf({opacity:0,transform:\"scale(0.8)\"})),Uf(\"void => enter\",Nf([Bf(\".mat-menu-content, .mat-mdc-menu-content\",Ff(\"100ms linear\",Vf({opacity:1}))),Ff(\"120ms cubic-bezier(0, 0, 0.2, 1)\",Vf({transform:\"scale(1)\"}))])),Uf(\"* => void\",Ff(\"100ms 25ms linear\",Vf({opacity:0})))]),fadeInItems:jf(\"fadeInItems\",[Wf(\"showing\",Vf({opacity:1})),Uf(\"void => *\",[Vf({opacity:0}),Ff(\"400ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)\")])])};let CM=(()=>{class e{constructor(e,t,n,i,s,r,o){this._template=e,this._componentFactoryResolver=t,this._appRef=n,this._injector=i,this._viewContainerRef=s,this._document=r,this._changeDetectorRef=o,this._attached=new L}attach(e={}){this._portal||(this._portal=new uv(this._template,this._viewContainerRef)),this.detach(),this._outlet||(this._outlet=new pv(this._document.createElement(\"div\"),this._componentFactoryResolver,this._appRef,this._injector));const t=this._template.elementRef.nativeElement;t.parentNode.insertBefore(this._outlet.outletElement,t),this._changeDetectorRef&&this._changeDetectorRef.markForCheck(),this._portal.attach(this._outlet,e),this._attached.next()}detach(){this._portal.isAttached&&this._portal.detach()}ngOnDestroy(){this._outlet&&this._outlet.dispose()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(vl),Eo(Ja),Eo(Td),Eo(fo),Eo(Ml),Eo(Nd),Eo(Qr))},e.\\u0275dir=St({type:e,selectors:[[\"ng-template\",\"matMenuContent\",\"\"]]}),e})();const TM=new Ve(\"MAT_MENU_PANEL\");class DM{}const YM=gy(fy(DM));let EM=(()=>{class e extends YM{constructor(e,t,n,i){super(),this._elementRef=e,this._focusMonitor=n,this._parentMenu=i,this.role=\"menuitem\",this._hovered=new L,this._focused=new L,this._highlighted=!1,this._triggersSubmenu=!1,n&&n.monitor(this._elementRef,!1),i&&i.addItem&&i.addItem(this),this._document=t}focus(e=\"program\",t){this._focusMonitor?this._focusMonitor.focusVia(this._getHostElement(),e,t):this._getHostElement().focus(t),this._focused.next(this)}ngOnDestroy(){this._focusMonitor&&this._focusMonitor.stopMonitoring(this._elementRef),this._parentMenu&&this._parentMenu.removeItem&&this._parentMenu.removeItem(this),this._hovered.complete(),this._focused.complete()}_getTabIndex(){return this.disabled?\"-1\":\"0\"}_getHostElement(){return this._elementRef.nativeElement}_checkDisabled(e){this.disabled&&(e.preventDefault(),e.stopPropagation())}_handleMouseEnter(){this._hovered.next(this)}getLabel(){const e=this._elementRef.nativeElement,t=this._document?this._document.TEXT_NODE:3;let n=\"\";if(e.childNodes){const i=e.childNodes.length;for(let s=0;s{class e{constructor(e,t,n){this._elementRef=e,this._ngZone=t,this._defaultOptions=n,this._xPosition=this._defaultOptions.xPosition,this._yPosition=this._defaultOptions.yPosition,this._directDescendantItems=new vc,this._tabSubscription=u.EMPTY,this._classList={},this._panelAnimationState=\"void\",this._animationDone=new L,this.backdropClass=this._defaultOptions.backdropClass,this._overlapTrigger=this._defaultOptions.overlapTrigger,this._hasBackdrop=this._defaultOptions.hasBackdrop,this.closed=new yc,this.close=this.closed,this.panelId=`mat-menu-panel-${IM++}`}get xPosition(){return this._xPosition}set xPosition(e){\"before\"!==e&&\"after\"!==e&&function(){throw Error('xPosition value must be either \\'before\\' or after\\'.\\n Example: ')}(),this._xPosition=e,this.setPositionClasses()}get yPosition(){return this._yPosition}set yPosition(e){\"above\"!==e&&\"below\"!==e&&function(){throw Error('yPosition value must be either \\'above\\' or below\\'.\\n Example: ')}(),this._yPosition=e,this.setPositionClasses()}get overlapTrigger(){return this._overlapTrigger}set overlapTrigger(e){this._overlapTrigger=hp(e)}get hasBackdrop(){return this._hasBackdrop}set hasBackdrop(e){this._hasBackdrop=hp(e)}set panelClass(e){const t=this._previousPanelClass;t&&t.length&&t.split(\" \").forEach(e=>{this._classList[e]=!1}),this._previousPanelClass=e,e&&e.length&&(e.split(\" \").forEach(e=>{this._classList[e]=!0}),this._elementRef.nativeElement.className=\"\")}get classList(){return this.panelClass}set classList(e){this.panelClass=e}ngOnInit(){this.setPositionClasses()}ngAfterContentInit(){this._updateDirectDescendants(),this._keyManager=new Pp(this._directDescendantItems).withWrap().withTypeAhead(),this._tabSubscription=this._keyManager.tabOut.subscribe(()=>this.closed.emit(\"tab\")),this._directDescendantItems.changes.pipe(Rf(this._directDescendantItems),Wb(e=>G(...e.map(e=>e._focused)))).subscribe(e=>this._keyManager.updateActiveItem(e))}ngOnDestroy(){this._directDescendantItems.destroy(),this._tabSubscription.unsubscribe(),this.closed.complete()}_hovered(){return this._directDescendantItems.changes.pipe(Rf(this._directDescendantItems),Wb(e=>G(...e.map(e=>e._hovered))))}addItem(e){}removeItem(e){}_handleKeydown(e){const t=e.keyCode,n=this._keyManager;switch(t){case 27:qm(e)||(e.preventDefault(),this.closed.emit(\"keydown\"));break;case 37:this.parentMenu&&\"ltr\"===this.direction&&this.closed.emit(\"keydown\");break;case 39:this.parentMenu&&\"rtl\"===this.direction&&this.closed.emit(\"keydown\");break;case 36:case 35:qm(e)||(36===t?n.setFirstItemActive():n.setLastItemActive(),e.preventDefault());break;default:38!==t&&40!==t||n.setFocusOrigin(\"keyboard\"),n.onKeydown(e)}}focusFirstItem(e=\"program\"){this.lazyContent?this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(()=>this._focusFirstItem(e)):this._focusFirstItem(e)}_focusFirstItem(e){const t=this._keyManager;if(t.setFocusOrigin(e).setFirstItemActive(),!t.activeItem&&this._directDescendantItems.length){let e=this._directDescendantItems.first._getHostElement().parentElement;for(;e;){if(\"menu\"===e.getAttribute(\"role\")){e.focus();break}e=e.parentElement}}}resetActiveItem(){this._keyManager.setActiveItem(-1)}setElevation(e){const t=`mat-elevation-z${Math.min(4+e,24)}`,n=Object.keys(this._classList).find(e=>e.startsWith(\"mat-elevation-z\"));n&&n!==this._previousElevation||(this._previousElevation&&(this._classList[this._previousElevation]=!1),this._classList[t]=!0,this._previousElevation=t)}setPositionClasses(e=this.xPosition,t=this.yPosition){const n=this._classList;n[\"mat-menu-before\"]=\"before\"===e,n[\"mat-menu-after\"]=\"after\"===e,n[\"mat-menu-above\"]=\"above\"===t,n[\"mat-menu-below\"]=\"below\"===t}_startAnimation(){this._panelAnimationState=\"enter\"}_resetAnimation(){this._panelAnimationState=\"void\"}_onAnimationDone(e){this._animationDone.next(e),this._isAnimating=!1}_onAnimationStart(e){this._isAnimating=!0,\"enter\"===e.toState&&0===this._keyManager.activeItemIndex&&(e.element.scrollTop=0)}_updateDirectDescendants(){this._allItems.changes.pipe(Rf(this._allItems)).subscribe(e=>{this._directDescendantItems.reset(e.filter(e=>e._parentMenu===this)),this._directDescendantItems.notifyOnChanges()})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(ld),Eo(OM))},e.\\u0275dir=St({type:e,contentQueries:function(e,t,n){var i;1&e&&(Ic(n,CM,!0),Ic(n,EM,!0),Ic(n,EM,!1)),2&e&&(Dc(i=Rc())&&(t.lazyContent=i.first),Dc(i=Rc())&&(t._allItems=i),Dc(i=Rc())&&(t.items=i))},viewQuery:function(e,t){var n;1&e&&Ec(vl,!0),2&e&&Dc(n=Rc())&&(t.templateRef=n.first)},inputs:{backdropClass:\"backdropClass\",xPosition:\"xPosition\",yPosition:\"yPosition\",overlapTrigger:\"overlapTrigger\",hasBackdrop:\"hasBackdrop\",panelClass:[\"class\",\"panelClass\"],classList:\"classList\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],ariaDescribedby:[\"aria-describedby\",\"ariaDescribedby\"]},outputs:{closed:\"closed\",close:\"close\"}}),e})(),AM=(()=>{class e extends PM{}return e.\\u0275fac=function(t){return RM(t||e)},e.\\u0275dir=St({type:e,features:[Ya]}),e})();const RM=li(AM);let HM=(()=>{class e extends AM{constructor(e,t,n){super(e,t,n)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(ld),Eo(OM))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-menu\"]],exportAs:[\"matMenu\"],features:[Ba([{provide:TM,useExisting:AM},{provide:AM,useExisting:e}]),Ya],ngContentSelectors:SM,decls:1,vars:0,consts:[[\"tabindex\",\"-1\",\"role\",\"menu\",1,\"mat-menu-panel\",3,\"id\",\"ngClass\",\"keydown\",\"click\"],[1,\"mat-menu-content\"]],template:function(e,t){1&e&&(Zo(),Do(0,LM,3,6,\"ng-template\"))},directives:[cu],styles:['.mat-menu-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;max-height:calc(100vh - 48px);border-radius:4px;outline:0;min-height:64px}.mat-menu-panel.ng-animating{pointer-events:none}.cdk-high-contrast-active .mat-menu-panel{outline:solid 1px}.mat-menu-content:not(:empty){padding-top:8px;padding-bottom:8px}.mat-menu-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative}.mat-menu-item::-moz-focus-inner{border:0}.mat-menu-item[disabled]{cursor:default}[dir=rtl] .mat-menu-item{text-align:right}.mat-menu-item .mat-icon{margin-right:16px;vertical-align:middle}.mat-menu-item .mat-icon svg{vertical-align:top}[dir=rtl] .mat-menu-item .mat-icon{margin-left:16px;margin-right:0}.mat-menu-item[disabled]{pointer-events:none}.cdk-high-contrast-active .mat-menu-item.cdk-program-focused,.cdk-high-contrast-active .mat-menu-item.cdk-keyboard-focused,.cdk-high-contrast-active .mat-menu-item-highlighted{outline:dotted 1px}.mat-menu-item-submenu-trigger{padding-right:32px}.mat-menu-item-submenu-trigger::after{width:0;height:0;border-style:solid;border-width:5px 0 5px 5px;border-color:transparent transparent transparent currentColor;content:\"\";display:inline-block;position:absolute;top:50%;right:16px;transform:translateY(-50%)}[dir=rtl] .mat-menu-item-submenu-trigger{padding-right:16px;padding-left:32px}[dir=rtl] .mat-menu-item-submenu-trigger::after{right:auto;left:16px;transform:rotateY(180deg) translateY(-50%)}button.mat-menu-item{width:100%}.mat-menu-item .mat-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}\\n'],encapsulation:2,data:{animation:[xM.transformMenu,xM.fadeInItems]},changeDetection:0}),e})();const jM=new Ve(\"mat-menu-scroll-strategy\"),FM={provide:jM,deps:[Nv],useFactory:function(e){return()=>e.scrollStrategies.reposition()}},NM=Sp({passive:!0});let zM=(()=>{class e{constructor(e,t,n,i,s,r,o,a){this._overlay=e,this._element=t,this._viewContainerRef=n,this._parentMenu=s,this._menuItemInstance=r,this._dir=o,this._focusMonitor=a,this._overlayRef=null,this._menuOpen=!1,this._closingActionsSubscription=u.EMPTY,this._hoverSubscription=u.EMPTY,this._menuCloseSubscription=u.EMPTY,this._handleTouchStart=()=>this._openedBy=\"touch\",this._openedBy=null,this.restoreFocus=!0,this.menuOpened=new yc,this.onMenuOpen=this.menuOpened,this.menuClosed=new yc,this.onMenuClose=this.menuClosed,t.nativeElement.addEventListener(\"touchstart\",this._handleTouchStart,NM),r&&(r._triggersSubmenu=this.triggersSubmenu()),this._scrollStrategy=i}get _deprecatedMatMenuTriggerFor(){return this.menu}set _deprecatedMatMenuTriggerFor(e){this.menu=e}get menu(){return this._menu}set menu(e){e!==this._menu&&(this._menu=e,this._menuCloseSubscription.unsubscribe(),e&&(this._menuCloseSubscription=e.close.asObservable().subscribe(e=>{this._destroyMenu(),\"click\"!==e&&\"tab\"!==e||!this._parentMenu||this._parentMenu.closed.emit(e)})))}ngAfterContentInit(){this._checkMenu(),this._handleHover()}ngOnDestroy(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null),this._element.nativeElement.removeEventListener(\"touchstart\",this._handleTouchStart,NM),this._menuCloseSubscription.unsubscribe(),this._closingActionsSubscription.unsubscribe(),this._hoverSubscription.unsubscribe()}get menuOpen(){return this._menuOpen}get dir(){return this._dir&&\"rtl\"===this._dir.value?\"rtl\":\"ltr\"}triggersSubmenu(){return!(!this._menuItemInstance||!this._parentMenu)}toggleMenu(){return this._menuOpen?this.closeMenu():this.openMenu()}openMenu(){if(this._menuOpen)return;this._checkMenu();const e=this._createOverlay(),t=e.getConfig();this._setPosition(t.positionStrategy),t.hasBackdrop=null==this.menu.hasBackdrop?!this.triggersSubmenu():this.menu.hasBackdrop,e.attach(this._getPortal()),this.menu.lazyContent&&this.menu.lazyContent.attach(this.menuData),this._closingActionsSubscription=this._menuClosingActions().subscribe(()=>this.closeMenu()),this._initMenu(),this.menu instanceof AM&&this.menu._startAnimation()}closeMenu(){this.menu.close.emit()}focus(e=\"program\",t){this._focusMonitor?this._focusMonitor.focusVia(this._element,e,t):this._element.nativeElement.focus(t)}_destroyMenu(){if(!this._overlayRef||!this.menuOpen)return;const e=this.menu;this._closingActionsSubscription.unsubscribe(),this._overlayRef.detach(),this._restoreFocus(),e instanceof AM?(e._resetAnimation(),e.lazyContent?e._animationDone.pipe(Tu(e=>\"void\"===e.toState),cp(1),Nb(e.lazyContent._attached)).subscribe({next:()=>e.lazyContent.detach(),complete:()=>this._setIsMenuOpen(!1)}):this._setIsMenuOpen(!1)):(this._setIsMenuOpen(!1),e.lazyContent&&e.lazyContent.detach())}_initMenu(){this.menu.parentMenu=this.triggersSubmenu()?this._parentMenu:void 0,this.menu.direction=this.dir,this._setMenuElevation(),this._setIsMenuOpen(!0),this.menu.focusFirstItem(this._openedBy||\"program\")}_setMenuElevation(){if(this.menu.setElevation){let e=0,t=this.menu.parentMenu;for(;t;)e++,t=t.parentMenu;this.menu.setElevation(e)}}_restoreFocus(){this.restoreFocus&&(this._openedBy?this.triggersSubmenu()||this.focus(this._openedBy):this.focus()),this._openedBy=null}_setIsMenuOpen(e){this._menuOpen=e,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this.triggersSubmenu()&&(this._menuItemInstance._highlighted=e)}_checkMenu(){this.menu||function(){throw Error('matMenuTriggerFor: must pass in an mat-menu instance.\\n\\n Example:\\n \\n ')}()}_createOverlay(){if(!this._overlayRef){const e=this._getOverlayConfig();this._subscribeToPositions(e.positionStrategy),this._overlayRef=this._overlay.create(e),this._overlayRef.keydownEvents().subscribe()}return this._overlayRef}_getOverlayConfig(){return new Lv({positionStrategy:this._overlay.position().flexibleConnectedTo(this._element).withLockedPosition().withTransformOriginOn(\".mat-menu-panel, .mat-mdc-menu-panel\"),backdropClass:this.menu.backdropClass||\"cdk-overlay-transparent-backdrop\",scrollStrategy:this._scrollStrategy(),direction:this._dir})}_subscribeToPositions(e){this.menu.setPositionClasses&&e.positionChanges.subscribe(e=>{this.menu.setPositionClasses(\"start\"===e.connectionPair.overlayX?\"after\":\"before\",\"top\"===e.connectionPair.overlayY?\"below\":\"above\")})}_setPosition(e){let[t,n]=\"before\"===this.menu.xPosition?[\"end\",\"start\"]:[\"start\",\"end\"],[i,s]=\"above\"===this.menu.yPosition?[\"bottom\",\"top\"]:[\"top\",\"bottom\"],[r,o]=[i,s],[a,l]=[t,n],c=0;this.triggersSubmenu()?(l=t=\"before\"===this.menu.xPosition?\"start\":\"end\",n=a=\"end\"===t?\"start\":\"end\",c=\"bottom\"===i?8:-8):this.menu.overlapTrigger||(r=\"top\"===i?\"bottom\":\"top\",o=\"top\"===s?\"bottom\":\"top\"),e.withPositions([{originX:t,originY:r,overlayX:a,overlayY:i,offsetY:c},{originX:n,originY:r,overlayX:l,overlayY:i,offsetY:c},{originX:t,originY:o,overlayX:a,overlayY:s,offsetY:-c},{originX:n,originY:o,overlayX:l,overlayY:s,offsetY:-c}])}_menuClosingActions(){const e=this._overlayRef.backdropClick(),t=this._overlayRef.detachments();return G(e,this._parentMenu?this._parentMenu.closed:xu(),this._parentMenu?this._parentMenu._hovered().pipe(Tu(e=>e!==this._menuItemInstance),Tu(()=>this._menuOpen)):xu(),t)}_handleMousedown(e){$p(e)||(this._openedBy=0===e.button?\"mouse\":null,this.triggersSubmenu()&&e.preventDefault())}_handleKeydown(e){const t=e.keyCode;this.triggersSubmenu()&&(39===t&&\"ltr\"===this.dir||37===t&&\"rtl\"===this.dir)&&this.openMenu()}_handleClick(e){this.triggersSubmenu()?(e.stopPropagation(),this.openMenu()):this.toggleMenu()}_handleHover(){this.triggersSubmenu()&&(this._hoverSubscription=this._parentMenu._hovered().pipe(Tu(e=>e===this._menuItemInstance&&!e.disabled),bM(0,Yb)).subscribe(()=>{this._openedBy=\"mouse\",this.menu instanceof AM&&this.menu._isAnimating?this.menu._animationDone.pipe(cp(1),bM(0,Yb),Nb(this._parentMenu._hovered())).subscribe(()=>this.openMenu()):this.openMenu()}))}_getPortal(){return this._portal&&this._portal.templateRef===this.menu.templateRef||(this._portal=new uv(this.menu.templateRef,this._viewContainerRef)),this._portal}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Nv),Eo(Ka),Eo(Ml),Eo(jM),Eo(AM,8),Eo(EM,10),Eo(Gp,8),Eo(Up))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"mat-menu-trigger-for\",\"\"],[\"\",\"matMenuTriggerFor\",\"\"]],hostAttrs:[\"aria-haspopup\",\"true\",1,\"mat-menu-trigger\"],hostVars:2,hostBindings:function(e,t){1&e&&Uo(\"mousedown\",(function(e){return t._handleMousedown(e)}))(\"keydown\",(function(e){return t._handleKeydown(e)}))(\"click\",(function(e){return t._handleClick(e)})),2&e&&Co(\"aria-expanded\",t.menuOpen||null)(\"aria-controls\",t.menuOpen?t.menu.panelId:null)},inputs:{restoreFocus:[\"matMenuTriggerRestoreFocus\",\"restoreFocus\"],_deprecatedMatMenuTriggerFor:[\"mat-menu-trigger-for\",\"_deprecatedMatMenuTriggerFor\"],menu:[\"matMenuTriggerFor\",\"menu\"],menuData:[\"matMenuTriggerData\",\"menuData\"]},outputs:{menuOpened:\"menuOpened\",onMenuOpen:\"onMenuOpen\",menuClosed:\"menuClosed\",onMenuClose:\"onMenuClose\"},exportAs:[\"matMenuTrigger\"]}),e})(),VM=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[FM],imports:[py]}),e})(),WM=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[FM],imports:[[Mu,py,Ty,Bv,VM],VM]}),e})();const UM=[\"primaryValueBar\"];class $M{constructor(e){this._elementRef=e}}const BM=_y($M,\"primary\"),qM=new Ve(\"mat-progress-bar-location\",{providedIn:\"root\",factory:function(){const e=Xe(Nd),t=e?e.location:null;return{getPathname:()=>t?t.pathname+t.search:\"\"}}});let GM=0,JM=(()=>{class e extends BM{constructor(e,t,n,i){super(e),this._elementRef=e,this._ngZone=t,this._animationMode=n,this._isNoopAnimation=!1,this._value=0,this._bufferValue=0,this.animationEnd=new yc,this._animationEndSubscription=u.EMPTY,this.mode=\"determinate\",this.progressbarId=`mat-progress-bar-${GM++}`;const s=i?i.getPathname().split(\"#\")[0]:\"\";this._rectangleFillValue=`url('${s}#${this.progressbarId}')`,this._isNoopAnimation=\"NoopAnimations\"===n}get value(){return this._value}set value(e){this._value=KM(mp(e)||0)}get bufferValue(){return this._bufferValue}set bufferValue(e){this._bufferValue=KM(e||0)}_primaryTransform(){return{transform:`scaleX(${this.value/100})`}}_bufferTransform(){return\"buffer\"===this.mode?{transform:`scaleX(${this.bufferValue/100})`}:null}ngAfterViewInit(){this._ngZone.runOutsideAngular(()=>{const e=this._primaryValueBar.nativeElement;this._animationEndSubscription=Mb(e,\"transitionend\").pipe(Tu(t=>t.target===e)).subscribe(()=>{\"determinate\"!==this.mode&&\"buffer\"!==this.mode||this._ngZone.run(()=>this.animationEnd.next({value:this.value}))})})}ngOnDestroy(){this._animationEndSubscription.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(ld),Eo(sy,8),Eo(qM,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-progress-bar\"]],viewQuery:function(e,t){var n;1&e&&Ec(UM,!0),2&e&&Dc(n=Rc())&&(t._primaryValueBar=n.first)},hostAttrs:[\"role\",\"progressbar\",\"aria-valuemin\",\"0\",\"aria-valuemax\",\"100\",1,\"mat-progress-bar\"],hostVars:4,hostBindings:function(e,t){2&e&&(Co(\"aria-valuenow\",\"indeterminate\"===t.mode||\"query\"===t.mode?null:t.value)(\"mode\",t.mode),ua(\"_mat-animation-noopable\",t._isNoopAnimation))},inputs:{color:\"color\",mode:\"mode\",value:\"value\",bufferValue:\"bufferValue\"},outputs:{animationEnd:\"animationEnd\"},exportAs:[\"matProgressBar\"],features:[Ya],decls:9,vars:4,consts:[[\"width\",\"100%\",\"height\",\"4\",\"focusable\",\"false\",1,\"mat-progress-bar-background\",\"mat-progress-bar-element\"],[\"x\",\"4\",\"y\",\"0\",\"width\",\"8\",\"height\",\"4\",\"patternUnits\",\"userSpaceOnUse\",3,\"id\"],[\"cx\",\"2\",\"cy\",\"2\",\"r\",\"2\"],[\"width\",\"100%\",\"height\",\"100%\"],[1,\"mat-progress-bar-buffer\",\"mat-progress-bar-element\",3,\"ngStyle\"],[1,\"mat-progress-bar-primary\",\"mat-progress-bar-fill\",\"mat-progress-bar-element\",3,\"ngStyle\"],[\"primaryValueBar\",\"\"],[1,\"mat-progress-bar-secondary\",\"mat-progress-bar-fill\",\"mat-progress-bar-element\"]],template:function(e,t){1&e&&(kn(),Ro(0,\"svg\",0),Ro(1,\"defs\"),Ro(2,\"pattern\",1),jo(3,\"circle\",2),Ho(),Ho(),jo(4,\"rect\",3),Ho(),Sn(),jo(5,\"div\",4),jo(6,\"div\",5,6),jo(8,\"div\",7)),2&e&&(ys(2),Po(\"id\",t.progressbarId),ys(2),Co(\"fill\",t._rectangleFillValue),ys(1),Po(\"ngStyle\",t._bufferTransform()),ys(1),Po(\"ngStyle\",t._primaryTransform()))},directives:[vu],styles:['.mat-progress-bar{display:block;height:4px;overflow:hidden;position:relative;transition:opacity 250ms linear;width:100%}._mat-animation-noopable.mat-progress-bar{transition:none;animation:none}.mat-progress-bar .mat-progress-bar-element,.mat-progress-bar .mat-progress-bar-fill::after{height:100%;position:absolute;width:100%}.mat-progress-bar .mat-progress-bar-background{width:calc(100% + 10px)}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-background{display:none}.mat-progress-bar .mat-progress-bar-buffer{transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-buffer{border-top:solid 5px;opacity:.5}.mat-progress-bar .mat-progress-bar-secondary{display:none}.mat-progress-bar .mat-progress-bar-fill{animation:none;transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-fill{border-top:solid 4px}.mat-progress-bar .mat-progress-bar-fill::after{animation:none;content:\"\";display:inline-block;left:0}.mat-progress-bar[dir=rtl],[dir=rtl] .mat-progress-bar{transform:rotateY(180deg)}.mat-progress-bar[mode=query]{transform:rotateZ(180deg)}.mat-progress-bar[mode=query][dir=rtl],[dir=rtl] .mat-progress-bar[mode=query]{transform:rotateZ(180deg) rotateY(180deg)}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-fill,.mat-progress-bar[mode=query] .mat-progress-bar-fill{transition:none}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary,.mat-progress-bar[mode=query] .mat-progress-bar-primary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-translate 2000ms infinite linear;left:-145.166611%}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-primary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary,.mat-progress-bar[mode=query] .mat-progress-bar-secondary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-translate 2000ms infinite linear;left:-54.888891%;display:block}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-secondary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=buffer] .mat-progress-bar-background{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-background-scroll 250ms infinite linear;display:block}.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-buffer,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-background{animation:none;transition-duration:1ms}@keyframes mat-progress-bar-primary-indeterminate-translate{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(83.67142%)}100%{transform:translateX(200.611057%)}}@keyframes mat-progress-bar-primary-indeterminate-scale{0%{transform:scaleX(0.08)}36.65%{animation-timing-function:cubic-bezier(0.334731, 0.12482, 0.785844, 1);transform:scaleX(0.08)}69.15%{animation-timing-function:cubic-bezier(0.06, 0.11, 0.6, 1);transform:scaleX(0.661479)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-secondary-indeterminate-translate{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(37.651913%)}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(84.386165%)}100%{transform:translateX(160.277782%)}}@keyframes mat-progress-bar-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-background-scroll{to{transform:translateX(-8px)}}\\n'],encapsulation:2,changeDetection:0}),e})();function KM(e,t=0,n=100){return Math.max(t,Math.min(n,e))}let ZM=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu,py],py]}),e})();const QM=[\"trigger\"],XM=[\"panel\"];function ek(e,t){if(1&e&&(Ro(0,\"span\",8),Sa(1),Ho()),2&e){const e=Jo();ys(1),La(e.placeholder||\"\\xa0\")}}function tk(e,t){if(1&e&&(Ro(0,\"span\"),Sa(1),Ho()),2&e){const e=Jo(2);ys(1),La(e.triggerValue||\"\\xa0\")}}function nk(e,t){1&e&&ea(0,0,[\"*ngSwitchCase\",\"true\"])}function ik(e,t){1&e&&(Ro(0,\"span\",9),Do(1,tk,2,1,\"span\",10),Do(2,nk,1,0,void 0,11),Ho()),2&e&&(Po(\"ngSwitch\",!!Jo().customTrigger),ys(2),Po(\"ngSwitchCase\",!0))}function sk(e,t){if(1&e){const e=zo();Ro(0,\"div\",12),Ro(1,\"div\",13,14),Uo(\"@transformPanel.done\",(function(t){return en(e),Jo()._panelDoneAnimatingStream.next(t.toState)}))(\"keydown\",(function(t){return en(e),Jo()._handleKeydown(t)})),ea(3,1),Ho(),Ho()}if(2&e){const e=Jo();Po(\"@transformPanelWrap\",void 0),ys(1),\"mat-select-panel \",n=e._getPanelTheme(),\"\",fa(dt,ma,To(Qt(),\"mat-select-panel \",n,\"\"),!0),da(\"transform-origin\",e._transformOrigin)(\"font-size\",e._triggerFontSize,\"px\"),Po(\"ngClass\",e.panelClass)(\"@transformPanel\",e.multiple?\"showing-multiple\":\"showing\")}var n}const rk=[[[\"mat-select-trigger\"]],\"*\"],ok=[\"mat-select-trigger\",\"*\"],ak={transformPanelWrap:jf(\"transformPanelWrap\",[Uf(\"* => void\",Bf(\"@transformPanel\",[$f()],{optional:!0}))]),transformPanel:jf(\"transformPanel\",[Wf(\"void\",Vf({transform:\"scaleY(0.8)\",minWidth:\"100%\",opacity:0})),Wf(\"showing\",Vf({opacity:1,minWidth:\"calc(100% + 32px)\",transform:\"scaleY(1)\"})),Wf(\"showing-multiple\",Vf({opacity:1,minWidth:\"calc(100% + 64px)\",transform:\"scaleY(1)\"})),Uf(\"void => *\",Ff(\"120ms cubic-bezier(0, 0, 0.2, 1)\")),Uf(\"* => void\",Ff(\"100ms 25ms linear\",Vf({opacity:0})))])};let lk=0;const ck=new Ve(\"mat-select-scroll-strategy\"),dk=new Ve(\"MAT_SELECT_CONFIG\"),uk={provide:ck,deps:[Nv],useFactory:function(e){return()=>e.scrollStrategies.reposition()}};class hk{constructor(e,t){this.source=e,this.value=t}}class mk{constructor(e,t,n,i,s){this._elementRef=e,this._defaultErrorStateMatcher=t,this._parentForm=n,this._parentFormGroup=i,this.ngControl=s}}const pk=gy(yy(fy(by(mk))));let fk=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-select-trigger\"]]}),e})(),_k=(()=>{class e extends pk{constructor(e,t,n,i,s,r,o,a,l,c,d,u,h,m){super(s,i,o,a,c),this._viewportRuler=e,this._changeDetectorRef=t,this._ngZone=n,this._dir=r,this._parentFormField=l,this.ngControl=c,this._liveAnnouncer=h,this._panelOpen=!1,this._required=!1,this._scrollTop=0,this._multiple=!1,this._compareWith=(e,t)=>e===t,this._uid=`mat-select-${lk++}`,this._destroy=new L,this._triggerFontSize=0,this._onChange=()=>{},this._onTouched=()=>{},this._optionIds=\"\",this._transformOrigin=\"top\",this._panelDoneAnimatingStream=new L,this._offsetY=0,this._positions=[{originX:\"start\",originY:\"top\",overlayX:\"start\",overlayY:\"top\"},{originX:\"start\",originY:\"bottom\",overlayX:\"start\",overlayY:\"bottom\"}],this._disableOptionCentering=!1,this._focused=!1,this.controlType=\"mat-select\",this.ariaLabel=\"\",this.optionSelectionChanges=qv(()=>{const e=this.options;return e?e.changes.pipe(Rf(e),Wb(()=>G(...e.map(e=>e.onSelectionChange)))):this._ngZone.onStable.asObservable().pipe(cp(1),Wb(()=>this.optionSelectionChanges))}),this.openedChange=new yc,this._openedStream=this.openedChange.pipe(Tu(e=>e),H(()=>{})),this._closedStream=this.openedChange.pipe(Tu(e=>!e),H(()=>{})),this.selectionChange=new yc,this.valueChange=new yc,this.ngControl&&(this.ngControl.valueAccessor=this),this._scrollStrategyFactory=u,this._scrollStrategy=this._scrollStrategyFactory(),this.tabIndex=parseInt(d)||0,this.id=this.id,m&&(null!=m.disableOptionCentering&&(this.disableOptionCentering=m.disableOptionCentering),null!=m.typeaheadDebounceInterval&&(this.typeaheadDebounceInterval=m.typeaheadDebounceInterval))}get focused(){return this._focused||this._panelOpen}get placeholder(){return this._placeholder}set placeholder(e){this._placeholder=e,this.stateChanges.next()}get required(){return this._required}set required(e){this._required=hp(e),this.stateChanges.next()}get multiple(){return this._multiple}set multiple(e){if(this._selectionModel)throw Error(\"Cannot change `multiple` mode of select after initialization.\");this._multiple=hp(e)}get disableOptionCentering(){return this._disableOptionCentering}set disableOptionCentering(e){this._disableOptionCentering=hp(e)}get compareWith(){return this._compareWith}set compareWith(e){if(\"function\"!=typeof e)throw Error(\"`compareWith` must be a function.\");this._compareWith=e,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(e){e!==this._value&&(this.writeValue(e),this._value=e)}get typeaheadDebounceInterval(){return this._typeaheadDebounceInterval}set typeaheadDebounceInterval(e){this._typeaheadDebounceInterval=mp(e)}get id(){return this._id}set id(e){this._id=e||this._uid,this.stateChanges.next()}ngOnInit(){this._selectionModel=new iv(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe(Eb(),Nb(this._destroy)).subscribe(()=>{this.panelOpen?(this._scrollTop=0,this.openedChange.emit(!0)):(this.openedChange.emit(!1),this.overlayDir.offsetX=0,this._changeDetectorRef.markForCheck())}),this._viewportRuler.change().pipe(Nb(this._destroy)).subscribe(()=>{this._panelOpen&&(this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._changeDetectorRef.markForCheck())})}ngAfterContentInit(){this._initKeyManager(),this._selectionModel.changed.pipe(Nb(this._destroy)).subscribe(e=>{e.added.forEach(e=>e.select()),e.removed.forEach(e=>e.deselect())}),this.options.changes.pipe(Rf(null),Nb(this._destroy)).subscribe(()=>{this._resetOptions(),this._initializeSelection()})}ngDoCheck(){this.ngControl&&this.updateErrorState()}ngOnChanges(e){e.disabled&&this.stateChanges.next(),e.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this._typeaheadDebounceInterval)}ngOnDestroy(){this._destroy.next(),this._destroy.complete(),this.stateChanges.complete()}toggle(){this.panelOpen?this.close():this.open()}open(){!this.disabled&&this.options&&this.options.length&&!this._panelOpen&&(this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._triggerFontSize=parseInt(getComputedStyle(this.trigger.nativeElement).fontSize||\"0\"),this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._calculateOverlayPosition(),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck(),this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(()=>{this._triggerFontSize&&this.overlayDir.overlayRef&&this.overlayDir.overlayRef.overlayElement&&(this.overlayDir.overlayRef.overlayElement.style.fontSize=`${this._triggerFontSize}px`)}))}close(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?\"rtl\":\"ltr\"),this._changeDetectorRef.markForCheck(),this._onTouched())}writeValue(e){this.options&&this._setSelectionByValue(e)}registerOnChange(e){this._onChange=e}registerOnTouched(e){this._onTouched=e}setDisabledState(e){this.disabled=e,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}get panelOpen(){return this._panelOpen}get selected(){return this.multiple?this._selectionModel.selected:this._selectionModel.selected[0]}get triggerValue(){if(this.empty)return\"\";if(this._multiple){const e=this._selectionModel.selected.map(e=>e.viewValue);return this._isRtl()&&e.reverse(),e.join(\", \")}return this._selectionModel.selected[0].viewValue}_isRtl(){return!!this._dir&&\"rtl\"===this._dir.value}_handleKeydown(e){this.disabled||(this.panelOpen?this._handleOpenKeydown(e):this._handleClosedKeydown(e))}_handleClosedKeydown(e){const t=e.keyCode,n=40===t||38===t||37===t||39===t,i=13===t||32===t,s=this._keyManager;if(!s.isTyping()&&i&&!qm(e)||(this.multiple||e.altKey)&&n)e.preventDefault(),this.open();else if(!this.multiple){const n=this.selected;36===t||35===t?(36===t?s.setFirstItemActive():s.setLastItemActive(),e.preventDefault()):s.onKeydown(e);const i=this.selected;i&&n!==i&&this._liveAnnouncer.announce(i.viewValue,1e4)}}_handleOpenKeydown(e){const t=this._keyManager,n=e.keyCode,i=40===n||38===n,s=t.isTyping();if(36===n||35===n)e.preventDefault(),36===n?t.setFirstItemActive():t.setLastItemActive();else if(i&&e.altKey)e.preventDefault(),this.close();else if(s||13!==n&&32!==n||!t.activeItem||qm(e))if(!s&&this._multiple&&65===n&&e.ctrlKey){e.preventDefault();const t=this.options.some(e=>!e.disabled&&!e.selected);this.options.forEach(e=>{e.disabled||(t?e.select():e.deselect())})}else{const n=t.activeItemIndex;t.onKeydown(e),this._multiple&&i&&e.shiftKey&&t.activeItem&&t.activeItemIndex!==n&&t.activeItem._selectViaInteraction()}else e.preventDefault(),t.activeItem._selectViaInteraction()}_onFocus(){this.disabled||(this._focused=!0,this.stateChanges.next())}_onBlur(){this._focused=!1,this.disabled||this.panelOpen||(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_onAttached(){this.overlayDir.positionChange.pipe(cp(1)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this._calculateOverlayOffsetX(),this.panel.nativeElement.scrollTop=this._scrollTop})}_getPanelTheme(){return this._parentFormField?`mat-${this._parentFormField.color}`:\"\"}get empty(){return!this._selectionModel||this._selectionModel.isEmpty()}_initializeSelection(){Promise.resolve().then(()=>{this._setSelectionByValue(this.ngControl?this.ngControl.value:this._value),this.stateChanges.next()})}_setSelectionByValue(e){if(this.multiple&&e){if(!Array.isArray(e))throw Error(\"Value must be an array in multiple-selection mode.\");this._selectionModel.clear(),e.forEach(e=>this._selectValue(e)),this._sortValues()}else{this._selectionModel.clear();const t=this._selectValue(e);t?this._keyManager.setActiveItem(t):this.panelOpen||this._keyManager.setActiveItem(-1)}this._changeDetectorRef.markForCheck()}_selectValue(e){const t=this.options.find(t=>{try{return null!=t.value&&this._compareWith(t.value,e)}catch(n){return Si()&&console.warn(n),!1}});return t&&this._selectionModel.select(t),t}_initKeyManager(){this._keyManager=new Ip(this.options).withTypeAhead(this._typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?\"rtl\":\"ltr\").withAllowedModifierKeys([\"shiftKey\"]),this._keyManager.tabOut.pipe(Nb(this._destroy)).subscribe(()=>{!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction(),this.focus(),this.close()}),this._keyManager.change.pipe(Nb(this._destroy)).subscribe(()=>{this._panelOpen&&this.panel?this._scrollActiveOptionIntoView():this._panelOpen||this.multiple||!this._keyManager.activeItem||this._keyManager.activeItem._selectViaInteraction()})}_resetOptions(){const e=G(this.options.changes,this._destroy);this.optionSelectionChanges.pipe(Nb(e)).subscribe(e=>{this._onSelect(e.source,e.isUserInput),e.isUserInput&&!this.multiple&&this._panelOpen&&(this.close(),this.focus())}),G(...this.options.map(e=>e._stateChanges)).pipe(Nb(e)).subscribe(()=>{this._changeDetectorRef.markForCheck(),this.stateChanges.next()}),this._setOptionIds()}_onSelect(e,t){const n=this._selectionModel.isSelected(e);null!=e.value||this._multiple?(n!==e.selected&&(e.selected?this._selectionModel.select(e):this._selectionModel.deselect(e)),t&&this._keyManager.setActiveItem(e),this.multiple&&(this._sortValues(),t&&this.focus())):(e.deselect(),this._selectionModel.clear(),this._propagateChanges(e.value)),n!==this._selectionModel.isSelected(e)&&this._propagateChanges(),this.stateChanges.next()}_sortValues(){if(this.multiple){const e=this.options.toArray();this._selectionModel.sort((t,n)=>this.sortComparator?this.sortComparator(t,n,e):e.indexOf(t)-e.indexOf(n)),this.stateChanges.next()}}_propagateChanges(e){let t=null;t=this.multiple?this.selected.map(e=>e.value):this.selected?this.selected.value:e,this._value=t,this.valueChange.emit(t),this._onChange(t),this.selectionChange.emit(new hk(this,t)),this._changeDetectorRef.markForCheck()}_setOptionIds(){this._optionIds=this.options.map(e=>e.id).join(\" \")}_highlightCorrectOption(){this._keyManager&&(this.empty?this._keyManager.setFirstItemActive():this._keyManager.setActiveItem(this._selectionModel.selected[0]))}_scrollActiveOptionIntoView(){const e=this._keyManager.activeItemIndex||0,t=Ny(e,this.options,this.optionGroups);this.panel.nativeElement.scrollTop=function(e,t,n,i){const s=e*t;return sn+256?Math.max(0,s-256+t):n}(e+t,this._getItemHeight(),this.panel.nativeElement.scrollTop)}focus(e){this._elementRef.nativeElement.focus(e)}_getOptionIndex(e){return this.options.reduce((t,n,i)=>void 0!==t?t:e===n?i:void 0,void 0)}_calculateOverlayPosition(){const e=this._getItemHeight(),t=this._getItemCount(),n=Math.min(t*e,256),i=t*e-n;let s=this.empty?0:this._getOptionIndex(this._selectionModel.selected[0]);s+=Ny(s,this.options,this.optionGroups);const r=n/2;this._scrollTop=this._calculateOverlayScroll(s,r,i),this._offsetY=this._calculateOverlayOffsetY(s,r,i),this._checkOverlayWithinViewport(i)}_calculateOverlayScroll(e,t,n){const i=this._getItemHeight();return Math.min(Math.max(0,i*e-t+i/2),n)}_getAriaLabel(){return this.ariaLabelledby?null:this.ariaLabel||this.placeholder}_getAriaLabelledby(){return this.ariaLabelledby?this.ariaLabelledby:this._parentFormField&&this._parentFormField._hasFloatingLabel()&&!this._getAriaLabel()&&this._parentFormField._labelId||null}_getAriaActiveDescendant(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}_calculateOverlayOffsetX(){const e=this.overlayDir.overlayRef.overlayElement.getBoundingClientRect(),t=this._viewportRuler.getViewportSize(),n=this._isRtl(),i=this.multiple?56:32;let s;if(this.multiple)s=40;else{let e=this._selectionModel.selected[0]||this.options.first;s=e&&e.group?32:16}n||(s*=-1);const r=0-(e.left+s-(n?i:0)),o=e.right+s-t.width+(n?0:i);r>0?s+=r+8:o>0&&(s-=o+8),this.overlayDir.offsetX=Math.round(s),this.overlayDir.overlayRef.updatePosition()}_calculateOverlayOffsetY(e,t,n){const i=this._getItemHeight(),s=(i-this._triggerRect.height)/2,r=Math.floor(256/i);let o;return this._disableOptionCentering?0:(o=0===this._scrollTop?e*i:this._scrollTop===n?(e-(this._getItemCount()-r))*i+(i-(this._getItemCount()*i-256)%i):t-i/2,Math.round(-1*o-s))}_checkOverlayWithinViewport(e){const t=this._getItemHeight(),n=this._viewportRuler.getViewportSize(),i=this._triggerRect.top-8,s=n.height-this._triggerRect.bottom-8,r=Math.abs(this._offsetY),o=Math.min(this._getItemCount()*t,256)-r-this._triggerRect.height;o>s?this._adjustPanelUp(o,s):r>i?this._adjustPanelDown(r,i,e):this._transformOrigin=this._getOriginBasedOnOption()}_adjustPanelUp(e,t){const n=Math.round(e-t);this._scrollTop-=n,this._offsetY-=n,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop<=0&&(this._scrollTop=0,this._offsetY=0,this._transformOrigin=\"50% bottom 0px\")}_adjustPanelDown(e,t,n){const i=Math.round(e-t);if(this._scrollTop+=i,this._offsetY+=i,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop>=n)return this._scrollTop=n,this._offsetY=0,void(this._transformOrigin=\"50% top 0px\")}_getOriginBasedOnOption(){const e=this._getItemHeight(),t=(e-this._triggerRect.height)/2;return`50% ${Math.abs(this._offsetY)-t+e/2}px 0px`}_getItemCount(){return this.options.length+this.optionGroups.length}_getItemHeight(){return 3*this._triggerFontSize}setDescribedByIds(e){this._ariaDescribedby=e.join(\" \")}onContainerClick(){this.focus(),this.open()}get shouldLabelFloat(){return this._panelOpen||!this.empty}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ov),Eo(Qr),Eo(ld),Eo(vy),Eo(Ka),Eo(Gp,8),Eo(bm,8),Eo(Im,8),Eo(dM,8),Eo(wh,10),Oo(\"tabindex\"),Eo(ck),Eo(Vp),Eo(dk,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-select\"]],contentQueries:function(e,t,n){var i;1&e&&(Ic(n,fk,!0),Ic(n,Fy,!0),Ic(n,Py,!0)),2&e&&(Dc(i=Rc())&&(t.customTrigger=i.first),Dc(i=Rc())&&(t.options=i),Dc(i=Rc())&&(t.optionGroups=i))},viewQuery:function(e,t){var n;1&e&&(Ec(QM,!0),Ec(XM,!0),Ec(Uv,!0)),2&e&&(Dc(n=Rc())&&(t.trigger=n.first),Dc(n=Rc())&&(t.panel=n.first),Dc(n=Rc())&&(t.overlayDir=n.first))},hostAttrs:[\"role\",\"listbox\",1,\"mat-select\"],hostVars:19,hostBindings:function(e,t){1&e&&Uo(\"keydown\",(function(e){return t._handleKeydown(e)}))(\"focus\",(function(){return t._onFocus()}))(\"blur\",(function(){return t._onBlur()})),2&e&&(Co(\"id\",t.id)(\"tabindex\",t.tabIndex)(\"aria-label\",t._getAriaLabel())(\"aria-labelledby\",t._getAriaLabelledby())(\"aria-required\",t.required.toString())(\"aria-disabled\",t.disabled.toString())(\"aria-invalid\",t.errorState)(\"aria-owns\",t.panelOpen?t._optionIds:null)(\"aria-multiselectable\",t.multiple)(\"aria-describedby\",t._ariaDescribedby||null)(\"aria-activedescendant\",t._getAriaActiveDescendant()),ua(\"mat-select-disabled\",t.disabled)(\"mat-select-invalid\",t.errorState)(\"mat-select-required\",t.required)(\"mat-select-empty\",t.empty))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",tabIndex:\"tabIndex\",ariaLabel:[\"aria-label\",\"ariaLabel\"],id:\"id\",disableOptionCentering:\"disableOptionCentering\",typeaheadDebounceInterval:\"typeaheadDebounceInterval\",placeholder:\"placeholder\",required:\"required\",multiple:\"multiple\",compareWith:\"compareWith\",value:\"value\",panelClass:\"panelClass\",ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],errorStateMatcher:\"errorStateMatcher\",sortComparator:\"sortComparator\"},outputs:{openedChange:\"openedChange\",_openedStream:\"opened\",_closedStream:\"closed\",selectionChange:\"selectionChange\",valueChange:\"valueChange\"},exportAs:[\"matSelect\"],features:[Ba([{provide:Qw,useExisting:e},{provide:jy,useExisting:e}]),Ya,Ra],ngContentSelectors:ok,decls:9,vars:9,consts:[[\"cdk-overlay-origin\",\"\",\"aria-hidden\",\"true\",1,\"mat-select-trigger\",3,\"click\"],[\"origin\",\"cdkOverlayOrigin\",\"trigger\",\"\"],[1,\"mat-select-value\",3,\"ngSwitch\"],[\"class\",\"mat-select-placeholder\",4,\"ngSwitchCase\"],[\"class\",\"mat-select-value-text\",3,\"ngSwitch\",4,\"ngSwitchCase\"],[1,\"mat-select-arrow-wrapper\"],[1,\"mat-select-arrow\"],[\"cdk-connected-overlay\",\"\",\"cdkConnectedOverlayLockPosition\",\"\",\"cdkConnectedOverlayHasBackdrop\",\"\",\"cdkConnectedOverlayBackdropClass\",\"cdk-overlay-transparent-backdrop\",3,\"cdkConnectedOverlayScrollStrategy\",\"cdkConnectedOverlayOrigin\",\"cdkConnectedOverlayOpen\",\"cdkConnectedOverlayPositions\",\"cdkConnectedOverlayMinWidth\",\"cdkConnectedOverlayOffsetY\",\"backdropClick\",\"attach\",\"detach\"],[1,\"mat-select-placeholder\"],[1,\"mat-select-value-text\",3,\"ngSwitch\"],[4,\"ngSwitchDefault\"],[4,\"ngSwitchCase\"],[1,\"mat-select-panel-wrap\"],[3,\"ngClass\",\"keydown\"],[\"panel\",\"\"]],template:function(e,t){if(1&e&&(Zo(rk),Ro(0,\"div\",0,1),Uo(\"click\",(function(){return t.toggle()})),Ro(3,\"div\",2),Do(4,ek,2,1,\"span\",3),Do(5,ik,3,2,\"span\",4),Ho(),Ro(6,\"div\",5),jo(7,\"div\",6),Ho(),Ho(),Do(8,sk,4,10,\"ng-template\",7),Uo(\"backdropClick\",(function(){return t.close()}))(\"attach\",(function(){return t._onAttached()}))(\"detach\",(function(){return t.close()}))),2&e){const e=Yo(1);ys(3),Po(\"ngSwitch\",t.empty),ys(1),Po(\"ngSwitchCase\",!0),ys(1),Po(\"ngSwitchCase\",!1),ys(3),Po(\"cdkConnectedOverlayScrollStrategy\",t._scrollStrategy)(\"cdkConnectedOverlayOrigin\",e)(\"cdkConnectedOverlayOpen\",t.panelOpen)(\"cdkConnectedOverlayPositions\",t._positions)(\"cdkConnectedOverlayMinWidth\",null==t._triggerRect?null:t._triggerRect.width)(\"cdkConnectedOverlayOffsetY\",t._offsetY)}},directives:[Wv,gu,yu,Uv,bu,cu],styles:[\".mat-select{display:inline-block;width:100%;outline:none}.mat-select-trigger{display:inline-table;cursor:pointer;position:relative;box-sizing:border-box}.mat-select-disabled .mat-select-trigger{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-select-value{display:table-cell;max-width:0;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-select-arrow-wrapper{display:table-cell;vertical-align:middle}.mat-form-field-appearance-fill .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-outline .mat-select-arrow-wrapper{transform:translateY(-25%)}.mat-form-field-appearance-standard.mat-form-field-has-label .mat-select:not(.mat-select-empty) .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:none}.mat-select-arrow{width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;margin:0 4px}.mat-select-panel-wrap{flex-basis:100%}.mat-select-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;padding-top:0;padding-bottom:0;max-height:256px;min-width:100%;border-radius:4px}.cdk-high-contrast-active .mat-select-panel{outline:solid 1px}.mat-select-panel .mat-optgroup-label,.mat-select-panel .mat-option{font-size:inherit;line-height:3em;height:3em}.mat-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-form-field-flex{cursor:pointer}.mat-form-field-type-mat-select .mat-form-field-label{width:calc(100% - 18px)}.mat-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable .mat-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-select-placeholder{color:transparent;-webkit-text-fill-color:transparent;transition:none;display:block}\\n\"],encapsulation:2,data:{animation:[ak.transformPanelWrap,ak.transformPanel]},changeDetection:0}),e})(),gk=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[uk],imports:[[Mu,Bv,zy,py],uM,zy,py]}),e})();const yk=[\"*\"];function bk(e,t){if(1&e){const e=zo();Ro(0,\"div\",2),Uo(\"click\",(function(){return en(e),Jo()._onBackdropClicked()})),Ho()}2&e&&ua(\"mat-drawer-shown\",Jo()._isShowingBackdrop())}function vk(e,t){1&e&&(Ro(0,\"mat-drawer-content\"),ea(1,2),Ho())}const wk=[[[\"mat-drawer\"]],[[\"mat-drawer-content\"]],\"*\"],Mk=[\"mat-drawer\",\"mat-drawer-content\",\"*\"];function kk(e,t){if(1&e){const e=zo();Ro(0,\"div\",2),Uo(\"click\",(function(){return en(e),Jo()._onBackdropClicked()})),Ho()}2&e&&ua(\"mat-drawer-shown\",Jo()._isShowingBackdrop())}function Sk(e,t){1&e&&(Ro(0,\"mat-sidenav-content\",3),ea(1,2),Ho())}const Lk=[[[\"mat-sidenav\"]],[[\"mat-sidenav-content\"]],\"*\"],xk=[\"mat-sidenav\",\"mat-sidenav-content\",\"*\"],Ck={transformDrawer:jf(\"transform\",[Wf(\"open, open-instant\",Vf({transform:\"none\",visibility:\"visible\"})),Wf(\"void\",Vf({\"box-shadow\":\"none\",visibility:\"hidden\"})),Uf(\"void => open-instant\",Ff(\"0ms\")),Uf(\"void <=> open, open-instant => void\",Ff(\"400ms cubic-bezier(0.25, 0.8, 0.25, 1)\"))])};function Tk(e){throw Error(`A drawer was already declared for 'position=\"${e}\"'`)}const Dk=new Ve(\"MAT_DRAWER_DEFAULT_AUTOSIZE\",{providedIn:\"root\",factory:function(){return!1}}),Yk=new Ve(\"MAT_DRAWER_CONTAINER\");let Ek=(()=>{class e extends rv{constructor(e,t,n,i,s){super(n,i,s),this._changeDetectorRef=e,this._container=t}ngAfterContentInit(){this._container._contentMarginChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Qr),Eo(Ce(()=>Ik)),Eo(Ka),Eo(sv),Eo(ld))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-drawer-content\"]],hostAttrs:[1,\"mat-drawer-content\"],hostVars:4,hostBindings:function(e,t){2&e&&da(\"margin-left\",t._container._contentMargins.left,\"px\")(\"margin-right\",t._container._contentMargins.right,\"px\")},features:[Ya],ngContentSelectors:yk,decls:1,vars:0,template:function(e,t){1&e&&(Zo(),ea(0))},encapsulation:2,changeDetection:0}),e})(),Ok=(()=>{class e{constructor(e,t,n,i,s,r,o){this._elementRef=e,this._focusTrapFactory=t,this._focusMonitor=n,this._platform=i,this._ngZone=s,this._doc=r,this._container=o,this._elementFocusedBeforeDrawerWasOpened=null,this._enableAnimations=!1,this._position=\"start\",this._mode=\"over\",this._disableClose=!1,this._opened=!1,this._animationStarted=new L,this._animationEnd=new L,this._animationState=\"void\",this.openedChange=new yc(!0),this._destroyed=new L,this.onPositionChanged=new yc,this._modeChanged=new L,this.openedChange.subscribe(e=>{e?(this._doc&&(this._elementFocusedBeforeDrawerWasOpened=this._doc.activeElement),this._takeFocus()):this._restoreFocus()}),this._ngZone.runOutsideAngular(()=>{Mb(this._elementRef.nativeElement,\"keydown\").pipe(Tu(e=>27===e.keyCode&&!this.disableClose&&!qm(e)),Nb(this._destroyed)).subscribe(e=>this._ngZone.run(()=>{this.close(),e.stopPropagation(),e.preventDefault()}))}),this._animationEnd.pipe(Eb((e,t)=>e.fromState===t.fromState&&e.toState===t.toState)).subscribe(e=>{const{fromState:t,toState:n}=e;(0===n.indexOf(\"open\")&&\"void\"===t||\"void\"===n&&0===t.indexOf(\"open\"))&&this.openedChange.emit(this._opened)})}get position(){return this._position}set position(e){(e=\"end\"===e?\"end\":\"start\")!=this._position&&(this._position=e,this.onPositionChanged.emit())}get mode(){return this._mode}set mode(e){this._mode=e,this._updateFocusTrapState(),this._modeChanged.next()}get disableClose(){return this._disableClose}set disableClose(e){this._disableClose=hp(e)}get autoFocus(){const e=this._autoFocus;return null==e?\"side\"!==this.mode:e}set autoFocus(e){this._autoFocus=hp(e)}get opened(){return this._opened}set opened(e){this.toggle(hp(e))}get _openedStream(){return this.openedChange.pipe(Tu(e=>e),H(()=>{}))}get openedStart(){return this._animationStarted.pipe(Tu(e=>e.fromState!==e.toState&&0===e.toState.indexOf(\"open\")),H(()=>{}))}get _closedStream(){return this.openedChange.pipe(Tu(e=>!e),H(()=>{}))}get closedStart(){return this._animationStarted.pipe(Tu(e=>e.fromState!==e.toState&&\"void\"===e.toState),H(()=>{}))}_takeFocus(){this.autoFocus&&this._focusTrap&&this._focusTrap.focusInitialElementWhenReady().then(e=>{e||\"function\"!=typeof this._elementRef.nativeElement.focus||this._elementRef.nativeElement.focus()})}_restoreFocus(){if(!this.autoFocus)return;const e=this._doc&&this._doc.activeElement;e&&this._elementRef.nativeElement.contains(e)&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,this._openedVia):this._elementRef.nativeElement.blur()),this._elementFocusedBeforeDrawerWasOpened=null,this._openedVia=null}ngAfterContentInit(){this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState()}ngAfterContentChecked(){this._platform.isBrowser&&(this._enableAnimations=!0)}ngOnDestroy(){this._focusTrap&&this._focusTrap.destroy(),this._animationStarted.complete(),this._animationEnd.complete(),this._modeChanged.complete(),this._destroyed.next(),this._destroyed.complete()}open(e){return this.toggle(!0,e)}close(){return this.toggle(!1)}toggle(e=!this.opened,t=\"program\"){return this._opened=e,e?(this._animationState=this._enableAnimations?\"open\":\"open-instant\",this._openedVia=t):(this._animationState=\"void\",this._restoreFocus()),this._updateFocusTrapState(),new Promise(e=>{this.openedChange.pipe(cp(1)).subscribe(t=>e(t?\"open\":\"close\"))})}get _width(){return this._elementRef.nativeElement&&this._elementRef.nativeElement.offsetWidth||0}_updateFocusTrapState(){this._focusTrap&&(this._focusTrap.enabled=this.opened&&\"side\"!==this.mode)}_animationStartListener(e){this._animationStarted.next(e)}_animationDoneListener(e){this._animationEnd.next(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Fp),Eo(Up),Eo(bp),Eo(ld),Eo(Nd,8),Eo(Yk,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-drawer\"]],hostAttrs:[\"tabIndex\",\"-1\",1,\"mat-drawer\"],hostVars:12,hostBindings:function(e,t){1&e&&$o(\"@transform.start\",(function(e){return t._animationStartListener(e)}))(\"@transform.done\",(function(e){return t._animationDoneListener(e)})),2&e&&(Co(\"align\",null),Ta(\"@transform\",t._animationState),ua(\"mat-drawer-end\",\"end\"===t.position)(\"mat-drawer-over\",\"over\"===t.mode)(\"mat-drawer-push\",\"push\"===t.mode)(\"mat-drawer-side\",\"side\"===t.mode)(\"mat-drawer-opened\",t.opened))},inputs:{position:\"position\",mode:\"mode\",disableClose:\"disableClose\",autoFocus:\"autoFocus\",opened:\"opened\"},outputs:{openedChange:\"openedChange\",onPositionChanged:\"positionChanged\",_openedStream:\"opened\",openedStart:\"openedStart\",_closedStream:\"closed\",closedStart:\"closedStart\"},exportAs:[\"matDrawer\"],ngContentSelectors:yk,decls:2,vars:0,consts:[[1,\"mat-drawer-inner-container\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"div\",0),ea(1),Ho())},encapsulation:2,data:{animation:[Ck.transformDrawer]},changeDetection:0}),e})(),Ik=(()=>{class e{constructor(e,t,n,i,s,r=!1,o){this._dir=e,this._element=t,this._ngZone=n,this._changeDetectorRef=i,this._animationMode=o,this._drawers=new vc,this.backdropClick=new yc,this._destroyed=new L,this._doCheckSubject=new L,this._contentMargins={left:null,right:null},this._contentMarginChanges=new L,e&&e.change.pipe(Nb(this._destroyed)).subscribe(()=>{this._validateDrawers(),this.updateContentMargins()}),s.change().pipe(Nb(this._destroyed)).subscribe(()=>this.updateContentMargins()),this._autosize=r}get start(){return this._start}get end(){return this._end}get autosize(){return this._autosize}set autosize(e){this._autosize=hp(e)}get hasBackdrop(){return null==this._backdropOverride?!this._start||\"side\"!==this._start.mode||!this._end||\"side\"!==this._end.mode:this._backdropOverride}set hasBackdrop(e){this._backdropOverride=null==e?null:hp(e)}get scrollable(){return this._userContent||this._content}ngAfterContentInit(){this._allDrawers.changes.pipe(Rf(this._allDrawers),Nb(this._destroyed)).subscribe(e=>{this._drawers.reset(e.filter(e=>!e._container||e._container===this)),this._drawers.notifyOnChanges()}),this._drawers.changes.pipe(Rf(null)).subscribe(()=>{this._validateDrawers(),this._drawers.forEach(e=>{this._watchDrawerToggle(e),this._watchDrawerPosition(e),this._watchDrawerMode(e)}),(!this._drawers.length||this._isDrawerOpen(this._start)||this._isDrawerOpen(this._end))&&this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),this._doCheckSubject.pipe(np(10),Nb(this._destroyed)).subscribe(()=>this.updateContentMargins())}ngOnDestroy(){this._contentMarginChanges.complete(),this._doCheckSubject.complete(),this._drawers.destroy(),this._destroyed.next(),this._destroyed.complete()}open(){this._drawers.forEach(e=>e.open())}close(){this._drawers.forEach(e=>e.close())}updateContentMargins(){let e=0,t=0;if(this._left&&this._left.opened)if(\"side\"==this._left.mode)e+=this._left._width;else if(\"push\"==this._left.mode){const n=this._left._width;e+=n,t-=n}if(this._right&&this._right.opened)if(\"side\"==this._right.mode)t+=this._right._width;else if(\"push\"==this._right.mode){const n=this._right._width;t+=n,e-=n}e=e||null,t=t||null,e===this._contentMargins.left&&t===this._contentMargins.right||(this._contentMargins={left:e,right:t},this._ngZone.run(()=>this._contentMarginChanges.next(this._contentMargins)))}ngDoCheck(){this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular(()=>this._doCheckSubject.next())}_watchDrawerToggle(e){e._animationStarted.pipe(Tu(e=>e.fromState!==e.toState),Nb(this._drawers.changes)).subscribe(e=>{\"open-instant\"!==e.toState&&\"NoopAnimations\"!==this._animationMode&&this._element.nativeElement.classList.add(\"mat-drawer-transition\"),this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),\"side\"!==e.mode&&e.openedChange.pipe(Nb(this._drawers.changes)).subscribe(()=>this._setContainerClass(e.opened))}_watchDrawerPosition(e){e&&e.onPositionChanged.pipe(Nb(this._drawers.changes)).subscribe(()=>{this._ngZone.onMicrotaskEmpty.asObservable().pipe(cp(1)).subscribe(()=>{this._validateDrawers()})})}_watchDrawerMode(e){e&&e._modeChanged.pipe(Nb(G(this._drawers.changes,this._destroyed))).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()})}_setContainerClass(e){const t=this._element.nativeElement.classList,n=\"mat-drawer-container-has-open\";e?t.add(n):t.remove(n)}_validateDrawers(){this._start=this._end=null,this._drawers.forEach(e=>{\"end\"==e.position?(null!=this._end&&Tk(\"end\"),this._end=e):(null!=this._start&&Tk(\"start\"),this._start=e)}),this._right=this._left=null,this._dir&&\"rtl\"===this._dir.value?(this._left=this._end,this._right=this._start):(this._left=this._start,this._right=this._end)}_isPushed(){return this._isDrawerOpen(this._start)&&\"over\"!=this._start.mode||this._isDrawerOpen(this._end)&&\"over\"!=this._end.mode}_onBackdropClicked(){this.backdropClick.emit(),this._closeModalDrawer()}_closeModalDrawer(){[this._start,this._end].filter(e=>e&&!e.disableClose&&this._canHaveBackdrop(e)).forEach(e=>e.close())}_isShowingBackdrop(){return this._isDrawerOpen(this._start)&&this._canHaveBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._canHaveBackdrop(this._end)}_canHaveBackdrop(e){return\"side\"!==e.mode||!!this._backdropOverride}_isDrawerOpen(e){return null!=e&&e.opened}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Gp,8),Eo(Ka),Eo(ld),Eo(Qr),Eo(ov),Eo(Dk),Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-drawer-container\"]],contentQueries:function(e,t,n){var i;1&e&&(Ic(n,Ek,!0),Ic(n,Ok,!0)),2&e&&(Dc(i=Rc())&&(t._content=i.first),Dc(i=Rc())&&(t._allDrawers=i))},viewQuery:function(e,t){var n;1&e&&Ec(Ek,!0),2&e&&Dc(n=Rc())&&(t._userContent=n.first)},hostAttrs:[1,\"mat-drawer-container\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"mat-drawer-container-explicit-backdrop\",t._backdropOverride)},inputs:{autosize:\"autosize\",hasBackdrop:\"hasBackdrop\"},outputs:{backdropClick:\"backdropClick\"},exportAs:[\"matDrawerContainer\"],features:[Ba([{provide:Yk,useExisting:e}])],ngContentSelectors:Mk,decls:4,vars:2,consts:[[\"class\",\"mat-drawer-backdrop\",3,\"mat-drawer-shown\",\"click\",4,\"ngIf\"],[4,\"ngIf\"],[1,\"mat-drawer-backdrop\",3,\"click\"]],template:function(e,t){1&e&&(Zo(wk),Do(0,bk,1,2,\"div\",0),ea(1),ea(2,1),Do(3,vk,2,0,\"mat-drawer-content\",1)),2&e&&(Po(\"ngIf\",t.hasBackdrop),ys(3),Po(\"ngIf\",!t._content))},directives:[mu,Ek],styles:[\".mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\\n\"],encapsulation:2,changeDetection:0}),e})(),Pk=(()=>{class e extends Ek{constructor(e,t,n,i,s){super(e,t,n,i,s)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Qr),Eo(Ce(()=>Hk)),Eo(Ka),Eo(sv),Eo(ld))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-sidenav-content\"]],hostAttrs:[1,\"mat-drawer-content\",\"mat-sidenav-content\"],hostVars:4,hostBindings:function(e,t){2&e&&da(\"margin-left\",t._container._contentMargins.left,\"px\")(\"margin-right\",t._container._contentMargins.right,\"px\")},features:[Ya],ngContentSelectors:yk,decls:1,vars:0,template:function(e,t){1&e&&(Zo(),ea(0))},encapsulation:2,changeDetection:0}),e})(),Ak=(()=>{class e extends Ok{constructor(){super(...arguments),this._fixedInViewport=!1,this._fixedTopGap=0,this._fixedBottomGap=0}get fixedInViewport(){return this._fixedInViewport}set fixedInViewport(e){this._fixedInViewport=hp(e)}get fixedTopGap(){return this._fixedTopGap}set fixedTopGap(e){this._fixedTopGap=mp(e)}get fixedBottomGap(){return this._fixedBottomGap}set fixedBottomGap(e){this._fixedBottomGap=mp(e)}}return e.\\u0275fac=function(t){return Rk(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-sidenav\"]],hostAttrs:[\"tabIndex\",\"-1\",1,\"mat-drawer\",\"mat-sidenav\"],hostVars:17,hostBindings:function(e,t){2&e&&(Co(\"align\",null),da(\"top\",t.fixedInViewport?t.fixedTopGap:null,\"px\")(\"bottom\",t.fixedInViewport?t.fixedBottomGap:null,\"px\"),ua(\"mat-drawer-end\",\"end\"===t.position)(\"mat-drawer-over\",\"over\"===t.mode)(\"mat-drawer-push\",\"push\"===t.mode)(\"mat-drawer-side\",\"side\"===t.mode)(\"mat-drawer-opened\",t.opened)(\"mat-sidenav-fixed\",t.fixedInViewport))},inputs:{fixedInViewport:\"fixedInViewport\",fixedTopGap:\"fixedTopGap\",fixedBottomGap:\"fixedBottomGap\"},exportAs:[\"matSidenav\"],features:[Ya],ngContentSelectors:yk,decls:2,vars:0,consts:[[1,\"mat-drawer-inner-container\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"div\",0),ea(1),Ho())},encapsulation:2,data:{animation:[Ck.transformDrawer]},changeDetection:0}),e})();const Rk=li(Ak);let Hk=(()=>{class e extends Ik{}return e.\\u0275fac=function(t){return jk(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-sidenav-container\"]],contentQueries:function(e,t,n){var i;1&e&&(Ic(n,Pk,!0),Ic(n,Ak,!0)),2&e&&(Dc(i=Rc())&&(t._content=i.first),Dc(i=Rc())&&(t._allDrawers=i))},hostAttrs:[1,\"mat-drawer-container\",\"mat-sidenav-container\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"mat-drawer-container-explicit-backdrop\",t._backdropOverride)},exportAs:[\"matSidenavContainer\"],features:[Ba([{provide:Yk,useExisting:e}]),Ya],ngContentSelectors:xk,decls:4,vars:2,consts:[[\"class\",\"mat-drawer-backdrop\",3,\"mat-drawer-shown\",\"click\",4,\"ngIf\"],[\"cdkScrollable\",\"\",4,\"ngIf\"],[1,\"mat-drawer-backdrop\",3,\"click\"],[\"cdkScrollable\",\"\"]],template:function(e,t){1&e&&(Zo(Lk),Do(0,kk,1,2,\"div\",0),ea(1),ea(2,1),Do(3,Sk,2,0,\"mat-sidenav-content\",1)),2&e&&(Po(\"ngIf\",t.hasBackdrop),ys(3),Po(\"ngIf\",!t._content))},directives:[mu,Pk,rv],styles:[\".mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\\n\"],encapsulation:2,changeDetection:0}),e})();const jk=li(Hk);let Fk=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu,py,av,vp],py]}),e})();const Nk=[\"thumbContainer\"],zk=[\"toggleBar\"],Vk=[\"input\"],Wk=function(){return{enterDuration:150}},Uk=[\"*\"],$k=new Ve(\"mat-slide-toggle-default-options\",{providedIn:\"root\",factory:()=>({disableToggleValue:!1})});let Bk=0;const qk={provide:uh,useExisting:Ce(()=>Zk),multi:!0};class Gk{constructor(e,t){this.source=e,this.checked=t}}class Jk{constructor(e){this._elementRef=e}}const Kk=yy(_y(gy(fy(Jk)),\"accent\"));let Zk=(()=>{class e extends Kk{constructor(e,t,n,i,s,r,o,a){super(e),this._focusMonitor=t,this._changeDetectorRef=n,this.defaults=r,this._animationMode=o,this._onChange=e=>{},this._onTouched=()=>{},this._uniqueId=`mat-slide-toggle-${++Bk}`,this._required=!1,this._checked=!1,this.name=null,this.id=this._uniqueId,this.labelPosition=\"after\",this.ariaLabel=null,this.ariaLabelledby=null,this.change=new yc,this.toggleChange=new yc,this.dragChange=new yc,this.tabIndex=parseInt(i)||0}get required(){return this._required}set required(e){this._required=hp(e)}get checked(){return this._checked}set checked(e){this._checked=hp(e),this._changeDetectorRef.markForCheck()}get inputId(){return`${this.id||this._uniqueId}-input`}ngAfterContentInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(e=>{\"keyboard\"===e||\"program\"===e?this._inputElement.nativeElement.focus():e||Promise.resolve().then(()=>this._onTouched())})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}_onChangeEvent(e){e.stopPropagation(),this.toggleChange.emit(),this.defaults.disableToggleValue?this._inputElement.nativeElement.checked=this.checked:(this.checked=this._inputElement.nativeElement.checked,this._emitChangeEvent())}_onInputClick(e){e.stopPropagation()}writeValue(e){this.checked=!!e}registerOnChange(e){this._onChange=e}registerOnTouched(e){this._onTouched=e}setDisabledState(e){this.disabled=e,this._changeDetectorRef.markForCheck()}focus(e){this._focusMonitor.focusVia(this._inputElement,\"keyboard\",e)}toggle(){this.checked=!this.checked,this._onChange(this.checked)}_emitChangeEvent(){this._onChange(this.checked),this.change.emit(new Gk(this,this.checked))}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Up),Eo(Qr),Oo(\"tabindex\"),Eo(ld),Eo($k),Eo(sy,8),Eo(Gp,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-slide-toggle\"]],viewQuery:function(e,t){var n;1&e&&(Ec(Nk,!0),Ec(zk,!0),Ec(Vk,!0)),2&e&&(Dc(n=Rc())&&(t._thumbEl=n.first),Dc(n=Rc())&&(t._thumbBarEl=n.first),Dc(n=Rc())&&(t._inputElement=n.first))},hostAttrs:[1,\"mat-slide-toggle\"],hostVars:12,hostBindings:function(e,t){2&e&&(Ca(\"id\",t.id),Co(\"tabindex\",t.disabled?null:-1)(\"aria-label\",null)(\"aria-labelledby\",null),ua(\"mat-checked\",t.checked)(\"mat-disabled\",t.disabled)(\"mat-slide-toggle-label-before\",\"before\"==t.labelPosition)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\",name:\"name\",id:\"id\",labelPosition:\"labelPosition\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],required:\"required\",checked:\"checked\"},outputs:{change:\"change\",toggleChange:\"toggleChange\",dragChange:\"dragChange\"},exportAs:[\"matSlideToggle\"],features:[Ba([qk]),Ya],ngContentSelectors:Uk,decls:16,vars:18,consts:[[1,\"mat-slide-toggle-label\"],[\"label\",\"\"],[1,\"mat-slide-toggle-bar\"],[\"toggleBar\",\"\"],[\"type\",\"checkbox\",\"role\",\"switch\",1,\"mat-slide-toggle-input\",\"cdk-visually-hidden\",3,\"id\",\"required\",\"tabIndex\",\"checked\",\"disabled\",\"change\",\"click\"],[\"input\",\"\"],[1,\"mat-slide-toggle-thumb-container\"],[\"thumbContainer\",\"\"],[1,\"mat-slide-toggle-thumb\"],[\"mat-ripple\",\"\",1,\"mat-slide-toggle-ripple\",\"mat-focus-indicator\",3,\"matRippleTrigger\",\"matRippleDisabled\",\"matRippleCentered\",\"matRippleRadius\",\"matRippleAnimation\"],[1,\"mat-ripple-element\",\"mat-slide-toggle-persistent-ripple\"],[1,\"mat-slide-toggle-content\",3,\"cdkObserveContent\"],[\"labelContent\",\"\"],[2,\"display\",\"none\"]],template:function(e,t){if(1&e&&(Zo(),Ro(0,\"label\",0,1),Ro(2,\"div\",2,3),Ro(4,\"input\",4,5),Uo(\"change\",(function(e){return t._onChangeEvent(e)}))(\"click\",(function(e){return t._onInputClick(e)})),Ho(),Ro(6,\"div\",6,7),jo(8,\"div\",8),Ro(9,\"div\",9),jo(10,\"div\",10),Ho(),Ho(),Ho(),Ro(11,\"span\",11,12),Uo(\"cdkObserveContent\",(function(){return t._onLabelTextChange()})),Ro(13,\"span\",13),Sa(14,\"\\xa0\"),Ho(),ea(15),Ho(),Ho()),2&e){const e=Yo(1),n=Yo(12);Co(\"for\",t.inputId),ys(2),ua(\"mat-slide-toggle-bar-no-side-margin\",!n.textContent||!n.textContent.trim()),ys(2),Po(\"id\",t.inputId)(\"required\",t.required)(\"tabIndex\",t.tabIndex)(\"checked\",t.checked)(\"disabled\",t.disabled),Co(\"name\",t.name)(\"aria-checked\",t.checked.toString())(\"aria-label\",t.ariaLabel)(\"aria-labelledby\",t.ariaLabelledby),ys(5),Po(\"matRippleTrigger\",e)(\"matRippleDisabled\",t.disableRipple||t.disabled)(\"matRippleCentered\",!0)(\"matRippleRadius\",20)(\"matRippleAnimation\",gc(17,Wk))}},directives:[Cy,Yp],styles:[\".mat-slide-toggle{display:inline-block;height:24px;max-width:100%;line-height:24px;white-space:nowrap;outline:none;-webkit-tap-highlight-color:transparent}.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(16px, 0, 0)}[dir=rtl] .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(-16px, 0, 0)}.mat-slide-toggle.mat-disabled{opacity:.38}.mat-slide-toggle.mat-disabled .mat-slide-toggle-label,.mat-slide-toggle.mat-disabled .mat-slide-toggle-thumb-container{cursor:default}.mat-slide-toggle-label{display:flex;flex:1;flex-direction:row;align-items:center;height:inherit;cursor:pointer}.mat-slide-toggle-content{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-slide-toggle-label-before .mat-slide-toggle-label{order:1}.mat-slide-toggle-label-before .mat-slide-toggle-bar{order:2}[dir=rtl] .mat-slide-toggle-label-before .mat-slide-toggle-bar,.mat-slide-toggle-bar{margin-right:8px;margin-left:0}[dir=rtl] .mat-slide-toggle-bar,.mat-slide-toggle-label-before .mat-slide-toggle-bar{margin-left:8px;margin-right:0}.mat-slide-toggle-bar-no-side-margin{margin-left:0;margin-right:0}.mat-slide-toggle-thumb-container{position:absolute;z-index:1;width:20px;height:20px;top:-3px;left:0;transform:translate3d(0, 0, 0);transition:all 80ms linear;transition-property:transform}._mat-animation-noopable .mat-slide-toggle-thumb-container{transition:none}[dir=rtl] .mat-slide-toggle-thumb-container{left:auto;right:0}.mat-slide-toggle-thumb{height:20px;width:20px;border-radius:50%}.mat-slide-toggle-bar{position:relative;width:36px;height:14px;flex-shrink:0;border-radius:8px}.mat-slide-toggle-input{bottom:0;left:10px}[dir=rtl] .mat-slide-toggle-input{left:auto;right:10px}.mat-slide-toggle-bar,.mat-slide-toggle-thumb{transition:all 80ms linear;transition-property:background-color;transition-delay:50ms}._mat-animation-noopable .mat-slide-toggle-bar,._mat-animation-noopable .mat-slide-toggle-thumb{transition:none}.mat-slide-toggle .mat-slide-toggle-ripple{position:absolute;top:calc(50% - 20px);left:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}.mat-slide-toggle .mat-slide-toggle-ripple .mat-ripple-element:not(.mat-slide-toggle-persistent-ripple){opacity:.12}.mat-slide-toggle-persistent-ripple{width:100%;height:100%;transform:none}.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:.04}.mat-slide-toggle:not(.mat-disabled).cdk-keyboard-focused .mat-slide-toggle-persistent-ripple{opacity:.12}.mat-slide-toggle-persistent-ripple,.mat-slide-toggle.mat-disabled .mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:0}@media(hover: none){.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{display:none}}.cdk-high-contrast-active .mat-slide-toggle-thumb,.cdk-high-contrast-active .mat-slide-toggle-bar{border:1px solid}.cdk-high-contrast-active .mat-slide-toggle.cdk-keyboard-focused .mat-slide-toggle-bar{outline:2px dotted;outline-offset:5px}\\n\"],encapsulation:2,changeDetection:0}),e})(),Qk=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),Xk=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Qk,Ty,py,Ep],Qk,py]}),e})();const eS={};function tS(...e){let t=null,n=null;return C(e[e.length-1])&&(n=e.pop()),\"function\"==typeof e[e.length-1]&&(t=e.pop()),1===e.length&&l(e[0])&&(e=e[0]),q(e,n).lift(new nS(t))}class nS{constructor(e){this.resultSelector=e}call(e,t){return t.subscribe(new iS(e,this.resultSelector))}}class iS extends R{constructor(e,t){super(e),this.resultSelector=t,this.active=0,this.values=[],this.observables=[]}_next(e){this.values.push(eS),this.observables.push(e)}_complete(){const e=this.observables,t=e.length;if(0===t)this.destination.complete();else{this.active=t,this.toRespond=t;for(let n=0;n{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Bv,_v,Mu,Ky,py],py]}),e})();const rS=[\"*\",[[\"mat-toolbar-row\"]]],oS=[\"*\",\"mat-toolbar-row\"];class aS{constructor(e){this._elementRef=e}}const lS=_y(aS);let cS=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-toolbar-row\"]],hostAttrs:[1,\"mat-toolbar-row\"],exportAs:[\"matToolbarRow\"]}),e})(),dS=(()=>{class e extends lS{constructor(e,t,n){super(e),this._platform=t,this._document=n}ngAfterViewInit(){Si()&&this._platform.isBrowser&&(this._checkToolbarMixedModes(),this._toolbarRows.changes.subscribe(()=>this._checkToolbarMixedModes()))}_checkToolbarMixedModes(){this._toolbarRows.length&&Array.from(this._elementRef.nativeElement.childNodes).filter(e=>!(e.classList&&e.classList.contains(\"mat-toolbar-row\"))).filter(e=>e.nodeType!==(this._document?this._document.COMMENT_NODE:8)).some(e=>!(!e.textContent||!e.textContent.trim()))&&function(){throw Error(\"MatToolbar: Attempting to combine different toolbar modes. Either specify multiple `` elements explicitly or just place content inside of a `` for a single row.\")}()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(bp),Eo(Nd))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-toolbar\"]],contentQueries:function(e,t,n){var i;1&e&&Ic(n,cS,!0),2&e&&Dc(i=Rc())&&(t._toolbarRows=i)},hostAttrs:[1,\"mat-toolbar\"],hostVars:4,hostBindings:function(e,t){2&e&&ua(\"mat-toolbar-multiple-rows\",t._toolbarRows.length>0)(\"mat-toolbar-single-row\",0===t._toolbarRows.length)},inputs:{color:\"color\"},exportAs:[\"matToolbar\"],features:[Ya],ngContentSelectors:oS,decls:2,vars:0,template:function(e,t){1&e&&(Zo(rS),ea(0),ea(1,1))},styles:[\".cdk-high-contrast-active .mat-toolbar{outline:solid 1px}.mat-toolbar-row,.mat-toolbar-single-row{display:flex;box-sizing:border-box;padding:0 16px;width:100%;flex-direction:row;align-items:center;white-space:nowrap}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}\\n\"],encapsulation:2,changeDetection:0}),e})(),uS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[py],py]}),e})();class hS extends L{constructor(e){super(),this._value=e}get value(){return this.getValue()}_subscribe(e){const t=super._subscribe(e);return t&&!t.closed&&e.next(this._value),t}getValue(){if(this.hasError)throw this.thrownError;if(this.closed)throw new M;return this._value}next(e){super.next(this._value=e)}}const mS=new v(g);function pS(){return mS}function fS(...e){return t=>{let n;return\"function\"==typeof e[e.length-1]&&(n=e.pop()),t.lift(new _S(e,n))}}class _S{constructor(e,t){this.observables=e,this.project=t}call(e,t){return t.subscribe(new gS(e,this.observables,this.project))}}class gS extends R{constructor(e,t,n){super(e),this.observables=t,this.project=n,this.toRespond=[];const i=t.length;this.values=new Array(i);for(let s=0;s0){const e=r.indexOf(n);-1!==e&&r.splice(e,1)}}notifyComplete(){}_next(e){if(0===this.toRespond.length){const t=[e,...this.values];this.project?this._tryProject(t):this.destination.next(t)}}_tryProject(e){let t;try{t=this.project.apply(this,e)}catch(n){return void this.destination.error(n)}this.destination.next(t)}}const yS=[\"aria-label\",\"\\u0417\\u0430\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\"];function bS(e,t){if(1&e){const e=zo();Ro(0,\"button\",1),nc(1,yS),Uo(\"click\",(function(){return en(e),Jo().closeHandler()})),Ro(2,\"span\",2),Sa(3,\"\\xd7\"),Ho(),Ho()}}const vS=[\"*\"];function wS(e,t){if(1&e){const e=zo();Ro(0,\"li\",7),Uo(\"click\",(function(){en(e);const n=t.$implicit,i=Jo(2);return i.select(n.id,i.NgbSlideEventSource.INDICATOR)})),Ho()}if(2&e){const e=t.$implicit,n=Jo(2);ua(\"active\",e.id===n.activeId),Po(\"id\",e.id)}}function MS(e,t){if(1&e&&(Ro(0,\"ol\",5),Do(1,wS,1,3,\"li\",6),Ho()),2&e){const e=Jo();ys(1),Po(\"ngForOf\",e.slides)}}function kS(e,t){}function SS(e,t){if(1&e&&(Ro(0,\"div\",8),Do(1,kS,0,0,\"ng-template\",9),Ho()),2&e){const e=t.$implicit,n=Jo();ua(\"active\",e.id===n.activeId),ys(1),Po(\"ngTemplateOutlet\",e.tplRef)}}var LS,xS;function CS(e,t){if(1&e){const e=zo();Ro(0,\"a\",10),Uo(\"click\",(function(){en(e);const t=Jo();return t.prev(t.NgbSlideEventSource.ARROW_LEFT)})),jo(1,\"span\",11),Ro(2,\"span\",12),tc(3,LS),Ho(),Ho()}}function TS(e,t){if(1&e){const e=zo();Ro(0,\"a\",13),Uo(\"click\",(function(){en(e);const t=Jo();return t.next(t.NgbSlideEventSource.ARROW_RIGHT)})),jo(1,\"span\",14),Ro(2,\"span\",12),tc(3,xS),Ho(),Ho()}}function DS(e){return null!=e}LS=\"Previous\",xS=\"Next\",\"Previous month\",\"Previous month\",\"Next month\",\"Next month\",\"Select month\",\"Select month\",\"Select year\",\"Select year\",\"\\xAB\\xAB\",\"\\xAB\",\"\\xBB\",\"\\xBB\\xBB\",\"First\",\"Previous\",\"Next\",\"Last\",\"\" + \"\\ufffd0\\ufffd\" + \"%\",\"HH\",\"Hours\",\"MM\",\"Minutes\",\"Increment hours\",\"Decrement hours\",\"Increment minutes\",\"Decrement minutes\",\"SS\",\"Seconds\",\"Increment seconds\",\"Decrement seconds\",\"\" + \"\\ufffd0\\ufffd\" + \"\",\"\" + \"\\ufffd0\\ufffd\" + \"\",\"\\u0417\\u0430\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\",\"undefined\"==typeof Element||Element.prototype.closest||(Element.prototype.matches||(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector),Element.prototype.closest=function(e){let t=this;if(!document.documentElement.contains(t))return null;do{if(t.matches(e))return t;t=t.parentElement||t.parentNode}while(null!==t&&1===t.nodeType);return null});let YS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),ES=(()=>{class e{constructor(){this.dismissible=!0,this.type=\"warning\"}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})(),OS=(()=>{class e{constructor(e,t,n){this._renderer=t,this._element=n,this.close=new yc,this.dismissible=e.dismissible,this.type=e.type}closeHandler(){this.close.emit(null)}ngOnChanges(e){const t=e.type;t&&!t.firstChange&&(this._renderer.removeClass(this._element.nativeElement,`alert-${t.previousValue}`),this._renderer.addClass(this._element.nativeElement,`alert-${t.currentValue}`))}ngOnInit(){this._renderer.addClass(this._element.nativeElement,`alert-${this.type}`)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ES),Eo(el),Eo(Ka))},e.\\u0275cmp=yt({type:e,selectors:[[\"ngb-alert\"]],hostAttrs:[\"role\",\"alert\",1,\"alert\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"alert-dismissible\",t.dismissible)},inputs:{dismissible:\"dismissible\",type:\"type\"},outputs:{close:\"close\"},features:[Ra],ngContentSelectors:vS,decls:2,vars:1,consts:[[\"type\",\"button\",\"class\",\"close\",\"aria-label\",\"Close\",3,\"click\",4,\"ngIf\"],[\"type\",\"button\",1,\"close\",3,\"click\",6,\"aria-label\"],[\"aria-hidden\",\"true\"]],template:function(e,t){1&e&&(Zo(),ea(0),Do(1,bS,4,0,\"button\",0)),2&e&&(ys(1),Po(\"ngIf\",t.dismissible))},directives:[mu],styles:[\"ngb-alert{display:block}\"],encapsulation:2,changeDetection:0}),e})(),IS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),PS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),AS=(()=>{class e{constructor(){this.interval=5e3,this.wrap=!0,this.keyboard=!0,this.pauseOnHover=!0,this.showNavigationArrows=!0,this.showNavigationIndicators=!0}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})(),RS=0,HS=(()=>{class e{constructor(e){this.tplRef=e,this.id=`ngb-slide-${RS++}`}}return e.\\u0275fac=function(t){return new(t||e)(Eo(vl))},e.\\u0275dir=St({type:e,selectors:[[\"ng-template\",\"ngbSlide\",\"\"]],inputs:{id:\"id\"}}),e})(),jS=(()=>{class e{constructor(e,t,n,i){this._platformId=t,this._ngZone=n,this._cd=i,this.NgbSlideEventSource=NS,this._destroy$=new L,this._interval$=new hS(0),this._mouseHover$=new hS(!1),this._pauseOnHover$=new hS(!1),this._pause$=new hS(!1),this._wrap$=new hS(!1),this.slide=new yc,this.interval=e.interval,this.wrap=e.wrap,this.keyboard=e.keyboard,this.pauseOnHover=e.pauseOnHover,this.showNavigationArrows=e.showNavigationArrows,this.showNavigationIndicators=e.showNavigationIndicators}set interval(e){this._interval$.next(e)}get interval(){return this._interval$.value}set wrap(e){this._wrap$.next(e)}get wrap(){return this._wrap$.value}set pauseOnHover(e){this._pauseOnHover$.next(e)}get pauseOnHover(){return this._pauseOnHover$.value}mouseEnter(){this._mouseHover$.next(!0)}mouseLeave(){this._mouseHover$.next(!1)}ngAfterContentInit(){ku(this._platformId)&&this._ngZone.runOutsideAngular(()=>{const e=tS(this.slide.pipe(H(e=>e.current),Rf(this.activeId)),this._wrap$,this.slides.changes.pipe(Rf(null))).pipe(H(([e,t])=>{const n=this.slides.toArray(),i=this._getSlideIdxById(e);return t?n.length>1:ie||t&&n||!s?0:i),Eb(),Wb(e=>e>0?Hb(e,e):mS),Nb(this._destroy$)).subscribe(()=>this._ngZone.run(()=>this.next(NS.TIMER)))}),this.slides.changes.pipe(Nb(this._destroy$)).subscribe(()=>this._cd.markForCheck())}ngAfterContentChecked(){let e=this._getSlideById(this.activeId);this.activeId=e?e.id:this.slides.length?this.slides.first.id:null}ngOnDestroy(){this._destroy$.next()}select(e,t){this._cycleToSelected(e,this._getSlideEventDirection(this.activeId,e),t)}prev(e){this._cycleToSelected(this._getPrevSlide(this.activeId),FS.RIGHT,e)}next(e){this._cycleToSelected(this._getNextSlide(this.activeId),FS.LEFT,e)}pause(){this._pause$.next(!0)}cycle(){this._pause$.next(!1)}_cycleToSelected(e,t,n){let i=this._getSlideById(e);i&&i.id!==this.activeId&&(this.slide.emit({prev:this.activeId,current:i.id,direction:t,paused:this._pause$.value,source:n}),this.activeId=i.id),this._cd.markForCheck()}_getSlideEventDirection(e,t){return this._getSlideIdxById(e)>this._getSlideIdxById(t)?FS.RIGHT:FS.LEFT}_getSlideById(e){return this.slides.find(t=>t.id===e)}_getSlideIdxById(e){return this.slides.toArray().indexOf(this._getSlideById(e))}_getNextSlide(e){const t=this.slides.toArray(),n=this._getSlideIdxById(e);return n===t.length-1?this.wrap?t[0].id:t[t.length-1].id:t[n+1].id}_getPrevSlide(e){const t=this.slides.toArray(),n=this._getSlideIdxById(e);return 0===n?this.wrap?t[t.length-1].id:t[0].id:t[n-1].id}}return e.\\u0275fac=function(t){return new(t||e)(Eo(AS),Eo(Bc),Eo(ld),Eo(Qr))},e.\\u0275cmp=yt({type:e,selectors:[[\"ngb-carousel\"]],contentQueries:function(e,t,n){var i;1&e&&Ic(n,HS,!1),2&e&&Dc(i=Rc())&&(t.slides=i)},hostAttrs:[\"tabIndex\",\"0\",1,\"carousel\",\"slide\"],hostVars:2,hostBindings:function(e,t){1&e&&Uo(\"keydown.arrowLeft\",(function(){return t.keyboard&&t.prev(t.NgbSlideEventSource.ARROW_LEFT)}))(\"keydown.arrowRight\",(function(){return t.keyboard&&t.next(t.NgbSlideEventSource.ARROW_RIGHT)}))(\"mouseenter\",(function(){return t.mouseEnter()}))(\"mouseleave\",(function(){return t.mouseLeave()})),2&e&&da(\"display\",\"block\")},inputs:{interval:\"interval\",wrap:\"wrap\",keyboard:\"keyboard\",pauseOnHover:\"pauseOnHover\",showNavigationArrows:\"showNavigationArrows\",showNavigationIndicators:\"showNavigationIndicators\",activeId:\"activeId\"},outputs:{slide:\"slide\"},exportAs:[\"ngbCarousel\"],decls:5,vars:4,consts:[[\"class\",\"carousel-indicators\",4,\"ngIf\"],[1,\"carousel-inner\"],[\"class\",\"carousel-item\",3,\"active\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"carousel-control-prev\",\"role\",\"button\",3,\"click\",4,\"ngIf\"],[\"class\",\"carousel-control-next\",\"role\",\"button\",3,\"click\",4,\"ngIf\"],[1,\"carousel-indicators\"],[3,\"id\",\"active\",\"click\",4,\"ngFor\",\"ngForOf\"],[3,\"id\",\"click\"],[1,\"carousel-item\"],[3,\"ngTemplateOutlet\"],[\"role\",\"button\",1,\"carousel-control-prev\",3,\"click\"],[\"aria-hidden\",\"true\",1,\"carousel-control-prev-icon\"],[1,\"sr-only\"],[\"role\",\"button\",1,\"carousel-control-next\",3,\"click\"],[\"aria-hidden\",\"true\",1,\"carousel-control-next-icon\"]],template:function(e,t){1&e&&(Do(0,MS,2,1,\"ol\",0),Ro(1,\"div\",1),Do(2,SS,2,3,\"div\",2),Ho(),Do(3,CS,4,0,\"a\",3),Do(4,TS,4,0,\"a\",4)),2&e&&(Po(\"ngIf\",t.showNavigationIndicators),ys(2),Po(\"ngForOf\",t.slides),ys(1),Po(\"ngIf\",t.showNavigationArrows),ys(1),Po(\"ngIf\",t.showNavigationArrows))},directives:[mu,uu,wu],encapsulation:2,changeDetection:0}),e})();const FS={LEFT:\"left\",RIGHT:\"right\"},NS={TIMER:\"timer\",ARROW_LEFT:\"arrowLeft\",ARROW_RIGHT:\"arrowRight\",INDICATOR:\"indicator\"};let zS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),VS=(()=>{class e{constructor(){this.collapsed=!1}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngbCollapse\",\"\"]],hostVars:4,hostBindings:function(e,t){2&e&&ua(\"collapse\",!0)(\"show\",!t.collapsed)},inputs:{collapsed:[\"ngbCollapse\",\"collapsed\"]},exportAs:[\"ngbCollapse\"]}),e})(),WS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();const US=function(){var e={Tab:9,Enter:13,Escape:27,Space:32,PageUp:33,PageDown:34,End:35,Home:36,ArrowLeft:37,ArrowUp:38,ArrowRight:39,ArrowDown:40};return e[e.Tab]=\"Tab\",e[e.Enter]=\"Enter\",e[e.Escape]=\"Escape\",e[e.Space]=\"Space\",e[e.PageUp]=\"PageUp\",e[e.PageDown]=\"PageDown\",e[e.End]=\"End\",e[e.Home]=\"Home\",e[e.ArrowLeft]=\"ArrowLeft\",e[e.ArrowUp]=\"ArrowUp\",e[e.ArrowRight]=\"ArrowRight\",e[e.ArrowDown]=\"ArrowDown\",e}();\"undefined\"!=typeof navigator&&navigator.userAgent&&navigator;const $S=[\"a[href]\",\"button:not([disabled])\",'input:not([disabled]):not([type=\"hidden\"])',\"select:not([disabled])\",\"textarea:not([disabled])\",\"[contenteditable]\",'[tabindex]:not([tabindex=\"-1\"])'].join(\", \");function BS(e){const t=Array.from(e.querySelectorAll($S)).filter(e=>-1!==e.tabIndex);return[t[0],t[t.length-1]]}let qS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu,$m]]}),e})(),GS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),JS=(()=>{class e{constructor(){this.backdrop=!0,this.keyboard=!0}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})();class KS{constructor(e,t,n){this.nodes=e,this.viewRef=t,this.componentRef=n}}const ZS=()=>{};let QS=(()=>{class e{constructor(e){this._document=e}compensate(){return this._isPresent()?this._adjustBody(this._getWidth()):ZS}_adjustBody(e){const t=this._document.body,n=t.style.paddingRight,i=parseFloat(window.getComputedStyle(t)[\"padding-right\"]);return t.style[\"padding-right\"]=`${i+e}px`,()=>t.style[\"padding-right\"]=n}_isPresent(){const e=this._document.body.getBoundingClientRect();return e.left+e.right{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"ngb-modal-backdrop\"]],hostAttrs:[2,\"z-index\",\"1050\"],hostVars:2,hostBindings:function(e,t){2&e&&ha(\"modal-backdrop fade show\"+(t.backdropClass?\" \"+t.backdropClass:\"\"))},inputs:{backdropClass:\"backdropClass\"},decls:0,vars:0,template:function(e,t){},encapsulation:2}),e})();class eL{close(e){}dismiss(e){}}class tL{constructor(e,t,n,i){this._windowCmptRef=e,this._contentRef=t,this._backdropCmptRef=n,this._beforeDismiss=i,e.instance.dismissEvent.subscribe(e=>{this.dismiss(e)}),this.result=new Promise((e,t)=>{this._resolve=e,this._reject=t}),this.result.then(null,()=>{})}get componentInstance(){if(this._contentRef&&this._contentRef.componentRef)return this._contentRef.componentRef.instance}close(e){this._windowCmptRef&&(this._resolve(e),this._removeModalElements())}_dismiss(e){this._reject(e),this._removeModalElements()}dismiss(e){if(this._windowCmptRef)if(this._beforeDismiss){const t=this._beforeDismiss();t&&t.then?t.then(t=>{!1!==t&&this._dismiss(e)},()=>{}):!1!==t&&this._dismiss(e)}else this._dismiss(e)}_removeModalElements(){const e=this._windowCmptRef.location.nativeElement;if(e.parentNode.removeChild(e),this._windowCmptRef.destroy(),this._backdropCmptRef){const e=this._backdropCmptRef.location.nativeElement;e.parentNode.removeChild(e),this._backdropCmptRef.destroy()}this._contentRef&&this._contentRef.viewRef&&this._contentRef.viewRef.destroy(),this._windowCmptRef=null,this._backdropCmptRef=null,this._contentRef=null}}const nL=function(){var e={BACKDROP_CLICK:0,ESC:1};return e[e.BACKDROP_CLICK]=\"BACKDROP_CLICK\",e[e.ESC]=\"ESC\",e}();let iL=(()=>{class e{constructor(e,t,n){this._document=e,this._elRef=t,this._zone=n,this.backdrop=!0,this.keyboard=!0,this.dismissEvent=new yc,n.runOutsideAngular(()=>{Mb(this._elRef.nativeElement,\"keydown\").pipe(Nb(this.dismissEvent),Tu(e=>e.which===US.Escape&&this.keyboard)).subscribe(e=>requestAnimationFrame(()=>{e.defaultPrevented||n.run(()=>this.dismiss(nL.ESC))}));const e=Mb(this._elRef.nativeElement,\"mousedown\").pipe(Nb(this.dismissEvent),H(e=>!0===this.backdrop&&this._elRef.nativeElement===e.target));Mb(this._elRef.nativeElement,\"mouseup\").pipe(Nb(this.dismissEvent),fS(e),Tu(([e,t])=>t)).subscribe(()=>this._zone.run(()=>this.dismiss(nL.BACKDROP_CLICK)))})}dismiss(e){this.dismissEvent.emit(e)}ngOnInit(){this._elWithFocus=this._document.activeElement}ngAfterViewInit(){if(!this._elRef.nativeElement.contains(document.activeElement)){const e=this._elRef.nativeElement.querySelector(\"[ngbAutofocus]\"),t=BS(this._elRef.nativeElement)[0];(e||t||this._elRef.nativeElement).focus()}}ngOnDestroy(){const e=this._document.body,t=this._elWithFocus;let n;n=t&&t.focus&&e.contains(t)?t:e,this._zone.runOutsideAngular(()=>{setTimeout(()=>n.focus()),this._elWithFocus=null})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Nd),Eo(Ka),Eo(ld))},e.\\u0275cmp=yt({type:e,selectors:[[\"ngb-modal-window\"]],hostAttrs:[\"role\",\"dialog\",\"tabindex\",\"-1\"],hostVars:4,hostBindings:function(e,t){2&e&&(Co(\"aria-modal\",!0)(\"aria-labelledby\",t.ariaLabelledBy),ha(\"modal fade show d-block\"+(t.windowClass?\" \"+t.windowClass:\"\")))},inputs:{backdrop:\"backdrop\",keyboard:\"keyboard\",ariaLabelledBy:\"ariaLabelledBy\",centered:\"centered\",scrollable:\"scrollable\",size:\"size\",windowClass:\"windowClass\"},outputs:{dismissEvent:\"dismiss\"},ngContentSelectors:vS,decls:3,vars:2,consts:[[\"role\",\"document\"],[1,\"modal-content\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"div\",0),Ro(1,\"div\",1),ea(2),Ho(),Ho()),2&e&&ha(\"modal-dialog\"+(t.size?\" modal-\"+t.size:\"\")+(t.centered?\" modal-dialog-centered\":\"\")+(t.scrollable?\" modal-dialog-scrollable\":\"\"))},styles:[\"ngb-modal-window .component-host-scrollable{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;overflow:hidden}\"],encapsulation:2}),e})(),sL=(()=>{class e{constructor(e,t,n,i,s,r){this._applicationRef=e,this._injector=t,this._document=n,this._scrollBar=i,this._rendererFactory=s,this._ngZone=r,this._activeWindowCmptHasChanged=new L,this._ariaHiddenValues=new Map,this._backdropAttributes=[\"backdropClass\"],this._modalRefs=[],this._windowAttributes=[\"ariaLabelledBy\",\"backdrop\",\"centered\",\"keyboard\",\"scrollable\",\"size\",\"windowClass\"],this._windowCmpts=[],this._activeWindowCmptHasChanged.subscribe(()=>{if(this._windowCmpts.length){const e=this._windowCmpts[this._windowCmpts.length-1];((e,t,n,i=!1)=>{this._ngZone.runOutsideAngular(()=>{const e=Mb(t,\"focusin\").pipe(Nb(n),H(e=>e.target));Mb(t,\"keydown\").pipe(Nb(n),Tu(e=>e.which===US.Tab),fS(e)).subscribe(([e,n])=>{const[i,s]=BS(t);n!==i&&n!==t||!e.shiftKey||(s.focus(),e.preventDefault()),n!==s||e.shiftKey||(i.focus(),e.preventDefault())}),i&&Mb(t,\"click\").pipe(Nb(n),fS(e),H(e=>e[1])).subscribe(e=>e.focus())})})(0,e.location.nativeElement,this._activeWindowCmptHasChanged),this._revertAriaHidden(),this._setAriaHidden(e.location.nativeElement)}})}open(e,t,n,i){const s=DS(i.container)?this._document.querySelector(i.container):this._document.body,r=this._rendererFactory.createRenderer(null,null),o=this._scrollBar.compensate(),a=()=>{this._modalRefs.length||(r.removeClass(this._document.body,\"modal-open\"),this._revertAriaHidden())};if(!s)throw new Error(`The specified modal container \"${i.container||\"body\"}\" was not found in the DOM.`);const l=new eL,c=this._getContentRef(e,i.injector||t,n,l,i);let d=!1!==i.backdrop?this._attachBackdrop(e,s):null,u=this._attachWindowComponent(e,s,c),h=new tL(u,c,d,i.beforeDismiss);return this._registerModalRef(h),this._registerWindowCmpt(u),h.result.then(o,o),h.result.then(a,a),l.close=e=>{h.close(e)},l.dismiss=e=>{h.dismiss(e)},this._applyWindowOptions(u.instance,i),1===this._modalRefs.length&&r.addClass(this._document.body,\"modal-open\"),d&&d.instance&&this._applyBackdropOptions(d.instance,i),h}dismissAll(e){this._modalRefs.forEach(t=>t.dismiss(e))}hasOpenModals(){return this._modalRefs.length>0}_attachBackdrop(e,t){let n=e.resolveComponentFactory(XS).create(this._injector);return this._applicationRef.attachView(n.hostView),t.appendChild(n.location.nativeElement),n}_attachWindowComponent(e,t,n){let i=e.resolveComponentFactory(iL).create(this._injector,n.nodes);return this._applicationRef.attachView(i.hostView),t.appendChild(i.location.nativeElement),i}_applyWindowOptions(e,t){this._windowAttributes.forEach(n=>{DS(t[n])&&(e[n]=t[n])})}_applyBackdropOptions(e,t){this._backdropAttributes.forEach(n=>{DS(t[n])&&(e[n]=t[n])})}_getContentRef(e,t,n,i,s){return n?n instanceof vl?this._createFromTemplateRef(n,i):\"string\"==typeof n?this._createFromString(n):this._createFromComponent(e,t,n,i,s):new KS([])}_createFromTemplateRef(e,t){const n=e.createEmbeddedView({$implicit:t,close(e){t.close(e)},dismiss(e){t.dismiss(e)}});return this._applicationRef.attachView(n),new KS([n.rootNodes],n)}_createFromString(e){const t=this._document.createTextNode(`${e}`);return new KS([[t]])}_createFromComponent(e,t,n,i,s){const r=e.resolveComponentFactory(n),o=fo.create({providers:[{provide:eL,useValue:i}],parent:t}),a=r.create(o),l=a.location.nativeElement;return s.scrollable&&l.classList.add(\"component-host-scrollable\"),this._applicationRef.attachView(a.hostView),new KS([[l]],a.hostView,a)}_setAriaHidden(e){const t=e.parentElement;t&&e!==this._document.body&&(Array.from(t.children).forEach(t=>{t!==e&&\"SCRIPT\"!==t.nodeName&&(this._ariaHiddenValues.set(t,t.getAttribute(\"aria-hidden\")),t.setAttribute(\"aria-hidden\",\"true\"))}),this._setAriaHidden(t))}_revertAriaHidden(){this._ariaHiddenValues.forEach((e,t)=>{e?t.setAttribute(\"aria-hidden\",e):t.removeAttribute(\"aria-hidden\")}),this._ariaHiddenValues.clear()}_registerModalRef(e){const t=()=>{const t=this._modalRefs.indexOf(e);t>-1&&this._modalRefs.splice(t,1)};this._modalRefs.push(e),e.result.then(t,t)}_registerWindowCmpt(e){this._windowCmpts.push(e),this._activeWindowCmptHasChanged.next(),e.onDestroy(()=>{const t=this._windowCmpts.indexOf(e);t>-1&&(this._windowCmpts.splice(t,1),this._activeWindowCmptHasChanged.next())})}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Td),Qe(fo),Qe(Nd),Qe(QS),Qe(Qa),Qe(ld))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e(Qe(Td),Qe(We),Qe(Nd),Qe(QS),Qe(Qa),Qe(ld))},token:e,providedIn:\"root\"}),e})(),rL=(()=>{class e{constructor(e,t,n,i){this._moduleCFR=e,this._injector=t,this._modalStack=n,this._config=i}open(e,t={}){const n=Object.assign({},this._config,t);return this._modalStack.open(this._moduleCFR,this._injector,e,n)}dismissAll(e){this._modalStack.dismissAll(e)}hasOpenModals(){return this._modalStack.hasOpenModals()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Ja),Qe(fo),Qe(sL),Qe(JS))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e(Qe(Ja),Qe(We),Qe(sL),Qe(JS))},token:e,providedIn:\"root\"}),e})(),oL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[rL]}),e})(),aL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),lL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),cL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),dL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),uL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),hL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),mL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),pL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),fL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})();const _L=[YS,IS,PS,zS,WS,qS,GS,oL,aL,lL,cL,dL,uL,hL,mL,pL,fL];let gL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[_L,YS,IS,PS,zS,WS,qS,GS,oL,aL,lL,cL,dL,uL,hL,mL,pL,fL]}),e})();var yL=n(\"aCrv\");const bL=[\"header\"],vL=[\"container\"],wL=[\"content\"],ML=[\"invisiblePadding\"],kL=[\"*\"];function SL(){return{scrollThrottlingTime:0,scrollDebounceTime:0,scrollAnimationTime:750,checkResizeInterval:1e3,resizeBypassRefreshThreshold:5,modifyOverflowStyleOfParentScroll:!0,stripedTable:!1}}let LL=(()=>{let e=class{constructor(e,t,n,i,s,r){this.element=e,this.renderer=t,this.zone=n,this.changeDetectorRef=i,this.window=window,this.executeRefreshOutsideAngularZone=!1,this._enableUnequalChildrenSizes=!1,this.useMarginInsteadOfTranslate=!1,this.ssrViewportWidth=1920,this.ssrViewportHeight=1080,this._bufferAmount=0,this._items=[],this.compareItems=(e,t)=>e===t,this.vsUpdate=new yc,this.vsChange=new yc,this.vsStart=new yc,this.vsEnd=new yc,this.calculatedScrollbarWidth=0,this.calculatedScrollbarHeight=0,this.padding=0,this.previousViewPort={},this.cachedPageSize=0,this.previousScrollNumberElements=0,this.isAngularUniversalSSR=function(e){return\"server\"===e}(s),this.scrollThrottlingTime=r.scrollThrottlingTime,this.scrollDebounceTime=r.scrollDebounceTime,this.scrollAnimationTime=r.scrollAnimationTime,this.scrollbarWidth=r.scrollbarWidth,this.scrollbarHeight=r.scrollbarHeight,this.checkResizeInterval=r.checkResizeInterval,this.resizeBypassRefreshThreshold=r.resizeBypassRefreshThreshold,this.modifyOverflowStyleOfParentScroll=r.modifyOverflowStyleOfParentScroll,this.stripedTable=r.stripedTable,this.horizontal=!1,this.resetWrapGroupDimensions()}get viewPortInfo(){let e=this.previousViewPort||{};return{startIndex:e.startIndex||0,endIndex:e.endIndex||0,scrollStartPosition:e.scrollStartPosition||0,scrollEndPosition:e.scrollEndPosition||0,maxScrollPosition:e.maxScrollPosition||0,startIndexWithBuffer:e.startIndexWithBuffer||0,endIndexWithBuffer:e.endIndexWithBuffer||0}}get enableUnequalChildrenSizes(){return this._enableUnequalChildrenSizes}set enableUnequalChildrenSizes(e){this._enableUnequalChildrenSizes!==e&&(this._enableUnequalChildrenSizes=e,this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0)}get bufferAmount(){return\"number\"==typeof this._bufferAmount&&this._bufferAmount>=0?this._bufferAmount:this.enableUnequalChildrenSizes?5:0}set bufferAmount(e){this._bufferAmount=e}get scrollThrottlingTime(){return this._scrollThrottlingTime}set scrollThrottlingTime(e){this._scrollThrottlingTime=e,this.updateOnScrollFunction()}get scrollDebounceTime(){return this._scrollDebounceTime}set scrollDebounceTime(e){this._scrollDebounceTime=e,this.updateOnScrollFunction()}updateOnScrollFunction(){this.onScroll=this.scrollDebounceTime?this.debounce(()=>{this.refresh_internal(!1)},this.scrollDebounceTime):this.scrollThrottlingTime?this.throttleTrailing(()=>{this.refresh_internal(!1)},this.scrollThrottlingTime):()=>{this.refresh_internal(!1)}}get checkResizeInterval(){return this._checkResizeInterval}set checkResizeInterval(e){this._checkResizeInterval!==e&&(this._checkResizeInterval=e,this.addScrollEventHandlers())}get items(){return this._items}set items(e){e!==this._items&&(this._items=e||[],this.refresh_internal(!0))}get horizontal(){return this._horizontal}set horizontal(e){this._horizontal=e,this.updateDirection()}revertParentOverscroll(){const e=this.getScrollElement();e&&this.oldParentScrollOverflow&&(e.style[\"overflow-y\"]=this.oldParentScrollOverflow.y,e.style[\"overflow-x\"]=this.oldParentScrollOverflow.x),this.oldParentScrollOverflow=void 0}get parentScroll(){return this._parentScroll}set parentScroll(e){if(this._parentScroll===e)return;this.revertParentOverscroll(),this._parentScroll=e,this.addScrollEventHandlers();const t=this.getScrollElement();this.modifyOverflowStyleOfParentScroll&&t!==this.element.nativeElement&&(this.oldParentScrollOverflow={x:t.style[\"overflow-x\"],y:t.style[\"overflow-y\"]},t.style[\"overflow-y\"]=this.horizontal?\"visible\":\"auto\",t.style[\"overflow-x\"]=this.horizontal?\"auto\":\"visible\")}ngOnInit(){this.addScrollEventHandlers()}ngOnDestroy(){this.removeScrollEventHandlers(),this.revertParentOverscroll()}ngOnChanges(e){let t=this.cachedItemsLength!==this.items.length;this.cachedItemsLength=this.items.length,this.refresh_internal(t||!e.items||!e.items.previousValue||0===e.items.previousValue.length)}ngDoCheck(){if(this.cachedItemsLength!==this.items.length)return this.cachedItemsLength=this.items.length,void this.refresh_internal(!0);if(this.previousViewPort&&this.viewPortItems&&this.viewPortItems.length>0){let e=!1;for(let t=0;t=0&&this.invalidateCachedMeasurementAtIndex(t)}else this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0;this.refresh_internal(!1)}invalidateCachedMeasurementAtIndex(e){if(this.enableUnequalChildrenSizes){let t=this.wrapGroupDimensions.maxChildSizePerWrapGroup[e];t&&(this.wrapGroupDimensions.maxChildSizePerWrapGroup[e]=void 0,--this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes,this.wrapGroupDimensions.sumOfKnownWrapGroupChildWidths-=t.childWidth||0,this.wrapGroupDimensions.sumOfKnownWrapGroupChildHeights-=t.childHeight||0)}else this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0;this.refresh_internal(!1)}scrollInto(e,t=!0,n=0,i,s){let r=this.items.indexOf(e);-1!==r&&this.scrollToIndex(r,t,n,i,s)}scrollToIndex(e,t=!0,n=0,i,s){let r=5,o=()=>{if(--r,r<=0)return void(s&&s());let i=this.calculateDimensions(),a=Math.min(Math.max(e,0),i.itemCount-1);this.previousViewPort.startIndex!==a?this.scrollToIndex_internal(e,t,n,0,o):s&&s()};this.scrollToIndex_internal(e,t,n,i,o)}scrollToIndex_internal(e,t=!0,n=0,i,s){i=void 0===i?this.scrollAnimationTime:i;let r=this.calculateDimensions(),o=this.calculatePadding(e,r)+n;t||(o-=r.wrapGroupsPerPage*r[this._childScrollDim]),this.scrollToPosition(o,i,s)}scrollToPosition(e,t,n){e+=this.getElementsOffset(),t=void 0===t?this.scrollAnimationTime:t;let i,s=this.getScrollElement();if(this.currentTween&&(this.currentTween.stop(),this.currentTween=void 0),!t)return this.renderer.setProperty(s,this._scrollType,e),void this.refresh_internal(!1,n);const r={scrollPosition:s[this._scrollType]};let o=new yL.Tween(r).to({scrollPosition:e},t).easing(yL.Easing.Quadratic.Out).onUpdate(e=>{isNaN(e.scrollPosition)||(this.renderer.setProperty(s,this._scrollType,e.scrollPosition),this.refresh_internal(!1))}).onStop(()=>{cancelAnimationFrame(i)}).start();const a=t=>{o.isPlaying()&&(o.update(t),r.scrollPosition!==e?this.zone.runOutsideAngular(()=>{i=requestAnimationFrame(a)}):this.refresh_internal(!1,n))};a(),this.currentTween=o}getElementSize(e){let t=e.getBoundingClientRect(),n=getComputedStyle(e),i=parseInt(n[\"margin-top\"],10)||0,s=parseInt(n[\"margin-bottom\"],10)||0,r=parseInt(n[\"margin-left\"],10)||0,o=parseInt(n[\"margin-right\"],10)||0;return{top:t.top+i,bottom:t.bottom+s,left:t.left+r,right:t.right+o,width:t.width+r+o,height:t.height+i+s}}checkScrollElementResized(){let e,t=this.getElementSize(this.getScrollElement());if(this.previousScrollBoundingRect){let n=Math.abs(t.width-this.previousScrollBoundingRect.width),i=Math.abs(t.height-this.previousScrollBoundingRect.height);e=n>this.resizeBypassRefreshThreshold||i>this.resizeBypassRefreshThreshold}else e=!0;e&&(this.previousScrollBoundingRect=t,t.width>0&&t.height>0&&this.refresh_internal(!1))}updateDirection(){this.horizontal?(this._invisiblePaddingProperty=\"width\",this._offsetType=\"offsetLeft\",this._pageOffsetType=\"pageXOffset\",this._childScrollDim=\"childWidth\",this._marginDir=\"margin-left\",this._translateDir=\"translateX\",this._scrollType=\"scrollLeft\"):(this._invisiblePaddingProperty=\"height\",this._offsetType=\"offsetTop\",this._pageOffsetType=\"pageYOffset\",this._childScrollDim=\"childHeight\",this._marginDir=\"margin-top\",this._translateDir=\"translateY\",this._scrollType=\"scrollTop\")}debounce(e,t){const n=this.throttleTrailing(e,t),i=function(){n.cancel(),n.apply(this,arguments)};return i.cancel=function(){n.cancel()},i}throttleTrailing(e,t){let n=void 0,i=arguments;const s=function(){const s=this;i=arguments,n||(t<=0?e.apply(s,i):n=setTimeout((function(){n=void 0,e.apply(s,i)}),t))};return s.cancel=function(){n&&(clearTimeout(n),n=void 0)},s}refresh_internal(e,t,n=2){if(e&&this.previousViewPort&&this.previousViewPort.scrollStartPosition>0){let e=this.previousViewPort,n=this.viewPortItems,i=t;t=()=>{let t=this.previousViewPort.scrollLength-e.scrollLength;if(t>0&&this.viewPortItems){let e=n[0],s=this.items.findIndex(t=>this.compareItems(e,t));if(s>this.previousViewPort.startIndexWithBuffer){let e=!1;for(let t=1;t{requestAnimationFrame(()=>{e&&this.resetWrapGroupDimensions();let i=this.calculateViewport(),s=e||i.startIndex!==this.previousViewPort.startIndex,r=e||i.endIndex!==this.previousViewPort.endIndex,o=i.scrollLength!==this.previousViewPort.scrollLength,a=i.padding!==this.previousViewPort.padding,l=i.scrollStartPosition!==this.previousViewPort.scrollStartPosition||i.scrollEndPosition!==this.previousViewPort.scrollEndPosition||i.maxScrollPosition!==this.previousViewPort.maxScrollPosition;if(this.previousViewPort=i,o&&this.renderer.setStyle(this.invisiblePaddingElementRef.nativeElement,this._invisiblePaddingProperty,`${i.scrollLength}px`),a&&(this.useMarginInsteadOfTranslate?this.renderer.setStyle(this.contentElementRef.nativeElement,this._marginDir,`${i.padding}px`):(this.renderer.setStyle(this.contentElementRef.nativeElement,\"transform\",`${this._translateDir}(${i.padding}px)`),this.renderer.setStyle(this.contentElementRef.nativeElement,\"webkitTransform\",`${this._translateDir}(${i.padding}px)`))),this.headerElementRef){let e=this.getScrollElement()[this._scrollType],t=this.getElementsOffset(),n=Math.max(e-i.padding-t+this.headerElementRef.nativeElement.clientHeight,0);this.renderer.setStyle(this.headerElementRef.nativeElement,\"transform\",`${this._translateDir}(${n}px)`),this.renderer.setStyle(this.headerElementRef.nativeElement,\"webkitTransform\",`${this._translateDir}(${n}px)`)}const c=s||r?{startIndex:i.startIndex,endIndex:i.endIndex,scrollStartPosition:i.scrollStartPosition,scrollEndPosition:i.scrollEndPosition,startIndexWithBuffer:i.startIndexWithBuffer,endIndexWithBuffer:i.endIndexWithBuffer,maxScrollPosition:i.maxScrollPosition}:void 0;if(s||r||l){const e=()=>{this.viewPortItems=i.startIndexWithBuffer>=0&&i.endIndexWithBuffer>=0?this.items.slice(i.startIndexWithBuffer,i.endIndexWithBuffer+1):[],this.vsUpdate.emit(this.viewPortItems),s&&this.vsStart.emit(c),r&&this.vsEnd.emit(c),(s||r)&&(this.changeDetectorRef.markForCheck(),this.vsChange.emit(c)),n>0?this.refresh_internal(!1,t,n-1):t&&t()};this.executeRefreshOutsideAngularZone?e():this.zone.run(e)}else{if(n>0&&(o||a))return void this.refresh_internal(!1,t,n-1);t&&t()}})})}getScrollElement(){return this.parentScroll instanceof Window?document.scrollingElement||document.documentElement||document.body:this.parentScroll||this.element.nativeElement}addScrollEventHandlers(){if(this.isAngularUniversalSSR)return;let e=this.getScrollElement();this.removeScrollEventHandlers(),this.zone.runOutsideAngular(()=>{this.parentScroll instanceof Window?(this.disposeScrollHandler=this.renderer.listen(\"window\",\"scroll\",this.onScroll),this.disposeResizeHandler=this.renderer.listen(\"window\",\"resize\",this.onScroll)):(this.disposeScrollHandler=this.renderer.listen(e,\"scroll\",this.onScroll),this._checkResizeInterval>0&&(this.checkScrollElementResizedTimer=setInterval(()=>{this.checkScrollElementResized()},this._checkResizeInterval)))})}removeScrollEventHandlers(){this.checkScrollElementResizedTimer&&clearInterval(this.checkScrollElementResizedTimer),this.disposeScrollHandler&&(this.disposeScrollHandler(),this.disposeScrollHandler=void 0),this.disposeResizeHandler&&(this.disposeResizeHandler(),this.disposeResizeHandler=void 0)}getElementsOffset(){if(this.isAngularUniversalSSR)return 0;let e=0;if(this.containerElementRef&&this.containerElementRef.nativeElement&&(e+=this.containerElementRef.nativeElement[this._offsetType]),this.parentScroll){let t=this.getScrollElement(),n=this.getElementSize(this.element.nativeElement),i=this.getElementSize(t);e+=this.horizontal?n.left-i.left:n.top-i.top,this.parentScroll instanceof Window||(e+=t[this._scrollType])}return e}countItemsPerWrapGroup(){if(this.isAngularUniversalSSR)return Math.round(this.horizontal?this.ssrViewportHeight/this.ssrChildHeight:this.ssrViewportWidth/this.ssrChildWidth);let e=this.horizontal?\"offsetLeft\":\"offsetTop\",t=(this.containerElementRef&&this.containerElementRef.nativeElement||this.contentElementRef.nativeElement).children,n=t?t.length:0;if(0===n)return 1;let i=t[0][e],s=1;for(;s0){let t=Math.min(l,e);e-=t,l-=t}m+=e,e>0&&s>=m&&++t}else{let e=Math.min(h,Math.max(r-p,0));if(l>0){let t=Math.min(l,e);e-=t,l-=t}p+=e,e>0&&r>=p&&++t}++d,u=0,h=0}}let f=this.wrapGroupDimensions.sumOfKnownWrapGroupChildWidths/this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes,_=this.wrapGroupDimensions.sumOfKnownWrapGroupChildHeights/this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes;n=this.childWidth||f||s,i=this.childHeight||_||r,this.horizontal?s>m&&(t+=Math.ceil((s-m)/n)):r>p&&(t+=Math.ceil((r-p)/i))}else{if(o.children.length>0){this.childWidth&&this.childHeight||(!this.minMeasuredChildWidth&&s>0&&(this.minMeasuredChildWidth=s),!this.minMeasuredChildHeight&&r>0&&(this.minMeasuredChildHeight=r));let e=this.getElementSize(o.children[0]);this.minMeasuredChildWidth=Math.min(this.minMeasuredChildWidth,e.width),this.minMeasuredChildHeight=Math.min(this.minMeasuredChildHeight,e.height)}n=this.childWidth||this.minMeasuredChildWidth||s,i=this.childHeight||this.minMeasuredChildHeight||r;let e=Math.max(Math.ceil(s/n),1),a=Math.max(Math.ceil(r/i),1);t=this.horizontal?e:a}let l=this.items.length,c=a*t,d=l/c,u=Math.ceil(l/a),h=0,m=this.horizontal?n:i;if(this.enableUnequalChildrenSizes){let e=0;for(let t=0;t0&&(o+=t.itemsPerWrapGroup-a),isNaN(r)&&(r=0),isNaN(o)&&(o=0),r=Math.min(Math.max(r,0),t.itemCount-1),o=Math.min(Math.max(o,0),t.itemCount-1);let l=this.bufferAmount*t.itemsPerWrapGroup;return{startIndex:r,endIndex:o,startIndexWithBuffer:Math.min(Math.max(r-l,0),t.itemCount-1),endIndexWithBuffer:Math.min(Math.max(o+l,0),t.itemCount-1),scrollStartPosition:e,scrollEndPosition:e+t.viewportLength,maxScrollPosition:t.maxScrollPosition}}calculateViewport(){let e=this.calculateDimensions(),t=this.getElementsOffset(),n=this.getScrollStartPosition();n>e.scrollLength+t&&!(this.parentScroll instanceof Window)?n=e.scrollLength:n-=t,n=Math.max(0,n);let i=this.calculatePageInfo(n,e),s=this.calculatePadding(i.startIndexWithBuffer,e),r=e.scrollLength;return{startIndex:i.startIndex,endIndex:i.endIndex,startIndexWithBuffer:i.startIndexWithBuffer,endIndexWithBuffer:i.endIndexWithBuffer,padding:Math.round(s),scrollLength:Math.round(r),scrollStartPosition:i.scrollStartPosition,scrollEndPosition:i.scrollEndPosition,maxScrollPosition:i.maxScrollPosition}}};return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(el),Eo(ld),Eo(Qr),Eo(Bc),Eo(\"virtual-scroller-default-options\",8))},e.\\u0275cmp=yt({type:e,selectors:[[\"virtual-scroller\"],[\"\",\"virtualScroller\",\"\"]],contentQueries:function(e,t,n){var i;1&e&&(Ic(n,bL,!0,Ka),Ic(n,vL,!0,Ka)),2&e&&(Dc(i=Rc())&&(t.headerElementRef=i.first),Dc(i=Rc())&&(t.containerElementRef=i.first))},viewQuery:function(e,t){var n;1&e&&(Ec(wL,!0,Ka),Ec(ML,!0,Ka)),2&e&&(Dc(n=Rc())&&(t.contentElementRef=n.first),Dc(n=Rc())&&(t.invisiblePaddingElementRef=n.first))},hostVars:6,hostBindings:function(e,t){2&e&&ua(\"horizontal\",t.horizontal)(\"vertical\",!t.horizontal)(\"selfScroll\",!t.parentScroll)},inputs:{executeRefreshOutsideAngularZone:\"executeRefreshOutsideAngularZone\",useMarginInsteadOfTranslate:\"useMarginInsteadOfTranslate\",ssrViewportWidth:\"ssrViewportWidth\",ssrViewportHeight:\"ssrViewportHeight\",compareItems:\"compareItems\",scrollThrottlingTime:\"scrollThrottlingTime\",scrollDebounceTime:\"scrollDebounceTime\",scrollAnimationTime:\"scrollAnimationTime\",scrollbarWidth:\"scrollbarWidth\",scrollbarHeight:\"scrollbarHeight\",checkResizeInterval:\"checkResizeInterval\",resizeBypassRefreshThreshold:\"resizeBypassRefreshThreshold\",modifyOverflowStyleOfParentScroll:\"modifyOverflowStyleOfParentScroll\",stripedTable:\"stripedTable\",horizontal:\"horizontal\",enableUnequalChildrenSizes:\"enableUnequalChildrenSizes\",bufferAmount:\"bufferAmount\",items:\"items\",parentScroll:\"parentScroll\",childWidth:\"childWidth\",childHeight:\"childHeight\",ssrChildWidth:\"ssrChildWidth\",ssrChildHeight:\"ssrChildHeight\"},outputs:{vsUpdate:\"vsUpdate\",vsChange:\"vsChange\",vsStart:\"vsStart\",vsEnd:\"vsEnd\"},exportAs:[\"virtualScroller\"],features:[Ra],ngContentSelectors:kL,decls:5,vars:0,consts:[[1,\"total-padding\"],[\"invisiblePadding\",\"\"],[1,\"scrollable-content\"],[\"content\",\"\"]],template:function(e,t){1&e&&(Zo(),jo(0,\"div\",0,1),Ro(2,\"div\",2,3),ea(4),Ho())},styles:[\"[_nghost-%COMP%] {\\n position: relative;\\n\\t display: block;\\n -webkit-overflow-scrolling: touch;\\n }\\n\\t\\n\\t.horizontal.selfScroll[_nghost-%COMP%] {\\n overflow-y: visible;\\n overflow-x: auto;\\n\\t}\\n\\t.vertical.selfScroll[_nghost-%COMP%] {\\n overflow-y: auto;\\n overflow-x: visible;\\n\\t}\\n\\t\\n .scrollable-content[_ngcontent-%COMP%] {\\n top: 0;\\n left: 0;\\n width: 100%;\\n height: 100%;\\n max-width: 100vw;\\n max-height: 100vh;\\n position: absolute;\\n }\\n\\n\\t.scrollable-content[_ngcontent-%COMP%] > * {\\n\\t\\tbox-sizing: border-box;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] {\\n\\t\\twhite-space: nowrap;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] .scrollable-content[_ngcontent-%COMP%] {\\n\\t\\tdisplay: flex;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] .scrollable-content[_ngcontent-%COMP%] > * {\\n\\t\\tflex-shrink: 0;\\n\\t\\tflex-grow: 0;\\n\\t\\twhite-space: initial;\\n\\t}\\n\\t\\n .total-padding[_ngcontent-%COMP%] {\\n width: 1px;\\n opacity: 0;\\n }\\n \\n .horizontal[_nghost-%COMP%] .total-padding[_ngcontent-%COMP%] {\\n height: 100%;\\n }\"]}),e})(),xL=(()=>{let e=class{};return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[{provide:\"virtual-scroller-default-options\",useFactory:SL}],imports:[[Mu]]}),e})();const CL={on:()=>{},off:()=>{}};let TL=(()=>{class e extends wf{constructor(e){super(),this.hammerOptions=e,this.events=[\"longpress\",\"slide\",\"slidestart\",\"slideend\",\"slideright\",\"slideleft\"]}buildHammer(e){const t=\"undefined\"!=typeof window?window.Hammer:null;if(!t)return CL;const n=new t(e,this.hammerOptions||void 0),i=new t.Pan,s=new t.Swipe,r=new t.Press,o=this._createRecognizer(i,{event:\"slide\",threshold:0},s),a=this._createRecognizer(r,{event:\"longpress\",time:500});return i.recognizeWith(s),a.recognizeWith(o),n.add([s,r,i,o,a]),n}_createRecognizer(e,t,...n){const i=new e.constructor(t);return n.push(e),n.forEach(e=>i.recognizeWith(e)),i}}return e.\\u0275fac=function(t){return new(t||e)(Qe(wy,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const DL=(()=>{function e(){return Error.call(this),this.message=\"no elements in sequence\",this.name=\"EmptyError\",this}return e.prototype=Object.create(Error.prototype),e})();function YL(e){return function(t){return 0===e?lp():t.lift(new EL(e))}}class EL{constructor(e){if(this.total=e,this.total<0)throw new op}call(e,t){return t.subscribe(new OL(e,this.total))}}class OL extends p{constructor(e,t){super(e),this.total=t,this.ring=new Array,this.count=0}_next(e){const t=this.ring,n=this.total,i=this.count++;t.length0){const n=this.count>=this.total?this.total:this.count,i=this.ring;for(let s=0;st.lift(new PL(e))}class PL{constructor(e){this.errorFactory=e}call(e,t){return t.subscribe(new AL(e,this.errorFactory))}}class AL extends p{constructor(e,t){super(e),this.errorFactory=t,this.hasValue=!1}_next(e){this.hasValue=!0,this.destination.next(e)}_complete(){if(this.hasValue)return this.destination.complete();{let t;try{t=this.errorFactory()}catch(e){t=e}this.destination.error(t)}}}function RL(){return new DL}function HL(e=null){return t=>t.lift(new jL(e))}class jL{constructor(e){this.defaultValue=e}call(e,t){return t.subscribe(new FL(e,this.defaultValue))}}class FL extends p{constructor(e,t){super(e),this.defaultValue=t,this.isEmpty=!0}_next(e){this.isEmpty=!1,this.destination.next(e)}_complete(){this.isEmpty&&this.destination.next(this.defaultValue),this.destination.complete()}}function NL(e,t){const n=arguments.length>=2;return i=>i.pipe(e?Tu((t,n)=>e(t,n,i)):$,YL(1),n?HL(t):IL(()=>new DL))}function zL(e,t){const n=arguments.length>=2;return i=>i.pipe(e?Tu((t,n)=>e(t,n,i)):$,cp(1),n?HL(t):IL(()=>new DL))}class VL{constructor(e,t,n){this.predicate=e,this.thisArg=t,this.source=n}call(e,t){return t.subscribe(new WL(e,this.predicate,this.thisArg,this.source))}}class WL extends p{constructor(e,t,n,i){super(e),this.predicate=t,this.thisArg=n,this.source=i,this.index=0,this.thisArg=n||this}notifyComplete(e){this.destination.next(e),this.destination.complete()}_next(e){let t=!1;try{t=this.predicate.call(this.thisArg,e,this.index++,this.source)}catch(n){return void this.destination.error(n)}t||this.notifyComplete(!1)}_complete(){this.notifyComplete(!0)}}function UL(e,t){let n=!1;return arguments.length>=2&&(n=!0),function(i){return i.lift(new $L(e,t,n))}}class $L{constructor(e,t,n=!1){this.accumulator=e,this.seed=t,this.hasSeed=n}call(e,t){return t.subscribe(new BL(e,this.accumulator,this.seed,this.hasSeed))}}class BL extends p{constructor(e,t,n,i){super(e),this.accumulator=t,this._seed=n,this.hasSeed=i,this.index=0}get seed(){return this._seed}set seed(e){this.hasSeed=!0,this._seed=e}_next(e){if(this.hasSeed)return this._tryNext(e);this.seed=e,this.destination.next(e)}_tryNext(e){const t=this.index++;let n;try{n=this.accumulator(this.seed,e,t)}catch(i){this.destination.error(i)}this.seed=n,this.destination.next(n)}}class qL{constructor(e,t){this.id=e,this.url=t}}class GL extends qL{constructor(e,t,n=\"imperative\",i=null){super(e,t),this.navigationTrigger=n,this.restoredState=i}toString(){return`NavigationStart(id: ${this.id}, url: '${this.url}')`}}class JL extends qL{constructor(e,t,n){super(e,t),this.urlAfterRedirects=n}toString(){return`NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`}}class KL extends qL{constructor(e,t,n){super(e,t),this.reason=n}toString(){return`NavigationCancel(id: ${this.id}, url: '${this.url}')`}}class ZL extends qL{constructor(e,t,n){super(e,t),this.error=n}toString(){return`NavigationError(id: ${this.id}, url: '${this.url}', error: ${this.error})`}}class QL extends qL{constructor(e,t,n,i){super(e,t),this.urlAfterRedirects=n,this.state=i}toString(){return`RoutesRecognized(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class XL extends qL{constructor(e,t,n,i){super(e,t),this.urlAfterRedirects=n,this.state=i}toString(){return`GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class ex extends qL{constructor(e,t,n,i,s){super(e,t),this.urlAfterRedirects=n,this.state=i,this.shouldActivate=s}toString(){return`GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`}}class tx extends qL{constructor(e,t,n,i){super(e,t),this.urlAfterRedirects=n,this.state=i}toString(){return`ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class nx extends qL{constructor(e,t,n,i){super(e,t),this.urlAfterRedirects=n,this.state=i}toString(){return`ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class ix{constructor(e){this.route=e}toString(){return`RouteConfigLoadStart(path: ${this.route.path})`}}class sx{constructor(e){this.route=e}toString(){return`RouteConfigLoadEnd(path: ${this.route.path})`}}class rx{constructor(e){this.snapshot=e}toString(){return`ChildActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\"}')`}}class ox{constructor(e){this.snapshot=e}toString(){return`ChildActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\"}')`}}class ax{constructor(e){this.snapshot=e}toString(){return`ActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\"}')`}}class lx{constructor(e){this.snapshot=e}toString(){return`ActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\"}')`}}class cx{constructor(e,t,n){this.routerEvent=e,this.position=t,this.anchor=n}toString(){return`Scroll(anchor: '${this.anchor}', position: '${this.position?`${this.position[0]}, ${this.position[1]}`:null}')`}}let dx=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:1,vars:0,template:function(e,t){1&e&&jo(0,\"router-outlet\")},directives:function(){return[mT]},encapsulation:2}),e})();class ux{constructor(e){this.params=e||{}}has(e){return this.params.hasOwnProperty(e)}get(e){if(this.has(e)){const t=this.params[e];return Array.isArray(t)?t[0]:t}return null}getAll(e){if(this.has(e)){const t=this.params[e];return Array.isArray(t)?t:[t]}return[]}get keys(){return Object.keys(this.params)}}function hx(e){return new ux(e)}function mx(e){const t=Error(\"NavigationCancelingError: \"+e);return t.ngNavigationCancelingError=!0,t}function px(e,t,n){const i=n.path.split(\"/\");if(i.length>e.length)return null;if(\"full\"===n.pathMatch&&(t.hasChildren()||i.lengtht.indexOf(e)>-1):e===t}function Mx(e){return Array.prototype.concat.apply([],e)}function kx(e){return e.length>0?e[e.length-1]:null}function Sx(e,t){for(const n in e)e.hasOwnProperty(n)&&t(e[n],n)}function Lx(e){return Wo(e)?e:Vo(e)?z(Promise.resolve(e)):xu(e)}function xx(e,t,n){return n?function(e,t){return vx(e,t)}(e.queryParams,t.queryParams)&&function e(t,n){if(!Yx(t.segments,n.segments))return!1;if(t.numberOfChildren!==n.numberOfChildren)return!1;for(const i in n.children){if(!t.children[i])return!1;if(!e(t.children[i],n.children[i]))return!1}return!0}(e.root,t.root):function(e,t){return Object.keys(t).length<=Object.keys(e).length&&Object.keys(t).every(n=>wx(e[n],t[n]))}(e.queryParams,t.queryParams)&&function e(t,n){return function t(n,i,s){if(n.segments.length>s.length)return!!Yx(n.segments.slice(0,s.length),s)&&!i.hasChildren();if(n.segments.length===s.length){if(!Yx(n.segments,s))return!1;for(const t in i.children){if(!n.children[t])return!1;if(!e(n.children[t],i.children[t]))return!1}return!0}{const e=s.slice(0,n.segments.length),r=s.slice(n.segments.length);return!!Yx(n.segments,e)&&!!n.children.primary&&t(n.children.primary,i,r)}}(t,n,n.segments)}(e.root,t.root)}class Cx{constructor(e,t,n){this.root=e,this.queryParams=t,this.fragment=n}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=hx(this.queryParams)),this._queryParamMap}toString(){return Px.serialize(this)}}class Tx{constructor(e,t){this.segments=e,this.children=t,this.parent=null,Sx(t,(e,t)=>e.parent=this)}hasChildren(){return this.numberOfChildren>0}get numberOfChildren(){return Object.keys(this.children).length}toString(){return Ax(this)}}class Dx{constructor(e,t){this.path=e,this.parameters=t}get parameterMap(){return this._parameterMap||(this._parameterMap=hx(this.parameters)),this._parameterMap}toString(){return zx(this)}}function Yx(e,t){return e.length===t.length&&e.every((e,n)=>e.path===t[n].path)}function Ex(e,t){let n=[];return Sx(e.children,(e,i)=>{\"primary\"===i&&(n=n.concat(t(e,i)))}),Sx(e.children,(e,i)=>{\"primary\"!==i&&(n=n.concat(t(e,i)))}),n}class Ox{}class Ix{parse(e){const t=new Bx(e);return new Cx(t.parseRootSegment(),t.parseQueryParams(),t.parseFragment())}serialize(e){var t;return`${`/${function e(t,n){if(!t.hasChildren())return Ax(t);if(n){const n=t.children.primary?e(t.children.primary,!1):\"\",i=[];return Sx(t.children,(t,n)=>{\"primary\"!==n&&i.push(`${n}:${e(t,!1)}`)}),i.length>0?`${n}(${i.join(\"//\")})`:n}{const n=Ex(t,(n,i)=>\"primary\"===i?[e(t.children.primary,!1)]:[`${i}:${e(n,!1)}`]);return`${Ax(t)}/(${n.join(\"//\")})`}}(e.root,!0)}`}${function(e){const t=Object.keys(e).map(t=>{const n=e[t];return Array.isArray(n)?n.map(e=>`${Hx(t)}=${Hx(e)}`).join(\"&\"):`${Hx(t)}=${Hx(n)}`});return t.length?`?${t.join(\"&\")}`:\"\"}(e.queryParams)}${\"string\"==typeof e.fragment?`#${t=e.fragment,encodeURI(t)}`:\"\"}`}}const Px=new Ix;function Ax(e){return e.segments.map(e=>zx(e)).join(\"/\")}function Rx(e){return encodeURIComponent(e).replace(/%40/g,\"@\").replace(/%3A/gi,\":\").replace(/%24/g,\"$\").replace(/%2C/gi,\",\")}function Hx(e){return Rx(e).replace(/%3B/gi,\";\")}function jx(e){return Rx(e).replace(/\\(/g,\"%28\").replace(/\\)/g,\"%29\").replace(/%26/gi,\"&\")}function Fx(e){return decodeURIComponent(e)}function Nx(e){return Fx(e.replace(/\\+/g,\"%20\"))}function zx(e){return`${jx(e.path)}${t=e.parameters,Object.keys(t).map(e=>`;${jx(e)}=${jx(t[e])}`).join(\"\")}`;var t}const Vx=/^[^\\/()?;=#]+/;function Wx(e){const t=e.match(Vx);return t?t[0]:\"\"}const Ux=/^[^=?&#]+/,$x=/^[^?&#]+/;class Bx{constructor(e){this.url=e,this.remaining=e}parseRootSegment(){return this.consumeOptional(\"/\"),\"\"===this.remaining||this.peekStartsWith(\"?\")||this.peekStartsWith(\"#\")?new Tx([],{}):new Tx([],this.parseChildren())}parseQueryParams(){const e={};if(this.consumeOptional(\"?\"))do{this.parseQueryParam(e)}while(this.consumeOptional(\"&\"));return e}parseFragment(){return this.consumeOptional(\"#\")?decodeURIComponent(this.remaining):null}parseChildren(){if(\"\"===this.remaining)return{};this.consumeOptional(\"/\");const e=[];for(this.peekStartsWith(\"(\")||e.push(this.parseSegment());this.peekStartsWith(\"/\")&&!this.peekStartsWith(\"//\")&&!this.peekStartsWith(\"/(\");)this.capture(\"/\"),e.push(this.parseSegment());let t={};this.peekStartsWith(\"/(\")&&(this.capture(\"/\"),t=this.parseParens(!0));let n={};return this.peekStartsWith(\"(\")&&(n=this.parseParens(!1)),(e.length>0||Object.keys(t).length>0)&&(n.primary=new Tx(e,t)),n}parseSegment(){const e=Wx(this.remaining);if(\"\"===e&&this.peekStartsWith(\";\"))throw new Error(`Empty path url segment cannot have parameters: '${this.remaining}'.`);return this.capture(e),new Dx(Fx(e),this.parseMatrixParams())}parseMatrixParams(){const e={};for(;this.consumeOptional(\";\");)this.parseParam(e);return e}parseParam(e){const t=Wx(this.remaining);if(!t)return;this.capture(t);let n=\"\";if(this.consumeOptional(\"=\")){const e=Wx(this.remaining);e&&(n=e,this.capture(n))}e[Fx(t)]=Fx(n)}parseQueryParam(e){const t=function(e){const t=e.match(Ux);return t?t[0]:\"\"}(this.remaining);if(!t)return;this.capture(t);let n=\"\";if(this.consumeOptional(\"=\")){const e=function(e){const t=e.match($x);return t?t[0]:\"\"}(this.remaining);e&&(n=e,this.capture(n))}const i=Nx(t),s=Nx(n);if(e.hasOwnProperty(i)){let t=e[i];Array.isArray(t)||(t=[t],e[i]=t),t.push(s)}else e[i]=s}parseParens(e){const t={};for(this.capture(\"(\");!this.consumeOptional(\")\")&&this.remaining.length>0;){const n=Wx(this.remaining),i=this.remaining[n.length];if(\"/\"!==i&&\")\"!==i&&\";\"!==i)throw new Error(`Cannot parse url '${this.url}'`);let s=void 0;n.indexOf(\":\")>-1?(s=n.substr(0,n.indexOf(\":\")),this.capture(s),this.capture(\":\")):e&&(s=\"primary\");const r=this.parseChildren();t[s]=1===Object.keys(r).length?r.primary:new Tx([],r),this.consumeOptional(\"//\")}return t}peekStartsWith(e){return this.remaining.startsWith(e)}consumeOptional(e){return!!this.peekStartsWith(e)&&(this.remaining=this.remaining.substring(e.length),!0)}capture(e){if(!this.consumeOptional(e))throw new Error(`Expected \"${e}\".`)}}class qx{constructor(e){this._root=e}get root(){return this._root.value}parent(e){const t=this.pathFromRoot(e);return t.length>1?t[t.length-2]:null}children(e){const t=Gx(e,this._root);return t?t.children.map(e=>e.value):[]}firstChild(e){const t=Gx(e,this._root);return t&&t.children.length>0?t.children[0].value:null}siblings(e){const t=Jx(e,this._root);return t.length<2?[]:t[t.length-2].children.map(e=>e.value).filter(t=>t!==e)}pathFromRoot(e){return Jx(e,this._root).map(e=>e.value)}}function Gx(e,t){if(e===t.value)return t;for(const n of t.children){const t=Gx(e,n);if(t)return t}return null}function Jx(e,t){if(e===t.value)return[t];for(const n of t.children){const i=Jx(e,n);if(i.length)return i.unshift(t),i}return[]}class Kx{constructor(e,t){this.value=e,this.children=t}toString(){return`TreeNode(${this.value})`}}function Zx(e){const t={};return e&&e.children.forEach(e=>t[e.value.outlet]=e),t}class Qx extends qx{constructor(e,t){super(e),this.snapshot=t,sC(this,e)}toString(){return this.snapshot.toString()}}function Xx(e,t){const n=function(e,t){const n=new nC([],{},{},\"\",{},\"primary\",t,null,e.root,-1,{});return new iC(\"\",new Kx(n,[]))}(e,t),i=new hS([new Dx(\"\",{})]),s=new hS({}),r=new hS({}),o=new hS({}),a=new hS(\"\"),l=new eC(i,s,o,a,r,\"primary\",t,n.root);return l.snapshot=n.root,new Qx(new Kx(l,[]),n)}class eC{constructor(e,t,n,i,s,r,o,a){this.url=e,this.params=t,this.queryParams=n,this.fragment=i,this.data=s,this.outlet=r,this.component=o,this._futureSnapshot=a}get routeConfig(){return this._futureSnapshot.routeConfig}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap||(this._paramMap=this.params.pipe(H(e=>hx(e)))),this._paramMap}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=this.queryParams.pipe(H(e=>hx(e)))),this._queryParamMap}toString(){return this.snapshot?this.snapshot.toString():`Future(${this._futureSnapshot})`}}function tC(e,t=\"emptyOnly\"){const n=e.pathFromRoot;let i=0;if(\"always\"!==t)for(i=n.length-1;i>=1;){const e=n[i],t=n[i-1];if(e.routeConfig&&\"\"===e.routeConfig.path)i--;else{if(t.component)break;i--}}return function(e){return e.reduce((e,t)=>({params:Object.assign(Object.assign({},e.params),t.params),data:Object.assign(Object.assign({},e.data),t.data),resolve:Object.assign(Object.assign({},e.resolve),t._resolvedData)}),{params:{},data:{},resolve:{}})}(n.slice(i))}class nC{constructor(e,t,n,i,s,r,o,a,l,c,d){this.url=e,this.params=t,this.queryParams=n,this.fragment=i,this.data=s,this.outlet=r,this.component=o,this.routeConfig=a,this._urlSegment=l,this._lastPathIndex=c,this._resolve=d}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap||(this._paramMap=hx(this.params)),this._paramMap}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=hx(this.queryParams)),this._queryParamMap}toString(){return`Route(url:'${this.url.map(e=>e.toString()).join(\"/\")}', path:'${this.routeConfig?this.routeConfig.path:\"\"}')`}}class iC extends qx{constructor(e,t){super(t),this.url=e,sC(this,t)}toString(){return rC(this._root)}}function sC(e,t){t.value._routerState=e,t.children.forEach(t=>sC(e,t))}function rC(e){const t=e.children.length>0?` { ${e.children.map(rC).join(\", \")} } `:\"\";return`${e.value}${t}`}function oC(e){if(e.snapshot){const t=e.snapshot,n=e._futureSnapshot;e.snapshot=n,vx(t.queryParams,n.queryParams)||e.queryParams.next(n.queryParams),t.fragment!==n.fragment&&e.fragment.next(n.fragment),vx(t.params,n.params)||e.params.next(n.params),function(e,t){if(e.length!==t.length)return!1;for(let n=0;nvx(e.parameters,i[t].parameters))&&!(!e.parent!=!t.parent)&&(!e.parent||aC(e.parent,t.parent))}function lC(e){return\"object\"==typeof e&&null!=e&&!e.outlets&&!e.segmentPath}function cC(e,t,n,i,s){let r={};return i&&Sx(i,(e,t)=>{r[t]=Array.isArray(e)?e.map(e=>`${e}`):`${e}`}),new Cx(n.root===e?t:function e(t,n,i){const s={};return Sx(t.children,(t,r)=>{s[r]=t===n?i:e(t,n,i)}),new Tx(t.segments,s)}(n.root,e,t),r,s)}class dC{constructor(e,t,n){if(this.isAbsolute=e,this.numberOfDoubleDots=t,this.commands=n,e&&n.length>0&&lC(n[0]))throw new Error(\"Root segment cannot have matrix parameters\");const i=n.find(e=>\"object\"==typeof e&&null!=e&&e.outlets);if(i&&i!==kx(n))throw new Error(\"{outlets:{}} has to be the last command\")}toRoot(){return this.isAbsolute&&1===this.commands.length&&\"/\"==this.commands[0]}}class uC{constructor(e,t,n){this.segmentGroup=e,this.processChildren=t,this.index=n}}function hC(e){return\"object\"==typeof e&&null!=e&&e.outlets?e.outlets.primary:`${e}`}function mC(e,t,n){if(e||(e=new Tx([],{})),0===e.segments.length&&e.hasChildren())return pC(e,t,n);const i=function(e,t,n){let i=0,s=t;const r={match:!1,pathIndex:0,commandIndex:0};for(;s=n.length)return r;const t=e.segments[s],o=hC(n[i]),a=i0&&void 0===o)break;if(o&&a&&\"object\"==typeof a&&void 0===a.outlets){if(!yC(o,a,t))return r;i+=2}else{if(!yC(o,{},t))return r;i++}s++}return{match:!0,pathIndex:s,commandIndex:i}}(e,t,n),s=n.slice(i.commandIndex);if(i.match&&i.pathIndex{null!==n&&(s[i]=mC(e.children[i],t,n))}),Sx(e.children,(e,t)=>{void 0===i[t]&&(s[t]=e)}),new Tx(e.segments,s)}}function fC(e,t,n){const i=e.segments.slice(0,t);let s=0;for(;s{null!==e&&(t[n]=fC(new Tx([],{}),0,e))}),t}function gC(e){const t={};return Sx(e,(e,n)=>t[n]=`${e}`),t}function yC(e,t,n){return e==n.path&&vx(t,n.parameters)}class bC{constructor(e,t,n,i){this.routeReuseStrategy=e,this.futureState=t,this.currState=n,this.forwardEvent=i}activate(e){const t=this.futureState._root,n=this.currState?this.currState._root:null;this.deactivateChildRoutes(t,n,e),oC(this.futureState.root),this.activateChildRoutes(t,n,e)}deactivateChildRoutes(e,t,n){const i=Zx(t);e.children.forEach(e=>{const t=e.value.outlet;this.deactivateRoutes(e,i[t],n),delete i[t]}),Sx(i,(e,t)=>{this.deactivateRouteAndItsChildren(e,n)})}deactivateRoutes(e,t,n){const i=e.value,s=t?t.value:null;if(i===s)if(i.component){const s=n.getContext(i.outlet);s&&this.deactivateChildRoutes(e,t,s.children)}else this.deactivateChildRoutes(e,t,n);else s&&this.deactivateRouteAndItsChildren(t,n)}deactivateRouteAndItsChildren(e,t){this.routeReuseStrategy.shouldDetach(e.value.snapshot)?this.detachAndStoreRouteSubtree(e,t):this.deactivateRouteAndOutlet(e,t)}detachAndStoreRouteSubtree(e,t){const n=t.getContext(e.value.outlet);if(n&&n.outlet){const t=n.outlet.detach(),i=n.children.onOutletDeactivated();this.routeReuseStrategy.store(e.value.snapshot,{componentRef:t,route:e,contexts:i})}}deactivateRouteAndOutlet(e,t){const n=t.getContext(e.value.outlet);if(n){const i=Zx(e),s=e.value.component?n.children:t;Sx(i,(e,t)=>this.deactivateRouteAndItsChildren(e,s)),n.outlet&&(n.outlet.deactivate(),n.children.onOutletDeactivated())}}activateChildRoutes(e,t,n){const i=Zx(t);e.children.forEach(e=>{this.activateRoutes(e,i[e.value.outlet],n),this.forwardEvent(new lx(e.value.snapshot))}),e.children.length&&this.forwardEvent(new ox(e.value.snapshot))}activateRoutes(e,t,n){const i=e.value,s=t?t.value:null;if(oC(i),i===s)if(i.component){const s=n.getOrCreateContext(i.outlet);this.activateChildRoutes(e,t,s.children)}else this.activateChildRoutes(e,t,n);else if(i.component){const t=n.getOrCreateContext(i.outlet);if(this.routeReuseStrategy.shouldAttach(i.snapshot)){const e=this.routeReuseStrategy.retrieve(i.snapshot);this.routeReuseStrategy.store(i.snapshot,null),t.children.onOutletReAttached(e.contexts),t.attachRef=e.componentRef,t.route=e.route.value,t.outlet&&t.outlet.attach(e.componentRef,e.route.value),vC(e.route)}else{const n=function(e){for(let t=e.parent;t;t=t.parent){const e=t.routeConfig;if(e&&e._loadedConfig)return e._loadedConfig;if(e&&e.component)return null}return null}(i.snapshot),s=n?n.module.componentFactoryResolver:null;t.attachRef=null,t.route=i,t.resolver=s,t.outlet&&t.outlet.activateWith(i,s),this.activateChildRoutes(e,null,t.children)}}else this.activateChildRoutes(e,null,n)}}function vC(e){oC(e.value),e.children.forEach(vC)}function wC(e){return\"function\"==typeof e}function MC(e){return e instanceof Cx}class kC{constructor(e){this.segmentGroup=e||null}}class SC{constructor(e){this.urlTree=e}}function LC(e){return new v(t=>t.error(new kC(e)))}function xC(e){return new v(t=>t.error(new SC(e)))}function CC(e){return new v(t=>t.error(new Error(`Only absolute redirects can have named outlets. redirectTo: '${e}'`)))}class TC{constructor(e,t,n,i,s){this.configLoader=t,this.urlSerializer=n,this.urlTree=i,this.config=s,this.allowRedirects=!0,this.ngModule=e.get(it)}apply(){return this.expandSegmentGroup(this.ngModule,this.config,this.urlTree.root,\"primary\").pipe(H(e=>this.createUrlTree(e,this.urlTree.queryParams,this.urlTree.fragment))).pipe(aw(e=>{if(e instanceof SC)return this.allowRedirects=!1,this.match(e.urlTree);if(e instanceof kC)throw this.noMatchError(e);throw e}))}match(e){return this.expandSegmentGroup(this.ngModule,this.config,e.root,\"primary\").pipe(H(t=>this.createUrlTree(t,e.queryParams,e.fragment))).pipe(aw(e=>{if(e instanceof kC)throw this.noMatchError(e);throw e}))}noMatchError(e){return new Error(`Cannot match any routes. URL Segment: '${e.segmentGroup}'`)}createUrlTree(e,t,n){const i=e.segments.length>0?new Tx([],{primary:e}):e;return new Cx(i,t,n)}expandSegmentGroup(e,t,n,i){return 0===n.segments.length&&n.hasChildren()?this.expandChildren(e,t,n).pipe(H(e=>new Tx([],e))):this.expandSegment(e,n,t,n.segments,i,!0)}expandChildren(e,t,n){return function(e,t){if(0===Object.keys(e).length)return xu({});const n=[],i=[],s={};return Sx(e,(e,r)=>{const o=t(r,e).pipe(H(e=>s[r]=e));\"primary\"===r?n.push(o):i.push(o)}),xu.apply(null,n.concat(i)).pipe(Pf(),NL(),H(()=>s))}(n.children,(n,i)=>this.expandSegmentGroup(e,t,i,n))}expandSegment(e,t,n,i,s,r){return xu(...n).pipe(H(o=>this.expandSegmentAgainstRoute(e,t,n,o,i,s,r).pipe(aw(e=>{if(e instanceof kC)return xu(null);throw e}))),Pf(),zL(e=>!!e),aw((e,n)=>{if(e instanceof DL||\"EmptyError\"===e.name){if(this.noLeftoversInUrl(t,i,s))return xu(new Tx([],{}));throw new kC(t)}throw e}))}noLeftoversInUrl(e,t,n){return 0===t.length&&!e.children[n]}expandSegmentAgainstRoute(e,t,n,i,s,r,o){return OC(i)!==r?LC(t):void 0===i.redirectTo?this.matchSegmentAgainstRoute(e,t,i,s):o&&this.allowRedirects?this.expandSegmentAgainstRouteUsingRedirect(e,t,n,i,s,r):LC(t)}expandSegmentAgainstRouteUsingRedirect(e,t,n,i,s,r){return\"**\"===i.path?this.expandWildCardWithParamsAgainstRouteUsingRedirect(e,n,i,r):this.expandRegularSegmentAgainstRouteUsingRedirect(e,t,n,i,s,r)}expandWildCardWithParamsAgainstRouteUsingRedirect(e,t,n,i){const s=this.applyRedirectCommands([],n.redirectTo,{});return n.redirectTo.startsWith(\"/\")?xC(s):this.lineralizeSegments(n,s).pipe(V(n=>{const s=new Tx(n,{});return this.expandSegment(e,s,t,n,i,!1)}))}expandRegularSegmentAgainstRouteUsingRedirect(e,t,n,i,s,r){const{matched:o,consumedSegments:a,lastChild:l,positionalParamSegments:c}=DC(t,i,s);if(!o)return LC(t);const d=this.applyRedirectCommands(a,i.redirectTo,c);return i.redirectTo.startsWith(\"/\")?xC(d):this.lineralizeSegments(i,d).pipe(V(i=>this.expandSegment(e,t,n,i.concat(s.slice(l)),r,!1)))}matchSegmentAgainstRoute(e,t,n,i){if(\"**\"===n.path)return n.loadChildren?this.configLoader.load(e.injector,n).pipe(H(e=>(n._loadedConfig=e,new Tx(i,{})))):xu(new Tx(i,{}));const{matched:s,consumedSegments:r,lastChild:o}=DC(t,n,i);if(!s)return LC(t);const a=i.slice(o);return this.getChildConfig(e,n,i).pipe(V(e=>{const n=e.module,i=e.routes,{segmentGroup:s,slicedSegments:o}=function(e,t,n,i){return n.length>0&&function(e,t,n){return n.some(n=>EC(e,t,n)&&\"primary\"!==OC(n))}(e,n,i)?{segmentGroup:YC(new Tx(t,function(e,t){const n={};n.primary=t;for(const i of e)\"\"===i.path&&\"primary\"!==OC(i)&&(n[OC(i)]=new Tx([],{}));return n}(i,new Tx(n,e.children)))),slicedSegments:[]}:0===n.length&&function(e,t,n){return n.some(n=>EC(e,t,n))}(e,n,i)?{segmentGroup:YC(new Tx(e.segments,function(e,t,n,i){const s={};for(const r of n)EC(e,t,r)&&!i[OC(r)]&&(s[OC(r)]=new Tx([],{}));return Object.assign(Object.assign({},i),s)}(e,n,i,e.children))),slicedSegments:n}:{segmentGroup:e,slicedSegments:n}}(t,r,a,i);return 0===o.length&&s.hasChildren()?this.expandChildren(n,i,s).pipe(H(e=>new Tx(r,e))):0===i.length&&0===o.length?xu(new Tx(r,{})):this.expandSegment(n,s,i,o,\"primary\",!0).pipe(H(e=>new Tx(r.concat(e.segments),e.children)))}))}getChildConfig(e,t,n){return t.children?xu(new fx(t.children,e)):t.loadChildren?void 0!==t._loadedConfig?xu(t._loadedConfig):function(e,t,n){const i=t.canLoad;return i&&0!==i.length?z(i).pipe(H(i=>{const s=e.get(i);let r;if(function(e){return e&&wC(e.canLoad)}(s))r=s.canLoad(t,n);else{if(!wC(s))throw new Error(\"Invalid CanLoad guard\");r=s(t,n)}return Lx(r)})).pipe(Pf(),(s=e=>!0===e,e=>e.lift(new VL(s,void 0,e)))):xu(!0);var s}(e.injector,t,n).pipe(V(n=>n?this.configLoader.load(e.injector,t).pipe(H(e=>(t._loadedConfig=e,e))):function(e){return new v(t=>t.error(mx(`Cannot load children because the guard of the route \"path: '${e.path}'\" returned false`)))}(t))):xu(new fx([],e))}lineralizeSegments(e,t){let n=[],i=t.root;for(;;){if(n=n.concat(i.segments),0===i.numberOfChildren)return xu(n);if(i.numberOfChildren>1||!i.children.primary)return CC(e.redirectTo);i=i.children.primary}}applyRedirectCommands(e,t,n){return this.applyRedirectCreatreUrlTree(t,this.urlSerializer.parse(t),e,n)}applyRedirectCreatreUrlTree(e,t,n,i){const s=this.createSegmentGroup(e,t.root,n,i);return new Cx(s,this.createQueryParams(t.queryParams,this.urlTree.queryParams),t.fragment)}createQueryParams(e,t){const n={};return Sx(e,(e,i)=>{if(\"string\"==typeof e&&e.startsWith(\":\")){const s=e.substring(1);n[i]=t[s]}else n[i]=e}),n}createSegmentGroup(e,t,n,i){const s=this.createSegments(e,t.segments,n,i);let r={};return Sx(t.children,(t,s)=>{r[s]=this.createSegmentGroup(e,t,n,i)}),new Tx(s,r)}createSegments(e,t,n,i){return t.map(t=>t.path.startsWith(\":\")?this.findPosParam(e,t,i):this.findOrReturn(t,n))}findPosParam(e,t,n){const i=n[t.path.substring(1)];if(!i)throw new Error(`Cannot redirect to '${e}'. Cannot find '${t.path}'.`);return i}findOrReturn(e,t){let n=0;for(const i of t){if(i.path===e.path)return t.splice(n),i;n++}return e}}function DC(e,t,n){if(\"\"===t.path)return\"full\"===t.pathMatch&&(e.hasChildren()||n.length>0)?{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}:{matched:!0,consumedSegments:[],lastChild:0,positionalParamSegments:{}};const i=(t.matcher||px)(n,e,t);return i?{matched:!0,consumedSegments:i.consumed,lastChild:i.consumed.length,positionalParamSegments:i.posParams}:{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}}function YC(e){if(1===e.numberOfChildren&&e.children.primary){const t=e.children.primary;return new Tx(e.segments.concat(t.segments),t.children)}return e}function EC(e,t,n){return(!(e.hasChildren()||t.length>0)||\"full\"!==n.pathMatch)&&\"\"===n.path&&void 0!==n.redirectTo}function OC(e){return e.outlet||\"primary\"}class IC{constructor(e){this.path=e,this.route=this.path[this.path.length-1]}}class PC{constructor(e,t){this.component=e,this.route=t}}function AC(e,t,n){const i=e._root;return function e(t,n,i,s,r={canDeactivateChecks:[],canActivateChecks:[]}){const o=Zx(n);return t.children.forEach(t=>{!function(t,n,i,s,r={canDeactivateChecks:[],canActivateChecks:[]}){const o=t.value,a=n?n.value:null,l=i?i.getContext(t.value.outlet):null;if(a&&o.routeConfig===a.routeConfig){const c=function(e,t,n){if(\"function\"==typeof n)return n(e,t);switch(n){case\"pathParamsChange\":return!Yx(e.url,t.url);case\"pathParamsOrQueryParamsChange\":return!Yx(e.url,t.url)||!vx(e.queryParams,t.queryParams);case\"always\":return!0;case\"paramsOrQueryParamsChange\":return!aC(e,t)||!vx(e.queryParams,t.queryParams);case\"paramsChange\":default:return!aC(e,t)}}(a,o,o.routeConfig.runGuardsAndResolvers);c?r.canActivateChecks.push(new IC(s)):(o.data=a.data,o._resolvedData=a._resolvedData),e(t,n,o.component?l?l.children:null:i,s,r),c&&r.canDeactivateChecks.push(new PC(l&&l.outlet&&l.outlet.component||null,a))}else a&&HC(n,l,r),r.canActivateChecks.push(new IC(s)),e(t,null,o.component?l?l.children:null:i,s,r)}(t,o[t.value.outlet],i,s.concat([t.value]),r),delete o[t.value.outlet]}),Sx(o,(e,t)=>HC(e,i.getContext(t),r)),r}(i,t?t._root:null,n,[i.value])}function RC(e,t,n){const i=function(e){if(!e)return null;for(let t=e.parent;t;t=t.parent){const e=t.routeConfig;if(e&&e._loadedConfig)return e._loadedConfig}return null}(t);return(i?i.module.injector:n).get(e)}function HC(e,t,n){const i=Zx(e),s=e.value;Sx(i,(e,i)=>{HC(e,s.component?t?t.children.getContext(i):null:t,n)}),n.canDeactivateChecks.push(new PC(s.component&&t&&t.outlet&&t.outlet.isActivated?t.outlet.component:null,s))}const jC=Symbol(\"INITIAL_VALUE\");function FC(){return Wb(e=>tS(...e.map(e=>e.pipe(cp(1),Rf(jC)))).pipe(UL((e,t)=>{let n=!1;return t.reduce((e,i,s)=>{if(e!==jC)return e;if(i===jC&&(n=!0),!n){if(!1===i)return i;if(s===t.length-1||MC(i))return i}return e},e)},jC),Tu(e=>e!==jC),H(e=>MC(e)?e:!0===e),cp(1)))}function NC(e,t){return null!==e&&t&&t(new ax(e)),xu(!0)}function zC(e,t){return null!==e&&t&&t(new rx(e)),xu(!0)}function VC(e,t,n){const i=t.routeConfig?t.routeConfig.canActivate:null;return i&&0!==i.length?xu(i.map(i=>qv(()=>{const s=RC(i,t,n);let r;if(function(e){return e&&wC(e.canActivate)}(s))r=Lx(s.canActivate(t,e));else{if(!wC(s))throw new Error(\"Invalid CanActivate guard\");r=Lx(s(t,e))}return r.pipe(zL())}))).pipe(FC()):xu(!0)}function WC(e,t,n){const i=t[t.length-1],s=t.slice(0,t.length-1).reverse().map(e=>function(e){const t=e.routeConfig?e.routeConfig.canActivateChild:null;return t&&0!==t.length?{node:e,guards:t}:null}(e)).filter(e=>null!==e).map(t=>qv(()=>xu(t.guards.map(s=>{const r=RC(s,t.node,n);let o;if(function(e){return e&&wC(e.canActivateChild)}(r))o=Lx(r.canActivateChild(i,e));else{if(!wC(r))throw new Error(\"Invalid CanActivateChild guard\");o=Lx(r(i,e))}return o.pipe(zL())})).pipe(FC())));return xu(s).pipe(FC())}class UC{}class $C{constructor(e,t,n,i,s,r){this.rootComponentType=e,this.config=t,this.urlTree=n,this.url=i,this.paramsInheritanceStrategy=s,this.relativeLinkResolution=r}recognize(){try{const e=GC(this.urlTree.root,[],[],this.config,this.relativeLinkResolution).segmentGroup,t=this.processSegmentGroup(this.config,e,\"primary\"),n=new nC([],Object.freeze({}),Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,{},\"primary\",this.rootComponentType,null,this.urlTree.root,-1,{}),i=new Kx(n,t),s=new iC(this.url,i);return this.inheritParamsAndData(s._root),xu(s)}catch(e){return new v(t=>t.error(e))}}inheritParamsAndData(e){const t=e.value,n=tC(t,this.paramsInheritanceStrategy);t.params=Object.freeze(n.params),t.data=Object.freeze(n.data),e.children.forEach(e=>this.inheritParamsAndData(e))}processSegmentGroup(e,t,n){return 0===t.segments.length&&t.hasChildren()?this.processChildren(e,t):this.processSegment(e,t,t.segments,n)}processChildren(e,t){const n=Ex(t,(t,n)=>this.processSegmentGroup(e,t,n));return function(e){const t={};e.forEach(e=>{const n=t[e.value.outlet];if(n){const t=n.url.map(e=>e.toString()).join(\"/\"),i=e.value.url.map(e=>e.toString()).join(\"/\");throw new Error(`Two segments cannot have the same outlet name: '${t}' and '${i}'.`)}t[e.value.outlet]=e.value})}(n),n.sort((e,t)=>\"primary\"===e.value.outlet?-1:\"primary\"===t.value.outlet?1:e.value.outlet.localeCompare(t.value.outlet)),n}processSegment(e,t,n,i){for(const r of e)try{return this.processSegmentAgainstRoute(r,t,n,i)}catch(s){if(!(s instanceof UC))throw s}if(this.noLeftoversInUrl(t,n,i))return[];throw new UC}noLeftoversInUrl(e,t,n){return 0===t.length&&!e.children[n]}processSegmentAgainstRoute(e,t,n,i){if(e.redirectTo)throw new UC;if((e.outlet||\"primary\")!==i)throw new UC;let s,r=[],o=[];if(\"**\"===e.path){const r=n.length>0?kx(n).parameters:{};s=new nC(n,r,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,ZC(e),i,e.component,e,BC(t),qC(t)+n.length,QC(e))}else{const a=function(e,t,n){if(\"\"===t.path){if(\"full\"===t.pathMatch&&(e.hasChildren()||n.length>0))throw new UC;return{consumedSegments:[],lastChild:0,parameters:{}}}const i=(t.matcher||px)(n,e,t);if(!i)throw new UC;const s={};Sx(i.posParams,(e,t)=>{s[t]=e.path});const r=i.consumed.length>0?Object.assign(Object.assign({},s),i.consumed[i.consumed.length-1].parameters):s;return{consumedSegments:i.consumed,lastChild:i.consumed.length,parameters:r}}(t,e,n);r=a.consumedSegments,o=n.slice(a.lastChild),s=new nC(r,a.parameters,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,ZC(e),i,e.component,e,BC(t),qC(t)+r.length,QC(e))}const a=function(e){return e.children?e.children:e.loadChildren?e._loadedConfig.routes:[]}(e),{segmentGroup:l,slicedSegments:c}=GC(t,r,o,a,this.relativeLinkResolution);if(0===c.length&&l.hasChildren()){const e=this.processChildren(a,l);return[new Kx(s,e)]}if(0===a.length&&0===c.length)return[new Kx(s,[])];const d=this.processSegment(a,l,c,\"primary\");return[new Kx(s,d)]}}function BC(e){let t=e;for(;t._sourceSegment;)t=t._sourceSegment;return t}function qC(e){let t=e,n=t._segmentIndexShift?t._segmentIndexShift:0;for(;t._sourceSegment;)t=t._sourceSegment,n+=t._segmentIndexShift?t._segmentIndexShift:0;return n-1}function GC(e,t,n,i,s){if(n.length>0&&function(e,t,n){return n.some(n=>JC(e,t,n)&&\"primary\"!==KC(n))}(e,n,i)){const s=new Tx(t,function(e,t,n,i){const s={};s.primary=i,i._sourceSegment=e,i._segmentIndexShift=t.length;for(const r of n)if(\"\"===r.path&&\"primary\"!==KC(r)){const n=new Tx([],{});n._sourceSegment=e,n._segmentIndexShift=t.length,s[KC(r)]=n}return s}(e,t,i,new Tx(n,e.children)));return s._sourceSegment=e,s._segmentIndexShift=t.length,{segmentGroup:s,slicedSegments:[]}}if(0===n.length&&function(e,t,n){return n.some(n=>JC(e,t,n))}(e,n,i)){const r=new Tx(e.segments,function(e,t,n,i,s,r){const o={};for(const a of i)if(JC(e,n,a)&&!s[KC(a)]){const n=new Tx([],{});n._sourceSegment=e,n._segmentIndexShift=\"legacy\"===r?e.segments.length:t.length,o[KC(a)]=n}return Object.assign(Object.assign({},s),o)}(e,t,n,i,e.children,s));return r._sourceSegment=e,r._segmentIndexShift=t.length,{segmentGroup:r,slicedSegments:n}}const r=new Tx(e.segments,e.children);return r._sourceSegment=e,r._segmentIndexShift=t.length,{segmentGroup:r,slicedSegments:n}}function JC(e,t,n){return(!(e.hasChildren()||t.length>0)||\"full\"!==n.pathMatch)&&\"\"===n.path&&void 0===n.redirectTo}function KC(e){return e.outlet||\"primary\"}function ZC(e){return e.data||{}}function QC(e){return e.resolve||{}}function XC(e,t,n,i){const s=RC(e,t,i);return Lx(s.resolve?s.resolve(t,n):s(t,n))}function eT(e){return function(t){return t.pipe(Wb(t=>{const n=e(t);return n?z(n).pipe(H(()=>t)):z([t])}))}}class tT{shouldDetach(e){return!1}store(e,t){}shouldAttach(e){return!1}retrieve(e){return null}shouldReuseRoute(e,t){return e.routeConfig===t.routeConfig}}const nT=new Ve(\"ROUTES\");class iT{constructor(e,t,n,i){this.loader=e,this.compiler=t,this.onLoadStartListener=n,this.onLoadEndListener=i}load(e,t){return this.onLoadStartListener&&this.onLoadStartListener(t),this.loadModuleFactory(t.loadChildren).pipe(H(n=>{this.onLoadEndListener&&this.onLoadEndListener(t);const i=n.create(e);return new fx(Mx(i.injector.get(nT)).map(bx),i)}))}loadModuleFactory(e){return\"string\"==typeof e?z(this.loader.load(e)):Lx(e()).pipe(V(e=>e instanceof st?xu(e):z(this.compiler.compileModuleAsync(e))))}}class sT{shouldProcessUrl(e){return!0}extract(e){return e}merge(e,t){return e}}function rT(e){throw e}function oT(e,t,n){return t.parse(\"/\")}function aT(e,t){return xu(null)}let lT=(()=>{class e{constructor(e,t,n,i,s,r,o,a){this.rootComponentType=e,this.urlSerializer=t,this.rootContexts=n,this.location=i,this.config=a,this.lastSuccessfulNavigation=null,this.currentNavigation=null,this.navigationId=0,this.isNgZoneEnabled=!1,this.events=new L,this.errorHandler=rT,this.malformedUriErrorHandler=oT,this.navigated=!1,this.lastSuccessfulId=-1,this.hooks={beforePreactivation:aT,afterPreactivation:aT},this.urlHandlingStrategy=new sT,this.routeReuseStrategy=new tT,this.onSameUrlNavigation=\"ignore\",this.paramsInheritanceStrategy=\"emptyOnly\",this.urlUpdateStrategy=\"deferred\",this.relativeLinkResolution=\"legacy\",this.ngModule=s.get(it),this.console=s.get(Gc);const l=s.get(ld);this.isNgZoneEnabled=l instanceof ld,this.resetConfig(a),this.currentUrlTree=new Cx(new Tx([],{}),{},null),this.rawUrlTree=this.currentUrlTree,this.browserUrlTree=this.currentUrlTree,this.configLoader=new iT(r,o,e=>this.triggerEvent(new ix(e)),e=>this.triggerEvent(new sx(e))),this.routerState=Xx(this.currentUrlTree,this.rootComponentType),this.transitions=new hS({id:0,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,extractedUrl:this.urlHandlingStrategy.extract(this.currentUrlTree),urlAfterRedirects:this.urlHandlingStrategy.extract(this.currentUrlTree),rawUrl:this.currentUrlTree,extras:{},resolve:null,reject:null,promise:Promise.resolve(!0),source:\"imperative\",restoredState:null,currentSnapshot:this.routerState.snapshot,targetSnapshot:null,currentRouterState:this.routerState,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.navigations=this.setupNavigations(this.transitions),this.processNavigations()}setupNavigations(e){const t=this.events;return e.pipe(Tu(e=>0!==e.id),H(e=>Object.assign(Object.assign({},e),{extractedUrl:this.urlHandlingStrategy.extract(e.rawUrl)})),Wb(e=>{let n=!1,i=!1;return xu(e).pipe(Gm(e=>{this.currentNavigation={id:e.id,initialUrl:e.currentRawUrl,extractedUrl:e.extractedUrl,trigger:e.source,extras:e.extras,previousNavigation:this.lastSuccessfulNavigation?Object.assign(Object.assign({},this.lastSuccessfulNavigation),{previousNavigation:null}):null}}),Wb(e=>{const n=!this.navigated||e.extractedUrl.toString()!==this.browserUrlTree.toString();if((\"reload\"===this.onSameUrlNavigation||n)&&this.urlHandlingStrategy.shouldProcessUrl(e.rawUrl))return xu(e).pipe(Wb(e=>{const n=this.transitions.getValue();return t.next(new GL(e.id,this.serializeUrl(e.extractedUrl),e.source,e.restoredState)),n!==this.transitions.getValue()?ap:[e]}),Wb(e=>Promise.resolve(e)),(i=this.ngModule.injector,s=this.configLoader,r=this.urlSerializer,o=this.config,function(e){return e.pipe(Wb(e=>function(e,t,n,i,s){return new TC(e,t,n,i,s).apply()}(i,s,r,e.extractedUrl,o).pipe(H(t=>Object.assign(Object.assign({},e),{urlAfterRedirects:t})))))}),Gm(e=>{this.currentNavigation=Object.assign(Object.assign({},this.currentNavigation),{finalUrl:e.urlAfterRedirects})}),function(e,t,n,i,s){return function(r){return r.pipe(V(r=>function(e,t,n,i,s=\"emptyOnly\",r=\"legacy\"){return new $C(e,t,n,i,s,r).recognize()}(e,t,r.urlAfterRedirects,n(r.urlAfterRedirects),i,s).pipe(H(e=>Object.assign(Object.assign({},r),{targetSnapshot:e})))))}}(this.rootComponentType,this.config,e=>this.serializeUrl(e),this.paramsInheritanceStrategy,this.relativeLinkResolution),Gm(e=>{\"eager\"===this.urlUpdateStrategy&&(e.extras.skipLocationChange||this.setBrowserUrl(e.urlAfterRedirects,!!e.extras.replaceUrl,e.id,e.extras.state),this.browserUrlTree=e.urlAfterRedirects)}),Gm(e=>{const n=new QL(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);t.next(n)}));var i,s,r,o;if(n&&this.rawUrlTree&&this.urlHandlingStrategy.shouldProcessUrl(this.rawUrlTree)){const{id:n,extractedUrl:i,source:s,restoredState:r,extras:o}=e,a=new GL(n,this.serializeUrl(i),s,r);t.next(a);const l=Xx(i,this.rootComponentType).snapshot;return xu(Object.assign(Object.assign({},e),{targetSnapshot:l,urlAfterRedirects:i,extras:Object.assign(Object.assign({},o),{skipLocationChange:!1,replaceUrl:!1})}))}return this.rawUrlTree=e.rawUrl,this.browserUrlTree=e.urlAfterRedirects,e.resolve(null),ap}),eT(e=>{const{targetSnapshot:t,id:n,extractedUrl:i,rawUrl:s,extras:{skipLocationChange:r,replaceUrl:o}}=e;return this.hooks.beforePreactivation(t,{navigationId:n,appliedUrlTree:i,rawUrlTree:s,skipLocationChange:!!r,replaceUrl:!!o})}),Gm(e=>{const t=new XL(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);this.triggerEvent(t)}),H(e=>Object.assign(Object.assign({},e),{guards:AC(e.targetSnapshot,e.currentSnapshot,this.rootContexts)})),function(e,t){return function(n){return n.pipe(V(n=>{const{targetSnapshot:i,currentSnapshot:s,guards:{canActivateChecks:r,canDeactivateChecks:o}}=n;return 0===o.length&&0===r.length?xu(Object.assign(Object.assign({},n),{guardsResult:!0})):function(e,t,n,i){return z(e).pipe(V(e=>function(e,t,n,i,s){const r=t&&t.routeConfig?t.routeConfig.canDeactivate:null;return r&&0!==r.length?xu(r.map(r=>{const o=RC(r,t,s);let a;if(function(e){return e&&wC(e.canDeactivate)}(o))a=Lx(o.canDeactivate(e,t,n,i));else{if(!wC(o))throw new Error(\"Invalid CanDeactivate guard\");a=Lx(o(e,t,n,i))}return a.pipe(zL())})).pipe(FC()):xu(!0)}(e.component,e.route,n,t,i)),zL(e=>!0!==e,!0))}(o,i,s,e).pipe(V(n=>n&&\"boolean\"==typeof n?function(e,t,n,i){return z(t).pipe(Cu(t=>z([zC(t.route.parent,i),NC(t.route,i),WC(e,t.path,n),VC(e,t.route,n)]).pipe(Pf(),zL(e=>!0!==e,!0))),zL(e=>!0!==e,!0))}(i,r,e,t):xu(n)),H(e=>Object.assign(Object.assign({},n),{guardsResult:e})))}))}}(this.ngModule.injector,e=>this.triggerEvent(e)),Gm(e=>{if(MC(e.guardsResult)){const t=mx(`Redirecting to \"${this.serializeUrl(e.guardsResult)}\"`);throw t.url=e.guardsResult,t}}),Gm(e=>{const t=new ex(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot,!!e.guardsResult);this.triggerEvent(t)}),Tu(e=>{if(!e.guardsResult){this.resetUrlToCurrentUrlTree();const n=new KL(e.id,this.serializeUrl(e.extractedUrl),\"\");return t.next(n),e.resolve(!1),!1}return!0}),eT(e=>{if(e.guards.canActivateChecks.length)return xu(e).pipe(Gm(e=>{const t=new tx(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);this.triggerEvent(t)}),(t=this.paramsInheritanceStrategy,n=this.ngModule.injector,function(e){return e.pipe(V(e=>{const{targetSnapshot:i,guards:{canActivateChecks:s}}=e;return s.length?z(s).pipe(Cu(e=>function(e,t,n,i){return function(e,t,n,i){const s=Object.keys(e);if(0===s.length)return xu({});if(1===s.length){const r=s[0];return XC(e[r],t,n,i).pipe(H(e=>({[r]:e})))}const r={};return z(s).pipe(V(s=>XC(e[s],t,n,i).pipe(H(e=>(r[s]=e,e))))).pipe(NL(),H(()=>r))}(e._resolve,e,t,i).pipe(H(t=>(e._resolvedData=t,e.data=Object.assign(Object.assign({},e.data),tC(e,n).resolve),null)))}(e.route,i,t,n)),function(e,t){return arguments.length>=2?function(n){return y(UL(e,t),YL(1),HL(t))(n)}:function(t){return y(UL((t,n,i)=>e(t,n,i+1)),YL(1))(t)}}((e,t)=>e),H(t=>e)):xu(e)}))}),Gm(e=>{const t=new nx(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);this.triggerEvent(t)}));var t,n}),eT(e=>{const{targetSnapshot:t,id:n,extractedUrl:i,rawUrl:s,extras:{skipLocationChange:r,replaceUrl:o}}=e;return this.hooks.afterPreactivation(t,{navigationId:n,appliedUrlTree:i,rawUrlTree:s,skipLocationChange:!!r,replaceUrl:!!o})}),H(e=>{const t=function(e,t,n){const i=function e(t,n,i){if(i&&t.shouldReuseRoute(n.value,i.value.snapshot)){const s=i.value;s._futureSnapshot=n.value;const r=function(t,n,i){return n.children.map(n=>{for(const s of i.children)if(t.shouldReuseRoute(s.value.snapshot,n.value))return e(t,n,s);return e(t,n)})}(t,n,i);return new Kx(s,r)}{const i=t.retrieve(n.value);if(i){const e=i.route;return function e(t,n){if(t.value.routeConfig!==n.value.routeConfig)throw new Error(\"Cannot reattach ActivatedRouteSnapshot created from a different route\");if(t.children.length!==n.children.length)throw new Error(\"Cannot reattach ActivatedRouteSnapshot with a different number of children\");n.value._futureSnapshot=t.value;for(let i=0;ie(t,n));return new Kx(i,r)}}var s}(e,t._root,n?n._root:void 0);return new Qx(i,t)}(this.routeReuseStrategy,e.targetSnapshot,e.currentRouterState);return Object.assign(Object.assign({},e),{targetRouterState:t})}),Gm(e=>{this.currentUrlTree=e.urlAfterRedirects,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,e.rawUrl),this.routerState=e.targetRouterState,\"deferred\"===this.urlUpdateStrategy&&(e.extras.skipLocationChange||this.setBrowserUrl(this.rawUrlTree,!!e.extras.replaceUrl,e.id,e.extras.state),this.browserUrlTree=e.urlAfterRedirects)}),(s=this.rootContexts,r=this.routeReuseStrategy,o=e=>this.triggerEvent(e),H(e=>(new bC(r,e.targetRouterState,e.currentRouterState,o).activate(s),e))),Gm({next(){n=!0},complete(){n=!0}}),dw(()=>{if(!n&&!i){this.resetUrlToCurrentUrlTree();const n=new KL(e.id,this.serializeUrl(e.extractedUrl),`Navigation ID ${e.id} is not equal to the current navigation id ${this.navigationId}`);t.next(n),e.resolve(!1)}this.currentNavigation=null}),aw(n=>{if(i=!0,(s=n)&&s.ngNavigationCancelingError){const i=MC(n.url);i||(this.navigated=!0,this.resetStateAndUrl(e.currentRouterState,e.currentUrlTree,e.rawUrl));const s=new KL(e.id,this.serializeUrl(e.extractedUrl),n.message);t.next(s),i?setTimeout(()=>{const t=this.urlHandlingStrategy.merge(n.url,this.rawUrlTree);return this.scheduleNavigation(t,\"imperative\",null,{skipLocationChange:e.extras.skipLocationChange,replaceUrl:\"eager\"===this.urlUpdateStrategy},{resolve:e.resolve,reject:e.reject,promise:e.promise})},0):e.resolve(!1)}else{this.resetStateAndUrl(e.currentRouterState,e.currentUrlTree,e.rawUrl);const i=new ZL(e.id,this.serializeUrl(e.extractedUrl),n);t.next(i);try{e.resolve(this.errorHandler(n))}catch(r){e.reject(r)}}var s;return ap}));var s,r,o}))}resetRootComponentType(e){this.rootComponentType=e,this.routerState.root.component=this.rootComponentType}getTransition(){const e=this.transitions.value;return e.urlAfterRedirects=this.browserUrlTree,e}setTransition(e){this.transitions.next(Object.assign(Object.assign({},this.getTransition()),e))}initialNavigation(){this.setUpLocationChangeListener(),0===this.navigationId&&this.navigateByUrl(this.location.path(!0),{replaceUrl:!0})}setUpLocationChangeListener(){this.locationSubscription||(this.locationSubscription=this.location.subscribe(e=>{let t=this.parseUrl(e.url);const n=\"popstate\"===e.type?\"popstate\":\"hashchange\",i=e.state&&e.state.navigationId?e.state:null;setTimeout(()=>{this.scheduleNavigation(t,n,i,{replaceUrl:!0})},0)}))}get url(){return this.serializeUrl(this.currentUrlTree)}getCurrentNavigation(){return this.currentNavigation}triggerEvent(e){this.events.next(e)}resetConfig(e){_x(e),this.config=e.map(bx),this.navigated=!1,this.lastSuccessfulId=-1}ngOnDestroy(){this.dispose()}dispose(){this.locationSubscription&&(this.locationSubscription.unsubscribe(),this.locationSubscription=null)}createUrlTree(e,t={}){const{relativeTo:n,queryParams:i,fragment:s,preserveQueryParams:r,queryParamsHandling:o,preserveFragment:a}=t;Si()&&r&&console&&console.warn&&console.warn(\"preserveQueryParams is deprecated, use queryParamsHandling instead.\");const l=n||this.routerState.root,c=a?this.currentUrlTree.fragment:s;let d=null;if(o)switch(o){case\"merge\":d=Object.assign(Object.assign({},this.currentUrlTree.queryParams),i);break;case\"preserve\":d=this.currentUrlTree.queryParams;break;default:d=i||null}else d=r?this.currentUrlTree.queryParams:i||null;return null!==d&&(d=this.removeEmptyProps(d)),function(e,t,n,i,s){if(0===n.length)return cC(t.root,t.root,t,i,s);const r=function(e){if(\"string\"==typeof e[0]&&1===e.length&&\"/\"===e[0])return new dC(!0,0,e);let t=0,n=!1;const i=e.reduce((e,i,s)=>{if(\"object\"==typeof i&&null!=i){if(i.outlets){const t={};return Sx(i.outlets,(e,n)=>{t[n]=\"string\"==typeof e?e.split(\"/\"):e}),[...e,{outlets:t}]}if(i.segmentPath)return[...e,i.segmentPath]}return\"string\"!=typeof i?[...e,i]:0===s?(i.split(\"/\").forEach((i,s)=>{0==s&&\".\"===i||(0==s&&\"\"===i?n=!0:\"..\"===i?t++:\"\"!=i&&e.push(i))}),e):[...e,i]},[]);return new dC(n,t,i)}(n);if(r.toRoot())return cC(t.root,new Tx([],{}),t,i,s);const o=function(e,t,n){if(e.isAbsolute)return new uC(t.root,!0,0);if(-1===n.snapshot._lastPathIndex)return new uC(n.snapshot._urlSegment,!0,0);const i=lC(e.commands[0])?0:1;return function(e,t,n){let i=e,s=t,r=n;for(;r>s;){if(r-=s,i=i.parent,!i)throw new Error(\"Invalid number of '../'\");s=i.segments.length}return new uC(i,!1,s-r)}(n.snapshot._urlSegment,n.snapshot._lastPathIndex+i,e.numberOfDoubleDots)}(r,t,e),a=o.processChildren?pC(o.segmentGroup,o.index,r.commands):mC(o.segmentGroup,o.index,r.commands);return cC(o.segmentGroup,a,t,i,s)}(l,this.currentUrlTree,e,d,c)}navigateByUrl(e,t={skipLocationChange:!1}){Si()&&this.isNgZoneEnabled&&!ld.isInAngularZone()&&this.console.warn(\"Navigation triggered outside Angular zone, did you forget to call 'ngZone.run()'?\");const n=MC(e)?e:this.parseUrl(e),i=this.urlHandlingStrategy.merge(n,this.rawUrlTree);return this.scheduleNavigation(i,\"imperative\",null,t)}navigate(e,t={skipLocationChange:!1}){return function(e){for(let t=0;t{const i=e[n];return null!=i&&(t[n]=i),t},{})}processNavigations(){this.navigations.subscribe(e=>{this.navigated=!0,this.lastSuccessfulId=e.id,this.events.next(new JL(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(this.currentUrlTree))),this.lastSuccessfulNavigation=this.currentNavigation,this.currentNavigation=null,e.resolve(!0)},e=>{this.console.warn(\"Unhandled Navigation Error: \")})}scheduleNavigation(e,t,n,i,s){const r=this.getTransition();if(r&&\"imperative\"!==t&&\"imperative\"===r.source&&r.rawUrl.toString()===e.toString())return Promise.resolve(!0);if(r&&\"hashchange\"==t&&\"popstate\"===r.source&&r.rawUrl.toString()===e.toString())return Promise.resolve(!0);if(r&&\"popstate\"==t&&\"hashchange\"===r.source&&r.rawUrl.toString()===e.toString())return Promise.resolve(!0);let o,a,l;s?(o=s.resolve,a=s.reject,l=s.promise):l=new Promise((e,t)=>{o=e,a=t});const c=++this.navigationId;return this.setTransition({id:c,source:t,restoredState:n,currentUrlTree:this.currentUrlTree,currentRawUrl:this.rawUrlTree,rawUrl:e,extras:i,resolve:o,reject:a,promise:l,currentSnapshot:this.routerState.snapshot,currentRouterState:this.routerState}),l.catch(e=>Promise.reject(e))}setBrowserUrl(e,t,n,i){const s=this.urlSerializer.serialize(e);i=i||{},this.location.isCurrentPathEqualTo(s)||t?this.location.replaceState(s,\"\",Object.assign(Object.assign({},i),{navigationId:n})):this.location.go(s,\"\",Object.assign(Object.assign({},i),{navigationId:n}))}resetStateAndUrl(e,t,n){this.routerState=e,this.currentUrlTree=t,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,n),this.resetUrlToCurrentUrlTree()}resetUrlToCurrentUrlTree(){this.location.replaceState(this.urlSerializer.serialize(this.rawUrlTree),\"\",{navigationId:this.lastSuccessfulId})}}return e.\\u0275fac=function(e){Io()},e.\\u0275dir=St({type:e}),e})(),cT=(()=>{class e{constructor(e,t,n){this.router=e,this.route=t,this.locationStrategy=n,this.commands=[],this.subscription=e.events.subscribe(e=>{e instanceof JL&&this.updateTargetUrlAndHref()})}set routerLink(e){this.commands=null!=e?Array.isArray(e)?e:[e]:[]}set preserveQueryParams(e){Si()&&console&&console.warn&&console.warn(\"preserveQueryParams is deprecated, use queryParamsHandling instead.\"),this.preserve=e}ngOnChanges(e){this.updateTargetUrlAndHref()}ngOnDestroy(){this.subscription.unsubscribe()}onClick(e,t,n,i){if(0!==e||t||n||i)return!0;if(\"string\"==typeof this.target&&\"_self\"!=this.target)return!0;const s={skipLocationChange:dT(this.skipLocationChange),replaceUrl:dT(this.replaceUrl),state:this.state};return this.router.navigateByUrl(this.urlTree,s),!1}updateTargetUrlAndHref(){this.href=this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.urlTree))}get urlTree(){return this.router.createUrlTree(this.commands,{relativeTo:this.route,queryParams:this.queryParams,fragment:this.fragment,preserveQueryParams:dT(this.preserve),queryParamsHandling:this.queryParamsHandling,preserveFragment:dT(this.preserveFragment)})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(lT),Eo(eC),Eo(Kd))},e.\\u0275dir=St({type:e,selectors:[[\"a\",\"routerLink\",\"\"],[\"area\",\"routerLink\",\"\"]],hostVars:2,hostBindings:function(e,t){1&e&&Uo(\"click\",(function(e){return t.onClick(e.button,e.ctrlKey,e.metaKey,e.shiftKey)})),2&e&&(Ca(\"href\",t.href,es),Co(\"target\",t.target))},inputs:{routerLink:\"routerLink\",preserveQueryParams:\"preserveQueryParams\",target:\"target\",queryParams:\"queryParams\",fragment:\"fragment\",queryParamsHandling:\"queryParamsHandling\",preserveFragment:\"preserveFragment\",skipLocationChange:\"skipLocationChange\",replaceUrl:\"replaceUrl\",state:\"state\"},features:[Ra]}),e})();function dT(e){return\"\"===e||!!e}class uT{constructor(){this.outlet=null,this.route=null,this.resolver=null,this.children=new hT,this.attachRef=null}}class hT{constructor(){this.contexts=new Map}onChildOutletCreated(e,t){const n=this.getOrCreateContext(e);n.outlet=t,this.contexts.set(e,n)}onChildOutletDestroyed(e){const t=this.getContext(e);t&&(t.outlet=null)}onOutletDeactivated(){const e=this.contexts;return this.contexts=new Map,e}onOutletReAttached(e){this.contexts=e}getOrCreateContext(e){let t=this.getContext(e);return t||(t=new uT,this.contexts.set(e,t)),t}getContext(e){return this.contexts.get(e)||null}}let mT=(()=>{class e{constructor(e,t,n,i,s){this.parentContexts=e,this.location=t,this.resolver=n,this.changeDetector=s,this.activated=null,this._activatedRoute=null,this.activateEvents=new yc,this.deactivateEvents=new yc,this.name=i||\"primary\",e.onChildOutletCreated(this.name,this)}ngOnDestroy(){this.parentContexts.onChildOutletDestroyed(this.name)}ngOnInit(){if(!this.activated){const e=this.parentContexts.getContext(this.name);e&&e.route&&(e.attachRef?this.attach(e.attachRef,e.route):this.activateWith(e.route,e.resolver||null))}}get isActivated(){return!!this.activated}get component(){if(!this.activated)throw new Error(\"Outlet is not activated\");return this.activated.instance}get activatedRoute(){if(!this.activated)throw new Error(\"Outlet is not activated\");return this._activatedRoute}get activatedRouteData(){return this._activatedRoute?this._activatedRoute.snapshot.data:{}}detach(){if(!this.activated)throw new Error(\"Outlet is not activated\");this.location.detach();const e=this.activated;return this.activated=null,this._activatedRoute=null,e}attach(e,t){this.activated=e,this._activatedRoute=t,this.location.insert(e.hostView)}deactivate(){if(this.activated){const e=this.component;this.activated.destroy(),this.activated=null,this._activatedRoute=null,this.deactivateEvents.emit(e)}}activateWith(e,t){if(this.isActivated)throw new Error(\"Cannot activate an already activated outlet\");this._activatedRoute=e;const n=(t=t||this.resolver).resolveComponentFactory(e._futureSnapshot.routeConfig.component),i=this.parentContexts.getOrCreateContext(this.name).children,s=new pT(e,i,this.location.injector);this.activated=this.location.createComponent(n,this.location.length,s),this.changeDetector.markForCheck(),this.activateEvents.emit(this.activated.instance)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(hT),Eo(Ml),Eo(Ja),Oo(\"name\"),Eo(Qr))},e.\\u0275dir=St({type:e,selectors:[[\"router-outlet\"]],outputs:{activateEvents:\"activate\",deactivateEvents:\"deactivate\"},exportAs:[\"outlet\"]}),e})();class pT{constructor(e,t,n){this.route=e,this.childContexts=t,this.parent=n}get(e,t){return e===eC?this.route:e===hT?this.childContexts:this.parent.get(e,t)}}class fT{}class _T{preload(e,t){return xu(null)}}let gT=(()=>{class e{constructor(e,t,n,i,s){this.router=e,this.injector=i,this.preloadingStrategy=s,this.loader=new iT(t,n,t=>e.triggerEvent(new ix(t)),t=>e.triggerEvent(new sx(t)))}setUpPreloading(){this.subscription=this.router.events.pipe(Tu(e=>e instanceof JL),Cu(()=>this.preload())).subscribe(()=>{})}preload(){const e=this.injector.get(it);return this.processRoutes(e,this.router.config)}ngOnDestroy(){this.subscription.unsubscribe()}processRoutes(e,t){const n=[];for(const i of t)if(i.loadChildren&&!i.canLoad&&i._loadedConfig){const e=i._loadedConfig;n.push(this.processRoutes(e.module,e.routes))}else i.loadChildren&&!i.canLoad?n.push(this.preloadConfig(e,i)):i.children&&n.push(this.processRoutes(e,i.children));return z(n).pipe(B(),H(e=>{}))}preloadConfig(e,t){return this.preloadingStrategy.preload(t,()=>this.loader.load(e.injector,t).pipe(V(e=>(t._loadedConfig=e,this.processRoutes(e.module,e.routes)))))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(lT),Qe(Yd),Qe(sd),Qe(fo),Qe(fT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),yT=(()=>{class e{constructor(e,t,n={}){this.router=e,this.viewportScroller=t,this.options=n,this.lastId=0,this.lastSource=\"imperative\",this.restoredId=0,this.store={},n.scrollPositionRestoration=n.scrollPositionRestoration||\"disabled\",n.anchorScrolling=n.anchorScrolling||\"disabled\"}init(){\"disabled\"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration(\"manual\"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}createScrollEvents(){return this.router.events.subscribe(e=>{e instanceof GL?(this.store[this.lastId]=this.viewportScroller.getScrollPosition(),this.lastSource=e.navigationTrigger,this.restoredId=e.restoredState?e.restoredState.navigationId:0):e instanceof JL&&(this.lastId=e.id,this.scheduleScrollEvent(e,this.router.parseUrl(e.urlAfterRedirects).fragment))})}consumeScrollEvents(){return this.router.events.subscribe(e=>{e instanceof cx&&(e.position?\"top\"===this.options.scrollPositionRestoration?this.viewportScroller.scrollToPosition([0,0]):\"enabled\"===this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition(e.position):e.anchor&&\"enabled\"===this.options.anchorScrolling?this.viewportScroller.scrollToAnchor(e.anchor):\"disabled\"!==this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition([0,0]))})}scheduleScrollEvent(e,t){this.router.triggerEvent(new cx(e,\"popstate\"===this.lastSource?this.store[this.restoredId]:null,t))}ngOnDestroy(){this.routerEventsSubscription&&this.routerEventsSubscription.unsubscribe(),this.scrollEventsSubscription&&this.scrollEventsSubscription.unsubscribe()}}return e.\\u0275fac=function(e){Io()},e.\\u0275dir=St({type:e}),e})();const bT=new Ve(\"ROUTER_CONFIGURATION\"),vT=new Ve(\"ROUTER_FORROOT_GUARD\"),wT=[tu,{provide:Ox,useClass:Ix},{provide:lT,useFactory:function(e,t,n,i,s,r,o,a={},l,c){const d=new lT(null,e,t,n,i,s,r,Mx(o));if(l&&(d.urlHandlingStrategy=l),c&&(d.routeReuseStrategy=c),a.errorHandler&&(d.errorHandler=a.errorHandler),a.malformedUriErrorHandler&&(d.malformedUriErrorHandler=a.malformedUriErrorHandler),a.enableTracing){const e=Fd();d.events.subscribe(t=>{e.logGroup(`Router Event: ${t.constructor.name}`),e.log(t.toString()),e.log(t),e.logGroupEnd()})}return a.onSameUrlNavigation&&(d.onSameUrlNavigation=a.onSameUrlNavigation),a.paramsInheritanceStrategy&&(d.paramsInheritanceStrategy=a.paramsInheritanceStrategy),a.urlUpdateStrategy&&(d.urlUpdateStrategy=a.urlUpdateStrategy),a.relativeLinkResolution&&(d.relativeLinkResolution=a.relativeLinkResolution),d},deps:[Ox,hT,tu,fo,Yd,sd,nT,bT,[class{},new le],[class{},new le]]},hT,{provide:eC,useFactory:function(e){return e.routerState.root},deps:[lT]},{provide:Yd,useClass:Id},gT,_T,class{preload(e,t){return t().pipe(aw(()=>xu(null)))}},{provide:bT,useValue:{enableTracing:!1}}];function MT(){return new kd(\"Router\",lT)}let kT=(()=>{class e{constructor(e,t){}static forRoot(t,n){return{ngModule:e,providers:[wT,CT(t),{provide:vT,useFactory:xT,deps:[[lT,new le,new de]]},{provide:bT,useValue:n||{}},{provide:Kd,useFactory:LT,deps:[zd,[new ae(Qd),new le],bT]},{provide:yT,useFactory:ST,deps:[lT,Su,bT]},{provide:fT,useExisting:n&&n.preloadingStrategy?n.preloadingStrategy:_T},{provide:kd,multi:!0,useFactory:MT},[TT,{provide:Nc,multi:!0,useFactory:DT,deps:[TT]},{provide:ET,useFactory:YT,deps:[TT]},{provide:qc,multi:!0,useExisting:ET}]]}}static forChild(t){return{ngModule:e,providers:[CT(t)]}}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)(Qe(vT,8),Qe(lT,8))}}),e})();function ST(e,t,n){return n.scrollOffset&&t.setOffset(n.scrollOffset),new yT(e,t,n)}function LT(e,t,n={}){return n.useHash?new eu(e,t):new Xd(e,t)}function xT(e){if(e)throw new Error(\"RouterModule.forRoot() called twice. Lazy loaded modules should use RouterModule.forChild() instead.\");return\"guarded\"}function CT(e){return[{provide:_o,multi:!0,useValue:e},{provide:nT,multi:!0,useValue:e}]}let TT=(()=>{class e{constructor(e){this.injector=e,this.initNavigation=!1,this.resultOfPreactivationDone=new L}appInitializer(){return this.injector.get(Wd,Promise.resolve(null)).then(()=>{let e=null;const t=new Promise(t=>e=t),n=this.injector.get(lT),i=this.injector.get(bT);if(this.isLegacyDisabled(i)||this.isLegacyEnabled(i))e(!0);else if(\"disabled\"===i.initialNavigation)n.setUpLocationChangeListener(),e(!0);else{if(\"enabled\"!==i.initialNavigation)throw new Error(`Invalid initialNavigation options: '${i.initialNavigation}'`);n.hooks.afterPreactivation=()=>this.initNavigation?xu(null):(this.initNavigation=!0,e(!0),this.resultOfPreactivationDone),n.initialNavigation()}return t})}bootstrapListener(e){const t=this.injector.get(bT),n=this.injector.get(gT),i=this.injector.get(yT),s=this.injector.get(lT),r=this.injector.get(Td);e===r.components[0]&&(this.isLegacyEnabled(t)?s.initialNavigation():this.isLegacyDisabled(t)&&s.setUpLocationChangeListener(),n.setUpPreloading(),i.init(),s.resetRootComponentType(r.componentTypes[0]),this.resultOfPreactivationDone.next(null),this.resultOfPreactivationDone.complete())}isLegacyEnabled(e){return\"legacy_enabled\"===e.initialNavigation||!0===e.initialNavigation||void 0===e.initialNavigation}isLegacyDisabled(e){return\"legacy_disabled\"===e.initialNavigation||!1===e.initialNavigation}}return e.\\u0275fac=function(t){return new(t||e)(Qe(fo))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function DT(e){return e.appInitializer.bind(e)}function YT(e){return e.bootstrapListener.bind(e)}const ET=new Ve(\"Router Initializer\");function OT(e=0,t=tp){return(!Rb(e)||e<0)&&(e=0),t&&\"function\"==typeof t.schedule||(t=tp),new v(n=>(n.add(t.schedule(IT,e,{subscriber:n,counter:0,period:e})),n))}function IT(e){const{subscriber:t,counter:n,period:i}=e;t.next(n),this.schedule({subscriber:t,counter:n+1,period:i},i)}const PT={leading:!0,trailing:!1};class AT{constructor(e,t,n){this.durationSelector=e,this.leading=t,this.trailing=n}call(e,t){return t.subscribe(new RT(e,this.durationSelector,this.leading,this.trailing))}}class RT extends R{constructor(e,t,n,i){super(e),this.destination=e,this.durationSelector=t,this._leading=n,this._trailing=i,this._hasValue=!1}_next(e){this._hasValue=!0,this._sendValue=e,this._throttled||(this._leading?this.send():this.throttle(e))}send(){const{_hasValue:e,_sendValue:t}=this;e&&(this.destination.next(t),this.throttle(t)),this._hasValue=!1,this._sendValue=null}throttle(e){const t=this.tryDurationSelector(e);t&&this.add(this._throttled=A(this,t))}tryDurationSelector(e){try{return this.durationSelector(e)}catch(t){return this.destination.error(t),null}}throttlingDone(){const{_throttled:e,_trailing:t}=this;e&&e.unsubscribe(),this._throttled=null,t&&this.send()}notifyNext(e,t,n,i,s){this.throttlingDone()}notifyComplete(){this.throttlingDone()}}function HT(e){const{start:t,index:n,count:i,subscriber:s}=e;n>=i?s.complete():(s.next(t),s.closed||(e.index=n+1,e.start=t+1,this.schedule(e)))}function jT(e){return t=>t.lift(new FT(e,t))}class FT{constructor(e,t){this.notifier=e,this.source=t}call(e,t){return t.subscribe(new NT(e,this.notifier,this.source))}}class NT extends R{constructor(e,t,n){super(e),this.notifier=t,this.source=n}error(e){if(!this.isStopped){let n=this.errors,i=this.retries,s=this.retriesSubscription;if(i)this.errors=null,this.retriesSubscription=null;else{n=new L;try{const{notifier:e}=this;i=e(n)}catch(t){return super.error(t)}s=A(this,i)}this._unsubscribeAndRecycle(),this.errors=n,this.retries=i,this.retriesSubscription=s,n.next(e)}}_unsubscribe(){const{errors:e,retriesSubscription:t}=this;e&&(e.unsubscribe(),this.errors=null),t&&(t.unsubscribe(),this.retriesSubscription=null),this.retries=null}notifyNext(e,t,n,i,s){const{_unsubscribe:r}=this;this._unsubscribe=null,this._unsubscribeAndRecycle(),this._unsubscribe=r,this.source.subscribe(this)}}class zT{constructor(e){this.resultSelector=e}call(e,t){return t.subscribe(new VT(e,this.resultSelector))}}class VT extends p{constructor(e,t,n=Object.create(null)){super(e),this.iterators=[],this.active=0,this.resultSelector=\"function\"==typeof t?t:null,this.values=n}_next(e){const t=this.iterators;l(e)?t.push(new UT(e)):t.push(\"function\"==typeof e[E]?new WT(e[E]()):new $T(this.destination,this,e))}_complete(){const e=this.iterators,t=e.length;if(this.unsubscribe(),0!==t){this.active=t;for(let n=0;nthis.index}hasCompleted(){return this.array.length===this.index}}class $T extends R{constructor(e,t,n){super(e),this.parent=t,this.observable=n,this.stillUnsubscribed=!0,this.buffer=[],this.isComplete=!1}[E](){return this}next(){const e=this.buffer;return 0===e.length&&this.isComplete?{value:null,done:!0}:{value:e.shift(),done:!1}}hasValue(){return this.buffer.length>0}hasCompleted(){return 0===this.buffer.length&&this.isComplete}notifyComplete(){this.buffer.length>0?(this.isComplete=!0,this.parent.notifyInactive()):this.destination.complete()}notifyNext(e,t,n,i,s){this.buffer.push(t),this.parent.checkIterators()}subscribe(e,t){return A(this,this.observable,this,t)}}let BT=(()=>{class e{constructor(e,t){this.http=e,this.router=t}get(e,t){return this.http.get(JT(e),{headers:KT(t)}).pipe(aw(qT(this.router)),jT(GT()))}post(e,t,n){return this.http.post(JT(e),t,{headers:KT(n)}).pipe(aw(qT(this.router)),jT(GT()))}rawPost(e,t,n){return this.http.post(JT(e),t,{headers:KT(n),observe:\"response\",responseType:\"text\"}).pipe(aw(qT(this.router)),jT(GT()))}delete(e,t){return this.http.delete(JT(e),{headers:KT(t)}).pipe(aw(qT(this.router)),jT(GT()))}put(e,t,n){return this.http.put(JT(e),t,{headers:KT(n)}).pipe(aw(qT(this.router)),jT(GT()))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(qu),Qe(lT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();function qT(e){return(t,n)=>xu(t).pipe(V(t=>{if(403==t.status||401==t.status)return e.routerState.snapshot.url.startsWith(\"/login\")||e.navigate([\"/login\"],{queryParams:{returnUrl:e.url}}),lp();throw t}))}function GT(){return e=>function(e=0,t,n){return new v(i=>{void 0===t&&(t=e,e=0);let s=0,r=e;if(n)return n.schedule(HT,0,{index:s,count:t,start:e,subscriber:i});for(;;){if(s++>=t){i.complete();break}if(i.next(r++),i.closed)break}})}(1,10).pipe(function(...e){return function(t){return t.lift.call(function(...e){const t=e[e.length-1];return\"function\"==typeof t&&e.pop(),q(e,void 0).lift(new zT(t))}(t,...e))}}(e,(e,t)=>{if(10==e)throw t;return e}),V(e=>Hb(1e3*e)))}let JT=function(e){return\"/api/v2/\"+e},KT=function(e){return(e=e||new Iu).set(\"Authorization\",localStorage.getItem(\"token\")).set(\"Accept\",\"application/json\")},ZT=(()=>{class e{constructor(e,t){this.http=e,this.api=t,this.tokenSubject=new hS(localStorage.getItem(\"token\")),this.tokenSubject.pipe(Tu(e=>e!=localStorage.getItem(\"token\"))).subscribe(e=>{\"\"==e?localStorage.removeItem(\"token\"):(localStorage.setItem(\"token\",e),localStorage.setItem(\"token_age\",(new Date).toString()))}),!localStorage.getItem(\"token_age\")&&localStorage.getItem(\"token\")&&localStorage.setItem(\"token_age\",(new Date).toString()),this.tokenSubject.pipe(Wb(e=>\"\"==e?pS():Hb(0,36e5)),H(e=>new Date(localStorage.getItem(\"token_age\"))),Tu(e=>(new Date).getTime()-e.getTime()>144e6),Wb(e=>(console.log(\"Renewing user token\"),this.api.rawPost(\"user/token\").pipe(H(e=>e.headers.get(\"Authorization\")),Tu(e=>\"\"!=e),aw(e=>(console.log(\"Error generating new user token: \",e),pS())))))).subscribe(e=>this.tokenSubject.next(e))}create(e,t){var n=new FormData;return n.append(\"user\",e),n.append(\"password\",t),this.http.post(\"/api/v2/token\",n,{observe:\"response\",responseType:\"text\"}).pipe(H(e=>e.headers.get(\"Authorization\")),H(e=>{if(e)return this.tokenSubject.next(e),e;throw new QT(\"test\")}))}delete(){this.tokenSubject.next(\"\")}tokenObservable(){return this.tokenSubject.pipe(H(e=>(e||\"\").replace(\"Bearer \",\"\")),function(e,t=PT){return n=>n.lift(new AT(e,t.leading,t.trailing))}(e=>OT(2e3)))}tokenUser(e){return e?JSON.parse(atob(e.split(\".\")[1])).sub:\"\"}}return e.\\u0275fac=function(t){return new(t||e)(Qe(qu),Qe(BT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();class QT extends Error{}const XT=[\"placeholder\",\"\\u041F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0441\\u043A\\u043E \\u0438\\u043C\\u0435\"],eD=[\"placeholder\",\"\\u041F\\u0430\\u0440\\u043E\\u043B\\u0430\"];var tD;function nD(e,t){1&e&&(Ro(0,\"ngb-alert\",7),Sa(1,\"Invalid username or password\"),Ho()),2&e&&Po(\"dismissible\",!1)(\"type\",\"danger\")}tD=\"\\u0412\\u043B\\u0435\\u0437\";let iD=(()=>{class e{constructor(e,t,n){this.router=e,this.route=t,this.tokenService=n,this.loading=!1,this.invalidLogin=!1}ngOnInit(){this.tokenService.delete(),this.returnURL=this.route.snapshot.queryParams.returnURL||\"/\"}login(){this.loading=!0,this.tokenService.create(this.user,this.password).subscribe(e=>{this.invalidLogin=!1,this.router.navigate([this.returnURL])},e=>{401==e.status&&(this.invalidLogin=!0),this.loading=!1})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(lT),Eo(eC),Eo(ZT))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:13,vars:4,consts:[[1,\"content\"],[\"novalidate\",\"\",1,\"login-form\",3,\"ngSubmit\"],[\"f\",\"ngForm\"],[\"matInput\",\"\",\"name\",\"user\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"password\",\"name\",\"password\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[\"mat-raised-button\",\"\",\"type\",\"submit\",3,\"disabled\"],[3,\"dismissible\",\"type\",4,\"ngIf\"],[3,\"dismissible\",\"type\"]],template:function(e,t){if(1&e&&(Ro(0,\"div\",0),Ro(1,\"form\",1,2),Uo(\"ngSubmit\",(function(){return t.login()})),Ro(3,\"mat-form-field\"),Ro(4,\"input\",3),nc(5,XT),Uo(\"ngModelChange\",(function(e){return t.user=e})),Ho(),Ho(),Ro(6,\"mat-form-field\"),Ro(7,\"input\",4),nc(8,eD),Uo(\"ngModelChange\",(function(e){return t.password=e})),Ho(),Ho(),jo(9,\"br\"),Ro(10,\"button\",5),tc(11,tD),Ho(),Do(12,nD,2,2,\"ngb-alert\",6),Ho(),Ho()),2&e){const e=Yo(2);ys(4),Po(\"ngModel\",t.user),ys(3),Po(\"ngModel\",t.password),ys(3),Po(\"disabled\",t.loading||!e.valid),ys(2),Po(\"ngIf\",t.invalidLogin)}},directives:[Tm,Sh,bm,dM,gM,_h,Vm,kh,Cm,Gy,mu,OS],styles:[\".content[_ngcontent-%COMP%]{display:flex;height:100vh;align-items:center;justify-content:center}button[_ngcontent-%COMP%]{margin-bottom:1rem}\"]}),e})();var sD=n(\"BOF4\");let rD=(()=>{class e{constructor(e){this.router=e}canActivate(e,t){var n=localStorage.getItem(\"token\");if(n){var i=sD(n);if((!i.exp||i.exp>=(new Date).getTime()/1e3)&&(!i.nbf||i.nbf<(new Date).getTime()/1e3))return!0}return this.router.navigate([\"/login\"],{queryParams:{returnUrl:t.url}}),!1}}return e.\\u0275fac=function(t){return new(t||e)(Qe(lT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();function oD(e){return e.events.pipe(Tu(e=>e instanceof JL),H(t=>aD([e.routerState.snapshot.root])),Rf(aD([e.routerState.snapshot.root])),Eb(),nv(1))}function aD(e){for(let t of e){if(\"primary\"in t.data)return t;let e=aD(t.children);if(null!=e)return e}return null}function lD(e){return e.events.pipe(Tu(e=>e instanceof JL),H(t=>cD([e.routerState.snapshot.root])),Rf(cD([e.routerState.snapshot.root])),Eb(),nv(1))}function cD(e){for(let t of e){if(\"articleID\"in t.params)return t;let e=cD(t.children);if(null!=e)return e}return null}function dD(...e){let t=null;return\"function\"==typeof e[e.length-1]&&(t=e.pop()),1===e.length&&l(e[0])&&(e=e[0].slice()),n=>n.lift.call(z([n,...e]),new nS(t))}let uD=(()=>{class e{constructor(){this.services=new Map,this.enabledSubject=new hS([]),this.enabled=new Set(JSON.parse(localStorage.getItem(e.key)))}register(e){this.services.set(e.id,e),this.enabledSubject.next(this.getEnabled())}enabledServices(){return this.enabledSubject.asObservable()}list(){return Array.from(this.services.values()).sort((e,t)=>{let n=e.category.localeCompare(t.category);return 0==n?e.id.localeCompare(t.id):n}).map(e=>[e,this.isEnabled(e.id)])}groupedList(){let e=this.list(),t=new Array,n=\"\";for(let i of e)i[0].category!=n&&(n=i[0].category,t.push(new Array)),t[t.length-1].push(i);return t}toggle(t,n){this.services.has(t)&&(n?this.enabled.add(t):this.enabled.delete(t),localStorage.setItem(e.key,JSON.stringify(Array.from(this.enabled))),this.enabledSubject.next(this.getEnabled()))}isEnabled(e){return this.enabled.has(e)}submit(e,t){let n=this.services.get(e).template.replace(/{%\\s*link\\s*%}/g,t.link).replace(/{%\\s*title\\s*%}/g,t.title);window.open(n,\"_blank\")}getEnabled(){return this.list().filter(e=>e[1]).map(e=>e[0])}}return e.key=\"enabled-services\",e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})(),hD=(()=>{class e{constructor(e){this.sharingService=e}ngOnInit(){this.sharingService.register({id:this.id,description:this.description,category:this.category,link:this.link,template:this.share})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(uD))},e.\\u0275dir=St({type:e,selectors:[[\"share-service\"]],inputs:{id:\"id\",description:\"description\",category:\"category\",link:\"link\",share:\"share\"}}),e})();const mD=[\"description\",\"Evernote\",\"category\",\"Read-it-later\"],pD=[\"description\",\"Instapaper\",\"category\",\"Read-it-later\"],fD=[\"description\",\"Readability\",\"category\",\"Read-it-later\"],_D=[\"description\",\"Pocket\",\"category\",\"Read-it-later\"],gD=[\"description\",\"Google+\",\"category\",\"\\u0421\\u043E\\u0446\\u0438\\u0430\\u043B\\u043D\\u0438 \\u043C\\u0440\\u0435\\u0436\\u0438\"],yD=[\"description\",\"Facebook\",\"category\",\"\\u0421\\u043E\\u0446\\u0438\\u0430\\u043B\\u043D\\u0438 \\u043C\\u0440\\u0435\\u0436\\u0438\"],bD=[\"description\",\"Twitter\",\"category\",\"\\u0421\\u043E\\u0446\\u0438\\u0430\\u043B\\u043D\\u0438 \\u043C\\u0440\\u0435\\u0436\\u0438\"],vD=[\"description\",\"Pinterest\",\"category\",\"\\u0421\\u043E\\u0446\\u0438\\u0430\\u043B\\u043D\\u0438 \\u043C\\u0440\\u0435\\u0436\\u0438\"],wD=[\"description\",\"Tumblr\",\"category\",\"Blogging\"],MD=[\"description\",\"Flipboard\",\"category\",\"Blogging\"],kD=[\"description\",\"\\u041F\\u043E\\u0449\\u0430\",\"category\",\"\\u041F\\u043E\\u0449\\u0430\"],SD=[\"description\",\"Gmail\",\"category\",\"\\u041F\\u043E\\u0449\\u0430\"];function LD(e,t){if(1&e){const e=zo();Ro(0,\"button\",18),Uo(\"click\",(function(){return en(e),Jo(),Yo(2).toggle()})),Ro(1,\"mat-icon\"),Sa(2,\"menu\"),Ho(),Ho()}}let xD=(()=>{class e{constructor(e,t){this.tokenService=e,this.router=t,this.showsArticle=!1,this.inSearch=!1}ngOnInit(){this.subscription=this.tokenService.tokenObservable().pipe(Tu(e=>\"\"!=e),Wb(e=>lD(this.router).pipe(H(e=>null!=e),dD(oD(this.router).pipe(H(e=>null!=e&&\"search\"==e.data.primary)),(e,t)=>[e,t])))).subscribe(e=>{this.showsArticle=e[0],this.inSearch=e[1]},e=>console.log(e))}ngOnDestroy(){this.subscription.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ZT),Eo(lT))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:33,vars:1,consts:[[\"sidenav\",\"\"],[\"name\",\"sidebar\"],[1,\"content\"],[\"color\",\"primary\"],[\"mat-icon-button\",\"\",3,\"click\",4,\"ngIf\"],[\"name\",\"toolbar\"],[\"id\",\"evernode\",\"link\",\"https://www.evernote.com\",\"share\",\"https://www.evernote.com/clip.action?url={% link %}&title={% title %}\",6,\"description\",\"category\"],[\"id\",\"instapaper\",\"link\",\"http://www.instapaper.com\",\"share\",\"http://www.instapaper.com/hello2?url={% link %}&title={% title %}\",6,\"description\",\"category\"],[\"id\",\"readability\",\"link\",\"https://www.readability.com\",\"share\",\"https://www.readability.com/save?url={% link %}\",6,\"description\",\"category\"],[\"id\",\"pocket\",\"link\",\"https://getpocket.com\",\"share\",\"https://getpocket.com/save?url={% link %}&title={% title %}\",6,\"description\",\"category\"],[\"id\",\"googlep\",\"link\",\"https://plus.google.com\",\"share\",\"https://plus.google.com/share?url={% link %}\",6,\"description\",\"category\"],[\"id\",\"facebook\",\"link\",\"https://www.facebook.com\",\"share\",\"http://www.facebook.com/sharer.php?u={% link %}&t={% title %}\",6,\"description\",\"category\"],[\"id\",\"twitter\",\"link\",\"https://www.twitter.com\",\"share\",\"https://twitter.com/intent/tweet?url={% link %}&text={% title %}\",6,\"description\",\"category\"],[\"id\",\"pinterest\",\"link\",\"https://www.pinterest.com\",\"share\",\"http://pinterest.com/pin/find/?url={% link %}\",6,\"description\",\"category\"],[\"id\",\"tumblr\",\"link\",\"https://www.tumblr.com\",\"share\",\"http://www.tumblr.com/share?v=3&u={% link %}&t={% title %}\",6,\"description\",\"category\"],[\"id\",\"flipboard\",\"link\",\"https://www.flipboard.com\",\"share\",\"https://share.flipboard.com/bookmarklet/popout?v=2&url={% link %}&title={% title %}\",6,\"description\",\"category\"],[\"id\",\"email\",\"share\",\"mailto:?subject={% title %}&body={% link %}\",6,\"description\",\"category\"],[\"id\",\"gmail\",\"link\",\"https://mail.google.com\",\"share\",\"https://mail.google.com/mail/?view=cm&su={% title %}&body={% link %}\",6,\"description\",\"category\"],[\"mat-icon-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"mat-sidenav-container\"),Ro(1,\"mat-sidenav\",null,0),jo(3,\"router-outlet\",1),Ho(),Ro(4,\"div\",2),Ro(5,\"mat-toolbar\",3),Do(6,LD,3,0,\"button\",4),jo(7,\"router-outlet\",5),Ho(),jo(8,\"router-outlet\"),Ho(),Ho(),Ro(9,\"share-service\",6),nc(10,mD),Ho(),Ro(11,\"share-service\",7),nc(12,pD),Ho(),Ro(13,\"share-service\",8),nc(14,fD),Ho(),Ro(15,\"share-service\",9),nc(16,_D),Ho(),Ro(17,\"share-service\",10),nc(18,gD),Ho(),Ro(19,\"share-service\",11),nc(20,yD),Ho(),Ro(21,\"share-service\",12),nc(22,bD),Ho(),Ro(23,\"share-service\",13),nc(24,vD),Ho(),Ro(25,\"share-service\",14),nc(26,wD),Ho(),Ro(27,\"share-service\",15),nc(28,MD),Ho(),Ro(29,\"share-service\",16),nc(30,kD),Ho(),Ro(31,\"share-service\",17),nc(32,SD),Ho()),2&e&&(ys(6),Po(\"ngIf\",!t.showsArticle&&!t.inSearch))},directives:[Hk,Ak,mT,dS,mu,hD,Gy,Cw],styles:[\".content[_ngcontent-%COMP%], body[_ngcontent-%COMP%], html[_ngcontent-%COMP%], mat-sidenav-container[_ngcontent-%COMP%]{width:100%;height:100vh;display:flex;flex-direction:column;overflow:hidden}mat-sidenav[_ngcontent-%COMP%]{width:200px}\"]}),e})();var CD=n(\"wd/R\");function TD(e,t,n,i){n&&\"function\"!=typeof n&&(i=n);const s=\"function\"==typeof n?n:void 0,r=new ev(e,t,i);return e=>te(()=>r,s)(e)}let DD=(()=>{class e{constructor(e){this.api=e}getFeeds(){return this.api.get(\"feed\").pipe(H(e=>e.feeds))}discover(e){return this.api.get(`feed/discover?query=${e}`).pipe(H(e=>e.feeds))}importOPML(e){var t=new FormData;return t.append(\"opml\",e.opml),e.dryRun&&t.append(\"dryRun\",\"true\"),this.api.post(\"opml\",t).pipe(H(e=>e.feeds))}exportOPML(){return this.api.get(\"opml\").pipe(H(e=>e.opml))}addFeeds(e){var t=new FormData;return e.forEach(e=>t.append(\"link\",e)),this.api.post(\"feed\",t)}deleteFeed(e){return this.api.delete(`feed/${e}`).pipe(H(e=>e.success))}updateTags(e,t){var n=new FormData;return t.forEach(e=>n.append(\"tag\",e)),this.api.put(`feed/${e}/tags`,n).pipe(H(e=>e.success))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})(),YD=(()=>{class e{constructor(e){this.api=e}getTags(){return this.api.get(\"tag\").pipe(H(e=>e.tags))}getFeedIDs(e){return this.api.get(`tag/${e.id}/feedIDs`).pipe(H(e=>e.feedIDs))}getTagsFeedIDs(){return this.api.get(\"tag/feedIDs\").pipe(H(e=>e.tagFeeds))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})(),ED=(()=>{class e{constructor(e){this.tokenService=e,this.connectionSubject=new hS(!1),this.refreshSubject=new L,this.eventSourceObservable=this.tokenService.tokenObservable().pipe(dD(this.refreshSubject.pipe(Rf(null)),(e,t)=>e),UL((e,t)=>(null!=e&&e.close(),\"\"!=t&&((e=new EventSource(\"/api/v2/events?token=\"+t)).onopen=()=>{this.connectionSubject.next(!0)},e.onerror=e=>{setTimeout(()=>{this.connectionSubject.next(!1),this.refresh()},3e3)}),e),null),Tu(e=>null!=e),nv(1)),this.feedUpdate=this.eventSourceObservable.pipe(V(e=>Mb(e,\"feed-update\")),H(e=>JSON.parse(e.data))),this.articleState=this.eventSourceObservable.pipe(V(e=>Mb(e,\"article-state-change\")),H(e=>JSON.parse(e.data)))}connection(){return this.connectionSubject.asObservable()}refresh(){this.refreshSubject.next(null)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ZT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})(),OD=(()=>{class e{constructor(){this.prefs=JSON.parse(localStorage.getItem(e.key)||\"{}\"),this.prefs.unreadFirst=!0,this.queryPreferencesSubject=new hS(this.prefs)}get olderFirst(){return this.prefs.olderFirst}set olderFirst(e){this.prefs.olderFirst=e,this.queryPreferencesSubject.next(this.prefs),this.saveToStorage()}get unreadOnly(){return this.prefs.unreadOnly}set unreadOnly(e){this.prefs.unreadOnly=e,this.queryPreferencesSubject.next(this.prefs),this.saveToStorage()}queryPreferences(){return this.queryPreferencesSubject.asObservable()}saveToStorage(){localStorage.setItem(e.key,JSON.stringify(this.prefs))}}return e.key=\"preferences\",e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();function ID(e){return e.map(e=>(\"string\"==typeof e.date&&(e.date=new Date(e.date)),e))}class PD{constructor(){this.updatable=!0}get url(){return\"\"}}class AD{constructor(){this.updatable=!1}get url(){return\"/favorite\"}}class RD{constructor(e){this.secondary=e,this.updatable=!1}get url(){return\"/popular\"+this.secondary.url}}class HD{constructor(e){this.id=e,this.updatable=!0}get url(){return`/feed/${this.id}`}}class jD{constructor(e){this.id=e,this.updatable=!0}get url(){return`/tag/${this.id}`}}class FD{constructor(e,t){this.query=e,this.secondary=t,this.updatable=!1}get url(){return`/search${this.secondary.url}?query=${encodeURIComponent(this.query)}`}}class ND{constructor(){this.indexMap=new Map,this.articles=[]}}let zD=(()=>{class e{constructor(e,t,n,i,s,r,o){this.api=e,this.tokenService=t,this.feedService=n,this.tagService=i,this.eventService=s,this.router=r,this.preferences=o,this.paging=new hS(null),this.stateChange=new L,this.updateSubject=new L,this.refresh=new hS(null),this.limit=200,this.initialFetched=!1;let a=this.preferences.queryPreferences();this.source=oD(this.router).pipe(Tu(e=>null!=e),H(e=>this.nameToSource(e.data,e.params)),Tu(e=>null!=e),Eb((e,t)=>e.url===t.url));let l=this.tokenService.tokenObservable().pipe(UL((e,t)=>{var n=this.tokenService.tokenUser(t);return e[0]=t,e[2]=e[1]!=n,e[1]=n,e},[\"\",\"\",!1]),Tu(e=>e[2]),Wb(()=>this.feedService.getFeeds().pipe(dD(this.tagService.getTagsFeedIDs(),(e,t)=>[e.reduce((e,t)=>(e[t.id]=t.title,e),new Map),t.reduce((e,t)=>(e[t.tag.id]=t.ids,e),new Map)]))),nv(1));this.articles=l.pipe(Wb(e=>this.source.pipe(dD(this.refresh,(e,t)=>e),Wb(t=>(this.paging=new hS(0),a.pipe(Wb(n=>G(this.paging.pipe(V(e=>this.datePaging(t,n.unreadFirst)),Wb(e=>this.getArticlesFor(t,{olderFirst:n.olderFirst,unreadOnly:n.unreadOnly},this.limit,e)),H(e=>({articles:e,fromEvent:!1}))),this.updateSubject.pipe(Wb(e=>this.getArticlesFor(t,e[0],this.limit,{}).pipe(dD(this.ids(t,{unreadOnly:!0,beforeID:e[0].afterID+1,afterID:e[1]-1}),(t,n)=>({articles:t,unreadIDs:new Set(n),unreadIDRange:[e[1],e[0].afterID],fromEvent:!0}))))),this.eventService.feedUpdate.pipe(Tu(n=>this.shouldUpdate(n,t,e[1])),bM(3e4),V(e=>this.getArticlesFor(new HD(e.feedID),{ids:e.articleIDs,olderFirst:n.olderFirst,unreadOnly:n.unreadOnly},this.limit,{})),H(e=>({articles:e,fromEvent:!0})))).pipe(Tu(e=>null!=e.articles),H(t=>(t.articles=t.articles.map(t=>(t.hits&&t.hits.fragments&&(t.hits.fragments.title.length>0&&(t.title=t.hits.fragments.title.join(\" \")),t.hits.fragments.description.length>0&&(t.stripped=t.hits.fragments.description.join(\" \"))),t.stripped||(t.stripped=t.description.replace(/<[^>]+>/g,\"\")),t.feed=e[0][t.feedID],t)),t)),UL((e,t)=>{if(t.unreadIDs)for(let n=0;n=t.unreadIDRange[0]&&i<=t.unreadIDRange[1]&&(e.articles[n].read=!t.unreadIDs.has(i))}if(t.fromEvent){let i=new Array;for(let s of t.articles)if(s.id in e.indexMap)i.push(s);else if(n.olderFirst){for(let t=e.articles.length-1;t>=0;t--)if(this.shouldInsert(s,e.articles[t],n)){e.articles.splice(t,0,s);break}}else for(let t=0;tJSON.stringify(e)==JSON.stringify(t))),(t,n)=>{if(null!=n){if(n.options.ids)for(let e of n.options.ids){let i=t.indexMap[e];null!=i&&-1!=i&&(t.articles[i][n.name]=n.value)}if(this.hasOptions(n.options)){let i=new Set;e[1].forEach(e=>{for(let t of e)i.add(t)});for(let e=0;ee.articles))),Rf([])))))),TD(1)),this.articles.connect(),this.eventService.connection().pipe(Tu(e=>e),Wb(e=>this.articles.pipe(zL())),Tu(e=>e.length>0),H(e=>e.map(e=>e.id)),H(e=>[Math.min.apply(Math,e),Math.max.apply(Math,e)]),H(e=>this.preferences.olderFirst?[{afterID:e[1]},e[0]]:[{olderFirst:!0,afterID:e[1]},e[0]])).subscribe(e=>this.updateSubject.next(e),e=>console.log(\"Error refreshing article list after reconnect: \",e)),this.eventService.articleState.subscribe(e=>this.stateChange.next({options:e.options,name:e.state,value:e.value}));let c=(new Date).getTime();Notification.requestPermission(e=>{\"granted\"==e&&l.pipe(dD(this.source,(e,t)=>[e[0],e[1],t]),Wb(e=>this.eventService.feedUpdate.pipe(Tu(t=>this.shouldUpdate(t,e[2],e[1])),H(t=>{let n=e[0].get(t.feedID);return n?[\"readeef: updates\",`Feed ${n} has been updated`]:null}),Tu(e=>null!=e),bM(3e4)))).subscribe(e=>{document.hasFocus()||(new Date).getTime()-c>3e4&&(new Notification(e[0],{body:e[1],icon:\"/en/readeef.png\",tag:\"readeef\"}),c=(new Date).getTime())})})}articleObservable(){return this.articles}requestNextPage(){this.paging.next(null)}ids(e,t){return this.api.get(this.buildURL(`article${e.url}/ids`,t)).pipe(H(e=>e.ids))}formatArticle(e){return this.api.get(`article/${e}/format`)}refreshArticles(){this.refresh.next(null)}favor(e,t){return this.articleStateChange(e,\"favorite\",t)}read(e,t){return this.articleStateChange(e,\"read\",t)}readAll(){this.source.pipe(cp(1),Tu(e=>e.updatable),H(e=>\"article\"+e.url+\"/read\"),V(e=>this.api.post(e)),H(e=>e.success)).subscribe(e=>{},e=>console.log(e))}articleStateChange(e,t,n){let i,s=`article/${e}/${t}`;return i=n?this.api.post(s):this.api.delete(s),i.pipe(H(e=>e.success),H(i=>(i&&this.stateChange.next({options:{ids:[e]},name:t,value:n}),i)))}getArticlesFor(e,t,n,i){let s=Object.assign({},t,{limit:n}),r=Object.assign({},s),o=-1,a=0;i.unreadTime?(o=i.unreadTime,a=i.unreadScore,r.unreadOnly=!0):i.time&&(o=i.time,a=i.score),-1!=o&&(t.olderFirst?(r.afterTime=o,a&&(r.afterScore=a)):(r.beforeTime=o,a&&(r.beforeScore=a)));let l=this.api.get(this.buildURL(\"article\"+e.url,r)).pipe(H(e=>ID(e.articles)));if(i.unreadTime&&(r=Object.assign({},s),r.readOnly=!0,i.time&&(t.olderFirst?(r.afterTime=i.time,i.score&&(r.afterScore=i.score)):(r.beforeTime=i.time,i.score&&(r.beforeScore=i.score))),l=l.pipe(V(t=>t.length==n?xu(t):(r.limit=n-t.length,this.api.get(this.buildURL(\"article\"+e.url,r)).pipe(H(e=>ID(e.articles)),H(e=>t.concat(e))))))),r.afterID&&(l=l.pipe(V(t=>{if(!t||!t.length)return xu(t);let s=Math.max.apply(Math,t.map(e=>e.id)),o=Object.assign({},r,{afterID:s});return this.getArticlesFor(e,o,n,i).pipe(H(e=>e&&e.length?e.concat(t):t))}))),!this.initialFetched){this.initialFetched=!0;let e=cD([this.router.routerState.snapshot.root]);if(null!=e&&+e.params.articleID>-1){let t=+e.params.articleID;return this.api.get(this.buildURL(\"article\"+(new PD).url,{ids:[t]})).pipe(H(e=>ID(e.articles)[0]),cp(1),V(e=>l.pipe(H(t=>{for(let n=0;nxu(null)))}buildURL(e,t){t||(t={}),t.limit||(t.limit=200);var n=new Array;if(t.ids){for(let e of t.ids)n.push(`id=${e}`);t.ids=void 0}for(var i in t)if(t.hasOwnProperty(i)){let e=t[i];if(void 0===e)continue;\"boolean\"==typeof e?e&&n.push(`${i}`):n.push(`${i}=${e}`)}return n.length>0?e+(-1==e.indexOf(\"?\")?\"?\":\"&\")+n.join(\"&\"):e}nameToSource(e,t){let n,i;switch(\"string\"==typeof e?n=e:(n=e.primary,i=e.secondary),n){case\"user\":return new PD;case\"favorite\":return new AD;case\"popular\":return new RD(this.nameToSource(i,t));case\"search\":return new FD(decodeURIComponent(t.query),this.nameToSource(i,t));case\"feed\":return new HD(t.id);case\"tag\":return new jD(t.id)}}datePaging(e,t){return this.articles.pipe(cp(1),H(n=>{if(0==n.length)return t?{unreadTime:-1}:{};let i=n[n.length-1],s={time:i.date.getTime()/1e3};if(e instanceof RD&&(s.score=i.score),t&&!(e instanceof FD)){if(!i.read)return s.unreadTime=s.time,e instanceof RD&&(s.unreadScore=s.score),s;for(let e=1;et.date)return!0;return!1}shouldSet(e,t,n){return!(t.feedIDs&&-1==t.feedIDs.indexOf(e.feedID)||t.readOnly&&!e.read||t.unreadOnly&&e.read||t.favoriteOnly&&!e.favorite||t.untaggedOnly&&!n.has(e.feedID)||t.beforeID&&e.id>=t.beforeID||t.afterID&&e.id<=t.afterID||t.beforeDate&&e.date>=t.beforeDate||t.afterDate&&e.date<=t.afterDate)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT),Qe(ZT),Qe(DD),Qe(YD),Qe(ED),Qe(lT),Qe(OD))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();function VD(e,t){1&e&&jo(0,\"div\",9),2&e&&da(\"background-image\",\"url(\"+Jo().item.thumbnail+\")\",ts)}function WD(e,t){if(1&e&&(Ro(0,\"div\",10),Sa(1),Ho()),2&e){const e=Jo();ys(1),xa(\" \",e.item.feed,\" \")}}let UD=(()=>{class e{constructor(e,t,n){this.articleService=e,this.router=t,this.route=n}openArticle(e){this.router.navigate([\"article\",e.id],{relativeTo:this.route})}favor(e,t){this.articleService.favor(e,t).subscribe(e=>{},e=>console.log(e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(zD),Eo(lT),Eo(eC))},e.\\u0275cmp=yt({type:e,selectors:[[\"list-item\"]],inputs:{item:\"item\"},decls:15,vars:11,consts:[[3,\"id\",\"click\"],[1,\"row\",\"align-items-center\"],[1,\"col\",\"title\"],[\"mat-card-avatar\",\"\",\"mat-icon-button\",\"\",3,\"click\"],[3,\"innerHTML\"],[\"mat-card-image\",\"\",3,\"backgroundImage\",4,\"ngIf\"],[1,\"row\",\"align-items-center\",\"info\"],[\"class\",\"col-mat-auto feed\",4,\"ngIf\"],[1,\"col\",\"time\"],[\"mat-card-image\",\"\"],[1,\"col-mat-auto\",\"feed\"]],template:function(e,t){1&e&&(Ro(0,\"mat-card\",0),Uo(\"click\",(function(){return t.openArticle(t.item)})),Ro(1,\"mat-card-header\",1),Ro(2,\"mat-card-title\",2),Ro(3,\"button\",3),Uo(\"click\",(function(e){return e.stopPropagation(),t.favor(t.item.id,!t.item.favorite)})),Ro(4,\"mat-icon\"),Sa(5),Ho(),Ho(),jo(6,\"span\",4),Ho(),Ho(),Do(7,VD,1,2,\"div\",5),Ro(8,\"mat-card-content\"),jo(9,\"div\",4),Ho(),Ro(10,\"mat-card-actions\"),Ro(11,\"div\",6),Do(12,WD,2,1,\"div\",7),Ro(13,\"div\",8),Sa(14),Ho(),Ho(),Ho(),Ho()),2&e&&(ua(\"read\",t.item.read),ta(\"id\",t.item.id),ys(5),xa(\" \",t.item.favorite?\"bookmark\":\"bookmark_border\",\" \"),ys(1),Po(\"innerHTML\",t.item.title,Qi),ys(1),Po(\"ngIf\",t.item.thumbnail),ys(2),Po(\"innerHTML\",t.item.stripped,Qi),ys(2),ua(\"read\",t.item.read),ys(1),Po(\"ngIf\",t.item.feed),ys(2),xa(\" \",t.item.time,\" \"))},directives:[ob,ab,nb,Gy,rb,Cw,mu,tb,ib,sb],styles:[\"[_nghost-%COMP%]{height:500px}mat-card[_ngcontent-%COMP%]{display:flex;flex-direction:column;max-height:calc(100% - 12px);cursor:pointer}mat-card-header[_ngcontent-%COMP%]{overflow:hidden;flex:0 0 auto}[mat-card-image][_ngcontent-%COMP%]{height:240px;flex:1 0 auto;background-position:50%;background-repeat:no-repeat}mat-card-content[_ngcontent-%COMP%]{flex:0 1 auto;overflow:hidden;text-overflow:ellipsis-lastline;font-size:12px}mat-card-actions[_ngcontent-%COMP%]{flex:0 0 auto}.read[_ngcontent-%COMP%]{font-weight:100;color:#666}.read[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{font-weight:300}.title[_ngcontent-%COMP%]{font-weight:700;font-size:14px;overflow:hidden;text-overflow:ellipsis;line-height:1;height:3.85em}.info[_ngcontent-%COMP%]{margin:0}.feed[_ngcontent-%COMP%]{font-weight:200;font-size:10px;text-align:start}.time[_ngcontent-%COMP%]{font-size:11px;text-align:end}button[_ngcontent-%COMP%]:focus, button[_ngcontent-%COMP%]:hover{outline:none;text-decoration:none}\"]}),e})();function $D(e,t){1&e&&jo(0,\"list-item\",4),2&e&&Po(\"item\",t.$implicit)}var BD;function qD(e,t){1&e&&(Ro(0,\"div\",5),tc(1,BD),Ho())}BD=\"\\u0417\\u0430\\u0440\\u0435\\u0436\\u0434\\u0430\\u043D\\u0435...\";class GD{constructor(e,t){this.iteration=e,this.articles=t}}let JD=(()=>{class e{constructor(e,t,n){this.articleService=e,this.router=t,this.route=n,this.items=[],this.finished=!1,this.limit=200}ngOnInit(){this.loading=!0,this.subscription=this.articleService.articleObservable().pipe(UL((e,t,n)=>(e.iteration>0&&e.articles.length==t.length&&(this.finished=!0),e.articles=[].concat(t),e.iteration++,e),new GD(0,[])),H(e=>e.articles),Wb(e=>OT(6e4).pipe(Rf(0),H(t=>e.map(e=>(e.time=CD(e.date).fromNow(),e)))))).subscribe(e=>{this.loading=!1,this.items=e},e=>{this.loading=!1,console.log(e)})}ngOnDestroy(){this.subscription.unsubscribe()}fetchMore(e){e.endIndex!==this.items.length-1||this.loading||this.finished||(this.loading=!0,this.articleService.requestNextPage())}firstUnread(){if(document.activeElement.matches(\"input\"))return;let e=this.items.find(e=>!e.read);e&&this.router.navigate([\"article\",e.id],{relativeTo:this.route})}lastUnread(){if(!document.activeElement.matches(\"input\"))for(let e=this.items.length-1;e>-1;e--){let t=this.items[e];if(!t.read)return void this.router.navigate([\"article\",t.id],{relativeTo:this.route})}}refresh(){document.activeElement.matches(\"input\")||this.articleService.refreshArticles()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(zD),Eo(lT),Eo(eC))},e.\\u0275cmp=yt({type:e,selectors:[[\"article-list\"]],hostBindings:function(e,t){1&e&&Uo(\"keydown.arrowLeft\",(function(){return t.firstUnread()}),!1,Un)(\"keydown.shift.j\",(function(){return t.firstUnread()}),!1,Un)(\"keydown.arrowRight\",(function(){return t.lastUnread()}),!1,Un)(\"keydown.shift.k\",(function(){return t.lastUnread()}),!1,Un)(\"keydown.r\",(function(){return t.refresh()}),!1,Un)},decls:4,vars:3,consts:[[3,\"items\",\"vsEnd\"],[\"scroll\",\"\"],[3,\"item\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"loader\",4,\"ngIf\"],[3,\"item\"],[1,\"loader\"]],template:function(e,t){if(1&e&&(Ro(0,\"virtual-scroller\",0,1),Uo(\"vsEnd\",(function(e){return t.fetchMore(e)})),Do(2,$D,1,1,\"list-item\",2),Do(3,qD,2,0,\"div\",3),Ho()),2&e){const e=Yo(1);Po(\"items\",t.items),ys(2),Po(\"ngForOf\",e.viewPortItems),ys(1),Po(\"ngIf\",t.loading)}},directives:[LL,uu,mu,UD],styles:['[_nghost-%COMP%]{flex-grow:1;display:flex;height:calc(100% - 64px)}virtual-scroller[_ngcontent-%COMP%]{overflow:hidden;overflow-y:auto;display:block;flex-grow:1;background:#eee}list-item[_ngcontent-%COMP%]{display:inline-block;overflow:hidden;vertical-align:top;border:0;width:calc(25% - 16px);margin:8px}@media (max-width:1350px){list-item[_ngcontent-%COMP%]{width:calc(33% - 16px)}}@media (max-width:900px){list-item[_ngcontent-%COMP%]{width:calc(50% - 16px)}}@media (max-width:600px){list-item[_ngcontent-%COMP%]{width:calc(100% - 16px)}}.loader[_ngcontent-%COMP%]{height:4em;display:block;line-height:4em;text-align:center;position:relative}.loader[_ngcontent-%COMP%]:before{content:\" \";position:absolute;top:0;left:0;width:20%;height:2px;background:red;-webkit-animation:loader-animation 2s ease-out infinite;animation:loader-animation 2s ease-out infinite}@-webkit-keyframes loader-animation{0%{transform:translate(0)}to{transform:translate(500%)}}@keyframes loader-animation{0%{transform:translate(0)}to{transform:translate(500%)}}']}),e})();class KD{call(e,t){return t.subscribe(new ZD(e))}}class ZD extends p{_next(e){}}let QD=(()=>{class e{constructor(e,t){this.api=e,this.tokenService=t;var n=this.tokenService.tokenObservable().pipe(Wb(e=>this.api.get(\"features\").pipe(H(e=>e.features))),TD(1));n.connect(),this.features=n}getFeatures(){return this.features}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT),Qe(ZT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();const XD=[\"carousel\"];var eY,tY,nY;function iY(e,t){if(1&e&&(Ro(0,\"div\",17),Sa(1),Ho()),2&e){const e=Jo(2).$implicit;ys(1),xa(\" \",e.feed,\" \")}}function sY(e,t){if(1&e){const e=zo();Ro(0,\"div\",18),Ro(1,\"button\",19),Uo(\"click\",(function(){en(e);const t=Jo(2).$implicit;return Jo().formatArticle(t)})),tc(2,tY),Ho(),Ho()}}function rY(e,t){if(1&e){const e=zo();Ro(0,\"div\",18),Ro(1,\"button\",19),Uo(\"click\",(function(){en(e);const t=Jo(2).$implicit;return Jo().summarizeArticle(t)})),tc(2,nY),Ho(),Ho()}}function oY(e,t){if(1&e){const e=zo();Ro(0,\"div\",4),Ro(1,\"h3\",5),Ro(2,\"button\",6),Uo(\"click\",(function(){en(e);const t=Jo().$implicit;return Jo().favorArticle(t)})),Ro(3,\"mat-icon\"),Sa(4),Ho(),Ho(),Ro(5,\"a\",7),Uo(\"click\",(function(){return en(e),Jo(2).viewActive()})),Ho(),Ho(),Ro(6,\"div\",8),Do(7,iY,2,1,\"div\",9),Ro(8,\"div\",10),Sa(9),Ho(),Ro(10,\"div\",11),Sa(11),Ho(),Ho(),jo(12,\"p\",12),Ro(13,\"div\",13),Ro(14,\"div\",14),Ro(15,\"a\",15),Uo(\"click\",(function(){return en(e),Jo(2).viewActive()})),tc(16,eY),Ho(),Ho(),Do(17,sY,3,0,\"div\",16),Do(18,rY,3,0,\"div\",16),Ho(),Ho()}if(2&e){const e=Jo().$implicit,t=Jo();ys(4),xa(\" \",e.favorite?\"bookmark\":\"bookmark_border\",\" \"),ys(1),ta(\"href\",e.link,es),Po(\"innerHTML\",e.title,Qi),ys(1),ua(\"read\",e.read),ys(1),Po(\"ngIf\",e.feed),ys(2),xa(\" \",t.index,\" \"),ys(2),xa(\" \",e.time,\" \"),ys(1),Po(\"innerHTML\",e.formatted,Qi),ys(3),ta(\"href\",e.link,es),ys(2),Po(\"ngIf\",t.canExtract),ys(1),Po(\"ngIf\",t.canExtract)}}function aY(e,t){1&e&&Do(0,oY,19,12,\"ng-template\",3),2&e&&Po(\"id\",t.$implicit.id.toString())}eY=\"\\u041E\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\",tY=\"\\u0424\\u043E\\u0440\\u043C\\u0430\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435\",nY=\"\\u041E\\u0431\\u043E\\u0431\\u0449\\u0430\\u0432\\u0430\\u043D\\u0435\";var lY=function(e){return e[e.DESCRIPTION=0]=\"DESCRIPTION\",e[e.FORMAT=1]=\"FORMAT\",e[e.SUMMARY=2]=\"SUMMARY\",e}({});let cY=(()=>{class e{constructor(e,t,n,i,s,r){this.route=t,this.router=n,this.articleService=i,this.featuresService=s,this.sanitizer=r,this.slides=[],this.offset=new L,this.stateChange=new hS([-1,lY.DESCRIPTION]),this.states=new Map,this.subscriptions=new Array,e.interval=0,e.wrap=!1,e.keyboard=!1}ngOnInit(){this.subscriptions.push(this.articleService.articleObservable().pipe(Wb(e=>this.stateChange.pipe(Wb(e=>this.offset.pipe(Rf(0),H(t=>[t,e]))),H(t=>{let[n,i]=t,s=this.route.snapshot.params.articleID,r=[],o=e.findIndex(e=>e.id==s);return-1==o?null:(0!=n&&(o+n!=-1&&o+n0&&r.push(e[o-1]),r.push(e[o]),o+1{if(e.id==i[0])switch(i[1]){case lY.DESCRIPTION:e.formatted=e.description;break;case lY.FORMAT:e.formatted=e.format.content;break;case lY.SUMMARY:e.formatted=this.keypointsToHTML(e.format)}else e.formatted=e.description;return e.formatted=this.sanitizer.bypassSecurityTrustHtml(this.formatSource(e.formatted)),e}),{slides:r,active:{id:e[o].id,read:e[o].read,state:i[1]},index:o,total:e.length})}))),Tu(e=>null!=e),Eb((e,t)=>e.active.id==t.active.id&&e.slides.length==t.slides.length&&e.active.state==t.active.state&&e.total==t.total&&(e.slides[0]||{}).id==(t.slides[0]||{}).id&&(e.slides[2]||{}).id==(t.slides[2]||{}).id),V(e=>e.active.read?xu(e):this.articleService.read(e.active.id,!0).pipe(H(t=>e),aw(e=>xu(e)),(function(e){return e.lift(new KD)}),Rf(e))),Wb(e=>OT(6e4).pipe(Rf(0),H(t=>(e.slides=e.slides.map(e=>(e.time=CD(e.date).fromNow(),e)),e))))).subscribe(e=>{this.carousel.activeId=e.active.id.toString(),this.slides=e.slides,this.active=e.slides.find(t=>t.id==e.active.id),2==e.slides.length&&e.slides[1].id==e.active.id&&this.articleService.requestNextPage(),this.index=`${e.index+1}/${e.total}`},e=>console.log(e))),this.subscriptions.push(this.featuresService.getFeatures().pipe(H(e=>e.extractor)).subscribe(e=>this.canExtract=e,e=>console.log(e))),this.subscriptions.push(this.stateChange.subscribe(e=>this.states.set(e[0],e[1])))}ngOnDestroy(){for(let e of this.subscriptions)e.unsubscribe()}slideEvent(e){this.offset.next(e?1:-1)}favor(e,t){this.articleService.favor(e,t).subscribe(e=>{},e=>console.log(e))}goUp(){this.router.navigate([\"../../\"],{relativeTo:this.route}),document.getSelection().removeAllRanges()}goNext(){this.carousel.next()}goPrevious(){this.carousel.prev()}previousUnread(){let e=this.route.snapshot.params.articleID;this.articleService.articleObservable().pipe(H(t=>{let n=t.findIndex(t=>t.id==e);for(;n>0&&(n--,t[n].read););return t[n].read?e:t[n].id}),cp(1),Tu(t=>t!=e),V(e=>z(this.router.navigate([\"../\",e],{relativeTo:this.route})).pipe(H(t=>e)))).subscribe(e=>{this.stateChange.next([e,lY.DESCRIPTION])})}nextUnread(){let e=this.route.snapshot.params.articleID;this.articleService.articleObservable().pipe(H(t=>{let n=t.findIndex(t=>t.id==e);for(;nt!=e),V(e=>z(this.router.navigate([\"../\",e],{relativeTo:this.route})).pipe(H(t=>e)))).subscribe(e=>{this.stateChange.next([e,lY.DESCRIPTION])})}viewActive(){return null!=this.active&&document.body.dispatchEvent(new CustomEvent(\"open-link\",{cancelable:!0,detail:this.active.link}))&&window.open(this.active.link,\"_blank\"),!1}formatActive(){null!=this.active&&this.formatArticle(this.active)}formatArticle(e){let t=this.getState(e.id);t=t==lY.FORMAT?lY.DESCRIPTION:lY.FORMAT,this.setFormat(e,t)}summarizeActive(){null!=this.active&&this.summarizeArticle(this.active)}summarizeArticle(e){let t=this.getState(e.id);t=t==lY.SUMMARY?lY.DESCRIPTION:lY.SUMMARY,this.setFormat(e,t)}favorActive(){null!=this.active&&this.favorArticle(this.active)}favorArticle(e){this.articleService.favor(e.id,!e.favorite).subscribe(e=>{},e=>console.log(e))}keypointsToHTML(e){return`
  • `+e.keyPoints.join(\"
  • \")+\"
\"}getState(e){return this.states.has(e)?this.states.get(e):lY.DESCRIPTION}setFormat(e,t){let n,i=this.active;t!=lY.DESCRIPTION?(n=e.format?xu(e.format):this.articleService.formatArticle(i.id),n.subscribe(e=>{i.format=e,this.stateChange.next([i.id,t])},e=>console.log(e))):this.stateChange.next([i.id,t])}formatSource(e){return e.replace(\"{class e{constructor(){this.parser=document.createElement(\"a\")}iconURL(e){return this.parser.href=e,`//www.google.com/s2/favicons?domain=${this.parser.hostname}`}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();var uY,hY,mY,pY,fY,_Y;function gY(e,t){if(1&e&&(Ro(0,\"a\",14),Sa(1),Ho()),2&e){const e=t.$implicit;Po(\"routerLink\",\"/feed/popular/\"+e.link),ys(1),La(e.title)}}function yY(e,t){if(1&e&&(Ro(0,\"a\",14),jo(1,\"img\",15),Sa(2),Ho()),2&e){const e=t.$implicit,n=Jo(2);Po(\"routerLink\",\"/feed/popular/\"+e.link),ys(1),ta(\"src\",n.favicon(e.url),es),ys(1),La(e.title)}}function bY(e,t){if(1&e){const e=zo();Ro(0,\"div\",4),Ro(1,\"div\",5),Ro(2,\"button\",6),Uo(\"click\",(function(){en(e);const t=Jo();return t.collapses.__popularity=!t.collapses.__popularity})),Ro(3,\"mat-icon\"),Sa(4),Ho(),Ho(),Ro(5,\"a\",13),tc(6,_Y),Ho(),Ho(),Ro(7,\"div\",8),Do(8,gY,2,2,\"a\",9),Do(9,yY,3,3,\"a\",9),Ho(),Ho()}if(2&e){const e=Jo();ys(4),La(e.collapses.__popularity?\"expand_less\":\"expand_more\"),ys(3),Po(\"ngbCollapse\",!e.collapses.__popularity),ys(1),Po(\"ngForOf\",e.tags),ys(1),Po(\"ngForOf\",e.allItems)}}function vY(e,t){if(1&e&&(Ro(0,\"a\",14),jo(1,\"img\",15),Sa(2),Ho()),2&e){const e=t.$implicit,n=Jo();Po(\"routerLink\",\"/\"+e.link),ys(1),ta(\"src\",n.favicon(e.url),es),ys(1),La(e.title)}}function wY(e,t){if(1&e&&(Ro(0,\"a\",14),jo(1,\"img\",15),Sa(2),Ho()),2&e){const e=t.$implicit,n=Jo(2);Po(\"routerLink\",\"/feed/\"+e.link),ys(1),ta(\"src\",n.favicon(e.url),es),ys(1),La(e.title)}}function MY(e,t){if(1&e){const e=zo();Ro(0,\"div\",4),Ro(1,\"div\",5),Ro(2,\"button\",6),Uo(\"click\",(function(){en(e);const n=t.$implicit,i=Jo();return i.collapses[n.id]=!i.collapses[n.id]})),Ro(3,\"mat-icon\"),Sa(4),Ho(),Ho(),Ro(5,\"a\",14),Sa(6),Ho(),Ho(),Ro(7,\"div\",8),Do(8,wY,3,3,\"a\",9),Ho(),Ho()}if(2&e){const e=t.$implicit,n=Jo();ys(4),La(n.collapses[e.id]?\"expand_less\":\"expand_more\"),ys(1),Po(\"routerLink\",\"/feed/\"+e.link),ys(1),La(e.title),ys(1),Po(\"ngbCollapse\",!n.collapses[e.id]),ys(1),Po(\"ngForOf\",e.items)}}uY=\"\\u0415\\u043C\\u0438\\u0441\\u0438\\u0438\",hY=\"\\u041B\\u044E\\u0431\\u0438\\u043C\\u0438\",mY=\"\\u0412\\u0441\\u0438\\u0447\\u043A\\u0438\",pY=\"\\u041D\\u0430\\u0441\\u0442\\u0440\\u043E\\u0439\\u043A\\u0438\",fY=\"\\u0418\\u0437\\u0445\\u043E\\u0434\",_Y=\"\\u041F\\u043E\\u043F\\u0443\\u043B\\u044F\\u0440\\u043D\\u0438\";let kY=(()=>{class e{constructor(e,t,n,i){this.tagService=e,this.feedService=t,this.featuresService=n,this.faviconService=i,this.collapses=new Map,this.popularityItems=new Array,this.allItems=new Array,this.tags=new Array,this.collapses.set(\"__popularity\",!0),this.collapses.set(\"__all\",!0)}ngOnInit(){this.featuresService.getFeatures().pipe(dD(this.feedService.getFeeds(),this.tagService.getTagsFeedIDs(),(e,t,n)=>{let i;return i=[e,t,n],i})).subscribe(e=>{this.popularity=e[0].popularity;let t=e[1].sort((e,t)=>e.title.localeCompare(t.title)),n=e[2].sort((e,t)=>e.tag.value.localeCompare(t.tag.value));if(this.popularity&&(this.popularityItems=n.map(e=>new LY(-1*e.tag.id,\"/popular/tag/\"+e.tag.id,e.tag.value)),this.popularityItems.concat(t.map(e=>new LY(e.id,\"/popular/feed/\"+e.id,e.title,e.link)))),this.allItems=t.map(e=>new LY(e.id,\"/feed/\"+e.id,e.title,e.link)),n.length>0){let e=new Map;t.forEach(t=>{e.set(t.id,t)}),this.tags=n.map(t=>new SY(t.tag.id,\"/tag/\"+t.tag.id,t.tag.value,t.ids.map(t=>new LY(t,`${t}`,e.get(t).title,e.get(t).link)))),this.tags.forEach(e=>this.collapses.set(e.id,!1))}},e=>console.log(e))}favicon(e){return this.faviconService.iconURL(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(YD),Eo(DD),Eo(QD),Eo(dY))},e.\\u0275cmp=yt({type:e,selectors:[[\"side-bar\"]],decls:22,vars:5,consts:[[\"color\",\"primary\"],[1,\"content\"],[\"mat-button\",\"\",\"routerLink\",\"/feed/favorite\"],[\"class\",\"group\",4,\"ngIf\"],[1,\"group\"],[1,\"category\"],[\"mat-button\",\"\",1,\"expander\",3,\"click\"],[\"mat-button\",\"\",\"routerLink\",\"/feed\"],[1,\"items\",3,\"ngbCollapse\"],[\"mat-button\",\"\",3,\"routerLink\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"group\",4,\"ngFor\",\"ngForOf\"],[\"mat-button\",\"\",\"routerLink\",\"/settings\"],[\"mat-button\",\"\",\"routerLink\",\"/login\"],[\"mat-button\",\"\",\"routerLink\",\"/feed/popular\"],[\"mat-button\",\"\",3,\"routerLink\"],[1,\"favicon\",3,\"src\"]],template:function(e,t){1&e&&(Ro(0,\"mat-toolbar\",0),tc(1,uY),Ho(),Ro(2,\"div\",1),Ro(3,\"a\",2),tc(4,hY),Ho(),Do(5,bY,10,4,\"div\",3),jo(6,\"hr\"),Ro(7,\"div\",4),Ro(8,\"div\",5),Ro(9,\"button\",6),Uo(\"click\",(function(){return t.collapses.__all=!t.collapses.__all})),Ro(10,\"mat-icon\"),Sa(11),Ho(),Ho(),Ro(12,\"a\",7),tc(13,mY),Ho(),Ho(),Ro(14,\"div\",8),Do(15,vY,3,3,\"a\",9),Ho(),Ho(),Do(16,MY,9,5,\"div\",10),jo(17,\"hr\"),Ro(18,\"a\",11),tc(19,pY),Ho(),Ro(20,\"a\",12),tc(21,fY),Ho(),Ho()),2&e&&(ys(5),Po(\"ngIf\",t.popularity),ys(6),La(t.collapses.__all?\"expand_less\":\"expand_more\"),ys(3),Po(\"ngbCollapse\",!t.collapses.__all),ys(1),Po(\"ngForOf\",t.allItems),ys(1),Po(\"ngForOf\",t.tags))},directives:[dS,Jy,cT,mu,Gy,Cw,VS,uu],styles:[\".content[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{margin-bottom:4px}.content[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex;font-size:16px}.items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:13px}.category[_ngcontent-%COMP%], .items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex}.category[_ngcontent-%COMP%] > .expander[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;min-width:24px;flex-shrink:1}.category[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{flex-grow:1;text-align:start}.category[_ngcontent-%COMP%] > .items[_ngcontent-%COMP%]{flex:0 1 100%}.content[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{margin:0}.favicon[_ngcontent-%COMP%]{padding-right:4px}\"]}),e})();class SY{constructor(e,t,n,i){this.id=e,this.link=t,this.title=n,this.items=i}}class LY{constructor(e,t,n,i){this.id=e,this.link=t,this.title=n,this.url=i}}class xY{constructor(e){this.delayDurationSelector=e}call(e,t){return t.subscribe(new CY(e,this.delayDurationSelector))}}class CY extends R{constructor(e,t){super(e),this.delayDurationSelector=t,this.completed=!1,this.delayNotifierSubscriptions=[],this.index=0}notifyNext(e,t,n,i,s){this.destination.next(e),this.removeSubscription(s),this.tryComplete()}notifyError(e,t){this._error(e)}notifyComplete(e){const t=this.removeSubscription(e);t&&this.destination.next(t),this.tryComplete()}_next(e){const t=this.index++;try{const n=this.delayDurationSelector(e,t);n&&this.tryDelay(n,e)}catch(n){this.destination.error(n)}}_complete(){this.completed=!0,this.tryComplete(),this.unsubscribe()}removeSubscription(e){e.unsubscribe();const t=this.delayNotifierSubscriptions.indexOf(e);return-1!==t&&this.delayNotifierSubscriptions.splice(t,1),e.outerValue}tryDelay(e,t){const n=A(this,e,t);n&&!n.closed&&(this.destination.add(n),this.delayNotifierSubscriptions.push(n))}tryComplete(){this.completed&&0===this.delayNotifierSubscriptions.length&&this.destination.complete()}}const TY=[\"search\"];function DY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){return en(e),Jo().up()})),Ro(1,\"mat-icon\"),Sa(2,\"keyboard_backspace\"),Ho(),Ho()}}var YY,EY;function OY(e,t){1&e&&(Ro(0,\"span\"),tc(1,YY),Ho())}function IY(e,t){1&e&&jo(0,\"span\",12)}function PY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){en(e),Jo();const t=Yo(3);return Jo().searchQuery=\"\",t.focus()})),Ro(1,\"mat-icon\"),Sa(2,\"clear\"),Ho(),Ho()}}function AY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){en(e);const t=Jo(2);return t.performSearch(t.searchQuery)})),Ro(1,\"mat-icon\"),Sa(2,\"keyboard_return\"),Ho(),Ho()}}function RY(e,t){if(1&e){const e=zo();Ro(0,\"div\",13),Do(1,PY,3,0,\"button\",0),Ro(2,\"input\",14,15),Uo(\"ngModelChange\",(function(t){return en(e),Jo().searchQuery=t})),Ho(),Do(4,AY,3,0,\"button\",0),Ho()}if(2&e){const e=Jo();ys(1),Po(\"ngIf\",e.searchQuery),ys(1),Po(\"ngModel\",e.searchQuery),ys(2),Po(\"ngIf\",e.searchQuery)}}function HY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){en(e);const t=Jo();return t.searchEntry=!t.searchEntry})),Ro(1,\"mat-icon\"),Sa(2,\"search\"),Ho(),Ho()}}function jY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){return en(e),Jo().refresh()})),Ro(1,\"mat-icon\"),Sa(2,\"refresh\"),Ho(),Ho()}}function FY(e,t){if(1&e){const e=zo();Ro(0,\"mat-checkbox\",16),Uo(\"ngModelChange\",(function(t){return en(e),Jo().articleRead=t}))(\"click\",(function(){return en(e),Jo().toggleRead()})),tc(1,EY),Ho()}2&e&&Po(\"ngModel\",Jo().articleRead)}function NY(e,t){1&e&&(Ro(0,\"button\",17),Ro(1,\"mat-icon\"),Sa(2,\"share\"),Ho(),Ho()),2&e&&(Jo(),Po(\"matMenuTriggerFor\",Yo(9)))}function zY(e,t){if(1&e){const e=zo();Ro(0,\"button\",10),Uo(\"click\",(function(){en(e);const n=t.$implicit;return Jo().shareArticleTo(n)})),Sa(1),Ho()}if(2&e){const e=t.$implicit;ys(1),xa(\" \",e.description,\" \")}}function VY(e,t){1&e&&(Ro(0,\"button\",17),Ro(1,\"mat-icon\"),Sa(2,\"more_vert\"),Ho(),Ho()),2&e&&(Jo(),Po(\"matMenuTriggerFor\",Yo(13)))}function WY(e,t){if(1&e){const e=zo();Ro(0,\"button\",10),Uo(\"click\",(function(){return en(e),Jo().toggleOlderFirst()})),Ro(1,\"span\"),Sa(2,\"Older first\"),Ho(),Ho()}}function UY(e,t){if(1&e){const e=zo();Ro(0,\"button\",10),Uo(\"click\",(function(){return en(e),Jo().toggleOlderFirst()})),Ro(1,\"span\"),Sa(2,\"Newer first\"),Ho(),Ho()}}function $Y(e,t){if(1&e){const e=zo();Ro(0,\"button\",10),Uo(\"click\",(function(){return en(e),Jo().markAsRead()})),Ro(1,\"span\"),Sa(2,\"Mark all as read\"),Ho(),Ho()}}YY=\"\\u0421\\u0442\\u0430\\u0442\\u0438\\u0438\",EY=\"\\u041F\\u0440\\u043E\\u0447\\u0435\\u0442\\u0435\\u043D\\u0430\";let BY=(()=>{class e{constructor(t,n,i,s,r,o){this.articleService=t,this.featuresServices=n,this.preferences=i,this.router=s,this.location=r,this.sharingService=o,this.olderFirst=!1,this.showsArticle=!1,this.articleRead=!1,this.searchButton=!1,this.markAllRead=!1,this.inSearch=!1,this.enabledShares=!1,this.shareServices=new Array,this._searchQuery=\"\",this._searchEntry=!1,this.subscriptions=new Array,this.searchQuery=localStorage.getItem(e.key)||\"\"}get searchEntry(){return this._searchEntry}set searchEntry(e){this._searchEntry=e,e&&setTimeout(()=>{this.searchInput.nativeElement.focus()},10)}get searchQuery(){return this._searchQuery}set searchQuery(t){this._searchQuery=t,localStorage.setItem(e.key,t)}ngOnInit(){let e=lD(this.router);this.subscriptions.push(e.pipe(H(e=>null!=e)).subscribe(e=>this.showsArticle=e)),this.articleID=e.pipe(H(e=>null==e?-1:+e.params.articleID),Eb(),nv(1)),this.subscriptions.push(this.articleID.pipe(Wb(e=>{if(-1==e)return xu(!1);let t=!0;return this.articleService.articleObservable().pipe(H(t=>{for(let n of t)if(n.id==e)return n.read;return!1}),(n=e=>e&&!t?Hb(1e3):(t=!1,Hb(0)),e=>e.lift(new xY(n))));var n})).subscribe(e=>this.articleRead=e,e=>console.log(e))),this.subscriptions.push(oD(this.router).pipe(H(e=>null!=e&&\"search\"==e.data.primary)).subscribe(e=>this.inSearch=e,e=>console.log(e))),this.subscriptions.push(this.featuresServices.getFeatures().pipe(Tu(e=>e.search),Wb(t=>e.pipe(H(e=>null==e),Eb(),dD(oD(this.router),(e,t)=>{let n=!1,i=!1,s=!1;if(e)switch(aD([this.router.routerState.snapshot.root]).data.primary){case\"favorite\":s=!0;case\"popular\":break;case\"search\":i=!0;default:n=!0,s=!0}return[n,i,s]})))).subscribe(e=>{this.searchButton=e[0],this.searchEntry=e[1],this.markAllRead=e[2]},e=>console.log(e))),this.subscriptions.push(this.sharingService.enabledServices().subscribe(e=>{this.enabledShares=e.length>0,this.shareServices=e},e=>console.log(e)))}ngOnDestroy(){this.subscriptions.forEach(e=>e.unsubscribe())}toggleOlderFirst(){this.preferences.olderFirst=!this.preferences.olderFirst,this.olderFirst=this.preferences.olderFirst}toggleUnreadOnly(){this.preferences.unreadOnly=!this.preferences.unreadOnly}markAsRead(){this.articleService.readAll()}up(){let e=this.location.path(),t=e.indexOf(\"/article/\");-1!=t?this.router.navigateByUrl(e.substring(0,t)):this.inSearch&&this.router.navigateByUrl(e.substring(0,e.indexOf(\"/search/\")))}toggleRead(){this.articleID.pipe(cp(1),Wb(e=>(-1==e&&lp(),this.articleService.articleObservable().pipe(H(t=>{for(let n of t)if(n.id==e)return n;return null}),cp(1)))),V(e=>this.articleService.read(e.id,!e.read))).subscribe(e=>{},e=>console.log(e))}keyEnter(){this.searchEntry&&this.searchQuery&&this.performSearch(this.searchQuery)}performSearch(e){if(\"search\"==aD([this.router.routerState.snapshot.root]).data.primary){let t=this.location.path().indexOf(\"/search/\")+8;this.router.navigateByUrl(this.location.path().substring(0,t)+encodeURIComponent(e))}else this.router.navigateByUrl(this.location.path()+\"/search/\"+encodeURIComponent(e))}refresh(){this.articleService.refreshArticles()}shareArticleTo(e){this.articleID.pipe(cp(1),Tu(e=>-1!=e),Wb(e=>this.articleService.articleObservable().pipe(H(t=>t.filter(t=>t.id==e)),Tu(e=>e.length>0),H(e=>e[0]))),cp(1)).subscribe(t=>this.sharingService.submit(e.id,t))}}return e.key=\"searchQuery\",e.\\u0275fac=function(t){return new(t||e)(Eo(zD),Eo(QD),Eo(OD),Eo(lT),Eo(tu),Eo(uD))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],viewQuery:function(e,t){var n;1&e&&Ec(TY,!0),2&e&&Dc(n=Rc())&&(t.searchInput=n.first)},hostBindings:function(e,t){1&e&&Uo(\"keydown.enter\",(function(){return t.keyEnter()}))},decls:20,vars:13,consts:[[\"mat-icon-button\",\"\",3,\"click\",4,\"ngIf\"],[4,\"ngIf\"],[\"class\",\"spacer\",4,\"ngIf\"],[\"class\",\"input-group\",4,\"ngIf\"],[3,\"ngModel\",\"ngModelChange\",\"click\",4,\"ngIf\"],[\"mat-icon-button\",\"\",3,\"matMenuTriggerFor\",4,\"ngIf\"],[\"shares\",\"matMenu\"],[\"mat-menu-item\",\"\",3,\"click\",4,\"ngFor\",\"ngForOf\"],[\"other\",\"matMenu\"],[\"mat-menu-item\",\"\",3,\"click\",4,\"ngIf\"],[\"mat-menu-item\",\"\",3,\"click\"],[\"mat-icon-button\",\"\",3,\"click\"],[1,\"spacer\"],[1,\"input-group\"],[\"matInput\",\"\",\"focused\",\"\",1,\"spacer\",\"search\",\"mat-toolbar\",\"mat-primary\",\"form-control\",3,\"ngModel\",\"ngModelChange\"],[\"search\",\"\"],[3,\"ngModel\",\"ngModelChange\",\"click\"],[\"mat-icon-button\",\"\",3,\"matMenuTriggerFor\"]],template:function(e,t){1&e&&(Do(0,DY,3,0,\"button\",0),Do(1,OY,2,0,\"span\",1),Do(2,IY,1,0,\"span\",2),Do(3,RY,5,3,\"div\",3),Do(4,HY,3,0,\"button\",0),Do(5,jY,3,0,\"button\",0),Do(6,FY,2,1,\"mat-checkbox\",4),Do(7,NY,3,1,\"button\",5),Ro(8,\"mat-menu\",null,6),Do(10,zY,2,1,\"button\",7),Ho(),Do(11,VY,3,1,\"button\",5),Ro(12,\"mat-menu\",null,8),Do(14,WY,3,0,\"button\",9),Do(15,UY,3,0,\"button\",9),Ro(16,\"button\",10),Uo(\"click\",(function(){return t.toggleUnreadOnly()})),Ro(17,\"span\"),Sa(18,\"Unread only\"),Ho(),Ho(),Do(19,$Y,3,0,\"button\",9),Ho()),2&e&&(Po(\"ngIf\",t.showsArticle||t.inSearch),ys(1),Po(\"ngIf\",!t.searchEntry),ys(1),Po(\"ngIf\",!t.searchEntry),ys(1),Po(\"ngIf\",t.searchEntry),ys(1),Po(\"ngIf\",t.searchButton),ys(1),Po(\"ngIf\",!t.showsArticle),ys(1),Po(\"ngIf\",t.showsArticle),ys(1),Po(\"ngIf\",t.showsArticle&&t.enabledShares),ys(3),Po(\"ngForOf\",t.shareServices),ys(1),Po(\"ngIf\",!t.showsArticle),ys(3),Po(\"ngIf\",!t.olderFirst),ys(1),Po(\"ngIf\",t.olderFirst),ys(4),Po(\"ngIf\",!t.inSearch&&t.markAllRead))},directives:[mu,HM,uu,EM,Gy,Cw,gM,_h,kh,Cm,bb,zM],styles:[\"[_nghost-%COMP%]{display:flex;align-items:center}.spacer[_ngcontent-%COMP%], [_nghost-%COMP%]{flex:1 1 auto}.search[_ngcontent-%COMP%]{min-height:0;border:none;background:transparent} label{margin-bottom:0}\"]}),e})(),qY=(()=>{class e{ngOnInit(){}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-container\"]],decls:2,vars:0,consts:[[1,\"container\"]],template:function(e,t){1&e&&(Ro(0,\"div\",0),jo(1,\"router-outlet\"),Ho())},directives:[mT],styles:[\"[_nghost-%COMP%]{overflow:auto}\"]}),e})(),GY=(()=>{class e{constructor(e){this.api=e,this.user=this.api.get(\"user/current\").pipe(H(e=>e.user),nv(1))}getCurrentUser(){return this.user}changeUserPassword(e,t){return this.setUserSetting(\"password\",e,{current:t})}setUserSetting(e,t,n){var i=`value=${encodeURIComponent(t)}`;if(n)for(let s in n)i+=`&${s}=${encodeURIComponent(n[s])}`;return this.api.put(`user/settings/${e}`,i,new Iu({\"Content-Type\":\"application/x-www-form-urlencoded\"})).pipe(H(e=>e.success))}list(){return this.api.get(\"user\").pipe(H(e=>e.users))}addUser(e,t){var n=new FormData;return n.append(\"login\",e),n.append(\"password\",t),this.api.post(\"user\",n).pipe(H(e=>e.success))}deleteUser(e){return this.api.delete(`user/${e}`).pipe(H(e=>e.success))}toggleActive(e,t){return this.api.put(`user/${e}/settings/is-active`,`value=${t}`,new Iu({\"Content-Type\":\"application/x-www-form-urlencoded\"})).pipe(H(e=>e.success))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();var JY;JY=\"\\u041F\\u0435\\u0440\\u0441\\u043E\\u043D\\u0430\\u043B\\u0438\\u0437\\u0438\\u0440\\u0430\\u043D\\u0435\";const KY=[\"placeholder\",\"\\u041F\\u044A\\u0440\\u0432\\u043E \\u0438\\u043C\\u0435\"],ZY=[\"placeholder\",\"\\u041F\\u043E\\u0441\\u043B\\u0435\\u0434\\u043D\\u043E \\u0438\\u043C\\u0435\"],QY=[\"placeholder\",\"\\u041F\\u043E\\u0449\\u0430\"],XY=[\"placeholder\",\"\\u0415\\u0437\\u0438\\u043A\"];var eE,tE,nE;function iE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,tE),Ho())}eE=\"\\u041F\\u0440\\u043E\\u043C\\u044F\\u043D\\u0430 \\u043D\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\",tE=\"\\u041C\\u043E\\u043B\\u044F \\u0432\\u044A\\u0432\\u0435\\u0434\\u0435\\u0442\\u0435 \\u043F\\u0440\\u0430\\u0432\\u0438\\u043B\\u0435\\u043D \\u0430\\u0434\\u0440\\u0435\\u0441 \\u043D\\u0430 \\u043F\\u043E\\u0449\\u0430\",nE=\"\\u041F\\u0440\\u043E\\u043C\\u0435\\u043D\\u0435\\u0442\\u0435 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\\u0442\\u0430\";const sE=[\"placeholder\",\"\\u041D\\u043E\\u0432\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\"],rE=[\"placeholder\",\"\\u041F\\u043E\\u0442\\u0432\\u044A\\u0440\\u0436\\u0434\\u0430\\u0432\\u0430\\u043D\\u0435 \\u043D\\u043E\\u0432\\u0430\\u0442\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\"];var oE,aE,lE;function cE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,aE),Ho())}function dE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,lE),Ho())}oE=\"\\u0417\\u0430\\u043F\\u0438\\u0441\\u0432\\u0430\\u043D\\u0435\",aE=\"\\u041D\\u0435\\u0432\\u0430\\u043B\\u0438\\u0434\\u043D\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\",lE=\"\\u041F\\u0430\\u0440\\u043E\\u043B\\u0438\\u0442\\u0435 \\u043D\\u0435 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\\u0442\";let uE=(()=>{class e{constructor(e,t){this.userService=e,this.dialog=t,this.emailFormControl=new pm(\"\",[Dh.email]),this.language=localStorage.getItem(\"locale\")||\"en\"}ngOnInit(){this.userService.getCurrentUser().subscribe(e=>{this.firstName=e.firstName,this.lastName=e.lastName,this.emailFormControl.setValue(e.email)},e=>console.log(e))}firstNameChange(){this.userService.setUserSetting(\"first-name\",this.firstName).subscribe(()=>{},e=>console.log(e))}lastNameChange(){this.userService.setUserSetting(\"last-name\",this.lastName).subscribe(()=>{},e=>console.log(e))}emailChange(){this.emailFormControl.updateValueAndValidity(),this.emailFormControl.valid&&this.userService.setUserSetting(\"email\",this.emailFormControl.value).subscribe(e=>{e||this.emailFormControl.setErrors({email:!0})},e=>console.log(e))}languageChange(e){location.href=\"/\"+e+\"/\"}changePassword(){this.dialog.open(hE,{width:\"250px\"})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(GY),Eo(rw))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-general\"]],decls:26,vars:7,consts:[[1,\"title\"],[\"matInput\",\"\",3,\"ngModel\",\"ngModelChange\",\"change\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"email\",3,\"formControl\",\"change\",6,\"placeholder\"],[4,\"ngIf\"],[3,\"ngModel\",\"change\",\"ngModelChange\",6,\"placeholder\"],[3,\"value\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,JY),Ho(),Ro(2,\"mat-form-field\"),Ro(3,\"input\",1),nc(4,KY),Uo(\"ngModelChange\",(function(e){return t.firstName=e}))(\"change\",(function(){return t.firstNameChange()})),Ho(),Ho(),jo(5,\"br\"),Ro(6,\"mat-form-field\"),Ro(7,\"input\",1),nc(8,ZY),Uo(\"ngModelChange\",(function(e){return t.lastName=e}))(\"change\",(function(){return t.lastNameChange()})),Ho(),Ho(),jo(9,\"br\"),Ro(10,\"mat-form-field\"),Ro(11,\"input\",2),nc(12,QY),Uo(\"change\",(function(){return t.emailChange()})),Ho(),Do(13,iE,2,0,\"mat-error\",3),Ho(),jo(14,\"br\"),Ro(15,\"mat-form-field\"),Ro(16,\"mat-select\",4),nc(17,XY),Uo(\"change\",(function(e){return t.languageChange(e.value)}))(\"ngModelChange\",(function(e){return t.language=e})),Ro(18,\"mat-option\",5),Sa(19,\"English\"),Ho(),Ro(20,\"mat-option\",5),Sa(21,\"\\u0411\\u044a\\u043b\\u0433\\u0430\\u0440\\u0441\\u043a\\u0438\"),Ho(),Ho(),Ho(),jo(22,\"br\"),Ro(23,\"div\",6),Ro(24,\"button\",7),Uo(\"click\",(function(){return t.changePassword()})),tc(25,eE),Ho(),Ho()),2&e&&(ys(3),Po(\"ngModel\",t.firstName),ys(4),Po(\"ngModel\",t.lastName),ys(4),Po(\"formControl\",t.emailFormControl),ys(2),Po(\"ngIf\",t.emailFormControl.hasError(\"email\")),ys(3),Po(\"ngModel\",t.language),ys(2),Po(\"value\",\"en\"),ys(2),Po(\"value\",\"bg\"))},directives:[dM,gM,_h,kh,Cm,Em,mu,_k,Fy,Gy,Kw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),e})(),hE=(()=>{class e{constructor(e,t){this.dialogRef=e,this.userService=t,this.currentFormControl=new pm(\"\",[Dh.required]),this.passwordFormControl=new pm(\"\",[Dh.required])}save(){this.passwordFormControl.value==this.passwordConfirm?(this.currentFormControl.updateValueAndValidity(),this.currentFormControl.valid&&this.userService.changeUserPassword(this.passwordFormControl.value,this.currentFormControl.value).subscribe(e=>{e?this.close():this.currentFormControl.setErrors({auth:!0})},e=>{400!=e.status?console.log(e):this.currentFormControl.setErrors({auth:!0})})):this.passwordFormControl.setErrors({mismatch:!0})}close(){this.dialogRef.close()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ew),Eo(GY))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:18,vars:5,consts:[[1,\"title\"],[\"matInput\",\"\",\"type\",\"password\",\"placeholder\",\"Current password\",\"required\",\"\",3,\"formControl\"],[4,\"ngIf\"],[\"matInput\",\"\",\"type\",\"password\",\"required\",\"\",3,\"formControl\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"password\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h6\",0),tc(1,nE),Ho(),Ro(2,\"mat-form-field\"),jo(3,\"input\",1),Do(4,cE,2,0,\"mat-error\",2),Ho(),jo(5,\"br\"),Ro(6,\"mat-form-field\"),Ro(7,\"input\",3),nc(8,sE),Ho(),Do(9,dE,2,0,\"mat-error\",2),Ho(),jo(10,\"br\"),Ro(11,\"mat-form-field\"),Ro(12,\"input\",4),nc(13,rE),Uo(\"ngModelChange\",(function(e){return t.passwordConfirm=e})),Ho(),Ho(),jo(14,\"br\"),Ro(15,\"div\",5),Ro(16,\"button\",6),Uo(\"click\",(function(){return t.save()})),tc(17,oE),Ho(),Ho()),2&e&&(ys(3),Po(\"formControl\",t.currentFormControl),ys(1),Po(\"ngIf\",t.currentFormControl.hasError(\"auth\")),ys(3),Po(\"formControl\",t.passwordFormControl),ys(2),Po(\"ngIf\",t.passwordFormControl.hasError(\"mismatch\")),ys(3),Po(\"ngModel\",t.passwordConfirm))},directives:[dM,gM,_h,Vm,kh,Em,mu,Cm,Gy,Kw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),e})();const mE=[\"opmlInput\"];var pE,fE;pE=\"\\u041E\\u0442\\u043A\\u0440\\u0438\\u0432\\u0430\\u043D\\u0435/\\u0438\\u043C\\u043F\\u043E\\u0440\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435 \\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",fE=\" You can enter the url of a feed directly, as well as a url of a site that may contain one or more feeds, or a search query. \";const _E=[\"placeholder\",\"\\u0410\\u0434\\u0440\\u0435\\u0441/\\u043A\\u043B\\u044E\\u0447\\u043E\\u0432\\u0438 \\u0434\\u0443\\u043C\\u0438\"];var gE;gE=\"\\u041C\\u043E\\u0436\\u0435 \\u0434\\u0430 \\u0441\\u0435 \\u043A\\u0430\\u0447\\u0438 \\u0438 OPML \\u0444\\u0430\\u0439\\u043B.\";const yE=[\"placeholder\",\"\\u0418\\u043C\\u043F\\u043E\\u0440\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435 \\u043D\\u0430 OPML\"];var bE,vE,wE,ME,kE,SE,LE,xE,CE,TE;function DE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,vE),Ho())}function YE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,wE),Ho())}function EE(e,t){1&e&&jo(0,\"mat-progress-bar\",7)}function OE(e,t){if(1&e){const e=zo();Ro(0,\"div\"),Ro(1,\"p\"),tc(2,fE),Ho(),Ro(3,\"mat-form-field\"),Ro(4,\"input\",2),nc(5,_E),Uo(\"ngModelChange\",(function(t){return en(e),Jo().query=t}))(\"keydown.Enter\",(function(){return en(e),Jo().search()})),Ho(),Do(6,DE,2,0,\"mat-error\",1),Do(7,YE,2,0,\"mat-error\",1),Ho(),jo(8,\"br\"),Ro(9,\"p\"),tc(10,gE),Ho(),Ro(11,\"input\",3,4),nc(13,yE),Uo(\"keydown.Enter\",(function(){return en(e),Jo().search()})),Ho(),jo(14,\"br\"),Ro(15,\"button\",5),Uo(\"click\",(function(){return en(e),Jo().search()})),tc(16,bE),Ho(),jo(17,\"br\"),Do(18,EE,1,0,\"mat-progress-bar\",6),Ho()}if(2&e){const e=Jo();ys(4),Po(\"ngModel\",e.query),ys(2),Po(\"ngIf\",e.queryFormControl.hasError(\"empty\")),ys(1),Po(\"ngIf\",e.queryFormControl.hasError(\"search\")),ys(8),Po(\"disabled\",e.loading),ys(3),Po(\"ngIf\",e.loading)}}function IE(e,t){1&e&&(Ro(0,\"p\"),tc(1,ME),Ho())}function PE(e,t){if(1&e&&(Ro(0,\"div\"),Ro(1,\"mat-checkbox\"),Sa(2),Ho(),jo(3,\"br\"),Ro(4,\"a\",11),Sa(5),Ho(),jo(6,\"hr\"),Ho()),2&e){const e=t.$implicit,n=Jo(2);ys(2),La(e.title),ys(2),ta(\"href\",n.baseURL(e.link),es),ys(1),La(e.description||e.title)}}function AE(e,t){1&e&&(Ro(0,\"p\"),Sa(1,\" No feeds selected \"),Ho())}function RE(e,t){if(1&e){const e=zo();Ro(0,\"button\",5),Uo(\"click\",(function(){return en(e),Jo(2).add()})),tc(1,kE),Ho()}2&e&&Po(\"disabled\",Jo(2).loading)}function HE(e,t){if(1&e){const e=zo();Ro(0,\"button\",12),Uo(\"click\",(function(){return en(e),Jo(2).phase=\"query\"})),tc(1,SE),Ho()}}function jE(e,t){if(1&e&&(Ro(0,\"div\"),Do(1,IE,2,0,\"p\",1),Do(2,PE,7,3,\"div\",8),Do(3,AE,2,0,\"p\",1),Do(4,RE,2,1,\"button\",9),Do(5,HE,2,0,\"button\",10),Ho()),2&e){const e=Jo();ys(1),Po(\"ngIf\",0==e.feeds.length),ys(1),Po(\"ngForOf\",e.feeds),ys(1),Po(\"ngIf\",e.emptySelection),ys(1),Po(\"ngIf\",e.feeds.length>0),ys(1),Po(\"ngIf\",0==e.feeds.length)}}function FE(e,t){1&e&&(Ro(0,\"p\"),tc(1,xE),Ho())}function NE(e,t){1&e&&(Ro(0,\"p\"),tc(1,CE),Ho())}function zE(e,t){if(1&e&&(Ro(0,\"div\"),Ro(1,\"p\"),tc(2,TE),Ho(),Ho()),2&e){const e=t.$implicit;ys(2),rc(e.title)(e.error),oc(2)}}function VE(e,t){if(1&e){const e=zo();Ro(0,\"div\"),Do(1,FE,2,0,\"p\",1),Do(2,NE,2,0,\"p\",1),Do(3,zE,3,2,\"div\",8),Ro(4,\"button\",12),Uo(\"click\",(function(){return en(e),Jo().phase=\"query\"})),tc(5,LE),Ho(),Ho()}if(2&e){const e=Jo();ys(1),Po(\"ngIf\",!e.addFeedResult.success),ys(1),Po(\"ngIf\",e.addFeedResult.success),ys(1),Po(\"ngForOf\",e.addFeedResult.errors)}}bE=\"\\u0422\\u044A\\u0440\\u0441\\u0435\\u043D\\u0435\",vE=\"\\u041D\\u0435 \\u0441\\u0430 \\u0437\\u0430\\u0434\\u0430\\u0434\\u0435\\u043D\\u0438 \\u043A\\u043B\\u044E\\u0447\\u043E\\u0432\\u0438 \\u0434\\u0443\\u043C\\u0438 \\u0438\\u043B\\u0438 \\u0444\\u0430\\u0439\\u043B\",wE=\"\\u0413\\u0440\\u0435\\u0448\\u043A\\u0430 \\u043F\\u0440\\u0438 \\u0442\\u044A\\u0440\\u0441\\u0435\\u043D\\u0435\",ME=\"\\u041D\\u044F\\u043C\\u0430 \\u043D\\u0430\\u043C\\u0435\\u0440\\u0435\\u043D\\u0438 \\u043D\\u043E\\u0432\\u0438 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",kE=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435\",SE=\"\\u041E\\u0442\\u043A\\u0440\\u0438\\u0432\\u0430\\u043D\\u0435 \\u043D\\u0430 \\u043E\\u0449\\u0435 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",LE=\"\\u041E\\u0442\\u043A\\u0440\\u0438\\u0432\\u0430\\u043D\\u0435 \\u043D\\u0430 \\u043E\\u0449\\u0435 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",xE=\"\\u041D\\u044F\\u043C\\u0430 \\u0434\\u043E\\u0431\\u0430\\u0432\\u0435\\u043D\\u0438 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",CE=\"\\u0415\\u043C\\u0438\\u0441\\u0438\\u0438\\u0442\\u0435 \\u0441\\u0430 \\u0434\\u043E\\u0431\\u0430\\u0432\\u0435\\u043D\\u0438 \\u0443\\u0441\\u043F\\u0435\\u0448\\u043D\\u043E.\",TE=\"\\n \\u0413\\u0440\\u0435\\u0448\\u043A\\u0430 \\u043F\\u0440\\u0438 \\u0434\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435 \\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u044F \" + \"\\ufffd0\\ufffd\" + \": \" + \"\\ufffd1\\ufffd\" + \"\\n \";let WE=(()=>{class e{constructor(e){this.feedService=e,this.query=\"\",this.phase=\"query\",this.loading=!1,this.feeds=new Array,this.emptySelection=!1,this.queryFormControl=new pm(\"\")}search(){if(this.loading)return;if(\"\"==this.query&&!this.opml.nativeElement.files.length)return void this.queryFormControl.setErrors({empty:!0});let e;if(this.loading=!0,this.opml.nativeElement.files.length){let t=this.opml.nativeElement.files[0];e=v.create(e=>{let n=new FileReader;n.onload=function(t){e.next({opml:t.target.result,dryRun:!0}),e.complete()},n.onerror=function(t){e.error(t)},n.readAsText(t)}).pipe(V(e=>this.feedService.importOPML(e)))}else e=this.feedService.discover(this.query);e.subscribe(e=>{this.loading=!1,this.phase=\"search-result\",this.feeds=e},e=>{this.loading=!1,this.queryFormControl.setErrors({search:!0}),console.log(e)})}add(){if(this.loading)return;let e=new Array;this.feedChecks.forEach((t,n)=>{t.checked&&e.push(this.feeds[n].link)}),0!=e.length?(this.loading=!0,this.feedService.addFeeds(e).subscribe(e=>{this.loading=!1,this.addFeedResult=e,this.phase=\"add-result\"},e=>{this.loading=!1,console.log(e)})):this.emptySelection=!0}baseURL(e){let t=document.createElement(\"a\");return t.href=e,t.pathname=\"\",t.href}}return e.\\u0275fac=function(t){return new(t||e)(Eo(DD))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-discovery\"]],viewQuery:function(e,t){var n;1&e&&(Ec(mE,!0),Ec(bb,!0)),2&e&&(Dc(n=Rc())&&(t.opml=n.first),Dc(n=Rc())&&(t.feedChecks=n))},decls:5,vars:3,consts:[[1,\"title\"],[4,\"ngIf\"],[\"matInput\",\"\",3,\"ngModel\",\"ngModelChange\",\"keydown.Enter\",6,\"placeholder\"],[\"type\",\"file\",\"accept\",\".opml\",3,\"keydown.Enter\",6,\"placeholder\"],[\"opmlInput\",\"\"],[\"mat-raised-button\",\"\",3,\"disabled\",\"click\"],[\"mode\",\"indeterminate\",4,\"ngIf\"],[\"mode\",\"indeterminate\"],[4,\"ngFor\",\"ngForOf\"],[\"mat-raised-button\",\"\",3,\"disabled\",\"click\",4,\"ngIf\"],[\"mat-raised-button\",\"\",3,\"click\",4,\"ngIf\"],[1,\"discovery-link\",3,\"href\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,pE),Ho(),Do(2,OE,19,5,\"div\",1),Do(3,jE,6,5,\"div\",1),Do(4,VE,6,3,\"div\",1)),2&e&&(ys(2),Po(\"ngIf\",\"query\"==t.phase),ys(1),Po(\"ngIf\",\"search-result\"==t.phase),ys(1),Po(\"ngIf\",\"add-result\"==t.phase))},directives:[mu,dM,gM,_h,kh,Cm,Gy,Kw,JM,uu,bb],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}input[type=file][_ngcontent-%COMP%]{width:100%;border-bottom:1px solid grey;padding-bottom:4px;margin-bottom:1em}mat-progress-bar[_ngcontent-%COMP%]{margin-top:1em}.discovery-link[_ngcontent-%COMP%]{display:block;text-align:end}\"]}),e})();const UE=[\"downloader\"];var $E,BE;function qE(e,t){1&e&&(Ro(0,\"p\",7),Sa(1,\" No feeds have been added\\n\"),Ho())}$E=\"\\u0423\\u043F\\u0440\\u0430\\u0432\\u043B\\u0435\\u043D\\u0438\\u0435 \\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",BE=\"\\u0415\\u043A\\u0441\\u043F\\u043E\\u0440\\u0442 \\u0432 OPML \\u0444\\u043E\\u0440\\u043C\\u0430\\u0442\";const GE=[\"placeholder\",\"\\u0422\\u0430\\u0433\\u043E\\u0432\\u0435\"];function JE(e,t){if(1&e){const e=zo();Ro(0,\"div\",8),jo(1,\"img\",9),Ro(2,\"a\",10),Sa(3),Ho(),Ro(4,\"button\",11),Uo(\"click\",(function(){en(e);const n=t.$implicit;return Jo().showError(n[0].updateError)})),Ro(5,\"mat-icon\"),Sa(6,\"warning\"),Ho(),Ho(),Ro(7,\"mat-form-field\",12),Ro(8,\"input\",13),nc(9,GE),Uo(\"change\",(function(n){en(e);const i=t.$implicit;return Jo().tagsChange(n,i[0].id)})),Ho(),Ho(),Ro(10,\"button\",14),Uo(\"click\",(function(n){en(e);const i=t.$implicit;return Jo().deleteFeed(n,i[0].id)})),Ro(11,\"mat-icon\"),Sa(12,\"delete\"),Ho(),Ho(),Ho()}if(2&e){const e=t.$implicit,n=Jo();ys(1),ta(\"src\",n.favicon(e[0].link),es),ys(1),ta(\"href\",e[0].link,es),ys(1),La(e[0].title),ys(1),ua(\"visible\",e[0].updateError),ys(4),ta(\"value\",e[1].join(\", \"))}}var KE;function ZE(e,t){if(1&e&&(Ro(0,\"li\"),Sa(1),Ho()),2&e){const e=t.$implicit;ys(1),La(e)}}KE=\"\\u0417\\u0430\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\";let QE=(()=>{class e{constructor(e,t,n,i){this.feedService=e,this.tagService=t,this.faviconService=n,this.errorDialog=i,this.feeds=new Array}ngOnInit(){this.feedService.getFeeds().pipe(dD(this.tagService.getTagsFeedIDs(),(e,t)=>{let n=new Map;for(let i of t)for(let e of i.ids)n.has(e)?n.get(e).push(i.tag.value):n.set(e,[i.tag.value]);return e.map(e=>[e,n.get(e.id)||[]])})).subscribe(e=>this.feeds=e||[],e=>console.log(e))}favicon(e){return this.faviconService.iconURL(e)}tagsChange(e,t){this.feedService.updateTags(t,e.target.value.split(\",\").map(e=>e.trim())).subscribe(e=>{},e=>console.log(e))}showError(e){this.errorDialog.open(XE,{width:\"300px\",data:e.split(\"\\n\").filter(e=>e)})}deleteFeed(e,t){this.feedService.deleteFeed(t).subscribe(t=>{if(t){let t=e.target.parentNode;for(;(t=t.parentElement)&&!t.classList.contains(\"feed\"););t.parentNode.removeChild(t)}},e=>console.log(e))}exportOPML(){this.feedService.exportOPML().subscribe(e=>{this.downloader.nativeElement.href=\"data:text/x-opml+xml,\"+encodeURIComponent(e),this.downloader.nativeElement.click()},e=>console.log(e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(DD),Eo(YD),Eo(dY),Eo(rw))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-management\"]],viewQuery:function(e,t){var n;1&e&&Ec(UE,!0,Ka),2&e&&Dc(n=Rc())&&(t.downloader=n.first)},decls:9,vars:2,consts:[[1,\"title\"],[\"u18n\",\"\",4,\"ngIf\"],[\"class\",\"feed\",4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"hidden\",\"\",\"download\",\"feeds.opml\"],[\"downloader\",\"\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"u18n\",\"\"],[1,\"feed\"],[1,\"favicon\",3,\"src\"],[1,\"name\",3,\"href\"],[\"mat-icon-button\",\"\",1,\"error\",3,\"click\"],[1,\"tags\"],[\"matInput\",\"\",3,\"value\",\"change\",6,\"placeholder\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,$E),Ho(),Do(2,qE,2,0,\"p\",1),Do(3,JE,13,6,\"div\",2),Ro(4,\"div\",3),jo(5,\"a\",4,5),Ro(7,\"button\",6),Uo(\"click\",(function(){return t.exportOPML()})),tc(8,BE),Ho(),Ho()),2&e&&(ys(2),Po(\"ngIf\",0==t.feeds.length),ys(1),Po(\"ngForOf\",t.feeds))},directives:[mu,uu,Gy,Cw,dM,gM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".feed[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.favicon[_ngcontent-%COMP%]{width:16px;height:16px;margin-right:5px;flex-shrink:1}.name[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{flex:1 0 0;min-width:250px}.tags[_ngcontent-%COMP%]{width:auto}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}\"]}),e})(),XE=(()=>{class e{constructor(e,t){this.dialogRef=e,this.errors=t}close(){this.dialogRef.close()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ew),Eo(tw))},e.\\u0275cmp=yt({type:e,selectors:[[\"error-dialog\"]],decls:5,vars:1,consts:[[2,\"max-height\",\"85vh\",\"overflow\",\"auto\"],[4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"ul\",0),Do(1,ZE,2,1,\"li\",1),Ho(),Ro(2,\"div\",2),Ro(3,\"button\",3),Uo(\"click\",(function(){return t.close()})),tc(4,KE),Ho(),Ho()),2&e&&(ys(1),Po(\"ngForOf\",t.errors))},directives:[uu,Gy],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".feed[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.favicon[_ngcontent-%COMP%]{width:16px;height:16px;margin-right:5px;flex-shrink:1}.name[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{flex:1 0 0;min-width:250px}.tags[_ngcontent-%COMP%]{width:auto}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}\"]}),e})();var eO,tO,nO,iO,sO,rO,oO,aO,lO,cO,dO,uO,hO,mO;function pO(e,t){1&e&&(Ro(0,\"p\"),tc(1,nO),Ho())}function fO(e,t){1&e&&(Ro(0,\"span\"),tc(1,sO),Ho())}function _O(e,t){1&e&&(Ro(0,\"span\"),tc(1,rO),Ho())}function gO(e,t){if(1&e&&(Ro(0,\"span\"),Do(1,fO,2,0,\"span\",1),Do(2,_O,2,0,\"span\",1),Ro(3,\"span\",13),Sa(4),Ho(),Ro(5,\"span\",14),tc(6,iO),Ho(),Ho()),2&e){const e=Jo().$implicit;ys(1),Po(\"ngIf\",!e.inverseURL),ys(1),Po(\"ngIf\",e.inverseURL),ys(2),La(e.urlTerm)}}function yO(e,t){1&e&&(Ro(0,\"span\",15),Sa(1,\" and \"),Ho())}function bO(e,t){1&e&&(Ro(0,\"span\"),tc(1,aO),Ho())}function vO(e,t){1&e&&(Ro(0,\"span\"),tc(1,lO),Ho())}function wO(e,t){if(1&e&&(Ro(0,\"span\"),Do(1,bO,2,0,\"span\",1),Do(2,vO,2,0,\"span\",1),Ro(3,\"span\",13),Sa(4),Ho(),Ro(5,\"span\",16),tc(6,oO),Ho(),Ho()),2&e){const e=Jo().$implicit;ys(1),Po(\"ngIf\",!e.inverseTitle),ys(1),Po(\"ngIf\",e.inverseTitle),ys(2),La(e.titleTerm)}}function MO(e,t){1&e&&(Ro(0,\"span\",17),tc(1,cO),Ho())}function kO(e,t){1&e&&(Ro(0,\"span\",18),tc(1,dO),Ho())}function SO(e,t){1&e&&(Ro(0,\"span\",17),tc(1,uO),Ho())}function LO(e,t){1&e&&(Ro(0,\"span\",18),tc(1,hO),Ho())}function xO(e,t){if(1&e&&(Ro(0,\"span\",19),Sa(1),Ho()),2&e){const e=Jo().$implicit,t=Jo();ys(1),La(t.tagLabel(e.tagID))}}function CO(e,t){if(1&e&&(Ro(0,\"span\",20),Sa(1),Ho()),2&e){const e=Jo().$implicit,t=Jo();ys(1),La(t.feedsLabel(e.feedIDs))}}function TO(e,t){if(1&e){const e=zo();Ro(0,\"div\",5),Ro(1,\"div\",6),Do(2,gO,7,3,\"span\",1),Do(3,yO,2,0,\"span\",7),Do(4,wO,7,3,\"span\",1),Do(5,MO,2,0,\"span\",8),Do(6,kO,2,0,\"span\",9),Do(7,SO,2,0,\"span\",8),Do(8,LO,2,0,\"span\",9),Do(9,xO,2,1,\"span\",10),Do(10,CO,2,1,\"span\",11),Ho(),Ro(11,\"button\",12),Uo(\"click\",(function(n){en(e);const i=t.$implicit;return Jo().deleteFilter(n,i)})),Ro(12,\"mat-icon\"),Sa(13,\"delete\"),Ho(),Ho(),Ho()}if(2&e){const e=t.$implicit;ys(2),Po(\"ngIf\",e.urlTerm),ys(1),Po(\"ngIf\",e.urlTerm&&e.titleTerm),ys(1),Po(\"ngIf\",e.titleTerm),ys(1),Po(\"ngIf\",e.inverseFeeds&&e.tagID),ys(1),Po(\"ngIf\",e.inverseFeeds&&e.feedIDs&&!e.tagID),ys(1),Po(\"ngIf\",e.tagID),ys(1),Po(\"ngIf\",e.feedIDs&&!e.tagID),ys(1),Po(\"ngIf\",e.tagID),ys(1),Po(\"ngIf\",e.feedIDs)}}eO=\"\\u0423\\u043F\\u0440\\u0430\\u0432\\u043B\\u0435\\u043D\\u0438\\u0435 \\u043D\\u0430 \\u0444\\u0438\\u043B\\u0442\\u0440\\u0438\",tO=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435 \\u043D\\u0430 \\u0444\\u0438\\u043B\\u0442\\u044A\\u0440\",nO=\"\\u041D\\u044F\\u043C\\u0430 \\u0434\\u0435\\u0444\\u0438\\u043D\\u0438\\u0440\\u0430\\u043D\\u0438 \\u0444\\u0438\\u043B\\u0442\\u0440\\u0438\",iO=\"\\u043F\\u043E URL\",sO=\"\\u0421\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\",rO=\"\\u041D\\u0435 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\",oO=\"\\u043F\\u043E \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\",aO=\"\\u0421\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\",lO=\"\\u041D\\u0435 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\",cO=\"\\u0431\\u0435\\u0437 \\u0442\\u0430\\u0433:\",dO=\"\\u0431\\u0435\\u0437 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438:\",uO=\"\\u043D\\u0430 \\u0442\\u0430\\u0433:\",hO=\"\\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438:\",mO=\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u0440\\u0438\\u0442\\u0435 \\u043C\\u043E\\u0433\\u0430\\u0442 \\u0434\\u0430 \\u0431\\u044A\\u0434\\u0430\\u0442 \\u043F\\u0440\\u0438\\u043B\\u043E\\u0436\\u0435\\u043D\\u0438 \\u043A\\u044A\\u043C \\u0430\\u0434\\u0440\\u0435\\u0441\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u044F\\u0442\\u0430 \\u043D\\u0430 \\u0441\\u0442\\u0430\\u0442\\u0438\\u0438\\u0442\\u0435. \\u041F\\u043E\\u043D\\u0435 \\u0435\\u0434\\u043D\\u0430 \\u0446\\u0435\\u043B \\u0442\\u0440\\u044F\\u0431\\u0432\\u0430 \\u0434\\u0430 \\u0431\\u044A\\u0434\\u0435 \\u0437\\u0430\\u0434\\u0430\\u0434\\u0435\\u043D\\u0430:\\n\\t\\t\";const DO=[\"placeholder\",\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u0440\\u0438\\u0440\\u0430\\u043D\\u0435 \\u043F\\u043E \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\\n\\t\\t\"];var YO;YO=\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u044A\\u0440\\u044A\\u0442 \\u0435 \\u0430\\u043A\\u0442\\u0438\\u0432\\u0435\\u043D \\u0430\\u043A\\u043E \\u0442\\u0435\\u043A\\u0441\\u0442\\u0430 \\u043D\\u0435 \\u0435 \\u0447\\u0430\\u0441\\u0442 \\u043E\\u0442 \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\\u0442\\u043E.\\n \";const EO=[\"placeholder\",\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u0440\\u0438\\u0440\\u0430\\u043D\\u0435 \\u043F\\u043E \\u0430\\u0434\\u0440\\u0435\\u0441\\n\\t\\t\"];var OO,IO,PO,AO,RO,HO,jO,FO;function NO(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,HO),Ho())}function zO(e,t){1&e&&(Ro(0,\"span\"),tc(1,jO),Ho())}function VO(e,t){1&e&&(Ro(0,\"span\"),tc(1,FO),Ho())}OO=\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u044A\\u0440\\u044A\\u0442 \\u0435 \\u0430\\u043A\\u0442\\u0438\\u0432\\u0435\\u043D \\u0430\\u043A\\u043E \\u0442\\u0435\\u043A\\u0441\\u0442\\u0430 \\u043D\\u0435 \\u0435 \\u0447\\u0430\\u0441\\u0442 \\u043E\\u0442 \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\\u0442\\u043E.\\n \",IO=\"\\u041D\\u0435\\u0437\\u0430\\u0434\\u044A\\u043B\\u0436\\u0438\\u0442\\u0435\\u043B\\u043D\\u0438 \\u043F\\u0430\\u0440\\u0430\\u043C\\u0435\\u0442\\u0440\\u0438\",PO=\"\\u0424\\u0438\\u043B\\u0442\\u044A\\u0440\\u044A\\u0442 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430 \\u0430\\u043A\\u043E \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\\u0442\\u043E \\u043D\\u0435 \\u0435 \\u043E\\u0442 \\u0438\\u0437\\u0431\\u0440\\u0430\\u043D\\u0438\\u0442\\u0435 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438/\\u0442\\u0430\\u0433.\",AO=\"\\u0417\\u0430\\u043F\\u0438\\u0441\\u0432\\u0430\\u043D\\u0435\",RO=\"\\u0417\\u0430\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\",HO=\"\\u0424\\u0438\\u043B\\u0442\\u044A\\u0440\\u044A\\u0442 \\u0442\\u0440\\u044F\\u0431\\u0432\\u0430 \\u0434\\u0430 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430 \\u043F\\u043E\\u043D\\u0435 \\u0441 URL \\u0438\\u043B\\u0438 \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\",jO=\"\\u041B\\u0438\\u043C\\u0438\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435 \\u0434\\u043E \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",FO=\"\\u041B\\u0438\\u043C\\u0438\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435 \\u0434\\u043E \\u0442\\u0430\\u0433\";const WO=[\"placeholder\",\"\\u0415\\u043C\\u0438\\u0441\\u0438\\u0438\"];function UO(e,t){if(1&e&&(Ro(0,\"mat-option\",12),Sa(1),Ho()),2&e){const e=t.$implicit;Po(\"value\",e.id),ys(1),xa(\" \",e.title,\" \")}}function $O(e,t){if(1&e&&(Ro(0,\"mat-form-field\"),Ro(1,\"mat-select\",10),nc(2,WO),Do(3,UO,2,2,\"mat-option\",11),Ho(),Ho()),2&e){const e=Jo();ys(3),Po(\"ngForOf\",e.feeds)}}const BO=[\"placeholder\",\"\\u0422\\u0430\\u0433\"];function qO(e,t){if(1&e&&(Ro(0,\"mat-option\",12),Sa(1),Ho()),2&e){const e=t.$implicit;Po(\"value\",e.id),ys(1),xa(\" \",e.value,\" \")}}function GO(e,t){if(1&e&&(Ro(0,\"mat-form-field\"),Ro(1,\"mat-select\",13),nc(2,BO),Do(3,qO,2,2,\"mat-option\",11),Ho(),Ho()),2&e){const e=Jo();ys(3),Po(\"ngForOf\",e.tags)}}let JO=(()=>{class e{constructor(e,t,n,i){this.userService=e,this.feedService=t,this.tagService=n,this.dialog=i,this.filters=new Array}ngOnInit(){this.feedService.getFeeds().pipe(dD(this.tagService.getTags(),this.userService.getCurrentUser(),(e,t,n)=>[e,t,n])).subscribe(e=>{this.feeds=e[0],this.tags=e[1],this.filters=e[2].profileData.filters||[]},e=>console.log(e))}addFilter(){this.dialog.open(KO,{width:\"350px\",data:{feeds:this.feeds,tags:this.tags}}).afterClosed().subscribe(e=>this.ngOnInit())}feedsLabel(e){let t=this.feeds.filter(t=>-1!=e.indexOf(t.id)).map(e=>e.title);return t.length?t.join(\", \"):`${e}`}tagLabel(e){let t=this.tags.filter(t=>t.id==e).map(e=>e.value);return t.length?t[0]:`${e}`}deleteFilter(e,t){this.userService.getCurrentUser().pipe(V(e=>{let n=e.profileData||new Map,i=n.filters||[],s=i.filter(e=>e.urlTerm!=t.urlTerm||e.inverseURL!=t.inverseURL||e.titleTerm!=t.titleTerm||e.inverseTitle!=t.inverseTitle||e.tagID!=t.tagID||e.feedIDs!=t.feedIDs||e.inverseFeeds!=t.inverseFeeds);return s.length==i.length?xu(!0):(n.filters=s,this.userService.setUserSetting(\"profile\",JSON.stringify(n)))})).subscribe(t=>{if(t){let t=e.target.parentNode;for(;(t=t.parentElement)&&!t.classList.contains(\"filter\"););t.parentNode.removeChild(t)}},e=>console.log(e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(GY),Eo(DD),Eo(YD),Eo(rw))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-filters\"]],decls:7,vars:2,consts:[[1,\"title\"],[4,\"ngIf\"],[\"class\",\"filter\",4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[1,\"filter\"],[1,\"info\"],[\"class\",\"url-and-title\",4,\"ngIf\"],[\"class\",\"match-tag\",4,\"ngIf\"],[\"class\",\"match-feeds\",4,\"ngIf\"],[\"class\",\"tag\",4,\"ngIf\"],[\"class\",\"feeds\",4,\"ngIf\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"],[1,\"term\"],[1,\"match-url\"],[1,\"url-and-title\"],[1,\"match-title\"],[1,\"match-tag\"],[1,\"match-feeds\"],[1,\"tag\"],[1,\"feeds\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,eO),Ho(),Do(2,pO,2,0,\"p\",1),Do(3,TO,14,9,\"div\",2),Ro(4,\"div\",3),Ro(5,\"button\",4),Uo(\"click\",(function(){return t.addFilter()})),tc(6,tO),Ho(),Ho()),2&e&&(ys(2),Po(\"ngIf\",0==t.filters.length),ys(1),Po(\"ngForOf\",t.filters))},directives:[mu,uu,Gy,Cw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".filter[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.filter[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{flex:1 0 0}.filter[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{padding-left:4px;padding-right:4px}.filter[_ngcontent-%COMP%] .feeds[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .tag[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .term[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;font-weight:700}.filter[_ngcontent-%COMP%] .url-and-title[_ngcontent-%COMP%]{font-style:italic}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}form[_ngcontent-%COMP%]{display:flex;flex-direction:column;margin-bottom:20px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{flex:1 0 auto}form[_ngcontent-%COMP%] mat-slide-toggle[_ngcontent-%COMP%]{align-self:center;flex:1 0 auto}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{font-size:14px}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%] .mat-checkbox-layout{white-space:normal}form[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{border-bottom:1px solid #ddd;margin-top:12px;margin-bottom:24px;font-size:13px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{width:100%}\"]}),e})(),KO=(()=>{class e{constructor(e,t,n,i,s){this.dialogRef=e,this.userService=t,this.tagService=n,this.data=i,this.form=s.group({urlTerm:[\"\"],titleTerm:[\"\"],inverseURL:[!1],inverseTitle:[!1],useFeeds:[!0],feeds:[[]],tag:[],inverseFeeds:[!1]},{validator:e=>e.controls.urlTerm.value||e.controls.titleTerm.value?null:{nomatch:!0}}),this.feeds=i.feeds,this.tags=i.tags}save(){if(!this.form.valid)return;let e=this.form.value;this.userService.getCurrentUser().pipe(V(t=>{let n,i={urlTerm:e.urlTerm,inverseURL:e.inverseURL,titleTerm:e.titleTerm,inverseTitle:e.inverseTitle,inverseFeeds:e.inverseFeeds};return e.useFeeds?e.feeds&&e.feeds.length>0&&(i.feedIDs=e.feeds):e.tag&&(i.tagID=e.tag),n=i.tagID>0?this.tagService.getFeedIDs({id:i.tagID}).pipe(H(e=>(i.feedIDs=e,i))):xu(i),n.pipe(V(e=>{let n=t.profileData||new Map,i=n.filters||[];return i.push(e),n.filters=i,this.userService.setUserSetting(\"profile\",JSON.stringify(n))}))})).subscribe(e=>this.close(),e=>console.log(e))}close(){this.dialogRef.close()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ew),Eo(GY),Eo(YD),Eo(tw),Eo(Um))},e.\\u0275cmp=yt({type:e,selectors:[[\"new-filter-dialog\"]],decls:32,vars:6,consts:[[\"novalidate\",\"\",\"autocomplete\",\"off\",3,\"formGroup\",\"ngSubmit\"],[\"matInput\",\"\",\"formControlName\",\"titleTerm\",6,\"placeholder\"],[\"formControlName\",\"inverseTitle\"],[\"matInput\",\"\",\"formControlName\",\"urlTerm\",6,\"placeholder\"],[\"formControlName\",\"inverseURL\"],[4,\"ngIf\"],[\"formControlName\",\"useFeeds\"],[\"formControlName\",\"inverseFeeds\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"multiple\",\"\",\"formControlName\",\"feeds\",6,\"placeholder\"],[3,\"value\",4,\"ngFor\",\"ngForOf\"],[3,\"value\"],[\"formControlName\",\"tag\",6,\"placeholder\"]],template:function(e,t){1&e&&(Ro(0,\"div\"),Ro(1,\"form\",0),Uo(\"ngSubmit\",(function(){return t.save()})),Ro(2,\"p\"),tc(3,mO),Ho(),Ro(4,\"mat-form-field\"),Ro(5,\"input\",1),nc(6,DO),Ho(),Ho(),jo(7,\"br\"),Ro(8,\"mat-checkbox\",2),tc(9,YO),Ho(),Ro(10,\"mat-form-field\"),Ro(11,\"input\",3),nc(12,EO),Ho(),Ho(),jo(13,\"br\"),Ro(14,\"mat-checkbox\",4),tc(15,OO),Ho(),Do(16,NO,2,0,\"mat-error\",5),jo(17,\"br\"),Ro(18,\"p\"),tc(19,IO),Ho(),Ro(20,\"mat-slide-toggle\",6),Do(21,zO,2,0,\"span\",5),Do(22,VO,2,0,\"span\",5),Ho(),Do(23,$O,4,1,\"mat-form-field\",5),Do(24,GO,4,1,\"mat-form-field\",5),Ro(25,\"mat-checkbox\",7),tc(26,PO),Ho(),Ho(),Ho(),Ro(27,\"div\",8),Ro(28,\"button\",9),Uo(\"click\",(function(){return t.save()})),tc(29,AO),Ho(),Ro(30,\"button\",9),Uo(\"click\",(function(){return t.close()})),tc(31,RO),Ho(),Ho()),2&e&&(ys(1),Po(\"formGroup\",t.form),ys(15),Po(\"ngIf\",t.form.hasError(\"nomatch\")),ys(5),Po(\"ngIf\",t.form.value.useFeeds),ys(1),Po(\"ngIf\",!t.form.value.useFeeds),ys(1),Po(\"ngIf\",t.form.value.useFeeds),ys(1),Po(\"ngIf\",!t.form.value.useFeeds))},directives:[Tm,Sh,Im,dM,gM,_h,kh,Nm,bb,mu,Zk,Gy,Kw,_k,uu,Fy],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".filter[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.filter[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{flex:1 0 0}.filter[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{padding-left:4px;padding-right:4px}.filter[_ngcontent-%COMP%] .feeds[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .tag[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .term[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;font-weight:700}.filter[_ngcontent-%COMP%] .url-and-title[_ngcontent-%COMP%]{font-style:italic}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}form[_ngcontent-%COMP%]{display:flex;flex-direction:column;margin-bottom:20px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{flex:1 0 auto}form[_ngcontent-%COMP%] mat-slide-toggle[_ngcontent-%COMP%]{align-self:center;flex:1 0 auto}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{font-size:14px}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%] .mat-checkbox-layout{white-space:normal}form[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{border-bottom:1px solid #ddd;margin-top:12px;margin-bottom:24px;font-size:13px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{width:100%}\"]}),e})();var ZO;function QO(e,t){if(1&e){const e=zo();Ro(0,\"div\",5),Ro(1,\"mat-slide-toggle\",6,7),Uo(\"change\",(function(){en(e);const n=t.$implicit,i=Yo(2);return Jo(2).toggleService(n[0].id,i.checked)})),Sa(3),Ho(),Ho()}if(2&e){const e=t.$implicit;ys(1),Po(\"checked\",e[1]),ys(2),La(e[0].description)}}function XO(e,t){if(1&e&&(Ro(0,\"mat-card\"),Ro(1,\"mat-card-header\"),Ro(2,\"mat-card-title\",3),Ro(3,\"h6\"),Sa(4),Ho(),Ho(),Ho(),Ro(5,\"mat-card-content\"),Do(6,QO,4,2,\"div\",4),Ho(),Ho()),2&e){const e=t.$implicit;ys(4),xa(\" \",e[0][0].category,\" \"),ys(2),Po(\"ngForOf\",e)}}ZO=\"\\u041A\\u0430\\u043D\\u0430\\u043B\\u0438 \\u0437\\u0430 \\u0441\\u043F\\u043E\\u0434\\u0435\\u043B\\u044F\\u043D\\u0435\";let eI=(()=>{class e{constructor(e){this.sharingService=e}ngOnInit(){this.services=this.sharingService.groupedList()}toggleService(e,t){this.sharingService.toggle(e,t)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(uD))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-share-services\"]],decls:4,vars:1,consts:[[1,\"title\"],[1,\"cards-container\"],[4,\"ngFor\",\"ngForOf\"],[1,\"col\",\"title\"],[\"class\",\"service\",4,\"ngFor\",\"ngForOf\"],[1,\"service\"],[3,\"checked\",\"change\"],[\"toggle\",\"\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,ZO),Ho(),Ro(2,\"div\",1),Do(3,XO,7,2,\"mat-card\",2),Ho()),2&e&&(ys(3),Po(\"ngForOf\",t.services))},directives:[uu,ob,ab,nb,tb,Zk],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".cards-container[_ngcontent-%COMP%]{display:flex;flex-direction:row;flex-wrap:wrap}mat-card[_ngcontent-%COMP%]{flex:1 0 0;margin:8px;min-width:250px}.service[_ngcontent-%COMP%]{margin-bottom:16px}\"]}),e})();var tI,nI,iI,sI,rI;function oI(e,t){if(1&e&&(Ro(0,\"p\"),tc(1,iI),Ho()),2&e){const e=Jo();ys(1),rc(e.current.login),oc(1)}}function aI(e,t){if(1&e){const e=zo();Ro(0,\"div\",5),Ro(1,\"mat-checkbox\",6,7),Uo(\"change\",(function(){en(e);const n=t.$implicit,i=Yo(2);return Jo(2).toggleActive(n.login,i.checked)}))(\"ngModelChange\",(function(n){return en(e),t.$implicit.active=n})),Sa(3),Ho(),Ro(4,\"button\",8),Uo(\"click\",(function(n){en(e);const i=t.$implicit;return Jo(2).deleteUser(n,i.login)})),Ro(5,\"mat-icon\"),Sa(6,\"delete\"),Ho(),Ho(),Ho()}if(2&e){const e=t.$implicit;ys(1),Po(\"ngModel\",e.active),ys(2),La(e.login)}}function lI(e,t){if(1&e&&(Ro(0,\"div\"),Ro(1,\"h6\"),tc(2,sI),Ho(),Do(3,aI,7,2,\"div\",4),Ho()),2&e){const e=Jo();ys(3),Po(\"ngForOf\",e.users)}}tI=\"\\u0423\\u043F\\u0440\\u0430\\u0432\\u043B\\u0435\\u043D\\u0438\\u0435 \\u043D\\u0430 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0438\",nI=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435 \\u043D\\u0430 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\",iI=\"\\n \\u0422\\u0435\\u043A\\u0443\\u0449 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B: \" + \"\\ufffd0\\ufffd\" + \"\\n\",sI=\"\\u0421\\u043F\\u0438\\u0441\\u044A\\u043A \\u0441 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0438:\",rI=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435 \\u043D\\u0430 \\u043D\\u043E\\u0432 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\";const cI=[\"placeholder\",\"\\u041F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0441\\u043A\\u043E \\u0438\\u043C\\u0435\"],dI=[\"placeholder\",\"\\u041F\\u0430\\u0440\\u043E\\u043B\\u0430\"];var uI,hI,mI;function pI(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,hI),Ho())}function fI(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,mI),Ho())}uI=\"\\u0417\\u0430\\u043F\\u0438\\u0441\\u0432\\u0430\\u043D\\u0435\",hI=\"\\n \\u041F\\u0440\\u0430\\u0437\\u043D\\u043E \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0441\\u043A\\u043E \\u0438\\u043C\\u0435\\n \",mI=\"\\n \\u041F\\u0440\\u0430\\u0437\\u043D\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\\n \";const _I=function(){return[\"login\"]},gI=function(){return[\"password\"]};let yI=(()=>{class e{constructor(e,t){this.userService=e,this.dialog=t,this.users=new Array,this.refresher=new L}ngOnInit(){this.refresher.pipe(Rf(null),Wb(e=>this.userService.list()),dD(this.userService.getCurrentUser(),(e,t)=>e.filter(e=>e.login!=t.login))).subscribe(e=>this.users=e,e=>console.log(e)),this.userService.getCurrentUser().subscribe(e=>this.current=e,e=>console.log(e))}toggleActive(e,t){this.userService.toggleActive(e,t).subscribe(e=>{},e=>console.log(e))}deleteUser(e,t){confirm(\"Are you sure you want to delete user \"+t)&&this.userService.deleteUser(t).subscribe(t=>{if(t){let t=e.target.parentNode;for(;(t=t.parentElement)&&!t.classList.contains(\"user\"););t.parentNode.removeChild(t)}},e=>console.log(e))}newUser(){this.dialog.open(bI,{width:\"250px\"}).afterClosed().subscribe(e=>this.refresher.next(null))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(GY),Eo(rw))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-admin\"]],decls:7,vars:2,consts:[[1,\"title\"],[4,\"ngIf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"class\",\"user\",4,\"ngFor\",\"ngForOf\"],[1,\"user\"],[3,\"ngModel\",\"change\",\"ngModelChange\"],[\"check\",\"\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,tI),Ho(),Do(2,oI,2,1,\"p\",1),Do(3,lI,4,1,\"div\",1),Ro(4,\"div\",2),Ro(5,\"button\",3),Uo(\"click\",(function(){return t.newUser()})),tc(6,nI),Ho(),Ho()),2&e&&(ys(2),Po(\"ngIf\",t.current),ys(1),Po(\"ngIf\",t.users.length))},directives:[mu,Gy,uu,bb,kh,Cm,Cw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".user[_ngcontent-%COMP%]{display:flex;align-items:center;border-bottom:1px solid #ccc;padding-bottom:4px;margin-bottom:4px}.user[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{flex:1 0 0}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),e})(),bI=(()=>{class e{constructor(e,t,n){this.dialogRef=e,this.userService=t,this.form=n.group({login:[\"\",Dh.required],password:[\"\",Dh.required]})}save(){if(!this.form.valid)return;let e=this.form.value;this.userService.addUser(e.login,e.password).subscribe(e=>{e&&this.close()},e=>console.log(e))}close(){this.dialogRef.close()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ew),Eo(GY),Eo(Um))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:16,vars:6,consts:[[1,\"title\"],[\"novalidate\",\"\",\"autocomplete\",\"off\",3,\"formGroup\",\"ngSubmit\"],[\"matInput\",\"\",\"formControlName\",\"login\",\"required\",\"\",6,\"placeholder\"],[4,\"ngIf\"],[\"matInput\",\"\",\"type\",\"password\",\"formControlName\",\"password\",\"required\",\"\",6,\"placeholder\"],[1,\"footer\"],[\"mat-raised-button\",\"\",\"type\",\"submit\",3,\"disabled\"]],template:function(e,t){1&e&&(Ro(0,\"h6\",0),tc(1,rI),Ho(),Ro(2,\"form\",1),Uo(\"ngSubmit\",(function(){return t.save()})),Ro(3,\"mat-form-field\"),Ro(4,\"input\",2),nc(5,cI),Ho(),Do(6,pI,2,0,\"mat-error\",3),Ho(),jo(7,\"br\"),Ro(8,\"mat-form-field\"),Ro(9,\"input\",4),nc(10,dI),Ho(),Do(11,fI,2,0,\"mat-error\",3),Ho(),jo(12,\"br\"),Ro(13,\"div\",5),Ro(14,\"button\",6),tc(15,uI),Ho(),Ho(),Ho()),2&e&&(ys(2),Po(\"formGroup\",t.form),ys(4),Po(\"ngIf\",t.form.hasError(\"required\",gc(4,_I))),ys(5),Po(\"ngIf\",t.form.hasError(\"required\",gc(5,gI))),ys(3),Po(\"disabled\",t.form.pristine))},directives:[Tm,Sh,Im,dM,gM,_h,kh,Nm,Vm,mu,Gy,Kw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".user[_ngcontent-%COMP%]{display:flex;align-items:center;border-bottom:1px solid #ccc;padding-bottom:4px;margin-bottom:4px}.user[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{flex:1 0 0}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),e})();var vI,wI,MI,kI,SI,LI,xI,CI,TI;vI=\"\\u041D\\u0430\\u0441\\u0442\\u0440\\u043E\\u0439\\u043A\\u0438\",wI=\"\\u041E\\u0431\\u0449\\u0438\",MI=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u0438\",kI=\"\\u0423\\u043F\\u0440\\u0430\\u0432\\u043B\\u0435\\u043D\\u0438\\u0435 \\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",SI=\"\\u0424\\u0438\\u043B\\u0442\\u0440\\u0438\",LI=\"\\u041A\\u0430\\u043D\\u0430\\u043B\\u0438 \\u0437\\u0430 \\u0441\\u043F\\u043E\\u0434\\u0435\\u043B\\u044F\\u043D\\u0435\",xI=\"\\u0415\\u043C\\u0438\\u0441\\u0438\\u0438\",CI=\"\\u0418\\u0437\\u0445\\u043E\\u0434\",TI=\"\\u0410\\u0434\\u043C\\u0438\\u043D\\u0438\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044F\";const DI=function(){return[\"admin\"]};function YI(e,t){1&e&&(Ro(0,\"a\",2),tc(1,TI),Ho()),2&e&&Po(\"routerLink\",gc(1,DI))}const EI=function(){return[\"general\"]},OI=function(){return[\"discovery\"]},II=function(){return[\"management\"]},PI=function(){return[\"filters\"]},AI=function(){return[\"share-services\"]};var RI;RI=\"\\u041D\\u0430\\u0441\\u0442\\u0440\\u043E\\u0439\\u043A\\u0438\";const HI=kT.forRoot([{path:\"\",canActivate:[rD],children:[{path:\"\",component:xD,children:[{path:\"feed\",children:[{path:\"\",children:[{path:\"\",data:{primary:\"user\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\"search/:query\",data:{primary:\"search\",secondary:\"user\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\"favorite\",data:{primary:\"favorite\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\"popular/tag/:id\",data:{primary:\"popular\",secondary:\"tag\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\"popular/:id\",data:{primary:\"popular\",secondary:\"feed\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\"popular\",data:{primary:\"popular\",secondary:\"user\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\"tag/:id\",data:{primary:\"tag\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\"tag/:id/search/:query\",data:{primary:\"search\",secondary:\"tag\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\":id\",data:{primary:\"feed\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\":id/search/:query\",data:{primary:\"search\",secondary:\"feed\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]}]},{path:\"\",component:kY,outlet:\"sidebar\"},{path:\"\",component:BY,outlet:\"toolbar\"}]},{path:\"settings\",children:[{path:\"\",component:qY,children:[{path:\"general\",component:uE},{path:\"discovery\",component:WE},{path:\"management\",component:QE},{path:\"filters\",component:JO},{path:\"share-services\",component:eI},{path:\"admin\",component:yI},{path:\"\",redirectTo:\"general\",pathMatch:\"full\"}]},{path:\"\",component:(()=>{class e{constructor(e){this.userService=e,this.subscriptions=new Array}ngOnInit(){this.subscriptions.push(this.userService.getCurrentUser().pipe(H(e=>e.admin)).subscribe(e=>this.admin=e,e=>console.log(e)))}ngOnDestroy(){for(let e of this.subscriptions)e.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(GY))},e.\\u0275cmp=yt({type:e,selectors:[[\"side-bar\"]],decls:19,vars:11,consts:[[\"color\",\"primary\"],[1,\"content\"],[\"mat-button\",\"\",3,\"routerLink\"],[\"mat-button\",\"\",3,\"routerLink\",4,\"ngIf\"],[\"mat-button\",\"\",\"routerLink\",\"/feed\"],[\"mat-button\",\"\",\"routerLink\",\"/login\"]],template:function(e,t){1&e&&(Ro(0,\"mat-toolbar\",0),tc(1,vI),Ho(),Ro(2,\"div\",1),Ro(3,\"a\",2),tc(4,wI),Ho(),Ro(5,\"a\",2),tc(6,MI),Ho(),Ro(7,\"a\",2),tc(8,kI),Ho(),Ro(9,\"a\",2),tc(10,SI),Ho(),Ro(11,\"a\",2),tc(12,LI),Ho(),Do(13,YI,2,2,\"a\",3),jo(14,\"hr\"),Ro(15,\"a\",4),tc(16,xI),Ho(),Ro(17,\"a\",5),tc(18,CI),Ho(),Ho()),2&e&&(ys(3),Po(\"routerLink\",gc(6,EI)),ys(2),Po(\"routerLink\",gc(7,OI)),ys(2),Po(\"routerLink\",gc(8,II)),ys(2),Po(\"routerLink\",gc(9,PI)),ys(2),Po(\"routerLink\",gc(10,AI)),ys(2),Po(\"ngIf\",t.admin))},directives:[dS,Jy,cT,mu],styles:[\".content[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{margin-bottom:4px}.content[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex;font-size:16px}.items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:13px}.category[_ngcontent-%COMP%], .items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex}.category[_ngcontent-%COMP%] > .expander[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;min-width:24px;flex-shrink:1}.category[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{flex-grow:1;text-align:start}.category[_ngcontent-%COMP%] > .items[_ngcontent-%COMP%]{flex:0 1 100%}.content[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{margin:0}.favicon[_ngcontent-%COMP%]{padding-right:4px}\"]}),e})(),outlet:\"sidebar\"},{path:\"\",component:(()=>{class e{constructor(){}ngOnInit(){}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:2,vars:0,template:function(e,t){1&e&&(Ro(0,\"span\"),tc(1,RI),Ho())},styles:[\"[_nghost-%COMP%]{display:flex;align-items:center}.spacer[_ngcontent-%COMP%], [_nghost-%COMP%]{flex:1 1 auto}.search[_ngcontent-%COMP%]{min-height:0;border:none;background:transparent} label{margin-bottom:0}\"]}),e})(),outlet:\"toolbar\"}]},{path:\"\",redirectTo:\"feed\",pathMatch:\"full\"}]}]},{path:\"login\",component:iD}],{enableTracing:!1});let jI=(()=>{class e{constructor(){this.title=\"app\"}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"app-root\"]],decls:2,vars:0,consts:[[1,\"page\"]],template:function(e,t){1&e&&(Ro(0,\"div\",0),jo(1,\"router-outlet\"),Ho())},directives:[mT],styles:[\"\"]}),e})(),FI=(()=>{class e{}return e.\\u0275mod=Mt({type:e,bootstrap:[jI]}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[{provide:bf,useClass:TL}],imports:[[If,oy,lh,HI,Mu,$m,Bm,Ky,lb,wb,ow,Tw,yM,WM,ZM,gk,sS,Fk,Xk,uS,gL,xL,kf]]}),e})();(function(){if(ki)throw new Error(\"Cannot enable prod mode after platform setup.\");Mi=!1})(),Ef().bootstrapModule(FI)},zavE:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-SG\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},zn8P:function(e,t){function n(e){return Promise.resolve().then((function(){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}))}n.keys=function(){return[]},n.resolve=n,e.exports=n,n.id=\"zn8P\"},zx6S:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekunda\",\"sekunde\",\"sekundi\"],m:[\"jedan minut\",\"jedne minute\"],mm:[\"minut\",\"minute\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mesec\",\"meseca\",\"meseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var s=t.words[i];return 1===i.length?n?s[0]:s[1]:e+\" \"+t.correctGrammaticalCase(e,s)}};e.defineLocale(\"sr\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljak_utorak_sreda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sre._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedelju] [u] LT\";case 3:return\"[u] [sredu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010de u] LT\",lastWeek:function(){return[\"[pro\\u0161le] [nedelje] [u] LT\",\"[pro\\u0161log] [ponedeljka] [u] LT\",\"[pro\\u0161log] [utorka] [u] LT\",\"[pro\\u0161le] [srede] [u] LT\",\"[pro\\u0161log] [\\u010detvrtka] [u] LT\",\"[pro\\u0161log] [petka] [u] LT\",\"[pro\\u0161le] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pre %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))}},[[0,0]]]);"); err != nil { - return nil, errors.Wrap(err, fmt.Sprintf("packing file rf-ng/ui/bg/main-es2015.f6c9f28337fd1027e64c.js")) + if err := fs.Add("rf-ng/ui/bg/main-es2015.cffe4d6ae44ec8c370c8.js", 1174850, os.FileMode(420), time.Unix(1587937639, 0), "/**\n * @license\n * Copyright Google Inc. All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n!function(n){n.ng=n.ng||{},n.ng.common=n.ng.common||{},n.ng.common.locales=n.ng.common.locales||{};const o=void 0;n.ng.common.locales.bg=[\"bg\",[[\"am\",\"pm\"],o,[\"\\u043f\\u0440.\\u043e\\u0431.\",\"\\u0441\\u043b.\\u043e\\u0431.\"]],[[\"am\",\"pm\"],o,o],[[\"\\u043d\",\"\\u043f\",\"\\u0432\",\"\\u0441\",\"\\u0447\",\"\\u043f\",\"\\u0441\"],[\"\\u043d\\u0434\",\"\\u043f\\u043d\",\"\\u0432\\u0442\",\"\\u0441\\u0440\",\"\\u0447\\u0442\",\"\\u043f\\u0442\",\"\\u0441\\u0431\"],[\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u044f\",\"\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a\",\"\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a\",\"\\u0441\\u0440\\u044f\\u0434\\u0430\",\"\\u0447\\u0435\\u0442\\u0432\\u044a\\u0440\\u0442\\u044a\\u043a\",\"\\u043f\\u0435\\u0442\\u044a\\u043a\",\"\\u0441\\u044a\\u0431\\u043e\\u0442\\u0430\"],[\"\\u043d\\u0434\",\"\\u043f\\u043d\",\"\\u0432\\u0442\",\"\\u0441\\u0440\",\"\\u0447\\u0442\",\"\\u043f\\u0442\",\"\\u0441\\u0431\"]],o,[[\"\\u044f\",\"\\u0444\",\"\\u043c\",\"\\u0430\",\"\\u043c\",\"\\u044e\",\"\\u044e\",\"\\u0430\",\"\\u0441\",\"\\u043e\",\"\\u043d\",\"\\u0434\"],[\"\\u044f\\u043d\\u0443\",\"\\u0444\\u0435\\u0432\",\"\\u043c\\u0430\\u0440\\u0442\",\"\\u0430\\u043f\\u0440\",\"\\u043c\\u0430\\u0439\",\"\\u044e\\u043d\\u0438\",\"\\u044e\\u043b\\u0438\",\"\\u0430\\u0432\\u0433\",\"\\u0441\\u0435\\u043f\",\"\\u043e\\u043a\\u0442\",\"\\u043d\\u043e\\u0435\",\"\\u0434\\u0435\\u043a\"],[\"\\u044f\\u043d\\u0443\\u0430\\u0440\\u0438\",\"\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438\",\"\\u043c\\u0430\\u0440\\u0442\",\"\\u0430\\u043f\\u0440\\u0438\\u043b\",\"\\u043c\\u0430\\u0439\",\"\\u044e\\u043d\\u0438\",\"\\u044e\\u043b\\u0438\",\"\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\",\"\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438\",\"\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438\",\"\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438\",\"\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\"]],o,[[\"\\u043f\\u0440.\\u0425\\u0440.\",\"\\u0441\\u043b.\\u0425\\u0440.\"],o,[\"\\u043f\\u0440\\u0435\\u0434\\u0438 \\u0425\\u0440\\u0438\\u0441\\u0442\\u0430\",\"\\u0441\\u043b\\u0435\\u0434 \\u0425\\u0440\\u0438\\u0441\\u0442\\u0430\"]],1,[6,0],[\"d.MM.yy '\\u0433'.\",\"d.MM.y '\\u0433'.\",\"d MMMM y '\\u0433'.\",\"EEEE, d MMMM y '\\u0433'.\"],[\"H:mm\",\"H:mm:ss\",\"H:mm:ss z\",\"H:mm:ss zzzz\"],[\"{1}, {0}\",o,o,o],[\",\",\"\\xa0\",\";\",\"%\",\"+\",\"-\",\"E\",\"\\xd7\",\"\\u2030\",\"\\u221e\",\"NaN\",\":\"],[\"#,##0.###\",\"#,##0%\",\"0.00\\xa0\\xa4\",\"#E0\"],\"BGN\",\"\\u043b\\u0432.\",\"\\u0411\\u044a\\u043b\\u0433\\u0430\\u0440\\u0441\\u043a\\u0438 \\u043b\\u0435\\u0432\",{ARS:[],AUD:[],BBD:[],BDT:[],BGN:[\"\\u043b\\u0432.\"],BMD:[],BND:[],BRL:[],BSD:[],BYN:[],BZD:[],CAD:[],CLP:[],CNY:[],COP:[],CRC:[],CUP:[],DOP:[],FJD:[],FKP:[],GBP:[o,\"\\xa3\"],GIP:[],GYD:[],HKD:[],ILS:[],INR:[],JMD:[],JPY:[o,\"\\xa5\"],KHR:[],KRW:[],KYD:[],KZT:[],LAK:[],LRD:[],MNT:[],MXN:[],NAD:[],NGN:[],NZD:[],PHP:[],PYG:[],RON:[],SBD:[],SGD:[],SRD:[],SSP:[],TRY:[],TTD:[],TWD:[],UAH:[],USD:[\"\\u0449.\\u0434.\",\"$\"],UYU:[],VND:[],XCD:[o,\"$\"]},function(n){return 1===n?1:5},[[[\"\\u043f\\u043e\\u043b\\u0443\\u043d\\u043e\\u0449\",\"\\u0441\\u0443\\u0442\\u0440\\u0438\\u043d\\u0442\\u0430\",\"\\u043d\\u0430 \\u043e\\u0431\\u044f\\u0434\",\"\\u0441\\u043b\\u0435\\u0434\\u043e\\u0431\\u0435\\u0434\",\"\\u0432\\u0435\\u0447\\u0435\\u0440\\u0442\\u0430\",\"\\u043f\\u0440\\u0435\\u0437 \\u043d\\u043e\\u0449\\u0442\\u0430\"],o,o],o,[\"00:00\",[\"04:00\",\"11:00\"],[\"11:00\",\"14:00\"],[\"14:00\",\"18:00\"],[\"18:00\",\"22:00\"],[\"22:00\",\"04:00\"]]]]}(\"undefined\"!=typeof globalThis&&globalThis||\"undefined\"!=typeof global&&global||\"undefined\"!=typeof window&&window);;var $localize=Object.assign(void 0===$localize?{}:$localize,{locale:\"bg\"});(window.webpackJsonp=window.webpackJsonp||[]).push([[1],{\"+s0g\":function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),n=\"jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),i=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],s=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\\.?|feb\\.?|mrt\\.?|apr\\.?|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i;e.defineLocale(\"nl\",{months:\"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\\.?|feb\\.?|mrt\\.?|apr\\.?|mei|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag\".split(\"_\"),weekdaysShort:\"zo._ma._di._wo._do._vr._za.\".split(\"_\"),weekdaysMin:\"zo_ma_di_wo_do_vr_za\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[vandaag om] LT\",nextDay:\"[morgen om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[gisteren om] LT\",lastWeek:\"[afgelopen] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"over %s\",past:\"%s geleden\",s:\"een paar seconden\",ss:\"%d seconden\",m:\"\\xe9\\xe9n minuut\",mm:\"%d minuten\",h:\"\\xe9\\xe9n uur\",hh:\"%d uur\",d:\"\\xe9\\xe9n dag\",dd:\"%d dagen\",M:\"\\xe9\\xe9n maand\",MM:\"%d maanden\",y:\"\\xe9\\xe9n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"//9w\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"se\",{months:\"o\\u0111\\u0111ajagem\\xe1nnu_guovvam\\xe1nnu_njuk\\u010dam\\xe1nnu_cuo\\u014bom\\xe1nnu_miessem\\xe1nnu_geassem\\xe1nnu_suoidnem\\xe1nnu_borgem\\xe1nnu_\\u010dak\\u010dam\\xe1nnu_golggotm\\xe1nnu_sk\\xe1bmam\\xe1nnu_juovlam\\xe1nnu\".split(\"_\"),monthsShort:\"o\\u0111\\u0111j_guov_njuk_cuo_mies_geas_suoi_borg_\\u010dak\\u010d_golg_sk\\xe1b_juov\".split(\"_\"),weekdays:\"sotnabeaivi_vuoss\\xe1rga_ma\\u014b\\u014beb\\xe1rga_gaskavahkku_duorastat_bearjadat_l\\xe1vvardat\".split(\"_\"),weekdaysShort:\"sotn_vuos_ma\\u014b_gask_duor_bear_l\\xe1v\".split(\"_\"),weekdaysMin:\"s_v_m_g_d_b_L\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"MMMM D. [b.] YYYY\",LLL:\"MMMM D. [b.] YYYY [ti.] HH:mm\",LLLL:\"dddd, MMMM D. [b.] YYYY [ti.] HH:mm\"},calendar:{sameDay:\"[otne ti] LT\",nextDay:\"[ihttin ti] LT\",nextWeek:\"dddd [ti] LT\",lastDay:\"[ikte ti] LT\",lastWeek:\"[ovddit] dddd [ti] LT\",sameElse:\"L\"},relativeTime:{future:\"%s gea\\u017ees\",past:\"ma\\u014bit %s\",s:\"moadde sekunddat\",ss:\"%d sekunddat\",m:\"okta minuhta\",mm:\"%d minuhtat\",h:\"okta diimmu\",hh:\"%d diimmut\",d:\"okta beaivi\",dd:\"%d beaivvit\",M:\"okta m\\xe1nnu\",MM:\"%d m\\xe1nut\",y:\"okta jahki\",yy:\"%d jagit\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"/X5v\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"x-pseudo\",{months:\"J~\\xe1\\xf1\\xfa\\xe1~r\\xfd_F~\\xe9br\\xfa~\\xe1r\\xfd_~M\\xe1rc~h_\\xc1p~r\\xedl_~M\\xe1\\xfd_~J\\xfa\\xf1\\xe9~_J\\xfal~\\xfd_\\xc1\\xfa~g\\xfast~_S\\xe9p~t\\xe9mb~\\xe9r_\\xd3~ct\\xf3b~\\xe9r_\\xd1~\\xf3v\\xe9m~b\\xe9r_~D\\xe9c\\xe9~mb\\xe9r\".split(\"_\"),monthsShort:\"J~\\xe1\\xf1_~F\\xe9b_~M\\xe1r_~\\xc1pr_~M\\xe1\\xfd_~J\\xfa\\xf1_~J\\xfal_~\\xc1\\xfag_~S\\xe9p_~\\xd3ct_~\\xd1\\xf3v_~D\\xe9c\".split(\"_\"),monthsParseExact:!0,weekdays:\"S~\\xfa\\xf1d\\xe1~\\xfd_M\\xf3~\\xf1d\\xe1\\xfd~_T\\xfa\\xe9~sd\\xe1\\xfd~_W\\xe9d~\\xf1\\xe9sd~\\xe1\\xfd_T~h\\xfars~d\\xe1\\xfd_~Fr\\xedd~\\xe1\\xfd_S~\\xe1t\\xfar~d\\xe1\\xfd\".split(\"_\"),weekdaysShort:\"S~\\xfa\\xf1_~M\\xf3\\xf1_~T\\xfa\\xe9_~W\\xe9d_~Th\\xfa_~Fr\\xed_~S\\xe1t\".split(\"_\"),weekdaysMin:\"S~\\xfa_M\\xf3~_T\\xfa_~W\\xe9_T~h_Fr~_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[T~\\xf3d\\xe1~\\xfd \\xe1t] LT\",nextDay:\"[T~\\xf3m\\xf3~rr\\xf3~w \\xe1t] LT\",nextWeek:\"dddd [\\xe1t] LT\",lastDay:\"[\\xdd~\\xe9st~\\xe9rd\\xe1~\\xfd \\xe1t] LT\",lastWeek:\"[L~\\xe1st] dddd [\\xe1t] LT\",sameElse:\"L\"},relativeTime:{future:\"\\xed~\\xf1 %s\",past:\"%s \\xe1~g\\xf3\",s:\"\\xe1 ~f\\xe9w ~s\\xe9c\\xf3~\\xf1ds\",ss:\"%d s~\\xe9c\\xf3\\xf1~ds\",m:\"\\xe1 ~m\\xed\\xf1~\\xfat\\xe9\",mm:\"%d m~\\xed\\xf1\\xfa~t\\xe9s\",h:\"\\xe1~\\xf1 h\\xf3~\\xfar\",hh:\"%d h~\\xf3\\xfars\",d:\"\\xe1 ~d\\xe1\\xfd\",dd:\"%d d~\\xe1\\xfds\",M:\"\\xe1 ~m\\xf3\\xf1~th\",MM:\"%d m~\\xf3\\xf1t~hs\",y:\"\\xe1 ~\\xfd\\xe9\\xe1r\",yy:\"%d \\xfd~\\xe9\\xe1rs\"},dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},0:function(e,t,n){e.exports=n(\"zUnb\")},\"0mo+\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0f21\",2:\"\\u0f22\",3:\"\\u0f23\",4:\"\\u0f24\",5:\"\\u0f25\",6:\"\\u0f26\",7:\"\\u0f27\",8:\"\\u0f28\",9:\"\\u0f29\",0:\"\\u0f20\"},n={\"\\u0f21\":\"1\",\"\\u0f22\":\"2\",\"\\u0f23\":\"3\",\"\\u0f24\":\"4\",\"\\u0f25\":\"5\",\"\\u0f26\":\"6\",\"\\u0f27\":\"7\",\"\\u0f28\":\"8\",\"\\u0f29\":\"9\",\"\\u0f20\":\"0\"};e.defineLocale(\"bo\",{months:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f44\\u0f0b\\u0f54\\u0f7c_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f66\\u0f74\\u0f58\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f5e\\u0f72\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f63\\u0f94\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0fb2\\u0f74\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f62\\u0f92\\u0fb1\\u0f51\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f42\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54\".split(\"_\"),monthsShort:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f44\\u0f0b\\u0f54\\u0f7c_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f66\\u0f74\\u0f58\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f5e\\u0f72\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f63\\u0f94\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0fb2\\u0f74\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f62\\u0f92\\u0fb1\\u0f51\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f42\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54\".split(\"_\"),weekdays:\"\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),weekdaysShort:\"\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),weekdaysMin:\"\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0f51\\u0f72\\u0f0b\\u0f62\\u0f72\\u0f44] LT\",nextDay:\"[\\u0f66\\u0f44\\u0f0b\\u0f49\\u0f72\\u0f53] LT\",nextWeek:\"[\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f55\\u0fb2\\u0f42\\u0f0b\\u0f62\\u0f97\\u0f7a\\u0f66\\u0f0b\\u0f58], LT\",lastDay:\"[\\u0f41\\u0f0b\\u0f66\\u0f44] LT\",lastWeek:\"[\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f55\\u0fb2\\u0f42\\u0f0b\\u0f58\\u0f50\\u0f60\\u0f0b\\u0f58] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0f63\\u0f0b\",past:\"%s \\u0f66\\u0f94\\u0f53\\u0f0b\\u0f63\",s:\"\\u0f63\\u0f58\\u0f0b\\u0f66\\u0f44\",ss:\"%d \\u0f66\\u0f90\\u0f62\\u0f0b\\u0f46\\u0f0d\",m:\"\\u0f66\\u0f90\\u0f62\\u0f0b\\u0f58\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",mm:\"%d \\u0f66\\u0f90\\u0f62\\u0f0b\\u0f58\",h:\"\\u0f46\\u0f74\\u0f0b\\u0f5a\\u0f7c\\u0f51\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",hh:\"%d \\u0f46\\u0f74\\u0f0b\\u0f5a\\u0f7c\\u0f51\",d:\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",dd:\"%d \\u0f49\\u0f72\\u0f53\\u0f0b\",M:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",MM:\"%d \\u0f5f\\u0fb3\\u0f0b\\u0f56\",y:\"\\u0f63\\u0f7c\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",yy:\"%d \\u0f63\\u0f7c\"},preparse:function(e){return e.replace(/[\\u0f21\\u0f22\\u0f23\\u0f24\\u0f25\\u0f26\\u0f27\\u0f28\\u0f29\\u0f20]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c|\\u0f5e\\u0f7c\\u0f42\\u0f66\\u0f0b\\u0f40\\u0f66|\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44|\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42|\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\"===t&&e>=4||\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44\"===t&&e<5||\"\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\":e<10?\"\\u0f5e\\u0f7c\\u0f42\\u0f66\\u0f0b\\u0f40\\u0f66\":e<17?\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44\":e<20?\"\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42\":\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"0tRk\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt-br\",{months:\"Janeiro_Fevereiro_Mar\\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingo_Segunda-feira_Ter\\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\\xe1bado\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ter_Qua_Qui_Sex_S\\xe1b\".split(\"_\"),weekdaysMin:\"Do_2\\xaa_3\\xaa_4\\xaa_5\\xaa_6\\xaa_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY [\\xe0s] HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY [\\xe0s] HH:mm\"},calendar:{sameDay:\"[Hoje \\xe0s] LT\",nextDay:\"[Amanh\\xe3 \\xe0s] LT\",nextWeek:\"dddd [\\xe0s] LT\",lastDay:\"[Ontem \\xe0s] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[\\xdaltimo] dddd [\\xe0s] LT\":\"[\\xdaltima] dddd [\\xe0s] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"h\\xe1 %s\",s:\"poucos segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",M:\"um m\\xeas\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\"})}(n(\"wd/R\"))},\"1rYy\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"hy-am\",{months:{format:\"\\u0570\\u0578\\u0582\\u0576\\u057e\\u0561\\u0580\\u056b_\\u0583\\u0565\\u057f\\u0580\\u057e\\u0561\\u0580\\u056b_\\u0574\\u0561\\u0580\\u057f\\u056b_\\u0561\\u057a\\u0580\\u056b\\u056c\\u056b_\\u0574\\u0561\\u0575\\u056b\\u057d\\u056b_\\u0570\\u0578\\u0582\\u0576\\u056b\\u057d\\u056b_\\u0570\\u0578\\u0582\\u056c\\u056b\\u057d\\u056b_\\u0585\\u0563\\u0578\\u057d\\u057f\\u0578\\u057d\\u056b_\\u057d\\u0565\\u057a\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0570\\u0578\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0576\\u0578\\u0575\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0564\\u0565\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b\".split(\"_\"),standalone:\"\\u0570\\u0578\\u0582\\u0576\\u057e\\u0561\\u0580_\\u0583\\u0565\\u057f\\u0580\\u057e\\u0561\\u0580_\\u0574\\u0561\\u0580\\u057f_\\u0561\\u057a\\u0580\\u056b\\u056c_\\u0574\\u0561\\u0575\\u056b\\u057d_\\u0570\\u0578\\u0582\\u0576\\u056b\\u057d_\\u0570\\u0578\\u0582\\u056c\\u056b\\u057d_\\u0585\\u0563\\u0578\\u057d\\u057f\\u0578\\u057d_\\u057d\\u0565\\u057a\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0570\\u0578\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0576\\u0578\\u0575\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0564\\u0565\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\".split(\"_\")},monthsShort:\"\\u0570\\u0576\\u057e_\\u0583\\u057f\\u0580_\\u0574\\u0580\\u057f_\\u0561\\u057a\\u0580_\\u0574\\u0575\\u057d_\\u0570\\u0576\\u057d_\\u0570\\u056c\\u057d_\\u0585\\u0563\\u057d_\\u057d\\u057a\\u057f_\\u0570\\u056f\\u057f_\\u0576\\u0574\\u0562_\\u0564\\u056f\\u057f\".split(\"_\"),weekdays:\"\\u056f\\u056b\\u0580\\u0561\\u056f\\u056b_\\u0565\\u0580\\u056f\\u0578\\u0582\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0565\\u0580\\u0565\\u0584\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0579\\u0578\\u0580\\u0565\\u0584\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0570\\u056b\\u0576\\u0563\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0578\\u0582\\u0580\\u0562\\u0561\\u0569_\\u0577\\u0561\\u0562\\u0561\\u0569\".split(\"_\"),weekdaysShort:\"\\u056f\\u0580\\u056f_\\u0565\\u0580\\u056f_\\u0565\\u0580\\u0584_\\u0579\\u0580\\u0584_\\u0570\\u0576\\u0563_\\u0578\\u0582\\u0580\\u0562_\\u0577\\u0562\\u0569\".split(\"_\"),weekdaysMin:\"\\u056f\\u0580\\u056f_\\u0565\\u0580\\u056f_\\u0565\\u0580\\u0584_\\u0579\\u0580\\u0584_\\u0570\\u0576\\u0563_\\u0578\\u0582\\u0580\\u0562_\\u0577\\u0562\\u0569\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0569.\",LLL:\"D MMMM YYYY \\u0569., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0569., HH:mm\"},calendar:{sameDay:\"[\\u0561\\u0575\\u057d\\u0585\\u0580] LT\",nextDay:\"[\\u057e\\u0561\\u0572\\u0568] LT\",lastDay:\"[\\u0565\\u0580\\u0565\\u056f] LT\",nextWeek:function(){return\"dddd [\\u0585\\u0580\\u0568 \\u056a\\u0561\\u0574\\u0568] LT\"},lastWeek:function(){return\"[\\u0561\\u0576\\u0581\\u0561\\u056e] dddd [\\u0585\\u0580\\u0568 \\u056a\\u0561\\u0574\\u0568] LT\"},sameElse:\"L\"},relativeTime:{future:\"%s \\u0570\\u0565\\u057f\\u0578\",past:\"%s \\u0561\\u057c\\u0561\\u057b\",s:\"\\u0574\\u056b \\u0584\\u0561\\u0576\\u056b \\u057e\\u0561\\u0575\\u0580\\u056f\\u0575\\u0561\\u0576\",ss:\"%d \\u057e\\u0561\\u0575\\u0580\\u056f\\u0575\\u0561\\u0576\",m:\"\\u0580\\u0578\\u057a\\u0565\",mm:\"%d \\u0580\\u0578\\u057a\\u0565\",h:\"\\u056a\\u0561\\u0574\",hh:\"%d \\u056a\\u0561\\u0574\",d:\"\\u0585\\u0580\",dd:\"%d \\u0585\\u0580\",M:\"\\u0561\\u0574\\u056b\\u057d\",MM:\"%d \\u0561\\u0574\\u056b\\u057d\",y:\"\\u057f\\u0561\\u0580\\u056b\",yy:\"%d \\u057f\\u0561\\u0580\\u056b\"},meridiemParse:/\\u0563\\u056b\\u0577\\u0565\\u0580\\u057e\\u0561|\\u0561\\u057c\\u0561\\u057e\\u0578\\u057f\\u057e\\u0561|\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561|\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576/,isPM:function(e){return/^(\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561|\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576)$/.test(e)},meridiem:function(e){return e<4?\"\\u0563\\u056b\\u0577\\u0565\\u0580\\u057e\\u0561\":e<12?\"\\u0561\\u057c\\u0561\\u057e\\u0578\\u057f\\u057e\\u0561\":e<17?\"\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561\":\"\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576\"},dayOfMonthOrdinalParse:/\\d{1,2}|\\d{1,2}-(\\u056b\\u0576|\\u0580\\u0564)/,ordinal:function(e,t){switch(t){case\"DDD\":case\"w\":case\"W\":case\"DDDo\":return 1===e?e+\"-\\u056b\\u0576\":e+\"-\\u0580\\u0564\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"1xZ4\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ca\",{months:{standalone:\"gener_febrer_mar\\xe7_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre\".split(\"_\"),format:\"de gener_de febrer_de mar\\xe7_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre\".split(\"_\"),isFormat:/D[oD]?(\\s)+MMMM/},monthsShort:\"gen._febr._mar\\xe7_abr._maig_juny_jul._ag._set._oct._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte\".split(\"_\"),weekdaysShort:\"dg._dl._dt._dc._dj._dv._ds.\".split(\"_\"),weekdaysMin:\"dg_dl_dt_dc_dj_dv_ds\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [de] YYYY\",ll:\"D MMM YYYY\",LLL:\"D MMMM [de] YYYY [a les] H:mm\",lll:\"D MMM YYYY, H:mm\",LLLL:\"dddd D MMMM [de] YYYY [a les] H:mm\",llll:\"ddd D MMM YYYY, H:mm\"},calendar:{sameDay:function(){return\"[avui a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextDay:function(){return\"[dem\\xe0 a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextWeek:function(){return\"dddd [a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastDay:function(){return\"[ahir a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [passat a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"d'aqu\\xed %s\",past:\"fa %s\",s:\"uns segons\",ss:\"%d segons\",m:\"un minut\",mm:\"%d minuts\",h:\"una hora\",hh:\"%d hores\",d:\"un dia\",dd:\"%d dies\",M:\"un mes\",MM:\"%d mesos\",y:\"un any\",yy:\"%d anys\"},dayOfMonthOrdinalParse:/\\d{1,2}(r|n|t|\\xe8|a)/,ordinal:function(e,t){var n=1===e?\"r\":2===e?\"n\":3===e?\"r\":4===e?\"t\":\"\\xe8\";return\"w\"!==t&&\"W\"!==t||(n=\"a\"),e+n},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"2fjn\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ca\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}}})}(n(\"wd/R\"))},\"2ykv\":function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),n=\"jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),i=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],s=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\\.?|feb\\.?|mrt\\.?|apr\\.?|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i;e.defineLocale(\"nl-be\",{months:\"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\\.?|feb\\.?|mrt\\.?|apr\\.?|mei|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag\".split(\"_\"),weekdaysShort:\"zo._ma._di._wo._do._vr._za.\".split(\"_\"),weekdaysMin:\"zo_ma_di_wo_do_vr_za\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[vandaag om] LT\",nextDay:\"[morgen om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[gisteren om] LT\",lastWeek:\"[afgelopen] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"over %s\",past:\"%s geleden\",s:\"een paar seconden\",ss:\"%d seconden\",m:\"\\xe9\\xe9n minuut\",mm:\"%d minuten\",h:\"\\xe9\\xe9n uur\",hh:\"%d uur\",d:\"\\xe9\\xe9n dag\",dd:\"%d dagen\",M:\"\\xe9\\xe9n maand\",MM:\"%d maanden\",y:\"\\xe9\\xe9n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"3E1r\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};e.defineLocale(\"hi\",{months:\"\\u091c\\u0928\\u0935\\u0930\\u0940_\\u092b\\u093c\\u0930\\u0935\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u0948\\u0932_\\u092e\\u0908_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908_\\u0905\\u0917\\u0938\\u094d\\u0924_\\u0938\\u093f\\u0924\\u092e\\u094d\\u092c\\u0930_\\u0905\\u0915\\u094d\\u091f\\u0942\\u092c\\u0930_\\u0928\\u0935\\u092e\\u094d\\u092c\\u0930_\\u0926\\u093f\\u0938\\u092e\\u094d\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u0928._\\u092b\\u093c\\u0930._\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u0948._\\u092e\\u0908_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932._\\u0905\\u0917._\\u0938\\u093f\\u0924._\\u0905\\u0915\\u094d\\u091f\\u0942._\\u0928\\u0935._\\u0926\\u093f\\u0938.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0930\\u0935\\u093f\\u0935\\u093e\\u0930_\\u0938\\u094b\\u092e\\u0935\\u093e\\u0930_\\u092e\\u0902\\u0917\\u0932\\u0935\\u093e\\u0930_\\u092c\\u0941\\u0927\\u0935\\u093e\\u0930_\\u0917\\u0941\\u0930\\u0942\\u0935\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u0935\\u093e\\u0930_\\u0936\\u0928\\u093f\\u0935\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0930\\u0935\\u093f_\\u0938\\u094b\\u092e_\\u092e\\u0902\\u0917\\u0932_\\u092c\\u0941\\u0927_\\u0917\\u0941\\u0930\\u0942_\\u0936\\u0941\\u0915\\u094d\\u0930_\\u0936\\u0928\\u093f\".split(\"_\"),weekdaysMin:\"\\u0930_\\u0938\\u094b_\\u092e\\u0902_\\u092c\\u0941_\\u0917\\u0941_\\u0936\\u0941_\\u0936\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u092c\\u091c\\u0947\",LTS:\"A h:mm:ss \\u092c\\u091c\\u0947\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u092c\\u091c\\u0947\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u092c\\u091c\\u0947\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u0915\\u0932] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0915\\u0932] LT\",lastWeek:\"[\\u092a\\u093f\\u091b\\u0932\\u0947] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u092e\\u0947\\u0902\",past:\"%s \\u092a\\u0939\\u0932\\u0947\",s:\"\\u0915\\u0941\\u091b \\u0939\\u0940 \\u0915\\u094d\\u0937\\u0923\",ss:\"%d \\u0938\\u0947\\u0915\\u0902\\u0921\",m:\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u091f\",mm:\"%d \\u092e\\u093f\\u0928\\u091f\",h:\"\\u090f\\u0915 \\u0918\\u0902\\u091f\\u093e\",hh:\"%d \\u0918\\u0902\\u091f\\u0947\",d:\"\\u090f\\u0915 \\u0926\\u093f\\u0928\",dd:\"%d \\u0926\\u093f\\u0928\",M:\"\\u090f\\u0915 \\u092e\\u0939\\u0940\\u0928\\u0947\",MM:\"%d \\u092e\\u0939\\u0940\\u0928\\u0947\",y:\"\\u090f\\u0915 \\u0935\\u0930\\u094d\\u0937\",yy:\"%d \\u0935\\u0930\\u094d\\u0937\"},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924|\\u0938\\u0941\\u092c\\u0939|\\u0926\\u094b\\u092a\\u0939\\u0930|\\u0936\\u093e\\u092e/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\"===t?e<4?e:e+12:\"\\u0938\\u0941\\u092c\\u0939\"===t?e:\"\\u0926\\u094b\\u092a\\u0939\\u0930\"===t?e>=10?e:e+12:\"\\u0936\\u093e\\u092e\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0930\\u093e\\u0924\":e<10?\"\\u0938\\u0941\\u092c\\u0939\":e<17?\"\\u0926\\u094b\\u092a\\u0939\\u0930\":e<20?\"\\u0936\\u093e\\u092e\":\"\\u0930\\u093e\\u0924\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"4MV3\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0ae7\",2:\"\\u0ae8\",3:\"\\u0ae9\",4:\"\\u0aea\",5:\"\\u0aeb\",6:\"\\u0aec\",7:\"\\u0aed\",8:\"\\u0aee\",9:\"\\u0aef\",0:\"\\u0ae6\"},n={\"\\u0ae7\":\"1\",\"\\u0ae8\":\"2\",\"\\u0ae9\":\"3\",\"\\u0aea\":\"4\",\"\\u0aeb\":\"5\",\"\\u0aec\":\"6\",\"\\u0aed\":\"7\",\"\\u0aee\":\"8\",\"\\u0aef\":\"9\",\"\\u0ae6\":\"0\"};e.defineLocale(\"gu\",{months:\"\\u0a9c\\u0abe\\u0aa8\\u0acd\\u0aaf\\u0ac1\\u0a86\\u0ab0\\u0ac0_\\u0aab\\u0ac7\\u0aac\\u0acd\\u0ab0\\u0ac1\\u0a86\\u0ab0\\u0ac0_\\u0aae\\u0abe\\u0ab0\\u0acd\\u0a9a_\\u0a8f\\u0aaa\\u0acd\\u0ab0\\u0abf\\u0ab2_\\u0aae\\u0ac7_\\u0a9c\\u0ac2\\u0aa8_\\u0a9c\\u0ac1\\u0ab2\\u0abe\\u0a88_\\u0a91\\u0a97\\u0ab8\\u0acd\\u0a9f_\\u0ab8\\u0aaa\\u0acd\\u0a9f\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0_\\u0a91\\u0a95\\u0acd\\u0a9f\\u0acd\\u0aac\\u0ab0_\\u0aa8\\u0ab5\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0_\\u0aa1\\u0abf\\u0ab8\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0\".split(\"_\"),monthsShort:\"\\u0a9c\\u0abe\\u0aa8\\u0acd\\u0aaf\\u0ac1._\\u0aab\\u0ac7\\u0aac\\u0acd\\u0ab0\\u0ac1._\\u0aae\\u0abe\\u0ab0\\u0acd\\u0a9a_\\u0a8f\\u0aaa\\u0acd\\u0ab0\\u0abf._\\u0aae\\u0ac7_\\u0a9c\\u0ac2\\u0aa8_\\u0a9c\\u0ac1\\u0ab2\\u0abe._\\u0a91\\u0a97._\\u0ab8\\u0aaa\\u0acd\\u0a9f\\u0ac7._\\u0a91\\u0a95\\u0acd\\u0a9f\\u0acd._\\u0aa8\\u0ab5\\u0ac7._\\u0aa1\\u0abf\\u0ab8\\u0ac7.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0ab0\\u0ab5\\u0abf\\u0ab5\\u0abe\\u0ab0_\\u0ab8\\u0acb\\u0aae\\u0ab5\\u0abe\\u0ab0_\\u0aae\\u0a82\\u0a97\\u0ab3\\u0ab5\\u0abe\\u0ab0_\\u0aac\\u0ac1\\u0aa7\\u0acd\\u0ab5\\u0abe\\u0ab0_\\u0a97\\u0ac1\\u0ab0\\u0ac1\\u0ab5\\u0abe\\u0ab0_\\u0ab6\\u0ac1\\u0a95\\u0acd\\u0ab0\\u0ab5\\u0abe\\u0ab0_\\u0ab6\\u0aa8\\u0abf\\u0ab5\\u0abe\\u0ab0\".split(\"_\"),weekdaysShort:\"\\u0ab0\\u0ab5\\u0abf_\\u0ab8\\u0acb\\u0aae_\\u0aae\\u0a82\\u0a97\\u0ab3_\\u0aac\\u0ac1\\u0aa7\\u0acd_\\u0a97\\u0ac1\\u0ab0\\u0ac1_\\u0ab6\\u0ac1\\u0a95\\u0acd\\u0ab0_\\u0ab6\\u0aa8\\u0abf\".split(\"_\"),weekdaysMin:\"\\u0ab0_\\u0ab8\\u0acb_\\u0aae\\u0a82_\\u0aac\\u0ac1_\\u0a97\\u0ac1_\\u0ab6\\u0ac1_\\u0ab6\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",LTS:\"A h:mm:ss \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\"},calendar:{sameDay:\"[\\u0a86\\u0a9c] LT\",nextDay:\"[\\u0a95\\u0abe\\u0ab2\\u0ac7] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0a97\\u0a87\\u0a95\\u0abe\\u0ab2\\u0ac7] LT\",lastWeek:\"[\\u0aaa\\u0abe\\u0a9b\\u0ab2\\u0abe] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0aae\\u0abe\",past:\"%s \\u0aaa\\u0ac7\\u0ab9\\u0ab2\\u0abe\",s:\"\\u0a85\\u0aae\\u0ac1\\u0a95 \\u0aaa\\u0ab3\\u0acb\",ss:\"%d \\u0ab8\\u0ac7\\u0a95\\u0a82\\u0aa1\",m:\"\\u0a8f\\u0a95 \\u0aae\\u0abf\\u0aa8\\u0abf\\u0a9f\",mm:\"%d \\u0aae\\u0abf\\u0aa8\\u0abf\\u0a9f\",h:\"\\u0a8f\\u0a95 \\u0a95\\u0ab2\\u0abe\\u0a95\",hh:\"%d \\u0a95\\u0ab2\\u0abe\\u0a95\",d:\"\\u0a8f\\u0a95 \\u0aa6\\u0abf\\u0ab5\\u0ab8\",dd:\"%d \\u0aa6\\u0abf\\u0ab5\\u0ab8\",M:\"\\u0a8f\\u0a95 \\u0aae\\u0ab9\\u0abf\\u0aa8\\u0acb\",MM:\"%d \\u0aae\\u0ab9\\u0abf\\u0aa8\\u0acb\",y:\"\\u0a8f\\u0a95 \\u0ab5\\u0ab0\\u0acd\\u0ab7\",yy:\"%d \\u0ab5\\u0ab0\\u0acd\\u0ab7\"},preparse:function(e){return e.replace(/[\\u0ae7\\u0ae8\\u0ae9\\u0aea\\u0aeb\\u0aec\\u0aed\\u0aee\\u0aef\\u0ae6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0ab0\\u0abe\\u0aa4|\\u0aac\\u0aaa\\u0acb\\u0ab0|\\u0ab8\\u0ab5\\u0abe\\u0ab0|\\u0ab8\\u0abe\\u0a82\\u0a9c/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0ab0\\u0abe\\u0aa4\"===t?e<4?e:e+12:\"\\u0ab8\\u0ab5\\u0abe\\u0ab0\"===t?e:\"\\u0aac\\u0aaa\\u0acb\\u0ab0\"===t?e>=10?e:e+12:\"\\u0ab8\\u0abe\\u0a82\\u0a9c\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0ab0\\u0abe\\u0aa4\":e<10?\"\\u0ab8\\u0ab5\\u0abe\\u0ab0\":e<17?\"\\u0aac\\u0aaa\\u0acb\\u0ab0\":e<20?\"\\u0ab8\\u0abe\\u0a82\\u0a9c\":\"\\u0ab0\\u0abe\\u0aa4\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"4dOw\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ie\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"6+QB\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"6B0Y\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u17e1\",2:\"\\u17e2\",3:\"\\u17e3\",4:\"\\u17e4\",5:\"\\u17e5\",6:\"\\u17e6\",7:\"\\u17e7\",8:\"\\u17e8\",9:\"\\u17e9\",0:\"\\u17e0\"},n={\"\\u17e1\":\"1\",\"\\u17e2\":\"2\",\"\\u17e3\":\"3\",\"\\u17e4\":\"4\",\"\\u17e5\":\"5\",\"\\u17e6\":\"6\",\"\\u17e7\":\"7\",\"\\u17e8\":\"8\",\"\\u17e9\":\"9\",\"\\u17e0\":\"0\"};e.defineLocale(\"km\",{months:\"\\u1798\\u1780\\u179a\\u17b6_\\u1780\\u17bb\\u1798\\u17d2\\u1797\\u17c8_\\u1798\\u17b8\\u1793\\u17b6_\\u1798\\u17c1\\u179f\\u17b6_\\u17a7\\u179f\\u1797\\u17b6_\\u1798\\u17b7\\u1790\\u17bb\\u1793\\u17b6_\\u1780\\u1780\\u17d2\\u1780\\u178a\\u17b6_\\u179f\\u17b8\\u17a0\\u17b6_\\u1780\\u1789\\u17d2\\u1789\\u17b6_\\u178f\\u17bb\\u179b\\u17b6_\\u179c\\u17b7\\u1785\\u17d2\\u1786\\u17b7\\u1780\\u17b6_\\u1792\\u17d2\\u1793\\u17bc\".split(\"_\"),monthsShort:\"\\u1798\\u1780\\u179a\\u17b6_\\u1780\\u17bb\\u1798\\u17d2\\u1797\\u17c8_\\u1798\\u17b8\\u1793\\u17b6_\\u1798\\u17c1\\u179f\\u17b6_\\u17a7\\u179f\\u1797\\u17b6_\\u1798\\u17b7\\u1790\\u17bb\\u1793\\u17b6_\\u1780\\u1780\\u17d2\\u1780\\u178a\\u17b6_\\u179f\\u17b8\\u17a0\\u17b6_\\u1780\\u1789\\u17d2\\u1789\\u17b6_\\u178f\\u17bb\\u179b\\u17b6_\\u179c\\u17b7\\u1785\\u17d2\\u1786\\u17b7\\u1780\\u17b6_\\u1792\\u17d2\\u1793\\u17bc\".split(\"_\"),weekdays:\"\\u17a2\\u17b6\\u1791\\u17b7\\u178f\\u17d2\\u1799_\\u1785\\u17d0\\u1793\\u17d2\\u1791_\\u17a2\\u1784\\u17d2\\u1782\\u17b6\\u179a_\\u1796\\u17bb\\u1792_\\u1796\\u17d2\\u179a\\u17a0\\u179f\\u17d2\\u1794\\u178f\\u17b7\\u17cd_\\u179f\\u17bb\\u1780\\u17d2\\u179a_\\u179f\\u17c5\\u179a\\u17cd\".split(\"_\"),weekdaysShort:\"\\u17a2\\u17b6_\\u1785_\\u17a2_\\u1796_\\u1796\\u17d2\\u179a_\\u179f\\u17bb_\\u179f\".split(\"_\"),weekdaysMin:\"\\u17a2\\u17b6_\\u1785_\\u17a2_\\u1796_\\u1796\\u17d2\\u179a_\\u179f\\u17bb_\\u179f\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u1796\\u17d2\\u179a\\u17b9\\u1780|\\u179b\\u17d2\\u1784\\u17b6\\u1785/,isPM:function(e){return\"\\u179b\\u17d2\\u1784\\u17b6\\u1785\"===e},meridiem:function(e,t,n){return e<12?\"\\u1796\\u17d2\\u179a\\u17b9\\u1780\":\"\\u179b\\u17d2\\u1784\\u17b6\\u1785\"},calendar:{sameDay:\"[\\u1790\\u17d2\\u1784\\u17c3\\u1793\\u17c1\\u17c7 \\u1798\\u17c9\\u17c4\\u1784] LT\",nextDay:\"[\\u179f\\u17d2\\u17a2\\u17c2\\u1780 \\u1798\\u17c9\\u17c4\\u1784] LT\",nextWeek:\"dddd [\\u1798\\u17c9\\u17c4\\u1784] LT\",lastDay:\"[\\u1798\\u17d2\\u179f\\u17b7\\u179b\\u1798\\u17b7\\u1789 \\u1798\\u17c9\\u17c4\\u1784] LT\",lastWeek:\"dddd [\\u179f\\u1794\\u17d2\\u178f\\u17b6\\u17a0\\u17cd\\u1798\\u17bb\\u1793] [\\u1798\\u17c9\\u17c4\\u1784] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u1791\\u17c0\\u178f\",past:\"%s\\u1798\\u17bb\\u1793\",s:\"\\u1794\\u17c9\\u17bb\\u1793\\u17d2\\u1798\\u17b6\\u1793\\u179c\\u17b7\\u1793\\u17b6\\u1791\\u17b8\",ss:\"%d \\u179c\\u17b7\\u1793\\u17b6\\u1791\\u17b8\",m:\"\\u1798\\u17bd\\u1799\\u1793\\u17b6\\u1791\\u17b8\",mm:\"%d \\u1793\\u17b6\\u1791\\u17b8\",h:\"\\u1798\\u17bd\\u1799\\u1798\\u17c9\\u17c4\\u1784\",hh:\"%d \\u1798\\u17c9\\u17c4\\u1784\",d:\"\\u1798\\u17bd\\u1799\\u1790\\u17d2\\u1784\\u17c3\",dd:\"%d \\u1790\\u17d2\\u1784\\u17c3\",M:\"\\u1798\\u17bd\\u1799\\u1781\\u17c2\",MM:\"%d \\u1781\\u17c2\",y:\"\\u1798\\u17bd\\u1799\\u1786\\u17d2\\u1793\\u17b6\\u17c6\",yy:\"%d \\u1786\\u17d2\\u1793\\u17b6\\u17c6\"},dayOfMonthOrdinalParse:/\\u1791\\u17b8\\d{1,2}/,ordinal:\"\\u1791\\u17b8%d\",preparse:function(e){return e.replace(/[\\u17e1\\u17e2\\u17e3\\u17e4\\u17e5\\u17e6\\u17e7\\u17e8\\u17e9\\u17e0]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"7BjC\":function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={s:[\"m\\xf5ne sekundi\",\"m\\xf5ni sekund\",\"paar sekundit\"],ss:[e+\"sekundi\",e+\"sekundit\"],m:[\"\\xfche minuti\",\"\\xfcks minut\"],mm:[e+\" minuti\",e+\" minutit\"],h:[\"\\xfche tunni\",\"tund aega\",\"\\xfcks tund\"],hh:[e+\" tunni\",e+\" tundi\"],d:[\"\\xfche p\\xe4eva\",\"\\xfcks p\\xe4ev\"],M:[\"kuu aja\",\"kuu aega\",\"\\xfcks kuu\"],MM:[e+\" kuu\",e+\" kuud\"],y:[\"\\xfche aasta\",\"aasta\",\"\\xfcks aasta\"],yy:[e+\" aasta\",e+\" aastat\"]};return t?s[n][2]?s[n][2]:s[n][1]:i?s[n][0]:s[n][1]}e.defineLocale(\"et\",{months:\"jaanuar_veebruar_m\\xe4rts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember\".split(\"_\"),monthsShort:\"jaan_veebr_m\\xe4rts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets\".split(\"_\"),weekdays:\"p\\xfchap\\xe4ev_esmasp\\xe4ev_teisip\\xe4ev_kolmap\\xe4ev_neljap\\xe4ev_reede_laup\\xe4ev\".split(\"_\"),weekdaysShort:\"P_E_T_K_N_R_L\".split(\"_\"),weekdaysMin:\"P_E_T_K_N_R_L\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[T\\xe4na,] LT\",nextDay:\"[Homme,] LT\",nextWeek:\"[J\\xe4rgmine] dddd LT\",lastDay:\"[Eile,] LT\",lastWeek:\"[Eelmine] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s p\\xe4rast\",past:\"%s tagasi\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:\"%d p\\xe4eva\",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"7aV9\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"si\",{months:\"\\u0da2\\u0db1\\u0dc0\\u0dcf\\u0dbb\\u0dd2_\\u0db4\\u0dd9\\u0db6\\u0dbb\\u0dc0\\u0dcf\\u0dbb\\u0dd2_\\u0db8\\u0dcf\\u0dbb\\u0dca\\u0dad\\u0dd4_\\u0d85\\u0db4\\u0dca\\u200d\\u0dbb\\u0dda\\u0dbd\\u0dca_\\u0db8\\u0dd0\\u0dba\\u0dd2_\\u0da2\\u0dd6\\u0db1\\u0dd2_\\u0da2\\u0dd6\\u0dbd\\u0dd2_\\u0d85\\u0d9c\\u0ddd\\u0dc3\\u0dca\\u0dad\\u0dd4_\\u0dc3\\u0dd0\\u0db4\\u0dca\\u0dad\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca_\\u0d94\\u0d9a\\u0dca\\u0dad\\u0ddd\\u0db6\\u0dbb\\u0dca_\\u0db1\\u0ddc\\u0dc0\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca_\\u0daf\\u0dd9\\u0dc3\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca\".split(\"_\"),monthsShort:\"\\u0da2\\u0db1_\\u0db4\\u0dd9\\u0db6_\\u0db8\\u0dcf\\u0dbb\\u0dca_\\u0d85\\u0db4\\u0dca_\\u0db8\\u0dd0\\u0dba\\u0dd2_\\u0da2\\u0dd6\\u0db1\\u0dd2_\\u0da2\\u0dd6\\u0dbd\\u0dd2_\\u0d85\\u0d9c\\u0ddd_\\u0dc3\\u0dd0\\u0db4\\u0dca_\\u0d94\\u0d9a\\u0dca_\\u0db1\\u0ddc\\u0dc0\\u0dd0_\\u0daf\\u0dd9\\u0dc3\\u0dd0\".split(\"_\"),weekdays:\"\\u0d89\\u0dbb\\u0dd2\\u0daf\\u0dcf_\\u0dc3\\u0db3\\u0dd4\\u0daf\\u0dcf_\\u0d85\\u0d9f\\u0dc4\\u0dbb\\u0dd4\\u0dc0\\u0dcf\\u0daf\\u0dcf_\\u0db6\\u0daf\\u0dcf\\u0daf\\u0dcf_\\u0db6\\u0dca\\u200d\\u0dbb\\u0dc4\\u0dc3\\u0dca\\u0db4\\u0dad\\u0dd2\\u0db1\\u0dca\\u0daf\\u0dcf_\\u0dc3\\u0dd2\\u0d9a\\u0dd4\\u0dbb\\u0dcf\\u0daf\\u0dcf_\\u0dc3\\u0dd9\\u0db1\\u0dc3\\u0dd4\\u0dbb\\u0dcf\\u0daf\\u0dcf\".split(\"_\"),weekdaysShort:\"\\u0d89\\u0dbb\\u0dd2_\\u0dc3\\u0db3\\u0dd4_\\u0d85\\u0d9f_\\u0db6\\u0daf\\u0dcf_\\u0db6\\u0dca\\u200d\\u0dbb\\u0dc4_\\u0dc3\\u0dd2\\u0d9a\\u0dd4_\\u0dc3\\u0dd9\\u0db1\".split(\"_\"),weekdaysMin:\"\\u0d89_\\u0dc3_\\u0d85_\\u0db6_\\u0db6\\u0dca\\u200d\\u0dbb_\\u0dc3\\u0dd2_\\u0dc3\\u0dd9\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"a h:mm\",LTS:\"a h:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY MMMM D\",LLL:\"YYYY MMMM D, a h:mm\",LLLL:\"YYYY MMMM D [\\u0dc0\\u0dd0\\u0db1\\u0dd2] dddd, a h:mm:ss\"},calendar:{sameDay:\"[\\u0d85\\u0daf] LT[\\u0da7]\",nextDay:\"[\\u0dc4\\u0dd9\\u0da7] LT[\\u0da7]\",nextWeek:\"dddd LT[\\u0da7]\",lastDay:\"[\\u0d8a\\u0dba\\u0dda] LT[\\u0da7]\",lastWeek:\"[\\u0db4\\u0dc3\\u0dd4\\u0d9c\\u0dd2\\u0dba] dddd LT[\\u0da7]\",sameElse:\"L\"},relativeTime:{future:\"%s\\u0d9a\\u0dd2\\u0db1\\u0dca\",past:\"%s\\u0d9a\\u0da7 \\u0db4\\u0dd9\\u0dbb\",s:\"\\u0dad\\u0dad\\u0dca\\u0db4\\u0dbb \\u0d9a\\u0dd2\\u0dc4\\u0dd2\\u0db4\\u0dba\",ss:\"\\u0dad\\u0dad\\u0dca\\u0db4\\u0dbb %d\",m:\"\\u0db8\\u0dd2\\u0db1\\u0dd2\\u0dad\\u0dca\\u0dad\\u0dd4\\u0dc0\",mm:\"\\u0db8\\u0dd2\\u0db1\\u0dd2\\u0dad\\u0dca\\u0dad\\u0dd4 %d\",h:\"\\u0db4\\u0dd0\\u0dba\",hh:\"\\u0db4\\u0dd0\\u0dba %d\",d:\"\\u0daf\\u0dd2\\u0db1\\u0dba\",dd:\"\\u0daf\\u0dd2\\u0db1 %d\",M:\"\\u0db8\\u0dcf\\u0dc3\\u0dba\",MM:\"\\u0db8\\u0dcf\\u0dc3 %d\",y:\"\\u0dc0\\u0dc3\\u0dbb\",yy:\"\\u0dc0\\u0dc3\\u0dbb %d\"},dayOfMonthOrdinalParse:/\\d{1,2} \\u0dc0\\u0dd0\\u0db1\\u0dd2/,ordinal:function(e){return e+\" \\u0dc0\\u0dd0\\u0db1\\u0dd2\"},meridiemParse:/\\u0db4\\u0dd9\\u0dbb \\u0dc0\\u0dbb\\u0dd4|\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4|\\u0db4\\u0dd9.\\u0dc0|\\u0db4.\\u0dc0./,isPM:function(e){return\"\\u0db4.\\u0dc0.\"===e||\"\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4\"===e},meridiem:function(e,t,n){return e>11?n?\"\\u0db4.\\u0dc0.\":\"\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4\":n?\"\\u0db4\\u0dd9.\\u0dc0.\":\"\\u0db4\\u0dd9\\u0dbb \\u0dc0\\u0dbb\\u0dd4\"}})}(n(\"wd/R\"))},\"8/+R\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0a67\",2:\"\\u0a68\",3:\"\\u0a69\",4:\"\\u0a6a\",5:\"\\u0a6b\",6:\"\\u0a6c\",7:\"\\u0a6d\",8:\"\\u0a6e\",9:\"\\u0a6f\",0:\"\\u0a66\"},n={\"\\u0a67\":\"1\",\"\\u0a68\":\"2\",\"\\u0a69\":\"3\",\"\\u0a6a\":\"4\",\"\\u0a6b\":\"5\",\"\\u0a6c\":\"6\",\"\\u0a6d\":\"7\",\"\\u0a6e\":\"8\",\"\\u0a6f\":\"9\",\"\\u0a66\":\"0\"};e.defineLocale(\"pa-in\",{months:\"\\u0a1c\\u0a28\\u0a35\\u0a30\\u0a40_\\u0a2b\\u0a3c\\u0a30\\u0a35\\u0a30\\u0a40_\\u0a2e\\u0a3e\\u0a30\\u0a1a_\\u0a05\\u0a2a\\u0a4d\\u0a30\\u0a48\\u0a32_\\u0a2e\\u0a08_\\u0a1c\\u0a42\\u0a28_\\u0a1c\\u0a41\\u0a32\\u0a3e\\u0a08_\\u0a05\\u0a17\\u0a38\\u0a24_\\u0a38\\u0a24\\u0a70\\u0a2c\\u0a30_\\u0a05\\u0a15\\u0a24\\u0a42\\u0a2c\\u0a30_\\u0a28\\u0a35\\u0a70\\u0a2c\\u0a30_\\u0a26\\u0a38\\u0a70\\u0a2c\\u0a30\".split(\"_\"),monthsShort:\"\\u0a1c\\u0a28\\u0a35\\u0a30\\u0a40_\\u0a2b\\u0a3c\\u0a30\\u0a35\\u0a30\\u0a40_\\u0a2e\\u0a3e\\u0a30\\u0a1a_\\u0a05\\u0a2a\\u0a4d\\u0a30\\u0a48\\u0a32_\\u0a2e\\u0a08_\\u0a1c\\u0a42\\u0a28_\\u0a1c\\u0a41\\u0a32\\u0a3e\\u0a08_\\u0a05\\u0a17\\u0a38\\u0a24_\\u0a38\\u0a24\\u0a70\\u0a2c\\u0a30_\\u0a05\\u0a15\\u0a24\\u0a42\\u0a2c\\u0a30_\\u0a28\\u0a35\\u0a70\\u0a2c\\u0a30_\\u0a26\\u0a38\\u0a70\\u0a2c\\u0a30\".split(\"_\"),weekdays:\"\\u0a10\\u0a24\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a4b\\u0a2e\\u0a35\\u0a3e\\u0a30_\\u0a2e\\u0a70\\u0a17\\u0a32\\u0a35\\u0a3e\\u0a30_\\u0a2c\\u0a41\\u0a27\\u0a35\\u0a3e\\u0a30_\\u0a35\\u0a40\\u0a30\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a71\\u0a15\\u0a30\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\\u0a1a\\u0a30\\u0a35\\u0a3e\\u0a30\".split(\"_\"),weekdaysShort:\"\\u0a10\\u0a24_\\u0a38\\u0a4b\\u0a2e_\\u0a2e\\u0a70\\u0a17\\u0a32_\\u0a2c\\u0a41\\u0a27_\\u0a35\\u0a40\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a15\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\".split(\"_\"),weekdaysMin:\"\\u0a10\\u0a24_\\u0a38\\u0a4b\\u0a2e_\\u0a2e\\u0a70\\u0a17\\u0a32_\\u0a2c\\u0a41\\u0a27_\\u0a35\\u0a40\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a15\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0a35\\u0a1c\\u0a47\",LTS:\"A h:mm:ss \\u0a35\\u0a1c\\u0a47\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0a35\\u0a1c\\u0a47\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0a35\\u0a1c\\u0a47\"},calendar:{sameDay:\"[\\u0a05\\u0a1c] LT\",nextDay:\"[\\u0a15\\u0a32] LT\",nextWeek:\"[\\u0a05\\u0a17\\u0a32\\u0a3e] dddd, LT\",lastDay:\"[\\u0a15\\u0a32] LT\",lastWeek:\"[\\u0a2a\\u0a3f\\u0a1b\\u0a32\\u0a47] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0a35\\u0a3f\\u0a71\\u0a1a\",past:\"%s \\u0a2a\\u0a3f\\u0a1b\\u0a32\\u0a47\",s:\"\\u0a15\\u0a41\\u0a1d \\u0a38\\u0a15\\u0a3f\\u0a70\\u0a1f\",ss:\"%d \\u0a38\\u0a15\\u0a3f\\u0a70\\u0a1f\",m:\"\\u0a07\\u0a15 \\u0a2e\\u0a3f\\u0a70\\u0a1f\",mm:\"%d \\u0a2e\\u0a3f\\u0a70\\u0a1f\",h:\"\\u0a07\\u0a71\\u0a15 \\u0a18\\u0a70\\u0a1f\\u0a3e\",hh:\"%d \\u0a18\\u0a70\\u0a1f\\u0a47\",d:\"\\u0a07\\u0a71\\u0a15 \\u0a26\\u0a3f\\u0a28\",dd:\"%d \\u0a26\\u0a3f\\u0a28\",M:\"\\u0a07\\u0a71\\u0a15 \\u0a2e\\u0a39\\u0a40\\u0a28\\u0a3e\",MM:\"%d \\u0a2e\\u0a39\\u0a40\\u0a28\\u0a47\",y:\"\\u0a07\\u0a71\\u0a15 \\u0a38\\u0a3e\\u0a32\",yy:\"%d \\u0a38\\u0a3e\\u0a32\"},preparse:function(e){return e.replace(/[\\u0a67\\u0a68\\u0a69\\u0a6a\\u0a6b\\u0a6c\\u0a6d\\u0a6e\\u0a6f\\u0a66]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0a30\\u0a3e\\u0a24|\\u0a38\\u0a35\\u0a47\\u0a30|\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30|\\u0a38\\u0a3c\\u0a3e\\u0a2e/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0a30\\u0a3e\\u0a24\"===t?e<4?e:e+12:\"\\u0a38\\u0a35\\u0a47\\u0a30\"===t?e:\"\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30\"===t?e>=10?e:e+12:\"\\u0a38\\u0a3c\\u0a3e\\u0a2e\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0a30\\u0a3e\\u0a24\":e<10?\"\\u0a38\\u0a35\\u0a47\\u0a30\":e<17?\"\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30\":e<20?\"\\u0a38\\u0a3c\\u0a3e\\u0a2e\":\"\\u0a30\\u0a3e\\u0a24\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"8mBD\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt\",{months:\"Janeiro_Fevereiro_Mar\\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingo_Segunda-feira_Ter\\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\\xe1bado\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ter_Qua_Qui_Sex_S\\xe1b\".split(\"_\"),weekdaysMin:\"Do_2\\xaa_3\\xaa_4\\xaa_5\\xaa_6\\xaa_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY HH:mm\"},calendar:{sameDay:\"[Hoje \\xe0s] LT\",nextDay:\"[Amanh\\xe3 \\xe0s] LT\",nextWeek:\"dddd [\\xe0s] LT\",lastDay:\"[Ontem \\xe0s] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[\\xdaltimo] dddd [\\xe0s] LT\":\"[\\xdaltima] dddd [\\xe0s] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"h\\xe1 %s\",s:\"segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",M:\"um m\\xeas\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"9rRi\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"gd\",{months:[\"Am Faoilleach\",\"An Gearran\",\"Am M\\xe0rt\",\"An Giblean\",\"An C\\xe8itean\",\"An t-\\xd2gmhios\",\"An t-Iuchar\",\"An L\\xf9nastal\",\"An t-Sultain\",\"An D\\xe0mhair\",\"An t-Samhain\",\"An D\\xf9bhlachd\"],monthsShort:[\"Faoi\",\"Gear\",\"M\\xe0rt\",\"Gibl\",\"C\\xe8it\",\"\\xd2gmh\",\"Iuch\",\"L\\xf9n\",\"Sult\",\"D\\xe0mh\",\"Samh\",\"D\\xf9bh\"],monthsParseExact:!0,weekdays:[\"Did\\xf2mhnaich\",\"Diluain\",\"Dim\\xe0irt\",\"Diciadain\",\"Diardaoin\",\"Dihaoine\",\"Disathairne\"],weekdaysShort:[\"Did\",\"Dil\",\"Dim\",\"Dic\",\"Dia\",\"Dih\",\"Dis\"],weekdaysMin:[\"D\\xf2\",\"Lu\",\"M\\xe0\",\"Ci\",\"Ar\",\"Ha\",\"Sa\"],longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[An-diugh aig] LT\",nextDay:\"[A-m\\xe0ireach aig] LT\",nextWeek:\"dddd [aig] LT\",lastDay:\"[An-d\\xe8 aig] LT\",lastWeek:\"dddd [seo chaidh] [aig] LT\",sameElse:\"L\"},relativeTime:{future:\"ann an %s\",past:\"bho chionn %s\",s:\"beagan diogan\",ss:\"%d diogan\",m:\"mionaid\",mm:\"%d mionaidean\",h:\"uair\",hh:\"%d uairean\",d:\"latha\",dd:\"%d latha\",M:\"m\\xecos\",MM:\"%d m\\xecosan\",y:\"bliadhna\",yy:\"%d bliadhna\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"A+xa\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cv\",{months:\"\\u043a\\u04d1\\u0440\\u043b\\u0430\\u0447_\\u043d\\u0430\\u0440\\u04d1\\u0441_\\u043f\\u0443\\u0448_\\u0430\\u043a\\u0430_\\u043c\\u0430\\u0439_\\u04ab\\u04d7\\u0440\\u0442\\u043c\\u0435_\\u0443\\u0442\\u04d1_\\u04ab\\u0443\\u0440\\u043b\\u0430_\\u0430\\u0432\\u04d1\\u043d_\\u044e\\u043f\\u0430_\\u0447\\u04f3\\u043a_\\u0440\\u0430\\u0448\\u0442\\u0430\\u0432\".split(\"_\"),monthsShort:\"\\u043a\\u04d1\\u0440_\\u043d\\u0430\\u0440_\\u043f\\u0443\\u0448_\\u0430\\u043a\\u0430_\\u043c\\u0430\\u0439_\\u04ab\\u04d7\\u0440_\\u0443\\u0442\\u04d1_\\u04ab\\u0443\\u0440_\\u0430\\u0432\\u043d_\\u044e\\u043f\\u0430_\\u0447\\u04f3\\u043a_\\u0440\\u0430\\u0448\".split(\"_\"),weekdays:\"\\u0432\\u044b\\u0440\\u0441\\u0430\\u0440\\u043d\\u0438\\u043a\\u0443\\u043d_\\u0442\\u0443\\u043d\\u0442\\u0438\\u043a\\u0443\\u043d_\\u044b\\u0442\\u043b\\u0430\\u0440\\u0438\\u043a\\u0443\\u043d_\\u044e\\u043d\\u043a\\u0443\\u043d_\\u043a\\u04d7\\u04ab\\u043d\\u0435\\u0440\\u043d\\u0438\\u043a\\u0443\\u043d_\\u044d\\u0440\\u043d\\u0435\\u043a\\u0443\\u043d_\\u0448\\u04d1\\u043c\\u0430\\u0442\\u043a\\u0443\\u043d\".split(\"_\"),weekdaysShort:\"\\u0432\\u044b\\u0440_\\u0442\\u0443\\u043d_\\u044b\\u0442\\u043b_\\u044e\\u043d_\\u043a\\u04d7\\u04ab_\\u044d\\u0440\\u043d_\\u0448\\u04d1\\u043c\".split(\"_\"),weekdaysMin:\"\\u0432\\u0440_\\u0442\\u043d_\\u044b\\u0442_\\u044e\\u043d_\\u043a\\u04ab_\\u044d\\u0440_\\u0448\\u043c\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7]\",LLL:\"YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7], HH:mm\",LLLL:\"dddd, YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7], HH:mm\"},calendar:{sameDay:\"[\\u041f\\u0430\\u044f\\u043d] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",nextDay:\"[\\u042b\\u0440\\u0430\\u043d] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",lastDay:\"[\\u04d6\\u043d\\u0435\\u0440] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",nextWeek:\"[\\u04aa\\u0438\\u0442\\u0435\\u0441] dddd LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",lastWeek:\"[\\u0418\\u0440\\u0442\\u043d\\u04d7] dddd LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",sameElse:\"L\"},relativeTime:{future:function(e){return e+(/\\u0441\\u0435\\u0445\\u0435\\u0442$/i.exec(e)?\"\\u0440\\u0435\\u043d\":/\\u04ab\\u0443\\u043b$/i.exec(e)?\"\\u0442\\u0430\\u043d\":\"\\u0440\\u0430\\u043d\")},past:\"%s \\u043a\\u0430\\u044f\\u043b\\u043b\\u0430\",s:\"\\u043f\\u04d7\\u0440-\\u0438\\u043a \\u04ab\\u0435\\u043a\\u043a\\u0443\\u043d\\u0442\",ss:\"%d \\u04ab\\u0435\\u043a\\u043a\\u0443\\u043d\\u0442\",m:\"\\u043f\\u04d7\\u0440 \\u043c\\u0438\\u043d\\u0443\\u0442\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\",h:\"\\u043f\\u04d7\\u0440 \\u0441\\u0435\\u0445\\u0435\\u0442\",hh:\"%d \\u0441\\u0435\\u0445\\u0435\\u0442\",d:\"\\u043f\\u04d7\\u0440 \\u043a\\u0443\\u043d\",dd:\"%d \\u043a\\u0443\\u043d\",M:\"\\u043f\\u04d7\\u0440 \\u0443\\u0439\\u04d1\\u0445\",MM:\"%d \\u0443\\u0439\\u04d1\\u0445\",y:\"\\u043f\\u04d7\\u0440 \\u04ab\\u0443\\u043b\",yy:\"%d \\u04ab\\u0443\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-\\u043c\\u04d7\\u0448/,ordinal:\"%d-\\u043c\\u04d7\\u0448\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},AQ68:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz-latn\",{months:\"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr\".split(\"_\"),monthsShort:\"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek\".split(\"_\"),weekdays:\"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba\".split(\"_\"),weekdaysShort:\"Yak_Dush_Sesh_Chor_Pay_Jum_Shan\".split(\"_\"),weekdaysMin:\"Ya_Du_Se_Cho_Pa_Ju_Sha\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[Bugun soat] LT [da]\",nextDay:\"[Ertaga] LT [da]\",nextWeek:\"dddd [kuni soat] LT [da]\",lastDay:\"[Kecha soat] LT [da]\",lastWeek:\"[O'tgan] dddd [kuni soat] LT [da]\",sameElse:\"L\"},relativeTime:{future:\"Yaqin %s ichida\",past:\"Bir necha %s oldin\",s:\"soniya\",ss:\"%d soniya\",m:\"bir daqiqa\",mm:\"%d daqiqa\",h:\"bir soat\",hh:\"%d soat\",d:\"bir kun\",dd:\"%d kun\",M:\"bir oy\",MM:\"%d oy\",y:\"bir yil\",yy:\"%d yil\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},AvvY:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ml\",{months:\"\\u0d1c\\u0d28\\u0d41\\u0d35\\u0d30\\u0d3f_\\u0d2b\\u0d46\\u0d2c\\u0d4d\\u0d30\\u0d41\\u0d35\\u0d30\\u0d3f_\\u0d2e\\u0d3e\\u0d7c\\u0d1a\\u0d4d\\u0d1a\\u0d4d_\\u0d0f\\u0d2a\\u0d4d\\u0d30\\u0d3f\\u0d7d_\\u0d2e\\u0d47\\u0d2f\\u0d4d_\\u0d1c\\u0d42\\u0d7a_\\u0d1c\\u0d42\\u0d32\\u0d48_\\u0d13\\u0d17\\u0d38\\u0d4d\\u0d31\\u0d4d\\u0d31\\u0d4d_\\u0d38\\u0d46\\u0d2a\\u0d4d\\u0d31\\u0d4d\\u0d31\\u0d02\\u0d2c\\u0d7c_\\u0d12\\u0d15\\u0d4d\\u0d1f\\u0d4b\\u0d2c\\u0d7c_\\u0d28\\u0d35\\u0d02\\u0d2c\\u0d7c_\\u0d21\\u0d3f\\u0d38\\u0d02\\u0d2c\\u0d7c\".split(\"_\"),monthsShort:\"\\u0d1c\\u0d28\\u0d41._\\u0d2b\\u0d46\\u0d2c\\u0d4d\\u0d30\\u0d41._\\u0d2e\\u0d3e\\u0d7c._\\u0d0f\\u0d2a\\u0d4d\\u0d30\\u0d3f._\\u0d2e\\u0d47\\u0d2f\\u0d4d_\\u0d1c\\u0d42\\u0d7a_\\u0d1c\\u0d42\\u0d32\\u0d48._\\u0d13\\u0d17._\\u0d38\\u0d46\\u0d2a\\u0d4d\\u0d31\\u0d4d\\u0d31._\\u0d12\\u0d15\\u0d4d\\u0d1f\\u0d4b._\\u0d28\\u0d35\\u0d02._\\u0d21\\u0d3f\\u0d38\\u0d02.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0d1e\\u0d3e\\u0d2f\\u0d31\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d24\\u0d3f\\u0d19\\u0d4d\\u0d15\\u0d33\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d1a\\u0d4a\\u0d35\\u0d4d\\u0d35\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d2c\\u0d41\\u0d27\\u0d28\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d35\\u0d4d\\u0d2f\\u0d3e\\u0d34\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d35\\u0d46\\u0d33\\u0d4d\\u0d33\\u0d3f\\u0d2f\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d36\\u0d28\\u0d3f\\u0d2f\\u0d3e\\u0d34\\u0d4d\\u0d1a\".split(\"_\"),weekdaysShort:\"\\u0d1e\\u0d3e\\u0d2f\\u0d7c_\\u0d24\\u0d3f\\u0d19\\u0d4d\\u0d15\\u0d7e_\\u0d1a\\u0d4a\\u0d35\\u0d4d\\u0d35_\\u0d2c\\u0d41\\u0d27\\u0d7b_\\u0d35\\u0d4d\\u0d2f\\u0d3e\\u0d34\\u0d02_\\u0d35\\u0d46\\u0d33\\u0d4d\\u0d33\\u0d3f_\\u0d36\\u0d28\\u0d3f\".split(\"_\"),weekdaysMin:\"\\u0d1e\\u0d3e_\\u0d24\\u0d3f_\\u0d1a\\u0d4a_\\u0d2c\\u0d41_\\u0d35\\u0d4d\\u0d2f\\u0d3e_\\u0d35\\u0d46_\\u0d36\".split(\"_\"),longDateFormat:{LT:\"A h:mm -\\u0d28\\u0d41\",LTS:\"A h:mm:ss -\\u0d28\\u0d41\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm -\\u0d28\\u0d41\",LLLL:\"dddd, D MMMM YYYY, A h:mm -\\u0d28\\u0d41\"},calendar:{sameDay:\"[\\u0d07\\u0d28\\u0d4d\\u0d28\\u0d4d] LT\",nextDay:\"[\\u0d28\\u0d3e\\u0d33\\u0d46] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0d07\\u0d28\\u0d4d\\u0d28\\u0d32\\u0d46] LT\",lastWeek:\"[\\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\",past:\"%s \\u0d2e\\u0d41\\u0d7b\\u0d2a\\u0d4d\",s:\"\\u0d05\\u0d7d\\u0d2a \\u0d28\\u0d3f\\u0d2e\\u0d3f\\u0d37\\u0d19\\u0d4d\\u0d19\\u0d7e\",ss:\"%d \\u0d38\\u0d46\\u0d15\\u0d4d\\u0d15\\u0d7b\\u0d21\\u0d4d\",m:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d3f\\u0d28\\u0d3f\\u0d31\\u0d4d\\u0d31\\u0d4d\",mm:\"%d \\u0d2e\\u0d3f\\u0d28\\u0d3f\\u0d31\\u0d4d\\u0d31\\u0d4d\",h:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d23\\u0d3f\\u0d15\\u0d4d\\u0d15\\u0d42\\u0d7c\",hh:\"%d \\u0d2e\\u0d23\\u0d3f\\u0d15\\u0d4d\\u0d15\\u0d42\\u0d7c\",d:\"\\u0d12\\u0d30\\u0d41 \\u0d26\\u0d3f\\u0d35\\u0d38\\u0d02\",dd:\"%d \\u0d26\\u0d3f\\u0d35\\u0d38\\u0d02\",M:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d3e\\u0d38\\u0d02\",MM:\"%d \\u0d2e\\u0d3e\\u0d38\\u0d02\",y:\"\\u0d12\\u0d30\\u0d41 \\u0d35\\u0d7c\\u0d37\\u0d02\",yy:\"%d \\u0d35\\u0d7c\\u0d37\\u0d02\"},meridiemParse:/\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f|\\u0d30\\u0d3e\\u0d35\\u0d3f\\u0d32\\u0d46|\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d|\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02|\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f/i,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\"===t&&e>=4||\"\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\"===t||\"\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\":e<12?\"\\u0d30\\u0d3e\\u0d35\\u0d3f\\u0d32\\u0d46\":e<17?\"\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\":e<20?\"\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02\":\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\"}})}(n(\"wd/R\"))},B55N:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ja\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u65e5\\u66dc\\u65e5_\\u6708\\u66dc\\u65e5_\\u706b\\u66dc\\u65e5_\\u6c34\\u66dc\\u65e5_\\u6728\\u66dc\\u65e5_\\u91d1\\u66dc\\u65e5_\\u571f\\u66dc\\u65e5\".split(\"_\"),weekdaysShort:\"\\u65e5_\\u6708_\\u706b_\\u6c34_\\u6728_\\u91d1_\\u571f\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u6708_\\u706b_\\u6c34_\\u6728_\\u91d1_\\u571f\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5 dddd HH:mm\",l:\"YYYY/MM/DD\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5(ddd) HH:mm\"},meridiemParse:/\\u5348\\u524d|\\u5348\\u5f8c/i,isPM:function(e){return\"\\u5348\\u5f8c\"===e},meridiem:function(e,t,n){return e<12?\"\\u5348\\u524d\":\"\\u5348\\u5f8c\"},calendar:{sameDay:\"[\\u4eca\\u65e5] LT\",nextDay:\"[\\u660e\\u65e5] LT\",nextWeek:function(e){return e.week()12?e:e+12:\"sanje\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"rati\":e<12?\"sokalli\":e<16?\"donparam\":e<20?\"sanje\":\"rati\"}})}(n(\"wd/R\"))},Dkky:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ch\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Dmvi:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-au\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},DoHr:function(e,t,n){!function(e){\"use strict\";var t={1:\"'inci\",5:\"'inci\",8:\"'inci\",70:\"'inci\",80:\"'inci\",2:\"'nci\",7:\"'nci\",20:\"'nci\",50:\"'nci\",3:\"'\\xfcnc\\xfc\",4:\"'\\xfcnc\\xfc\",100:\"'\\xfcnc\\xfc\",6:\"'nc\\u0131\",9:\"'uncu\",10:\"'uncu\",30:\"'uncu\",60:\"'\\u0131nc\\u0131\",90:\"'\\u0131nc\\u0131\"};e.defineLocale(\"tr\",{months:\"Ocak_\\u015eubat_Mart_Nisan_May\\u0131s_Haziran_Temmuz_A\\u011fustos_Eyl\\xfcl_Ekim_Kas\\u0131m_Aral\\u0131k\".split(\"_\"),monthsShort:\"Oca_\\u015eub_Mar_Nis_May_Haz_Tem_A\\u011fu_Eyl_Eki_Kas_Ara\".split(\"_\"),weekdays:\"Pazar_Pazartesi_Sal\\u0131_\\xc7ar\\u015famba_Per\\u015fembe_Cuma_Cumartesi\".split(\"_\"),weekdaysShort:\"Paz_Pts_Sal_\\xc7ar_Per_Cum_Cts\".split(\"_\"),weekdaysMin:\"Pz_Pt_Sa_\\xc7a_Pe_Cu_Ct\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bug\\xfcn saat] LT\",nextDay:\"[yar\\u0131n saat] LT\",nextWeek:\"[gelecek] dddd [saat] LT\",lastDay:\"[d\\xfcn] LT\",lastWeek:\"[ge\\xe7en] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s \\xf6nce\",s:\"birka\\xe7 saniye\",ss:\"%d saniye\",m:\"bir dakika\",mm:\"%d dakika\",h:\"bir saat\",hh:\"%d saat\",d:\"bir g\\xfcn\",dd:\"%d g\\xfcn\",M:\"bir ay\",MM:\"%d ay\",y:\"bir y\\u0131l\",yy:\"%d y\\u0131l\"},ordinal:function(e,n){switch(n){case\"d\":case\"D\":case\"Do\":case\"DD\":return e;default:if(0===e)return e+\"'\\u0131nc\\u0131\";var i=e%10;return e+(t[i]||t[e%100-i]||t[e>=100?100:null])}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},DxQv:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"da\",{months:\"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"s\\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\\xf8rdag\".split(\"_\"),weekdaysShort:\"s\\xf8n_man_tir_ons_tor_fre_l\\xf8r\".split(\"_\"),weekdaysMin:\"s\\xf8_ma_ti_on_to_fr_l\\xf8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd [d.] D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"p\\xe5 dddd [kl.] LT\",lastDay:\"[i g\\xe5r kl.] LT\",lastWeek:\"[i] dddd[s kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"f\\xe5 sekunder\",ss:\"%d sekunder\",m:\"et minut\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dage\",M:\"en m\\xe5ned\",MM:\"%d m\\xe5neder\",y:\"et \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},Dzi0:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tl-ph\",{months:\"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre\".split(\"_\"),monthsShort:\"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis\".split(\"_\"),weekdays:\"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado\".split(\"_\"),weekdaysShort:\"Lin_Lun_Mar_Miy_Huw_Biy_Sab\".split(\"_\"),weekdaysMin:\"Li_Lu_Ma_Mi_Hu_Bi_Sab\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"MM/D/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY HH:mm\",LLLL:\"dddd, MMMM DD, YYYY HH:mm\"},calendar:{sameDay:\"LT [ngayong araw]\",nextDay:\"[Bukas ng] LT\",nextWeek:\"LT [sa susunod na] dddd\",lastDay:\"LT [kahapon]\",lastWeek:\"LT [noong nakaraang] dddd\",sameElse:\"L\"},relativeTime:{future:\"sa loob ng %s\",past:\"%s ang nakalipas\",s:\"ilang segundo\",ss:\"%d segundo\",m:\"isang minuto\",mm:\"%d minuto\",h:\"isang oras\",hh:\"%d oras\",d:\"isang araw\",dd:\"%d araw\",M:\"isang buwan\",MM:\"%d buwan\",y:\"isang taon\",yy:\"%d taon\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"E+lV\":function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430\",\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0435\",\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\"],m:[\"\\u0458\\u0435\\u0434\\u0430\\u043d \\u043c\\u0438\\u043d\\u0443\\u0442\",\"\\u0458\\u0435\\u0434\\u043d\\u0435 \\u043c\\u0438\\u043d\\u0443\\u0442\\u0435\"],mm:[\"\\u043c\\u0438\\u043d\\u0443\\u0442\",\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0435\",\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\"],h:[\"\\u0458\\u0435\\u0434\\u0430\\u043d \\u0441\\u0430\\u0442\",\"\\u0458\\u0435\\u0434\\u043d\\u043e\\u0433 \\u0441\\u0430\\u0442\\u0430\"],hh:[\"\\u0441\\u0430\\u0442\",\"\\u0441\\u0430\\u0442\\u0430\",\"\\u0441\\u0430\\u0442\\u0438\"],dd:[\"\\u0434\\u0430\\u043d\",\"\\u0434\\u0430\\u043d\\u0430\",\"\\u0434\\u0430\\u043d\\u0430\"],MM:[\"\\u043c\\u0435\\u0441\\u0435\\u0446\",\"\\u043c\\u0435\\u0441\\u0435\\u0446\\u0430\",\"\\u043c\\u0435\\u0441\\u0435\\u0446\\u0438\"],yy:[\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0435\",\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var s=t.words[i];return 1===i.length?n?s[0]:s[1]:e+\" \"+t.correctGrammaticalCase(e,s)}};e.defineLocale(\"sr-cyrl\",{months:\"\\u0458\\u0430\\u043d\\u0443\\u0430\\u0440_\\u0444\\u0435\\u0431\\u0440\\u0443\\u0430\\u0440_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0431\\u0430\\u0440_\\u043e\\u043a\\u0442\\u043e\\u0431\\u0430\\u0440_\\u043d\\u043e\\u0432\\u0435\\u043c\\u0431\\u0430\\u0440_\\u0434\\u0435\\u0446\\u0435\\u043c\\u0431\\u0430\\u0440\".split(\"_\"),monthsShort:\"\\u0458\\u0430\\u043d._\\u0444\\u0435\\u0431._\\u043c\\u0430\\u0440._\\u0430\\u043f\\u0440._\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043f._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u0432._\\u0434\\u0435\\u0446.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u0459\\u0430_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u0459\\u0430\\u043a_\\u0443\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u0430\\u043a_\\u043f\\u0435\\u0442\\u0430\\u043a_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434._\\u043f\\u043e\\u043d._\\u0443\\u0442\\u043e._\\u0441\\u0440\\u0435._\\u0447\\u0435\\u0442._\\u043f\\u0435\\u0442._\\u0441\\u0443\\u0431.\".split(\"_\"),weekdaysMin:\"\\u043d\\u0435_\\u043f\\u043e_\\u0443\\u0442_\\u0441\\u0440_\\u0447\\u0435_\\u043f\\u0435_\\u0441\\u0443\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0434\\u0430\\u043d\\u0430\\u0441 \\u0443] LT\",nextDay:\"[\\u0441\\u0443\\u0442\\u0440\\u0430 \\u0443] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[\\u0443] [\\u043d\\u0435\\u0434\\u0435\\u0459\\u0443] [\\u0443] LT\";case 3:return\"[\\u0443] [\\u0441\\u0440\\u0435\\u0434\\u0443] [\\u0443] LT\";case 6:return\"[\\u0443] [\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443] [\\u0443] LT\";case 1:case 2:case 4:case 5:return\"[\\u0443] dddd [\\u0443] LT\"}},lastDay:\"[\\u0458\\u0443\\u0447\\u0435 \\u0443] LT\",lastWeek:function(){return[\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u043d\\u0435\\u0434\\u0435\\u0459\\u0435] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u0459\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u0443\\u0442\\u043e\\u0440\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u0441\\u0440\\u0435\\u0434\\u0435] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u043f\\u0435\\u0442\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u0441\\u0443\\u0431\\u043e\\u0442\\u0435] [\\u0443] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"\\u0437\\u0430 %s\",past:\"\\u043f\\u0440\\u0435 %s\",s:\"\\u043d\\u0435\\u043a\\u043e\\u043b\\u0438\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"\\u0434\\u0430\\u043d\",dd:t.translate,M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:t.translate,y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},EOgW:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"th\",{months:\"\\u0e21\\u0e01\\u0e23\\u0e32\\u0e04\\u0e21_\\u0e01\\u0e38\\u0e21\\u0e20\\u0e32\\u0e1e\\u0e31\\u0e19\\u0e18\\u0e4c_\\u0e21\\u0e35\\u0e19\\u0e32\\u0e04\\u0e21_\\u0e40\\u0e21\\u0e29\\u0e32\\u0e22\\u0e19_\\u0e1e\\u0e24\\u0e29\\u0e20\\u0e32\\u0e04\\u0e21_\\u0e21\\u0e34\\u0e16\\u0e38\\u0e19\\u0e32\\u0e22\\u0e19_\\u0e01\\u0e23\\u0e01\\u0e0e\\u0e32\\u0e04\\u0e21_\\u0e2a\\u0e34\\u0e07\\u0e2b\\u0e32\\u0e04\\u0e21_\\u0e01\\u0e31\\u0e19\\u0e22\\u0e32\\u0e22\\u0e19_\\u0e15\\u0e38\\u0e25\\u0e32\\u0e04\\u0e21_\\u0e1e\\u0e24\\u0e28\\u0e08\\u0e34\\u0e01\\u0e32\\u0e22\\u0e19_\\u0e18\\u0e31\\u0e19\\u0e27\\u0e32\\u0e04\\u0e21\".split(\"_\"),monthsShort:\"\\u0e21.\\u0e04._\\u0e01.\\u0e1e._\\u0e21\\u0e35.\\u0e04._\\u0e40\\u0e21.\\u0e22._\\u0e1e.\\u0e04._\\u0e21\\u0e34.\\u0e22._\\u0e01.\\u0e04._\\u0e2a.\\u0e04._\\u0e01.\\u0e22._\\u0e15.\\u0e04._\\u0e1e.\\u0e22._\\u0e18.\\u0e04.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0e2d\\u0e32\\u0e17\\u0e34\\u0e15\\u0e22\\u0e4c_\\u0e08\\u0e31\\u0e19\\u0e17\\u0e23\\u0e4c_\\u0e2d\\u0e31\\u0e07\\u0e04\\u0e32\\u0e23_\\u0e1e\\u0e38\\u0e18_\\u0e1e\\u0e24\\u0e2b\\u0e31\\u0e2a\\u0e1a\\u0e14\\u0e35_\\u0e28\\u0e38\\u0e01\\u0e23\\u0e4c_\\u0e40\\u0e2a\\u0e32\\u0e23\\u0e4c\".split(\"_\"),weekdaysShort:\"\\u0e2d\\u0e32\\u0e17\\u0e34\\u0e15\\u0e22\\u0e4c_\\u0e08\\u0e31\\u0e19\\u0e17\\u0e23\\u0e4c_\\u0e2d\\u0e31\\u0e07\\u0e04\\u0e32\\u0e23_\\u0e1e\\u0e38\\u0e18_\\u0e1e\\u0e24\\u0e2b\\u0e31\\u0e2a_\\u0e28\\u0e38\\u0e01\\u0e23\\u0e4c_\\u0e40\\u0e2a\\u0e32\\u0e23\\u0e4c\".split(\"_\"),weekdaysMin:\"\\u0e2d\\u0e32._\\u0e08._\\u0e2d._\\u0e1e._\\u0e1e\\u0e24._\\u0e28._\\u0e2a.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY \\u0e40\\u0e27\\u0e25\\u0e32 H:mm\",LLLL:\"\\u0e27\\u0e31\\u0e19dddd\\u0e17\\u0e35\\u0e48 D MMMM YYYY \\u0e40\\u0e27\\u0e25\\u0e32 H:mm\"},meridiemParse:/\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07|\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07/,isPM:function(e){return\"\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\"===e},meridiem:function(e,t,n){return e<12?\"\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\":\"\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\"},calendar:{sameDay:\"[\\u0e27\\u0e31\\u0e19\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",nextDay:\"[\\u0e1e\\u0e23\\u0e38\\u0e48\\u0e07\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",nextWeek:\"dddd[\\u0e2b\\u0e19\\u0e49\\u0e32 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",lastDay:\"[\\u0e40\\u0e21\\u0e37\\u0e48\\u0e2d\\u0e27\\u0e32\\u0e19\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",lastWeek:\"[\\u0e27\\u0e31\\u0e19]dddd[\\u0e17\\u0e35\\u0e48\\u0e41\\u0e25\\u0e49\\u0e27 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0e2d\\u0e35\\u0e01 %s\",past:\"%s\\u0e17\\u0e35\\u0e48\\u0e41\\u0e25\\u0e49\\u0e27\",s:\"\\u0e44\\u0e21\\u0e48\\u0e01\\u0e35\\u0e48\\u0e27\\u0e34\\u0e19\\u0e32\\u0e17\\u0e35\",ss:\"%d \\u0e27\\u0e34\\u0e19\\u0e32\\u0e17\\u0e35\",m:\"1 \\u0e19\\u0e32\\u0e17\\u0e35\",mm:\"%d \\u0e19\\u0e32\\u0e17\\u0e35\",h:\"1 \\u0e0a\\u0e31\\u0e48\\u0e27\\u0e42\\u0e21\\u0e07\",hh:\"%d \\u0e0a\\u0e31\\u0e48\\u0e27\\u0e42\\u0e21\\u0e07\",d:\"1 \\u0e27\\u0e31\\u0e19\",dd:\"%d \\u0e27\\u0e31\\u0e19\",M:\"1 \\u0e40\\u0e14\\u0e37\\u0e2d\\u0e19\",MM:\"%d \\u0e40\\u0e14\\u0e37\\u0e2d\\u0e19\",y:\"1 \\u0e1b\\u0e35\",yy:\"%d \\u0e1b\\u0e35\"}})}(n(\"wd/R\"))},G0Uy:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mt\",{months:\"Jannar_Frar_Marzu_April_Mejju_\\u0120unju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Di\\u010bembru\".split(\"_\"),monthsShort:\"Jan_Fra_Mar_Apr_Mej_\\u0120un_Lul_Aww_Set_Ott_Nov_Di\\u010b\".split(\"_\"),weekdays:\"Il-\\u0126add_It-Tnejn_It-Tlieta_L-Erbg\\u0127a_Il-\\u0126amis_Il-\\u0120img\\u0127a_Is-Sibt\".split(\"_\"),weekdaysShort:\"\\u0126ad_Tne_Tli_Erb_\\u0126am_\\u0120im_Sib\".split(\"_\"),weekdaysMin:\"\\u0126a_Tn_Tl_Er_\\u0126a_\\u0120i_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Illum fil-]LT\",nextDay:\"[G\\u0127ada fil-]LT\",nextWeek:\"dddd [fil-]LT\",lastDay:\"[Il-biera\\u0127 fil-]LT\",lastWeek:\"dddd [li g\\u0127adda] [fil-]LT\",sameElse:\"L\"},relativeTime:{future:\"f\\u2019 %s\",past:\"%s ilu\",s:\"ftit sekondi\",ss:\"%d sekondi\",m:\"minuta\",mm:\"%d minuti\",h:\"sieg\\u0127a\",hh:\"%d sieg\\u0127at\",d:\"\\u0121urnata\",dd:\"%d \\u0121ranet\",M:\"xahar\",MM:\"%d xhur\",y:\"sena\",yy:\"%d sni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},H8ED:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i,s;return\"m\"===n?t?\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0430\":\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0443\":\"h\"===n?t?\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0430\":\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0443\":e+\" \"+(i=+e,s={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0430_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u044b_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\":\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0443_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u044b_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\",hh:t?\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0430_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u044b_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\":\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0443_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u044b_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\",dd:\"\\u0434\\u0437\\u0435\\u043d\\u044c_\\u0434\\u043d\\u0456_\\u0434\\u0437\\u0451\\u043d\",MM:\"\\u043c\\u0435\\u0441\\u044f\\u0446_\\u043c\\u0435\\u0441\\u044f\\u0446\\u044b_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0430\\u045e\",yy:\"\\u0433\\u043e\\u0434_\\u0433\\u0430\\u0434\\u044b_\\u0433\\u0430\\u0434\\u043e\\u045e\"}[n].split(\"_\"),i%10==1&&i%100!=11?s[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?s[1]:s[2])}e.defineLocale(\"be\",{months:{format:\"\\u0441\\u0442\\u0443\\u0434\\u0437\\u0435\\u043d\\u044f_\\u043b\\u044e\\u0442\\u0430\\u0433\\u0430_\\u0441\\u0430\\u043a\\u0430\\u0432\\u0456\\u043a\\u0430_\\u043a\\u0440\\u0430\\u0441\\u0430\\u0432\\u0456\\u043a\\u0430_\\u0442\\u0440\\u0430\\u045e\\u043d\\u044f_\\u0447\\u044d\\u0440\\u0432\\u0435\\u043d\\u044f_\\u043b\\u0456\\u043f\\u0435\\u043d\\u044f_\\u0436\\u043d\\u0456\\u045e\\u043d\\u044f_\\u0432\\u0435\\u0440\\u0430\\u0441\\u043d\\u044f_\\u043a\\u0430\\u0441\\u0442\\u0440\\u044b\\u0447\\u043d\\u0456\\u043a\\u0430_\\u043b\\u0456\\u0441\\u0442\\u0430\\u043f\\u0430\\u0434\\u0430_\\u0441\\u043d\\u0435\\u0436\\u043d\\u044f\".split(\"_\"),standalone:\"\\u0441\\u0442\\u0443\\u0434\\u0437\\u0435\\u043d\\u044c_\\u043b\\u044e\\u0442\\u044b_\\u0441\\u0430\\u043a\\u0430\\u0432\\u0456\\u043a_\\u043a\\u0440\\u0430\\u0441\\u0430\\u0432\\u0456\\u043a_\\u0442\\u0440\\u0430\\u0432\\u0435\\u043d\\u044c_\\u0447\\u044d\\u0440\\u0432\\u0435\\u043d\\u044c_\\u043b\\u0456\\u043f\\u0435\\u043d\\u044c_\\u0436\\u043d\\u0456\\u0432\\u0435\\u043d\\u044c_\\u0432\\u0435\\u0440\\u0430\\u0441\\u0435\\u043d\\u044c_\\u043a\\u0430\\u0441\\u0442\\u0440\\u044b\\u0447\\u043d\\u0456\\u043a_\\u043b\\u0456\\u0441\\u0442\\u0430\\u043f\\u0430\\u0434_\\u0441\\u043d\\u0435\\u0436\\u0430\\u043d\\u044c\".split(\"_\")},monthsShort:\"\\u0441\\u0442\\u0443\\u0434_\\u043b\\u044e\\u0442_\\u0441\\u0430\\u043a_\\u043a\\u0440\\u0430\\u0441_\\u0442\\u0440\\u0430\\u0432_\\u0447\\u044d\\u0440\\u0432_\\u043b\\u0456\\u043f_\\u0436\\u043d\\u0456\\u0432_\\u0432\\u0435\\u0440_\\u043a\\u0430\\u0441\\u0442_\\u043b\\u0456\\u0441\\u0442_\\u0441\\u043d\\u0435\\u0436\".split(\"_\"),weekdays:{format:\"\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u044e_\\u043f\\u0430\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u0430\\u043a_\\u0430\\u045e\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0435\\u0440\\u0430\\u0434\\u0443_\\u0447\\u0430\\u0446\\u0432\\u0435\\u0440_\\u043f\\u044f\\u0442\\u043d\\u0456\\u0446\\u0443_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),standalone:\"\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u044f_\\u043f\\u0430\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u0430\\u043a_\\u0430\\u045e\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0435\\u0440\\u0430\\u0434\\u0430_\\u0447\\u0430\\u0446\\u0432\\u0435\\u0440_\\u043f\\u044f\\u0442\\u043d\\u0456\\u0446\\u0430_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),isFormat:/\\[ ?[\\u0423\\u0443\\u045e] ?(?:\\u043c\\u0456\\u043d\\u0443\\u043b\\u0443\\u044e|\\u043d\\u0430\\u0441\\u0442\\u0443\\u043f\\u043d\\u0443\\u044e)? ?\\] ?dddd/},weekdaysShort:\"\\u043d\\u0434_\\u043f\\u043d_\\u0430\\u0442_\\u0441\\u0440_\\u0447\\u0446_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0430\\u0442_\\u0441\\u0440_\\u0447\\u0446_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0433.\",LLL:\"D MMMM YYYY \\u0433., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0433., HH:mm\"},calendar:{sameDay:\"[\\u0421\\u0451\\u043d\\u043d\\u044f \\u045e] LT\",nextDay:\"[\\u0417\\u0430\\u045e\\u0442\\u0440\\u0430 \\u045e] LT\",lastDay:\"[\\u0423\\u0447\\u043e\\u0440\\u0430 \\u045e] LT\",nextWeek:function(){return\"[\\u0423] dddd [\\u045e] LT\"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return\"[\\u0423 \\u043c\\u0456\\u043d\\u0443\\u043b\\u0443\\u044e] dddd [\\u045e] LT\";case 1:case 2:case 4:return\"[\\u0423 \\u043c\\u0456\\u043d\\u0443\\u043b\\u044b] dddd [\\u045e] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u043f\\u0440\\u0430\\u0437 %s\",past:\"%s \\u0442\\u0430\\u043c\\u0443\",s:\"\\u043d\\u0435\\u043a\\u0430\\u043b\\u044c\\u043a\\u0456 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:t,mm:t,h:t,hh:t,d:\"\\u0434\\u0437\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0435\\u0441\\u044f\\u0446\",MM:t,y:\"\\u0433\\u043e\\u0434\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u044b|\\u0440\\u0430\\u043d\\u0456\\u0446\\u044b|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430/,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u044b\":e<12?\"\\u0440\\u0430\\u043d\\u0456\\u0446\\u044b\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0456|\\u044b|\\u0433\\u0430)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e%10!=2&&e%10!=3||e%100==12||e%100==13?e+\"-\\u044b\":e+\"-\\u0456\";case\"D\":return e+\"-\\u0433\\u0430\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},HP3h:function(e,t,n){!function(e){\"use strict\";var t={1:\"1\",2:\"2\",3:\"3\",4:\"4\",5:\"5\",6:\"6\",7:\"7\",8:\"8\",9:\"9\",0:\"0\"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},i={s:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062b\\u0627\\u0646\\u064a\\u0629\",\"\\u062b\\u0627\\u0646\\u064a\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u0627\\u0646\",\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u064a\\u0646\"],\"%d \\u062b\\u0648\\u0627\\u0646\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\"],m:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062f\\u0642\\u064a\\u0642\\u0629\",\"\\u062f\\u0642\\u064a\\u0642\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u0627\\u0646\",\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u064a\\u0646\"],\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\"],h:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0633\\u0627\\u0639\\u0629\",\"\\u0633\\u0627\\u0639\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u0633\\u0627\\u0639\\u062a\\u0627\\u0646\",\"\\u0633\\u0627\\u0639\\u062a\\u064a\\u0646\"],\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",\"%d \\u0633\\u0627\\u0639\\u0629\",\"%d \\u0633\\u0627\\u0639\\u0629\"],d:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u064a\\u0648\\u0645\",\"\\u064a\\u0648\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u064a\\u0648\\u0645\\u0627\\u0646\",\"\\u064a\\u0648\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u064a\\u0627\\u0645\",\"%d \\u064a\\u0648\\u0645\\u064b\\u0627\",\"%d \\u064a\\u0648\\u0645\"],M:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0634\\u0647\\u0631\",\"\\u0634\\u0647\\u0631 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0634\\u0647\\u0631\\u0627\\u0646\",\"\\u0634\\u0647\\u0631\\u064a\\u0646\"],\"%d \\u0623\\u0634\\u0647\\u0631\",\"%d \\u0634\\u0647\\u0631\\u0627\",\"%d \\u0634\\u0647\\u0631\"],y:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0639\\u0627\\u0645\",\"\\u0639\\u0627\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0639\\u0627\\u0645\\u0627\\u0646\",\"\\u0639\\u0627\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u0639\\u0648\\u0627\\u0645\",\"%d \\u0639\\u0627\\u0645\\u064b\\u0627\",\"%d \\u0639\\u0627\\u0645\"]},s=function(e){return function(t,s,r,o){var a=n(t),l=i[e][n(t)];return 2===a&&(l=l[s?0:1]),l.replace(/%d/i,t)}},r=[\"\\u064a\\u0646\\u0627\\u064a\\u0631\",\"\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631\",\"\\u0645\\u0627\\u0631\\u0633\",\"\\u0623\\u0628\\u0631\\u064a\\u0644\",\"\\u0645\\u0627\\u064a\\u0648\",\"\\u064a\\u0648\\u0646\\u064a\\u0648\",\"\\u064a\\u0648\\u0644\\u064a\\u0648\",\"\\u0623\\u063a\\u0633\\u0637\\u0633\",\"\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631\",\"\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631\",\"\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\"];e.defineLocale(\"ar-ly\",{months:r,monthsShort:r,weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/\\u200fM/\\u200fYYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u064b\\u0627 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0628\\u0639\\u062f %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:s(\"s\"),ss:s(\"s\"),m:s(\"m\"),mm:s(\"m\"),h:s(\"h\"),hh:s(\"h\"),d:s(\"d\"),dd:s(\"d\"),M:s(\"M\"),MM:s(\"M\"),y:s(\"y\"),yy:s(\"y\")},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},IBtZ:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ka\",{months:{standalone:\"\\u10d8\\u10d0\\u10dc\\u10d5\\u10d0\\u10e0\\u10d8_\\u10d7\\u10d4\\u10d1\\u10d4\\u10e0\\u10d5\\u10d0\\u10da\\u10d8_\\u10db\\u10d0\\u10e0\\u10e2\\u10d8_\\u10d0\\u10de\\u10e0\\u10d8\\u10da\\u10d8_\\u10db\\u10d0\\u10d8\\u10e1\\u10d8_\\u10d8\\u10d5\\u10dc\\u10d8\\u10e1\\u10d8_\\u10d8\\u10d5\\u10da\\u10d8\\u10e1\\u10d8_\\u10d0\\u10d2\\u10d5\\u10d8\\u10e1\\u10e2\\u10dd_\\u10e1\\u10d4\\u10e5\\u10e2\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10dd\\u10e5\\u10e2\\u10dd\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10dc\\u10dd\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10d3\\u10d4\\u10d9\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8\".split(\"_\"),format:\"\\u10d8\\u10d0\\u10dc\\u10d5\\u10d0\\u10e0\\u10e1_\\u10d7\\u10d4\\u10d1\\u10d4\\u10e0\\u10d5\\u10d0\\u10da\\u10e1_\\u10db\\u10d0\\u10e0\\u10e2\\u10e1_\\u10d0\\u10de\\u10e0\\u10d8\\u10da\\u10d8\\u10e1_\\u10db\\u10d0\\u10d8\\u10e1\\u10e1_\\u10d8\\u10d5\\u10dc\\u10d8\\u10e1\\u10e1_\\u10d8\\u10d5\\u10da\\u10d8\\u10e1\\u10e1_\\u10d0\\u10d2\\u10d5\\u10d8\\u10e1\\u10e2\\u10e1_\\u10e1\\u10d4\\u10e5\\u10e2\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10dd\\u10e5\\u10e2\\u10dd\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10dc\\u10dd\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10d3\\u10d4\\u10d9\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1\".split(\"_\")},monthsShort:\"\\u10d8\\u10d0\\u10dc_\\u10d7\\u10d4\\u10d1_\\u10db\\u10d0\\u10e0_\\u10d0\\u10de\\u10e0_\\u10db\\u10d0\\u10d8_\\u10d8\\u10d5\\u10dc_\\u10d8\\u10d5\\u10da_\\u10d0\\u10d2\\u10d5_\\u10e1\\u10d4\\u10e5_\\u10dd\\u10e5\\u10e2_\\u10dc\\u10dd\\u10d4_\\u10d3\\u10d4\\u10d9\".split(\"_\"),weekdays:{standalone:\"\\u10d9\\u10d5\\u10d8\\u10e0\\u10d0_\\u10dd\\u10e0\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10e1\\u10d0\\u10db\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10dd\\u10d7\\u10ee\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10ee\\u10e3\\u10d7\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10de\\u10d0\\u10e0\\u10d0\\u10e1\\u10d9\\u10d4\\u10d5\\u10d8_\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8\".split(\"_\"),format:\"\\u10d9\\u10d5\\u10d8\\u10e0\\u10d0\\u10e1_\\u10dd\\u10e0\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10e1\\u10d0\\u10db\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10dd\\u10d7\\u10ee\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10ee\\u10e3\\u10d7\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10de\\u10d0\\u10e0\\u10d0\\u10e1\\u10d9\\u10d4\\u10d5\\u10e1_\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1\".split(\"_\"),isFormat:/(\\u10ec\\u10d8\\u10dc\\u10d0|\\u10e8\\u10d4\\u10db\\u10d3\\u10d4\\u10d2)/},weekdaysShort:\"\\u10d9\\u10d5\\u10d8_\\u10dd\\u10e0\\u10e8_\\u10e1\\u10d0\\u10db_\\u10dd\\u10d7\\u10ee_\\u10ee\\u10e3\\u10d7_\\u10de\\u10d0\\u10e0_\\u10e8\\u10d0\\u10d1\".split(\"_\"),weekdaysMin:\"\\u10d9\\u10d5_\\u10dd\\u10e0_\\u10e1\\u10d0_\\u10dd\\u10d7_\\u10ee\\u10e3_\\u10de\\u10d0_\\u10e8\\u10d0\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[\\u10d3\\u10e6\\u10d4\\u10e1] LT[-\\u10d6\\u10d4]\",nextDay:\"[\\u10ee\\u10d5\\u10d0\\u10da] LT[-\\u10d6\\u10d4]\",lastDay:\"[\\u10d2\\u10e3\\u10e8\\u10d8\\u10dc] LT[-\\u10d6\\u10d4]\",nextWeek:\"[\\u10e8\\u10d4\\u10db\\u10d3\\u10d4\\u10d2] dddd LT[-\\u10d6\\u10d4]\",lastWeek:\"[\\u10ec\\u10d8\\u10dc\\u10d0] dddd LT-\\u10d6\\u10d4\",sameElse:\"L\"},relativeTime:{future:function(e){return/(\\u10ec\\u10d0\\u10db\\u10d8|\\u10ec\\u10e3\\u10d7\\u10d8|\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8|\\u10ec\\u10d4\\u10da\\u10d8)/.test(e)?e.replace(/\\u10d8$/,\"\\u10e8\\u10d8\"):e+\"\\u10e8\\u10d8\"},past:function(e){return/(\\u10ec\\u10d0\\u10db\\u10d8|\\u10ec\\u10e3\\u10d7\\u10d8|\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8|\\u10d3\\u10e6\\u10d4|\\u10d7\\u10d5\\u10d4)/.test(e)?e.replace(/(\\u10d8|\\u10d4)$/,\"\\u10d8\\u10e1 \\u10ec\\u10d8\\u10dc\"):/\\u10ec\\u10d4\\u10da\\u10d8/.test(e)?e.replace(/\\u10ec\\u10d4\\u10da\\u10d8$/,\"\\u10ec\\u10da\\u10d8\\u10e1 \\u10ec\\u10d8\\u10dc\"):void 0},s:\"\\u10e0\\u10d0\\u10db\\u10d3\\u10d4\\u10dc\\u10d8\\u10db\\u10d4 \\u10ec\\u10d0\\u10db\\u10d8\",ss:\"%d \\u10ec\\u10d0\\u10db\\u10d8\",m:\"\\u10ec\\u10e3\\u10d7\\u10d8\",mm:\"%d \\u10ec\\u10e3\\u10d7\\u10d8\",h:\"\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8\",hh:\"%d \\u10e1\\u10d0\\u10d0\\u10d7\\u10d8\",d:\"\\u10d3\\u10e6\\u10d4\",dd:\"%d \\u10d3\\u10e6\\u10d4\",M:\"\\u10d7\\u10d5\\u10d4\",MM:\"%d \\u10d7\\u10d5\\u10d4\",y:\"\\u10ec\\u10d4\\u10da\\u10d8\",yy:\"%d \\u10ec\\u10d4\\u10da\\u10d8\"},dayOfMonthOrdinalParse:/0|1-\\u10da\\u10d8|\\u10db\\u10d4-\\d{1,2}|\\d{1,2}-\\u10d4/,ordinal:function(e){return 0===e?e:1===e?e+\"-\\u10da\\u10d8\":e<20||e<=100&&e%20==0||e%100==0?\"\\u10db\\u10d4-\"+e:e+\"-\\u10d4\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"Ivi+\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ko\",{months:\"1\\uc6d4_2\\uc6d4_3\\uc6d4_4\\uc6d4_5\\uc6d4_6\\uc6d4_7\\uc6d4_8\\uc6d4_9\\uc6d4_10\\uc6d4_11\\uc6d4_12\\uc6d4\".split(\"_\"),monthsShort:\"1\\uc6d4_2\\uc6d4_3\\uc6d4_4\\uc6d4_5\\uc6d4_6\\uc6d4_7\\uc6d4_8\\uc6d4_9\\uc6d4_10\\uc6d4_11\\uc6d4_12\\uc6d4\".split(\"_\"),weekdays:\"\\uc77c\\uc694\\uc77c_\\uc6d4\\uc694\\uc77c_\\ud654\\uc694\\uc77c_\\uc218\\uc694\\uc77c_\\ubaa9\\uc694\\uc77c_\\uae08\\uc694\\uc77c_\\ud1a0\\uc694\\uc77c\".split(\"_\"),weekdaysShort:\"\\uc77c_\\uc6d4_\\ud654_\\uc218_\\ubaa9_\\uae08_\\ud1a0\".split(\"_\"),weekdaysMin:\"\\uc77c_\\uc6d4_\\ud654_\\uc218_\\ubaa9_\\uae08_\\ud1a0\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY\\ub144 MMMM D\\uc77c\",LLL:\"YYYY\\ub144 MMMM D\\uc77c A h:mm\",LLLL:\"YYYY\\ub144 MMMM D\\uc77c dddd A h:mm\",l:\"YYYY.MM.DD.\",ll:\"YYYY\\ub144 MMMM D\\uc77c\",lll:\"YYYY\\ub144 MMMM D\\uc77c A h:mm\",llll:\"YYYY\\ub144 MMMM D\\uc77c dddd A h:mm\"},calendar:{sameDay:\"\\uc624\\ub298 LT\",nextDay:\"\\ub0b4\\uc77c LT\",nextWeek:\"dddd LT\",lastDay:\"\\uc5b4\\uc81c LT\",lastWeek:\"\\uc9c0\\ub09c\\uc8fc dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\ud6c4\",past:\"%s \\uc804\",s:\"\\uba87 \\ucd08\",ss:\"%d\\ucd08\",m:\"1\\ubd84\",mm:\"%d\\ubd84\",h:\"\\ud55c \\uc2dc\\uac04\",hh:\"%d\\uc2dc\\uac04\",d:\"\\ud558\\ub8e8\",dd:\"%d\\uc77c\",M:\"\\ud55c \\ub2ec\",MM:\"%d\\ub2ec\",y:\"\\uc77c \\ub144\",yy:\"%d\\ub144\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\uc77c|\\uc6d4|\\uc8fc)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\uc77c\";case\"M\":return e+\"\\uc6d4\";case\"w\":case\"W\":return e+\"\\uc8fc\";default:return e}},meridiemParse:/\\uc624\\uc804|\\uc624\\ud6c4/,isPM:function(e){return\"\\uc624\\ud6c4\"===e},meridiem:function(e,t,n){return e<12?\"\\uc624\\uc804\":\"\\uc624\\ud6c4\"}})}(n(\"wd/R\"))},\"JCF/\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"},i=[\"\\u06a9\\u0627\\u0646\\u0648\\u0646\\u06cc \\u062f\\u0648\\u0648\\u06d5\\u0645\",\"\\u0634\\u0648\\u0628\\u0627\\u062a\",\"\\u0626\\u0627\\u0632\\u0627\\u0631\",\"\\u0646\\u06cc\\u0633\\u0627\\u0646\",\"\\u0626\\u0627\\u06cc\\u0627\\u0631\",\"\\u062d\\u0648\\u0632\\u06d5\\u06cc\\u0631\\u0627\\u0646\",\"\\u062a\\u06d5\\u0645\\u0645\\u0648\\u0632\",\"\\u0626\\u0627\\u0628\",\"\\u0626\\u06d5\\u06cc\\u0644\\u0648\\u0648\\u0644\",\"\\u062a\\u0634\\u0631\\u06cc\\u0646\\u06cc \\u06cc\\u06d5\\u0643\\u06d5\\u0645\",\"\\u062a\\u0634\\u0631\\u06cc\\u0646\\u06cc \\u062f\\u0648\\u0648\\u06d5\\u0645\",\"\\u0643\\u0627\\u0646\\u0648\\u0646\\u06cc \\u06cc\\u06d5\\u06a9\\u06d5\\u0645\"];e.defineLocale(\"ku\",{months:i,monthsShort:i,weekdays:\"\\u06cc\\u0647\\u200c\\u0643\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u062f\\u0648\\u0648\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0633\\u06ce\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0686\\u0648\\u0627\\u0631\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u067e\\u06ce\\u0646\\u062c\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0647\\u0647\\u200c\\u06cc\\u0646\\u06cc_\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c\".split(\"_\"),weekdaysShort:\"\\u06cc\\u0647\\u200c\\u0643\\u0634\\u0647\\u200c\\u0645_\\u062f\\u0648\\u0648\\u0634\\u0647\\u200c\\u0645_\\u0633\\u06ce\\u0634\\u0647\\u200c\\u0645_\\u0686\\u0648\\u0627\\u0631\\u0634\\u0647\\u200c\\u0645_\\u067e\\u06ce\\u0646\\u062c\\u0634\\u0647\\u200c\\u0645_\\u0647\\u0647\\u200c\\u06cc\\u0646\\u06cc_\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c\".split(\"_\"),weekdaysMin:\"\\u06cc_\\u062f_\\u0633_\\u0686_\\u067e_\\u0647_\\u0634\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c|\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc/,isPM:function(e){return/\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c/.test(e)},meridiem:function(e,t,n){return e<12?\"\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc\":\"\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c\"},calendar:{sameDay:\"[\\u0626\\u0647\\u200c\\u0645\\u0631\\u06c6 \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",nextDay:\"[\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",nextWeek:\"dddd [\\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",lastDay:\"[\\u062f\\u0648\\u06ce\\u0646\\u06ce \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",lastWeek:\"dddd [\\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0644\\u0647\\u200c %s\",past:\"%s\",s:\"\\u0686\\u0647\\u200c\\u0646\\u062f \\u0686\\u0631\\u0643\\u0647\\u200c\\u06cc\\u0647\\u200c\\u0643\",ss:\"\\u0686\\u0631\\u0643\\u0647\\u200c %d\",m:\"\\u06cc\\u0647\\u200c\\u0643 \\u062e\\u0648\\u0644\\u0647\\u200c\\u0643\",mm:\"%d \\u062e\\u0648\\u0644\\u0647\\u200c\\u0643\",h:\"\\u06cc\\u0647\\u200c\\u0643 \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631\",hh:\"%d \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631\",d:\"\\u06cc\\u0647\\u200c\\u0643 \\u0695\\u06c6\\u0698\",dd:\"%d \\u0695\\u06c6\\u0698\",M:\"\\u06cc\\u0647\\u200c\\u0643 \\u0645\\u0627\\u0646\\u06af\",MM:\"%d \\u0645\\u0627\\u0646\\u06af\",y:\"\\u06cc\\u0647\\u200c\\u0643 \\u0633\\u0627\\u06b5\",yy:\"%d \\u0633\\u0627\\u06b5\"},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},JVSJ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i=e+\" \";switch(n){case\"ss\":return i+(1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\");case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return i+(1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\");case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return i+(1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\");case\"dd\":return i+(1===e?\"dan\":\"dana\");case\"MM\":return i+(1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\");case\"yy\":return i+(1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\")}}e.defineLocale(\"bs\",{months:\"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010der u] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:return\"[pro\\u0161lu] dddd [u] LT\";case 6:return\"[pro\\u0161le] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[pro\\u0161li] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},JvlW:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekund\\u0117_sekund\\u017ei\\u0173_sekundes\",m:\"minut\\u0117_minut\\u0117s_minut\\u0119\",mm:\"minut\\u0117s_minu\\u010di\\u0173_minutes\",h:\"valanda_valandos_valand\\u0105\",hh:\"valandos_valand\\u0173_valandas\",d:\"diena_dienos_dien\\u0105\",dd:\"dienos_dien\\u0173_dienas\",M:\"m\\u0117nuo_m\\u0117nesio_m\\u0117nes\\u012f\",MM:\"m\\u0117nesiai_m\\u0117nesi\\u0173_m\\u0117nesius\",y:\"metai_met\\u0173_metus\",yy:\"metai_met\\u0173_metus\"};function n(e,t,n,i){return t?s(n)[0]:i?s(n)[1]:s(n)[2]}function i(e){return e%10==0||e>10&&e<20}function s(e){return t[e].split(\"_\")}function r(e,t,r,o){var a=e+\" \";return 1===e?a+n(0,t,r[0],o):t?a+(i(e)?s(r)[1]:s(r)[0]):o?a+s(r)[1]:a+(i(e)?s(r)[1]:s(r)[2])}e.defineLocale(\"lt\",{months:{format:\"sausio_vasario_kovo_baland\\u017eio_gegu\\u017e\\u0117s_bir\\u017eelio_liepos_rugpj\\u016b\\u010dio_rugs\\u0117jo_spalio_lapkri\\u010dio_gruod\\u017eio\".split(\"_\"),standalone:\"sausis_vasaris_kovas_balandis_gegu\\u017e\\u0117_bir\\u017eelis_liepa_rugpj\\u016btis_rugs\\u0117jis_spalis_lapkritis_gruodis\".split(\"_\"),isFormat:/D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|MMMM?(\\[[^\\[\\]]*\\]|\\s)+D[oD]?/},monthsShort:\"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd\".split(\"_\"),weekdays:{format:\"sekmadien\\u012f_pirmadien\\u012f_antradien\\u012f_tre\\u010diadien\\u012f_ketvirtadien\\u012f_penktadien\\u012f_\\u0161e\\u0161tadien\\u012f\".split(\"_\"),standalone:\"sekmadienis_pirmadienis_antradienis_tre\\u010diadienis_ketvirtadienis_penktadienis_\\u0161e\\u0161tadienis\".split(\"_\"),isFormat:/dddd HH:mm/},weekdaysShort:\"Sek_Pir_Ant_Tre_Ket_Pen_\\u0160e\\u0161\".split(\"_\"),weekdaysMin:\"S_P_A_T_K_Pn_\\u0160\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY [m.] MMMM D [d.]\",LLL:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",LLLL:\"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]\",l:\"YYYY-MM-DD\",ll:\"YYYY [m.] MMMM D [d.]\",lll:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",llll:\"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]\"},calendar:{sameDay:\"[\\u0160iandien] LT\",nextDay:\"[Rytoj] LT\",nextWeek:\"dddd LT\",lastDay:\"[Vakar] LT\",lastWeek:\"[Pra\\u0117jus\\u012f] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"po %s\",past:\"prie\\u0161 %s\",s:function(e,t,n,i){return t?\"kelios sekund\\u0117s\":i?\"keli\\u0173 sekund\\u017ei\\u0173\":\"kelias sekundes\"},ss:r,m:n,mm:r,h:n,hh:r,d:n,dd:r,M:n,MM:r,y:n,yy:r},dayOfMonthOrdinalParse:/\\d{1,2}-oji/,ordinal:function(e){return e+\"-oji\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"K/tc\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"af\",{months:\"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag\".split(\"_\"),weekdaysShort:\"Son_Maa_Din_Woe_Don_Vry_Sat\".split(\"_\"),weekdaysMin:\"So_Ma_Di_Wo_Do_Vr_Sa\".split(\"_\"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"vm\":\"VM\":n?\"nm\":\"NM\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Vandag om] LT\",nextDay:\"[M\\xf4re om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[Gister om] LT\",lastWeek:\"[Laas] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oor %s\",past:\"%s gelede\",s:\"'n paar sekondes\",ss:\"%d sekondes\",m:\"'n minuut\",mm:\"%d minute\",h:\"'n uur\",hh:\"%d ure\",d:\"'n dag\",dd:\"%d dae\",M:\"'n maand\",MM:\"%d maande\",y:\"'n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},KSF8:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"vi\",{months:\"th\\xe1ng 1_th\\xe1ng 2_th\\xe1ng 3_th\\xe1ng 4_th\\xe1ng 5_th\\xe1ng 6_th\\xe1ng 7_th\\xe1ng 8_th\\xe1ng 9_th\\xe1ng 10_th\\xe1ng 11_th\\xe1ng 12\".split(\"_\"),monthsShort:\"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12\".split(\"_\"),monthsParseExact:!0,weekdays:\"ch\\u1ee7 nh\\u1eadt_th\\u1ee9 hai_th\\u1ee9 ba_th\\u1ee9 t\\u01b0_th\\u1ee9 n\\u0103m_th\\u1ee9 s\\xe1u_th\\u1ee9 b\\u1ea3y\".split(\"_\"),weekdaysShort:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysMin:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"sa\":\"SA\":n?\"ch\":\"CH\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [n\\u0103m] YYYY\",LLL:\"D MMMM [n\\u0103m] YYYY HH:mm\",LLLL:\"dddd, D MMMM [n\\u0103m] YYYY HH:mm\",l:\"DD/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[H\\xf4m nay l\\xfac] LT\",nextDay:\"[Ng\\xe0y mai l\\xfac] LT\",nextWeek:\"dddd [tu\\u1ea7n t\\u1edbi l\\xfac] LT\",lastDay:\"[H\\xf4m qua l\\xfac] LT\",lastWeek:\"dddd [tu\\u1ea7n r\\u1ed3i l\\xfac] LT\",sameElse:\"L\"},relativeTime:{future:\"%s t\\u1edbi\",past:\"%s tr\\u01b0\\u1edbc\",s:\"v\\xe0i gi\\xe2y\",ss:\"%d gi\\xe2y\",m:\"m\\u1ed9t ph\\xfat\",mm:\"%d ph\\xfat\",h:\"m\\u1ed9t gi\\u1edd\",hh:\"%d gi\\u1edd\",d:\"m\\u1ed9t ng\\xe0y\",dd:\"%d ng\\xe0y\",M:\"m\\u1ed9t th\\xe1ng\",MM:\"%d th\\xe1ng\",y:\"m\\u1ed9t n\\u0103m\",yy:\"%d n\\u0103m\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(\"wd/R\"))},KTz0:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekund\",\"sekunda\",\"sekundi\"],m:[\"jedan minut\",\"jednog minuta\"],mm:[\"minut\",\"minuta\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mjesec\",\"mjeseca\",\"mjeseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var s=t.words[i];return 1===i.length?n?s[0]:s[1]:e+\" \"+t.correctGrammaticalCase(e,s)}};e.defineLocale(\"me\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sjutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010de u] LT\",lastWeek:function(){return[\"[pro\\u0161le] [nedjelje] [u] LT\",\"[pro\\u0161log] [ponedjeljka] [u] LT\",\"[pro\\u0161log] [utorka] [u] LT\",\"[pro\\u0161le] [srijede] [u] LT\",\"[pro\\u0161log] [\\u010detvrtka] [u] LT\",\"[pro\\u0161log] [petka] [u] LT\",\"[pro\\u0161le] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mjesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},Loxo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440_\\u043d\\u043e\\u044f\\u0431\\u0440_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u042f\\u043a\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0414\\u0443\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0421\\u0435\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0427\\u043e\\u0440\\u0448\\u0430\\u043d\\u0431\\u0430_\\u041f\\u0430\\u0439\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0416\\u0443\\u043c\\u0430_\\u0428\\u0430\\u043d\\u0431\\u0430\".split(\"_\"),weekdaysShort:\"\\u042f\\u043a\\u0448_\\u0414\\u0443\\u0448_\\u0421\\u0435\\u0448_\\u0427\\u043e\\u0440_\\u041f\\u0430\\u0439_\\u0416\\u0443\\u043c_\\u0428\\u0430\\u043d\".split(\"_\"),weekdaysMin:\"\\u042f\\u043a_\\u0414\\u0443_\\u0421\\u0435_\\u0427\\u043e_\\u041f\\u0430_\\u0416\\u0443_\\u0428\\u0430\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[\\u0411\\u0443\\u0433\\u0443\\u043d \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",nextDay:\"[\\u042d\\u0440\\u0442\\u0430\\u0433\\u0430] LT [\\u0434\\u0430]\",nextWeek:\"dddd [\\u043a\\u0443\\u043d\\u0438 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",lastDay:\"[\\u041a\\u0435\\u0447\\u0430 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",lastWeek:\"[\\u0423\\u0442\\u0433\\u0430\\u043d] dddd [\\u043a\\u0443\\u043d\\u0438 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",sameElse:\"L\"},relativeTime:{future:\"\\u042f\\u043a\\u0438\\u043d %s \\u0438\\u0447\\u0438\\u0434\\u0430\",past:\"\\u0411\\u0438\\u0440 \\u043d\\u0435\\u0447\\u0430 %s \\u043e\\u043b\\u0434\\u0438\\u043d\",s:\"\\u0444\\u0443\\u0440\\u0441\\u0430\\u0442\",ss:\"%d \\u0444\\u0443\\u0440\\u0441\\u0430\\u0442\",m:\"\\u0431\\u0438\\u0440 \\u0434\\u0430\\u043a\\u0438\\u043a\\u0430\",mm:\"%d \\u0434\\u0430\\u043a\\u0438\\u043a\\u0430\",h:\"\\u0431\\u0438\\u0440 \\u0441\\u043e\\u0430\\u0442\",hh:\"%d \\u0441\\u043e\\u0430\\u0442\",d:\"\\u0431\\u0438\\u0440 \\u043a\\u0443\\u043d\",dd:\"%d \\u043a\\u0443\\u043d\",M:\"\\u0431\\u0438\\u0440 \\u043e\\u0439\",MM:\"%d \\u043e\\u0439\",y:\"\\u0431\\u0438\\u0440 \\u0439\\u0438\\u043b\",yy:\"%d \\u0439\\u0438\\u043b\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},OIYi:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ca\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"YYYY-MM-DD\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(\"wd/R\"))},Oaa7:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-gb\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Ob0Z:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};function i(e,t,n,i){var s=\"\";if(t)switch(n){case\"s\":s=\"\\u0915\\u093e\\u0939\\u0940 \\u0938\\u0947\\u0915\\u0902\\u0926\";break;case\"ss\":s=\"%d \\u0938\\u0947\\u0915\\u0902\\u0926\";break;case\"m\":s=\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u093f\\u091f\";break;case\"mm\":s=\"%d \\u092e\\u093f\\u0928\\u093f\\u091f\\u0947\";break;case\"h\":s=\"\\u090f\\u0915 \\u0924\\u093e\\u0938\";break;case\"hh\":s=\"%d \\u0924\\u093e\\u0938\";break;case\"d\":s=\"\\u090f\\u0915 \\u0926\\u093f\\u0935\\u0938\";break;case\"dd\":s=\"%d \\u0926\\u093f\\u0935\\u0938\";break;case\"M\":s=\"\\u090f\\u0915 \\u092e\\u0939\\u093f\\u0928\\u093e\";break;case\"MM\":s=\"%d \\u092e\\u0939\\u093f\\u0928\\u0947\";break;case\"y\":s=\"\\u090f\\u0915 \\u0935\\u0930\\u094d\\u0937\";break;case\"yy\":s=\"%d \\u0935\\u0930\\u094d\\u0937\\u0947\"}else switch(n){case\"s\":s=\"\\u0915\\u093e\\u0939\\u0940 \\u0938\\u0947\\u0915\\u0902\\u0926\\u093e\\u0902\";break;case\"ss\":s=\"%d \\u0938\\u0947\\u0915\\u0902\\u0926\\u093e\\u0902\";break;case\"m\":s=\"\\u090f\\u0915\\u093e \\u092e\\u093f\\u0928\\u093f\\u091f\\u093e\";break;case\"mm\":s=\"%d \\u092e\\u093f\\u0928\\u093f\\u091f\\u093e\\u0902\";break;case\"h\":s=\"\\u090f\\u0915\\u093e \\u0924\\u093e\\u0938\\u093e\";break;case\"hh\":s=\"%d \\u0924\\u093e\\u0938\\u093e\\u0902\";break;case\"d\":s=\"\\u090f\\u0915\\u093e \\u0926\\u093f\\u0935\\u0938\\u093e\";break;case\"dd\":s=\"%d \\u0926\\u093f\\u0935\\u0938\\u093e\\u0902\";break;case\"M\":s=\"\\u090f\\u0915\\u093e \\u092e\\u0939\\u093f\\u0928\\u094d\\u092f\\u093e\";break;case\"MM\":s=\"%d \\u092e\\u0939\\u093f\\u0928\\u094d\\u092f\\u093e\\u0902\";break;case\"y\":s=\"\\u090f\\u0915\\u093e \\u0935\\u0930\\u094d\\u0937\\u093e\";break;case\"yy\":s=\"%d \\u0935\\u0930\\u094d\\u0937\\u093e\\u0902\"}return s.replace(/%d/i,e)}e.defineLocale(\"mr\",{months:\"\\u091c\\u093e\\u0928\\u0947\\u0935\\u093e\\u0930\\u0940_\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941\\u0935\\u093e\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u090f\\u092a\\u094d\\u0930\\u093f\\u0932_\\u092e\\u0947_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932\\u0948_\\u0911\\u0917\\u0938\\u094d\\u091f_\\u0938\\u092a\\u094d\\u091f\\u0947\\u0902\\u092c\\u0930_\\u0911\\u0915\\u094d\\u091f\\u094b\\u092c\\u0930_\\u0928\\u094b\\u0935\\u094d\\u0939\\u0947\\u0902\\u092c\\u0930_\\u0921\\u093f\\u0938\\u0947\\u0902\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u093e\\u0928\\u0947._\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941._\\u092e\\u093e\\u0930\\u094d\\u091a._\\u090f\\u092a\\u094d\\u0930\\u093f._\\u092e\\u0947._\\u091c\\u0942\\u0928._\\u091c\\u0941\\u0932\\u0948._\\u0911\\u0917._\\u0938\\u092a\\u094d\\u091f\\u0947\\u0902._\\u0911\\u0915\\u094d\\u091f\\u094b._\\u0928\\u094b\\u0935\\u094d\\u0939\\u0947\\u0902._\\u0921\\u093f\\u0938\\u0947\\u0902.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0930\\u0935\\u093f\\u0935\\u093e\\u0930_\\u0938\\u094b\\u092e\\u0935\\u093e\\u0930_\\u092e\\u0902\\u0917\\u0933\\u0935\\u093e\\u0930_\\u092c\\u0941\\u0927\\u0935\\u093e\\u0930_\\u0917\\u0941\\u0930\\u0942\\u0935\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u0935\\u093e\\u0930_\\u0936\\u0928\\u093f\\u0935\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0930\\u0935\\u093f_\\u0938\\u094b\\u092e_\\u092e\\u0902\\u0917\\u0933_\\u092c\\u0941\\u0927_\\u0917\\u0941\\u0930\\u0942_\\u0936\\u0941\\u0915\\u094d\\u0930_\\u0936\\u0928\\u093f\".split(\"_\"),weekdaysMin:\"\\u0930_\\u0938\\u094b_\\u092e\\u0902_\\u092c\\u0941_\\u0917\\u0941_\\u0936\\u0941_\\u0936\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\",LTS:\"A h:mm:ss \\u0935\\u093e\\u091c\\u0924\\u093e\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u0909\\u0926\\u094d\\u092f\\u093e] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0915\\u093e\\u0932] LT\",lastWeek:\"[\\u092e\\u093e\\u0917\\u0940\\u0932] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u092e\\u0927\\u094d\\u092f\\u0947\",past:\"%s\\u092a\\u0942\\u0930\\u094d\\u0935\\u0940\",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940|\\u0938\\u0915\\u093e\\u0933\\u0940|\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940|\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\"===t?e<4?e:e+12:\"\\u0938\\u0915\\u093e\\u0933\\u0940\"===t?e:\"\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940\"===t?e>=10?e:e+12:\"\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\":e<10?\"\\u0938\\u0915\\u093e\\u0933\\u0940\":e<17?\"\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940\":e<20?\"\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940\":\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},OjkT:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};e.defineLocale(\"ne\",{months:\"\\u091c\\u0928\\u0935\\u0930\\u0940_\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941\\u0935\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u093f\\u0932_\\u092e\\u0908_\\u091c\\u0941\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908_\\u0905\\u0917\\u0937\\u094d\\u091f_\\u0938\\u0947\\u092a\\u094d\\u091f\\u0947\\u092e\\u094d\\u092c\\u0930_\\u0905\\u0915\\u094d\\u091f\\u094b\\u092c\\u0930_\\u0928\\u094b\\u092d\\u0947\\u092e\\u094d\\u092c\\u0930_\\u0921\\u093f\\u0938\\u0947\\u092e\\u094d\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u0928._\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941._\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u093f._\\u092e\\u0908_\\u091c\\u0941\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908._\\u0905\\u0917._\\u0938\\u0947\\u092a\\u094d\\u091f._\\u0905\\u0915\\u094d\\u091f\\u094b._\\u0928\\u094b\\u092d\\u0947._\\u0921\\u093f\\u0938\\u0947.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0906\\u0907\\u0924\\u092c\\u093e\\u0930_\\u0938\\u094b\\u092e\\u092c\\u093e\\u0930_\\u092e\\u0919\\u094d\\u0917\\u0932\\u092c\\u093e\\u0930_\\u092c\\u0941\\u0927\\u092c\\u093e\\u0930_\\u092c\\u093f\\u0939\\u093f\\u092c\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u092c\\u093e\\u0930_\\u0936\\u0928\\u093f\\u092c\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0906\\u0907\\u0924._\\u0938\\u094b\\u092e._\\u092e\\u0919\\u094d\\u0917\\u0932._\\u092c\\u0941\\u0927._\\u092c\\u093f\\u0939\\u093f._\\u0936\\u0941\\u0915\\u094d\\u0930._\\u0936\\u0928\\u093f.\".split(\"_\"),weekdaysMin:\"\\u0906._\\u0938\\u094b._\\u092e\\u0902._\\u092c\\u0941._\\u092c\\u093f._\\u0936\\u0941._\\u0936.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\",LTS:\"A\\u0915\\u094b h:mm:ss \\u092c\\u091c\\u0947\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\",LLLL:\"dddd, D MMMM YYYY, A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\"},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924\\u093f|\\u092c\\u093f\\u0939\\u093e\\u0928|\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b|\\u0938\\u093e\\u0901\\u091d/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\\u093f\"===t?e<4?e:e+12:\"\\u092c\\u093f\\u0939\\u093e\\u0928\"===t?e:\"\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b\"===t?e>=10?e:e+12:\"\\u0938\\u093e\\u0901\\u091d\"===t?e+12:void 0},meridiem:function(e,t,n){return e<3?\"\\u0930\\u093e\\u0924\\u093f\":e<12?\"\\u092c\\u093f\\u0939\\u093e\\u0928\":e<16?\"\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b\":e<20?\"\\u0938\\u093e\\u0901\\u091d\":\"\\u0930\\u093e\\u0924\\u093f\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u092d\\u094b\\u0932\\u093f] LT\",nextWeek:\"[\\u0906\\u0909\\u0901\\u0926\\u094b] dddd[,] LT\",lastDay:\"[\\u0939\\u093f\\u091c\\u094b] LT\",lastWeek:\"[\\u0917\\u090f\\u0915\\u094b] dddd[,] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u092e\\u093e\",past:\"%s \\u0905\\u0917\\u093e\\u0921\\u093f\",s:\"\\u0915\\u0947\\u0939\\u0940 \\u0915\\u094d\\u0937\\u0923\",ss:\"%d \\u0938\\u0947\\u0915\\u0947\\u0923\\u094d\\u0921\",m:\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u0947\\u091f\",mm:\"%d \\u092e\\u093f\\u0928\\u0947\\u091f\",h:\"\\u090f\\u0915 \\u0918\\u0923\\u094d\\u091f\\u093e\",hh:\"%d \\u0918\\u0923\\u094d\\u091f\\u093e\",d:\"\\u090f\\u0915 \\u0926\\u093f\\u0928\",dd:\"%d \\u0926\\u093f\\u0928\",M:\"\\u090f\\u0915 \\u092e\\u0939\\u093f\\u0928\\u093e\",MM:\"%d \\u092e\\u0939\\u093f\\u0928\\u093e\",y:\"\\u090f\\u0915 \\u092c\\u0930\\u094d\\u0937\",yy:\"%d \\u092c\\u0930\\u094d\\u0937\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},Oxv6:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0443\\u043c\",1:\"-\\u0443\\u043c\",2:\"-\\u044e\\u043c\",3:\"-\\u044e\\u043c\",4:\"-\\u0443\\u043c\",5:\"-\\u0443\\u043c\",6:\"-\\u0443\\u043c\",7:\"-\\u0443\\u043c\",8:\"-\\u0443\\u043c\",9:\"-\\u0443\\u043c\",10:\"-\\u0443\\u043c\",12:\"-\\u0443\\u043c\",13:\"-\\u0443\\u043c\",20:\"-\\u0443\\u043c\",30:\"-\\u044e\\u043c\",40:\"-\\u0443\\u043c\",50:\"-\\u0443\\u043c\",60:\"-\\u0443\\u043c\",70:\"-\\u0443\\u043c\",80:\"-\\u0443\\u043c\",90:\"-\\u0443\\u043c\",100:\"-\\u0443\\u043c\"};e.defineLocale(\"tg\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440_\\u043d\\u043e\\u044f\\u0431\\u0440_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u044f\\u043a\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0434\\u0443\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0441\\u0435\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0447\\u043e\\u0440\\u0448\\u0430\\u043d\\u0431\\u0435_\\u043f\\u0430\\u043d\\u04b7\\u0448\\u0430\\u043d\\u0431\\u0435_\\u04b7\\u0443\\u043c\\u044a\\u0430_\\u0448\\u0430\\u043d\\u0431\\u0435\".split(\"_\"),weekdaysShort:\"\\u044f\\u0448\\u0431_\\u0434\\u0448\\u0431_\\u0441\\u0448\\u0431_\\u0447\\u0448\\u0431_\\u043f\\u0448\\u0431_\\u04b7\\u0443\\u043c_\\u0448\\u043d\\u0431\".split(\"_\"),weekdaysMin:\"\\u044f\\u0448_\\u0434\\u0448_\\u0441\\u0448_\\u0447\\u0448_\\u043f\\u0448_\\u04b7\\u043c_\\u0448\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0418\\u043c\\u0440\\u04ef\\u0437 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",nextDay:\"[\\u041f\\u0430\\u0433\\u043e\\u04b3 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",lastDay:\"[\\u0414\\u0438\\u0440\\u04ef\\u0437 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",nextWeek:\"dddd[\\u0438] [\\u04b3\\u0430\\u0444\\u0442\\u0430\\u0438 \\u043e\\u044f\\u043d\\u0434\\u0430 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",lastWeek:\"dddd[\\u0438] [\\u04b3\\u0430\\u0444\\u0442\\u0430\\u0438 \\u0433\\u0443\\u0437\\u0430\\u0448\\u0442\\u0430 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0431\\u0430\\u044a\\u0434\\u0438 %s\",past:\"%s \\u043f\\u0435\\u0448\",s:\"\\u044f\\u043a\\u0447\\u0430\\u043d\\u0434 \\u0441\\u043e\\u043d\\u0438\\u044f\",m:\"\\u044f\\u043a \\u0434\\u0430\\u049b\\u0438\\u049b\\u0430\",mm:\"%d \\u0434\\u0430\\u049b\\u0438\\u049b\\u0430\",h:\"\\u044f\\u043a \\u0441\\u043e\\u0430\\u0442\",hh:\"%d \\u0441\\u043e\\u0430\\u0442\",d:\"\\u044f\\u043a \\u0440\\u04ef\\u0437\",dd:\"%d \\u0440\\u04ef\\u0437\",M:\"\\u044f\\u043a \\u043c\\u043e\\u04b3\",MM:\"%d \\u043c\\u043e\\u04b3\",y:\"\\u044f\\u043a \\u0441\\u043e\\u043b\",yy:\"%d \\u0441\\u043e\\u043b\"},meridiemParse:/\\u0448\\u0430\\u0431|\\u0441\\u0443\\u0431\\u04b3|\\u0440\\u04ef\\u0437|\\u0431\\u0435\\u0433\\u043e\\u04b3/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0448\\u0430\\u0431\"===t?e<4?e:e+12:\"\\u0441\\u0443\\u0431\\u04b3\"===t?e:\"\\u0440\\u04ef\\u0437\"===t?e>=11?e:e+12:\"\\u0431\\u0435\\u0433\\u043e\\u04b3\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0448\\u0430\\u0431\":e<11?\"\\u0441\\u0443\\u0431\\u04b3\":e<16?\"\\u0440\\u04ef\\u0437\":e<19?\"\\u0431\\u0435\\u0433\\u043e\\u04b3\":\"\\u0448\\u0430\\u0431\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0443\\u043c|\\u044e\\u043c)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},PA2r:function(e,t,n){!function(e){\"use strict\";var t=\"leden_\\xfanor_b\\u0159ezen_duben_kv\\u011bten_\\u010derven_\\u010dervenec_srpen_z\\xe1\\u0159\\xed_\\u0159\\xedjen_listopad_prosinec\".split(\"_\"),n=\"led_\\xfano_b\\u0159e_dub_kv\\u011b_\\u010dvn_\\u010dvc_srp_z\\xe1\\u0159_\\u0159\\xedj_lis_pro\".split(\"_\"),i=[/^led/i,/^\\xfano/i,/^b\\u0159e/i,/^dub/i,/^kv\\u011b/i,/^(\\u010dvn|\\u010derven$|\\u010dervna)/i,/^(\\u010dvc|\\u010dervenec|\\u010dervence)/i,/^srp/i,/^z\\xe1\\u0159/i,/^\\u0159\\xedj/i,/^lis/i,/^pro/i],s=/^(leden|\\xfanor|b\\u0159ezen|duben|kv\\u011bten|\\u010dervenec|\\u010dervence|\\u010derven|\\u010dervna|srpen|z\\xe1\\u0159\\xed|\\u0159\\xedjen|listopad|prosinec|led|\\xfano|b\\u0159e|dub|kv\\u011b|\\u010dvn|\\u010dvc|srp|z\\xe1\\u0159|\\u0159\\xedj|lis|pro)/i;function r(e){return e>1&&e<5&&1!=~~(e/10)}function o(e,t,n,i){var s=e+\" \";switch(n){case\"s\":return t||i?\"p\\xe1r sekund\":\"p\\xe1r sekundami\";case\"ss\":return t||i?s+(r(e)?\"sekundy\":\"sekund\"):s+\"sekundami\";case\"m\":return t?\"minuta\":i?\"minutu\":\"minutou\";case\"mm\":return t||i?s+(r(e)?\"minuty\":\"minut\"):s+\"minutami\";case\"h\":return t?\"hodina\":i?\"hodinu\":\"hodinou\";case\"hh\":return t||i?s+(r(e)?\"hodiny\":\"hodin\"):s+\"hodinami\";case\"d\":return t||i?\"den\":\"dnem\";case\"dd\":return t||i?s+(r(e)?\"dny\":\"dn\\xed\"):s+\"dny\";case\"M\":return t||i?\"m\\u011bs\\xedc\":\"m\\u011bs\\xedcem\";case\"MM\":return t||i?s+(r(e)?\"m\\u011bs\\xedce\":\"m\\u011bs\\xedc\\u016f\"):s+\"m\\u011bs\\xedci\";case\"y\":return t||i?\"rok\":\"rokem\";case\"yy\":return t||i?s+(r(e)?\"roky\":\"let\"):s+\"lety\"}}e.defineLocale(\"cs\",{months:t,monthsShort:n,monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(leden|ledna|\\xfanora|\\xfanor|b\\u0159ezen|b\\u0159ezna|duben|dubna|kv\\u011bten|kv\\u011btna|\\u010dervenec|\\u010dervence|\\u010derven|\\u010dervna|srpen|srpna|z\\xe1\\u0159\\xed|\\u0159\\xedjen|\\u0159\\xedjna|listopadu|listopad|prosinec|prosince)/i,monthsShortStrictRegex:/^(led|\\xfano|b\\u0159e|dub|kv\\u011b|\\u010dvn|\\u010dvc|srp|z\\xe1\\u0159|\\u0159\\xedj|lis|pro)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"ned\\u011ble_pond\\u011bl\\xed_\\xfater\\xfd_st\\u0159eda_\\u010dtvrtek_p\\xe1tek_sobota\".split(\"_\"),weekdaysShort:\"ne_po_\\xfat_st_\\u010dt_p\\xe1_so\".split(\"_\"),weekdaysMin:\"ne_po_\\xfat_st_\\u010dt_p\\xe1_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\",l:\"D. M. YYYY\"},calendar:{sameDay:\"[dnes v] LT\",nextDay:\"[z\\xedtra v] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v ned\\u011bli v] LT\";case 1:case 2:return\"[v] dddd [v] LT\";case 3:return\"[ve st\\u0159edu v] LT\";case 4:return\"[ve \\u010dtvrtek v] LT\";case 5:return\"[v p\\xe1tek v] LT\";case 6:return\"[v sobotu v] LT\"}},lastDay:\"[v\\u010dera v] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minulou ned\\u011bli v] LT\";case 1:case 2:return\"[minul\\xe9] dddd [v] LT\";case 3:return\"[minulou st\\u0159edu v] LT\";case 4:case 5:return\"[minul\\xfd] dddd [v] LT\";case 6:return\"[minulou sobotu v] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"p\\u0159ed %s\",s:o,ss:o,m:o,mm:o,h:o,hh:o,d:o,dd:o,M:o,MM:o,y:o,yy:o},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},PeUW:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0be7\",2:\"\\u0be8\",3:\"\\u0be9\",4:\"\\u0bea\",5:\"\\u0beb\",6:\"\\u0bec\",7:\"\\u0bed\",8:\"\\u0bee\",9:\"\\u0bef\",0:\"\\u0be6\"},n={\"\\u0be7\":\"1\",\"\\u0be8\":\"2\",\"\\u0be9\":\"3\",\"\\u0bea\":\"4\",\"\\u0beb\":\"5\",\"\\u0bec\":\"6\",\"\\u0bed\":\"7\",\"\\u0bee\":\"8\",\"\\u0bef\":\"9\",\"\\u0be6\":\"0\"};e.defineLocale(\"ta\",{months:\"\\u0b9c\\u0ba9\\u0bb5\\u0bb0\\u0bbf_\\u0baa\\u0bbf\\u0baa\\u0bcd\\u0bb0\\u0bb5\\u0bb0\\u0bbf_\\u0bae\\u0bbe\\u0bb0\\u0bcd\\u0b9a\\u0bcd_\\u0b8f\\u0baa\\u0bcd\\u0bb0\\u0bb2\\u0bcd_\\u0bae\\u0bc7_\\u0b9c\\u0bc2\\u0ba9\\u0bcd_\\u0b9c\\u0bc2\\u0bb2\\u0bc8_\\u0b86\\u0b95\\u0bb8\\u0bcd\\u0b9f\\u0bcd_\\u0b9a\\u0bc6\\u0baa\\u0bcd\\u0b9f\\u0bc6\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b85\\u0b95\\u0bcd\\u0b9f\\u0bc7\\u0bbe\\u0baa\\u0bb0\\u0bcd_\\u0ba8\\u0bb5\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b9f\\u0bbf\\u0b9a\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd\".split(\"_\"),monthsShort:\"\\u0b9c\\u0ba9\\u0bb5\\u0bb0\\u0bbf_\\u0baa\\u0bbf\\u0baa\\u0bcd\\u0bb0\\u0bb5\\u0bb0\\u0bbf_\\u0bae\\u0bbe\\u0bb0\\u0bcd\\u0b9a\\u0bcd_\\u0b8f\\u0baa\\u0bcd\\u0bb0\\u0bb2\\u0bcd_\\u0bae\\u0bc7_\\u0b9c\\u0bc2\\u0ba9\\u0bcd_\\u0b9c\\u0bc2\\u0bb2\\u0bc8_\\u0b86\\u0b95\\u0bb8\\u0bcd\\u0b9f\\u0bcd_\\u0b9a\\u0bc6\\u0baa\\u0bcd\\u0b9f\\u0bc6\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b85\\u0b95\\u0bcd\\u0b9f\\u0bc7\\u0bbe\\u0baa\\u0bb0\\u0bcd_\\u0ba8\\u0bb5\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b9f\\u0bbf\\u0b9a\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd\".split(\"_\"),weekdays:\"\\u0b9e\\u0bbe\\u0baf\\u0bbf\\u0bb1\\u0bcd\\u0bb1\\u0bc1\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0ba4\\u0bbf\\u0b99\\u0bcd\\u0b95\\u0b9f\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0b9a\\u0bc6\\u0bb5\\u0bcd\\u0bb5\\u0bbe\\u0baf\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0baa\\u0bc1\\u0ba4\\u0ba9\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0bb5\\u0bbf\\u0baf\\u0bbe\\u0bb4\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0bb5\\u0bc6\\u0bb3\\u0bcd\\u0bb3\\u0bbf\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0b9a\\u0ba9\\u0bbf\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8\".split(\"_\"),weekdaysShort:\"\\u0b9e\\u0bbe\\u0baf\\u0bbf\\u0bb1\\u0bc1_\\u0ba4\\u0bbf\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd_\\u0b9a\\u0bc6\\u0bb5\\u0bcd\\u0bb5\\u0bbe\\u0baf\\u0bcd_\\u0baa\\u0bc1\\u0ba4\\u0ba9\\u0bcd_\\u0bb5\\u0bbf\\u0baf\\u0bbe\\u0bb4\\u0ba9\\u0bcd_\\u0bb5\\u0bc6\\u0bb3\\u0bcd\\u0bb3\\u0bbf_\\u0b9a\\u0ba9\\u0bbf\".split(\"_\"),weekdaysMin:\"\\u0b9e\\u0bbe_\\u0ba4\\u0bbf_\\u0b9a\\u0bc6_\\u0baa\\u0bc1_\\u0bb5\\u0bbf_\\u0bb5\\u0bc6_\\u0b9a\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, HH:mm\",LLLL:\"dddd, D MMMM YYYY, HH:mm\"},calendar:{sameDay:\"[\\u0b87\\u0ba9\\u0bcd\\u0bb1\\u0bc1] LT\",nextDay:\"[\\u0ba8\\u0bbe\\u0bb3\\u0bc8] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0ba8\\u0bc7\\u0bb1\\u0bcd\\u0bb1\\u0bc1] LT\",lastWeek:\"[\\u0b95\\u0b9f\\u0ba8\\u0bcd\\u0ba4 \\u0bb5\\u0bbe\\u0bb0\\u0bae\\u0bcd] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0b87\\u0bb2\\u0bcd\",past:\"%s \\u0bae\\u0bc1\\u0ba9\\u0bcd\",s:\"\\u0b92\\u0bb0\\u0bc1 \\u0b9a\\u0bbf\\u0bb2 \\u0bb5\\u0bbf\\u0ba8\\u0bbe\\u0b9f\\u0bbf\\u0b95\\u0bb3\\u0bcd\",ss:\"%d \\u0bb5\\u0bbf\\u0ba8\\u0bbe\\u0b9f\\u0bbf\\u0b95\\u0bb3\\u0bcd\",m:\"\\u0b92\\u0bb0\\u0bc1 \\u0ba8\\u0bbf\\u0bae\\u0bbf\\u0b9f\\u0bae\\u0bcd\",mm:\"%d \\u0ba8\\u0bbf\\u0bae\\u0bbf\\u0b9f\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd\",h:\"\\u0b92\\u0bb0\\u0bc1 \\u0bae\\u0ba3\\u0bbf \\u0ba8\\u0bc7\\u0bb0\\u0bae\\u0bcd\",hh:\"%d \\u0bae\\u0ba3\\u0bbf \\u0ba8\\u0bc7\\u0bb0\\u0bae\\u0bcd\",d:\"\\u0b92\\u0bb0\\u0bc1 \\u0ba8\\u0bbe\\u0bb3\\u0bcd\",dd:\"%d \\u0ba8\\u0bbe\\u0b9f\\u0bcd\\u0b95\\u0bb3\\u0bcd\",M:\"\\u0b92\\u0bb0\\u0bc1 \\u0bae\\u0bbe\\u0ba4\\u0bae\\u0bcd\",MM:\"%d \\u0bae\\u0bbe\\u0ba4\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd\",y:\"\\u0b92\\u0bb0\\u0bc1 \\u0bb5\\u0bb0\\u0bc1\\u0b9f\\u0bae\\u0bcd\",yy:\"%d \\u0b86\\u0ba3\\u0bcd\\u0b9f\\u0bc1\\u0b95\\u0bb3\\u0bcd\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u0bb5\\u0ba4\\u0bc1/,ordinal:function(e){return e+\"\\u0bb5\\u0ba4\\u0bc1\"},preparse:function(e){return e.replace(/[\\u0be7\\u0be8\\u0be9\\u0bea\\u0beb\\u0bec\\u0bed\\u0bee\\u0bef\\u0be6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd|\\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8|\\u0b95\\u0bbe\\u0bb2\\u0bc8|\\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd|\\u0b8e\\u0bb1\\u0bcd\\u0baa\\u0bbe\\u0b9f\\u0bc1|\\u0bae\\u0bbe\\u0bb2\\u0bc8/,meridiem:function(e,t,n){return e<2?\" \\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\":e<6?\" \\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8\":e<10?\" \\u0b95\\u0bbe\\u0bb2\\u0bc8\":e<14?\" \\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd\":e<18?\" \\u0b8e\\u0bb1\\u0bcd\\u0baa\\u0bbe\\u0b9f\\u0bc1\":e<22?\" \\u0bae\\u0bbe\\u0bb2\\u0bc8\":\" \\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\"===t?e<2?e:e+12:\"\\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8\"===t||\"\\u0b95\\u0bbe\\u0bb2\\u0bc8\"===t||\"\\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd\"===t&&e>=10?e:e+12},week:{dow:0,doy:6}})}(n(\"wd/R\"))},PpIw:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0ce7\",2:\"\\u0ce8\",3:\"\\u0ce9\",4:\"\\u0cea\",5:\"\\u0ceb\",6:\"\\u0cec\",7:\"\\u0ced\",8:\"\\u0cee\",9:\"\\u0cef\",0:\"\\u0ce6\"},n={\"\\u0ce7\":\"1\",\"\\u0ce8\":\"2\",\"\\u0ce9\":\"3\",\"\\u0cea\":\"4\",\"\\u0ceb\":\"5\",\"\\u0cec\":\"6\",\"\\u0ced\":\"7\",\"\\u0cee\":\"8\",\"\\u0cef\":\"9\",\"\\u0ce6\":\"0\"};e.defineLocale(\"kn\",{months:\"\\u0c9c\\u0ca8\\u0cb5\\u0cb0\\u0cbf_\\u0cab\\u0cc6\\u0cac\\u0ccd\\u0cb0\\u0cb5\\u0cb0\\u0cbf_\\u0cae\\u0cbe\\u0cb0\\u0ccd\\u0c9a\\u0ccd_\\u0c8f\\u0caa\\u0ccd\\u0cb0\\u0cbf\\u0cb2\\u0ccd_\\u0cae\\u0cc6\\u0cd5_\\u0c9c\\u0cc2\\u0ca8\\u0ccd_\\u0c9c\\u0cc1\\u0cb2\\u0cc6\\u0cd6_\\u0c86\\u0c97\\u0cb8\\u0ccd\\u0c9f\\u0ccd_\\u0cb8\\u0cc6\\u0caa\\u0ccd\\u0c9f\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd_\\u0c85\\u0c95\\u0ccd\\u0c9f\\u0cc6\\u0cc2\\u0cd5\\u0cac\\u0cb0\\u0ccd_\\u0ca8\\u0cb5\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd_\\u0ca1\\u0cbf\\u0cb8\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd\".split(\"_\"),monthsShort:\"\\u0c9c\\u0ca8_\\u0cab\\u0cc6\\u0cac\\u0ccd\\u0cb0_\\u0cae\\u0cbe\\u0cb0\\u0ccd\\u0c9a\\u0ccd_\\u0c8f\\u0caa\\u0ccd\\u0cb0\\u0cbf\\u0cb2\\u0ccd_\\u0cae\\u0cc6\\u0cd5_\\u0c9c\\u0cc2\\u0ca8\\u0ccd_\\u0c9c\\u0cc1\\u0cb2\\u0cc6\\u0cd6_\\u0c86\\u0c97\\u0cb8\\u0ccd\\u0c9f\\u0ccd_\\u0cb8\\u0cc6\\u0caa\\u0ccd\\u0c9f\\u0cc6\\u0c82_\\u0c85\\u0c95\\u0ccd\\u0c9f\\u0cc6\\u0cc2\\u0cd5_\\u0ca8\\u0cb5\\u0cc6\\u0c82_\\u0ca1\\u0cbf\\u0cb8\\u0cc6\\u0c82\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0cad\\u0cbe\\u0ca8\\u0cc1\\u0cb5\\u0cbe\\u0cb0_\\u0cb8\\u0cc6\\u0cc2\\u0cd5\\u0cae\\u0cb5\\u0cbe\\u0cb0_\\u0cae\\u0c82\\u0c97\\u0cb3\\u0cb5\\u0cbe\\u0cb0_\\u0cac\\u0cc1\\u0ca7\\u0cb5\\u0cbe\\u0cb0_\\u0c97\\u0cc1\\u0cb0\\u0cc1\\u0cb5\\u0cbe\\u0cb0_\\u0cb6\\u0cc1\\u0c95\\u0ccd\\u0cb0\\u0cb5\\u0cbe\\u0cb0_\\u0cb6\\u0ca8\\u0cbf\\u0cb5\\u0cbe\\u0cb0\".split(\"_\"),weekdaysShort:\"\\u0cad\\u0cbe\\u0ca8\\u0cc1_\\u0cb8\\u0cc6\\u0cc2\\u0cd5\\u0cae_\\u0cae\\u0c82\\u0c97\\u0cb3_\\u0cac\\u0cc1\\u0ca7_\\u0c97\\u0cc1\\u0cb0\\u0cc1_\\u0cb6\\u0cc1\\u0c95\\u0ccd\\u0cb0_\\u0cb6\\u0ca8\\u0cbf\".split(\"_\"),weekdaysMin:\"\\u0cad\\u0cbe_\\u0cb8\\u0cc6\\u0cc2\\u0cd5_\\u0cae\\u0c82_\\u0cac\\u0cc1_\\u0c97\\u0cc1_\\u0cb6\\u0cc1_\\u0cb6\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0c87\\u0c82\\u0ca6\\u0cc1] LT\",nextDay:\"[\\u0ca8\\u0cbe\\u0cb3\\u0cc6] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0ca8\\u0cbf\\u0ca8\\u0ccd\\u0ca8\\u0cc6] LT\",lastWeek:\"[\\u0c95\\u0cc6\\u0cc2\\u0ca8\\u0cc6\\u0caf] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0ca8\\u0c82\\u0ca4\\u0cb0\",past:\"%s \\u0cb9\\u0cbf\\u0c82\\u0ca6\\u0cc6\",s:\"\\u0c95\\u0cc6\\u0cb2\\u0cb5\\u0cc1 \\u0c95\\u0ccd\\u0cb7\\u0ca3\\u0c97\\u0cb3\\u0cc1\",ss:\"%d \\u0cb8\\u0cc6\\u0c95\\u0cc6\\u0c82\\u0ca1\\u0cc1\\u0c97\\u0cb3\\u0cc1\",m:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca8\\u0cbf\\u0cae\\u0cbf\\u0cb7\",mm:\"%d \\u0ca8\\u0cbf\\u0cae\\u0cbf\\u0cb7\",h:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0c97\\u0c82\\u0c9f\\u0cc6\",hh:\"%d \\u0c97\\u0c82\\u0c9f\\u0cc6\",d:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca6\\u0cbf\\u0ca8\",dd:\"%d \\u0ca6\\u0cbf\\u0ca8\",M:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca4\\u0cbf\\u0c82\\u0c97\\u0cb3\\u0cc1\",MM:\"%d \\u0ca4\\u0cbf\\u0c82\\u0c97\\u0cb3\\u0cc1\",y:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0cb5\\u0cb0\\u0ccd\\u0cb7\",yy:\"%d \\u0cb5\\u0cb0\\u0ccd\\u0cb7\"},preparse:function(e){return e.replace(/[\\u0ce7\\u0ce8\\u0ce9\\u0cea\\u0ceb\\u0cec\\u0ced\\u0cee\\u0cef\\u0ce6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf|\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6|\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8|\\u0cb8\\u0c82\\u0c9c\\u0cc6/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\"===t?e<4?e:e+12:\"\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6\"===t?e:\"\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8\"===t?e>=10?e:e+12:\"\\u0cb8\\u0c82\\u0c9c\\u0cc6\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\":e<10?\"\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6\":e<17?\"\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8\":e<20?\"\\u0cb8\\u0c82\\u0c9c\\u0cc6\":\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u0ca8\\u0cc6\\u0cd5)/,ordinal:function(e){return e+\"\\u0ca8\\u0cc6\\u0cd5\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},Qj4J:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-kw\",{months:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648\\u0632_\\u063a\\u0634\\u062a_\\u0634\\u062a\\u0646\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0646\\u0628\\u0631_\\u062f\\u062c\\u0646\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648\\u0632_\\u063a\\u0634\\u062a_\\u0634\\u062a\\u0646\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0646\\u0628\\u0631_\\u062f\\u062c\\u0646\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062a\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0627\\u062d\\u062f_\\u0627\\u062a\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:0,doy:12}})}(n(\"wd/R\"))},RAwQ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eng Minutt\",\"enger Minutt\"],h:[\"eng Stonn\",\"enger Stonn\"],d:[\"een Dag\",\"engem Dag\"],M:[\"ee Mount\",\"engem Mount\"],y:[\"ee Joer\",\"engem Joer\"]};return t?s[n][0]:s[n][1]}function n(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var t=e%10;return n(0===t?e/10:t)}if(e<1e4){for(;e>=10;)e/=10;return n(e)}return n(e/=1e3)}e.defineLocale(\"lb\",{months:\"Januar_Februar_M\\xe4erz_Abr\\xebll_Mee_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonndeg_M\\xe9indeg_D\\xebnschdeg_M\\xebttwoch_Donneschdeg_Freideg_Samschdeg\".split(\"_\"),weekdaysShort:\"So._M\\xe9._D\\xeb._M\\xeb._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_M\\xe9_D\\xeb_M\\xeb_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm [Auer]\",LTS:\"H:mm:ss [Auer]\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm [Auer]\",LLLL:\"dddd, D. MMMM YYYY H:mm [Auer]\"},calendar:{sameDay:\"[Haut um] LT\",sameElse:\"L\",nextDay:\"[Muer um] LT\",nextWeek:\"dddd [um] LT\",lastDay:\"[G\\xebschter um] LT\",lastWeek:function(){switch(this.day()){case 2:case 4:return\"[Leschten] dddd [um] LT\";default:return\"[Leschte] dddd [um] LT\"}}},relativeTime:{future:function(e){return n(e.substr(0,e.indexOf(\" \")))?\"a \"+e:\"an \"+e},past:function(e){return n(e.substr(0,e.indexOf(\" \")))?\"viru \"+e:\"virun \"+e},s:\"e puer Sekonnen\",ss:\"%d Sekonnen\",m:t,mm:\"%d Minutten\",h:t,hh:\"%d Stonnen\",d:t,dd:\"%d Deeg\",M:t,MM:\"%d M\\xe9int\",y:t,yy:\"%d Joer\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},RnhZ:function(e,t,n){var i={\"./af\":\"K/tc\",\"./af.js\":\"K/tc\",\"./ar\":\"jnO4\",\"./ar-dz\":\"o1bE\",\"./ar-dz.js\":\"o1bE\",\"./ar-kw\":\"Qj4J\",\"./ar-kw.js\":\"Qj4J\",\"./ar-ly\":\"HP3h\",\"./ar-ly.js\":\"HP3h\",\"./ar-ma\":\"CoRJ\",\"./ar-ma.js\":\"CoRJ\",\"./ar-sa\":\"gjCT\",\"./ar-sa.js\":\"gjCT\",\"./ar-tn\":\"bYM6\",\"./ar-tn.js\":\"bYM6\",\"./ar.js\":\"jnO4\",\"./az\":\"SFxW\",\"./az.js\":\"SFxW\",\"./be\":\"H8ED\",\"./be.js\":\"H8ED\",\"./bg\":\"hKrs\",\"./bg.js\":\"hKrs\",\"./bm\":\"p/rL\",\"./bm.js\":\"p/rL\",\"./bn\":\"kEOa\",\"./bn.js\":\"kEOa\",\"./bo\":\"0mo+\",\"./bo.js\":\"0mo+\",\"./br\":\"aIdf\",\"./br.js\":\"aIdf\",\"./bs\":\"JVSJ\",\"./bs.js\":\"JVSJ\",\"./ca\":\"1xZ4\",\"./ca.js\":\"1xZ4\",\"./cs\":\"PA2r\",\"./cs.js\":\"PA2r\",\"./cv\":\"A+xa\",\"./cv.js\":\"A+xa\",\"./cy\":\"l5ep\",\"./cy.js\":\"l5ep\",\"./da\":\"DxQv\",\"./da.js\":\"DxQv\",\"./de\":\"tGlX\",\"./de-at\":\"s+uk\",\"./de-at.js\":\"s+uk\",\"./de-ch\":\"u3GI\",\"./de-ch.js\":\"u3GI\",\"./de.js\":\"tGlX\",\"./dv\":\"WYrj\",\"./dv.js\":\"WYrj\",\"./el\":\"jUeY\",\"./el.js\":\"jUeY\",\"./en-SG\":\"zavE\",\"./en-SG.js\":\"zavE\",\"./en-au\":\"Dmvi\",\"./en-au.js\":\"Dmvi\",\"./en-ca\":\"OIYi\",\"./en-ca.js\":\"OIYi\",\"./en-gb\":\"Oaa7\",\"./en-gb.js\":\"Oaa7\",\"./en-ie\":\"4dOw\",\"./en-ie.js\":\"4dOw\",\"./en-il\":\"czMo\",\"./en-il.js\":\"czMo\",\"./en-nz\":\"b1Dy\",\"./en-nz.js\":\"b1Dy\",\"./eo\":\"Zduo\",\"./eo.js\":\"Zduo\",\"./es\":\"iYuL\",\"./es-do\":\"CjzT\",\"./es-do.js\":\"CjzT\",\"./es-us\":\"Vclq\",\"./es-us.js\":\"Vclq\",\"./es.js\":\"iYuL\",\"./et\":\"7BjC\",\"./et.js\":\"7BjC\",\"./eu\":\"D/JM\",\"./eu.js\":\"D/JM\",\"./fa\":\"jfSC\",\"./fa.js\":\"jfSC\",\"./fi\":\"gekB\",\"./fi.js\":\"gekB\",\"./fo\":\"ByF4\",\"./fo.js\":\"ByF4\",\"./fr\":\"nyYc\",\"./fr-ca\":\"2fjn\",\"./fr-ca.js\":\"2fjn\",\"./fr-ch\":\"Dkky\",\"./fr-ch.js\":\"Dkky\",\"./fr.js\":\"nyYc\",\"./fy\":\"cRix\",\"./fy.js\":\"cRix\",\"./ga\":\"USCx\",\"./ga.js\":\"USCx\",\"./gd\":\"9rRi\",\"./gd.js\":\"9rRi\",\"./gl\":\"iEDd\",\"./gl.js\":\"iEDd\",\"./gom-latn\":\"DKr+\",\"./gom-latn.js\":\"DKr+\",\"./gu\":\"4MV3\",\"./gu.js\":\"4MV3\",\"./he\":\"x6pH\",\"./he.js\":\"x6pH\",\"./hi\":\"3E1r\",\"./hi.js\":\"3E1r\",\"./hr\":\"S6ln\",\"./hr.js\":\"S6ln\",\"./hu\":\"WxRl\",\"./hu.js\":\"WxRl\",\"./hy-am\":\"1rYy\",\"./hy-am.js\":\"1rYy\",\"./id\":\"UDhR\",\"./id.js\":\"UDhR\",\"./is\":\"BVg3\",\"./is.js\":\"BVg3\",\"./it\":\"bpih\",\"./it-ch\":\"bxKX\",\"./it-ch.js\":\"bxKX\",\"./it.js\":\"bpih\",\"./ja\":\"B55N\",\"./ja.js\":\"B55N\",\"./jv\":\"tUCv\",\"./jv.js\":\"tUCv\",\"./ka\":\"IBtZ\",\"./ka.js\":\"IBtZ\",\"./kk\":\"bXm7\",\"./kk.js\":\"bXm7\",\"./km\":\"6B0Y\",\"./km.js\":\"6B0Y\",\"./kn\":\"PpIw\",\"./kn.js\":\"PpIw\",\"./ko\":\"Ivi+\",\"./ko.js\":\"Ivi+\",\"./ku\":\"JCF/\",\"./ku.js\":\"JCF/\",\"./ky\":\"lgnt\",\"./ky.js\":\"lgnt\",\"./lb\":\"RAwQ\",\"./lb.js\":\"RAwQ\",\"./lo\":\"sp3z\",\"./lo.js\":\"sp3z\",\"./lt\":\"JvlW\",\"./lt.js\":\"JvlW\",\"./lv\":\"uXwI\",\"./lv.js\":\"uXwI\",\"./me\":\"KTz0\",\"./me.js\":\"KTz0\",\"./mi\":\"aIsn\",\"./mi.js\":\"aIsn\",\"./mk\":\"aQkU\",\"./mk.js\":\"aQkU\",\"./ml\":\"AvvY\",\"./ml.js\":\"AvvY\",\"./mn\":\"lYtQ\",\"./mn.js\":\"lYtQ\",\"./mr\":\"Ob0Z\",\"./mr.js\":\"Ob0Z\",\"./ms\":\"6+QB\",\"./ms-my\":\"ZAMP\",\"./ms-my.js\":\"ZAMP\",\"./ms.js\":\"6+QB\",\"./mt\":\"G0Uy\",\"./mt.js\":\"G0Uy\",\"./my\":\"honF\",\"./my.js\":\"honF\",\"./nb\":\"bOMt\",\"./nb.js\":\"bOMt\",\"./ne\":\"OjkT\",\"./ne.js\":\"OjkT\",\"./nl\":\"+s0g\",\"./nl-be\":\"2ykv\",\"./nl-be.js\":\"2ykv\",\"./nl.js\":\"+s0g\",\"./nn\":\"uEye\",\"./nn.js\":\"uEye\",\"./pa-in\":\"8/+R\",\"./pa-in.js\":\"8/+R\",\"./pl\":\"jVdC\",\"./pl.js\":\"jVdC\",\"./pt\":\"8mBD\",\"./pt-br\":\"0tRk\",\"./pt-br.js\":\"0tRk\",\"./pt.js\":\"8mBD\",\"./ro\":\"lyxo\",\"./ro.js\":\"lyxo\",\"./ru\":\"lXzo\",\"./ru.js\":\"lXzo\",\"./sd\":\"Z4QM\",\"./sd.js\":\"Z4QM\",\"./se\":\"//9w\",\"./se.js\":\"//9w\",\"./si\":\"7aV9\",\"./si.js\":\"7aV9\",\"./sk\":\"e+ae\",\"./sk.js\":\"e+ae\",\"./sl\":\"gVVK\",\"./sl.js\":\"gVVK\",\"./sq\":\"yPMs\",\"./sq.js\":\"yPMs\",\"./sr\":\"zx6S\",\"./sr-cyrl\":\"E+lV\",\"./sr-cyrl.js\":\"E+lV\",\"./sr.js\":\"zx6S\",\"./ss\":\"Ur1D\",\"./ss.js\":\"Ur1D\",\"./sv\":\"X709\",\"./sv.js\":\"X709\",\"./sw\":\"dNwA\",\"./sw.js\":\"dNwA\",\"./ta\":\"PeUW\",\"./ta.js\":\"PeUW\",\"./te\":\"XLvN\",\"./te.js\":\"XLvN\",\"./tet\":\"V2x9\",\"./tet.js\":\"V2x9\",\"./tg\":\"Oxv6\",\"./tg.js\":\"Oxv6\",\"./th\":\"EOgW\",\"./th.js\":\"EOgW\",\"./tl-ph\":\"Dzi0\",\"./tl-ph.js\":\"Dzi0\",\"./tlh\":\"z3Vd\",\"./tlh.js\":\"z3Vd\",\"./tr\":\"DoHr\",\"./tr.js\":\"DoHr\",\"./tzl\":\"z1FC\",\"./tzl.js\":\"z1FC\",\"./tzm\":\"wQk9\",\"./tzm-latn\":\"tT3J\",\"./tzm-latn.js\":\"tT3J\",\"./tzm.js\":\"wQk9\",\"./ug-cn\":\"YRex\",\"./ug-cn.js\":\"YRex\",\"./uk\":\"raLr\",\"./uk.js\":\"raLr\",\"./ur\":\"UpQW\",\"./ur.js\":\"UpQW\",\"./uz\":\"Loxo\",\"./uz-latn\":\"AQ68\",\"./uz-latn.js\":\"AQ68\",\"./uz.js\":\"Loxo\",\"./vi\":\"KSF8\",\"./vi.js\":\"KSF8\",\"./x-pseudo\":\"/X5v\",\"./x-pseudo.js\":\"/X5v\",\"./yo\":\"fzPg\",\"./yo.js\":\"fzPg\",\"./zh-cn\":\"XDpg\",\"./zh-cn.js\":\"XDpg\",\"./zh-hk\":\"SatO\",\"./zh-hk.js\":\"SatO\",\"./zh-tw\":\"kOpN\",\"./zh-tw.js\":\"kOpN\"};function s(e){var t=r(e);return n(t)}function r(e){if(!n.o(i,e)){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}return i[e]}s.keys=function(){return Object.keys(i)},s.resolve=r,e.exports=s,s.id=\"RnhZ\"},S6ln:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i=e+\" \";switch(n){case\"ss\":return i+(1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\");case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return i+(1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\");case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return i+(1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\");case\"dd\":return i+(1===e?\"dan\":\"dana\");case\"MM\":return i+(1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\");case\"yy\":return i+(1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\")}}e.defineLocale(\"hr\",{months:{format:\"sije\\u010dnja_velja\\u010de_o\\u017eujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca\".split(\"_\"),standalone:\"sije\\u010danj_velja\\u010da_o\\u017eujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac\".split(\"_\")},monthsShort:\"sij._velj._o\\u017eu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010der u] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:return\"[pro\\u0161lu] dddd [u] LT\";case 6:return\"[pro\\u0161le] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[pro\\u0161li] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},SFxW:function(e,t,n){!function(e){\"use strict\";var t={1:\"-inci\",5:\"-inci\",8:\"-inci\",70:\"-inci\",80:\"-inci\",2:\"-nci\",7:\"-nci\",20:\"-nci\",50:\"-nci\",3:\"-\\xfcnc\\xfc\",4:\"-\\xfcnc\\xfc\",100:\"-\\xfcnc\\xfc\",6:\"-nc\\u0131\",9:\"-uncu\",10:\"-uncu\",30:\"-uncu\",60:\"-\\u0131nc\\u0131\",90:\"-\\u0131nc\\u0131\"};e.defineLocale(\"az\",{months:\"yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr\".split(\"_\"),monthsShort:\"yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek\".split(\"_\"),weekdays:\"Bazar_Bazar ert\\u0259si_\\xc7\\u0259r\\u015f\\u0259nb\\u0259 ax\\u015fam\\u0131_\\xc7\\u0259r\\u015f\\u0259nb\\u0259_C\\xfcm\\u0259 ax\\u015fam\\u0131_C\\xfcm\\u0259_\\u015e\\u0259nb\\u0259\".split(\"_\"),weekdaysShort:\"Baz_BzE_\\xc7Ax_\\xc7\\u0259r_CAx_C\\xfcm_\\u015e\\u0259n\".split(\"_\"),weekdaysMin:\"Bz_BE_\\xc7A_\\xc7\\u0259_CA_C\\xfc_\\u015e\\u0259\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bug\\xfcn saat] LT\",nextDay:\"[sabah saat] LT\",nextWeek:\"[g\\u0259l\\u0259n h\\u0259ft\\u0259] dddd [saat] LT\",lastDay:\"[d\\xfcn\\u0259n] LT\",lastWeek:\"[ke\\xe7\\u0259n h\\u0259ft\\u0259] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s \\u0259vv\\u0259l\",s:\"birne\\xe7\\u0259 saniy\\u0259\",ss:\"%d saniy\\u0259\",m:\"bir d\\u0259qiq\\u0259\",mm:\"%d d\\u0259qiq\\u0259\",h:\"bir saat\",hh:\"%d saat\",d:\"bir g\\xfcn\",dd:\"%d g\\xfcn\",M:\"bir ay\",MM:\"%d ay\",y:\"bir il\",yy:\"%d il\"},meridiemParse:/gec\\u0259|s\\u0259h\\u0259r|g\\xfcnd\\xfcz|ax\\u015fam/,isPM:function(e){return/^(g\\xfcnd\\xfcz|ax\\u015fam)$/.test(e)},meridiem:function(e,t,n){return e<4?\"gec\\u0259\":e<12?\"s\\u0259h\\u0259r\":e<17?\"g\\xfcnd\\xfcz\":\"ax\\u015fam\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0131nc\\u0131|inci|nci|\\xfcnc\\xfc|nc\\u0131|uncu)/,ordinal:function(e){if(0===e)return e+\"-\\u0131nc\\u0131\";var n=e%10;return e+(t[n]||t[e%100-n]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},SatO:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-hk\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u9031\\u65e5_\\u9031\\u4e00_\\u9031\\u4e8c_\\u9031\\u4e09_\\u9031\\u56db_\\u9031\\u4e94_\\u9031\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e2d\\u5348\"===t?e>=11?e:e+12:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:void 0},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"\\u51cc\\u6668\":i<900?\"\\u65e9\\u4e0a\":i<1130?\"\\u4e0a\\u5348\":i<1230?\"\\u4e2d\\u5348\":i<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929]LT\",nextDay:\"[\\u660e\\u5929]LT\",nextWeek:\"[\\u4e0b]ddddLT\",lastDay:\"[\\u6628\\u5929]LT\",lastWeek:\"[\\u4e0a]ddddLT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u9031)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u9031\";default:return e}},relativeTime:{future:\"%s\\u5167\",past:\"%s\\u524d\",s:\"\\u5e7e\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u9418\",mm:\"%d \\u5206\\u9418\",h:\"1 \\u5c0f\\u6642\",hh:\"%d \\u5c0f\\u6642\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u500b\\u6708\",MM:\"%d \\u500b\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"}})}(n(\"wd/R\"))},UDhR:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"id\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Rab_Kam_Jum_Sab\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"siang\"===t?e>=11?e:e+12:\"sore\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"siang\":e<19?\"sore\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Besok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kemarin pukul] LT\",lastWeek:\"dddd [lalu pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lalu\",s:\"beberapa detik\",ss:\"%d detik\",m:\"semenit\",mm:\"%d menit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},USCx:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ga\",{months:[\"Ean\\xe1ir\",\"Feabhra\",\"M\\xe1rta\",\"Aibre\\xe1n\",\"Bealtaine\",\"M\\xe9itheamh\",\"I\\xfail\",\"L\\xfanasa\",\"Me\\xe1n F\\xf3mhair\",\"Deaireadh F\\xf3mhair\",\"Samhain\",\"Nollaig\"],monthsShort:[\"Ean\\xe1\",\"Feab\",\"M\\xe1rt\",\"Aibr\",\"Beal\",\"M\\xe9it\",\"I\\xfail\",\"L\\xfana\",\"Me\\xe1n\",\"Deai\",\"Samh\",\"Noll\"],monthsParseExact:!0,weekdays:[\"D\\xe9 Domhnaigh\",\"D\\xe9 Luain\",\"D\\xe9 M\\xe1irt\",\"D\\xe9 C\\xe9adaoin\",\"D\\xe9ardaoin\",\"D\\xe9 hAoine\",\"D\\xe9 Satharn\"],weekdaysShort:[\"Dom\",\"Lua\",\"M\\xe1i\",\"C\\xe9a\",\"D\\xe9a\",\"hAo\",\"Sat\"],weekdaysMin:[\"Do\",\"Lu\",\"M\\xe1\",\"Ce\",\"D\\xe9\",\"hA\",\"Sa\"],longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Inniu ag] LT\",nextDay:\"[Am\\xe1rach ag] LT\",nextWeek:\"dddd [ag] LT\",lastDay:\"[Inn\\xe9 aig] LT\",lastWeek:\"dddd [seo caite] [ag] LT\",sameElse:\"L\"},relativeTime:{future:\"i %s\",past:\"%s \\xf3 shin\",s:\"c\\xfapla soicind\",ss:\"%d soicind\",m:\"n\\xf3im\\xe9ad\",mm:\"%d n\\xf3im\\xe9ad\",h:\"uair an chloig\",hh:\"%d uair an chloig\",d:\"l\\xe1\",dd:\"%d l\\xe1\",M:\"m\\xed\",MM:\"%d m\\xed\",y:\"bliain\",yy:\"%d bliain\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},UpQW:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u062c\\u0646\\u0648\\u0631\\u06cc\",\"\\u0641\\u0631\\u0648\\u0631\\u06cc\",\"\\u0645\\u0627\\u0631\\u0686\",\"\\u0627\\u067e\\u0631\\u06cc\\u0644\",\"\\u0645\\u0626\\u06cc\",\"\\u062c\\u0648\\u0646\",\"\\u062c\\u0648\\u0644\\u0627\\u0626\\u06cc\",\"\\u0627\\u06af\\u0633\\u062a\",\"\\u0633\\u062a\\u0645\\u0628\\u0631\",\"\\u0627\\u06a9\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0645\\u0628\\u0631\",\"\\u062f\\u0633\\u0645\\u0628\\u0631\"],n=[\"\\u0627\\u062a\\u0648\\u0627\\u0631\",\"\\u067e\\u06cc\\u0631\",\"\\u0645\\u0646\\u06af\\u0644\",\"\\u0628\\u062f\\u06be\",\"\\u062c\\u0645\\u0639\\u0631\\u0627\\u062a\",\"\\u062c\\u0645\\u0639\\u06c1\",\"\\u06c1\\u0641\\u062a\\u06c1\"];e.defineLocale(\"ur\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd\\u060c D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635\\u0628\\u062d|\\u0634\\u0627\\u0645/,isPM:function(e){return\"\\u0634\\u0627\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\\u0628\\u062d\":\"\\u0634\\u0627\\u0645\"},calendar:{sameDay:\"[\\u0622\\u062c \\u0628\\u0648\\u0642\\u062a] LT\",nextDay:\"[\\u06a9\\u0644 \\u0628\\u0648\\u0642\\u062a] LT\",nextWeek:\"dddd [\\u0628\\u0648\\u0642\\u062a] LT\",lastDay:\"[\\u06af\\u0630\\u0634\\u062a\\u06c1 \\u0631\\u0648\\u0632 \\u0628\\u0648\\u0642\\u062a] LT\",lastWeek:\"[\\u06af\\u0630\\u0634\\u062a\\u06c1] dddd [\\u0628\\u0648\\u0642\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0628\\u0639\\u062f\",past:\"%s \\u0642\\u0628\\u0644\",s:\"\\u0686\\u0646\\u062f \\u0633\\u06cc\\u06a9\\u0646\\u0688\",ss:\"%d \\u0633\\u06cc\\u06a9\\u0646\\u0688\",m:\"\\u0627\\u06cc\\u06a9 \\u0645\\u0646\\u0679\",mm:\"%d \\u0645\\u0646\\u0679\",h:\"\\u0627\\u06cc\\u06a9 \\u06af\\u06be\\u0646\\u0679\\u06c1\",hh:\"%d \\u06af\\u06be\\u0646\\u0679\\u06d2\",d:\"\\u0627\\u06cc\\u06a9 \\u062f\\u0646\",dd:\"%d \\u062f\\u0646\",M:\"\\u0627\\u06cc\\u06a9 \\u0645\\u0627\\u06c1\",MM:\"%d \\u0645\\u0627\\u06c1\",y:\"\\u0627\\u06cc\\u06a9 \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Ur1D:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ss\",{months:\"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni\".split(\"_\"),monthsShort:\"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo\".split(\"_\"),weekdays:\"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo\".split(\"_\"),weekdaysShort:\"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg\".split(\"_\"),weekdaysMin:\"Li_Us_Lb_Lt_Ls_Lh_Ug\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Namuhla nga] LT\",nextDay:\"[Kusasa nga] LT\",nextWeek:\"dddd [nga] LT\",lastDay:\"[Itolo nga] LT\",lastWeek:\"dddd [leliphelile] [nga] LT\",sameElse:\"L\"},relativeTime:{future:\"nga %s\",past:\"wenteka nga %s\",s:\"emizuzwana lomcane\",ss:\"%d mzuzwana\",m:\"umzuzu\",mm:\"%d emizuzu\",h:\"lihora\",hh:\"%d emahora\",d:\"lilanga\",dd:\"%d emalanga\",M:\"inyanga\",MM:\"%d tinyanga\",y:\"umnyaka\",yy:\"%d iminyaka\"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(e,t,n){return e<11?\"ekuseni\":e<15?\"emini\":e<19?\"entsambama\":\"ebusuku\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"ekuseni\"===t?e:\"emini\"===t?e>=11?e:e+12:\"entsambama\"===t||\"ebusuku\"===t?0===e?0:e+12:void 0},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:\"%d\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},V2x9:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tet\",{months:\"Janeiru_Fevereiru_Marsu_Abril_Maiu_Ju\\xf1u_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ters_Kua_Kint_Sest_Sab\".split(\"_\"),weekdaysMin:\"Do_Seg_Te_Ku_Ki_Ses_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Ohin iha] LT\",nextDay:\"[Aban iha] LT\",nextWeek:\"dddd [iha] LT\",lastDay:\"[Horiseik iha] LT\",lastWeek:\"dddd [semana kotuk] [iha] LT\",sameElse:\"L\"},relativeTime:{future:\"iha %s\",past:\"%s liuba\",s:\"minutu balun\",ss:\"minutu %d\",m:\"minutu ida\",mm:\"minutu %d\",h:\"oras ida\",hh:\"oras %d\",d:\"loron ida\",dd:\"loron %d\",M:\"fulan ida\",MM:\"fulan %d\",y:\"tinan ida\",yy:\"tinan %d\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Vclq:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],s=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es-us\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"domingo_lunes_martes_mi\\xe9rcoles_jueves_viernes_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mi\\xe9._jue._vie._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"MM/DD/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY h:mm A\",LLLL:\"dddd, D [de] MMMM [de] YYYY h:mm A\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1ana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un a\\xf1o\",yy:\"%d a\\xf1os\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:0,doy:6}})}(n(\"wd/R\"))},WYrj:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u0796\\u07ac\\u0782\\u07aa\\u0787\\u07a6\\u0783\\u07a9\",\"\\u078a\\u07ac\\u0784\\u07b0\\u0783\\u07aa\\u0787\\u07a6\\u0783\\u07a9\",\"\\u0789\\u07a7\\u0783\\u07a8\\u0797\\u07aa\",\"\\u0787\\u07ad\\u0795\\u07b0\\u0783\\u07a9\\u078d\\u07aa\",\"\\u0789\\u07ad\",\"\\u0796\\u07ab\\u0782\\u07b0\",\"\\u0796\\u07aa\\u078d\\u07a6\\u0787\\u07a8\",\"\\u0787\\u07af\\u078e\\u07a6\\u0790\\u07b0\\u0793\\u07aa\",\"\\u0790\\u07ac\\u0795\\u07b0\\u0793\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0787\\u07ae\\u0786\\u07b0\\u0793\\u07af\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0782\\u07ae\\u0788\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0791\\u07a8\\u0790\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\"],n=[\"\\u0787\\u07a7\\u078b\\u07a8\\u0787\\u07b0\\u078c\\u07a6\",\"\\u0780\\u07af\\u0789\\u07a6\",\"\\u0787\\u07a6\\u0782\\u07b0\\u078e\\u07a7\\u0783\\u07a6\",\"\\u0784\\u07aa\\u078b\\u07a6\",\"\\u0784\\u07aa\\u0783\\u07a7\\u0790\\u07b0\\u078a\\u07a6\\u078c\\u07a8\",\"\\u0780\\u07aa\\u0786\\u07aa\\u0783\\u07aa\",\"\\u0780\\u07ae\\u0782\\u07a8\\u0780\\u07a8\\u0783\\u07aa\"];e.defineLocale(\"dv\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:\"\\u0787\\u07a7\\u078b\\u07a8_\\u0780\\u07af\\u0789\\u07a6_\\u0787\\u07a6\\u0782\\u07b0_\\u0784\\u07aa\\u078b\\u07a6_\\u0784\\u07aa\\u0783\\u07a7_\\u0780\\u07aa\\u0786\\u07aa_\\u0780\\u07ae\\u0782\\u07a8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/M/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0789\\u0786|\\u0789\\u078a/,isPM:function(e){return\"\\u0789\\u078a\"===e},meridiem:function(e,t,n){return e<12?\"\\u0789\\u0786\":\"\\u0789\\u078a\"},calendar:{sameDay:\"[\\u0789\\u07a8\\u0787\\u07a6\\u078b\\u07aa] LT\",nextDay:\"[\\u0789\\u07a7\\u078b\\u07a6\\u0789\\u07a7] LT\",nextWeek:\"dddd LT\",lastDay:\"[\\u0787\\u07a8\\u0787\\u07b0\\u0794\\u07ac] LT\",lastWeek:\"[\\u078a\\u07a7\\u0787\\u07a8\\u078c\\u07aa\\u0788\\u07a8] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"\\u078c\\u07ac\\u0783\\u07ad\\u078e\\u07a6\\u0787\\u07a8 %s\",past:\"\\u0786\\u07aa\\u0783\\u07a8\\u0782\\u07b0 %s\",s:\"\\u0790\\u07a8\\u0786\\u07aa\\u0782\\u07b0\\u078c\\u07aa\\u0786\\u07ae\\u0785\\u07ac\\u0787\\u07b0\",ss:\"d% \\u0790\\u07a8\\u0786\\u07aa\\u0782\\u07b0\\u078c\\u07aa\",m:\"\\u0789\\u07a8\\u0782\\u07a8\\u0793\\u07ac\\u0787\\u07b0\",mm:\"\\u0789\\u07a8\\u0782\\u07a8\\u0793\\u07aa %d\",h:\"\\u078e\\u07a6\\u0791\\u07a8\\u0787\\u07a8\\u0783\\u07ac\\u0787\\u07b0\",hh:\"\\u078e\\u07a6\\u0791\\u07a8\\u0787\\u07a8\\u0783\\u07aa %d\",d:\"\\u078b\\u07aa\\u0788\\u07a6\\u0780\\u07ac\\u0787\\u07b0\",dd:\"\\u078b\\u07aa\\u0788\\u07a6\\u0790\\u07b0 %d\",M:\"\\u0789\\u07a6\\u0780\\u07ac\\u0787\\u07b0\",MM:\"\\u0789\\u07a6\\u0790\\u07b0 %d\",y:\"\\u0787\\u07a6\\u0780\\u07a6\\u0783\\u07ac\\u0787\\u07b0\",yy:\"\\u0787\\u07a6\\u0780\\u07a6\\u0783\\u07aa %d\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:7,doy:12}})}(n(\"wd/R\"))},WxRl:function(e,t,n){!function(e){\"use strict\";var t=\"vas\\xe1rnap h\\xe9tf\\u0151n kedden szerd\\xe1n cs\\xfct\\xf6rt\\xf6k\\xf6n p\\xe9nteken szombaton\".split(\" \");function n(e,t,n,i){var s=e;switch(n){case\"s\":return i||t?\"n\\xe9h\\xe1ny m\\xe1sodperc\":\"n\\xe9h\\xe1ny m\\xe1sodperce\";case\"ss\":return s+(i||t)?\" m\\xe1sodperc\":\" m\\xe1sodperce\";case\"m\":return\"egy\"+(i||t?\" perc\":\" perce\");case\"mm\":return s+(i||t?\" perc\":\" perce\");case\"h\":return\"egy\"+(i||t?\" \\xf3ra\":\" \\xf3r\\xe1ja\");case\"hh\":return s+(i||t?\" \\xf3ra\":\" \\xf3r\\xe1ja\");case\"d\":return\"egy\"+(i||t?\" nap\":\" napja\");case\"dd\":return s+(i||t?\" nap\":\" napja\");case\"M\":return\"egy\"+(i||t?\" h\\xf3nap\":\" h\\xf3napja\");case\"MM\":return s+(i||t?\" h\\xf3nap\":\" h\\xf3napja\");case\"y\":return\"egy\"+(i||t?\" \\xe9v\":\" \\xe9ve\");case\"yy\":return s+(i||t?\" \\xe9v\":\" \\xe9ve\")}return\"\"}function i(e){return(e?\"\":\"[m\\xfalt] \")+\"[\"+t[this.day()]+\"] LT[-kor]\"}e.defineLocale(\"hu\",{months:\"janu\\xe1r_febru\\xe1r_m\\xe1rcius_\\xe1prilis_m\\xe1jus_j\\xfanius_j\\xfalius_augusztus_szeptember_okt\\xf3ber_november_december\".split(\"_\"),monthsShort:\"jan_feb_m\\xe1rc_\\xe1pr_m\\xe1j_j\\xfan_j\\xfal_aug_szept_okt_nov_dec\".split(\"_\"),weekdays:\"vas\\xe1rnap_h\\xe9tf\\u0151_kedd_szerda_cs\\xfct\\xf6rt\\xf6k_p\\xe9ntek_szombat\".split(\"_\"),weekdaysShort:\"vas_h\\xe9t_kedd_sze_cs\\xfct_p\\xe9n_szo\".split(\"_\"),weekdaysMin:\"v_h_k_sze_cs_p_szo\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY. MMMM D.\",LLL:\"YYYY. MMMM D. H:mm\",LLLL:\"YYYY. MMMM D., dddd H:mm\"},meridiemParse:/de|du/i,isPM:function(e){return\"u\"===e.charAt(1).toLowerCase()},meridiem:function(e,t,n){return e<12?!0===n?\"de\":\"DE\":!0===n?\"du\":\"DU\"},calendar:{sameDay:\"[ma] LT[-kor]\",nextDay:\"[holnap] LT[-kor]\",nextWeek:function(){return i.call(this,!0)},lastDay:\"[tegnap] LT[-kor]\",lastWeek:function(){return i.call(this,!1)},sameElse:\"L\"},relativeTime:{future:\"%s m\\xfalva\",past:\"%s\",s:n,ss:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},X709:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sv\",{months:\"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"s\\xf6ndag_m\\xe5ndag_tisdag_onsdag_torsdag_fredag_l\\xf6rdag\".split(\"_\"),weekdaysShort:\"s\\xf6n_m\\xe5n_tis_ons_tor_fre_l\\xf6r\".split(\"_\"),weekdaysMin:\"s\\xf6_m\\xe5_ti_on_to_fr_l\\xf6\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D MMMM YYYY [kl.] HH:mm\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd D MMM YYYY HH:mm\"},calendar:{sameDay:\"[Idag] LT\",nextDay:\"[Imorgon] LT\",lastDay:\"[Ig\\xe5r] LT\",nextWeek:\"[P\\xe5] dddd LT\",lastWeek:\"[I] dddd[s] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"f\\xf6r %s sedan\",s:\"n\\xe5gra sekunder\",ss:\"%d sekunder\",m:\"en minut\",mm:\"%d minuter\",h:\"en timme\",hh:\"%d timmar\",d:\"en dag\",dd:\"%d dagar\",M:\"en m\\xe5nad\",MM:\"%d m\\xe5nader\",y:\"ett \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}(e|a)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"e\":1===t||2===t?\"a\":\"e\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},XDpg:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-cn\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u5468\\u65e5_\\u5468\\u4e00_\\u5468\\u4e8c_\\u5468\\u4e09_\\u5468\\u56db_\\u5468\\u4e94_\\u5468\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5Ah\\u70b9mm\\u5206\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5ddddAh\\u70b9mm\\u5206\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"\\u51cc\\u6668\":i<900?\"\\u65e9\\u4e0a\":i<1130?\"\\u4e0a\\u5348\":i<1230?\"\\u4e2d\\u5348\":i<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929]LT\",nextDay:\"[\\u660e\\u5929]LT\",nextWeek:\"[\\u4e0b]ddddLT\",lastDay:\"[\\u6628\\u5929]LT\",lastWeek:\"[\\u4e0a]ddddLT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u5468)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u5468\";default:return e}},relativeTime:{future:\"%s\\u5185\",past:\"%s\\u524d\",s:\"\\u51e0\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u949f\",mm:\"%d \\u5206\\u949f\",h:\"1 \\u5c0f\\u65f6\",hh:\"%d \\u5c0f\\u65f6\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u4e2a\\u6708\",MM:\"%d \\u4e2a\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},XLvN:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"te\",{months:\"\\u0c1c\\u0c28\\u0c35\\u0c30\\u0c3f_\\u0c2b\\u0c3f\\u0c2c\\u0c4d\\u0c30\\u0c35\\u0c30\\u0c3f_\\u0c2e\\u0c3e\\u0c30\\u0c4d\\u0c1a\\u0c3f_\\u0c0f\\u0c2a\\u0c4d\\u0c30\\u0c3f\\u0c32\\u0c4d_\\u0c2e\\u0c47_\\u0c1c\\u0c42\\u0c28\\u0c4d_\\u0c1c\\u0c41\\u0c32\\u0c48_\\u0c06\\u0c17\\u0c38\\u0c4d\\u0c1f\\u0c41_\\u0c38\\u0c46\\u0c2a\\u0c4d\\u0c1f\\u0c46\\u0c02\\u0c2c\\u0c30\\u0c4d_\\u0c05\\u0c15\\u0c4d\\u0c1f\\u0c4b\\u0c2c\\u0c30\\u0c4d_\\u0c28\\u0c35\\u0c02\\u0c2c\\u0c30\\u0c4d_\\u0c21\\u0c3f\\u0c38\\u0c46\\u0c02\\u0c2c\\u0c30\\u0c4d\".split(\"_\"),monthsShort:\"\\u0c1c\\u0c28._\\u0c2b\\u0c3f\\u0c2c\\u0c4d\\u0c30._\\u0c2e\\u0c3e\\u0c30\\u0c4d\\u0c1a\\u0c3f_\\u0c0f\\u0c2a\\u0c4d\\u0c30\\u0c3f._\\u0c2e\\u0c47_\\u0c1c\\u0c42\\u0c28\\u0c4d_\\u0c1c\\u0c41\\u0c32\\u0c48_\\u0c06\\u0c17._\\u0c38\\u0c46\\u0c2a\\u0c4d._\\u0c05\\u0c15\\u0c4d\\u0c1f\\u0c4b._\\u0c28\\u0c35._\\u0c21\\u0c3f\\u0c38\\u0c46.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0c06\\u0c26\\u0c3f\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c38\\u0c4b\\u0c2e\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c2e\\u0c02\\u0c17\\u0c33\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c2c\\u0c41\\u0c27\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c17\\u0c41\\u0c30\\u0c41\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c36\\u0c41\\u0c15\\u0c4d\\u0c30\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c36\\u0c28\\u0c3f\\u0c35\\u0c3e\\u0c30\\u0c02\".split(\"_\"),weekdaysShort:\"\\u0c06\\u0c26\\u0c3f_\\u0c38\\u0c4b\\u0c2e_\\u0c2e\\u0c02\\u0c17\\u0c33_\\u0c2c\\u0c41\\u0c27_\\u0c17\\u0c41\\u0c30\\u0c41_\\u0c36\\u0c41\\u0c15\\u0c4d\\u0c30_\\u0c36\\u0c28\\u0c3f\".split(\"_\"),weekdaysMin:\"\\u0c06_\\u0c38\\u0c4b_\\u0c2e\\u0c02_\\u0c2c\\u0c41_\\u0c17\\u0c41_\\u0c36\\u0c41_\\u0c36\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0c28\\u0c47\\u0c21\\u0c41] LT\",nextDay:\"[\\u0c30\\u0c47\\u0c2a\\u0c41] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0c28\\u0c3f\\u0c28\\u0c4d\\u0c28] LT\",lastWeek:\"[\\u0c17\\u0c24] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0c32\\u0c4b\",past:\"%s \\u0c15\\u0c4d\\u0c30\\u0c3f\\u0c24\\u0c02\",s:\"\\u0c15\\u0c4a\\u0c28\\u0c4d\\u0c28\\u0c3f \\u0c15\\u0c4d\\u0c37\\u0c23\\u0c3e\\u0c32\\u0c41\",ss:\"%d \\u0c38\\u0c46\\u0c15\\u0c28\\u0c4d\\u0c32\\u0c41\",m:\"\\u0c12\\u0c15 \\u0c28\\u0c3f\\u0c2e\\u0c3f\\u0c37\\u0c02\",mm:\"%d \\u0c28\\u0c3f\\u0c2e\\u0c3f\\u0c37\\u0c3e\\u0c32\\u0c41\",h:\"\\u0c12\\u0c15 \\u0c17\\u0c02\\u0c1f\",hh:\"%d \\u0c17\\u0c02\\u0c1f\\u0c32\\u0c41\",d:\"\\u0c12\\u0c15 \\u0c30\\u0c4b\\u0c1c\\u0c41\",dd:\"%d \\u0c30\\u0c4b\\u0c1c\\u0c41\\u0c32\\u0c41\",M:\"\\u0c12\\u0c15 \\u0c28\\u0c46\\u0c32\",MM:\"%d \\u0c28\\u0c46\\u0c32\\u0c32\\u0c41\",y:\"\\u0c12\\u0c15 \\u0c38\\u0c02\\u0c35\\u0c24\\u0c4d\\u0c38\\u0c30\\u0c02\",yy:\"%d \\u0c38\\u0c02\\u0c35\\u0c24\\u0c4d\\u0c38\\u0c30\\u0c3e\\u0c32\\u0c41\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u0c35/,ordinal:\"%d\\u0c35\",meridiemParse:/\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f|\\u0c09\\u0c26\\u0c2f\\u0c02|\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02|\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\"===t?e<4?e:e+12:\"\\u0c09\\u0c26\\u0c2f\\u0c02\"===t?e:\"\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02\"===t?e>=10?e:e+12:\"\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\":e<10?\"\\u0c09\\u0c26\\u0c2f\\u0c02\":e<17?\"\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02\":e<20?\"\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02\":\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},YRex:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ug-cn\",{months:\"\\u064a\\u0627\\u0646\\u06cb\\u0627\\u0631_\\u0641\\u06d0\\u06cb\\u0631\\u0627\\u0644_\\u0645\\u0627\\u0631\\u062a_\\u0626\\u0627\\u067e\\u0631\\u06d0\\u0644_\\u0645\\u0627\\u064a_\\u0626\\u0649\\u064a\\u06c7\\u0646_\\u0626\\u0649\\u064a\\u06c7\\u0644_\\u0626\\u0627\\u06cb\\u063a\\u06c7\\u0633\\u062a_\\u0633\\u06d0\\u0646\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0626\\u06c6\\u0643\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0646\\u0648\\u064a\\u0627\\u0628\\u0649\\u0631_\\u062f\\u06d0\\u0643\\u0627\\u0628\\u0649\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0627\\u0646\\u06cb\\u0627\\u0631_\\u0641\\u06d0\\u06cb\\u0631\\u0627\\u0644_\\u0645\\u0627\\u0631\\u062a_\\u0626\\u0627\\u067e\\u0631\\u06d0\\u0644_\\u0645\\u0627\\u064a_\\u0626\\u0649\\u064a\\u06c7\\u0646_\\u0626\\u0649\\u064a\\u06c7\\u0644_\\u0626\\u0627\\u06cb\\u063a\\u06c7\\u0633\\u062a_\\u0633\\u06d0\\u0646\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0626\\u06c6\\u0643\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0646\\u0648\\u064a\\u0627\\u0628\\u0649\\u0631_\\u062f\\u06d0\\u0643\\u0627\\u0628\\u0649\\u0631\".split(\"_\"),weekdays:\"\\u064a\\u06d5\\u0643\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u062f\\u06c8\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u0633\\u06d5\\u064a\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u0686\\u0627\\u0631\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u067e\\u06d5\\u064a\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u062c\\u06c8\\u0645\\u06d5_\\u0634\\u06d5\\u0646\\u0628\\u06d5\".split(\"_\"),weekdaysShort:\"\\u064a\\u06d5_\\u062f\\u06c8_\\u0633\\u06d5_\\u0686\\u0627_\\u067e\\u06d5_\\u062c\\u06c8_\\u0634\\u06d5\".split(\"_\"),weekdaysMin:\"\\u064a\\u06d5_\\u062f\\u06c8_\\u0633\\u06d5_\\u0686\\u0627_\\u067e\\u06d5_\\u062c\\u06c8_\\u0634\\u06d5\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\",LLL:\"YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\\u060c HH:mm\",LLLL:\"dddd\\u060c YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\\u060c HH:mm\"},meridiemParse:/\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5|\\u0633\\u06d5\\u06be\\u06d5\\u0631|\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646|\\u0686\\u06c8\\u0634|\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646|\\u0643\\u06d5\\u0686/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5\"===t||\"\\u0633\\u06d5\\u06be\\u06d5\\u0631\"===t||\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646\"===t?e:\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646\"===t||\"\\u0643\\u06d5\\u0686\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5\":i<900?\"\\u0633\\u06d5\\u06be\\u06d5\\u0631\":i<1130?\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646\":i<1230?\"\\u0686\\u06c8\\u0634\":i<1800?\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646\":\"\\u0643\\u06d5\\u0686\"},calendar:{sameDay:\"[\\u0628\\u06c8\\u06af\\u06c8\\u0646 \\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",nextDay:\"[\\u0626\\u06d5\\u062a\\u06d5 \\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",nextWeek:\"[\\u0643\\u06d0\\u0644\\u06d5\\u0631\\u0643\\u0649] dddd [\\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",lastDay:\"[\\u062a\\u06c6\\u0646\\u06c8\\u06af\\u06c8\\u0646] LT\",lastWeek:\"[\\u0626\\u0627\\u0644\\u062f\\u0649\\u0646\\u0642\\u0649] dddd [\\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0643\\u06d0\\u064a\\u0649\\u0646\",past:\"%s \\u0628\\u06c7\\u0631\\u06c7\\u0646\",s:\"\\u0646\\u06d5\\u0686\\u0686\\u06d5 \\u0633\\u06d0\\u0643\\u0648\\u0646\\u062a\",ss:\"%d \\u0633\\u06d0\\u0643\\u0648\\u0646\\u062a\",m:\"\\u0628\\u0649\\u0631 \\u0645\\u0649\\u0646\\u06c7\\u062a\",mm:\"%d \\u0645\\u0649\\u0646\\u06c7\\u062a\",h:\"\\u0628\\u0649\\u0631 \\u0633\\u0627\\u0626\\u06d5\\u062a\",hh:\"%d \\u0633\\u0627\\u0626\\u06d5\\u062a\",d:\"\\u0628\\u0649\\u0631 \\u0643\\u06c8\\u0646\",dd:\"%d \\u0643\\u06c8\\u0646\",M:\"\\u0628\\u0649\\u0631 \\u0626\\u0627\\u064a\",MM:\"%d \\u0626\\u0627\\u064a\",y:\"\\u0628\\u0649\\u0631 \\u064a\\u0649\\u0644\",yy:\"%d \\u064a\\u0649\\u0644\"},dayOfMonthOrdinalParse:/\\d{1,2}(-\\u0643\\u06c8\\u0646\\u0649|-\\u0626\\u0627\\u064a|-\\u06be\\u06d5\\u067e\\u062a\\u06d5)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"-\\u0643\\u06c8\\u0646\\u0649\";case\"w\":case\"W\":return e+\"-\\u06be\\u06d5\\u067e\\u062a\\u06d5\";default:return e}},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:7}})}(n(\"wd/R\"))},YuTi:function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,\"loaded\",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,\"id\",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},Z4QM:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u062c\\u0646\\u0648\\u0631\\u064a\",\"\\u0641\\u064a\\u0628\\u0631\\u0648\\u0631\\u064a\",\"\\u0645\\u0627\\u0631\\u0686\",\"\\u0627\\u067e\\u0631\\u064a\\u0644\",\"\\u0645\\u0626\\u064a\",\"\\u062c\\u0648\\u0646\",\"\\u062c\\u0648\\u0644\\u0627\\u0621\\u0650\",\"\\u0622\\u06af\\u0633\\u067d\",\"\\u0633\\u064a\\u067e\\u067d\\u0645\\u0628\\u0631\",\"\\u0622\\u06aa\\u067d\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0645\\u0628\\u0631\",\"\\u068a\\u0633\\u0645\\u0628\\u0631\"],n=[\"\\u0622\\u0686\\u0631\",\"\\u0633\\u0648\\u0645\\u0631\",\"\\u0627\\u06b1\\u0627\\u0631\\u0648\",\"\\u0627\\u0631\\u0628\\u0639\",\"\\u062e\\u0645\\u064a\\u0633\",\"\\u062c\\u0645\\u0639\",\"\\u0687\\u0646\\u0687\\u0631\"];e.defineLocale(\"sd\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd\\u060c D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635\\u0628\\u062d|\\u0634\\u0627\\u0645/,isPM:function(e){return\"\\u0634\\u0627\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\\u0628\\u062d\":\"\\u0634\\u0627\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0684] LT\",nextDay:\"[\\u0633\\u0680\\u0627\\u06bb\\u064a] LT\",nextWeek:\"dddd [\\u0627\\u06b3\\u064a\\u0646 \\u0647\\u0641\\u062a\\u064a \\u062a\\u064a] LT\",lastDay:\"[\\u06aa\\u0627\\u0644\\u0647\\u0647] LT\",lastWeek:\"[\\u06af\\u0632\\u0631\\u064a\\u0644 \\u0647\\u0641\\u062a\\u064a] dddd [\\u062a\\u064a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u067e\\u0648\\u0621\",past:\"%s \\u0627\\u06b3\",s:\"\\u0686\\u0646\\u062f \\u0633\\u064a\\u06aa\\u0646\\u068a\",ss:\"%d \\u0633\\u064a\\u06aa\\u0646\\u068a\",m:\"\\u0647\\u06aa \\u0645\\u0646\\u067d\",mm:\"%d \\u0645\\u0646\\u067d\",h:\"\\u0647\\u06aa \\u06aa\\u0644\\u0627\\u06aa\",hh:\"%d \\u06aa\\u0644\\u0627\\u06aa\",d:\"\\u0647\\u06aa \\u068f\\u064a\\u0646\\u0647\\u0646\",dd:\"%d \\u068f\\u064a\\u0646\\u0647\\u0646\",M:\"\\u0647\\u06aa \\u0645\\u0647\\u064a\\u0646\\u0648\",MM:\"%d \\u0645\\u0647\\u064a\\u0646\\u0627\",y:\"\\u0647\\u06aa \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},ZAMP:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms-my\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},Zduo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"eo\",{months:\"januaro_februaro_marto_aprilo_majo_junio_julio_a\\u016dgusto_septembro_oktobro_novembro_decembro\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_a\\u016dg_sep_okt_nov_dec\".split(\"_\"),weekdays:\"diman\\u0109o_lundo_mardo_merkredo_\\u0135a\\u016ddo_vendredo_sabato\".split(\"_\"),weekdaysShort:\"dim_lun_mard_merk_\\u0135a\\u016d_ven_sab\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_\\u0135a_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D[-a de] MMMM, YYYY\",LLL:\"D[-a de] MMMM, YYYY HH:mm\",LLLL:\"dddd, [la] D[-a de] MMMM, YYYY HH:mm\"},meridiemParse:/[ap]\\.t\\.m/i,isPM:function(e){return\"p\"===e.charAt(0).toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"p.t.m.\":\"P.T.M.\":n?\"a.t.m.\":\"A.T.M.\"},calendar:{sameDay:\"[Hodia\\u016d je] LT\",nextDay:\"[Morga\\u016d je] LT\",nextWeek:\"dddd [je] LT\",lastDay:\"[Hiera\\u016d je] LT\",lastWeek:\"[pasinta] dddd [je] LT\",sameElse:\"L\"},relativeTime:{future:\"post %s\",past:\"anta\\u016d %s\",s:\"sekundoj\",ss:\"%d sekundoj\",m:\"minuto\",mm:\"%d minutoj\",h:\"horo\",hh:\"%d horoj\",d:\"tago\",dd:\"%d tagoj\",M:\"monato\",MM:\"%d monatoj\",y:\"jaro\",yy:\"%d jaroj\"},dayOfMonthOrdinalParse:/\\d{1,2}a/,ordinal:\"%da\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},aCrv:function(e,t,n){var i,s=function(){this._tweens={},this._tweensAddedDuringUpdate={}};s.prototype={getAll:function(){return Object.keys(this._tweens).map((function(e){return this._tweens[e]}).bind(this))},removeAll:function(){this._tweens={}},add:function(e){this._tweens[e.getId()]=e,this._tweensAddedDuringUpdate[e.getId()]=e},remove:function(e){delete this._tweens[e.getId()],delete this._tweensAddedDuringUpdate[e.getId()]},update:function(e,t){var n=Object.keys(this._tweens);if(0===n.length)return!1;for(e=void 0!==e?e:o.now();n.length>0;){this._tweensAddedDuringUpdate={};for(var i=0;i1?1:n),this._valuesEnd)if(void 0!==this._valuesStart[t]){var s=this._valuesStart[t]||0,r=this._valuesEnd[t];r instanceof Array?this._object[t]=this._interpolationFunction(r,i):(\"string\"==typeof r&&(r=\"+\"===r.charAt(0)||\"-\"===r.charAt(0)?s+parseFloat(r):parseFloat(r)),\"number\"==typeof r&&(this._object[t]=s+(r-s)*i))}if(null!==this._onUpdateCallback&&this._onUpdateCallback(this._object,n),1===n){if(this._repeat>0){for(t in isFinite(this._repeat)&&this._repeat--,this._valuesStartRepeat){if(\"string\"==typeof this._valuesEnd[t]&&(this._valuesStartRepeat[t]=this._valuesStartRepeat[t]+parseFloat(this._valuesEnd[t])),this._yoyo){var o=this._valuesStartRepeat[t];this._valuesStartRepeat[t]=this._valuesEnd[t],this._valuesEnd[t]=o}this._valuesStart[t]=this._valuesStartRepeat[t]}return this._yoyo&&(this._reversed=!this._reversed),this._startTime=void 0!==this._repeatDelayTime?e+this._repeatDelayTime:e+this._delayTime,null!==this._onRepeatCallback&&this._onRepeatCallback(this._object),!0}null!==this._onCompleteCallback&&this._onCompleteCallback(this._object);for(var a=0,l=this._chainedTweens.length;a1?r(e[n],e[n-1],n-i):r(e[s],e[s+1>n?n:s+1],i-s)},Bezier:function(e,t){for(var n=0,i=e.length-1,s=Math.pow,r=o.Interpolation.Utils.Bernstein,a=0;a<=i;a++)n+=s(1-t,i-a)*s(t,a)*e[a]*r(i,a);return n},CatmullRom:function(e,t){var n=e.length-1,i=n*t,s=Math.floor(i),r=o.Interpolation.Utils.CatmullRom;return e[0]===e[n]?(t<0&&(s=Math.floor(i=n*(1+t))),r(e[(s-1+n)%n],e[s],e[(s+1)%n],e[(s+2)%n],i-s)):t<0?e[0]-(r(e[0],e[0],e[1],e[1],-i)-e[0]):t>1?e[n]-(r(e[n],e[n],e[n-1],e[n-1],i-n)-e[n]):r(e[s?s-1:0],e[s],e[n1;n--)t*=n;return r[e]=t,t}),CatmullRom:function(e,t,n,i,s){var r=.5*(n-e),o=.5*(i-t),a=s*s;return(2*t-2*n+r+o)*(s*a)+(-3*t+3*n-2*r-o)*a+r*s+t}}},void 0===(i=(function(){return o}).apply(t,[]))||(e.exports=i)},aIdf:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){return e+\" \"+function(e,t){return 2===t?function(e){var t={m:\"v\",b:\"v\",d:\"z\"};return void 0===t[e.charAt(0)]?e:t[e.charAt(0)]+e.substring(1)}(e):e}({mm:\"munutenn\",MM:\"miz\",dd:\"devezh\"}[n],e)}e.defineLocale(\"br\",{months:\"Genver_C'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu\".split(\"_\"),monthsShort:\"Gen_C'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker\".split(\"_\"),weekdays:\"Sul_Lun_Meurzh_Merc'her_Yaou_Gwener_Sadorn\".split(\"_\"),weekdaysShort:\"Sul_Lun_Meu_Mer_Yao_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Lu_Me_Mer_Ya_Gw_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h[e]mm A\",LTS:\"h[e]mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D [a viz] MMMM YYYY\",LLL:\"D [a viz] MMMM YYYY h[e]mm A\",LLLL:\"dddd, D [a viz] MMMM YYYY h[e]mm A\"},calendar:{sameDay:\"[Hiziv da] LT\",nextDay:\"[Warc'hoazh da] LT\",nextWeek:\"dddd [da] LT\",lastDay:\"[Dec'h da] LT\",lastWeek:\"dddd [paset da] LT\",sameElse:\"L\"},relativeTime:{future:\"a-benn %s\",past:\"%s 'zo\",s:\"un nebeud segondenno\\xf9\",ss:\"%d eilenn\",m:\"ur vunutenn\",mm:t,h:\"un eur\",hh:\"%d eur\",d:\"un devezh\",dd:t,M:\"ur miz\",MM:t,y:\"ur bloaz\",yy:function(e){switch(function e(t){return t>9?e(t%10):t}(e)){case 1:case 3:case 4:case 5:case 9:return e+\" bloaz\";default:return e+\" vloaz\"}}},dayOfMonthOrdinalParse:/\\d{1,2}(a\\xf1|vet)/,ordinal:function(e){return e+(1===e?\"a\\xf1\":\"vet\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},aIsn:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mi\",{months:\"Kohi-t\\u0101te_Hui-tanguru_Pout\\u016b-te-rangi_Paenga-wh\\u0101wh\\u0101_Haratua_Pipiri_H\\u014dngoingoi_Here-turi-k\\u014dk\\u0101_Mahuru_Whiringa-\\u0101-nuku_Whiringa-\\u0101-rangi_Hakihea\".split(\"_\"),monthsShort:\"Kohi_Hui_Pou_Pae_Hara_Pipi_H\\u014dngoi_Here_Mahu_Whi-nu_Whi-ra_Haki\".split(\"_\"),monthsRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,2}/i,weekdays:\"R\\u0101tapu_Mane_T\\u016brei_Wenerei_T\\u0101ite_Paraire_H\\u0101tarei\".split(\"_\"),weekdaysShort:\"Ta_Ma_T\\u016b_We_T\\u0101i_Pa_H\\u0101\".split(\"_\"),weekdaysMin:\"Ta_Ma_T\\u016b_We_T\\u0101i_Pa_H\\u0101\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [i] HH:mm\",LLLL:\"dddd, D MMMM YYYY [i] HH:mm\"},calendar:{sameDay:\"[i teie mahana, i] LT\",nextDay:\"[apopo i] LT\",nextWeek:\"dddd [i] LT\",lastDay:\"[inanahi i] LT\",lastWeek:\"dddd [whakamutunga i] LT\",sameElse:\"L\"},relativeTime:{future:\"i roto i %s\",past:\"%s i mua\",s:\"te h\\u0113kona ruarua\",ss:\"%d h\\u0113kona\",m:\"he meneti\",mm:\"%d meneti\",h:\"te haora\",hh:\"%d haora\",d:\"he ra\",dd:\"%d ra\",M:\"he marama\",MM:\"%d marama\",y:\"he tau\",yy:\"%d tau\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},aQkU:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mk\",{months:\"\\u0458\\u0430\\u043d\\u0443\\u0430\\u0440\\u0438_\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d\\u0438_\\u0458\\u0443\\u043b\\u0438_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438_\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438_\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438_\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\".split(\"_\"),monthsShort:\"\\u0458\\u0430\\u043d_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043f_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u0435_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u0430_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u043e\\u043a_\\u043f\\u0435\\u0442\\u043e\\u043a_\\u0441\\u0430\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434_\\u043f\\u043e\\u043d_\\u0432\\u0442\\u043e_\\u0441\\u0440\\u0435_\\u0447\\u0435\\u0442_\\u043f\\u0435\\u0442_\\u0441\\u0430\\u0431\".split(\"_\"),weekdaysMin:\"\\u043de_\\u043fo_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0435_\\u043f\\u0435_\\u0441a\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0414\\u0435\\u043d\\u0435\\u0441 \\u0432\\u043e] LT\",nextDay:\"[\\u0423\\u0442\\u0440\\u0435 \\u0432\\u043e] LT\",nextWeek:\"[\\u0412\\u043e] dddd [\\u0432\\u043e] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430 \\u0432\\u043e] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[\\u0418\\u0437\\u043c\\u0438\\u043d\\u0430\\u0442\\u0430\\u0442\\u0430] dddd [\\u0432\\u043e] LT\";case 1:case 2:case 4:case 5:return\"[\\u0418\\u0437\\u043c\\u0438\\u043d\\u0430\\u0442\\u0438\\u043e\\u0442] dddd [\\u0432\\u043e] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u043f\\u043e\\u0441\\u043b\\u0435 %s\",past:\"\\u043f\\u0440\\u0435\\u0434 %s\",s:\"\\u043d\\u0435\\u043a\\u043e\\u043b\\u043a\\u0443 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",m:\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\\u0438\",h:\"\\u0447\\u0430\\u0441\",hh:\"%d \\u0447\\u0430\\u0441\\u0430\",d:\"\\u0434\\u0435\\u043d\",dd:\"%d \\u0434\\u0435\\u043d\\u0430\",M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:\"%d \\u043c\\u0435\\u0441\\u0435\\u0446\\u0438\",y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",yy:\"%d \\u0433\\u043e\\u0434\\u0438\\u043d\\u0438\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0435\\u0432|\\u0435\\u043d|\\u0442\\u0438|\\u0432\\u0438|\\u0440\\u0438|\\u043c\\u0438)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-\\u0435\\u0432\":0===n?e+\"-\\u0435\\u043d\":n>10&&n<20?e+\"-\\u0442\\u0438\":1===t?e+\"-\\u0432\\u0438\":2===t?e+\"-\\u0440\\u0438\":7===t||8===t?e+\"-\\u043c\\u0438\":e+\"-\\u0442\\u0438\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},b1Dy:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-nz\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},bOMt:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nb\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"s\\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\\xf8rdag\".split(\"_\"),weekdaysShort:\"s\\xf8._ma._ti._on._to._fr._l\\xf8.\".split(\"_\"),weekdaysMin:\"s\\xf8_ma_ti_on_to_fr_l\\xf8\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"dddd [kl.] LT\",lastDay:\"[i g\\xe5r kl.] LT\",lastWeek:\"[forrige] dddd [kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"noen sekunder\",ss:\"%d sekunder\",m:\"ett minutt\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dager\",M:\"en m\\xe5ned\",MM:\"%d m\\xe5neder\",y:\"ett \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},bXm7:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0448\\u0456\",1:\"-\\u0448\\u0456\",2:\"-\\u0448\\u0456\",3:\"-\\u0448\\u0456\",4:\"-\\u0448\\u0456\",5:\"-\\u0448\\u0456\",6:\"-\\u0448\\u044b\",7:\"-\\u0448\\u0456\",8:\"-\\u0448\\u0456\",9:\"-\\u0448\\u044b\",10:\"-\\u0448\\u044b\",20:\"-\\u0448\\u044b\",30:\"-\\u0448\\u044b\",40:\"-\\u0448\\u044b\",50:\"-\\u0448\\u0456\",60:\"-\\u0448\\u044b\",70:\"-\\u0448\\u0456\",80:\"-\\u0448\\u0456\",90:\"-\\u0448\\u044b\",100:\"-\\u0448\\u0456\"};e.defineLocale(\"kk\",{months:\"\\u049b\\u0430\\u04a3\\u0442\\u0430\\u0440_\\u0430\\u049b\\u043f\\u0430\\u043d_\\u043d\\u0430\\u0443\\u0440\\u044b\\u0437_\\u0441\\u04d9\\u0443\\u0456\\u0440_\\u043c\\u0430\\u043c\\u044b\\u0440_\\u043c\\u0430\\u0443\\u0441\\u044b\\u043c_\\u0448\\u0456\\u043b\\u0434\\u0435_\\u0442\\u0430\\u043c\\u044b\\u0437_\\u049b\\u044b\\u0440\\u043a\\u04af\\u0439\\u0435\\u043a_\\u049b\\u0430\\u0437\\u0430\\u043d_\\u049b\\u0430\\u0440\\u0430\\u0448\\u0430_\\u0436\\u0435\\u043b\\u0442\\u043e\\u049b\\u0441\\u0430\\u043d\".split(\"_\"),monthsShort:\"\\u049b\\u0430\\u04a3_\\u0430\\u049b\\u043f_\\u043d\\u0430\\u0443_\\u0441\\u04d9\\u0443_\\u043c\\u0430\\u043c_\\u043c\\u0430\\u0443_\\u0448\\u0456\\u043b_\\u0442\\u0430\\u043c_\\u049b\\u044b\\u0440_\\u049b\\u0430\\u0437_\\u049b\\u0430\\u0440_\\u0436\\u0435\\u043b\".split(\"_\"),weekdays:\"\\u0436\\u0435\\u043a\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0434\\u04af\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0441\\u0435\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0441\\u04d9\\u0440\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0431\\u0435\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0436\\u04b1\\u043c\\u0430_\\u0441\\u0435\\u043d\\u0431\\u0456\".split(\"_\"),weekdaysShort:\"\\u0436\\u0435\\u043a_\\u0434\\u04af\\u0439_\\u0441\\u0435\\u0439_\\u0441\\u04d9\\u0440_\\u0431\\u0435\\u0439_\\u0436\\u04b1\\u043c_\\u0441\\u0435\\u043d\".split(\"_\"),weekdaysMin:\"\\u0436\\u043a_\\u0434\\u0439_\\u0441\\u0439_\\u0441\\u0440_\\u0431\\u0439_\\u0436\\u043c_\\u0441\\u043d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0411\\u04af\\u0433\\u0456\\u043d \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",nextDay:\"[\\u0415\\u0440\\u0442\\u0435\\u04a3 \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",nextWeek:\"dddd [\\u0441\\u0430\\u0493\\u0430\\u0442] LT\",lastDay:\"[\\u041a\\u0435\\u0448\\u0435 \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",lastWeek:\"[\\u04e8\\u0442\\u043a\\u0435\\u043d \\u0430\\u043f\\u0442\\u0430\\u043d\\u044b\\u04a3] dddd [\\u0441\\u0430\\u0493\\u0430\\u0442] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0456\\u0448\\u0456\\u043d\\u0434\\u0435\",past:\"%s \\u0431\\u04b1\\u0440\\u044b\\u043d\",s:\"\\u0431\\u0456\\u0440\\u043d\\u0435\\u0448\\u0435 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:\"\\u0431\\u0456\\u0440 \\u043c\\u0438\\u043d\\u0443\\u0442\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\",h:\"\\u0431\\u0456\\u0440 \\u0441\\u0430\\u0493\\u0430\\u0442\",hh:\"%d \\u0441\\u0430\\u0493\\u0430\\u0442\",d:\"\\u0431\\u0456\\u0440 \\u043a\\u04af\\u043d\",dd:\"%d \\u043a\\u04af\\u043d\",M:\"\\u0431\\u0456\\u0440 \\u0430\\u0439\",MM:\"%d \\u0430\\u0439\",y:\"\\u0431\\u0456\\u0440 \\u0436\\u044b\\u043b\",yy:\"%d \\u0436\\u044b\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0448\\u0456|\\u0448\\u044b)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},bYM6:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-tn\",{months:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},bpih:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_luned\\xec_marted\\xec_mercoled\\xec_gioved\\xec_venerd\\xec_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Oggi alle] LT\",nextDay:\"[Domani alle] LT\",nextWeek:\"dddd [alle] LT\",lastDay:\"[Ieri alle] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[la scorsa] dddd [alle] LT\";default:return\"[lo scorso] dddd [alle] LT\"}},sameElse:\"L\"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?\"tra\":\"in\")+\" \"+e},past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},bxKX:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it-ch\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_luned\\xec_marted\\xec_mercoled\\xec_gioved\\xec_venerd\\xec_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Oggi alle] LT\",nextDay:\"[Domani alle] LT\",nextWeek:\"dddd [alle] LT\",lastDay:\"[Ieri alle] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[la scorsa] dddd [alle] LT\";default:return\"[lo scorso] dddd [alle] LT\"}},sameElse:\"L\"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?\"tra\":\"in\")+\" \"+e},past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},cRix:function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.\".split(\"_\"),n=\"jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\");e.defineLocale(\"fy\",{months:\"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsParseExact:!0,weekdays:\"snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon\".split(\"_\"),weekdaysShort:\"si._mo._ti._wo._to._fr._so.\".split(\"_\"),weekdaysMin:\"Si_Mo_Ti_Wo_To_Fr_So\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[hjoed om] LT\",nextDay:\"[moarn om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[juster om] LT\",lastWeek:\"[\\xf4fr\\xfbne] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oer %s\",past:\"%s lyn\",s:\"in pear sekonden\",ss:\"%d sekonden\",m:\"ien min\\xfat\",mm:\"%d minuten\",h:\"ien oere\",hh:\"%d oeren\",d:\"ien dei\",dd:\"%d dagen\",M:\"ien moanne\",MM:\"%d moannen\",y:\"ien jier\",yy:\"%d jierren\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},czMo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-il\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(\"wd/R\"))},dNwA:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sw\",{months:\"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi\".split(\"_\"),weekdaysShort:\"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos\".split(\"_\"),weekdaysMin:\"J2_J3_J4_J5_Al_Ij_J1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[leo saa] LT\",nextDay:\"[kesho saa] LT\",nextWeek:\"[wiki ijayo] dddd [saat] LT\",lastDay:\"[jana] LT\",lastWeek:\"[wiki iliyopita] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s baadaye\",past:\"tokea %s\",s:\"hivi punde\",ss:\"sekunde %d\",m:\"dakika moja\",mm:\"dakika %d\",h:\"saa limoja\",hh:\"masaa %d\",d:\"siku moja\",dd:\"masiku %d\",M:\"mwezi mmoja\",MM:\"miezi %d\",y:\"mwaka mmoja\",yy:\"miaka %d\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"e+ae\":function(e,t,n){!function(e){\"use strict\";var t=\"janu\\xe1r_febru\\xe1r_marec_apr\\xedl_m\\xe1j_j\\xfan_j\\xfal_august_september_okt\\xf3ber_november_december\".split(\"_\"),n=\"jan_feb_mar_apr_m\\xe1j_j\\xfan_j\\xfal_aug_sep_okt_nov_dec\".split(\"_\");function i(e){return e>1&&e<5}function s(e,t,n,s){var r=e+\" \";switch(n){case\"s\":return t||s?\"p\\xe1r sek\\xfand\":\"p\\xe1r sekundami\";case\"ss\":return t||s?r+(i(e)?\"sekundy\":\"sek\\xfand\"):r+\"sekundami\";case\"m\":return t?\"min\\xfata\":s?\"min\\xfatu\":\"min\\xfatou\";case\"mm\":return t||s?r+(i(e)?\"min\\xfaty\":\"min\\xfat\"):r+\"min\\xfatami\";case\"h\":return t?\"hodina\":s?\"hodinu\":\"hodinou\";case\"hh\":return t||s?r+(i(e)?\"hodiny\":\"hod\\xedn\"):r+\"hodinami\";case\"d\":return t||s?\"de\\u0148\":\"d\\u0148om\";case\"dd\":return t||s?r+(i(e)?\"dni\":\"dn\\xed\"):r+\"d\\u0148ami\";case\"M\":return t||s?\"mesiac\":\"mesiacom\";case\"MM\":return t||s?r+(i(e)?\"mesiace\":\"mesiacov\"):r+\"mesiacmi\";case\"y\":return t||s?\"rok\":\"rokom\";case\"yy\":return t||s?r+(i(e)?\"roky\":\"rokov\"):r+\"rokmi\"}}e.defineLocale(\"sk\",{months:t,monthsShort:n,weekdays:\"nede\\u013ea_pondelok_utorok_streda_\\u0161tvrtok_piatok_sobota\".split(\"_\"),weekdaysShort:\"ne_po_ut_st_\\u0161t_pi_so\".split(\"_\"),weekdaysMin:\"ne_po_ut_st_\\u0161t_pi_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[dnes o] LT\",nextDay:\"[zajtra o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v nede\\u013eu o] LT\";case 1:case 2:return\"[v] dddd [o] LT\";case 3:return\"[v stredu o] LT\";case 4:return\"[vo \\u0161tvrtok o] LT\";case 5:return\"[v piatok o] LT\";case 6:return\"[v sobotu o] LT\"}},lastDay:\"[v\\u010dera o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minul\\xfa nede\\u013eu o] LT\";case 1:case 2:return\"[minul\\xfd] dddd [o] LT\";case 3:return\"[minul\\xfa stredu o] LT\";case 4:case 5:return\"[minul\\xfd] dddd [o] LT\";case 6:return\"[minul\\xfa sobotu o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pred %s\",s,ss:s,m:s,mm:s,h:s,hh:s,d:s,dd:s,M:s,MM:s,y:s,yy:s},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},evrj:function(e,t,n){var i=n(\"m4GZ\");e.exports=function(e){var t=e.replace(/-/g,\"+\").replace(/_/g,\"/\");switch(t.length%4){case 0:break;case 2:t+=\"==\";break;case 3:t+=\"=\";break;default:throw\"Illegal base64url string!\"}try{return function(e){return decodeURIComponent(i(e).replace(/(.)/g,(function(e,t){var n=t.charCodeAt(0).toString(16).toUpperCase();return n.length<2&&(n=\"0\"+n),\"%\"+n})))}(t)}catch(n){return i(t)}}},fzPg:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"yo\",{months:\"S\\u1eb9\\u0301r\\u1eb9\\u0301_E\\u0300re\\u0300le\\u0300_\\u1eb8r\\u1eb9\\u0300na\\u0300_I\\u0300gbe\\u0301_E\\u0300bibi_O\\u0300ku\\u0300du_Ag\\u1eb9mo_O\\u0300gu\\u0301n_Owewe_\\u1ecc\\u0300wa\\u0300ra\\u0300_Be\\u0301lu\\u0301_\\u1ecc\\u0300p\\u1eb9\\u0300\\u0300\".split(\"_\"),monthsShort:\"S\\u1eb9\\u0301r_E\\u0300rl_\\u1eb8rn_I\\u0300gb_E\\u0300bi_O\\u0300ku\\u0300_Ag\\u1eb9_O\\u0300gu\\u0301_Owe_\\u1ecc\\u0300wa\\u0300_Be\\u0301l_\\u1ecc\\u0300p\\u1eb9\\u0300\\u0300\".split(\"_\"),weekdays:\"A\\u0300i\\u0300ku\\u0301_Aje\\u0301_I\\u0300s\\u1eb9\\u0301gun_\\u1eccj\\u1ecd\\u0301ru\\u0301_\\u1eccj\\u1ecd\\u0301b\\u1ecd_\\u1eb8ti\\u0300_A\\u0300ba\\u0301m\\u1eb9\\u0301ta\".split(\"_\"),weekdaysShort:\"A\\u0300i\\u0300k_Aje\\u0301_I\\u0300s\\u1eb9\\u0301_\\u1eccjr_\\u1eccjb_\\u1eb8ti\\u0300_A\\u0300ba\\u0301\".split(\"_\"),weekdaysMin:\"A\\u0300i\\u0300_Aj_I\\u0300s_\\u1eccr_\\u1eccb_\\u1eb8t_A\\u0300b\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[O\\u0300ni\\u0300 ni] LT\",nextDay:\"[\\u1ecc\\u0300la ni] LT\",nextWeek:\"dddd [\\u1eccs\\u1eb9\\u0300 to\\u0301n'b\\u1ecd] [ni] LT\",lastDay:\"[A\\u0300na ni] LT\",lastWeek:\"dddd [\\u1eccs\\u1eb9\\u0300 to\\u0301l\\u1ecd\\u0301] [ni] LT\",sameElse:\"L\"},relativeTime:{future:\"ni\\u0301 %s\",past:\"%s k\\u1ecdja\\u0301\",s:\"i\\u0300s\\u1eb9ju\\u0301 aaya\\u0301 die\",ss:\"aaya\\u0301 %d\",m:\"i\\u0300s\\u1eb9ju\\u0301 kan\",mm:\"i\\u0300s\\u1eb9ju\\u0301 %d\",h:\"wa\\u0301kati kan\",hh:\"wa\\u0301kati %d\",d:\"\\u1ecdj\\u1ecd\\u0301 kan\",dd:\"\\u1ecdj\\u1ecd\\u0301 %d\",M:\"osu\\u0300 kan\",MM:\"osu\\u0300 %d\",y:\"\\u1ecddu\\u0301n kan\",yy:\"\\u1ecddu\\u0301n %d\"},dayOfMonthOrdinalParse:/\\u1ecdj\\u1ecd\\u0301\\s\\d{1,2}/,ordinal:\"\\u1ecdj\\u1ecd\\u0301 %d\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},gVVK:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s=e+\" \";switch(n){case\"s\":return t||i?\"nekaj sekund\":\"nekaj sekundami\";case\"ss\":return s+(1===e?t?\"sekundo\":\"sekundi\":2===e?t||i?\"sekundi\":\"sekundah\":e<5?t||i?\"sekunde\":\"sekundah\":\"sekund\");case\"m\":return t?\"ena minuta\":\"eno minuto\";case\"mm\":return s+(1===e?t?\"minuta\":\"minuto\":2===e?t||i?\"minuti\":\"minutama\":e<5?t||i?\"minute\":\"minutami\":t||i?\"minut\":\"minutami\");case\"h\":return t?\"ena ura\":\"eno uro\";case\"hh\":return s+(1===e?t?\"ura\":\"uro\":2===e?t||i?\"uri\":\"urama\":e<5?t||i?\"ure\":\"urami\":t||i?\"ur\":\"urami\");case\"d\":return t||i?\"en dan\":\"enim dnem\";case\"dd\":return s+(1===e?t||i?\"dan\":\"dnem\":2===e?t||i?\"dni\":\"dnevoma\":t||i?\"dni\":\"dnevi\");case\"M\":return t||i?\"en mesec\":\"enim mesecem\";case\"MM\":return s+(1===e?t||i?\"mesec\":\"mesecem\":2===e?t||i?\"meseca\":\"mesecema\":e<5?t||i?\"mesece\":\"meseci\":t||i?\"mesecev\":\"meseci\");case\"y\":return t||i?\"eno leto\":\"enim letom\";case\"yy\":return s+(1===e?t||i?\"leto\":\"letom\":2===e?t||i?\"leti\":\"letoma\":e<5?t||i?\"leta\":\"leti\":t||i?\"let\":\"leti\")}}e.defineLocale(\"sl\",{months:\"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljek_torek_sreda_\\u010detrtek_petek_sobota\".split(\"_\"),weekdaysShort:\"ned._pon._tor._sre._\\u010det._pet._sob.\".split(\"_\"),weekdaysMin:\"ne_po_to_sr_\\u010de_pe_so\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danes ob] LT\",nextDay:\"[jutri ob] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v] [nedeljo] [ob] LT\";case 3:return\"[v] [sredo] [ob] LT\";case 6:return\"[v] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[v] dddd [ob] LT\"}},lastDay:\"[v\\u010deraj ob] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[prej\\u0161njo] [nedeljo] [ob] LT\";case 3:return\"[prej\\u0161njo] [sredo] [ob] LT\";case 6:return\"[prej\\u0161njo] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[prej\\u0161nji] dddd [ob] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u010dez %s\",past:\"pred %s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},gekB:function(e,t,n){!function(e){\"use strict\";var t=\"nolla yksi kaksi kolme nelj\\xe4 viisi kuusi seitsem\\xe4n kahdeksan yhdeks\\xe4n\".split(\" \"),n=[\"nolla\",\"yhden\",\"kahden\",\"kolmen\",\"nelj\\xe4n\",\"viiden\",\"kuuden\",t[7],t[8],t[9]];function i(e,i,s,r){var o=\"\";switch(s){case\"s\":return r?\"muutaman sekunnin\":\"muutama sekunti\";case\"ss\":return r?\"sekunnin\":\"sekuntia\";case\"m\":return r?\"minuutin\":\"minuutti\";case\"mm\":o=r?\"minuutin\":\"minuuttia\";break;case\"h\":return r?\"tunnin\":\"tunti\";case\"hh\":o=r?\"tunnin\":\"tuntia\";break;case\"d\":return r?\"p\\xe4iv\\xe4n\":\"p\\xe4iv\\xe4\";case\"dd\":o=r?\"p\\xe4iv\\xe4n\":\"p\\xe4iv\\xe4\\xe4\";break;case\"M\":return r?\"kuukauden\":\"kuukausi\";case\"MM\":o=r?\"kuukauden\":\"kuukautta\";break;case\"y\":return r?\"vuoden\":\"vuosi\";case\"yy\":o=r?\"vuoden\":\"vuotta\"}return function(e,i){return e<10?i?n[e]:t[e]:e}(e,r)+\" \"+o}e.defineLocale(\"fi\",{months:\"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kes\\xe4kuu_hein\\xe4kuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu\".split(\"_\"),monthsShort:\"tammi_helmi_maalis_huhti_touko_kes\\xe4_hein\\xe4_elo_syys_loka_marras_joulu\".split(\"_\"),weekdays:\"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai\".split(\"_\"),weekdaysShort:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),weekdaysMin:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"Do MMMM[ta] YYYY\",LLL:\"Do MMMM[ta] YYYY, [klo] HH.mm\",LLLL:\"dddd, Do MMMM[ta] YYYY, [klo] HH.mm\",l:\"D.M.YYYY\",ll:\"Do MMM YYYY\",lll:\"Do MMM YYYY, [klo] HH.mm\",llll:\"ddd, Do MMM YYYY, [klo] HH.mm\"},calendar:{sameDay:\"[t\\xe4n\\xe4\\xe4n] [klo] LT\",nextDay:\"[huomenna] [klo] LT\",nextWeek:\"dddd [klo] LT\",lastDay:\"[eilen] [klo] LT\",lastWeek:\"[viime] dddd[na] [klo] LT\",sameElse:\"L\"},relativeTime:{future:\"%s p\\xe4\\xe4st\\xe4\",past:\"%s sitten\",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},gjCT:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"};e.defineLocale(\"ar-sa\",{months:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a\\u0648_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648_\\u0623\\u063a\\u0633\\u0637\\u0633_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a\\u0648_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648_\\u0623\\u063a\\u0633\\u0637\\u0633_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:0,doy:6}})}(n(\"wd/R\"))},hKrs:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bg\",{months:\"\\u044f\\u043d\\u0443\\u0430\\u0440\\u0438_\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0439_\\u044e\\u043d\\u0438_\\u044e\\u043b\\u0438_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438_\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438_\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438_\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0440_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u044e\\u043d\\u0438_\\u044e\\u043b\\u0438_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043f_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u0435_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u044f_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u044f\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u044a\\u0440\\u0442\\u044a\\u043a_\\u043f\\u0435\\u0442\\u044a\\u043a_\\u0441\\u044a\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434_\\u043f\\u043e\\u043d_\\u0432\\u0442\\u043e_\\u0441\\u0440\\u044f_\\u0447\\u0435\\u0442_\\u043f\\u0435\\u0442_\\u0441\\u044a\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0414\\u043d\\u0435\\u0441 \\u0432] LT\",nextDay:\"[\\u0423\\u0442\\u0440\\u0435 \\u0432] LT\",nextWeek:\"dddd [\\u0432] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430 \\u0432] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[\\u0412 \\u0438\\u0437\\u043c\\u0438\\u043d\\u0430\\u043b\\u0430\\u0442\\u0430] dddd [\\u0432] LT\";case 1:case 2:case 4:case 5:return\"[\\u0412 \\u0438\\u0437\\u043c\\u0438\\u043d\\u0430\\u043b\\u0438\\u044f] dddd [\\u0432] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u0441\\u043b\\u0435\\u0434 %s\",past:\"\\u043f\\u0440\\u0435\\u0434\\u0438 %s\",s:\"\\u043d\\u044f\\u043a\\u043e\\u043b\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",m:\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\\u0438\",h:\"\\u0447\\u0430\\u0441\",hh:\"%d \\u0447\\u0430\\u0441\\u0430\",d:\"\\u0434\\u0435\\u043d\",dd:\"%d \\u0434\\u043d\\u0438\",M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:\"%d \\u043c\\u0435\\u0441\\u0435\\u0446\\u0430\",y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",yy:\"%d \\u0433\\u043e\\u0434\\u0438\\u043d\\u0438\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0435\\u0432|\\u0435\\u043d|\\u0442\\u0438|\\u0432\\u0438|\\u0440\\u0438|\\u043c\\u0438)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-\\u0435\\u0432\":0===n?e+\"-\\u0435\\u043d\":n>10&&n<20?e+\"-\\u0442\\u0438\":1===t?e+\"-\\u0432\\u0438\":2===t?e+\"-\\u0440\\u0438\":7===t||8===t?e+\"-\\u043c\\u0438\":e+\"-\\u0442\\u0438\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},honF:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u1041\",2:\"\\u1042\",3:\"\\u1043\",4:\"\\u1044\",5:\"\\u1045\",6:\"\\u1046\",7:\"\\u1047\",8:\"\\u1048\",9:\"\\u1049\",0:\"\\u1040\"},n={\"\\u1041\":\"1\",\"\\u1042\":\"2\",\"\\u1043\":\"3\",\"\\u1044\":\"4\",\"\\u1045\":\"5\",\"\\u1046\":\"6\",\"\\u1047\":\"7\",\"\\u1048\":\"8\",\"\\u1049\":\"9\",\"\\u1040\":\"0\"};e.defineLocale(\"my\",{months:\"\\u1007\\u1014\\u103a\\u1014\\u101d\\u102b\\u101b\\u102e_\\u1016\\u1031\\u1016\\u1031\\u102c\\u103a\\u101d\\u102b\\u101b\\u102e_\\u1019\\u1010\\u103a_\\u1027\\u1015\\u103c\\u102e_\\u1019\\u1031_\\u1007\\u103d\\u1014\\u103a_\\u1007\\u1030\\u101c\\u102d\\u102f\\u1004\\u103a_\\u101e\\u103c\\u1002\\u102f\\u1010\\u103a_\\u1005\\u1000\\u103a\\u1010\\u1004\\u103a\\u1018\\u102c_\\u1021\\u1031\\u102c\\u1000\\u103a\\u1010\\u102d\\u102f\\u1018\\u102c_\\u1014\\u102d\\u102f\\u101d\\u1004\\u103a\\u1018\\u102c_\\u1012\\u102e\\u1007\\u1004\\u103a\\u1018\\u102c\".split(\"_\"),monthsShort:\"\\u1007\\u1014\\u103a_\\u1016\\u1031_\\u1019\\u1010\\u103a_\\u1015\\u103c\\u102e_\\u1019\\u1031_\\u1007\\u103d\\u1014\\u103a_\\u101c\\u102d\\u102f\\u1004\\u103a_\\u101e\\u103c_\\u1005\\u1000\\u103a_\\u1021\\u1031\\u102c\\u1000\\u103a_\\u1014\\u102d\\u102f_\\u1012\\u102e\".split(\"_\"),weekdays:\"\\u1010\\u1014\\u1004\\u103a\\u1039\\u1002\\u1014\\u103d\\u1031_\\u1010\\u1014\\u1004\\u103a\\u1039\\u101c\\u102c_\\u1021\\u1004\\u103a\\u1039\\u1002\\u102b_\\u1017\\u102f\\u1012\\u1039\\u1013\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c\\u101e\\u1015\\u1010\\u1031\\u1038_\\u101e\\u1031\\u102c\\u1000\\u103c\\u102c_\\u1005\\u1014\\u1031\".split(\"_\"),weekdaysShort:\"\\u1014\\u103d\\u1031_\\u101c\\u102c_\\u1002\\u102b_\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c_\\u101e\\u1031\\u102c_\\u1014\\u1031\".split(\"_\"),weekdaysMin:\"\\u1014\\u103d\\u1031_\\u101c\\u102c_\\u1002\\u102b_\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c_\\u101e\\u1031\\u102c_\\u1014\\u1031\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u101a\\u1014\\u1031.] LT [\\u1019\\u103e\\u102c]\",nextDay:\"[\\u1019\\u1014\\u1000\\u103a\\u1016\\u103c\\u1014\\u103a] LT [\\u1019\\u103e\\u102c]\",nextWeek:\"dddd LT [\\u1019\\u103e\\u102c]\",lastDay:\"[\\u1019\\u1014\\u1031.\\u1000] LT [\\u1019\\u103e\\u102c]\",lastWeek:\"[\\u1015\\u103c\\u102e\\u1038\\u1001\\u1032\\u1037\\u101e\\u1031\\u102c] dddd LT [\\u1019\\u103e\\u102c]\",sameElse:\"L\"},relativeTime:{future:\"\\u101c\\u102c\\u1019\\u100a\\u103a\\u1037 %s \\u1019\\u103e\\u102c\",past:\"\\u101c\\u103d\\u1014\\u103a\\u1001\\u1032\\u1037\\u101e\\u1031\\u102c %s \\u1000\",s:\"\\u1005\\u1000\\u1039\\u1000\\u1014\\u103a.\\u1021\\u1014\\u100a\\u103a\\u1038\\u1004\\u101a\\u103a\",ss:\"%d \\u1005\\u1000\\u1039\\u1000\\u1014\\u1037\\u103a\",m:\"\\u1010\\u1005\\u103a\\u1019\\u102d\\u1014\\u1005\\u103a\",mm:\"%d \\u1019\\u102d\\u1014\\u1005\\u103a\",h:\"\\u1010\\u1005\\u103a\\u1014\\u102c\\u101b\\u102e\",hh:\"%d \\u1014\\u102c\\u101b\\u102e\",d:\"\\u1010\\u1005\\u103a\\u101b\\u1000\\u103a\",dd:\"%d \\u101b\\u1000\\u103a\",M:\"\\u1010\\u1005\\u103a\\u101c\",MM:\"%d \\u101c\",y:\"\\u1010\\u1005\\u103a\\u1014\\u103e\\u1005\\u103a\",yy:\"%d \\u1014\\u103e\\u1005\\u103a\"},preparse:function(e){return e.replace(/[\\u1041\\u1042\\u1043\\u1044\\u1045\\u1046\\u1047\\u1048\\u1049\\u1040]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(\"wd/R\"))},iEDd:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"gl\",{months:\"xaneiro_febreiro_marzo_abril_maio_xu\\xf1o_xullo_agosto_setembro_outubro_novembro_decembro\".split(\"_\"),monthsShort:\"xan._feb._mar._abr._mai._xu\\xf1._xul._ago._set._out._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"domingo_luns_martes_m\\xe9rcores_xoves_venres_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._m\\xe9r._xov._ven._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_m\\xe9_xo_ve_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoxe \"+(1!==this.hours()?\"\\xe1s\":\"\\xe1\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1\\xe1 \"+(1!==this.hours()?\"\\xe1s\":\"\\xe1\")+\"] LT\"},nextWeek:function(){return\"dddd [\"+(1!==this.hours()?\"\\xe1s\":\"a\")+\"] LT\"},lastDay:function(){return\"[onte \"+(1!==this.hours()?\"\\xe1\":\"a\")+\"] LT\"},lastWeek:function(){return\"[o] dddd [pasado \"+(1!==this.hours()?\"\\xe1s\":\"a\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:function(e){return 0===e.indexOf(\"un\")?\"n\"+e:\"en \"+e},past:\"hai %s\",s:\"uns segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"unha hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},iYuL:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],s=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"domingo_lunes_martes_mi\\xe9rcoles_jueves_viernes_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mi\\xe9._jue._vie._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1ana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un a\\xf1o\",yy:\"%d a\\xf1os\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jUeY:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"el\",{monthsNominativeEl:\"\\u0399\\u03b1\\u03bd\\u03bf\\u03c5\\u03ac\\u03c1\\u03b9\\u03bf\\u03c2_\\u03a6\\u03b5\\u03b2\\u03c1\\u03bf\\u03c5\\u03ac\\u03c1\\u03b9\\u03bf\\u03c2_\\u039c\\u03ac\\u03c1\\u03c4\\u03b9\\u03bf\\u03c2_\\u0391\\u03c0\\u03c1\\u03af\\u03bb\\u03b9\\u03bf\\u03c2_\\u039c\\u03ac\\u03b9\\u03bf\\u03c2_\\u0399\\u03bf\\u03cd\\u03bd\\u03b9\\u03bf\\u03c2_\\u0399\\u03bf\\u03cd\\u03bb\\u03b9\\u03bf\\u03c2_\\u0391\\u03cd\\u03b3\\u03bf\\u03c5\\u03c3\\u03c4\\u03bf\\u03c2_\\u03a3\\u03b5\\u03c0\\u03c4\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u039f\\u03ba\\u03c4\\u03ce\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u039d\\u03bf\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u0394\\u03b5\\u03ba\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2\".split(\"_\"),monthsGenitiveEl:\"\\u0399\\u03b1\\u03bd\\u03bf\\u03c5\\u03b1\\u03c1\\u03af\\u03bf\\u03c5_\\u03a6\\u03b5\\u03b2\\u03c1\\u03bf\\u03c5\\u03b1\\u03c1\\u03af\\u03bf\\u03c5_\\u039c\\u03b1\\u03c1\\u03c4\\u03af\\u03bf\\u03c5_\\u0391\\u03c0\\u03c1\\u03b9\\u03bb\\u03af\\u03bf\\u03c5_\\u039c\\u03b1\\u0390\\u03bf\\u03c5_\\u0399\\u03bf\\u03c5\\u03bd\\u03af\\u03bf\\u03c5_\\u0399\\u03bf\\u03c5\\u03bb\\u03af\\u03bf\\u03c5_\\u0391\\u03c5\\u03b3\\u03bf\\u03cd\\u03c3\\u03c4\\u03bf\\u03c5_\\u03a3\\u03b5\\u03c0\\u03c4\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u039f\\u03ba\\u03c4\\u03c9\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u039d\\u03bf\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u0394\\u03b5\\u03ba\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5\".split(\"_\"),months:function(e,t){return e?\"string\"==typeof t&&/D/.test(t.substring(0,t.indexOf(\"MMMM\")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]:this._monthsNominativeEl},monthsShort:\"\\u0399\\u03b1\\u03bd_\\u03a6\\u03b5\\u03b2_\\u039c\\u03b1\\u03c1_\\u0391\\u03c0\\u03c1_\\u039c\\u03b1\\u03ca_\\u0399\\u03bf\\u03c5\\u03bd_\\u0399\\u03bf\\u03c5\\u03bb_\\u0391\\u03c5\\u03b3_\\u03a3\\u03b5\\u03c0_\\u039f\\u03ba\\u03c4_\\u039d\\u03bf\\u03b5_\\u0394\\u03b5\\u03ba\".split(\"_\"),weekdays:\"\\u039a\\u03c5\\u03c1\\u03b9\\u03b1\\u03ba\\u03ae_\\u0394\\u03b5\\u03c5\\u03c4\\u03ad\\u03c1\\u03b1_\\u03a4\\u03c1\\u03af\\u03c4\\u03b7_\\u03a4\\u03b5\\u03c4\\u03ac\\u03c1\\u03c4\\u03b7_\\u03a0\\u03ad\\u03bc\\u03c0\\u03c4\\u03b7_\\u03a0\\u03b1\\u03c1\\u03b1\\u03c3\\u03ba\\u03b5\\u03c5\\u03ae_\\u03a3\\u03ac\\u03b2\\u03b2\\u03b1\\u03c4\\u03bf\".split(\"_\"),weekdaysShort:\"\\u039a\\u03c5\\u03c1_\\u0394\\u03b5\\u03c5_\\u03a4\\u03c1\\u03b9_\\u03a4\\u03b5\\u03c4_\\u03a0\\u03b5\\u03bc_\\u03a0\\u03b1\\u03c1_\\u03a3\\u03b1\\u03b2\".split(\"_\"),weekdaysMin:\"\\u039a\\u03c5_\\u0394\\u03b5_\\u03a4\\u03c1_\\u03a4\\u03b5_\\u03a0\\u03b5_\\u03a0\\u03b1_\\u03a3\\u03b1\".split(\"_\"),meridiem:function(e,t,n){return e>11?n?\"\\u03bc\\u03bc\":\"\\u039c\\u039c\":n?\"\\u03c0\\u03bc\":\"\\u03a0\\u039c\"},isPM:function(e){return\"\\u03bc\"===(e+\"\").toLowerCase()[0]},meridiemParse:/[\\u03a0\\u039c]\\.?\\u039c?\\.?/i,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendarEl:{sameDay:\"[\\u03a3\\u03ae\\u03bc\\u03b5\\u03c1\\u03b1 {}] LT\",nextDay:\"[\\u0391\\u03cd\\u03c1\\u03b9\\u03bf {}] LT\",nextWeek:\"dddd [{}] LT\",lastDay:\"[\\u03a7\\u03b8\\u03b5\\u03c2 {}] LT\",lastWeek:function(){switch(this.day()){case 6:return\"[\\u03c4\\u03bf \\u03c0\\u03c1\\u03bf\\u03b7\\u03b3\\u03bf\\u03cd\\u03bc\\u03b5\\u03bd\\u03bf] dddd [{}] LT\";default:return\"[\\u03c4\\u03b7\\u03bd \\u03c0\\u03c1\\u03bf\\u03b7\\u03b3\\u03bf\\u03cd\\u03bc\\u03b5\\u03bd\\u03b7] dddd [{}] LT\"}},sameElse:\"L\"},calendar:function(e,t){var n,i=this._calendarEl[e],s=t&&t.hours();return((n=i)instanceof Function||\"[object Function]\"===Object.prototype.toString.call(n))&&(i=i.apply(t)),i.replace(\"{}\",s%12==1?\"\\u03c3\\u03c4\\u03b7\":\"\\u03c3\\u03c4\\u03b9\\u03c2\")},relativeTime:{future:\"\\u03c3\\u03b5 %s\",past:\"%s \\u03c0\\u03c1\\u03b9\\u03bd\",s:\"\\u03bb\\u03af\\u03b3\\u03b1 \\u03b4\\u03b5\\u03c5\\u03c4\\u03b5\\u03c1\\u03cc\\u03bb\\u03b5\\u03c0\\u03c4\\u03b1\",ss:\"%d \\u03b4\\u03b5\\u03c5\\u03c4\\u03b5\\u03c1\\u03cc\\u03bb\\u03b5\\u03c0\\u03c4\\u03b1\",m:\"\\u03ad\\u03bd\\u03b1 \\u03bb\\u03b5\\u03c0\\u03c4\\u03cc\",mm:\"%d \\u03bb\\u03b5\\u03c0\\u03c4\\u03ac\",h:\"\\u03bc\\u03af\\u03b1 \\u03ce\\u03c1\\u03b1\",hh:\"%d \\u03ce\\u03c1\\u03b5\\u03c2\",d:\"\\u03bc\\u03af\\u03b1 \\u03bc\\u03ad\\u03c1\\u03b1\",dd:\"%d \\u03bc\\u03ad\\u03c1\\u03b5\\u03c2\",M:\"\\u03ad\\u03bd\\u03b1\\u03c2 \\u03bc\\u03ae\\u03bd\\u03b1\\u03c2\",MM:\"%d \\u03bc\\u03ae\\u03bd\\u03b5\\u03c2\",y:\"\\u03ad\\u03bd\\u03b1\\u03c2 \\u03c7\\u03c1\\u03cc\\u03bd\\u03bf\\u03c2\",yy:\"%d \\u03c7\\u03c1\\u03cc\\u03bd\\u03b9\\u03b1\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u03b7/,ordinal:\"%d\\u03b7\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jVdC:function(e,t,n){!function(e){\"use strict\";var t=\"stycze\\u0144_luty_marzec_kwiecie\\u0144_maj_czerwiec_lipiec_sierpie\\u0144_wrzesie\\u0144_pa\\u017adziernik_listopad_grudzie\\u0144\".split(\"_\"),n=\"stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_wrze\\u015bnia_pa\\u017adziernika_listopada_grudnia\".split(\"_\");function i(e){return e%10<5&&e%10>1&&~~(e/10)%10!=1}function s(e,t,n){var s=e+\" \";switch(n){case\"ss\":return s+(i(e)?\"sekundy\":\"sekund\");case\"m\":return t?\"minuta\":\"minut\\u0119\";case\"mm\":return s+(i(e)?\"minuty\":\"minut\");case\"h\":return t?\"godzina\":\"godzin\\u0119\";case\"hh\":return s+(i(e)?\"godziny\":\"godzin\");case\"MM\":return s+(i(e)?\"miesi\\u0105ce\":\"miesi\\u0119cy\");case\"yy\":return s+(i(e)?\"lata\":\"lat\")}}e.defineLocale(\"pl\",{months:function(e,i){return e?\"\"===i?\"(\"+n[e.month()]+\"|\"+t[e.month()]+\")\":/D MMMM/.test(i)?n[e.month()]:t[e.month()]:t},monthsShort:\"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_pa\\u017a_lis_gru\".split(\"_\"),weekdays:\"niedziela_poniedzia\\u0142ek_wtorek_\\u015broda_czwartek_pi\\u0105tek_sobota\".split(\"_\"),weekdaysShort:\"ndz_pon_wt_\\u015br_czw_pt_sob\".split(\"_\"),weekdaysMin:\"Nd_Pn_Wt_\\u015ar_Cz_Pt_So\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Dzi\\u015b o] LT\",nextDay:\"[Jutro o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[W niedziel\\u0119 o] LT\";case 2:return\"[We wtorek o] LT\";case 3:return\"[W \\u015brod\\u0119 o] LT\";case 6:return\"[W sobot\\u0119 o] LT\";default:return\"[W] dddd [o] LT\"}},lastDay:\"[Wczoraj o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[W zesz\\u0142\\u0105 niedziel\\u0119 o] LT\";case 3:return\"[W zesz\\u0142\\u0105 \\u015brod\\u0119 o] LT\";case 6:return\"[W zesz\\u0142\\u0105 sobot\\u0119 o] LT\";default:return\"[W zesz\\u0142y] dddd [o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"%s temu\",s:\"kilka sekund\",ss:s,m:s,mm:s,h:s,hh:s,d:\"1 dzie\\u0144\",dd:\"%d dni\",M:\"miesi\\u0105c\",MM:s,y:\"rok\",yy:s},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jfSC:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u06f1\",2:\"\\u06f2\",3:\"\\u06f3\",4:\"\\u06f4\",5:\"\\u06f5\",6:\"\\u06f6\",7:\"\\u06f7\",8:\"\\u06f8\",9:\"\\u06f9\",0:\"\\u06f0\"},n={\"\\u06f1\":\"1\",\"\\u06f2\":\"2\",\"\\u06f3\":\"3\",\"\\u06f4\":\"4\",\"\\u06f5\":\"5\",\"\\u06f6\":\"6\",\"\\u06f7\":\"7\",\"\\u06f8\":\"8\",\"\\u06f9\":\"9\",\"\\u06f0\":\"0\"};e.defineLocale(\"fa\",{months:\"\\u0698\\u0627\\u0646\\u0648\\u06cc\\u0647_\\u0641\\u0648\\u0631\\u06cc\\u0647_\\u0645\\u0627\\u0631\\u0633_\\u0622\\u0648\\u0631\\u06cc\\u0644_\\u0645\\u0647_\\u0698\\u0648\\u0626\\u0646_\\u0698\\u0648\\u0626\\u06cc\\u0647_\\u0627\\u0648\\u062a_\\u0633\\u067e\\u062a\\u0627\\u0645\\u0628\\u0631_\\u0627\\u06a9\\u062a\\u0628\\u0631_\\u0646\\u0648\\u0627\\u0645\\u0628\\u0631_\\u062f\\u0633\\u0627\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u0698\\u0627\\u0646\\u0648\\u06cc\\u0647_\\u0641\\u0648\\u0631\\u06cc\\u0647_\\u0645\\u0627\\u0631\\u0633_\\u0622\\u0648\\u0631\\u06cc\\u0644_\\u0645\\u0647_\\u0698\\u0648\\u0626\\u0646_\\u0698\\u0648\\u0626\\u06cc\\u0647_\\u0627\\u0648\\u062a_\\u0633\\u067e\\u062a\\u0627\\u0645\\u0628\\u0631_\\u0627\\u06a9\\u062a\\u0628\\u0631_\\u0646\\u0648\\u0627\\u0645\\u0628\\u0631_\\u062f\\u0633\\u0627\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u06cc\\u06a9\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062f\\u0648\\u0634\\u0646\\u0628\\u0647_\\u0633\\u0647\\u200c\\u0634\\u0646\\u0628\\u0647_\\u0686\\u0647\\u0627\\u0631\\u0634\\u0646\\u0628\\u0647_\\u067e\\u0646\\u062c\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062c\\u0645\\u0639\\u0647_\\u0634\\u0646\\u0628\\u0647\".split(\"_\"),weekdaysShort:\"\\u06cc\\u06a9\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062f\\u0648\\u0634\\u0646\\u0628\\u0647_\\u0633\\u0647\\u200c\\u0634\\u0646\\u0628\\u0647_\\u0686\\u0647\\u0627\\u0631\\u0634\\u0646\\u0628\\u0647_\\u067e\\u0646\\u062c\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062c\\u0645\\u0639\\u0647_\\u0634\\u0646\\u0628\\u0647\".split(\"_\"),weekdaysMin:\"\\u06cc_\\u062f_\\u0633_\\u0686_\\u067e_\\u062c_\\u0634\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u0642\\u0628\\u0644 \\u0627\\u0632 \\u0638\\u0647\\u0631|\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631/,isPM:function(e){return/\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631/.test(e)},meridiem:function(e,t,n){return e<12?\"\\u0642\\u0628\\u0644 \\u0627\\u0632 \\u0638\\u0647\\u0631\":\"\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631\"},calendar:{sameDay:\"[\\u0627\\u0645\\u0631\\u0648\\u0632 \\u0633\\u0627\\u0639\\u062a] LT\",nextDay:\"[\\u0641\\u0631\\u062f\\u0627 \\u0633\\u0627\\u0639\\u062a] LT\",nextWeek:\"dddd [\\u0633\\u0627\\u0639\\u062a] LT\",lastDay:\"[\\u062f\\u06cc\\u0631\\u0648\\u0632 \\u0633\\u0627\\u0639\\u062a] LT\",lastWeek:\"dddd [\\u067e\\u06cc\\u0634] [\\u0633\\u0627\\u0639\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u062f\\u0631 %s\",past:\"%s \\u067e\\u06cc\\u0634\",s:\"\\u0686\\u0646\\u062f \\u062b\\u0627\\u0646\\u06cc\\u0647\",ss:\"\\u062b\\u0627\\u0646\\u06cc\\u0647 d%\",m:\"\\u06cc\\u06a9 \\u062f\\u0642\\u06cc\\u0642\\u0647\",mm:\"%d \\u062f\\u0642\\u06cc\\u0642\\u0647\",h:\"\\u06cc\\u06a9 \\u0633\\u0627\\u0639\\u062a\",hh:\"%d \\u0633\\u0627\\u0639\\u062a\",d:\"\\u06cc\\u06a9 \\u0631\\u0648\\u0632\",dd:\"%d \\u0631\\u0648\\u0632\",M:\"\\u06cc\\u06a9 \\u0645\\u0627\\u0647\",MM:\"%d \\u0645\\u0627\\u0647\",y:\"\\u06cc\\u06a9 \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/[\\u06f0-\\u06f9]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},dayOfMonthOrdinalParse:/\\d{1,2}\\u0645/,ordinal:\"%d\\u0645\",week:{dow:6,doy:12}})}(n(\"wd/R\"))},jnO4:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"},i=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},s={s:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062b\\u0627\\u0646\\u064a\\u0629\",\"\\u062b\\u0627\\u0646\\u064a\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u0627\\u0646\",\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u064a\\u0646\"],\"%d \\u062b\\u0648\\u0627\\u0646\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\"],m:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062f\\u0642\\u064a\\u0642\\u0629\",\"\\u062f\\u0642\\u064a\\u0642\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u0627\\u0646\",\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u064a\\u0646\"],\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\"],h:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0633\\u0627\\u0639\\u0629\",\"\\u0633\\u0627\\u0639\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u0633\\u0627\\u0639\\u062a\\u0627\\u0646\",\"\\u0633\\u0627\\u0639\\u062a\\u064a\\u0646\"],\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",\"%d \\u0633\\u0627\\u0639\\u0629\",\"%d \\u0633\\u0627\\u0639\\u0629\"],d:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u064a\\u0648\\u0645\",\"\\u064a\\u0648\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u064a\\u0648\\u0645\\u0627\\u0646\",\"\\u064a\\u0648\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u064a\\u0627\\u0645\",\"%d \\u064a\\u0648\\u0645\\u064b\\u0627\",\"%d \\u064a\\u0648\\u0645\"],M:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0634\\u0647\\u0631\",\"\\u0634\\u0647\\u0631 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0634\\u0647\\u0631\\u0627\\u0646\",\"\\u0634\\u0647\\u0631\\u064a\\u0646\"],\"%d \\u0623\\u0634\\u0647\\u0631\",\"%d \\u0634\\u0647\\u0631\\u0627\",\"%d \\u0634\\u0647\\u0631\"],y:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0639\\u0627\\u0645\",\"\\u0639\\u0627\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0639\\u0627\\u0645\\u0627\\u0646\",\"\\u0639\\u0627\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u0639\\u0648\\u0627\\u0645\",\"%d \\u0639\\u0627\\u0645\\u064b\\u0627\",\"%d \\u0639\\u0627\\u0645\"]},r=function(e){return function(t,n,r,o){var a=i(t),l=s[e][i(t)];return 2===a&&(l=l[n?0:1]),l.replace(/%d/i,t)}},o=[\"\\u064a\\u0646\\u0627\\u064a\\u0631\",\"\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631\",\"\\u0645\\u0627\\u0631\\u0633\",\"\\u0623\\u0628\\u0631\\u064a\\u0644\",\"\\u0645\\u0627\\u064a\\u0648\",\"\\u064a\\u0648\\u0646\\u064a\\u0648\",\"\\u064a\\u0648\\u0644\\u064a\\u0648\",\"\\u0623\\u063a\\u0633\\u0637\\u0633\",\"\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631\",\"\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631\",\"\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\"];e.defineLocale(\"ar\",{months:o,monthsShort:o,weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/\\u200fM/\\u200fYYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u064b\\u0627 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0628\\u0639\\u062f %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:r(\"s\"),ss:r(\"s\"),m:r(\"m\"),mm:r(\"m\"),h:r(\"h\"),hh:r(\"h\"),d:r(\"d\"),dd:r(\"d\"),M:r(\"M\"),MM:r(\"M\"),y:r(\"y\"),yy:r(\"y\")},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},kEOa:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u09e7\",2:\"\\u09e8\",3:\"\\u09e9\",4:\"\\u09ea\",5:\"\\u09eb\",6:\"\\u09ec\",7:\"\\u09ed\",8:\"\\u09ee\",9:\"\\u09ef\",0:\"\\u09e6\"},n={\"\\u09e7\":\"1\",\"\\u09e8\":\"2\",\"\\u09e9\":\"3\",\"\\u09ea\":\"4\",\"\\u09eb\":\"5\",\"\\u09ec\":\"6\",\"\\u09ed\":\"7\",\"\\u09ee\":\"8\",\"\\u09ef\":\"9\",\"\\u09e6\":\"0\"};e.defineLocale(\"bn\",{months:\"\\u099c\\u09be\\u09a8\\u09c1\\u09df\\u09be\\u09b0\\u09c0_\\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09c1\\u09df\\u09be\\u09b0\\u09bf_\\u09ae\\u09be\\u09b0\\u09cd\\u099a_\\u098f\\u09aa\\u09cd\\u09b0\\u09bf\\u09b2_\\u09ae\\u09c7_\\u099c\\u09c1\\u09a8_\\u099c\\u09c1\\u09b2\\u09be\\u0987_\\u0986\\u0997\\u09b8\\u09cd\\u099f_\\u09b8\\u09c7\\u09aa\\u09cd\\u099f\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0_\\u0985\\u0995\\u09cd\\u099f\\u09cb\\u09ac\\u09b0_\\u09a8\\u09ad\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0_\\u09a1\\u09bf\\u09b8\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0\".split(\"_\"),monthsShort:\"\\u099c\\u09be\\u09a8\\u09c1_\\u09ab\\u09c7\\u09ac_\\u09ae\\u09be\\u09b0\\u09cd\\u099a_\\u098f\\u09aa\\u09cd\\u09b0_\\u09ae\\u09c7_\\u099c\\u09c1\\u09a8_\\u099c\\u09c1\\u09b2_\\u0986\\u0997_\\u09b8\\u09c7\\u09aa\\u09cd\\u099f_\\u0985\\u0995\\u09cd\\u099f\\u09cb_\\u09a8\\u09ad\\u09c7_\\u09a1\\u09bf\\u09b8\\u09c7\".split(\"_\"),weekdays:\"\\u09b0\\u09ac\\u09bf\\u09ac\\u09be\\u09b0_\\u09b8\\u09cb\\u09ae\\u09ac\\u09be\\u09b0_\\u09ae\\u0999\\u09cd\\u0997\\u09b2\\u09ac\\u09be\\u09b0_\\u09ac\\u09c1\\u09a7\\u09ac\\u09be\\u09b0_\\u09ac\\u09c3\\u09b9\\u09b8\\u09cd\\u09aa\\u09a4\\u09bf\\u09ac\\u09be\\u09b0_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0\\u09ac\\u09be\\u09b0_\\u09b6\\u09a8\\u09bf\\u09ac\\u09be\\u09b0\".split(\"_\"),weekdaysShort:\"\\u09b0\\u09ac\\u09bf_\\u09b8\\u09cb\\u09ae_\\u09ae\\u0999\\u09cd\\u0997\\u09b2_\\u09ac\\u09c1\\u09a7_\\u09ac\\u09c3\\u09b9\\u09b8\\u09cd\\u09aa\\u09a4\\u09bf_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0_\\u09b6\\u09a8\\u09bf\".split(\"_\"),weekdaysMin:\"\\u09b0\\u09ac\\u09bf_\\u09b8\\u09cb\\u09ae_\\u09ae\\u0999\\u09cd\\u0997_\\u09ac\\u09c1\\u09a7_\\u09ac\\u09c3\\u09b9\\u0983_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0_\\u09b6\\u09a8\\u09bf\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u09b8\\u09ae\\u09df\",LTS:\"A h:mm:ss \\u09b8\\u09ae\\u09df\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u09b8\\u09ae\\u09df\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u09b8\\u09ae\\u09df\"},calendar:{sameDay:\"[\\u0986\\u099c] LT\",nextDay:\"[\\u0986\\u0997\\u09be\\u09ae\\u09c0\\u0995\\u09be\\u09b2] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0997\\u09a4\\u0995\\u09be\\u09b2] LT\",lastWeek:\"[\\u0997\\u09a4] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u09aa\\u09b0\\u09c7\",past:\"%s \\u0986\\u0997\\u09c7\",s:\"\\u0995\\u09df\\u09c7\\u0995 \\u09b8\\u09c7\\u0995\\u09c7\\u09a8\\u09cd\\u09a1\",ss:\"%d \\u09b8\\u09c7\\u0995\\u09c7\\u09a8\\u09cd\\u09a1\",m:\"\\u098f\\u0995 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f\",mm:\"%d \\u09ae\\u09bf\\u09a8\\u09bf\\u099f\",h:\"\\u098f\\u0995 \\u0998\\u09a8\\u09cd\\u099f\\u09be\",hh:\"%d \\u0998\\u09a8\\u09cd\\u099f\\u09be\",d:\"\\u098f\\u0995 \\u09a6\\u09bf\\u09a8\",dd:\"%d \\u09a6\\u09bf\\u09a8\",M:\"\\u098f\\u0995 \\u09ae\\u09be\\u09b8\",MM:\"%d \\u09ae\\u09be\\u09b8\",y:\"\\u098f\\u0995 \\u09ac\\u099b\\u09b0\",yy:\"%d \\u09ac\\u099b\\u09b0\"},preparse:function(e){return e.replace(/[\\u09e7\\u09e8\\u09e9\\u09ea\\u09eb\\u09ec\\u09ed\\u09ee\\u09ef\\u09e6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u09b0\\u09be\\u09a4|\\u09b8\\u0995\\u09be\\u09b2|\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0|\\u09ac\\u09bf\\u0995\\u09be\\u09b2|\\u09b0\\u09be\\u09a4/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u09b0\\u09be\\u09a4\"===t&&e>=4||\"\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0\"===t&&e<5||\"\\u09ac\\u09bf\\u0995\\u09be\\u09b2\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u09b0\\u09be\\u09a4\":e<10?\"\\u09b8\\u0995\\u09be\\u09b2\":e<17?\"\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0\":e<20?\"\\u09ac\\u09bf\\u0995\\u09be\\u09b2\":\"\\u09b0\\u09be\\u09a4\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},kOpN:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-tw\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u9031\\u65e5_\\u9031\\u4e00_\\u9031\\u4e8c_\\u9031\\u4e09_\\u9031\\u56db_\\u9031\\u4e94_\\u9031\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e2d\\u5348\"===t?e>=11?e:e+12:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:void 0},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"\\u51cc\\u6668\":i<900?\"\\u65e9\\u4e0a\":i<1130?\"\\u4e0a\\u5348\":i<1230?\"\\u4e2d\\u5348\":i<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929] LT\",nextDay:\"[\\u660e\\u5929] LT\",nextWeek:\"[\\u4e0b]dddd LT\",lastDay:\"[\\u6628\\u5929] LT\",lastWeek:\"[\\u4e0a]dddd LT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u9031)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u9031\";default:return e}},relativeTime:{future:\"%s\\u5167\",past:\"%s\\u524d\",s:\"\\u5e7e\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u9418\",mm:\"%d \\u5206\\u9418\",h:\"1 \\u5c0f\\u6642\",hh:\"%d \\u5c0f\\u6642\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u500b\\u6708\",MM:\"%d \\u500b\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"}})}(n(\"wd/R\"))},l5ep:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cy\",{months:\"Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr\".split(\"_\"),monthsShort:\"Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag\".split(\"_\"),weekdays:\"Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn\".split(\"_\"),weekdaysShort:\"Sul_Llun_Maw_Mer_Iau_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Ll_Ma_Me_Ia_Gw_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Heddiw am] LT\",nextDay:\"[Yfory am] LT\",nextWeek:\"dddd [am] LT\",lastDay:\"[Ddoe am] LT\",lastWeek:\"dddd [diwethaf am] LT\",sameElse:\"L\"},relativeTime:{future:\"mewn %s\",past:\"%s yn \\xf4l\",s:\"ychydig eiliadau\",ss:\"%d eiliad\",m:\"munud\",mm:\"%d munud\",h:\"awr\",hh:\"%d awr\",d:\"diwrnod\",dd:\"%d diwrnod\",M:\"mis\",MM:\"%d mis\",y:\"blwyddyn\",yy:\"%d flynedd\"},dayOfMonthOrdinalParse:/\\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,ordinal:function(e){var t=\"\";return e>20?t=40===e||50===e||60===e||80===e||100===e?\"fed\":\"ain\":e>0&&(t=[\"\",\"af\",\"il\",\"ydd\",\"ydd\",\"ed\",\"ed\",\"ed\",\"fed\",\"fed\",\"fed\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"fed\"][e]),e+t},week:{dow:1,doy:4}})}(n(\"wd/R\"))},lXzo:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i,s;return\"m\"===n?t?\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\":\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0443\":e+\" \"+(i=+e,s={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430_\\u043c\\u0438\\u043d\\u0443\\u0442\\u044b_\\u043c\\u0438\\u043d\\u0443\\u0442\":\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0443_\\u043c\\u0438\\u043d\\u0443\\u0442\\u044b_\\u043c\\u0438\\u043d\\u0443\\u0442\",hh:\"\\u0447\\u0430\\u0441_\\u0447\\u0430\\u0441\\u0430_\\u0447\\u0430\\u0441\\u043e\\u0432\",dd:\"\\u0434\\u0435\\u043d\\u044c_\\u0434\\u043d\\u044f_\\u0434\\u043d\\u0435\\u0439\",MM:\"\\u043c\\u0435\\u0441\\u044f\\u0446_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0430_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0435\\u0432\",yy:\"\\u0433\\u043e\\u0434_\\u0433\\u043e\\u0434\\u0430_\\u043b\\u0435\\u0442\"}[n].split(\"_\"),i%10==1&&i%100!=11?s[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?s[1]:s[2])}var n=[/^\\u044f\\u043d\\u0432/i,/^\\u0444\\u0435\\u0432/i,/^\\u043c\\u0430\\u0440/i,/^\\u0430\\u043f\\u0440/i,/^\\u043c\\u0430[\\u0439\\u044f]/i,/^\\u0438\\u044e\\u043d/i,/^\\u0438\\u044e\\u043b/i,/^\\u0430\\u0432\\u0433/i,/^\\u0441\\u0435\\u043d/i,/^\\u043e\\u043a\\u0442/i,/^\\u043d\\u043e\\u044f/i,/^\\u0434\\u0435\\u043a/i];e.defineLocale(\"ru\",{months:{format:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044f_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044f_\\u043c\\u0430\\u0440\\u0442\\u0430_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044f_\\u043c\\u0430\\u044f_\\u0438\\u044e\\u043d\\u044f_\\u0438\\u044e\\u043b\\u044f_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044f_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044f_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044f_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044f\".split(\"_\"),standalone:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044c_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044c_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044c_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044c_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044c\".split(\"_\")},monthsShort:{format:\"\\u044f\\u043d\\u0432._\\u0444\\u0435\\u0432\\u0440._\\u043c\\u0430\\u0440._\\u0430\\u043f\\u0440._\\u043c\\u0430\\u044f_\\u0438\\u044e\\u043d\\u044f_\\u0438\\u044e\\u043b\\u044f_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043d\\u0442._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u044f\\u0431._\\u0434\\u0435\\u043a.\".split(\"_\"),standalone:\"\\u044f\\u043d\\u0432._\\u0444\\u0435\\u0432\\u0440._\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440._\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043d\\u0442._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u044f\\u0431._\\u0434\\u0435\\u043a.\".split(\"_\")},weekdays:{standalone:\"\\u0432\\u043e\\u0441\\u043a\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c\\u0435_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u044c\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433_\\u043f\\u044f\\u0442\\u043d\\u0438\\u0446\\u0430_\\u0441\\u0443\\u0431\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),format:\"\\u0432\\u043e\\u0441\\u043a\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c\\u0435_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u044c\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0443_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433_\\u043f\\u044f\\u0442\\u043d\\u0438\\u0446\\u0443_\\u0441\\u0443\\u0431\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),isFormat:/\\[ ?[\\u0412\\u0432] ?(?:\\u043f\\u0440\\u043e\\u0448\\u043b\\u0443\\u044e|\\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0443\\u044e|\\u044d\\u0442\\u0443)? ?\\] ?dddd/},weekdaysShort:\"\\u0432\\u0441_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u0432\\u0441_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),monthsParse:n,longMonthsParse:n,shortMonthsParse:n,monthsRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044c\\u044f]|\\u044f\\u043d\\u0432\\.?|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044c\\u044f]|\\u0444\\u0435\\u0432\\u0440?\\.?|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u043c\\u0430\\u0440\\.?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044c\\u044f]|\\u0430\\u043f\\u0440\\.?|\\u043c\\u0430[\\u0439\\u044f]|\\u0438\\u044e\\u043d[\\u044c\\u044f]|\\u0438\\u044e\\u043d\\.?|\\u0438\\u044e\\u043b[\\u044c\\u044f]|\\u0438\\u044e\\u043b\\.?|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0430\\u0432\\u0433\\.?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u0441\\u0435\\u043d\\u0442?\\.?|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043e\\u043a\\u0442\\.?|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043d\\u043e\\u044f\\u0431?\\.?|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044c\\u044f]|\\u0434\\u0435\\u043a\\.?)/i,monthsShortRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044c\\u044f]|\\u044f\\u043d\\u0432\\.?|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044c\\u044f]|\\u0444\\u0435\\u0432\\u0440?\\.?|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u043c\\u0430\\u0440\\.?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044c\\u044f]|\\u0430\\u043f\\u0440\\.?|\\u043c\\u0430[\\u0439\\u044f]|\\u0438\\u044e\\u043d[\\u044c\\u044f]|\\u0438\\u044e\\u043d\\.?|\\u0438\\u044e\\u043b[\\u044c\\u044f]|\\u0438\\u044e\\u043b\\.?|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0430\\u0432\\u0433\\.?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u0441\\u0435\\u043d\\u0442?\\.?|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043e\\u043a\\u0442\\.?|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043d\\u043e\\u044f\\u0431?\\.?|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044c\\u044f]|\\u0434\\u0435\\u043a\\.?)/i,monthsStrictRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044f\\u044c]|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044f\\u044c]|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044f\\u044c]|\\u043c\\u0430[\\u044f\\u0439]|\\u0438\\u044e\\u043d[\\u044f\\u044c]|\\u0438\\u044e\\u043b[\\u044f\\u044c]|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044f\\u044c])/i,monthsShortStrictRegex:/^(\\u044f\\u043d\\u0432\\.|\\u0444\\u0435\\u0432\\u0440?\\.|\\u043c\\u0430\\u0440[\\u0442.]|\\u0430\\u043f\\u0440\\.|\\u043c\\u0430[\\u044f\\u0439]|\\u0438\\u044e\\u043d[\\u044c\\u044f.]|\\u0438\\u044e\\u043b[\\u044c\\u044f.]|\\u0430\\u0432\\u0433\\.|\\u0441\\u0435\\u043d\\u0442?\\.|\\u043e\\u043a\\u0442\\.|\\u043d\\u043e\\u044f\\u0431?\\.|\\u0434\\u0435\\u043a\\.)/i,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0433.\",LLL:\"D MMMM YYYY \\u0433., H:mm\",LLLL:\"dddd, D MMMM YYYY \\u0433., H:mm\"},calendar:{sameDay:\"[\\u0421\\u0435\\u0433\\u043e\\u0434\\u043d\\u044f, \\u0432] LT\",nextDay:\"[\\u0417\\u0430\\u0432\\u0442\\u0440\\u0430, \\u0432] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430, \\u0432] LT\",nextWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[\\u0412\\u043e] dddd, [\\u0432] LT\":\"[\\u0412] dddd, [\\u0432] LT\";switch(this.day()){case 0:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0435\\u0435] dddd, [\\u0432] LT\";case 1:case 2:case 4:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0438\\u0439] dddd, [\\u0432] LT\";case 3:case 5:case 6:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0443\\u044e] dddd, [\\u0432] LT\"}},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[\\u0412\\u043e] dddd, [\\u0432] LT\":\"[\\u0412] dddd, [\\u0432] LT\";switch(this.day()){case 0:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0435] dddd, [\\u0432] LT\";case 1:case 2:case 4:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u044b\\u0439] dddd, [\\u0432] LT\";case 3:case 5:case 6:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u0443\\u044e] dddd, [\\u0432] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u0447\\u0435\\u0440\\u0435\\u0437 %s\",past:\"%s \\u043d\\u0430\\u0437\\u0430\\u0434\",s:\"\\u043d\\u0435\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:t,m:t,mm:t,h:\"\\u0447\\u0430\\u0441\",hh:t,d:\"\\u0434\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0435\\u0441\\u044f\\u0446\",MM:t,y:\"\\u0433\\u043e\\u0434\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u0438|\\u0443\\u0442\\u0440\\u0430|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430/i,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u0438\":e<12?\"\\u0443\\u0442\\u0440\\u0430\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0439|\\u0433\\u043e|\\u044f)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":return e+\"-\\u0439\";case\"D\":return e+\"-\\u0433\\u043e\";case\"w\":case\"W\":return e+\"-\\u044f\";default:return e}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},lYtQ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){switch(n){case\"s\":return t?\"\\u0445\\u044d\\u0434\\u0445\\u044d\\u043d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0445\\u044d\\u0434\\u0445\\u044d\\u043d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b\\u043d\";case\"ss\":return e+(t?\" \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\" \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b\\u043d\");case\"m\":case\"mm\":return e+(t?\" \\u043c\\u0438\\u043d\\u0443\\u0442\":\" \\u043c\\u0438\\u043d\\u0443\\u0442\\u044b\\u043d\");case\"h\":case\"hh\":return e+(t?\" \\u0446\\u0430\\u0433\":\" \\u0446\\u0430\\u0433\\u0438\\u0439\\u043d\");case\"d\":case\"dd\":return e+(t?\" \\u04e9\\u0434\\u04e9\\u0440\":\" \\u04e9\\u0434\\u0440\\u0438\\u0439\\u043d\");case\"M\":case\"MM\":return e+(t?\" \\u0441\\u0430\\u0440\":\" \\u0441\\u0430\\u0440\\u044b\\u043d\");case\"y\":case\"yy\":return e+(t?\" \\u0436\\u0438\\u043b\":\" \\u0436\\u0438\\u043b\\u0438\\u0439\\u043d\");default:return e}}e.defineLocale(\"mn\",{months:\"\\u041d\\u044d\\u0433\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0425\\u043e\\u0451\\u0440\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0413\\u0443\\u0440\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0414\\u04e9\\u0440\\u04e9\\u0432\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0422\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0417\\u0443\\u0440\\u0433\\u0430\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0414\\u043e\\u043b\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u041d\\u0430\\u0439\\u043c\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0415\\u0441\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0432\\u0430\\u043d \\u043d\\u044d\\u0433\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0432\\u0430\\u043d \\u0445\\u043e\\u0451\\u0440\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440\".split(\"_\"),monthsShort:\"1 \\u0441\\u0430\\u0440_2 \\u0441\\u0430\\u0440_3 \\u0441\\u0430\\u0440_4 \\u0441\\u0430\\u0440_5 \\u0441\\u0430\\u0440_6 \\u0441\\u0430\\u0440_7 \\u0441\\u0430\\u0440_8 \\u0441\\u0430\\u0440_9 \\u0441\\u0430\\u0440_10 \\u0441\\u0430\\u0440_11 \\u0441\\u0430\\u0440_12 \\u0441\\u0430\\u0440\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u041d\\u044f\\u043c_\\u0414\\u0430\\u0432\\u0430\\u0430_\\u041c\\u044f\\u0433\\u043c\\u0430\\u0440_\\u041b\\u0445\\u0430\\u0433\\u0432\\u0430_\\u041f\\u04af\\u0440\\u044d\\u0432_\\u0411\\u0430\\u0430\\u0441\\u0430\\u043d_\\u0411\\u044f\\u043c\\u0431\\u0430\".split(\"_\"),weekdaysShort:\"\\u041d\\u044f\\u043c_\\u0414\\u0430\\u0432_\\u041c\\u044f\\u0433_\\u041b\\u0445\\u0430_\\u041f\\u04af\\u0440_\\u0411\\u0430\\u0430_\\u0411\\u044f\\u043c\".split(\"_\"),weekdaysMin:\"\\u041d\\u044f_\\u0414\\u0430_\\u041c\\u044f_\\u041b\\u0445_\\u041f\\u04af_\\u0411\\u0430_\\u0411\\u044f\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D\",LLL:\"YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D HH:mm\",LLLL:\"dddd, YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D HH:mm\"},meridiemParse:/\\u04ae\\u04e8|\\u04ae\\u0425/i,isPM:function(e){return\"\\u04ae\\u0425\"===e},meridiem:function(e,t,n){return e<12?\"\\u04ae\\u04e8\":\"\\u04ae\\u0425\"},calendar:{sameDay:\"[\\u04e8\\u043d\\u04e9\\u04e9\\u0434\\u04e9\\u0440] LT\",nextDay:\"[\\u041c\\u0430\\u0440\\u0433\\u0430\\u0430\\u0448] LT\",nextWeek:\"[\\u0418\\u0440\\u044d\\u0445] dddd LT\",lastDay:\"[\\u04e8\\u0447\\u0438\\u0433\\u0434\\u04e9\\u0440] LT\",lastWeek:\"[\\u04e8\\u043d\\u0433\\u04e9\\u0440\\u0441\\u04e9\\u043d] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0434\\u0430\\u0440\\u0430\\u0430\",past:\"%s \\u04e9\\u043c\\u043d\\u04e9\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2} \\u04e9\\u0434\\u04e9\\u0440/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\" \\u04e9\\u0434\\u04e9\\u0440\";default:return e}}})}(n(\"wd/R\"))},lgnt:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0447\\u04af\",1:\"-\\u0447\\u0438\",2:\"-\\u0447\\u0438\",3:\"-\\u0447\\u04af\",4:\"-\\u0447\\u04af\",5:\"-\\u0447\\u0438\",6:\"-\\u0447\\u044b\",7:\"-\\u0447\\u0438\",8:\"-\\u0447\\u0438\",9:\"-\\u0447\\u0443\",10:\"-\\u0447\\u0443\",20:\"-\\u0447\\u044b\",30:\"-\\u0447\\u0443\",40:\"-\\u0447\\u044b\",50:\"-\\u0447\\u04af\",60:\"-\\u0447\\u044b\",70:\"-\\u0447\\u0438\",80:\"-\\u0447\\u0438\",90:\"-\\u0447\\u0443\",100:\"-\\u0447\\u04af\"};e.defineLocale(\"ky\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044c_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044c_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044c_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044c_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044c\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u0416\\u0435\\u043a\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0414\\u04af\\u0439\\u0448\\u04e9\\u043c\\u0431\\u04af_\\u0428\\u0435\\u0439\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0428\\u0430\\u0440\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0411\\u0435\\u0439\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0416\\u0443\\u043c\\u0430_\\u0418\\u0448\\u0435\\u043c\\u0431\\u0438\".split(\"_\"),weekdaysShort:\"\\u0416\\u0435\\u043a_\\u0414\\u04af\\u0439_\\u0428\\u0435\\u0439_\\u0428\\u0430\\u0440_\\u0411\\u0435\\u0439_\\u0416\\u0443\\u043c_\\u0418\\u0448\\u0435\".split(\"_\"),weekdaysMin:\"\\u0416\\u043a_\\u0414\\u0439_\\u0428\\u0439_\\u0428\\u0440_\\u0411\\u0439_\\u0416\\u043c_\\u0418\\u0448\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0411\\u04af\\u0433\\u04af\\u043d \\u0441\\u0430\\u0430\\u0442] LT\",nextDay:\"[\\u042d\\u0440\\u0442\\u0435\\u04a3 \\u0441\\u0430\\u0430\\u0442] LT\",nextWeek:\"dddd [\\u0441\\u0430\\u0430\\u0442] LT\",lastDay:\"[\\u041a\\u0435\\u0447\\u044d\\u044d \\u0441\\u0430\\u0430\\u0442] LT\",lastWeek:\"[\\u04e8\\u0442\\u043a\\u04e9\\u043d \\u0430\\u043f\\u0442\\u0430\\u043d\\u044b\\u043d] dddd [\\u043a\\u04af\\u043d\\u04af] [\\u0441\\u0430\\u0430\\u0442] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0438\\u0447\\u0438\\u043d\\u0434\\u0435\",past:\"%s \\u043c\\u0443\\u0440\\u0443\\u043d\",s:\"\\u0431\\u0438\\u0440\\u043d\\u0435\\u0447\\u0435 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:\"\\u0431\\u0438\\u0440 \\u043c\\u04af\\u043d\\u04e9\\u0442\",mm:\"%d \\u043c\\u04af\\u043d\\u04e9\\u0442\",h:\"\\u0431\\u0438\\u0440 \\u0441\\u0430\\u0430\\u0442\",hh:\"%d \\u0441\\u0430\\u0430\\u0442\",d:\"\\u0431\\u0438\\u0440 \\u043a\\u04af\\u043d\",dd:\"%d \\u043a\\u04af\\u043d\",M:\"\\u0431\\u0438\\u0440 \\u0430\\u0439\",MM:\"%d \\u0430\\u0439\",y:\"\\u0431\\u0438\\u0440 \\u0436\\u044b\\u043b\",yy:\"%d \\u0436\\u044b\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0447\\u0438|\\u0447\\u044b|\\u0447\\u04af|\\u0447\\u0443)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},lyxo:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i=\" \";return(e%100>=20||e>=100&&e%100==0)&&(i=\" de \"),e+i+{ss:\"secunde\",mm:\"minute\",hh:\"ore\",dd:\"zile\",MM:\"luni\",yy:\"ani\"}[n]}e.defineLocale(\"ro\",{months:\"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie\".split(\"_\"),monthsShort:\"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"duminic\\u0103_luni_mar\\u021bi_miercuri_joi_vineri_s\\xe2mb\\u0103t\\u0103\".split(\"_\"),weekdaysShort:\"Dum_Lun_Mar_Mie_Joi_Vin_S\\xe2m\".split(\"_\"),weekdaysMin:\"Du_Lu_Ma_Mi_Jo_Vi_S\\xe2\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[azi la] LT\",nextDay:\"[m\\xe2ine la] LT\",nextWeek:\"dddd [la] LT\",lastDay:\"[ieri la] LT\",lastWeek:\"[fosta] dddd [la] LT\",sameElse:\"L\"},relativeTime:{future:\"peste %s\",past:\"%s \\xeen urm\\u0103\",s:\"c\\xe2teva secunde\",ss:t,m:\"un minut\",mm:t,h:\"o or\\u0103\",hh:t,d:\"o zi\",dd:t,M:\"o lun\\u0103\",MM:t,y:\"un an\",yy:t},week:{dow:1,doy:7}})}(n(\"wd/R\"))},m4GZ:function(e,t){function n(e){this.message=e}(n.prototype=new Error).name=\"InvalidCharacterError\",e.exports=\"undefined\"!=typeof window&&window.atob&&window.atob.bind(window)||function(e){var t=String(e).replace(/=+$/,\"\");if(t.length%4==1)throw new n(\"'atob' failed: The string to be decoded is not correctly encoded.\");for(var i,s,r=0,o=0,a=\"\";s=t.charAt(o++);~s&&(i=r%4?64*i+s:s,r++%4)?a+=String.fromCharCode(255&i>>(-2*r&6)):0)s=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\".indexOf(s);return a}},nyYc:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|)/,ordinal:function(e,t){switch(t){case\"D\":return e+(1===e?\"er\":\"\");default:case\"M\":case\"Q\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},o1bE:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-dz\",{months:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0627\\u062d\\u062f_\\u0627\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u0623\\u062d_\\u0625\\u062b_\\u062b\\u0644\\u0627_\\u0623\\u0631_\\u062e\\u0645_\\u062c\\u0645_\\u0633\\u0628\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:0,doy:4}})}(n(\"wd/R\"))},\"p/rL\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bm\",{months:\"Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_M\\u025bkalo_Zuw\\u025bnkalo_Zuluyekalo_Utikalo_S\\u025btanburukalo_\\u0254kut\\u0254burukalo_Nowanburukalo_Desanburukalo\".split(\"_\"),monthsShort:\"Zan_Few_Mar_Awi_M\\u025b_Zuw_Zul_Uti_S\\u025bt_\\u0254ku_Now_Des\".split(\"_\"),weekdays:\"Kari_Nt\\u025bn\\u025bn_Tarata_Araba_Alamisa_Juma_Sibiri\".split(\"_\"),weekdaysShort:\"Kar_Nt\\u025b_Tar_Ara_Ala_Jum_Sib\".split(\"_\"),weekdaysMin:\"Ka_Nt_Ta_Ar_Al_Ju_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"MMMM [tile] D [san] YYYY\",LLL:\"MMMM [tile] D [san] YYYY [l\\u025br\\u025b] HH:mm\",LLLL:\"dddd MMMM [tile] D [san] YYYY [l\\u025br\\u025b] HH:mm\"},calendar:{sameDay:\"[Bi l\\u025br\\u025b] LT\",nextDay:\"[Sini l\\u025br\\u025b] LT\",nextWeek:\"dddd [don l\\u025br\\u025b] LT\",lastDay:\"[Kunu l\\u025br\\u025b] LT\",lastWeek:\"dddd [t\\u025bm\\u025bnen l\\u025br\\u025b] LT\",sameElse:\"L\"},relativeTime:{future:\"%s k\\u0254n\\u0254\",past:\"a b\\u025b %s b\\u0254\",s:\"sanga dama dama\",ss:\"sekondi %d\",m:\"miniti kelen\",mm:\"miniti %d\",h:\"l\\u025br\\u025b kelen\",hh:\"l\\u025br\\u025b %d\",d:\"tile kelen\",dd:\"tile %d\",M:\"kalo kelen\",MM:\"kalo %d\",y:\"san kelen\",yy:\"san %d\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},raLr:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i,s;return\"m\"===n?t?\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0430\":\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0443\":\"h\"===n?t?\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\":\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\":e+\" \"+(i=+e,s={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0430_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0438_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\":\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0443_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0438_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\",hh:t?\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430_\\u0433\\u043e\\u0434\\u0438\\u043d\\u0438_\\u0433\\u043e\\u0434\\u0438\\u043d\":\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443_\\u0433\\u043e\\u0434\\u0438\\u043d\\u0438_\\u0433\\u043e\\u0434\\u0438\\u043d\",dd:\"\\u0434\\u0435\\u043d\\u044c_\\u0434\\u043d\\u0456_\\u0434\\u043d\\u0456\\u0432\",MM:\"\\u043c\\u0456\\u0441\\u044f\\u0446\\u044c_\\u043c\\u0456\\u0441\\u044f\\u0446\\u0456_\\u043c\\u0456\\u0441\\u044f\\u0446\\u0456\\u0432\",yy:\"\\u0440\\u0456\\u043a_\\u0440\\u043e\\u043a\\u0438_\\u0440\\u043e\\u043a\\u0456\\u0432\"}[n].split(\"_\"),i%10==1&&i%100!=11?s[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?s[1]:s[2])}function n(e){return function(){return e+\"\\u043e\"+(11===this.hours()?\"\\u0431\":\"\")+\"] LT\"}}e.defineLocale(\"uk\",{months:{format:\"\\u0441\\u0456\\u0447\\u043d\\u044f_\\u043b\\u044e\\u0442\\u043e\\u0433\\u043e_\\u0431\\u0435\\u0440\\u0435\\u0437\\u043d\\u044f_\\u043a\\u0432\\u0456\\u0442\\u043d\\u044f_\\u0442\\u0440\\u0430\\u0432\\u043d\\u044f_\\u0447\\u0435\\u0440\\u0432\\u043d\\u044f_\\u043b\\u0438\\u043f\\u043d\\u044f_\\u0441\\u0435\\u0440\\u043f\\u043d\\u044f_\\u0432\\u0435\\u0440\\u0435\\u0441\\u043d\\u044f_\\u0436\\u043e\\u0432\\u0442\\u043d\\u044f_\\u043b\\u0438\\u0441\\u0442\\u043e\\u043f\\u0430\\u0434\\u0430_\\u0433\\u0440\\u0443\\u0434\\u043d\\u044f\".split(\"_\"),standalone:\"\\u0441\\u0456\\u0447\\u0435\\u043d\\u044c_\\u043b\\u044e\\u0442\\u0438\\u0439_\\u0431\\u0435\\u0440\\u0435\\u0437\\u0435\\u043d\\u044c_\\u043a\\u0432\\u0456\\u0442\\u0435\\u043d\\u044c_\\u0442\\u0440\\u0430\\u0432\\u0435\\u043d\\u044c_\\u0447\\u0435\\u0440\\u0432\\u0435\\u043d\\u044c_\\u043b\\u0438\\u043f\\u0435\\u043d\\u044c_\\u0441\\u0435\\u0440\\u043f\\u0435\\u043d\\u044c_\\u0432\\u0435\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c_\\u0436\\u043e\\u0432\\u0442\\u0435\\u043d\\u044c_\\u043b\\u0438\\u0441\\u0442\\u043e\\u043f\\u0430\\u0434_\\u0433\\u0440\\u0443\\u0434\\u0435\\u043d\\u044c\".split(\"_\")},monthsShort:\"\\u0441\\u0456\\u0447_\\u043b\\u044e\\u0442_\\u0431\\u0435\\u0440_\\u043a\\u0432\\u0456\\u0442_\\u0442\\u0440\\u0430\\u0432_\\u0447\\u0435\\u0440\\u0432_\\u043b\\u0438\\u043f_\\u0441\\u0435\\u0440\\u043f_\\u0432\\u0435\\u0440_\\u0436\\u043e\\u0432\\u0442_\\u043b\\u0438\\u0441\\u0442_\\u0433\\u0440\\u0443\\u0434\".split(\"_\"),weekdays:function(e,t){var n={nominative:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u044f_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043e\\u043a_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043e\\u043a_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u044f_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),accusative:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u044e_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043e\\u043a_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043e\\u043a_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0443_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u044e_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),genitive:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u0456_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043a\\u0430_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043a\\u0430_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0438_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433\\u0430_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u0456_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0438\".split(\"_\")};return!0===e?n.nominative.slice(1,7).concat(n.nominative.slice(0,1)):e?n[/(\\[[\\u0412\\u0432\\u0423\\u0443]\\]) ?dddd/.test(t)?\"accusative\":/\\[?(?:\\u043c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0457|\\u043d\\u0430\\u0441\\u0442\\u0443\\u043f\\u043d\\u043e\\u0457)? ?\\] ?dddd/.test(t)?\"genitive\":\"nominative\"][e.day()]:n.nominative},weekdaysShort:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0440.\",LLL:\"D MMMM YYYY \\u0440., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0440., HH:mm\"},calendar:{sameDay:n(\"[\\u0421\\u044c\\u043e\\u0433\\u043e\\u0434\\u043d\\u0456 \"),nextDay:n(\"[\\u0417\\u0430\\u0432\\u0442\\u0440\\u0430 \"),lastDay:n(\"[\\u0412\\u0447\\u043e\\u0440\\u0430 \"),nextWeek:n(\"[\\u0423] dddd [\"),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return n(\"[\\u041c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0457] dddd [\").call(this);case 1:case 2:case 4:return n(\"[\\u041c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0433\\u043e] dddd [\").call(this)}},sameElse:\"L\"},relativeTime:{future:\"\\u0437\\u0430 %s\",past:\"%s \\u0442\\u043e\\u043c\\u0443\",s:\"\\u0434\\u0435\\u043a\\u0456\\u043b\\u044c\\u043a\\u0430 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:t,m:t,mm:t,h:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\",hh:t,d:\"\\u0434\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0456\\u0441\\u044f\\u0446\\u044c\",MM:t,y:\"\\u0440\\u0456\\u043a\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u0456|\\u0440\\u0430\\u043d\\u043a\\u0443|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430/,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u0456\":e<12?\"\\u0440\\u0430\\u043d\\u043a\\u0443\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0439|\\u0433\\u043e)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e+\"-\\u0439\";case\"D\":return e+\"-\\u0433\\u043e\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"s+uk\":function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?s[n][0]:s[n][1]}e.defineLocale(\"de-at\",{months:\"J\\xe4nner_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"J\\xe4n._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},sp3z:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"lo\",{months:\"\\u0ea1\\u0eb1\\u0e87\\u0e81\\u0ead\\u0e99_\\u0e81\\u0eb8\\u0ea1\\u0e9e\\u0eb2_\\u0ea1\\u0eb5\\u0e99\\u0eb2_\\u0ec0\\u0ea1\\u0eaa\\u0eb2_\\u0e9e\\u0eb6\\u0e94\\u0eaa\\u0eb0\\u0e9e\\u0eb2_\\u0ea1\\u0eb4\\u0e96\\u0eb8\\u0e99\\u0eb2_\\u0e81\\u0ecd\\u0ea5\\u0eb0\\u0e81\\u0ebb\\u0e94_\\u0eaa\\u0eb4\\u0e87\\u0eab\\u0eb2_\\u0e81\\u0eb1\\u0e99\\u0e8d\\u0eb2_\\u0e95\\u0eb8\\u0ea5\\u0eb2_\\u0e9e\\u0eb0\\u0e88\\u0eb4\\u0e81_\\u0e97\\u0eb1\\u0e99\\u0ea7\\u0eb2\".split(\"_\"),monthsShort:\"\\u0ea1\\u0eb1\\u0e87\\u0e81\\u0ead\\u0e99_\\u0e81\\u0eb8\\u0ea1\\u0e9e\\u0eb2_\\u0ea1\\u0eb5\\u0e99\\u0eb2_\\u0ec0\\u0ea1\\u0eaa\\u0eb2_\\u0e9e\\u0eb6\\u0e94\\u0eaa\\u0eb0\\u0e9e\\u0eb2_\\u0ea1\\u0eb4\\u0e96\\u0eb8\\u0e99\\u0eb2_\\u0e81\\u0ecd\\u0ea5\\u0eb0\\u0e81\\u0ebb\\u0e94_\\u0eaa\\u0eb4\\u0e87\\u0eab\\u0eb2_\\u0e81\\u0eb1\\u0e99\\u0e8d\\u0eb2_\\u0e95\\u0eb8\\u0ea5\\u0eb2_\\u0e9e\\u0eb0\\u0e88\\u0eb4\\u0e81_\\u0e97\\u0eb1\\u0e99\\u0ea7\\u0eb2\".split(\"_\"),weekdays:\"\\u0ead\\u0eb2\\u0e97\\u0eb4\\u0e94_\\u0e88\\u0eb1\\u0e99_\\u0ead\\u0eb1\\u0e87\\u0e84\\u0eb2\\u0e99_\\u0e9e\\u0eb8\\u0e94_\\u0e9e\\u0eb0\\u0eab\\u0eb1\\u0e94_\\u0eaa\\u0eb8\\u0e81_\\u0ec0\\u0eaa\\u0ebb\\u0eb2\".split(\"_\"),weekdaysShort:\"\\u0e97\\u0eb4\\u0e94_\\u0e88\\u0eb1\\u0e99_\\u0ead\\u0eb1\\u0e87\\u0e84\\u0eb2\\u0e99_\\u0e9e\\u0eb8\\u0e94_\\u0e9e\\u0eb0\\u0eab\\u0eb1\\u0e94_\\u0eaa\\u0eb8\\u0e81_\\u0ec0\\u0eaa\\u0ebb\\u0eb2\".split(\"_\"),weekdaysMin:\"\\u0e97_\\u0e88_\\u0ead\\u0e84_\\u0e9e_\\u0e9e\\u0eab_\\u0eaa\\u0e81_\\u0eaa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"\\u0ea7\\u0eb1\\u0e99dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0e95\\u0ead\\u0e99\\u0ec0\\u0e8a\\u0ebb\\u0ec9\\u0eb2|\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87/,isPM:function(e){return\"\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87\"===e},meridiem:function(e,t,n){return e<12?\"\\u0e95\\u0ead\\u0e99\\u0ec0\\u0e8a\\u0ebb\\u0ec9\\u0eb2\":\"\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87\"},calendar:{sameDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",nextDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0ead\\u0eb7\\u0ec8\\u0e99\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",nextWeek:\"[\\u0ea7\\u0eb1\\u0e99]dddd[\\u0edc\\u0ec9\\u0eb2\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",lastDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0ea7\\u0eb2\\u0e99\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",lastWeek:\"[\\u0ea7\\u0eb1\\u0e99]dddd[\\u0ec1\\u0ea5\\u0ec9\\u0ea7\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0ead\\u0eb5\\u0e81 %s\",past:\"%s\\u0e9c\\u0ec8\\u0eb2\\u0e99\\u0ea1\\u0eb2\",s:\"\\u0e9a\\u0ecd\\u0ec8\\u0ec0\\u0e97\\u0ebb\\u0ec8\\u0eb2\\u0ec3\\u0e94\\u0ea7\\u0eb4\\u0e99\\u0eb2\\u0e97\\u0eb5\",ss:\"%d \\u0ea7\\u0eb4\\u0e99\\u0eb2\\u0e97\\u0eb5\",m:\"1 \\u0e99\\u0eb2\\u0e97\\u0eb5\",mm:\"%d \\u0e99\\u0eb2\\u0e97\\u0eb5\",h:\"1 \\u0e8a\\u0ebb\\u0ec8\\u0ea7\\u0ec2\\u0ea1\\u0e87\",hh:\"%d \\u0e8a\\u0ebb\\u0ec8\\u0ea7\\u0ec2\\u0ea1\\u0e87\",d:\"1 \\u0ea1\\u0eb7\\u0ec9\",dd:\"%d \\u0ea1\\u0eb7\\u0ec9\",M:\"1 \\u0ec0\\u0e94\\u0eb7\\u0ead\\u0e99\",MM:\"%d \\u0ec0\\u0e94\\u0eb7\\u0ead\\u0e99\",y:\"1 \\u0e9b\\u0eb5\",yy:\"%d \\u0e9b\\u0eb5\"},dayOfMonthOrdinalParse:/(\\u0e97\\u0eb5\\u0ec8)\\d{1,2}/,ordinal:function(e){return\"\\u0e97\\u0eb5\\u0ec8\"+e}})}(n(\"wd/R\"))},tGlX:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?s[n][0]:s[n][1]}e.defineLocale(\"de\",{months:\"Januar_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},tT3J:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm-latn\",{months:\"innayr_br\\u02e4ayr\\u02e4_mar\\u02e4s\\u02e4_ibrir_mayyw_ywnyw_ywlywz_\\u0263w\\u0161t_\\u0161wtanbir_kt\\u02e4wbr\\u02e4_nwwanbir_dwjnbir\".split(\"_\"),monthsShort:\"innayr_br\\u02e4ayr\\u02e4_mar\\u02e4s\\u02e4_ibrir_mayyw_ywnyw_ywlywz_\\u0263w\\u0161t_\\u0161wtanbir_kt\\u02e4wbr\\u02e4_nwwanbir_dwjnbir\".split(\"_\"),weekdays:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),weekdaysShort:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),weekdaysMin:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[asdkh g] LT\",nextDay:\"[aska g] LT\",nextWeek:\"dddd [g] LT\",lastDay:\"[assant g] LT\",lastWeek:\"dddd [g] LT\",sameElse:\"L\"},relativeTime:{future:\"dadkh s yan %s\",past:\"yan %s\",s:\"imik\",ss:\"%d imik\",m:\"minu\\u1e0d\",mm:\"%d minu\\u1e0d\",h:\"sa\\u025ba\",hh:\"%d tassa\\u025bin\",d:\"ass\",dd:\"%d ossan\",M:\"ayowr\",MM:\"%d iyyirn\",y:\"asgas\",yy:\"%d isgasn\"},week:{dow:6,doy:12}})}(n(\"wd/R\"))},tUCv:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"jv\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des\".split(\"_\"),weekdays:\"Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Reb_Kem_Jem_Sep\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sp\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/enjing|siyang|sonten|ndalu/,meridiemHour:function(e,t){return 12===e&&(e=0),\"enjing\"===t?e:\"siyang\"===t?e>=11?e:e+12:\"sonten\"===t||\"ndalu\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"enjing\":e<15?\"siyang\":e<19?\"sonten\":\"ndalu\"},calendar:{sameDay:\"[Dinten puniko pukul] LT\",nextDay:\"[Mbenjang pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kala wingi pukul] LT\",lastWeek:\"dddd [kepengker pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"wonten ing %s\",past:\"%s ingkang kepengker\",s:\"sawetawis detik\",ss:\"%d detik\",m:\"setunggal menit\",mm:\"%d menit\",h:\"setunggal jam\",hh:\"%d jam\",d:\"sedinten\",dd:\"%d dinten\",M:\"sewulan\",MM:\"%d wulan\",y:\"setaun\",yy:\"%d taun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},u3GI:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?s[n][0]:s[n][1]}e.defineLocale(\"de-ch\",{months:\"Januar_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},uEye:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nn\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\"),weekdays:\"sundag_m\\xe5ndag_tysdag_onsdag_torsdag_fredag_laurdag\".split(\"_\"),weekdaysShort:\"sun_m\\xe5n_tys_ons_tor_fre_lau\".split(\"_\"),weekdaysMin:\"su_m\\xe5_ty_on_to_fr_l\\xf8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] H:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[I dag klokka] LT\",nextDay:\"[I morgon klokka] LT\",nextWeek:\"dddd [klokka] LT\",lastDay:\"[I g\\xe5r klokka] LT\",lastWeek:\"[F\\xf8reg\\xe5ande] dddd [klokka] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s sidan\",s:\"nokre sekund\",ss:\"%d sekund\",m:\"eit minutt\",mm:\"%d minutt\",h:\"ein time\",hh:\"%d timar\",d:\"ein dag\",dd:\"%d dagar\",M:\"ein m\\xe5nad\",MM:\"%d m\\xe5nader\",y:\"eit \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},uXwI:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekundes_sekund\\u0113m_sekunde_sekundes\".split(\"_\"),m:\"min\\u016btes_min\\u016bt\\u0113m_min\\u016bte_min\\u016btes\".split(\"_\"),mm:\"min\\u016btes_min\\u016bt\\u0113m_min\\u016bte_min\\u016btes\".split(\"_\"),h:\"stundas_stund\\u0101m_stunda_stundas\".split(\"_\"),hh:\"stundas_stund\\u0101m_stunda_stundas\".split(\"_\"),d:\"dienas_dien\\u0101m_diena_dienas\".split(\"_\"),dd:\"dienas_dien\\u0101m_diena_dienas\".split(\"_\"),M:\"m\\u0113ne\\u0161a_m\\u0113ne\\u0161iem_m\\u0113nesis_m\\u0113ne\\u0161i\".split(\"_\"),MM:\"m\\u0113ne\\u0161a_m\\u0113ne\\u0161iem_m\\u0113nesis_m\\u0113ne\\u0161i\".split(\"_\"),y:\"gada_gadiem_gads_gadi\".split(\"_\"),yy:\"gada_gadiem_gads_gadi\".split(\"_\")};function n(e,t,n){return n?t%10==1&&t%100!=11?e[2]:e[3]:t%10==1&&t%100!=11?e[0]:e[1]}function i(e,i,s){return e+\" \"+n(t[s],e,i)}function s(e,i,s){return n(t[s],e,i)}e.defineLocale(\"lv\",{months:\"janv\\u0101ris_febru\\u0101ris_marts_apr\\u012blis_maijs_j\\u016bnijs_j\\u016blijs_augusts_septembris_oktobris_novembris_decembris\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_j\\u016bn_j\\u016bl_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"sv\\u0113tdiena_pirmdiena_otrdiena_tre\\u0161diena_ceturtdiena_piektdiena_sestdiena\".split(\"_\"),weekdaysShort:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysMin:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY.\",LL:\"YYYY. [gada] D. MMMM\",LLL:\"YYYY. [gada] D. MMMM, HH:mm\",LLLL:\"YYYY. [gada] D. MMMM, dddd, HH:mm\"},calendar:{sameDay:\"[\\u0160odien pulksten] LT\",nextDay:\"[R\\u012bt pulksten] LT\",nextWeek:\"dddd [pulksten] LT\",lastDay:\"[Vakar pulksten] LT\",lastWeek:\"[Pag\\u0101ju\\u0161\\u0101] dddd [pulksten] LT\",sameElse:\"L\"},relativeTime:{future:\"p\\u0113c %s\",past:\"pirms %s\",s:function(e,t){return t?\"da\\u017eas sekundes\":\"da\\u017e\\u0101m sekund\\u0113m\"},ss:i,m:s,mm:i,h:s,hh:i,d:s,dd:i,M:s,MM:i,y:s,yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},wQk9:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm\",{months:\"\\u2d49\\u2d4f\\u2d4f\\u2d30\\u2d62\\u2d54_\\u2d31\\u2d55\\u2d30\\u2d62\\u2d55_\\u2d4e\\u2d30\\u2d55\\u2d5a_\\u2d49\\u2d31\\u2d54\\u2d49\\u2d54_\\u2d4e\\u2d30\\u2d62\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4f\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4d\\u2d62\\u2d53\\u2d63_\\u2d56\\u2d53\\u2d5b\\u2d5c_\\u2d5b\\u2d53\\u2d5c\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d3d\\u2d5f\\u2d53\\u2d31\\u2d55_\\u2d4f\\u2d53\\u2d61\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d37\\u2d53\\u2d4a\\u2d4f\\u2d31\\u2d49\\u2d54\".split(\"_\"),monthsShort:\"\\u2d49\\u2d4f\\u2d4f\\u2d30\\u2d62\\u2d54_\\u2d31\\u2d55\\u2d30\\u2d62\\u2d55_\\u2d4e\\u2d30\\u2d55\\u2d5a_\\u2d49\\u2d31\\u2d54\\u2d49\\u2d54_\\u2d4e\\u2d30\\u2d62\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4f\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4d\\u2d62\\u2d53\\u2d63_\\u2d56\\u2d53\\u2d5b\\u2d5c_\\u2d5b\\u2d53\\u2d5c\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d3d\\u2d5f\\u2d53\\u2d31\\u2d55_\\u2d4f\\u2d53\\u2d61\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d37\\u2d53\\u2d4a\\u2d4f\\u2d31\\u2d49\\u2d54\".split(\"_\"),weekdays:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),weekdaysShort:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),weekdaysMin:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u2d30\\u2d59\\u2d37\\u2d45 \\u2d34] LT\",nextDay:\"[\\u2d30\\u2d59\\u2d3d\\u2d30 \\u2d34] LT\",nextWeek:\"dddd [\\u2d34] LT\",lastDay:\"[\\u2d30\\u2d5a\\u2d30\\u2d4f\\u2d5c \\u2d34] LT\",lastWeek:\"dddd [\\u2d34] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u2d37\\u2d30\\u2d37\\u2d45 \\u2d59 \\u2d62\\u2d30\\u2d4f %s\",past:\"\\u2d62\\u2d30\\u2d4f %s\",s:\"\\u2d49\\u2d4e\\u2d49\\u2d3d\",ss:\"%d \\u2d49\\u2d4e\\u2d49\\u2d3d\",m:\"\\u2d4e\\u2d49\\u2d4f\\u2d53\\u2d3a\",mm:\"%d \\u2d4e\\u2d49\\u2d4f\\u2d53\\u2d3a\",h:\"\\u2d59\\u2d30\\u2d44\\u2d30\",hh:\"%d \\u2d5c\\u2d30\\u2d59\\u2d59\\u2d30\\u2d44\\u2d49\\u2d4f\",d:\"\\u2d30\\u2d59\\u2d59\",dd:\"%d o\\u2d59\\u2d59\\u2d30\\u2d4f\",M:\"\\u2d30\\u2d62o\\u2d53\\u2d54\",MM:\"%d \\u2d49\\u2d62\\u2d62\\u2d49\\u2d54\\u2d4f\",y:\"\\u2d30\\u2d59\\u2d33\\u2d30\\u2d59\",yy:\"%d \\u2d49\\u2d59\\u2d33\\u2d30\\u2d59\\u2d4f\"},week:{dow:6,doy:12}})}(n(\"wd/R\"))},\"wd/R\":function(e,t,n){(function(e){e.exports=function(){\"use strict\";var t,i;function s(){return t.apply(null,arguments)}function r(e){return e instanceof Array||\"[object Array]\"===Object.prototype.toString.call(e)}function o(e){return null!=e&&\"[object Object]\"===Object.prototype.toString.call(e)}function a(e){return void 0===e}function l(e){return\"number\"==typeof e||\"[object Number]\"===Object.prototype.toString.call(e)}function c(e){return e instanceof Date||\"[object Date]\"===Object.prototype.toString.call(e)}function d(e,t){var n,i=[];for(n=0;n>>0,i=0;i0)for(n=0;n=0?n?\"+\":\"\":\"-\")+Math.pow(10,Math.max(0,t-i.length)).toString().substr(1)+i}var N=/(\\[[^\\[]*\\])|(\\\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,z=/(\\[[^\\[]*\\])|(\\\\)?(LTS|LT|LL?L?L?|l{1,4})/g,V={},W={};function U(e,t,n,i){var s=i;\"string\"==typeof i&&(s=function(){return this[i]()}),e&&(W[e]=s),t&&(W[t[0]]=function(){return F(s.apply(this,arguments),t[1],t[2])}),n&&(W[n]=function(){return this.localeData().ordinal(s.apply(this,arguments),e)})}function $(e,t){return e.isValid()?(t=B(t,e.localeData()),V[t]=V[t]||function(e){var t,n,i,s=e.match(N);for(t=0,n=s.length;t=0&&z.test(e);)e=e.replace(z,i),z.lastIndex=0,n-=1;return e}var q=/\\d/,G=/\\d\\d/,J=/\\d{3}/,K=/\\d{4}/,Z=/[+-]?\\d{6}/,Q=/\\d\\d?/,X=/\\d\\d\\d\\d?/,ee=/\\d\\d\\d\\d\\d\\d?/,te=/\\d{1,3}/,ne=/\\d{1,4}/,ie=/[+-]?\\d{1,6}/,se=/\\d+/,re=/[+-]?\\d+/,oe=/Z|[+-]\\d\\d:?\\d\\d/gi,ae=/Z|[+-]\\d\\d(?::?\\d\\d)?/gi,le=/[0-9]{0,256}['a-z\\u00A0-\\u05FF\\u0700-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFF07\\uFF10-\\uFFEF]{1,256}|[\\u0600-\\u06FF\\/]{1,256}(\\s*?[\\u0600-\\u06FF]{1,256}){1,2}/i,ce={};function de(e,t,n){ce[e]=Y(t)?t:function(e,i){return e&&n?n:t}}function ue(e,t){return u(ce,e)?ce[e](t._strict,t._locale):new RegExp(he(e.replace(\"\\\\\",\"\").replace(/\\\\(\\[)|\\\\(\\])|\\[([^\\]\\[]*)\\]|\\\\(.)/g,(function(e,t,n,i,s){return t||n||i||s}))))}function he(e){return e.replace(/[-\\/\\\\^$*+?.()|[\\]{}]/g,\"\\\\$&\")}var me={};function pe(e,t){var n,i=t;for(\"string\"==typeof e&&(e=[e]),l(t)&&(i=function(e,n){n[t]=k(e)}),n=0;n68?1900:2e3)};var be,ve=we(\"FullYear\",!0);function we(e,t){return function(n){return null!=n?(ke(this,e,n),s.updateOffset(this,t),this):Me(this,e)}}function Me(e,t){return e.isValid()?e._d[\"get\"+(e._isUTC?\"UTC\":\"\")+t]():NaN}function ke(e,t,n){e.isValid()&&!isNaN(n)&&(\"FullYear\"===t&&ye(e.year())&&1===e.month()&&29===e.date()?e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n,e.month(),Se(n,e.month())):e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n))}function Se(e,t){if(isNaN(e)||isNaN(t))return NaN;var n=(t%12+12)%12;return e+=(t-n)/12,1===n?ye(e)?29:28:31-n%7%2}be=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t=0?(a=new Date(e+400,t,n,i,s,r,o),isFinite(a.getFullYear())&&a.setFullYear(e)):a=new Date(e,t,n,i,s,r,o),a}function Ae(e){var t;if(e<100&&e>=0){var n=Array.prototype.slice.call(arguments);n[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)}else t=new Date(Date.UTC.apply(null,arguments));return t}function Re(e,t,n){var i=7+t-n;return-(7+Ae(e,0,i).getUTCDay()-t)%7+i-1}function He(e,t,n,i,s){var r,o,a=1+7*(t-1)+(7+n-i)%7+Re(e,i,s);return a<=0?o=ge(r=e-1)+a:a>ge(e)?(r=e+1,o=a-ge(e)):(r=e,o=a),{year:r,dayOfYear:o}}function je(e,t,n){var i,s,r=Re(e.year(),t,n),o=Math.floor((e.dayOfYear()-r-1)/7)+1;return o<1?i=o+Fe(s=e.year()-1,t,n):o>Fe(e.year(),t,n)?(i=o-Fe(e.year(),t,n),s=e.year()+1):(s=e.year(),i=o),{week:i,year:s}}function Fe(e,t,n){var i=Re(e,t,n),s=Re(e+1,t,n);return(ge(e)-i+s)/7}function Ne(e,t){return e.slice(t,7).concat(e.slice(0,t))}U(\"w\",[\"ww\",2],\"wo\",\"week\"),U(\"W\",[\"WW\",2],\"Wo\",\"isoWeek\"),P(\"week\",\"w\"),P(\"isoWeek\",\"W\"),j(\"week\",5),j(\"isoWeek\",5),de(\"w\",Q),de(\"ww\",Q,G),de(\"W\",Q),de(\"WW\",Q,G),fe([\"w\",\"ww\",\"W\",\"WW\"],(function(e,t,n,i){t[i.substr(0,1)]=k(e)})),U(\"d\",0,\"do\",\"day\"),U(\"dd\",0,0,(function(e){return this.localeData().weekdaysMin(this,e)})),U(\"ddd\",0,0,(function(e){return this.localeData().weekdaysShort(this,e)})),U(\"dddd\",0,0,(function(e){return this.localeData().weekdays(this,e)})),U(\"e\",0,0,\"weekday\"),U(\"E\",0,0,\"isoWeekday\"),P(\"day\",\"d\"),P(\"weekday\",\"e\"),P(\"isoWeekday\",\"E\"),j(\"day\",11),j(\"weekday\",11),j(\"isoWeekday\",11),de(\"d\",Q),de(\"e\",Q),de(\"E\",Q),de(\"dd\",(function(e,t){return t.weekdaysMinRegex(e)})),de(\"ddd\",(function(e,t){return t.weekdaysShortRegex(e)})),de(\"dddd\",(function(e,t){return t.weekdaysRegex(e)})),fe([\"dd\",\"ddd\",\"dddd\"],(function(e,t,n,i){var s=n._locale.weekdaysParse(e,i,n._strict);null!=s?t.d=s:p(n).invalidWeekday=e})),fe([\"d\",\"e\",\"E\"],(function(e,t,n,i){t[i]=k(e)}));var ze=\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),Ve=\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),We=\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\");function Ue(e,t,n){var i,s,r,o=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],i=0;i<7;++i)r=m([2e3,1]).day(i),this._minWeekdaysParse[i]=this.weekdaysMin(r,\"\").toLocaleLowerCase(),this._shortWeekdaysParse[i]=this.weekdaysShort(r,\"\").toLocaleLowerCase(),this._weekdaysParse[i]=this.weekdays(r,\"\").toLocaleLowerCase();return n?\"dddd\"===t?-1!==(s=be.call(this._weekdaysParse,o))?s:null:\"ddd\"===t?-1!==(s=be.call(this._shortWeekdaysParse,o))?s:null:-1!==(s=be.call(this._minWeekdaysParse,o))?s:null:\"dddd\"===t?-1!==(s=be.call(this._weekdaysParse,o))||-1!==(s=be.call(this._shortWeekdaysParse,o))||-1!==(s=be.call(this._minWeekdaysParse,o))?s:null:\"ddd\"===t?-1!==(s=be.call(this._shortWeekdaysParse,o))||-1!==(s=be.call(this._weekdaysParse,o))||-1!==(s=be.call(this._minWeekdaysParse,o))?s:null:-1!==(s=be.call(this._minWeekdaysParse,o))||-1!==(s=be.call(this._weekdaysParse,o))||-1!==(s=be.call(this._shortWeekdaysParse,o))?s:null}var $e=le,Be=le,qe=le;function Ge(){function e(e,t){return t.length-e.length}var t,n,i,s,r,o=[],a=[],l=[],c=[];for(t=0;t<7;t++)n=m([2e3,1]).day(t),i=this.weekdaysMin(n,\"\"),s=this.weekdaysShort(n,\"\"),r=this.weekdays(n,\"\"),o.push(i),a.push(s),l.push(r),c.push(i),c.push(s),c.push(r);for(o.sort(e),a.sort(e),l.sort(e),c.sort(e),t=0;t<7;t++)a[t]=he(a[t]),l[t]=he(l[t]),c[t]=he(c[t]);this._weekdaysRegex=new RegExp(\"^(\"+c.join(\"|\")+\")\",\"i\"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp(\"^(\"+l.join(\"|\")+\")\",\"i\"),this._weekdaysShortStrictRegex=new RegExp(\"^(\"+a.join(\"|\")+\")\",\"i\"),this._weekdaysMinStrictRegex=new RegExp(\"^(\"+o.join(\"|\")+\")\",\"i\")}function Je(){return this.hours()%12||12}function Ke(e,t){U(e,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)}))}function Ze(e,t){return t._meridiemParse}U(\"H\",[\"HH\",2],0,\"hour\"),U(\"h\",[\"hh\",2],0,Je),U(\"k\",[\"kk\",2],0,(function(){return this.hours()||24})),U(\"hmm\",0,0,(function(){return\"\"+Je.apply(this)+F(this.minutes(),2)})),U(\"hmmss\",0,0,(function(){return\"\"+Je.apply(this)+F(this.minutes(),2)+F(this.seconds(),2)})),U(\"Hmm\",0,0,(function(){return\"\"+this.hours()+F(this.minutes(),2)})),U(\"Hmmss\",0,0,(function(){return\"\"+this.hours()+F(this.minutes(),2)+F(this.seconds(),2)})),Ke(\"a\",!0),Ke(\"A\",!1),P(\"hour\",\"h\"),j(\"hour\",13),de(\"a\",Ze),de(\"A\",Ze),de(\"H\",Q),de(\"h\",Q),de(\"k\",Q),de(\"HH\",Q,G),de(\"hh\",Q,G),de(\"kk\",Q,G),de(\"hmm\",X),de(\"hmmss\",ee),de(\"Hmm\",X),de(\"Hmmss\",ee),pe([\"H\",\"HH\"],3),pe([\"k\",\"kk\"],(function(e,t,n){var i=k(e);t[3]=24===i?0:i})),pe([\"a\",\"A\"],(function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e})),pe([\"h\",\"hh\"],(function(e,t,n){t[3]=k(e),p(n).bigHour=!0})),pe(\"hmm\",(function(e,t,n){var i=e.length-2;t[3]=k(e.substr(0,i)),t[4]=k(e.substr(i)),p(n).bigHour=!0})),pe(\"hmmss\",(function(e,t,n){var i=e.length-4,s=e.length-2;t[3]=k(e.substr(0,i)),t[4]=k(e.substr(i,2)),t[5]=k(e.substr(s)),p(n).bigHour=!0})),pe(\"Hmm\",(function(e,t,n){var i=e.length-2;t[3]=k(e.substr(0,i)),t[4]=k(e.substr(i))})),pe(\"Hmmss\",(function(e,t,n){var i=e.length-4,s=e.length-2;t[3]=k(e.substr(0,i)),t[4]=k(e.substr(i,2)),t[5]=k(e.substr(s))}));var Qe,Xe=we(\"Hours\",!0),et={calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},longDateFormat:{LTS:\"h:mm:ss A\",LT:\"h:mm A\",L:\"MM/DD/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"},invalidDate:\"Invalid date\",ordinal:\"%d\",dayOfMonthOrdinalParse:/\\d{1,2}/,relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},months:xe,monthsShort:Ce,week:{dow:0,doy:6},weekdays:ze,weekdaysMin:We,weekdaysShort:Ve,meridiemParse:/[ap]\\.?m?\\.?/i},tt={},nt={};function it(e){return e?e.toLowerCase().replace(\"_\",\"-\"):e}function st(t){var i=null;if(!tt[t]&&void 0!==e&&e&&e.exports)try{i=Qe._abbr,n(\"RnhZ\")(\"./\"+t),rt(i)}catch(s){}return tt[t]}function rt(e,t){var n;return e&&((n=a(t)?at(e):ot(e,t))?Qe=n:\"undefined\"!=typeof console&&console.warn&&console.warn(\"Locale \"+e+\" not found. Did you forget to load it?\")),Qe._abbr}function ot(e,t){if(null!==t){var n,i=et;if(t.abbr=e,null!=tt[e])D(\"defineLocaleOverride\",\"use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info.\"),i=tt[e]._config;else if(null!=t.parentLocale)if(null!=tt[t.parentLocale])i=tt[t.parentLocale]._config;else{if(null==(n=st(t.parentLocale)))return nt[t.parentLocale]||(nt[t.parentLocale]=[]),nt[t.parentLocale].push({name:e,config:t}),null;i=n._config}return tt[e]=new O(E(i,t)),nt[e]&&nt[e].forEach((function(e){ot(e.name,e.config)})),rt(e),tt[e]}return delete tt[e],null}function at(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return Qe;if(!r(e)){if(t=st(e))return t;e=[e]}return function(e){for(var t,n,i,s,r=0;r0;){if(i=st(s.slice(0,t).join(\"-\")))return i;if(n&&n.length>=t&&S(s,n,!0)>=t-1)break;t--}r++}return Qe}(e)}function lt(e){var t,n=e._a;return n&&-2===p(e).overflow&&(t=n[1]<0||n[1]>11?1:n[2]<1||n[2]>Se(n[0],n[1])?2:n[3]<0||n[3]>24||24===n[3]&&(0!==n[4]||0!==n[5]||0!==n[6])?3:n[4]<0||n[4]>59?4:n[5]<0||n[5]>59?5:n[6]<0||n[6]>999?6:-1,p(e)._overflowDayOfYear&&(t<0||t>2)&&(t=2),p(e)._overflowWeeks&&-1===t&&(t=7),p(e)._overflowWeekday&&-1===t&&(t=8),p(e).overflow=t),e}function ct(e,t,n){return null!=e?e:null!=t?t:n}function dt(e){var t,n,i,r,o,a=[];if(!e._d){for(i=function(e){var t=new Date(s.now());return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}(e),e._w&&null==e._a[2]&&null==e._a[1]&&function(e){var t,n,i,s,r,o,a,l;if(null!=(t=e._w).GG||null!=t.W||null!=t.E)r=1,o=4,n=ct(t.GG,e._a[0],je(St(),1,4).year),i=ct(t.W,1),((s=ct(t.E,1))<1||s>7)&&(l=!0);else{r=e._locale._week.dow,o=e._locale._week.doy;var c=je(St(),r,o);n=ct(t.gg,e._a[0],c.year),i=ct(t.w,c.week),null!=t.d?((s=t.d)<0||s>6)&&(l=!0):null!=t.e?(s=t.e+r,(t.e<0||t.e>6)&&(l=!0)):s=r}i<1||i>Fe(n,r,o)?p(e)._overflowWeeks=!0:null!=l?p(e)._overflowWeekday=!0:(a=He(n,i,s,r,o),e._a[0]=a.year,e._dayOfYear=a.dayOfYear)}(e),null!=e._dayOfYear&&(o=ct(e._a[0],i[0]),(e._dayOfYear>ge(o)||0===e._dayOfYear)&&(p(e)._overflowDayOfYear=!0),n=Ae(o,0,e._dayOfYear),e._a[1]=n.getUTCMonth(),e._a[2]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=a[t]=i[t];for(;t<7;t++)e._a[t]=a[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[3]&&0===e._a[4]&&0===e._a[5]&&0===e._a[6]&&(e._nextDay=!0,e._a[3]=0),e._d=(e._useUTC?Ae:Pe).apply(null,a),r=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[3]=24),e._w&&void 0!==e._w.d&&e._w.d!==r&&(p(e).weekdayMismatch=!0)}}var ut=/^\\s*((?:[+-]\\d{6}|\\d{4})-(?:\\d\\d-\\d\\d|W\\d\\d-\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?::\\d\\d(?::\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,ht=/^\\s*((?:[+-]\\d{6}|\\d{4})(?:\\d\\d\\d\\d|W\\d\\d\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?:\\d\\d(?:\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,mt=/Z|[+-]\\d\\d(?::?\\d\\d)?/,pt=[[\"YYYYYY-MM-DD\",/[+-]\\d{6}-\\d\\d-\\d\\d/],[\"YYYY-MM-DD\",/\\d{4}-\\d\\d-\\d\\d/],[\"GGGG-[W]WW-E\",/\\d{4}-W\\d\\d-\\d/],[\"GGGG-[W]WW\",/\\d{4}-W\\d\\d/,!1],[\"YYYY-DDD\",/\\d{4}-\\d{3}/],[\"YYYY-MM\",/\\d{4}-\\d\\d/,!1],[\"YYYYYYMMDD\",/[+-]\\d{10}/],[\"YYYYMMDD\",/\\d{8}/],[\"GGGG[W]WWE\",/\\d{4}W\\d{3}/],[\"GGGG[W]WW\",/\\d{4}W\\d{2}/,!1],[\"YYYYDDD\",/\\d{7}/]],ft=[[\"HH:mm:ss.SSSS\",/\\d\\d:\\d\\d:\\d\\d\\.\\d+/],[\"HH:mm:ss,SSSS\",/\\d\\d:\\d\\d:\\d\\d,\\d+/],[\"HH:mm:ss\",/\\d\\d:\\d\\d:\\d\\d/],[\"HH:mm\",/\\d\\d:\\d\\d/],[\"HHmmss.SSSS\",/\\d\\d\\d\\d\\d\\d\\.\\d+/],[\"HHmmss,SSSS\",/\\d\\d\\d\\d\\d\\d,\\d+/],[\"HHmmss\",/\\d\\d\\d\\d\\d\\d/],[\"HHmm\",/\\d\\d\\d\\d/],[\"HH\",/\\d\\d/]],_t=/^\\/?Date\\((\\-?\\d+)/i;function gt(e){var t,n,i,s,r,o,a=e._i,l=ut.exec(a)||ht.exec(a);if(l){for(p(e).iso=!0,t=0,n=pt.length;t0&&p(e).unusedInput.push(o),a=a.slice(a.indexOf(n)+n.length),c+=n.length),W[r]?(n?p(e).empty=!1:p(e).unusedTokens.push(r),_e(r,n,e)):e._strict&&!n&&p(e).unusedTokens.push(r);p(e).charsLeftOver=l-c,a.length>0&&p(e).unusedInput.push(a),e._a[3]<=12&&!0===p(e).bigHour&&e._a[3]>0&&(p(e).bigHour=void 0),p(e).parsedDateParts=e._a.slice(0),p(e).meridiem=e._meridiem,e._a[3]=function(e,t,n){var i;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((i=e.isPM(n))&&t<12&&(t+=12),i||12!==t||(t=0),t):t}(e._locale,e._a[3],e._meridiem),dt(e),lt(e)}else vt(e);else gt(e)}function Mt(e){var t=e._i,n=e._f;return e._locale=e._locale||at(e._l),null===t||void 0===n&&\"\"===t?_({nullInput:!0}):(\"string\"==typeof t&&(e._i=t=e._locale.preparse(t)),w(t)?new v(lt(t)):(c(t)?e._d=t:r(n)?function(e){var t,n,i,s,r;if(0===e._f.length)return p(e).invalidFormat=!0,void(e._d=new Date(NaN));for(s=0;sthis?this:e:_()}));function Ct(e,t){var n,i;if(1===t.length&&r(t[0])&&(t=t[0]),!t.length)return St();for(n=t[0],i=1;i=0?new Date(e+400,t,n)-126227808e5:new Date(e,t,n).valueOf()}function Xt(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-126227808e5:Date.UTC(e,t,n)}function en(e,t){U(0,[e,e.length],0,t)}function tn(e,t,n,i,s){var r;return null==e?je(this,i,s).year:(t>(r=Fe(e,i,s))&&(t=r),nn.call(this,e,t,n,i,s))}function nn(e,t,n,i,s){var r=He(e,t,n,i,s),o=Ae(r.year,0,r.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}U(0,[\"gg\",2],0,(function(){return this.weekYear()%100})),U(0,[\"GG\",2],0,(function(){return this.isoWeekYear()%100})),en(\"gggg\",\"weekYear\"),en(\"ggggg\",\"weekYear\"),en(\"GGGG\",\"isoWeekYear\"),en(\"GGGGG\",\"isoWeekYear\"),P(\"weekYear\",\"gg\"),P(\"isoWeekYear\",\"GG\"),j(\"weekYear\",1),j(\"isoWeekYear\",1),de(\"G\",re),de(\"g\",re),de(\"GG\",Q,G),de(\"gg\",Q,G),de(\"GGGG\",ne,K),de(\"gggg\",ne,K),de(\"GGGGG\",ie,Z),de(\"ggggg\",ie,Z),fe([\"gggg\",\"ggggg\",\"GGGG\",\"GGGGG\"],(function(e,t,n,i){t[i.substr(0,2)]=k(e)})),fe([\"gg\",\"GG\"],(function(e,t,n,i){t[i]=s.parseTwoDigitYear(e)})),U(\"Q\",0,\"Qo\",\"quarter\"),P(\"quarter\",\"Q\"),j(\"quarter\",7),de(\"Q\",q),pe(\"Q\",(function(e,t){t[1]=3*(k(e)-1)})),U(\"D\",[\"DD\",2],\"Do\",\"date\"),P(\"date\",\"D\"),j(\"date\",9),de(\"D\",Q),de(\"DD\",Q,G),de(\"Do\",(function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient})),pe([\"D\",\"DD\"],2),pe(\"Do\",(function(e,t){t[2]=k(e.match(Q)[0])}));var sn=we(\"Date\",!0);U(\"DDD\",[\"DDDD\",3],\"DDDo\",\"dayOfYear\"),P(\"dayOfYear\",\"DDD\"),j(\"dayOfYear\",4),de(\"DDD\",te),de(\"DDDD\",J),pe([\"DDD\",\"DDDD\"],(function(e,t,n){n._dayOfYear=k(e)})),U(\"m\",[\"mm\",2],0,\"minute\"),P(\"minute\",\"m\"),j(\"minute\",14),de(\"m\",Q),de(\"mm\",Q,G),pe([\"m\",\"mm\"],4);var rn=we(\"Minutes\",!1);U(\"s\",[\"ss\",2],0,\"second\"),P(\"second\",\"s\"),j(\"second\",15),de(\"s\",Q),de(\"ss\",Q,G),pe([\"s\",\"ss\"],5);var on,an=we(\"Seconds\",!1);for(U(\"S\",0,0,(function(){return~~(this.millisecond()/100)})),U(0,[\"SS\",2],0,(function(){return~~(this.millisecond()/10)})),U(0,[\"SSS\",3],0,\"millisecond\"),U(0,[\"SSSS\",4],0,(function(){return 10*this.millisecond()})),U(0,[\"SSSSS\",5],0,(function(){return 100*this.millisecond()})),U(0,[\"SSSSSS\",6],0,(function(){return 1e3*this.millisecond()})),U(0,[\"SSSSSSS\",7],0,(function(){return 1e4*this.millisecond()})),U(0,[\"SSSSSSSS\",8],0,(function(){return 1e5*this.millisecond()})),U(0,[\"SSSSSSSSS\",9],0,(function(){return 1e6*this.millisecond()})),P(\"millisecond\",\"ms\"),j(\"millisecond\",16),de(\"S\",te,q),de(\"SS\",te,G),de(\"SSS\",te,J),on=\"SSSS\";on.length<=9;on+=\"S\")de(on,se);function ln(e,t){t[6]=k(1e3*(\"0.\"+e))}for(on=\"S\";on.length<=9;on+=\"S\")pe(on,ln);var cn=we(\"Milliseconds\",!1);U(\"z\",0,0,\"zoneAbbr\"),U(\"zz\",0,0,\"zoneName\");var dn=v.prototype;function un(e){return e}dn.add=$t,dn.calendar=function(e,t){var n=e||St(),i=At(n,this).startOf(\"day\"),r=s.calendarFormat(this,i)||\"sameElse\",o=t&&(Y(t[r])?t[r].call(this,n):t[r]);return this.format(o||this.localeData().calendar(r,this,St(n)))},dn.clone=function(){return new v(this)},dn.diff=function(e,t,n){var i,s,r;if(!this.isValid())return NaN;if(!(i=At(e,this)).isValid())return NaN;switch(s=6e4*(i.utcOffset()-this.utcOffset()),t=A(t)){case\"year\":r=qt(this,i)/12;break;case\"month\":r=qt(this,i);break;case\"quarter\":r=qt(this,i)/3;break;case\"second\":r=(this-i)/1e3;break;case\"minute\":r=(this-i)/6e4;break;case\"hour\":r=(this-i)/36e5;break;case\"day\":r=(this-i-s)/864e5;break;case\"week\":r=(this-i-s)/6048e5;break;default:r=this-i}return n?r:M(r)},dn.endOf=function(e){var t;if(void 0===(e=A(e))||\"millisecond\"===e||!this.isValid())return this;var n=this._isUTC?Xt:Qt;switch(e){case\"year\":t=n(this.year()+1,0,1)-1;break;case\"quarter\":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case\"month\":t=n(this.year(),this.month()+1,1)-1;break;case\"week\":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case\"isoWeek\":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case\"day\":case\"date\":t=n(this.year(),this.month(),this.date()+1)-1;break;case\"hour\":t=this._d.valueOf(),t+=36e5-Zt(t+(this._isUTC?0:6e4*this.utcOffset()),36e5)-1;break;case\"minute\":t=this._d.valueOf(),t+=6e4-Zt(t,6e4)-1;break;case\"second\":t=this._d.valueOf(),t+=1e3-Zt(t,1e3)-1}return this._d.setTime(t),s.updateOffset(this,!0),this},dn.format=function(e){e||(e=this.isUtc()?s.defaultFormatUtc:s.defaultFormat);var t=$(this,e);return this.localeData().postformat(t)},dn.from=function(e,t){return this.isValid()&&(w(e)&&e.isValid()||St(e).isValid())?Nt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},dn.fromNow=function(e){return this.from(St(),e)},dn.to=function(e,t){return this.isValid()&&(w(e)&&e.isValid()||St(e).isValid())?Nt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},dn.toNow=function(e){return this.to(St(),e)},dn.get=function(e){return Y(this[e=A(e)])?this[e]():this},dn.invalidAt=function(){return p(this).overflow},dn.isAfter=function(e,t){var n=w(e)?e:St(e);return!(!this.isValid()||!n.isValid())&&(\"millisecond\"===(t=A(t)||\"millisecond\")?this.valueOf()>n.valueOf():n.valueOf()9999?$(n,t?\"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ\"):Y(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace(\"Z\",$(n,\"Z\")):$(n,t?\"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYY-MM-DD[T]HH:mm:ss.SSSZ\")},dn.inspect=function(){if(!this.isValid())return\"moment.invalid(/* \"+this._i+\" */)\";var e=\"moment\",t=\"\";this.isLocal()||(e=0===this.utcOffset()?\"moment.utc\":\"moment.parseZone\",t=\"Z\");var n=\"[\"+e+'(\"]',i=0<=this.year()&&this.year()<=9999?\"YYYY\":\"YYYYYY\";return this.format(n+i+\"-MM-DD[T]HH:mm:ss.SSS\"+t+'[\")]')},dn.toJSON=function(){return this.isValid()?this.toISOString():null},dn.toString=function(){return this.clone().locale(\"en\").format(\"ddd MMM DD YYYY HH:mm:ss [GMT]ZZ\")},dn.unix=function(){return Math.floor(this.valueOf()/1e3)},dn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},dn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},dn.year=ve,dn.isLeapYear=function(){return ye(this.year())},dn.weekYear=function(e){return tn.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},dn.isoWeekYear=function(e){return tn.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)},dn.quarter=dn.quarters=function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},dn.month=Ye,dn.daysInMonth=function(){return Se(this.year(),this.month())},dn.week=dn.weeks=function(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),\"d\")},dn.isoWeek=dn.isoWeeks=function(e){var t=je(this,1,4).week;return null==e?t:this.add(7*(e-t),\"d\")},dn.weeksInYear=function(){var e=this.localeData()._week;return Fe(this.year(),e.dow,e.doy)},dn.isoWeeksInYear=function(){return Fe(this.year(),1,4)},dn.date=sn,dn.day=dn.days=function(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=function(e,t){return\"string\"!=typeof e?e:isNaN(e)?\"number\"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}(e,this.localeData()),this.add(e-t,\"d\")):t},dn.weekday=function(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,\"d\")},dn.isoWeekday=function(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=function(e,t){return\"string\"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7},dn.dayOfYear=function(e){var t=Math.round((this.clone().startOf(\"day\")-this.clone().startOf(\"year\"))/864e5)+1;return null==e?t:this.add(e-t,\"d\")},dn.hour=dn.hours=Xe,dn.minute=dn.minutes=rn,dn.second=dn.seconds=an,dn.millisecond=dn.milliseconds=cn,dn.utcOffset=function(e,t,n){var i,r=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null!=e){if(\"string\"==typeof e){if(null===(e=Pt(ae,e)))return this}else Math.abs(e)<16&&!n&&(e*=60);return!this._isUTC&&t&&(i=Rt(this)),this._offset=e,this._isUTC=!0,null!=i&&this.add(i,\"m\"),r!==e&&(!t||this._changeInProgress?Ut(this,Nt(e-r,\"m\"),1,!1):this._changeInProgress||(this._changeInProgress=!0,s.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?r:Rt(this)},dn.utc=function(e){return this.utcOffset(0,e)},dn.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(Rt(this),\"m\")),this},dn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if(\"string\"==typeof this._i){var e=Pt(oe,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this},dn.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?St(e).utcOffset():0,(this.utcOffset()-e)%60==0)},dn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},dn.isLocal=function(){return!!this.isValid()&&!this._isUTC},dn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},dn.isUtc=Ht,dn.isUTC=Ht,dn.zoneAbbr=function(){return this._isUTC?\"UTC\":\"\"},dn.zoneName=function(){return this._isUTC?\"Coordinated Universal Time\":\"\"},dn.dates=x(\"dates accessor is deprecated. Use date instead.\",sn),dn.months=x(\"months accessor is deprecated. Use month instead\",Ye),dn.years=x(\"years accessor is deprecated. Use year instead\",ve),dn.zone=x(\"moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/\",(function(e,t){return null!=e?(\"string\"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()})),dn.isDSTShifted=x(\"isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information\",(function(){if(!a(this._isDSTShifted))return this._isDSTShifted;var e={};if(y(e,this),(e=Mt(e))._a){var t=e._isUTC?m(e._a):St(e._a);this._isDSTShifted=this.isValid()&&S(e._a,t.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}));var hn=O.prototype;function mn(e,t,n,i){var s=at(),r=m().set(i,t);return s[n](r,e)}function pn(e,t,n){if(l(e)&&(t=e,e=void 0),e=e||\"\",null!=t)return mn(e,t,n,\"month\");var i,s=[];for(i=0;i<12;i++)s[i]=mn(e,i,n,\"month\");return s}function fn(e,t,n,i){\"boolean\"==typeof e?(l(t)&&(n=t,t=void 0),t=t||\"\"):(n=t=e,e=!1,l(t)&&(n=t,t=void 0),t=t||\"\");var s,r=at(),o=e?r._week.dow:0;if(null!=n)return mn(t,(n+o)%7,i,\"day\");var a=[];for(s=0;s<7;s++)a[s]=mn(t,(s+o)%7,i,\"day\");return a}hn.calendar=function(e,t,n){var i=this._calendar[e]||this._calendar.sameElse;return Y(i)?i.call(t,n):i},hn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.replace(/MMMM|MM|DD|dddd/g,(function(e){return e.slice(1)})),this._longDateFormat[e])},hn.invalidDate=function(){return this._invalidDate},hn.ordinal=function(e){return this._ordinal.replace(\"%d\",e)},hn.preparse=un,hn.postformat=un,hn.relativeTime=function(e,t,n,i){var s=this._relativeTime[n];return Y(s)?s(e,t,n,i):s.replace(/%d/i,e)},hn.pastFuture=function(e,t){var n=this._relativeTime[e>0?\"future\":\"past\"];return Y(n)?n(t):n.replace(/%s/i,t)},hn.set=function(e){var t,n;for(n in e)Y(t=e[n])?this[n]=t:this[\"_\"+n]=t;this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+\"|\"+/\\d{1,2}/.source)},hn.months=function(e,t){return e?r(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||Le).test(t)?\"format\":\"standalone\"][e.month()]:r(this._months)?this._months:this._months.standalone},hn.monthsShort=function(e,t){return e?r(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[Le.test(t)?\"format\":\"standalone\"][e.month()]:r(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},hn.monthsParse=function(e,t,n){var i,s,r;if(this._monthsParseExact)return Te.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),i=0;i<12;i++){if(s=m([2e3,i]),n&&!this._longMonthsParse[i]&&(this._longMonthsParse[i]=new RegExp(\"^\"+this.months(s,\"\").replace(\".\",\"\")+\"$\",\"i\"),this._shortMonthsParse[i]=new RegExp(\"^\"+this.monthsShort(s,\"\").replace(\".\",\"\")+\"$\",\"i\")),n||this._monthsParse[i]||(r=\"^\"+this.months(s,\"\")+\"|^\"+this.monthsShort(s,\"\"),this._monthsParse[i]=new RegExp(r.replace(\".\",\"\"),\"i\")),n&&\"MMMM\"===t&&this._longMonthsParse[i].test(e))return i;if(n&&\"MMM\"===t&&this._shortMonthsParse[i].test(e))return i;if(!n&&this._monthsParse[i].test(e))return i}},hn.monthsRegex=function(e){return this._monthsParseExact?(u(this,\"_monthsRegex\")||Ie.call(this),e?this._monthsStrictRegex:this._monthsRegex):(u(this,\"_monthsRegex\")||(this._monthsRegex=Oe),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},hn.monthsShortRegex=function(e){return this._monthsParseExact?(u(this,\"_monthsRegex\")||Ie.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(u(this,\"_monthsShortRegex\")||(this._monthsShortRegex=Ee),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},hn.week=function(e){return je(e,this._week.dow,this._week.doy).week},hn.firstDayOfYear=function(){return this._week.doy},hn.firstDayOfWeek=function(){return this._week.dow},hn.weekdays=function(e,t){var n=r(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?\"format\":\"standalone\"];return!0===e?Ne(n,this._week.dow):e?n[e.day()]:n},hn.weekdaysMin=function(e){return!0===e?Ne(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin},hn.weekdaysShort=function(e){return!0===e?Ne(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort},hn.weekdaysParse=function(e,t,n){var i,s,r;if(this._weekdaysParseExact)return Ue.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),i=0;i<7;i++){if(s=m([2e3,1]).day(i),n&&!this._fullWeekdaysParse[i]&&(this._fullWeekdaysParse[i]=new RegExp(\"^\"+this.weekdays(s,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._shortWeekdaysParse[i]=new RegExp(\"^\"+this.weekdaysShort(s,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._minWeekdaysParse[i]=new RegExp(\"^\"+this.weekdaysMin(s,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\")),this._weekdaysParse[i]||(r=\"^\"+this.weekdays(s,\"\")+\"|^\"+this.weekdaysShort(s,\"\")+\"|^\"+this.weekdaysMin(s,\"\"),this._weekdaysParse[i]=new RegExp(r.replace(\".\",\"\"),\"i\")),n&&\"dddd\"===t&&this._fullWeekdaysParse[i].test(e))return i;if(n&&\"ddd\"===t&&this._shortWeekdaysParse[i].test(e))return i;if(n&&\"dd\"===t&&this._minWeekdaysParse[i].test(e))return i;if(!n&&this._weekdaysParse[i].test(e))return i}},hn.weekdaysRegex=function(e){return this._weekdaysParseExact?(u(this,\"_weekdaysRegex\")||Ge.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(u(this,\"_weekdaysRegex\")||(this._weekdaysRegex=$e),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},hn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(u(this,\"_weekdaysRegex\")||Ge.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(u(this,\"_weekdaysShortRegex\")||(this._weekdaysShortRegex=Be),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},hn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(u(this,\"_weekdaysRegex\")||Ge.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(u(this,\"_weekdaysMinRegex\")||(this._weekdaysMinRegex=qe),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},hn.isPM=function(e){return\"p\"===(e+\"\").toLowerCase().charAt(0)},hn.meridiem=function(e,t,n){return e>11?n?\"pm\":\"PM\":n?\"am\":\"AM\"},rt(\"en\",{dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===k(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}}),s.lang=x(\"moment.lang is deprecated. Use moment.locale instead.\",rt),s.langData=x(\"moment.langData is deprecated. Use moment.localeData instead.\",at);var _n=Math.abs;function gn(e,t,n,i){var s=Nt(t,n);return e._milliseconds+=i*s._milliseconds,e._days+=i*s._days,e._months+=i*s._months,e._bubble()}function yn(e){return e<0?Math.floor(e):Math.ceil(e)}function bn(e){return 4800*e/146097}function vn(e){return 146097*e/4800}function wn(e){return function(){return this.as(e)}}var Mn=wn(\"ms\"),kn=wn(\"s\"),Sn=wn(\"m\"),Ln=wn(\"h\"),xn=wn(\"d\"),Cn=wn(\"w\"),Tn=wn(\"M\"),Dn=wn(\"Q\"),Yn=wn(\"y\");function En(e){return function(){return this.isValid()?this._data[e]:NaN}}var On=En(\"milliseconds\"),In=En(\"seconds\"),Pn=En(\"minutes\"),An=En(\"hours\"),Rn=En(\"days\"),Hn=En(\"months\"),jn=En(\"years\"),Fn=Math.round,Nn={ss:44,s:45,m:45,h:22,d:26,M:11};function zn(e,t,n,i,s){return s.relativeTime(t||1,!!n,e,i)}var Vn=Math.abs;function Wn(e){return(e>0)-(e<0)||+e}function Un(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n=Vn(this._milliseconds)/1e3,i=Vn(this._days),s=Vn(this._months);e=M(n/60),t=M(e/60),n%=60,e%=60;var r=M(s/12),o=s%=12,a=i,l=t,c=e,d=n?n.toFixed(3).replace(/\\.?0+$/,\"\"):\"\",u=this.asSeconds();if(!u)return\"P0D\";var h=u<0?\"-\":\"\",m=Wn(this._months)!==Wn(u)?\"-\":\"\",p=Wn(this._days)!==Wn(u)?\"-\":\"\",f=Wn(this._milliseconds)!==Wn(u)?\"-\":\"\";return h+\"P\"+(r?m+r+\"Y\":\"\")+(o?m+o+\"M\":\"\")+(a?p+a+\"D\":\"\")+(l||c||d?\"T\":\"\")+(l?f+l+\"H\":\"\")+(c?f+c+\"M\":\"\")+(d?f+d+\"S\":\"\")}var $n=Dt.prototype;return $n.isValid=function(){return this._isValid},$n.abs=function(){var e=this._data;return this._milliseconds=_n(this._milliseconds),this._days=_n(this._days),this._months=_n(this._months),e.milliseconds=_n(e.milliseconds),e.seconds=_n(e.seconds),e.minutes=_n(e.minutes),e.hours=_n(e.hours),e.months=_n(e.months),e.years=_n(e.years),this},$n.add=function(e,t){return gn(this,e,t,1)},$n.subtract=function(e,t){return gn(this,e,t,-1)},$n.as=function(e){if(!this.isValid())return NaN;var t,n,i=this._milliseconds;if(\"month\"===(e=A(e))||\"quarter\"===e||\"year\"===e)switch(n=this._months+bn(t=this._days+i/864e5),e){case\"month\":return n;case\"quarter\":return n/3;case\"year\":return n/12}else switch(t=this._days+Math.round(vn(this._months)),e){case\"week\":return t/7+i/6048e5;case\"day\":return t+i/864e5;case\"hour\":return 24*t+i/36e5;case\"minute\":return 1440*t+i/6e4;case\"second\":return 86400*t+i/1e3;case\"millisecond\":return Math.floor(864e5*t)+i;default:throw new Error(\"Unknown unit \"+e)}},$n.asMilliseconds=Mn,$n.asSeconds=kn,$n.asMinutes=Sn,$n.asHours=Ln,$n.asDays=xn,$n.asWeeks=Cn,$n.asMonths=Tn,$n.asQuarters=Dn,$n.asYears=Yn,$n.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*k(this._months/12):NaN},$n._bubble=function(){var e,t,n,i,s,r=this._milliseconds,o=this._days,a=this._months,l=this._data;return r>=0&&o>=0&&a>=0||r<=0&&o<=0&&a<=0||(r+=864e5*yn(vn(a)+o),o=0,a=0),l.milliseconds=r%1e3,e=M(r/1e3),l.seconds=e%60,t=M(e/60),l.minutes=t%60,n=M(t/60),l.hours=n%24,o+=M(n/24),a+=s=M(bn(o)),o-=yn(vn(s)),i=M(a/12),a%=12,l.days=o,l.months=a,l.years=i,this},$n.clone=function(){return Nt(this)},$n.get=function(e){return e=A(e),this.isValid()?this[e+\"s\"]():NaN},$n.milliseconds=On,$n.seconds=In,$n.minutes=Pn,$n.hours=An,$n.days=Rn,$n.weeks=function(){return M(this.days()/7)},$n.months=Hn,$n.years=jn,$n.humanize=function(e){if(!this.isValid())return this.localeData().invalidDate();var t=this.localeData(),n=function(e,t,n){var i=Nt(e).abs(),s=Fn(i.as(\"s\")),r=Fn(i.as(\"m\")),o=Fn(i.as(\"h\")),a=Fn(i.as(\"d\")),l=Fn(i.as(\"M\")),c=Fn(i.as(\"y\")),d=s<=Nn.ss&&[\"s\",s]||s0,d[4]=n,zn.apply(null,d)}(this,!e,t);return e&&(n=t.pastFuture(+this,n)),t.postformat(n)},$n.toISOString=Un,$n.toString=Un,$n.toJSON=Un,$n.locale=Gt,$n.localeData=Kt,$n.toIsoString=x(\"toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)\",Un),$n.lang=Jt,U(\"X\",0,0,\"unix\"),U(\"x\",0,0,\"valueOf\"),de(\"x\",re),de(\"X\",/[+-]?\\d+(\\.\\d{1,3})?/),pe(\"X\",(function(e,t,n){n._d=new Date(1e3*parseFloat(e,10))})),pe(\"x\",(function(e,t,n){n._d=new Date(k(e))})),s.version=\"2.24.0\",t=St,s.fn=dn,s.min=function(){var e=[].slice.call(arguments,0);return Ct(\"isBefore\",e)},s.max=function(){var e=[].slice.call(arguments,0);return Ct(\"isAfter\",e)},s.now=function(){return Date.now?Date.now():+new Date},s.utc=m,s.unix=function(e){return St(1e3*e)},s.months=function(e,t){return pn(e,t,\"months\")},s.isDate=c,s.locale=rt,s.invalid=_,s.duration=Nt,s.isMoment=w,s.weekdays=function(e,t,n){return fn(e,t,n,\"weekdays\")},s.parseZone=function(){return St.apply(null,arguments).parseZone()},s.localeData=at,s.isDuration=Yt,s.monthsShort=function(e,t){return pn(e,t,\"monthsShort\")},s.weekdaysMin=function(e,t,n){return fn(e,t,n,\"weekdaysMin\")},s.defineLocale=ot,s.updateLocale=function(e,t){if(null!=t){var n,i,s=et;null!=(i=st(e))&&(s=i._config),(n=new O(t=E(s,t))).parentLocale=tt[e],tt[e]=n,rt(e)}else null!=tt[e]&&(null!=tt[e].parentLocale?tt[e]=tt[e].parentLocale:null!=tt[e]&&delete tt[e]);return tt[e]},s.locales=function(){return C(tt)},s.weekdaysShort=function(e,t,n){return fn(e,t,n,\"weekdaysShort\")},s.normalizeUnits=A,s.relativeTimeRounding=function(e){return void 0===e?Fn:\"function\"==typeof e&&(Fn=e,!0)},s.relativeTimeThreshold=function(e,t){return void 0!==Nn[e]&&(void 0===t?Nn[e]:(Nn[e]=t,\"s\"===e&&(Nn.ss=t-1),!0))},s.calendarFormat=function(e,t){var n=e.diff(t,\"days\",!0);return n<-6?\"sameElse\":n<-1?\"lastWeek\":n<0?\"lastDay\":n<1?\"sameDay\":n<2?\"nextDay\":n<7?\"nextWeek\":\"sameElse\"},s.prototype=dn,s.HTML5_FMT={DATETIME_LOCAL:\"YYYY-MM-DDTHH:mm\",DATETIME_LOCAL_SECONDS:\"YYYY-MM-DDTHH:mm:ss\",DATETIME_LOCAL_MS:\"YYYY-MM-DDTHH:mm:ss.SSS\",DATE:\"YYYY-MM-DD\",TIME:\"HH:mm\",TIME_SECONDS:\"HH:mm:ss\",TIME_MS:\"HH:mm:ss.SSS\",WEEK:\"GGGG-[W]WW\",MONTH:\"YYYY-MM\"},s}()}).call(this,n(\"YuTi\")(e))},x6pH:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"he\",{months:\"\\u05d9\\u05e0\\u05d5\\u05d0\\u05e8_\\u05e4\\u05d1\\u05e8\\u05d5\\u05d0\\u05e8_\\u05de\\u05e8\\u05e5_\\u05d0\\u05e4\\u05e8\\u05d9\\u05dc_\\u05de\\u05d0\\u05d9_\\u05d9\\u05d5\\u05e0\\u05d9_\\u05d9\\u05d5\\u05dc\\u05d9_\\u05d0\\u05d5\\u05d2\\u05d5\\u05e1\\u05d8_\\u05e1\\u05e4\\u05d8\\u05de\\u05d1\\u05e8_\\u05d0\\u05d5\\u05e7\\u05d8\\u05d5\\u05d1\\u05e8_\\u05e0\\u05d5\\u05d1\\u05de\\u05d1\\u05e8_\\u05d3\\u05e6\\u05de\\u05d1\\u05e8\".split(\"_\"),monthsShort:\"\\u05d9\\u05e0\\u05d5\\u05f3_\\u05e4\\u05d1\\u05e8\\u05f3_\\u05de\\u05e8\\u05e5_\\u05d0\\u05e4\\u05e8\\u05f3_\\u05de\\u05d0\\u05d9_\\u05d9\\u05d5\\u05e0\\u05d9_\\u05d9\\u05d5\\u05dc\\u05d9_\\u05d0\\u05d5\\u05d2\\u05f3_\\u05e1\\u05e4\\u05d8\\u05f3_\\u05d0\\u05d5\\u05e7\\u05f3_\\u05e0\\u05d5\\u05d1\\u05f3_\\u05d3\\u05e6\\u05de\\u05f3\".split(\"_\"),weekdays:\"\\u05e8\\u05d0\\u05e9\\u05d5\\u05df_\\u05e9\\u05e0\\u05d9_\\u05e9\\u05dc\\u05d9\\u05e9\\u05d9_\\u05e8\\u05d1\\u05d9\\u05e2\\u05d9_\\u05d7\\u05de\\u05d9\\u05e9\\u05d9_\\u05e9\\u05d9\\u05e9\\u05d9_\\u05e9\\u05d1\\u05ea\".split(\"_\"),weekdaysShort:\"\\u05d0\\u05f3_\\u05d1\\u05f3_\\u05d2\\u05f3_\\u05d3\\u05f3_\\u05d4\\u05f3_\\u05d5\\u05f3_\\u05e9\\u05f3\".split(\"_\"),weekdaysMin:\"\\u05d0_\\u05d1_\\u05d2_\\u05d3_\\u05d4_\\u05d5_\\u05e9\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [\\u05d1]MMMM YYYY\",LLL:\"D [\\u05d1]MMMM YYYY HH:mm\",LLLL:\"dddd, D [\\u05d1]MMMM YYYY HH:mm\",l:\"D/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u05d4\\u05d9\\u05d5\\u05dd \\u05d1\\u05be]LT\",nextDay:\"[\\u05de\\u05d7\\u05e8 \\u05d1\\u05be]LT\",nextWeek:\"dddd [\\u05d1\\u05e9\\u05e2\\u05d4] LT\",lastDay:\"[\\u05d0\\u05ea\\u05de\\u05d5\\u05dc \\u05d1\\u05be]LT\",lastWeek:\"[\\u05d1\\u05d9\\u05d5\\u05dd] dddd [\\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05df \\u05d1\\u05e9\\u05e2\\u05d4] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u05d1\\u05e2\\u05d5\\u05d3 %s\",past:\"\\u05dc\\u05e4\\u05e0\\u05d9 %s\",s:\"\\u05de\\u05e1\\u05e4\\u05e8 \\u05e9\\u05e0\\u05d9\\u05d5\\u05ea\",ss:\"%d \\u05e9\\u05e0\\u05d9\\u05d5\\u05ea\",m:\"\\u05d3\\u05e7\\u05d4\",mm:\"%d \\u05d3\\u05e7\\u05d5\\u05ea\",h:\"\\u05e9\\u05e2\\u05d4\",hh:function(e){return 2===e?\"\\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd\":e+\" \\u05e9\\u05e2\\u05d5\\u05ea\"},d:\"\\u05d9\\u05d5\\u05dd\",dd:function(e){return 2===e?\"\\u05d9\\u05d5\\u05de\\u05d9\\u05d9\\u05dd\":e+\" \\u05d9\\u05de\\u05d9\\u05dd\"},M:\"\\u05d7\\u05d5\\u05d3\\u05e9\",MM:function(e){return 2===e?\"\\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05d9\\u05dd\":e+\" \\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05dd\"},y:\"\\u05e9\\u05e0\\u05d4\",yy:function(e){return 2===e?\"\\u05e9\\u05e0\\u05ea\\u05d9\\u05d9\\u05dd\":e%10==0&&10!==e?e+\" \\u05e9\\u05e0\\u05d4\":e+\" \\u05e9\\u05e0\\u05d9\\u05dd\"}},meridiemParse:/\\u05d0\\u05d7\\u05d4\"\\u05e6|\\u05dc\\u05e4\\u05e0\\u05d4\"\\u05e6|\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05dc\\u05e4\\u05e0\\u05d5\\u05ea \\u05d1\\u05d5\\u05e7\\u05e8|\\u05d1\\u05d1\\u05d5\\u05e7\\u05e8|\\u05d1\\u05e2\\u05e8\\u05d1/i,isPM:function(e){return/^(\\u05d0\\u05d7\\u05d4\"\\u05e6|\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05d1\\u05e2\\u05e8\\u05d1)$/.test(e)},meridiem:function(e,t,n){return e<5?\"\\u05dc\\u05e4\\u05e0\\u05d5\\u05ea \\u05d1\\u05d5\\u05e7\\u05e8\":e<10?\"\\u05d1\\u05d1\\u05d5\\u05e7\\u05e8\":e<12?n?'\\u05dc\\u05e4\\u05e0\\u05d4\"\\u05e6':\"\\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd\":e<18?n?'\\u05d0\\u05d7\\u05d4\"\\u05e6':\"\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd\":\"\\u05d1\\u05e2\\u05e8\\u05d1\"}})}(n(\"wd/R\"))},yPMs:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sq\",{months:\"Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_N\\xebntor_Dhjetor\".split(\"_\"),monthsShort:\"Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_N\\xebn_Dhj\".split(\"_\"),weekdays:\"E Diel_E H\\xebn\\xeb_E Mart\\xeb_E M\\xebrkur\\xeb_E Enjte_E Premte_E Shtun\\xeb\".split(\"_\"),weekdaysShort:\"Die_H\\xebn_Mar_M\\xebr_Enj_Pre_Sht\".split(\"_\"),weekdaysMin:\"D_H_Ma_M\\xeb_E_P_Sh\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/PD|MD/,isPM:function(e){return\"M\"===e.charAt(0)},meridiem:function(e,t,n){return e<12?\"PD\":\"MD\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Sot n\\xeb] LT\",nextDay:\"[Nes\\xebr n\\xeb] LT\",nextWeek:\"dddd [n\\xeb] LT\",lastDay:\"[Dje n\\xeb] LT\",lastWeek:\"dddd [e kaluar n\\xeb] LT\",sameElse:\"L\"},relativeTime:{future:\"n\\xeb %s\",past:\"%s m\\xeb par\\xeb\",s:\"disa sekonda\",ss:\"%d sekonda\",m:\"nj\\xeb minut\\xeb\",mm:\"%d minuta\",h:\"nj\\xeb or\\xeb\",hh:\"%d or\\xeb\",d:\"nj\\xeb dit\\xeb\",dd:\"%d dit\\xeb\",M:\"nj\\xeb muaj\",MM:\"%d muaj\",y:\"nj\\xeb vit\",yy:\"%d vite\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},z1FC:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={s:[\"viensas secunds\",\"'iensas secunds\"],ss:[e+\" secunds\",e+\" secunds\"],m:[\"'n m\\xedut\",\"'iens m\\xedut\"],mm:[e+\" m\\xeduts\",e+\" m\\xeduts\"],h:[\"'n \\xfeora\",\"'iensa \\xfeora\"],hh:[e+\" \\xfeoras\",e+\" \\xfeoras\"],d:[\"'n ziua\",\"'iensa ziua\"],dd:[e+\" ziuas\",e+\" ziuas\"],M:[\"'n mes\",\"'iens mes\"],MM:[e+\" mesen\",e+\" mesen\"],y:[\"'n ar\",\"'iens ar\"],yy:[e+\" ars\",e+\" ars\"]};return i||t?s[n][0]:s[n][1]}e.defineLocale(\"tzl\",{months:\"Januar_Fevraglh_Mar\\xe7_Avr\\xefu_Mai_G\\xfcn_Julia_Guscht_Setemvar_Listop\\xe4ts_Noemvar_Zecemvar\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Avr_Mai_G\\xfcn_Jul_Gus_Set_Lis_Noe_Zec\".split(\"_\"),weekdays:\"S\\xfaladi_L\\xfane\\xe7i_Maitzi_M\\xe1rcuri_Xh\\xfaadi_Vi\\xe9ner\\xe7i_S\\xe1turi\".split(\"_\"),weekdaysShort:\"S\\xfal_L\\xfan_Mai_M\\xe1r_Xh\\xfa_Vi\\xe9_S\\xe1t\".split(\"_\"),weekdaysMin:\"S\\xfa_L\\xfa_Ma_M\\xe1_Xh_Vi_S\\xe1\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM [dallas] YYYY\",LLL:\"D. MMMM [dallas] YYYY HH.mm\",LLLL:\"dddd, [li] D. MMMM [dallas] YYYY HH.mm\"},meridiemParse:/d\\'o|d\\'a/i,isPM:function(e){return\"d'o\"===e.toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"d'o\":\"D'O\":n?\"d'a\":\"D'A\"},calendar:{sameDay:\"[oxhi \\xe0] LT\",nextDay:\"[dem\\xe0 \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[ieiri \\xe0] LT\",lastWeek:\"[s\\xfcr el] dddd [lasteu \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"osprei %s\",past:\"ja%s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},z3Vd:function(e,t,n){!function(e){\"use strict\";var t=\"pagh_wa\\u2019_cha\\u2019_wej_loS_vagh_jav_Soch_chorgh_Hut\".split(\"_\");function n(e,n,i,s){var r=function(e){var n=Math.floor(e%1e3/100),i=Math.floor(e%100/10),s=e%10,r=\"\";return n>0&&(r+=t[n]+\"vatlh\"),i>0&&(r+=(\"\"!==r?\" \":\"\")+t[i]+\"maH\"),s>0&&(r+=(\"\"!==r?\" \":\"\")+t[s]),\"\"===r?\"pagh\":r}(e);switch(i){case\"ss\":return r+\" lup\";case\"mm\":return r+\" tup\";case\"hh\":return r+\" rep\";case\"dd\":return r+\" jaj\";case\"MM\":return r+\" jar\";case\"yy\":return r+\" DIS\"}}e.defineLocale(\"tlh\",{months:\"tera\\u2019 jar wa\\u2019_tera\\u2019 jar cha\\u2019_tera\\u2019 jar wej_tera\\u2019 jar loS_tera\\u2019 jar vagh_tera\\u2019 jar jav_tera\\u2019 jar Soch_tera\\u2019 jar chorgh_tera\\u2019 jar Hut_tera\\u2019 jar wa\\u2019maH_tera\\u2019 jar wa\\u2019maH wa\\u2019_tera\\u2019 jar wa\\u2019maH cha\\u2019\".split(\"_\"),monthsShort:\"jar wa\\u2019_jar cha\\u2019_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa\\u2019maH_jar wa\\u2019maH wa\\u2019_jar wa\\u2019maH cha\\u2019\".split(\"_\"),monthsParseExact:!0,weekdays:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysShort:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysMin:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[DaHjaj] LT\",nextDay:\"[wa\\u2019leS] LT\",nextWeek:\"LLL\",lastDay:\"[wa\\u2019Hu\\u2019] LT\",lastWeek:\"LLL\",sameElse:\"L\"},relativeTime:{future:function(e){var t=e;return-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"leS\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"waQ\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"nem\":t+\" pIq\"},past:function(e){var t=e;return-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"Hu\\u2019\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"wen\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"ben\":t+\" ret\"},s:\"puS lup\",ss:n,m:\"wa\\u2019 tup\",mm:n,h:\"wa\\u2019 rep\",hh:n,d:\"wa\\u2019 jaj\",dd:n,M:\"wa\\u2019 jar\",MM:n,y:\"wa\\u2019 DIS\",yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},zUnb:function(e,t,n){\"use strict\";function i(e){return\"function\"==typeof e}n.r(t);let s=!1;const r={Promise:void 0,set useDeprecatedSynchronousErrorHandling(e){if(e){const e=new Error;console.warn(\"DEPRECATED! RxJS was set to use deprecated synchronous error handling behavior by code at: \\n\"+e.stack)}else s&&console.log(\"RxJS: Back to a better error behavior. Thank you. <3\");s=e},get useDeprecatedSynchronousErrorHandling(){return s}};function o(e){setTimeout(()=>{throw e},0)}const a={closed:!0,next(e){},error(e){if(r.useDeprecatedSynchronousErrorHandling)throw e;o(e)},complete(){}},l=(()=>Array.isArray||(e=>e&&\"number\"==typeof e.length))();function c(e){return null!==e&&\"object\"==typeof e}const d=(()=>{function e(e){return Error.call(this),this.message=e?`${e.length} errors occurred during unsubscription:\\n${e.map((e,t)=>`${t+1}) ${e.toString()}`).join(\"\\n \")}`:\"\",this.name=\"UnsubscriptionError\",this.errors=e,this}return e.prototype=Object.create(Error.prototype),e})();let u=(()=>{class e{constructor(e){this.closed=!1,this._parentOrParents=null,this._subscriptions=null,e&&(this._unsubscribe=e)}unsubscribe(){let t;if(this.closed)return;let{_parentOrParents:n,_unsubscribe:s,_subscriptions:r}=this;if(this.closed=!0,this._parentOrParents=null,this._subscriptions=null,n instanceof e)n.remove(this);else if(null!==n)for(let e=0;ee.concat(t instanceof d?t.errors:t),[])}const m=(()=>\"function\"==typeof Symbol?Symbol(\"rxSubscriber\"):\"@@rxSubscriber_\"+Math.random())();class p extends u{constructor(e,t,n){switch(super(),this.syncErrorValue=null,this.syncErrorThrown=!1,this.syncErrorThrowable=!1,this.isStopped=!1,arguments.length){case 0:this.destination=a;break;case 1:if(!e){this.destination=a;break}if(\"object\"==typeof e){e instanceof p?(this.syncErrorThrowable=e.syncErrorThrowable,this.destination=e,e.add(this)):(this.syncErrorThrowable=!0,this.destination=new f(this,e));break}default:this.syncErrorThrowable=!0,this.destination=new f(this,e,t,n)}}[m](){return this}static create(e,t,n){const i=new p(e,t,n);return i.syncErrorThrowable=!1,i}next(e){this.isStopped||this._next(e)}error(e){this.isStopped||(this.isStopped=!0,this._error(e))}complete(){this.isStopped||(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe())}_next(e){this.destination.next(e)}_error(e){this.destination.error(e),this.unsubscribe()}_complete(){this.destination.complete(),this.unsubscribe()}_unsubscribeAndRecycle(){const{_parentOrParents:e}=this;return this._parentOrParents=null,this.unsubscribe(),this.closed=!1,this.isStopped=!1,this._parentOrParents=e,this}}class f extends p{constructor(e,t,n,s){let r;super(),this._parentSubscriber=e;let o=this;i(t)?r=t:t&&(r=t.next,n=t.error,s=t.complete,t!==a&&(o=Object.create(t),i(o.unsubscribe)&&this.add(o.unsubscribe.bind(o)),o.unsubscribe=this.unsubscribe.bind(this))),this._context=o,this._next=r,this._error=n,this._complete=s}next(e){if(!this.isStopped&&this._next){const{_parentSubscriber:t}=this;r.useDeprecatedSynchronousErrorHandling&&t.syncErrorThrowable?this.__tryOrSetError(t,this._next,e)&&this.unsubscribe():this.__tryOrUnsub(this._next,e)}}error(e){if(!this.isStopped){const{_parentSubscriber:t}=this,{useDeprecatedSynchronousErrorHandling:n}=r;if(this._error)n&&t.syncErrorThrowable?(this.__tryOrSetError(t,this._error,e),this.unsubscribe()):(this.__tryOrUnsub(this._error,e),this.unsubscribe());else if(t.syncErrorThrowable)n?(t.syncErrorValue=e,t.syncErrorThrown=!0):o(e),this.unsubscribe();else{if(this.unsubscribe(),n)throw e;o(e)}}}complete(){if(!this.isStopped){const{_parentSubscriber:e}=this;if(this._complete){const t=()=>this._complete.call(this._context);r.useDeprecatedSynchronousErrorHandling&&e.syncErrorThrowable?(this.__tryOrSetError(e,t),this.unsubscribe()):(this.__tryOrUnsub(t),this.unsubscribe())}else this.unsubscribe()}}__tryOrUnsub(e,t){try{e.call(this._context,t)}catch(n){if(this.unsubscribe(),r.useDeprecatedSynchronousErrorHandling)throw n;o(n)}}__tryOrSetError(e,t,n){if(!r.useDeprecatedSynchronousErrorHandling)throw new Error(\"bad call\");try{t.call(this._context,n)}catch(i){return r.useDeprecatedSynchronousErrorHandling?(e.syncErrorValue=i,e.syncErrorThrown=!0,!0):(o(i),!0)}return!1}_unsubscribe(){const{_parentSubscriber:e}=this;this._context=null,this._parentSubscriber=null,e.unsubscribe()}}const _=(()=>\"function\"==typeof Symbol&&Symbol.observable||\"@@observable\")();function g(){}function y(...e){return b(e)}function b(e){return e?1===e.length?e[0]:function(t){return e.reduce((e,t)=>t(e),t)}:g}let v=(()=>{class e{constructor(e){this._isScalar=!1,e&&(this._subscribe=e)}lift(t){const n=new e;return n.source=this,n.operator=t,n}subscribe(e,t,n){const{operator:i}=this,s=function(e,t,n){if(e){if(e instanceof p)return e;if(e[m])return e[m]()}return e||t||n?new p(e,t,n):new p(a)}(e,t,n);if(s.add(i?i.call(s,this.source):this.source||r.useDeprecatedSynchronousErrorHandling&&!s.syncErrorThrowable?this._subscribe(s):this._trySubscribe(s)),r.useDeprecatedSynchronousErrorHandling&&s.syncErrorThrowable&&(s.syncErrorThrowable=!1,s.syncErrorThrown))throw s.syncErrorValue;return s}_trySubscribe(e){try{return this._subscribe(e)}catch(t){r.useDeprecatedSynchronousErrorHandling&&(e.syncErrorThrown=!0,e.syncErrorValue=t),function(e){for(;e;){const{closed:t,destination:n,isStopped:i}=e;if(t||i)return!1;e=n&&n instanceof p?n:null}return!0}(e)?e.error(t):console.warn(t)}}forEach(e,t){return new(t=w(t))((t,n)=>{let i;i=this.subscribe(t=>{try{e(t)}catch(s){n(s),i&&i.unsubscribe()}},n,t)})}_subscribe(e){const{source:t}=this;return t&&t.subscribe(e)}[_](){return this}pipe(...e){return 0===e.length?this:b(e)(this)}toPromise(e){return new(e=w(e))((e,t)=>{let n;this.subscribe(e=>n=e,e=>t(e),()=>e(n))})}}return e.create=t=>new e(t),e})();function w(e){if(e||(e=r.Promise||Promise),!e)throw new Error(\"no Promise impl found\");return e}const M=(()=>{function e(){return Error.call(this),this.message=\"object unsubscribed\",this.name=\"ObjectUnsubscribedError\",this}return e.prototype=Object.create(Error.prototype),e})();class k extends u{constructor(e,t){super(),this.subject=e,this.subscriber=t,this.closed=!1}unsubscribe(){if(this.closed)return;this.closed=!0;const e=this.subject,t=e.observers;if(this.subject=null,!t||0===t.length||e.isStopped||e.closed)return;const n=t.indexOf(this.subscriber);-1!==n&&t.splice(n,1)}}class S extends p{constructor(e){super(e),this.destination=e}}let L=(()=>{class e extends v{constructor(){super(),this.observers=[],this.closed=!1,this.isStopped=!1,this.hasError=!1,this.thrownError=null}[m](){return new S(this)}lift(e){const t=new x(this,this);return t.operator=e,t}next(e){if(this.closed)throw new M;if(!this.isStopped){const{observers:t}=this,n=t.length,i=t.slice();for(let s=0;snew x(e,t),e})();class x extends L{constructor(e,t){super(),this.destination=e,this.source=t}next(e){const{destination:t}=this;t&&t.next&&t.next(e)}error(e){const{destination:t}=this;t&&t.error&&this.destination.error(e)}complete(){const{destination:e}=this;e&&e.complete&&this.destination.complete()}_subscribe(e){const{source:t}=this;return t?this.source.subscribe(e):u.EMPTY}}function C(e){return e&&\"function\"==typeof e.schedule}class T extends p{constructor(e,t,n){super(),this.parent=e,this.outerValue=t,this.outerIndex=n,this.index=0}_next(e){this.parent.notifyNext(this.outerValue,e,this.outerIndex,this.index++,this)}_error(e){this.parent.notifyError(e,this),this.unsubscribe()}_complete(){this.parent.notifyComplete(this),this.unsubscribe()}}const D=e=>t=>{for(let n=0,i=e.length;ne&&\"number\"==typeof e.length&&\"function\"!=typeof e;function I(e){return!!e&&\"function\"!=typeof e.subscribe&&\"function\"==typeof e.then}const P=e=>{if(e&&\"function\"==typeof e[_])return i=e,e=>{const t=i[_]();if(\"function\"!=typeof t.subscribe)throw new TypeError(\"Provided object does not correctly implement Symbol.observable\");return t.subscribe(e)};if(O(e))return D(e);if(I(e))return n=e,e=>(n.then(t=>{e.closed||(e.next(t),e.complete())},t=>e.error(t)).then(null,o),e);if(e&&\"function\"==typeof e[E])return t=e,e=>{const n=t[E]();for(;;){const t=n.next();if(t.done){e.complete();break}if(e.next(t.value),e.closed)break}return\"function\"==typeof n.return&&e.add(()=>{n.return&&n.return()}),e};{const t=c(e)?\"an invalid object\":`'${e}'`;throw new TypeError(`You provided ${t} where a stream was expected.`+\" You can provide an Observable, Promise, Array, or Iterable.\")}var t,n,i};function A(e,t,n,i,s=new T(e,n,i)){if(!s.closed)return t instanceof v?t.subscribe(s):P(t)(s)}class R extends p{notifyNext(e,t,n,i,s){this.destination.next(t)}notifyError(e,t){this.destination.error(e)}notifyComplete(e){this.destination.complete()}}function H(e,t){return function(n){if(\"function\"!=typeof e)throw new TypeError(\"argument is not a function. Are you looking for `mapTo()`?\");return n.lift(new j(e,t))}}class j{constructor(e,t){this.project=e,this.thisArg=t}call(e,t){return t.subscribe(new F(e,this.project,this.thisArg))}}class F extends p{constructor(e,t,n){super(e),this.project=t,this.count=0,this.thisArg=n||this}_next(e){let t;try{t=this.project.call(this.thisArg,e,this.count++)}catch(n){return void this.destination.error(n)}this.destination.next(t)}}function N(e,t){return new v(n=>{const i=new u;let s=0;return i.add(t.schedule((function(){s!==e.length?(n.next(e[s++]),n.closed||i.add(this.schedule())):n.complete()}))),i})}function z(e,t){return t?function(e,t){if(null!=e){if(function(e){return e&&\"function\"==typeof e[_]}(e))return function(e,t){return new v(n=>{const i=new u;return i.add(t.schedule(()=>{const s=e[_]();i.add(s.subscribe({next(e){i.add(t.schedule(()=>n.next(e)))},error(e){i.add(t.schedule(()=>n.error(e)))},complete(){i.add(t.schedule(()=>n.complete()))}}))})),i})}(e,t);if(I(e))return function(e,t){return new v(n=>{const i=new u;return i.add(t.schedule(()=>e.then(e=>{i.add(t.schedule(()=>{n.next(e),i.add(t.schedule(()=>n.complete()))}))},e=>{i.add(t.schedule(()=>n.error(e)))}))),i})}(e,t);if(O(e))return N(e,t);if(function(e){return e&&\"function\"==typeof e[E]}(e)||\"string\"==typeof e)return function(e,t){if(!e)throw new Error(\"Iterable cannot be null\");return new v(n=>{const i=new u;let s;return i.add(()=>{s&&\"function\"==typeof s.return&&s.return()}),i.add(t.schedule(()=>{s=e[E](),i.add(t.schedule((function(){if(n.closed)return;let e,t;try{const n=s.next();e=n.value,t=n.done}catch(i){return void n.error(i)}t?n.complete():(n.next(e),this.schedule())})))})),i})}(e,t)}throw new TypeError((null!==e&&typeof e||e)+\" is not observable\")}(e,t):e instanceof v?e:new v(P(e))}function V(e,t,n=Number.POSITIVE_INFINITY){return\"function\"==typeof t?i=>i.pipe(V((n,i)=>z(e(n,i)).pipe(H((e,s)=>t(n,e,i,s))),n)):(\"number\"==typeof t&&(n=t),t=>t.lift(new W(e,n)))}class W{constructor(e,t=Number.POSITIVE_INFINITY){this.project=e,this.concurrent=t}call(e,t){return t.subscribe(new U(e,this.project,this.concurrent))}}class U extends R{constructor(e,t,n=Number.POSITIVE_INFINITY){super(e),this.project=t,this.concurrent=n,this.hasCompleted=!1,this.buffer=[],this.active=0,this.index=0}_next(e){this.active0?this._next(t.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()}}function $(e){return e}function B(e=Number.POSITIVE_INFINITY){return V($,e)}function q(e,t){return t?N(e,t):new v(D(e))}function G(...e){let t=Number.POSITIVE_INFINITY,n=null,i=e[e.length-1];return C(i)?(n=e.pop(),e.length>1&&\"number\"==typeof e[e.length-1]&&(t=e.pop())):\"number\"==typeof i&&(t=e.pop()),null===n&&1===e.length&&e[0]instanceof v?e[0]:B(t)(q(e,n))}function J(){return function(e){return e.lift(new K(e))}}class K{constructor(e){this.connectable=e}call(e,t){const{connectable:n}=this;n._refCount++;const i=new Z(e,n),s=t.subscribe(i);return i.closed||(i.connection=n.connect()),s}}class Z extends p{constructor(e,t){super(e),this.connectable=t}_unsubscribe(){const{connectable:e}=this;if(!e)return void(this.connection=null);this.connectable=null;const t=e._refCount;if(t<=0)return void(this.connection=null);if(e._refCount=t-1,t>1)return void(this.connection=null);const{connection:n}=this,i=e._connection;this.connection=null,!i||n&&i!==n||i.unsubscribe()}}class Q extends v{constructor(e,t){super(),this.source=e,this.subjectFactory=t,this._refCount=0,this._isComplete=!1}_subscribe(e){return this.getSubject().subscribe(e)}getSubject(){const e=this._subject;return e&&!e.isStopped||(this._subject=this.subjectFactory()),this._subject}connect(){let e=this._connection;return e||(this._isComplete=!1,e=this._connection=new u,e.add(this.source.subscribe(new ee(this.getSubject(),this))),e.closed&&(this._connection=null,e=u.EMPTY)),e}refCount(){return J()(this)}}const X=(()=>{const e=Q.prototype;return{operator:{value:null},_refCount:{value:0,writable:!0},_subject:{value:null,writable:!0},_connection:{value:null,writable:!0},_subscribe:{value:e._subscribe},_isComplete:{value:e._isComplete,writable:!0},getSubject:{value:e.getSubject},connect:{value:e.connect},refCount:{value:e.refCount}}})();class ee extends S{constructor(e,t){super(e),this.connectable=t}_error(e){this._unsubscribe(),super._error(e)}_complete(){this.connectable._isComplete=!0,this._unsubscribe(),super._complete()}_unsubscribe(){const e=this.connectable;if(e){this.connectable=null;const t=e._connection;e._refCount=0,e._subject=null,e._connection=null,t&&t.unsubscribe()}}}function te(e,t){return function(n){let i;if(i=\"function\"==typeof e?e:function(){return e},\"function\"==typeof t)return n.lift(new ne(i,t));const s=Object.create(n,X);return s.source=n,s.subjectFactory=i,s}}class ne{constructor(e,t){this.subjectFactory=e,this.selector=t}call(e,t){const{selector:n}=this,i=this.subjectFactory(),s=n(i).subscribe(e);return s.add(t.subscribe(i)),s}}function ie(){return new L}function se(){return e=>J()(te(ie)(e))}function re(e){return{toString:e}.toString()}function oe(e,t,n){return re(()=>{const i=function(e){return function(...t){if(e){const n=e(...t);for(const e in n)this[e]=n[e]}}}(t);function s(...e){if(this instanceof s)return i.apply(this,e),this;const t=new s(...e);return n.annotation=t,n;function n(e,n,i){const s=e.hasOwnProperty(\"__parameters__\")?e.__parameters__:Object.defineProperty(e,\"__parameters__\",{value:[]}).__parameters__;for(;s.length<=i;)s.push(null);return(s[i]=s[i]||[]).push(t),e}}return n&&(s.prototype=Object.create(n.prototype)),s.prototype.ngMetadataName=e,s.annotationCls=s,s})}const ae=oe(\"Inject\",e=>({token:e})),le=oe(\"Optional\"),ce=oe(\"Self\"),de=oe(\"SkipSelf\");var ue=function(e){return e[e.Default=0]=\"Default\",e[e.Host=1]=\"Host\",e[e.Self=2]=\"Self\",e[e.SkipSelf=4]=\"SkipSelf\",e[e.Optional=8]=\"Optional\",e}({});function he(e){for(let t in e)if(e[t]===he)return t;throw Error(\"Could not find renamed property on target object.\")}function me(e,t){for(const n in t)t.hasOwnProperty(n)&&!e.hasOwnProperty(n)&&(e[n]=t[n])}function pe(e){return{token:e.token,providedIn:e.providedIn||null,factory:e.factory,value:void 0}}function fe(e){return{factory:e.factory,providers:e.providers||[],imports:e.imports||[]}}function _e(e){return ge(e,e[be])||ge(e,e[Me])}function ge(e,t){return t&&t.token===e?t:null}function ye(e){return e&&(e.hasOwnProperty(ve)||e.hasOwnProperty(ke))?e[ve]:null}const be=he({\"\\u0275prov\":he}),ve=he({\"\\u0275inj\":he}),we=he({\"\\u0275provFallback\":he}),Me=he({ngInjectableDef:he}),ke=he({ngInjectorDef:he});function Se(e){if(\"string\"==typeof e)return e;if(Array.isArray(e))return\"[\"+e.map(Se).join(\", \")+\"]\";if(null==e)return\"\"+e;if(e.overriddenName)return`${e.overriddenName}`;if(e.name)return`${e.name}`;const t=e.toString();if(null==t)return\"\"+t;const n=t.indexOf(\"\\n\");return-1===n?t:t.substring(0,n)}function Le(e,t){return null==e||\"\"===e?null===t?\"\":t:null==t||\"\"===t?e:e+\" \"+t}const xe=he({__forward_ref__:he});function Ce(e){return e.__forward_ref__=Ce,e.toString=function(){return Se(this())},e}function Te(e){return De(e)?e():e}function De(e){return\"function\"==typeof e&&e.hasOwnProperty(xe)&&e.__forward_ref__===Ce}const Ye=\"undefined\"!=typeof globalThis&&globalThis,Ee=\"undefined\"!=typeof window&&window,Oe=\"undefined\"!=typeof self&&\"undefined\"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&self,Ie=\"undefined\"!=typeof global&&global,Pe=Ye||Ie||Ee||Oe,Ae=he({\"\\u0275cmp\":he}),Re=he({\"\\u0275dir\":he}),He=he({\"\\u0275pipe\":he}),je=he({\"\\u0275mod\":he}),Fe=he({\"\\u0275loc\":he}),Ne=he({\"\\u0275fac\":he}),ze=he({__NG_ELEMENT_ID__:he});class Ve{constructor(e,t){this._desc=e,this.ngMetadataName=\"InjectionToken\",this.\\u0275prov=void 0,\"number\"==typeof t?this.__NG_ELEMENT_ID__=t:void 0!==t&&(this.\\u0275prov=pe({token:this,providedIn:t.providedIn||\"root\",factory:t.factory}))}toString(){return`InjectionToken ${this._desc}`}}const We=new Ve(\"INJECTOR\",-1),Ue={},$e=/\\n/gm,Be=he({provide:String,useValue:he});let qe,Ge=void 0;function Je(e){const t=Ge;return Ge=e,t}function Ke(e){const t=qe;return qe=e,t}function Ze(e,t=ue.Default){if(void 0===Ge)throw new Error(\"inject() must be called from an injection context\");return null===Ge?et(e,void 0,t):Ge.get(e,t&ue.Optional?null:void 0,t)}function Qe(e,t=ue.Default){return(qe||Ze)(Te(e),t)}const Xe=Qe;function et(e,t,n){const i=_e(e);if(i&&\"root\"==i.providedIn)return void 0===i.value?i.value=i.factory():i.value;if(n&ue.Optional)return null;if(void 0!==t)return t;throw new Error(`Injector: NOT_FOUND [${Se(e)}]`)}function tt(e){const t=[];for(let n=0;nArray.isArray(e)?ot(e,t):t(e))}function at(e,t,n){t>=e.length?e.push(n):e.splice(t,0,n)}function lt(e,t){return t>=e.length-1?e.pop():e.splice(t,1)[0]}function ct(e,t){const n=[];for(let i=0;i=0?e[1|i]=n:(i=~i,function(e,t,n,i){let s=e.length;if(s==t)e.push(n,i);else if(1===s)e.push(i,e[0]),e[0]=n;else{for(s--,e.push(e[s-1],e[s]);s>t;)e[s]=e[s-2],s--;e[t]=n,e[t+1]=i}}(e,i,t,n)),i}function ut(e,t){const n=ht(e,t);if(n>=0)return e[1|n]}function ht(e,t){return function(e,t,n){let i=0,s=e.length>>1;for(;s!==i;){const n=i+(s-i>>1),r=e[n<<1];if(t===r)return n<<1;r>t?s=n:i=n+1}return~(s<<1)}(e,t)}const mt=function(){var e={OnPush:0,Default:1};return e[e.OnPush]=\"OnPush\",e[e.Default]=\"Default\",e}(),pt=function(){var e={Emulated:0,Native:1,None:2,ShadowDom:3};return e[e.Emulated]=\"Emulated\",e[e.Native]=\"Native\",e[e.None]=\"None\",e[e.ShadowDom]=\"ShadowDom\",e}(),ft={},_t=[];let gt=0;function yt(e){return re(()=>{const t=e.type,n=t.prototype,i={},s={type:t,providersResolver:null,decls:e.decls,vars:e.vars,factory:null,template:e.template||null,consts:e.consts||null,ngContentSelectors:e.ngContentSelectors,hostBindings:e.hostBindings||null,hostVars:e.hostVars||0,hostAttrs:e.hostAttrs||null,contentQueries:e.contentQueries||null,declaredInputs:i,inputs:null,outputs:null,exportAs:e.exportAs||null,onChanges:null,onInit:n.ngOnInit||null,doCheck:n.ngDoCheck||null,afterContentInit:n.ngAfterContentInit||null,afterContentChecked:n.ngAfterContentChecked||null,afterViewInit:n.ngAfterViewInit||null,afterViewChecked:n.ngAfterViewChecked||null,onDestroy:n.ngOnDestroy||null,onPush:e.changeDetection===mt.OnPush,directiveDefs:null,pipeDefs:null,selectors:e.selectors||_t,viewQuery:e.viewQuery||null,features:e.features||null,data:e.data||{},encapsulation:e.encapsulation||pt.Emulated,id:\"c\",styles:e.styles||_t,_:null,setInput:null,schemas:e.schemas||null,tView:null},r=e.directives,o=e.features,a=e.pipes;return s.id+=gt++,s.inputs=kt(e.inputs,i),s.outputs=kt(e.outputs),o&&o.forEach(e=>e(s)),s.directiveDefs=r?()=>(\"function\"==typeof r?r():r).map(bt):null,s.pipeDefs=a?()=>(\"function\"==typeof a?a():a).map(vt):null,s})}function bt(e){return Lt(e)||function(e){return e[Re]||null}(e)}function vt(e){return function(e){return e[He]||null}(e)}const wt={};function Mt(e){const t={type:e.type,bootstrap:e.bootstrap||_t,declarations:e.declarations||_t,imports:e.imports||_t,exports:e.exports||_t,transitiveCompileScopes:null,schemas:e.schemas||null,id:e.id||null};return null!=e.id&&re(()=>{wt[e.id]=e.type}),t}function kt(e,t){if(null==e)return ft;const n={};for(const i in e)if(e.hasOwnProperty(i)){let s=e[i],r=s;Array.isArray(s)&&(r=s[1],s=s[0]),n[s]=i,t&&(t[s]=r)}return n}const St=yt;function Lt(e){return e[Ae]||null}function xt(e,t){return e.hasOwnProperty(Ne)?e[Ne]:null}function Ct(e,t){const n=e[je]||null;if(!n&&!0===t)throw new Error(`Type ${Se(e)} does not have '\\u0275mod' property.`);return n}function Tt(e){return Array.isArray(e)&&\"object\"==typeof e[1]}function Dt(e){return Array.isArray(e)&&!0===e[1]}function Yt(e){return 0!=(8&e.flags)}function Et(e){return 2==(2&e.flags)}function Ot(e){return 1==(1&e.flags)}function It(e){return null!==e.template}function Pt(e){return 0!=(512&e[2])}let At=void 0;function Rt(){return void 0!==At?At:\"undefined\"!=typeof document?document:void 0}function Ht(e){return!!e.listen}const jt={createRenderer:(e,t)=>Rt()};function Ft(e){for(;Array.isArray(e);)e=e[0];return e}function Nt(e,t){return Ft(t[e+19])}function zt(e,t){return Ft(t[e.index])}function Vt(e,t){return e.data[t+19]}function Wt(e,t){return e[t+19]}function Ut(e,t){const n=t[e];return Tt(n)?n:n[0]}function $t(e){const t=function(e){return e.__ngContext__||null}(e);return t?Array.isArray(t)?t:t.lView:null}function Bt(e){return 4==(4&e[2])}function qt(e){return 128==(128&e[2])}function Gt(e,t){return null===e||null==t?null:e[t]}function Jt(e){e[18]=0}const Kt={lFrame:_n(null),bindingsEnabled:!0,checkNoChangesMode:!1};function Zt(){return Kt.bindingsEnabled}function Qt(){return Kt.lFrame.lView}function Xt(){return Kt.lFrame.tView}function en(e){Kt.lFrame.contextLView=e}function tn(){return Kt.lFrame.previousOrParentTNode}function nn(e,t){Kt.lFrame.previousOrParentTNode=e,Kt.lFrame.isParent=t}function sn(){return Kt.lFrame.isParent}function rn(){Kt.lFrame.isParent=!1}function on(){return Kt.checkNoChangesMode}function an(e){Kt.checkNoChangesMode=e}function ln(){return Kt.lFrame.bindingIndex++}function cn(e){const t=Kt.lFrame,n=t.bindingIndex;return t.bindingIndex=t.bindingIndex+e,n}function dn(e,t){const n=Kt.lFrame;n.bindingIndex=n.bindingRootIndex=e,n.currentDirectiveIndex=t}function un(){return Kt.lFrame.currentQueryIndex}function hn(e){Kt.lFrame.currentQueryIndex=e}function mn(e,t){const n=fn();Kt.lFrame=n,n.previousOrParentTNode=t,n.lView=e}function pn(e,t){const n=fn(),i=e[1];Kt.lFrame=n,n.previousOrParentTNode=t,n.lView=e,n.tView=i,n.contextLView=e,n.bindingIndex=i.bindingStartIndex}function fn(){const e=Kt.lFrame,t=null===e?null:e.child;return null===t?_n(e):t}function _n(e){const t={previousOrParentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:0,contextLView:null,elementDepthCount:0,currentNamespace:null,currentSanitizer:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:e,child:null};return null!==e&&(e.child=t),t}function gn(){const e=Kt.lFrame;return Kt.lFrame=e.parent,e.previousOrParentTNode=null,e.lView=null,e}const yn=gn;function bn(){const e=gn();e.isParent=!0,e.tView=null,e.selectedIndex=0,e.contextLView=null,e.elementDepthCount=0,e.currentDirectiveIndex=-1,e.currentNamespace=null,e.currentSanitizer=null,e.bindingRootIndex=-1,e.bindingIndex=-1,e.currentQueryIndex=0}function vn(){return Kt.lFrame.selectedIndex}function wn(e){Kt.lFrame.selectedIndex=e}function Mn(){const e=Kt.lFrame;return Vt(e.tView,e.selectedIndex)}function kn(){Kt.lFrame.currentNamespace=\"http://www.w3.org/2000/svg\"}function Sn(){Kt.lFrame.currentNamespace=null}function Ln(e,t){for(let n=t.directiveStart,i=t.directiveEnd;n=i)break}else t[o]<0&&(e[18]+=65536),(r>10>16&&(3&e[2])===t&&(e[2]+=1024,r.call(o)):r.call(o)}class En{constructor(e,t,n){this.factory=e,this.resolving=!1,this.canSeeViewProviders=t,this.injectImpl=n}}function On(e,t,n){const i=Ht(e);let s=0;for(;st){o=r-1;break}}}for(;r>16}function Nn(e,t){let n=Fn(e),i=t;for(;n>0;)i=i[15],n--;return i}function zn(e){return\"string\"==typeof e?e:null==e?\"\":\"\"+e}function Vn(e){return\"function\"==typeof e?e.name||e.toString():\"object\"==typeof e&&null!=e&&\"function\"==typeof e.type?e.type.name||e.type.toString():zn(e)}const Wn=(()=>(\"undefined\"!=typeof requestAnimationFrame&&requestAnimationFrame||setTimeout).bind(Pe))();function Un(e){return{name:\"window\",target:e.ownerDocument.defaultView}}function $n(e){return e instanceof Function?e():e}let Bn=!0;function qn(e){const t=Bn;return Bn=e,t}let Gn=0;function Jn(e,t){const n=Zn(e,t);if(-1!==n)return n;const i=t[1];i.firstCreatePass&&(e.injectorIndex=t.length,Kn(i.data,e),Kn(t,null),Kn(i.blueprint,null));const s=Qn(e,t),r=e.injectorIndex;if(Hn(s)){const e=jn(s),n=Nn(s,t),i=n[1].data;for(let s=0;s<8;s++)t[r+s]=n[e+s]|i[e+s]}return t[r+8]=s,r}function Kn(e,t){e.push(0,0,0,0,0,0,0,0,t)}function Zn(e,t){return-1===e.injectorIndex||e.parent&&e.parent.injectorIndex===e.injectorIndex||null==t[e.injectorIndex+8]?-1:e.injectorIndex}function Qn(e,t){if(e.parent&&-1!==e.parent.injectorIndex)return e.parent.injectorIndex;let n=t[6],i=1;for(;n&&-1===n.injectorIndex;)n=(t=t[15])?t[6]:null,i++;return n?n.injectorIndex|i<<16:-1}function Xn(e,t,n){!function(e,t,n){let i=\"string\"!=typeof n?n[ze]:n.charCodeAt(0)||0;null==i&&(i=n[ze]=Gn++);const s=255&i,r=1<0?255&t:t}(n);if(\"function\"==typeof s){mn(t,e);try{const e=s();if(null!=e||i&ue.Optional)return e;throw new Error(`No provider for ${Vn(n)}!`)}finally{yn()}}else if(\"number\"==typeof s){if(-1===s)return new ai(e,t);let r=null,o=Zn(e,t),a=-1,l=i&ue.Host?t[16][6]:null;for((-1===o||i&ue.SkipSelf)&&(a=-1===o?Qn(e,t):t[o+8],oi(i,!1)?(r=t[1],o=jn(a),t=Nn(a,t)):o=-1);-1!==o;){a=t[o+8];const e=t[1];if(ri(s,o,e.data)){const e=ni(o,t,n,r,i,l);if(e!==ti)return e}oi(i,t[1].data[o+8]===l)&&ri(s,o,t)?(r=e,o=jn(a),t=Nn(a,t)):o=-1}}}if(i&ue.Optional&&void 0===s&&(s=null),0==(i&(ue.Self|ue.Host))){const e=t[9],r=Ke(void 0);try{return e?e.get(n,s,i&ue.Optional):et(n,s,i&ue.Optional)}finally{Ke(r)}}if(i&ue.Optional)return s;throw new Error(`NodeInjector: NOT_FOUND [${Vn(n)}]`)}const ti={};function ni(e,t,n,i,s,r){const o=t[1],a=o.data[e+8],l=ii(a,o,n,null==i?Et(a)&&Bn:i!=o&&3===a.type,s&ue.Host&&r===a);return null!==l?si(t,o,l,a):ti}function ii(e,t,n,i,s){const r=e.providerIndexes,o=t.data,a=65535&r,l=e.directiveStart,c=r>>16,d=s?a+c:e.directiveEnd;for(let u=i?a:a+c;u=l&&e.type===n)return u}if(s){const e=o[l];if(e&&It(e)&&e.type===n)return l}return null}function si(e,t,n,i){let s=e[n];const r=t.data;if(s instanceof En){const o=s;if(o.resolving)throw new Error(`Circular dep for ${Vn(r[n])}`);const a=qn(o.canSeeViewProviders);let l;o.resolving=!0,o.injectImpl&&(l=Ke(o.injectImpl)),mn(e,i);try{s=e[n]=o.factory(void 0,r,e,i),t.firstCreatePass&&n>=i.directiveStart&&function(e,t,n){const{onChanges:i,onInit:s,doCheck:r}=t;i&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,i),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,i)),s&&(n.preOrderHooks||(n.preOrderHooks=[])).push(-e,s),r&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,r),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,r))}(n,r[n],t)}finally{o.injectImpl&&Ke(l),qn(a),o.resolving=!1,yn()}}return s}function ri(e,t,n){const i=64&e,s=32&e;let r;return r=128&e?i?s?n[t+7]:n[t+6]:s?n[t+5]:n[t+4]:i?s?n[t+3]:n[t+2]:s?n[t+1]:n[t],!!(r&1<{const t=Object.getPrototypeOf(e.prototype).constructor,n=t[Ne]||function e(t){const n=t;if(De(t))return()=>{const t=e(Te(n));return t?t():null};let i=xt(n);if(null===i){const e=ye(n);i=e&&e.factory}return i||null}(t);return null!==n?n:e=>new e})}function ci(e){return e.ngDebugContext}function di(e){return e.ngOriginalError}function ui(e,...t){e.error(...t)}class hi{constructor(){this._console=console}handleError(e){const t=this._findOriginalError(e),n=this._findContext(e),i=function(e){return e.ngErrorLogger||ui}(e);i(this._console,\"ERROR\",e),t&&i(this._console,\"ORIGINAL ERROR\",t),n&&i(this._console,\"ERROR CONTEXT\",n)}_findContext(e){return e?ci(e)?ci(e):this._findContext(di(e)):null}_findOriginalError(e){let t=di(e);for(;t&&di(t);)t=di(t);return t}}class mi{constructor(e){this.changingThisBreaksApplicationSecurity=e}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity}`+\" (see http://g.co/ng/security#xss)\"}}class pi extends mi{getTypeName(){return\"HTML\"}}class fi extends mi{getTypeName(){return\"Style\"}}class _i extends mi{getTypeName(){return\"Script\"}}class gi extends mi{getTypeName(){return\"URL\"}}class yi extends mi{getTypeName(){return\"ResourceURL\"}}function bi(e){return e instanceof mi?e.changingThisBreaksApplicationSecurity:e}function vi(e,t){const n=wi(e);if(null!=n&&n!==t){if(\"ResourceURL\"===n&&\"URL\"===t)return!0;throw new Error(`Required a safe ${t}, got a ${n} (see http://g.co/ng/security#xss)`)}return n===t}function wi(e){return e instanceof mi&&e.getTypeName()||null}let Mi=!0,ki=!1;function Si(){return ki=!0,Mi}class Li{constructor(e){this.defaultDoc=e,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument(\"sanitization-inert\");let t=this.inertDocument.body;if(null==t){const e=this.inertDocument.createElement(\"html\");this.inertDocument.appendChild(e),t=this.inertDocument.createElement(\"body\"),e.appendChild(t)}t.innerHTML='',!t.querySelector||t.querySelector(\"svg\")?(t.innerHTML='

',this.getInertBodyElement=t.querySelector&&t.querySelector(\"svg img\")&&function(){try{return!!window.DOMParser}catch(e){return!1}}()?this.getInertBodyElement_DOMParser:this.getInertBodyElement_InertDocument):this.getInertBodyElement=this.getInertBodyElement_XHR}getInertBodyElement_XHR(e){e=\"\"+e+\"\";try{e=encodeURI(e)}catch(i){return null}const t=new XMLHttpRequest;t.responseType=\"document\",t.open(\"GET\",\"data:text/html;charset=utf-8,\"+e,!1),t.send(void 0);const n=t.response.body;return n.removeChild(n.firstChild),n}getInertBodyElement_DOMParser(e){e=\"\"+e+\"\";try{const t=(new window.DOMParser).parseFromString(e,\"text/html\").body;return t.removeChild(t.firstChild),t}catch(t){return null}}getInertBodyElement_InertDocument(e){const t=this.inertDocument.createElement(\"template\");if(\"content\"in t)return t.innerHTML=e,t;const n=this.inertDocument.createElement(\"body\");return n.innerHTML=e,this.defaultDoc.documentMode&&this.stripCustomNsAttrs(n),n}stripCustomNsAttrs(e){const t=e.attributes;for(let i=t.length-1;0Ti(e.trim())).join(\", \")}function Yi(e){const t={};for(const n of e.split(\",\"))t[n]=!0;return t}function Ei(...e){const t={};for(const n of e)for(const e in n)n.hasOwnProperty(e)&&(t[e]=!0);return t}const Oi=Yi(\"area,br,col,hr,img,wbr\"),Ii=Yi(\"colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr\"),Pi=Yi(\"rp,rt\"),Ai=Ei(Pi,Ii),Ri=Ei(Oi,Ei(Ii,Yi(\"address,article,aside,blockquote,caption,center,del,details,dialog,dir,div,dl,figure,figcaption,footer,h1,h2,h3,h4,h5,h6,header,hgroup,hr,ins,main,map,menu,nav,ol,pre,section,summary,table,ul\")),Ei(Pi,Yi(\"a,abbr,acronym,audio,b,bdi,bdo,big,br,cite,code,del,dfn,em,font,i,img,ins,kbd,label,map,mark,picture,q,ruby,rp,rt,s,samp,small,source,span,strike,strong,sub,sup,time,track,tt,u,var,video\")),Ai),Hi=Yi(\"background,cite,href,itemtype,longdesc,poster,src,xlink:href\"),ji=Yi(\"srcset\"),Fi=Ei(Hi,ji,Yi(\"abbr,accesskey,align,alt,autoplay,axis,bgcolor,border,cellpadding,cellspacing,class,clear,color,cols,colspan,compact,controls,coords,datetime,default,dir,download,face,headers,height,hidden,hreflang,hspace,ismap,itemscope,itemprop,kind,label,lang,language,loop,media,muted,nohref,nowrap,open,preload,rel,rev,role,rows,rowspan,rules,scope,scrolling,shape,size,sizes,span,srclang,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width\"),Yi(\"aria-activedescendant,aria-atomic,aria-autocomplete,aria-busy,aria-checked,aria-colcount,aria-colindex,aria-colspan,aria-controls,aria-current,aria-describedby,aria-details,aria-disabled,aria-dropeffect,aria-errormessage,aria-expanded,aria-flowto,aria-grabbed,aria-haspopup,aria-hidden,aria-invalid,aria-keyshortcuts,aria-label,aria-labelledby,aria-level,aria-live,aria-modal,aria-multiline,aria-multiselectable,aria-orientation,aria-owns,aria-placeholder,aria-posinset,aria-pressed,aria-readonly,aria-relevant,aria-required,aria-roledescription,aria-rowcount,aria-rowindex,aria-rowspan,aria-selected,aria-setsize,aria-sort,aria-valuemax,aria-valuemin,aria-valuenow,aria-valuetext\")),Ni=Yi(\"script,style,template\");class zi{constructor(){this.sanitizedSomething=!1,this.buf=[]}sanitizeChildren(e){let t=e.firstChild,n=!0;for(;t;)if(t.nodeType===Node.ELEMENT_NODE?n=this.startElement(t):t.nodeType===Node.TEXT_NODE?this.chars(t.nodeValue):this.sanitizedSomething=!0,n&&t.firstChild)t=t.firstChild;else for(;t;){t.nodeType===Node.ELEMENT_NODE&&this.endElement(t);let e=this.checkClobberedElement(t,t.nextSibling);if(e){t=e;break}t=this.checkClobberedElement(t,t.parentNode)}return this.buf.join(\"\")}startElement(e){const t=e.nodeName.toLowerCase();if(!Ri.hasOwnProperty(t))return this.sanitizedSomething=!0,!Ni.hasOwnProperty(t);this.buf.push(\"<\"),this.buf.push(t);const n=e.attributes;for(let i=0;i\"),!0}endElement(e){const t=e.nodeName.toLowerCase();Ri.hasOwnProperty(t)&&!Oi.hasOwnProperty(t)&&(this.buf.push(\"\"))}chars(e){this.buf.push(Ui(e))}checkClobberedElement(e,t){if(t&&(e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error(`Failed to sanitize html because the element is clobbered: ${e.outerHTML}`);return t}}const Vi=/[\\uD800-\\uDBFF][\\uDC00-\\uDFFF]/g,Wi=/([^\\#-~ |!])/g;function Ui(e){return e.replace(/&/g,\"&\").replace(Vi,(function(e){return\"&#\"+(1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320)+65536)+\";\"})).replace(Wi,(function(e){return\"&#\"+e.charCodeAt(0)+\";\"})).replace(//g,\">\")}let $i;function Bi(e,t){let n=null;try{$i=$i||new Li(e);let i=t?String(t):\"\";n=$i.getInertBodyElement(i);let s=5,r=i;do{if(0===s)throw new Error(\"Failed to sanitize html because the input is unstable\");s--,i=r,r=n.innerHTML,n=$i.getInertBodyElement(i)}while(i!==r);const o=new zi,a=o.sanitizeChildren(qi(n)||n);return Si()&&o.sanitizedSomething&&console.warn(\"WARNING: sanitizing HTML stripped some content, see http://g.co/ng/security#xss\"),a}finally{if(n){const e=qi(n)||n;for(;e.firstChild;)e.removeChild(e.firstChild)}}}function qi(e){return\"content\"in e&&function(e){return e.nodeType===Node.ELEMENT_NODE&&\"TEMPLATE\"===e.nodeName}(e)?e.content:null}const Gi=function(){var e={NONE:0,HTML:1,STYLE:2,SCRIPT:3,URL:4,RESOURCE_URL:5};return e[e.NONE]=\"NONE\",e[e.HTML]=\"HTML\",e[e.STYLE]=\"STYLE\",e[e.SCRIPT]=\"SCRIPT\",e[e.URL]=\"URL\",e[e.RESOURCE_URL]=\"RESOURCE_URL\",e}(),Ji=new RegExp(\"^([-,.\\\"'%_!# a-zA-Z0-9]+|(?:(?:matrix|translate|scale|rotate|skew|perspective)(?:X|Y|Z|3d)?|(?:rgb|hsl)a?|(?:repeating-)?(?:linear|radial)-gradient|(?:attr|calc|var))\\\\([-0-9.%, #a-zA-Z]+\\\\))$\",\"g\"),Ki=/^url\\(([^)]+)\\)$/;function Zi(e){if(!(e=String(e).trim()))return\"\";const t=e.match(Ki);return t&&Ti(t[1])===t[1]||e.match(Ji)&&function(e){let t=!0,n=!0;for(let i=0;ir?\"\":s[d+1].toLowerCase();const t=8&i?e:null;if(t&&-1!==os(t,c,0)||2&i&&c!==e){if(ds(i))return!1;o=!0}}}}else{if(!o&&!ds(i)&&!ds(l))return!1;if(o&&ds(l))continue;o=!1,i=l|1&i}}return ds(i)||o}function ds(e){return 0==(1&e)}function us(e,t,n,i){if(null===t)return-1;let s=0;if(i||!n){let n=!1;for(;s-1)for(n++;n0?'=\"'+t+'\"':\"\")+\"]\"}else 8&i?s+=\".\"+o:4&i&&(s+=\" \"+o);else\"\"===s||ds(o)||(t+=ps(r,s),s=\"\"),i=o,r=r||!ds(i);n++}return\"\"!==s&&(t+=ps(r,s)),t}const _s={};function gs(e){const t=e[3];return Dt(t)?t[3]:t}function ys(e){bs(Xt(),Qt(),vn()+e,on())}function bs(e,t,n,i){if(!i)if(3==(3&t[2])){const i=e.preOrderCheckHooks;null!==i&&xn(t,i,n)}else{const i=e.preOrderHooks;null!==i&&Cn(t,i,0,n)}wn(n)}const vs={marker:\"element\"},ws={marker:\"comment\"};function Ms(e,t){return e<<17|t<<2}function ks(e){return e>>17&32767}function Ss(e){return 2|e}function Ls(e){return(131068&e)>>2}function xs(e,t){return-131069&e|t<<2}function Cs(e){return 1|e}function Ts(e,t){const n=e.contentQueries;if(null!==n)for(let i=0;i>1==-1){for(let e=9;e19&&bs(e,t,0,on()),n(i,s)}finally{wn(r)}}function Rs(e,t,n){if(Yt(t)){const i=t.directiveEnd;for(let s=t.directiveStart;sPromise.resolve(null))();function mr(e){return e[7]||(e[7]=[])}function pr(e){return e.cleanup||(e.cleanup=[])}function fr(e,t){return function(e){for(;Array.isArray(e);){if(\"object\"==typeof e[1])return e;e=e[0]}return null}(t[e.index])[11]}function _r(e,t){const n=e[9],i=n?n.get(hi,null):null;i&&i.handleError(t)}function gr(e,t,n,i,s){for(let r=0;r0&&(e[n-1][4]=i[4]);const r=lt(e,9+t);kr(i[1],i,!1,null);const o=r[5];null!==o&&o.detachView(r[1]),i[3]=null,i[4]=null,i[2]&=-129}return i}function xr(e,t){if(!(256&t[2])){const n=t[11];Ht(n)&&n.destroyNode&&Fr(e,t,n,3,null,null),function(e){let t=e[13];if(!t)return Tr(e[1],e);for(;t;){let n=null;if(Tt(t))n=t[13];else{const e=t[9];e&&(n=e)}if(!n){for(;t&&!t[4]&&t!==e;)Tt(t)&&Tr(t[1],t),t=Cr(t,e);null===t&&(t=e),Tt(t)&&Tr(t[1],t),n=t&&t[4]}t=n}}(t)}}function Cr(e,t){let n;return Tt(e)&&(n=e[6])&&2===n.type?br(n,e):e[3]===t?null:e[3]}function Tr(e,t){if(!(256&t[2])){t[2]&=-129,t[2]|=256,function(e,t){let n;if(null!=e&&null!=(n=e.destroyHooks))for(let i=0;i=0?e[a]():e[-a].unsubscribe(),i+=2}else n[i].call(e[n[i+1]]);t[7]=null}}(e,t);const n=t[6];n&&3===n.type&&Ht(t[11])&&t[11].destroy();const i=t[17];if(null!==i&&Dt(t[3])){i!==t[3]&&Sr(i,t);const n=t[5];null!==n&&n.detachView(e)}}}function Dr(e,t,n){let i=t.parent;for(;null!=i&&(4===i.type||5===i.type);)i=(t=i).parent;if(null==i){const e=n[6];return 2===e.type?vr(e,n):n[0]}if(t&&5===t.type&&4&t.flags)return zt(t,n).parentNode;if(2&i.flags){const t=e.data,n=t[t[i.index].directiveStart].encapsulation;if(n!==pt.ShadowDom&&n!==pt.Native)return null}return zt(i,n)}function Yr(e,t,n,i){Ht(e)?e.insertBefore(t,n,i):t.insertBefore(n,i,!0)}function Er(e,t,n){Ht(e)?e.appendChild(t,n):t.appendChild(n)}function Or(e,t,n,i){null!==i?Yr(e,t,n,i):Er(e,t,n)}function Ir(e,t){return Ht(e)?e.parentNode(t):t.parentNode}function Pr(e,t){if(2===e.type){const n=br(e,t);return null===n?null:Rr(n.indexOf(t,9)-9,n)}return 4===e.type||5===e.type?zt(e,t):null}function Ar(e,t,n,i){const s=Dr(e,i,t);if(null!=s){const e=t[11],r=Pr(i.parent||t[6],t);if(Array.isArray(n))for(let t=0;t-1&&this._viewContainerRef.detach(e),this._viewContainerRef=null}xr(this._lView[1],this._lView)}onDestroy(e){var t,n,i;t=this._lView[1],i=e,mr(n=this._lView).push(i),t.firstCreatePass&&pr(t).push(n[7].length-1,null)}markForCheck(){lr(this._cdRefInjectingView||this._lView)}detach(){this._lView[2]&=-129}reattach(){this._lView[2]|=128}detectChanges(){cr(this._lView[1],this._lView,this.context)}checkNoChanges(){!function(e,t,n){an(!0);try{cr(e,t,n)}finally{an(!1)}}(this._lView[1],this._lView,this.context)}attachToViewContainerRef(e){if(this._appRef)throw new Error(\"This view is already attached directly to the ApplicationRef!\");this._viewContainerRef=e}detachFromAppRef(){var e;this._appRef=null,Fr(this._lView[1],e=this._lView,e[11],2,null,null)}attachToAppRef(e){if(this._viewContainerRef)throw new Error(\"This view is already attached to a ViewContainer!\");this._appRef=e}}class $r extends Ur{constructor(e){super(e),this._view=e}detectChanges(){dr(this._view)}checkNoChanges(){!function(e){an(!0);try{dr(e)}finally{an(!1)}}(this._view)}get context(){return null}}let Br,qr,Gr;function Jr(e,t,n){return Br||(Br=class extends e{}),new Br(zt(t,n))}function Kr(e,t,n,i){return qr||(qr=class extends e{constructor(e,t,n){super(),this._declarationView=e,this._declarationTContainer=t,this.elementRef=n}createEmbeddedView(e){const t=this._declarationTContainer.tViews,n=Ys(this._declarationView,t,e,16,null,t.node);n[17]=this._declarationView[this._declarationTContainer.index];const i=this._declarationView[5];null!==i&&(n[5]=i.createEmbeddedView(t)),Os(t,n,e);const s=new Ur(n);return s._tViewNode=n[6],s}}),0===n.type?new qr(i,n,Jr(t,n,i)):null}function Zr(e,t,n,i){let s;Gr||(Gr=class extends e{constructor(e,t,n){super(),this._lContainer=e,this._hostTNode=t,this._hostView=n}get element(){return Jr(t,this._hostTNode,this._hostView)}get injector(){return new ai(this._hostTNode,this._hostView)}get parentInjector(){const e=Qn(this._hostTNode,this._hostView),t=Nn(e,this._hostView),n=function(e,t,n){if(n.parent&&-1!==n.parent.injectorIndex){const e=n.parent.injectorIndex;let t=n.parent;for(;null!=t.parent&&e==t.parent.injectorIndex;)t=t.parent;return t}let i=Fn(e),s=t,r=t[6];for(;i>1;)s=s[15],r=s[6],i--;return r}(e,this._hostView,this._hostTNode);return Hn(e)&&null!=n?new ai(n,t):new ai(null,this._hostView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(e){return null!==this._lContainer[8]&&this._lContainer[8][e]||null}get length(){return this._lContainer.length-9}createEmbeddedView(e,t,n){const i=e.createEmbeddedView(t||{});return this.insert(i,n),i}createComponent(e,t,n,i,s){const r=n||this.parentInjector;if(!s&&null==e.ngModule&&r){const e=r.get(it,null);e&&(s=e)}const o=e.create(r,i,void 0,s);return this.insert(o.hostView,t),o}insert(e,t){const n=e._lView,i=n[1];if(e.destroyed)throw new Error(\"Cannot insert a destroyed View in a ViewContainer!\");if(this.allocateContainerIfNeeded(),Dt(n[3])){const t=this.indexOf(e);if(-1!==t)this.detach(t);else{const t=n[3],i=new Gr(t,t[6],t[3]);i.detach(i.indexOf(e))}}const s=this._adjustIndex(t);return function(e,t,n,i){const s=9+i,r=n.length;i>0&&(n[s-1][4]=t),i{class e{}return e.__NG_ELEMENT_ID__=()=>Xr(),e})();const Xr=function(e=!1){return function(e,t,n){if(!n&&Et(e)){const n=Ut(e.index,t);return new Ur(n,n)}return 3===e.type||0===e.type||4===e.type||5===e.type?new Ur(t[16],t):null}(tn(),Qt(),e)},eo=new Ve(\"Set Injector scope.\"),to={},no={},io=[];let so=void 0;function ro(){return void 0===so&&(so=new nt),so}function oo(e,t=null,n=null,i){return new ao(e,n,t||ro(),i)}class ao{constructor(e,t,n,i=null){this.parent=n,this.records=new Map,this.injectorDefTypes=new Set,this.onDestroy=new Set,this._destroyed=!1;const s=[];t&&ot(t,n=>this.processProvider(n,e,t)),ot([e],e=>this.processInjectorType(e,[],s)),this.records.set(We,uo(void 0,this));const r=this.records.get(eo);this.scope=null!=r?r.value:null,this.source=i||(\"object\"==typeof e?null:Se(e))}get destroyed(){return this._destroyed}destroy(){this.assertNotDestroyed(),this._destroyed=!0;try{this.onDestroy.forEach(e=>e.ngOnDestroy())}finally{this.records.clear(),this.onDestroy.clear(),this.injectorDefTypes.clear()}}get(e,t=Ue,n=ue.Default){this.assertNotDestroyed();const i=Je(this);try{if(!(n&ue.SkipSelf)){let t=this.records.get(e);if(void 0===t){const n=(\"function\"==typeof(s=e)||\"object\"==typeof s&&s instanceof Ve)&&_e(e);t=n&&this.injectableDefInScope(n)?uo(lo(e),to):null,this.records.set(e,t)}if(null!=t)return this.hydrate(e,t)}return(n&ue.Self?ro():this.parent).get(e,t=n&ue.Optional&&t===Ue?null:t)}catch(r){if(\"NullInjectorError\"===r.name){if((r.ngTempTokenPath=r.ngTempTokenPath||[]).unshift(Se(e)),i)throw r;return function(e,t,n,i){const s=e.ngTempTokenPath;throw t.__source&&s.unshift(t.__source),e.message=function(e,t,n,i=null){e=e&&\"\\n\"===e.charAt(0)&&\"\\u0275\"==e.charAt(1)?e.substr(2):e;let s=Se(t);if(Array.isArray(t))s=t.map(Se).join(\" -> \");else if(\"object\"==typeof t){let e=[];for(let n in t)if(t.hasOwnProperty(n)){let i=t[n];e.push(n+\":\"+(\"string\"==typeof i?JSON.stringify(i):Se(i)))}s=`{${e.join(\", \")}}`}return`${n}${i?\"(\"+i+\")\":\"\"}[${s}]: ${e.replace($e,\"\\n \")}`}(\"\\n\"+e.message,s,n,i),e.ngTokenPath=s,e.ngTempTokenPath=null,e}(r,e,\"R3InjectorError\",this.source)}throw r}finally{Je(i)}var s}_resolveInjectorDefTypes(){this.injectorDefTypes.forEach(e=>this.get(e))}toString(){const e=[];return this.records.forEach((t,n)=>e.push(Se(n))),`R3Injector[${e.join(\", \")}]`}assertNotDestroyed(){if(this._destroyed)throw new Error(\"Injector has already been destroyed.\")}processInjectorType(e,t,n){if(!(e=Te(e)))return!1;let i=ye(e);const s=null==i&&e.ngModule||void 0,r=void 0===s?e:s,o=-1!==n.indexOf(r);if(void 0!==s&&(i=ye(s)),null==i)return!1;if(null!=i.imports&&!o){let e;n.push(r);try{ot(i.imports,i=>{this.processInjectorType(i,t,n)&&(void 0===e&&(e=[]),e.push(i))})}finally{}if(void 0!==e)for(let t=0;tthis.processProvider(e,n,i||io))}}this.injectorDefTypes.add(r),this.records.set(r,uo(i.factory,to));const a=i.providers;if(null!=a&&!o){const t=e;ot(a,e=>this.processProvider(e,t,a))}return void 0!==s&&void 0!==e.providers}processProvider(e,t,n){let i=mo(e=Te(e))?e:Te(e&&e.provide);const s=function(e,t,n){return ho(e)?uo(void 0,e.useValue):uo(co(e,t,n),to)}(e,t,n);if(mo(e)||!0!==e.multi){const e=this.records.get(i);e&&void 0!==e.multi&&rs()}else{let t=this.records.get(i);t?void 0===t.multi&&rs():(t=uo(void 0,to,!0),t.factory=()=>tt(t.multi),this.records.set(i,t)),i=e,t.multi.push(e)}this.records.set(i,s)}hydrate(e,t){var n;return t.value===no?function(e){throw new Error(`Cannot instantiate cyclic dependency! ${e}`)}(Se(e)):t.value===to&&(t.value=no,t.value=t.factory()),\"object\"==typeof t.value&&t.value&&null!==(n=t.value)&&\"object\"==typeof n&&\"function\"==typeof n.ngOnDestroy&&this.onDestroy.add(t.value),t.value}injectableDefInScope(e){return!!e.providedIn&&(\"string\"==typeof e.providedIn?\"any\"===e.providedIn||e.providedIn===this.scope:this.injectorDefTypes.has(e.providedIn))}}function lo(e){const t=_e(e),n=null!==t?t.factory:xt(e);if(null!==n)return n;const i=ye(e);if(null!==i)return i.factory;if(e instanceof Ve)throw new Error(`Token ${Se(e)} is missing a \\u0275prov definition.`);if(e instanceof Function)return function(e){const t=e.length;if(t>0){const n=ct(t,\"?\");throw new Error(`Can't resolve all parameters for ${Se(e)}: (${n.join(\", \")}).`)}const n=function(e){const t=e&&(e[be]||e[Me]||e[we]&&e[we]());if(t){const n=function(e){if(e.hasOwnProperty(\"name\"))return e.name;const t=(\"\"+e).match(/^function\\s*([^\\s(]+)/);return null===t?\"\":t[1]}(e);return console.warn(`DEPRECATED: DI is instantiating a token \"${n}\" that inherits its @Injectable decorator but does not provide one itself.\\n`+`This will become an error in v10. Please add @Injectable() to the \"${n}\" class.`),t}return null}(e);return null!==n?()=>n.factory(e):()=>new e}(e);throw new Error(\"unreachable\")}function co(e,t,n){let i=void 0;if(mo(e)){const t=Te(e);return xt(t)||lo(t)}if(ho(e))i=()=>Te(e.useValue);else if((s=e)&&s.useFactory)i=()=>e.useFactory(...tt(e.deps||[]));else if(function(e){return!(!e||!e.useExisting)}(e))i=()=>Qe(Te(e.useExisting));else{const s=Te(e&&(e.useClass||e.provide));if(s||function(e,t,n){let i=\"\";throw e&&t&&(i=` - only instances of Provider and Type are allowed, got: [${t.map(e=>e==n?\"?\"+n+\"?\":\"...\").join(\", \")}]`),new Error(`Invalid provider for the NgModule '${Se(e)}'`+i)}(t,n,e),!function(e){return!!e.deps}(e))return xt(s)||lo(s);i=()=>new s(...tt(e.deps))}var s;return i}function uo(e,t,n=!1){return{factory:e,value:t,multi:n?[]:void 0}}function ho(e){return null!==e&&\"object\"==typeof e&&Be in e}function mo(e){return\"function\"==typeof e}const po=function(e,t,n){return function(e,t=null,n=null,i){const s=oo(e,t,n,i);return s._resolveInjectorDefTypes(),s}({name:n},t,e,n)};let fo=(()=>{class e{static create(e,t){return Array.isArray(e)?po(e,t,\"\"):po(e.providers,e.parent,e.name||\"\")}}return e.THROW_IF_NOT_FOUND=Ue,e.NULL=new nt,e.\\u0275prov=pe({token:e,providedIn:\"any\",factory:()=>Qe(We)}),e.__NG_ELEMENT_ID__=-1,e})();const _o=new Ve(\"AnalyzeForEntryComponents\");let go=new Map;const yo=new Set;function bo(e){return\"string\"==typeof e?e:e.text()}function vo(e,t){let n=e.styles,i=e.classes,s=0;for(let r=0;ra(Ft(e[i.index])).target:i.index;if(Ht(n)){let o=null;if(!a&&l&&(o=function(e,t,n,i){const s=e.cleanup;if(null!=s)for(let r=0;rn?e[n]:null}\"string\"==typeof e&&(r+=2)}return null}(e,t,s,i.index)),null!==o)(o.__ngLastListenerFn__||o).__ngNextListenerFn__=r,o.__ngLastListenerFn__=r,u=!1;else{r=Go(i,t,r,!1);const e=n.listen(m.name||p,s,r);d.push(r,e),c&&c.push(s,_,f,f+1)}}else r=Go(i,t,r,!0),p.addEventListener(s,r,o),d.push(r),c&&c.push(s,_,f,o)}const h=i.outputs;let m;if(u&&null!==h&&(m=h[s])){const e=m.length;if(e)for(let n=0;n0;)t=t[15],e--;return t}(e,Kt.lFrame.contextLView))[8]}(e)}function Ko(e,t){let n=null;const i=function(e){const t=e.attrs;if(null!=t){const e=t.indexOf(5);if(0==(1&e))return t[e+1]}return null}(e);for(let s=0;s=0}const oa={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function aa(e){return e.substring(oa.key,oa.keyEnd)}function la(e,t){const n=oa.textEnd;return n===t?-1:(t=oa.keyEnd=function(e,t,n){for(;t32;)t++;return t}(e,oa.key=t,n),ca(e,t,n))}function ca(e,t,n){for(;t=0;n=la(t,n))dt(e,aa(t),!0)}function pa(e,t,n,i){const s=Qt(),r=Xt(),o=cn(2);if(r.firstUpdatePass&&ga(r,e,o,i),t!==_s&&xo(s,o,t)){let a;null==n&&(a=function(){const e=Kt.lFrame;return null===e?null:e.currentSanitizer}())&&(n=a),va(r,r.data[vn()+19],s,s[11],e,s[o+1]=function(e,t){return null==e||(\"function\"==typeof t?e=t(e):\"string\"==typeof t?e+=t:\"object\"==typeof e&&(e=Se(bi(e)))),e}(t,n),i,o)}}function fa(e,t,n,i){const s=Xt(),r=cn(2);s.firstUpdatePass&&ga(s,null,r,i);const o=Qt();if(n!==_s&&xo(o,r,n)){const a=s.data[vn()+19];if(ka(a,i)&&!_a(s,r)){let e=i?a.classes:a.styles;null!==e&&(n=Le(e,n||\"\")),Ao(s,a,o,n,i)}else!function(e,t,n,i,s,r,o,a){s===_s&&(s=ia);let l=0,c=0,d=0=e.expandoStartIndex}function ga(e,t,n,i){const s=e.data;if(null===s[n+1]){const r=s[vn()+19],o=_a(e,n);ka(r,i)&&null===t&&!o&&(t=!1),t=function(e,t,n,i){const s=function(e){const t=Kt.lFrame.currentDirectiveIndex;return-1===t?null:e[t]}(e);let r=i?t.residualClasses:t.residualStyles;if(null===s)0===(i?t.classBindings:t.styleBindings)&&(n=ba(n=ya(null,e,t,n,i),t.attrs,i),r=null);else{const o=t.directiveStylingLast;if(-1===o||e[o]!==s)if(n=ya(s,e,t,n,i),null===r){let n=function(e,t,n){const i=n?t.classBindings:t.styleBindings;if(0!==Ls(i))return e[ks(i)]}(e,t,i);void 0!==n&&Array.isArray(n)&&(n=ya(null,e,t,n[1],i),n=ba(n,t.attrs,i),function(e,t,n,i){e[ks(n?t.classBindings:t.styleBindings)]=i}(e,t,i,n))}else r=function(e,t,n){let i=void 0;const s=t.directiveEnd;for(let r=1+t.directiveStylingLast;r0)&&(d=!0)}else c=n;if(s)if(0!==l){const t=ks(e[a+1]);e[i+1]=Ms(t,a),0!==t&&(e[t+1]=xs(e[t+1],i)),e[a+1]=131071&e[a+1]|i<<17}else e[i+1]=Ms(a,0),0!==a&&(e[a+1]=xs(e[a+1],i)),a=i;else e[i+1]=Ms(l,0),0===a?a=i:e[l+1]=xs(e[l+1],i),l=i;d&&(e[i+1]=Ss(e[i+1])),sa(e,c,i,!0),sa(e,c,i,!1),function(e,t,n,i,s){const r=s?e.residualClasses:e.residualStyles;null!=r&&\"string\"==typeof t&&ht(r,t)>=0&&(n[i+1]=Cs(n[i+1]))}(t,c,e,i,r),o=Ms(a,l),r?t.classBindings=o:t.styleBindings=o}(s,r,t,n,o,i)}}function ya(e,t,n,i,s){let r=null;const o=n.directiveEnd;let a=n.directiveStylingLast;for(-1===a?a=n.directiveStart:a++;a0;){const t=e[s],r=Array.isArray(t),l=r?t[1]:t,c=null===l;let d=n[s+1];d===_s&&(d=c?ia:void 0);let u=c?ut(d,i):l===i?d:void 0;if(r&&!Ma(u)&&(u=ut(t,i)),Ma(u)&&(a=u,o))return a;const h=e[s+1];s=o?ks(h):Ls(h)}if(null!==t){let e=r?t.residualClasses:t.residualStyles;null!=e&&(a=ut(e,i))}return a}function Ma(e){return void 0!==e}function ka(e,t){return 0!=(e.flags&(t?16:32))}function Sa(e,t=\"\"){const n=Qt(),i=Xt(),s=e+19,r=i.firstCreatePass?Es(i,n[6],e,3,null,null):i.data[s],o=n[s]=Mr(t,n[11]);Ar(i,n,o,r),nn(r,!1)}function La(e){return xa(\"\",e,\"\"),La}function xa(e,t,n){const i=Qt(),s=To(i,e,t,n);return s!==_s&&yr(i,vn(),s),xa}function Ca(e,t,n){const i=Qt();return xo(i,ln(),t)&&Ws(Xt(),Mn(),i,e,t,i[11],n,!0),Ca}function Ta(e,t,n){const i=Qt();if(xo(i,ln(),t)){const s=Xt(),r=Mn();Ws(s,r,i,e,t,fr(r,i),n,!0)}return Ta}function Da(e,t){const n=$t(e)[1],i=n.data.length-1;Ln(n,{directiveStart:i,directiveEnd:i+1})}function Ya(e){let t=Object.getPrototypeOf(e.type.prototype).constructor,n=!0;const i=[e];for(;t;){let s=void 0;if(It(e))s=t.\\u0275cmp||t.\\u0275dir;else{if(t.\\u0275cmp)throw new Error(\"Directives cannot inherit Components\");s=t.\\u0275dir}if(s){if(n){i.push(s);const t=e;t.inputs=Ea(e.inputs),t.declaredInputs=Ea(e.declaredInputs),t.outputs=Ea(e.outputs);const n=s.hostBindings;n&&Pa(e,n);const r=s.viewQuery,o=s.contentQueries;if(r&&Oa(e,r),o&&Ia(e,o),me(e.inputs,s.inputs),me(e.declaredInputs,s.declaredInputs),me(e.outputs,s.outputs),It(s)&&s.data.animation){const t=e.data;t.animation=(t.animation||[]).concat(s.data.animation)}t.afterContentChecked=t.afterContentChecked||s.afterContentChecked,t.afterContentInit=e.afterContentInit||s.afterContentInit,t.afterViewChecked=e.afterViewChecked||s.afterViewChecked,t.afterViewInit=e.afterViewInit||s.afterViewInit,t.doCheck=e.doCheck||s.doCheck,t.onDestroy=e.onDestroy||s.onDestroy,t.onInit=e.onInit||s.onInit}const t=s.features;if(t)for(let i=0;i=0;i--){const s=e[i];s.hostVars=t+=s.hostVars,s.hostAttrs=An(s.hostAttrs,n=An(n,s.hostAttrs))}}(i)}function Ea(e){return e===ft?{}:e===_t?[]:e}function Oa(e,t){const n=e.viewQuery;e.viewQuery=n?(e,i)=>{t(e,i),n(e,i)}:t}function Ia(e,t){const n=e.contentQueries;e.contentQueries=n?(e,i,s)=>{t(e,i,s),n(e,i,s)}:t}function Pa(e,t){const n=e.hostBindings;e.hostBindings=n?(e,i)=>{t(e,i),n(e,i)}:t}class Aa{constructor(e,t,n){this.previousValue=e,this.currentValue=t,this.firstChange=n}isFirstChange(){return this.firstChange}}function Ra(e){e.type.prototype.ngOnChanges&&(e.setInput=Ha,e.onChanges=function(){const e=ja(this),t=e&&e.current;if(t){const n=e.previous;if(n===ft)e.previous=t;else for(let e in t)n[e]=t[e];e.current=null,this.ngOnChanges(t)}})}function Ha(e,t,n,i){const s=ja(e)||function(e,t){return e.__ngSimpleChanges__=t}(e,{previous:ft,current:null}),r=s.current||(s.current={}),o=s.previous,a=this.declaredInputs[n],l=o[a];r[a]=new Aa(l&&l.currentValue,t,o===ft),e[i]=t}function ja(e){return e.__ngSimpleChanges__||null}function Fa(e,t,n,i,s){if(e=Te(e),Array.isArray(e))for(let r=0;r>16;if(mo(e)||!e.multi){const i=new En(l,s,Eo),m=Va(a,t,s?d:d+h,u);-1===m?(Xn(Jn(c,o),r,a),Na(r,e,t.length),t.push(a),c.directiveStart++,c.directiveEnd++,s&&(c.providerIndexes+=65536),n.push(i),o.push(i)):(n[m]=i,o[m]=i)}else{const m=Va(a,t,d+h,u),p=Va(a,t,d,d+h),f=m>=0&&n[m],_=p>=0&&n[p];if(s&&!_||!s&&!f){Xn(Jn(c,o),r,a);const d=function(e,t,n,i,s){const r=new En(e,n,Eo);return r.multi=[],r.index=t,r.componentProviders=0,za(r,s,i&&!n),r}(s?Ua:Wa,n.length,s,i,l);!s&&_&&(n[p].providerFactory=d),Na(r,e,t.length),t.push(a),c.directiveStart++,c.directiveEnd++,s&&(c.providerIndexes+=65536),n.push(d),o.push(d)}else Na(r,e,m>-1?m:p),za(n[s?p:m],l,!s&&i);!s&&i&&_&&n[p].componentProviders++}}}function Na(e,t,n){if(mo(t)||t.useClass){const i=(t.useClass||t).prototype.ngOnDestroy;i&&(e.destroyHooks||(e.destroyHooks=[])).push(n,i)}}function za(e,t,n){e.multi.push(t),n&&e.componentProviders++}function Va(e,t,n,i){for(let s=n;s{n.providersResolver=(n,i)=>function(e,t,n){const i=Xt();if(i.firstCreatePass){const s=It(e);Fa(n,i.data,i.blueprint,s,!0),Fa(t,i.data,i.blueprint,s,!1)}}(n,i?i(e):e,t)}}Ra.ngInherit=!0;class qa{}class Ga{resolveComponentFactory(e){throw function(e){const t=Error(`No component factory found for ${Se(e)}. Did you add it to @NgModule.entryComponents?`);return t.ngComponent=e,t}(e)}}let Ja=(()=>{class e{}return e.NULL=new Ga,e})(),Ka=(()=>{class e{constructor(e){this.nativeElement=e}}return e.__NG_ELEMENT_ID__=()=>Za(e),e})();const Za=function(e){return Jr(e,tn(),Qt())};class Qa{}const Xa=function(){var e={Important:1,DashCase:2};return e[e.Important]=\"Important\",e[e.DashCase]=\"DashCase\",e}();let el=(()=>{class e{}return e.__NG_ELEMENT_ID__=()=>tl(),e})();const tl=function(){const e=Qt(),t=Ut(tn().index,e);return function(e){const t=e[11];if(Ht(t))return t;throw new Error(\"Cannot inject Renderer2 when the application uses Renderer3!\")}(Tt(t)?t:e)};let nl=(()=>{class e{}return e.\\u0275prov=pe({token:e,providedIn:\"root\",factory:()=>null}),e})();class il{constructor(e){this.full=e,this.major=e.split(\".\")[0],this.minor=e.split(\".\")[1],this.patch=e.split(\".\").slice(2).join(\".\")}}const sl=new il(\"9.0.7\");class rl{constructor(){}supports(e){return So(e)}create(e){return new al(e)}}const ol=(e,t)=>t;class al{constructor(e){this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=e||ol}forEachItem(e){let t;for(t=this._itHead;null!==t;t=t._next)e(t)}forEachOperation(e){let t=this._itHead,n=this._removalsHead,i=0,s=null;for(;t||n;){const r=!n||t&&t.currentIndex{i=this._trackByFn(t,e),null!==s&&ko(s.trackById,i)?(r&&(s=this._verifyReinsertion(s,e,i,t)),ko(s.item,e)||this._addIdentityChange(s,e)):(s=this._mismatch(s,e,i,t),r=!0),s=s._next,t++}),this.length=t;return this._truncate(s),this.collection=e,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let e,t;for(e=this._previousItHead=this._itHead;null!==e;e=e._next)e._nextPrevious=e._next;for(e=this._additionsHead;null!==e;e=e._nextAdded)e.previousIndex=e.currentIndex;for(this._additionsHead=this._additionsTail=null,e=this._movesHead;null!==e;e=t)e.previousIndex=e.currentIndex,t=e._nextMoved;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(e,t,n,i){let s;return null===e?s=this._itTail:(s=e._prev,this._remove(e)),null!==(e=null===this._linkedRecords?null:this._linkedRecords.get(n,i))?(ko(e.item,t)||this._addIdentityChange(e,t),this._moveAfter(e,s,i)):null!==(e=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null))?(ko(e.item,t)||this._addIdentityChange(e,t),this._reinsertAfter(e,s,i)):e=this._addAfter(new ll(t,n),s,i),e}_verifyReinsertion(e,t,n,i){let s=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null);return null!==s?e=this._reinsertAfter(s,e._prev,i):e.currentIndex!=i&&(e.currentIndex=i,this._addToMoves(e,i)),e}_truncate(e){for(;null!==e;){const t=e._next;this._addToRemovals(this._unlink(e)),e=t}null!==this._unlinkedRecords&&this._unlinkedRecords.clear(),null!==this._additionsTail&&(this._additionsTail._nextAdded=null),null!==this._movesTail&&(this._movesTail._nextMoved=null),null!==this._itTail&&(this._itTail._next=null),null!==this._removalsTail&&(this._removalsTail._nextRemoved=null),null!==this._identityChangesTail&&(this._identityChangesTail._nextIdentityChange=null)}_reinsertAfter(e,t,n){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(e);const i=e._prevRemoved,s=e._nextRemoved;return null===i?this._removalsHead=s:i._nextRemoved=s,null===s?this._removalsTail=i:s._prevRemoved=i,this._insertAfter(e,t,n),this._addToMoves(e,n),e}_moveAfter(e,t,n){return this._unlink(e),this._insertAfter(e,t,n),this._addToMoves(e,n),e}_addAfter(e,t,n){return this._insertAfter(e,t,n),this._additionsTail=null===this._additionsTail?this._additionsHead=e:this._additionsTail._nextAdded=e,e}_insertAfter(e,t,n){const i=null===t?this._itHead:t._next;return e._next=i,e._prev=t,null===i?this._itTail=e:i._prev=e,null===t?this._itHead=e:t._next=e,null===this._linkedRecords&&(this._linkedRecords=new dl),this._linkedRecords.put(e),e.currentIndex=n,e}_remove(e){return this._addToRemovals(this._unlink(e))}_unlink(e){null!==this._linkedRecords&&this._linkedRecords.remove(e);const t=e._prev,n=e._next;return null===t?this._itHead=n:t._next=n,null===n?this._itTail=t:n._prev=t,e}_addToMoves(e,t){return e.previousIndex===t||(this._movesTail=null===this._movesTail?this._movesHead=e:this._movesTail._nextMoved=e),e}_addToRemovals(e){return null===this._unlinkedRecords&&(this._unlinkedRecords=new dl),this._unlinkedRecords.put(e),e.currentIndex=null,e._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=e,e._prevRemoved=null):(e._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=e),e}_addIdentityChange(e,t){return e.item=t,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=e:this._identityChangesTail._nextIdentityChange=e,e}}class ll{constructor(e,t){this.item=e,this.trackById=t,this.currentIndex=null,this.previousIndex=null,this._nextPrevious=null,this._prev=null,this._next=null,this._prevDup=null,this._nextDup=null,this._prevRemoved=null,this._nextRemoved=null,this._nextAdded=null,this._nextMoved=null,this._nextIdentityChange=null}}class cl{constructor(){this._head=null,this._tail=null}add(e){null===this._head?(this._head=this._tail=e,e._nextDup=null,e._prevDup=null):(this._tail._nextDup=e,e._prevDup=this._tail,e._nextDup=null,this._tail=e)}get(e,t){let n;for(n=this._head;null!==n;n=n._nextDup)if((null===t||t<=n.currentIndex)&&ko(n.trackById,e))return n;return null}remove(e){const t=e._prevDup,n=e._nextDup;return null===t?this._head=n:t._nextDup=n,null===n?this._tail=t:n._prevDup=t,null===this._head}}class dl{constructor(){this.map=new Map}put(e){const t=e.trackById;let n=this.map.get(t);n||(n=new cl,this.map.set(t,n)),n.add(e)}get(e,t){const n=this.map.get(e);return n?n.get(e,t):null}remove(e){const t=e.trackById;return this.map.get(t).remove(e)&&this.map.delete(t),e}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function ul(e,t,n){const i=e.previousIndex;if(null===i)return i;let s=0;return n&&i{if(t&&t.key===n)this._maybeAddToChanges(t,e),this._appendAfter=t,t=t._next;else{const i=this._getOrCreateRecordForKey(n,e);t=this._insertBeforeOrAppend(t,i)}}),t){t._prev&&(t._prev._next=null),this._removalsHead=t;for(let e=t;null!==e;e=e._nextRemoved)e===this._mapHead&&(this._mapHead=null),this._records.delete(e.key),e._nextRemoved=e._next,e.previousValue=e.currentValue,e.currentValue=null,e._prev=null,e._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(e,t){if(e){const n=e._prev;return t._next=e,t._prev=n,e._prev=t,n&&(n._next=t),e===this._mapHead&&(this._mapHead=t),this._appendAfter=e,e}return this._appendAfter?(this._appendAfter._next=t,t._prev=this._appendAfter):this._mapHead=t,this._appendAfter=t,null}_getOrCreateRecordForKey(e,t){if(this._records.has(e)){const n=this._records.get(e);this._maybeAddToChanges(n,t);const i=n._prev,s=n._next;return i&&(i._next=s),s&&(s._prev=i),n._next=null,n._prev=null,n}const n=new pl(e);return this._records.set(e,n),n.currentValue=t,this._addToAdditions(n),n}_reset(){if(this.isDirty){let e;for(this._previousMapHead=this._mapHead,e=this._previousMapHead;null!==e;e=e._next)e._nextPrevious=e._next;for(e=this._changesHead;null!==e;e=e._nextChanged)e.previousValue=e.currentValue;for(e=this._additionsHead;null!=e;e=e._nextAdded)e.previousValue=e.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(e,t){ko(t,e.currentValue)||(e.previousValue=e.currentValue,e.currentValue=t,this._addToChanges(e))}_addToAdditions(e){null===this._additionsHead?this._additionsHead=this._additionsTail=e:(this._additionsTail._nextAdded=e,this._additionsTail=e)}_addToChanges(e){null===this._changesHead?this._changesHead=this._changesTail=e:(this._changesTail._nextChanged=e,this._changesTail=e)}_forEach(e,t){e instanceof Map?e.forEach(t):Object.keys(e).forEach(n=>t(e[n],n))}}class pl{constructor(e){this.key=e,this.previousValue=null,this.currentValue=null,this._nextPrevious=null,this._next=null,this._prev=null,this._nextAdded=null,this._nextRemoved=null,this._nextChanged=null}}let fl=(()=>{class e{constructor(e){this.factories=e}static create(t,n){if(null!=n){const e=n.factories.slice();t=t.concat(e)}return new e(t)}static extend(t){return{provide:e,useFactory:n=>{if(!n)throw new Error(\"Cannot extend IterableDiffers without a parent injector\");return e.create(t,n)},deps:[[e,new de,new le]]}}find(e){const t=this.factories.find(t=>t.supports(e));if(null!=t)return t;throw new Error(`Cannot find a differ supporting object '${e}' of type '${n=e,n.name||typeof n}'`);var n}}return e.\\u0275prov=pe({token:e,providedIn:\"root\",factory:()=>new e([new rl])}),e})(),_l=(()=>{class e{constructor(e){this.factories=e}static create(t,n){if(n){const e=n.factories.slice();t=t.concat(e)}return new e(t)}static extend(t){return{provide:e,useFactory:n=>{if(!n)throw new Error(\"Cannot extend KeyValueDiffers without a parent injector\");return e.create(t,n)},deps:[[e,new de,new le]]}}find(e){const t=this.factories.find(t=>t.supports(e));if(t)return t;throw new Error(`Cannot find a differ supporting object '${e}'`)}}return e.\\u0275prov=pe({token:e,providedIn:\"root\",factory:()=>new e([new hl])}),e})();const gl=[new hl],yl=new fl([new rl]),bl=new _l(gl);let vl=(()=>{class e{}return e.__NG_ELEMENT_ID__=()=>wl(e,Ka),e})();const wl=function(e,t){return Kr(e,t,tn(),Qt())};let Ml=(()=>{class e{}return e.__NG_ELEMENT_ID__=()=>kl(e,Ka),e})();const kl=function(e,t){return Zr(e,t,tn(),Qt())},Sl={};class Ll extends Ja{constructor(e){super(),this.ngModule=e}resolveComponentFactory(e){const t=Lt(e);return new Tl(t,this.ngModule)}}function xl(e){const t=[];for(let n in e)e.hasOwnProperty(n)&&t.push({propName:e[n],templateName:n});return t}const Cl=new Ve(\"SCHEDULER_TOKEN\",{providedIn:\"root\",factory:()=>Wn});class Tl extends qa{constructor(e,t){super(),this.componentDef=e,this.ngModule=t,this.componentType=e.type,this.selector=e.selectors.map(fs).join(\",\"),this.ngContentSelectors=e.ngContentSelectors?e.ngContentSelectors:[],this.isBoundToModule=!!t}get inputs(){return xl(this.componentDef.inputs)}get outputs(){return xl(this.componentDef.outputs)}create(e,t,n,i){const s=(i=i||this.ngModule)?function(e,t){return{get:(n,i,s)=>{const r=e.get(n,Sl,s);return r!==Sl||i===Sl?r:t.get(n,i,s)}}}(e,i.injector):e,r=s.get(Qa,jt),o=s.get(nl,null),a=r.createRenderer(null,this.componentDef),l=this.componentDef.selectors[0][0]||\"div\",c=n?function(e,t,n){if(Ht(e))return e.selectRootElement(t,n===pt.ShadowDom);let i=\"string\"==typeof t?e.querySelector(t):t;return i.textContent=\"\",i}(a,n,this.componentDef.encapsulation):Ds(l,r.createRenderer(null,this.componentDef),function(e){const t=e.toLowerCase();return\"svg\"===t?\"http://www.w3.org/2000/svg\":\"math\"===t?\"http://www.w3.org/1998/MathML/\":null}(l)),d=this.componentDef.onPush?576:528,u=\"string\"==typeof n&&/^#root-ng-internal-isolated-\\d+/.test(n),h={components:[],scheduler:Wn,clean:hr,playerHandler:null,flags:0},m=Ns(0,-1,null,1,0,null,null,null,null,null),p=Ys(null,m,h,d,null,null,r,a,o,s);let f,_;pn(p,null);try{const e=function(e,t,n,i,s,r){const o=n[1];n[19]=e;const a=Es(o,null,0,3,null,null),l=a.mergedAttrs=t.hostAttrs;null!==l&&(vo(a,l),null!==e&&(On(s,e,l),null!==a.classes&&Wr(s,e,a.classes),null!==a.styles&&Vr(s,e,a.styles)));const c=i.createRenderer(e,t),d=Ys(n,Fs(t),null,t.onPush?64:16,n[19],a,i,c,void 0);return o.firstCreatePass&&(Xn(Jn(a,n),o,t.type),Js(o,a),Zs(a,n.length,1)),ar(n,d),n[19]=d}(c,this.componentDef,p,r,a);if(c)if(n)On(a,c,[\"ng-version\",sl.full]);else{const{attrs:e,classes:t}=function(e){const t=[],n=[];let i=1,s=2;for(;i0&&Wr(a,c,t.join(\" \"))}_=Vt(p[1],0),t&&(_.projection=t.map(e=>Array.from(e))),f=function(e,t,n,i,s){const r=n[1],o=function(e,t,n){const i=tn();e.firstCreatePass&&(n.providersResolver&&n.providersResolver(n),Gs(e,i,1),Qs(e,t,n));const s=si(t,e,t.length-1,i);is(s,t);const r=zt(i,t);return r&&is(r,t),s}(r,n,t);i.components.push(o),e[8]=o,s&&s.forEach(e=>e(o,t)),t.contentQueries&&t.contentQueries(1,o,n.length-1);const a=tn();if(r.firstCreatePass&&(null!==t.hostBindings||null!==t.hostAttrs)){wn(a.index-19);const e=n[1];$s(e,t),Bs(e,n,t.hostVars),qs(t,o)}return o}(e,this.componentDef,p,h,[Da]),Os(m,p,null)}finally{bn()}const g=new Dl(this.componentType,f,Jr(Ka,_,p),p,_);return n&&!u||(g.hostView._tViewNode.child=_),g}}class Dl extends class{}{constructor(e,t,n,i,s){super(),this.location=n,this._rootLView=i,this._tNode=s,this.destroyCbs=[],this.instance=t,this.hostView=this.changeDetectorRef=new $r(i),this.hostView._tViewNode=function(e,t,n,i){let s=e.node;return null==s&&(e.node=s=zs(0,null,2,-1,null,null)),i[6]=s}(i[1],0,0,i),this.componentType=e}get injector(){return new ai(this._tNode,this._rootLView)}destroy(){this.destroyCbs&&(this.destroyCbs.forEach(e=>e()),this.destroyCbs=null,!this.hostView.destroyed&&this.hostView.destroy())}onDestroy(e){this.destroyCbs&&this.destroyCbs.push(e)}}const Yl=void 0;var El=[\"en\",[[\"a\",\"p\"],[\"AM\",\"PM\"],Yl],[[\"AM\",\"PM\"],Yl,Yl],[[\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"],[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"]],Yl,[[\"J\",\"F\",\"M\",\"A\",\"M\",\"J\",\"J\",\"A\",\"S\",\"O\",\"N\",\"D\"],[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"]],Yl,[[\"B\",\"A\"],[\"BC\",\"AD\"],[\"Before Christ\",\"Anno Domini\"]],0,[6,0],[\"M/d/yy\",\"MMM d, y\",\"MMMM d, y\",\"EEEE, MMMM d, y\"],[\"h:mm a\",\"h:mm:ss a\",\"h:mm:ss a z\",\"h:mm:ss a zzzz\"],[\"{1}, {0}\",Yl,\"{1} 'at' {0}\",Yl],[\".\",\",\",\";\",\"%\",\"+\",\"-\",\"E\",\"\\xd7\",\"\\u2030\",\"\\u221e\",\"NaN\",\":\"],[\"#,##0.###\",\"#,##0%\",\"\\xa4#,##0.00\",\"#E0\"],\"USD\",\"$\",\"US Dollar\",{},function(e){let t=Math.floor(Math.abs(e)),n=e.toString().replace(/^[^.]*\\.?/,\"\").length;return 1===t&&0===n?1:5}];let Ol={};function Il(e){return function(e){const t=function(e){return e.toLowerCase().replace(/_/g,\"-\")}(e);let n=Pl(t);if(n)return n;const i=t.split(\"-\")[0];if(n=Pl(i),n)return n;if(\"en\"===i)return El;throw new Error(`Missing locale data for the locale \"${e}\".`)}(e)[Al.PluralCase]}function Pl(e){return e in Ol||(Ol[e]=Pe.ng&&Pe.ng.common&&Pe.ng.common.locales&&Pe.ng.common.locales[e]),Ol[e]}const Al=function(){var e={LocaleId:0,DayPeriodsFormat:1,DayPeriodsStandalone:2,DaysFormat:3,DaysStandalone:4,MonthsFormat:5,MonthsStandalone:6,Eras:7,FirstDayOfWeek:8,WeekendRange:9,DateFormat:10,TimeFormat:11,DateTimeFormat:12,NumberSymbols:13,NumberFormats:14,CurrencyCode:15,CurrencySymbol:16,CurrencyName:17,Currencies:18,PluralCase:19,ExtraData:20};return e[e.LocaleId]=\"LocaleId\",e[e.DayPeriodsFormat]=\"DayPeriodsFormat\",e[e.DayPeriodsStandalone]=\"DayPeriodsStandalone\",e[e.DaysFormat]=\"DaysFormat\",e[e.DaysStandalone]=\"DaysStandalone\",e[e.MonthsFormat]=\"MonthsFormat\",e[e.MonthsStandalone]=\"MonthsStandalone\",e[e.Eras]=\"Eras\",e[e.FirstDayOfWeek]=\"FirstDayOfWeek\",e[e.WeekendRange]=\"WeekendRange\",e[e.DateFormat]=\"DateFormat\",e[e.TimeFormat]=\"TimeFormat\",e[e.DateTimeFormat]=\"DateTimeFormat\",e[e.NumberSymbols]=\"NumberSymbols\",e[e.NumberFormats]=\"NumberFormats\",e[e.CurrencyCode]=\"CurrencyCode\",e[e.CurrencySymbol]=\"CurrencySymbol\",e[e.CurrencyName]=\"CurrencyName\",e[e.Currencies]=\"Currencies\",e[e.PluralCase]=\"PluralCase\",e[e.ExtraData]=\"ExtraData\",e}(),Rl=/^\\s*(\\ufffd\\d+:?\\d*\\ufffd)\\s*,\\s*(select|plural)\\s*,/,Hl=/\\ufffd\\/?\\*(\\d+:\\d+)\\ufffd/gi,jl=/\\ufffd(\\/?[#*!]\\d+):?\\d*\\ufffd/gi,Fl=/\\ufffd(\\d+):?\\d*\\ufffd/gi,Nl=/({\\s*\\ufffd\\d+:?\\d*\\ufffd\\s*,\\s*\\S{6}\\s*,[\\s\\S]*})/gi;function zl(e){if(!e)return[];let t=0;const n=[],i=[],s=/[{}]/g;let r;for(s.lastIndex=0;r=s.exec(e);){const s=r.index;if(\"}\"==r[0]){if(n.pop(),0==n.length){const n=e.substring(t,s);Rl.test(n)?i.push(Vl(n)):i.push(n),t=s+1}}else{if(0==n.length){const n=e.substring(t,s);i.push(n),t=s+1}n.push(\"{\")}}const o=e.substring(t);return i.push(o),i}function Vl(e){const t=[],n=[];let i=1,s=0;const r=zl(e=e.replace(Rl,(function(e,t,n){return i=\"select\"===n?0:1,s=parseInt(t.substr(1),10),\"\"})));for(let o=0;on.length&&n.push(s)}return{type:i,mainBinding:s,cases:t,values:n}}function Wl(e){let t,n,i=\"\",s=0,r=!1;for(;null!==(t=Hl.exec(e));)r?t[0]===`\\ufffd/*${n}\\ufffd`&&(s=t.index,r=!1):(i+=e.substring(s,t.index+t[0].length),n=t[1],r=!0);return i+=e.substr(s),i}function Ul(e,t,n,i=null){const s=[null,null],r=e.split(Fl);let o=0;for(let a=0;a>>17;let d;d=s===e?i[6]:Vt(n,s),o=Zl(n,r,d,o,i);break;case 0:const u=c>=0,h=(u?c:~c)>>>3;a.push(h),o=r,r=Vt(n,h),r&&nn(r,u);break;case 5:o=r=Vt(n,c>>>3),nn(r,!1);break;case 4:const m=t[++l],p=t[++l];er(Vt(n,c>>>3),i,m,p,null,null);break;default:throw new Error(`Unable to determine the type of mutate operation for \"${c}\"`)}else switch(c){case ws:const e=t[++l],d=t[++l],u=s.createComment(e);o=r,r=Ql(n,i,d,5,u,null),a.push(d),is(u,i),r.activeCaseIndex=null,rn();break;case vs:const h=t[++l],m=t[++l];o=r,r=Ql(n,i,m,3,s.createElement(h),h),a.push(m);break;default:throw new Error(`Unable to determine the type of mutate operation for \"${c}\"`)}}return rn(),a}function ec(e,t,n,i){const s=Vt(e,n),r=Nt(n,t);r&&Hr(t[11],r);const o=Wt(t,n);if(Dt(o)){const e=o;0!==s.type&&Hr(t[11],e[7])}i&&(s.flags|=64)}function tc(e,t,n){(function(e,t,n){const i=Xt();Bl[++ql]=e,Xo(!0),i.firstCreatePass&&null===i.data[e+19]&&function(e,t,n,i,s){const r=t.blueprint.length-19;Kl=0;const o=tn(),a=sn()?o:o&&o.parent;let l=a&&a!==e[6]?a.index-19:n,c=0;Jl[c]=l;const d=[];if(n>0&&o!==a){let e=o.index-19;sn()||(e=~e),d.push(e<<3|0)}const u=[],h=[],m=function(e,t){if(\"number\"!=typeof t)return Wl(e);{const n=e.indexOf(`:${t}\\ufffd`)+2+t.toString().length,i=e.search(new RegExp(`\\ufffd\\\\/\\\\*\\\\d+:${t}\\ufffd`));return Wl(e.substring(n,i))}}(i,s),p=(f=m,f.replace(uc,\" \")).split(jl);var f;for(let _=0;_0&&function(e,t,n){if(n>0&&e.firstCreatePass){for(let i=0;i>1),o++}}(Xt(),e),Xo(!1)}()}function nc(e,t){!function(e,t,n,i){const s=tn().index-19,r=[];for(let o=0;o>>2;let h,m,p;switch(3&c){case 1:const c=t[++d],f=t[++d];Ws(r,Vt(r,u),o,c,a,o[11],f,!1);break;case 0:yr(o,u,a);break;case 2:if(h=t[++d],m=n[h],p=Vt(r,u),null!==p.activeCaseIndex){const e=m.remove[p.activeCaseIndex];for(let t=0;t>>3,!1);break;case 6:const s=Vt(r,e[t+1]>>>3).activeCaseIndex;null!==s&&rt(n[i>>>3].remove[s],e)}}}const _=ac(m,a);p.activeCaseIndex=-1!==_?_:null,_>-1&&(Xl(-1,m.create[_],r,o),l=!0);break;case 3:h=t[++d],m=n[h],p=Vt(r,u),null!==p.activeCaseIndex&&e(m.update[p.activeCaseIndex],n,i,s,r,o,l)}}}}c+=u}}(i,s,r,ic,t,o),ic=0,sc=0}}function ac(e,t){let n=e.cases.indexOf(t);if(-1===n)switch(e.type){case 1:{const i=function(e,t){switch(Il(t)(e)){case 0:return\"zero\";case 1:return\"one\";case 2:return\"two\";case 3:return\"few\";case 4:return\"many\";default:return\"other\"}}(t,hc);n=e.cases.indexOf(i),-1===n&&\"other\"!==i&&(n=e.cases.indexOf(\"other\"));break}case 0:n=e.cases.indexOf(\"other\")}return n}function lc(e,t,n,i){const s=[],r=[],o=[],a=[],l=[];for(let c=0;c null != ${t} <=Actual]`)}(n,t),\"string\"==typeof e&&(hc=e.toLowerCase().replace(/_/g,\"-\"))}const pc=new Map;class fc extends it{constructor(e,t){super(),this._parent=t,this._bootstrapComponents=[],this.injector=this,this.destroyCbs=[],this.componentFactoryResolver=new Ll(this);const n=Ct(e),i=e[Fe]||null;i&&mc(i),this._bootstrapComponents=$n(n.bootstrap),this._r3Injector=oo(e,t,[{provide:it,useValue:this},{provide:Ja,useValue:this.componentFactoryResolver}],Se(e)),this._r3Injector._resolveInjectorDefTypes(),this.instance=this.get(e)}get(e,t=fo.THROW_IF_NOT_FOUND,n=ue.Default){return e===fo||e===it||e===We?this:this._r3Injector.get(e,t,n)}destroy(){const e=this._r3Injector;!e.destroyed&&e.destroy(),this.destroyCbs.forEach(e=>e()),this.destroyCbs=null}onDestroy(e){this.destroyCbs.push(e)}}class _c extends st{constructor(e){super(),this.moduleType=e,null!==Ct(e)&&function e(t){if(null!==t.\\u0275mod.id){const e=t.\\u0275mod.id;(function(e,t,n){if(t&&t!==n)throw new Error(`Duplicate module registered for ${e} - ${Se(t)} vs ${Se(t.name)}`)})(e,pc.get(e),t),pc.set(e,t)}let n=t.\\u0275mod.imports;n instanceof Function&&(n=n()),n&&n.forEach(t=>e(t))}(e)}create(e){return new fc(this.moduleType,e)}}function gc(e,t,n){const i=function(){const e=Kt.lFrame;let t=e.bindingRootIndex;return-1===t&&(t=e.bindingRootIndex=e.tView.bindingStartIndex),t}()+e,s=Qt();return s[i]===_s?function(e,t,n){return e[t]=n}(s,i,n?t.call(n):t()):function(e,t){return e[t]}(s,i)}class yc extends L{constructor(e=!1){super(),this.__isAsync=e}emit(e){super.next(e)}subscribe(e,t,n){let i,s=e=>null,r=()=>null;e&&\"object\"==typeof e?(i=this.__isAsync?t=>{setTimeout(()=>e.next(t))}:t=>{e.next(t)},e.error&&(s=this.__isAsync?t=>{setTimeout(()=>e.error(t))}:t=>{e.error(t)}),e.complete&&(r=this.__isAsync?()=>{setTimeout(()=>e.complete())}:()=>{e.complete()})):(i=this.__isAsync?t=>{setTimeout(()=>e(t))}:t=>{e(t)},t&&(s=this.__isAsync?e=>{setTimeout(()=>t(e))}:e=>{t(e)}),n&&(r=this.__isAsync?()=>{setTimeout(()=>n())}:()=>{n()}));const o=super.subscribe(i,s,r);return e instanceof u&&e.add(o),o}}function bc(){return this._results[Mo()]()}class vc{constructor(){this.dirty=!0,this._results=[],this.changes=new yc,this.length=0;const e=Mo(),t=vc.prototype;t[e]||(t[e]=bc)}map(e){return this._results.map(e)}filter(e){return this._results.filter(e)}find(e){return this._results.find(e)}reduce(e,t){return this._results.reduce(e,t)}forEach(e){this._results.forEach(e)}some(e){return this._results.some(e)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(e){this._results=function e(t,n){void 0===n&&(n=t);for(let i=0;i0)s.push(a[t/2]);else{const r=o[t+1],a=n[-i];for(let t=9;t{class e{constructor(e){this.appInits=e,this.initialized=!1,this.done=!1,this.donePromise=new Promise((e,t)=>{this.resolve=e,this.reject=t})}runInitializers(){if(this.initialized)return;const e=[],t=()=>{this.done=!0,this.resolve()};if(this.appInits)for(let n=0;n{t()}).catch(e=>{this.reject(e)}),0===e.length&&t(),this.initialized=!0}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nc,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const Vc=new Ve(\"AppId\"),Wc={provide:Vc,useFactory:function(){return`${Uc()}${Uc()}${Uc()}`},deps:[]};function Uc(){return String.fromCharCode(97+Math.floor(25*Math.random()))}const $c=new Ve(\"Platform Initializer\"),Bc=new Ve(\"Platform ID\"),qc=new Ve(\"appBootstrapListener\");let Gc=(()=>{class e{log(e){console.log(e)}warn(e){console.warn(e)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const Jc=new Ve(\"LocaleId\"),Kc=new Ve(\"DefaultCurrencyCode\");class Zc{constructor(e,t){this.ngModuleFactory=e,this.componentFactories=t}}const Qc=function(e){return new _c(e)},Xc=Qc,ed=function(e){return Promise.resolve(Qc(e))},td=function(e){const t=Qc(e),n=$n(Ct(e).declarations).reduce((e,t)=>{const n=Lt(t);return n&&e.push(new Tl(n)),e},[]);return new Zc(t,n)},nd=td,id=function(e){return Promise.resolve(td(e))};let sd=(()=>{class e{constructor(){this.compileModuleSync=Xc,this.compileModuleAsync=ed,this.compileModuleAndAllComponentsSync=nd,this.compileModuleAndAllComponentsAsync=id}clearCache(){}clearCacheFor(e){}getModuleId(e){}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const rd=new Ve(\"compilerOptions\"),od=(()=>Promise.resolve(0))();function ad(e){\"undefined\"==typeof Zone?od.then(()=>{e&&e.apply(null,null)}):Zone.current.scheduleMicroTask(\"scheduleMicrotask\",e)}class ld{constructor({enableLongStackTrace:e=!1,shouldCoalesceEventChangeDetection:t=!1}){if(this.hasPendingMacrotasks=!1,this.hasPendingMicrotasks=!1,this.isStable=!0,this.onUnstable=new yc(!1),this.onMicrotaskEmpty=new yc(!1),this.onStable=new yc(!1),this.onError=new yc(!1),\"undefined\"==typeof Zone)throw new Error(\"In this configuration Angular requires Zone.js\");Zone.assertZonePatched(),this._nesting=0,this._outer=this._inner=Zone.current,Zone.wtfZoneSpec&&(this._inner=this._inner.fork(Zone.wtfZoneSpec)),Zone.TaskTrackingZoneSpec&&(this._inner=this._inner.fork(new Zone.TaskTrackingZoneSpec)),e&&Zone.longStackTraceZoneSpec&&(this._inner=this._inner.fork(Zone.longStackTraceZoneSpec)),this.shouldCoalesceEventChangeDetection=t,this.lastRequestAnimationFrameId=-1,this.nativeRequestAnimationFrame=function(){let e=Pe.requestAnimationFrame,t=Pe.cancelAnimationFrame;if(\"undefined\"!=typeof Zone&&e&&t){const n=e[Zone.__symbol__(\"OriginalDelegate\")];n&&(e=n);const i=t[Zone.__symbol__(\"OriginalDelegate\")];i&&(t=i)}return{nativeRequestAnimationFrame:e,nativeCancelAnimationFrame:t}}().nativeRequestAnimationFrame,function(e){const t=!!e.shouldCoalesceEventChangeDetection&&e.nativeRequestAnimationFrame&&(()=>{!function(e){-1===e.lastRequestAnimationFrameId&&(e.lastRequestAnimationFrameId=e.nativeRequestAnimationFrame.call(Pe,()=>{e.lastRequestAnimationFrameId=-1,hd(e),ud(e)}),hd(e))}(e)});e._inner=e._inner.fork({name:\"angular\",properties:{isAngularZone:!0,maybeDelayChangeDetection:t},onInvokeTask:(n,i,s,r,o,a)=>{try{return md(e),n.invokeTask(s,r,o,a)}finally{t&&\"eventTask\"===r.type&&t(),pd(e)}},onInvoke:(t,n,i,s,r,o,a)=>{try{return md(e),t.invoke(i,s,r,o,a)}finally{pd(e)}},onHasTask:(t,n,i,s)=>{t.hasTask(i,s),n===i&&(\"microTask\"==s.change?(e._hasPendingMicrotasks=s.microTask,hd(e),ud(e)):\"macroTask\"==s.change&&(e.hasPendingMacrotasks=s.macroTask))},onHandleError:(t,n,i,s)=>(t.handleError(i,s),e.runOutsideAngular(()=>e.onError.emit(s)),!1)})}(this)}static isInAngularZone(){return!0===Zone.current.get(\"isAngularZone\")}static assertInAngularZone(){if(!ld.isInAngularZone())throw new Error(\"Expected to be in Angular Zone, but it is not!\")}static assertNotInAngularZone(){if(ld.isInAngularZone())throw new Error(\"Expected to not be in Angular Zone, but it is!\")}run(e,t,n){return this._inner.run(e,t,n)}runTask(e,t,n,i){const s=this._inner,r=s.scheduleEventTask(\"NgZoneEvent: \"+i,e,dd,cd,cd);try{return s.runTask(r,t,n)}finally{s.cancelTask(r)}}runGuarded(e,t,n){return this._inner.runGuarded(e,t,n)}runOutsideAngular(e){return this._outer.run(e)}}function cd(){}const dd={};function ud(e){if(0==e._nesting&&!e.hasPendingMicrotasks&&!e.isStable)try{e._nesting++,e.onMicrotaskEmpty.emit(null)}finally{if(e._nesting--,!e.hasPendingMicrotasks)try{e.runOutsideAngular(()=>e.onStable.emit(null))}finally{e.isStable=!0}}}function hd(e){e.hasPendingMicrotasks=!!(e._hasPendingMicrotasks||e.shouldCoalesceEventChangeDetection&&-1!==e.lastRequestAnimationFrameId)}function md(e){e._nesting++,e.isStable&&(e.isStable=!1,e.onUnstable.emit(null))}function pd(e){e._nesting--,ud(e)}class fd{constructor(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new yc,this.onMicrotaskEmpty=new yc,this.onStable=new yc,this.onError=new yc}run(e,t,n){return e.apply(t,n)}runGuarded(e,t,n){return e.apply(t,n)}runOutsideAngular(e){return e()}runTask(e,t,n,i){return e.apply(t,n)}}let _d=(()=>{class e{constructor(e){this._ngZone=e,this._pendingCount=0,this._isZoneStable=!0,this._didWork=!1,this._callbacks=[],this.taskTrackingZone=null,this._watchAngularEvents(),e.run(()=>{this.taskTrackingZone=\"undefined\"==typeof Zone?null:Zone.current.get(\"TaskTrackingZone\")})}_watchAngularEvents(){this._ngZone.onUnstable.subscribe({next:()=>{this._didWork=!0,this._isZoneStable=!1}}),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.subscribe({next:()=>{ld.assertNotInAngularZone(),ad(()=>{this._isZoneStable=!0,this._runCallbacksIfReady()})}})})}increasePendingRequestCount(){return this._pendingCount+=1,this._didWork=!0,this._pendingCount}decreasePendingRequestCount(){if(this._pendingCount-=1,this._pendingCount<0)throw new Error(\"pending async requests below zero\");return this._runCallbacksIfReady(),this._pendingCount}isStable(){return this._isZoneStable&&0===this._pendingCount&&!this._ngZone.hasPendingMacrotasks}_runCallbacksIfReady(){if(this.isStable())ad(()=>{for(;0!==this._callbacks.length;){let e=this._callbacks.pop();clearTimeout(e.timeoutId),e.doneCb(this._didWork)}this._didWork=!1});else{let e=this.getPendingTasks();this._callbacks=this._callbacks.filter(t=>!t.updateCb||!t.updateCb(e)||(clearTimeout(t.timeoutId),!1)),this._didWork=!0}}getPendingTasks(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(e=>({source:e.source,creationLocation:e.creationLocation,data:e.data})):[]}addCallback(e,t,n){let i=-1;t&&t>0&&(i=setTimeout(()=>{this._callbacks=this._callbacks.filter(e=>e.timeoutId!==i),e(this._didWork,this.getPendingTasks())},t)),this._callbacks.push({doneCb:e,timeoutId:i,updateCb:n})}whenStable(e,t,n){if(n&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is \"zone.js/dist/task-tracking.js\" loaded?');this.addCallback(e,t,n),this._runCallbacksIfReady()}getPendingRequestCount(){return this._pendingCount}findProviders(e,t,n){return[]}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ld))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),gd=(()=>{class e{constructor(){this._applications=new Map,vd.addToWindow(this)}registerApplication(e,t){this._applications.set(e,t)}unregisterApplication(e){this._applications.delete(e)}unregisterAllApplications(){this._applications.clear()}getTestability(e){return this._applications.get(e)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(e,t=!0){return vd.findTestabilityInTree(this,e,t)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class yd{addToWindow(e){}findTestabilityInTree(e,t,n){return null}}let bd,vd=new yd,wd=function(e,t,n){const i=new _c(n);if(0===go.size)return Promise.resolve(i);const s=function(e){const t=[];return e.forEach(e=>e&&t.push(...e)),t}(e.get(rd,[]).concat(t).map(e=>e.providers));if(0===s.length)return Promise.resolve(i);const r=function(){const e=Pe.ng;if(!e||!e.\\u0275compilerFacade)throw new Error(\"Angular JIT compilation failed: '@angular/compiler' not loaded!\\n - JIT compilation is discouraged for production use-cases! Consider AOT mode instead.\\n - Did you bootstrap using '@angular/platform-browser-dynamic' or '@angular/platform-server'?\\n - Alternatively provide the compiler with 'import \\\"@angular/compiler\\\";' before bootstrapping.\");return e.\\u0275compilerFacade}(),o=fo.create({providers:s}).get(r.ResourceLoader);return function(e){const t=[],n=new Map;function i(e){let t=n.get(e);if(!t){const i=(e=>Promise.resolve(o.get(e)))(e);n.set(e,t=i.then(bo))}return t}return go.forEach((e,n)=>{const s=[];e.templateUrl&&s.push(i(e.templateUrl).then(t=>{e.template=t}));const r=e.styleUrls,o=e.styles||(e.styles=[]),a=e.styles.length;r&&r.forEach((t,n)=>{o.push(\"\"),s.push(i(t).then(i=>{o[a+n]=i,r.splice(r.indexOf(t),1),0==r.length&&(e.styleUrls=void 0)}))});const l=Promise.all(s).then(()=>function(e){yo.delete(e)}(n));t.push(l)}),go=new Map,Promise.all(t).then(()=>{})}().then(()=>i)};const Md=new Ve(\"AllowMultipleToken\");class kd{constructor(e,t){this.name=e,this.token=t}}function Sd(e,t,n=[]){const i=`Platform: ${t}`,s=new Ve(i);return(t=[])=>{let r=Ld();if(!r||r.injector.get(Md,!1))if(e)e(n.concat(t).concat({provide:s,useValue:!0}));else{const e=n.concat(t).concat({provide:s,useValue:!0},{provide:eo,useValue:\"platform\"});!function(e){if(bd&&!bd.destroyed&&!bd.injector.get(Md,!1))throw new Error(\"There can be only one platform. Destroy the previous one to create a new one.\");bd=e.get(xd);const t=e.get($c,null);t&&t.forEach(e=>e())}(fo.create({providers:e,name:i}))}return function(e){const t=Ld();if(!t)throw new Error(\"No platform exists!\");if(!t.injector.get(e,null))throw new Error(\"A platform with a different configuration has been created. Please destroy it first.\");return t}(s)}}function Ld(){return bd&&!bd.destroyed?bd:null}let xd=(()=>{class e{constructor(e){this._injector=e,this._modules=[],this._destroyListeners=[],this._destroyed=!1}bootstrapModuleFactory(e,t){const n=function(e,t){let n;return n=\"noop\"===e?new fd:(\"zone.js\"===e?void 0:e)||new ld({enableLongStackTrace:Si(),shouldCoalesceEventChangeDetection:t}),n}(t?t.ngZone:void 0,t&&t.ngZoneEventCoalescing||!1),i=[{provide:ld,useValue:n}];return n.run(()=>{const t=fo.create({providers:i,parent:this.injector,name:e.moduleType.name}),s=e.create(t),r=s.injector.get(hi,null);if(!r)throw new Error(\"No ErrorHandler. Is platform module (BrowserModule) included?\");return s.onDestroy(()=>Dd(this._modules,s)),n.runOutsideAngular(()=>n.onError.subscribe({next:e=>{r.handleError(e)}})),function(e,t,n){try{const i=n();return Vo(i)?i.catch(n=>{throw t.runOutsideAngular(()=>e.handleError(n)),n}):i}catch(i){throw t.runOutsideAngular(()=>e.handleError(i)),i}}(r,n,()=>{const e=s.injector.get(zc);return e.runInitializers(),e.donePromise.then(()=>(mc(s.injector.get(Jc,\"en-US\")||\"en-US\"),this._moduleDoBootstrap(s),s))})})}bootstrapModule(e,t=[]){const n=Cd({},t);return wd(this.injector,n,e).then(e=>this.bootstrapModuleFactory(e,n))}_moduleDoBootstrap(e){const t=e.injector.get(Td);if(e._bootstrapComponents.length>0)e._bootstrapComponents.forEach(e=>t.bootstrap(e));else{if(!e.instance.ngDoBootstrap)throw new Error(`The module ${Se(e.instance.constructor)} was bootstrapped, but it does not declare \"@NgModule.bootstrap\" components nor a \"ngDoBootstrap\" method. `+\"Please define one of these.\");e.instance.ngDoBootstrap(t)}this._modules.push(e)}onDestroy(e){this._destroyListeners.push(e)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new Error(\"The platform has already been destroyed!\");this._modules.slice().forEach(e=>e.destroy()),this._destroyListeners.forEach(e=>e()),this._destroyed=!0}get destroyed(){return this._destroyed}}return e.\\u0275fac=function(t){return new(t||e)(Qe(fo))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function Cd(e,t){return Array.isArray(t)?t.reduce(Cd,e):Object.assign(Object.assign({},e),t)}let Td=(()=>{class e{constructor(e,t,n,i,s,r){this._zone=e,this._console=t,this._injector=n,this._exceptionHandler=i,this._componentFactoryResolver=s,this._initStatus=r,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._enforceNoNewChanges=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._enforceNoNewChanges=Si(),this._zone.onMicrotaskEmpty.subscribe({next:()=>{this._zone.run(()=>{this.tick()})}});const o=new v(e=>{this._stable=this._zone.isStable&&!this._zone.hasPendingMacrotasks&&!this._zone.hasPendingMicrotasks,this._zone.runOutsideAngular(()=>{e.next(this._stable),e.complete()})}),a=new v(e=>{let t;this._zone.runOutsideAngular(()=>{t=this._zone.onStable.subscribe(()=>{ld.assertNotInAngularZone(),ad(()=>{this._stable||this._zone.hasPendingMacrotasks||this._zone.hasPendingMicrotasks||(this._stable=!0,e.next(!0))})})});const n=this._zone.onUnstable.subscribe(()=>{ld.assertInAngularZone(),this._stable&&(this._stable=!1,this._zone.runOutsideAngular(()=>{e.next(!1)}))});return()=>{t.unsubscribe(),n.unsubscribe()}});this.isStable=G(o,a.pipe(se()))}bootstrap(e,t){if(!this._initStatus.done)throw new Error(\"Cannot bootstrap as there are still asynchronous initializers running. Bootstrap components in the `ngDoBootstrap` method of the root module.\");let n;n=e instanceof qa?e:this._componentFactoryResolver.resolveComponentFactory(e),this.componentTypes.push(n.componentType);const i=n.isBoundToModule?void 0:this._injector.get(it),s=n.create(fo.NULL,[],t||n.selector,i);s.onDestroy(()=>{this._unloadComponent(s)});const r=s.injector.get(_d,null);return r&&s.injector.get(gd).registerApplication(s.location.nativeElement,r),this._loadComponent(s),Si()&&this._console.log(\"Angular is running in the development mode. Call enableProdMode() to enable the production mode.\"),s}tick(){if(this._runningTick)throw new Error(\"ApplicationRef.tick is called recursively\");try{this._runningTick=!0;for(let e of this._views)e.detectChanges();if(this._enforceNoNewChanges)for(let e of this._views)e.checkNoChanges()}catch(e){this._zone.runOutsideAngular(()=>this._exceptionHandler.handleError(e))}finally{this._runningTick=!1}}attachView(e){const t=e;this._views.push(t),t.attachToAppRef(this)}detachView(e){const t=e;Dd(this._views,t),t.detachFromAppRef()}_loadComponent(e){this.attachView(e.hostView),this.tick(),this.components.push(e),this._injector.get(qc,[]).concat(this._bootstrapListeners).forEach(t=>t(e))}_unloadComponent(e){this.detachView(e.hostView),Dd(this.components,e)}ngOnDestroy(){this._views.slice().forEach(e=>e.destroy())}get viewCount(){return this._views.length}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ld),Qe(Gc),Qe(fo),Qe(hi),Qe(Ja),Qe(zc))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function Dd(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}class Yd{}class Ed{}const Od={factoryPathPrefix:\"\",factoryPathSuffix:\".ngfactory\"};let Id=(()=>{class e{constructor(e,t){this._compiler=e,this._config=t||Od}load(e){return this.loadAndCompile(e)}loadAndCompile(e){let[t,i]=e.split(\"#\");return void 0===i&&(i=\"default\"),n(\"zn8P\")(t).then(e=>e[i]).then(e=>Pd(e,t,i)).then(e=>this._compiler.compileModuleAsync(e))}loadFactory(e){let[t,i]=e.split(\"#\"),s=\"NgFactory\";return void 0===i&&(i=\"default\",s=\"\"),n(\"zn8P\")(this._config.factoryPathPrefix+t+this._config.factoryPathSuffix).then(e=>e[i+s]).then(e=>Pd(e,t,i))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(sd),Qe(Ed,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function Pd(e,t,n){if(!e)throw new Error(`Cannot find '${n}' in '${t}'`);return e}const Ad=Sd(null,\"core\",[{provide:Bc,useValue:\"unknown\"},{provide:xd,deps:[fo]},{provide:gd,deps:[]},{provide:Gc,deps:[]}]),Rd=[{provide:Td,useClass:Td,deps:[ld,Gc,fo,hi,Ja,zc]},{provide:Cl,deps:[ld],useFactory:function(e){let t=[];return e.onStable.subscribe(()=>{for(;t.length;)t.pop()()}),function(e){t.push(e)}}},{provide:zc,useClass:zc,deps:[[new le,Nc]]},{provide:sd,useClass:sd,deps:[]},Wc,{provide:fl,useFactory:function(){return yl},deps:[]},{provide:_l,useFactory:function(){return bl},deps:[]},{provide:Jc,useFactory:function(e){return mc(e=e||\"undefined\"!=typeof $localize&&$localize.locale||\"en-US\"),e},deps:[[new ae(Jc),new le,new de]]},{provide:Kc,useValue:\"USD\"}];let Hd=(()=>{class e{constructor(e){}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)(Qe(Td))},providers:Rd}),e})(),jd=null;function Fd(){return jd}const Nd=new Ve(\"DocumentToken\");let zd=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:Vd,token:e,providedIn:\"platform\"}),e})();function Vd(){return Qe(Ud)}const Wd=new Ve(\"Location Initialized\");let Ud=(()=>{class e extends zd{constructor(e){super(),this._doc=e,this._init()}_init(){this.location=Fd().getLocation(),this._history=Fd().getHistory()}getBaseHrefFromDOM(){return Fd().getBaseHref(this._doc)}onPopState(e){Fd().getGlobalEventTarget(this._doc,\"window\").addEventListener(\"popstate\",e,!1)}onHashChange(e){Fd().getGlobalEventTarget(this._doc,\"window\").addEventListener(\"hashchange\",e,!1)}get href(){return this.location.href}get protocol(){return this.location.protocol}get hostname(){return this.location.hostname}get port(){return this.location.port}get pathname(){return this.location.pathname}get search(){return this.location.search}get hash(){return this.location.hash}set pathname(e){this.location.pathname=e}pushState(e,t,n){$d()?this._history.pushState(e,t,n):this.location.hash=n}replaceState(e,t,n){$d()?this._history.replaceState(e,t,n):this.location.hash=n}forward(){this._history.forward()}back(){this._history.back()}getState(){return this._history.state}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({factory:Bd,token:e,providedIn:\"platform\"}),e})();function $d(){return!!window.history.pushState}function Bd(){return new Ud(Qe(Nd))}function qd(e,t){if(0==e.length)return t;if(0==t.length)return e;let n=0;return e.endsWith(\"/\")&&n++,t.startsWith(\"/\")&&n++,2==n?e+t.substring(1):1==n?e+t:e+\"/\"+t}function Gd(e){const t=e.match(/#|\\?|$/),n=t&&t.index||e.length;return e.slice(0,n-(\"/\"===e[n-1]?1:0))+e.slice(n)}function Jd(e){return e&&\"?\"!==e[0]?\"?\"+e:e}let Kd=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:Zd,token:e,providedIn:\"root\"}),e})();function Zd(e){const t=Qe(Nd).location;return new Xd(Qe(zd),t&&t.origin||\"\")}const Qd=new Ve(\"appBaseHref\");let Xd=(()=>{class e extends Kd{constructor(e,t){if(super(),this._platformLocation=e,null==t&&(t=this._platformLocation.getBaseHrefFromDOM()),null==t)throw new Error(\"No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.\");this._baseHref=t}onPopState(e){this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e)}getBaseHref(){return this._baseHref}prepareExternalUrl(e){return qd(this._baseHref,e)}path(e=!1){const t=this._platformLocation.pathname+Jd(this._platformLocation.search),n=this._platformLocation.hash;return n&&e?`${t}${n}`:t}pushState(e,t,n,i){const s=this.prepareExternalUrl(n+Jd(i));this._platformLocation.pushState(e,t,s)}replaceState(e,t,n,i){const s=this.prepareExternalUrl(n+Jd(i));this._platformLocation.replaceState(e,t,s)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(zd),Qe(Qd,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),eu=(()=>{class e extends Kd{constructor(e,t){super(),this._platformLocation=e,this._baseHref=\"\",null!=t&&(this._baseHref=t)}onPopState(e){this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e)}getBaseHref(){return this._baseHref}path(e=!1){let t=this._platformLocation.hash;return null==t&&(t=\"#\"),t.length>0?t.substring(1):t}prepareExternalUrl(e){const t=qd(this._baseHref,e);return t.length>0?\"#\"+t:t}pushState(e,t,n,i){let s=this.prepareExternalUrl(n+Jd(i));0==s.length&&(s=this._platformLocation.pathname),this._platformLocation.pushState(e,t,s)}replaceState(e,t,n,i){let s=this.prepareExternalUrl(n+Jd(i));0==s.length&&(s=this._platformLocation.pathname),this._platformLocation.replaceState(e,t,s)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(zd),Qe(Qd,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),tu=(()=>{class e{constructor(e,t){this._subject=new yc,this._urlChangeListeners=[],this._platformStrategy=e;const n=this._platformStrategy.getBaseHref();this._platformLocation=t,this._baseHref=Gd(iu(n)),this._platformStrategy.onPopState(e=>{this._subject.emit({url:this.path(!0),pop:!0,state:e.state,type:e.type})})}path(e=!1){return this.normalize(this._platformStrategy.path(e))}getState(){return this._platformLocation.getState()}isCurrentPathEqualTo(e,t=\"\"){return this.path()==this.normalize(e+Jd(t))}normalize(t){return e.stripTrailingSlash(function(e,t){return e&&t.startsWith(e)?t.substring(e.length):t}(this._baseHref,iu(t)))}prepareExternalUrl(e){return e&&\"/\"!==e[0]&&(e=\"/\"+e),this._platformStrategy.prepareExternalUrl(e)}go(e,t=\"\",n=null){this._platformStrategy.pushState(n,\"\",e,t),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+Jd(t)),n)}replaceState(e,t=\"\",n=null){this._platformStrategy.replaceState(n,\"\",e,t),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+Jd(t)),n)}forward(){this._platformStrategy.forward()}back(){this._platformStrategy.back()}onUrlChange(e){this._urlChangeListeners.push(e),this.subscribe(e=>{this._notifyUrlChangeListeners(e.url,e.state)})}_notifyUrlChangeListeners(e=\"\",t){this._urlChangeListeners.forEach(n=>n(e,t))}subscribe(e,t,n){return this._subject.subscribe({next:e,error:t,complete:n})}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Kd),Qe(zd))},e.normalizeQueryParams=Jd,e.joinWithSlash=qd,e.stripTrailingSlash=Gd,e.\\u0275prov=pe({factory:nu,token:e,providedIn:\"root\"}),e})();function nu(){return new tu(Qe(Kd),Qe(zd))}function iu(e){return e.replace(/\\/index.html$/,\"\")}const su=function(){var e={Zero:0,One:1,Two:2,Few:3,Many:4,Other:5};return e[e.Zero]=\"Zero\",e[e.One]=\"One\",e[e.Two]=\"Two\",e[e.Few]=\"Few\",e[e.Many]=\"Many\",e[e.Other]=\"Other\",e}(),ru=Il;class ou{}let au=(()=>{class e extends ou{constructor(e){super(),this.locale=e}getPluralCategory(e,t){switch(ru(t||this.locale)(e)){case su.Zero:return\"zero\";case su.One:return\"one\";case su.Two:return\"two\";case su.Few:return\"few\";case su.Many:return\"many\";default:return\"other\"}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Jc))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function lu(e,t){t=encodeURIComponent(t);for(const n of e.split(\";\")){const e=n.indexOf(\"=\"),[i,s]=-1==e?[n,\"\"]:[n.slice(0,e),n.slice(e+1)];if(i.trim()===t)return decodeURIComponent(s)}return null}let cu=(()=>{class e{constructor(e,t,n,i){this._iterableDiffers=e,this._keyValueDiffers=t,this._ngEl=n,this._renderer=i,this._iterableDiffer=null,this._keyValueDiffer=null,this._initialClasses=[],this._rawClass=null}set klass(e){this._removeClasses(this._initialClasses),this._initialClasses=\"string\"==typeof e?e.split(/\\s+/):[],this._applyClasses(this._initialClasses),this._applyClasses(this._rawClass)}set ngClass(e){this._removeClasses(this._rawClass),this._applyClasses(this._initialClasses),this._iterableDiffer=null,this._keyValueDiffer=null,this._rawClass=\"string\"==typeof e?e.split(/\\s+/):e,this._rawClass&&(So(this._rawClass)?this._iterableDiffer=this._iterableDiffers.find(this._rawClass).create():this._keyValueDiffer=this._keyValueDiffers.find(this._rawClass).create())}ngDoCheck(){if(this._iterableDiffer){const e=this._iterableDiffer.diff(this._rawClass);e&&this._applyIterableChanges(e)}else if(this._keyValueDiffer){const e=this._keyValueDiffer.diff(this._rawClass);e&&this._applyKeyValueChanges(e)}}_applyKeyValueChanges(e){e.forEachAddedItem(e=>this._toggleClass(e.key,e.currentValue)),e.forEachChangedItem(e=>this._toggleClass(e.key,e.currentValue)),e.forEachRemovedItem(e=>{e.previousValue&&this._toggleClass(e.key,!1)})}_applyIterableChanges(e){e.forEachAddedItem(e=>{if(\"string\"!=typeof e.item)throw new Error(`NgClass can only toggle CSS classes expressed as strings, got ${Se(e.item)}`);this._toggleClass(e.item,!0)}),e.forEachRemovedItem(e=>this._toggleClass(e.item,!1))}_applyClasses(e){e&&(Array.isArray(e)||e instanceof Set?e.forEach(e=>this._toggleClass(e,!0)):Object.keys(e).forEach(t=>this._toggleClass(t,!!e[t])))}_removeClasses(e){e&&(Array.isArray(e)||e instanceof Set?e.forEach(e=>this._toggleClass(e,!1)):Object.keys(e).forEach(e=>this._toggleClass(e,!1)))}_toggleClass(e,t){(e=e.trim())&&e.split(/\\s+/g).forEach(e=>{t?this._renderer.addClass(this._ngEl.nativeElement,e):this._renderer.removeClass(this._ngEl.nativeElement,e)})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(fl),Eo(_l),Eo(Ka),Eo(el))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngClass\",\"\"]],inputs:{klass:[\"class\",\"klass\"],ngClass:\"ngClass\"}}),e})();class du{constructor(e,t,n,i){this.$implicit=e,this.ngForOf=t,this.index=n,this.count=i}get first(){return 0===this.index}get last(){return this.index===this.count-1}get even(){return this.index%2==0}get odd(){return!this.even}}let uu=(()=>{class e{constructor(e,t,n){this._viewContainer=e,this._template=t,this._differs=n,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}set ngForOf(e){this._ngForOf=e,this._ngForOfDirty=!0}set ngForTrackBy(e){Si()&&null!=e&&\"function\"!=typeof e&&console&&console.warn&&console.warn(`trackBy must be a function, but received ${JSON.stringify(e)}. `+\"See https://angular.io/api/common/NgForOf#change-propagation for more information.\"),this._trackByFn=e}get ngForTrackBy(){return this._trackByFn}set ngForTemplate(e){e&&(this._template=e)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const n=this._ngForOf;if(!this._differ&&n)try{this._differ=this._differs.find(n).create(this.ngForTrackBy)}catch(t){throw new Error(`Cannot find a differ supporting object '${n}' of type '${e=n,e.name||typeof e}'. NgFor only supports binding to Iterables such as Arrays.`)}}var e;if(this._differ){const e=this._differ.diff(this._ngForOf);e&&this._applyChanges(e)}}_applyChanges(e){const t=[];e.forEachOperation((e,n,i)=>{if(null==e.previousIndex){const n=this._viewContainer.createEmbeddedView(this._template,new du(null,this._ngForOf,-1,-1),null===i?void 0:i),s=new hu(e,n);t.push(s)}else if(null==i)this._viewContainer.remove(null===n?void 0:n);else if(null!==n){const s=this._viewContainer.get(n);this._viewContainer.move(s,i);const r=new hu(e,s);t.push(r)}});for(let n=0;n{this._viewContainer.get(e.currentIndex).context.$implicit=e.item})}_perViewChange(e,t){e.context.$implicit=t.item}static ngTemplateContextGuard(e,t){return!0}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml),Eo(vl),Eo(fl))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngFor\",\"\",\"ngForOf\",\"\"]],inputs:{ngForOf:\"ngForOf\",ngForTrackBy:\"ngForTrackBy\",ngForTemplate:\"ngForTemplate\"}}),e})();class hu{constructor(e,t){this.record=e,this.view=t}}let mu=(()=>{class e{constructor(e,t){this._viewContainer=e,this._context=new pu,this._thenTemplateRef=null,this._elseTemplateRef=null,this._thenViewRef=null,this._elseViewRef=null,this._thenTemplateRef=t}set ngIf(e){this._context.$implicit=this._context.ngIf=e,this._updateView()}set ngIfThen(e){fu(\"ngIfThen\",e),this._thenTemplateRef=e,this._thenViewRef=null,this._updateView()}set ngIfElse(e){fu(\"ngIfElse\",e),this._elseTemplateRef=e,this._elseViewRef=null,this._updateView()}_updateView(){this._context.$implicit?this._thenViewRef||(this._viewContainer.clear(),this._elseViewRef=null,this._thenTemplateRef&&(this._thenViewRef=this._viewContainer.createEmbeddedView(this._thenTemplateRef,this._context))):this._elseViewRef||(this._viewContainer.clear(),this._thenViewRef=null,this._elseTemplateRef&&(this._elseViewRef=this._viewContainer.createEmbeddedView(this._elseTemplateRef,this._context)))}static ngTemplateContextGuard(e,t){return!0}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml),Eo(vl))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngIf\",\"\"]],inputs:{ngIf:\"ngIf\",ngIfThen:\"ngIfThen\",ngIfElse:\"ngIfElse\"}}),e})();class pu{constructor(){this.$implicit=null,this.ngIf=null}}function fu(e,t){if(t&&!t.createEmbeddedView)throw new Error(`${e} must be a TemplateRef, but received '${Se(t)}'.`)}class _u{constructor(e,t){this._viewContainerRef=e,this._templateRef=t,this._created=!1}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(e){e&&!this._created?this.create():!e&&this._created&&this.destroy()}}let gu=(()=>{class e{constructor(){this._defaultUsed=!1,this._caseCount=0,this._lastCaseCheckIndex=0,this._lastCasesMatched=!1}set ngSwitch(e){this._ngSwitch=e,0===this._caseCount&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(e){this._defaultViews||(this._defaultViews=[]),this._defaultViews.push(e)}_matchCase(e){const t=e==this._ngSwitch;return this._lastCasesMatched=this._lastCasesMatched||t,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),t}_updateDefaultCases(e){if(this._defaultViews&&e!==this._defaultUsed){this._defaultUsed=e;for(let t=0;t{class e{constructor(e,t,n){this.ngSwitch=n,n._addCase(),this._view=new _u(e,t)}ngDoCheck(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml),Eo(vl),Eo(gu,1))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngSwitchCase\",\"\"]],inputs:{ngSwitchCase:\"ngSwitchCase\"}}),e})(),bu=(()=>{class e{constructor(e,t,n){n._addDefault(new _u(e,t))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml),Eo(vl),Eo(gu,1))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngSwitchDefault\",\"\"]]}),e})(),vu=(()=>{class e{constructor(e,t,n){this._ngEl=e,this._differs=t,this._renderer=n,this._ngStyle=null,this._differ=null}set ngStyle(e){this._ngStyle=e,!this._differ&&e&&(this._differ=this._differs.find(e).create())}ngDoCheck(){if(this._differ){const e=this._differ.diff(this._ngStyle);e&&this._applyChanges(e)}}_setStyle(e,t){const[n,i]=e.split(\".\");null!=(t=null!=t&&i?`${t}${i}`:t)?this._renderer.setStyle(this._ngEl.nativeElement,n,t):this._renderer.removeStyle(this._ngEl.nativeElement,n)}_applyChanges(e){e.forEachRemovedItem(e=>this._setStyle(e.key,null)),e.forEachAddedItem(e=>this._setStyle(e.key,e.currentValue)),e.forEachChangedItem(e=>this._setStyle(e.key,e.currentValue))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(_l),Eo(el))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngStyle\",\"\"]],inputs:{ngStyle:\"ngStyle\"}}),e})(),wu=(()=>{class e{constructor(e){this._viewContainerRef=e,this._viewRef=null,this.ngTemplateOutletContext=null,this.ngTemplateOutlet=null}ngOnChanges(e){if(this._shouldRecreateView(e)){const e=this._viewContainerRef;this._viewRef&&e.remove(e.indexOf(this._viewRef)),this._viewRef=this.ngTemplateOutlet?e.createEmbeddedView(this.ngTemplateOutlet,this.ngTemplateOutletContext):null}else this._viewRef&&this.ngTemplateOutletContext&&this._updateExistingContext(this.ngTemplateOutletContext)}_shouldRecreateView(e){const t=e.ngTemplateOutletContext;return!!e.ngTemplateOutlet||t&&this._hasContextShapeChanged(t)}_hasContextShapeChanged(e){const t=Object.keys(e.previousValue||{}),n=Object.keys(e.currentValue||{});if(t.length===n.length){for(let e of n)if(-1===t.indexOf(e))return!0;return!1}return!0}_updateExistingContext(e){for(let t of Object.keys(e))this._viewRef.context[t]=this.ngTemplateOutletContext[t]}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngTemplateOutlet\",\"\"]],inputs:{ngTemplateOutletContext:\"ngTemplateOutletContext\",ngTemplateOutlet:\"ngTemplateOutlet\"},features:[Ra]}),e})(),Mu=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[{provide:ou,useClass:au}]}),e})();function ku(e){return\"browser\"===e}let Su=(()=>{class e{}return e.\\u0275prov=pe({token:e,providedIn:\"root\",factory:()=>new Lu(Qe(Nd),window,Qe(hi))}),e})();class Lu{constructor(e,t,n){this.document=e,this.window=t,this.errorHandler=n,this.offset=()=>[0,0]}setOffset(e){this.offset=Array.isArray(e)?()=>e:e}getScrollPosition(){return this.supportScrollRestoration()?[this.window.scrollX,this.window.scrollY]:[0,0]}scrollToPosition(e){this.supportScrollRestoration()&&this.window.scrollTo(e[0],e[1])}scrollToAnchor(e){if(this.supportScrollRestoration()){e=this.window.CSS&&this.window.CSS.escape?this.window.CSS.escape(e):e.replace(/(\\\"|\\'\\ |:|\\.|\\[|\\]|,|=)/g,\"\\\\$1\");try{const t=this.document.querySelector(`#${e}`);if(t)return void this.scrollToElement(t);const n=this.document.querySelector(`[name='${e}']`);if(n)return void this.scrollToElement(n)}catch(t){this.errorHandler.handleError(t)}}}setHistoryScrollRestoration(e){if(this.supportScrollRestoration()){const t=this.window.history;t&&t.scrollRestoration&&(t.scrollRestoration=e)}}scrollToElement(e){const t=e.getBoundingClientRect(),n=t.left+this.window.pageXOffset,i=t.top+this.window.pageYOffset,s=this.offset();this.window.scrollTo(n-s[0],i-s[1])}supportScrollRestoration(){try{return!!this.window&&!!this.window.scrollTo}catch(e){return!1}}}function xu(...e){let t=e[e.length-1];return C(t)?(e.pop(),N(e,t)):q(e)}function Cu(e,t){return V(e,t,1)}function Tu(e,t){return function(n){return n.lift(new Du(e,t))}}class Du{constructor(e,t){this.predicate=e,this.thisArg=t}call(e,t){return t.subscribe(new Yu(e,this.predicate,this.thisArg))}}class Yu extends p{constructor(e,t,n){super(e),this.predicate=t,this.thisArg=n,this.count=0}_next(e){let t;try{t=this.predicate.call(this.thisArg,e,this.count++)}catch(n){return void this.destination.error(n)}t&&this.destination.next(e)}}class Eu{}class Ou{}class Iu{constructor(e){this.normalizedNames=new Map,this.lazyUpdate=null,e?this.lazyInit=\"string\"==typeof e?()=>{this.headers=new Map,e.split(\"\\n\").forEach(e=>{const t=e.indexOf(\":\");if(t>0){const n=e.slice(0,t),i=n.toLowerCase(),s=e.slice(t+1).trim();this.maybeSetNormalizedName(n,i),this.headers.has(i)?this.headers.get(i).push(s):this.headers.set(i,[s])}})}:()=>{this.headers=new Map,Object.keys(e).forEach(t=>{let n=e[t];const i=t.toLowerCase();\"string\"==typeof n&&(n=[n]),n.length>0&&(this.headers.set(i,n),this.maybeSetNormalizedName(t,i))})}:this.headers=new Map}has(e){return this.init(),this.headers.has(e.toLowerCase())}get(e){this.init();const t=this.headers.get(e.toLowerCase());return t&&t.length>0?t[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(e){return this.init(),this.headers.get(e.toLowerCase())||null}append(e,t){return this.clone({name:e,value:t,op:\"a\"})}set(e,t){return this.clone({name:e,value:t,op:\"s\"})}delete(e,t){return this.clone({name:e,value:t,op:\"d\"})}maybeSetNormalizedName(e,t){this.normalizedNames.has(t)||this.normalizedNames.set(t,e)}init(){this.lazyInit&&(this.lazyInit instanceof Iu?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(e=>this.applyUpdate(e)),this.lazyUpdate=null))}copyFrom(e){e.init(),Array.from(e.headers.keys()).forEach(t=>{this.headers.set(t,e.headers.get(t)),this.normalizedNames.set(t,e.normalizedNames.get(t))})}clone(e){const t=new Iu;return t.lazyInit=this.lazyInit&&this.lazyInit instanceof Iu?this.lazyInit:this,t.lazyUpdate=(this.lazyUpdate||[]).concat([e]),t}applyUpdate(e){const t=e.name.toLowerCase();switch(e.op){case\"a\":case\"s\":let n=e.value;if(\"string\"==typeof n&&(n=[n]),0===n.length)return;this.maybeSetNormalizedName(e.name,t);const i=(\"a\"===e.op?this.headers.get(t):void 0)||[];i.push(...n),this.headers.set(t,i);break;case\"d\":const s=e.value;if(s){let e=this.headers.get(t);if(!e)return;e=e.filter(e=>-1===s.indexOf(e)),0===e.length?(this.headers.delete(t),this.normalizedNames.delete(t)):this.headers.set(t,e)}else this.headers.delete(t),this.normalizedNames.delete(t)}}forEach(e){this.init(),Array.from(this.normalizedNames.keys()).forEach(t=>e(this.normalizedNames.get(t),this.headers.get(t)))}}class Pu{encodeKey(e){return Au(e)}encodeValue(e){return Au(e)}decodeKey(e){return decodeURIComponent(e)}decodeValue(e){return decodeURIComponent(e)}}function Au(e){return encodeURIComponent(e).replace(/%40/gi,\"@\").replace(/%3A/gi,\":\").replace(/%24/gi,\"$\").replace(/%2C/gi,\",\").replace(/%3B/gi,\";\").replace(/%2B/gi,\"+\").replace(/%3D/gi,\"=\").replace(/%3F/gi,\"?\").replace(/%2F/gi,\"/\")}class Ru{constructor(e={}){if(this.updates=null,this.cloneFrom=null,this.encoder=e.encoder||new Pu,e.fromString){if(e.fromObject)throw new Error(\"Cannot specify both fromString and fromObject.\");this.map=function(e,t){const n=new Map;return e.length>0&&e.split(\"&\").forEach(e=>{const i=e.indexOf(\"=\"),[s,r]=-1==i?[t.decodeKey(e),\"\"]:[t.decodeKey(e.slice(0,i)),t.decodeValue(e.slice(i+1))],o=n.get(s)||[];o.push(r),n.set(s,o)}),n}(e.fromString,this.encoder)}else e.fromObject?(this.map=new Map,Object.keys(e.fromObject).forEach(t=>{const n=e.fromObject[t];this.map.set(t,Array.isArray(n)?n:[n])})):this.map=null}has(e){return this.init(),this.map.has(e)}get(e){this.init();const t=this.map.get(e);return t?t[0]:null}getAll(e){return this.init(),this.map.get(e)||null}keys(){return this.init(),Array.from(this.map.keys())}append(e,t){return this.clone({param:e,value:t,op:\"a\"})}set(e,t){return this.clone({param:e,value:t,op:\"s\"})}delete(e,t){return this.clone({param:e,value:t,op:\"d\"})}toString(){return this.init(),this.keys().map(e=>{const t=this.encoder.encodeKey(e);return this.map.get(e).map(e=>t+\"=\"+this.encoder.encodeValue(e)).join(\"&\")}).filter(e=>\"\"!==e).join(\"&\")}clone(e){const t=new Ru({encoder:this.encoder});return t.cloneFrom=this.cloneFrom||this,t.updates=(this.updates||[]).concat([e]),t}init(){null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(e=>this.map.set(e,this.cloneFrom.map.get(e))),this.updates.forEach(e=>{switch(e.op){case\"a\":case\"s\":const t=(\"a\"===e.op?this.map.get(e.param):void 0)||[];t.push(e.value),this.map.set(e.param,t);break;case\"d\":if(void 0===e.value){this.map.delete(e.param);break}{let t=this.map.get(e.param)||[];const n=t.indexOf(e.value);-1!==n&&t.splice(n,1),t.length>0?this.map.set(e.param,t):this.map.delete(e.param)}}}),this.cloneFrom=this.updates=null)}}function Hu(e){return\"undefined\"!=typeof ArrayBuffer&&e instanceof ArrayBuffer}function ju(e){return\"undefined\"!=typeof Blob&&e instanceof Blob}function Fu(e){return\"undefined\"!=typeof FormData&&e instanceof FormData}class Nu{constructor(e,t,n,i){let s;if(this.url=t,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType=\"json\",this.method=e.toUpperCase(),function(e){switch(e){case\"DELETE\":case\"GET\":case\"HEAD\":case\"OPTIONS\":case\"JSONP\":return!1;default:return!0}}(this.method)||i?(this.body=void 0!==n?n:null,s=i):s=n,s&&(this.reportProgress=!!s.reportProgress,this.withCredentials=!!s.withCredentials,s.responseType&&(this.responseType=s.responseType),s.headers&&(this.headers=s.headers),s.params&&(this.params=s.params)),this.headers||(this.headers=new Iu),this.params){const e=this.params.toString();if(0===e.length)this.urlWithParams=t;else{const n=t.indexOf(\"?\");this.urlWithParams=t+(-1===n?\"?\":nt.set(n,e.setHeaders[n]),a)),e.setParams&&(l=Object.keys(e.setParams).reduce((t,n)=>t.set(n,e.setParams[n]),l)),new Nu(t,n,s,{params:l,headers:a,reportProgress:o,responseType:i,withCredentials:r})}}const zu=function(){var e={Sent:0,UploadProgress:1,ResponseHeader:2,DownloadProgress:3,Response:4,User:5};return e[e.Sent]=\"Sent\",e[e.UploadProgress]=\"UploadProgress\",e[e.ResponseHeader]=\"ResponseHeader\",e[e.DownloadProgress]=\"DownloadProgress\",e[e.Response]=\"Response\",e[e.User]=\"User\",e}();class Vu{constructor(e,t=200,n=\"OK\"){this.headers=e.headers||new Iu,this.status=void 0!==e.status?e.status:t,this.statusText=e.statusText||n,this.url=e.url||null,this.ok=this.status>=200&&this.status<300}}class Wu extends Vu{constructor(e={}){super(e),this.type=zu.ResponseHeader}clone(e={}){return new Wu({headers:e.headers||this.headers,status:void 0!==e.status?e.status:this.status,statusText:e.statusText||this.statusText,url:e.url||this.url||void 0})}}class Uu extends Vu{constructor(e={}){super(e),this.type=zu.Response,this.body=void 0!==e.body?e.body:null}clone(e={}){return new Uu({body:void 0!==e.body?e.body:this.body,headers:e.headers||this.headers,status:void 0!==e.status?e.status:this.status,statusText:e.statusText||this.statusText,url:e.url||this.url||void 0})}}class $u extends Vu{constructor(e){super(e,0,\"Unknown Error\"),this.name=\"HttpErrorResponse\",this.ok=!1,this.message=this.status>=200&&this.status<300?`Http failure during parsing for ${e.url||\"(unknown url)\"}`:`Http failure response for ${e.url||\"(unknown url)\"}: ${e.status} ${e.statusText}`,this.error=e.error||null}}function Bu(e,t){return{body:t,headers:e.headers,observe:e.observe,params:e.params,reportProgress:e.reportProgress,responseType:e.responseType,withCredentials:e.withCredentials}}let qu=(()=>{class e{constructor(e){this.handler=e}request(e,t,n={}){let i;if(e instanceof Nu)i=e;else{let s=void 0;s=n.headers instanceof Iu?n.headers:new Iu(n.headers);let r=void 0;n.params&&(r=n.params instanceof Ru?n.params:new Ru({fromObject:n.params})),i=new Nu(e,t,void 0!==n.body?n.body:null,{headers:s,params:r,reportProgress:n.reportProgress,responseType:n.responseType||\"json\",withCredentials:n.withCredentials})}const s=xu(i).pipe(Cu(e=>this.handler.handle(e)));if(e instanceof Nu||\"events\"===n.observe)return s;const r=s.pipe(Tu(e=>e instanceof Uu));switch(n.observe||\"body\"){case\"body\":switch(i.responseType){case\"arraybuffer\":return r.pipe(H(e=>{if(null!==e.body&&!(e.body instanceof ArrayBuffer))throw new Error(\"Response is not an ArrayBuffer.\");return e.body}));case\"blob\":return r.pipe(H(e=>{if(null!==e.body&&!(e.body instanceof Blob))throw new Error(\"Response is not a Blob.\");return e.body}));case\"text\":return r.pipe(H(e=>{if(null!==e.body&&\"string\"!=typeof e.body)throw new Error(\"Response is not a string.\");return e.body}));case\"json\":default:return r.pipe(H(e=>e.body))}case\"response\":return r;default:throw new Error(`Unreachable: unhandled observe type ${n.observe}}`)}}delete(e,t={}){return this.request(\"DELETE\",e,t)}get(e,t={}){return this.request(\"GET\",e,t)}head(e,t={}){return this.request(\"HEAD\",e,t)}jsonp(e,t){return this.request(\"JSONP\",e,{params:(new Ru).append(t,\"JSONP_CALLBACK\"),observe:\"body\",responseType:\"json\"})}options(e,t={}){return this.request(\"OPTIONS\",e,t)}patch(e,t,n={}){return this.request(\"PATCH\",e,Bu(n,t))}post(e,t,n={}){return this.request(\"POST\",e,Bu(n,t))}put(e,t,n={}){return this.request(\"PUT\",e,Bu(n,t))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Eu))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class Gu{constructor(e,t){this.next=e,this.interceptor=t}handle(e){return this.interceptor.intercept(e,this.next)}}const Ju=new Ve(\"HTTP_INTERCEPTORS\");let Ku=(()=>{class e{intercept(e,t){return t.handle(e)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const Zu=/^\\)\\]\\}',?\\n/;class Qu{}let Xu=(()=>{class e{constructor(){}build(){return new XMLHttpRequest}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),eh=(()=>{class e{constructor(e){this.xhrFactory=e}handle(e){if(\"JSONP\"===e.method)throw new Error(\"Attempted to construct Jsonp request without JsonpClientModule installed.\");return new v(t=>{const n=this.xhrFactory.build();if(n.open(e.method,e.urlWithParams),e.withCredentials&&(n.withCredentials=!0),e.headers.forEach((e,t)=>n.setRequestHeader(e,t.join(\",\"))),e.headers.has(\"Accept\")||n.setRequestHeader(\"Accept\",\"application/json, text/plain, */*\"),!e.headers.has(\"Content-Type\")){const t=e.detectContentTypeHeader();null!==t&&n.setRequestHeader(\"Content-Type\",t)}if(e.responseType){const t=e.responseType.toLowerCase();n.responseType=\"json\"!==t?t:\"text\"}const i=e.serializeBody();let s=null;const r=()=>{if(null!==s)return s;const t=1223===n.status?204:n.status,i=n.statusText||\"OK\",r=new Iu(n.getAllResponseHeaders()),o=function(e){return\"responseURL\"in e&&e.responseURL?e.responseURL:/^X-Request-URL:/m.test(e.getAllResponseHeaders())?e.getResponseHeader(\"X-Request-URL\"):null}(n)||e.url;return s=new Wu({headers:r,status:t,statusText:i,url:o}),s},o=()=>{let{headers:i,status:s,statusText:o,url:a}=r(),l=null;204!==s&&(l=void 0===n.response?n.responseText:n.response),0===s&&(s=l?200:0);let c=s>=200&&s<300;if(\"json\"===e.responseType&&\"string\"==typeof l){const e=l;l=l.replace(Zu,\"\");try{l=\"\"!==l?JSON.parse(l):null}catch(d){l=e,c&&(c=!1,l={error:d,text:l})}}c?(t.next(new Uu({body:l,headers:i,status:s,statusText:o,url:a||void 0})),t.complete()):t.error(new $u({error:l,headers:i,status:s,statusText:o,url:a||void 0}))},a=e=>{const{url:i}=r(),s=new $u({error:e,status:n.status||0,statusText:n.statusText||\"Unknown Error\",url:i||void 0});t.error(s)};let l=!1;const c=i=>{l||(t.next(r()),l=!0);let s={type:zu.DownloadProgress,loaded:i.loaded};i.lengthComputable&&(s.total=i.total),\"text\"===e.responseType&&n.responseText&&(s.partialText=n.responseText),t.next(s)},d=e=>{let n={type:zu.UploadProgress,loaded:e.loaded};e.lengthComputable&&(n.total=e.total),t.next(n)};return n.addEventListener(\"load\",o),n.addEventListener(\"error\",a),e.reportProgress&&(n.addEventListener(\"progress\",c),null!==i&&n.upload&&n.upload.addEventListener(\"progress\",d)),n.send(i),t.next({type:zu.Sent}),()=>{n.removeEventListener(\"error\",a),n.removeEventListener(\"load\",o),e.reportProgress&&(n.removeEventListener(\"progress\",c),null!==i&&n.upload&&n.upload.removeEventListener(\"progress\",d)),n.abort()}})}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Qu))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const th=new Ve(\"XSRF_COOKIE_NAME\"),nh=new Ve(\"XSRF_HEADER_NAME\");class ih{}let sh=(()=>{class e{constructor(e,t,n){this.doc=e,this.platform=t,this.cookieName=n,this.lastCookieString=\"\",this.lastToken=null,this.parseCount=0}getToken(){if(\"server\"===this.platform)return null;const e=this.doc.cookie||\"\";return e!==this.lastCookieString&&(this.parseCount++,this.lastToken=lu(e,this.cookieName),this.lastCookieString=e),this.lastToken}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd),Qe(Bc),Qe(th))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),rh=(()=>{class e{constructor(e,t){this.tokenService=e,this.headerName=t}intercept(e,t){const n=e.url.toLowerCase();if(\"GET\"===e.method||\"HEAD\"===e.method||n.startsWith(\"http://\")||n.startsWith(\"https://\"))return t.handle(e);const i=this.tokenService.getToken();return null===i||e.headers.has(this.headerName)||(e=e.clone({headers:e.headers.set(this.headerName,i)})),t.handle(e)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ih),Qe(nh))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),oh=(()=>{class e{constructor(e,t){this.backend=e,this.injector=t,this.chain=null}handle(e){if(null===this.chain){const e=this.injector.get(Ju,[]);this.chain=e.reduceRight((e,t)=>new Gu(e,t),this.backend)}return this.chain.handle(e)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Ou),Qe(fo))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),ah=(()=>{class e{static disable(){return{ngModule:e,providers:[{provide:rh,useClass:Ku}]}}static withOptions(t={}){return{ngModule:e,providers:[t.cookieName?{provide:th,useValue:t.cookieName}:[],t.headerName?{provide:nh,useValue:t.headerName}:[]]}}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[rh,{provide:Ju,useExisting:rh,multi:!0},{provide:ih,useClass:sh},{provide:th,useValue:\"XSRF-TOKEN\"},{provide:nh,useValue:\"X-XSRF-TOKEN\"}]}),e})(),lh=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[qu,{provide:Eu,useClass:oh},eh,{provide:Ou,useExisting:eh},Xu,{provide:Qu,useExisting:Xu}],imports:[[ah.withOptions({cookieName:\"XSRF-TOKEN\",headerName:\"X-XSRF-TOKEN\"})]]}),e})();function ch(...e){if(1===e.length){const t=e[0];if(l(t))return dh(t,null);if(c(t)&&Object.getPrototypeOf(t)===Object.prototype){const e=Object.keys(t);return dh(e.map(e=>t[e]),e)}}if(\"function\"==typeof e[e.length-1]){const t=e.pop();return dh(e=1===e.length&&l(e[0])?e[0]:e,null).pipe(H(e=>t(...e)))}return dh(e,null)}function dh(e,t){return new v(n=>{const i=e.length;if(0===i)return void n.complete();const s=new Array(i);let r=0,o=0;for(let a=0;a{c||(c=!0,o++),s[a]=e},error:e=>n.error(e),complete:()=>{r++,r!==i&&c||(o===i&&n.next(t?t.reduce((e,t,n)=>(e[t]=s[n],e),{}):s),n.complete())}}))}})}const uh=new Ve(\"NgValueAccessor\"),hh={provide:uh,useExisting:Ce(()=>mh),multi:!0};let mh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this.onChange=e=>{},this.onTouched=()=>{}}writeValue(e){this._renderer.setProperty(this._elementRef.nativeElement,\"checked\",e)}registerOnChange(e){this.onChange=e}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"type\",\"checkbox\",\"formControlName\",\"\"],[\"input\",\"type\",\"checkbox\",\"formControl\",\"\"],[\"input\",\"type\",\"checkbox\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(e){return t.onChange(e.target.checked)}))(\"blur\",(function(){return t.onTouched()}))},features:[Ba([hh])]}),e})();const ph={provide:uh,useExisting:Ce(()=>_h),multi:!0},fh=new Ve(\"CompositionEventMode\");let _h=(()=>{class e{constructor(e,t,n){this._renderer=e,this._elementRef=t,this._compositionMode=n,this.onChange=e=>{},this.onTouched=()=>{},this._composing=!1,null==this._compositionMode&&(this._compositionMode=!function(){const e=Fd()?Fd().getUserAgent():\"\";return/android (\\d+)/.test(e.toLowerCase())}())}writeValue(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",null==e?\"\":e)}registerOnChange(e){this.onChange=e}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}_handleInput(e){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(e)}_compositionStart(){this._composing=!0}_compositionEnd(e){this._composing=!1,this._compositionMode&&this.onChange(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka),Eo(fh,8))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"formControlName\",\"\",3,\"type\",\"checkbox\"],[\"textarea\",\"formControlName\",\"\"],[\"input\",\"formControl\",\"\",3,\"type\",\"checkbox\"],[\"textarea\",\"formControl\",\"\"],[\"input\",\"ngModel\",\"\",3,\"type\",\"checkbox\"],[\"textarea\",\"ngModel\",\"\"],[\"\",\"ngDefaultControl\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"input\",(function(e){return t._handleInput(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))(\"compositionstart\",(function(){return t._compositionStart()}))(\"compositionend\",(function(e){return t._compositionEnd(e.target.value)}))},features:[Ba([ph])]}),e})(),gh=(()=>{class e{get value(){return this.control?this.control.value:null}get valid(){return this.control?this.control.valid:null}get invalid(){return this.control?this.control.invalid:null}get pending(){return this.control?this.control.pending:null}get disabled(){return this.control?this.control.disabled:null}get enabled(){return this.control?this.control.enabled:null}get errors(){return this.control?this.control.errors:null}get pristine(){return this.control?this.control.pristine:null}get dirty(){return this.control?this.control.dirty:null}get touched(){return this.control?this.control.touched:null}get status(){return this.control?this.control.status:null}get untouched(){return this.control?this.control.untouched:null}get statusChanges(){return this.control?this.control.statusChanges:null}get valueChanges(){return this.control?this.control.valueChanges:null}get path(){return null}reset(e){this.control&&this.control.reset(e)}hasError(e,t){return!!this.control&&this.control.hasError(e,t)}getError(e,t){return this.control?this.control.getError(e,t):null}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e}),e})(),yh=(()=>{class e extends gh{get formDirective(){return null}get path(){return null}}return e.\\u0275fac=function(t){return bh(t||e)},e.\\u0275dir=St({type:e,features:[Ya]}),e})();const bh=li(yh);function vh(){throw new Error(\"unimplemented\")}class wh extends gh{constructor(){super(...arguments),this._parent=null,this.name=null,this.valueAccessor=null,this._rawValidators=[],this._rawAsyncValidators=[]}get validator(){return vh()}get asyncValidator(){return vh()}}class Mh{constructor(e){this._cd=e}get ngClassUntouched(){return!!this._cd.control&&this._cd.control.untouched}get ngClassTouched(){return!!this._cd.control&&this._cd.control.touched}get ngClassPristine(){return!!this._cd.control&&this._cd.control.pristine}get ngClassDirty(){return!!this._cd.control&&this._cd.control.dirty}get ngClassValid(){return!!this._cd.control&&this._cd.control.valid}get ngClassInvalid(){return!!this._cd.control&&this._cd.control.invalid}get ngClassPending(){return!!this._cd.control&&this._cd.control.pending}}let kh=(()=>{class e extends Mh{constructor(e){super(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(wh,2))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formControlName\",\"\"],[\"\",\"ngModel\",\"\"],[\"\",\"formControl\",\"\"]],hostVars:14,hostBindings:function(e,t){2&e&&ua(\"ng-untouched\",t.ngClassUntouched)(\"ng-touched\",t.ngClassTouched)(\"ng-pristine\",t.ngClassPristine)(\"ng-dirty\",t.ngClassDirty)(\"ng-valid\",t.ngClassValid)(\"ng-invalid\",t.ngClassInvalid)(\"ng-pending\",t.ngClassPending)},features:[Ya]}),e})(),Sh=(()=>{class e extends Mh{constructor(e){super(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,2))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formGroupName\",\"\"],[\"\",\"formArrayName\",\"\"],[\"\",\"ngModelGroup\",\"\"],[\"\",\"formGroup\",\"\"],[\"form\",3,\"ngNoForm\",\"\"],[\"\",\"ngForm\",\"\"]],hostVars:14,hostBindings:function(e,t){2&e&&ua(\"ng-untouched\",t.ngClassUntouched)(\"ng-touched\",t.ngClassTouched)(\"ng-pristine\",t.ngClassPristine)(\"ng-dirty\",t.ngClassDirty)(\"ng-valid\",t.ngClassValid)(\"ng-invalid\",t.ngClassInvalid)(\"ng-pending\",t.ngClassPending)},features:[Ya]}),e})();function Lh(e){return null==e||0===e.length}const xh=new Ve(\"NgValidators\"),Ch=new Ve(\"NgAsyncValidators\"),Th=/^(?=.{1,254}$)(?=.{1,64}@)[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;class Dh{static min(e){return t=>{if(Lh(t.value)||Lh(e))return null;const n=parseFloat(t.value);return!isNaN(n)&&n{if(Lh(t.value)||Lh(e))return null;const n=parseFloat(t.value);return!isNaN(n)&&n>e?{max:{max:e,actual:t.value}}:null}}static required(e){return Lh(e.value)?{required:!0}:null}static requiredTrue(e){return!0===e.value?null:{required:!0}}static email(e){return Lh(e.value)||Th.test(e.value)?null:{email:!0}}static minLength(e){return t=>{if(Lh(t.value))return null;const n=t.value?t.value.length:0;return n{const n=t.value?t.value.length:0;return n>e?{maxlength:{requiredLength:e,actualLength:n}}:null}}static pattern(e){if(!e)return Dh.nullValidator;let t,n;return\"string\"==typeof e?(n=\"\",\"^\"!==e.charAt(0)&&(n+=\"^\"),n+=e,\"$\"!==e.charAt(e.length-1)&&(n+=\"$\"),t=new RegExp(n)):(n=e.toString(),t=e),e=>{if(Lh(e.value))return null;const i=e.value;return t.test(i)?null:{pattern:{requiredPattern:n,actualValue:i}}}}static nullValidator(e){return null}static compose(e){if(!e)return null;const t=e.filter(Yh);return 0==t.length?null:function(e){return Oh(function(e,t){return t.map(t=>t(e))}(e,t))}}static composeAsync(e){if(!e)return null;const t=e.filter(Yh);return 0==t.length?null:function(e){return ch(function(e,t){return t.map(t=>t(e))}(e,t).map(Eh)).pipe(H(Oh))}}}function Yh(e){return null!=e}function Eh(e){const t=Vo(e)?z(e):e;if(!Wo(t))throw new Error(\"Expected validator to return Promise or Observable.\");return t}function Oh(e){let t={};return e.forEach(e=>{t=null!=e?Object.assign(Object.assign({},t),e):t}),0===Object.keys(t).length?null:t}function Ih(e){return e.validate?t=>e.validate(t):e}function Ph(e){return e.validate?t=>e.validate(t):e}const Ah={provide:uh,useExisting:Ce(()=>Rh),multi:!0};let Rh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this.onChange=e=>{},this.onTouched=()=>{}}writeValue(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",null==e?\"\":e)}registerOnChange(e){this.onChange=t=>{e(\"\"==t?null:parseFloat(t))}}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"type\",\"number\",\"formControlName\",\"\"],[\"input\",\"type\",\"number\",\"formControl\",\"\"],[\"input\",\"type\",\"number\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"input\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},features:[Ba([Ah])]}),e})();const Hh={provide:uh,useExisting:Ce(()=>Fh),multi:!0};let jh=(()=>{class e{constructor(){this._accessors=[]}add(e,t){this._accessors.push([e,t])}remove(e){for(let t=this._accessors.length-1;t>=0;--t)if(this._accessors[t][1]===e)return void this._accessors.splice(t,1)}select(e){this._accessors.forEach(t=>{this._isSameGroup(t,e)&&t[1]!==e&&t[1].fireUncheck(e.value)})}_isSameGroup(e,t){return!!e[0].control&&e[0]._parent===t._control._parent&&e[1].name===t.name}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),Fh=(()=>{class e{constructor(e,t,n,i){this._renderer=e,this._elementRef=t,this._registry=n,this._injector=i,this.onChange=()=>{},this.onTouched=()=>{}}ngOnInit(){this._control=this._injector.get(wh),this._checkName(),this._registry.add(this._control,this)}ngOnDestroy(){this._registry.remove(this)}writeValue(e){this._state=e===this.value,this._renderer.setProperty(this._elementRef.nativeElement,\"checked\",this._state)}registerOnChange(e){this._fn=e,this.onChange=()=>{e(this.value),this._registry.select(this)}}fireUncheck(e){this.writeValue(e)}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}_checkName(){this.name&&this.formControlName&&this.name!==this.formControlName&&this._throwNameError(),!this.name&&this.formControlName&&(this.name=this.formControlName)}_throwNameError(){throw new Error('\\n If you define both a name and a formControlName attribute on your radio button, their values\\n must match. Ex: \\n ')}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka),Eo(jh),Eo(fo))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"type\",\"radio\",\"formControlName\",\"\"],[\"input\",\"type\",\"radio\",\"formControl\",\"\"],[\"input\",\"type\",\"radio\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(){return t.onChange()}))(\"blur\",(function(){return t.onTouched()}))},inputs:{name:\"name\",formControlName:\"formControlName\",value:\"value\"},features:[Ba([Hh])]}),e})();const Nh={provide:uh,useExisting:Ce(()=>zh),multi:!0};let zh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this.onChange=e=>{},this.onTouched=()=>{}}writeValue(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",parseFloat(e))}registerOnChange(e){this.onChange=t=>{e(\"\"==t?null:parseFloat(t))}}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"type\",\"range\",\"formControlName\",\"\"],[\"input\",\"type\",\"range\",\"formControl\",\"\"],[\"input\",\"type\",\"range\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"input\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},features:[Ba([Nh])]}),e})();const Vh='\\n

\\n \\n
\\n\\n In your class:\\n\\n this.myGroup = new FormGroup({\\n firstName: new FormControl()\\n });',Wh='\\n
\\n
\\n \\n
\\n
\\n\\n In your class:\\n\\n this.myGroup = new FormGroup({\\n person: new FormGroup({ firstName: new FormControl() })\\n });',Uh='\\n
\\n
\\n \\n
\\n
';class $h{static controlParentException(){throw new Error(`formControlName must be used with a parent formGroup directive. You'll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n ${Vh}`)}static ngModelGroupException(){throw new Error(`formControlName cannot be used with an ngModelGroup parent. It is only compatible with parents\\n that also have a \"form\" prefix: formGroupName, formArrayName, or formGroup.\\n\\n Option 1: Update the parent to be formGroupName (reactive form strategy)\\n\\n ${Wh}\\n\\n Option 2: Use ngModel instead of formControlName (template-driven strategy)\\n\\n ${Uh}`)}static missingFormException(){throw new Error(`formGroup expects a FormGroup instance. Please pass one in.\\n\\n Example:\\n\\n ${Vh}`)}static groupParentException(){throw new Error(`formGroupName must be used with a parent formGroup directive. You'll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n ${Wh}`)}static arrayParentException(){throw new Error('formArrayName must be used with a parent formGroup directive. You\\'ll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n \\n
\\n
\\n
\\n \\n
\\n
\\n
\\n\\n In your class:\\n\\n this.cityArray = new FormArray([new FormControl(\\'SF\\')]);\\n this.myGroup = new FormGroup({\\n cities: this.cityArray\\n });')}static disabledAttrWarning(){console.warn(\"\\n It looks like you're using the disabled attribute with a reactive form directive. If you set disabled to true\\n when you set up this control in your component class, the disabled attribute will actually be set in the DOM for\\n you. We recommend using this approach to avoid 'changed after checked' errors.\\n \\n Example: \\n form = new FormGroup({\\n first: new FormControl({value: 'Nancy', disabled: true}, Validators.required),\\n last: new FormControl('Drew', Validators.required)\\n });\\n \")}static ngModelWarning(e){console.warn(`\\n It looks like you're using ngModel on the same form field as ${e}. \\n Support for using the ngModel input property and ngModelChange event with \\n reactive form directives has been deprecated in Angular v6 and will be removed \\n in Angular v7.\\n \\n For more information on this, see our API docs here:\\n https://angular.io/api/forms/${\"formControl\"===e?\"FormControlDirective\":\"FormControlName\"}#use-with-ngmodel\\n `)}}const Bh={provide:uh,useExisting:Ce(()=>qh),multi:!0};let qh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this._optionMap=new Map,this._idCounter=0,this.onChange=e=>{},this.onTouched=()=>{},this._compareWith=ko}set compareWith(e){if(\"function\"!=typeof e)throw new Error(`compareWith must be a function, but received ${JSON.stringify(e)}`);this._compareWith=e}writeValue(e){this.value=e;const t=this._getOptionId(e);null==t&&this._renderer.setProperty(this._elementRef.nativeElement,\"selectedIndex\",-1);const n=function(e,t){return null==e?`${t}`:(t&&\"object\"==typeof t&&(t=\"Object\"),`${e}: ${t}`.slice(0,50))}(t,e);this._renderer.setProperty(this._elementRef.nativeElement,\"value\",n)}registerOnChange(e){this.onChange=t=>{this.value=this._getOptionValue(t),e(this.value)}}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}_registerOption(){return(this._idCounter++).toString()}_getOptionId(e){for(const t of Array.from(this._optionMap.keys()))if(this._compareWith(this._optionMap.get(t),e))return t;return null}_getOptionValue(e){const t=function(e){return e.split(\":\")[0]}(e);return this._optionMap.has(t)?this._optionMap.get(t):e}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"select\",\"formControlName\",\"\",3,\"multiple\",\"\"],[\"select\",\"formControl\",\"\",3,\"multiple\",\"\"],[\"select\",\"ngModel\",\"\",3,\"multiple\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},inputs:{compareWith:\"compareWith\"},features:[Ba([Bh])]}),e})();const Gh={provide:uh,useExisting:Ce(()=>Jh),multi:!0};let Jh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this._optionMap=new Map,this._idCounter=0,this.onChange=e=>{},this.onTouched=()=>{},this._compareWith=ko}set compareWith(e){if(\"function\"!=typeof e)throw new Error(`compareWith must be a function, but received ${JSON.stringify(e)}`);this._compareWith=e}writeValue(e){let t;if(this.value=e,Array.isArray(e)){const n=e.map(e=>this._getOptionId(e));t=(e,t)=>{e._setSelected(n.indexOf(t.toString())>-1)}}else t=(e,t)=>{e._setSelected(!1)};this._optionMap.forEach(t)}registerOnChange(e){this.onChange=t=>{const n=[];if(t.hasOwnProperty(\"selectedOptions\")){const e=t.selectedOptions;for(let t=0;t{e._pendingValue=n,e._pendingChange=!0,e._pendingDirty=!0,\"change\"===e.updateOn&&Qh(e,t)})}(e,t),function(e,t){e.registerOnChange((e,n)=>{t.valueAccessor.writeValue(e),n&&t.viewToModelUpdate(e)})}(e,t),function(e,t){t.valueAccessor.registerOnTouched(()=>{e._pendingTouched=!0,\"blur\"===e.updateOn&&e._pendingChange&&Qh(e,t),\"submit\"!==e.updateOn&&e.markAsTouched()})}(e,t),t.valueAccessor.setDisabledState&&e.registerOnDisabledChange(e=>{t.valueAccessor.setDisabledState(e)}),t._rawValidators.forEach(t=>{t.registerOnValidatorChange&&t.registerOnValidatorChange(()=>e.updateValueAndValidity())}),t._rawAsyncValidators.forEach(t=>{t.registerOnValidatorChange&&t.registerOnValidatorChange(()=>e.updateValueAndValidity())})}function Qh(e,t){e._pendingDirty&&e.markAsDirty(),e.setValue(e._pendingValue,{emitModelToViewChange:!1}),t.viewToModelUpdate(e._pendingValue),e._pendingChange=!1}function Xh(e,t){null==e&&tm(t,\"Cannot find control with\"),e.validator=Dh.compose([e.validator,t.validator]),e.asyncValidator=Dh.composeAsync([e.asyncValidator,t.asyncValidator])}function em(e){return tm(e,\"There is no FormControl instance attached to form control element with\")}function tm(e,t){let n;throw n=e.path.length>1?`path: '${e.path.join(\" -> \")}'`:e.path[0]?`name: '${e.path}'`:\"unspecified name attribute\",new Error(`${t} ${n}`)}function nm(e){return null!=e?Dh.compose(e.map(Ih)):null}function im(e){return null!=e?Dh.composeAsync(e.map(Ph)):null}function sm(e,t){if(!e.hasOwnProperty(\"model\"))return!1;const n=e.model;return!!n.isFirstChange()||!ko(t,n.currentValue)}const rm=[mh,zh,Rh,qh,Jh,Fh];function om(e,t){e._syncPendingControls(),t.forEach(e=>{const t=e.control;\"submit\"===t.updateOn&&t._pendingChange&&(e.viewToModelUpdate(t._pendingValue),t._pendingChange=!1)})}function am(e,t){if(!t)return null;Array.isArray(t)||tm(e,\"Value accessor was not provided as an array for form control with\");let n=void 0,i=void 0,s=void 0;return t.forEach(t=>{var r;t.constructor===_h?n=t:(r=t,rm.some(e=>r.constructor===e)?(i&&tm(e,\"More than one built-in value accessor matches form control with\"),i=t):(s&&tm(e,\"More than one custom value accessor matches form control with\"),s=t))}),s||i||n||(tm(e,\"No valid value accessor for form control with\"),null)}function lm(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}function cm(e,t,n,i){Si()&&\"never\"!==i&&((null!==i&&\"once\"!==i||t._ngModelWarningSentOnce)&&(\"always\"!==i||n._ngModelWarningSent)||($h.ngModelWarning(e),t._ngModelWarningSentOnce=!0,n._ngModelWarningSent=!0))}function dm(e){const t=hm(e)?e.validators:e;return Array.isArray(t)?nm(t):t||null}function um(e,t){const n=hm(t)?t.asyncValidators:e;return Array.isArray(n)?im(n):n||null}function hm(e){return null!=e&&!Array.isArray(e)&&\"object\"==typeof e}class mm{constructor(e,t){this.validator=e,this.asyncValidator=t,this._onCollectionChange=()=>{},this.pristine=!0,this.touched=!1,this._onDisabledChange=[]}get parent(){return this._parent}get valid(){return\"VALID\"===this.status}get invalid(){return\"INVALID\"===this.status}get pending(){return\"PENDING\"==this.status}get disabled(){return\"DISABLED\"===this.status}get enabled(){return\"DISABLED\"!==this.status}get dirty(){return!this.pristine}get untouched(){return!this.touched}get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:\"change\"}setValidators(e){this.validator=dm(e)}setAsyncValidators(e){this.asyncValidator=um(e)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(e={}){this.touched=!0,this._parent&&!e.onlySelf&&this._parent.markAsTouched(e)}markAllAsTouched(){this.markAsTouched({onlySelf:!0}),this._forEachChild(e=>e.markAllAsTouched())}markAsUntouched(e={}){this.touched=!1,this._pendingTouched=!1,this._forEachChild(e=>{e.markAsUntouched({onlySelf:!0})}),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)}markAsDirty(e={}){this.pristine=!1,this._parent&&!e.onlySelf&&this._parent.markAsDirty(e)}markAsPristine(e={}){this.pristine=!0,this._pendingDirty=!1,this._forEachChild(e=>{e.markAsPristine({onlySelf:!0})}),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)}markAsPending(e={}){this.status=\"PENDING\",!1!==e.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!e.onlySelf&&this._parent.markAsPending(e)}disable(e={}){const t=this._parentMarkedDirty(e.onlySelf);this.status=\"DISABLED\",this.errors=null,this._forEachChild(t=>{t.disable(Object.assign(Object.assign({},e),{onlySelf:!0}))}),this._updateValue(),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(Object.assign(Object.assign({},e),{skipPristineCheck:t})),this._onDisabledChange.forEach(e=>e(!0))}enable(e={}){const t=this._parentMarkedDirty(e.onlySelf);this.status=\"VALID\",this._forEachChild(t=>{t.enable(Object.assign(Object.assign({},e),{onlySelf:!0}))}),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent}),this._updateAncestors(Object.assign(Object.assign({},e),{skipPristineCheck:t})),this._onDisabledChange.forEach(e=>e(!1))}_updateAncestors(e){this._parent&&!e.onlySelf&&(this._parent.updateValueAndValidity(e),e.skipPristineCheck||this._parent._updatePristine(),this._parent._updateTouched())}setParent(e){this._parent=e}updateValueAndValidity(e={}){this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),\"VALID\"!==this.status&&\"PENDING\"!==this.status||this._runAsyncValidator(e.emitEvent)),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!e.onlySelf&&this._parent.updateValueAndValidity(e)}_updateTreeValidity(e={emitEvent:!0}){this._forEachChild(t=>t._updateTreeValidity(e)),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?\"DISABLED\":\"VALID\"}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(e){if(this.asyncValidator){this.status=\"PENDING\";const t=Eh(this.asyncValidator(this));this._asyncValidationSubscription=t.subscribe(t=>this.setErrors(t,{emitEvent:e}))}}_cancelExistingSubscription(){this._asyncValidationSubscription&&this._asyncValidationSubscription.unsubscribe()}setErrors(e,t={}){this.errors=e,this._updateControlsErrors(!1!==t.emitEvent)}get(e){return function(e,t,n){if(null==t)return null;if(Array.isArray(t)||(t=t.split(\".\")),Array.isArray(t)&&0===t.length)return null;let i=e;return t.forEach(e=>{i=i instanceof fm?i.controls.hasOwnProperty(e)?i.controls[e]:null:i instanceof _m&&i.at(e)||null}),i}(this,e)}getError(e,t){const n=t?this.get(t):this;return n&&n.errors?n.errors[e]:null}hasError(e,t){return!!this.getError(e,t)}get root(){let e=this;for(;e._parent;)e=e._parent;return e}_updateControlsErrors(e){this.status=this._calculateStatus(),e&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(e)}_initObservables(){this.valueChanges=new yc,this.statusChanges=new yc}_calculateStatus(){return this._allControlsDisabled()?\"DISABLED\":this.errors?\"INVALID\":this._anyControlsHaveStatus(\"PENDING\")?\"PENDING\":this._anyControlsHaveStatus(\"INVALID\")?\"INVALID\":\"VALID\"}_anyControlsHaveStatus(e){return this._anyControls(t=>t.status===e)}_anyControlsDirty(){return this._anyControls(e=>e.dirty)}_anyControlsTouched(){return this._anyControls(e=>e.touched)}_updatePristine(e={}){this.pristine=!this._anyControlsDirty(),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)}_updateTouched(e={}){this.touched=this._anyControlsTouched(),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)}_isBoxedValue(e){return\"object\"==typeof e&&null!==e&&2===Object.keys(e).length&&\"value\"in e&&\"disabled\"in e}_registerOnCollectionChange(e){this._onCollectionChange=e}_setUpdateStrategy(e){hm(e)&&null!=e.updateOn&&(this._updateOn=e.updateOn)}_parentMarkedDirty(e){return!e&&this._parent&&this._parent.dirty&&!this._parent._anyControlsDirty()}}class pm extends mm{constructor(e=null,t,n){super(dm(t),um(n,t)),this._onChange=[],this._applyFormState(e),this._setUpdateStrategy(t),this.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),this._initObservables()}setValue(e,t={}){this.value=this._pendingValue=e,this._onChange.length&&!1!==t.emitModelToViewChange&&this._onChange.forEach(e=>e(this.value,!1!==t.emitViewToModelChange)),this.updateValueAndValidity(t)}patchValue(e,t={}){this.setValue(e,t)}reset(e=null,t={}){this._applyFormState(e),this.markAsPristine(t),this.markAsUntouched(t),this.setValue(this.value,t),this._pendingChange=!1}_updateValue(){}_anyControls(e){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(e){this._onChange.push(e)}_clearChangeFns(){this._onChange=[],this._onDisabledChange=[],this._onCollectionChange=()=>{}}registerOnDisabledChange(e){this._onDisabledChange.push(e)}_forEachChild(e){}_syncPendingControls(){return!(\"submit\"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))}_applyFormState(e){this._isBoxedValue(e)?(this.value=this._pendingValue=e.value,e.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=e}}class fm extends mm{constructor(e,t,n){super(dm(t),um(n,t)),this.controls=e,this._initObservables(),this._setUpdateStrategy(t),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!1})}registerControl(e,t){return this.controls[e]?this.controls[e]:(this.controls[e]=t,t.setParent(this),t._registerOnCollectionChange(this._onCollectionChange),t)}addControl(e,t){this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()}removeControl(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange(()=>{}),delete this.controls[e],this.updateValueAndValidity(),this._onCollectionChange()}setControl(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange(()=>{}),delete this.controls[e],t&&this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()}contains(e){return this.controls.hasOwnProperty(e)&&this.controls[e].enabled}setValue(e,t={}){this._checkAllValuesPresent(e),Object.keys(e).forEach(n=>{this._throwIfControlMissing(n),this.controls[n].setValue(e[n],{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}patchValue(e,t={}){Object.keys(e).forEach(n=>{this.controls[n]&&this.controls[n].patchValue(e[n],{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}reset(e={},t={}){this._forEachChild((n,i)=>{n.reset(e[i],{onlySelf:!0,emitEvent:t.emitEvent})}),this._updatePristine(t),this._updateTouched(t),this.updateValueAndValidity(t)}getRawValue(){return this._reduceChildren({},(e,t,n)=>(e[n]=t instanceof pm?t.value:t.getRawValue(),e))}_syncPendingControls(){let e=this._reduceChildren(!1,(e,t)=>!!t._syncPendingControls()||e);return e&&this.updateValueAndValidity({onlySelf:!0}),e}_throwIfControlMissing(e){if(!Object.keys(this.controls).length)throw new Error(\"\\n There are no form controls registered with this group yet. If you're using ngModel,\\n you may want to check next tick (e.g. use setTimeout).\\n \");if(!this.controls[e])throw new Error(`Cannot find form control with name: ${e}.`)}_forEachChild(e){Object.keys(this.controls).forEach(t=>e(this.controls[t],t))}_setUpControls(){this._forEachChild(e=>{e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(e){let t=!1;return this._forEachChild((n,i)=>{t=t||this.contains(i)&&e(n)}),t}_reduceValue(){return this._reduceChildren({},(e,t,n)=>((t.enabled||this.disabled)&&(e[n]=t.value),e))}_reduceChildren(e,t){let n=e;return this._forEachChild((e,i)=>{n=t(n,e,i)}),n}_allControlsDisabled(){for(const e of Object.keys(this.controls))if(this.controls[e].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}_checkAllValuesPresent(e){this._forEachChild((t,n)=>{if(void 0===e[n])throw new Error(`Must supply a value for form control with name: '${n}'.`)})}}class _m extends mm{constructor(e,t,n){super(dm(t),um(n,t)),this.controls=e,this._initObservables(),this._setUpdateStrategy(t),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!1})}at(e){return this.controls[e]}push(e){this.controls.push(e),this._registerControl(e),this.updateValueAndValidity(),this._onCollectionChange()}insert(e,t){this.controls.splice(e,0,t),this._registerControl(t),this.updateValueAndValidity()}removeAt(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange(()=>{}),this.controls.splice(e,1),this.updateValueAndValidity()}setControl(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange(()=>{}),this.controls.splice(e,1),t&&(this.controls.splice(e,0,t),this._registerControl(t)),this.updateValueAndValidity(),this._onCollectionChange()}get length(){return this.controls.length}setValue(e,t={}){this._checkAllValuesPresent(e),e.forEach((e,n)=>{this._throwIfControlMissing(n),this.at(n).setValue(e,{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}patchValue(e,t={}){e.forEach((e,n)=>{this.at(n)&&this.at(n).patchValue(e,{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}reset(e=[],t={}){this._forEachChild((n,i)=>{n.reset(e[i],{onlySelf:!0,emitEvent:t.emitEvent})}),this._updatePristine(t),this._updateTouched(t),this.updateValueAndValidity(t)}getRawValue(){return this.controls.map(e=>e instanceof pm?e.value:e.getRawValue())}clear(){this.controls.length<1||(this._forEachChild(e=>e._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity())}_syncPendingControls(){let e=this.controls.reduce((e,t)=>!!t._syncPendingControls()||e,!1);return e&&this.updateValueAndValidity({onlySelf:!0}),e}_throwIfControlMissing(e){if(!this.controls.length)throw new Error(\"\\n There are no form controls registered with this array yet. If you're using ngModel,\\n you may want to check next tick (e.g. use setTimeout).\\n \");if(!this.at(e))throw new Error(`Cannot find form control at index ${e}`)}_forEachChild(e){this.controls.forEach((t,n)=>{e(t,n)})}_updateValue(){this.value=this.controls.filter(e=>e.enabled||this.disabled).map(e=>e.value)}_anyControls(e){return this.controls.some(t=>t.enabled&&e(t))}_setUpControls(){this._forEachChild(e=>this._registerControl(e))}_checkAllValuesPresent(e){this._forEachChild((t,n)=>{if(void 0===e[n])throw new Error(`Must supply a value for form control at index: ${n}.`)})}_allControlsDisabled(){for(const e of this.controls)if(e.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(e){e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange)}}const gm={provide:yh,useExisting:Ce(()=>bm)},ym=(()=>Promise.resolve(null))();let bm=(()=>{class e extends yh{constructor(e,t){super(),this.submitted=!1,this._directives=[],this.ngSubmit=new yc,this.form=new fm({},nm(e),im(t))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(e){ym.then(()=>{const t=this._findContainer(e.path);e.control=t.registerControl(e.name,e.control),Zh(e.control,e),e.control.updateValueAndValidity({emitEvent:!1}),this._directives.push(e)})}getControl(e){return this.form.get(e.path)}removeControl(e){ym.then(()=>{const t=this._findContainer(e.path);t&&t.removeControl(e.name),lm(this._directives,e)})}addFormGroup(e){ym.then(()=>{const t=this._findContainer(e.path),n=new fm({});Xh(n,e),t.registerControl(e.name,n),n.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(e){ym.then(()=>{const t=this._findContainer(e.path);t&&t.removeControl(e.name)})}getFormGroup(e){return this.form.get(e.path)}updateModel(e,t){ym.then(()=>{this.form.get(e.path).setValue(t)})}setValue(e){this.control.setValue(e)}onSubmit(e){return this.submitted=!0,om(this.form,this._directives),this.ngSubmit.emit(e),!1}onReset(){this.resetForm()}resetForm(e){this.form.reset(e),this.submitted=!1}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}_findContainer(e){return e.pop(),e.length?this.form.get(e):this.form}}return e.\\u0275fac=function(t){return new(t||e)(Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"form\",3,\"ngNoForm\",\"\",3,\"formGroup\",\"\"],[\"ng-form\"],[\"\",\"ngForm\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"submit\",(function(e){return t.onSubmit(e)}))(\"reset\",(function(){return t.onReset()}))},inputs:{options:[\"ngFormOptions\",\"options\"]},outputs:{ngSubmit:\"ngSubmit\"},exportAs:[\"ngForm\"],features:[Ba([gm]),Ya]}),e})(),vm=(()=>{class e extends yh{ngOnInit(){this._checkParentType(),this.formDirective.addFormGroup(this)}ngOnDestroy(){this.formDirective&&this.formDirective.removeFormGroup(this)}get control(){return this.formDirective.getFormGroup(this)}get path(){return Kh(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}get validator(){return nm(this._validators)}get asyncValidator(){return im(this._asyncValidators)}_checkParentType(){}}return e.\\u0275fac=function(t){return wm(t||e)},e.\\u0275dir=St({type:e,features:[Ya]}),e})();const wm=li(vm);class Mm{static modelParentException(){throw new Error(`\\n ngModel cannot be used to register form controls with a parent formGroup directive. Try using\\n formGroup's partner directive \"formControlName\" instead. Example:\\n\\n ${Vh}\\n\\n Or, if you'd like to avoid registering this form control, indicate that it's standalone in ngModelOptions:\\n\\n Example:\\n\\n \\n
\\n \\n \\n
\\n `)}static formGroupNameException(){throw new Error(`\\n ngModel cannot be used to register form controls with a parent formGroupName or formArrayName directive.\\n\\n Option 1: Use formControlName instead of ngModel (reactive strategy):\\n\\n ${Wh}\\n\\n Option 2: Update ngModel's parent be ngModelGroup (template-driven strategy):\\n\\n ${Uh}`)}static missingNameException(){throw new Error('If ngModel is used within a form tag, either the name attribute must be set or the form\\n control must be defined as \\'standalone\\' in ngModelOptions.\\n\\n Example 1: \\n Example 2: ')}static modelGroupParentException(){throw new Error(`\\n ngModelGroup cannot be used with a parent formGroup directive.\\n\\n Option 1: Use formGroupName instead of ngModelGroup (reactive strategy):\\n\\n ${Wh}\\n\\n Option 2: Use a regular form tag instead of the formGroup directive (template-driven strategy):\\n\\n ${Uh}`)}}const km={provide:yh,useExisting:Ce(()=>Sm)};let Sm=(()=>{class e extends vm{constructor(e,t,n){super(),this._parent=e,this._validators=t,this._asyncValidators=n}_checkParentType(){this._parent instanceof e||this._parent instanceof bm||Mm.modelGroupParentException()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,5),Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngModelGroup\",\"\"]],inputs:{name:[\"ngModelGroup\",\"name\"]},exportAs:[\"ngModelGroup\"],features:[Ba([km]),Ya]}),e})();const Lm={provide:wh,useExisting:Ce(()=>Cm)},xm=(()=>Promise.resolve(null))();let Cm=(()=>{class e extends wh{constructor(e,t,n,i){super(),this.control=new pm,this._registered=!1,this.update=new yc,this._parent=e,this._rawValidators=t||[],this._rawAsyncValidators=n||[],this.valueAccessor=am(this,i)}ngOnChanges(e){this._checkForErrors(),this._registered||this._setUpControl(),\"isDisabled\"in e&&this._updateDisabled(e),sm(e,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}get path(){return this._parent?Kh(this.name,this._parent):[this.name]}get formDirective(){return this._parent?this._parent.formDirective:null}get validator(){return nm(this._rawValidators)}get asyncValidator(){return im(this._rawAsyncValidators)}viewToModelUpdate(e){this.viewModel=e,this.update.emit(e)}_setUpControl(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)}_isStandalone(){return!this._parent||!(!this.options||!this.options.standalone)}_setUpStandalone(){Zh(this.control,this),this.control.updateValueAndValidity({emitEvent:!1})}_checkForErrors(){this._isStandalone()||this._checkParentType(),this._checkName()}_checkParentType(){!(this._parent instanceof Sm)&&this._parent instanceof vm?Mm.formGroupNameException():this._parent instanceof Sm||this._parent instanceof bm||Mm.modelParentException()}_checkName(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()||this.name||Mm.missingNameException()}_updateValue(e){xm.then(()=>{this.control.setValue(e,{emitViewToModelChange:!1})})}_updateDisabled(e){const t=e.isDisabled.currentValue,n=\"\"===t||t&&\"false\"!==t;xm.then(()=>{n&&!this.control.disabled?this.control.disable():!n&&this.control.disabled&&this.control.enable()})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,9),Eo(xh,10),Eo(Ch,10),Eo(uh,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngModel\",\"\",3,\"formControlName\",\"\",3,\"formControl\",\"\"]],inputs:{name:\"name\",isDisabled:[\"disabled\",\"isDisabled\"],model:[\"ngModel\",\"model\"],options:[\"ngModelOptions\",\"options\"]},outputs:{update:\"ngModelChange\"},exportAs:[\"ngModel\"],features:[Ba([Lm]),Ya,Ra]}),e})(),Tm=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"form\",3,\"ngNoForm\",\"\",3,\"ngNativeValidate\",\"\"]],hostAttrs:[\"novalidate\",\"\"]}),e})();const Dm=new Ve(\"NgModelWithFormControlWarning\"),Ym={provide:wh,useExisting:Ce(()=>Em)};let Em=(()=>{class e extends wh{constructor(e,t,n,i){super(),this._ngModelWarningConfig=i,this.update=new yc,this._ngModelWarningSent=!1,this._rawValidators=e||[],this._rawAsyncValidators=t||[],this.valueAccessor=am(this,n)}set isDisabled(e){$h.disabledAttrWarning()}ngOnChanges(t){this._isControlChanged(t)&&(Zh(this.form,this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this.form.updateValueAndValidity({emitEvent:!1})),sm(t,this.viewModel)&&(cm(\"formControl\",e,this,this._ngModelWarningConfig),this.form.setValue(this.model),this.viewModel=this.model)}get path(){return[]}get validator(){return nm(this._rawValidators)}get asyncValidator(){return im(this._rawAsyncValidators)}get control(){return this.form}viewToModelUpdate(e){this.viewModel=e,this.update.emit(e)}_isControlChanged(e){return e.hasOwnProperty(\"form\")}}return e.\\u0275fac=function(t){return new(t||e)(Eo(xh,10),Eo(Ch,10),Eo(uh,10),Eo(Dm,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formControl\",\"\"]],inputs:{isDisabled:[\"disabled\",\"isDisabled\"],form:[\"formControl\",\"form\"],model:[\"ngModel\",\"model\"]},outputs:{update:\"ngModelChange\"},exportAs:[\"ngForm\"],features:[Ba([Ym]),Ya,Ra]}),e._ngModelWarningSentOnce=!1,e})();const Om={provide:yh,useExisting:Ce(()=>Im)};let Im=(()=>{class e extends yh{constructor(e,t){super(),this._validators=e,this._asyncValidators=t,this.submitted=!1,this.directives=[],this.form=null,this.ngSubmit=new yc}ngOnChanges(e){this._checkFormPresent(),e.hasOwnProperty(\"form\")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations())}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(e){const t=this.form.get(e.path);return Zh(t,e),t.updateValueAndValidity({emitEvent:!1}),this.directives.push(e),t}getControl(e){return this.form.get(e.path)}removeControl(e){lm(this.directives,e)}addFormGroup(e){const t=this.form.get(e.path);Xh(t,e),t.updateValueAndValidity({emitEvent:!1})}removeFormGroup(e){}getFormGroup(e){return this.form.get(e.path)}addFormArray(e){const t=this.form.get(e.path);Xh(t,e),t.updateValueAndValidity({emitEvent:!1})}removeFormArray(e){}getFormArray(e){return this.form.get(e.path)}updateModel(e,t){this.form.get(e.path).setValue(t)}onSubmit(e){return this.submitted=!0,om(this.form,this.directives),this.ngSubmit.emit(e),!1}onReset(){this.resetForm()}resetForm(e){this.form.reset(e),this.submitted=!1}_updateDomValue(){this.directives.forEach(e=>{const t=this.form.get(e.path);e.control!==t&&(function(e,t){t.valueAccessor.registerOnChange(()=>em(t)),t.valueAccessor.registerOnTouched(()=>em(t)),t._rawValidators.forEach(e=>{e.registerOnValidatorChange&&e.registerOnValidatorChange(null)}),t._rawAsyncValidators.forEach(e=>{e.registerOnValidatorChange&&e.registerOnValidatorChange(null)}),e&&e._clearChangeFns()}(e.control,e),t&&Zh(t,e),e.control=t)}),this.form._updateTreeValidity({emitEvent:!1})}_updateRegistrations(){this.form._registerOnCollectionChange(()=>this._updateDomValue()),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{}),this._oldForm=this.form}_updateValidators(){const e=nm(this._validators);this.form.validator=Dh.compose([this.form.validator,e]);const t=im(this._asyncValidators);this.form.asyncValidator=Dh.composeAsync([this.form.asyncValidator,t])}_checkFormPresent(){this.form||$h.missingFormException()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formGroup\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"submit\",(function(e){return t.onSubmit(e)}))(\"reset\",(function(){return t.onReset()}))},inputs:{form:[\"formGroup\",\"form\"]},outputs:{ngSubmit:\"ngSubmit\"},exportAs:[\"ngForm\"],features:[Ba([Om]),Ya,Ra]}),e})();const Pm={provide:yh,useExisting:Ce(()=>Am)};let Am=(()=>{class e extends vm{constructor(e,t,n){super(),this._parent=e,this._validators=t,this._asyncValidators=n}_checkParentType(){jm(this._parent)&&$h.groupParentException()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,13),Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formGroupName\",\"\"]],inputs:{name:[\"formGroupName\",\"name\"]},features:[Ba([Pm]),Ya]}),e})();const Rm={provide:yh,useExisting:Ce(()=>Hm)};let Hm=(()=>{class e extends yh{constructor(e,t,n){super(),this._parent=e,this._validators=t,this._asyncValidators=n}ngOnInit(){this._checkParentType(),this.formDirective.addFormArray(this)}ngOnDestroy(){this.formDirective&&this.formDirective.removeFormArray(this)}get control(){return this.formDirective.getFormArray(this)}get formDirective(){return this._parent?this._parent.formDirective:null}get path(){return Kh(null==this.name?this.name:this.name.toString(),this._parent)}get validator(){return nm(this._validators)}get asyncValidator(){return im(this._asyncValidators)}_checkParentType(){jm(this._parent)&&$h.arrayParentException()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,13),Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formArrayName\",\"\"]],inputs:{name:[\"formArrayName\",\"name\"]},features:[Ba([Rm]),Ya]}),e})();function jm(e){return!(e instanceof Am||e instanceof Im||e instanceof Hm)}const Fm={provide:wh,useExisting:Ce(()=>Nm)};let Nm=(()=>{class e extends wh{constructor(e,t,n,i,s){super(),this._ngModelWarningConfig=s,this._added=!1,this.update=new yc,this._ngModelWarningSent=!1,this._parent=e,this._rawValidators=t||[],this._rawAsyncValidators=n||[],this.valueAccessor=am(this,i)}set isDisabled(e){$h.disabledAttrWarning()}ngOnChanges(t){this._added||this._setUpControl(),sm(t,this.viewModel)&&(cm(\"formControlName\",e,this,this._ngModelWarningConfig),this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(e){this.viewModel=e,this.update.emit(e)}get path(){return Kh(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}get validator(){return nm(this._rawValidators)}get asyncValidator(){return im(this._rawAsyncValidators)}_checkParentType(){!(this._parent instanceof Am)&&this._parent instanceof vm?$h.ngModelGroupException():this._parent instanceof Am||this._parent instanceof Im||this._parent instanceof Hm||$h.controlParentException()}_setUpControl(){this._checkParentType(),this.control=this.formDirective.addControl(this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this._added=!0}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,13),Eo(xh,10),Eo(Ch,10),Eo(uh,10),Eo(Dm,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formControlName\",\"\"]],inputs:{isDisabled:[\"disabled\",\"isDisabled\"],name:[\"formControlName\",\"name\"],model:[\"ngModel\",\"model\"]},outputs:{update:\"ngModelChange\"},features:[Ba([Fm]),Ya,Ra]}),e._ngModelWarningSentOnce=!1,e})();const zm={provide:xh,useExisting:Ce(()=>Vm),multi:!0};let Vm=(()=>{class e{get required(){return this._required}set required(e){this._required=null!=e&&!1!==e&&\"false\"!==`${e}`,this._onChange&&this._onChange()}validate(e){return this.required?Dh.required(e):null}registerOnValidatorChange(e){this._onChange=e}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"required\",\"\",\"formControlName\",\"\",3,\"type\",\"checkbox\"],[\"\",\"required\",\"\",\"formControl\",\"\",3,\"type\",\"checkbox\"],[\"\",\"required\",\"\",\"ngModel\",\"\",3,\"type\",\"checkbox\"]],hostVars:1,hostBindings:function(e,t){2&e&&Co(\"required\",t.required?\"\":null)},inputs:{required:\"required\"},features:[Ba([zm])]}),e})(),Wm=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),Um=(()=>{class e{group(e,t=null){const n=this._reduceControls(e);let i=null,s=null,r=void 0;return null!=t&&(function(e){return void 0!==e.asyncValidators||void 0!==e.validators||void 0!==e.updateOn}(t)?(i=null!=t.validators?t.validators:null,s=null!=t.asyncValidators?t.asyncValidators:null,r=null!=t.updateOn?t.updateOn:void 0):(i=null!=t.validator?t.validator:null,s=null!=t.asyncValidator?t.asyncValidator:null)),new fm(n,{asyncValidators:s,updateOn:r,validators:i})}control(e,t,n){return new pm(e,t,n)}array(e,t,n){const i=e.map(e=>this._createControl(e));return new _m(i,t,n)}_reduceControls(e){const t={};return Object.keys(e).forEach(n=>{t[n]=this._createControl(e[n])}),t}_createControl(e){return e instanceof pm||e instanceof fm||e instanceof _m?e:Array.isArray(e)?this.control(e[0],e.length>1?e[1]:null,e.length>2?e[2]:null):this.control(e)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),$m=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[jh],imports:[Wm]}),e})(),Bm=(()=>{class e{static withConfig(t){return{ngModule:e,providers:[{provide:Dm,useValue:t.warnOnNgModelWithFormControl}]}}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[Um,jh],imports:[Wm]}),e})();function qm(e,...t){return t.length?t.some(t=>e[t]):e.altKey||e.shiftKey||e.ctrlKey||e.metaKey}function Gm(e,t,n){return function(i){return i.lift(new Jm(e,t,n))}}class Jm{constructor(e,t,n){this.nextOrObserver=e,this.error=t,this.complete=n}call(e,t){return t.subscribe(new Km(e,this.nextOrObserver,this.error,this.complete))}}class Km extends p{constructor(e,t,n,s){super(e),this._tapNext=g,this._tapError=g,this._tapComplete=g,this._tapError=n||g,this._tapComplete=s||g,i(t)?(this._context=this,this._tapNext=t):t&&(this._context=t,this._tapNext=t.next||g,this._tapError=t.error||g,this._tapComplete=t.complete||g)}_next(e){try{this._tapNext.call(this._context,e)}catch(t){return void this.destination.error(t)}this.destination.next(e)}_error(e){try{this._tapError.call(this._context,e)}catch(e){return void this.destination.error(e)}this.destination.error(e)}_complete(){try{this._tapComplete.call(this._context)}catch(e){return void this.destination.error(e)}return this.destination.complete()}}class Zm extends u{constructor(e,t){super()}schedule(e,t=0){return this}}class Qm extends Zm{constructor(e,t){super(e,t),this.scheduler=e,this.work=t,this.pending=!1}schedule(e,t=0){if(this.closed)return this;this.state=e;const n=this.id,i=this.scheduler;return null!=n&&(this.id=this.recycleAsyncId(i,n,t)),this.pending=!0,this.delay=t,this.id=this.id||this.requestAsyncId(i,this.id,t),this}requestAsyncId(e,t,n=0){return setInterval(e.flush.bind(e,this),n)}recycleAsyncId(e,t,n=0){if(null!==n&&this.delay===n&&!1===this.pending)return t;clearInterval(t)}execute(e,t){if(this.closed)return new Error(\"executing a cancelled action\");this.pending=!1;const n=this._execute(e,t);if(n)return n;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(e,t){let n=!1,i=void 0;try{this.work(e)}catch(s){n=!0,i=!!s&&s||new Error(s)}if(n)return this.unsubscribe(),i}_unsubscribe(){const e=this.id,t=this.scheduler,n=t.actions,i=n.indexOf(this);this.work=null,this.state=null,this.pending=!1,this.scheduler=null,-1!==i&&n.splice(i,1),null!=e&&(this.id=this.recycleAsyncId(t,e,null)),this.delay=null}}let Xm=(()=>{class e{constructor(t,n=e.now){this.SchedulerAction=t,this.now=n}schedule(e,t=0,n){return new this.SchedulerAction(this,e).schedule(n,t)}}return e.now=()=>Date.now(),e})();class ep extends Xm{constructor(e,t=Xm.now){super(e,()=>ep.delegate&&ep.delegate!==this?ep.delegate.now():t()),this.actions=[],this.active=!1,this.scheduled=void 0}schedule(e,t=0,n){return ep.delegate&&ep.delegate!==this?ep.delegate.schedule(e,t,n):super.schedule(e,t,n)}flush(e){const{actions:t}=this;if(this.active)return void t.push(e);let n;this.active=!0;do{if(n=e.execute(e.state,e.delay))break}while(e=t.shift());if(this.active=!1,n){for(;e=t.shift();)e.unsubscribe();throw n}}}const tp=new ep(Qm);function np(e,t=tp){return n=>n.lift(new ip(e,t))}class ip{constructor(e,t){this.dueTime=e,this.scheduler=t}call(e,t){return t.subscribe(new sp(e,this.dueTime,this.scheduler))}}class sp extends p{constructor(e,t,n){super(e),this.dueTime=t,this.scheduler=n,this.debouncedSubscription=null,this.lastValue=null,this.hasValue=!1}_next(e){this.clearDebounce(),this.lastValue=e,this.hasValue=!0,this.add(this.debouncedSubscription=this.scheduler.schedule(rp,this.dueTime,this))}_complete(){this.debouncedNext(),this.destination.complete()}debouncedNext(){if(this.clearDebounce(),this.hasValue){const{lastValue:e}=this;this.lastValue=null,this.hasValue=!1,this.destination.next(e)}}clearDebounce(){const e=this.debouncedSubscription;null!==e&&(this.remove(e),e.unsubscribe(),this.debouncedSubscription=null)}}function rp(e){e.debouncedNext()}const op=(()=>{function e(){return Error.call(this),this.message=\"argument out of range\",this.name=\"ArgumentOutOfRangeError\",this}return e.prototype=Object.create(Error.prototype),e})(),ap=new v(e=>e.complete());function lp(e){return e?function(e){return new v(t=>e.schedule(()=>t.complete()))}(e):ap}function cp(e){return t=>0===e?lp():t.lift(new dp(e))}class dp{constructor(e){if(this.total=e,this.total<0)throw new op}call(e,t){return t.subscribe(new up(e,this.total))}}class up extends p{constructor(e,t){super(e),this.total=t,this.count=0}_next(e){const t=this.total,n=++this.count;n<=t&&(this.destination.next(e),n===t&&(this.destination.complete(),this.unsubscribe()))}}function hp(e){return null!=e&&\"false\"!==`${e}`}function mp(e,t=0){return function(e){return!isNaN(parseFloat(e))&&!isNaN(Number(e))}(e)?Number(e):t}function pp(e){return Array.isArray(e)?e:[e]}function fp(e){return null==e?\"\":\"string\"==typeof e?e:`${e}px`}function _p(e){return e instanceof Ka?e.nativeElement:e}let gp;try{gp=\"undefined\"!=typeof Intl&&Intl.v8BreakIterator}catch(zI){gp=!1}let yp,bp=(()=>{class e{constructor(e){this._platformId=e,this.isBrowser=this._platformId?ku(this._platformId):\"object\"==typeof document&&!!document,this.EDGE=this.isBrowser&&/(edge)/i.test(navigator.userAgent),this.TRIDENT=this.isBrowser&&/(msie|trident)/i.test(navigator.userAgent),this.BLINK=this.isBrowser&&!(!window.chrome&&!gp)&&\"undefined\"!=typeof CSS&&!this.EDGE&&!this.TRIDENT,this.WEBKIT=this.isBrowser&&/AppleWebKit/i.test(navigator.userAgent)&&!this.BLINK&&!this.EDGE&&!this.TRIDENT,this.IOS=this.isBrowser&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!(\"MSStream\"in window),this.FIREFOX=this.isBrowser&&/(firefox|minefield)/i.test(navigator.userAgent),this.ANDROID=this.isBrowser&&/android/i.test(navigator.userAgent)&&!this.TRIDENT,this.SAFARI=this.isBrowser&&/safari/i.test(navigator.userAgent)&&this.WEBKIT}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Bc,8))},e.\\u0275prov=pe({factory:function(){return new e(Qe(Bc,8))},token:e,providedIn:\"root\"}),e})(),vp=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();const wp=[\"color\",\"button\",\"checkbox\",\"date\",\"datetime-local\",\"email\",\"file\",\"hidden\",\"image\",\"month\",\"number\",\"password\",\"radio\",\"range\",\"reset\",\"search\",\"submit\",\"tel\",\"text\",\"time\",\"url\",\"week\"];function Mp(){if(yp)return yp;if(\"object\"!=typeof document||!document)return yp=new Set(wp),yp;let e=document.createElement(\"input\");return yp=new Set(wp.filter(t=>(e.setAttribute(\"type\",t),e.type===t))),yp}let kp;function Sp(e){return function(){if(null==kp&&\"undefined\"!=typeof window)try{window.addEventListener(\"test\",null,Object.defineProperty({},\"passive\",{get:()=>kp=!0}))}finally{kp=kp||!1}return kp}()?e:!!e.capture}const Lp=function(){var e={NORMAL:0,NEGATED:1,INVERTED:2};return e[e.NORMAL]=\"NORMAL\",e[e.NEGATED]=\"NEGATED\",e[e.INVERTED]=\"INVERTED\",e}();let xp;function Cp(){if(\"object\"!=typeof document||!document)return Lp.NORMAL;if(!xp){const e=document.createElement(\"div\"),t=e.style;e.dir=\"rtl\",t.height=\"1px\",t.width=\"1px\",t.overflow=\"auto\",t.visibility=\"hidden\",t.pointerEvents=\"none\",t.position=\"absolute\";const n=document.createElement(\"div\"),i=n.style;i.width=\"2px\",i.height=\"1px\",e.appendChild(n),document.body.appendChild(e),xp=Lp.NORMAL,0===e.scrollLeft&&(e.scrollLeft=1,xp=0===e.scrollLeft?Lp.NEGATED:Lp.INVERTED),e.parentNode.removeChild(e)}return xp}let Tp=(()=>{class e{create(e){return\"undefined\"==typeof MutationObserver?null:new MutationObserver(e)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})(),Dp=(()=>{class e{constructor(e){this._mutationObserverFactory=e,this._observedElements=new Map}ngOnDestroy(){this._observedElements.forEach((e,t)=>this._cleanupObserver(t))}observe(e){const t=_p(e);return new v(e=>{const n=this._observeElement(t).subscribe(e);return()=>{n.unsubscribe(),this._unobserveElement(t)}})}_observeElement(e){if(this._observedElements.has(e))this._observedElements.get(e).count++;else{const t=new L,n=this._mutationObserverFactory.create(e=>t.next(e));n&&n.observe(e,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(e,{observer:n,stream:t,count:1})}return this._observedElements.get(e).stream}_unobserveElement(e){this._observedElements.has(e)&&(this._observedElements.get(e).count--,this._observedElements.get(e).count||this._cleanupObserver(e))}_cleanupObserver(e){if(this._observedElements.has(e)){const{observer:t,stream:n}=this._observedElements.get(e);t&&t.disconnect(),n.complete(),this._observedElements.delete(e)}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Tp))},e.\\u0275prov=pe({factory:function(){return new e(Qe(Tp))},token:e,providedIn:\"root\"}),e})(),Yp=(()=>{class e{constructor(e,t,n){this._contentObserver=e,this._elementRef=t,this._ngZone=n,this.event=new yc,this._disabled=!1,this._currentSubscription=null}get disabled(){return this._disabled}set disabled(e){this._disabled=hp(e),this._disabled?this._unsubscribe():this._subscribe()}get debounce(){return this._debounce}set debounce(e){this._debounce=mp(e),this._subscribe()}ngAfterContentInit(){this._currentSubscription||this.disabled||this._subscribe()}ngOnDestroy(){this._unsubscribe()}_subscribe(){this._unsubscribe();const e=this._contentObserver.observe(this._elementRef);this._ngZone.runOutsideAngular(()=>{this._currentSubscription=(this.debounce?e.pipe(np(this.debounce)):e).subscribe(this.event)})}_unsubscribe(){this._currentSubscription&&this._currentSubscription.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Dp),Eo(Ka),Eo(ld))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdkObserveContent\",\"\"]],inputs:{disabled:[\"cdkObserveContentDisabled\",\"disabled\"],debounce:\"debounce\"},outputs:{event:\"cdkObserveContent\"},exportAs:[\"cdkObserveContent\"]}),e})(),Ep=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[Tp]}),e})();class Op{constructor(e){this._items=e,this._activeItemIndex=-1,this._activeItem=null,this._wrap=!1,this._letterKeyStream=new L,this._typeaheadSubscription=u.EMPTY,this._vertical=!0,this._allowedModifierKeys=[],this._skipPredicateFn=e=>e.disabled,this._pressedLetters=[],this.tabOut=new L,this.change=new L,e instanceof vc&&e.changes.subscribe(e=>{if(this._activeItem){const t=e.toArray().indexOf(this._activeItem);t>-1&&t!==this._activeItemIndex&&(this._activeItemIndex=t)}})}skipPredicate(e){return this._skipPredicateFn=e,this}withWrap(e=!0){return this._wrap=e,this}withVerticalOrientation(e=!0){return this._vertical=e,this}withHorizontalOrientation(e){return this._horizontal=e,this}withAllowedModifierKeys(e){return this._allowedModifierKeys=e,this}withTypeAhead(e=200){if(this._items.length&&this._items.some(e=>\"function\"!=typeof e.getLabel))throw Error(\"ListKeyManager items in typeahead mode must implement the `getLabel` method.\");return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe(Gm(e=>this._pressedLetters.push(e)),np(e),Tu(()=>this._pressedLetters.length>0),H(()=>this._pressedLetters.join(\"\"))).subscribe(e=>{const t=this._getItemsArray();for(let n=1;n!e[t]||this._allowedModifierKeys.indexOf(t)>-1);switch(t){case 9:return void this.tabOut.next();case 40:if(this._vertical&&n){this.setNextItemActive();break}return;case 38:if(this._vertical&&n){this.setPreviousItemActive();break}return;case 39:if(this._horizontal&&n){\"rtl\"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case 37:if(this._horizontal&&n){\"rtl\"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;default:return void((n||qm(e,\"shiftKey\"))&&(e.key&&1===e.key.length?this._letterKeyStream.next(e.key.toLocaleUpperCase()):(t>=65&&t<=90||t>=48&&t<=57)&&this._letterKeyStream.next(String.fromCharCode(t))))}this._pressedLetters=[],e.preventDefault()}get activeItemIndex(){return this._activeItemIndex}get activeItem(){return this._activeItem}isTyping(){return this._pressedLetters.length>0}setFirstItemActive(){this._setActiveItemByIndex(0,1)}setLastItemActive(){this._setActiveItemByIndex(this._items.length-1,-1)}setNextItemActive(){this._activeItemIndex<0?this.setFirstItemActive():this._setActiveItemByDelta(1)}setPreviousItemActive(){this._activeItemIndex<0&&this._wrap?this.setLastItemActive():this._setActiveItemByDelta(-1)}updateActiveItem(e){const t=this._getItemsArray(),n=\"number\"==typeof e?e:t.indexOf(e),i=t[n];this._activeItem=null==i?null:i,this._activeItemIndex=n}_setActiveItemByDelta(e){this._wrap?this._setActiveInWrapMode(e):this._setActiveInDefaultMode(e)}_setActiveInWrapMode(e){const t=this._getItemsArray();for(let n=1;n<=t.length;n++){const i=(this._activeItemIndex+e*n+t.length)%t.length;if(!this._skipPredicateFn(t[i]))return void this.setActiveItem(i)}}_setActiveInDefaultMode(e){this._setActiveItemByIndex(this._activeItemIndex+e,e)}_setActiveItemByIndex(e,t){const n=this._getItemsArray();if(n[e]){for(;this._skipPredicateFn(n[e]);)if(!n[e+=t])return;this.setActiveItem(e)}}_getItemsArray(){return this._items instanceof vc?this._items.toArray():this._items}}class Ip extends Op{setActiveItem(e){this.activeItem&&this.activeItem.setInactiveStyles(),super.setActiveItem(e),this.activeItem&&this.activeItem.setActiveStyles()}}class Pp extends Op{constructor(){super(...arguments),this._origin=\"program\"}setFocusOrigin(e){return this._origin=e,this}setActiveItem(e){super.setActiveItem(e),this.activeItem&&this.activeItem.focus(this._origin)}}let Ap=(()=>{class e{constructor(e){this._platform=e}isDisabled(e){return e.hasAttribute(\"disabled\")}isVisible(e){return function(e){return!!(e.offsetWidth||e.offsetHeight||\"function\"==typeof e.getClientRects&&e.getClientRects().length)}(e)&&\"visible\"===getComputedStyle(e).visibility}isTabbable(e){if(!this._platform.isBrowser)return!1;const t=function(e){try{return e.frameElement}catch(zI){return null}}((n=e).ownerDocument&&n.ownerDocument.defaultView||window);var n;if(t){const e=t&&t.nodeName.toLowerCase();if(-1===Hp(t))return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&\"object\"===e)return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&!this.isVisible(t))return!1}let i=e.nodeName.toLowerCase(),s=Hp(e);if(e.hasAttribute(\"contenteditable\"))return-1!==s;if(\"iframe\"===i)return!1;if(\"audio\"===i){if(!e.hasAttribute(\"controls\"))return!1;if(this._platform.BLINK)return!0}if(\"video\"===i){if(!e.hasAttribute(\"controls\")&&this._platform.TRIDENT)return!1;if(this._platform.BLINK||this._platform.FIREFOX)return!0}return(\"object\"!==i||!this._platform.BLINK&&!this._platform.WEBKIT)&&!(this._platform.WEBKIT&&this._platform.IOS&&!function(e){let t=e.nodeName.toLowerCase(),n=\"input\"===t&&e.type;return\"text\"===n||\"password\"===n||\"select\"===t||\"textarea\"===t}(e))&&e.tabIndex>=0}isFocusable(e){return function(e){return!function(e){return function(e){return\"input\"==e.nodeName.toLowerCase()}(e)&&\"hidden\"==e.type}(e)&&(function(e){let t=e.nodeName.toLowerCase();return\"input\"===t||\"select\"===t||\"button\"===t||\"textarea\"===t}(e)||function(e){return function(e){return\"a\"==e.nodeName.toLowerCase()}(e)&&e.hasAttribute(\"href\")}(e)||e.hasAttribute(\"contenteditable\")||Rp(e))}(e)&&!this.isDisabled(e)&&this.isVisible(e)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(bp))},e.\\u0275prov=pe({factory:function(){return new e(Qe(bp))},token:e,providedIn:\"root\"}),e})();function Rp(e){if(!e.hasAttribute(\"tabindex\")||void 0===e.tabIndex)return!1;let t=e.getAttribute(\"tabindex\");return\"-32768\"!=t&&!(!t||isNaN(parseInt(t,10)))}function Hp(e){if(!Rp(e))return null;const t=parseInt(e.getAttribute(\"tabindex\")||\"\",10);return isNaN(t)?-1:t}class jp{constructor(e,t,n,i,s=!1){this._element=e,this._checker=t,this._ngZone=n,this._document=i,this._hasAttached=!1,this.startAnchorListener=()=>this.focusLastTabbableElement(),this.endAnchorListener=()=>this.focusFirstTabbableElement(),this._enabled=!0,s||this.attachAnchors()}get enabled(){return this._enabled}set enabled(e){this._enabled=e,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(e,this._startAnchor),this._toggleAnchorTabIndex(e,this._endAnchor))}destroy(){const e=this._startAnchor,t=this._endAnchor;e&&(e.removeEventListener(\"focus\",this.startAnchorListener),e.parentNode&&e.parentNode.removeChild(e)),t&&(t.removeEventListener(\"focus\",this.endAnchorListener),t.parentNode&&t.parentNode.removeChild(t)),this._startAnchor=this._endAnchor=null}attachAnchors(){return!!this._hasAttached||(this._ngZone.runOutsideAngular(()=>{this._startAnchor||(this._startAnchor=this._createAnchor(),this._startAnchor.addEventListener(\"focus\",this.startAnchorListener)),this._endAnchor||(this._endAnchor=this._createAnchor(),this._endAnchor.addEventListener(\"focus\",this.endAnchorListener))}),this._element.parentNode&&(this._element.parentNode.insertBefore(this._startAnchor,this._element),this._element.parentNode.insertBefore(this._endAnchor,this._element.nextSibling),this._hasAttached=!0),this._hasAttached)}focusInitialElementWhenReady(){return new Promise(e=>{this._executeOnStable(()=>e(this.focusInitialElement()))})}focusFirstTabbableElementWhenReady(){return new Promise(e=>{this._executeOnStable(()=>e(this.focusFirstTabbableElement()))})}focusLastTabbableElementWhenReady(){return new Promise(e=>{this._executeOnStable(()=>e(this.focusLastTabbableElement()))})}_getRegionBoundary(e){let t=this._element.querySelectorAll(`[cdk-focus-region-${e}], `+`[cdkFocusRegion${e}], `+`[cdk-focus-${e}]`);for(let n=0;n=0;n--){let e=t[n].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(t[n]):null;if(e)return e}return null}_createAnchor(){const e=this._document.createElement(\"div\");return this._toggleAnchorTabIndex(this._enabled,e),e.classList.add(\"cdk-visually-hidden\"),e.classList.add(\"cdk-focus-trap-anchor\"),e.setAttribute(\"aria-hidden\",\"true\"),e}_toggleAnchorTabIndex(e,t){e?t.setAttribute(\"tabindex\",\"0\"):t.removeAttribute(\"tabindex\")}_executeOnStable(e){this._ngZone.isStable?e():this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(e)}}let Fp=(()=>{class e{constructor(e,t,n){this._checker=e,this._ngZone=t,this._document=n}create(e,t=!1){return new jp(e,this._checker,this._ngZone,this._document,t)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Ap),Qe(ld),Qe(Nd))},e.\\u0275prov=pe({factory:function(){return new e(Qe(Ap),Qe(ld),Qe(Nd))},token:e,providedIn:\"root\"}),e})();const Np=new Ve(\"liveAnnouncerElement\",{providedIn:\"root\",factory:function(){return null}}),zp=new Ve(\"LIVE_ANNOUNCER_DEFAULT_OPTIONS\");let Vp=(()=>{class e{constructor(e,t,n,i){this._ngZone=t,this._defaultOptions=i,this._document=n,this._liveElement=e||this._createLiveElement()}announce(e,...t){const n=this._defaultOptions;let i,s;return 1===t.length&&\"number\"==typeof t[0]?s=t[0]:[i,s]=t,this.clear(),clearTimeout(this._previousTimeout),i||(i=n&&n.politeness?n.politeness:\"polite\"),null==s&&n&&(s=n.duration),this._liveElement.setAttribute(\"aria-live\",i),this._ngZone.runOutsideAngular(()=>new Promise(t=>{clearTimeout(this._previousTimeout),this._previousTimeout=setTimeout(()=>{this._liveElement.textContent=e,t(),\"number\"==typeof s&&(this._previousTimeout=setTimeout(()=>this.clear(),s))},100)}))}clear(){this._liveElement&&(this._liveElement.textContent=\"\")}ngOnDestroy(){clearTimeout(this._previousTimeout),this._liveElement&&this._liveElement.parentNode&&(this._liveElement.parentNode.removeChild(this._liveElement),this._liveElement=null)}_createLiveElement(){const e=this._document.getElementsByClassName(\"cdk-live-announcer-element\"),t=this._document.createElement(\"div\");for(let n=0;n{class e{constructor(e,t){this._ngZone=e,this._platform=t,this._origin=null,this._windowFocused=!1,this._elementInfo=new Map,this._monitoredElementCount=0,this._documentKeydownListener=()=>{this._lastTouchTarget=null,this._setOriginForCurrentEventQueue(\"keyboard\")},this._documentMousedownListener=()=>{this._lastTouchTarget||this._setOriginForCurrentEventQueue(\"mouse\")},this._documentTouchstartListener=e=>{null!=this._touchTimeoutId&&clearTimeout(this._touchTimeoutId),this._lastTouchTarget=e.composedPath?e.composedPath()[0]:e.target,this._touchTimeoutId=setTimeout(()=>this._lastTouchTarget=null,650)},this._windowFocusListener=()=>{this._windowFocused=!0,this._windowFocusTimeoutId=setTimeout(()=>this._windowFocused=!1)}}monitor(e,t=!1){if(!this._platform.isBrowser)return xu(null);const n=_p(e);if(this._elementInfo.has(n)){let e=this._elementInfo.get(n);return e.checkChildren=t,e.subject.asObservable()}let i={unlisten:()=>{},checkChildren:t,subject:new L};this._elementInfo.set(n,i),this._incrementMonitoredElementCount();let s=e=>this._onFocus(e,n),r=e=>this._onBlur(e,n);return this._ngZone.runOutsideAngular(()=>{n.addEventListener(\"focus\",s,!0),n.addEventListener(\"blur\",r,!0)}),i.unlisten=()=>{n.removeEventListener(\"focus\",s,!0),n.removeEventListener(\"blur\",r,!0)},i.subject.asObservable()}stopMonitoring(e){const t=_p(e),n=this._elementInfo.get(t);n&&(n.unlisten(),n.subject.complete(),this._setClasses(t),this._elementInfo.delete(t),this._decrementMonitoredElementCount())}focusVia(e,t,n){const i=_p(e);this._setOriginForCurrentEventQueue(t),\"function\"==typeof i.focus&&i.focus(n)}ngOnDestroy(){this._elementInfo.forEach((e,t)=>this.stopMonitoring(t))}_toggleClass(e,t,n){n?e.classList.add(t):e.classList.remove(t)}_setClasses(e,t){this._elementInfo.get(e)&&(this._toggleClass(e,\"cdk-focused\",!!t),this._toggleClass(e,\"cdk-touch-focused\",\"touch\"===t),this._toggleClass(e,\"cdk-keyboard-focused\",\"keyboard\"===t),this._toggleClass(e,\"cdk-mouse-focused\",\"mouse\"===t),this._toggleClass(e,\"cdk-program-focused\",\"program\"===t))}_setOriginForCurrentEventQueue(e){this._ngZone.runOutsideAngular(()=>{this._origin=e,this._originTimeoutId=setTimeout(()=>this._origin=null,1)})}_wasCausedByTouch(e){let t=e.target;return this._lastTouchTarget instanceof Node&&t instanceof Node&&(t===this._lastTouchTarget||t.contains(this._lastTouchTarget))}_onFocus(e,t){const n=this._elementInfo.get(t);if(!n||!n.checkChildren&&t!==e.target)return;let i=this._origin;i||(i=this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:this._wasCausedByTouch(e)?\"touch\":\"program\"),this._setClasses(t,i),this._emitOrigin(n.subject,i),this._lastFocusOrigin=i}_onBlur(e,t){const n=this._elementInfo.get(t);!n||n.checkChildren&&e.relatedTarget instanceof Node&&t.contains(e.relatedTarget)||(this._setClasses(t),this._emitOrigin(n.subject,null))}_emitOrigin(e,t){this._ngZone.run(()=>e.next(t))}_incrementMonitoredElementCount(){1==++this._monitoredElementCount&&this._platform.isBrowser&&this._ngZone.runOutsideAngular(()=>{document.addEventListener(\"keydown\",this._documentKeydownListener,Wp),document.addEventListener(\"mousedown\",this._documentMousedownListener,Wp),document.addEventListener(\"touchstart\",this._documentTouchstartListener,Wp),window.addEventListener(\"focus\",this._windowFocusListener)})}_decrementMonitoredElementCount(){--this._monitoredElementCount||(document.removeEventListener(\"keydown\",this._documentKeydownListener,Wp),document.removeEventListener(\"mousedown\",this._documentMousedownListener,Wp),document.removeEventListener(\"touchstart\",this._documentTouchstartListener,Wp),window.removeEventListener(\"focus\",this._windowFocusListener),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._touchTimeoutId),clearTimeout(this._originTimeoutId))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ld),Qe(bp))},e.\\u0275prov=pe({factory:function(){return new e(Qe(ld),Qe(bp))},token:e,providedIn:\"root\"}),e})();function $p(e){return 0===e.buttons}let Bp=(()=>{class e{constructor(e,t){this._platform=e,this._document=t}getHighContrastMode(){if(!this._platform.isBrowser)return 0;const e=this._document.createElement(\"div\");e.style.backgroundColor=\"rgb(1,2,3)\",e.style.position=\"absolute\",this._document.body.appendChild(e);const t=(this._document.defaultView.getComputedStyle(e).backgroundColor||\"\").replace(/ /g,\"\");switch(this._document.body.removeChild(e),t){case\"rgb(0,0,0)\":return 2;case\"rgb(255,255,255)\":return 1}return 0}_applyBodyHighContrastModeCssClasses(){if(this._platform.isBrowser&&this._document.body){const e=this._document.body.classList;e.remove(\"cdk-high-contrast-active\"),e.remove(\"cdk-high-contrast-black-on-white\"),e.remove(\"cdk-high-contrast-white-on-black\");const t=this.getHighContrastMode();1===t?(e.add(\"cdk-high-contrast-active\"),e.add(\"cdk-high-contrast-black-on-white\")):2===t&&(e.add(\"cdk-high-contrast-active\"),e.add(\"cdk-high-contrast-white-on-black\"))}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(bp),Qe(Nd))},e.\\u0275prov=pe({factory:function(){return new e(Qe(bp),Qe(Nd))},token:e,providedIn:\"root\"}),e})();const qp=new Ve(\"cdk-dir-doc\",{providedIn:\"root\",factory:function(){return Xe(Nd)}});let Gp=(()=>{class e{constructor(e){if(this.value=\"ltr\",this.change=new yc,e){const t=e.documentElement?e.documentElement.dir:null,n=(e.body?e.body.dir:null)||t;this.value=\"ltr\"===n||\"rtl\"===n?n:\"ltr\"}}ngOnDestroy(){this.change.complete()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(qp,8))},e.\\u0275prov=pe({factory:function(){return new e(Qe(qp,8))},token:e,providedIn:\"root\"}),e})(),Jp=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();const Kp=new il(\"9.0.1\");class Zp extends class extends class{}{constructor(){super()}supportsDOMEvents(){return!0}}{static makeCurrent(){var e;e=new Zp,jd||(jd=e)}getProperty(e,t){return e[t]}log(e){window.console&&window.console.log&&window.console.log(e)}logGroup(e){window.console&&window.console.group&&window.console.group(e)}logGroupEnd(){window.console&&window.console.groupEnd&&window.console.groupEnd()}onAndCancel(e,t,n){return e.addEventListener(t,n,!1),()=>{e.removeEventListener(t,n,!1)}}dispatchEvent(e,t){e.dispatchEvent(t)}remove(e){return e.parentNode&&e.parentNode.removeChild(e),e}getValue(e){return e.value}createElement(e,t){return(t=t||this.getDefaultDocument()).createElement(e)}createHtmlDocument(){return document.implementation.createHTMLDocument(\"fakeTitle\")}getDefaultDocument(){return document}isElementNode(e){return e.nodeType===Node.ELEMENT_NODE}isShadowRoot(e){return e instanceof DocumentFragment}getGlobalEventTarget(e,t){return\"window\"===t?window:\"document\"===t?e:\"body\"===t?e.body:null}getHistory(){return window.history}getLocation(){return window.location}getBaseHref(e){const t=Xp||(Xp=document.querySelector(\"base\"),Xp)?Xp.getAttribute(\"href\"):null;return null==t?null:(n=t,Qp||(Qp=document.createElement(\"a\")),Qp.setAttribute(\"href\",n),\"/\"===Qp.pathname.charAt(0)?Qp.pathname:\"/\"+Qp.pathname);var n}resetBaseElement(){Xp=null}getUserAgent(){return window.navigator.userAgent}performanceNow(){return window.performance&&window.performance.now?window.performance.now():(new Date).getTime()}supportsCookies(){return!0}getCookie(e){return lu(document.cookie,e)}}let Qp,Xp=null;const ef=new Ve(\"TRANSITION_ID\"),tf=[{provide:Nc,useFactory:function(e,t,n){return()=>{n.get(zc).donePromise.then(()=>{const n=Fd();Array.prototype.slice.apply(t.querySelectorAll(\"style[ng-transition]\")).filter(t=>t.getAttribute(\"ng-transition\")===e).forEach(e=>n.remove(e))})}},deps:[ef,Nd,fo],multi:!0}];class nf{static init(){var e;e=new nf,vd=e}addToWindow(e){Pe.getAngularTestability=(t,n=!0)=>{const i=e.findTestabilityInTree(t,n);if(null==i)throw new Error(\"Could not find testability for element.\");return i},Pe.getAllAngularTestabilities=()=>e.getAllTestabilities(),Pe.getAllAngularRootElements=()=>e.getAllRootElements(),Pe.frameworkStabilizers||(Pe.frameworkStabilizers=[]),Pe.frameworkStabilizers.push(e=>{const t=Pe.getAllAngularTestabilities();let n=t.length,i=!1;const s=function(t){i=i||t,n--,0==n&&e(i)};t.forEach((function(e){e.whenStable(s)}))})}findTestabilityInTree(e,t,n){if(null==t)return null;const i=e.getTestability(t);return null!=i?i:n?Fd().isShadowRoot(t)?this.findTestabilityInTree(e,t.host,!0):this.findTestabilityInTree(e,t.parentElement,!0):null}}const sf=new Ve(\"EventManagerPlugins\");let rf=(()=>{class e{constructor(e,t){this._zone=t,this._eventNameToPlugin=new Map,e.forEach(e=>e.manager=this),this._plugins=e.slice().reverse()}addEventListener(e,t,n){return this._findPluginFor(t).addEventListener(e,t,n)}addGlobalEventListener(e,t,n){return this._findPluginFor(t).addGlobalEventListener(e,t,n)}getZone(){return this._zone}_findPluginFor(e){const t=this._eventNameToPlugin.get(e);if(t)return t;const n=this._plugins;for(let i=0;i{class e{constructor(){this._stylesSet=new Set}addStyles(e){const t=new Set;e.forEach(e=>{this._stylesSet.has(e)||(this._stylesSet.add(e),t.add(e))}),this.onStylesAdded(t)}onStylesAdded(e){}getAllStyles(){return Array.from(this._stylesSet)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),lf=(()=>{class e extends af{constructor(e){super(),this._doc=e,this._hostNodes=new Set,this._styleNodes=new Set,this._hostNodes.add(e.head)}_addStylesToHost(e,t){e.forEach(e=>{const n=this._doc.createElement(\"style\");n.textContent=e,this._styleNodes.add(t.appendChild(n))})}addHost(e){this._addStylesToHost(this._stylesSet,e),this._hostNodes.add(e)}removeHost(e){this._hostNodes.delete(e)}onStylesAdded(e){this._hostNodes.forEach(t=>this._addStylesToHost(e,t))}ngOnDestroy(){this._styleNodes.forEach(e=>Fd().remove(e))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const cf={svg:\"http://www.w3.org/2000/svg\",xhtml:\"http://www.w3.org/1999/xhtml\",xlink:\"http://www.w3.org/1999/xlink\",xml:\"http://www.w3.org/XML/1998/namespace\",xmlns:\"http://www.w3.org/2000/xmlns/\"},df=/%COMP%/g;function uf(e,t,n){for(let i=0;i{if(\"__ngUnwrap__\"===t)return e;!1===e(t)&&(t.preventDefault(),t.returnValue=!1)}}let mf=(()=>{class e{constructor(e,t,n){this.eventManager=e,this.sharedStylesHost=t,this.appId=n,this.rendererByCompId=new Map,this.defaultRenderer=new pf(e)}createRenderer(e,t){if(!e||!t)return this.defaultRenderer;switch(t.encapsulation){case pt.Emulated:{let n=this.rendererByCompId.get(t.id);return n||(n=new ff(this.eventManager,this.sharedStylesHost,t,this.appId),this.rendererByCompId.set(t.id,n)),n.applyToHost(e),n}case pt.Native:case pt.ShadowDom:return new _f(this.eventManager,this.sharedStylesHost,e,t);default:if(!this.rendererByCompId.has(t.id)){const e=uf(t.id,t.styles,[]);this.sharedStylesHost.addStyles(e),this.rendererByCompId.set(t.id,this.defaultRenderer)}return this.defaultRenderer}}begin(){}end(){}}return e.\\u0275fac=function(t){return new(t||e)(Qe(rf),Qe(lf),Qe(Vc))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class pf{constructor(e){this.eventManager=e,this.data=Object.create(null)}destroy(){}createElement(e,t){return t?document.createElementNS(cf[t]||t,e):document.createElement(e)}createComment(e){return document.createComment(e)}createText(e){return document.createTextNode(e)}appendChild(e,t){e.appendChild(t)}insertBefore(e,t,n){e&&e.insertBefore(t,n)}removeChild(e,t){e&&e.removeChild(t)}selectRootElement(e,t){let n=\"string\"==typeof e?document.querySelector(e):e;if(!n)throw new Error(`The selector \"${e}\" did not match any elements`);return t||(n.textContent=\"\"),n}parentNode(e){return e.parentNode}nextSibling(e){return e.nextSibling}setAttribute(e,t,n,i){if(i){t=i+\":\"+t;const s=cf[i];s?e.setAttributeNS(s,t,n):e.setAttribute(t,n)}else e.setAttribute(t,n)}removeAttribute(e,t,n){if(n){const i=cf[n];i?e.removeAttributeNS(i,t):e.removeAttribute(`${n}:${t}`)}else e.removeAttribute(t)}addClass(e,t){e.classList.add(t)}removeClass(e,t){e.classList.remove(t)}setStyle(e,t,n,i){i&Xa.DashCase?e.style.setProperty(t,n,i&Xa.Important?\"important\":\"\"):e.style[t]=n}removeStyle(e,t,n){n&Xa.DashCase?e.style.removeProperty(t):e.style[t]=\"\"}setProperty(e,t,n){e[t]=n}setValue(e,t){e.nodeValue=t}listen(e,t,n){return\"string\"==typeof e?this.eventManager.addGlobalEventListener(e,t,hf(n)):this.eventManager.addEventListener(e,t,hf(n))}}class ff extends pf{constructor(e,t,n,i){super(e),this.component=n;const s=uf(i+\"-\"+n.id,n.styles,[]);t.addStyles(s),this.contentAttr=\"_ngcontent-%COMP%\".replace(df,i+\"-\"+n.id),this.hostAttr=function(e){return\"_nghost-%COMP%\".replace(df,e)}(i+\"-\"+n.id)}applyToHost(e){super.setAttribute(e,this.hostAttr,\"\")}createElement(e,t){const n=super.createElement(e,t);return super.setAttribute(n,this.contentAttr,\"\"),n}}class _f extends pf{constructor(e,t,n,i){super(e),this.sharedStylesHost=t,this.hostEl=n,this.component=i,this.shadowRoot=i.encapsulation===pt.ShadowDom?n.attachShadow({mode:\"open\"}):n.createShadowRoot(),this.sharedStylesHost.addHost(this.shadowRoot);const s=uf(i.id,i.styles,[]);for(let r=0;r{class e extends of{constructor(e){super(e)}supports(e){return!0}addEventListener(e,t,n){return e.addEventListener(t,n,!1),()=>this.removeEventListener(e,t,n)}removeEventListener(e,t,n){return e.removeEventListener(t,n)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const yf={pan:!0,panstart:!0,panmove:!0,panend:!0,pancancel:!0,panleft:!0,panright:!0,panup:!0,pandown:!0,pinch:!0,pinchstart:!0,pinchmove:!0,pinchend:!0,pinchcancel:!0,pinchin:!0,pinchout:!0,press:!0,pressup:!0,rotate:!0,rotatestart:!0,rotatemove:!0,rotateend:!0,rotatecancel:!0,swipe:!0,swipeleft:!0,swiperight:!0,swipeup:!0,swipedown:!0,tap:!0},bf=new Ve(\"HammerGestureConfig\"),vf=new Ve(\"HammerLoader\");let wf=(()=>{class e{constructor(){this.events=[],this.overrides={}}buildHammer(e){const t=new Hammer(e,this.options);t.get(\"pinch\").set({enable:!0}),t.get(\"rotate\").set({enable:!0});for(const n in this.overrides)t.get(n).set(this.overrides[n]);return t}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const Mf=[{provide:sf,useClass:(()=>{class e extends of{constructor(e,t,n,i){super(e),this._config=t,this.console=n,this.loader=i}supports(e){return!(!yf.hasOwnProperty(e.toLowerCase())&&!this.isCustomEvent(e)||!window.Hammer&&!this.loader&&(this.console.warn(`The \"${e}\" event cannot be bound because Hammer.JS is not `+\"loaded and no custom loader has been specified.\"),1))}addEventListener(e,t,n){const i=this.manager.getZone();if(t=t.toLowerCase(),!window.Hammer&&this.loader){let i=!1,s=()=>{i=!0};return this.loader().then(()=>{if(!window.Hammer)return this.console.warn(\"The custom HAMMER_LOADER completed, but Hammer.JS is not present.\"),void(s=()=>{});i||(s=this.addEventListener(e,t,n))}).catch(()=>{this.console.warn(`The \"${t}\" event cannot be bound because the custom `+\"Hammer.JS loader failed.\"),s=()=>{}}),()=>{s()}}return i.runOutsideAngular(()=>{const s=this._config.buildHammer(e),r=function(e){i.runGuarded((function(){n(e)}))};return s.on(t,r),()=>{s.off(t,r),\"function\"==typeof s.destroy&&s.destroy()}})}isCustomEvent(e){return this._config.events.indexOf(e)>-1}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd),Qe(bf),Qe(Gc),Qe(vf,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),multi:!0,deps:[Nd,bf,Gc,[new le,vf]]},{provide:bf,useClass:wf,deps:[]}];let kf=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:Mf}),e})();const Sf=[\"alt\",\"control\",\"meta\",\"shift\"],Lf={\"\\b\":\"Backspace\",\"\\t\":\"Tab\",\"\\x7f\":\"Delete\",\"\\x1b\":\"Escape\",Del:\"Delete\",Esc:\"Escape\",Left:\"ArrowLeft\",Right:\"ArrowRight\",Up:\"ArrowUp\",Down:\"ArrowDown\",Menu:\"ContextMenu\",Scroll:\"ScrollLock\",Win:\"OS\"},xf={A:\"1\",B:\"2\",C:\"3\",D:\"4\",E:\"5\",F:\"6\",G:\"7\",H:\"8\",I:\"9\",J:\"*\",K:\"+\",M:\"-\",N:\".\",O:\"/\",\"`\":\"0\",\"\\x90\":\"NumLock\"},Cf={alt:e=>e.altKey,control:e=>e.ctrlKey,meta:e=>e.metaKey,shift:e=>e.shiftKey};let Tf=(()=>{class e extends of{constructor(e){super(e)}supports(t){return null!=e.parseEventName(t)}addEventListener(t,n,i){const s=e.parseEventName(n),r=e.eventCallback(s.fullKey,i,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>Fd().onAndCancel(t,s.domEventName,r))}static parseEventName(t){const n=t.toLowerCase().split(\".\"),i=n.shift();if(0===n.length||\"keydown\"!==i&&\"keyup\"!==i)return null;const s=e._normalizeKey(n.pop());let r=\"\";if(Sf.forEach(e=>{const t=n.indexOf(e);t>-1&&(n.splice(t,1),r+=e+\".\")}),r+=s,0!=n.length||0===s.length)return null;const o={};return o.domEventName=i,o.fullKey=r,o}static getEventFullKey(e){let t=\"\",n=function(e){let t=e.key;if(null==t){if(t=e.keyIdentifier,null==t)return\"Unidentified\";t.startsWith(\"U+\")&&(t=String.fromCharCode(parseInt(t.substring(2),16)),3===e.location&&xf.hasOwnProperty(t)&&(t=xf[t]))}return Lf[t]||t}(e);return n=n.toLowerCase(),\" \"===n?n=\"space\":\".\"===n&&(n=\"dot\"),Sf.forEach(i=>{i!=n&&(0,Cf[i])(e)&&(t+=i+\".\")}),t+=n,t}static eventCallback(t,n,i){return s=>{e.getEventFullKey(s)===t&&i.runGuarded(()=>n(s))}}static _normalizeKey(e){switch(e){case\"esc\":return\"escape\";default:return e}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),Df=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:function(){return Qe(Yf)},token:e,providedIn:\"root\"}),e})(),Yf=(()=>{class e extends Df{constructor(e){super(),this._doc=e}sanitize(e,t){if(null==t)return null;switch(e){case Gi.NONE:return t;case Gi.HTML:return vi(t,\"HTML\")?bi(t):Bi(this._doc,String(t));case Gi.STYLE:return vi(t,\"Style\")?bi(t):Zi(t);case Gi.SCRIPT:if(vi(t,\"Script\"))return bi(t);throw new Error(\"unsafe value used in a script context\");case Gi.URL:return wi(t),vi(t,\"URL\")?bi(t):Ti(String(t));case Gi.RESOURCE_URL:if(vi(t,\"ResourceURL\"))return bi(t);throw new Error(\"unsafe value used in a resource URL context (see http://g.co/ng/security#xss)\");default:throw new Error(`Unexpected SecurityContext ${e} (see http://g.co/ng/security#xss)`)}}bypassSecurityTrustHtml(e){return new pi(e)}bypassSecurityTrustStyle(e){return new fi(e)}bypassSecurityTrustScript(e){return new _i(e)}bypassSecurityTrustUrl(e){return new gi(e)}bypassSecurityTrustResourceUrl(e){return new yi(e)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({factory:function(){return e=Qe(We),new Yf(e.get(Nd));var e},token:e,providedIn:\"root\"}),e})();const Ef=Sd(Ad,\"browser\",[{provide:Bc,useValue:\"browser\"},{provide:$c,useValue:function(){Zp.makeCurrent(),nf.init()},multi:!0},{provide:Nd,useFactory:function(){return function(e){At=e}(document),document},deps:[]}]),Of=[[],{provide:eo,useValue:\"root\"},{provide:hi,useFactory:function(){return new hi},deps:[]},{provide:sf,useClass:gf,multi:!0,deps:[Nd,ld,Bc]},{provide:sf,useClass:Tf,multi:!0,deps:[Nd]},[],{provide:mf,useClass:mf,deps:[rf,lf,Vc]},{provide:Qa,useExisting:mf},{provide:af,useExisting:lf},{provide:lf,useClass:lf,deps:[Nd]},{provide:_d,useClass:_d,deps:[ld]},{provide:rf,useClass:rf,deps:[sf,ld]},[]];let If=(()=>{class e{constructor(e){if(e)throw new Error(\"BrowserModule has already been loaded. If you need access to common directives such as NgIf and NgFor from a lazy loaded module, import CommonModule instead.\")}static withServerTransition(t){return{ngModule:e,providers:[{provide:Vc,useValue:t.appId},{provide:ef,useExisting:Vc},tf]}}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)(Qe(e,12))},providers:Of,imports:[Mu,Hd]}),e})();function Pf(){return B(1)}function Af(...e){return Pf()(xu(...e))}function Rf(...e){const t=e[e.length-1];return C(t)?(e.pop(),n=>Af(e,n,t)):t=>Af(e,t)}\"undefined\"!=typeof window&&window;class Hf{}function jf(e,t){return{type:7,name:e,definitions:t,options:{}}}function Ff(e,t=null){return{type:4,styles:t,timings:e}}function Nf(e,t=null){return{type:3,steps:e,options:t}}function zf(e,t=null){return{type:2,steps:e,options:t}}function Vf(e){return{type:6,styles:e,offset:null}}function Wf(e,t,n){return{type:0,name:e,styles:t,options:n}}function Uf(e,t,n=null){return{type:1,expr:e,animation:t,options:n}}function $f(e=null){return{type:9,options:e}}function Bf(e,t,n=null){return{type:11,selector:e,animation:t,options:n}}function qf(e){Promise.resolve(null).then(e)}class Gf{constructor(e=0,t=0){this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this.parentPlayer=null,this.totalTime=e+t}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(e=>e()),this._onDoneFns=[])}onStart(e){this._onStartFns.push(e)}onDone(e){this._onDoneFns.push(e)}onDestroy(e){this._onDestroyFns.push(e)}hasStarted(){return this._started}init(){}play(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}triggerMicrotask(){qf(()=>this._onFinish())}_onStart(){this._onStartFns.forEach(e=>e()),this._onStartFns=[]}pause(){}restart(){}finish(){this._onFinish()}destroy(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach(e=>e()),this._onDestroyFns=[])}reset(){}setPosition(e){}getPosition(){return 0}triggerCallback(e){const t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach(e=>e()),t.length=0}}class Jf{constructor(e){this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=e;let t=0,n=0,i=0;const s=this.players.length;0==s?qf(()=>this._onFinish()):this.players.forEach(e=>{e.onDone(()=>{++t==s&&this._onFinish()}),e.onDestroy(()=>{++n==s&&this._onDestroy()}),e.onStart(()=>{++i==s&&this._onStart()})}),this.totalTime=this.players.reduce((e,t)=>Math.max(e,t.totalTime),0)}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(e=>e()),this._onDoneFns=[])}init(){this.players.forEach(e=>e.init())}onStart(e){this._onStartFns.push(e)}_onStart(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach(e=>e()),this._onStartFns=[])}onDone(e){this._onDoneFns.push(e)}onDestroy(e){this._onDestroyFns.push(e)}hasStarted(){return this._started}play(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach(e=>e.play())}pause(){this.players.forEach(e=>e.pause())}restart(){this.players.forEach(e=>e.restart())}finish(){this._onFinish(),this.players.forEach(e=>e.finish())}destroy(){this._onDestroy()}_onDestroy(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach(e=>e.destroy()),this._onDestroyFns.forEach(e=>e()),this._onDestroyFns=[])}reset(){this.players.forEach(e=>e.reset()),this._destroyed=!1,this._finished=!1,this._started=!1}setPosition(e){const t=e*this.totalTime;this.players.forEach(e=>{const n=e.totalTime?Math.min(1,t/e.totalTime):1;e.setPosition(n)})}getPosition(){let e=0;return this.players.forEach(t=>{const n=t.getPosition();e=Math.min(n,e)}),e}beforeDestroy(){this.players.forEach(e=>{e.beforeDestroy&&e.beforeDestroy()})}triggerCallback(e){const t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach(e=>e()),t.length=0}}function Kf(){return\"undefined\"!=typeof process&&\"[object process]\"==={}.toString.call(process)}function Zf(e){switch(e.length){case 0:return new Gf;case 1:return e[0];default:return new Jf(e)}}function Qf(e,t,n,i,s={},r={}){const o=[],a=[];let l=-1,c=null;if(i.forEach(e=>{const n=e.offset,i=n==l,d=i&&c||{};Object.keys(e).forEach(n=>{let i=n,a=e[n];if(\"offset\"!==n)switch(i=t.normalizePropertyName(i,o),a){case\"!\":a=s[n];break;case\"*\":a=r[n];break;default:a=t.normalizeStyleValue(n,i,a,o)}d[i]=a}),i||a.push(d),c=d,l=n}),o.length){const e=\"\\n - \";throw new Error(`Unable to animate due to the following errors:${e}${o.join(e)}`)}return a}function Xf(e,t,n,i){switch(t){case\"start\":e.onStart(()=>i(n&&e_(n,\"start\",e)));break;case\"done\":e.onDone(()=>i(n&&e_(n,\"done\",e)));break;case\"destroy\":e.onDestroy(()=>i(n&&e_(n,\"destroy\",e)))}}function e_(e,t,n){const i=n.totalTime,s=t_(e.element,e.triggerName,e.fromState,e.toState,t||e.phaseName,null==i?e.totalTime:i,!!n.disabled),r=e._data;return null!=r&&(s._data=r),s}function t_(e,t,n,i,s=\"\",r=0,o){return{element:e,triggerName:t,fromState:n,toState:i,phaseName:s,totalTime:r,disabled:!!o}}function n_(e,t,n){let i;return e instanceof Map?(i=e.get(t),i||e.set(t,i=n)):(i=e[t],i||(i=e[t]=n)),i}function i_(e){const t=e.indexOf(\":\");return[e.substring(1,t),e.substr(t+1)]}let s_=(e,t)=>!1,r_=(e,t)=>!1,o_=(e,t,n)=>[];const a_=Kf();(a_||\"undefined\"!=typeof Element)&&(s_=(e,t)=>e.contains(t),r_=(()=>{if(a_||Element.prototype.matches)return(e,t)=>e.matches(t);{const e=Element.prototype,t=e.matchesSelector||e.mozMatchesSelector||e.msMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;return t?(e,n)=>t.apply(e,[n]):r_}})(),o_=(e,t,n)=>{let i=[];if(n)i.push(...e.querySelectorAll(t));else{const n=e.querySelector(t);n&&i.push(n)}return i});let l_=null,c_=!1;function d_(e){l_||(l_=(\"undefined\"!=typeof document?document.body:null)||{},c_=!!l_.style&&\"WebkitAppearance\"in l_.style);let t=!0;return l_.style&&!function(e){return\"ebkit\"==e.substring(1,6)}(e)&&(t=e in l_.style,!t&&c_)&&(t=\"Webkit\"+e.charAt(0).toUpperCase()+e.substr(1)in l_.style),t}const u_=r_,h_=s_,m_=o_;function p_(e){const t={};return Object.keys(e).forEach(n=>{const i=n.replace(/([a-z])([A-Z])/g,\"$1-$2\");t[i]=e[n]}),t}let f_=(()=>{class e{validateStyleProperty(e){return d_(e)}matchesElement(e,t){return u_(e,t)}containsElement(e,t){return h_(e,t)}query(e,t,n){return m_(e,t,n)}computeStyle(e,t,n){return n||\"\"}animate(e,t,n,i,s,r=[],o){return new Gf(n,i)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),__=(()=>{class e{}return e.NOOP=new f_,e})();function g_(e){if(\"number\"==typeof e)return e;const t=e.match(/^(-?[\\.\\d]+)(m?s)/);return!t||t.length<2?0:y_(parseFloat(t[1]),t[2])}function y_(e,t){switch(t){case\"s\":return 1e3*e;default:return e}}function b_(e,t,n){return e.hasOwnProperty(\"duration\")?e:function(e,t,n){let i,s=0,r=\"\";if(\"string\"==typeof e){const n=e.match(/^(-?[\\.\\d]+)(m?s)(?:\\s+(-?[\\.\\d]+)(m?s))?(?:\\s+([-a-z]+(?:\\(.+?\\))?))?$/i);if(null===n)return t.push(`The provided timing value \"${e}\" is invalid.`),{duration:0,delay:0,easing:\"\"};i=y_(parseFloat(n[1]),n[2]);const o=n[3];null!=o&&(s=y_(parseFloat(o),n[4]));const a=n[5];a&&(r=a)}else i=e;if(!n){let n=!1,r=t.length;i<0&&(t.push(\"Duration values below 0 are not allowed for this animation step.\"),n=!0),s<0&&(t.push(\"Delay values below 0 are not allowed for this animation step.\"),n=!0),n&&t.splice(r,0,`The provided timing value \"${e}\" is invalid.`)}return{duration:i,delay:s,easing:r}}(e,t,n)}function v_(e,t={}){return Object.keys(e).forEach(n=>{t[n]=e[n]}),t}function w_(e,t,n={}){if(t)for(let i in e)n[i]=e[i];else v_(e,n);return n}function M_(e,t,n){return n?t+\":\"+n+\";\":\"\"}function k_(e){let t=\"\";for(let n=0;n{const s=O_(i);n&&!n.hasOwnProperty(i)&&(n[i]=e.style[s]),e.style[s]=t[i]}),Kf()&&k_(e))}function L_(e,t){e.style&&(Object.keys(t).forEach(t=>{const n=O_(t);e.style[n]=\"\"}),Kf()&&k_(e))}function x_(e){return Array.isArray(e)?1==e.length?e[0]:zf(e):e}const C_=new RegExp(\"{{\\\\s*(.+?)\\\\s*}}\",\"g\");function T_(e){let t=[];if(\"string\"==typeof e){let n;for(;n=C_.exec(e);)t.push(n[1]);C_.lastIndex=0}return t}function D_(e,t,n){const i=e.toString(),s=i.replace(C_,(e,i)=>{let s=t[i];return t.hasOwnProperty(i)||(n.push(`Please provide a value for the animation param ${i}`),s=\"\"),s.toString()});return s==i?e:s}function Y_(e){const t=[];let n=e.next();for(;!n.done;)t.push(n.value),n=e.next();return t}const E_=/-+([a-z0-9])/g;function O_(e){return e.replace(E_,(...e)=>e[1].toUpperCase())}function I_(e,t){return 0===e||0===t}function P_(e,t,n){const i=Object.keys(n);if(i.length&&t.length){let r=t[0],o=[];if(i.forEach(e=>{r.hasOwnProperty(e)||o.push(e),r[e]=n[e]}),o.length)for(var s=1;sfunction(e,t,n){if(\":\"==e[0]){const i=function(e,t){switch(e){case\":enter\":return\"void => *\";case\":leave\":return\"* => void\";case\":increment\":return(e,t)=>parseFloat(t)>parseFloat(e);case\":decrement\":return(e,t)=>parseFloat(t) *\"}}(e,n);if(\"function\"==typeof i)return void t.push(i);e=i}const i=e.match(/^(\\*|[-\\w]+)\\s*()\\s*(\\*|[-\\w]+)$/);if(null==i||i.length<4)return n.push(`The provided transition expression \"${e}\" is not supported`),t;const s=i[1],r=i[2],o=i[3];t.push(N_(s,o)),\"<\"!=r[0]||\"*\"==s&&\"*\"==o||t.push(N_(o,s))}(e,n,t)):n.push(e),n}const j_=new Set([\"true\",\"1\"]),F_=new Set([\"false\",\"0\"]);function N_(e,t){const n=j_.has(e)||F_.has(e),i=j_.has(t)||F_.has(t);return(s,r)=>{let o=\"*\"==e||e==s,a=\"*\"==t||t==r;return!o&&n&&\"boolean\"==typeof s&&(o=s?j_.has(e):F_.has(e)),!a&&i&&\"boolean\"==typeof r&&(a=r?j_.has(t):F_.has(t)),o&&a}}const z_=new RegExp(\"s*:selfs*,?\",\"g\");function V_(e,t,n){return new W_(e).build(t,n)}class W_{constructor(e){this._driver=e}build(e,t){const n=new U_(t);return this._resetContextStyleTimingState(n),A_(this,x_(e),n)}_resetContextStyleTimingState(e){e.currentQuerySelector=\"\",e.collectedStyles={},e.collectedStyles[\"\"]={},e.currentTime=0}visitTrigger(e,t){let n=t.queryCount=0,i=t.depCount=0;const s=[],r=[];return\"@\"==e.name.charAt(0)&&t.errors.push(\"animation triggers cannot be prefixed with an `@` sign (e.g. trigger('@foo', [...]))\"),e.definitions.forEach(e=>{if(this._resetContextStyleTimingState(t),0==e.type){const n=e,i=n.name;i.toString().split(/\\s*,\\s*/).forEach(e=>{n.name=e,s.push(this.visitState(n,t))}),n.name=i}else if(1==e.type){const s=this.visitTransition(e,t);n+=s.queryCount,i+=s.depCount,r.push(s)}else t.errors.push(\"only state() and transition() definitions can sit inside of a trigger()\")}),{type:7,name:e.name,states:s,transitions:r,queryCount:n,depCount:i,options:null}}visitState(e,t){const n=this.visitStyle(e.styles,t),i=e.options&&e.options.params||null;if(n.containsDynamicStyles){const s=new Set,r=i||{};if(n.styles.forEach(e=>{if($_(e)){const t=e;Object.keys(t).forEach(e=>{T_(t[e]).forEach(e=>{r.hasOwnProperty(e)||s.add(e)})})}}),s.size){const n=Y_(s.values());t.errors.push(`state(\"${e.name}\", ...) must define default values for all the following style substitutions: ${n.join(\", \")}`)}}return{type:0,name:e.name,style:n,options:i?{params:i}:null}}visitTransition(e,t){t.queryCount=0,t.depCount=0;const n=A_(this,x_(e.animation),t);return{type:1,matchers:H_(e.expr,t.errors),animation:n,queryCount:t.queryCount,depCount:t.depCount,options:B_(e.options)}}visitSequence(e,t){return{type:2,steps:e.steps.map(e=>A_(this,e,t)),options:B_(e.options)}}visitGroup(e,t){const n=t.currentTime;let i=0;const s=e.steps.map(e=>{t.currentTime=n;const s=A_(this,e,t);return i=Math.max(i,t.currentTime),s});return t.currentTime=i,{type:3,steps:s,options:B_(e.options)}}visitAnimate(e,t){const n=function(e,t){let n=null;if(e.hasOwnProperty(\"duration\"))n=e;else if(\"number\"==typeof e)return q_(b_(e,t).duration,0,\"\");const i=e;if(i.split(/\\s+/).some(e=>\"{\"==e.charAt(0)&&\"{\"==e.charAt(1))){const e=q_(0,0,\"\");return e.dynamic=!0,e.strValue=i,e}return n=n||b_(i,t),q_(n.duration,n.delay,n.easing)}(e.timings,t.errors);let i;t.currentAnimateTimings=n;let s=e.styles?e.styles:Vf({});if(5==s.type)i=this.visitKeyframes(s,t);else{let s=e.styles,r=!1;if(!s){r=!0;const e={};n.easing&&(e.easing=n.easing),s=Vf(e)}t.currentTime+=n.duration+n.delay;const o=this.visitStyle(s,t);o.isEmptyStep=r,i=o}return t.currentAnimateTimings=null,{type:4,timings:n,style:i,options:null}}visitStyle(e,t){const n=this._makeStyleAst(e,t);return this._validateStyleAst(n,t),n}_makeStyleAst(e,t){const n=[];Array.isArray(e.styles)?e.styles.forEach(e=>{\"string\"==typeof e?\"*\"==e?n.push(e):t.errors.push(`The provided style string value ${e} is not allowed.`):n.push(e)}):n.push(e.styles);let i=!1,s=null;return n.forEach(e=>{if($_(e)){const t=e,n=t.easing;if(n&&(s=n,delete t.easing),!i)for(let e in t)if(t[e].toString().indexOf(\"{{\")>=0){i=!0;break}}}),{type:6,styles:n,easing:s,offset:e.offset,containsDynamicStyles:i,options:null}}_validateStyleAst(e,t){const n=t.currentAnimateTimings;let i=t.currentTime,s=t.currentTime;n&&s>0&&(s-=n.duration+n.delay),e.styles.forEach(e=>{\"string\"!=typeof e&&Object.keys(e).forEach(n=>{if(!this._driver.validateStyleProperty(n))return void t.errors.push(`The provided animation property \"${n}\" is not a supported CSS property for animations`);const r=t.collectedStyles[t.currentQuerySelector],o=r[n];let a=!0;o&&(s!=i&&s>=o.startTime&&i<=o.endTime&&(t.errors.push(`The CSS property \"${n}\" that exists between the times of \"${o.startTime}ms\" and \"${o.endTime}ms\" is also being animated in a parallel animation between the times of \"${s}ms\" and \"${i}ms\"`),a=!1),s=o.startTime),a&&(r[n]={startTime:s,endTime:i}),t.options&&function(e,t,n){const i=t.params||{},s=T_(e);s.length&&s.forEach(e=>{i.hasOwnProperty(e)||n.push(`Unable to resolve the local animation param ${e} in the given list of values`)})}(e[n],t.options,t.errors)})})}visitKeyframes(e,t){const n={type:5,styles:[],options:null};if(!t.currentAnimateTimings)return t.errors.push(\"keyframes() must be placed inside of a call to animate()\"),n;let i=0;const s=[];let r=!1,o=!1,a=0;const l=e.steps.map(e=>{const n=this._makeStyleAst(e,t);let l=null!=n.offset?n.offset:function(e){if(\"string\"==typeof e)return null;let t=null;if(Array.isArray(e))e.forEach(e=>{if($_(e)&&e.hasOwnProperty(\"offset\")){const n=e;t=parseFloat(n.offset),delete n.offset}});else if($_(e)&&e.hasOwnProperty(\"offset\")){const n=e;t=parseFloat(n.offset),delete n.offset}return t}(n.styles),c=0;return null!=l&&(i++,c=n.offset=l),o=o||c<0||c>1,r=r||c0&&i{const r=d>0?i==u?1:d*i:s[i],o=r*p;t.currentTime=h+m.delay+o,m.duration=o,this._validateStyleAst(e,t),e.offset=r,n.styles.push(e)}),n}visitReference(e,t){return{type:8,animation:A_(this,x_(e.animation),t),options:B_(e.options)}}visitAnimateChild(e,t){return t.depCount++,{type:9,options:B_(e.options)}}visitAnimateRef(e,t){return{type:10,animation:this.visitReference(e.animation,t),options:B_(e.options)}}visitQuery(e,t){const n=t.currentQuerySelector,i=e.options||{};t.queryCount++,t.currentQuery=e;const[s,r]=function(e){const t=!!e.split(/\\s*,\\s*/).find(e=>\":self\"==e);return t&&(e=e.replace(z_,\"\")),[e=e.replace(/@\\*/g,\".ng-trigger\").replace(/@\\w+/g,e=>\".ng-trigger-\"+e.substr(1)).replace(/:animating/g,\".ng-animating\"),t]}(e.selector);t.currentQuerySelector=n.length?n+\" \"+s:s,n_(t.collectedStyles,t.currentQuerySelector,{});const o=A_(this,x_(e.animation),t);return t.currentQuery=null,t.currentQuerySelector=n,{type:11,selector:s,limit:i.limit||0,optional:!!i.optional,includeSelf:r,animation:o,originalSelector:e.selector,options:B_(e.options)}}visitStagger(e,t){t.currentQuery||t.errors.push(\"stagger() can only be used inside of query()\");const n=\"full\"===e.timings?{duration:0,delay:0,easing:\"full\"}:b_(e.timings,t.errors,!0);return{type:12,animation:A_(this,x_(e.animation),t),timings:n,options:null}}}class U_{constructor(e){this.errors=e,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles={},this.options=null}}function $_(e){return!Array.isArray(e)&&\"object\"==typeof e}function B_(e){var t;return e?(e=v_(e)).params&&(e.params=(t=e.params)?v_(t):null):e={},e}function q_(e,t,n){return{duration:e,delay:t,easing:n}}function G_(e,t,n,i,s,r,o=null,a=!1){return{type:1,element:e,keyframes:t,preStyleProps:n,postStyleProps:i,duration:s,delay:r,totalTime:s+r,easing:o,subTimeline:a}}class J_{constructor(){this._map=new Map}consume(e){let t=this._map.get(e);return t?this._map.delete(e):t=[],t}append(e,t){let n=this._map.get(e);n||this._map.set(e,n=[]),n.push(...t)}has(e){return this._map.has(e)}clear(){this._map.clear()}}const K_=new RegExp(\":enter\",\"g\"),Z_=new RegExp(\":leave\",\"g\");function Q_(e,t,n,i,s,r={},o={},a,l,c=[]){return(new X_).buildKeyframes(e,t,n,i,s,r,o,a,l,c)}class X_{buildKeyframes(e,t,n,i,s,r,o,a,l,c=[]){l=l||new J_;const d=new tg(e,t,l,i,s,c,[]);d.options=a,d.currentTimeline.setStyles([r],null,d.errors,a),A_(this,n,d);const u=d.timelines.filter(e=>e.containsAnimation());if(u.length&&Object.keys(o).length){const e=u[u.length-1];e.allowOnlyTimelineStyles()||e.setStyles([o],null,d.errors,a)}return u.length?u.map(e=>e.buildKeyframes()):[G_(t,[],[],[],0,0,\"\",!1)]}visitTrigger(e,t){}visitState(e,t){}visitTransition(e,t){}visitAnimateChild(e,t){const n=t.subInstructions.consume(t.element);if(n){const i=t.createSubContext(e.options),s=t.currentTimeline.currentTime,r=this._visitSubInstructions(n,i,i.options);s!=r&&t.transformIntoNewTimeline(r)}t.previousNode=e}visitAnimateRef(e,t){const n=t.createSubContext(e.options);n.transformIntoNewTimeline(),this.visitReference(e.animation,n),t.transformIntoNewTimeline(n.currentTimeline.currentTime),t.previousNode=e}_visitSubInstructions(e,t,n){let i=t.currentTimeline.currentTime;const s=null!=n.duration?g_(n.duration):null,r=null!=n.delay?g_(n.delay):null;return 0!==s&&e.forEach(e=>{const n=t.appendInstructionToTimeline(e,s,r);i=Math.max(i,n.duration+n.delay)}),i}visitReference(e,t){t.updateOptions(e.options,!0),A_(this,e.animation,t),t.previousNode=e}visitSequence(e,t){const n=t.subContextCount;let i=t;const s=e.options;if(s&&(s.params||s.delay)&&(i=t.createSubContext(s),i.transformIntoNewTimeline(),null!=s.delay)){6==i.previousNode.type&&(i.currentTimeline.snapshotCurrentStyles(),i.previousNode=eg);const e=g_(s.delay);i.delayNextStep(e)}e.steps.length&&(e.steps.forEach(e=>A_(this,e,i)),i.currentTimeline.applyStylesToKeyframe(),i.subContextCount>n&&i.transformIntoNewTimeline()),t.previousNode=e}visitGroup(e,t){const n=[];let i=t.currentTimeline.currentTime;const s=e.options&&e.options.delay?g_(e.options.delay):0;e.steps.forEach(r=>{const o=t.createSubContext(e.options);s&&o.delayNextStep(s),A_(this,r,o),i=Math.max(i,o.currentTimeline.currentTime),n.push(o.currentTimeline)}),n.forEach(e=>t.currentTimeline.mergeTimelineCollectedStyles(e)),t.transformIntoNewTimeline(i),t.previousNode=e}_visitTiming(e,t){if(e.dynamic){const n=e.strValue;return b_(t.params?D_(n,t.params,t.errors):n,t.errors)}return{duration:e.duration,delay:e.delay,easing:e.easing}}visitAnimate(e,t){const n=t.currentAnimateTimings=this._visitTiming(e.timings,t),i=t.currentTimeline;n.delay&&(t.incrementTime(n.delay),i.snapshotCurrentStyles());const s=e.style;5==s.type?this.visitKeyframes(s,t):(t.incrementTime(n.duration),this.visitStyle(s,t),i.applyStylesToKeyframe()),t.currentAnimateTimings=null,t.previousNode=e}visitStyle(e,t){const n=t.currentTimeline,i=t.currentAnimateTimings;!i&&n.getCurrentStyleProperties().length&&n.forwardFrame();const s=i&&i.easing||e.easing;e.isEmptyStep?n.applyEmptyStep(s):n.setStyles(e.styles,s,t.errors,t.options),t.previousNode=e}visitKeyframes(e,t){const n=t.currentAnimateTimings,i=t.currentTimeline.duration,s=n.duration,r=t.createSubContext().currentTimeline;r.easing=n.easing,e.styles.forEach(e=>{r.forwardTime((e.offset||0)*s),r.setStyles(e.styles,e.easing,t.errors,t.options),r.applyStylesToKeyframe()}),t.currentTimeline.mergeTimelineCollectedStyles(r),t.transformIntoNewTimeline(i+s),t.previousNode=e}visitQuery(e,t){const n=t.currentTimeline.currentTime,i=e.options||{},s=i.delay?g_(i.delay):0;s&&(6===t.previousNode.type||0==n&&t.currentTimeline.getCurrentStyleProperties().length)&&(t.currentTimeline.snapshotCurrentStyles(),t.previousNode=eg);let r=n;const o=t.invokeQuery(e.selector,e.originalSelector,e.limit,e.includeSelf,!!i.optional,t.errors);t.currentQueryTotal=o.length;let a=null;o.forEach((n,i)=>{t.currentQueryIndex=i;const o=t.createSubContext(e.options,n);s&&o.delayNextStep(s),n===t.element&&(a=o.currentTimeline),A_(this,e.animation,o),o.currentTimeline.applyStylesToKeyframe(),r=Math.max(r,o.currentTimeline.currentTime)}),t.currentQueryIndex=0,t.currentQueryTotal=0,t.transformIntoNewTimeline(r),a&&(t.currentTimeline.mergeTimelineCollectedStyles(a),t.currentTimeline.snapshotCurrentStyles()),t.previousNode=e}visitStagger(e,t){const n=t.parentContext,i=t.currentTimeline,s=e.timings,r=Math.abs(s.duration),o=r*(t.currentQueryTotal-1);let a=r*t.currentQueryIndex;switch(s.duration<0?\"reverse\":s.easing){case\"reverse\":a=o-a;break;case\"full\":a=n.currentStaggerTime}const l=t.currentTimeline;a&&l.delayNextStep(a);const c=l.currentTime;A_(this,e.animation,t),t.previousNode=e,n.currentStaggerTime=i.currentTime-c+(i.startTime-n.currentTimeline.startTime)}}const eg={};class tg{constructor(e,t,n,i,s,r,o,a){this._driver=e,this.element=t,this.subInstructions=n,this._enterClassName=i,this._leaveClassName=s,this.errors=r,this.timelines=o,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=eg,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=a||new ng(this._driver,t,0),o.push(this.currentTimeline)}get params(){return this.options.params}updateOptions(e,t){if(!e)return;const n=e;let i=this.options;null!=n.duration&&(i.duration=g_(n.duration)),null!=n.delay&&(i.delay=g_(n.delay));const s=n.params;if(s){let e=i.params;e||(e=this.options.params={}),Object.keys(s).forEach(n=>{t&&e.hasOwnProperty(n)||(e[n]=D_(s[n],e,this.errors))})}}_copyOptions(){const e={};if(this.options){const t=this.options.params;if(t){const n=e.params={};Object.keys(t).forEach(e=>{n[e]=t[e]})}}return e}createSubContext(e=null,t,n){const i=t||this.element,s=new tg(this._driver,i,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(i,n||0));return s.previousNode=this.previousNode,s.currentAnimateTimings=this.currentAnimateTimings,s.options=this._copyOptions(),s.updateOptions(e),s.currentQueryIndex=this.currentQueryIndex,s.currentQueryTotal=this.currentQueryTotal,s.parentContext=this,this.subContextCount++,s}transformIntoNewTimeline(e){return this.previousNode=eg,this.currentTimeline=this.currentTimeline.fork(this.element,e),this.timelines.push(this.currentTimeline),this.currentTimeline}appendInstructionToTimeline(e,t,n){const i={duration:null!=t?t:e.duration,delay:this.currentTimeline.currentTime+(null!=n?n:0)+e.delay,easing:\"\"},s=new ig(this._driver,e.element,e.keyframes,e.preStyleProps,e.postStyleProps,i,e.stretchStartingKeyframe);return this.timelines.push(s),i}incrementTime(e){this.currentTimeline.forwardTime(this.currentTimeline.duration+e)}delayNextStep(e){e>0&&this.currentTimeline.delayNextStep(e)}invokeQuery(e,t,n,i,s,r){let o=[];if(i&&o.push(this.element),e.length>0){e=(e=e.replace(K_,\".\"+this._enterClassName)).replace(Z_,\".\"+this._leaveClassName);let t=this._driver.query(this.element,e,1!=n);0!==n&&(t=n<0?t.slice(t.length+n,t.length):t.slice(0,n)),o.push(...t)}return s||0!=o.length||r.push(`\\`query(\"${t}\")\\` returned zero elements. (Use \\`query(\"${t}\", { optional: true })\\` if you wish to allow this.)`),o}}class ng{constructor(e,t,n,i){this._driver=e,this.element=t,this.startTime=n,this._elementTimelineStylesLookup=i,this.duration=0,this._previousKeyframe={},this._currentKeyframe={},this._keyframes=new Map,this._styleSummary={},this._pendingStyles={},this._backFill={},this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._localTimelineStyles=Object.create(this._backFill,{}),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(t),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(t,this._localTimelineStyles)),this._loadKeyframe()}containsAnimation(){switch(this._keyframes.size){case 0:return!1;case 1:return this.getCurrentStyleProperties().length>0;default:return!0}}getCurrentStyleProperties(){return Object.keys(this._currentKeyframe)}get currentTime(){return this.startTime+this.duration}delayNextStep(e){const t=1==this._keyframes.size&&Object.keys(this._pendingStyles).length;this.duration||t?(this.forwardTime(this.currentTime+e),t&&this.snapshotCurrentStyles()):this.startTime+=e}fork(e,t){return this.applyStylesToKeyframe(),new ng(this._driver,e,t||this.currentTime,this._elementTimelineStylesLookup)}_loadKeyframe(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=Object.create(this._backFill,{}),this._keyframes.set(this.duration,this._currentKeyframe))}forwardFrame(){this.duration+=1,this._loadKeyframe()}forwardTime(e){this.applyStylesToKeyframe(),this.duration=e,this._loadKeyframe()}_updateStyle(e,t){this._localTimelineStyles[e]=t,this._globalTimelineStyles[e]=t,this._styleSummary[e]={time:this.currentTime,value:t}}allowOnlyTimelineStyles(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}applyEmptyStep(e){e&&(this._previousKeyframe.easing=e),Object.keys(this._globalTimelineStyles).forEach(e=>{this._backFill[e]=this._globalTimelineStyles[e]||\"*\",this._currentKeyframe[e]=\"*\"}),this._currentEmptyStepKeyframe=this._currentKeyframe}setStyles(e,t,n,i){t&&(this._previousKeyframe.easing=t);const s=i&&i.params||{},r=function(e,t){const n={};let i;return e.forEach(e=>{\"*\"===e?(i=i||Object.keys(t),i.forEach(e=>{n[e]=\"*\"})):w_(e,!1,n)}),n}(e,this._globalTimelineStyles);Object.keys(r).forEach(e=>{const t=D_(r[e],s,n);this._pendingStyles[e]=t,this._localTimelineStyles.hasOwnProperty(e)||(this._backFill[e]=this._globalTimelineStyles.hasOwnProperty(e)?this._globalTimelineStyles[e]:\"*\"),this._updateStyle(e,t)})}applyStylesToKeyframe(){const e=this._pendingStyles,t=Object.keys(e);0!=t.length&&(this._pendingStyles={},t.forEach(t=>{this._currentKeyframe[t]=e[t]}),Object.keys(this._localTimelineStyles).forEach(e=>{this._currentKeyframe.hasOwnProperty(e)||(this._currentKeyframe[e]=this._localTimelineStyles[e])}))}snapshotCurrentStyles(){Object.keys(this._localTimelineStyles).forEach(e=>{const t=this._localTimelineStyles[e];this._pendingStyles[e]=t,this._updateStyle(e,t)})}getFinalKeyframe(){return this._keyframes.get(this.duration)}get properties(){const e=[];for(let t in this._currentKeyframe)e.push(t);return e}mergeTimelineCollectedStyles(e){Object.keys(e._styleSummary).forEach(t=>{const n=this._styleSummary[t],i=e._styleSummary[t];(!n||i.time>n.time)&&this._updateStyle(t,i.value)})}buildKeyframes(){this.applyStylesToKeyframe();const e=new Set,t=new Set,n=1===this._keyframes.size&&0===this.duration;let i=[];this._keyframes.forEach((s,r)=>{const o=w_(s,!0);Object.keys(o).forEach(n=>{const i=o[n];\"!\"==i?e.add(n):\"*\"==i&&t.add(n)}),n||(o.offset=r/this.duration),i.push(o)});const s=e.size?Y_(e.values()):[],r=t.size?Y_(t.values()):[];if(n){const e=i[0],t=v_(e);e.offset=0,t.offset=1,i=[e,t]}return G_(this.element,i,s,r,this.duration,this.startTime,this.easing,!1)}}class ig extends ng{constructor(e,t,n,i,s,r,o=!1){super(e,t,r.delay),this.element=t,this.keyframes=n,this.preStyleProps=i,this.postStyleProps=s,this._stretchStartingKeyframe=o,this.timings={duration:r.duration,delay:r.delay,easing:r.easing}}containsAnimation(){return this.keyframes.length>1}buildKeyframes(){let e=this.keyframes,{delay:t,duration:n,easing:i}=this.timings;if(this._stretchStartingKeyframe&&t){const s=[],r=n+t,o=t/r,a=w_(e[0],!1);a.offset=0,s.push(a);const l=w_(e[0],!1);l.offset=sg(o),s.push(l);const c=e.length-1;for(let i=1;i<=c;i++){let o=w_(e[i],!1);o.offset=sg((t+o.offset*n)/r),s.push(o)}n=r,t=0,i=\"\",e=s}return G_(this.element,e,this.preStyleProps,this.postStyleProps,n,t,i,!0)}}function sg(e,t=3){const n=Math.pow(10,t-1);return Math.round(e*n)/n}class rg{}class og extends rg{normalizePropertyName(e,t){return O_(e)}normalizeStyleValue(e,t,n,i){let s=\"\";const r=n.toString().trim();if(ag[t]&&0!==n&&\"0\"!==n)if(\"number\"==typeof n)s=\"px\";else{const t=n.match(/^[+-]?[\\d\\.]+([a-z]*)$/);t&&0==t[1].length&&i.push(`Please provide a CSS unit value for ${e}:${n}`)}return r+s}}const ag=(()=>function(e){const t={};return e.forEach(e=>t[e]=!0),t}(\"width,height,minWidth,minHeight,maxWidth,maxHeight,left,top,bottom,right,fontSize,outlineWidth,outlineOffset,paddingTop,paddingLeft,paddingBottom,paddingRight,marginTop,marginLeft,marginBottom,marginRight,borderRadius,borderWidth,borderTopWidth,borderLeftWidth,borderRightWidth,borderBottomWidth,textIndent,perspective\".split(\",\")))();function lg(e,t,n,i,s,r,o,a,l,c,d,u,h){return{type:0,element:e,triggerName:t,isRemovalTransition:s,fromState:n,fromStyles:r,toState:i,toStyles:o,timelines:a,queriedElements:l,preStyleProps:c,postStyleProps:d,totalTime:u,errors:h}}const cg={};class dg{constructor(e,t,n){this._triggerName=e,this.ast=t,this._stateStyles=n}match(e,t,n,i){return function(e,t,n,i,s){return e.some(e=>e(t,n,i,s))}(this.ast.matchers,e,t,n,i)}buildStyles(e,t,n){const i=this._stateStyles[\"*\"],s=this._stateStyles[e],r=i?i.buildStyles(t,n):{};return s?s.buildStyles(t,n):r}build(e,t,n,i,s,r,o,a,l,c){const d=[],u=this.ast.options&&this.ast.options.params||cg,h=this.buildStyles(n,o&&o.params||cg,d),m=a&&a.params||cg,p=this.buildStyles(i,m,d),f=new Set,_=new Map,g=new Map,y=\"void\"===i,b={params:Object.assign(Object.assign({},u),m)},v=c?[]:Q_(e,t,this.ast.animation,s,r,h,p,b,l,d);let w=0;if(v.forEach(e=>{w=Math.max(e.duration+e.delay,w)}),d.length)return lg(t,this._triggerName,n,i,y,h,p,[],[],_,g,w,d);v.forEach(e=>{const n=e.element,i=n_(_,n,{});e.preStyleProps.forEach(e=>i[e]=!0);const s=n_(g,n,{});e.postStyleProps.forEach(e=>s[e]=!0),n!==t&&f.add(n)});const M=Y_(f.values());return lg(t,this._triggerName,n,i,y,h,p,v,M,_,g,w)}}class ug{constructor(e,t){this.styles=e,this.defaultParams=t}buildStyles(e,t){const n={},i=v_(this.defaultParams);return Object.keys(e).forEach(t=>{const n=e[t];null!=n&&(i[t]=n)}),this.styles.styles.forEach(e=>{if(\"string\"!=typeof e){const s=e;Object.keys(s).forEach(e=>{let r=s[e];r.length>1&&(r=D_(r,i,t)),n[e]=r})}}),n}}class hg{constructor(e,t){this.name=e,this.ast=t,this.transitionFactories=[],this.states={},t.states.forEach(e=>{this.states[e.name]=new ug(e.style,e.options&&e.options.params||{})}),mg(this.states,\"true\",\"1\"),mg(this.states,\"false\",\"0\"),t.transitions.forEach(t=>{this.transitionFactories.push(new dg(e,t,this.states))}),this.fallbackTransition=new dg(e,{type:1,animation:{type:2,steps:[],options:null},matchers:[(e,t)=>!0],options:null,queryCount:0,depCount:0},this.states)}get containsQueries(){return this.ast.queryCount>0}matchTransition(e,t,n,i){return this.transitionFactories.find(s=>s.match(e,t,n,i))||null}matchStyles(e,t,n){return this.fallbackTransition.buildStyles(e,t,n)}}function mg(e,t,n){e.hasOwnProperty(t)?e.hasOwnProperty(n)||(e[n]=e[t]):e.hasOwnProperty(n)&&(e[t]=e[n])}const pg=new J_;class fg{constructor(e,t,n){this.bodyNode=e,this._driver=t,this._normalizer=n,this._animations={},this._playersById={},this.players=[]}register(e,t){const n=[],i=V_(this._driver,t,n);if(n.length)throw new Error(`Unable to build the animation due to the following errors: ${n.join(\"\\n\")}`);this._animations[e]=i}_buildPlayer(e,t,n){const i=e.element,s=Qf(0,this._normalizer,0,e.keyframes,t,n);return this._driver.animate(i,s,e.duration,e.delay,e.easing,[],!0)}create(e,t,n={}){const i=[],s=this._animations[e];let r;const o=new Map;if(s?(r=Q_(this._driver,t,s,\"ng-enter\",\"ng-leave\",{},{},n,pg,i),r.forEach(e=>{const t=n_(o,e.element,{});e.postStyleProps.forEach(e=>t[e]=null)})):(i.push(\"The requested animation doesn't exist or has already been destroyed\"),r=[]),i.length)throw new Error(`Unable to create the animation due to the following errors: ${i.join(\"\\n\")}`);o.forEach((e,t)=>{Object.keys(e).forEach(n=>{e[n]=this._driver.computeStyle(t,n,\"*\")})});const a=Zf(r.map(e=>{const t=o.get(e.element);return this._buildPlayer(e,{},t)}));return this._playersById[e]=a,a.onDestroy(()=>this.destroy(e)),this.players.push(a),a}destroy(e){const t=this._getPlayer(e);t.destroy(),delete this._playersById[e];const n=this.players.indexOf(t);n>=0&&this.players.splice(n,1)}_getPlayer(e){const t=this._playersById[e];if(!t)throw new Error(`Unable to find the timeline player referenced by ${e}`);return t}listen(e,t,n,i){const s=t_(t,\"\",\"\",\"\");return Xf(this._getPlayer(e),n,s,i),()=>{}}command(e,t,n,i){if(\"register\"==n)return void this.register(e,i[0]);if(\"create\"==n)return void this.create(e,t,i[0]||{});const s=this._getPlayer(e);switch(n){case\"play\":s.play();break;case\"pause\":s.pause();break;case\"reset\":s.reset();break;case\"restart\":s.restart();break;case\"finish\":s.finish();break;case\"init\":s.init();break;case\"setPosition\":s.setPosition(parseFloat(i[0]));break;case\"destroy\":this.destroy(e)}}}const _g=[],gg={namespaceId:\"\",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},yg={namespaceId:\"\",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0};class bg{constructor(e,t=\"\"){this.namespaceId=t;const n=e&&e.hasOwnProperty(\"value\");if(this.value=null!=(i=n?e.value:e)?i:null,n){const t=v_(e);delete t.value,this.options=t}else this.options={};var i;this.options.params||(this.options.params={})}get params(){return this.options.params}absorbOptions(e){const t=e.params;if(t){const e=this.options.params;Object.keys(t).forEach(n=>{null==e[n]&&(e[n]=t[n])})}}}const vg=new bg(\"void\");class wg{constructor(e,t,n){this.id=e,this.hostElement=t,this._engine=n,this.players=[],this._triggers={},this._queue=[],this._elementListeners=new Map,this._hostClassName=\"ng-tns-\"+e,Tg(t,this._hostClassName)}listen(e,t,n,i){if(!this._triggers.hasOwnProperty(t))throw new Error(`Unable to listen on the animation trigger event \"${n}\" because the animation trigger \"${t}\" doesn't exist!`);if(null==n||0==n.length)throw new Error(`Unable to listen on the animation trigger \"${t}\" because the provided event is undefined!`);if(\"start\"!=(s=n)&&\"done\"!=s)throw new Error(`The provided animation trigger event \"${n}\" for the animation trigger \"${t}\" is not supported!`);var s;const r=n_(this._elementListeners,e,[]),o={name:t,phase:n,callback:i};r.push(o);const a=n_(this._engine.statesByElement,e,{});return a.hasOwnProperty(t)||(Tg(e,\"ng-trigger\"),Tg(e,\"ng-trigger-\"+t),a[t]=vg),()=>{this._engine.afterFlush(()=>{const e=r.indexOf(o);e>=0&&r.splice(e,1),this._triggers[t]||delete a[t]})}}register(e,t){return!this._triggers[e]&&(this._triggers[e]=t,!0)}_getTrigger(e){const t=this._triggers[e];if(!t)throw new Error(`The provided animation trigger \"${e}\" has not been registered!`);return t}trigger(e,t,n,i=!0){const s=this._getTrigger(t),r=new kg(this.id,t,e);let o=this._engine.statesByElement.get(e);o||(Tg(e,\"ng-trigger\"),Tg(e,\"ng-trigger-\"+t),this._engine.statesByElement.set(e,o={}));let a=o[t];const l=new bg(n,this.id);if(!(n&&n.hasOwnProperty(\"value\"))&&a&&l.absorbOptions(a.options),o[t]=l,a||(a=vg),\"void\"!==l.value&&a.value===l.value){if(!function(e,t){const n=Object.keys(e),i=Object.keys(t);if(n.length!=i.length)return!1;for(let s=0;s{L_(e,n),S_(e,i)})}return}const c=n_(this._engine.playersByElement,e,[]);c.forEach(e=>{e.namespaceId==this.id&&e.triggerName==t&&e.queued&&e.destroy()});let d=s.matchTransition(a.value,l.value,e,l.params),u=!1;if(!d){if(!i)return;d=s.fallbackTransition,u=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:e,triggerName:t,transition:d,fromState:a,toState:l,player:r,isFallbackTransition:u}),u||(Tg(e,\"ng-animate-queued\"),r.onStart(()=>{Dg(e,\"ng-animate-queued\")})),r.onDone(()=>{let t=this.players.indexOf(r);t>=0&&this.players.splice(t,1);const n=this._engine.playersByElement.get(e);if(n){let e=n.indexOf(r);e>=0&&n.splice(e,1)}}),this.players.push(r),c.push(r),r}deregister(e){delete this._triggers[e],this._engine.statesByElement.forEach((t,n)=>{delete t[e]}),this._elementListeners.forEach((t,n)=>{this._elementListeners.set(n,t.filter(t=>t.name!=e))})}clearElementCache(e){this._engine.statesByElement.delete(e),this._elementListeners.delete(e);const t=this._engine.playersByElement.get(e);t&&(t.forEach(e=>e.destroy()),this._engine.playersByElement.delete(e))}_signalRemovalForInnerTriggers(e,t){const n=this._engine.driver.query(e,\".ng-trigger\",!0);n.forEach(e=>{if(e.__ng_removed)return;const n=this._engine.fetchNamespacesByElement(e);n.size?n.forEach(n=>n.triggerLeaveAnimation(e,t,!1,!0)):this.clearElementCache(e)}),this._engine.afterFlushAnimationsDone(()=>n.forEach(e=>this.clearElementCache(e)))}triggerLeaveAnimation(e,t,n,i){const s=this._engine.statesByElement.get(e);if(s){const r=[];if(Object.keys(s).forEach(t=>{if(this._triggers[t]){const n=this.trigger(e,t,\"void\",i);n&&r.push(n)}}),r.length)return this._engine.markElementAsRemoved(this.id,e,!0,t),n&&Zf(r).onDone(()=>this._engine.processLeaveNode(e)),!0}return!1}prepareLeaveAnimationListeners(e){const t=this._elementListeners.get(e);if(t){const n=new Set;t.forEach(t=>{const i=t.name;if(n.has(i))return;n.add(i);const s=this._triggers[i].fallbackTransition,r=this._engine.statesByElement.get(e)[i]||vg,o=new bg(\"void\"),a=new kg(this.id,i,e);this._engine.totalQueuedPlayers++,this._queue.push({element:e,triggerName:i,transition:s,fromState:r,toState:o,player:a,isFallbackTransition:!0})})}}removeNode(e,t){const n=this._engine;if(e.childElementCount&&this._signalRemovalForInnerTriggers(e,t),this.triggerLeaveAnimation(e,t,!0))return;let i=!1;if(n.totalAnimations){const t=n.players.length?n.playersByQueriedElement.get(e):[];if(t&&t.length)i=!0;else{let t=e;for(;t=t.parentNode;)if(n.statesByElement.get(t)){i=!0;break}}}if(this.prepareLeaveAnimationListeners(e),i)n.markElementAsRemoved(this.id,e,!1,t);else{const i=e.__ng_removed;i&&i!==gg||(n.afterFlush(()=>this.clearElementCache(e)),n.destroyInnerAnimations(e),n._onRemovalComplete(e,t))}}insertNode(e,t){Tg(e,this._hostClassName)}drainQueuedTransitions(e){const t=[];return this._queue.forEach(n=>{const i=n.player;if(i.destroyed)return;const s=n.element,r=this._elementListeners.get(s);r&&r.forEach(t=>{if(t.name==n.triggerName){const i=t_(s,n.triggerName,n.fromState.value,n.toState.value);i._data=e,Xf(n.player,t.phase,i,t.callback)}}),i.markedForDestroy?this._engine.afterFlush(()=>{i.destroy()}):t.push(n)}),this._queue=[],t.sort((e,t)=>{const n=e.transition.ast.depCount,i=t.transition.ast.depCount;return 0==n||0==i?n-i:this._engine.driver.containsElement(e.element,t.element)?1:-1})}destroy(e){this.players.forEach(e=>e.destroy()),this._signalRemovalForInnerTriggers(this.hostElement,e)}elementContainsData(e){let t=!1;return this._elementListeners.has(e)&&(t=!0),t=!!this._queue.find(t=>t.element===e)||t,t}}class Mg{constructor(e,t,n){this.bodyNode=e,this.driver=t,this._normalizer=n,this.players=[],this.newHostElements=new Map,this.playersByElement=new Map,this.playersByQueriedElement=new Map,this.statesByElement=new Map,this.disabledNodes=new Set,this.totalAnimations=0,this.totalQueuedPlayers=0,this._namespaceLookup={},this._namespaceList=[],this._flushFns=[],this._whenQuietFns=[],this.namespacesByHostElement=new Map,this.collectedEnterElements=[],this.collectedLeaveElements=[],this.onRemovalComplete=(e,t)=>{}}_onRemovalComplete(e,t){this.onRemovalComplete(e,t)}get queuedPlayers(){const e=[];return this._namespaceList.forEach(t=>{t.players.forEach(t=>{t.queued&&e.push(t)})}),e}createNamespace(e,t){const n=new wg(e,t,this);return t.parentNode?this._balanceNamespaceList(n,t):(this.newHostElements.set(t,n),this.collectEnterElement(t)),this._namespaceLookup[e]=n}_balanceNamespaceList(e,t){const n=this._namespaceList.length-1;if(n>=0){let i=!1;for(let s=n;s>=0;s--)if(this.driver.containsElement(this._namespaceList[s].hostElement,t)){this._namespaceList.splice(s+1,0,e),i=!0;break}i||this._namespaceList.splice(0,0,e)}else this._namespaceList.push(e);return this.namespacesByHostElement.set(t,e),e}register(e,t){let n=this._namespaceLookup[e];return n||(n=this.createNamespace(e,t)),n}registerTrigger(e,t,n){let i=this._namespaceLookup[e];i&&i.register(t,n)&&this.totalAnimations++}destroy(e,t){if(!e)return;const n=this._fetchNamespace(e);this.afterFlush(()=>{this.namespacesByHostElement.delete(n.hostElement),delete this._namespaceLookup[e];const t=this._namespaceList.indexOf(n);t>=0&&this._namespaceList.splice(t,1)}),this.afterFlushAnimationsDone(()=>n.destroy(t))}_fetchNamespace(e){return this._namespaceLookup[e]}fetchNamespacesByElement(e){const t=new Set,n=this.statesByElement.get(e);if(n){const e=Object.keys(n);for(let i=0;i=0&&this.collectedLeaveElements.splice(e,1)}if(e){const i=this._fetchNamespace(e);i&&i.insertNode(t,n)}i&&this.collectEnterElement(t)}collectEnterElement(e){this.collectedEnterElements.push(e)}markElementAsDisabled(e,t){t?this.disabledNodes.has(e)||(this.disabledNodes.add(e),Tg(e,\"ng-animate-disabled\")):this.disabledNodes.has(e)&&(this.disabledNodes.delete(e),Dg(e,\"ng-animate-disabled\"))}removeNode(e,t,n,i){if(Sg(t)){const s=e?this._fetchNamespace(e):null;if(s?s.removeNode(t,i):this.markElementAsRemoved(e,t,!1,i),n){const n=this.namespacesByHostElement.get(t);n&&n.id!==e&&n.removeNode(t,i)}}else this._onRemovalComplete(t,i)}markElementAsRemoved(e,t,n,i){this.collectedLeaveElements.push(t),t.__ng_removed={namespaceId:e,setForRemoval:i,hasAnimation:n,removedBeforeQueried:!1}}listen(e,t,n,i,s){return Sg(t)?this._fetchNamespace(e).listen(t,n,i,s):()=>{}}_buildInstruction(e,t,n,i,s){return e.transition.build(this.driver,e.element,e.fromState.value,e.toState.value,n,i,e.fromState.options,e.toState.options,t,s)}destroyInnerAnimations(e){let t=this.driver.query(e,\".ng-trigger\",!0);t.forEach(e=>this.destroyActiveAnimationsForElement(e)),0!=this.playersByQueriedElement.size&&(t=this.driver.query(e,\".ng-animating\",!0),t.forEach(e=>this.finishActiveQueriedAnimationOnElement(e)))}destroyActiveAnimationsForElement(e){const t=this.playersByElement.get(e);t&&t.forEach(e=>{e.queued?e.markedForDestroy=!0:e.destroy()})}finishActiveQueriedAnimationOnElement(e){const t=this.playersByQueriedElement.get(e);t&&t.forEach(e=>e.finish())}whenRenderingDone(){return new Promise(e=>{if(this.players.length)return Zf(this.players).onDone(()=>e());e()})}processLeaveNode(e){const t=e.__ng_removed;if(t&&t.setForRemoval){if(e.__ng_removed=gg,t.namespaceId){this.destroyInnerAnimations(e);const n=this._fetchNamespace(t.namespaceId);n&&n.clearElementCache(e)}this._onRemovalComplete(e,t.setForRemoval)}this.driver.matchesElement(e,\".ng-animate-disabled\")&&this.markElementAsDisabled(e,!1),this.driver.query(e,\".ng-animate-disabled\",!0).forEach(e=>{this.markElementAsDisabled(e,!1)})}flush(e=-1){let t=[];if(this.newHostElements.size&&(this.newHostElements.forEach((e,t)=>this._balanceNamespaceList(e,t)),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(let n=0;ne()),this._flushFns=[],this._whenQuietFns.length){const e=this._whenQuietFns;this._whenQuietFns=[],t.length?Zf(t).onDone(()=>{e.forEach(e=>e())}):e.forEach(e=>e())}}reportError(e){throw new Error(`Unable to process animations due to the following failed trigger transitions\\n ${e.join(\"\\n\")}`)}_flushAnimations(e,t){const n=new J_,i=[],s=new Map,r=[],o=new Map,a=new Map,l=new Map,c=new Set;this.disabledNodes.forEach(e=>{c.add(e);const t=this.driver.query(e,\".ng-animate-queued\",!0);for(let n=0;n{const n=\"ng-enter\"+p++;m.set(t,n),e.forEach(e=>Tg(e,n))});const f=[],_=new Set,g=new Set;for(let Y=0;Y_.add(e)):g.add(e))}const y=new Map,b=Cg(u,Array.from(_));b.forEach((e,t)=>{const n=\"ng-leave\"+p++;y.set(t,n),e.forEach(e=>Tg(e,n))}),e.push(()=>{h.forEach((e,t)=>{const n=m.get(t);e.forEach(e=>Dg(e,n))}),b.forEach((e,t)=>{const n=y.get(t);e.forEach(e=>Dg(e,n))}),f.forEach(e=>{this.processLeaveNode(e)})});const v=[],w=[];for(let Y=this._namespaceList.length-1;Y>=0;Y--)this._namespaceList[Y].drainQueuedTransitions(t).forEach(e=>{const t=e.player,s=e.element;if(v.push(t),this.collectedEnterElements.length){const e=s.__ng_removed;if(e&&e.setForMove)return void t.destroy()}const c=!d||!this.driver.containsElement(d,s),u=y.get(s),h=m.get(s),p=this._buildInstruction(e,n,h,u,c);if(!p.errors||!p.errors.length)return c||e.isFallbackTransition?(t.onStart(()=>L_(s,p.fromStyles)),t.onDestroy(()=>S_(s,p.toStyles)),void i.push(t)):(p.timelines.forEach(e=>e.stretchStartingKeyframe=!0),n.append(s,p.timelines),r.push({instruction:p,player:t,element:s}),p.queriedElements.forEach(e=>n_(o,e,[]).push(t)),p.preStyleProps.forEach((e,t)=>{const n=Object.keys(e);if(n.length){let e=a.get(t);e||a.set(t,e=new Set),n.forEach(t=>e.add(t))}}),void p.postStyleProps.forEach((e,t)=>{const n=Object.keys(e);let i=l.get(t);i||l.set(t,i=new Set),n.forEach(e=>i.add(e))}));w.push(p)});if(w.length){const e=[];w.forEach(t=>{e.push(`@${t.triggerName} has failed due to:\\n`),t.errors.forEach(t=>e.push(`- ${t}\\n`))}),v.forEach(e=>e.destroy()),this.reportError(e)}const M=new Map,k=new Map;r.forEach(e=>{const t=e.element;n.has(t)&&(k.set(t,t),this._beforeAnimationBuild(e.player.namespaceId,e.instruction,M))}),i.forEach(e=>{const t=e.element;this._getPreviousPlayers(t,!1,e.namespaceId,e.triggerName,null).forEach(e=>{n_(M,t,[]).push(e),e.destroy()})});const S=f.filter(e=>Eg(e,a,l)),L=new Map;xg(L,this.driver,g,l,\"*\").forEach(e=>{Eg(e,a,l)&&S.push(e)});const x=new Map;h.forEach((e,t)=>{xg(x,this.driver,new Set(e),a,\"!\")}),S.forEach(e=>{const t=L.get(e),n=x.get(e);L.set(e,Object.assign(Object.assign({},t),n))});const C=[],T=[],D={};r.forEach(e=>{const{element:t,player:r,instruction:o}=e;if(n.has(t)){if(c.has(t))return r.onDestroy(()=>S_(t,o.toStyles)),r.disabled=!0,r.overrideTotalTime(o.totalTime),void i.push(r);let e=D;if(k.size>1){let n=t;const i=[];for(;n=n.parentNode;){const t=k.get(n);if(t){e=t;break}i.push(n)}i.forEach(t=>k.set(t,e))}const n=this._buildAnimation(r.namespaceId,o,M,s,x,L);if(r.setRealPlayer(n),e===D)C.push(r);else{const t=this.playersByElement.get(e);t&&t.length&&(r.parentPlayer=Zf(t)),i.push(r)}}else L_(t,o.fromStyles),r.onDestroy(()=>S_(t,o.toStyles)),T.push(r),c.has(t)&&i.push(r)}),T.forEach(e=>{const t=s.get(e.element);if(t&&t.length){const n=Zf(t);e.setRealPlayer(n)}}),i.forEach(e=>{e.parentPlayer?e.syncPlayerEvents(e.parentPlayer):e.destroy()});for(let Y=0;Y!e.destroyed);i.length?Yg(this,e,i):this.processLeaveNode(e)}return f.length=0,C.forEach(e=>{this.players.push(e),e.onDone(()=>{e.destroy();const t=this.players.indexOf(e);this.players.splice(t,1)}),e.play()}),C}elementContainsData(e,t){let n=!1;const i=t.__ng_removed;return i&&i.setForRemoval&&(n=!0),this.playersByElement.has(t)&&(n=!0),this.playersByQueriedElement.has(t)&&(n=!0),this.statesByElement.has(t)&&(n=!0),this._fetchNamespace(e).elementContainsData(t)||n}afterFlush(e){this._flushFns.push(e)}afterFlushAnimationsDone(e){this._whenQuietFns.push(e)}_getPreviousPlayers(e,t,n,i,s){let r=[];if(t){const t=this.playersByQueriedElement.get(e);t&&(r=t)}else{const t=this.playersByElement.get(e);if(t){const e=!s||\"void\"==s;t.forEach(t=>{t.queued||(e||t.triggerName==i)&&r.push(t)})}}return(n||i)&&(r=r.filter(e=>!(n&&n!=e.namespaceId||i&&i!=e.triggerName))),r}_beforeAnimationBuild(e,t,n){const i=t.element,s=t.isRemovalTransition?void 0:e,r=t.isRemovalTransition?void 0:t.triggerName;for(const o of t.timelines){const e=o.element,a=e!==i,l=n_(n,e,[]);this._getPreviousPlayers(e,a,s,r,t.toState).forEach(e=>{const t=e.getRealPlayer();t.beforeDestroy&&t.beforeDestroy(),e.destroy(),l.push(e)})}L_(i,t.fromStyles)}_buildAnimation(e,t,n,i,s,r){const o=t.triggerName,a=t.element,l=[],c=new Set,d=new Set,u=t.timelines.map(t=>{const u=t.element;c.add(u);const h=u.__ng_removed;if(h&&h.removedBeforeQueried)return new Gf(t.duration,t.delay);const m=u!==a,p=function(e){const t=[];return function e(t,n){for(let i=0;ie.getRealPlayer())).filter(e=>!!e.element&&e.element===u),f=s.get(u),_=r.get(u),g=Qf(0,this._normalizer,0,t.keyframes,f,_),y=this._buildPlayer(t,g,p);if(t.subTimeline&&i&&d.add(u),m){const t=new kg(e,o,u);t.setRealPlayer(y),l.push(t)}return y});l.forEach(e=>{n_(this.playersByQueriedElement,e.element,[]).push(e),e.onDone(()=>function(e,t,n){let i;if(e instanceof Map){if(i=e.get(t),i){if(i.length){const e=i.indexOf(n);i.splice(e,1)}0==i.length&&e.delete(t)}}else if(i=e[t],i){if(i.length){const e=i.indexOf(n);i.splice(e,1)}0==i.length&&delete e[t]}return i}(this.playersByQueriedElement,e.element,e))}),c.forEach(e=>Tg(e,\"ng-animating\"));const h=Zf(u);return h.onDestroy(()=>{c.forEach(e=>Dg(e,\"ng-animating\")),S_(a,t.toStyles)}),d.forEach(e=>{n_(i,e,[]).push(h)}),h}_buildPlayer(e,t,n){return t.length>0?this.driver.animate(e.element,t,e.duration,e.delay,e.easing,n):new Gf(e.duration,e.delay)}}class kg{constructor(e,t,n){this.namespaceId=e,this.triggerName=t,this.element=n,this._player=new Gf,this._containsRealPlayer=!1,this._queuedCallbacks={},this.destroyed=!1,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}setRealPlayer(e){this._containsRealPlayer||(this._player=e,Object.keys(this._queuedCallbacks).forEach(t=>{this._queuedCallbacks[t].forEach(n=>Xf(e,t,void 0,n))}),this._queuedCallbacks={},this._containsRealPlayer=!0,this.overrideTotalTime(e.totalTime),this.queued=!1)}getRealPlayer(){return this._player}overrideTotalTime(e){this.totalTime=e}syncPlayerEvents(e){const t=this._player;t.triggerCallback&&e.onStart(()=>t.triggerCallback(\"start\")),e.onDone(()=>this.finish()),e.onDestroy(()=>this.destroy())}_queueEvent(e,t){n_(this._queuedCallbacks,e,[]).push(t)}onDone(e){this.queued&&this._queueEvent(\"done\",e),this._player.onDone(e)}onStart(e){this.queued&&this._queueEvent(\"start\",e),this._player.onStart(e)}onDestroy(e){this.queued&&this._queueEvent(\"destroy\",e),this._player.onDestroy(e)}init(){this._player.init()}hasStarted(){return!this.queued&&this._player.hasStarted()}play(){!this.queued&&this._player.play()}pause(){!this.queued&&this._player.pause()}restart(){!this.queued&&this._player.restart()}finish(){this._player.finish()}destroy(){this.destroyed=!0,this._player.destroy()}reset(){!this.queued&&this._player.reset()}setPosition(e){this.queued||this._player.setPosition(e)}getPosition(){return this.queued?0:this._player.getPosition()}triggerCallback(e){const t=this._player;t.triggerCallback&&t.triggerCallback(e)}}function Sg(e){return e&&1===e.nodeType}function Lg(e,t){const n=e.style.display;return e.style.display=null!=t?t:\"none\",n}function xg(e,t,n,i,s){const r=[];n.forEach(e=>r.push(Lg(e)));const o=[];i.forEach((n,i)=>{const r={};n.forEach(e=>{const n=r[e]=t.computeStyle(i,e,s);n&&0!=n.length||(i.__ng_removed=yg,o.push(i))}),e.set(i,r)});let a=0;return n.forEach(e=>Lg(e,r[a++])),o}function Cg(e,t){const n=new Map;if(e.forEach(e=>n.set(e,[])),0==t.length)return n;const i=new Set(t),s=new Map;return t.forEach(e=>{const t=function e(t){if(!t)return 1;let r=s.get(t);if(r)return r;const o=t.parentNode;return r=n.has(o)?o:i.has(o)?1:e(o),s.set(t,r),r}(e);1!==t&&n.get(t).push(e)}),n}function Tg(e,t){if(e.classList)e.classList.add(t);else{let n=e.$$classes;n||(n=e.$$classes={}),n[t]=!0}}function Dg(e,t){if(e.classList)e.classList.remove(t);else{let n=e.$$classes;n&&delete n[t]}}function Yg(e,t,n){Zf(n).onDone(()=>e.processLeaveNode(t))}function Eg(e,t,n){const i=n.get(e);if(!i)return!1;let s=t.get(e);return s?i.forEach(e=>s.add(e)):t.set(e,i),n.delete(e),!0}class Og{constructor(e,t,n){this.bodyNode=e,this._driver=t,this._triggerCache={},this.onRemovalComplete=(e,t)=>{},this._transitionEngine=new Mg(e,t,n),this._timelineEngine=new fg(e,t,n),this._transitionEngine.onRemovalComplete=(e,t)=>this.onRemovalComplete(e,t)}registerTrigger(e,t,n,i,s){const r=e+\"-\"+i;let o=this._triggerCache[r];if(!o){const e=[],t=V_(this._driver,s,e);if(e.length)throw new Error(`The animation trigger \"${i}\" has failed to build due to the following errors:\\n - ${e.join(\"\\n - \")}`);o=function(e,t){return new hg(e,t)}(i,t),this._triggerCache[r]=o}this._transitionEngine.registerTrigger(t,i,o)}register(e,t){this._transitionEngine.register(e,t)}destroy(e,t){this._transitionEngine.destroy(e,t)}onInsert(e,t,n,i){this._transitionEngine.insertNode(e,t,n,i)}onRemove(e,t,n,i){this._transitionEngine.removeNode(e,t,i||!1,n)}disableAnimations(e,t){this._transitionEngine.markElementAsDisabled(e,t)}process(e,t,n,i){if(\"@\"==n.charAt(0)){const[e,s]=i_(n);this._timelineEngine.command(e,t,s,i)}else this._transitionEngine.trigger(e,t,n,i)}listen(e,t,n,i,s){if(\"@\"==n.charAt(0)){const[e,i]=i_(n);return this._timelineEngine.listen(e,t,i,s)}return this._transitionEngine.listen(e,t,n,i,s)}flush(e=-1){this._transitionEngine.flush(e)}get players(){return this._transitionEngine.players.concat(this._timelineEngine.players)}whenRenderingDone(){return this._transitionEngine.whenRenderingDone()}}function Ig(e,t){let n=null,i=null;return Array.isArray(t)&&t.length?(n=Ag(t[0]),t.length>1&&(i=Ag(t[t.length-1]))):t&&(n=Ag(t)),n||i?new Pg(e,n,i):null}let Pg=(()=>{class e{constructor(t,n,i){this._element=t,this._startStyles=n,this._endStyles=i,this._state=0;let s=e.initialStylesByElement.get(t);s||e.initialStylesByElement.set(t,s={}),this._initialStyles=s}start(){this._state<1&&(this._startStyles&&S_(this._element,this._startStyles,this._initialStyles),this._state=1)}finish(){this.start(),this._state<2&&(S_(this._element,this._initialStyles),this._endStyles&&(S_(this._element,this._endStyles),this._endStyles=null),this._state=1)}destroy(){this.finish(),this._state<3&&(e.initialStylesByElement.delete(this._element),this._startStyles&&(L_(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(L_(this._element,this._endStyles),this._endStyles=null),S_(this._element,this._initialStyles),this._state=3)}}return e.initialStylesByElement=new WeakMap,e})();function Ag(e){let t=null;const n=Object.keys(e);for(let i=0;ithis._handleCallback(e)}apply(){!function(e,t){const n=Wg(e,\"\").trim();n.length&&(function(e,t){let n=0;for(let i=0;i=this._delay&&n>=this._duration&&this.finish()}finish(){this._finished||(this._finished=!0,this._onDoneFn(),zg(this._element,this._eventFn,!0))}destroy(){this._destroyed||(this._destroyed=!0,this.finish(),function(e,t){const n=Wg(e,\"\").split(\",\"),i=Ng(n,t);i>=0&&(n.splice(i,1),Vg(e,\"\",n.join(\",\")))}(this._element,this._name))}}function jg(e,t,n){Vg(e,\"PlayState\",n,Fg(e,t))}function Fg(e,t){const n=Wg(e,\"\");return n.indexOf(\",\")>0?Ng(n.split(\",\"),t):Ng([n],t)}function Ng(e,t){for(let n=0;n=0)return n;return-1}function zg(e,t,n){n?e.removeEventListener(\"animationend\",t):e.addEventListener(\"animationend\",t)}function Vg(e,t,n,i){const s=\"animation\"+t;if(null!=i){const t=e.style[s];if(t.length){const e=t.split(\",\");e[i]=n,n=e.join(\",\")}}e.style[s]=n}function Wg(e,t){return e.style[\"animation\"+t]}class Ug{constructor(e,t,n,i,s,r,o,a){this.element=e,this.keyframes=t,this.animationName=n,this._duration=i,this._delay=s,this._finalStyles=o,this._specialStyles=a,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this.currentSnapshot={},this._state=0,this.easing=r||\"linear\",this.totalTime=i+s,this._buildStyler()}onStart(e){this._onStartFns.push(e)}onDone(e){this._onDoneFns.push(e)}onDestroy(e){this._onDestroyFns.push(e)}destroy(){this.init(),this._state>=4||(this._state=4,this._styler.destroy(),this._flushStartFns(),this._flushDoneFns(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(e=>e()),this._onDestroyFns=[])}_flushDoneFns(){this._onDoneFns.forEach(e=>e()),this._onDoneFns=[]}_flushStartFns(){this._onStartFns.forEach(e=>e()),this._onStartFns=[]}finish(){this.init(),this._state>=3||(this._state=3,this._styler.finish(),this._flushStartFns(),this._specialStyles&&this._specialStyles.finish(),this._flushDoneFns())}setPosition(e){this._styler.setPosition(e)}getPosition(){return this._styler.getPosition()}hasStarted(){return this._state>=2}init(){this._state>=1||(this._state=1,this._styler.apply(),this._delay&&this._styler.pause())}play(){this.init(),this.hasStarted()||(this._flushStartFns(),this._state=2,this._specialStyles&&this._specialStyles.start()),this._styler.resume()}pause(){this.init(),this._styler.pause()}restart(){this.reset(),this.play()}reset(){this._styler.destroy(),this._buildStyler(),this._styler.apply()}_buildStyler(){this._styler=new Hg(this.element,this.animationName,this._duration,this._delay,this.easing,\"forwards\",()=>this.finish())}triggerCallback(e){const t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach(e=>e()),t.length=0}beforeDestroy(){this.init();const e={};if(this.hasStarted()){const t=this._state>=3;Object.keys(this._finalStyles).forEach(n=>{\"offset\"!=n&&(e[n]=t?this._finalStyles[n]:R_(this.element,n))})}this.currentSnapshot=e}}class $g extends Gf{constructor(e,t){super(),this.element=e,this._startingStyles={},this.__initialized=!1,this._styles=p_(t)}init(){!this.__initialized&&this._startingStyles&&(this.__initialized=!0,Object.keys(this._styles).forEach(e=>{this._startingStyles[e]=this.element.style[e]}),super.init())}play(){this._startingStyles&&(this.init(),Object.keys(this._styles).forEach(e=>this.element.style.setProperty(e,this._styles[e])),super.play())}destroy(){this._startingStyles&&(Object.keys(this._startingStyles).forEach(e=>{const t=this._startingStyles[e];t?this.element.style.setProperty(e,t):this.element.style.removeProperty(e)}),this._startingStyles=null,super.destroy())}}class Bg{constructor(){this._count=0,this._head=document.querySelector(\"head\"),this._warningIssued=!1}validateStyleProperty(e){return d_(e)}matchesElement(e,t){return u_(e,t)}containsElement(e,t){return h_(e,t)}query(e,t,n){return m_(e,t,n)}computeStyle(e,t,n){return window.getComputedStyle(e)[t]}buildKeyframeElement(e,t,n){n=n.map(e=>p_(e));let i=`@keyframes ${t} {\\n`,s=\"\";n.forEach(e=>{s=\" \";const t=parseFloat(e.offset);i+=`${s}${100*t}% {\\n`,s+=\" \",Object.keys(e).forEach(t=>{const n=e[t];switch(t){case\"offset\":return;case\"easing\":return void(n&&(i+=`${s}animation-timing-function: ${n};\\n`));default:return void(i+=`${s}${t}: ${n};\\n`)}}),i+=`${s}}\\n`}),i+=\"}\\n\";const r=document.createElement(\"style\");return r.innerHTML=i,r}animate(e,t,n,i,s,r=[],o){o&&this._notifyFaultyScrubber();const a=r.filter(e=>e instanceof Ug),l={};I_(n,i)&&a.forEach(e=>{let t=e.currentSnapshot;Object.keys(t).forEach(e=>l[e]=t[e])});const c=function(e){let t={};return e&&(Array.isArray(e)?e:[e]).forEach(e=>{Object.keys(e).forEach(n=>{\"offset\"!=n&&\"easing\"!=n&&(t[n]=e[n])})}),t}(t=P_(e,t,l));if(0==n)return new $g(e,c);const d=`gen_css_kf_${this._count++}`,u=this.buildKeyframeElement(e,d,t);document.querySelector(\"head\").appendChild(u);const h=Ig(e,t),m=new Ug(e,t,d,n,i,s,c,h);return m.onDestroy(()=>{var e;(e=u).parentNode.removeChild(e)}),m}_notifyFaultyScrubber(){this._warningIssued||(console.warn(\"@angular/animations: please load the web-animations.js polyfill to allow programmatic access...\\n\",\" visit http://bit.ly/IWukam to learn more about using the web-animation-js polyfill.\"),this._warningIssued=!0)}}class qg{constructor(e,t,n,i){this.element=e,this.keyframes=t,this.options=n,this._specialStyles=i,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._initialized=!1,this._finished=!1,this._started=!1,this._destroyed=!1,this.time=0,this.parentPlayer=null,this.currentSnapshot={},this._duration=n.duration,this._delay=n.delay||0,this.time=this._duration+this._delay}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(e=>e()),this._onDoneFns=[])}init(){this._buildPlayer(),this._preparePlayerBeforeStart()}_buildPlayer(){if(this._initialized)return;this._initialized=!0;const e=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,e,this.options),this._finalKeyframe=e.length?e[e.length-1]:{},this.domPlayer.addEventListener(\"finish\",()=>this._onFinish())}_preparePlayerBeforeStart(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}_triggerWebAnimation(e,t,n){return e.animate(t,n)}onStart(e){this._onStartFns.push(e)}onDone(e){this._onDoneFns.push(e)}onDestroy(e){this._onDestroyFns.push(e)}play(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach(e=>e()),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),this.domPlayer.play()}pause(){this.init(),this.domPlayer.pause()}finish(){this.init(),this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish()}reset(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1}_resetDomPlayerState(){this.domPlayer&&this.domPlayer.cancel()}restart(){this.reset(),this.play()}hasStarted(){return this._started}destroy(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(e=>e()),this._onDestroyFns=[])}setPosition(e){this.domPlayer.currentTime=e*this.time}getPosition(){return this.domPlayer.currentTime/this.time}get totalTime(){return this._delay+this._duration}beforeDestroy(){const e={};this.hasStarted()&&Object.keys(this._finalKeyframe).forEach(t=>{\"offset\"!=t&&(e[t]=this._finished?this._finalKeyframe[t]:R_(this.element,t))}),this.currentSnapshot=e}triggerCallback(e){const t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach(e=>e()),t.length=0}}class Gg{constructor(){this._isNativeImpl=/\\{\\s*\\[native\\s+code\\]\\s*\\}/.test(Jg().toString()),this._cssKeyframesDriver=new Bg}validateStyleProperty(e){return d_(e)}matchesElement(e,t){return u_(e,t)}containsElement(e,t){return h_(e,t)}query(e,t,n){return m_(e,t,n)}computeStyle(e,t,n){return window.getComputedStyle(e)[t]}overrideWebAnimationsSupport(e){this._isNativeImpl=e}animate(e,t,n,i,s,r=[],o){if(!o&&!this._isNativeImpl)return this._cssKeyframesDriver.animate(e,t,n,i,s,r);const a={duration:n,delay:i,fill:0==i?\"both\":\"forwards\"};s&&(a.easing=s);const l={},c=r.filter(e=>e instanceof qg);I_(n,i)&&c.forEach(e=>{let t=e.currentSnapshot;Object.keys(t).forEach(e=>l[e]=t[e])});const d=Ig(e,t=P_(e,t=t.map(e=>w_(e,!1)),l));return new qg(e,t,a,d)}}function Jg(){return\"undefined\"!=typeof window&&void 0!==window.document&&Element.prototype.animate||{}}let Kg=(()=>{class e extends Hf{constructor(e,t){super(),this._nextAnimationId=0,this._renderer=e.createRenderer(t.body,{id:\"0\",encapsulation:pt.None,styles:[],data:{animation:[]}})}build(e){const t=this._nextAnimationId.toString();this._nextAnimationId++;const n=Array.isArray(e)?zf(e):e;return Xg(this._renderer,null,t,\"register\",[n]),new Zg(t,this._renderer)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Qa),Qe(Nd))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class Zg extends class{}{constructor(e,t){super(),this._id=e,this._renderer=t}create(e,t){return new Qg(this._id,e,t||{},this._renderer)}}class Qg{constructor(e,t,n,i){this.id=e,this.element=t,this._renderer=i,this.parentPlayer=null,this._started=!1,this.totalTime=0,this._command(\"create\",n)}_listen(e,t){return this._renderer.listen(this.element,`@@${this.id}:${e}`,t)}_command(e,...t){return Xg(this._renderer,this.element,this.id,e,t)}onDone(e){this._listen(\"done\",e)}onStart(e){this._listen(\"start\",e)}onDestroy(e){this._listen(\"destroy\",e)}init(){this._command(\"init\")}hasStarted(){return this._started}play(){this._command(\"play\"),this._started=!0}pause(){this._command(\"pause\")}restart(){this._command(\"restart\")}finish(){this._command(\"finish\")}destroy(){this._command(\"destroy\")}reset(){this._command(\"reset\")}setPosition(e){this._command(\"setPosition\",e)}getPosition(){return 0}}function Xg(e,t,n,i,s){return e.setProperty(t,`@@${n}:${i}`,s)}let ey=(()=>{class e{constructor(e,t,n){this.delegate=e,this.engine=t,this._zone=n,this._currentId=0,this._microtaskId=1,this._animationCallbacksBuffer=[],this._rendererCache=new Map,this._cdRecurDepth=0,this.promise=Promise.resolve(0),t.onRemovalComplete=(e,t)=>{t&&t.parentNode(e)&&t.removeChild(e.parentNode,e)}}createRenderer(e,t){const n=this.delegate.createRenderer(e,t);if(!(e&&t&&t.data&&t.data.animation)){let e=this._rendererCache.get(n);return e||(e=new ty(\"\",n,this.engine),this._rendererCache.set(n,e)),e}const i=t.id,s=t.id+\"-\"+this._currentId;this._currentId++,this.engine.register(s,e);const r=t=>{Array.isArray(t)?t.forEach(r):this.engine.registerTrigger(i,s,e,t.name,t)};return t.data.animation.forEach(r),new ny(this,s,n,this.engine)}begin(){this._cdRecurDepth++,this.delegate.begin&&this.delegate.begin()}_scheduleCountTask(){this.promise.then(()=>{this._microtaskId++})}scheduleListenerCallback(e,t,n){e>=0&&et(n)):(0==this._animationCallbacksBuffer.length&&Promise.resolve(null).then(()=>{this._zone.run(()=>{this._animationCallbacksBuffer.forEach(e=>{const[t,n]=e;t(n)}),this._animationCallbacksBuffer=[]})}),this._animationCallbacksBuffer.push([t,n]))}end(){this._cdRecurDepth--,0==this._cdRecurDepth&&this._zone.runOutsideAngular(()=>{this._scheduleCountTask(),this.engine.flush(this._microtaskId)}),this.delegate.end&&this.delegate.end()}whenRenderingDone(){return this.engine.whenRenderingDone()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Qa),Qe(Og),Qe(ld))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class ty{constructor(e,t,n){this.namespaceId=e,this.delegate=t,this.engine=n,this.destroyNode=this.delegate.destroyNode?e=>t.destroyNode(e):null}get data(){return this.delegate.data}destroy(){this.engine.destroy(this.namespaceId,this.delegate),this.delegate.destroy()}createElement(e,t){return this.delegate.createElement(e,t)}createComment(e){return this.delegate.createComment(e)}createText(e){return this.delegate.createText(e)}appendChild(e,t){this.delegate.appendChild(e,t),this.engine.onInsert(this.namespaceId,t,e,!1)}insertBefore(e,t,n){this.delegate.insertBefore(e,t,n),this.engine.onInsert(this.namespaceId,t,e,!0)}removeChild(e,t,n){this.engine.onRemove(this.namespaceId,t,this.delegate,n)}selectRootElement(e,t){return this.delegate.selectRootElement(e,t)}parentNode(e){return this.delegate.parentNode(e)}nextSibling(e){return this.delegate.nextSibling(e)}setAttribute(e,t,n,i){this.delegate.setAttribute(e,t,n,i)}removeAttribute(e,t,n){this.delegate.removeAttribute(e,t,n)}addClass(e,t){this.delegate.addClass(e,t)}removeClass(e,t){this.delegate.removeClass(e,t)}setStyle(e,t,n,i){this.delegate.setStyle(e,t,n,i)}removeStyle(e,t,n){this.delegate.removeStyle(e,t,n)}setProperty(e,t,n){\"@\"==t.charAt(0)&&\"@.disabled\"==t?this.disableAnimations(e,!!n):this.delegate.setProperty(e,t,n)}setValue(e,t){this.delegate.setValue(e,t)}listen(e,t,n){return this.delegate.listen(e,t,n)}disableAnimations(e,t){this.engine.disableAnimations(e,t)}}class ny extends ty{constructor(e,t,n,i){super(t,n,i),this.factory=e,this.namespaceId=t}setProperty(e,t,n){\"@\"==t.charAt(0)?\".\"==t.charAt(1)&&\"@.disabled\"==t?this.disableAnimations(e,n=void 0===n||!!n):this.engine.process(this.namespaceId,e,t.substr(1),n):this.delegate.setProperty(e,t,n)}listen(e,t,n){if(\"@\"==t.charAt(0)){const i=function(e){switch(e){case\"body\":return document.body;case\"document\":return document;case\"window\":return window;default:return e}}(e);let s=t.substr(1),r=\"\";return\"@\"!=s.charAt(0)&&([s,r]=function(e){const t=e.indexOf(\".\");return[e.substring(0,t),e.substr(t+1)]}(s)),this.engine.listen(this.namespaceId,i,s,r,e=>{this.factory.scheduleListenerCallback(e._data||-1,n,e)})}return this.delegate.listen(e,t,n)}}let iy=(()=>{class e extends Og{constructor(e,t,n){super(e.body,t,n)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd),Qe(__),Qe(rg))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const sy=new Ve(\"AnimationModuleType\"),ry=[{provide:__,useFactory:function(){return\"function\"==typeof Jg()?new Gg:new Bg}},{provide:sy,useValue:\"BrowserAnimations\"},{provide:Hf,useClass:Kg},{provide:rg,useFactory:function(){return new og}},{provide:Og,useClass:iy},{provide:Qa,useFactory:function(e,t,n){return new ey(e,t,n)},deps:[mf,Og,ld]}];let oy=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:ry,imports:[If]}),e})();const ay=[\"*\",[[\"mat-option\"],[\"ng-container\"]]],ly=[\"*\",\"mat-option, ng-container\"];function cy(e,t){if(1&e&&jo(0,\"mat-pseudo-checkbox\",3),2&e){const e=Jo();Po(\"state\",e.selected?\"checked\":\"unchecked\")(\"disabled\",e.disabled)}}const dy=[\"*\"],uy=new il(\"9.1.3\"),hy=new Ve(\"mat-sanity-checks\",{providedIn:\"root\",factory:function(){return!0}});let my,py=(()=>{class e{constructor(e,t,n){this._hasDoneGlobalChecks=!1,this._document=n,e._applyBodyHighContrastModeCssClasses(),this._sanityChecks=t,this._hasDoneGlobalChecks||(this._checkDoctypeIsDefined(),this._checkThemeIsPresent(),this._checkCdkVersionMatch(),this._hasDoneGlobalChecks=!0)}_getDocument(){const e=this._document||document;return\"object\"==typeof e&&e?e:null}_getWindow(){var e;const t=(null===(e=this._getDocument())||void 0===e?void 0:e.defaultView)||window;return\"object\"==typeof t&&t?t:null}_checksAreEnabled(){return Si()&&!this._isTestEnv()}_isTestEnv(){const e=this._getWindow();return e&&(e.__karma__||e.jasmine)}_checkDoctypeIsDefined(){const e=this._checksAreEnabled()&&(!0===this._sanityChecks||this._sanityChecks.doctype),t=this._getDocument();e&&t&&!t.doctype&&console.warn(\"Current document does not have a doctype. This may cause some Angular Material components not to behave as expected.\")}_checkThemeIsPresent(){const e=!this._checksAreEnabled()||!1===this._sanityChecks||!this._sanityChecks.theme,t=this._getDocument();if(e||!t||!t.body||\"function\"!=typeof getComputedStyle)return;const n=t.createElement(\"div\");n.classList.add(\"mat-theme-loaded-marker\"),t.body.appendChild(n);const i=getComputedStyle(n);i&&\"none\"!==i.display&&console.warn(\"Could not find Angular Material core theme. Most Material components may not work as expected. For more info refer to the theming guide: https://material.angular.io/guide/theming\"),t.body.removeChild(n)}_checkCdkVersionMatch(){this._checksAreEnabled()&&(!0===this._sanityChecks||this._sanityChecks.version)&&uy.full!==Kp.full&&console.warn(\"The Angular Material version (\"+uy.full+\") does not match the Angular CDK version (\"+Kp.full+\").\\nPlease ensure the versions of these two packages exactly match.\")}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)(Qe(Bp),Qe(hy,8),Qe(Nd,8))},imports:[[Jp],Jp]}),e})();function fy(e){return class extends e{constructor(...e){super(...e),this._disabled=!1}get disabled(){return this._disabled}set disabled(e){this._disabled=hp(e)}}}function _y(e,t){return class extends e{constructor(...e){super(...e),this.color=t}get color(){return this._color}set color(e){const n=e||t;n!==this._color&&(this._color&&this._elementRef.nativeElement.classList.remove(`mat-${this._color}`),n&&this._elementRef.nativeElement.classList.add(`mat-${n}`),this._color=n)}}}function gy(e){return class extends e{constructor(...e){super(...e),this._disableRipple=!1}get disableRipple(){return this._disableRipple}set disableRipple(e){this._disableRipple=hp(e)}}}function yy(e,t=0){return class extends e{constructor(...e){super(...e),this._tabIndex=t}get tabIndex(){return this.disabled?-1:this._tabIndex}set tabIndex(e){this._tabIndex=null!=e?e:t}}}function by(e){return class extends e{constructor(...e){super(...e),this.errorState=!1,this.stateChanges=new L}updateErrorState(){const e=this.errorState,t=(this.errorStateMatcher||this._defaultErrorStateMatcher).isErrorState(this.ngControl?this.ngControl.control:null,this._parentFormGroup||this._parentForm);t!==e&&(this.errorState=t,this.stateChanges.next())}}}try{my=\"undefined\"!=typeof Intl}catch(zI){my=!1}let vy=(()=>{class e{isErrorState(e,t){return!!(e&&e.invalid&&(e.touched||t&&t.submitted))}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})();const wy=new Ve(\"MAT_HAMMER_OPTIONS\");class My{constructor(e,t,n){this._renderer=e,this.element=t,this.config=n,this.state=3}fadeOut(){this._renderer.fadeOutRipple(this)}}const ky={enterDuration:450,exitDuration:400},Sy=Sp({passive:!0});class Ly{constructor(e,t,n,i){this._target=e,this._ngZone=t,this._isPointerDown=!1,this._triggerEvents=new Map,this._activeRipples=new Set,this._onMousedown=e=>{const t=$p(e),n=this._lastTouchStartEvent&&Date.now(){if(!this._target.rippleDisabled){this._lastTouchStartEvent=Date.now(),this._isPointerDown=!0;const t=e.changedTouches;for(let e=0;e{this._isPointerDown&&(this._isPointerDown=!1,this._activeRipples.forEach(e=>{!e.config.persistent&&(1===e.state||e.config.terminateOnPointerUp&&0===e.state)&&e.fadeOut()}))},i.isBrowser&&(this._containerElement=_p(n),this._triggerEvents.set(\"mousedown\",this._onMousedown).set(\"mouseup\",this._onPointerUp).set(\"mouseleave\",this._onPointerUp).set(\"touchstart\",this._onTouchStart).set(\"touchend\",this._onPointerUp).set(\"touchcancel\",this._onPointerUp))}fadeInRipple(e,t,n={}){const i=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),s=Object.assign(Object.assign({},ky),n.animation);n.centered&&(e=i.left+i.width/2,t=i.top+i.height/2);const r=n.radius||function(e,t,n){const i=Math.max(Math.abs(e-n.left),Math.abs(e-n.right)),s=Math.max(Math.abs(t-n.top),Math.abs(t-n.bottom));return Math.sqrt(i*i+s*s)}(e,t,i),o=e-i.left,a=t-i.top,l=s.enterDuration,c=document.createElement(\"div\");c.classList.add(\"mat-ripple-element\"),c.style.left=`${o-r}px`,c.style.top=`${a-r}px`,c.style.height=`${2*r}px`,c.style.width=`${2*r}px`,null!=n.color&&(c.style.backgroundColor=n.color),c.style.transitionDuration=`${l}ms`,this._containerElement.appendChild(c),window.getComputedStyle(c).getPropertyValue(\"opacity\"),c.style.transform=\"scale(1)\";const d=new My(this,c,n);return d.state=0,this._activeRipples.add(d),n.persistent||(this._mostRecentTransientRipple=d),this._runTimeoutOutsideZone(()=>{const e=d===this._mostRecentTransientRipple;d.state=1,n.persistent||e&&this._isPointerDown||d.fadeOut()},l),d}fadeOutRipple(e){const t=this._activeRipples.delete(e);if(e===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),this._activeRipples.size||(this._containerRect=null),!t)return;const n=e.element,i=Object.assign(Object.assign({},ky),e.config.animation);n.style.transitionDuration=`${i.exitDuration}ms`,n.style.opacity=\"0\",e.state=2,this._runTimeoutOutsideZone(()=>{e.state=3,n.parentNode.removeChild(n)},i.exitDuration)}fadeOutAll(){this._activeRipples.forEach(e=>e.fadeOut())}setupTriggerEvents(e){const t=_p(e);t&&t!==this._triggerElement&&(this._removeTriggerEvents(),this._ngZone.runOutsideAngular(()=>{this._triggerEvents.forEach((e,n)=>{t.addEventListener(n,e,Sy)})}),this._triggerElement=t)}_runTimeoutOutsideZone(e,t=0){this._ngZone.runOutsideAngular(()=>setTimeout(e,t))}_removeTriggerEvents(){this._triggerElement&&this._triggerEvents.forEach((e,t)=>{this._triggerElement.removeEventListener(t,e,Sy)})}}const xy=new Ve(\"mat-ripple-global-options\");let Cy=(()=>{class e{constructor(e,t,n,i,s){this._elementRef=e,this.radius=0,this._disabled=!1,this._isInitialized=!1,this._globalOptions=i||{},this._rippleRenderer=new Ly(this,t,e,n),\"NoopAnimations\"===s&&(this._globalOptions.animation={enterDuration:0,exitDuration:0})}get disabled(){return this._disabled}set disabled(e){this._disabled=e,this._setupTriggerEventsIfEnabled()}get trigger(){return this._trigger||this._elementRef.nativeElement}set trigger(e){this._trigger=e,this._setupTriggerEventsIfEnabled()}ngOnInit(){this._isInitialized=!0,this._setupTriggerEventsIfEnabled()}ngOnDestroy(){this._rippleRenderer._removeTriggerEvents()}fadeOutAll(){this._rippleRenderer.fadeOutAll()}get rippleConfig(){return{centered:this.centered,radius:this.radius,color:this.color,animation:Object.assign(Object.assign({},this._globalOptions.animation),this.animation),terminateOnPointerUp:this._globalOptions.terminateOnPointerUp}}get rippleDisabled(){return this.disabled||!!this._globalOptions.disabled}_setupTriggerEventsIfEnabled(){!this.disabled&&this._isInitialized&&this._rippleRenderer.setupTriggerEvents(this.trigger)}launch(e,t=0,n){return\"number\"==typeof e?this._rippleRenderer.fadeInRipple(e,t,Object.assign(Object.assign({},this.rippleConfig),n)):this._rippleRenderer.fadeInRipple(0,0,Object.assign(Object.assign({},this.rippleConfig),e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(ld),Eo(bp),Eo(xy,8),Eo(sy,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"mat-ripple\",\"\"],[\"\",\"matRipple\",\"\"]],hostAttrs:[1,\"mat-ripple\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"mat-ripple-unbounded\",t.unbounded)},inputs:{radius:[\"matRippleRadius\",\"radius\"],disabled:[\"matRippleDisabled\",\"disabled\"],trigger:[\"matRippleTrigger\",\"trigger\"],color:[\"matRippleColor\",\"color\"],unbounded:[\"matRippleUnbounded\",\"unbounded\"],centered:[\"matRippleCentered\",\"centered\"],animation:[\"matRippleAnimation\",\"animation\"]},exportAs:[\"matRipple\"]}),e})(),Ty=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[py,vp],py]}),e})(),Dy=(()=>{class e{constructor(e){this._animationMode=e,this.state=\"unchecked\",this.disabled=!1}}return e.\\u0275fac=function(t){return new(t||e)(Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-pseudo-checkbox\"]],hostAttrs:[1,\"mat-pseudo-checkbox\"],hostVars:8,hostBindings:function(e,t){2&e&&ua(\"mat-pseudo-checkbox-indeterminate\",\"indeterminate\"===t.state)(\"mat-pseudo-checkbox-checked\",\"checked\"===t.state)(\"mat-pseudo-checkbox-disabled\",t.disabled)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode)},inputs:{state:\"state\",disabled:\"disabled\"},decls:0,vars:0,template:function(e,t){},styles:['.mat-pseudo-checkbox{width:16px;height:16px;border:2px solid;border-radius:2px;cursor:pointer;display:inline-block;vertical-align:middle;box-sizing:border-box;position:relative;flex-shrink:0;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1),background-color 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox::after{position:absolute;opacity:0;content:\"\";border-bottom:2px solid currentColor;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox.mat-pseudo-checkbox-indeterminate{border-color:transparent}._mat-animation-noopable.mat-pseudo-checkbox{transition:none;animation:none}._mat-animation-noopable.mat-pseudo-checkbox::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{top:5px;left:1px;width:10px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{top:2.4px;left:1px;width:8px;height:3px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}\\n'],encapsulation:2,changeDetection:0}),e})(),Yy=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();class Ey{}const Oy=fy(Ey);let Iy=0,Py=(()=>{class e extends Oy{constructor(){super(...arguments),this._labelId=`mat-optgroup-label-${Iy++}`}}return e.\\u0275fac=function(t){return Ay(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-optgroup\"]],hostAttrs:[\"role\",\"group\",1,\"mat-optgroup\"],hostVars:4,hostBindings:function(e,t){2&e&&(Co(\"aria-disabled\",t.disabled.toString())(\"aria-labelledby\",t._labelId),ua(\"mat-optgroup-disabled\",t.disabled))},inputs:{disabled:\"disabled\",label:\"label\"},exportAs:[\"matOptgroup\"],features:[Ya],ngContentSelectors:ly,decls:4,vars:2,consts:[[1,\"mat-optgroup-label\",3,\"id\"]],template:function(e,t){1&e&&(Zo(ay),Ro(0,\"label\",0),Sa(1),ea(2),Ho(),ea(3,1)),2&e&&(Po(\"id\",t._labelId),ys(1),xa(\"\",t.label,\" \"))},styles:[\".mat-optgroup-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup-label[disabled]{cursor:default}[dir=rtl] .mat-optgroup-label{text-align:right}.mat-optgroup-label .mat-icon{margin-right:16px;vertical-align:middle}.mat-optgroup-label .mat-icon svg{vertical-align:top}[dir=rtl] .mat-optgroup-label .mat-icon{margin-left:16px;margin-right:0}\\n\"],encapsulation:2,changeDetection:0}),e})();const Ay=li(Py);let Ry=0;class Hy{constructor(e,t=!1){this.source=e,this.isUserInput=t}}const jy=new Ve(\"MAT_OPTION_PARENT_COMPONENT\");let Fy=(()=>{class e{constructor(e,t,n,i){this._element=e,this._changeDetectorRef=t,this._parent=n,this.group=i,this._selected=!1,this._active=!1,this._disabled=!1,this._mostRecentViewValue=\"\",this.id=`mat-option-${Ry++}`,this.onSelectionChange=new yc,this._stateChanges=new L}get multiple(){return this._parent&&this._parent.multiple}get selected(){return this._selected}get disabled(){return this.group&&this.group.disabled||this._disabled}set disabled(e){this._disabled=hp(e)}get disableRipple(){return this._parent&&this._parent.disableRipple}get active(){return this._active}get viewValue(){return(this._getHostElement().textContent||\"\").trim()}select(){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}deselect(){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}focus(e,t){const n=this._getHostElement();\"function\"==typeof n.focus&&n.focus(t)}setActiveStyles(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}setInactiveStyles(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}getLabel(){return this.viewValue}_handleKeydown(e){13!==e.keyCode&&32!==e.keyCode||qm(e)||(this._selectViaInteraction(),e.preventDefault())}_selectViaInteraction(){this.disabled||(this._selected=!this.multiple||!this._selected,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent(!0))}_getAriaSelected(){return this.selected||!this.multiple&&null}_getTabIndex(){return this.disabled?\"-1\":\"0\"}_getHostElement(){return this._element.nativeElement}ngAfterViewChecked(){if(this._selected){const e=this.viewValue;e!==this._mostRecentViewValue&&(this._mostRecentViewValue=e,this._stateChanges.next())}}ngOnDestroy(){this._stateChanges.complete()}_emitSelectionChangeEvent(e=!1){this.onSelectionChange.emit(new Hy(this,e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Qr),Eo(jy,8),Eo(Py,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-option\"]],hostAttrs:[\"role\",\"option\",1,\"mat-option\",\"mat-focus-indicator\"],hostVars:12,hostBindings:function(e,t){1&e&&Uo(\"click\",(function(){return t._selectViaInteraction()}))(\"keydown\",(function(e){return t._handleKeydown(e)})),2&e&&(Ca(\"id\",t.id),Co(\"tabindex\",t._getTabIndex())(\"aria-selected\",t._getAriaSelected())(\"aria-disabled\",t.disabled.toString()),ua(\"mat-selected\",t.selected)(\"mat-option-multiple\",t.multiple)(\"mat-active\",t.active)(\"mat-option-disabled\",t.disabled))},inputs:{id:\"id\",disabled:\"disabled\",value:\"value\"},outputs:{onSelectionChange:\"onSelectionChange\"},exportAs:[\"matOption\"],ngContentSelectors:dy,decls:4,vars:3,consts:[[\"class\",\"mat-option-pseudo-checkbox\",3,\"state\",\"disabled\",4,\"ngIf\"],[1,\"mat-option-text\"],[\"mat-ripple\",\"\",1,\"mat-option-ripple\",3,\"matRippleTrigger\",\"matRippleDisabled\"],[1,\"mat-option-pseudo-checkbox\",3,\"state\",\"disabled\"]],template:function(e,t){1&e&&(Zo(),Do(0,cy,1,2,\"mat-pseudo-checkbox\",0),Ro(1,\"span\",1),ea(2),Ho(),jo(3,\"div\",2)),2&e&&(Po(\"ngIf\",t.multiple),ys(3),Po(\"matRippleTrigger\",t._getHostElement())(\"matRippleDisabled\",t.disabled||t.disableRipple))},directives:[mu,Cy,Dy],styles:[\".mat-option{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative;cursor:pointer;outline:none;display:flex;flex-direction:row;max-width:100%;box-sizing:border-box;align-items:center;-webkit-tap-highlight-color:transparent}.mat-option[disabled]{cursor:default}[dir=rtl] .mat-option{text-align:right}.mat-option .mat-icon{margin-right:16px;vertical-align:middle}.mat-option .mat-icon svg{vertical-align:top}[dir=rtl] .mat-option .mat-icon{margin-left:16px;margin-right:0}.mat-option[aria-disabled=true]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:32px}[dir=rtl] .mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:16px;padding-right:32px}.cdk-high-contrast-active .mat-option{margin:0 1px}.cdk-high-contrast-active .mat-option.mat-active{border:solid 1px currentColor;margin:0}.mat-option-text{display:inline-block;flex-grow:1;overflow:hidden;text-overflow:ellipsis}.mat-option .mat-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.cdk-high-contrast-active .mat-option .mat-option-ripple{opacity:.5}.mat-option-pseudo-checkbox{margin-right:8px}[dir=rtl] .mat-option-pseudo-checkbox{margin-left:8px;margin-right:0}\\n\"],encapsulation:2,changeDetection:0}),e})();function Ny(e,t,n){if(n.length){let i=t.toArray(),s=n.toArray(),r=0;for(let t=0;t{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Ty,Mu,Yy]]}),e})();const Vy=new Ve(\"mat-label-global-options\"),Wy=[\"mat-button\",\"\"],Uy=[\"*\"],$y=[\"mat-button\",\"mat-flat-button\",\"mat-icon-button\",\"mat-raised-button\",\"mat-stroked-button\",\"mat-mini-fab\",\"mat-fab\"];class By{constructor(e){this._elementRef=e}}const qy=_y(fy(gy(By)));let Gy=(()=>{class e extends qy{constructor(e,t,n){super(e),this._focusMonitor=t,this._animationMode=n,this.isRoundButton=this._hasHostAttributes(\"mat-fab\",\"mat-mini-fab\"),this.isIconButton=this._hasHostAttributes(\"mat-icon-button\");for(const i of $y)this._hasHostAttributes(i)&&this._getHostElement().classList.add(i);e.nativeElement.classList.add(\"mat-button-base\"),this._focusMonitor.monitor(this._elementRef,!0),this.isRoundButton&&(this.color=\"accent\")}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}focus(e=\"program\",t){this._focusMonitor.focusVia(this._getHostElement(),e,t)}_getHostElement(){return this._elementRef.nativeElement}_isRippleDisabled(){return this.disableRipple||this.disabled}_hasHostAttributes(...e){return e.some(e=>this._getHostElement().hasAttribute(e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Up),Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"button\",\"mat-button\",\"\"],[\"button\",\"mat-raised-button\",\"\"],[\"button\",\"mat-icon-button\",\"\"],[\"button\",\"mat-fab\",\"\"],[\"button\",\"mat-mini-fab\",\"\"],[\"button\",\"mat-stroked-button\",\"\"],[\"button\",\"mat-flat-button\",\"\"]],viewQuery:function(e,t){var n;1&e&&Ec(Cy,!0),2&e&&Dc(n=Rc())&&(t.ripple=n.first)},hostAttrs:[1,\"mat-focus-indicator\"],hostVars:3,hostBindings:function(e,t){2&e&&(Co(\"disabled\",t.disabled||null),ua(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\"},exportAs:[\"matButton\"],features:[Ya],attrs:Wy,ngContentSelectors:Uy,decls:4,vars:5,consts:[[1,\"mat-button-wrapper\"],[\"matRipple\",\"\",1,\"mat-button-ripple\",3,\"matRippleDisabled\",\"matRippleCentered\",\"matRippleTrigger\"],[1,\"mat-button-focus-overlay\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"span\",0),ea(1),Ho(),jo(2,\"div\",1),jo(3,\"div\",2)),2&e&&(ys(2),ua(\"mat-button-ripple-round\",t.isRoundButton||t.isIconButton),Po(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleCentered\",t.isIconButton)(\"matRippleTrigger\",t._getHostElement()))},directives:[Cy],styles:[\".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:.04}@media(hover: none){.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-button[disabled],.mat-icon-button[disabled],.mat-stroked-button[disabled],.mat-flat-button[disabled]{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button[disabled]{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}._mat-animation-noopable.mat-raised-button{transition:none;animation:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-ripple.mat-ripple,.mat-stroked-button .mat-button-focus-overlay{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab[disabled]{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-fab{transition:none;animation:none}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab[disabled]{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-mini-fab{transition:none;animation:none}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button i,.mat-icon-button .mat-icon{line-height:24px}.mat-button-ripple.mat-ripple,.mat-button-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-ripple.mat-ripple:not(:empty){transform:translateZ(0)}.mat-button-focus-overlay{opacity:0;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1),background-color 200ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}.cdk-high-contrast-active .mat-button-focus-overlay{background-color:#fff}.cdk-high-contrast-black-on-white .mat-button-focus-overlay{background-color:#000}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}\\n\"],encapsulation:2,changeDetection:0}),e})(),Jy=(()=>{class e extends Gy{constructor(e,t,n){super(t,e,n)}_haltDisabledEvents(e){this.disabled&&(e.preventDefault(),e.stopImmediatePropagation())}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Up),Eo(Ka),Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"a\",\"mat-button\",\"\"],[\"a\",\"mat-raised-button\",\"\"],[\"a\",\"mat-icon-button\",\"\"],[\"a\",\"mat-fab\",\"\"],[\"a\",\"mat-mini-fab\",\"\"],[\"a\",\"mat-stroked-button\",\"\"],[\"a\",\"mat-flat-button\",\"\"]],hostAttrs:[1,\"mat-focus-indicator\"],hostVars:5,hostBindings:function(e,t){1&e&&Uo(\"click\",(function(e){return t._haltDisabledEvents(e)})),2&e&&(Co(\"tabindex\",t.disabled?-1:t.tabIndex||0)(\"disabled\",t.disabled||null)(\"aria-disabled\",t.disabled.toString()),ua(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\"},exportAs:[\"matButton\",\"matAnchor\"],features:[Ya],attrs:Wy,ngContentSelectors:Uy,decls:4,vars:5,consts:[[1,\"mat-button-wrapper\"],[\"matRipple\",\"\",1,\"mat-button-ripple\",3,\"matRippleDisabled\",\"matRippleCentered\",\"matRippleTrigger\"],[1,\"mat-button-focus-overlay\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"span\",0),ea(1),Ho(),jo(2,\"div\",1),jo(3,\"div\",2)),2&e&&(ys(2),ua(\"mat-button-ripple-round\",t.isRoundButton||t.isIconButton),Po(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleCentered\",t.isIconButton)(\"matRippleTrigger\",t._getHostElement()))},directives:[Cy],styles:[\".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:.04}@media(hover: none){.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-button[disabled],.mat-icon-button[disabled],.mat-stroked-button[disabled],.mat-flat-button[disabled]{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button[disabled]{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}._mat-animation-noopable.mat-raised-button{transition:none;animation:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-ripple.mat-ripple,.mat-stroked-button .mat-button-focus-overlay{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab[disabled]{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-fab{transition:none;animation:none}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab[disabled]{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-mini-fab{transition:none;animation:none}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button i,.mat-icon-button .mat-icon{line-height:24px}.mat-button-ripple.mat-ripple,.mat-button-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-ripple.mat-ripple:not(:empty){transform:translateZ(0)}.mat-button-focus-overlay{opacity:0;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1),background-color 200ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}.cdk-high-contrast-active .mat-button-focus-overlay{background-color:#fff}.cdk-high-contrast-black-on-white .mat-button-focus-overlay{background-color:#000}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}\\n\"],encapsulation:2,changeDetection:0}),e})(),Ky=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Ty,py],py]}),e})();const Zy=[\"*\",[[\"mat-card-footer\"]]],Qy=[\"*\",\"mat-card-footer\"],Xy=[[[\"\",\"mat-card-avatar\",\"\"],[\"\",\"matCardAvatar\",\"\"]],[[\"mat-card-title\"],[\"mat-card-subtitle\"],[\"\",\"mat-card-title\",\"\"],[\"\",\"mat-card-subtitle\",\"\"],[\"\",\"matCardTitle\",\"\"],[\"\",\"matCardSubtitle\",\"\"]],\"*\"],eb=[\"[mat-card-avatar], [matCardAvatar]\",\"mat-card-title, mat-card-subtitle,\\n [mat-card-title], [mat-card-subtitle],\\n [matCardTitle], [matCardSubtitle]\",\"*\"];let tb=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-card-content\"],[\"\",\"mat-card-content\",\"\"],[\"\",\"matCardContent\",\"\"]],hostAttrs:[1,\"mat-card-content\"]}),e})(),nb=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-card-title\"],[\"\",\"mat-card-title\",\"\"],[\"\",\"matCardTitle\",\"\"]],hostAttrs:[1,\"mat-card-title\"]}),e})(),ib=(()=>{class e{constructor(){this.align=\"start\"}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-card-actions\"]],hostAttrs:[1,\"mat-card-actions\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"mat-card-actions-align-end\",\"end\"===t.align)},inputs:{align:\"align\"},exportAs:[\"matCardActions\"]}),e})(),sb=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"mat-card-image\",\"\"],[\"\",\"matCardImage\",\"\"]],hostAttrs:[1,\"mat-card-image\"]}),e})(),rb=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"mat-card-avatar\",\"\"],[\"\",\"matCardAvatar\",\"\"]],hostAttrs:[1,\"mat-card-avatar\"]}),e})(),ob=(()=>{class e{constructor(e){this._animationMode=e}}return e.\\u0275fac=function(t){return new(t||e)(Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-card\"]],hostAttrs:[1,\"mat-card\",\"mat-focus-indicator\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode)},exportAs:[\"matCard\"],ngContentSelectors:Qy,decls:2,vars:0,template:function(e,t){1&e&&(Zo(Zy),ea(0),ea(1,1))},styles:[\".mat-card{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);display:block;position:relative;padding:16px;border-radius:4px}._mat-animation-noopable.mat-card{transition:none;animation:none}.mat-card .mat-divider-horizontal{position:absolute;left:0;width:100%}[dir=rtl] .mat-card .mat-divider-horizontal{left:auto;right:0}.mat-card .mat-divider-horizontal.mat-divider-inset{position:static;margin:0}[dir=rtl] .mat-card .mat-divider-horizontal.mat-divider-inset{margin-right:0}.cdk-high-contrast-active .mat-card{outline:solid 1px}.mat-card-actions,.mat-card-subtitle,.mat-card-content{display:block;margin-bottom:16px}.mat-card-title{display:block;margin-bottom:8px}.mat-card-actions{margin-left:-8px;margin-right:-8px;padding:8px 0}.mat-card-actions-align-end{display:flex;justify-content:flex-end}.mat-card-image{width:calc(100% + 32px);margin:0 -16px 16px -16px}.mat-card-footer{display:block;margin:0 -16px -16px -16px}.mat-card-actions .mat-button,.mat-card-actions .mat-raised-button,.mat-card-actions .mat-stroked-button{margin:0 8px}.mat-card-header{display:flex;flex-direction:row}.mat-card-header .mat-card-title{margin-bottom:12px}.mat-card-header-text{margin:0 16px}.mat-card-avatar{height:40px;width:40px;border-radius:50%;flex-shrink:0;object-fit:cover}.mat-card-title-group{display:flex;justify-content:space-between}.mat-card-sm-image{width:80px;height:80px}.mat-card-md-image{width:112px;height:112px}.mat-card-lg-image{width:152px;height:152px}.mat-card-xl-image{width:240px;height:240px;margin:-8px}.mat-card-title-group>.mat-card-xl-image{margin:-8px 0 8px}@media(max-width: 599px){.mat-card-title-group{margin:0}.mat-card-xl-image{margin-left:0;margin-right:0}}.mat-card>:first-child,.mat-card-content>:first-child{margin-top:0}.mat-card>:last-child:not(.mat-card-footer),.mat-card-content>:last-child:not(.mat-card-footer){margin-bottom:0}.mat-card-image:first-child{margin-top:-16px;border-top-left-radius:inherit;border-top-right-radius:inherit}.mat-card>.mat-card-actions:last-child{margin-bottom:-8px;padding-bottom:0}.mat-card-actions .mat-button:first-child,.mat-card-actions .mat-raised-button:first-child,.mat-card-actions .mat-stroked-button:first-child{margin-left:0;margin-right:0}.mat-card-title:not(:first-child),.mat-card-subtitle:not(:first-child){margin-top:-4px}.mat-card-header .mat-card-subtitle:not(:first-child){margin-top:-8px}.mat-card>.mat-card-xl-image:first-child{margin-top:-8px}.mat-card>.mat-card-xl-image:last-child{margin-bottom:-8px}\\n\"],encapsulation:2,changeDetection:0}),e})(),ab=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-card-header\"]],hostAttrs:[1,\"mat-card-header\"],ngContentSelectors:eb,decls:4,vars:0,consts:[[1,\"mat-card-header-text\"]],template:function(e,t){1&e&&(Zo(Xy),ea(0),Ro(1,\"div\",0),ea(2,1),Ho(),ea(3,2))},encapsulation:2,changeDetection:0}),e})(),lb=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[py],py]}),e})();const cb=[\"input\"],db=function(){return{enterDuration:150}},ub=[\"*\"],hb=new Ve(\"mat-checkbox-default-options\",{providedIn:\"root\",factory:function(){return{color:\"accent\",clickAction:\"check-indeterminate\"}}}),mb=new Ve(\"mat-checkbox-click-action\");let pb=0;const fb={provide:uh,useExisting:Ce(()=>bb),multi:!0};class _b{}class gb{constructor(e){this._elementRef=e}}const yb=yy(_y(gy(fy(gb))));let bb=(()=>{class e extends yb{constructor(e,t,n,i,s,r,o,a){super(e),this._changeDetectorRef=t,this._focusMonitor=n,this._ngZone=i,this._clickAction=r,this._animationMode=o,this._options=a,this.ariaLabel=\"\",this.ariaLabelledby=null,this._uniqueId=`mat-checkbox-${++pb}`,this.id=this._uniqueId,this.labelPosition=\"after\",this.name=null,this.change=new yc,this.indeterminateChange=new yc,this._onTouched=()=>{},this._currentAnimationClass=\"\",this._currentCheckState=0,this._controlValueAccessorChangeFn=()=>{},this._checked=!1,this._disabled=!1,this._indeterminate=!1,this._options=this._options||{},this._options.color&&(this.color=this._options.color),this.tabIndex=parseInt(s)||0,this._focusMonitor.monitor(e,!0).subscribe(e=>{e||Promise.resolve().then(()=>{this._onTouched(),t.markForCheck()})}),this._clickAction=this._clickAction||this._options.clickAction}get inputId(){return`${this.id||this._uniqueId}-input`}get required(){return this._required}set required(e){this._required=hp(e)}ngAfterViewInit(){this._syncIndeterminate(this._indeterminate)}ngAfterViewChecked(){}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}get checked(){return this._checked}set checked(e){e!=this.checked&&(this._checked=e,this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled}set disabled(e){const t=hp(e);t!==this.disabled&&(this._disabled=t,this._changeDetectorRef.markForCheck())}get indeterminate(){return this._indeterminate}set indeterminate(e){const t=e!=this._indeterminate;this._indeterminate=hp(e),t&&(this._transitionCheckState(this._indeterminate?3:this.checked?1:2),this.indeterminateChange.emit(this._indeterminate)),this._syncIndeterminate(this._indeterminate)}_isRippleDisabled(){return this.disableRipple||this.disabled}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}writeValue(e){this.checked=!!e}registerOnChange(e){this._controlValueAccessorChangeFn=e}registerOnTouched(e){this._onTouched=e}setDisabledState(e){this.disabled=e}_getAriaChecked(){return this.checked?\"true\":this.indeterminate?\"mixed\":\"false\"}_transitionCheckState(e){let t=this._currentCheckState,n=this._elementRef.nativeElement;if(t!==e&&(this._currentAnimationClass.length>0&&n.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(t,e),this._currentCheckState=e,this._currentAnimationClass.length>0)){n.classList.add(this._currentAnimationClass);const e=this._currentAnimationClass;this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{n.classList.remove(e)},1e3)})}}_emitChangeEvent(){const e=new _b;e.source=this,e.checked=this.checked,this._controlValueAccessorChangeFn(this.checked),this.change.emit(e)}toggle(){this.checked=!this.checked}_onInputClick(e){e.stopPropagation(),this.disabled||\"noop\"===this._clickAction?this.disabled||\"noop\"!==this._clickAction||(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&\"check\"!==this._clickAction&&Promise.resolve().then(()=>{this._indeterminate=!1,this.indeterminateChange.emit(this._indeterminate)}),this.toggle(),this._transitionCheckState(this._checked?1:2),this._emitChangeEvent())}focus(e=\"keyboard\",t){this._focusMonitor.focusVia(this._inputElement,e,t)}_onInteractionEvent(e){e.stopPropagation()}_getAnimationClassForCheckStateTransition(e,t){if(\"NoopAnimations\"===this._animationMode)return\"\";let n=\"\";switch(e){case 0:if(1===t)n=\"unchecked-checked\";else{if(3!=t)return\"\";n=\"unchecked-indeterminate\"}break;case 2:n=1===t?\"unchecked-checked\":\"unchecked-indeterminate\";break;case 1:n=2===t?\"checked-unchecked\":\"checked-indeterminate\";break;case 3:n=1===t?\"indeterminate-checked\":\"indeterminate-unchecked\"}return`mat-checkbox-anim-${n}`}_syncIndeterminate(e){const t=this._inputElement;t&&(t.nativeElement.indeterminate=e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Qr),Eo(Up),Eo(ld),Oo(\"tabindex\"),Eo(mb,8),Eo(sy,8),Eo(hb,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-checkbox\"]],viewQuery:function(e,t){var n;1&e&&(Ec(cb,!0),Ec(Cy,!0)),2&e&&(Dc(n=Rc())&&(t._inputElement=n.first),Dc(n=Rc())&&(t.ripple=n.first))},hostAttrs:[1,\"mat-checkbox\"],hostVars:12,hostBindings:function(e,t){2&e&&(Ca(\"id\",t.id),Co(\"tabindex\",null),ua(\"mat-checkbox-indeterminate\",t.indeterminate)(\"mat-checkbox-checked\",t.checked)(\"mat-checkbox-disabled\",t.disabled)(\"mat-checkbox-label-before\",\"before\"==t.labelPosition)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],id:\"id\",labelPosition:\"labelPosition\",name:\"name\",required:\"required\",checked:\"checked\",disabled:\"disabled\",indeterminate:\"indeterminate\",value:\"value\"},outputs:{change:\"change\",indeterminateChange:\"indeterminateChange\"},exportAs:[\"matCheckbox\"],features:[Ba([fb]),Ya],ngContentSelectors:ub,decls:17,vars:19,consts:[[1,\"mat-checkbox-layout\"],[\"label\",\"\"],[1,\"mat-checkbox-inner-container\"],[\"type\",\"checkbox\",1,\"mat-checkbox-input\",\"cdk-visually-hidden\",3,\"id\",\"required\",\"checked\",\"disabled\",\"tabIndex\",\"change\",\"click\"],[\"input\",\"\"],[\"matRipple\",\"\",1,\"mat-checkbox-ripple\",\"mat-focus-indicator\",3,\"matRippleTrigger\",\"matRippleDisabled\",\"matRippleRadius\",\"matRippleCentered\",\"matRippleAnimation\"],[1,\"mat-ripple-element\",\"mat-checkbox-persistent-ripple\"],[1,\"mat-checkbox-frame\"],[1,\"mat-checkbox-background\"],[\"version\",\"1.1\",\"focusable\",\"false\",\"viewBox\",\"0 0 24 24\",0,\"xml\",\"space\",\"preserve\",1,\"mat-checkbox-checkmark\"],[\"fill\",\"none\",\"stroke\",\"white\",\"d\",\"M4.1,12.7 9,17.6 20.3,6.3\",1,\"mat-checkbox-checkmark-path\"],[1,\"mat-checkbox-mixedmark\"],[1,\"mat-checkbox-label\",3,\"cdkObserveContent\"],[\"checkboxLabel\",\"\"],[2,\"display\",\"none\"]],template:function(e,t){if(1&e&&(Zo(),Ro(0,\"label\",0,1),Ro(2,\"div\",2),Ro(3,\"input\",3,4),Uo(\"change\",(function(e){return t._onInteractionEvent(e)}))(\"click\",(function(e){return t._onInputClick(e)})),Ho(),Ro(5,\"div\",5),jo(6,\"div\",6),Ho(),jo(7,\"div\",7),Ro(8,\"div\",8),kn(),Ro(9,\"svg\",9),jo(10,\"path\",10),Ho(),Sn(),jo(11,\"div\",11),Ho(),Ho(),Ro(12,\"span\",12,13),Uo(\"cdkObserveContent\",(function(){return t._onLabelTextChange()})),Ro(14,\"span\",14),Sa(15,\"\\xa0\"),Ho(),ea(16),Ho(),Ho()),2&e){const e=Yo(1),n=Yo(13);Co(\"for\",t.inputId),ys(2),ua(\"mat-checkbox-inner-container-no-side-margin\",!n.textContent||!n.textContent.trim()),ys(1),Po(\"id\",t.inputId)(\"required\",t.required)(\"checked\",t.checked)(\"disabled\",t.disabled)(\"tabIndex\",t.tabIndex),Co(\"value\",t.value)(\"name\",t.name)(\"aria-label\",t.ariaLabel||null)(\"aria-labelledby\",t.ariaLabelledby)(\"aria-checked\",t._getAriaChecked()),ys(2),Po(\"matRippleTrigger\",e)(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleRadius\",20)(\"matRippleCentered\",!0)(\"matRippleAnimation\",gc(18,db))}},directives:[Cy,Yp],styles:[\"@keyframes mat-checkbox-fade-in-background{0%{opacity:0}50%{opacity:1}}@keyframes mat-checkbox-fade-out-background{0%,50%{opacity:1}100%{opacity:0}}@keyframes mat-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:22.910259}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1)}100%{stroke-dashoffset:0}}@keyframes mat-checkbox-unchecked-indeterminate-mixedmark{0%,68.2%{transform:scaleX(0)}68.2%{animation-timing-function:cubic-bezier(0, 0, 0, 1)}100%{transform:scaleX(1)}}@keyframes mat-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);stroke-dashoffset:0}to{stroke-dashoffset:-22.910259}}@keyframes mat-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(45deg)}}@keyframes mat-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:0;transform:rotate(45deg)}to{opacity:1;transform:rotate(360deg)}}@keyframes mat-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:0;transform:rotate(-45deg)}to{opacity:1;transform:rotate(0deg)}}@keyframes mat-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(315deg)}}@keyframes mat-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;opacity:1;transform:scaleX(1)}32.8%,100%{opacity:0;transform:scaleX(0)}}.mat-checkbox-background,.mat-checkbox-frame{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:2px;box-sizing:border-box;pointer-events:none}.mat-checkbox{transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);cursor:pointer;-webkit-tap-highlight-color:transparent}._mat-animation-noopable.mat-checkbox{transition:none;animation:none}.mat-checkbox .mat-ripple-element:not(.mat-checkbox-persistent-ripple){opacity:.16}.mat-checkbox-layout{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:inherit;align-items:baseline;vertical-align:middle;display:inline-flex;white-space:nowrap}.mat-checkbox-label{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.mat-checkbox-inner-container{display:inline-block;height:16px;line-height:0;margin:auto;margin-right:8px;order:0;position:relative;vertical-align:middle;white-space:nowrap;width:16px;flex-shrink:0}[dir=rtl] .mat-checkbox-inner-container{margin-left:8px;margin-right:auto}.mat-checkbox-inner-container-no-side-margin{margin-left:0;margin-right:0}.mat-checkbox-frame{background-color:transparent;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1);border-width:2px;border-style:solid}._mat-animation-noopable .mat-checkbox-frame{transition:none}.mat-checkbox.cdk-keyboard-focused .cdk-high-contrast-active .mat-checkbox-frame{border-style:dotted}.mat-checkbox-background{align-items:center;display:inline-flex;justify-content:center;transition:background-color 90ms cubic-bezier(0, 0, 0.2, 0.1),opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}._mat-animation-noopable .mat-checkbox-background{transition:none}.cdk-high-contrast-active .mat-checkbox .mat-checkbox-background{background:none}.mat-checkbox-persistent-ripple{width:100%;height:100%;transform:none}.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:.04}.mat-checkbox.cdk-keyboard-focused .mat-checkbox-persistent-ripple{opacity:.12}.mat-checkbox-persistent-ripple,.mat-checkbox.mat-checkbox-disabled .mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:0}@media(hover: none){.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{display:none}}.mat-checkbox-checkmark{top:0;left:0;right:0;bottom:0;position:absolute;width:100%}.mat-checkbox-checkmark-path{stroke-dashoffset:22.910259;stroke-dasharray:22.910259;stroke-width:2.1333333333px}.cdk-high-contrast-black-on-white .mat-checkbox-checkmark-path{stroke:#000 !important}.mat-checkbox-mixedmark{width:calc(100% - 6px);height:2px;opacity:0;transform:scaleX(0) rotate(0deg);border-radius:2px}.cdk-high-contrast-active .mat-checkbox-mixedmark{height:0;border-top:solid 2px;margin-top:2px}.mat-checkbox-label-before .mat-checkbox-inner-container{order:1;margin-left:8px;margin-right:auto}[dir=rtl] .mat-checkbox-label-before .mat-checkbox-inner-container{margin-left:auto;margin-right:8px}.mat-checkbox-checked .mat-checkbox-checkmark{opacity:1}.mat-checkbox-checked .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-checked .mat-checkbox-mixedmark{transform:scaleX(1) rotate(-45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark{opacity:0;transform:rotate(45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-indeterminate .mat-checkbox-mixedmark{opacity:1;transform:scaleX(1) rotate(0deg)}.mat-checkbox-unchecked .mat-checkbox-background{background-color:transparent}.mat-checkbox-disabled{cursor:default}.cdk-high-contrast-active .mat-checkbox-disabled{opacity:.5}.mat-checkbox-anim-unchecked-checked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-checked .mat-checkbox-checkmark-path{animation:180ms linear 0ms mat-checkbox-unchecked-checked-checkmark-path}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-unchecked-indeterminate-mixedmark}.mat-checkbox-anim-checked-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-checked-unchecked .mat-checkbox-checkmark-path{animation:90ms linear 0ms mat-checkbox-checked-unchecked-checkmark-path}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-checkmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-checkmark}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-mixedmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-checkmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-checkmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-mixedmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-mixedmark}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-mixedmark{animation:300ms linear 0ms mat-checkbox-indeterminate-unchecked-mixedmark}.mat-checkbox-input{bottom:0;left:50%}.mat-checkbox .mat-checkbox-ripple{position:absolute;left:calc(50% - 20px);top:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}\\n\"],encapsulation:2,changeDetection:0}),e})(),vb=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),wb=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Ty,py,Ep,vb],py,vb]}),e})();function Mb(e,t,n,s){return i(n)&&(s=n,n=void 0),s?Mb(e,t,n).pipe(H(e=>l(e)?s(...e):s(e))):new v(i=>{!function e(t,n,i,s,r){let o;if(function(e){return e&&\"function\"==typeof e.addEventListener&&\"function\"==typeof e.removeEventListener}(t)){const e=t;t.addEventListener(n,i,r),o=()=>e.removeEventListener(n,i,r)}else if(function(e){return e&&\"function\"==typeof e.on&&\"function\"==typeof e.off}(t)){const e=t;t.on(n,i),o=()=>e.off(n,i)}else if(function(e){return e&&\"function\"==typeof e.addListener&&\"function\"==typeof e.removeListener}(t)){const e=t;t.addListener(n,i),o=()=>e.removeListener(n,i)}else{if(!t||!t.length)throw new TypeError(\"Invalid event target\");for(let o=0,a=t.length;o1?Array.prototype.slice.call(arguments):e)}),i,n)})}let kb=1;const Sb=(()=>Promise.resolve())(),Lb={};function xb(e){return e in Lb&&(delete Lb[e],!0)}const Cb={setImmediate(e){const t=kb++;return Lb[t]=!0,Sb.then(()=>xb(t)&&e()),t},clearImmediate(e){xb(e)}};class Tb extends Qm{constructor(e,t){super(e,t),this.scheduler=e,this.work=t}requestAsyncId(e,t,n=0){return null!==n&&n>0?super.requestAsyncId(e,t,n):(e.actions.push(this),e.scheduled||(e.scheduled=Cb.setImmediate(e.flush.bind(e,null))))}recycleAsyncId(e,t,n=0){if(null!==n&&n>0||null===n&&this.delay>0)return super.recycleAsyncId(e,t,n);0===e.actions.length&&(Cb.clearImmediate(t),e.scheduled=void 0)}}class Db extends ep{flush(e){this.active=!0,this.scheduled=void 0;const{actions:t}=this;let n,i=-1,s=t.length;e=e||t.shift();do{if(n=e.execute(e.state,e.delay))break}while(++in.lift(new Ob(e,t))}class Ob{constructor(e,t){this.compare=e,this.keySelector=t}call(e,t){return t.subscribe(new Ib(e,this.compare,this.keySelector))}}class Ib extends p{constructor(e,t,n){super(e),this.keySelector=n,this.hasKey=!1,\"function\"==typeof t&&(this.compare=t)}compare(e,t){return e===t}_next(e){let t;try{const{keySelector:n}=this;t=n?n(e):e}catch(i){return this.destination.error(i)}let n=!1;if(this.hasKey)try{const{compare:e}=this;n=e(this.key,t)}catch(i){return this.destination.error(i)}else this.hasKey=!0;n||(this.key=t,this.destination.next(e))}}class Pb{constructor(e){this.durationSelector=e}call(e,t){return t.subscribe(new Ab(e,this.durationSelector))}}class Ab extends R{constructor(e,t){super(e),this.durationSelector=t,this.hasValue=!1}_next(e){if(this.value=e,this.hasValue=!0,!this.throttled){let n;try{const{durationSelector:t}=this;n=t(e)}catch(t){return this.destination.error(t)}const i=A(this,n);!i||i.closed?this.clearThrottle():this.add(this.throttled=i)}}clearThrottle(){const{value:e,hasValue:t,throttled:n}=this;n&&(this.remove(n),this.throttled=null,n.unsubscribe()),t&&(this.value=null,this.hasValue=!1,this.destination.next(e))}notifyNext(e,t,n,i){this.clearThrottle()}notifyComplete(){this.clearThrottle()}}function Rb(e){return!l(e)&&e-parseFloat(e)+1>=0}function Hb(e=0,t,n){let i=-1;return Rb(t)?i=Number(t)<1?1:Number(t):C(t)&&(n=t),C(n)||(n=tp),new v(t=>{const s=Rb(e)?e:+e-n.now();return n.schedule(jb,s,{index:0,period:i,subscriber:t})})}function jb(e){const{index:t,period:n,subscriber:i}=e;if(i.next(t),!i.closed){if(-1===n)return i.complete();e.index=t+1,this.schedule(e,n)}}function Fb(e,t=tp){return n=()=>Hb(e,t),function(e){return e.lift(new Pb(n))};var n}function Nb(e){return t=>t.lift(new zb(e))}class zb{constructor(e){this.notifier=e}call(e,t){const n=new Vb(e),i=A(n,this.notifier);return i&&!n.seenValue?(n.add(i),t.subscribe(n)):n}}class Vb extends R{constructor(e){super(e),this.seenValue=!1}notifyNext(e,t,n,i,s){this.seenValue=!0,this.complete()}notifyComplete(){}}function Wb(e,t){return\"function\"==typeof t?n=>n.pipe(Wb((n,i)=>z(e(n,i)).pipe(H((e,s)=>t(n,e,i,s))))):t=>t.lift(new Ub(e))}class Ub{constructor(e){this.project=e}call(e,t){return t.subscribe(new $b(e,this.project))}}class $b extends R{constructor(e,t){super(e),this.project=t,this.index=0}_next(e){let t;const n=this.index++;try{t=this.project(e,n)}catch(i){return void this.destination.error(i)}this._innerSub(t,e,n)}_innerSub(e,t,n){const i=this.innerSubscription;i&&i.unsubscribe();const s=new T(this,t,n),r=this.destination;r.add(s),this.innerSubscription=A(this,e,void 0,void 0,s),this.innerSubscription!==s&&r.add(this.innerSubscription)}_complete(){const{innerSubscription:e}=this;e&&!e.closed||super._complete(),this.unsubscribe()}_unsubscribe(){this.innerSubscription=null}notifyComplete(e){this.destination.remove(e),this.innerSubscription=null,this.isStopped&&super._complete()}notifyNext(e,t,n,i,s){this.destination.next(t)}}class Bb extends Qm{constructor(e,t){super(e,t),this.scheduler=e,this.work=t}schedule(e,t=0){return t>0?super.schedule(e,t):(this.delay=t,this.state=e,this.scheduler.flush(this),this)}execute(e,t){return t>0||this.closed?super.execute(e,t):this._execute(e,t)}requestAsyncId(e,t,n=0){return null!==n&&n>0||null===n&&this.delay>0?super.requestAsyncId(e,t,n):e.flush(this)}}class qb extends ep{}const Gb=new qb(Bb);function Jb(e,t){return new v(t?n=>t.schedule(Kb,0,{error:e,subscriber:n}):t=>t.error(e))}function Kb({error:e,subscriber:t}){t.error(e)}let Zb=(()=>{class e{constructor(e,t,n){this.kind=e,this.value=t,this.error=n,this.hasValue=\"N\"===e}observe(e){switch(this.kind){case\"N\":return e.next&&e.next(this.value);case\"E\":return e.error&&e.error(this.error);case\"C\":return e.complete&&e.complete()}}do(e,t,n){switch(this.kind){case\"N\":return e&&e(this.value);case\"E\":return t&&t(this.error);case\"C\":return n&&n()}}accept(e,t,n){return e&&\"function\"==typeof e.next?this.observe(e):this.do(e,t,n)}toObservable(){switch(this.kind){case\"N\":return xu(this.value);case\"E\":return Jb(this.error);case\"C\":return lp()}throw new Error(\"unexpected notification kind value\")}static createNext(t){return void 0!==t?new e(\"N\",t):e.undefinedValueNotification}static createError(t){return new e(\"E\",void 0,t)}static createComplete(){return e.completeNotification}}return e.completeNotification=new e(\"C\"),e.undefinedValueNotification=new e(\"N\",void 0),e})();class Qb extends p{constructor(e,t,n=0){super(e),this.scheduler=t,this.delay=n}static dispatch(e){const{notification:t,destination:n}=e;t.observe(n),this.unsubscribe()}scheduleMessage(e){this.destination.add(this.scheduler.schedule(Qb.dispatch,this.delay,new Xb(e,this.destination)))}_next(e){this.scheduleMessage(Zb.createNext(e))}_error(e){this.scheduleMessage(Zb.createError(e)),this.unsubscribe()}_complete(){this.scheduleMessage(Zb.createComplete()),this.unsubscribe()}}class Xb{constructor(e,t){this.notification=e,this.destination=t}}class ev extends L{constructor(e=Number.POSITIVE_INFINITY,t=Number.POSITIVE_INFINITY,n){super(),this.scheduler=n,this._events=[],this._infiniteTimeWindow=!1,this._bufferSize=e<1?1:e,this._windowTime=t<1?1:t,t===Number.POSITIVE_INFINITY?(this._infiniteTimeWindow=!0,this.next=this.nextInfiniteTimeWindow):this.next=this.nextTimeWindow}nextInfiniteTimeWindow(e){const t=this._events;t.push(e),t.length>this._bufferSize&&t.shift(),super.next(e)}nextTimeWindow(e){this._events.push(new tv(this._getNow(),e)),this._trimBufferThenGetEvents(),super.next(e)}_subscribe(e){const t=this._infiniteTimeWindow,n=t?this._events:this._trimBufferThenGetEvents(),i=this.scheduler,s=n.length;let r;if(this.closed)throw new M;if(this.isStopped||this.hasError?r=u.EMPTY:(this.observers.push(e),r=new k(this,e)),i&&e.add(e=new Qb(e,i)),t)for(let o=0;ot&&(r=Math.max(r,s-t)),r>0&&i.splice(0,r),i}}class tv{constructor(e,t){this.time=e,this.value=t}}function nv(e,t,n){let i;return i=e&&\"object\"==typeof e?e:{bufferSize:e,windowTime:t,refCount:!1,scheduler:n},e=>e.lift(function({bufferSize:e=Number.POSITIVE_INFINITY,windowTime:t=Number.POSITIVE_INFINITY,refCount:n,scheduler:i}){let s,r,o=0,a=!1,l=!1;return function(c){o++,s&&!a||(a=!1,s=new ev(e,t,i),r=c.subscribe({next(e){s.next(e)},error(e){a=!0,s.error(e)},complete(){l=!0,r=void 0,s.complete()}}));const d=s.subscribe(this);this.add(()=>{o--,d.unsubscribe(),r&&!l&&n&&0===o&&(r.unsubscribe(),r=void 0,s=void 0)})}}(i))}class iv{constructor(e=!1,t,n=!0){this._multiple=e,this._emitChanges=n,this._selection=new Set,this._deselectedToEmit=[],this._selectedToEmit=[],this.changed=new L,t&&t.length&&(e?t.forEach(e=>this._markSelected(e)):this._markSelected(t[0]),this._selectedToEmit.length=0)}get selected(){return this._selected||(this._selected=Array.from(this._selection.values())),this._selected}select(...e){this._verifyValueAssignment(e),e.forEach(e=>this._markSelected(e)),this._emitChangeEvent()}deselect(...e){this._verifyValueAssignment(e),e.forEach(e=>this._unmarkSelected(e)),this._emitChangeEvent()}toggle(e){this.isSelected(e)?this.deselect(e):this.select(e)}clear(){this._unmarkAll(),this._emitChangeEvent()}isSelected(e){return this._selection.has(e)}isEmpty(){return 0===this._selection.size}hasValue(){return!this.isEmpty()}sort(e){this._multiple&&this.selected&&this._selected.sort(e)}isMultipleSelection(){return this._multiple}_emitChangeEvent(){this._selected=null,(this._selectedToEmit.length||this._deselectedToEmit.length)&&(this.changed.next({source:this,added:this._selectedToEmit,removed:this._deselectedToEmit}),this._deselectedToEmit=[],this._selectedToEmit=[])}_markSelected(e){this.isSelected(e)||(this._multiple||this._unmarkAll(),this._selection.add(e),this._emitChanges&&this._selectedToEmit.push(e))}_unmarkSelected(e){this.isSelected(e)&&(this._selection.delete(e),this._emitChanges&&this._deselectedToEmit.push(e))}_unmarkAll(){this.isEmpty()||this._selection.forEach(e=>this._unmarkSelected(e))}_verifyValueAssignment(e){if(e.length>1&&!this._multiple)throw Error(\"Cannot pass multiple values into SelectionModel with single-value mode.\")}}let sv=(()=>{class e{constructor(e,t){this._ngZone=e,this._platform=t,this._scrolled=new L,this._globalSubscription=null,this._scrolledCount=0,this.scrollContainers=new Map}register(e){this.scrollContainers.has(e)||this.scrollContainers.set(e,e.elementScrolled().subscribe(()=>this._scrolled.next(e)))}deregister(e){const t=this.scrollContainers.get(e);t&&(t.unsubscribe(),this.scrollContainers.delete(e))}scrolled(e=20){return this._platform.isBrowser?new v(t=>{this._globalSubscription||this._addGlobalListener();const n=e>0?this._scrolled.pipe(Fb(e)).subscribe(t):this._scrolled.subscribe(t);return this._scrolledCount++,()=>{n.unsubscribe(),this._scrolledCount--,this._scrolledCount||this._removeGlobalListener()}}):xu()}ngOnDestroy(){this._removeGlobalListener(),this.scrollContainers.forEach((e,t)=>this.deregister(t)),this._scrolled.complete()}ancestorScrolled(e,t){const n=this.getAncestorScrollContainers(e);return this.scrolled(t).pipe(Tu(e=>!e||n.indexOf(e)>-1))}getAncestorScrollContainers(e){const t=[];return this.scrollContainers.forEach((n,i)=>{this._scrollableContainsElement(i,e)&&t.push(i)}),t}_scrollableContainsElement(e,t){let n=t.nativeElement,i=e.getElementRef().nativeElement;do{if(n==i)return!0}while(n=n.parentElement);return!1}_addGlobalListener(){this._globalSubscription=this._ngZone.runOutsideAngular(()=>Mb(window.document,\"scroll\").subscribe(()=>this._scrolled.next()))}_removeGlobalListener(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ld),Qe(bp))},e.\\u0275prov=pe({factory:function(){return new e(Qe(ld),Qe(bp))},token:e,providedIn:\"root\"}),e})(),rv=(()=>{class e{constructor(e,t,n,i){this.elementRef=e,this.scrollDispatcher=t,this.ngZone=n,this.dir=i,this._destroyed=new L,this._elementScrolled=new v(e=>this.ngZone.runOutsideAngular(()=>Mb(this.elementRef.nativeElement,\"scroll\").pipe(Nb(this._destroyed)).subscribe(e)))}ngOnInit(){this.scrollDispatcher.register(this)}ngOnDestroy(){this.scrollDispatcher.deregister(this),this._destroyed.next(),this._destroyed.complete()}elementScrolled(){return this._elementScrolled}getElementRef(){return this.elementRef}scrollTo(e){const t=this.elementRef.nativeElement,n=this.dir&&\"rtl\"==this.dir.value;e.left=null==e.left?n?e.end:e.start:e.left,e.right=null==e.right?n?e.start:e.end:e.right,null!=e.bottom&&(e.top=t.scrollHeight-t.clientHeight-e.bottom),n&&Cp()!=Lp.NORMAL?(null!=e.left&&(e.right=t.scrollWidth-t.clientWidth-e.left),Cp()==Lp.INVERTED?e.left=e.right:Cp()==Lp.NEGATED&&(e.left=e.right?-e.right:e.right)):null!=e.right&&(e.left=t.scrollWidth-t.clientWidth-e.right),this._applyScrollToOptions(e)}_applyScrollToOptions(e){const t=this.elementRef.nativeElement;\"object\"==typeof document&&\"scrollBehavior\"in document.documentElement.style?t.scrollTo(e):(null!=e.top&&(t.scrollTop=e.top),null!=e.left&&(t.scrollLeft=e.left))}measureScrollOffset(e){const t=this.elementRef.nativeElement;if(\"top\"==e)return t.scrollTop;if(\"bottom\"==e)return t.scrollHeight-t.clientHeight-t.scrollTop;const n=this.dir&&\"rtl\"==this.dir.value;return\"start\"==e?e=n?\"right\":\"left\":\"end\"==e&&(e=n?\"left\":\"right\"),n&&Cp()==Lp.INVERTED?\"left\"==e?t.scrollWidth-t.clientWidth-t.scrollLeft:t.scrollLeft:n&&Cp()==Lp.NEGATED?\"left\"==e?t.scrollLeft+t.scrollWidth-t.clientWidth:-t.scrollLeft:\"left\"==e?t.scrollLeft:t.scrollWidth-t.clientWidth-t.scrollLeft}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(sv),Eo(ld),Eo(Gp,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdk-scrollable\",\"\"],[\"\",\"cdkScrollable\",\"\"]]}),e})(),ov=(()=>{class e{constructor(e,t){this._platform=e,t.runOutsideAngular(()=>{this._change=e.isBrowser?G(Mb(window,\"resize\"),Mb(window,\"orientationchange\")):xu(),this._invalidateCache=this.change().subscribe(()=>this._updateViewportSize())})}ngOnDestroy(){this._invalidateCache.unsubscribe()}getViewportSize(){this._viewportSize||this._updateViewportSize();const e={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),e}getViewportRect(){const e=this.getViewportScrollPosition(),{width:t,height:n}=this.getViewportSize();return{top:e.top,left:e.left,bottom:e.top+n,right:e.left+t,height:n,width:t}}getViewportScrollPosition(){if(!this._platform.isBrowser)return{top:0,left:0};const e=document.documentElement,t=e.getBoundingClientRect();return{top:-t.top||document.body.scrollTop||window.scrollY||e.scrollTop||0,left:-t.left||document.body.scrollLeft||window.scrollX||e.scrollLeft||0}}change(e=20){return e>0?this._change.pipe(Fb(e)):this._change}_updateViewportSize(){this._viewportSize=this._platform.isBrowser?{width:window.innerWidth,height:window.innerHeight}:{width:0,height:0}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(bp),Qe(ld))},e.\\u0275prov=pe({factory:function(){return new e(Qe(bp),Qe(ld))},token:e,providedIn:\"root\"}),e})(),av=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Jp,vp],Jp]}),e})();function lv(){throw Error(\"Host already has a portal attached\")}class cv{attach(e){return null==e&&function(){throw Error(\"Attempting to attach a portal to a null PortalOutlet\")}(),e.hasAttached()&&lv(),this._attachedHost=e,e.attach(this)}detach(){let e=this._attachedHost;null==e?function(){throw Error(\"Attempting to detach a portal that is not attached to a host\")}():(this._attachedHost=null,e.detach())}get isAttached(){return null!=this._attachedHost}setAttachedHost(e){this._attachedHost=e}}class dv extends cv{constructor(e,t,n,i){super(),this.component=e,this.viewContainerRef=t,this.injector=n,this.componentFactoryResolver=i}}class uv extends cv{constructor(e,t,n){super(),this.templateRef=e,this.viewContainerRef=t,this.context=n}get origin(){return this.templateRef.elementRef}attach(e,t=this.context){return this.context=t,super.attach(e)}detach(){return this.context=void 0,super.detach()}}class hv extends cv{constructor(e){super(),this.element=e instanceof Ka?e.nativeElement:e}}class mv{constructor(){this._isDisposed=!1,this.attachDomPortal=null}hasAttached(){return!!this._attachedPortal}attach(e){return e||function(){throw Error(\"Must provide a portal to attach\")}(),this.hasAttached()&&lv(),this._isDisposed&&function(){throw Error(\"This PortalOutlet has already been disposed\")}(),e instanceof dv?(this._attachedPortal=e,this.attachComponentPortal(e)):e instanceof uv?(this._attachedPortal=e,this.attachTemplatePortal(e)):this.attachDomPortal&&e instanceof hv?(this._attachedPortal=e,this.attachDomPortal(e)):void function(){throw Error(\"Attempting to attach an unknown Portal type. BasePortalOutlet accepts either a ComponentPortal or a TemplatePortal.\")}()}detach(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()}dispose(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0}setDisposeFn(e){this._disposeFn=e}_invokeDisposeFn(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}class pv extends mv{constructor(e,t,n,i,s){super(),this.outletElement=e,this._componentFactoryResolver=t,this._appRef=n,this._defaultInjector=i,this.attachDomPortal=e=>{if(!this._document)throw Error(\"Cannot attach DOM portal without _document constructor parameter\");const t=e.element;if(!t.parentNode)throw Error(\"DOM portal content must be attached to a parent node.\");const n=this._document.createComment(\"dom-portal\");t.parentNode.insertBefore(n,t),this.outletElement.appendChild(t),super.setDisposeFn(()=>{n.parentNode&&n.parentNode.replaceChild(t,n)})},this._document=s}attachComponentPortal(e){const t=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component);let n;return e.viewContainerRef?(n=e.viewContainerRef.createComponent(t,e.viewContainerRef.length,e.injector||e.viewContainerRef.injector),this.setDisposeFn(()=>n.destroy())):(n=t.create(e.injector||this._defaultInjector),this._appRef.attachView(n.hostView),this.setDisposeFn(()=>{this._appRef.detachView(n.hostView),n.destroy()})),this.outletElement.appendChild(this._getComponentRootNode(n)),n}attachTemplatePortal(e){let t=e.viewContainerRef,n=t.createEmbeddedView(e.templateRef,e.context);return n.detectChanges(),n.rootNodes.forEach(e=>this.outletElement.appendChild(e)),this.setDisposeFn(()=>{let e=t.indexOf(n);-1!==e&&t.remove(e)}),n}dispose(){super.dispose(),null!=this.outletElement.parentNode&&this.outletElement.parentNode.removeChild(this.outletElement)}_getComponentRootNode(e){return e.hostView.rootNodes[0]}}let fv=(()=>{class e extends mv{constructor(e,t,n){super(),this._componentFactoryResolver=e,this._viewContainerRef=t,this._isInitialized=!1,this.attached=new yc,this.attachDomPortal=e=>{if(!this._document)throw Error(\"Cannot attach DOM portal without _document constructor parameter\");const t=e.element;if(!t.parentNode)throw Error(\"DOM portal content must be attached to a parent node.\");const n=this._document.createComment(\"dom-portal\");e.setAttachedHost(this),t.parentNode.insertBefore(n,t),this._getRootNode().appendChild(t),super.setDisposeFn(()=>{n.parentNode&&n.parentNode.replaceChild(t,n)})},this._document=n}get portal(){return this._attachedPortal}set portal(e){(!this.hasAttached()||e||this._isInitialized)&&(this.hasAttached()&&super.detach(),e&&super.attach(e),this._attachedPortal=e)}get attachedRef(){return this._attachedRef}ngOnInit(){this._isInitialized=!0}ngOnDestroy(){super.dispose(),this._attachedPortal=null,this._attachedRef=null}attachComponentPortal(e){e.setAttachedHost(this);const t=null!=e.viewContainerRef?e.viewContainerRef:this._viewContainerRef,n=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component),i=t.createComponent(n,t.length,e.injector||t.injector);return t!==this._viewContainerRef&&this._getRootNode().appendChild(i.hostView.rootNodes[0]),super.setDisposeFn(()=>i.destroy()),this._attachedPortal=e,this._attachedRef=i,this.attached.emit(i),i}attachTemplatePortal(e){e.setAttachedHost(this);const t=this._viewContainerRef.createEmbeddedView(e.templateRef,e.context);return super.setDisposeFn(()=>this._viewContainerRef.clear()),this._attachedPortal=e,this._attachedRef=t,this.attached.emit(t),t}_getRootNode(){const e=this._viewContainerRef.element.nativeElement;return e.nodeType===e.ELEMENT_NODE?e:e.parentNode}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ja),Eo(Ml),Eo(Nd))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdkPortalOutlet\",\"\"]],inputs:{portal:[\"cdkPortalOutlet\",\"portal\"]},outputs:{attached:\"attached\"},exportAs:[\"cdkPortalOutlet\"],features:[Ya]}),e})(),_v=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();class gv{constructor(e,t){this._viewportRuler=e,this._previousHTMLStyles={top:\"\",left:\"\"},this._isEnabled=!1,this._document=t}attach(){}enable(){if(this._canBeEnabled()){const e=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=e.style.left||\"\",this._previousHTMLStyles.top=e.style.top||\"\",e.style.left=fp(-this._previousScrollPosition.left),e.style.top=fp(-this._previousScrollPosition.top),e.classList.add(\"cdk-global-scrollblock\"),this._isEnabled=!0}}disable(){if(this._isEnabled){const e=this._document.documentElement,t=e.style,n=this._document.body.style,i=t.scrollBehavior||\"\",s=n.scrollBehavior||\"\";this._isEnabled=!1,t.left=this._previousHTMLStyles.left,t.top=this._previousHTMLStyles.top,e.classList.remove(\"cdk-global-scrollblock\"),t.scrollBehavior=n.scrollBehavior=\"auto\",window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),t.scrollBehavior=i,n.scrollBehavior=s}}_canBeEnabled(){if(this._document.documentElement.classList.contains(\"cdk-global-scrollblock\")||this._isEnabled)return!1;const e=this._document.body,t=this._viewportRuler.getViewportSize();return e.scrollHeight>t.height||e.scrollWidth>t.width}}function yv(){return Error(\"Scroll strategy has already been attached.\")}class bv{constructor(e,t,n,i){this._scrollDispatcher=e,this._ngZone=t,this._viewportRuler=n,this._config=i,this._scrollSubscription=null,this._detach=()=>{this.disable(),this._overlayRef.hasAttached()&&this._ngZone.run(()=>this._overlayRef.detach())}}attach(e){if(this._overlayRef)throw yv();this._overlayRef=e}enable(){if(this._scrollSubscription)return;const e=this._scrollDispatcher.scrolled(0);this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=e.subscribe(()=>{const e=this._viewportRuler.getViewportScrollPosition().top;Math.abs(e-this._initialScrollPosition)>this._config.threshold?this._detach():this._overlayRef.updatePosition()})):this._scrollSubscription=e.subscribe(this._detach)}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}class vv{enable(){}disable(){}attach(){}}function wv(e,t){return t.some(t=>e.bottomt.bottom||e.rightt.right)}function Mv(e,t){return t.some(t=>e.topt.bottom||e.leftt.right)}class kv{constructor(e,t,n,i){this._scrollDispatcher=e,this._viewportRuler=t,this._ngZone=n,this._config=i,this._scrollSubscription=null}attach(e){if(this._overlayRef)throw yv();this._overlayRef=e}enable(){this._scrollSubscription||(this._scrollSubscription=this._scrollDispatcher.scrolled(this._config?this._config.scrollThrottle:0).subscribe(()=>{if(this._overlayRef.updatePosition(),this._config&&this._config.autoClose){const e=this._overlayRef.overlayElement.getBoundingClientRect(),{width:t,height:n}=this._viewportRuler.getViewportSize();wv(e,[{width:t,height:n,bottom:n,right:t,top:0,left:0}])&&(this.disable(),this._ngZone.run(()=>this._overlayRef.detach()))}}))}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}let Sv=(()=>{class e{constructor(e,t,n,i){this._scrollDispatcher=e,this._viewportRuler=t,this._ngZone=n,this.noop=()=>new vv,this.close=e=>new bv(this._scrollDispatcher,this._ngZone,this._viewportRuler,e),this.block=()=>new gv(this._viewportRuler,this._document),this.reposition=e=>new kv(this._scrollDispatcher,this._viewportRuler,this._ngZone,e),this._document=i}}return e.\\u0275fac=function(t){return new(t||e)(Qe(sv),Qe(ov),Qe(ld),Qe(Nd))},e.\\u0275prov=pe({factory:function(){return new e(Qe(sv),Qe(ov),Qe(ld),Qe(Nd))},token:e,providedIn:\"root\"}),e})();class Lv{constructor(e){if(this.scrollStrategy=new vv,this.panelClass=\"\",this.hasBackdrop=!1,this.backdropClass=\"cdk-overlay-dark-backdrop\",this.disposeOnNavigation=!1,e){const t=Object.keys(e);for(const n of t)void 0!==e[n]&&(this[n]=e[n])}}}class xv{constructor(e,t,n,i,s){this.offsetX=n,this.offsetY=i,this.panelClass=s,this.originX=e.originX,this.originY=e.originY,this.overlayX=t.overlayX,this.overlayY=t.overlayY}}class Cv{constructor(e,t){this.connectionPair=e,this.scrollableViewProperties=t}}function Tv(e,t){if(\"top\"!==t&&\"bottom\"!==t&&\"center\"!==t)throw Error(`ConnectedPosition: Invalid ${e} \"${t}\". `+'Expected \"top\", \"bottom\" or \"center\".')}function Dv(e,t){if(\"start\"!==t&&\"end\"!==t&&\"center\"!==t)throw Error(`ConnectedPosition: Invalid ${e} \"${t}\". `+'Expected \"start\", \"end\" or \"center\".')}let Yv=(()=>{class e{constructor(e){this._attachedOverlays=[],this._keydownListener=e=>{const t=this._attachedOverlays;for(let n=t.length-1;n>-1;n--)if(t[n]._keydownEventSubscriptions>0){t[n]._keydownEvents.next(e);break}},this._document=e}ngOnDestroy(){this._detach()}add(e){this.remove(e),this._isAttached||(this._document.body.addEventListener(\"keydown\",this._keydownListener),this._isAttached=!0),this._attachedOverlays.push(e)}remove(e){const t=this._attachedOverlays.indexOf(e);t>-1&&this._attachedOverlays.splice(t,1),0===this._attachedOverlays.length&&this._detach()}_detach(){this._isAttached&&(this._document.body.removeEventListener(\"keydown\",this._keydownListener),this._isAttached=!1)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({factory:function(){return new e(Qe(Nd))},token:e,providedIn:\"root\"}),e})();const Ev=!(\"undefined\"==typeof window||!window||!window.__karma__&&!window.jasmine);let Ov=(()=>{class e{constructor(e,t){this._platform=t,this._document=e}ngOnDestroy(){const e=this._containerElement;e&&e.parentNode&&e.parentNode.removeChild(e)}getContainerElement(){return this._containerElement||this._createContainer(),this._containerElement}_createContainer(){const e=this._platform?this._platform.isBrowser:\"undefined\"!=typeof window;if(e||Ev){const e=this._document.querySelectorAll('.cdk-overlay-container[platform=\"server\"], .cdk-overlay-container[platform=\"test\"]');for(let t=0;tthis._backdropClick.next(e),this._keydownEventsObservable=new v(e=>{const t=this._keydownEvents.subscribe(e);return this._keydownEventSubscriptions++,()=>{t.unsubscribe(),this._keydownEventSubscriptions--}}),this._keydownEvents=new L,this._keydownEventSubscriptions=0,i.scrollStrategy&&(this._scrollStrategy=i.scrollStrategy,this._scrollStrategy.attach(this)),this._positionStrategy=i.positionStrategy}get overlayElement(){return this._pane}get backdropElement(){return this._backdropElement}get hostElement(){return this._host}attach(e){let t=this._portalOutlet.attach(e);return this._positionStrategy&&this._positionStrategy.attach(this),!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._scrollStrategy&&this._scrollStrategy.enable(),this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(()=>{this.hasAttached()&&this.updatePosition()}),this._togglePointerEvents(!0),this._config.hasBackdrop&&this._attachBackdrop(),this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!0),this._attachments.next(),this._keyboardDispatcher.add(this),this._config.disposeOnNavigation&&this._location&&(this._locationChanges=this._location.subscribe(()=>this.dispose())),t}detach(){if(!this.hasAttached())return;this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._scrollStrategy&&this._scrollStrategy.disable();const e=this._portalOutlet.detach();return this._detachments.next(),this._keyboardDispatcher.remove(this),this._detachContentWhenStable(),this._locationChanges.unsubscribe(),e}dispose(){const e=this.hasAttached();this._positionStrategy&&this._positionStrategy.dispose(),this._disposeScrollStrategy(),this.detachBackdrop(),this._locationChanges.unsubscribe(),this._keyboardDispatcher.remove(this),this._portalOutlet.dispose(),this._attachments.complete(),this._backdropClick.complete(),this._keydownEvents.complete(),this._host&&this._host.parentNode&&(this._host.parentNode.removeChild(this._host),this._host=null),this._previousHostParent=this._pane=null,e&&this._detachments.next(),this._detachments.complete()}hasAttached(){return this._portalOutlet.hasAttached()}backdropClick(){return this._backdropClick.asObservable()}attachments(){return this._attachments.asObservable()}detachments(){return this._detachments.asObservable()}keydownEvents(){return this._keydownEventsObservable}getConfig(){return this._config}updatePosition(){this._positionStrategy&&this._positionStrategy.apply()}updatePositionStrategy(e){e!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=e,this.hasAttached()&&(e.attach(this),this.updatePosition()))}updateSize(e){this._config=Object.assign(Object.assign({},this._config),e),this._updateElementSize()}setDirection(e){this._config=Object.assign(Object.assign({},this._config),{direction:e}),this._updateElementDirection()}addPanelClass(e){this._pane&&this._toggleClasses(this._pane,e,!0)}removePanelClass(e){this._pane&&this._toggleClasses(this._pane,e,!1)}getDirection(){const e=this._config.direction;return e?\"string\"==typeof e?e:e.value:\"ltr\"}updateScrollStrategy(e){e!==this._scrollStrategy&&(this._disposeScrollStrategy(),this._scrollStrategy=e,this.hasAttached()&&(e.attach(this),e.enable()))}_updateElementDirection(){this._host.setAttribute(\"dir\",this.getDirection())}_updateElementSize(){if(!this._pane)return;const e=this._pane.style;e.width=fp(this._config.width),e.height=fp(this._config.height),e.minWidth=fp(this._config.minWidth),e.minHeight=fp(this._config.minHeight),e.maxWidth=fp(this._config.maxWidth),e.maxHeight=fp(this._config.maxHeight)}_togglePointerEvents(e){this._pane.style.pointerEvents=e?\"auto\":\"none\"}_attachBackdrop(){this._backdropElement=this._document.createElement(\"div\"),this._backdropElement.classList.add(\"cdk-overlay-backdrop\"),this._config.backdropClass&&this._toggleClasses(this._backdropElement,this._config.backdropClass,!0),this._host.parentElement.insertBefore(this._backdropElement,this._host),this._backdropElement.addEventListener(\"click\",this._backdropClickHandler),\"undefined\"!=typeof requestAnimationFrame?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{this._backdropElement&&this._backdropElement.classList.add(\"cdk-overlay-backdrop-showing\")})}):this._backdropElement.classList.add(\"cdk-overlay-backdrop-showing\")}_updateStackingOrder(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)}detachBackdrop(){let e,t=this._backdropElement;if(!t)return;let n=()=>{t&&(t.removeEventListener(\"click\",this._backdropClickHandler),t.removeEventListener(\"transitionend\",n),t.parentNode&&t.parentNode.removeChild(t)),this._backdropElement==t&&(this._backdropElement=null),this._config.backdropClass&&this._toggleClasses(t,this._config.backdropClass,!1),clearTimeout(e)};t.classList.remove(\"cdk-overlay-backdrop-showing\"),this._ngZone.runOutsideAngular(()=>{t.addEventListener(\"transitionend\",n)}),t.style.pointerEvents=\"none\",e=this._ngZone.runOutsideAngular(()=>setTimeout(n,500))}_toggleClasses(e,t,n){const i=e.classList;pp(t).forEach(e=>{e&&(n?i.add(e):i.remove(e))})}_detachContentWhenStable(){this._ngZone.runOutsideAngular(()=>{const e=this._ngZone.onStable.asObservable().pipe(Nb(G(this._attachments,this._detachments))).subscribe(()=>{this._pane&&this._host&&0!==this._pane.children.length||(this._pane&&this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!1),this._host&&this._host.parentElement&&(this._previousHostParent=this._host.parentElement,this._previousHostParent.removeChild(this._host)),e.unsubscribe())})})}_disposeScrollStrategy(){const e=this._scrollStrategy;e&&(e.disable(),e.detach&&e.detach())}}class Pv{constructor(e,t,n,i,s){this._viewportRuler=t,this._document=n,this._platform=i,this._overlayContainer=s,this._lastBoundingBoxSize={width:0,height:0},this._isPushed=!1,this._canPush=!0,this._growAfterOpen=!1,this._hasFlexibleDimensions=!0,this._positionLocked=!1,this._viewportMargin=0,this._scrollables=[],this._preferredPositions=[],this._positionChanges=new L,this._resizeSubscription=u.EMPTY,this._offsetX=0,this._offsetY=0,this._appliedPanelClasses=[],this.positionChanges=this._positionChanges.asObservable(),this.setOrigin(e)}get positions(){return this._preferredPositions}attach(e){if(this._overlayRef&&e!==this._overlayRef)throw Error(\"This position strategy is already attached to an overlay\");this._validatePositions(),e.hostElement.classList.add(\"cdk-overlay-connected-position-bounding-box\"),this._overlayRef=e,this._boundingBox=e.hostElement,this._pane=e.overlayElement,this._isDisposed=!1,this._isInitialRender=!0,this._lastPosition=null,this._resizeSubscription.unsubscribe(),this._resizeSubscription=this._viewportRuler.change().subscribe(()=>{this._isInitialRender=!0,this.apply()})}apply(){if(this._isDisposed||!this._platform.isBrowser)return;if(!this._isInitialRender&&this._positionLocked&&this._lastPosition)return void this.reapplyLastPosition();this._clearPanelClasses(),this._resetOverlayElementStyles(),this._resetBoundingBoxStyles(),this._viewportRect=this._getNarrowedViewportRect(),this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect();const e=this._originRect,t=this._overlayRect,n=this._viewportRect,i=[];let s;for(let r of this._preferredPositions){let o=this._getOriginPoint(e,r),a=this._getOverlayPoint(o,t,r),l=this._getOverlayFit(a,t,n,r);if(l.isCompletelyWithinViewport)return this._isPushed=!1,void this._applyPosition(r,o);this._canFitWithFlexibleDimensions(l,a,n)?i.push({position:r,origin:o,overlayRect:t,boundingBoxRect:this._calculateBoundingBoxRect(o,r)}):(!s||s.overlayFit.visibleAreat&&(t=i,e=n)}return this._isPushed=!1,void this._applyPosition(e.position,e.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(s.position,s.originPoint);this._applyPosition(s.position,s.originPoint)}detach(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}dispose(){this._isDisposed||(this._boundingBox&&Av(this._boundingBox.style,{top:\"\",left:\"\",right:\"\",bottom:\"\",height:\"\",width:\"\",alignItems:\"\",justifyContent:\"\"}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(\"cdk-overlay-connected-position-bounding-box\"),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}reapplyLastPosition(){if(!this._isDisposed&&(!this._platform||this._platform.isBrowser)){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect();const e=this._lastPosition||this._preferredPositions[0],t=this._getOriginPoint(this._originRect,e);this._applyPosition(e,t)}}withScrollableContainers(e){return this._scrollables=e,this}withPositions(e){return this._preferredPositions=e,-1===e.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}withViewportMargin(e){return this._viewportMargin=e,this}withFlexibleDimensions(e=!0){return this._hasFlexibleDimensions=e,this}withGrowAfterOpen(e=!0){return this._growAfterOpen=e,this}withPush(e=!0){return this._canPush=e,this}withLockedPosition(e=!0){return this._positionLocked=e,this}setOrigin(e){return this._origin=e,this}withDefaultOffsetX(e){return this._offsetX=e,this}withDefaultOffsetY(e){return this._offsetY=e,this}withTransformOriginOn(e){return this._transformOriginSelector=e,this}_getOriginPoint(e,t){let n,i;if(\"center\"==t.originX)n=e.left+e.width/2;else{const i=this._isRtl()?e.right:e.left,s=this._isRtl()?e.left:e.right;n=\"start\"==t.originX?i:s}return i=\"center\"==t.originY?e.top+e.height/2:\"top\"==t.originY?e.top:e.bottom,{x:n,y:i}}_getOverlayPoint(e,t,n){let i,s;return i=\"center\"==n.overlayX?-t.width/2:\"start\"===n.overlayX?this._isRtl()?-t.width:0:this._isRtl()?0:-t.width,s=\"center\"==n.overlayY?-t.height/2:\"top\"==n.overlayY?0:-t.height,{x:e.x+i,y:e.y+s}}_getOverlayFit(e,t,n,i){let{x:s,y:r}=e,o=this._getOffset(i,\"x\"),a=this._getOffset(i,\"y\");o&&(s+=o),a&&(r+=a);let l=0-r,c=r+t.height-n.height,d=this._subtractOverflows(t.width,0-s,s+t.width-n.width),u=this._subtractOverflows(t.height,l,c),h=d*u;return{visibleArea:h,isCompletelyWithinViewport:t.width*t.height===h,fitsInViewportVertically:u===t.height,fitsInViewportHorizontally:d==t.width}}_canFitWithFlexibleDimensions(e,t,n){if(this._hasFlexibleDimensions){const i=n.bottom-t.y,s=n.right-t.x,r=this._overlayRef.getConfig().minHeight,o=this._overlayRef.getConfig().minWidth,a=e.fitsInViewportHorizontally||null!=o&&o<=s;return(e.fitsInViewportVertically||null!=r&&r<=i)&&a}return!1}_pushOverlayOnScreen(e,t,n){if(this._previousPushAmount&&this._positionLocked)return{x:e.x+this._previousPushAmount.x,y:e.y+this._previousPushAmount.y};const i=this._viewportRect,s=Math.max(e.x+t.width-i.right,0),r=Math.max(e.y+t.height-i.bottom,0),o=Math.max(i.top-n.top-e.y,0),a=Math.max(i.left-n.left-e.x,0);let l=0,c=0;return l=t.width<=i.width?a||-s:e.xi&&!this._isInitialRender&&!this._growAfterOpen&&(r=e.y-i/2)}if(\"end\"===t.overlayX&&!i||\"start\"===t.overlayX&&i)c=n.width-e.x+this._viewportMargin,a=e.x-this._viewportMargin;else if(\"start\"===t.overlayX&&!i||\"end\"===t.overlayX&&i)l=e.x,a=n.right-e.x;else{const t=Math.min(n.right-e.x+n.left,e.x),i=this._lastBoundingBoxSize.width;a=2*t,l=e.x-t,a>i&&!this._isInitialRender&&!this._growAfterOpen&&(l=e.x-i/2)}return{top:r,left:l,bottom:o,right:c,width:a,height:s}}_setBoundingBoxStyles(e,t){const n=this._calculateBoundingBoxRect(e,t);this._isInitialRender||this._growAfterOpen||(n.height=Math.min(n.height,this._lastBoundingBoxSize.height),n.width=Math.min(n.width,this._lastBoundingBoxSize.width));const i={};if(this._hasExactPosition())i.top=i.left=\"0\",i.bottom=i.right=i.maxHeight=i.maxWidth=\"\",i.width=i.height=\"100%\";else{const e=this._overlayRef.getConfig().maxHeight,s=this._overlayRef.getConfig().maxWidth;i.height=fp(n.height),i.top=fp(n.top),i.bottom=fp(n.bottom),i.width=fp(n.width),i.left=fp(n.left),i.right=fp(n.right),i.alignItems=\"center\"===t.overlayX?\"center\":\"end\"===t.overlayX?\"flex-end\":\"flex-start\",i.justifyContent=\"center\"===t.overlayY?\"center\":\"bottom\"===t.overlayY?\"flex-end\":\"flex-start\",e&&(i.maxHeight=fp(e)),s&&(i.maxWidth=fp(s))}this._lastBoundingBoxSize=n,Av(this._boundingBox.style,i)}_resetBoundingBoxStyles(){Av(this._boundingBox.style,{top:\"0\",left:\"0\",right:\"0\",bottom:\"0\",height:\"\",width:\"\",alignItems:\"\",justifyContent:\"\"})}_resetOverlayElementStyles(){Av(this._pane.style,{top:\"\",left:\"\",bottom:\"\",right:\"\",position:\"\",transform:\"\"})}_setOverlayElementStyles(e,t){const n={},i=this._hasExactPosition(),s=this._hasFlexibleDimensions,r=this._overlayRef.getConfig();if(i){const i=this._viewportRuler.getViewportScrollPosition();Av(n,this._getExactOverlayY(t,e,i)),Av(n,this._getExactOverlayX(t,e,i))}else n.position=\"static\";let o=\"\",a=this._getOffset(t,\"x\"),l=this._getOffset(t,\"y\");a&&(o+=`translateX(${a}px) `),l&&(o+=`translateY(${l}px)`),n.transform=o.trim(),r.maxHeight&&(i?n.maxHeight=fp(r.maxHeight):s&&(n.maxHeight=\"\")),r.maxWidth&&(i?n.maxWidth=fp(r.maxWidth):s&&(n.maxWidth=\"\")),Av(this._pane.style,n)}_getExactOverlayY(e,t,n){let i={top:\"\",bottom:\"\"},s=this._getOverlayPoint(t,this._overlayRect,e);this._isPushed&&(s=this._pushOverlayOnScreen(s,this._overlayRect,n));let r=this._overlayContainer.getContainerElement().getBoundingClientRect().top;return s.y-=r,\"bottom\"===e.overlayY?i.bottom=`${this._document.documentElement.clientHeight-(s.y+this._overlayRect.height)}px`:i.top=fp(s.y),i}_getExactOverlayX(e,t,n){let i,s={left:\"\",right:\"\"},r=this._getOverlayPoint(t,this._overlayRect,e);return this._isPushed&&(r=this._pushOverlayOnScreen(r,this._overlayRect,n)),i=this._isRtl()?\"end\"===e.overlayX?\"left\":\"right\":\"end\"===e.overlayX?\"right\":\"left\",\"right\"===i?s.right=`${this._document.documentElement.clientWidth-(r.x+this._overlayRect.width)}px`:s.left=fp(r.x),s}_getScrollVisibility(){const e=this._getOriginRect(),t=this._pane.getBoundingClientRect(),n=this._scrollables.map(e=>e.getElementRef().nativeElement.getBoundingClientRect());return{isOriginClipped:Mv(e,n),isOriginOutsideView:wv(e,n),isOverlayClipped:Mv(t,n),isOverlayOutsideView:wv(t,n)}}_subtractOverflows(e,...t){return t.reduce((e,t)=>e-Math.max(t,0),e)}_getNarrowedViewportRect(){const e=this._document.documentElement.clientWidth,t=this._document.documentElement.clientHeight,n=this._viewportRuler.getViewportScrollPosition();return{top:n.top+this._viewportMargin,left:n.left+this._viewportMargin,right:n.left+e-this._viewportMargin,bottom:n.top+t-this._viewportMargin,width:e-2*this._viewportMargin,height:t-2*this._viewportMargin}}_isRtl(){return\"rtl\"===this._overlayRef.getDirection()}_hasExactPosition(){return!this._hasFlexibleDimensions||this._isPushed}_getOffset(e,t){return\"x\"===t?null==e.offsetX?this._offsetX:e.offsetX:null==e.offsetY?this._offsetY:e.offsetY}_validatePositions(){if(!this._preferredPositions.length)throw Error(\"FlexibleConnectedPositionStrategy: At least one position is required.\");this._preferredPositions.forEach(e=>{Dv(\"originX\",e.originX),Tv(\"originY\",e.originY),Dv(\"overlayX\",e.overlayX),Tv(\"overlayY\",e.overlayY)})}_addPanelClasses(e){this._pane&&pp(e).forEach(e=>{\"\"!==e&&-1===this._appliedPanelClasses.indexOf(e)&&(this._appliedPanelClasses.push(e),this._pane.classList.add(e))})}_clearPanelClasses(){this._pane&&(this._appliedPanelClasses.forEach(e=>{this._pane.classList.remove(e)}),this._appliedPanelClasses=[])}_getOriginRect(){const e=this._origin;if(e instanceof Ka)return e.nativeElement.getBoundingClientRect();if(e instanceof HTMLElement)return e.getBoundingClientRect();const t=e.width||0,n=e.height||0;return{top:e.y,bottom:e.y+n,left:e.x,right:e.x+t,height:n,width:t}}}function Av(e,t){for(let n in t)t.hasOwnProperty(n)&&(e[n]=t[n]);return e}class Rv{constructor(e,t,n,i,s,r,o){this._preferredPositions=[],this._positionStrategy=new Pv(n,i,s,r,o).withFlexibleDimensions(!1).withPush(!1).withViewportMargin(0),this.withFallbackPosition(e,t)}get _isRtl(){return\"rtl\"===this._overlayRef.getDirection()}get onPositionChange(){return this._positionStrategy.positionChanges}get positions(){return this._preferredPositions}attach(e){this._overlayRef=e,this._positionStrategy.attach(e),this._direction&&(e.setDirection(this._direction),this._direction=null)}dispose(){this._positionStrategy.dispose()}detach(){this._positionStrategy.detach()}apply(){this._positionStrategy.apply()}recalculateLastPosition(){this._positionStrategy.reapplyLastPosition()}withScrollableContainers(e){this._positionStrategy.withScrollableContainers(e)}withFallbackPosition(e,t,n,i){const s=new xv(e,t,n,i);return this._preferredPositions.push(s),this._positionStrategy.withPositions(this._preferredPositions),this}withDirection(e){return this._overlayRef?this._overlayRef.setDirection(e):this._direction=e,this}withOffsetX(e){return this._positionStrategy.withDefaultOffsetX(e),this}withOffsetY(e){return this._positionStrategy.withDefaultOffsetY(e),this}withLockedPosition(e){return this._positionStrategy.withLockedPosition(e),this}withPositions(e){return this._preferredPositions=e.slice(),this._positionStrategy.withPositions(this._preferredPositions),this}setOrigin(e){return this._positionStrategy.setOrigin(e),this}}class Hv{constructor(){this._cssPosition=\"static\",this._topOffset=\"\",this._bottomOffset=\"\",this._leftOffset=\"\",this._rightOffset=\"\",this._alignItems=\"\",this._justifyContent=\"\",this._width=\"\",this._height=\"\"}attach(e){const t=e.getConfig();this._overlayRef=e,this._width&&!t.width&&e.updateSize({width:this._width}),this._height&&!t.height&&e.updateSize({height:this._height}),e.hostElement.classList.add(\"cdk-global-overlay-wrapper\"),this._isDisposed=!1}top(e=\"\"){return this._bottomOffset=\"\",this._topOffset=e,this._alignItems=\"flex-start\",this}left(e=\"\"){return this._rightOffset=\"\",this._leftOffset=e,this._justifyContent=\"flex-start\",this}bottom(e=\"\"){return this._topOffset=\"\",this._bottomOffset=e,this._alignItems=\"flex-end\",this}right(e=\"\"){return this._leftOffset=\"\",this._rightOffset=e,this._justifyContent=\"flex-end\",this}width(e=\"\"){return this._overlayRef?this._overlayRef.updateSize({width:e}):this._width=e,this}height(e=\"\"){return this._overlayRef?this._overlayRef.updateSize({height:e}):this._height=e,this}centerHorizontally(e=\"\"){return this.left(e),this._justifyContent=\"center\",this}centerVertically(e=\"\"){return this.top(e),this._alignItems=\"center\",this}apply(){if(!this._overlayRef||!this._overlayRef.hasAttached())return;const e=this._overlayRef.overlayElement.style,t=this._overlayRef.hostElement.style,n=this._overlayRef.getConfig(),{width:i,height:s,maxWidth:r,maxHeight:o}=n,a=!(\"100%\"!==i&&\"100vw\"!==i||r&&\"100%\"!==r&&\"100vw\"!==r),l=!(\"100%\"!==s&&\"100vh\"!==s||o&&\"100%\"!==o&&\"100vh\"!==o);e.position=this._cssPosition,e.marginLeft=a?\"0\":this._leftOffset,e.marginTop=l?\"0\":this._topOffset,e.marginBottom=this._bottomOffset,e.marginRight=this._rightOffset,a?t.justifyContent=\"flex-start\":\"center\"===this._justifyContent?t.justifyContent=\"center\":\"rtl\"===this._overlayRef.getConfig().direction?\"flex-start\"===this._justifyContent?t.justifyContent=\"flex-end\":\"flex-end\"===this._justifyContent&&(t.justifyContent=\"flex-start\"):t.justifyContent=this._justifyContent,t.alignItems=l?\"flex-start\":this._alignItems}dispose(){if(this._isDisposed||!this._overlayRef)return;const e=this._overlayRef.overlayElement.style,t=this._overlayRef.hostElement,n=t.style;t.classList.remove(\"cdk-global-overlay-wrapper\"),n.justifyContent=n.alignItems=e.marginTop=e.marginBottom=e.marginLeft=e.marginRight=e.position=\"\",this._overlayRef=null,this._isDisposed=!0}}let jv=(()=>{class e{constructor(e,t,n,i){this._viewportRuler=e,this._document=t,this._platform=n,this._overlayContainer=i}global(){return new Hv}connectedTo(e,t,n){return new Rv(t,n,e,this._viewportRuler,this._document,this._platform,this._overlayContainer)}flexibleConnectedTo(e){return new Pv(e,this._viewportRuler,this._document,this._platform,this._overlayContainer)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ov),Qe(Nd),Qe(bp),Qe(Ov))},e.\\u0275prov=pe({factory:function(){return new e(Qe(ov),Qe(Nd),Qe(bp),Qe(Ov))},token:e,providedIn:\"root\"}),e})(),Fv=0,Nv=(()=>{class e{constructor(e,t,n,i,s,r,o,a,l,c){this.scrollStrategies=e,this._overlayContainer=t,this._componentFactoryResolver=n,this._positionBuilder=i,this._keyboardDispatcher=s,this._injector=r,this._ngZone=o,this._document=a,this._directionality=l,this._location=c}create(e){const t=this._createHostElement(),n=this._createPaneElement(t),i=this._createPortalOutlet(n),s=new Lv(e);return s.direction=s.direction||this._directionality.value,new Iv(i,t,n,s,this._ngZone,this._keyboardDispatcher,this._document,this._location)}position(){return this._positionBuilder}_createPaneElement(e){const t=this._document.createElement(\"div\");return t.id=`cdk-overlay-${Fv++}`,t.classList.add(\"cdk-overlay-pane\"),e.appendChild(t),t}_createHostElement(){const e=this._document.createElement(\"div\");return this._overlayContainer.getContainerElement().appendChild(e),e}_createPortalOutlet(e){return this._appRef||(this._appRef=this._injector.get(Td)),new pv(e,this._componentFactoryResolver,this._appRef,this._injector,this._document)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Sv),Qe(Ov),Qe(Ja),Qe(jv),Qe(Yv),Qe(fo),Qe(ld),Qe(Nd),Qe(Gp),Qe(tu,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const zv=[{originX:\"start\",originY:\"bottom\",overlayX:\"start\",overlayY:\"top\"},{originX:\"start\",originY:\"top\",overlayX:\"start\",overlayY:\"bottom\"},{originX:\"end\",originY:\"top\",overlayX:\"end\",overlayY:\"bottom\"},{originX:\"end\",originY:\"bottom\",overlayX:\"end\",overlayY:\"top\"}],Vv=new Ve(\"cdk-connected-overlay-scroll-strategy\");let Wv=(()=>{class e{constructor(e){this.elementRef=e}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdk-overlay-origin\",\"\"],[\"\",\"overlay-origin\",\"\"],[\"\",\"cdkOverlayOrigin\",\"\"]],exportAs:[\"cdkOverlayOrigin\"]}),e})(),Uv=(()=>{class e{constructor(e,t,n,i,s){this._overlay=e,this._dir=s,this._hasBackdrop=!1,this._lockPosition=!1,this._growAfterOpen=!1,this._flexibleDimensions=!1,this._push=!1,this._backdropSubscription=u.EMPTY,this.viewportMargin=0,this.open=!1,this.backdropClick=new yc,this.positionChange=new yc,this.attach=new yc,this.detach=new yc,this.overlayKeydown=new yc,this._templatePortal=new uv(t,n),this._scrollStrategyFactory=i,this.scrollStrategy=this._scrollStrategyFactory()}get offsetX(){return this._offsetX}set offsetX(e){this._offsetX=e,this._position&&this._updatePositionStrategy(this._position)}get offsetY(){return this._offsetY}set offsetY(e){this._offsetY=e,this._position&&this._updatePositionStrategy(this._position)}get hasBackdrop(){return this._hasBackdrop}set hasBackdrop(e){this._hasBackdrop=hp(e)}get lockPosition(){return this._lockPosition}set lockPosition(e){this._lockPosition=hp(e)}get flexibleDimensions(){return this._flexibleDimensions}set flexibleDimensions(e){this._flexibleDimensions=hp(e)}get growAfterOpen(){return this._growAfterOpen}set growAfterOpen(e){this._growAfterOpen=hp(e)}get push(){return this._push}set push(e){this._push=hp(e)}get overlayRef(){return this._overlayRef}get dir(){return this._dir?this._dir.value:\"ltr\"}ngOnDestroy(){this._overlayRef&&this._overlayRef.dispose(),this._backdropSubscription.unsubscribe()}ngOnChanges(e){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),e.origin&&this.open&&this._position.apply()),e.open&&(this.open?this._attachOverlay():this._detachOverlay())}_createOverlay(){this.positions&&this.positions.length||(this.positions=zv),this._overlayRef=this._overlay.create(this._buildConfig()),this._overlayRef.keydownEvents().subscribe(e=>{this.overlayKeydown.next(e),27!==e.keyCode||qm(e)||(e.preventDefault(),this._detachOverlay())})}_buildConfig(){const e=this._position=this.positionStrategy||this._createPositionStrategy(),t=new Lv({direction:this._dir,positionStrategy:e,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop});return(this.width||0===this.width)&&(t.width=this.width),(this.height||0===this.height)&&(t.height=this.height),(this.minWidth||0===this.minWidth)&&(t.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(t.minHeight=this.minHeight),this.backdropClass&&(t.backdropClass=this.backdropClass),this.panelClass&&(t.panelClass=this.panelClass),t}_updatePositionStrategy(e){const t=this.positions.map(e=>({originX:e.originX,originY:e.originY,overlayX:e.overlayX,overlayY:e.overlayY,offsetX:e.offsetX||this.offsetX,offsetY:e.offsetY||this.offsetY,panelClass:e.panelClass||void 0}));return e.setOrigin(this.origin.elementRef).withPositions(t).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}_createPositionStrategy(){const e=this._overlay.position().flexibleConnectedTo(this.origin.elementRef);return this._updatePositionStrategy(e),e.positionChanges.subscribe(e=>this.positionChange.emit(e)),e}_attachOverlay(){this._overlayRef?this._overlayRef.getConfig().hasBackdrop=this.hasBackdrop:this._createOverlay(),this._overlayRef.hasAttached()||(this._overlayRef.attach(this._templatePortal),this.attach.emit()),this.hasBackdrop?this._backdropSubscription=this._overlayRef.backdropClick().subscribe(e=>{this.backdropClick.emit(e)}):this._backdropSubscription.unsubscribe()}_detachOverlay(){this._overlayRef&&(this._overlayRef.detach(),this.detach.emit()),this._backdropSubscription.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Nv),Eo(vl),Eo(Ml),Eo(Vv),Eo(Gp,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdk-connected-overlay\",\"\"],[\"\",\"connected-overlay\",\"\"],[\"\",\"cdkConnectedOverlay\",\"\"]],inputs:{viewportMargin:[\"cdkConnectedOverlayViewportMargin\",\"viewportMargin\"],open:[\"cdkConnectedOverlayOpen\",\"open\"],scrollStrategy:[\"cdkConnectedOverlayScrollStrategy\",\"scrollStrategy\"],offsetX:[\"cdkConnectedOverlayOffsetX\",\"offsetX\"],offsetY:[\"cdkConnectedOverlayOffsetY\",\"offsetY\"],hasBackdrop:[\"cdkConnectedOverlayHasBackdrop\",\"hasBackdrop\"],lockPosition:[\"cdkConnectedOverlayLockPosition\",\"lockPosition\"],flexibleDimensions:[\"cdkConnectedOverlayFlexibleDimensions\",\"flexibleDimensions\"],growAfterOpen:[\"cdkConnectedOverlayGrowAfterOpen\",\"growAfterOpen\"],push:[\"cdkConnectedOverlayPush\",\"push\"],positions:[\"cdkConnectedOverlayPositions\",\"positions\"],origin:[\"cdkConnectedOverlayOrigin\",\"origin\"],positionStrategy:[\"cdkConnectedOverlayPositionStrategy\",\"positionStrategy\"],width:[\"cdkConnectedOverlayWidth\",\"width\"],height:[\"cdkConnectedOverlayHeight\",\"height\"],minWidth:[\"cdkConnectedOverlayMinWidth\",\"minWidth\"],minHeight:[\"cdkConnectedOverlayMinHeight\",\"minHeight\"],backdropClass:[\"cdkConnectedOverlayBackdropClass\",\"backdropClass\"],panelClass:[\"cdkConnectedOverlayPanelClass\",\"panelClass\"],transformOriginSelector:[\"cdkConnectedOverlayTransformOriginOn\",\"transformOriginSelector\"]},outputs:{backdropClick:\"backdropClick\",positionChange:\"positionChange\",attach:\"attach\",detach:\"detach\",overlayKeydown:\"overlayKeydown\"},exportAs:[\"cdkConnectedOverlay\"],features:[Ra]}),e})();const $v={provide:Vv,deps:[Nv],useFactory:function(e){return()=>e.scrollStrategies.reposition()}};let Bv=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[Nv,$v],imports:[[Jp,_v,av],av]}),e})();function qv(e){return new v(t=>{let n;try{n=e()}catch(i){return void t.error(i)}return(n?z(n):lp()).subscribe(t)})}function Gv(e,t){}class Jv{constructor(){this.role=\"dialog\",this.panelClass=\"\",this.hasBackdrop=!0,this.backdropClass=\"\",this.disableClose=!1,this.width=\"\",this.height=\"\",this.maxWidth=\"80vw\",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.autoFocus=!0,this.restoreFocus=!0,this.closeOnNavigation=!0}}const Kv={dialogContainer:jf(\"dialogContainer\",[Wf(\"void, exit\",Vf({opacity:0,transform:\"scale(0.7)\"})),Wf(\"enter\",Vf({transform:\"none\"})),Uf(\"* => enter\",Ff(\"150ms cubic-bezier(0, 0, 0.2, 1)\",Vf({transform:\"none\",opacity:1}))),Uf(\"* => void, * => exit\",Ff(\"75ms cubic-bezier(0.4, 0.0, 0.2, 1)\",Vf({opacity:0})))])};function Zv(){throw Error(\"Attempting to attach dialog content after content is already attached\")}let Qv=(()=>{class e extends mv{constructor(e,t,n,i,s){super(),this._elementRef=e,this._focusTrapFactory=t,this._changeDetectorRef=n,this._config=s,this._elementFocusedBeforeDialogWasOpened=null,this._state=\"enter\",this._animationStateChanged=new yc,this.attachDomPortal=e=>(this._portalOutlet.hasAttached()&&Zv(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachDomPortal(e)),this._ariaLabelledBy=s.ariaLabelledBy||null,this._document=i}attachComponentPortal(e){return this._portalOutlet.hasAttached()&&Zv(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachComponentPortal(e)}attachTemplatePortal(e){return this._portalOutlet.hasAttached()&&Zv(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachTemplatePortal(e)}_trapFocus(){const e=this._elementRef.nativeElement;if(this._focusTrap||(this._focusTrap=this._focusTrapFactory.create(e)),this._config.autoFocus)this._focusTrap.focusInitialElementWhenReady();else{const t=this._document.activeElement;t===e||e.contains(t)||e.focus()}}_restoreFocus(){const e=this._elementFocusedBeforeDialogWasOpened;if(this._config.restoreFocus&&e&&\"function\"==typeof e.focus){const t=this._document.activeElement,n=this._elementRef.nativeElement;t&&t!==this._document.body&&t!==n&&!n.contains(t)||e.focus()}this._focusTrap&&this._focusTrap.destroy()}_savePreviouslyFocusedElement(){this._document&&(this._elementFocusedBeforeDialogWasOpened=this._document.activeElement,this._elementRef.nativeElement.focus&&Promise.resolve().then(()=>this._elementRef.nativeElement.focus()))}_onAnimationDone(e){\"enter\"===e.toState?this._trapFocus():\"exit\"===e.toState&&this._restoreFocus(),this._animationStateChanged.emit(e)}_onAnimationStart(e){this._animationStateChanged.emit(e)}_startExitAnimation(){this._state=\"exit\",this._changeDetectorRef.markForCheck()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Fp),Eo(Qr),Eo(Nd,8),Eo(Jv))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-dialog-container\"]],viewQuery:function(e,t){var n;1&e&&Yc(fv,!0),2&e&&Dc(n=Rc())&&(t._portalOutlet=n.first)},hostAttrs:[\"tabindex\",\"-1\",\"aria-modal\",\"true\",1,\"mat-dialog-container\"],hostVars:6,hostBindings:function(e,t){1&e&&$o(\"@dialogContainer.start\",(function(e){return t._onAnimationStart(e)}))(\"@dialogContainer.done\",(function(e){return t._onAnimationDone(e)})),2&e&&(Co(\"id\",t._id)(\"role\",t._config.role)(\"aria-labelledby\",t._config.ariaLabel?null:t._ariaLabelledBy)(\"aria-label\",t._config.ariaLabel)(\"aria-describedby\",t._config.ariaDescribedBy||null),Ta(\"@dialogContainer\",t._state))},features:[Ya],decls:1,vars:0,consts:[[\"cdkPortalOutlet\",\"\"]],template:function(e,t){1&e&&Do(0,Gv,0,0,\"ng-template\",0)},directives:[fv],styles:[\".mat-dialog-container{display:block;padding:24px;border-radius:4px;box-sizing:border-box;overflow:auto;outline:0;width:100%;height:100%;min-height:inherit;max-height:inherit}.cdk-high-contrast-active .mat-dialog-container{outline:solid 1px}.mat-dialog-content{display:block;margin:0 -24px;padding:0 24px;max-height:65vh;overflow:auto;-webkit-overflow-scrolling:touch}.mat-dialog-title{margin:0 0 20px;display:block}.mat-dialog-actions{padding:8px 0;display:flex;flex-wrap:wrap;min-height:52px;align-items:center;margin-bottom:-24px}.mat-dialog-actions[align=end]{justify-content:flex-end}.mat-dialog-actions[align=center]{justify-content:center}.mat-dialog-actions .mat-button-base+.mat-button-base,.mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}\\n\"],encapsulation:2,data:{animation:[Kv.dialogContainer]}}),e})(),Xv=0;class ew{constructor(e,t,n=`mat-dialog-${Xv++}`){this._overlayRef=e,this._containerInstance=t,this.id=n,this.disableClose=this._containerInstance._config.disableClose,this._afterOpened=new L,this._afterClosed=new L,this._beforeClosed=new L,this._state=0,t._id=n,t._animationStateChanged.pipe(Tu(e=>\"done\"===e.phaseName&&\"enter\"===e.toState),cp(1)).subscribe(()=>{this._afterOpened.next(),this._afterOpened.complete()}),t._animationStateChanged.pipe(Tu(e=>\"done\"===e.phaseName&&\"exit\"===e.toState),cp(1)).subscribe(()=>{clearTimeout(this._closeFallbackTimeout),this._overlayRef.dispose()}),e.detachments().subscribe(()=>{this._beforeClosed.next(this._result),this._beforeClosed.complete(),this._afterClosed.next(this._result),this._afterClosed.complete(),this.componentInstance=null,this._overlayRef.dispose()}),e.keydownEvents().pipe(Tu(e=>27===e.keyCode&&!this.disableClose&&!qm(e))).subscribe(e=>{e.preventDefault(),this.close()})}close(e){this._result=e,this._containerInstance._animationStateChanged.pipe(Tu(e=>\"start\"===e.phaseName),cp(1)).subscribe(t=>{this._beforeClosed.next(e),this._beforeClosed.complete(),this._state=2,this._overlayRef.detachBackdrop(),this._closeFallbackTimeout=setTimeout(()=>{this._overlayRef.dispose()},t.totalTime+100)}),this._containerInstance._startExitAnimation(),this._state=1}afterOpened(){return this._afterOpened.asObservable()}afterClosed(){return this._afterClosed.asObservable()}beforeClosed(){return this._beforeClosed.asObservable()}backdropClick(){return this._overlayRef.backdropClick()}keydownEvents(){return this._overlayRef.keydownEvents()}updatePosition(e){let t=this._getPositionStrategy();return e&&(e.left||e.right)?e.left?t.left(e.left):t.right(e.right):t.centerHorizontally(),e&&(e.top||e.bottom)?e.top?t.top(e.top):t.bottom(e.bottom):t.centerVertically(),this._overlayRef.updatePosition(),this}updateSize(e=\"\",t=\"\"){return this._getPositionStrategy().width(e).height(t),this._overlayRef.updatePosition(),this}addPanelClass(e){return this._overlayRef.addPanelClass(e),this}removePanelClass(e){return this._overlayRef.removePanelClass(e),this}getState(){return this._state}_getPositionStrategy(){return this._overlayRef.getConfig().positionStrategy}}const tw=new Ve(\"MatDialogData\"),nw=new Ve(\"mat-dialog-default-options\"),iw=new Ve(\"mat-dialog-scroll-strategy\"),sw={provide:iw,deps:[Nv],useFactory:function(e){return()=>e.scrollStrategies.block()}};let rw=(()=>{class e{constructor(e,t,n,i,s,r,o){this._overlay=e,this._injector=t,this._defaultOptions=i,this._parentDialog=r,this._overlayContainer=o,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new L,this._afterOpenedAtThisLevel=new L,this._ariaHiddenElements=new Map,this.afterAllClosed=qv(()=>this.openDialogs.length?this._afterAllClosed:this._afterAllClosed.pipe(Rf(void 0))),this._scrollStrategy=s}get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}get _afterAllClosed(){const e=this._parentDialog;return e?e._afterAllClosed:this._afterAllClosedAtThisLevel}open(e,t){if((t=function(e,t){return Object.assign(Object.assign({},t),e)}(t,this._defaultOptions||new Jv)).id&&this.getDialogById(t.id))throw Error(`Dialog with id \"${t.id}\" exists already. The dialog id must be unique.`);const n=this._createOverlay(t),i=this._attachDialogContainer(n,t),s=this._attachDialogContent(e,i,n,t);return this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(s),s.afterClosed().subscribe(()=>this._removeOpenDialog(s)),this.afterOpened.next(s),s}closeAll(){this._closeDialogs(this.openDialogs)}getDialogById(e){return this.openDialogs.find(t=>t.id===e)}ngOnDestroy(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}_createOverlay(e){const t=this._getOverlayConfig(e);return this._overlay.create(t)}_getOverlayConfig(e){const t=new Lv({positionStrategy:this._overlay.position().global(),scrollStrategy:e.scrollStrategy||this._scrollStrategy(),panelClass:e.panelClass,hasBackdrop:e.hasBackdrop,direction:e.direction,minWidth:e.minWidth,minHeight:e.minHeight,maxWidth:e.maxWidth,maxHeight:e.maxHeight,disposeOnNavigation:e.closeOnNavigation});return e.backdropClass&&(t.backdropClass=e.backdropClass),t}_attachDialogContainer(e,t){const n=fo.create({parent:t&&t.viewContainerRef&&t.viewContainerRef.injector||this._injector,providers:[{provide:Jv,useValue:t}]}),i=new dv(Qv,t.viewContainerRef,n,t.componentFactoryResolver);return e.attach(i).instance}_attachDialogContent(e,t,n,i){const s=new ew(n,t,i.id);if(i.hasBackdrop&&n.backdropClick().subscribe(()=>{s.disableClose||s.close()}),e instanceof vl)t.attachTemplatePortal(new uv(e,null,{$implicit:i.data,dialogRef:s}));else{const n=this._createInjector(i,s,t),r=t.attachComponentPortal(new dv(e,i.viewContainerRef,n));s.componentInstance=r.instance}return s.updateSize(i.width,i.height).updatePosition(i.position),s}_createInjector(e,t,n){const i=e&&e.viewContainerRef&&e.viewContainerRef.injector,s=[{provide:Qv,useValue:n},{provide:tw,useValue:e.data},{provide:ew,useValue:t}];return!e.direction||i&&i.get(Gp,null)||s.push({provide:Gp,useValue:{value:e.direction,change:xu()}}),fo.create({parent:i||this._injector,providers:s})}_removeOpenDialog(e){const t=this.openDialogs.indexOf(e);t>-1&&(this.openDialogs.splice(t,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((e,t)=>{e?t.setAttribute(\"aria-hidden\",e):t.removeAttribute(\"aria-hidden\")}),this._ariaHiddenElements.clear(),this._afterAllClosed.next()))}_hideNonDialogContentFromAssistiveTechnology(){const e=this._overlayContainer.getContainerElement();if(e.parentElement){const t=e.parentElement.children;for(let n=t.length-1;n>-1;n--){let i=t[n];i===e||\"SCRIPT\"===i.nodeName||\"STYLE\"===i.nodeName||i.hasAttribute(\"aria-live\")||(this._ariaHiddenElements.set(i,i.getAttribute(\"aria-hidden\")),i.setAttribute(\"aria-hidden\",\"true\"))}}}_closeDialogs(e){let t=e.length;for(;t--;)e[t].close()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nv),Qe(fo),Qe(tu,8),Qe(nw,8),Qe(iw),Qe(e,12),Qe(Ov))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),ow=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[rw,sw],imports:[[Bv,_v,py],py]}),e})();function aw(e){return function(t){const n=new lw(e),i=t.lift(n);return n.caught=i}}class lw{constructor(e){this.selector=e}call(e,t){return t.subscribe(new cw(e,this.selector,this.caught))}}class cw extends R{constructor(e,t,n){super(e),this.selector=t,this.caught=n}error(e){if(!this.isStopped){let n;try{n=this.selector(e,this.caught)}catch(t){return void super.error(t)}this._unsubscribeAndRecycle();const i=new T(this,void 0,void 0);this.add(i);const s=A(this,n,void 0,void 0,i);s!==i&&this.add(s)}}}function dw(e){return t=>t.lift(new uw(e))}class uw{constructor(e){this.callback=e}call(e,t){return t.subscribe(new hw(e,this.callback))}}class hw extends p{constructor(e,t){super(e),this.add(new u(t))}}const mw=[\"*\"];function pw(e){return Error(`Unable to find icon with the name \"${e}\"`)}function fw(e){return Error(\"The URL provided to MatIconRegistry was not trusted as a resource URL \"+`via Angular's DomSanitizer. Attempted URL was \"${e}\".`)}function _w(e){return Error(\"The literal provided to MatIconRegistry was not trusted as safe HTML by \"+`Angular's DomSanitizer. Attempted literal was \"${e}\".`)}class gw{constructor(e,t){this.options=t,e.nodeName?this.svgElement=e:this.url=e}}let yw=(()=>{class e{constructor(e,t,n,i){this._httpClient=e,this._sanitizer=t,this._errorHandler=i,this._svgIconConfigs=new Map,this._iconSetConfigs=new Map,this._cachedIconsByUrl=new Map,this._inProgressUrlFetches=new Map,this._fontCssClassesByAlias=new Map,this._defaultFontSetClass=\"material-icons\",this._document=n}addSvgIcon(e,t,n){return this.addSvgIconInNamespace(\"\",e,t,n)}addSvgIconLiteral(e,t,n){return this.addSvgIconLiteralInNamespace(\"\",e,t,n)}addSvgIconInNamespace(e,t,n,i){return this._addSvgIconConfig(e,t,new gw(n,i))}addSvgIconLiteralInNamespace(e,t,n,i){const s=this._sanitizer.sanitize(Gi.HTML,n);if(!s)throw _w(n);const r=this._createSvgElementForSingleIcon(s,i);return this._addSvgIconConfig(e,t,new gw(r,i))}addSvgIconSet(e,t){return this.addSvgIconSetInNamespace(\"\",e,t)}addSvgIconSetLiteral(e,t){return this.addSvgIconSetLiteralInNamespace(\"\",e,t)}addSvgIconSetInNamespace(e,t,n){return this._addSvgIconSetConfig(e,new gw(t,n))}addSvgIconSetLiteralInNamespace(e,t,n){const i=this._sanitizer.sanitize(Gi.HTML,t);if(!i)throw _w(t);const s=this._svgElementFromString(i);return this._addSvgIconSetConfig(e,new gw(s,n))}registerFontClassAlias(e,t=e){return this._fontCssClassesByAlias.set(e,t),this}classNameForFontAlias(e){return this._fontCssClassesByAlias.get(e)||e}setDefaultFontSetClass(e){return this._defaultFontSetClass=e,this}getDefaultFontSetClass(){return this._defaultFontSetClass}getSvgIconFromUrl(e){const t=this._sanitizer.sanitize(Gi.RESOURCE_URL,e);if(!t)throw fw(e);const n=this._cachedIconsByUrl.get(t);return n?xu(bw(n)):this._loadSvgIconFromConfig(new gw(e)).pipe(Gm(e=>this._cachedIconsByUrl.set(t,e)),H(e=>bw(e)))}getNamedSvgIcon(e,t=\"\"){const n=vw(t,e),i=this._svgIconConfigs.get(n);if(i)return this._getSvgFromConfig(i);const s=this._iconSetConfigs.get(t);return s?this._getSvgFromIconSetConfigs(e,s):Jb(pw(n))}ngOnDestroy(){this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}_getSvgFromConfig(e){return e.svgElement?xu(bw(e.svgElement)):this._loadSvgIconFromConfig(e).pipe(Gm(t=>e.svgElement=t),H(e=>bw(e)))}_getSvgFromIconSetConfigs(e,t){const n=this._extractIconWithNameFromAnySet(e,t);return n?xu(n):ch(t.filter(e=>!e.svgElement).map(e=>this._loadSvgIconSetFromConfig(e).pipe(aw(t=>{const n=`Loading icon set URL: ${this._sanitizer.sanitize(Gi.RESOURCE_URL,e.url)} failed: ${t.message}`;return this._errorHandler?this._errorHandler.handleError(new Error(n)):console.error(n),xu(null)})))).pipe(H(()=>{const n=this._extractIconWithNameFromAnySet(e,t);if(!n)throw pw(e);return n}))}_extractIconWithNameFromAnySet(e,t){for(let n=t.length-1;n>=0;n--){const i=t[n];if(i.svgElement){const t=this._extractSvgIconFromSet(i.svgElement,e,i.options);if(t)return t}}return null}_loadSvgIconFromConfig(e){return this._fetchUrl(e.url).pipe(H(t=>this._createSvgElementForSingleIcon(t,e.options)))}_loadSvgIconSetFromConfig(e){return e.svgElement?xu(e.svgElement):this._fetchUrl(e.url).pipe(H(t=>(e.svgElement||(e.svgElement=this._svgElementFromString(t)),e.svgElement)))}_createSvgElementForSingleIcon(e,t){const n=this._svgElementFromString(e);return this._setSvgAttributes(n,t),n}_extractSvgIconFromSet(e,t,n){const i=e.querySelector(`[id=\"${t}\"]`);if(!i)return null;const s=i.cloneNode(!0);if(s.removeAttribute(\"id\"),\"svg\"===s.nodeName.toLowerCase())return this._setSvgAttributes(s,n);if(\"symbol\"===s.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(s),n);const r=this._svgElementFromString(\"\");return r.appendChild(s),this._setSvgAttributes(r,n)}_svgElementFromString(e){const t=this._document.createElement(\"DIV\");t.innerHTML=e;const n=t.querySelector(\"svg\");if(!n)throw Error(\" tag not found\");return n}_toSvgElement(e){const t=this._svgElementFromString(\"\"),n=e.attributes;for(let i=0;ithis._inProgressUrlFetches.delete(t)),se());return this._inProgressUrlFetches.set(t,i),i}_addSvgIconConfig(e,t,n){return this._svgIconConfigs.set(vw(e,t),n),this}_addSvgIconSetConfig(e,t){const n=this._iconSetConfigs.get(e);return n?n.push(t):this._iconSetConfigs.set(e,[t]),this}}return e.\\u0275fac=function(t){return new(t||e)(Qe(qu,8),Qe(Df),Qe(Nd,8),Qe(hi,8))},e.\\u0275prov=pe({factory:function(){return new e(Qe(qu,8),Qe(Df),Qe(Nd,8),Qe(hi,8))},token:e,providedIn:\"root\"}),e})();function bw(e){return e.cloneNode(!0)}function vw(e,t){return e+\":\"+t}class ww{constructor(e){this._elementRef=e}}const Mw=_y(ww),kw=new Ve(\"mat-icon-location\",{providedIn:\"root\",factory:function(){const e=Xe(Nd),t=e?e.location:null;return{getPathname:()=>t?t.pathname+t.search:\"\"}}}),Sw=[\"clip-path\",\"color-profile\",\"src\",\"cursor\",\"fill\",\"filter\",\"marker\",\"marker-start\",\"marker-mid\",\"marker-end\",\"mask\",\"stroke\"],Lw=Sw.map(e=>`[${e}]`).join(\", \"),xw=/^url\\(['\"]?#(.*?)['\"]?\\)$/;let Cw=(()=>{class e extends Mw{constructor(e,t,n,i,s){super(e),this._iconRegistry=t,this._location=i,this._errorHandler=s,this._inline=!1,n||e.nativeElement.setAttribute(\"aria-hidden\",\"true\")}get inline(){return this._inline}set inline(e){this._inline=hp(e)}get fontSet(){return this._fontSet}set fontSet(e){this._fontSet=this._cleanupFontValue(e)}get fontIcon(){return this._fontIcon}set fontIcon(e){this._fontIcon=this._cleanupFontValue(e)}_splitIconName(e){if(!e)return[\"\",\"\"];const t=e.split(\":\");switch(t.length){case 1:return[\"\",t[0]];case 2:return t;default:throw Error(`Invalid icon name: \"${e}\"`)}}ngOnChanges(e){const t=e.svgIcon;if(t)if(this.svgIcon){const[e,t]=this._splitIconName(this.svgIcon);this._iconRegistry.getNamedSvgIcon(t,e).pipe(cp(1)).subscribe(e=>this._setSvgElement(e),n=>{const i=`Error retrieving icon ${e}:${t}! ${n.message}`;this._errorHandler?this._errorHandler.handleError(new Error(i)):console.error(i)})}else t.previousValue&&this._clearSvgElement();this._usingFontIcon()&&this._updateFontIconClasses()}ngOnInit(){this._usingFontIcon()&&this._updateFontIconClasses()}ngAfterViewChecked(){const e=this._elementsWithExternalReferences;if(e&&this._location&&e.size){const e=this._location.getPathname();e!==this._previousPath&&(this._previousPath=e,this._prependPathToReferences(e))}}ngOnDestroy(){this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear()}_usingFontIcon(){return!this.svgIcon}_setSvgElement(e){this._clearSvgElement();const t=e.querySelectorAll(\"style\");for(let n=0;n{t.forEach(t=>{n.setAttribute(t.name,`url('${e}#${t.value}')`)})})}_cacheChildrenWithExternalReferences(e){const t=e.querySelectorAll(Lw),n=this._elementsWithExternalReferences=this._elementsWithExternalReferences||new Map;for(let i=0;i{const s=t[i],r=s.getAttribute(e),o=r?r.match(xw):null;if(o){let t=n.get(s);t||(t=[],n.set(s,t)),t.push({name:e,value:o[1]})}})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(yw),Oo(\"aria-hidden\"),Eo(kw,8),Eo(hi,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-icon\"]],hostAttrs:[\"role\",\"img\",1,\"mat-icon\",\"notranslate\"],hostVars:4,hostBindings:function(e,t){2&e&&ua(\"mat-icon-inline\",t.inline)(\"mat-icon-no-color\",\"primary\"!==t.color&&\"accent\"!==t.color&&\"warn\"!==t.color)},inputs:{color:\"color\",inline:\"inline\",fontSet:\"fontSet\",fontIcon:\"fontIcon\",svgIcon:\"svgIcon\"},exportAs:[\"matIcon\"],features:[Ya,Ra],ngContentSelectors:mw,decls:1,vars:0,template:function(e,t){1&e&&(Zo(),ea(0))},styles:[\".mat-icon{background-repeat:no-repeat;display:inline-block;fill:currentColor;height:24px;width:24px}.mat-icon.mat-icon-inline{font-size:inherit;height:inherit;line-height:inherit;width:inherit}[dir=rtl] .mat-icon-rtl-mirror{transform:scale(-1, 1)}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon{display:block}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button .mat-icon{margin:auto}\\n\"],encapsulation:2,changeDetection:0}),e})(),Tw=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[py],py]}),e})();const Dw=Sp({passive:!0});let Yw=(()=>{class e{constructor(e,t){this._platform=e,this._ngZone=t,this._monitoredElements=new Map}monitor(e){if(!this._platform.isBrowser)return ap;const t=_p(e),n=this._monitoredElements.get(t);if(n)return n.subject.asObservable();const i=new L,s=\"cdk-text-field-autofilled\",r=e=>{\"cdk-text-field-autofill-start\"!==e.animationName||t.classList.contains(s)?\"cdk-text-field-autofill-end\"===e.animationName&&t.classList.contains(s)&&(t.classList.remove(s),this._ngZone.run(()=>i.next({target:e.target,isAutofilled:!1}))):(t.classList.add(s),this._ngZone.run(()=>i.next({target:e.target,isAutofilled:!0})))};return this._ngZone.runOutsideAngular(()=>{t.addEventListener(\"animationstart\",r,Dw),t.classList.add(\"cdk-text-field-autofill-monitored\")}),this._monitoredElements.set(t,{subject:i,unlisten:()=>{t.removeEventListener(\"animationstart\",r,Dw)}}),i.asObservable()}stopMonitoring(e){const t=_p(e),n=this._monitoredElements.get(t);n&&(n.unlisten(),n.subject.complete(),t.classList.remove(\"cdk-text-field-autofill-monitored\"),t.classList.remove(\"cdk-text-field-autofilled\"),this._monitoredElements.delete(t))}ngOnDestroy(){this._monitoredElements.forEach((e,t)=>this.stopMonitoring(t))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(bp),Qe(ld))},e.\\u0275prov=pe({factory:function(){return new e(Qe(bp),Qe(ld))},token:e,providedIn:\"root\"}),e})(),Ew=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[vp]]}),e})();const Ow=[\"underline\"],Iw=[\"connectionContainer\"],Pw=[\"inputContainer\"],Aw=[\"label\"];function Rw(e,t){1&e&&(Fo(0),Ro(1,\"div\",14),jo(2,\"div\",15),jo(3,\"div\",16),jo(4,\"div\",17),Ho(),Ro(5,\"div\",18),jo(6,\"div\",15),jo(7,\"div\",16),jo(8,\"div\",17),Ho(),No())}function Hw(e,t){1&e&&(Ro(0,\"div\",19),ea(1,1),Ho())}function jw(e,t){if(1&e&&(Fo(0),ea(1,2),Ro(2,\"span\"),Sa(3),Ho(),No()),2&e){const e=Jo(2);ys(3),La(e._control.placeholder)}}function Fw(e,t){1&e&&ea(0,3,[\"*ngSwitchCase\",\"true\"])}function Nw(e,t){1&e&&(Ro(0,\"span\",23),Sa(1,\" *\"),Ho())}function zw(e,t){if(1&e){const e=zo();Ro(0,\"label\",20,21),Uo(\"cdkObserveContent\",(function(){return en(e),Jo().updateOutlineGap()})),Do(2,jw,4,1,\"ng-container\",12),Do(3,Fw,1,0,void 0,12),Do(4,Nw,2,0,\"span\",22),Ho()}if(2&e){const e=Jo();ua(\"mat-empty\",e._control.empty&&!e._shouldAlwaysFloat)(\"mat-form-field-empty\",e._control.empty&&!e._shouldAlwaysFloat)(\"mat-accent\",\"accent\"==e.color)(\"mat-warn\",\"warn\"==e.color),Po(\"cdkObserveContentDisabled\",\"outline\"!=e.appearance)(\"id\",e._labelId)(\"ngSwitch\",e._hasLabel()),Co(\"for\",e._control.id)(\"aria-owns\",e._control.id),ys(2),Po(\"ngSwitchCase\",!1),ys(1),Po(\"ngSwitchCase\",!0),ys(1),Po(\"ngIf\",!e.hideRequiredMarker&&e._control.required&&!e._control.disabled)}}function Vw(e,t){1&e&&(Ro(0,\"div\",24),ea(1,4),Ho())}function Ww(e,t){if(1&e&&(Ro(0,\"div\",25,26),jo(2,\"span\",27),Ho()),2&e){const e=Jo();ys(2),ua(\"mat-accent\",\"accent\"==e.color)(\"mat-warn\",\"warn\"==e.color)}}function Uw(e,t){1&e&&(Ro(0,\"div\"),ea(1,5),Ho()),2&e&&Po(\"@transitionMessages\",Jo()._subscriptAnimationState)}function $w(e,t){if(1&e&&(Ro(0,\"div\",31),Sa(1),Ho()),2&e){const e=Jo(2);Po(\"id\",e._hintLabelId),ys(1),La(e.hintLabel)}}function Bw(e,t){if(1&e&&(Ro(0,\"div\",28),Do(1,$w,2,2,\"div\",29),ea(2,6),jo(3,\"div\",30),ea(4,7),Ho()),2&e){const e=Jo();Po(\"@transitionMessages\",e._subscriptAnimationState),ys(1),Po(\"ngIf\",e.hintLabel)}}const qw=[\"*\",[[\"\",\"matPrefix\",\"\"]],[[\"mat-placeholder\"]],[[\"mat-label\"]],[[\"\",\"matSuffix\",\"\"]],[[\"mat-error\"]],[[\"mat-hint\",3,\"align\",\"end\"]],[[\"mat-hint\",\"align\",\"end\"]]],Gw=[\"*\",\"[matPrefix]\",\"mat-placeholder\",\"mat-label\",\"[matSuffix]\",\"mat-error\",\"mat-hint:not([align='end'])\",\"mat-hint[align='end']\"];let Jw=0,Kw=(()=>{class e{constructor(){this.id=`mat-error-${Jw++}`}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-error\"]],hostAttrs:[\"role\",\"alert\",1,\"mat-error\"],hostVars:1,hostBindings:function(e,t){2&e&&Co(\"id\",t.id)},inputs:{id:\"id\"}}),e})();const Zw={transitionMessages:jf(\"transitionMessages\",[Wf(\"enter\",Vf({opacity:1,transform:\"translateY(0%)\"})),Uf(\"void => enter\",[Vf({opacity:0,transform:\"translateY(-100%)\"}),Ff(\"300ms cubic-bezier(0.55, 0, 0.55, 0.2)\")])])};let Qw=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e}),e})();function Xw(e){return Error(`A hint was already declared for 'align=\"${e}\"'.`)}let eM=0,tM=(()=>{class e{constructor(){this.align=\"start\",this.id=`mat-hint-${eM++}`}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-hint\"]],hostAttrs:[1,\"mat-hint\"],hostVars:4,hostBindings:function(e,t){2&e&&(Co(\"id\",t.id)(\"align\",null),ua(\"mat-right\",\"end\"==t.align))},inputs:{align:\"align\",id:\"id\"}}),e})(),nM=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-label\"]]}),e})(),iM=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-placeholder\"]]}),e})(),sM=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"matPrefix\",\"\"]]}),e})(),rM=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"matSuffix\",\"\"]]}),e})(),oM=0;class aM{constructor(e){this._elementRef=e}}const lM=_y(aM,\"primary\"),cM=new Ve(\"MAT_FORM_FIELD_DEFAULT_OPTIONS\");let dM=(()=>{class e extends lM{constructor(e,t,n,i,s,r,o,a){super(e),this._elementRef=e,this._changeDetectorRef=t,this._dir=i,this._defaults=s,this._platform=r,this._ngZone=o,this._outlineGapCalculationNeededImmediately=!1,this._outlineGapCalculationNeededOnStable=!1,this._destroyed=new L,this._showAlwaysAnimate=!1,this._subscriptAnimationState=\"\",this._hintLabel=\"\",this._hintLabelId=`mat-hint-${oM++}`,this._labelId=`mat-form-field-label-${oM++}`,this._labelOptions=n||{},this.floatLabel=this._getDefaultFloatLabelState(),this._animationsEnabled=\"NoopAnimations\"!==a,this.appearance=s&&s.appearance?s.appearance:\"legacy\",this._hideRequiredMarker=!(!s||null==s.hideRequiredMarker)&&s.hideRequiredMarker}get appearance(){return this._appearance}set appearance(e){const t=this._appearance;this._appearance=e||this._defaults&&this._defaults.appearance||\"legacy\",\"outline\"===this._appearance&&t!==e&&(this._outlineGapCalculationNeededOnStable=!0)}get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(e){this._hideRequiredMarker=hp(e)}get _shouldAlwaysFloat(){return\"always\"===this.floatLabel&&!this._showAlwaysAnimate}get _canLabelFloat(){return\"never\"!==this.floatLabel}get hintLabel(){return this._hintLabel}set hintLabel(e){this._hintLabel=e,this._processHints()}get floatLabel(){return\"legacy\"!==this.appearance&&\"never\"===this._floatLabel?\"auto\":this._floatLabel}set floatLabel(e){e!==this._floatLabel&&(this._floatLabel=e||this._getDefaultFloatLabelState(),this._changeDetectorRef.markForCheck())}get _control(){return this._explicitFormFieldControl||this._controlNonStatic||this._controlStatic}set _control(e){this._explicitFormFieldControl=e}get _labelChild(){return this._labelChildNonStatic||this._labelChildStatic}getConnectedOverlayOrigin(){return this._connectionContainerRef||this._elementRef}ngAfterContentInit(){this._validateControlChild();const e=this._control;e.controlType&&this._elementRef.nativeElement.classList.add(`mat-form-field-type-${e.controlType}`),e.stateChanges.pipe(Rf(null)).subscribe(()=>{this._validatePlaceholders(),this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),e.ngControl&&e.ngControl.valueChanges&&e.ngControl.valueChanges.pipe(Nb(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck()),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.asObservable().pipe(Nb(this._destroyed)).subscribe(()=>{this._outlineGapCalculationNeededOnStable&&this.updateOutlineGap()})}),G(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(()=>{this._outlineGapCalculationNeededOnStable=!0,this._changeDetectorRef.markForCheck()}),this._hintChildren.changes.pipe(Rf(null)).subscribe(()=>{this._processHints(),this._changeDetectorRef.markForCheck()}),this._errorChildren.changes.pipe(Rf(null)).subscribe(()=>{this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),this._dir&&this._dir.change.pipe(Nb(this._destroyed)).subscribe(()=>{\"function\"==typeof requestAnimationFrame?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>this.updateOutlineGap())}):this.updateOutlineGap()})}ngAfterContentChecked(){this._validateControlChild(),this._outlineGapCalculationNeededImmediately&&this.updateOutlineGap()}ngAfterViewInit(){this._subscriptAnimationState=\"enter\",this._changeDetectorRef.detectChanges()}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_shouldForward(e){const t=this._control?this._control.ngControl:null;return t&&t[e]}_hasPlaceholder(){return!!(this._control&&this._control.placeholder||this._placeholderChild)}_hasLabel(){return!!this._labelChild}_shouldLabelFloat(){return this._canLabelFloat&&(this._control.shouldLabelFloat||this._shouldAlwaysFloat)}_hideControlPlaceholder(){return\"legacy\"===this.appearance&&!this._hasLabel()||this._hasLabel()&&!this._shouldLabelFloat()}_hasFloatingLabel(){return this._hasLabel()||\"legacy\"===this.appearance&&this._hasPlaceholder()}_getDisplayedMessages(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?\"error\":\"hint\"}_animateAndLockLabel(){this._hasFloatingLabel()&&this._canLabelFloat&&(this._animationsEnabled&&this._label&&(this._showAlwaysAnimate=!0,Mb(this._label.nativeElement,\"transitionend\").pipe(cp(1)).subscribe(()=>{this._showAlwaysAnimate=!1})),this.floatLabel=\"always\",this._changeDetectorRef.markForCheck())}_validatePlaceholders(){if(this._control.placeholder&&this._placeholderChild)throw Error(\"Placeholder attribute and child element were both specified.\")}_processHints(){this._validateHints(),this._syncDescribedByIds()}_validateHints(){if(this._hintChildren){let e,t;this._hintChildren.forEach(n=>{if(\"start\"===n.align){if(e||this.hintLabel)throw Xw(\"start\");e=n}else if(\"end\"===n.align){if(t)throw Xw(\"end\");t=n}})}}_getDefaultFloatLabelState(){return this._defaults&&this._defaults.floatLabel||this._labelOptions.float||\"auto\"}_syncDescribedByIds(){if(this._control){let e=[];if(\"hint\"===this._getDisplayedMessages()){const t=this._hintChildren?this._hintChildren.find(e=>\"start\"===e.align):null,n=this._hintChildren?this._hintChildren.find(e=>\"end\"===e.align):null;t?e.push(t.id):this._hintLabel&&e.push(this._hintLabelId),n&&e.push(n.id)}else this._errorChildren&&(e=this._errorChildren.map(e=>e.id));this._control.setDescribedByIds(e)}}_validateControlChild(){if(!this._control)throw Error(\"mat-form-field must contain a MatFormFieldControl.\")}updateOutlineGap(){const e=this._label?this._label.nativeElement:null;if(\"outline\"!==this.appearance||!e||!e.children.length||!e.textContent.trim())return;if(!this._platform.isBrowser)return;if(!this._isAttachedToDOM())return void(this._outlineGapCalculationNeededImmediately=!0);let t=0,n=0;const i=this._connectionContainerRef.nativeElement,s=i.querySelectorAll(\".mat-form-field-outline-start\"),r=i.querySelectorAll(\".mat-form-field-outline-gap\");if(this._label&&this._label.nativeElement.children.length){const s=i.getBoundingClientRect();if(0===s.width&&0===s.height)return this._outlineGapCalculationNeededOnStable=!0,void(this._outlineGapCalculationNeededImmediately=!1);const r=this._getStartEnd(s),o=this._getStartEnd(e.children[0].getBoundingClientRect());let a=0;for(const t of e.children)a+=t.offsetWidth;t=o-r-5,n=a>0?.75*a+10:0}for(let o=0;o{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu,Ep]]}),e})();const hM=new Ve(\"MAT_INPUT_VALUE_ACCESSOR\"),mM=[\"button\",\"checkbox\",\"file\",\"hidden\",\"image\",\"radio\",\"range\",\"reset\",\"submit\"];let pM=0;class fM{constructor(e,t,n,i){this._defaultErrorStateMatcher=e,this._parentForm=t,this._parentFormGroup=n,this.ngControl=i}}const _M=by(fM);let gM=(()=>{class e extends _M{constructor(e,t,n,i,s,r,o,a,l){super(r,i,s,n),this._elementRef=e,this._platform=t,this.ngControl=n,this._autofillMonitor=a,this._uid=`mat-input-${pM++}`,this._isServer=!1,this._isNativeSelect=!1,this.focused=!1,this.stateChanges=new L,this.controlType=\"mat-input\",this.autofilled=!1,this._disabled=!1,this._required=!1,this._type=\"text\",this._readonly=!1,this._neverEmptyInputTypes=[\"date\",\"datetime\",\"datetime-local\",\"month\",\"time\",\"week\"].filter(e=>Mp().has(e));const c=this._elementRef.nativeElement;this._inputValueAccessor=o||c,this._previousNativeValue=this.value,this.id=this.id,t.IOS&&l.runOutsideAngular(()=>{e.nativeElement.addEventListener(\"keyup\",e=>{let t=e.target;t.value||t.selectionStart||t.selectionEnd||(t.setSelectionRange(1,1),t.setSelectionRange(0,0))})}),this._isServer=!this._platform.isBrowser,this._isNativeSelect=\"select\"===c.nodeName.toLowerCase(),this._isNativeSelect&&(this.controlType=c.multiple?\"mat-native-select-multiple\":\"mat-native-select\")}get disabled(){return this.ngControl&&null!==this.ngControl.disabled?this.ngControl.disabled:this._disabled}set disabled(e){this._disabled=hp(e),this.focused&&(this.focused=!1,this.stateChanges.next())}get id(){return this._id}set id(e){this._id=e||this._uid}get required(){return this._required}set required(e){this._required=hp(e)}get type(){return this._type}set type(e){this._type=e||\"text\",this._validateType(),!this._isTextarea()&&Mp().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}get value(){return this._inputValueAccessor.value}set value(e){e!==this.value&&(this._inputValueAccessor.value=e,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(e){this._readonly=hp(e)}ngOnInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(e=>{this.autofilled=e.isAutofilled,this.stateChanges.next()})}ngOnChanges(){this.stateChanges.next()}ngOnDestroy(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement)}ngDoCheck(){this.ngControl&&this.updateErrorState(),this._dirtyCheckNativeValue()}focus(e){this._elementRef.nativeElement.focus(e)}_focusChanged(e){e===this.focused||this.readonly&&e||(this.focused=e,this.stateChanges.next())}_onInput(){}_isTextarea(){return\"textarea\"===this._elementRef.nativeElement.nodeName.toLowerCase()}_dirtyCheckNativeValue(){const e=this._elementRef.nativeElement.value;this._previousNativeValue!==e&&(this._previousNativeValue=e,this.stateChanges.next())}_validateType(){if(mM.indexOf(this._type)>-1)throw Error(`Input type \"${this._type}\" isn't supported by matInput.`)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let e=this._elementRef.nativeElement.validity;return e&&e.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const e=this._elementRef.nativeElement,t=e.options[0];return this.focused||e.multiple||!this.empty||!!(e.selectedIndex>-1&&t&&t.label)}return this.focused||!this.empty}setDescribedByIds(e){this._ariaDescribedby=e.join(\" \")}onContainerClick(){this.focused||this.focus()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(bp),Eo(wh,10),Eo(bm,8),Eo(Im,8),Eo(vy),Eo(hM,10),Eo(Yw),Eo(ld))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"matInput\",\"\"],[\"textarea\",\"matInput\",\"\"],[\"select\",\"matNativeControl\",\"\"],[\"input\",\"matNativeControl\",\"\"],[\"textarea\",\"matNativeControl\",\"\"]],hostAttrs:[1,\"mat-input-element\",\"mat-form-field-autofill-control\"],hostVars:10,hostBindings:function(e,t){1&e&&Uo(\"blur\",(function(){return t._focusChanged(!1)}))(\"focus\",(function(){return t._focusChanged(!0)}))(\"input\",(function(){return t._onInput()})),2&e&&(Ca(\"disabled\",t.disabled)(\"required\",t.required),Co(\"id\",t.id)(\"placeholder\",t.placeholder)(\"readonly\",t.readonly&&!t._isNativeSelect||null)(\"aria-describedby\",t._ariaDescribedby||null)(\"aria-invalid\",t.errorState)(\"aria-required\",t.required.toString()),ua(\"mat-input-server\",t._isServer))},inputs:{id:\"id\",disabled:\"disabled\",required:\"required\",type:\"type\",value:\"value\",readonly:\"readonly\",placeholder:\"placeholder\",errorStateMatcher:\"errorStateMatcher\"},exportAs:[\"matInput\"],features:[Ba([{provide:Qw,useExisting:e}]),Ya,Ra]}),e})(),yM=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[vy],imports:[[Ew,uM],Ew,uM]}),e})();function bM(e,t=tp){var n;const i=(n=e)instanceof Date&&!isNaN(+n)?+e-t.now():Math.abs(e);return e=>e.lift(new vM(i,t))}class vM{constructor(e,t){this.delay=e,this.scheduler=t}call(e,t){return t.subscribe(new wM(e,this.delay,this.scheduler))}}class wM extends p{constructor(e,t,n){super(e),this.delay=t,this.scheduler=n,this.queue=[],this.active=!1,this.errored=!1}static dispatch(e){const t=e.source,n=t.queue,i=e.scheduler,s=e.destination;for(;n.length>0&&n[0].time-i.now()<=0;)n.shift().notification.observe(s);if(n.length>0){const t=Math.max(0,n[0].time-i.now());this.schedule(e,t)}else this.unsubscribe(),t.active=!1}_schedule(e){this.active=!0,this.destination.add(e.schedule(wM.dispatch,this.delay,{source:this,destination:this.destination,scheduler:e}))}scheduleNotification(e){if(!0===this.errored)return;const t=this.scheduler,n=new MM(t.now()+this.delay,e);this.queue.push(n),!1===this.active&&this._schedule(t)}_next(e){this.scheduleNotification(Zb.createNext(e))}_error(e){this.errored=!0,this.queue=[],this.destination.error(e),this.unsubscribe()}_complete(){this.scheduleNotification(Zb.createComplete()),this.unsubscribe()}}class MM{constructor(e,t){this.time=e,this.notification=t}}const kM=[\"mat-menu-item\",\"\"],SM=[\"*\"];function LM(e,t){if(1&e){const e=zo();Ro(0,\"div\",0),Uo(\"keydown\",(function(t){return en(e),Jo()._handleKeydown(t)}))(\"click\",(function(){return en(e),Jo().closed.emit(\"click\")}))(\"@transformMenu.start\",(function(t){return en(e),Jo()._onAnimationStart(t)}))(\"@transformMenu.done\",(function(t){return en(e),Jo()._onAnimationDone(t)})),Ro(1,\"div\",1),ea(2),Ho(),Ho()}if(2&e){const e=Jo();Po(\"id\",e.panelId)(\"ngClass\",e._classList)(\"@transformMenu\",e._panelAnimationState),Co(\"aria-label\",e.ariaLabel||null)(\"aria-labelledby\",e.ariaLabelledby||null)(\"aria-describedby\",e.ariaDescribedby||null)}}const xM={transformMenu:jf(\"transformMenu\",[Wf(\"void\",Vf({opacity:0,transform:\"scale(0.8)\"})),Uf(\"void => enter\",Nf([Bf(\".mat-menu-content, .mat-mdc-menu-content\",Ff(\"100ms linear\",Vf({opacity:1}))),Ff(\"120ms cubic-bezier(0, 0, 0.2, 1)\",Vf({transform:\"scale(1)\"}))])),Uf(\"* => void\",Ff(\"100ms 25ms linear\",Vf({opacity:0})))]),fadeInItems:jf(\"fadeInItems\",[Wf(\"showing\",Vf({opacity:1})),Uf(\"void => *\",[Vf({opacity:0}),Ff(\"400ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)\")])])};let CM=(()=>{class e{constructor(e,t,n,i,s,r,o){this._template=e,this._componentFactoryResolver=t,this._appRef=n,this._injector=i,this._viewContainerRef=s,this._document=r,this._changeDetectorRef=o,this._attached=new L}attach(e={}){this._portal||(this._portal=new uv(this._template,this._viewContainerRef)),this.detach(),this._outlet||(this._outlet=new pv(this._document.createElement(\"div\"),this._componentFactoryResolver,this._appRef,this._injector));const t=this._template.elementRef.nativeElement;t.parentNode.insertBefore(this._outlet.outletElement,t),this._changeDetectorRef&&this._changeDetectorRef.markForCheck(),this._portal.attach(this._outlet,e),this._attached.next()}detach(){this._portal.isAttached&&this._portal.detach()}ngOnDestroy(){this._outlet&&this._outlet.dispose()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(vl),Eo(Ja),Eo(Td),Eo(fo),Eo(Ml),Eo(Nd),Eo(Qr))},e.\\u0275dir=St({type:e,selectors:[[\"ng-template\",\"matMenuContent\",\"\"]]}),e})();const TM=new Ve(\"MAT_MENU_PANEL\");class DM{}const YM=gy(fy(DM));let EM=(()=>{class e extends YM{constructor(e,t,n,i){super(),this._elementRef=e,this._focusMonitor=n,this._parentMenu=i,this.role=\"menuitem\",this._hovered=new L,this._focused=new L,this._highlighted=!1,this._triggersSubmenu=!1,n&&n.monitor(this._elementRef,!1),i&&i.addItem&&i.addItem(this),this._document=t}focus(e=\"program\",t){this._focusMonitor?this._focusMonitor.focusVia(this._getHostElement(),e,t):this._getHostElement().focus(t),this._focused.next(this)}ngOnDestroy(){this._focusMonitor&&this._focusMonitor.stopMonitoring(this._elementRef),this._parentMenu&&this._parentMenu.removeItem&&this._parentMenu.removeItem(this),this._hovered.complete(),this._focused.complete()}_getTabIndex(){return this.disabled?\"-1\":\"0\"}_getHostElement(){return this._elementRef.nativeElement}_checkDisabled(e){this.disabled&&(e.preventDefault(),e.stopPropagation())}_handleMouseEnter(){this._hovered.next(this)}getLabel(){const e=this._elementRef.nativeElement,t=this._document?this._document.TEXT_NODE:3;let n=\"\";if(e.childNodes){const i=e.childNodes.length;for(let s=0;s{class e{constructor(e,t,n){this._elementRef=e,this._ngZone=t,this._defaultOptions=n,this._xPosition=this._defaultOptions.xPosition,this._yPosition=this._defaultOptions.yPosition,this._directDescendantItems=new vc,this._tabSubscription=u.EMPTY,this._classList={},this._panelAnimationState=\"void\",this._animationDone=new L,this.backdropClass=this._defaultOptions.backdropClass,this._overlapTrigger=this._defaultOptions.overlapTrigger,this._hasBackdrop=this._defaultOptions.hasBackdrop,this.closed=new yc,this.close=this.closed,this.panelId=`mat-menu-panel-${IM++}`}get xPosition(){return this._xPosition}set xPosition(e){\"before\"!==e&&\"after\"!==e&&function(){throw Error('xPosition value must be either \\'before\\' or after\\'.\\n Example: ')}(),this._xPosition=e,this.setPositionClasses()}get yPosition(){return this._yPosition}set yPosition(e){\"above\"!==e&&\"below\"!==e&&function(){throw Error('yPosition value must be either \\'above\\' or below\\'.\\n Example: ')}(),this._yPosition=e,this.setPositionClasses()}get overlapTrigger(){return this._overlapTrigger}set overlapTrigger(e){this._overlapTrigger=hp(e)}get hasBackdrop(){return this._hasBackdrop}set hasBackdrop(e){this._hasBackdrop=hp(e)}set panelClass(e){const t=this._previousPanelClass;t&&t.length&&t.split(\" \").forEach(e=>{this._classList[e]=!1}),this._previousPanelClass=e,e&&e.length&&(e.split(\" \").forEach(e=>{this._classList[e]=!0}),this._elementRef.nativeElement.className=\"\")}get classList(){return this.panelClass}set classList(e){this.panelClass=e}ngOnInit(){this.setPositionClasses()}ngAfterContentInit(){this._updateDirectDescendants(),this._keyManager=new Pp(this._directDescendantItems).withWrap().withTypeAhead(),this._tabSubscription=this._keyManager.tabOut.subscribe(()=>this.closed.emit(\"tab\")),this._directDescendantItems.changes.pipe(Rf(this._directDescendantItems),Wb(e=>G(...e.map(e=>e._focused)))).subscribe(e=>this._keyManager.updateActiveItem(e))}ngOnDestroy(){this._directDescendantItems.destroy(),this._tabSubscription.unsubscribe(),this.closed.complete()}_hovered(){return this._directDescendantItems.changes.pipe(Rf(this._directDescendantItems),Wb(e=>G(...e.map(e=>e._hovered))))}addItem(e){}removeItem(e){}_handleKeydown(e){const t=e.keyCode,n=this._keyManager;switch(t){case 27:qm(e)||(e.preventDefault(),this.closed.emit(\"keydown\"));break;case 37:this.parentMenu&&\"ltr\"===this.direction&&this.closed.emit(\"keydown\");break;case 39:this.parentMenu&&\"rtl\"===this.direction&&this.closed.emit(\"keydown\");break;case 36:case 35:qm(e)||(36===t?n.setFirstItemActive():n.setLastItemActive(),e.preventDefault());break;default:38!==t&&40!==t||n.setFocusOrigin(\"keyboard\"),n.onKeydown(e)}}focusFirstItem(e=\"program\"){this.lazyContent?this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(()=>this._focusFirstItem(e)):this._focusFirstItem(e)}_focusFirstItem(e){const t=this._keyManager;if(t.setFocusOrigin(e).setFirstItemActive(),!t.activeItem&&this._directDescendantItems.length){let e=this._directDescendantItems.first._getHostElement().parentElement;for(;e;){if(\"menu\"===e.getAttribute(\"role\")){e.focus();break}e=e.parentElement}}}resetActiveItem(){this._keyManager.setActiveItem(-1)}setElevation(e){const t=`mat-elevation-z${Math.min(4+e,24)}`,n=Object.keys(this._classList).find(e=>e.startsWith(\"mat-elevation-z\"));n&&n!==this._previousElevation||(this._previousElevation&&(this._classList[this._previousElevation]=!1),this._classList[t]=!0,this._previousElevation=t)}setPositionClasses(e=this.xPosition,t=this.yPosition){const n=this._classList;n[\"mat-menu-before\"]=\"before\"===e,n[\"mat-menu-after\"]=\"after\"===e,n[\"mat-menu-above\"]=\"above\"===t,n[\"mat-menu-below\"]=\"below\"===t}_startAnimation(){this._panelAnimationState=\"enter\"}_resetAnimation(){this._panelAnimationState=\"void\"}_onAnimationDone(e){this._animationDone.next(e),this._isAnimating=!1}_onAnimationStart(e){this._isAnimating=!0,\"enter\"===e.toState&&0===this._keyManager.activeItemIndex&&(e.element.scrollTop=0)}_updateDirectDescendants(){this._allItems.changes.pipe(Rf(this._allItems)).subscribe(e=>{this._directDescendantItems.reset(e.filter(e=>e._parentMenu===this)),this._directDescendantItems.notifyOnChanges()})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(ld),Eo(OM))},e.\\u0275dir=St({type:e,contentQueries:function(e,t,n){var i;1&e&&(Ic(n,CM,!0),Ic(n,EM,!0),Ic(n,EM,!1)),2&e&&(Dc(i=Rc())&&(t.lazyContent=i.first),Dc(i=Rc())&&(t._allItems=i),Dc(i=Rc())&&(t.items=i))},viewQuery:function(e,t){var n;1&e&&Ec(vl,!0),2&e&&Dc(n=Rc())&&(t.templateRef=n.first)},inputs:{backdropClass:\"backdropClass\",xPosition:\"xPosition\",yPosition:\"yPosition\",overlapTrigger:\"overlapTrigger\",hasBackdrop:\"hasBackdrop\",panelClass:[\"class\",\"panelClass\"],classList:\"classList\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],ariaDescribedby:[\"aria-describedby\",\"ariaDescribedby\"]},outputs:{closed:\"closed\",close:\"close\"}}),e})(),AM=(()=>{class e extends PM{}return e.\\u0275fac=function(t){return RM(t||e)},e.\\u0275dir=St({type:e,features:[Ya]}),e})();const RM=li(AM);let HM=(()=>{class e extends AM{constructor(e,t,n){super(e,t,n)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(ld),Eo(OM))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-menu\"]],exportAs:[\"matMenu\"],features:[Ba([{provide:TM,useExisting:AM},{provide:AM,useExisting:e}]),Ya],ngContentSelectors:SM,decls:1,vars:0,consts:[[\"tabindex\",\"-1\",\"role\",\"menu\",1,\"mat-menu-panel\",3,\"id\",\"ngClass\",\"keydown\",\"click\"],[1,\"mat-menu-content\"]],template:function(e,t){1&e&&(Zo(),Do(0,LM,3,6,\"ng-template\"))},directives:[cu],styles:['.mat-menu-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;max-height:calc(100vh - 48px);border-radius:4px;outline:0;min-height:64px}.mat-menu-panel.ng-animating{pointer-events:none}.cdk-high-contrast-active .mat-menu-panel{outline:solid 1px}.mat-menu-content:not(:empty){padding-top:8px;padding-bottom:8px}.mat-menu-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative}.mat-menu-item::-moz-focus-inner{border:0}.mat-menu-item[disabled]{cursor:default}[dir=rtl] .mat-menu-item{text-align:right}.mat-menu-item .mat-icon{margin-right:16px;vertical-align:middle}.mat-menu-item .mat-icon svg{vertical-align:top}[dir=rtl] .mat-menu-item .mat-icon{margin-left:16px;margin-right:0}.mat-menu-item[disabled]{pointer-events:none}.cdk-high-contrast-active .mat-menu-item.cdk-program-focused,.cdk-high-contrast-active .mat-menu-item.cdk-keyboard-focused,.cdk-high-contrast-active .mat-menu-item-highlighted{outline:dotted 1px}.mat-menu-item-submenu-trigger{padding-right:32px}.mat-menu-item-submenu-trigger::after{width:0;height:0;border-style:solid;border-width:5px 0 5px 5px;border-color:transparent transparent transparent currentColor;content:\"\";display:inline-block;position:absolute;top:50%;right:16px;transform:translateY(-50%)}[dir=rtl] .mat-menu-item-submenu-trigger{padding-right:16px;padding-left:32px}[dir=rtl] .mat-menu-item-submenu-trigger::after{right:auto;left:16px;transform:rotateY(180deg) translateY(-50%)}button.mat-menu-item{width:100%}.mat-menu-item .mat-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}\\n'],encapsulation:2,data:{animation:[xM.transformMenu,xM.fadeInItems]},changeDetection:0}),e})();const jM=new Ve(\"mat-menu-scroll-strategy\"),FM={provide:jM,deps:[Nv],useFactory:function(e){return()=>e.scrollStrategies.reposition()}},NM=Sp({passive:!0});let zM=(()=>{class e{constructor(e,t,n,i,s,r,o,a){this._overlay=e,this._element=t,this._viewContainerRef=n,this._parentMenu=s,this._menuItemInstance=r,this._dir=o,this._focusMonitor=a,this._overlayRef=null,this._menuOpen=!1,this._closingActionsSubscription=u.EMPTY,this._hoverSubscription=u.EMPTY,this._menuCloseSubscription=u.EMPTY,this._handleTouchStart=()=>this._openedBy=\"touch\",this._openedBy=null,this.restoreFocus=!0,this.menuOpened=new yc,this.onMenuOpen=this.menuOpened,this.menuClosed=new yc,this.onMenuClose=this.menuClosed,t.nativeElement.addEventListener(\"touchstart\",this._handleTouchStart,NM),r&&(r._triggersSubmenu=this.triggersSubmenu()),this._scrollStrategy=i}get _deprecatedMatMenuTriggerFor(){return this.menu}set _deprecatedMatMenuTriggerFor(e){this.menu=e}get menu(){return this._menu}set menu(e){e!==this._menu&&(this._menu=e,this._menuCloseSubscription.unsubscribe(),e&&(this._menuCloseSubscription=e.close.asObservable().subscribe(e=>{this._destroyMenu(),\"click\"!==e&&\"tab\"!==e||!this._parentMenu||this._parentMenu.closed.emit(e)})))}ngAfterContentInit(){this._checkMenu(),this._handleHover()}ngOnDestroy(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null),this._element.nativeElement.removeEventListener(\"touchstart\",this._handleTouchStart,NM),this._menuCloseSubscription.unsubscribe(),this._closingActionsSubscription.unsubscribe(),this._hoverSubscription.unsubscribe()}get menuOpen(){return this._menuOpen}get dir(){return this._dir&&\"rtl\"===this._dir.value?\"rtl\":\"ltr\"}triggersSubmenu(){return!(!this._menuItemInstance||!this._parentMenu)}toggleMenu(){return this._menuOpen?this.closeMenu():this.openMenu()}openMenu(){if(this._menuOpen)return;this._checkMenu();const e=this._createOverlay(),t=e.getConfig();this._setPosition(t.positionStrategy),t.hasBackdrop=null==this.menu.hasBackdrop?!this.triggersSubmenu():this.menu.hasBackdrop,e.attach(this._getPortal()),this.menu.lazyContent&&this.menu.lazyContent.attach(this.menuData),this._closingActionsSubscription=this._menuClosingActions().subscribe(()=>this.closeMenu()),this._initMenu(),this.menu instanceof AM&&this.menu._startAnimation()}closeMenu(){this.menu.close.emit()}focus(e=\"program\",t){this._focusMonitor?this._focusMonitor.focusVia(this._element,e,t):this._element.nativeElement.focus(t)}_destroyMenu(){if(!this._overlayRef||!this.menuOpen)return;const e=this.menu;this._closingActionsSubscription.unsubscribe(),this._overlayRef.detach(),this._restoreFocus(),e instanceof AM?(e._resetAnimation(),e.lazyContent?e._animationDone.pipe(Tu(e=>\"void\"===e.toState),cp(1),Nb(e.lazyContent._attached)).subscribe({next:()=>e.lazyContent.detach(),complete:()=>this._setIsMenuOpen(!1)}):this._setIsMenuOpen(!1)):(this._setIsMenuOpen(!1),e.lazyContent&&e.lazyContent.detach())}_initMenu(){this.menu.parentMenu=this.triggersSubmenu()?this._parentMenu:void 0,this.menu.direction=this.dir,this._setMenuElevation(),this._setIsMenuOpen(!0),this.menu.focusFirstItem(this._openedBy||\"program\")}_setMenuElevation(){if(this.menu.setElevation){let e=0,t=this.menu.parentMenu;for(;t;)e++,t=t.parentMenu;this.menu.setElevation(e)}}_restoreFocus(){this.restoreFocus&&(this._openedBy?this.triggersSubmenu()||this.focus(this._openedBy):this.focus()),this._openedBy=null}_setIsMenuOpen(e){this._menuOpen=e,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this.triggersSubmenu()&&(this._menuItemInstance._highlighted=e)}_checkMenu(){this.menu||function(){throw Error('matMenuTriggerFor: must pass in an mat-menu instance.\\n\\n Example:\\n \\n ')}()}_createOverlay(){if(!this._overlayRef){const e=this._getOverlayConfig();this._subscribeToPositions(e.positionStrategy),this._overlayRef=this._overlay.create(e),this._overlayRef.keydownEvents().subscribe()}return this._overlayRef}_getOverlayConfig(){return new Lv({positionStrategy:this._overlay.position().flexibleConnectedTo(this._element).withLockedPosition().withTransformOriginOn(\".mat-menu-panel, .mat-mdc-menu-panel\"),backdropClass:this.menu.backdropClass||\"cdk-overlay-transparent-backdrop\",scrollStrategy:this._scrollStrategy(),direction:this._dir})}_subscribeToPositions(e){this.menu.setPositionClasses&&e.positionChanges.subscribe(e=>{this.menu.setPositionClasses(\"start\"===e.connectionPair.overlayX?\"after\":\"before\",\"top\"===e.connectionPair.overlayY?\"below\":\"above\")})}_setPosition(e){let[t,n]=\"before\"===this.menu.xPosition?[\"end\",\"start\"]:[\"start\",\"end\"],[i,s]=\"above\"===this.menu.yPosition?[\"bottom\",\"top\"]:[\"top\",\"bottom\"],[r,o]=[i,s],[a,l]=[t,n],c=0;this.triggersSubmenu()?(l=t=\"before\"===this.menu.xPosition?\"start\":\"end\",n=a=\"end\"===t?\"start\":\"end\",c=\"bottom\"===i?8:-8):this.menu.overlapTrigger||(r=\"top\"===i?\"bottom\":\"top\",o=\"top\"===s?\"bottom\":\"top\"),e.withPositions([{originX:t,originY:r,overlayX:a,overlayY:i,offsetY:c},{originX:n,originY:r,overlayX:l,overlayY:i,offsetY:c},{originX:t,originY:o,overlayX:a,overlayY:s,offsetY:-c},{originX:n,originY:o,overlayX:l,overlayY:s,offsetY:-c}])}_menuClosingActions(){const e=this._overlayRef.backdropClick(),t=this._overlayRef.detachments();return G(e,this._parentMenu?this._parentMenu.closed:xu(),this._parentMenu?this._parentMenu._hovered().pipe(Tu(e=>e!==this._menuItemInstance),Tu(()=>this._menuOpen)):xu(),t)}_handleMousedown(e){$p(e)||(this._openedBy=0===e.button?\"mouse\":null,this.triggersSubmenu()&&e.preventDefault())}_handleKeydown(e){const t=e.keyCode;this.triggersSubmenu()&&(39===t&&\"ltr\"===this.dir||37===t&&\"rtl\"===this.dir)&&this.openMenu()}_handleClick(e){this.triggersSubmenu()?(e.stopPropagation(),this.openMenu()):this.toggleMenu()}_handleHover(){this.triggersSubmenu()&&(this._hoverSubscription=this._parentMenu._hovered().pipe(Tu(e=>e===this._menuItemInstance&&!e.disabled),bM(0,Yb)).subscribe(()=>{this._openedBy=\"mouse\",this.menu instanceof AM&&this.menu._isAnimating?this.menu._animationDone.pipe(cp(1),bM(0,Yb),Nb(this._parentMenu._hovered())).subscribe(()=>this.openMenu()):this.openMenu()}))}_getPortal(){return this._portal&&this._portal.templateRef===this.menu.templateRef||(this._portal=new uv(this.menu.templateRef,this._viewContainerRef)),this._portal}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Nv),Eo(Ka),Eo(Ml),Eo(jM),Eo(AM,8),Eo(EM,10),Eo(Gp,8),Eo(Up))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"mat-menu-trigger-for\",\"\"],[\"\",\"matMenuTriggerFor\",\"\"]],hostAttrs:[\"aria-haspopup\",\"true\",1,\"mat-menu-trigger\"],hostVars:2,hostBindings:function(e,t){1&e&&Uo(\"mousedown\",(function(e){return t._handleMousedown(e)}))(\"keydown\",(function(e){return t._handleKeydown(e)}))(\"click\",(function(e){return t._handleClick(e)})),2&e&&Co(\"aria-expanded\",t.menuOpen||null)(\"aria-controls\",t.menuOpen?t.menu.panelId:null)},inputs:{restoreFocus:[\"matMenuTriggerRestoreFocus\",\"restoreFocus\"],_deprecatedMatMenuTriggerFor:[\"mat-menu-trigger-for\",\"_deprecatedMatMenuTriggerFor\"],menu:[\"matMenuTriggerFor\",\"menu\"],menuData:[\"matMenuTriggerData\",\"menuData\"]},outputs:{menuOpened:\"menuOpened\",onMenuOpen:\"onMenuOpen\",menuClosed:\"menuClosed\",onMenuClose:\"onMenuClose\"},exportAs:[\"matMenuTrigger\"]}),e})(),VM=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[FM],imports:[py]}),e})(),WM=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[FM],imports:[[Mu,py,Ty,Bv,VM],VM]}),e})();const UM=[\"primaryValueBar\"];class $M{constructor(e){this._elementRef=e}}const BM=_y($M,\"primary\"),qM=new Ve(\"mat-progress-bar-location\",{providedIn:\"root\",factory:function(){const e=Xe(Nd),t=e?e.location:null;return{getPathname:()=>t?t.pathname+t.search:\"\"}}});let GM=0,JM=(()=>{class e extends BM{constructor(e,t,n,i){super(e),this._elementRef=e,this._ngZone=t,this._animationMode=n,this._isNoopAnimation=!1,this._value=0,this._bufferValue=0,this.animationEnd=new yc,this._animationEndSubscription=u.EMPTY,this.mode=\"determinate\",this.progressbarId=`mat-progress-bar-${GM++}`;const s=i?i.getPathname().split(\"#\")[0]:\"\";this._rectangleFillValue=`url('${s}#${this.progressbarId}')`,this._isNoopAnimation=\"NoopAnimations\"===n}get value(){return this._value}set value(e){this._value=KM(mp(e)||0)}get bufferValue(){return this._bufferValue}set bufferValue(e){this._bufferValue=KM(e||0)}_primaryTransform(){return{transform:`scaleX(${this.value/100})`}}_bufferTransform(){return\"buffer\"===this.mode?{transform:`scaleX(${this.bufferValue/100})`}:null}ngAfterViewInit(){this._ngZone.runOutsideAngular(()=>{const e=this._primaryValueBar.nativeElement;this._animationEndSubscription=Mb(e,\"transitionend\").pipe(Tu(t=>t.target===e)).subscribe(()=>{\"determinate\"!==this.mode&&\"buffer\"!==this.mode||this._ngZone.run(()=>this.animationEnd.next({value:this.value}))})})}ngOnDestroy(){this._animationEndSubscription.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(ld),Eo(sy,8),Eo(qM,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-progress-bar\"]],viewQuery:function(e,t){var n;1&e&&Ec(UM,!0),2&e&&Dc(n=Rc())&&(t._primaryValueBar=n.first)},hostAttrs:[\"role\",\"progressbar\",\"aria-valuemin\",\"0\",\"aria-valuemax\",\"100\",1,\"mat-progress-bar\"],hostVars:4,hostBindings:function(e,t){2&e&&(Co(\"aria-valuenow\",\"indeterminate\"===t.mode||\"query\"===t.mode?null:t.value)(\"mode\",t.mode),ua(\"_mat-animation-noopable\",t._isNoopAnimation))},inputs:{color:\"color\",mode:\"mode\",value:\"value\",bufferValue:\"bufferValue\"},outputs:{animationEnd:\"animationEnd\"},exportAs:[\"matProgressBar\"],features:[Ya],decls:9,vars:4,consts:[[\"width\",\"100%\",\"height\",\"4\",\"focusable\",\"false\",1,\"mat-progress-bar-background\",\"mat-progress-bar-element\"],[\"x\",\"4\",\"y\",\"0\",\"width\",\"8\",\"height\",\"4\",\"patternUnits\",\"userSpaceOnUse\",3,\"id\"],[\"cx\",\"2\",\"cy\",\"2\",\"r\",\"2\"],[\"width\",\"100%\",\"height\",\"100%\"],[1,\"mat-progress-bar-buffer\",\"mat-progress-bar-element\",3,\"ngStyle\"],[1,\"mat-progress-bar-primary\",\"mat-progress-bar-fill\",\"mat-progress-bar-element\",3,\"ngStyle\"],[\"primaryValueBar\",\"\"],[1,\"mat-progress-bar-secondary\",\"mat-progress-bar-fill\",\"mat-progress-bar-element\"]],template:function(e,t){1&e&&(kn(),Ro(0,\"svg\",0),Ro(1,\"defs\"),Ro(2,\"pattern\",1),jo(3,\"circle\",2),Ho(),Ho(),jo(4,\"rect\",3),Ho(),Sn(),jo(5,\"div\",4),jo(6,\"div\",5,6),jo(8,\"div\",7)),2&e&&(ys(2),Po(\"id\",t.progressbarId),ys(2),Co(\"fill\",t._rectangleFillValue),ys(1),Po(\"ngStyle\",t._bufferTransform()),ys(1),Po(\"ngStyle\",t._primaryTransform()))},directives:[vu],styles:['.mat-progress-bar{display:block;height:4px;overflow:hidden;position:relative;transition:opacity 250ms linear;width:100%}._mat-animation-noopable.mat-progress-bar{transition:none;animation:none}.mat-progress-bar .mat-progress-bar-element,.mat-progress-bar .mat-progress-bar-fill::after{height:100%;position:absolute;width:100%}.mat-progress-bar .mat-progress-bar-background{width:calc(100% + 10px)}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-background{display:none}.mat-progress-bar .mat-progress-bar-buffer{transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-buffer{border-top:solid 5px;opacity:.5}.mat-progress-bar .mat-progress-bar-secondary{display:none}.mat-progress-bar .mat-progress-bar-fill{animation:none;transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-fill{border-top:solid 4px}.mat-progress-bar .mat-progress-bar-fill::after{animation:none;content:\"\";display:inline-block;left:0}.mat-progress-bar[dir=rtl],[dir=rtl] .mat-progress-bar{transform:rotateY(180deg)}.mat-progress-bar[mode=query]{transform:rotateZ(180deg)}.mat-progress-bar[mode=query][dir=rtl],[dir=rtl] .mat-progress-bar[mode=query]{transform:rotateZ(180deg) rotateY(180deg)}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-fill,.mat-progress-bar[mode=query] .mat-progress-bar-fill{transition:none}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary,.mat-progress-bar[mode=query] .mat-progress-bar-primary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-translate 2000ms infinite linear;left:-145.166611%}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-primary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary,.mat-progress-bar[mode=query] .mat-progress-bar-secondary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-translate 2000ms infinite linear;left:-54.888891%;display:block}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-secondary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=buffer] .mat-progress-bar-background{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-background-scroll 250ms infinite linear;display:block}.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-buffer,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-background{animation:none;transition-duration:1ms}@keyframes mat-progress-bar-primary-indeterminate-translate{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(83.67142%)}100%{transform:translateX(200.611057%)}}@keyframes mat-progress-bar-primary-indeterminate-scale{0%{transform:scaleX(0.08)}36.65%{animation-timing-function:cubic-bezier(0.334731, 0.12482, 0.785844, 1);transform:scaleX(0.08)}69.15%{animation-timing-function:cubic-bezier(0.06, 0.11, 0.6, 1);transform:scaleX(0.661479)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-secondary-indeterminate-translate{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(37.651913%)}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(84.386165%)}100%{transform:translateX(160.277782%)}}@keyframes mat-progress-bar-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-background-scroll{to{transform:translateX(-8px)}}\\n'],encapsulation:2,changeDetection:0}),e})();function KM(e,t=0,n=100){return Math.max(t,Math.min(n,e))}let ZM=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu,py],py]}),e})();const QM=[\"trigger\"],XM=[\"panel\"];function ek(e,t){if(1&e&&(Ro(0,\"span\",8),Sa(1),Ho()),2&e){const e=Jo();ys(1),La(e.placeholder||\"\\xa0\")}}function tk(e,t){if(1&e&&(Ro(0,\"span\"),Sa(1),Ho()),2&e){const e=Jo(2);ys(1),La(e.triggerValue||\"\\xa0\")}}function nk(e,t){1&e&&ea(0,0,[\"*ngSwitchCase\",\"true\"])}function ik(e,t){1&e&&(Ro(0,\"span\",9),Do(1,tk,2,1,\"span\",10),Do(2,nk,1,0,void 0,11),Ho()),2&e&&(Po(\"ngSwitch\",!!Jo().customTrigger),ys(2),Po(\"ngSwitchCase\",!0))}function sk(e,t){if(1&e){const e=zo();Ro(0,\"div\",12),Ro(1,\"div\",13,14),Uo(\"@transformPanel.done\",(function(t){return en(e),Jo()._panelDoneAnimatingStream.next(t.toState)}))(\"keydown\",(function(t){return en(e),Jo()._handleKeydown(t)})),ea(3,1),Ho(),Ho()}if(2&e){const e=Jo();Po(\"@transformPanelWrap\",void 0),ys(1),\"mat-select-panel \",n=e._getPanelTheme(),\"\",fa(dt,ma,To(Qt(),\"mat-select-panel \",n,\"\"),!0),da(\"transform-origin\",e._transformOrigin)(\"font-size\",e._triggerFontSize,\"px\"),Po(\"ngClass\",e.panelClass)(\"@transformPanel\",e.multiple?\"showing-multiple\":\"showing\")}var n}const rk=[[[\"mat-select-trigger\"]],\"*\"],ok=[\"mat-select-trigger\",\"*\"],ak={transformPanelWrap:jf(\"transformPanelWrap\",[Uf(\"* => void\",Bf(\"@transformPanel\",[$f()],{optional:!0}))]),transformPanel:jf(\"transformPanel\",[Wf(\"void\",Vf({transform:\"scaleY(0.8)\",minWidth:\"100%\",opacity:0})),Wf(\"showing\",Vf({opacity:1,minWidth:\"calc(100% + 32px)\",transform:\"scaleY(1)\"})),Wf(\"showing-multiple\",Vf({opacity:1,minWidth:\"calc(100% + 64px)\",transform:\"scaleY(1)\"})),Uf(\"void => *\",Ff(\"120ms cubic-bezier(0, 0, 0.2, 1)\")),Uf(\"* => void\",Ff(\"100ms 25ms linear\",Vf({opacity:0})))])};let lk=0;const ck=new Ve(\"mat-select-scroll-strategy\"),dk=new Ve(\"MAT_SELECT_CONFIG\"),uk={provide:ck,deps:[Nv],useFactory:function(e){return()=>e.scrollStrategies.reposition()}};class hk{constructor(e,t){this.source=e,this.value=t}}class mk{constructor(e,t,n,i,s){this._elementRef=e,this._defaultErrorStateMatcher=t,this._parentForm=n,this._parentFormGroup=i,this.ngControl=s}}const pk=gy(yy(fy(by(mk))));let fk=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-select-trigger\"]]}),e})(),_k=(()=>{class e extends pk{constructor(e,t,n,i,s,r,o,a,l,c,d,u,h,m){super(s,i,o,a,c),this._viewportRuler=e,this._changeDetectorRef=t,this._ngZone=n,this._dir=r,this._parentFormField=l,this.ngControl=c,this._liveAnnouncer=h,this._panelOpen=!1,this._required=!1,this._scrollTop=0,this._multiple=!1,this._compareWith=(e,t)=>e===t,this._uid=`mat-select-${lk++}`,this._destroy=new L,this._triggerFontSize=0,this._onChange=()=>{},this._onTouched=()=>{},this._optionIds=\"\",this._transformOrigin=\"top\",this._panelDoneAnimatingStream=new L,this._offsetY=0,this._positions=[{originX:\"start\",originY:\"top\",overlayX:\"start\",overlayY:\"top\"},{originX:\"start\",originY:\"bottom\",overlayX:\"start\",overlayY:\"bottom\"}],this._disableOptionCentering=!1,this._focused=!1,this.controlType=\"mat-select\",this.ariaLabel=\"\",this.optionSelectionChanges=qv(()=>{const e=this.options;return e?e.changes.pipe(Rf(e),Wb(()=>G(...e.map(e=>e.onSelectionChange)))):this._ngZone.onStable.asObservable().pipe(cp(1),Wb(()=>this.optionSelectionChanges))}),this.openedChange=new yc,this._openedStream=this.openedChange.pipe(Tu(e=>e),H(()=>{})),this._closedStream=this.openedChange.pipe(Tu(e=>!e),H(()=>{})),this.selectionChange=new yc,this.valueChange=new yc,this.ngControl&&(this.ngControl.valueAccessor=this),this._scrollStrategyFactory=u,this._scrollStrategy=this._scrollStrategyFactory(),this.tabIndex=parseInt(d)||0,this.id=this.id,m&&(null!=m.disableOptionCentering&&(this.disableOptionCentering=m.disableOptionCentering),null!=m.typeaheadDebounceInterval&&(this.typeaheadDebounceInterval=m.typeaheadDebounceInterval))}get focused(){return this._focused||this._panelOpen}get placeholder(){return this._placeholder}set placeholder(e){this._placeholder=e,this.stateChanges.next()}get required(){return this._required}set required(e){this._required=hp(e),this.stateChanges.next()}get multiple(){return this._multiple}set multiple(e){if(this._selectionModel)throw Error(\"Cannot change `multiple` mode of select after initialization.\");this._multiple=hp(e)}get disableOptionCentering(){return this._disableOptionCentering}set disableOptionCentering(e){this._disableOptionCentering=hp(e)}get compareWith(){return this._compareWith}set compareWith(e){if(\"function\"!=typeof e)throw Error(\"`compareWith` must be a function.\");this._compareWith=e,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(e){e!==this._value&&(this.writeValue(e),this._value=e)}get typeaheadDebounceInterval(){return this._typeaheadDebounceInterval}set typeaheadDebounceInterval(e){this._typeaheadDebounceInterval=mp(e)}get id(){return this._id}set id(e){this._id=e||this._uid,this.stateChanges.next()}ngOnInit(){this._selectionModel=new iv(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe(Eb(),Nb(this._destroy)).subscribe(()=>{this.panelOpen?(this._scrollTop=0,this.openedChange.emit(!0)):(this.openedChange.emit(!1),this.overlayDir.offsetX=0,this._changeDetectorRef.markForCheck())}),this._viewportRuler.change().pipe(Nb(this._destroy)).subscribe(()=>{this._panelOpen&&(this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._changeDetectorRef.markForCheck())})}ngAfterContentInit(){this._initKeyManager(),this._selectionModel.changed.pipe(Nb(this._destroy)).subscribe(e=>{e.added.forEach(e=>e.select()),e.removed.forEach(e=>e.deselect())}),this.options.changes.pipe(Rf(null),Nb(this._destroy)).subscribe(()=>{this._resetOptions(),this._initializeSelection()})}ngDoCheck(){this.ngControl&&this.updateErrorState()}ngOnChanges(e){e.disabled&&this.stateChanges.next(),e.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this._typeaheadDebounceInterval)}ngOnDestroy(){this._destroy.next(),this._destroy.complete(),this.stateChanges.complete()}toggle(){this.panelOpen?this.close():this.open()}open(){!this.disabled&&this.options&&this.options.length&&!this._panelOpen&&(this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._triggerFontSize=parseInt(getComputedStyle(this.trigger.nativeElement).fontSize||\"0\"),this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._calculateOverlayPosition(),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck(),this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(()=>{this._triggerFontSize&&this.overlayDir.overlayRef&&this.overlayDir.overlayRef.overlayElement&&(this.overlayDir.overlayRef.overlayElement.style.fontSize=`${this._triggerFontSize}px`)}))}close(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?\"rtl\":\"ltr\"),this._changeDetectorRef.markForCheck(),this._onTouched())}writeValue(e){this.options&&this._setSelectionByValue(e)}registerOnChange(e){this._onChange=e}registerOnTouched(e){this._onTouched=e}setDisabledState(e){this.disabled=e,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}get panelOpen(){return this._panelOpen}get selected(){return this.multiple?this._selectionModel.selected:this._selectionModel.selected[0]}get triggerValue(){if(this.empty)return\"\";if(this._multiple){const e=this._selectionModel.selected.map(e=>e.viewValue);return this._isRtl()&&e.reverse(),e.join(\", \")}return this._selectionModel.selected[0].viewValue}_isRtl(){return!!this._dir&&\"rtl\"===this._dir.value}_handleKeydown(e){this.disabled||(this.panelOpen?this._handleOpenKeydown(e):this._handleClosedKeydown(e))}_handleClosedKeydown(e){const t=e.keyCode,n=40===t||38===t||37===t||39===t,i=13===t||32===t,s=this._keyManager;if(!s.isTyping()&&i&&!qm(e)||(this.multiple||e.altKey)&&n)e.preventDefault(),this.open();else if(!this.multiple){const n=this.selected;36===t||35===t?(36===t?s.setFirstItemActive():s.setLastItemActive(),e.preventDefault()):s.onKeydown(e);const i=this.selected;i&&n!==i&&this._liveAnnouncer.announce(i.viewValue,1e4)}}_handleOpenKeydown(e){const t=this._keyManager,n=e.keyCode,i=40===n||38===n,s=t.isTyping();if(36===n||35===n)e.preventDefault(),36===n?t.setFirstItemActive():t.setLastItemActive();else if(i&&e.altKey)e.preventDefault(),this.close();else if(s||13!==n&&32!==n||!t.activeItem||qm(e))if(!s&&this._multiple&&65===n&&e.ctrlKey){e.preventDefault();const t=this.options.some(e=>!e.disabled&&!e.selected);this.options.forEach(e=>{e.disabled||(t?e.select():e.deselect())})}else{const n=t.activeItemIndex;t.onKeydown(e),this._multiple&&i&&e.shiftKey&&t.activeItem&&t.activeItemIndex!==n&&t.activeItem._selectViaInteraction()}else e.preventDefault(),t.activeItem._selectViaInteraction()}_onFocus(){this.disabled||(this._focused=!0,this.stateChanges.next())}_onBlur(){this._focused=!1,this.disabled||this.panelOpen||(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_onAttached(){this.overlayDir.positionChange.pipe(cp(1)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this._calculateOverlayOffsetX(),this.panel.nativeElement.scrollTop=this._scrollTop})}_getPanelTheme(){return this._parentFormField?`mat-${this._parentFormField.color}`:\"\"}get empty(){return!this._selectionModel||this._selectionModel.isEmpty()}_initializeSelection(){Promise.resolve().then(()=>{this._setSelectionByValue(this.ngControl?this.ngControl.value:this._value),this.stateChanges.next()})}_setSelectionByValue(e){if(this.multiple&&e){if(!Array.isArray(e))throw Error(\"Value must be an array in multiple-selection mode.\");this._selectionModel.clear(),e.forEach(e=>this._selectValue(e)),this._sortValues()}else{this._selectionModel.clear();const t=this._selectValue(e);t?this._keyManager.setActiveItem(t):this.panelOpen||this._keyManager.setActiveItem(-1)}this._changeDetectorRef.markForCheck()}_selectValue(e){const t=this.options.find(t=>{try{return null!=t.value&&this._compareWith(t.value,e)}catch(n){return Si()&&console.warn(n),!1}});return t&&this._selectionModel.select(t),t}_initKeyManager(){this._keyManager=new Ip(this.options).withTypeAhead(this._typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?\"rtl\":\"ltr\").withAllowedModifierKeys([\"shiftKey\"]),this._keyManager.tabOut.pipe(Nb(this._destroy)).subscribe(()=>{!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction(),this.focus(),this.close()}),this._keyManager.change.pipe(Nb(this._destroy)).subscribe(()=>{this._panelOpen&&this.panel?this._scrollActiveOptionIntoView():this._panelOpen||this.multiple||!this._keyManager.activeItem||this._keyManager.activeItem._selectViaInteraction()})}_resetOptions(){const e=G(this.options.changes,this._destroy);this.optionSelectionChanges.pipe(Nb(e)).subscribe(e=>{this._onSelect(e.source,e.isUserInput),e.isUserInput&&!this.multiple&&this._panelOpen&&(this.close(),this.focus())}),G(...this.options.map(e=>e._stateChanges)).pipe(Nb(e)).subscribe(()=>{this._changeDetectorRef.markForCheck(),this.stateChanges.next()}),this._setOptionIds()}_onSelect(e,t){const n=this._selectionModel.isSelected(e);null!=e.value||this._multiple?(n!==e.selected&&(e.selected?this._selectionModel.select(e):this._selectionModel.deselect(e)),t&&this._keyManager.setActiveItem(e),this.multiple&&(this._sortValues(),t&&this.focus())):(e.deselect(),this._selectionModel.clear(),this._propagateChanges(e.value)),n!==this._selectionModel.isSelected(e)&&this._propagateChanges(),this.stateChanges.next()}_sortValues(){if(this.multiple){const e=this.options.toArray();this._selectionModel.sort((t,n)=>this.sortComparator?this.sortComparator(t,n,e):e.indexOf(t)-e.indexOf(n)),this.stateChanges.next()}}_propagateChanges(e){let t=null;t=this.multiple?this.selected.map(e=>e.value):this.selected?this.selected.value:e,this._value=t,this.valueChange.emit(t),this._onChange(t),this.selectionChange.emit(new hk(this,t)),this._changeDetectorRef.markForCheck()}_setOptionIds(){this._optionIds=this.options.map(e=>e.id).join(\" \")}_highlightCorrectOption(){this._keyManager&&(this.empty?this._keyManager.setFirstItemActive():this._keyManager.setActiveItem(this._selectionModel.selected[0]))}_scrollActiveOptionIntoView(){const e=this._keyManager.activeItemIndex||0,t=Ny(e,this.options,this.optionGroups);this.panel.nativeElement.scrollTop=function(e,t,n,i){const s=e*t;return sn+256?Math.max(0,s-256+t):n}(e+t,this._getItemHeight(),this.panel.nativeElement.scrollTop)}focus(e){this._elementRef.nativeElement.focus(e)}_getOptionIndex(e){return this.options.reduce((t,n,i)=>void 0!==t?t:e===n?i:void 0,void 0)}_calculateOverlayPosition(){const e=this._getItemHeight(),t=this._getItemCount(),n=Math.min(t*e,256),i=t*e-n;let s=this.empty?0:this._getOptionIndex(this._selectionModel.selected[0]);s+=Ny(s,this.options,this.optionGroups);const r=n/2;this._scrollTop=this._calculateOverlayScroll(s,r,i),this._offsetY=this._calculateOverlayOffsetY(s,r,i),this._checkOverlayWithinViewport(i)}_calculateOverlayScroll(e,t,n){const i=this._getItemHeight();return Math.min(Math.max(0,i*e-t+i/2),n)}_getAriaLabel(){return this.ariaLabelledby?null:this.ariaLabel||this.placeholder}_getAriaLabelledby(){return this.ariaLabelledby?this.ariaLabelledby:this._parentFormField&&this._parentFormField._hasFloatingLabel()&&!this._getAriaLabel()&&this._parentFormField._labelId||null}_getAriaActiveDescendant(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}_calculateOverlayOffsetX(){const e=this.overlayDir.overlayRef.overlayElement.getBoundingClientRect(),t=this._viewportRuler.getViewportSize(),n=this._isRtl(),i=this.multiple?56:32;let s;if(this.multiple)s=40;else{let e=this._selectionModel.selected[0]||this.options.first;s=e&&e.group?32:16}n||(s*=-1);const r=0-(e.left+s-(n?i:0)),o=e.right+s-t.width+(n?0:i);r>0?s+=r+8:o>0&&(s-=o+8),this.overlayDir.offsetX=Math.round(s),this.overlayDir.overlayRef.updatePosition()}_calculateOverlayOffsetY(e,t,n){const i=this._getItemHeight(),s=(i-this._triggerRect.height)/2,r=Math.floor(256/i);let o;return this._disableOptionCentering?0:(o=0===this._scrollTop?e*i:this._scrollTop===n?(e-(this._getItemCount()-r))*i+(i-(this._getItemCount()*i-256)%i):t-i/2,Math.round(-1*o-s))}_checkOverlayWithinViewport(e){const t=this._getItemHeight(),n=this._viewportRuler.getViewportSize(),i=this._triggerRect.top-8,s=n.height-this._triggerRect.bottom-8,r=Math.abs(this._offsetY),o=Math.min(this._getItemCount()*t,256)-r-this._triggerRect.height;o>s?this._adjustPanelUp(o,s):r>i?this._adjustPanelDown(r,i,e):this._transformOrigin=this._getOriginBasedOnOption()}_adjustPanelUp(e,t){const n=Math.round(e-t);this._scrollTop-=n,this._offsetY-=n,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop<=0&&(this._scrollTop=0,this._offsetY=0,this._transformOrigin=\"50% bottom 0px\")}_adjustPanelDown(e,t,n){const i=Math.round(e-t);if(this._scrollTop+=i,this._offsetY+=i,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop>=n)return this._scrollTop=n,this._offsetY=0,void(this._transformOrigin=\"50% top 0px\")}_getOriginBasedOnOption(){const e=this._getItemHeight(),t=(e-this._triggerRect.height)/2;return`50% ${Math.abs(this._offsetY)-t+e/2}px 0px`}_getItemCount(){return this.options.length+this.optionGroups.length}_getItemHeight(){return 3*this._triggerFontSize}setDescribedByIds(e){this._ariaDescribedby=e.join(\" \")}onContainerClick(){this.focus(),this.open()}get shouldLabelFloat(){return this._panelOpen||!this.empty}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ov),Eo(Qr),Eo(ld),Eo(vy),Eo(Ka),Eo(Gp,8),Eo(bm,8),Eo(Im,8),Eo(dM,8),Eo(wh,10),Oo(\"tabindex\"),Eo(ck),Eo(Vp),Eo(dk,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-select\"]],contentQueries:function(e,t,n){var i;1&e&&(Ic(n,fk,!0),Ic(n,Fy,!0),Ic(n,Py,!0)),2&e&&(Dc(i=Rc())&&(t.customTrigger=i.first),Dc(i=Rc())&&(t.options=i),Dc(i=Rc())&&(t.optionGroups=i))},viewQuery:function(e,t){var n;1&e&&(Ec(QM,!0),Ec(XM,!0),Ec(Uv,!0)),2&e&&(Dc(n=Rc())&&(t.trigger=n.first),Dc(n=Rc())&&(t.panel=n.first),Dc(n=Rc())&&(t.overlayDir=n.first))},hostAttrs:[\"role\",\"listbox\",1,\"mat-select\"],hostVars:19,hostBindings:function(e,t){1&e&&Uo(\"keydown\",(function(e){return t._handleKeydown(e)}))(\"focus\",(function(){return t._onFocus()}))(\"blur\",(function(){return t._onBlur()})),2&e&&(Co(\"id\",t.id)(\"tabindex\",t.tabIndex)(\"aria-label\",t._getAriaLabel())(\"aria-labelledby\",t._getAriaLabelledby())(\"aria-required\",t.required.toString())(\"aria-disabled\",t.disabled.toString())(\"aria-invalid\",t.errorState)(\"aria-owns\",t.panelOpen?t._optionIds:null)(\"aria-multiselectable\",t.multiple)(\"aria-describedby\",t._ariaDescribedby||null)(\"aria-activedescendant\",t._getAriaActiveDescendant()),ua(\"mat-select-disabled\",t.disabled)(\"mat-select-invalid\",t.errorState)(\"mat-select-required\",t.required)(\"mat-select-empty\",t.empty))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",tabIndex:\"tabIndex\",ariaLabel:[\"aria-label\",\"ariaLabel\"],id:\"id\",disableOptionCentering:\"disableOptionCentering\",typeaheadDebounceInterval:\"typeaheadDebounceInterval\",placeholder:\"placeholder\",required:\"required\",multiple:\"multiple\",compareWith:\"compareWith\",value:\"value\",panelClass:\"panelClass\",ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],errorStateMatcher:\"errorStateMatcher\",sortComparator:\"sortComparator\"},outputs:{openedChange:\"openedChange\",_openedStream:\"opened\",_closedStream:\"closed\",selectionChange:\"selectionChange\",valueChange:\"valueChange\"},exportAs:[\"matSelect\"],features:[Ba([{provide:Qw,useExisting:e},{provide:jy,useExisting:e}]),Ya,Ra],ngContentSelectors:ok,decls:9,vars:9,consts:[[\"cdk-overlay-origin\",\"\",\"aria-hidden\",\"true\",1,\"mat-select-trigger\",3,\"click\"],[\"origin\",\"cdkOverlayOrigin\",\"trigger\",\"\"],[1,\"mat-select-value\",3,\"ngSwitch\"],[\"class\",\"mat-select-placeholder\",4,\"ngSwitchCase\"],[\"class\",\"mat-select-value-text\",3,\"ngSwitch\",4,\"ngSwitchCase\"],[1,\"mat-select-arrow-wrapper\"],[1,\"mat-select-arrow\"],[\"cdk-connected-overlay\",\"\",\"cdkConnectedOverlayLockPosition\",\"\",\"cdkConnectedOverlayHasBackdrop\",\"\",\"cdkConnectedOverlayBackdropClass\",\"cdk-overlay-transparent-backdrop\",3,\"cdkConnectedOverlayScrollStrategy\",\"cdkConnectedOverlayOrigin\",\"cdkConnectedOverlayOpen\",\"cdkConnectedOverlayPositions\",\"cdkConnectedOverlayMinWidth\",\"cdkConnectedOverlayOffsetY\",\"backdropClick\",\"attach\",\"detach\"],[1,\"mat-select-placeholder\"],[1,\"mat-select-value-text\",3,\"ngSwitch\"],[4,\"ngSwitchDefault\"],[4,\"ngSwitchCase\"],[1,\"mat-select-panel-wrap\"],[3,\"ngClass\",\"keydown\"],[\"panel\",\"\"]],template:function(e,t){if(1&e&&(Zo(rk),Ro(0,\"div\",0,1),Uo(\"click\",(function(){return t.toggle()})),Ro(3,\"div\",2),Do(4,ek,2,1,\"span\",3),Do(5,ik,3,2,\"span\",4),Ho(),Ro(6,\"div\",5),jo(7,\"div\",6),Ho(),Ho(),Do(8,sk,4,10,\"ng-template\",7),Uo(\"backdropClick\",(function(){return t.close()}))(\"attach\",(function(){return t._onAttached()}))(\"detach\",(function(){return t.close()}))),2&e){const e=Yo(1);ys(3),Po(\"ngSwitch\",t.empty),ys(1),Po(\"ngSwitchCase\",!0),ys(1),Po(\"ngSwitchCase\",!1),ys(3),Po(\"cdkConnectedOverlayScrollStrategy\",t._scrollStrategy)(\"cdkConnectedOverlayOrigin\",e)(\"cdkConnectedOverlayOpen\",t.panelOpen)(\"cdkConnectedOverlayPositions\",t._positions)(\"cdkConnectedOverlayMinWidth\",null==t._triggerRect?null:t._triggerRect.width)(\"cdkConnectedOverlayOffsetY\",t._offsetY)}},directives:[Wv,gu,yu,Uv,bu,cu],styles:[\".mat-select{display:inline-block;width:100%;outline:none}.mat-select-trigger{display:inline-table;cursor:pointer;position:relative;box-sizing:border-box}.mat-select-disabled .mat-select-trigger{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-select-value{display:table-cell;max-width:0;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-select-arrow-wrapper{display:table-cell;vertical-align:middle}.mat-form-field-appearance-fill .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-outline .mat-select-arrow-wrapper{transform:translateY(-25%)}.mat-form-field-appearance-standard.mat-form-field-has-label .mat-select:not(.mat-select-empty) .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:none}.mat-select-arrow{width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;margin:0 4px}.mat-select-panel-wrap{flex-basis:100%}.mat-select-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;padding-top:0;padding-bottom:0;max-height:256px;min-width:100%;border-radius:4px}.cdk-high-contrast-active .mat-select-panel{outline:solid 1px}.mat-select-panel .mat-optgroup-label,.mat-select-panel .mat-option{font-size:inherit;line-height:3em;height:3em}.mat-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-form-field-flex{cursor:pointer}.mat-form-field-type-mat-select .mat-form-field-label{width:calc(100% - 18px)}.mat-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable .mat-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-select-placeholder{color:transparent;-webkit-text-fill-color:transparent;transition:none;display:block}\\n\"],encapsulation:2,data:{animation:[ak.transformPanelWrap,ak.transformPanel]},changeDetection:0}),e})(),gk=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[uk],imports:[[Mu,Bv,zy,py],uM,zy,py]}),e})();const yk=[\"*\"];function bk(e,t){if(1&e){const e=zo();Ro(0,\"div\",2),Uo(\"click\",(function(){return en(e),Jo()._onBackdropClicked()})),Ho()}2&e&&ua(\"mat-drawer-shown\",Jo()._isShowingBackdrop())}function vk(e,t){1&e&&(Ro(0,\"mat-drawer-content\"),ea(1,2),Ho())}const wk=[[[\"mat-drawer\"]],[[\"mat-drawer-content\"]],\"*\"],Mk=[\"mat-drawer\",\"mat-drawer-content\",\"*\"];function kk(e,t){if(1&e){const e=zo();Ro(0,\"div\",2),Uo(\"click\",(function(){return en(e),Jo()._onBackdropClicked()})),Ho()}2&e&&ua(\"mat-drawer-shown\",Jo()._isShowingBackdrop())}function Sk(e,t){1&e&&(Ro(0,\"mat-sidenav-content\",3),ea(1,2),Ho())}const Lk=[[[\"mat-sidenav\"]],[[\"mat-sidenav-content\"]],\"*\"],xk=[\"mat-sidenav\",\"mat-sidenav-content\",\"*\"],Ck={transformDrawer:jf(\"transform\",[Wf(\"open, open-instant\",Vf({transform:\"none\",visibility:\"visible\"})),Wf(\"void\",Vf({\"box-shadow\":\"none\",visibility:\"hidden\"})),Uf(\"void => open-instant\",Ff(\"0ms\")),Uf(\"void <=> open, open-instant => void\",Ff(\"400ms cubic-bezier(0.25, 0.8, 0.25, 1)\"))])};function Tk(e){throw Error(`A drawer was already declared for 'position=\"${e}\"'`)}const Dk=new Ve(\"MAT_DRAWER_DEFAULT_AUTOSIZE\",{providedIn:\"root\",factory:function(){return!1}}),Yk=new Ve(\"MAT_DRAWER_CONTAINER\");let Ek=(()=>{class e extends rv{constructor(e,t,n,i,s){super(n,i,s),this._changeDetectorRef=e,this._container=t}ngAfterContentInit(){this._container._contentMarginChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Qr),Eo(Ce(()=>Ik)),Eo(Ka),Eo(sv),Eo(ld))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-drawer-content\"]],hostAttrs:[1,\"mat-drawer-content\"],hostVars:4,hostBindings:function(e,t){2&e&&da(\"margin-left\",t._container._contentMargins.left,\"px\")(\"margin-right\",t._container._contentMargins.right,\"px\")},features:[Ya],ngContentSelectors:yk,decls:1,vars:0,template:function(e,t){1&e&&(Zo(),ea(0))},encapsulation:2,changeDetection:0}),e})(),Ok=(()=>{class e{constructor(e,t,n,i,s,r,o){this._elementRef=e,this._focusTrapFactory=t,this._focusMonitor=n,this._platform=i,this._ngZone=s,this._doc=r,this._container=o,this._elementFocusedBeforeDrawerWasOpened=null,this._enableAnimations=!1,this._position=\"start\",this._mode=\"over\",this._disableClose=!1,this._opened=!1,this._animationStarted=new L,this._animationEnd=new L,this._animationState=\"void\",this.openedChange=new yc(!0),this._destroyed=new L,this.onPositionChanged=new yc,this._modeChanged=new L,this.openedChange.subscribe(e=>{e?(this._doc&&(this._elementFocusedBeforeDrawerWasOpened=this._doc.activeElement),this._takeFocus()):this._restoreFocus()}),this._ngZone.runOutsideAngular(()=>{Mb(this._elementRef.nativeElement,\"keydown\").pipe(Tu(e=>27===e.keyCode&&!this.disableClose&&!qm(e)),Nb(this._destroyed)).subscribe(e=>this._ngZone.run(()=>{this.close(),e.stopPropagation(),e.preventDefault()}))}),this._animationEnd.pipe(Eb((e,t)=>e.fromState===t.fromState&&e.toState===t.toState)).subscribe(e=>{const{fromState:t,toState:n}=e;(0===n.indexOf(\"open\")&&\"void\"===t||\"void\"===n&&0===t.indexOf(\"open\"))&&this.openedChange.emit(this._opened)})}get position(){return this._position}set position(e){(e=\"end\"===e?\"end\":\"start\")!=this._position&&(this._position=e,this.onPositionChanged.emit())}get mode(){return this._mode}set mode(e){this._mode=e,this._updateFocusTrapState(),this._modeChanged.next()}get disableClose(){return this._disableClose}set disableClose(e){this._disableClose=hp(e)}get autoFocus(){const e=this._autoFocus;return null==e?\"side\"!==this.mode:e}set autoFocus(e){this._autoFocus=hp(e)}get opened(){return this._opened}set opened(e){this.toggle(hp(e))}get _openedStream(){return this.openedChange.pipe(Tu(e=>e),H(()=>{}))}get openedStart(){return this._animationStarted.pipe(Tu(e=>e.fromState!==e.toState&&0===e.toState.indexOf(\"open\")),H(()=>{}))}get _closedStream(){return this.openedChange.pipe(Tu(e=>!e),H(()=>{}))}get closedStart(){return this._animationStarted.pipe(Tu(e=>e.fromState!==e.toState&&\"void\"===e.toState),H(()=>{}))}_takeFocus(){this.autoFocus&&this._focusTrap&&this._focusTrap.focusInitialElementWhenReady().then(e=>{e||\"function\"!=typeof this._elementRef.nativeElement.focus||this._elementRef.nativeElement.focus()})}_restoreFocus(){if(!this.autoFocus)return;const e=this._doc&&this._doc.activeElement;e&&this._elementRef.nativeElement.contains(e)&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,this._openedVia):this._elementRef.nativeElement.blur()),this._elementFocusedBeforeDrawerWasOpened=null,this._openedVia=null}ngAfterContentInit(){this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState()}ngAfterContentChecked(){this._platform.isBrowser&&(this._enableAnimations=!0)}ngOnDestroy(){this._focusTrap&&this._focusTrap.destroy(),this._animationStarted.complete(),this._animationEnd.complete(),this._modeChanged.complete(),this._destroyed.next(),this._destroyed.complete()}open(e){return this.toggle(!0,e)}close(){return this.toggle(!1)}toggle(e=!this.opened,t=\"program\"){return this._opened=e,e?(this._animationState=this._enableAnimations?\"open\":\"open-instant\",this._openedVia=t):(this._animationState=\"void\",this._restoreFocus()),this._updateFocusTrapState(),new Promise(e=>{this.openedChange.pipe(cp(1)).subscribe(t=>e(t?\"open\":\"close\"))})}get _width(){return this._elementRef.nativeElement&&this._elementRef.nativeElement.offsetWidth||0}_updateFocusTrapState(){this._focusTrap&&(this._focusTrap.enabled=this.opened&&\"side\"!==this.mode)}_animationStartListener(e){this._animationStarted.next(e)}_animationDoneListener(e){this._animationEnd.next(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Fp),Eo(Up),Eo(bp),Eo(ld),Eo(Nd,8),Eo(Yk,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-drawer\"]],hostAttrs:[\"tabIndex\",\"-1\",1,\"mat-drawer\"],hostVars:12,hostBindings:function(e,t){1&e&&$o(\"@transform.start\",(function(e){return t._animationStartListener(e)}))(\"@transform.done\",(function(e){return t._animationDoneListener(e)})),2&e&&(Co(\"align\",null),Ta(\"@transform\",t._animationState),ua(\"mat-drawer-end\",\"end\"===t.position)(\"mat-drawer-over\",\"over\"===t.mode)(\"mat-drawer-push\",\"push\"===t.mode)(\"mat-drawer-side\",\"side\"===t.mode)(\"mat-drawer-opened\",t.opened))},inputs:{position:\"position\",mode:\"mode\",disableClose:\"disableClose\",autoFocus:\"autoFocus\",opened:\"opened\"},outputs:{openedChange:\"openedChange\",onPositionChanged:\"positionChanged\",_openedStream:\"opened\",openedStart:\"openedStart\",_closedStream:\"closed\",closedStart:\"closedStart\"},exportAs:[\"matDrawer\"],ngContentSelectors:yk,decls:2,vars:0,consts:[[1,\"mat-drawer-inner-container\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"div\",0),ea(1),Ho())},encapsulation:2,data:{animation:[Ck.transformDrawer]},changeDetection:0}),e})(),Ik=(()=>{class e{constructor(e,t,n,i,s,r=!1,o){this._dir=e,this._element=t,this._ngZone=n,this._changeDetectorRef=i,this._animationMode=o,this._drawers=new vc,this.backdropClick=new yc,this._destroyed=new L,this._doCheckSubject=new L,this._contentMargins={left:null,right:null},this._contentMarginChanges=new L,e&&e.change.pipe(Nb(this._destroyed)).subscribe(()=>{this._validateDrawers(),this.updateContentMargins()}),s.change().pipe(Nb(this._destroyed)).subscribe(()=>this.updateContentMargins()),this._autosize=r}get start(){return this._start}get end(){return this._end}get autosize(){return this._autosize}set autosize(e){this._autosize=hp(e)}get hasBackdrop(){return null==this._backdropOverride?!this._start||\"side\"!==this._start.mode||!this._end||\"side\"!==this._end.mode:this._backdropOverride}set hasBackdrop(e){this._backdropOverride=null==e?null:hp(e)}get scrollable(){return this._userContent||this._content}ngAfterContentInit(){this._allDrawers.changes.pipe(Rf(this._allDrawers),Nb(this._destroyed)).subscribe(e=>{this._drawers.reset(e.filter(e=>!e._container||e._container===this)),this._drawers.notifyOnChanges()}),this._drawers.changes.pipe(Rf(null)).subscribe(()=>{this._validateDrawers(),this._drawers.forEach(e=>{this._watchDrawerToggle(e),this._watchDrawerPosition(e),this._watchDrawerMode(e)}),(!this._drawers.length||this._isDrawerOpen(this._start)||this._isDrawerOpen(this._end))&&this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),this._doCheckSubject.pipe(np(10),Nb(this._destroyed)).subscribe(()=>this.updateContentMargins())}ngOnDestroy(){this._contentMarginChanges.complete(),this._doCheckSubject.complete(),this._drawers.destroy(),this._destroyed.next(),this._destroyed.complete()}open(){this._drawers.forEach(e=>e.open())}close(){this._drawers.forEach(e=>e.close())}updateContentMargins(){let e=0,t=0;if(this._left&&this._left.opened)if(\"side\"==this._left.mode)e+=this._left._width;else if(\"push\"==this._left.mode){const n=this._left._width;e+=n,t-=n}if(this._right&&this._right.opened)if(\"side\"==this._right.mode)t+=this._right._width;else if(\"push\"==this._right.mode){const n=this._right._width;t+=n,e-=n}e=e||null,t=t||null,e===this._contentMargins.left&&t===this._contentMargins.right||(this._contentMargins={left:e,right:t},this._ngZone.run(()=>this._contentMarginChanges.next(this._contentMargins)))}ngDoCheck(){this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular(()=>this._doCheckSubject.next())}_watchDrawerToggle(e){e._animationStarted.pipe(Tu(e=>e.fromState!==e.toState),Nb(this._drawers.changes)).subscribe(e=>{\"open-instant\"!==e.toState&&\"NoopAnimations\"!==this._animationMode&&this._element.nativeElement.classList.add(\"mat-drawer-transition\"),this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),\"side\"!==e.mode&&e.openedChange.pipe(Nb(this._drawers.changes)).subscribe(()=>this._setContainerClass(e.opened))}_watchDrawerPosition(e){e&&e.onPositionChanged.pipe(Nb(this._drawers.changes)).subscribe(()=>{this._ngZone.onMicrotaskEmpty.asObservable().pipe(cp(1)).subscribe(()=>{this._validateDrawers()})})}_watchDrawerMode(e){e&&e._modeChanged.pipe(Nb(G(this._drawers.changes,this._destroyed))).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()})}_setContainerClass(e){const t=this._element.nativeElement.classList,n=\"mat-drawer-container-has-open\";e?t.add(n):t.remove(n)}_validateDrawers(){this._start=this._end=null,this._drawers.forEach(e=>{\"end\"==e.position?(null!=this._end&&Tk(\"end\"),this._end=e):(null!=this._start&&Tk(\"start\"),this._start=e)}),this._right=this._left=null,this._dir&&\"rtl\"===this._dir.value?(this._left=this._end,this._right=this._start):(this._left=this._start,this._right=this._end)}_isPushed(){return this._isDrawerOpen(this._start)&&\"over\"!=this._start.mode||this._isDrawerOpen(this._end)&&\"over\"!=this._end.mode}_onBackdropClicked(){this.backdropClick.emit(),this._closeModalDrawer()}_closeModalDrawer(){[this._start,this._end].filter(e=>e&&!e.disableClose&&this._canHaveBackdrop(e)).forEach(e=>e.close())}_isShowingBackdrop(){return this._isDrawerOpen(this._start)&&this._canHaveBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._canHaveBackdrop(this._end)}_canHaveBackdrop(e){return\"side\"!==e.mode||!!this._backdropOverride}_isDrawerOpen(e){return null!=e&&e.opened}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Gp,8),Eo(Ka),Eo(ld),Eo(Qr),Eo(ov),Eo(Dk),Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-drawer-container\"]],contentQueries:function(e,t,n){var i;1&e&&(Ic(n,Ek,!0),Ic(n,Ok,!0)),2&e&&(Dc(i=Rc())&&(t._content=i.first),Dc(i=Rc())&&(t._allDrawers=i))},viewQuery:function(e,t){var n;1&e&&Ec(Ek,!0),2&e&&Dc(n=Rc())&&(t._userContent=n.first)},hostAttrs:[1,\"mat-drawer-container\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"mat-drawer-container-explicit-backdrop\",t._backdropOverride)},inputs:{autosize:\"autosize\",hasBackdrop:\"hasBackdrop\"},outputs:{backdropClick:\"backdropClick\"},exportAs:[\"matDrawerContainer\"],features:[Ba([{provide:Yk,useExisting:e}])],ngContentSelectors:Mk,decls:4,vars:2,consts:[[\"class\",\"mat-drawer-backdrop\",3,\"mat-drawer-shown\",\"click\",4,\"ngIf\"],[4,\"ngIf\"],[1,\"mat-drawer-backdrop\",3,\"click\"]],template:function(e,t){1&e&&(Zo(wk),Do(0,bk,1,2,\"div\",0),ea(1),ea(2,1),Do(3,vk,2,0,\"mat-drawer-content\",1)),2&e&&(Po(\"ngIf\",t.hasBackdrop),ys(3),Po(\"ngIf\",!t._content))},directives:[mu,Ek],styles:[\".mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\\n\"],encapsulation:2,changeDetection:0}),e})(),Pk=(()=>{class e extends Ek{constructor(e,t,n,i,s){super(e,t,n,i,s)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Qr),Eo(Ce(()=>Hk)),Eo(Ka),Eo(sv),Eo(ld))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-sidenav-content\"]],hostAttrs:[1,\"mat-drawer-content\",\"mat-sidenav-content\"],hostVars:4,hostBindings:function(e,t){2&e&&da(\"margin-left\",t._container._contentMargins.left,\"px\")(\"margin-right\",t._container._contentMargins.right,\"px\")},features:[Ya],ngContentSelectors:yk,decls:1,vars:0,template:function(e,t){1&e&&(Zo(),ea(0))},encapsulation:2,changeDetection:0}),e})(),Ak=(()=>{class e extends Ok{constructor(){super(...arguments),this._fixedInViewport=!1,this._fixedTopGap=0,this._fixedBottomGap=0}get fixedInViewport(){return this._fixedInViewport}set fixedInViewport(e){this._fixedInViewport=hp(e)}get fixedTopGap(){return this._fixedTopGap}set fixedTopGap(e){this._fixedTopGap=mp(e)}get fixedBottomGap(){return this._fixedBottomGap}set fixedBottomGap(e){this._fixedBottomGap=mp(e)}}return e.\\u0275fac=function(t){return Rk(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-sidenav\"]],hostAttrs:[\"tabIndex\",\"-1\",1,\"mat-drawer\",\"mat-sidenav\"],hostVars:17,hostBindings:function(e,t){2&e&&(Co(\"align\",null),da(\"top\",t.fixedInViewport?t.fixedTopGap:null,\"px\")(\"bottom\",t.fixedInViewport?t.fixedBottomGap:null,\"px\"),ua(\"mat-drawer-end\",\"end\"===t.position)(\"mat-drawer-over\",\"over\"===t.mode)(\"mat-drawer-push\",\"push\"===t.mode)(\"mat-drawer-side\",\"side\"===t.mode)(\"mat-drawer-opened\",t.opened)(\"mat-sidenav-fixed\",t.fixedInViewport))},inputs:{fixedInViewport:\"fixedInViewport\",fixedTopGap:\"fixedTopGap\",fixedBottomGap:\"fixedBottomGap\"},exportAs:[\"matSidenav\"],features:[Ya],ngContentSelectors:yk,decls:2,vars:0,consts:[[1,\"mat-drawer-inner-container\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"div\",0),ea(1),Ho())},encapsulation:2,data:{animation:[Ck.transformDrawer]},changeDetection:0}),e})();const Rk=li(Ak);let Hk=(()=>{class e extends Ik{}return e.\\u0275fac=function(t){return jk(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-sidenav-container\"]],contentQueries:function(e,t,n){var i;1&e&&(Ic(n,Pk,!0),Ic(n,Ak,!0)),2&e&&(Dc(i=Rc())&&(t._content=i.first),Dc(i=Rc())&&(t._allDrawers=i))},hostAttrs:[1,\"mat-drawer-container\",\"mat-sidenav-container\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"mat-drawer-container-explicit-backdrop\",t._backdropOverride)},exportAs:[\"matSidenavContainer\"],features:[Ba([{provide:Yk,useExisting:e}]),Ya],ngContentSelectors:xk,decls:4,vars:2,consts:[[\"class\",\"mat-drawer-backdrop\",3,\"mat-drawer-shown\",\"click\",4,\"ngIf\"],[\"cdkScrollable\",\"\",4,\"ngIf\"],[1,\"mat-drawer-backdrop\",3,\"click\"],[\"cdkScrollable\",\"\"]],template:function(e,t){1&e&&(Zo(Lk),Do(0,kk,1,2,\"div\",0),ea(1),ea(2,1),Do(3,Sk,2,0,\"mat-sidenav-content\",1)),2&e&&(Po(\"ngIf\",t.hasBackdrop),ys(3),Po(\"ngIf\",!t._content))},directives:[mu,Pk,rv],styles:[\".mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\\n\"],encapsulation:2,changeDetection:0}),e})();const jk=li(Hk);let Fk=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu,py,av,vp],py]}),e})();const Nk=[\"thumbContainer\"],zk=[\"toggleBar\"],Vk=[\"input\"],Wk=function(){return{enterDuration:150}},Uk=[\"*\"],$k=new Ve(\"mat-slide-toggle-default-options\",{providedIn:\"root\",factory:()=>({disableToggleValue:!1})});let Bk=0;const qk={provide:uh,useExisting:Ce(()=>Zk),multi:!0};class Gk{constructor(e,t){this.source=e,this.checked=t}}class Jk{constructor(e){this._elementRef=e}}const Kk=yy(_y(gy(fy(Jk)),\"accent\"));let Zk=(()=>{class e extends Kk{constructor(e,t,n,i,s,r,o,a){super(e),this._focusMonitor=t,this._changeDetectorRef=n,this.defaults=r,this._animationMode=o,this._onChange=e=>{},this._onTouched=()=>{},this._uniqueId=`mat-slide-toggle-${++Bk}`,this._required=!1,this._checked=!1,this.name=null,this.id=this._uniqueId,this.labelPosition=\"after\",this.ariaLabel=null,this.ariaLabelledby=null,this.change=new yc,this.toggleChange=new yc,this.dragChange=new yc,this.tabIndex=parseInt(i)||0}get required(){return this._required}set required(e){this._required=hp(e)}get checked(){return this._checked}set checked(e){this._checked=hp(e),this._changeDetectorRef.markForCheck()}get inputId(){return`${this.id||this._uniqueId}-input`}ngAfterContentInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(e=>{\"keyboard\"===e||\"program\"===e?this._inputElement.nativeElement.focus():e||Promise.resolve().then(()=>this._onTouched())})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}_onChangeEvent(e){e.stopPropagation(),this.toggleChange.emit(),this.defaults.disableToggleValue?this._inputElement.nativeElement.checked=this.checked:(this.checked=this._inputElement.nativeElement.checked,this._emitChangeEvent())}_onInputClick(e){e.stopPropagation()}writeValue(e){this.checked=!!e}registerOnChange(e){this._onChange=e}registerOnTouched(e){this._onTouched=e}setDisabledState(e){this.disabled=e,this._changeDetectorRef.markForCheck()}focus(e){this._focusMonitor.focusVia(this._inputElement,\"keyboard\",e)}toggle(){this.checked=!this.checked,this._onChange(this.checked)}_emitChangeEvent(){this._onChange(this.checked),this.change.emit(new Gk(this,this.checked))}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Up),Eo(Qr),Oo(\"tabindex\"),Eo(ld),Eo($k),Eo(sy,8),Eo(Gp,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-slide-toggle\"]],viewQuery:function(e,t){var n;1&e&&(Ec(Nk,!0),Ec(zk,!0),Ec(Vk,!0)),2&e&&(Dc(n=Rc())&&(t._thumbEl=n.first),Dc(n=Rc())&&(t._thumbBarEl=n.first),Dc(n=Rc())&&(t._inputElement=n.first))},hostAttrs:[1,\"mat-slide-toggle\"],hostVars:12,hostBindings:function(e,t){2&e&&(Ca(\"id\",t.id),Co(\"tabindex\",t.disabled?null:-1)(\"aria-label\",null)(\"aria-labelledby\",null),ua(\"mat-checked\",t.checked)(\"mat-disabled\",t.disabled)(\"mat-slide-toggle-label-before\",\"before\"==t.labelPosition)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\",name:\"name\",id:\"id\",labelPosition:\"labelPosition\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],required:\"required\",checked:\"checked\"},outputs:{change:\"change\",toggleChange:\"toggleChange\",dragChange:\"dragChange\"},exportAs:[\"matSlideToggle\"],features:[Ba([qk]),Ya],ngContentSelectors:Uk,decls:16,vars:18,consts:[[1,\"mat-slide-toggle-label\"],[\"label\",\"\"],[1,\"mat-slide-toggle-bar\"],[\"toggleBar\",\"\"],[\"type\",\"checkbox\",\"role\",\"switch\",1,\"mat-slide-toggle-input\",\"cdk-visually-hidden\",3,\"id\",\"required\",\"tabIndex\",\"checked\",\"disabled\",\"change\",\"click\"],[\"input\",\"\"],[1,\"mat-slide-toggle-thumb-container\"],[\"thumbContainer\",\"\"],[1,\"mat-slide-toggle-thumb\"],[\"mat-ripple\",\"\",1,\"mat-slide-toggle-ripple\",\"mat-focus-indicator\",3,\"matRippleTrigger\",\"matRippleDisabled\",\"matRippleCentered\",\"matRippleRadius\",\"matRippleAnimation\"],[1,\"mat-ripple-element\",\"mat-slide-toggle-persistent-ripple\"],[1,\"mat-slide-toggle-content\",3,\"cdkObserveContent\"],[\"labelContent\",\"\"],[2,\"display\",\"none\"]],template:function(e,t){if(1&e&&(Zo(),Ro(0,\"label\",0,1),Ro(2,\"div\",2,3),Ro(4,\"input\",4,5),Uo(\"change\",(function(e){return t._onChangeEvent(e)}))(\"click\",(function(e){return t._onInputClick(e)})),Ho(),Ro(6,\"div\",6,7),jo(8,\"div\",8),Ro(9,\"div\",9),jo(10,\"div\",10),Ho(),Ho(),Ho(),Ro(11,\"span\",11,12),Uo(\"cdkObserveContent\",(function(){return t._onLabelTextChange()})),Ro(13,\"span\",13),Sa(14,\"\\xa0\"),Ho(),ea(15),Ho(),Ho()),2&e){const e=Yo(1),n=Yo(12);Co(\"for\",t.inputId),ys(2),ua(\"mat-slide-toggle-bar-no-side-margin\",!n.textContent||!n.textContent.trim()),ys(2),Po(\"id\",t.inputId)(\"required\",t.required)(\"tabIndex\",t.tabIndex)(\"checked\",t.checked)(\"disabled\",t.disabled),Co(\"name\",t.name)(\"aria-checked\",t.checked.toString())(\"aria-label\",t.ariaLabel)(\"aria-labelledby\",t.ariaLabelledby),ys(5),Po(\"matRippleTrigger\",e)(\"matRippleDisabled\",t.disableRipple||t.disabled)(\"matRippleCentered\",!0)(\"matRippleRadius\",20)(\"matRippleAnimation\",gc(17,Wk))}},directives:[Cy,Yp],styles:[\".mat-slide-toggle{display:inline-block;height:24px;max-width:100%;line-height:24px;white-space:nowrap;outline:none;-webkit-tap-highlight-color:transparent}.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(16px, 0, 0)}[dir=rtl] .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(-16px, 0, 0)}.mat-slide-toggle.mat-disabled{opacity:.38}.mat-slide-toggle.mat-disabled .mat-slide-toggle-label,.mat-slide-toggle.mat-disabled .mat-slide-toggle-thumb-container{cursor:default}.mat-slide-toggle-label{display:flex;flex:1;flex-direction:row;align-items:center;height:inherit;cursor:pointer}.mat-slide-toggle-content{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-slide-toggle-label-before .mat-slide-toggle-label{order:1}.mat-slide-toggle-label-before .mat-slide-toggle-bar{order:2}[dir=rtl] .mat-slide-toggle-label-before .mat-slide-toggle-bar,.mat-slide-toggle-bar{margin-right:8px;margin-left:0}[dir=rtl] .mat-slide-toggle-bar,.mat-slide-toggle-label-before .mat-slide-toggle-bar{margin-left:8px;margin-right:0}.mat-slide-toggle-bar-no-side-margin{margin-left:0;margin-right:0}.mat-slide-toggle-thumb-container{position:absolute;z-index:1;width:20px;height:20px;top:-3px;left:0;transform:translate3d(0, 0, 0);transition:all 80ms linear;transition-property:transform}._mat-animation-noopable .mat-slide-toggle-thumb-container{transition:none}[dir=rtl] .mat-slide-toggle-thumb-container{left:auto;right:0}.mat-slide-toggle-thumb{height:20px;width:20px;border-radius:50%}.mat-slide-toggle-bar{position:relative;width:36px;height:14px;flex-shrink:0;border-radius:8px}.mat-slide-toggle-input{bottom:0;left:10px}[dir=rtl] .mat-slide-toggle-input{left:auto;right:10px}.mat-slide-toggle-bar,.mat-slide-toggle-thumb{transition:all 80ms linear;transition-property:background-color;transition-delay:50ms}._mat-animation-noopable .mat-slide-toggle-bar,._mat-animation-noopable .mat-slide-toggle-thumb{transition:none}.mat-slide-toggle .mat-slide-toggle-ripple{position:absolute;top:calc(50% - 20px);left:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}.mat-slide-toggle .mat-slide-toggle-ripple .mat-ripple-element:not(.mat-slide-toggle-persistent-ripple){opacity:.12}.mat-slide-toggle-persistent-ripple{width:100%;height:100%;transform:none}.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:.04}.mat-slide-toggle:not(.mat-disabled).cdk-keyboard-focused .mat-slide-toggle-persistent-ripple{opacity:.12}.mat-slide-toggle-persistent-ripple,.mat-slide-toggle.mat-disabled .mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:0}@media(hover: none){.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{display:none}}.cdk-high-contrast-active .mat-slide-toggle-thumb,.cdk-high-contrast-active .mat-slide-toggle-bar{border:1px solid}.cdk-high-contrast-active .mat-slide-toggle.cdk-keyboard-focused .mat-slide-toggle-bar{outline:2px dotted;outline-offset:5px}\\n\"],encapsulation:2,changeDetection:0}),e})(),Qk=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),Xk=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Qk,Ty,py,Ep],Qk,py]}),e})();const eS={};function tS(...e){let t=null,n=null;return C(e[e.length-1])&&(n=e.pop()),\"function\"==typeof e[e.length-1]&&(t=e.pop()),1===e.length&&l(e[0])&&(e=e[0]),q(e,n).lift(new nS(t))}class nS{constructor(e){this.resultSelector=e}call(e,t){return t.subscribe(new iS(e,this.resultSelector))}}class iS extends R{constructor(e,t){super(e),this.resultSelector=t,this.active=0,this.values=[],this.observables=[]}_next(e){this.values.push(eS),this.observables.push(e)}_complete(){const e=this.observables,t=e.length;if(0===t)this.destination.complete();else{this.active=t,this.toRespond=t;for(let n=0;n{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Bv,_v,Mu,Ky,py],py]}),e})();const rS=[\"*\",[[\"mat-toolbar-row\"]]],oS=[\"*\",\"mat-toolbar-row\"];class aS{constructor(e){this._elementRef=e}}const lS=_y(aS);let cS=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-toolbar-row\"]],hostAttrs:[1,\"mat-toolbar-row\"],exportAs:[\"matToolbarRow\"]}),e})(),dS=(()=>{class e extends lS{constructor(e,t,n){super(e),this._platform=t,this._document=n}ngAfterViewInit(){Si()&&this._platform.isBrowser&&(this._checkToolbarMixedModes(),this._toolbarRows.changes.subscribe(()=>this._checkToolbarMixedModes()))}_checkToolbarMixedModes(){this._toolbarRows.length&&Array.from(this._elementRef.nativeElement.childNodes).filter(e=>!(e.classList&&e.classList.contains(\"mat-toolbar-row\"))).filter(e=>e.nodeType!==(this._document?this._document.COMMENT_NODE:8)).some(e=>!(!e.textContent||!e.textContent.trim()))&&function(){throw Error(\"MatToolbar: Attempting to combine different toolbar modes. Either specify multiple `` elements explicitly or just place content inside of a `` for a single row.\")}()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(bp),Eo(Nd))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-toolbar\"]],contentQueries:function(e,t,n){var i;1&e&&Ic(n,cS,!0),2&e&&Dc(i=Rc())&&(t._toolbarRows=i)},hostAttrs:[1,\"mat-toolbar\"],hostVars:4,hostBindings:function(e,t){2&e&&ua(\"mat-toolbar-multiple-rows\",t._toolbarRows.length>0)(\"mat-toolbar-single-row\",0===t._toolbarRows.length)},inputs:{color:\"color\"},exportAs:[\"matToolbar\"],features:[Ya],ngContentSelectors:oS,decls:2,vars:0,template:function(e,t){1&e&&(Zo(rS),ea(0),ea(1,1))},styles:[\".cdk-high-contrast-active .mat-toolbar{outline:solid 1px}.mat-toolbar-row,.mat-toolbar-single-row{display:flex;box-sizing:border-box;padding:0 16px;width:100%;flex-direction:row;align-items:center;white-space:nowrap}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}\\n\"],encapsulation:2,changeDetection:0}),e})(),uS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[py],py]}),e})();class hS extends L{constructor(e){super(),this._value=e}get value(){return this.getValue()}_subscribe(e){const t=super._subscribe(e);return t&&!t.closed&&e.next(this._value),t}getValue(){if(this.hasError)throw this.thrownError;if(this.closed)throw new M;return this._value}next(e){super.next(this._value=e)}}const mS=new v(g);function pS(){return mS}function fS(...e){return t=>{let n;return\"function\"==typeof e[e.length-1]&&(n=e.pop()),t.lift(new _S(e,n))}}class _S{constructor(e,t){this.observables=e,this.project=t}call(e,t){return t.subscribe(new gS(e,this.observables,this.project))}}class gS extends R{constructor(e,t,n){super(e),this.observables=t,this.project=n,this.toRespond=[];const i=t.length;this.values=new Array(i);for(let s=0;s0){const e=r.indexOf(n);-1!==e&&r.splice(e,1)}}notifyComplete(){}_next(e){if(0===this.toRespond.length){const t=[e,...this.values];this.project?this._tryProject(t):this.destination.next(t)}}_tryProject(e){let t;try{t=this.project.apply(this,e)}catch(n){return void this.destination.error(n)}this.destination.next(t)}}const yS=[\"aria-label\",\"\\u0417\\u0430\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\"];function bS(e,t){if(1&e){const e=zo();Ro(0,\"button\",1),nc(1,yS),Uo(\"click\",(function(){return en(e),Jo().closeHandler()})),Ro(2,\"span\",2),Sa(3,\"\\xd7\"),Ho(),Ho()}}const vS=[\"*\"];function wS(e,t){if(1&e){const e=zo();Ro(0,\"li\",7),Uo(\"click\",(function(){en(e);const n=t.$implicit,i=Jo(2);return i.select(n.id,i.NgbSlideEventSource.INDICATOR)})),Ho()}if(2&e){const e=t.$implicit,n=Jo(2);ua(\"active\",e.id===n.activeId),Po(\"id\",e.id)}}function MS(e,t){if(1&e&&(Ro(0,\"ol\",5),Do(1,wS,1,3,\"li\",6),Ho()),2&e){const e=Jo();ys(1),Po(\"ngForOf\",e.slides)}}function kS(e,t){}function SS(e,t){if(1&e&&(Ro(0,\"div\",8),Do(1,kS,0,0,\"ng-template\",9),Ho()),2&e){const e=t.$implicit,n=Jo();ua(\"active\",e.id===n.activeId),ys(1),Po(\"ngTemplateOutlet\",e.tplRef)}}var LS,xS;function CS(e,t){if(1&e){const e=zo();Ro(0,\"a\",10),Uo(\"click\",(function(){en(e);const t=Jo();return t.prev(t.NgbSlideEventSource.ARROW_LEFT)})),jo(1,\"span\",11),Ro(2,\"span\",12),tc(3,LS),Ho(),Ho()}}function TS(e,t){if(1&e){const e=zo();Ro(0,\"a\",13),Uo(\"click\",(function(){en(e);const t=Jo();return t.next(t.NgbSlideEventSource.ARROW_RIGHT)})),jo(1,\"span\",14),Ro(2,\"span\",12),tc(3,xS),Ho(),Ho()}}function DS(e){return null!=e}LS=\"Previous\",xS=\"Next\",\"Previous month\",\"Previous month\",\"Next month\",\"Next month\",\"Select month\",\"Select month\",\"Select year\",\"Select year\",\"\\xAB\\xAB\",\"\\xAB\",\"\\xBB\",\"\\xBB\\xBB\",\"First\",\"Previous\",\"Next\",\"Last\",\"\" + \"\\ufffd0\\ufffd\" + \"%\",\"HH\",\"Hours\",\"MM\",\"Minutes\",\"Increment hours\",\"Decrement hours\",\"Increment minutes\",\"Decrement minutes\",\"SS\",\"Seconds\",\"Increment seconds\",\"Decrement seconds\",\"\" + \"\\ufffd0\\ufffd\" + \"\",\"\" + \"\\ufffd0\\ufffd\" + \"\",\"\\u0417\\u0430\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\",\"undefined\"==typeof Element||Element.prototype.closest||(Element.prototype.matches||(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector),Element.prototype.closest=function(e){let t=this;if(!document.documentElement.contains(t))return null;do{if(t.matches(e))return t;t=t.parentElement||t.parentNode}while(null!==t&&1===t.nodeType);return null});let YS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),ES=(()=>{class e{constructor(){this.dismissible=!0,this.type=\"warning\"}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})(),OS=(()=>{class e{constructor(e,t,n){this._renderer=t,this._element=n,this.close=new yc,this.dismissible=e.dismissible,this.type=e.type}closeHandler(){this.close.emit(null)}ngOnChanges(e){const t=e.type;t&&!t.firstChange&&(this._renderer.removeClass(this._element.nativeElement,`alert-${t.previousValue}`),this._renderer.addClass(this._element.nativeElement,`alert-${t.currentValue}`))}ngOnInit(){this._renderer.addClass(this._element.nativeElement,`alert-${this.type}`)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ES),Eo(el),Eo(Ka))},e.\\u0275cmp=yt({type:e,selectors:[[\"ngb-alert\"]],hostAttrs:[\"role\",\"alert\",1,\"alert\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"alert-dismissible\",t.dismissible)},inputs:{dismissible:\"dismissible\",type:\"type\"},outputs:{close:\"close\"},features:[Ra],ngContentSelectors:vS,decls:2,vars:1,consts:[[\"type\",\"button\",\"class\",\"close\",\"aria-label\",\"Close\",3,\"click\",4,\"ngIf\"],[\"type\",\"button\",1,\"close\",3,\"click\",6,\"aria-label\"],[\"aria-hidden\",\"true\"]],template:function(e,t){1&e&&(Zo(),ea(0),Do(1,bS,4,0,\"button\",0)),2&e&&(ys(1),Po(\"ngIf\",t.dismissible))},directives:[mu],styles:[\"ngb-alert{display:block}\"],encapsulation:2,changeDetection:0}),e})(),IS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),PS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),AS=(()=>{class e{constructor(){this.interval=5e3,this.wrap=!0,this.keyboard=!0,this.pauseOnHover=!0,this.showNavigationArrows=!0,this.showNavigationIndicators=!0}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})(),RS=0,HS=(()=>{class e{constructor(e){this.tplRef=e,this.id=`ngb-slide-${RS++}`}}return e.\\u0275fac=function(t){return new(t||e)(Eo(vl))},e.\\u0275dir=St({type:e,selectors:[[\"ng-template\",\"ngbSlide\",\"\"]],inputs:{id:\"id\"}}),e})(),jS=(()=>{class e{constructor(e,t,n,i){this._platformId=t,this._ngZone=n,this._cd=i,this.NgbSlideEventSource=NS,this._destroy$=new L,this._interval$=new hS(0),this._mouseHover$=new hS(!1),this._pauseOnHover$=new hS(!1),this._pause$=new hS(!1),this._wrap$=new hS(!1),this.slide=new yc,this.interval=e.interval,this.wrap=e.wrap,this.keyboard=e.keyboard,this.pauseOnHover=e.pauseOnHover,this.showNavigationArrows=e.showNavigationArrows,this.showNavigationIndicators=e.showNavigationIndicators}set interval(e){this._interval$.next(e)}get interval(){return this._interval$.value}set wrap(e){this._wrap$.next(e)}get wrap(){return this._wrap$.value}set pauseOnHover(e){this._pauseOnHover$.next(e)}get pauseOnHover(){return this._pauseOnHover$.value}mouseEnter(){this._mouseHover$.next(!0)}mouseLeave(){this._mouseHover$.next(!1)}ngAfterContentInit(){ku(this._platformId)&&this._ngZone.runOutsideAngular(()=>{const e=tS(this.slide.pipe(H(e=>e.current),Rf(this.activeId)),this._wrap$,this.slides.changes.pipe(Rf(null))).pipe(H(([e,t])=>{const n=this.slides.toArray(),i=this._getSlideIdxById(e);return t?n.length>1:ie||t&&n||!s?0:i),Eb(),Wb(e=>e>0?Hb(e,e):mS),Nb(this._destroy$)).subscribe(()=>this._ngZone.run(()=>this.next(NS.TIMER)))}),this.slides.changes.pipe(Nb(this._destroy$)).subscribe(()=>this._cd.markForCheck())}ngAfterContentChecked(){let e=this._getSlideById(this.activeId);this.activeId=e?e.id:this.slides.length?this.slides.first.id:null}ngOnDestroy(){this._destroy$.next()}select(e,t){this._cycleToSelected(e,this._getSlideEventDirection(this.activeId,e),t)}prev(e){this._cycleToSelected(this._getPrevSlide(this.activeId),FS.RIGHT,e)}next(e){this._cycleToSelected(this._getNextSlide(this.activeId),FS.LEFT,e)}pause(){this._pause$.next(!0)}cycle(){this._pause$.next(!1)}_cycleToSelected(e,t,n){let i=this._getSlideById(e);i&&i.id!==this.activeId&&(this.slide.emit({prev:this.activeId,current:i.id,direction:t,paused:this._pause$.value,source:n}),this.activeId=i.id),this._cd.markForCheck()}_getSlideEventDirection(e,t){return this._getSlideIdxById(e)>this._getSlideIdxById(t)?FS.RIGHT:FS.LEFT}_getSlideById(e){return this.slides.find(t=>t.id===e)}_getSlideIdxById(e){return this.slides.toArray().indexOf(this._getSlideById(e))}_getNextSlide(e){const t=this.slides.toArray(),n=this._getSlideIdxById(e);return n===t.length-1?this.wrap?t[0].id:t[t.length-1].id:t[n+1].id}_getPrevSlide(e){const t=this.slides.toArray(),n=this._getSlideIdxById(e);return 0===n?this.wrap?t[t.length-1].id:t[0].id:t[n-1].id}}return e.\\u0275fac=function(t){return new(t||e)(Eo(AS),Eo(Bc),Eo(ld),Eo(Qr))},e.\\u0275cmp=yt({type:e,selectors:[[\"ngb-carousel\"]],contentQueries:function(e,t,n){var i;1&e&&Ic(n,HS,!1),2&e&&Dc(i=Rc())&&(t.slides=i)},hostAttrs:[\"tabIndex\",\"0\",1,\"carousel\",\"slide\"],hostVars:2,hostBindings:function(e,t){1&e&&Uo(\"keydown.arrowLeft\",(function(){return t.keyboard&&t.prev(t.NgbSlideEventSource.ARROW_LEFT)}))(\"keydown.arrowRight\",(function(){return t.keyboard&&t.next(t.NgbSlideEventSource.ARROW_RIGHT)}))(\"mouseenter\",(function(){return t.mouseEnter()}))(\"mouseleave\",(function(){return t.mouseLeave()})),2&e&&da(\"display\",\"block\")},inputs:{interval:\"interval\",wrap:\"wrap\",keyboard:\"keyboard\",pauseOnHover:\"pauseOnHover\",showNavigationArrows:\"showNavigationArrows\",showNavigationIndicators:\"showNavigationIndicators\",activeId:\"activeId\"},outputs:{slide:\"slide\"},exportAs:[\"ngbCarousel\"],decls:5,vars:4,consts:[[\"class\",\"carousel-indicators\",4,\"ngIf\"],[1,\"carousel-inner\"],[\"class\",\"carousel-item\",3,\"active\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"carousel-control-prev\",\"role\",\"button\",3,\"click\",4,\"ngIf\"],[\"class\",\"carousel-control-next\",\"role\",\"button\",3,\"click\",4,\"ngIf\"],[1,\"carousel-indicators\"],[3,\"id\",\"active\",\"click\",4,\"ngFor\",\"ngForOf\"],[3,\"id\",\"click\"],[1,\"carousel-item\"],[3,\"ngTemplateOutlet\"],[\"role\",\"button\",1,\"carousel-control-prev\",3,\"click\"],[\"aria-hidden\",\"true\",1,\"carousel-control-prev-icon\"],[1,\"sr-only\"],[\"role\",\"button\",1,\"carousel-control-next\",3,\"click\"],[\"aria-hidden\",\"true\",1,\"carousel-control-next-icon\"]],template:function(e,t){1&e&&(Do(0,MS,2,1,\"ol\",0),Ro(1,\"div\",1),Do(2,SS,2,3,\"div\",2),Ho(),Do(3,CS,4,0,\"a\",3),Do(4,TS,4,0,\"a\",4)),2&e&&(Po(\"ngIf\",t.showNavigationIndicators),ys(2),Po(\"ngForOf\",t.slides),ys(1),Po(\"ngIf\",t.showNavigationArrows),ys(1),Po(\"ngIf\",t.showNavigationArrows))},directives:[mu,uu,wu],encapsulation:2,changeDetection:0}),e})();const FS={LEFT:\"left\",RIGHT:\"right\"},NS={TIMER:\"timer\",ARROW_LEFT:\"arrowLeft\",ARROW_RIGHT:\"arrowRight\",INDICATOR:\"indicator\"};let zS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),VS=(()=>{class e{constructor(){this.collapsed=!1}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngbCollapse\",\"\"]],hostVars:4,hostBindings:function(e,t){2&e&&ua(\"collapse\",!0)(\"show\",!t.collapsed)},inputs:{collapsed:[\"ngbCollapse\",\"collapsed\"]},exportAs:[\"ngbCollapse\"]}),e})(),WS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();const US=function(){var e={Tab:9,Enter:13,Escape:27,Space:32,PageUp:33,PageDown:34,End:35,Home:36,ArrowLeft:37,ArrowUp:38,ArrowRight:39,ArrowDown:40};return e[e.Tab]=\"Tab\",e[e.Enter]=\"Enter\",e[e.Escape]=\"Escape\",e[e.Space]=\"Space\",e[e.PageUp]=\"PageUp\",e[e.PageDown]=\"PageDown\",e[e.End]=\"End\",e[e.Home]=\"Home\",e[e.ArrowLeft]=\"ArrowLeft\",e[e.ArrowUp]=\"ArrowUp\",e[e.ArrowRight]=\"ArrowRight\",e[e.ArrowDown]=\"ArrowDown\",e}();\"undefined\"!=typeof navigator&&navigator.userAgent&&navigator;const $S=[\"a[href]\",\"button:not([disabled])\",'input:not([disabled]):not([type=\"hidden\"])',\"select:not([disabled])\",\"textarea:not([disabled])\",\"[contenteditable]\",'[tabindex]:not([tabindex=\"-1\"])'].join(\", \");function BS(e){const t=Array.from(e.querySelectorAll($S)).filter(e=>-1!==e.tabIndex);return[t[0],t[t.length-1]]}let qS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu,$m]]}),e})(),GS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),JS=(()=>{class e{constructor(){this.backdrop=!0,this.keyboard=!0}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})();class KS{constructor(e,t,n){this.nodes=e,this.viewRef=t,this.componentRef=n}}const ZS=()=>{};let QS=(()=>{class e{constructor(e){this._document=e}compensate(){return this._isPresent()?this._adjustBody(this._getWidth()):ZS}_adjustBody(e){const t=this._document.body,n=t.style.paddingRight,i=parseFloat(window.getComputedStyle(t)[\"padding-right\"]);return t.style[\"padding-right\"]=`${i+e}px`,()=>t.style[\"padding-right\"]=n}_isPresent(){const e=this._document.body.getBoundingClientRect();return e.left+e.right{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"ngb-modal-backdrop\"]],hostAttrs:[2,\"z-index\",\"1050\"],hostVars:2,hostBindings:function(e,t){2&e&&ha(\"modal-backdrop fade show\"+(t.backdropClass?\" \"+t.backdropClass:\"\"))},inputs:{backdropClass:\"backdropClass\"},decls:0,vars:0,template:function(e,t){},encapsulation:2}),e})();class eL{close(e){}dismiss(e){}}class tL{constructor(e,t,n,i){this._windowCmptRef=e,this._contentRef=t,this._backdropCmptRef=n,this._beforeDismiss=i,e.instance.dismissEvent.subscribe(e=>{this.dismiss(e)}),this.result=new Promise((e,t)=>{this._resolve=e,this._reject=t}),this.result.then(null,()=>{})}get componentInstance(){if(this._contentRef&&this._contentRef.componentRef)return this._contentRef.componentRef.instance}close(e){this._windowCmptRef&&(this._resolve(e),this._removeModalElements())}_dismiss(e){this._reject(e),this._removeModalElements()}dismiss(e){if(this._windowCmptRef)if(this._beforeDismiss){const t=this._beforeDismiss();t&&t.then?t.then(t=>{!1!==t&&this._dismiss(e)},()=>{}):!1!==t&&this._dismiss(e)}else this._dismiss(e)}_removeModalElements(){const e=this._windowCmptRef.location.nativeElement;if(e.parentNode.removeChild(e),this._windowCmptRef.destroy(),this._backdropCmptRef){const e=this._backdropCmptRef.location.nativeElement;e.parentNode.removeChild(e),this._backdropCmptRef.destroy()}this._contentRef&&this._contentRef.viewRef&&this._contentRef.viewRef.destroy(),this._windowCmptRef=null,this._backdropCmptRef=null,this._contentRef=null}}const nL=function(){var e={BACKDROP_CLICK:0,ESC:1};return e[e.BACKDROP_CLICK]=\"BACKDROP_CLICK\",e[e.ESC]=\"ESC\",e}();let iL=(()=>{class e{constructor(e,t,n){this._document=e,this._elRef=t,this._zone=n,this.backdrop=!0,this.keyboard=!0,this.dismissEvent=new yc,n.runOutsideAngular(()=>{Mb(this._elRef.nativeElement,\"keydown\").pipe(Nb(this.dismissEvent),Tu(e=>e.which===US.Escape&&this.keyboard)).subscribe(e=>requestAnimationFrame(()=>{e.defaultPrevented||n.run(()=>this.dismiss(nL.ESC))}));const e=Mb(this._elRef.nativeElement,\"mousedown\").pipe(Nb(this.dismissEvent),H(e=>!0===this.backdrop&&this._elRef.nativeElement===e.target));Mb(this._elRef.nativeElement,\"mouseup\").pipe(Nb(this.dismissEvent),fS(e),Tu(([e,t])=>t)).subscribe(()=>this._zone.run(()=>this.dismiss(nL.BACKDROP_CLICK)))})}dismiss(e){this.dismissEvent.emit(e)}ngOnInit(){this._elWithFocus=this._document.activeElement}ngAfterViewInit(){if(!this._elRef.nativeElement.contains(document.activeElement)){const e=this._elRef.nativeElement.querySelector(\"[ngbAutofocus]\"),t=BS(this._elRef.nativeElement)[0];(e||t||this._elRef.nativeElement).focus()}}ngOnDestroy(){const e=this._document.body,t=this._elWithFocus;let n;n=t&&t.focus&&e.contains(t)?t:e,this._zone.runOutsideAngular(()=>{setTimeout(()=>n.focus()),this._elWithFocus=null})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Nd),Eo(Ka),Eo(ld))},e.\\u0275cmp=yt({type:e,selectors:[[\"ngb-modal-window\"]],hostAttrs:[\"role\",\"dialog\",\"tabindex\",\"-1\"],hostVars:4,hostBindings:function(e,t){2&e&&(Co(\"aria-modal\",!0)(\"aria-labelledby\",t.ariaLabelledBy),ha(\"modal fade show d-block\"+(t.windowClass?\" \"+t.windowClass:\"\")))},inputs:{backdrop:\"backdrop\",keyboard:\"keyboard\",ariaLabelledBy:\"ariaLabelledBy\",centered:\"centered\",scrollable:\"scrollable\",size:\"size\",windowClass:\"windowClass\"},outputs:{dismissEvent:\"dismiss\"},ngContentSelectors:vS,decls:3,vars:2,consts:[[\"role\",\"document\"],[1,\"modal-content\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"div\",0),Ro(1,\"div\",1),ea(2),Ho(),Ho()),2&e&&ha(\"modal-dialog\"+(t.size?\" modal-\"+t.size:\"\")+(t.centered?\" modal-dialog-centered\":\"\")+(t.scrollable?\" modal-dialog-scrollable\":\"\"))},styles:[\"ngb-modal-window .component-host-scrollable{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;overflow:hidden}\"],encapsulation:2}),e})(),sL=(()=>{class e{constructor(e,t,n,i,s,r){this._applicationRef=e,this._injector=t,this._document=n,this._scrollBar=i,this._rendererFactory=s,this._ngZone=r,this._activeWindowCmptHasChanged=new L,this._ariaHiddenValues=new Map,this._backdropAttributes=[\"backdropClass\"],this._modalRefs=[],this._windowAttributes=[\"ariaLabelledBy\",\"backdrop\",\"centered\",\"keyboard\",\"scrollable\",\"size\",\"windowClass\"],this._windowCmpts=[],this._activeWindowCmptHasChanged.subscribe(()=>{if(this._windowCmpts.length){const e=this._windowCmpts[this._windowCmpts.length-1];((e,t,n,i=!1)=>{this._ngZone.runOutsideAngular(()=>{const e=Mb(t,\"focusin\").pipe(Nb(n),H(e=>e.target));Mb(t,\"keydown\").pipe(Nb(n),Tu(e=>e.which===US.Tab),fS(e)).subscribe(([e,n])=>{const[i,s]=BS(t);n!==i&&n!==t||!e.shiftKey||(s.focus(),e.preventDefault()),n!==s||e.shiftKey||(i.focus(),e.preventDefault())}),i&&Mb(t,\"click\").pipe(Nb(n),fS(e),H(e=>e[1])).subscribe(e=>e.focus())})})(0,e.location.nativeElement,this._activeWindowCmptHasChanged),this._revertAriaHidden(),this._setAriaHidden(e.location.nativeElement)}})}open(e,t,n,i){const s=DS(i.container)?this._document.querySelector(i.container):this._document.body,r=this._rendererFactory.createRenderer(null,null),o=this._scrollBar.compensate(),a=()=>{this._modalRefs.length||(r.removeClass(this._document.body,\"modal-open\"),this._revertAriaHidden())};if(!s)throw new Error(`The specified modal container \"${i.container||\"body\"}\" was not found in the DOM.`);const l=new eL,c=this._getContentRef(e,i.injector||t,n,l,i);let d=!1!==i.backdrop?this._attachBackdrop(e,s):null,u=this._attachWindowComponent(e,s,c),h=new tL(u,c,d,i.beforeDismiss);return this._registerModalRef(h),this._registerWindowCmpt(u),h.result.then(o,o),h.result.then(a,a),l.close=e=>{h.close(e)},l.dismiss=e=>{h.dismiss(e)},this._applyWindowOptions(u.instance,i),1===this._modalRefs.length&&r.addClass(this._document.body,\"modal-open\"),d&&d.instance&&this._applyBackdropOptions(d.instance,i),h}dismissAll(e){this._modalRefs.forEach(t=>t.dismiss(e))}hasOpenModals(){return this._modalRefs.length>0}_attachBackdrop(e,t){let n=e.resolveComponentFactory(XS).create(this._injector);return this._applicationRef.attachView(n.hostView),t.appendChild(n.location.nativeElement),n}_attachWindowComponent(e,t,n){let i=e.resolveComponentFactory(iL).create(this._injector,n.nodes);return this._applicationRef.attachView(i.hostView),t.appendChild(i.location.nativeElement),i}_applyWindowOptions(e,t){this._windowAttributes.forEach(n=>{DS(t[n])&&(e[n]=t[n])})}_applyBackdropOptions(e,t){this._backdropAttributes.forEach(n=>{DS(t[n])&&(e[n]=t[n])})}_getContentRef(e,t,n,i,s){return n?n instanceof vl?this._createFromTemplateRef(n,i):\"string\"==typeof n?this._createFromString(n):this._createFromComponent(e,t,n,i,s):new KS([])}_createFromTemplateRef(e,t){const n=e.createEmbeddedView({$implicit:t,close(e){t.close(e)},dismiss(e){t.dismiss(e)}});return this._applicationRef.attachView(n),new KS([n.rootNodes],n)}_createFromString(e){const t=this._document.createTextNode(`${e}`);return new KS([[t]])}_createFromComponent(e,t,n,i,s){const r=e.resolveComponentFactory(n),o=fo.create({providers:[{provide:eL,useValue:i}],parent:t}),a=r.create(o),l=a.location.nativeElement;return s.scrollable&&l.classList.add(\"component-host-scrollable\"),this._applicationRef.attachView(a.hostView),new KS([[l]],a.hostView,a)}_setAriaHidden(e){const t=e.parentElement;t&&e!==this._document.body&&(Array.from(t.children).forEach(t=>{t!==e&&\"SCRIPT\"!==t.nodeName&&(this._ariaHiddenValues.set(t,t.getAttribute(\"aria-hidden\")),t.setAttribute(\"aria-hidden\",\"true\"))}),this._setAriaHidden(t))}_revertAriaHidden(){this._ariaHiddenValues.forEach((e,t)=>{e?t.setAttribute(\"aria-hidden\",e):t.removeAttribute(\"aria-hidden\")}),this._ariaHiddenValues.clear()}_registerModalRef(e){const t=()=>{const t=this._modalRefs.indexOf(e);t>-1&&this._modalRefs.splice(t,1)};this._modalRefs.push(e),e.result.then(t,t)}_registerWindowCmpt(e){this._windowCmpts.push(e),this._activeWindowCmptHasChanged.next(),e.onDestroy(()=>{const t=this._windowCmpts.indexOf(e);t>-1&&(this._windowCmpts.splice(t,1),this._activeWindowCmptHasChanged.next())})}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Td),Qe(fo),Qe(Nd),Qe(QS),Qe(Qa),Qe(ld))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e(Qe(Td),Qe(We),Qe(Nd),Qe(QS),Qe(Qa),Qe(ld))},token:e,providedIn:\"root\"}),e})(),rL=(()=>{class e{constructor(e,t,n,i){this._moduleCFR=e,this._injector=t,this._modalStack=n,this._config=i}open(e,t={}){const n=Object.assign({},this._config,t);return this._modalStack.open(this._moduleCFR,this._injector,e,n)}dismissAll(e){this._modalStack.dismissAll(e)}hasOpenModals(){return this._modalStack.hasOpenModals()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Ja),Qe(fo),Qe(sL),Qe(JS))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e(Qe(Ja),Qe(We),Qe(sL),Qe(JS))},token:e,providedIn:\"root\"}),e})(),oL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[rL]}),e})(),aL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),lL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),cL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),dL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),uL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),hL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),mL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),pL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),fL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})();const _L=[YS,IS,PS,zS,WS,qS,GS,oL,aL,lL,cL,dL,uL,hL,mL,pL,fL];let gL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[_L,YS,IS,PS,zS,WS,qS,GS,oL,aL,lL,cL,dL,uL,hL,mL,pL,fL]}),e})();var yL=n(\"aCrv\");const bL=[\"header\"],vL=[\"container\"],wL=[\"content\"],ML=[\"invisiblePadding\"],kL=[\"*\"];function SL(){return{scrollThrottlingTime:0,scrollDebounceTime:0,scrollAnimationTime:750,checkResizeInterval:1e3,resizeBypassRefreshThreshold:5,modifyOverflowStyleOfParentScroll:!0,stripedTable:!1}}let LL=(()=>{let e=class{constructor(e,t,n,i,s,r){this.element=e,this.renderer=t,this.zone=n,this.changeDetectorRef=i,this.window=window,this.executeRefreshOutsideAngularZone=!1,this._enableUnequalChildrenSizes=!1,this.useMarginInsteadOfTranslate=!1,this.ssrViewportWidth=1920,this.ssrViewportHeight=1080,this._bufferAmount=0,this._items=[],this.compareItems=(e,t)=>e===t,this.vsUpdate=new yc,this.vsChange=new yc,this.vsStart=new yc,this.vsEnd=new yc,this.calculatedScrollbarWidth=0,this.calculatedScrollbarHeight=0,this.padding=0,this.previousViewPort={},this.cachedPageSize=0,this.previousScrollNumberElements=0,this.isAngularUniversalSSR=function(e){return\"server\"===e}(s),this.scrollThrottlingTime=r.scrollThrottlingTime,this.scrollDebounceTime=r.scrollDebounceTime,this.scrollAnimationTime=r.scrollAnimationTime,this.scrollbarWidth=r.scrollbarWidth,this.scrollbarHeight=r.scrollbarHeight,this.checkResizeInterval=r.checkResizeInterval,this.resizeBypassRefreshThreshold=r.resizeBypassRefreshThreshold,this.modifyOverflowStyleOfParentScroll=r.modifyOverflowStyleOfParentScroll,this.stripedTable=r.stripedTable,this.horizontal=!1,this.resetWrapGroupDimensions()}get viewPortInfo(){let e=this.previousViewPort||{};return{startIndex:e.startIndex||0,endIndex:e.endIndex||0,scrollStartPosition:e.scrollStartPosition||0,scrollEndPosition:e.scrollEndPosition||0,maxScrollPosition:e.maxScrollPosition||0,startIndexWithBuffer:e.startIndexWithBuffer||0,endIndexWithBuffer:e.endIndexWithBuffer||0}}get enableUnequalChildrenSizes(){return this._enableUnequalChildrenSizes}set enableUnequalChildrenSizes(e){this._enableUnequalChildrenSizes!==e&&(this._enableUnequalChildrenSizes=e,this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0)}get bufferAmount(){return\"number\"==typeof this._bufferAmount&&this._bufferAmount>=0?this._bufferAmount:this.enableUnequalChildrenSizes?5:0}set bufferAmount(e){this._bufferAmount=e}get scrollThrottlingTime(){return this._scrollThrottlingTime}set scrollThrottlingTime(e){this._scrollThrottlingTime=e,this.updateOnScrollFunction()}get scrollDebounceTime(){return this._scrollDebounceTime}set scrollDebounceTime(e){this._scrollDebounceTime=e,this.updateOnScrollFunction()}updateOnScrollFunction(){this.onScroll=this.scrollDebounceTime?this.debounce(()=>{this.refresh_internal(!1)},this.scrollDebounceTime):this.scrollThrottlingTime?this.throttleTrailing(()=>{this.refresh_internal(!1)},this.scrollThrottlingTime):()=>{this.refresh_internal(!1)}}get checkResizeInterval(){return this._checkResizeInterval}set checkResizeInterval(e){this._checkResizeInterval!==e&&(this._checkResizeInterval=e,this.addScrollEventHandlers())}get items(){return this._items}set items(e){e!==this._items&&(this._items=e||[],this.refresh_internal(!0))}get horizontal(){return this._horizontal}set horizontal(e){this._horizontal=e,this.updateDirection()}revertParentOverscroll(){const e=this.getScrollElement();e&&this.oldParentScrollOverflow&&(e.style[\"overflow-y\"]=this.oldParentScrollOverflow.y,e.style[\"overflow-x\"]=this.oldParentScrollOverflow.x),this.oldParentScrollOverflow=void 0}get parentScroll(){return this._parentScroll}set parentScroll(e){if(this._parentScroll===e)return;this.revertParentOverscroll(),this._parentScroll=e,this.addScrollEventHandlers();const t=this.getScrollElement();this.modifyOverflowStyleOfParentScroll&&t!==this.element.nativeElement&&(this.oldParentScrollOverflow={x:t.style[\"overflow-x\"],y:t.style[\"overflow-y\"]},t.style[\"overflow-y\"]=this.horizontal?\"visible\":\"auto\",t.style[\"overflow-x\"]=this.horizontal?\"auto\":\"visible\")}ngOnInit(){this.addScrollEventHandlers()}ngOnDestroy(){this.removeScrollEventHandlers(),this.revertParentOverscroll()}ngOnChanges(e){let t=this.cachedItemsLength!==this.items.length;this.cachedItemsLength=this.items.length,this.refresh_internal(t||!e.items||!e.items.previousValue||0===e.items.previousValue.length)}ngDoCheck(){if(this.cachedItemsLength!==this.items.length)return this.cachedItemsLength=this.items.length,void this.refresh_internal(!0);if(this.previousViewPort&&this.viewPortItems&&this.viewPortItems.length>0){let e=!1;for(let t=0;t=0&&this.invalidateCachedMeasurementAtIndex(t)}else this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0;this.refresh_internal(!1)}invalidateCachedMeasurementAtIndex(e){if(this.enableUnequalChildrenSizes){let t=this.wrapGroupDimensions.maxChildSizePerWrapGroup[e];t&&(this.wrapGroupDimensions.maxChildSizePerWrapGroup[e]=void 0,--this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes,this.wrapGroupDimensions.sumOfKnownWrapGroupChildWidths-=t.childWidth||0,this.wrapGroupDimensions.sumOfKnownWrapGroupChildHeights-=t.childHeight||0)}else this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0;this.refresh_internal(!1)}scrollInto(e,t=!0,n=0,i,s){let r=this.items.indexOf(e);-1!==r&&this.scrollToIndex(r,t,n,i,s)}scrollToIndex(e,t=!0,n=0,i,s){let r=5,o=()=>{if(--r,r<=0)return void(s&&s());let i=this.calculateDimensions(),a=Math.min(Math.max(e,0),i.itemCount-1);this.previousViewPort.startIndex!==a?this.scrollToIndex_internal(e,t,n,0,o):s&&s()};this.scrollToIndex_internal(e,t,n,i,o)}scrollToIndex_internal(e,t=!0,n=0,i,s){i=void 0===i?this.scrollAnimationTime:i;let r=this.calculateDimensions(),o=this.calculatePadding(e,r)+n;t||(o-=r.wrapGroupsPerPage*r[this._childScrollDim]),this.scrollToPosition(o,i,s)}scrollToPosition(e,t,n){e+=this.getElementsOffset(),t=void 0===t?this.scrollAnimationTime:t;let i,s=this.getScrollElement();if(this.currentTween&&(this.currentTween.stop(),this.currentTween=void 0),!t)return this.renderer.setProperty(s,this._scrollType,e),void this.refresh_internal(!1,n);const r={scrollPosition:s[this._scrollType]};let o=new yL.Tween(r).to({scrollPosition:e},t).easing(yL.Easing.Quadratic.Out).onUpdate(e=>{isNaN(e.scrollPosition)||(this.renderer.setProperty(s,this._scrollType,e.scrollPosition),this.refresh_internal(!1))}).onStop(()=>{cancelAnimationFrame(i)}).start();const a=t=>{o.isPlaying()&&(o.update(t),r.scrollPosition!==e?this.zone.runOutsideAngular(()=>{i=requestAnimationFrame(a)}):this.refresh_internal(!1,n))};a(),this.currentTween=o}getElementSize(e){let t=e.getBoundingClientRect(),n=getComputedStyle(e),i=parseInt(n[\"margin-top\"],10)||0,s=parseInt(n[\"margin-bottom\"],10)||0,r=parseInt(n[\"margin-left\"],10)||0,o=parseInt(n[\"margin-right\"],10)||0;return{top:t.top+i,bottom:t.bottom+s,left:t.left+r,right:t.right+o,width:t.width+r+o,height:t.height+i+s}}checkScrollElementResized(){let e,t=this.getElementSize(this.getScrollElement());if(this.previousScrollBoundingRect){let n=Math.abs(t.width-this.previousScrollBoundingRect.width),i=Math.abs(t.height-this.previousScrollBoundingRect.height);e=n>this.resizeBypassRefreshThreshold||i>this.resizeBypassRefreshThreshold}else e=!0;e&&(this.previousScrollBoundingRect=t,t.width>0&&t.height>0&&this.refresh_internal(!1))}updateDirection(){this.horizontal?(this._invisiblePaddingProperty=\"width\",this._offsetType=\"offsetLeft\",this._pageOffsetType=\"pageXOffset\",this._childScrollDim=\"childWidth\",this._marginDir=\"margin-left\",this._translateDir=\"translateX\",this._scrollType=\"scrollLeft\"):(this._invisiblePaddingProperty=\"height\",this._offsetType=\"offsetTop\",this._pageOffsetType=\"pageYOffset\",this._childScrollDim=\"childHeight\",this._marginDir=\"margin-top\",this._translateDir=\"translateY\",this._scrollType=\"scrollTop\")}debounce(e,t){const n=this.throttleTrailing(e,t),i=function(){n.cancel(),n.apply(this,arguments)};return i.cancel=function(){n.cancel()},i}throttleTrailing(e,t){let n=void 0,i=arguments;const s=function(){const s=this;i=arguments,n||(t<=0?e.apply(s,i):n=setTimeout((function(){n=void 0,e.apply(s,i)}),t))};return s.cancel=function(){n&&(clearTimeout(n),n=void 0)},s}refresh_internal(e,t,n=2){if(e&&this.previousViewPort&&this.previousViewPort.scrollStartPosition>0){let e=this.previousViewPort,n=this.viewPortItems,i=t;t=()=>{let t=this.previousViewPort.scrollLength-e.scrollLength;if(t>0&&this.viewPortItems){let e=n[0],s=this.items.findIndex(t=>this.compareItems(e,t));if(s>this.previousViewPort.startIndexWithBuffer){let e=!1;for(let t=1;t{requestAnimationFrame(()=>{e&&this.resetWrapGroupDimensions();let i=this.calculateViewport(),s=e||i.startIndex!==this.previousViewPort.startIndex,r=e||i.endIndex!==this.previousViewPort.endIndex,o=i.scrollLength!==this.previousViewPort.scrollLength,a=i.padding!==this.previousViewPort.padding,l=i.scrollStartPosition!==this.previousViewPort.scrollStartPosition||i.scrollEndPosition!==this.previousViewPort.scrollEndPosition||i.maxScrollPosition!==this.previousViewPort.maxScrollPosition;if(this.previousViewPort=i,o&&this.renderer.setStyle(this.invisiblePaddingElementRef.nativeElement,this._invisiblePaddingProperty,`${i.scrollLength}px`),a&&(this.useMarginInsteadOfTranslate?this.renderer.setStyle(this.contentElementRef.nativeElement,this._marginDir,`${i.padding}px`):(this.renderer.setStyle(this.contentElementRef.nativeElement,\"transform\",`${this._translateDir}(${i.padding}px)`),this.renderer.setStyle(this.contentElementRef.nativeElement,\"webkitTransform\",`${this._translateDir}(${i.padding}px)`))),this.headerElementRef){let e=this.getScrollElement()[this._scrollType],t=this.getElementsOffset(),n=Math.max(e-i.padding-t+this.headerElementRef.nativeElement.clientHeight,0);this.renderer.setStyle(this.headerElementRef.nativeElement,\"transform\",`${this._translateDir}(${n}px)`),this.renderer.setStyle(this.headerElementRef.nativeElement,\"webkitTransform\",`${this._translateDir}(${n}px)`)}const c=s||r?{startIndex:i.startIndex,endIndex:i.endIndex,scrollStartPosition:i.scrollStartPosition,scrollEndPosition:i.scrollEndPosition,startIndexWithBuffer:i.startIndexWithBuffer,endIndexWithBuffer:i.endIndexWithBuffer,maxScrollPosition:i.maxScrollPosition}:void 0;if(s||r||l){const e=()=>{this.viewPortItems=i.startIndexWithBuffer>=0&&i.endIndexWithBuffer>=0?this.items.slice(i.startIndexWithBuffer,i.endIndexWithBuffer+1):[],this.vsUpdate.emit(this.viewPortItems),s&&this.vsStart.emit(c),r&&this.vsEnd.emit(c),(s||r)&&(this.changeDetectorRef.markForCheck(),this.vsChange.emit(c)),n>0?this.refresh_internal(!1,t,n-1):t&&t()};this.executeRefreshOutsideAngularZone?e():this.zone.run(e)}else{if(n>0&&(o||a))return void this.refresh_internal(!1,t,n-1);t&&t()}})})}getScrollElement(){return this.parentScroll instanceof Window?document.scrollingElement||document.documentElement||document.body:this.parentScroll||this.element.nativeElement}addScrollEventHandlers(){if(this.isAngularUniversalSSR)return;let e=this.getScrollElement();this.removeScrollEventHandlers(),this.zone.runOutsideAngular(()=>{this.parentScroll instanceof Window?(this.disposeScrollHandler=this.renderer.listen(\"window\",\"scroll\",this.onScroll),this.disposeResizeHandler=this.renderer.listen(\"window\",\"resize\",this.onScroll)):(this.disposeScrollHandler=this.renderer.listen(e,\"scroll\",this.onScroll),this._checkResizeInterval>0&&(this.checkScrollElementResizedTimer=setInterval(()=>{this.checkScrollElementResized()},this._checkResizeInterval)))})}removeScrollEventHandlers(){this.checkScrollElementResizedTimer&&clearInterval(this.checkScrollElementResizedTimer),this.disposeScrollHandler&&(this.disposeScrollHandler(),this.disposeScrollHandler=void 0),this.disposeResizeHandler&&(this.disposeResizeHandler(),this.disposeResizeHandler=void 0)}getElementsOffset(){if(this.isAngularUniversalSSR)return 0;let e=0;if(this.containerElementRef&&this.containerElementRef.nativeElement&&(e+=this.containerElementRef.nativeElement[this._offsetType]),this.parentScroll){let t=this.getScrollElement(),n=this.getElementSize(this.element.nativeElement),i=this.getElementSize(t);e+=this.horizontal?n.left-i.left:n.top-i.top,this.parentScroll instanceof Window||(e+=t[this._scrollType])}return e}countItemsPerWrapGroup(){if(this.isAngularUniversalSSR)return Math.round(this.horizontal?this.ssrViewportHeight/this.ssrChildHeight:this.ssrViewportWidth/this.ssrChildWidth);let e=this.horizontal?\"offsetLeft\":\"offsetTop\",t=(this.containerElementRef&&this.containerElementRef.nativeElement||this.contentElementRef.nativeElement).children,n=t?t.length:0;if(0===n)return 1;let i=t[0][e],s=1;for(;s0){let t=Math.min(l,e);e-=t,l-=t}m+=e,e>0&&s>=m&&++t}else{let e=Math.min(h,Math.max(r-p,0));if(l>0){let t=Math.min(l,e);e-=t,l-=t}p+=e,e>0&&r>=p&&++t}++d,u=0,h=0}}let f=this.wrapGroupDimensions.sumOfKnownWrapGroupChildWidths/this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes,_=this.wrapGroupDimensions.sumOfKnownWrapGroupChildHeights/this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes;n=this.childWidth||f||s,i=this.childHeight||_||r,this.horizontal?s>m&&(t+=Math.ceil((s-m)/n)):r>p&&(t+=Math.ceil((r-p)/i))}else{if(o.children.length>0){this.childWidth&&this.childHeight||(!this.minMeasuredChildWidth&&s>0&&(this.minMeasuredChildWidth=s),!this.minMeasuredChildHeight&&r>0&&(this.minMeasuredChildHeight=r));let e=this.getElementSize(o.children[0]);this.minMeasuredChildWidth=Math.min(this.minMeasuredChildWidth,e.width),this.minMeasuredChildHeight=Math.min(this.minMeasuredChildHeight,e.height)}n=this.childWidth||this.minMeasuredChildWidth||s,i=this.childHeight||this.minMeasuredChildHeight||r;let e=Math.max(Math.ceil(s/n),1),a=Math.max(Math.ceil(r/i),1);t=this.horizontal?e:a}let l=this.items.length,c=a*t,d=l/c,u=Math.ceil(l/a),h=0,m=this.horizontal?n:i;if(this.enableUnequalChildrenSizes){let e=0;for(let t=0;t0&&(o+=t.itemsPerWrapGroup-a),isNaN(r)&&(r=0),isNaN(o)&&(o=0),r=Math.min(Math.max(r,0),t.itemCount-1),o=Math.min(Math.max(o,0),t.itemCount-1);let l=this.bufferAmount*t.itemsPerWrapGroup;return{startIndex:r,endIndex:o,startIndexWithBuffer:Math.min(Math.max(r-l,0),t.itemCount-1),endIndexWithBuffer:Math.min(Math.max(o+l,0),t.itemCount-1),scrollStartPosition:e,scrollEndPosition:e+t.viewportLength,maxScrollPosition:t.maxScrollPosition}}calculateViewport(){let e=this.calculateDimensions(),t=this.getElementsOffset(),n=this.getScrollStartPosition();n>e.scrollLength+t&&!(this.parentScroll instanceof Window)?n=e.scrollLength:n-=t,n=Math.max(0,n);let i=this.calculatePageInfo(n,e),s=this.calculatePadding(i.startIndexWithBuffer,e),r=e.scrollLength;return{startIndex:i.startIndex,endIndex:i.endIndex,startIndexWithBuffer:i.startIndexWithBuffer,endIndexWithBuffer:i.endIndexWithBuffer,padding:Math.round(s),scrollLength:Math.round(r),scrollStartPosition:i.scrollStartPosition,scrollEndPosition:i.scrollEndPosition,maxScrollPosition:i.maxScrollPosition}}};return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(el),Eo(ld),Eo(Qr),Eo(Bc),Eo(\"virtual-scroller-default-options\",8))},e.\\u0275cmp=yt({type:e,selectors:[[\"virtual-scroller\"],[\"\",\"virtualScroller\",\"\"]],contentQueries:function(e,t,n){var i;1&e&&(Ic(n,bL,!0,Ka),Ic(n,vL,!0,Ka)),2&e&&(Dc(i=Rc())&&(t.headerElementRef=i.first),Dc(i=Rc())&&(t.containerElementRef=i.first))},viewQuery:function(e,t){var n;1&e&&(Ec(wL,!0,Ka),Ec(ML,!0,Ka)),2&e&&(Dc(n=Rc())&&(t.contentElementRef=n.first),Dc(n=Rc())&&(t.invisiblePaddingElementRef=n.first))},hostVars:6,hostBindings:function(e,t){2&e&&ua(\"horizontal\",t.horizontal)(\"vertical\",!t.horizontal)(\"selfScroll\",!t.parentScroll)},inputs:{executeRefreshOutsideAngularZone:\"executeRefreshOutsideAngularZone\",useMarginInsteadOfTranslate:\"useMarginInsteadOfTranslate\",ssrViewportWidth:\"ssrViewportWidth\",ssrViewportHeight:\"ssrViewportHeight\",compareItems:\"compareItems\",scrollThrottlingTime:\"scrollThrottlingTime\",scrollDebounceTime:\"scrollDebounceTime\",scrollAnimationTime:\"scrollAnimationTime\",scrollbarWidth:\"scrollbarWidth\",scrollbarHeight:\"scrollbarHeight\",checkResizeInterval:\"checkResizeInterval\",resizeBypassRefreshThreshold:\"resizeBypassRefreshThreshold\",modifyOverflowStyleOfParentScroll:\"modifyOverflowStyleOfParentScroll\",stripedTable:\"stripedTable\",horizontal:\"horizontal\",enableUnequalChildrenSizes:\"enableUnequalChildrenSizes\",bufferAmount:\"bufferAmount\",items:\"items\",parentScroll:\"parentScroll\",childWidth:\"childWidth\",childHeight:\"childHeight\",ssrChildWidth:\"ssrChildWidth\",ssrChildHeight:\"ssrChildHeight\"},outputs:{vsUpdate:\"vsUpdate\",vsChange:\"vsChange\",vsStart:\"vsStart\",vsEnd:\"vsEnd\"},exportAs:[\"virtualScroller\"],features:[Ra],ngContentSelectors:kL,decls:5,vars:0,consts:[[1,\"total-padding\"],[\"invisiblePadding\",\"\"],[1,\"scrollable-content\"],[\"content\",\"\"]],template:function(e,t){1&e&&(Zo(),jo(0,\"div\",0,1),Ro(2,\"div\",2,3),ea(4),Ho())},styles:[\"[_nghost-%COMP%] {\\n position: relative;\\n\\t display: block;\\n -webkit-overflow-scrolling: touch;\\n }\\n\\t\\n\\t.horizontal.selfScroll[_nghost-%COMP%] {\\n overflow-y: visible;\\n overflow-x: auto;\\n\\t}\\n\\t.vertical.selfScroll[_nghost-%COMP%] {\\n overflow-y: auto;\\n overflow-x: visible;\\n\\t}\\n\\t\\n .scrollable-content[_ngcontent-%COMP%] {\\n top: 0;\\n left: 0;\\n width: 100%;\\n height: 100%;\\n max-width: 100vw;\\n max-height: 100vh;\\n position: absolute;\\n }\\n\\n\\t.scrollable-content[_ngcontent-%COMP%] > * {\\n\\t\\tbox-sizing: border-box;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] {\\n\\t\\twhite-space: nowrap;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] .scrollable-content[_ngcontent-%COMP%] {\\n\\t\\tdisplay: flex;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] .scrollable-content[_ngcontent-%COMP%] > * {\\n\\t\\tflex-shrink: 0;\\n\\t\\tflex-grow: 0;\\n\\t\\twhite-space: initial;\\n\\t}\\n\\t\\n .total-padding[_ngcontent-%COMP%] {\\n width: 1px;\\n opacity: 0;\\n }\\n \\n .horizontal[_nghost-%COMP%] .total-padding[_ngcontent-%COMP%] {\\n height: 100%;\\n }\"]}),e})(),xL=(()=>{let e=class{};return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[{provide:\"virtual-scroller-default-options\",useFactory:SL}],imports:[[Mu]]}),e})();const CL={on:()=>{},off:()=>{}};let TL=(()=>{class e extends wf{constructor(e){super(),this.hammerOptions=e,this.events=[\"longpress\",\"slide\",\"slidestart\",\"slideend\",\"slideright\",\"slideleft\"]}buildHammer(e){const t=\"undefined\"!=typeof window?window.Hammer:null;if(!t)return CL;const n=new t(e,this.hammerOptions||void 0),i=new t.Pan,s=new t.Swipe,r=new t.Press,o=this._createRecognizer(i,{event:\"slide\",threshold:0},s),a=this._createRecognizer(r,{event:\"longpress\",time:500});return i.recognizeWith(s),a.recognizeWith(o),n.add([s,r,i,o,a]),n}_createRecognizer(e,t,...n){const i=new e.constructor(t);return n.push(e),n.forEach(e=>i.recognizeWith(e)),i}}return e.\\u0275fac=function(t){return new(t||e)(Qe(wy,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const DL=(()=>{function e(){return Error.call(this),this.message=\"no elements in sequence\",this.name=\"EmptyError\",this}return e.prototype=Object.create(Error.prototype),e})();function YL(e){return function(t){return 0===e?lp():t.lift(new EL(e))}}class EL{constructor(e){if(this.total=e,this.total<0)throw new op}call(e,t){return t.subscribe(new OL(e,this.total))}}class OL extends p{constructor(e,t){super(e),this.total=t,this.ring=new Array,this.count=0}_next(e){const t=this.ring,n=this.total,i=this.count++;t.length0){const n=this.count>=this.total?this.total:this.count,i=this.ring;for(let s=0;st.lift(new PL(e))}class PL{constructor(e){this.errorFactory=e}call(e,t){return t.subscribe(new AL(e,this.errorFactory))}}class AL extends p{constructor(e,t){super(e),this.errorFactory=t,this.hasValue=!1}_next(e){this.hasValue=!0,this.destination.next(e)}_complete(){if(this.hasValue)return this.destination.complete();{let t;try{t=this.errorFactory()}catch(e){t=e}this.destination.error(t)}}}function RL(){return new DL}function HL(e=null){return t=>t.lift(new jL(e))}class jL{constructor(e){this.defaultValue=e}call(e,t){return t.subscribe(new FL(e,this.defaultValue))}}class FL extends p{constructor(e,t){super(e),this.defaultValue=t,this.isEmpty=!0}_next(e){this.isEmpty=!1,this.destination.next(e)}_complete(){this.isEmpty&&this.destination.next(this.defaultValue),this.destination.complete()}}function NL(e,t){const n=arguments.length>=2;return i=>i.pipe(e?Tu((t,n)=>e(t,n,i)):$,YL(1),n?HL(t):IL(()=>new DL))}function zL(e,t){const n=arguments.length>=2;return i=>i.pipe(e?Tu((t,n)=>e(t,n,i)):$,cp(1),n?HL(t):IL(()=>new DL))}class VL{constructor(e,t,n){this.predicate=e,this.thisArg=t,this.source=n}call(e,t){return t.subscribe(new WL(e,this.predicate,this.thisArg,this.source))}}class WL extends p{constructor(e,t,n,i){super(e),this.predicate=t,this.thisArg=n,this.source=i,this.index=0,this.thisArg=n||this}notifyComplete(e){this.destination.next(e),this.destination.complete()}_next(e){let t=!1;try{t=this.predicate.call(this.thisArg,e,this.index++,this.source)}catch(n){return void this.destination.error(n)}t||this.notifyComplete(!1)}_complete(){this.notifyComplete(!0)}}function UL(e,t){let n=!1;return arguments.length>=2&&(n=!0),function(i){return i.lift(new $L(e,t,n))}}class $L{constructor(e,t,n=!1){this.accumulator=e,this.seed=t,this.hasSeed=n}call(e,t){return t.subscribe(new BL(e,this.accumulator,this.seed,this.hasSeed))}}class BL extends p{constructor(e,t,n,i){super(e),this.accumulator=t,this._seed=n,this.hasSeed=i,this.index=0}get seed(){return this._seed}set seed(e){this.hasSeed=!0,this._seed=e}_next(e){if(this.hasSeed)return this._tryNext(e);this.seed=e,this.destination.next(e)}_tryNext(e){const t=this.index++;let n;try{n=this.accumulator(this.seed,e,t)}catch(i){this.destination.error(i)}this.seed=n,this.destination.next(n)}}class qL{constructor(e,t){this.id=e,this.url=t}}class GL extends qL{constructor(e,t,n=\"imperative\",i=null){super(e,t),this.navigationTrigger=n,this.restoredState=i}toString(){return`NavigationStart(id: ${this.id}, url: '${this.url}')`}}class JL extends qL{constructor(e,t,n){super(e,t),this.urlAfterRedirects=n}toString(){return`NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`}}class KL extends qL{constructor(e,t,n){super(e,t),this.reason=n}toString(){return`NavigationCancel(id: ${this.id}, url: '${this.url}')`}}class ZL extends qL{constructor(e,t,n){super(e,t),this.error=n}toString(){return`NavigationError(id: ${this.id}, url: '${this.url}', error: ${this.error})`}}class QL extends qL{constructor(e,t,n,i){super(e,t),this.urlAfterRedirects=n,this.state=i}toString(){return`RoutesRecognized(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class XL extends qL{constructor(e,t,n,i){super(e,t),this.urlAfterRedirects=n,this.state=i}toString(){return`GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class ex extends qL{constructor(e,t,n,i,s){super(e,t),this.urlAfterRedirects=n,this.state=i,this.shouldActivate=s}toString(){return`GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`}}class tx extends qL{constructor(e,t,n,i){super(e,t),this.urlAfterRedirects=n,this.state=i}toString(){return`ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class nx extends qL{constructor(e,t,n,i){super(e,t),this.urlAfterRedirects=n,this.state=i}toString(){return`ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class ix{constructor(e){this.route=e}toString(){return`RouteConfigLoadStart(path: ${this.route.path})`}}class sx{constructor(e){this.route=e}toString(){return`RouteConfigLoadEnd(path: ${this.route.path})`}}class rx{constructor(e){this.snapshot=e}toString(){return`ChildActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\"}')`}}class ox{constructor(e){this.snapshot=e}toString(){return`ChildActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\"}')`}}class ax{constructor(e){this.snapshot=e}toString(){return`ActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\"}')`}}class lx{constructor(e){this.snapshot=e}toString(){return`ActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\"}')`}}class cx{constructor(e,t,n){this.routerEvent=e,this.position=t,this.anchor=n}toString(){return`Scroll(anchor: '${this.anchor}', position: '${this.position?`${this.position[0]}, ${this.position[1]}`:null}')`}}let dx=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:1,vars:0,template:function(e,t){1&e&&jo(0,\"router-outlet\")},directives:function(){return[mT]},encapsulation:2}),e})();class ux{constructor(e){this.params=e||{}}has(e){return this.params.hasOwnProperty(e)}get(e){if(this.has(e)){const t=this.params[e];return Array.isArray(t)?t[0]:t}return null}getAll(e){if(this.has(e)){const t=this.params[e];return Array.isArray(t)?t:[t]}return[]}get keys(){return Object.keys(this.params)}}function hx(e){return new ux(e)}function mx(e){const t=Error(\"NavigationCancelingError: \"+e);return t.ngNavigationCancelingError=!0,t}function px(e,t,n){const i=n.path.split(\"/\");if(i.length>e.length)return null;if(\"full\"===n.pathMatch&&(t.hasChildren()||i.lengtht.indexOf(e)>-1):e===t}function Mx(e){return Array.prototype.concat.apply([],e)}function kx(e){return e.length>0?e[e.length-1]:null}function Sx(e,t){for(const n in e)e.hasOwnProperty(n)&&t(e[n],n)}function Lx(e){return Wo(e)?e:Vo(e)?z(Promise.resolve(e)):xu(e)}function xx(e,t,n){return n?function(e,t){return vx(e,t)}(e.queryParams,t.queryParams)&&function e(t,n){if(!Yx(t.segments,n.segments))return!1;if(t.numberOfChildren!==n.numberOfChildren)return!1;for(const i in n.children){if(!t.children[i])return!1;if(!e(t.children[i],n.children[i]))return!1}return!0}(e.root,t.root):function(e,t){return Object.keys(t).length<=Object.keys(e).length&&Object.keys(t).every(n=>wx(e[n],t[n]))}(e.queryParams,t.queryParams)&&function e(t,n){return function t(n,i,s){if(n.segments.length>s.length)return!!Yx(n.segments.slice(0,s.length),s)&&!i.hasChildren();if(n.segments.length===s.length){if(!Yx(n.segments,s))return!1;for(const t in i.children){if(!n.children[t])return!1;if(!e(n.children[t],i.children[t]))return!1}return!0}{const e=s.slice(0,n.segments.length),r=s.slice(n.segments.length);return!!Yx(n.segments,e)&&!!n.children.primary&&t(n.children.primary,i,r)}}(t,n,n.segments)}(e.root,t.root)}class Cx{constructor(e,t,n){this.root=e,this.queryParams=t,this.fragment=n}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=hx(this.queryParams)),this._queryParamMap}toString(){return Px.serialize(this)}}class Tx{constructor(e,t){this.segments=e,this.children=t,this.parent=null,Sx(t,(e,t)=>e.parent=this)}hasChildren(){return this.numberOfChildren>0}get numberOfChildren(){return Object.keys(this.children).length}toString(){return Ax(this)}}class Dx{constructor(e,t){this.path=e,this.parameters=t}get parameterMap(){return this._parameterMap||(this._parameterMap=hx(this.parameters)),this._parameterMap}toString(){return zx(this)}}function Yx(e,t){return e.length===t.length&&e.every((e,n)=>e.path===t[n].path)}function Ex(e,t){let n=[];return Sx(e.children,(e,i)=>{\"primary\"===i&&(n=n.concat(t(e,i)))}),Sx(e.children,(e,i)=>{\"primary\"!==i&&(n=n.concat(t(e,i)))}),n}class Ox{}class Ix{parse(e){const t=new Bx(e);return new Cx(t.parseRootSegment(),t.parseQueryParams(),t.parseFragment())}serialize(e){var t;return`${`/${function e(t,n){if(!t.hasChildren())return Ax(t);if(n){const n=t.children.primary?e(t.children.primary,!1):\"\",i=[];return Sx(t.children,(t,n)=>{\"primary\"!==n&&i.push(`${n}:${e(t,!1)}`)}),i.length>0?`${n}(${i.join(\"//\")})`:n}{const n=Ex(t,(n,i)=>\"primary\"===i?[e(t.children.primary,!1)]:[`${i}:${e(n,!1)}`]);return`${Ax(t)}/(${n.join(\"//\")})`}}(e.root,!0)}`}${function(e){const t=Object.keys(e).map(t=>{const n=e[t];return Array.isArray(n)?n.map(e=>`${Hx(t)}=${Hx(e)}`).join(\"&\"):`${Hx(t)}=${Hx(n)}`});return t.length?`?${t.join(\"&\")}`:\"\"}(e.queryParams)}${\"string\"==typeof e.fragment?`#${t=e.fragment,encodeURI(t)}`:\"\"}`}}const Px=new Ix;function Ax(e){return e.segments.map(e=>zx(e)).join(\"/\")}function Rx(e){return encodeURIComponent(e).replace(/%40/g,\"@\").replace(/%3A/gi,\":\").replace(/%24/g,\"$\").replace(/%2C/gi,\",\")}function Hx(e){return Rx(e).replace(/%3B/gi,\";\")}function jx(e){return Rx(e).replace(/\\(/g,\"%28\").replace(/\\)/g,\"%29\").replace(/%26/gi,\"&\")}function Fx(e){return decodeURIComponent(e)}function Nx(e){return Fx(e.replace(/\\+/g,\"%20\"))}function zx(e){return`${jx(e.path)}${t=e.parameters,Object.keys(t).map(e=>`;${jx(e)}=${jx(t[e])}`).join(\"\")}`;var t}const Vx=/^[^\\/()?;=#]+/;function Wx(e){const t=e.match(Vx);return t?t[0]:\"\"}const Ux=/^[^=?&#]+/,$x=/^[^?&#]+/;class Bx{constructor(e){this.url=e,this.remaining=e}parseRootSegment(){return this.consumeOptional(\"/\"),\"\"===this.remaining||this.peekStartsWith(\"?\")||this.peekStartsWith(\"#\")?new Tx([],{}):new Tx([],this.parseChildren())}parseQueryParams(){const e={};if(this.consumeOptional(\"?\"))do{this.parseQueryParam(e)}while(this.consumeOptional(\"&\"));return e}parseFragment(){return this.consumeOptional(\"#\")?decodeURIComponent(this.remaining):null}parseChildren(){if(\"\"===this.remaining)return{};this.consumeOptional(\"/\");const e=[];for(this.peekStartsWith(\"(\")||e.push(this.parseSegment());this.peekStartsWith(\"/\")&&!this.peekStartsWith(\"//\")&&!this.peekStartsWith(\"/(\");)this.capture(\"/\"),e.push(this.parseSegment());let t={};this.peekStartsWith(\"/(\")&&(this.capture(\"/\"),t=this.parseParens(!0));let n={};return this.peekStartsWith(\"(\")&&(n=this.parseParens(!1)),(e.length>0||Object.keys(t).length>0)&&(n.primary=new Tx(e,t)),n}parseSegment(){const e=Wx(this.remaining);if(\"\"===e&&this.peekStartsWith(\";\"))throw new Error(`Empty path url segment cannot have parameters: '${this.remaining}'.`);return this.capture(e),new Dx(Fx(e),this.parseMatrixParams())}parseMatrixParams(){const e={};for(;this.consumeOptional(\";\");)this.parseParam(e);return e}parseParam(e){const t=Wx(this.remaining);if(!t)return;this.capture(t);let n=\"\";if(this.consumeOptional(\"=\")){const e=Wx(this.remaining);e&&(n=e,this.capture(n))}e[Fx(t)]=Fx(n)}parseQueryParam(e){const t=function(e){const t=e.match(Ux);return t?t[0]:\"\"}(this.remaining);if(!t)return;this.capture(t);let n=\"\";if(this.consumeOptional(\"=\")){const e=function(e){const t=e.match($x);return t?t[0]:\"\"}(this.remaining);e&&(n=e,this.capture(n))}const i=Nx(t),s=Nx(n);if(e.hasOwnProperty(i)){let t=e[i];Array.isArray(t)||(t=[t],e[i]=t),t.push(s)}else e[i]=s}parseParens(e){const t={};for(this.capture(\"(\");!this.consumeOptional(\")\")&&this.remaining.length>0;){const n=Wx(this.remaining),i=this.remaining[n.length];if(\"/\"!==i&&\")\"!==i&&\";\"!==i)throw new Error(`Cannot parse url '${this.url}'`);let s=void 0;n.indexOf(\":\")>-1?(s=n.substr(0,n.indexOf(\":\")),this.capture(s),this.capture(\":\")):e&&(s=\"primary\");const r=this.parseChildren();t[s]=1===Object.keys(r).length?r.primary:new Tx([],r),this.consumeOptional(\"//\")}return t}peekStartsWith(e){return this.remaining.startsWith(e)}consumeOptional(e){return!!this.peekStartsWith(e)&&(this.remaining=this.remaining.substring(e.length),!0)}capture(e){if(!this.consumeOptional(e))throw new Error(`Expected \"${e}\".`)}}class qx{constructor(e){this._root=e}get root(){return this._root.value}parent(e){const t=this.pathFromRoot(e);return t.length>1?t[t.length-2]:null}children(e){const t=Gx(e,this._root);return t?t.children.map(e=>e.value):[]}firstChild(e){const t=Gx(e,this._root);return t&&t.children.length>0?t.children[0].value:null}siblings(e){const t=Jx(e,this._root);return t.length<2?[]:t[t.length-2].children.map(e=>e.value).filter(t=>t!==e)}pathFromRoot(e){return Jx(e,this._root).map(e=>e.value)}}function Gx(e,t){if(e===t.value)return t;for(const n of t.children){const t=Gx(e,n);if(t)return t}return null}function Jx(e,t){if(e===t.value)return[t];for(const n of t.children){const i=Jx(e,n);if(i.length)return i.unshift(t),i}return[]}class Kx{constructor(e,t){this.value=e,this.children=t}toString(){return`TreeNode(${this.value})`}}function Zx(e){const t={};return e&&e.children.forEach(e=>t[e.value.outlet]=e),t}class Qx extends qx{constructor(e,t){super(e),this.snapshot=t,sC(this,e)}toString(){return this.snapshot.toString()}}function Xx(e,t){const n=function(e,t){const n=new nC([],{},{},\"\",{},\"primary\",t,null,e.root,-1,{});return new iC(\"\",new Kx(n,[]))}(e,t),i=new hS([new Dx(\"\",{})]),s=new hS({}),r=new hS({}),o=new hS({}),a=new hS(\"\"),l=new eC(i,s,o,a,r,\"primary\",t,n.root);return l.snapshot=n.root,new Qx(new Kx(l,[]),n)}class eC{constructor(e,t,n,i,s,r,o,a){this.url=e,this.params=t,this.queryParams=n,this.fragment=i,this.data=s,this.outlet=r,this.component=o,this._futureSnapshot=a}get routeConfig(){return this._futureSnapshot.routeConfig}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap||(this._paramMap=this.params.pipe(H(e=>hx(e)))),this._paramMap}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=this.queryParams.pipe(H(e=>hx(e)))),this._queryParamMap}toString(){return this.snapshot?this.snapshot.toString():`Future(${this._futureSnapshot})`}}function tC(e,t=\"emptyOnly\"){const n=e.pathFromRoot;let i=0;if(\"always\"!==t)for(i=n.length-1;i>=1;){const e=n[i],t=n[i-1];if(e.routeConfig&&\"\"===e.routeConfig.path)i--;else{if(t.component)break;i--}}return function(e){return e.reduce((e,t)=>({params:Object.assign(Object.assign({},e.params),t.params),data:Object.assign(Object.assign({},e.data),t.data),resolve:Object.assign(Object.assign({},e.resolve),t._resolvedData)}),{params:{},data:{},resolve:{}})}(n.slice(i))}class nC{constructor(e,t,n,i,s,r,o,a,l,c,d){this.url=e,this.params=t,this.queryParams=n,this.fragment=i,this.data=s,this.outlet=r,this.component=o,this.routeConfig=a,this._urlSegment=l,this._lastPathIndex=c,this._resolve=d}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap||(this._paramMap=hx(this.params)),this._paramMap}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=hx(this.queryParams)),this._queryParamMap}toString(){return`Route(url:'${this.url.map(e=>e.toString()).join(\"/\")}', path:'${this.routeConfig?this.routeConfig.path:\"\"}')`}}class iC extends qx{constructor(e,t){super(t),this.url=e,sC(this,t)}toString(){return rC(this._root)}}function sC(e,t){t.value._routerState=e,t.children.forEach(t=>sC(e,t))}function rC(e){const t=e.children.length>0?` { ${e.children.map(rC).join(\", \")} } `:\"\";return`${e.value}${t}`}function oC(e){if(e.snapshot){const t=e.snapshot,n=e._futureSnapshot;e.snapshot=n,vx(t.queryParams,n.queryParams)||e.queryParams.next(n.queryParams),t.fragment!==n.fragment&&e.fragment.next(n.fragment),vx(t.params,n.params)||e.params.next(n.params),function(e,t){if(e.length!==t.length)return!1;for(let n=0;nvx(e.parameters,i[t].parameters))&&!(!e.parent!=!t.parent)&&(!e.parent||aC(e.parent,t.parent))}function lC(e){return\"object\"==typeof e&&null!=e&&!e.outlets&&!e.segmentPath}function cC(e,t,n,i,s){let r={};return i&&Sx(i,(e,t)=>{r[t]=Array.isArray(e)?e.map(e=>`${e}`):`${e}`}),new Cx(n.root===e?t:function e(t,n,i){const s={};return Sx(t.children,(t,r)=>{s[r]=t===n?i:e(t,n,i)}),new Tx(t.segments,s)}(n.root,e,t),r,s)}class dC{constructor(e,t,n){if(this.isAbsolute=e,this.numberOfDoubleDots=t,this.commands=n,e&&n.length>0&&lC(n[0]))throw new Error(\"Root segment cannot have matrix parameters\");const i=n.find(e=>\"object\"==typeof e&&null!=e&&e.outlets);if(i&&i!==kx(n))throw new Error(\"{outlets:{}} has to be the last command\")}toRoot(){return this.isAbsolute&&1===this.commands.length&&\"/\"==this.commands[0]}}class uC{constructor(e,t,n){this.segmentGroup=e,this.processChildren=t,this.index=n}}function hC(e){return\"object\"==typeof e&&null!=e&&e.outlets?e.outlets.primary:`${e}`}function mC(e,t,n){if(e||(e=new Tx([],{})),0===e.segments.length&&e.hasChildren())return pC(e,t,n);const i=function(e,t,n){let i=0,s=t;const r={match:!1,pathIndex:0,commandIndex:0};for(;s=n.length)return r;const t=e.segments[s],o=hC(n[i]),a=i0&&void 0===o)break;if(o&&a&&\"object\"==typeof a&&void 0===a.outlets){if(!yC(o,a,t))return r;i+=2}else{if(!yC(o,{},t))return r;i++}s++}return{match:!0,pathIndex:s,commandIndex:i}}(e,t,n),s=n.slice(i.commandIndex);if(i.match&&i.pathIndex{null!==n&&(s[i]=mC(e.children[i],t,n))}),Sx(e.children,(e,t)=>{void 0===i[t]&&(s[t]=e)}),new Tx(e.segments,s)}}function fC(e,t,n){const i=e.segments.slice(0,t);let s=0;for(;s{null!==e&&(t[n]=fC(new Tx([],{}),0,e))}),t}function gC(e){const t={};return Sx(e,(e,n)=>t[n]=`${e}`),t}function yC(e,t,n){return e==n.path&&vx(t,n.parameters)}class bC{constructor(e,t,n,i){this.routeReuseStrategy=e,this.futureState=t,this.currState=n,this.forwardEvent=i}activate(e){const t=this.futureState._root,n=this.currState?this.currState._root:null;this.deactivateChildRoutes(t,n,e),oC(this.futureState.root),this.activateChildRoutes(t,n,e)}deactivateChildRoutes(e,t,n){const i=Zx(t);e.children.forEach(e=>{const t=e.value.outlet;this.deactivateRoutes(e,i[t],n),delete i[t]}),Sx(i,(e,t)=>{this.deactivateRouteAndItsChildren(e,n)})}deactivateRoutes(e,t,n){const i=e.value,s=t?t.value:null;if(i===s)if(i.component){const s=n.getContext(i.outlet);s&&this.deactivateChildRoutes(e,t,s.children)}else this.deactivateChildRoutes(e,t,n);else s&&this.deactivateRouteAndItsChildren(t,n)}deactivateRouteAndItsChildren(e,t){this.routeReuseStrategy.shouldDetach(e.value.snapshot)?this.detachAndStoreRouteSubtree(e,t):this.deactivateRouteAndOutlet(e,t)}detachAndStoreRouteSubtree(e,t){const n=t.getContext(e.value.outlet);if(n&&n.outlet){const t=n.outlet.detach(),i=n.children.onOutletDeactivated();this.routeReuseStrategy.store(e.value.snapshot,{componentRef:t,route:e,contexts:i})}}deactivateRouteAndOutlet(e,t){const n=t.getContext(e.value.outlet);if(n){const i=Zx(e),s=e.value.component?n.children:t;Sx(i,(e,t)=>this.deactivateRouteAndItsChildren(e,s)),n.outlet&&(n.outlet.deactivate(),n.children.onOutletDeactivated())}}activateChildRoutes(e,t,n){const i=Zx(t);e.children.forEach(e=>{this.activateRoutes(e,i[e.value.outlet],n),this.forwardEvent(new lx(e.value.snapshot))}),e.children.length&&this.forwardEvent(new ox(e.value.snapshot))}activateRoutes(e,t,n){const i=e.value,s=t?t.value:null;if(oC(i),i===s)if(i.component){const s=n.getOrCreateContext(i.outlet);this.activateChildRoutes(e,t,s.children)}else this.activateChildRoutes(e,t,n);else if(i.component){const t=n.getOrCreateContext(i.outlet);if(this.routeReuseStrategy.shouldAttach(i.snapshot)){const e=this.routeReuseStrategy.retrieve(i.snapshot);this.routeReuseStrategy.store(i.snapshot,null),t.children.onOutletReAttached(e.contexts),t.attachRef=e.componentRef,t.route=e.route.value,t.outlet&&t.outlet.attach(e.componentRef,e.route.value),vC(e.route)}else{const n=function(e){for(let t=e.parent;t;t=t.parent){const e=t.routeConfig;if(e&&e._loadedConfig)return e._loadedConfig;if(e&&e.component)return null}return null}(i.snapshot),s=n?n.module.componentFactoryResolver:null;t.attachRef=null,t.route=i,t.resolver=s,t.outlet&&t.outlet.activateWith(i,s),this.activateChildRoutes(e,null,t.children)}}else this.activateChildRoutes(e,null,n)}}function vC(e){oC(e.value),e.children.forEach(vC)}function wC(e){return\"function\"==typeof e}function MC(e){return e instanceof Cx}class kC{constructor(e){this.segmentGroup=e||null}}class SC{constructor(e){this.urlTree=e}}function LC(e){return new v(t=>t.error(new kC(e)))}function xC(e){return new v(t=>t.error(new SC(e)))}function CC(e){return new v(t=>t.error(new Error(`Only absolute redirects can have named outlets. redirectTo: '${e}'`)))}class TC{constructor(e,t,n,i,s){this.configLoader=t,this.urlSerializer=n,this.urlTree=i,this.config=s,this.allowRedirects=!0,this.ngModule=e.get(it)}apply(){return this.expandSegmentGroup(this.ngModule,this.config,this.urlTree.root,\"primary\").pipe(H(e=>this.createUrlTree(e,this.urlTree.queryParams,this.urlTree.fragment))).pipe(aw(e=>{if(e instanceof SC)return this.allowRedirects=!1,this.match(e.urlTree);if(e instanceof kC)throw this.noMatchError(e);throw e}))}match(e){return this.expandSegmentGroup(this.ngModule,this.config,e.root,\"primary\").pipe(H(t=>this.createUrlTree(t,e.queryParams,e.fragment))).pipe(aw(e=>{if(e instanceof kC)throw this.noMatchError(e);throw e}))}noMatchError(e){return new Error(`Cannot match any routes. URL Segment: '${e.segmentGroup}'`)}createUrlTree(e,t,n){const i=e.segments.length>0?new Tx([],{primary:e}):e;return new Cx(i,t,n)}expandSegmentGroup(e,t,n,i){return 0===n.segments.length&&n.hasChildren()?this.expandChildren(e,t,n).pipe(H(e=>new Tx([],e))):this.expandSegment(e,n,t,n.segments,i,!0)}expandChildren(e,t,n){return function(e,t){if(0===Object.keys(e).length)return xu({});const n=[],i=[],s={};return Sx(e,(e,r)=>{const o=t(r,e).pipe(H(e=>s[r]=e));\"primary\"===r?n.push(o):i.push(o)}),xu.apply(null,n.concat(i)).pipe(Pf(),NL(),H(()=>s))}(n.children,(n,i)=>this.expandSegmentGroup(e,t,i,n))}expandSegment(e,t,n,i,s,r){return xu(...n).pipe(H(o=>this.expandSegmentAgainstRoute(e,t,n,o,i,s,r).pipe(aw(e=>{if(e instanceof kC)return xu(null);throw e}))),Pf(),zL(e=>!!e),aw((e,n)=>{if(e instanceof DL||\"EmptyError\"===e.name){if(this.noLeftoversInUrl(t,i,s))return xu(new Tx([],{}));throw new kC(t)}throw e}))}noLeftoversInUrl(e,t,n){return 0===t.length&&!e.children[n]}expandSegmentAgainstRoute(e,t,n,i,s,r,o){return OC(i)!==r?LC(t):void 0===i.redirectTo?this.matchSegmentAgainstRoute(e,t,i,s):o&&this.allowRedirects?this.expandSegmentAgainstRouteUsingRedirect(e,t,n,i,s,r):LC(t)}expandSegmentAgainstRouteUsingRedirect(e,t,n,i,s,r){return\"**\"===i.path?this.expandWildCardWithParamsAgainstRouteUsingRedirect(e,n,i,r):this.expandRegularSegmentAgainstRouteUsingRedirect(e,t,n,i,s,r)}expandWildCardWithParamsAgainstRouteUsingRedirect(e,t,n,i){const s=this.applyRedirectCommands([],n.redirectTo,{});return n.redirectTo.startsWith(\"/\")?xC(s):this.lineralizeSegments(n,s).pipe(V(n=>{const s=new Tx(n,{});return this.expandSegment(e,s,t,n,i,!1)}))}expandRegularSegmentAgainstRouteUsingRedirect(e,t,n,i,s,r){const{matched:o,consumedSegments:a,lastChild:l,positionalParamSegments:c}=DC(t,i,s);if(!o)return LC(t);const d=this.applyRedirectCommands(a,i.redirectTo,c);return i.redirectTo.startsWith(\"/\")?xC(d):this.lineralizeSegments(i,d).pipe(V(i=>this.expandSegment(e,t,n,i.concat(s.slice(l)),r,!1)))}matchSegmentAgainstRoute(e,t,n,i){if(\"**\"===n.path)return n.loadChildren?this.configLoader.load(e.injector,n).pipe(H(e=>(n._loadedConfig=e,new Tx(i,{})))):xu(new Tx(i,{}));const{matched:s,consumedSegments:r,lastChild:o}=DC(t,n,i);if(!s)return LC(t);const a=i.slice(o);return this.getChildConfig(e,n,i).pipe(V(e=>{const n=e.module,i=e.routes,{segmentGroup:s,slicedSegments:o}=function(e,t,n,i){return n.length>0&&function(e,t,n){return n.some(n=>EC(e,t,n)&&\"primary\"!==OC(n))}(e,n,i)?{segmentGroup:YC(new Tx(t,function(e,t){const n={};n.primary=t;for(const i of e)\"\"===i.path&&\"primary\"!==OC(i)&&(n[OC(i)]=new Tx([],{}));return n}(i,new Tx(n,e.children)))),slicedSegments:[]}:0===n.length&&function(e,t,n){return n.some(n=>EC(e,t,n))}(e,n,i)?{segmentGroup:YC(new Tx(e.segments,function(e,t,n,i){const s={};for(const r of n)EC(e,t,r)&&!i[OC(r)]&&(s[OC(r)]=new Tx([],{}));return Object.assign(Object.assign({},i),s)}(e,n,i,e.children))),slicedSegments:n}:{segmentGroup:e,slicedSegments:n}}(t,r,a,i);return 0===o.length&&s.hasChildren()?this.expandChildren(n,i,s).pipe(H(e=>new Tx(r,e))):0===i.length&&0===o.length?xu(new Tx(r,{})):this.expandSegment(n,s,i,o,\"primary\",!0).pipe(H(e=>new Tx(r.concat(e.segments),e.children)))}))}getChildConfig(e,t,n){return t.children?xu(new fx(t.children,e)):t.loadChildren?void 0!==t._loadedConfig?xu(t._loadedConfig):function(e,t,n){const i=t.canLoad;return i&&0!==i.length?z(i).pipe(H(i=>{const s=e.get(i);let r;if(function(e){return e&&wC(e.canLoad)}(s))r=s.canLoad(t,n);else{if(!wC(s))throw new Error(\"Invalid CanLoad guard\");r=s(t,n)}return Lx(r)})).pipe(Pf(),(s=e=>!0===e,e=>e.lift(new VL(s,void 0,e)))):xu(!0);var s}(e.injector,t,n).pipe(V(n=>n?this.configLoader.load(e.injector,t).pipe(H(e=>(t._loadedConfig=e,e))):function(e){return new v(t=>t.error(mx(`Cannot load children because the guard of the route \"path: '${e.path}'\" returned false`)))}(t))):xu(new fx([],e))}lineralizeSegments(e,t){let n=[],i=t.root;for(;;){if(n=n.concat(i.segments),0===i.numberOfChildren)return xu(n);if(i.numberOfChildren>1||!i.children.primary)return CC(e.redirectTo);i=i.children.primary}}applyRedirectCommands(e,t,n){return this.applyRedirectCreatreUrlTree(t,this.urlSerializer.parse(t),e,n)}applyRedirectCreatreUrlTree(e,t,n,i){const s=this.createSegmentGroup(e,t.root,n,i);return new Cx(s,this.createQueryParams(t.queryParams,this.urlTree.queryParams),t.fragment)}createQueryParams(e,t){const n={};return Sx(e,(e,i)=>{if(\"string\"==typeof e&&e.startsWith(\":\")){const s=e.substring(1);n[i]=t[s]}else n[i]=e}),n}createSegmentGroup(e,t,n,i){const s=this.createSegments(e,t.segments,n,i);let r={};return Sx(t.children,(t,s)=>{r[s]=this.createSegmentGroup(e,t,n,i)}),new Tx(s,r)}createSegments(e,t,n,i){return t.map(t=>t.path.startsWith(\":\")?this.findPosParam(e,t,i):this.findOrReturn(t,n))}findPosParam(e,t,n){const i=n[t.path.substring(1)];if(!i)throw new Error(`Cannot redirect to '${e}'. Cannot find '${t.path}'.`);return i}findOrReturn(e,t){let n=0;for(const i of t){if(i.path===e.path)return t.splice(n),i;n++}return e}}function DC(e,t,n){if(\"\"===t.path)return\"full\"===t.pathMatch&&(e.hasChildren()||n.length>0)?{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}:{matched:!0,consumedSegments:[],lastChild:0,positionalParamSegments:{}};const i=(t.matcher||px)(n,e,t);return i?{matched:!0,consumedSegments:i.consumed,lastChild:i.consumed.length,positionalParamSegments:i.posParams}:{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}}function YC(e){if(1===e.numberOfChildren&&e.children.primary){const t=e.children.primary;return new Tx(e.segments.concat(t.segments),t.children)}return e}function EC(e,t,n){return(!(e.hasChildren()||t.length>0)||\"full\"!==n.pathMatch)&&\"\"===n.path&&void 0!==n.redirectTo}function OC(e){return e.outlet||\"primary\"}class IC{constructor(e){this.path=e,this.route=this.path[this.path.length-1]}}class PC{constructor(e,t){this.component=e,this.route=t}}function AC(e,t,n){const i=e._root;return function e(t,n,i,s,r={canDeactivateChecks:[],canActivateChecks:[]}){const o=Zx(n);return t.children.forEach(t=>{!function(t,n,i,s,r={canDeactivateChecks:[],canActivateChecks:[]}){const o=t.value,a=n?n.value:null,l=i?i.getContext(t.value.outlet):null;if(a&&o.routeConfig===a.routeConfig){const c=function(e,t,n){if(\"function\"==typeof n)return n(e,t);switch(n){case\"pathParamsChange\":return!Yx(e.url,t.url);case\"pathParamsOrQueryParamsChange\":return!Yx(e.url,t.url)||!vx(e.queryParams,t.queryParams);case\"always\":return!0;case\"paramsOrQueryParamsChange\":return!aC(e,t)||!vx(e.queryParams,t.queryParams);case\"paramsChange\":default:return!aC(e,t)}}(a,o,o.routeConfig.runGuardsAndResolvers);c?r.canActivateChecks.push(new IC(s)):(o.data=a.data,o._resolvedData=a._resolvedData),e(t,n,o.component?l?l.children:null:i,s,r),c&&r.canDeactivateChecks.push(new PC(l&&l.outlet&&l.outlet.component||null,a))}else a&&HC(n,l,r),r.canActivateChecks.push(new IC(s)),e(t,null,o.component?l?l.children:null:i,s,r)}(t,o[t.value.outlet],i,s.concat([t.value]),r),delete o[t.value.outlet]}),Sx(o,(e,t)=>HC(e,i.getContext(t),r)),r}(i,t?t._root:null,n,[i.value])}function RC(e,t,n){const i=function(e){if(!e)return null;for(let t=e.parent;t;t=t.parent){const e=t.routeConfig;if(e&&e._loadedConfig)return e._loadedConfig}return null}(t);return(i?i.module.injector:n).get(e)}function HC(e,t,n){const i=Zx(e),s=e.value;Sx(i,(e,i)=>{HC(e,s.component?t?t.children.getContext(i):null:t,n)}),n.canDeactivateChecks.push(new PC(s.component&&t&&t.outlet&&t.outlet.isActivated?t.outlet.component:null,s))}const jC=Symbol(\"INITIAL_VALUE\");function FC(){return Wb(e=>tS(...e.map(e=>e.pipe(cp(1),Rf(jC)))).pipe(UL((e,t)=>{let n=!1;return t.reduce((e,i,s)=>{if(e!==jC)return e;if(i===jC&&(n=!0),!n){if(!1===i)return i;if(s===t.length-1||MC(i))return i}return e},e)},jC),Tu(e=>e!==jC),H(e=>MC(e)?e:!0===e),cp(1)))}function NC(e,t){return null!==e&&t&&t(new ax(e)),xu(!0)}function zC(e,t){return null!==e&&t&&t(new rx(e)),xu(!0)}function VC(e,t,n){const i=t.routeConfig?t.routeConfig.canActivate:null;return i&&0!==i.length?xu(i.map(i=>qv(()=>{const s=RC(i,t,n);let r;if(function(e){return e&&wC(e.canActivate)}(s))r=Lx(s.canActivate(t,e));else{if(!wC(s))throw new Error(\"Invalid CanActivate guard\");r=Lx(s(t,e))}return r.pipe(zL())}))).pipe(FC()):xu(!0)}function WC(e,t,n){const i=t[t.length-1],s=t.slice(0,t.length-1).reverse().map(e=>function(e){const t=e.routeConfig?e.routeConfig.canActivateChild:null;return t&&0!==t.length?{node:e,guards:t}:null}(e)).filter(e=>null!==e).map(t=>qv(()=>xu(t.guards.map(s=>{const r=RC(s,t.node,n);let o;if(function(e){return e&&wC(e.canActivateChild)}(r))o=Lx(r.canActivateChild(i,e));else{if(!wC(r))throw new Error(\"Invalid CanActivateChild guard\");o=Lx(r(i,e))}return o.pipe(zL())})).pipe(FC())));return xu(s).pipe(FC())}class UC{}class $C{constructor(e,t,n,i,s,r){this.rootComponentType=e,this.config=t,this.urlTree=n,this.url=i,this.paramsInheritanceStrategy=s,this.relativeLinkResolution=r}recognize(){try{const e=GC(this.urlTree.root,[],[],this.config,this.relativeLinkResolution).segmentGroup,t=this.processSegmentGroup(this.config,e,\"primary\"),n=new nC([],Object.freeze({}),Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,{},\"primary\",this.rootComponentType,null,this.urlTree.root,-1,{}),i=new Kx(n,t),s=new iC(this.url,i);return this.inheritParamsAndData(s._root),xu(s)}catch(e){return new v(t=>t.error(e))}}inheritParamsAndData(e){const t=e.value,n=tC(t,this.paramsInheritanceStrategy);t.params=Object.freeze(n.params),t.data=Object.freeze(n.data),e.children.forEach(e=>this.inheritParamsAndData(e))}processSegmentGroup(e,t,n){return 0===t.segments.length&&t.hasChildren()?this.processChildren(e,t):this.processSegment(e,t,t.segments,n)}processChildren(e,t){const n=Ex(t,(t,n)=>this.processSegmentGroup(e,t,n));return function(e){const t={};e.forEach(e=>{const n=t[e.value.outlet];if(n){const t=n.url.map(e=>e.toString()).join(\"/\"),i=e.value.url.map(e=>e.toString()).join(\"/\");throw new Error(`Two segments cannot have the same outlet name: '${t}' and '${i}'.`)}t[e.value.outlet]=e.value})}(n),n.sort((e,t)=>\"primary\"===e.value.outlet?-1:\"primary\"===t.value.outlet?1:e.value.outlet.localeCompare(t.value.outlet)),n}processSegment(e,t,n,i){for(const r of e)try{return this.processSegmentAgainstRoute(r,t,n,i)}catch(s){if(!(s instanceof UC))throw s}if(this.noLeftoversInUrl(t,n,i))return[];throw new UC}noLeftoversInUrl(e,t,n){return 0===t.length&&!e.children[n]}processSegmentAgainstRoute(e,t,n,i){if(e.redirectTo)throw new UC;if((e.outlet||\"primary\")!==i)throw new UC;let s,r=[],o=[];if(\"**\"===e.path){const r=n.length>0?kx(n).parameters:{};s=new nC(n,r,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,ZC(e),i,e.component,e,BC(t),qC(t)+n.length,QC(e))}else{const a=function(e,t,n){if(\"\"===t.path){if(\"full\"===t.pathMatch&&(e.hasChildren()||n.length>0))throw new UC;return{consumedSegments:[],lastChild:0,parameters:{}}}const i=(t.matcher||px)(n,e,t);if(!i)throw new UC;const s={};Sx(i.posParams,(e,t)=>{s[t]=e.path});const r=i.consumed.length>0?Object.assign(Object.assign({},s),i.consumed[i.consumed.length-1].parameters):s;return{consumedSegments:i.consumed,lastChild:i.consumed.length,parameters:r}}(t,e,n);r=a.consumedSegments,o=n.slice(a.lastChild),s=new nC(r,a.parameters,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,ZC(e),i,e.component,e,BC(t),qC(t)+r.length,QC(e))}const a=function(e){return e.children?e.children:e.loadChildren?e._loadedConfig.routes:[]}(e),{segmentGroup:l,slicedSegments:c}=GC(t,r,o,a,this.relativeLinkResolution);if(0===c.length&&l.hasChildren()){const e=this.processChildren(a,l);return[new Kx(s,e)]}if(0===a.length&&0===c.length)return[new Kx(s,[])];const d=this.processSegment(a,l,c,\"primary\");return[new Kx(s,d)]}}function BC(e){let t=e;for(;t._sourceSegment;)t=t._sourceSegment;return t}function qC(e){let t=e,n=t._segmentIndexShift?t._segmentIndexShift:0;for(;t._sourceSegment;)t=t._sourceSegment,n+=t._segmentIndexShift?t._segmentIndexShift:0;return n-1}function GC(e,t,n,i,s){if(n.length>0&&function(e,t,n){return n.some(n=>JC(e,t,n)&&\"primary\"!==KC(n))}(e,n,i)){const s=new Tx(t,function(e,t,n,i){const s={};s.primary=i,i._sourceSegment=e,i._segmentIndexShift=t.length;for(const r of n)if(\"\"===r.path&&\"primary\"!==KC(r)){const n=new Tx([],{});n._sourceSegment=e,n._segmentIndexShift=t.length,s[KC(r)]=n}return s}(e,t,i,new Tx(n,e.children)));return s._sourceSegment=e,s._segmentIndexShift=t.length,{segmentGroup:s,slicedSegments:[]}}if(0===n.length&&function(e,t,n){return n.some(n=>JC(e,t,n))}(e,n,i)){const r=new Tx(e.segments,function(e,t,n,i,s,r){const o={};for(const a of i)if(JC(e,n,a)&&!s[KC(a)]){const n=new Tx([],{});n._sourceSegment=e,n._segmentIndexShift=\"legacy\"===r?e.segments.length:t.length,o[KC(a)]=n}return Object.assign(Object.assign({},s),o)}(e,t,n,i,e.children,s));return r._sourceSegment=e,r._segmentIndexShift=t.length,{segmentGroup:r,slicedSegments:n}}const r=new Tx(e.segments,e.children);return r._sourceSegment=e,r._segmentIndexShift=t.length,{segmentGroup:r,slicedSegments:n}}function JC(e,t,n){return(!(e.hasChildren()||t.length>0)||\"full\"!==n.pathMatch)&&\"\"===n.path&&void 0===n.redirectTo}function KC(e){return e.outlet||\"primary\"}function ZC(e){return e.data||{}}function QC(e){return e.resolve||{}}function XC(e,t,n,i){const s=RC(e,t,i);return Lx(s.resolve?s.resolve(t,n):s(t,n))}function eT(e){return function(t){return t.pipe(Wb(t=>{const n=e(t);return n?z(n).pipe(H(()=>t)):z([t])}))}}class tT{shouldDetach(e){return!1}store(e,t){}shouldAttach(e){return!1}retrieve(e){return null}shouldReuseRoute(e,t){return e.routeConfig===t.routeConfig}}const nT=new Ve(\"ROUTES\");class iT{constructor(e,t,n,i){this.loader=e,this.compiler=t,this.onLoadStartListener=n,this.onLoadEndListener=i}load(e,t){return this.onLoadStartListener&&this.onLoadStartListener(t),this.loadModuleFactory(t.loadChildren).pipe(H(n=>{this.onLoadEndListener&&this.onLoadEndListener(t);const i=n.create(e);return new fx(Mx(i.injector.get(nT)).map(bx),i)}))}loadModuleFactory(e){return\"string\"==typeof e?z(this.loader.load(e)):Lx(e()).pipe(V(e=>e instanceof st?xu(e):z(this.compiler.compileModuleAsync(e))))}}class sT{shouldProcessUrl(e){return!0}extract(e){return e}merge(e,t){return e}}function rT(e){throw e}function oT(e,t,n){return t.parse(\"/\")}function aT(e,t){return xu(null)}let lT=(()=>{class e{constructor(e,t,n,i,s,r,o,a){this.rootComponentType=e,this.urlSerializer=t,this.rootContexts=n,this.location=i,this.config=a,this.lastSuccessfulNavigation=null,this.currentNavigation=null,this.navigationId=0,this.isNgZoneEnabled=!1,this.events=new L,this.errorHandler=rT,this.malformedUriErrorHandler=oT,this.navigated=!1,this.lastSuccessfulId=-1,this.hooks={beforePreactivation:aT,afterPreactivation:aT},this.urlHandlingStrategy=new sT,this.routeReuseStrategy=new tT,this.onSameUrlNavigation=\"ignore\",this.paramsInheritanceStrategy=\"emptyOnly\",this.urlUpdateStrategy=\"deferred\",this.relativeLinkResolution=\"legacy\",this.ngModule=s.get(it),this.console=s.get(Gc);const l=s.get(ld);this.isNgZoneEnabled=l instanceof ld,this.resetConfig(a),this.currentUrlTree=new Cx(new Tx([],{}),{},null),this.rawUrlTree=this.currentUrlTree,this.browserUrlTree=this.currentUrlTree,this.configLoader=new iT(r,o,e=>this.triggerEvent(new ix(e)),e=>this.triggerEvent(new sx(e))),this.routerState=Xx(this.currentUrlTree,this.rootComponentType),this.transitions=new hS({id:0,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,extractedUrl:this.urlHandlingStrategy.extract(this.currentUrlTree),urlAfterRedirects:this.urlHandlingStrategy.extract(this.currentUrlTree),rawUrl:this.currentUrlTree,extras:{},resolve:null,reject:null,promise:Promise.resolve(!0),source:\"imperative\",restoredState:null,currentSnapshot:this.routerState.snapshot,targetSnapshot:null,currentRouterState:this.routerState,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.navigations=this.setupNavigations(this.transitions),this.processNavigations()}setupNavigations(e){const t=this.events;return e.pipe(Tu(e=>0!==e.id),H(e=>Object.assign(Object.assign({},e),{extractedUrl:this.urlHandlingStrategy.extract(e.rawUrl)})),Wb(e=>{let n=!1,i=!1;return xu(e).pipe(Gm(e=>{this.currentNavigation={id:e.id,initialUrl:e.currentRawUrl,extractedUrl:e.extractedUrl,trigger:e.source,extras:e.extras,previousNavigation:this.lastSuccessfulNavigation?Object.assign(Object.assign({},this.lastSuccessfulNavigation),{previousNavigation:null}):null}}),Wb(e=>{const n=!this.navigated||e.extractedUrl.toString()!==this.browserUrlTree.toString();if((\"reload\"===this.onSameUrlNavigation||n)&&this.urlHandlingStrategy.shouldProcessUrl(e.rawUrl))return xu(e).pipe(Wb(e=>{const n=this.transitions.getValue();return t.next(new GL(e.id,this.serializeUrl(e.extractedUrl),e.source,e.restoredState)),n!==this.transitions.getValue()?ap:[e]}),Wb(e=>Promise.resolve(e)),(i=this.ngModule.injector,s=this.configLoader,r=this.urlSerializer,o=this.config,function(e){return e.pipe(Wb(e=>function(e,t,n,i,s){return new TC(e,t,n,i,s).apply()}(i,s,r,e.extractedUrl,o).pipe(H(t=>Object.assign(Object.assign({},e),{urlAfterRedirects:t})))))}),Gm(e=>{this.currentNavigation=Object.assign(Object.assign({},this.currentNavigation),{finalUrl:e.urlAfterRedirects})}),function(e,t,n,i,s){return function(r){return r.pipe(V(r=>function(e,t,n,i,s=\"emptyOnly\",r=\"legacy\"){return new $C(e,t,n,i,s,r).recognize()}(e,t,r.urlAfterRedirects,n(r.urlAfterRedirects),i,s).pipe(H(e=>Object.assign(Object.assign({},r),{targetSnapshot:e})))))}}(this.rootComponentType,this.config,e=>this.serializeUrl(e),this.paramsInheritanceStrategy,this.relativeLinkResolution),Gm(e=>{\"eager\"===this.urlUpdateStrategy&&(e.extras.skipLocationChange||this.setBrowserUrl(e.urlAfterRedirects,!!e.extras.replaceUrl,e.id,e.extras.state),this.browserUrlTree=e.urlAfterRedirects)}),Gm(e=>{const n=new QL(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);t.next(n)}));var i,s,r,o;if(n&&this.rawUrlTree&&this.urlHandlingStrategy.shouldProcessUrl(this.rawUrlTree)){const{id:n,extractedUrl:i,source:s,restoredState:r,extras:o}=e,a=new GL(n,this.serializeUrl(i),s,r);t.next(a);const l=Xx(i,this.rootComponentType).snapshot;return xu(Object.assign(Object.assign({},e),{targetSnapshot:l,urlAfterRedirects:i,extras:Object.assign(Object.assign({},o),{skipLocationChange:!1,replaceUrl:!1})}))}return this.rawUrlTree=e.rawUrl,this.browserUrlTree=e.urlAfterRedirects,e.resolve(null),ap}),eT(e=>{const{targetSnapshot:t,id:n,extractedUrl:i,rawUrl:s,extras:{skipLocationChange:r,replaceUrl:o}}=e;return this.hooks.beforePreactivation(t,{navigationId:n,appliedUrlTree:i,rawUrlTree:s,skipLocationChange:!!r,replaceUrl:!!o})}),Gm(e=>{const t=new XL(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);this.triggerEvent(t)}),H(e=>Object.assign(Object.assign({},e),{guards:AC(e.targetSnapshot,e.currentSnapshot,this.rootContexts)})),function(e,t){return function(n){return n.pipe(V(n=>{const{targetSnapshot:i,currentSnapshot:s,guards:{canActivateChecks:r,canDeactivateChecks:o}}=n;return 0===o.length&&0===r.length?xu(Object.assign(Object.assign({},n),{guardsResult:!0})):function(e,t,n,i){return z(e).pipe(V(e=>function(e,t,n,i,s){const r=t&&t.routeConfig?t.routeConfig.canDeactivate:null;return r&&0!==r.length?xu(r.map(r=>{const o=RC(r,t,s);let a;if(function(e){return e&&wC(e.canDeactivate)}(o))a=Lx(o.canDeactivate(e,t,n,i));else{if(!wC(o))throw new Error(\"Invalid CanDeactivate guard\");a=Lx(o(e,t,n,i))}return a.pipe(zL())})).pipe(FC()):xu(!0)}(e.component,e.route,n,t,i)),zL(e=>!0!==e,!0))}(o,i,s,e).pipe(V(n=>n&&\"boolean\"==typeof n?function(e,t,n,i){return z(t).pipe(Cu(t=>z([zC(t.route.parent,i),NC(t.route,i),WC(e,t.path,n),VC(e,t.route,n)]).pipe(Pf(),zL(e=>!0!==e,!0))),zL(e=>!0!==e,!0))}(i,r,e,t):xu(n)),H(e=>Object.assign(Object.assign({},n),{guardsResult:e})))}))}}(this.ngModule.injector,e=>this.triggerEvent(e)),Gm(e=>{if(MC(e.guardsResult)){const t=mx(`Redirecting to \"${this.serializeUrl(e.guardsResult)}\"`);throw t.url=e.guardsResult,t}}),Gm(e=>{const t=new ex(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot,!!e.guardsResult);this.triggerEvent(t)}),Tu(e=>{if(!e.guardsResult){this.resetUrlToCurrentUrlTree();const n=new KL(e.id,this.serializeUrl(e.extractedUrl),\"\");return t.next(n),e.resolve(!1),!1}return!0}),eT(e=>{if(e.guards.canActivateChecks.length)return xu(e).pipe(Gm(e=>{const t=new tx(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);this.triggerEvent(t)}),(t=this.paramsInheritanceStrategy,n=this.ngModule.injector,function(e){return e.pipe(V(e=>{const{targetSnapshot:i,guards:{canActivateChecks:s}}=e;return s.length?z(s).pipe(Cu(e=>function(e,t,n,i){return function(e,t,n,i){const s=Object.keys(e);if(0===s.length)return xu({});if(1===s.length){const r=s[0];return XC(e[r],t,n,i).pipe(H(e=>({[r]:e})))}const r={};return z(s).pipe(V(s=>XC(e[s],t,n,i).pipe(H(e=>(r[s]=e,e))))).pipe(NL(),H(()=>r))}(e._resolve,e,t,i).pipe(H(t=>(e._resolvedData=t,e.data=Object.assign(Object.assign({},e.data),tC(e,n).resolve),null)))}(e.route,i,t,n)),function(e,t){return arguments.length>=2?function(n){return y(UL(e,t),YL(1),HL(t))(n)}:function(t){return y(UL((t,n,i)=>e(t,n,i+1)),YL(1))(t)}}((e,t)=>e),H(t=>e)):xu(e)}))}),Gm(e=>{const t=new nx(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);this.triggerEvent(t)}));var t,n}),eT(e=>{const{targetSnapshot:t,id:n,extractedUrl:i,rawUrl:s,extras:{skipLocationChange:r,replaceUrl:o}}=e;return this.hooks.afterPreactivation(t,{navigationId:n,appliedUrlTree:i,rawUrlTree:s,skipLocationChange:!!r,replaceUrl:!!o})}),H(e=>{const t=function(e,t,n){const i=function e(t,n,i){if(i&&t.shouldReuseRoute(n.value,i.value.snapshot)){const s=i.value;s._futureSnapshot=n.value;const r=function(t,n,i){return n.children.map(n=>{for(const s of i.children)if(t.shouldReuseRoute(s.value.snapshot,n.value))return e(t,n,s);return e(t,n)})}(t,n,i);return new Kx(s,r)}{const i=t.retrieve(n.value);if(i){const e=i.route;return function e(t,n){if(t.value.routeConfig!==n.value.routeConfig)throw new Error(\"Cannot reattach ActivatedRouteSnapshot created from a different route\");if(t.children.length!==n.children.length)throw new Error(\"Cannot reattach ActivatedRouteSnapshot with a different number of children\");n.value._futureSnapshot=t.value;for(let i=0;ie(t,n));return new Kx(i,r)}}var s}(e,t._root,n?n._root:void 0);return new Qx(i,t)}(this.routeReuseStrategy,e.targetSnapshot,e.currentRouterState);return Object.assign(Object.assign({},e),{targetRouterState:t})}),Gm(e=>{this.currentUrlTree=e.urlAfterRedirects,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,e.rawUrl),this.routerState=e.targetRouterState,\"deferred\"===this.urlUpdateStrategy&&(e.extras.skipLocationChange||this.setBrowserUrl(this.rawUrlTree,!!e.extras.replaceUrl,e.id,e.extras.state),this.browserUrlTree=e.urlAfterRedirects)}),(s=this.rootContexts,r=this.routeReuseStrategy,o=e=>this.triggerEvent(e),H(e=>(new bC(r,e.targetRouterState,e.currentRouterState,o).activate(s),e))),Gm({next(){n=!0},complete(){n=!0}}),dw(()=>{if(!n&&!i){this.resetUrlToCurrentUrlTree();const n=new KL(e.id,this.serializeUrl(e.extractedUrl),`Navigation ID ${e.id} is not equal to the current navigation id ${this.navigationId}`);t.next(n),e.resolve(!1)}this.currentNavigation=null}),aw(n=>{if(i=!0,(s=n)&&s.ngNavigationCancelingError){const i=MC(n.url);i||(this.navigated=!0,this.resetStateAndUrl(e.currentRouterState,e.currentUrlTree,e.rawUrl));const s=new KL(e.id,this.serializeUrl(e.extractedUrl),n.message);t.next(s),i?setTimeout(()=>{const t=this.urlHandlingStrategy.merge(n.url,this.rawUrlTree);return this.scheduleNavigation(t,\"imperative\",null,{skipLocationChange:e.extras.skipLocationChange,replaceUrl:\"eager\"===this.urlUpdateStrategy},{resolve:e.resolve,reject:e.reject,promise:e.promise})},0):e.resolve(!1)}else{this.resetStateAndUrl(e.currentRouterState,e.currentUrlTree,e.rawUrl);const i=new ZL(e.id,this.serializeUrl(e.extractedUrl),n);t.next(i);try{e.resolve(this.errorHandler(n))}catch(r){e.reject(r)}}var s;return ap}));var s,r,o}))}resetRootComponentType(e){this.rootComponentType=e,this.routerState.root.component=this.rootComponentType}getTransition(){const e=this.transitions.value;return e.urlAfterRedirects=this.browserUrlTree,e}setTransition(e){this.transitions.next(Object.assign(Object.assign({},this.getTransition()),e))}initialNavigation(){this.setUpLocationChangeListener(),0===this.navigationId&&this.navigateByUrl(this.location.path(!0),{replaceUrl:!0})}setUpLocationChangeListener(){this.locationSubscription||(this.locationSubscription=this.location.subscribe(e=>{let t=this.parseUrl(e.url);const n=\"popstate\"===e.type?\"popstate\":\"hashchange\",i=e.state&&e.state.navigationId?e.state:null;setTimeout(()=>{this.scheduleNavigation(t,n,i,{replaceUrl:!0})},0)}))}get url(){return this.serializeUrl(this.currentUrlTree)}getCurrentNavigation(){return this.currentNavigation}triggerEvent(e){this.events.next(e)}resetConfig(e){_x(e),this.config=e.map(bx),this.navigated=!1,this.lastSuccessfulId=-1}ngOnDestroy(){this.dispose()}dispose(){this.locationSubscription&&(this.locationSubscription.unsubscribe(),this.locationSubscription=null)}createUrlTree(e,t={}){const{relativeTo:n,queryParams:i,fragment:s,preserveQueryParams:r,queryParamsHandling:o,preserveFragment:a}=t;Si()&&r&&console&&console.warn&&console.warn(\"preserveQueryParams is deprecated, use queryParamsHandling instead.\");const l=n||this.routerState.root,c=a?this.currentUrlTree.fragment:s;let d=null;if(o)switch(o){case\"merge\":d=Object.assign(Object.assign({},this.currentUrlTree.queryParams),i);break;case\"preserve\":d=this.currentUrlTree.queryParams;break;default:d=i||null}else d=r?this.currentUrlTree.queryParams:i||null;return null!==d&&(d=this.removeEmptyProps(d)),function(e,t,n,i,s){if(0===n.length)return cC(t.root,t.root,t,i,s);const r=function(e){if(\"string\"==typeof e[0]&&1===e.length&&\"/\"===e[0])return new dC(!0,0,e);let t=0,n=!1;const i=e.reduce((e,i,s)=>{if(\"object\"==typeof i&&null!=i){if(i.outlets){const t={};return Sx(i.outlets,(e,n)=>{t[n]=\"string\"==typeof e?e.split(\"/\"):e}),[...e,{outlets:t}]}if(i.segmentPath)return[...e,i.segmentPath]}return\"string\"!=typeof i?[...e,i]:0===s?(i.split(\"/\").forEach((i,s)=>{0==s&&\".\"===i||(0==s&&\"\"===i?n=!0:\"..\"===i?t++:\"\"!=i&&e.push(i))}),e):[...e,i]},[]);return new dC(n,t,i)}(n);if(r.toRoot())return cC(t.root,new Tx([],{}),t,i,s);const o=function(e,t,n){if(e.isAbsolute)return new uC(t.root,!0,0);if(-1===n.snapshot._lastPathIndex)return new uC(n.snapshot._urlSegment,!0,0);const i=lC(e.commands[0])?0:1;return function(e,t,n){let i=e,s=t,r=n;for(;r>s;){if(r-=s,i=i.parent,!i)throw new Error(\"Invalid number of '../'\");s=i.segments.length}return new uC(i,!1,s-r)}(n.snapshot._urlSegment,n.snapshot._lastPathIndex+i,e.numberOfDoubleDots)}(r,t,e),a=o.processChildren?pC(o.segmentGroup,o.index,r.commands):mC(o.segmentGroup,o.index,r.commands);return cC(o.segmentGroup,a,t,i,s)}(l,this.currentUrlTree,e,d,c)}navigateByUrl(e,t={skipLocationChange:!1}){Si()&&this.isNgZoneEnabled&&!ld.isInAngularZone()&&this.console.warn(\"Navigation triggered outside Angular zone, did you forget to call 'ngZone.run()'?\");const n=MC(e)?e:this.parseUrl(e),i=this.urlHandlingStrategy.merge(n,this.rawUrlTree);return this.scheduleNavigation(i,\"imperative\",null,t)}navigate(e,t={skipLocationChange:!1}){return function(e){for(let t=0;t{const i=e[n];return null!=i&&(t[n]=i),t},{})}processNavigations(){this.navigations.subscribe(e=>{this.navigated=!0,this.lastSuccessfulId=e.id,this.events.next(new JL(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(this.currentUrlTree))),this.lastSuccessfulNavigation=this.currentNavigation,this.currentNavigation=null,e.resolve(!0)},e=>{this.console.warn(\"Unhandled Navigation Error: \")})}scheduleNavigation(e,t,n,i,s){const r=this.getTransition();if(r&&\"imperative\"!==t&&\"imperative\"===r.source&&r.rawUrl.toString()===e.toString())return Promise.resolve(!0);if(r&&\"hashchange\"==t&&\"popstate\"===r.source&&r.rawUrl.toString()===e.toString())return Promise.resolve(!0);if(r&&\"popstate\"==t&&\"hashchange\"===r.source&&r.rawUrl.toString()===e.toString())return Promise.resolve(!0);let o,a,l;s?(o=s.resolve,a=s.reject,l=s.promise):l=new Promise((e,t)=>{o=e,a=t});const c=++this.navigationId;return this.setTransition({id:c,source:t,restoredState:n,currentUrlTree:this.currentUrlTree,currentRawUrl:this.rawUrlTree,rawUrl:e,extras:i,resolve:o,reject:a,promise:l,currentSnapshot:this.routerState.snapshot,currentRouterState:this.routerState}),l.catch(e=>Promise.reject(e))}setBrowserUrl(e,t,n,i){const s=this.urlSerializer.serialize(e);i=i||{},this.location.isCurrentPathEqualTo(s)||t?this.location.replaceState(s,\"\",Object.assign(Object.assign({},i),{navigationId:n})):this.location.go(s,\"\",Object.assign(Object.assign({},i),{navigationId:n}))}resetStateAndUrl(e,t,n){this.routerState=e,this.currentUrlTree=t,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,n),this.resetUrlToCurrentUrlTree()}resetUrlToCurrentUrlTree(){this.location.replaceState(this.urlSerializer.serialize(this.rawUrlTree),\"\",{navigationId:this.lastSuccessfulId})}}return e.\\u0275fac=function(e){Io()},e.\\u0275dir=St({type:e}),e})(),cT=(()=>{class e{constructor(e,t,n){this.router=e,this.route=t,this.locationStrategy=n,this.commands=[],this.subscription=e.events.subscribe(e=>{e instanceof JL&&this.updateTargetUrlAndHref()})}set routerLink(e){this.commands=null!=e?Array.isArray(e)?e:[e]:[]}set preserveQueryParams(e){Si()&&console&&console.warn&&console.warn(\"preserveQueryParams is deprecated, use queryParamsHandling instead.\"),this.preserve=e}ngOnChanges(e){this.updateTargetUrlAndHref()}ngOnDestroy(){this.subscription.unsubscribe()}onClick(e,t,n,i){if(0!==e||t||n||i)return!0;if(\"string\"==typeof this.target&&\"_self\"!=this.target)return!0;const s={skipLocationChange:dT(this.skipLocationChange),replaceUrl:dT(this.replaceUrl),state:this.state};return this.router.navigateByUrl(this.urlTree,s),!1}updateTargetUrlAndHref(){this.href=this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.urlTree))}get urlTree(){return this.router.createUrlTree(this.commands,{relativeTo:this.route,queryParams:this.queryParams,fragment:this.fragment,preserveQueryParams:dT(this.preserve),queryParamsHandling:this.queryParamsHandling,preserveFragment:dT(this.preserveFragment)})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(lT),Eo(eC),Eo(Kd))},e.\\u0275dir=St({type:e,selectors:[[\"a\",\"routerLink\",\"\"],[\"area\",\"routerLink\",\"\"]],hostVars:2,hostBindings:function(e,t){1&e&&Uo(\"click\",(function(e){return t.onClick(e.button,e.ctrlKey,e.metaKey,e.shiftKey)})),2&e&&(Ca(\"href\",t.href,es),Co(\"target\",t.target))},inputs:{routerLink:\"routerLink\",preserveQueryParams:\"preserveQueryParams\",target:\"target\",queryParams:\"queryParams\",fragment:\"fragment\",queryParamsHandling:\"queryParamsHandling\",preserveFragment:\"preserveFragment\",skipLocationChange:\"skipLocationChange\",replaceUrl:\"replaceUrl\",state:\"state\"},features:[Ra]}),e})();function dT(e){return\"\"===e||!!e}class uT{constructor(){this.outlet=null,this.route=null,this.resolver=null,this.children=new hT,this.attachRef=null}}class hT{constructor(){this.contexts=new Map}onChildOutletCreated(e,t){const n=this.getOrCreateContext(e);n.outlet=t,this.contexts.set(e,n)}onChildOutletDestroyed(e){const t=this.getContext(e);t&&(t.outlet=null)}onOutletDeactivated(){const e=this.contexts;return this.contexts=new Map,e}onOutletReAttached(e){this.contexts=e}getOrCreateContext(e){let t=this.getContext(e);return t||(t=new uT,this.contexts.set(e,t)),t}getContext(e){return this.contexts.get(e)||null}}let mT=(()=>{class e{constructor(e,t,n,i,s){this.parentContexts=e,this.location=t,this.resolver=n,this.changeDetector=s,this.activated=null,this._activatedRoute=null,this.activateEvents=new yc,this.deactivateEvents=new yc,this.name=i||\"primary\",e.onChildOutletCreated(this.name,this)}ngOnDestroy(){this.parentContexts.onChildOutletDestroyed(this.name)}ngOnInit(){if(!this.activated){const e=this.parentContexts.getContext(this.name);e&&e.route&&(e.attachRef?this.attach(e.attachRef,e.route):this.activateWith(e.route,e.resolver||null))}}get isActivated(){return!!this.activated}get component(){if(!this.activated)throw new Error(\"Outlet is not activated\");return this.activated.instance}get activatedRoute(){if(!this.activated)throw new Error(\"Outlet is not activated\");return this._activatedRoute}get activatedRouteData(){return this._activatedRoute?this._activatedRoute.snapshot.data:{}}detach(){if(!this.activated)throw new Error(\"Outlet is not activated\");this.location.detach();const e=this.activated;return this.activated=null,this._activatedRoute=null,e}attach(e,t){this.activated=e,this._activatedRoute=t,this.location.insert(e.hostView)}deactivate(){if(this.activated){const e=this.component;this.activated.destroy(),this.activated=null,this._activatedRoute=null,this.deactivateEvents.emit(e)}}activateWith(e,t){if(this.isActivated)throw new Error(\"Cannot activate an already activated outlet\");this._activatedRoute=e;const n=(t=t||this.resolver).resolveComponentFactory(e._futureSnapshot.routeConfig.component),i=this.parentContexts.getOrCreateContext(this.name).children,s=new pT(e,i,this.location.injector);this.activated=this.location.createComponent(n,this.location.length,s),this.changeDetector.markForCheck(),this.activateEvents.emit(this.activated.instance)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(hT),Eo(Ml),Eo(Ja),Oo(\"name\"),Eo(Qr))},e.\\u0275dir=St({type:e,selectors:[[\"router-outlet\"]],outputs:{activateEvents:\"activate\",deactivateEvents:\"deactivate\"},exportAs:[\"outlet\"]}),e})();class pT{constructor(e,t,n){this.route=e,this.childContexts=t,this.parent=n}get(e,t){return e===eC?this.route:e===hT?this.childContexts:this.parent.get(e,t)}}class fT{}class _T{preload(e,t){return xu(null)}}let gT=(()=>{class e{constructor(e,t,n,i,s){this.router=e,this.injector=i,this.preloadingStrategy=s,this.loader=new iT(t,n,t=>e.triggerEvent(new ix(t)),t=>e.triggerEvent(new sx(t)))}setUpPreloading(){this.subscription=this.router.events.pipe(Tu(e=>e instanceof JL),Cu(()=>this.preload())).subscribe(()=>{})}preload(){const e=this.injector.get(it);return this.processRoutes(e,this.router.config)}ngOnDestroy(){this.subscription.unsubscribe()}processRoutes(e,t){const n=[];for(const i of t)if(i.loadChildren&&!i.canLoad&&i._loadedConfig){const e=i._loadedConfig;n.push(this.processRoutes(e.module,e.routes))}else i.loadChildren&&!i.canLoad?n.push(this.preloadConfig(e,i)):i.children&&n.push(this.processRoutes(e,i.children));return z(n).pipe(B(),H(e=>{}))}preloadConfig(e,t){return this.preloadingStrategy.preload(t,()=>this.loader.load(e.injector,t).pipe(V(e=>(t._loadedConfig=e,this.processRoutes(e.module,e.routes)))))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(lT),Qe(Yd),Qe(sd),Qe(fo),Qe(fT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),yT=(()=>{class e{constructor(e,t,n={}){this.router=e,this.viewportScroller=t,this.options=n,this.lastId=0,this.lastSource=\"imperative\",this.restoredId=0,this.store={},n.scrollPositionRestoration=n.scrollPositionRestoration||\"disabled\",n.anchorScrolling=n.anchorScrolling||\"disabled\"}init(){\"disabled\"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration(\"manual\"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}createScrollEvents(){return this.router.events.subscribe(e=>{e instanceof GL?(this.store[this.lastId]=this.viewportScroller.getScrollPosition(),this.lastSource=e.navigationTrigger,this.restoredId=e.restoredState?e.restoredState.navigationId:0):e instanceof JL&&(this.lastId=e.id,this.scheduleScrollEvent(e,this.router.parseUrl(e.urlAfterRedirects).fragment))})}consumeScrollEvents(){return this.router.events.subscribe(e=>{e instanceof cx&&(e.position?\"top\"===this.options.scrollPositionRestoration?this.viewportScroller.scrollToPosition([0,0]):\"enabled\"===this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition(e.position):e.anchor&&\"enabled\"===this.options.anchorScrolling?this.viewportScroller.scrollToAnchor(e.anchor):\"disabled\"!==this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition([0,0]))})}scheduleScrollEvent(e,t){this.router.triggerEvent(new cx(e,\"popstate\"===this.lastSource?this.store[this.restoredId]:null,t))}ngOnDestroy(){this.routerEventsSubscription&&this.routerEventsSubscription.unsubscribe(),this.scrollEventsSubscription&&this.scrollEventsSubscription.unsubscribe()}}return e.\\u0275fac=function(e){Io()},e.\\u0275dir=St({type:e}),e})();const bT=new Ve(\"ROUTER_CONFIGURATION\"),vT=new Ve(\"ROUTER_FORROOT_GUARD\"),wT=[tu,{provide:Ox,useClass:Ix},{provide:lT,useFactory:function(e,t,n,i,s,r,o,a={},l,c){const d=new lT(null,e,t,n,i,s,r,Mx(o));if(l&&(d.urlHandlingStrategy=l),c&&(d.routeReuseStrategy=c),a.errorHandler&&(d.errorHandler=a.errorHandler),a.malformedUriErrorHandler&&(d.malformedUriErrorHandler=a.malformedUriErrorHandler),a.enableTracing){const e=Fd();d.events.subscribe(t=>{e.logGroup(`Router Event: ${t.constructor.name}`),e.log(t.toString()),e.log(t),e.logGroupEnd()})}return a.onSameUrlNavigation&&(d.onSameUrlNavigation=a.onSameUrlNavigation),a.paramsInheritanceStrategy&&(d.paramsInheritanceStrategy=a.paramsInheritanceStrategy),a.urlUpdateStrategy&&(d.urlUpdateStrategy=a.urlUpdateStrategy),a.relativeLinkResolution&&(d.relativeLinkResolution=a.relativeLinkResolution),d},deps:[Ox,hT,tu,fo,Yd,sd,nT,bT,[class{},new le],[class{},new le]]},hT,{provide:eC,useFactory:function(e){return e.routerState.root},deps:[lT]},{provide:Yd,useClass:Id},gT,_T,class{preload(e,t){return t().pipe(aw(()=>xu(null)))}},{provide:bT,useValue:{enableTracing:!1}}];function MT(){return new kd(\"Router\",lT)}let kT=(()=>{class e{constructor(e,t){}static forRoot(t,n){return{ngModule:e,providers:[wT,CT(t),{provide:vT,useFactory:xT,deps:[[lT,new le,new de]]},{provide:bT,useValue:n||{}},{provide:Kd,useFactory:LT,deps:[zd,[new ae(Qd),new le],bT]},{provide:yT,useFactory:ST,deps:[lT,Su,bT]},{provide:fT,useExisting:n&&n.preloadingStrategy?n.preloadingStrategy:_T},{provide:kd,multi:!0,useFactory:MT},[TT,{provide:Nc,multi:!0,useFactory:DT,deps:[TT]},{provide:ET,useFactory:YT,deps:[TT]},{provide:qc,multi:!0,useExisting:ET}]]}}static forChild(t){return{ngModule:e,providers:[CT(t)]}}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)(Qe(vT,8),Qe(lT,8))}}),e})();function ST(e,t,n){return n.scrollOffset&&t.setOffset(n.scrollOffset),new yT(e,t,n)}function LT(e,t,n={}){return n.useHash?new eu(e,t):new Xd(e,t)}function xT(e){if(e)throw new Error(\"RouterModule.forRoot() called twice. Lazy loaded modules should use RouterModule.forChild() instead.\");return\"guarded\"}function CT(e){return[{provide:_o,multi:!0,useValue:e},{provide:nT,multi:!0,useValue:e}]}let TT=(()=>{class e{constructor(e){this.injector=e,this.initNavigation=!1,this.resultOfPreactivationDone=new L}appInitializer(){return this.injector.get(Wd,Promise.resolve(null)).then(()=>{let e=null;const t=new Promise(t=>e=t),n=this.injector.get(lT),i=this.injector.get(bT);if(this.isLegacyDisabled(i)||this.isLegacyEnabled(i))e(!0);else if(\"disabled\"===i.initialNavigation)n.setUpLocationChangeListener(),e(!0);else{if(\"enabled\"!==i.initialNavigation)throw new Error(`Invalid initialNavigation options: '${i.initialNavigation}'`);n.hooks.afterPreactivation=()=>this.initNavigation?xu(null):(this.initNavigation=!0,e(!0),this.resultOfPreactivationDone),n.initialNavigation()}return t})}bootstrapListener(e){const t=this.injector.get(bT),n=this.injector.get(gT),i=this.injector.get(yT),s=this.injector.get(lT),r=this.injector.get(Td);e===r.components[0]&&(this.isLegacyEnabled(t)?s.initialNavigation():this.isLegacyDisabled(t)&&s.setUpLocationChangeListener(),n.setUpPreloading(),i.init(),s.resetRootComponentType(r.componentTypes[0]),this.resultOfPreactivationDone.next(null),this.resultOfPreactivationDone.complete())}isLegacyEnabled(e){return\"legacy_enabled\"===e.initialNavigation||!0===e.initialNavigation||void 0===e.initialNavigation}isLegacyDisabled(e){return\"legacy_disabled\"===e.initialNavigation||!1===e.initialNavigation}}return e.\\u0275fac=function(t){return new(t||e)(Qe(fo))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function DT(e){return e.appInitializer.bind(e)}function YT(e){return e.bootstrapListener.bind(e)}const ET=new Ve(\"Router Initializer\");function OT(e=0,t=tp){return(!Rb(e)||e<0)&&(e=0),t&&\"function\"==typeof t.schedule||(t=tp),new v(n=>(n.add(t.schedule(IT,e,{subscriber:n,counter:0,period:e})),n))}function IT(e){const{subscriber:t,counter:n,period:i}=e;t.next(n),this.schedule({subscriber:t,counter:n+1,period:i},i)}const PT={leading:!0,trailing:!1};class AT{constructor(e,t,n){this.durationSelector=e,this.leading=t,this.trailing=n}call(e,t){return t.subscribe(new RT(e,this.durationSelector,this.leading,this.trailing))}}class RT extends R{constructor(e,t,n,i){super(e),this.destination=e,this.durationSelector=t,this._leading=n,this._trailing=i,this._hasValue=!1}_next(e){this._hasValue=!0,this._sendValue=e,this._throttled||(this._leading?this.send():this.throttle(e))}send(){const{_hasValue:e,_sendValue:t}=this;e&&(this.destination.next(t),this.throttle(t)),this._hasValue=!1,this._sendValue=null}throttle(e){const t=this.tryDurationSelector(e);t&&this.add(this._throttled=A(this,t))}tryDurationSelector(e){try{return this.durationSelector(e)}catch(t){return this.destination.error(t),null}}throttlingDone(){const{_throttled:e,_trailing:t}=this;e&&e.unsubscribe(),this._throttled=null,t&&this.send()}notifyNext(e,t,n,i,s){this.throttlingDone()}notifyComplete(){this.throttlingDone()}}function HT(e){const{start:t,index:n,count:i,subscriber:s}=e;n>=i?s.complete():(s.next(t),s.closed||(e.index=n+1,e.start=t+1,this.schedule(e)))}function jT(e){return t=>t.lift(new FT(e,t))}class FT{constructor(e,t){this.notifier=e,this.source=t}call(e,t){return t.subscribe(new NT(e,this.notifier,this.source))}}class NT extends R{constructor(e,t,n){super(e),this.notifier=t,this.source=n}error(e){if(!this.isStopped){let n=this.errors,i=this.retries,s=this.retriesSubscription;if(i)this.errors=null,this.retriesSubscription=null;else{n=new L;try{const{notifier:e}=this;i=e(n)}catch(t){return super.error(t)}s=A(this,i)}this._unsubscribeAndRecycle(),this.errors=n,this.retries=i,this.retriesSubscription=s,n.next(e)}}_unsubscribe(){const{errors:e,retriesSubscription:t}=this;e&&(e.unsubscribe(),this.errors=null),t&&(t.unsubscribe(),this.retriesSubscription=null),this.retries=null}notifyNext(e,t,n,i,s){const{_unsubscribe:r}=this;this._unsubscribe=null,this._unsubscribeAndRecycle(),this._unsubscribe=r,this.source.subscribe(this)}}class zT{constructor(e){this.resultSelector=e}call(e,t){return t.subscribe(new VT(e,this.resultSelector))}}class VT extends p{constructor(e,t,n=Object.create(null)){super(e),this.iterators=[],this.active=0,this.resultSelector=\"function\"==typeof t?t:null,this.values=n}_next(e){const t=this.iterators;l(e)?t.push(new UT(e)):t.push(\"function\"==typeof e[E]?new WT(e[E]()):new $T(this.destination,this,e))}_complete(){const e=this.iterators,t=e.length;if(this.unsubscribe(),0!==t){this.active=t;for(let n=0;nthis.index}hasCompleted(){return this.array.length===this.index}}class $T extends R{constructor(e,t,n){super(e),this.parent=t,this.observable=n,this.stillUnsubscribed=!0,this.buffer=[],this.isComplete=!1}[E](){return this}next(){const e=this.buffer;return 0===e.length&&this.isComplete?{value:null,done:!0}:{value:e.shift(),done:!1}}hasValue(){return this.buffer.length>0}hasCompleted(){return 0===this.buffer.length&&this.isComplete}notifyComplete(){this.buffer.length>0?(this.isComplete=!0,this.parent.notifyInactive()):this.destination.complete()}notifyNext(e,t,n,i,s){this.buffer.push(t),this.parent.checkIterators()}subscribe(e,t){return A(this,this.observable,this,t)}}let BT=(()=>{class e{constructor(e,t){this.http=e,this.router=t}get(e,t){return this.http.get(JT(e),{headers:KT(t)}).pipe(aw(qT(this.router)),jT(GT()))}post(e,t,n){return this.http.post(JT(e),t,{headers:KT(n)}).pipe(aw(qT(this.router)),jT(GT()))}rawPost(e,t,n){return this.http.post(JT(e),t,{headers:KT(n),observe:\"response\",responseType:\"text\"}).pipe(aw(qT(this.router)),jT(GT()))}delete(e,t){return this.http.delete(JT(e),{headers:KT(t)}).pipe(aw(qT(this.router)),jT(GT()))}put(e,t,n){return this.http.put(JT(e),t,{headers:KT(n)}).pipe(aw(qT(this.router)),jT(GT()))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(qu),Qe(lT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();function qT(e){return(t,n)=>xu(t).pipe(V(t=>{if(403==t.status||401==t.status)return e.routerState.snapshot.url.startsWith(\"/login\")||e.navigate([\"/login\"],{queryParams:{returnUrl:e.url}}),lp();throw t}))}function GT(){return e=>function(e=0,t,n){return new v(i=>{void 0===t&&(t=e,e=0);let s=0,r=e;if(n)return n.schedule(HT,0,{index:s,count:t,start:e,subscriber:i});for(;;){if(s++>=t){i.complete();break}if(i.next(r++),i.closed)break}})}(1,10).pipe(function(...e){return function(t){return t.lift.call(function(...e){const t=e[e.length-1];return\"function\"==typeof t&&e.pop(),q(e,void 0).lift(new zT(t))}(t,...e))}}(e,(e,t)=>{if(10==e)throw t;return e}),V(e=>Hb(1e3*e)))}let JT=function(e){return\"/api/v2/\"+e},KT=function(e){return(e=e||new Iu).set(\"Authorization\",localStorage.getItem(\"token\")).set(\"Accept\",\"application/json\")},ZT=(()=>{class e{constructor(e,t){this.http=e,this.api=t,this.tokenSubject=new hS(localStorage.getItem(\"token\")),this.tokenSubject.pipe(Tu(e=>e!=localStorage.getItem(\"token\"))).subscribe(e=>{\"\"==e?localStorage.removeItem(\"token\"):(localStorage.setItem(\"token\",e),localStorage.setItem(\"token_age\",(new Date).toString()))}),!localStorage.getItem(\"token_age\")&&localStorage.getItem(\"token\")&&localStorage.setItem(\"token_age\",(new Date).toString()),this.tokenSubject.pipe(Wb(e=>\"\"==e?pS():Hb(0,36e5)),H(e=>new Date(localStorage.getItem(\"token_age\"))),Tu(e=>(new Date).getTime()-e.getTime()>144e6),Wb(e=>(console.log(\"Renewing user token\"),this.api.rawPost(\"user/token\").pipe(H(e=>e.headers.get(\"Authorization\")),Tu(e=>\"\"!=e),aw(e=>(console.log(\"Error generating new user token: \",e),pS())))))).subscribe(e=>this.tokenSubject.next(e))}create(e,t){var n=new FormData;return n.append(\"user\",e),n.append(\"password\",t),this.http.post(\"/api/v2/token\",n,{observe:\"response\",responseType:\"text\"}).pipe(H(e=>e.headers.get(\"Authorization\")),H(e=>{if(e)return this.tokenSubject.next(e),e;throw new QT(\"test\")}))}delete(){this.tokenSubject.next(\"\")}tokenObservable(){return this.tokenSubject.pipe(H(e=>(e||\"\").replace(\"Bearer \",\"\")),function(e,t=PT){return n=>n.lift(new AT(e,t.leading,t.trailing))}(e=>OT(2e3)))}tokenUser(e){return e?JSON.parse(atob(e.split(\".\")[1])).sub:\"\"}}return e.\\u0275fac=function(t){return new(t||e)(Qe(qu),Qe(BT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();class QT extends Error{}const XT=[\"placeholder\",\"\\u041F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0441\\u043A\\u043E \\u0438\\u043C\\u0435\"],eD=[\"placeholder\",\"\\u041F\\u0430\\u0440\\u043E\\u043B\\u0430\"];var tD;function nD(e,t){1&e&&(Ro(0,\"ngb-alert\",7),Sa(1,\"Invalid username or password\"),Ho()),2&e&&Po(\"dismissible\",!1)(\"type\",\"danger\")}tD=\"\\u0412\\u043B\\u0435\\u0437\";let iD=(()=>{class e{constructor(e,t,n){this.router=e,this.route=t,this.tokenService=n,this.loading=!1,this.invalidLogin=!1}ngOnInit(){this.tokenService.delete(),this.returnURL=this.route.snapshot.queryParams.returnURL||\"/\"}login(){this.loading=!0,this.tokenService.create(this.user,this.password).subscribe(e=>{this.invalidLogin=!1,this.router.navigate([this.returnURL])},e=>{401==e.status&&(this.invalidLogin=!0),this.loading=!1})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(lT),Eo(eC),Eo(ZT))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:13,vars:4,consts:[[1,\"content\"],[\"novalidate\",\"\",1,\"login-form\",3,\"ngSubmit\"],[\"f\",\"ngForm\"],[\"matInput\",\"\",\"name\",\"user\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"password\",\"name\",\"password\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[\"mat-raised-button\",\"\",\"type\",\"submit\",3,\"disabled\"],[3,\"dismissible\",\"type\",4,\"ngIf\"],[3,\"dismissible\",\"type\"]],template:function(e,t){if(1&e&&(Ro(0,\"div\",0),Ro(1,\"form\",1,2),Uo(\"ngSubmit\",(function(){return t.login()})),Ro(3,\"mat-form-field\"),Ro(4,\"input\",3),nc(5,XT),Uo(\"ngModelChange\",(function(e){return t.user=e})),Ho(),Ho(),Ro(6,\"mat-form-field\"),Ro(7,\"input\",4),nc(8,eD),Uo(\"ngModelChange\",(function(e){return t.password=e})),Ho(),Ho(),jo(9,\"br\"),Ro(10,\"button\",5),tc(11,tD),Ho(),Do(12,nD,2,2,\"ngb-alert\",6),Ho(),Ho()),2&e){const e=Yo(2);ys(4),Po(\"ngModel\",t.user),ys(3),Po(\"ngModel\",t.password),ys(3),Po(\"disabled\",t.loading||!e.valid),ys(2),Po(\"ngIf\",t.invalidLogin)}},directives:[Tm,Sh,bm,dM,gM,_h,Vm,kh,Cm,Gy,mu,OS],styles:[\".content[_ngcontent-%COMP%]{display:flex;height:100vh;align-items:center;justify-content:center}button[_ngcontent-%COMP%]{margin-bottom:1rem}\"]}),e})();var sD=n(\"BOF4\");let rD=(()=>{class e{constructor(e){this.router=e}canActivate(e,t){var n=localStorage.getItem(\"token\");if(n){var i=sD(n);if((!i.exp||i.exp>=(new Date).getTime()/1e3)&&(!i.nbf||i.nbf<(new Date).getTime()/1e3))return!0}return this.router.navigate([\"/login\"],{queryParams:{returnUrl:t.url}}),!1}}return e.\\u0275fac=function(t){return new(t||e)(Qe(lT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();function oD(e){return e.events.pipe(Tu(e=>e instanceof JL),H(t=>aD([e.routerState.snapshot.root])),Rf(aD([e.routerState.snapshot.root])),Eb(),nv(1))}function aD(e){for(let t of e){if(\"primary\"in t.data)return t;let e=aD(t.children);if(null!=e)return e}return null}function lD(e){return e.events.pipe(Tu(e=>e instanceof JL),H(t=>cD([e.routerState.snapshot.root])),Rf(cD([e.routerState.snapshot.root])),Eb(),nv(1))}function cD(e){for(let t of e){if(\"articleID\"in t.params)return t;let e=cD(t.children);if(null!=e)return e}return null}function dD(...e){let t=null;return\"function\"==typeof e[e.length-1]&&(t=e.pop()),1===e.length&&l(e[0])&&(e=e[0].slice()),n=>n.lift.call(z([n,...e]),new nS(t))}let uD=(()=>{class e{constructor(){this.services=new Map,this.enabledSubject=new hS([]),this.enabled=new Set(JSON.parse(localStorage.getItem(e.key)))}register(e){this.services.set(e.id,e),this.enabledSubject.next(this.getEnabled())}enabledServices(){return this.enabledSubject.asObservable()}list(){return Array.from(this.services.values()).sort((e,t)=>{let n=e.category.localeCompare(t.category);return 0==n?e.id.localeCompare(t.id):n}).map(e=>[e,this.isEnabled(e.id)])}groupedList(){let e=this.list(),t=new Array,n=\"\";for(let i of e)i[0].category!=n&&(n=i[0].category,t.push(new Array)),t[t.length-1].push(i);return t}toggle(t,n){this.services.has(t)&&(n?this.enabled.add(t):this.enabled.delete(t),localStorage.setItem(e.key,JSON.stringify(Array.from(this.enabled))),this.enabledSubject.next(this.getEnabled()))}isEnabled(e){return this.enabled.has(e)}submit(e,t){let n=this.services.get(e).template.replace(/{%\\s*link\\s*%}/g,t.link).replace(/{%\\s*title\\s*%}/g,t.title);window.open(n,\"_blank\")}getEnabled(){return this.list().filter(e=>e[1]).map(e=>e[0])}}return e.key=\"enabled-services\",e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})(),hD=(()=>{class e{constructor(e){this.sharingService=e}ngOnInit(){this.sharingService.register({id:this.id,description:this.description,category:this.category,link:this.link,template:this.share})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(uD))},e.\\u0275dir=St({type:e,selectors:[[\"share-service\"]],inputs:{id:\"id\",description:\"description\",category:\"category\",link:\"link\",share:\"share\"}}),e})();const mD=[\"description\",\"Evernote\",\"category\",\"Read-it-later\"],pD=[\"description\",\"Instapaper\",\"category\",\"Read-it-later\"],fD=[\"description\",\"Readability\",\"category\",\"Read-it-later\"],_D=[\"description\",\"Pocket\",\"category\",\"Read-it-later\"],gD=[\"description\",\"Google+\",\"category\",\"\\u0421\\u043E\\u0446\\u0438\\u0430\\u043B\\u043D\\u0438 \\u043C\\u0440\\u0435\\u0436\\u0438\"],yD=[\"description\",\"Facebook\",\"category\",\"\\u0421\\u043E\\u0446\\u0438\\u0430\\u043B\\u043D\\u0438 \\u043C\\u0440\\u0435\\u0436\\u0438\"],bD=[\"description\",\"Twitter\",\"category\",\"\\u0421\\u043E\\u0446\\u0438\\u0430\\u043B\\u043D\\u0438 \\u043C\\u0440\\u0435\\u0436\\u0438\"],vD=[\"description\",\"Pinterest\",\"category\",\"\\u0421\\u043E\\u0446\\u0438\\u0430\\u043B\\u043D\\u0438 \\u043C\\u0440\\u0435\\u0436\\u0438\"],wD=[\"description\",\"Tumblr\",\"category\",\"Blogging\"],MD=[\"description\",\"Flipboard\",\"category\",\"Blogging\"],kD=[\"description\",\"\\u041F\\u043E\\u0449\\u0430\",\"category\",\"\\u041F\\u043E\\u0449\\u0430\"],SD=[\"description\",\"Gmail\",\"category\",\"\\u041F\\u043E\\u0449\\u0430\"];function LD(e,t){if(1&e){const e=zo();Ro(0,\"button\",18),Uo(\"click\",(function(){return en(e),Jo(),Yo(2).toggle()})),Ro(1,\"mat-icon\"),Sa(2,\"menu\"),Ho(),Ho()}}let xD=(()=>{class e{constructor(e,t){this.tokenService=e,this.router=t,this.showsArticle=!1,this.inSearch=!1}ngOnInit(){this.subscription=this.tokenService.tokenObservable().pipe(Tu(e=>\"\"!=e),Wb(e=>lD(this.router).pipe(H(e=>null!=e),dD(oD(this.router).pipe(H(e=>null!=e&&\"search\"==e.data.primary)),(e,t)=>[e,t])))).subscribe(e=>{this.showsArticle=e[0],this.inSearch=e[1]},e=>console.log(e))}ngOnDestroy(){this.subscription.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ZT),Eo(lT))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:33,vars:1,consts:[[\"sidenav\",\"\"],[\"name\",\"sidebar\"],[1,\"content\"],[\"color\",\"primary\"],[\"mat-icon-button\",\"\",3,\"click\",4,\"ngIf\"],[\"name\",\"toolbar\"],[\"id\",\"evernode\",\"link\",\"https://www.evernote.com\",\"share\",\"https://www.evernote.com/clip.action?url={% link %}&title={% title %}\",6,\"description\",\"category\"],[\"id\",\"instapaper\",\"link\",\"http://www.instapaper.com\",\"share\",\"http://www.instapaper.com/hello2?url={% link %}&title={% title %}\",6,\"description\",\"category\"],[\"id\",\"readability\",\"link\",\"https://www.readability.com\",\"share\",\"https://www.readability.com/save?url={% link %}\",6,\"description\",\"category\"],[\"id\",\"pocket\",\"link\",\"https://getpocket.com\",\"share\",\"https://getpocket.com/save?url={% link %}&title={% title %}\",6,\"description\",\"category\"],[\"id\",\"googlep\",\"link\",\"https://plus.google.com\",\"share\",\"https://plus.google.com/share?url={% link %}\",6,\"description\",\"category\"],[\"id\",\"facebook\",\"link\",\"https://www.facebook.com\",\"share\",\"http://www.facebook.com/sharer.php?u={% link %}&t={% title %}\",6,\"description\",\"category\"],[\"id\",\"twitter\",\"link\",\"https://www.twitter.com\",\"share\",\"https://twitter.com/intent/tweet?url={% link %}&text={% title %}\",6,\"description\",\"category\"],[\"id\",\"pinterest\",\"link\",\"https://www.pinterest.com\",\"share\",\"http://pinterest.com/pin/find/?url={% link %}\",6,\"description\",\"category\"],[\"id\",\"tumblr\",\"link\",\"https://www.tumblr.com\",\"share\",\"http://www.tumblr.com/share?v=3&u={% link %}&t={% title %}\",6,\"description\",\"category\"],[\"id\",\"flipboard\",\"link\",\"https://www.flipboard.com\",\"share\",\"https://share.flipboard.com/bookmarklet/popout?v=2&url={% link %}&title={% title %}\",6,\"description\",\"category\"],[\"id\",\"email\",\"share\",\"mailto:?subject={% title %}&body={% link %}\",6,\"description\",\"category\"],[\"id\",\"gmail\",\"link\",\"https://mail.google.com\",\"share\",\"https://mail.google.com/mail/?view=cm&su={% title %}&body={% link %}\",6,\"description\",\"category\"],[\"mat-icon-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"mat-sidenav-container\"),Ro(1,\"mat-sidenav\",null,0),jo(3,\"router-outlet\",1),Ho(),Ro(4,\"div\",2),Ro(5,\"mat-toolbar\",3),Do(6,LD,3,0,\"button\",4),jo(7,\"router-outlet\",5),Ho(),jo(8,\"router-outlet\"),Ho(),Ho(),Ro(9,\"share-service\",6),nc(10,mD),Ho(),Ro(11,\"share-service\",7),nc(12,pD),Ho(),Ro(13,\"share-service\",8),nc(14,fD),Ho(),Ro(15,\"share-service\",9),nc(16,_D),Ho(),Ro(17,\"share-service\",10),nc(18,gD),Ho(),Ro(19,\"share-service\",11),nc(20,yD),Ho(),Ro(21,\"share-service\",12),nc(22,bD),Ho(),Ro(23,\"share-service\",13),nc(24,vD),Ho(),Ro(25,\"share-service\",14),nc(26,wD),Ho(),Ro(27,\"share-service\",15),nc(28,MD),Ho(),Ro(29,\"share-service\",16),nc(30,kD),Ho(),Ro(31,\"share-service\",17),nc(32,SD),Ho()),2&e&&(ys(6),Po(\"ngIf\",!t.showsArticle&&!t.inSearch))},directives:[Hk,Ak,mT,dS,mu,hD,Gy,Cw],styles:[\".content[_ngcontent-%COMP%], body[_ngcontent-%COMP%], html[_ngcontent-%COMP%], mat-sidenav-container[_ngcontent-%COMP%]{width:100%;height:100vh;display:flex;flex-direction:column;overflow:hidden}mat-sidenav[_ngcontent-%COMP%]{width:200px}\"]}),e})();var CD=n(\"wd/R\");function TD(e,t,n,i){n&&\"function\"!=typeof n&&(i=n);const s=\"function\"==typeof n?n:void 0,r=new ev(e,t,i);return e=>te(()=>r,s)(e)}let DD=(()=>{class e{constructor(e){this.api=e}getFeeds(){return this.api.get(\"feed\").pipe(H(e=>e.feeds))}discover(e){return this.api.get(`feed/discover?query=${e}`).pipe(H(e=>e.feeds))}importOPML(e){var t=new FormData;return t.append(\"opml\",e.opml),e.dryRun&&t.append(\"dryRun\",\"true\"),this.api.post(\"opml\",t).pipe(H(e=>e.feeds))}exportOPML(){return this.api.get(\"opml\").pipe(H(e=>e.opml))}addFeeds(e){var t=new FormData;return e.forEach(e=>t.append(\"link\",e)),this.api.post(\"feed\",t)}deleteFeed(e){return this.api.delete(`feed/${e}`).pipe(H(e=>e.success))}updateTags(e,t){var n=new FormData;return t.forEach(e=>n.append(\"tag\",e)),this.api.put(`feed/${e}/tags`,n).pipe(H(e=>e.success))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})(),YD=(()=>{class e{constructor(e){this.api=e}getTags(){return this.api.get(\"tag\").pipe(H(e=>e.tags))}getFeedIDs(e){return this.api.get(`tag/${e.id}/feedIDs`).pipe(H(e=>e.feedIDs))}getTagsFeedIDs(){return this.api.get(\"tag/feedIDs\").pipe(H(e=>e.tagFeeds))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})(),ED=(()=>{class e{constructor(e){this.tokenService=e,this.connectionSubject=new hS(!1),this.refreshSubject=new L,this.eventSourceObservable=this.tokenService.tokenObservable().pipe(dD(this.refreshSubject.pipe(Rf(null)),(e,t)=>e),UL((e,t)=>(null!=e&&e.close(),\"\"!=t&&((e=new EventSource(\"/api/v2/events?token=\"+t)).onopen=()=>{this.connectionSubject.next(!0)},e.onerror=e=>{setTimeout(()=>{this.connectionSubject.next(!1),this.refresh()},3e3)}),e),null),Tu(e=>null!=e),nv(1)),this.feedUpdate=this.eventSourceObservable.pipe(V(e=>Mb(e,\"feed-update\")),H(e=>JSON.parse(e.data))),this.articleState=this.eventSourceObservable.pipe(V(e=>Mb(e,\"article-state-change\")),H(e=>JSON.parse(e.data)))}connection(){return this.connectionSubject.asObservable()}refresh(){this.refreshSubject.next(null)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ZT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})(),OD=(()=>{class e{constructor(){this.prefs=JSON.parse(localStorage.getItem(e.key)||\"{}\"),this.prefs.unreadFirst=!0,this.queryPreferencesSubject=new hS(this.prefs)}get olderFirst(){return this.prefs.olderFirst}set olderFirst(e){this.prefs.olderFirst=e,this.queryPreferencesSubject.next(this.prefs),this.saveToStorage()}get unreadOnly(){return this.prefs.unreadOnly}set unreadOnly(e){this.prefs.unreadOnly=e,this.queryPreferencesSubject.next(this.prefs),this.saveToStorage()}queryPreferences(){return this.queryPreferencesSubject.asObservable()}saveToStorage(){localStorage.setItem(e.key,JSON.stringify(this.prefs))}}return e.key=\"preferences\",e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();function ID(e){return e.map(e=>(\"string\"==typeof e.date&&(e.date=new Date(e.date)),e))}class PD{constructor(){this.updatable=!0}get url(){return\"\"}}class AD{constructor(){this.updatable=!1}get url(){return\"/favorite\"}}class RD{constructor(e){this.secondary=e,this.updatable=!1}get url(){return\"/popular\"+this.secondary.url}}class HD{constructor(e){this.id=e,this.updatable=!0}get url(){return`/feed/${this.id}`}}class jD{constructor(e){this.id=e,this.updatable=!0}get url(){return`/tag/${this.id}`}}class FD{constructor(e,t){this.query=e,this.secondary=t,this.updatable=!1}get url(){return`/search${this.secondary.url}?query=${encodeURIComponent(this.query)}`}}class ND{constructor(){this.indexMap=new Map,this.articles=[]}}let zD=(()=>{class e{constructor(e,t,n,i,s,r,o){this.api=e,this.tokenService=t,this.feedService=n,this.tagService=i,this.eventService=s,this.router=r,this.preferences=o,this.paging=new hS(null),this.stateChange=new L,this.updateSubject=new L,this.refresh=new hS(null),this.limit=200,this.initialFetched=!1;let a=this.preferences.queryPreferences();this.source=oD(this.router).pipe(Tu(e=>null!=e),H(e=>this.nameToSource(e.data,e.params)),Tu(e=>null!=e),Eb((e,t)=>e.url===t.url));let l=this.tokenService.tokenObservable().pipe(UL((e,t)=>{var n=this.tokenService.tokenUser(t);return e[0]=t,e[2]=e[1]!=n,e[1]=n,e},[\"\",\"\",!1]),Tu(e=>e[2]),Wb(()=>this.feedService.getFeeds().pipe(dD(this.tagService.getTagsFeedIDs(),(e,t)=>[e.reduce((e,t)=>(e[t.id]=t.title,e),new Map),t.reduce((e,t)=>(e[t.tag.id]=t.ids,e),new Map)]))),nv(1));this.articles=l.pipe(Wb(e=>this.source.pipe(dD(this.refresh,(e,t)=>e),Wb(t=>(this.paging=new hS(0),a.pipe(Wb(n=>G(this.paging.pipe(V(e=>this.datePaging(t,n.unreadFirst)),Wb(e=>this.getArticlesFor(t,{olderFirst:n.olderFirst,unreadOnly:n.unreadOnly},this.limit,e)),H(e=>({articles:e,fromEvent:!1}))),this.updateSubject.pipe(Wb(e=>this.getArticlesFor(t,e[0],this.limit,{}).pipe(dD(this.ids(t,{unreadOnly:!0,beforeID:e[0].afterID+1,afterID:e[1]-1}),(t,n)=>({articles:t,unreadIDs:new Set(n),unreadIDRange:[e[1],e[0].afterID],fromEvent:!0}))))),this.eventService.feedUpdate.pipe(Tu(n=>this.shouldUpdate(n,t,e[1])),bM(3e4),V(e=>this.getArticlesFor(new HD(e.feedID),{ids:e.articleIDs,olderFirst:n.olderFirst,unreadOnly:n.unreadOnly},this.limit,{})),H(e=>({articles:e,fromEvent:!0})))).pipe(Tu(e=>null!=e.articles),H(t=>(t.articles=t.articles.map(t=>(t.hits&&t.hits.fragments&&(t.hits.fragments.title.length>0&&(t.title=t.hits.fragments.title.join(\" \")),t.hits.fragments.description.length>0&&(t.stripped=t.hits.fragments.description.join(\" \"))),t.stripped||(t.stripped=t.description.replace(/<[^>]+>/g,\"\")),t.feed=e[0][t.feedID],t)),t)),UL((e,t)=>{if(t.unreadIDs)for(let n=0;n=t.unreadIDRange[0]&&i<=t.unreadIDRange[1]&&(e.articles[n].read=!t.unreadIDs.has(i))}if(t.fromEvent){let i=new Array;for(let s of t.articles)if(s.id in e.indexMap)i.push(s);else if(n.olderFirst){for(let t=e.articles.length-1;t>=0;t--)if(this.shouldInsert(s,e.articles[t],n)){e.articles.splice(t,0,s);break}}else for(let t=0;tJSON.stringify(e)==JSON.stringify(t))),(t,n)=>{if(null!=n){if(n.options.ids)for(let e of n.options.ids){let i=t.indexMap[e];null!=i&&-1!=i&&(t.articles[i][n.name]=n.value)}if(this.hasOptions(n.options)){let i=new Set;e[1].forEach(e=>{for(let t of e)i.add(t)});for(let e=0;ee.articles))),Rf([])))))),TD(1)),this.articles.connect(),this.eventService.connection().pipe(Tu(e=>e),Wb(e=>this.articles.pipe(zL())),Tu(e=>e.length>0),H(e=>e.map(e=>e.id)),H(e=>[Math.min.apply(Math,e),Math.max.apply(Math,e)]),H(e=>this.preferences.olderFirst?[{afterID:e[1]},e[0]]:[{olderFirst:!0,afterID:e[1]},e[0]])).subscribe(e=>this.updateSubject.next(e),e=>console.log(\"Error refreshing article list after reconnect: \",e)),this.eventService.articleState.subscribe(e=>this.stateChange.next({options:e.options,name:e.state,value:e.value}));let c=(new Date).getTime();Notification.requestPermission(e=>{\"granted\"==e&&l.pipe(dD(this.source,(e,t)=>[e[0],e[1],t]),Wb(e=>this.eventService.feedUpdate.pipe(Tu(t=>this.shouldUpdate(t,e[2],e[1])),H(t=>{let n=e[0].get(t.feedID);return n?[\"readeef: updates\",`Feed ${n} has been updated`]:null}),Tu(e=>null!=e),bM(3e4)))).subscribe(e=>{document.hasFocus()||(new Date).getTime()-c>3e4&&(new Notification(e[0],{body:e[1],icon:\"/en/readeef.png\",tag:\"readeef\"}),c=(new Date).getTime())})})}articleObservable(){return this.articles}requestNextPage(){this.paging.next(null)}ids(e,t){return this.api.get(this.buildURL(`article${e.url}/ids`,t)).pipe(H(e=>e.ids))}formatArticle(e){return this.api.get(`article/${e}/format`)}refreshArticles(){this.refresh.next(null)}favor(e,t){return this.articleStateChange(e,\"favorite\",t)}read(e,t){return this.articleStateChange(e,\"read\",t)}readAll(){this.source.pipe(cp(1),Tu(e=>e.updatable),H(e=>\"article\"+e.url+\"/read\"),V(e=>this.api.post(e)),H(e=>e.success)).subscribe(e=>{},e=>console.log(e))}articleStateChange(e,t,n){let i,s=`article/${e}/${t}`;return i=n?this.api.post(s):this.api.delete(s),i.pipe(H(e=>e.success),H(i=>(i&&this.stateChange.next({options:{ids:[e]},name:t,value:n}),i)))}getArticlesFor(e,t,n,i){let s=Object.assign({},t,{limit:n}),r=Object.assign({},s),o=-1,a=0;i.unreadTime?(o=i.unreadTime,a=i.unreadScore,r.unreadOnly=!0):i.time&&(o=i.time,a=i.score),-1!=o&&(t.olderFirst?(r.afterTime=o,a&&(r.afterScore=a)):(r.beforeTime=o,a&&(r.beforeScore=a)));let l=this.api.get(this.buildURL(\"article\"+e.url,r)).pipe(H(e=>ID(e.articles)));if(i.unreadTime&&(r=Object.assign({},s),r.readOnly=!0,i.time&&(t.olderFirst?(r.afterTime=i.time,i.score&&(r.afterScore=i.score)):(r.beforeTime=i.time,i.score&&(r.beforeScore=i.score))),l=l.pipe(V(t=>t.length==n?xu(t):(r.limit=n-t.length,this.api.get(this.buildURL(\"article\"+e.url,r)).pipe(H(e=>ID(e.articles)),H(e=>t.concat(e))))))),r.afterID&&(l=l.pipe(V(t=>{if(!t||!t.length)return xu(t);let s=Math.max.apply(Math,t.map(e=>e.id)),o=Object.assign({},r,{afterID:s});return this.getArticlesFor(e,o,n,i).pipe(H(e=>e&&e.length?e.concat(t):t))}))),!this.initialFetched){this.initialFetched=!0;let e=cD([this.router.routerState.snapshot.root]);if(null!=e&&+e.params.articleID>-1){let t=+e.params.articleID;return this.api.get(this.buildURL(\"article\"+(new PD).url,{ids:[t]})).pipe(H(e=>ID(e.articles)[0]),cp(1),V(e=>l.pipe(H(t=>{for(let n=0;nxu(null)))}buildURL(e,t){t||(t={}),t.limit||(t.limit=200);var n=new Array;if(t.ids){for(let e of t.ids)n.push(`id=${e}`);t.ids=void 0}for(var i in t)if(t.hasOwnProperty(i)){let e=t[i];if(void 0===e)continue;\"boolean\"==typeof e?e&&n.push(`${i}`):n.push(`${i}=${e}`)}return n.length>0?e+(-1==e.indexOf(\"?\")?\"?\":\"&\")+n.join(\"&\"):e}nameToSource(e,t){let n,i;switch(\"string\"==typeof e?n=e:(n=e.primary,i=e.secondary),n){case\"user\":return new PD;case\"favorite\":return new AD;case\"popular\":return new RD(this.nameToSource(i,t));case\"search\":return new FD(decodeURIComponent(t.query),this.nameToSource(i,t));case\"feed\":return new HD(t.id);case\"tag\":return new jD(t.id)}}datePaging(e,t){return this.articles.pipe(cp(1),H(n=>{if(0==n.length)return t?{unreadTime:-1}:{};let i=n[n.length-1],s={time:i.date.getTime()/1e3};if(e instanceof RD&&(s.score=i.score),t&&!(e instanceof FD)){if(!i.read)return s.unreadTime=s.time,e instanceof RD&&(s.unreadScore=s.score),s;for(let e=1;et.date)return!0;return!1}shouldSet(e,t,n){return!(t.feedIDs&&-1==t.feedIDs.indexOf(e.feedID)||t.readOnly&&!e.read||t.unreadOnly&&e.read||t.favoriteOnly&&!e.favorite||t.untaggedOnly&&!n.has(e.feedID)||t.beforeID&&e.id>=t.beforeID||t.afterID&&e.id<=t.afterID||t.beforeDate&&e.date>=t.beforeDate||t.afterDate&&e.date<=t.afterDate)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT),Qe(ZT),Qe(DD),Qe(YD),Qe(ED),Qe(lT),Qe(OD))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();function VD(e,t){1&e&&jo(0,\"div\",9),2&e&&da(\"background-image\",\"url(\"+Jo().item.thumbnail+\")\",ts)}function WD(e,t){1&e&&jo(0,\"div\",9),2&e&&da(\"background-image\",\"url(\"+Jo().item.thumbnailLink+\")\",ts)}function UD(e,t){if(1&e&&(Ro(0,\"div\",10),Sa(1),Ho()),2&e){const e=Jo();ys(1),xa(\" \",e.item.feed,\" \")}}let $D=(()=>{class e{constructor(e,t,n){this.articleService=e,this.router=t,this.route=n}openArticle(e){this.router.navigate([\"article\",e.id],{relativeTo:this.route})}favor(e,t){this.articleService.favor(e,t).subscribe(e=>{},e=>console.log(e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(zD),Eo(lT),Eo(eC))},e.\\u0275cmp=yt({type:e,selectors:[[\"list-item\"]],inputs:{item:\"item\"},decls:16,vars:12,consts:[[3,\"id\",\"click\"],[1,\"row\",\"align-items-center\"],[1,\"col\",\"title\"],[\"mat-card-avatar\",\"\",\"mat-icon-button\",\"\",3,\"click\"],[3,\"innerHTML\"],[\"mat-card-image\",\"\",3,\"backgroundImage\",4,\"ngIf\"],[1,\"row\",\"align-items-center\",\"info\"],[\"class\",\"col-mat-auto feed\",4,\"ngIf\"],[1,\"col\",\"time\"],[\"mat-card-image\",\"\"],[1,\"col-mat-auto\",\"feed\"]],template:function(e,t){1&e&&(Ro(0,\"mat-card\",0),Uo(\"click\",(function(){return t.openArticle(t.item)})),Ro(1,\"mat-card-header\",1),Ro(2,\"mat-card-title\",2),Ro(3,\"button\",3),Uo(\"click\",(function(e){return e.stopPropagation(),t.favor(t.item.id,!t.item.favorite)})),Ro(4,\"mat-icon\"),Sa(5),Ho(),Ho(),jo(6,\"span\",4),Ho(),Ho(),Do(7,VD,1,2,\"div\",5),Do(8,WD,1,2,\"div\",5),Ro(9,\"mat-card-content\"),jo(10,\"div\",4),Ho(),Ro(11,\"mat-card-actions\"),Ro(12,\"div\",6),Do(13,UD,2,1,\"div\",7),Ro(14,\"div\",8),Sa(15),Ho(),Ho(),Ho(),Ho()),2&e&&(ua(\"read\",t.item.read),ta(\"id\",t.item.id),ys(5),xa(\" \",t.item.favorite?\"bookmark\":\"bookmark_border\",\" \"),ys(1),Po(\"innerHTML\",t.item.title,Qi),ys(1),Po(\"ngIf\",t.item.thumbnail),ys(1),Po(\"ngIf\",t.item.thumbnailLink&&!t.item.thumbnail),ys(2),Po(\"innerHTML\",t.item.stripped,Qi),ys(2),ua(\"read\",t.item.read),ys(1),Po(\"ngIf\",t.item.feed),ys(2),xa(\" \",t.item.time,\" \"))},directives:[ob,ab,nb,Gy,rb,Cw,mu,tb,ib,sb],styles:[\"[_nghost-%COMP%]{height:500px}mat-card[_ngcontent-%COMP%]{display:flex;flex-direction:column;max-height:calc(100% - 12px);cursor:pointer}mat-card-header[_ngcontent-%COMP%]{overflow:hidden;flex:0 0 auto}[mat-card-image][_ngcontent-%COMP%]{height:240px;flex:1 0 auto;background-position:50%;background-repeat:no-repeat;background-size:contain}mat-card-content[_ngcontent-%COMP%]{flex:0 1 auto;overflow:hidden;text-overflow:ellipsis-lastline;font-size:12px}mat-card-actions[_ngcontent-%COMP%]{flex:0 0 auto}.read[_ngcontent-%COMP%]{font-weight:100;color:#666}.read[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{font-weight:300}.title[_ngcontent-%COMP%]{font-weight:700;font-size:14px;overflow:hidden;text-overflow:ellipsis;line-height:1;height:3.85em}.info[_ngcontent-%COMP%]{margin:0}.feed[_ngcontent-%COMP%]{font-weight:200;font-size:10px;text-align:start}.time[_ngcontent-%COMP%]{font-size:11px;text-align:end}button[_ngcontent-%COMP%]:focus, button[_ngcontent-%COMP%]:hover{outline:none;text-decoration:none}\"]}),e})();function BD(e,t){1&e&&jo(0,\"list-item\",4),2&e&&Po(\"item\",t.$implicit)}var qD;function GD(e,t){1&e&&(Ro(0,\"div\",5),tc(1,qD),Ho())}qD=\"\\u0417\\u0430\\u0440\\u0435\\u0436\\u0434\\u0430\\u043D\\u0435...\";class JD{constructor(e,t){this.iteration=e,this.articles=t}}let KD=(()=>{class e{constructor(e,t,n){this.articleService=e,this.router=t,this.route=n,this.items=[],this.finished=!1,this.limit=200}ngOnInit(){this.loading=!0,this.subscription=this.articleService.articleObservable().pipe(UL((e,t,n)=>(e.iteration>0&&e.articles.length==t.length&&(this.finished=!0),e.articles=[].concat(t),e.iteration++,e),new JD(0,[])),H(e=>e.articles),Wb(e=>OT(6e4).pipe(Rf(0),H(t=>e.map(e=>(e.time=CD(e.date).fromNow(),e)))))).subscribe(e=>{this.loading=!1,this.items=e},e=>{this.loading=!1,console.log(e)})}ngOnDestroy(){this.subscription.unsubscribe()}fetchMore(e){e.endIndex!==this.items.length-1||this.loading||this.finished||(this.loading=!0,this.articleService.requestNextPage())}firstUnread(){if(document.activeElement.matches(\"input\"))return;let e=this.items.find(e=>!e.read);e&&this.router.navigate([\"article\",e.id],{relativeTo:this.route})}lastUnread(){if(!document.activeElement.matches(\"input\"))for(let e=this.items.length-1;e>-1;e--){let t=this.items[e];if(!t.read)return void this.router.navigate([\"article\",t.id],{relativeTo:this.route})}}refresh(){document.activeElement.matches(\"input\")||this.articleService.refreshArticles()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(zD),Eo(lT),Eo(eC))},e.\\u0275cmp=yt({type:e,selectors:[[\"article-list\"]],hostBindings:function(e,t){1&e&&Uo(\"keydown.arrowLeft\",(function(){return t.firstUnread()}),!1,Un)(\"keydown.shift.j\",(function(){return t.firstUnread()}),!1,Un)(\"keydown.arrowRight\",(function(){return t.lastUnread()}),!1,Un)(\"keydown.shift.k\",(function(){return t.lastUnread()}),!1,Un)(\"keydown.r\",(function(){return t.refresh()}),!1,Un)},decls:4,vars:3,consts:[[3,\"items\",\"vsEnd\"],[\"scroll\",\"\"],[3,\"item\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"loader\",4,\"ngIf\"],[3,\"item\"],[1,\"loader\"]],template:function(e,t){if(1&e&&(Ro(0,\"virtual-scroller\",0,1),Uo(\"vsEnd\",(function(e){return t.fetchMore(e)})),Do(2,BD,1,1,\"list-item\",2),Do(3,GD,2,0,\"div\",3),Ho()),2&e){const e=Yo(1);Po(\"items\",t.items),ys(2),Po(\"ngForOf\",e.viewPortItems),ys(1),Po(\"ngIf\",t.loading)}},directives:[LL,uu,mu,$D],styles:['[_nghost-%COMP%]{flex-grow:1;display:flex;height:calc(100% - 64px)}virtual-scroller[_ngcontent-%COMP%]{overflow:hidden;overflow-y:auto;display:block;flex-grow:1;background:#eee}list-item[_ngcontent-%COMP%]{display:inline-block;overflow:hidden;vertical-align:top;border:0;width:calc(25% - 16px);margin:8px}@media (max-width:1350px){list-item[_ngcontent-%COMP%]{width:calc(33% - 16px)}}@media (max-width:900px){list-item[_ngcontent-%COMP%]{width:calc(50% - 16px)}}@media (max-width:600px){list-item[_ngcontent-%COMP%]{width:calc(100% - 16px)}}.loader[_ngcontent-%COMP%]{height:4em;display:block;line-height:4em;text-align:center;position:relative}.loader[_ngcontent-%COMP%]:before{content:\" \";position:absolute;top:0;left:0;width:20%;height:2px;background:red;-webkit-animation:loader-animation 2s ease-out infinite;animation:loader-animation 2s ease-out infinite}@-webkit-keyframes loader-animation{0%{transform:translate(0)}to{transform:translate(500%)}}@keyframes loader-animation{0%{transform:translate(0)}to{transform:translate(500%)}}']}),e})();class ZD{call(e,t){return t.subscribe(new QD(e))}}class QD extends p{_next(e){}}let XD=(()=>{class e{constructor(e,t){this.api=e,this.tokenService=t;var n=this.tokenService.tokenObservable().pipe(Wb(e=>this.api.get(\"features\").pipe(H(e=>e.features))),TD(1));n.connect(),this.features=n}getFeatures(){return this.features}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT),Qe(ZT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();const eY=[\"carousel\"];var tY,nY,iY;function sY(e,t){if(1&e&&(Ro(0,\"div\",17),Sa(1),Ho()),2&e){const e=Jo(2).$implicit;ys(1),xa(\" \",e.feed,\" \")}}function rY(e,t){if(1&e){const e=zo();Ro(0,\"div\",18),Ro(1,\"button\",19),Uo(\"click\",(function(){en(e);const t=Jo(2).$implicit;return Jo().formatArticle(t)})),tc(2,nY),Ho(),Ho()}}function oY(e,t){if(1&e){const e=zo();Ro(0,\"div\",18),Ro(1,\"button\",19),Uo(\"click\",(function(){en(e);const t=Jo(2).$implicit;return Jo().summarizeArticle(t)})),tc(2,iY),Ho(),Ho()}}function aY(e,t){if(1&e){const e=zo();Ro(0,\"div\",4),Ro(1,\"h3\",5),Ro(2,\"button\",6),Uo(\"click\",(function(){en(e);const t=Jo().$implicit;return Jo().favorArticle(t)})),Ro(3,\"mat-icon\"),Sa(4),Ho(),Ho(),Ro(5,\"a\",7),Uo(\"click\",(function(){return en(e),Jo(2).viewActive()})),Ho(),Ho(),Ro(6,\"div\",8),Do(7,sY,2,1,\"div\",9),Ro(8,\"div\",10),Sa(9),Ho(),Ro(10,\"div\",11),Sa(11),Ho(),Ho(),jo(12,\"p\",12),Ro(13,\"div\",13),Ro(14,\"div\",14),Ro(15,\"a\",15),Uo(\"click\",(function(){return en(e),Jo(2).viewActive()})),tc(16,tY),Ho(),Ho(),Do(17,rY,3,0,\"div\",16),Do(18,oY,3,0,\"div\",16),Ho(),Ho()}if(2&e){const e=Jo().$implicit,t=Jo();ys(4),xa(\" \",e.favorite?\"bookmark\":\"bookmark_border\",\" \"),ys(1),ta(\"href\",e.link,es),Po(\"innerHTML\",e.title,Qi),ys(1),ua(\"read\",e.read),ys(1),Po(\"ngIf\",e.feed),ys(2),xa(\" \",t.index,\" \"),ys(2),xa(\" \",e.time,\" \"),ys(1),Po(\"innerHTML\",e.formatted,Qi),ys(3),ta(\"href\",e.link,es),ys(2),Po(\"ngIf\",t.canExtract),ys(1),Po(\"ngIf\",t.canExtract)}}function lY(e,t){1&e&&Do(0,aY,19,12,\"ng-template\",3),2&e&&Po(\"id\",t.$implicit.id.toString())}tY=\"\\u041E\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\",nY=\"\\u0424\\u043E\\u0440\\u043C\\u0430\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435\",iY=\"\\u041E\\u0431\\u043E\\u0431\\u0449\\u0430\\u0432\\u0430\\u043D\\u0435\";var cY=function(e){return e[e.DESCRIPTION=0]=\"DESCRIPTION\",e[e.FORMAT=1]=\"FORMAT\",e[e.SUMMARY=2]=\"SUMMARY\",e}({});let dY=(()=>{class e{constructor(e,t,n,i,s,r){this.route=t,this.router=n,this.articleService=i,this.featuresService=s,this.sanitizer=r,this.slides=[],this.offset=new L,this.stateChange=new hS([-1,cY.DESCRIPTION]),this.states=new Map,this.subscriptions=new Array,e.interval=0,e.wrap=!1,e.keyboard=!1}ngOnInit(){this.subscriptions.push(this.articleService.articleObservable().pipe(Wb(e=>this.stateChange.pipe(Wb(e=>this.offset.pipe(Rf(0),H(t=>[t,e]))),H(t=>{let[n,i]=t,s=this.route.snapshot.params.articleID,r=[],o=e.findIndex(e=>e.id==s);return-1==o?null:(0!=n&&(o+n!=-1&&o+n0&&r.push(e[o-1]),r.push(e[o]),o+1{if(e.id==i[0])switch(i[1]){case cY.DESCRIPTION:e.formatted=e.description;break;case cY.FORMAT:e.formatted=e.format.content;break;case cY.SUMMARY:e.formatted=this.keypointsToHTML(e.format)}else e.formatted=e.description;return e.formatted=this.sanitizer.bypassSecurityTrustHtml(this.formatSource(e.formatted)),e}),{slides:r,active:{id:e[o].id,read:e[o].read,state:i[1]},index:o,total:e.length})}))),Tu(e=>null!=e),Eb((e,t)=>e.active.id==t.active.id&&e.slides.length==t.slides.length&&e.active.state==t.active.state&&e.total==t.total&&(e.slides[0]||{}).id==(t.slides[0]||{}).id&&(e.slides[2]||{}).id==(t.slides[2]||{}).id),V(e=>e.active.read?xu(e):this.articleService.read(e.active.id,!0).pipe(H(t=>e),aw(e=>xu(e)),(function(e){return e.lift(new ZD)}),Rf(e))),Wb(e=>OT(6e4).pipe(Rf(0),H(t=>(e.slides=e.slides.map(e=>(e.time=CD(e.date).fromNow(),e)),e))))).subscribe(e=>{this.carousel.activeId=e.active.id.toString(),this.slides=e.slides,this.active=e.slides.find(t=>t.id==e.active.id),2==e.slides.length&&e.slides[1].id==e.active.id&&this.articleService.requestNextPage(),this.index=`${e.index+1}/${e.total}`},e=>console.log(e))),this.subscriptions.push(this.featuresService.getFeatures().pipe(H(e=>e.extractor)).subscribe(e=>this.canExtract=e,e=>console.log(e))),this.subscriptions.push(this.stateChange.subscribe(e=>this.states.set(e[0],e[1])))}ngOnDestroy(){for(let e of this.subscriptions)e.unsubscribe()}slideEvent(e){this.offset.next(e?1:-1)}favor(e,t){this.articleService.favor(e,t).subscribe(e=>{},e=>console.log(e))}goUp(){this.router.navigate([\"../../\"],{relativeTo:this.route}),document.getSelection().removeAllRanges()}goNext(){this.carousel.next()}goPrevious(){this.carousel.prev()}previousUnread(){let e=this.route.snapshot.params.articleID;this.articleService.articleObservable().pipe(H(t=>{let n=t.findIndex(t=>t.id==e);for(;n>0&&(n--,t[n].read););return t[n].read?e:t[n].id}),cp(1),Tu(t=>t!=e),V(e=>z(this.router.navigate([\"../\",e],{relativeTo:this.route})).pipe(H(t=>e)))).subscribe(e=>{this.stateChange.next([e,cY.DESCRIPTION])})}nextUnread(){let e=this.route.snapshot.params.articleID;this.articleService.articleObservable().pipe(H(t=>{let n=t.findIndex(t=>t.id==e);for(;nt!=e),V(e=>z(this.router.navigate([\"../\",e],{relativeTo:this.route})).pipe(H(t=>e)))).subscribe(e=>{this.stateChange.next([e,cY.DESCRIPTION])})}viewActive(){return null!=this.active&&document.body.dispatchEvent(new CustomEvent(\"open-link\",{cancelable:!0,detail:this.active.link}))&&window.open(this.active.link,\"_blank\"),!1}formatActive(){null!=this.active&&this.formatArticle(this.active)}formatArticle(e){let t=this.getState(e.id);t=t==cY.FORMAT?cY.DESCRIPTION:cY.FORMAT,this.setFormat(e,t)}summarizeActive(){null!=this.active&&this.summarizeArticle(this.active)}summarizeArticle(e){let t=this.getState(e.id);t=t==cY.SUMMARY?cY.DESCRIPTION:cY.SUMMARY,this.setFormat(e,t)}favorActive(){null!=this.active&&this.favorArticle(this.active)}favorArticle(e){this.articleService.favor(e.id,!e.favorite).subscribe(e=>{},e=>console.log(e))}keypointsToHTML(e){return`
  • `+e.keyPoints.join(\"
  • \")+\"
\"}getState(e){return this.states.has(e)?this.states.get(e):cY.DESCRIPTION}setFormat(e,t){let n,i=this.active;t!=cY.DESCRIPTION?(n=e.format?xu(e.format):this.articleService.formatArticle(i.id),n.subscribe(e=>{i.format=e,this.stateChange.next([i.id,t])},e=>console.log(e))):this.stateChange.next([i.id,t])}formatSource(e){return e.replace(\"{class e{constructor(){this.parser=document.createElement(\"a\")}iconURL(e){return this.parser.href=e,`//www.google.com/s2/favicons?domain=${this.parser.hostname}`}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();var hY,mY,pY,fY,_Y,gY;function yY(e,t){if(1&e&&(Ro(0,\"a\",14),Sa(1),Ho()),2&e){const e=t.$implicit;Po(\"routerLink\",\"/feed/popular/\"+e.link),ys(1),La(e.title)}}function bY(e,t){if(1&e&&(Ro(0,\"a\",14),jo(1,\"img\",15),Sa(2),Ho()),2&e){const e=t.$implicit,n=Jo(2);Po(\"routerLink\",\"/feed/popular/\"+e.link),ys(1),ta(\"src\",n.favicon(e.url),es),ys(1),La(e.title)}}function vY(e,t){if(1&e){const e=zo();Ro(0,\"div\",4),Ro(1,\"div\",5),Ro(2,\"button\",6),Uo(\"click\",(function(){en(e);const t=Jo();return t.collapses.__popularity=!t.collapses.__popularity})),Ro(3,\"mat-icon\"),Sa(4),Ho(),Ho(),Ro(5,\"a\",13),tc(6,gY),Ho(),Ho(),Ro(7,\"div\",8),Do(8,yY,2,2,\"a\",9),Do(9,bY,3,3,\"a\",9),Ho(),Ho()}if(2&e){const e=Jo();ys(4),La(e.collapses.__popularity?\"expand_less\":\"expand_more\"),ys(3),Po(\"ngbCollapse\",!e.collapses.__popularity),ys(1),Po(\"ngForOf\",e.tags),ys(1),Po(\"ngForOf\",e.allItems)}}function wY(e,t){if(1&e&&(Ro(0,\"a\",14),jo(1,\"img\",15),Sa(2),Ho()),2&e){const e=t.$implicit,n=Jo();Po(\"routerLink\",\"/\"+e.link),ys(1),ta(\"src\",n.favicon(e.url),es),ys(1),La(e.title)}}function MY(e,t){if(1&e&&(Ro(0,\"a\",14),jo(1,\"img\",15),Sa(2),Ho()),2&e){const e=t.$implicit,n=Jo(2);Po(\"routerLink\",\"/feed/\"+e.link),ys(1),ta(\"src\",n.favicon(e.url),es),ys(1),La(e.title)}}function kY(e,t){if(1&e){const e=zo();Ro(0,\"div\",4),Ro(1,\"div\",5),Ro(2,\"button\",6),Uo(\"click\",(function(){en(e);const n=t.$implicit,i=Jo();return i.collapses[n.id]=!i.collapses[n.id]})),Ro(3,\"mat-icon\"),Sa(4),Ho(),Ho(),Ro(5,\"a\",14),Sa(6),Ho(),Ho(),Ro(7,\"div\",8),Do(8,MY,3,3,\"a\",9),Ho(),Ho()}if(2&e){const e=t.$implicit,n=Jo();ys(4),La(n.collapses[e.id]?\"expand_less\":\"expand_more\"),ys(1),Po(\"routerLink\",\"/feed/\"+e.link),ys(1),La(e.title),ys(1),Po(\"ngbCollapse\",!n.collapses[e.id]),ys(1),Po(\"ngForOf\",e.items)}}hY=\"\\u0415\\u043C\\u0438\\u0441\\u0438\\u0438\",mY=\"\\u041B\\u044E\\u0431\\u0438\\u043C\\u0438\",pY=\"\\u0412\\u0441\\u0438\\u0447\\u043A\\u0438\",fY=\"\\u041D\\u0430\\u0441\\u0442\\u0440\\u043E\\u0439\\u043A\\u0438\",_Y=\"\\u0418\\u0437\\u0445\\u043E\\u0434\",gY=\"\\u041F\\u043E\\u043F\\u0443\\u043B\\u044F\\u0440\\u043D\\u0438\";let SY=(()=>{class e{constructor(e,t,n,i){this.tagService=e,this.feedService=t,this.featuresService=n,this.faviconService=i,this.collapses=new Map,this.popularityItems=new Array,this.allItems=new Array,this.tags=new Array,this.collapses.set(\"__popularity\",!0),this.collapses.set(\"__all\",!0)}ngOnInit(){this.featuresService.getFeatures().pipe(dD(this.feedService.getFeeds(),this.tagService.getTagsFeedIDs(),(e,t,n)=>{let i;return i=[e,t,n],i})).subscribe(e=>{this.popularity=e[0].popularity;let t=e[1].sort((e,t)=>e.title.localeCompare(t.title)),n=e[2].sort((e,t)=>e.tag.value.localeCompare(t.tag.value));if(this.popularity&&(this.popularityItems=n.map(e=>new xY(-1*e.tag.id,\"/popular/tag/\"+e.tag.id,e.tag.value)),this.popularityItems.concat(t.map(e=>new xY(e.id,\"/popular/feed/\"+e.id,e.title,e.link)))),this.allItems=t.map(e=>new xY(e.id,\"/feed/\"+e.id,e.title,e.link)),n.length>0){let e=new Map;t.forEach(t=>{e.set(t.id,t)}),this.tags=n.map(t=>new LY(t.tag.id,\"/tag/\"+t.tag.id,t.tag.value,t.ids.map(t=>new xY(t,`${t}`,e.get(t).title,e.get(t).link)))),this.tags.forEach(e=>this.collapses.set(e.id,!1))}},e=>console.log(e))}favicon(e){return this.faviconService.iconURL(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(YD),Eo(DD),Eo(XD),Eo(uY))},e.\\u0275cmp=yt({type:e,selectors:[[\"side-bar\"]],decls:22,vars:5,consts:[[\"color\",\"primary\"],[1,\"content\"],[\"mat-button\",\"\",\"routerLink\",\"/feed/favorite\"],[\"class\",\"group\",4,\"ngIf\"],[1,\"group\"],[1,\"category\"],[\"mat-button\",\"\",1,\"expander\",3,\"click\"],[\"mat-button\",\"\",\"routerLink\",\"/feed\"],[1,\"items\",3,\"ngbCollapse\"],[\"mat-button\",\"\",3,\"routerLink\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"group\",4,\"ngFor\",\"ngForOf\"],[\"mat-button\",\"\",\"routerLink\",\"/settings\"],[\"mat-button\",\"\",\"routerLink\",\"/login\"],[\"mat-button\",\"\",\"routerLink\",\"/feed/popular\"],[\"mat-button\",\"\",3,\"routerLink\"],[1,\"favicon\",3,\"src\"]],template:function(e,t){1&e&&(Ro(0,\"mat-toolbar\",0),tc(1,hY),Ho(),Ro(2,\"div\",1),Ro(3,\"a\",2),tc(4,mY),Ho(),Do(5,vY,10,4,\"div\",3),jo(6,\"hr\"),Ro(7,\"div\",4),Ro(8,\"div\",5),Ro(9,\"button\",6),Uo(\"click\",(function(){return t.collapses.__all=!t.collapses.__all})),Ro(10,\"mat-icon\"),Sa(11),Ho(),Ho(),Ro(12,\"a\",7),tc(13,pY),Ho(),Ho(),Ro(14,\"div\",8),Do(15,wY,3,3,\"a\",9),Ho(),Ho(),Do(16,kY,9,5,\"div\",10),jo(17,\"hr\"),Ro(18,\"a\",11),tc(19,fY),Ho(),Ro(20,\"a\",12),tc(21,_Y),Ho(),Ho()),2&e&&(ys(5),Po(\"ngIf\",t.popularity),ys(6),La(t.collapses.__all?\"expand_less\":\"expand_more\"),ys(3),Po(\"ngbCollapse\",!t.collapses.__all),ys(1),Po(\"ngForOf\",t.allItems),ys(1),Po(\"ngForOf\",t.tags))},directives:[dS,Jy,cT,mu,Gy,Cw,VS,uu],styles:[\".content[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{margin-bottom:4px}.content[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex;font-size:16px}.items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:13px}.category[_ngcontent-%COMP%], .items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex}.category[_ngcontent-%COMP%] > .expander[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;min-width:24px;flex-shrink:1}.category[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{flex-grow:1;text-align:start}.category[_ngcontent-%COMP%] > .items[_ngcontent-%COMP%]{flex:0 1 100%}.content[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{margin:0}.favicon[_ngcontent-%COMP%]{padding-right:4px}\"]}),e})();class LY{constructor(e,t,n,i){this.id=e,this.link=t,this.title=n,this.items=i}}class xY{constructor(e,t,n,i){this.id=e,this.link=t,this.title=n,this.url=i}}class CY{constructor(e){this.delayDurationSelector=e}call(e,t){return t.subscribe(new TY(e,this.delayDurationSelector))}}class TY extends R{constructor(e,t){super(e),this.delayDurationSelector=t,this.completed=!1,this.delayNotifierSubscriptions=[],this.index=0}notifyNext(e,t,n,i,s){this.destination.next(e),this.removeSubscription(s),this.tryComplete()}notifyError(e,t){this._error(e)}notifyComplete(e){const t=this.removeSubscription(e);t&&this.destination.next(t),this.tryComplete()}_next(e){const t=this.index++;try{const n=this.delayDurationSelector(e,t);n&&this.tryDelay(n,e)}catch(n){this.destination.error(n)}}_complete(){this.completed=!0,this.tryComplete(),this.unsubscribe()}removeSubscription(e){e.unsubscribe();const t=this.delayNotifierSubscriptions.indexOf(e);return-1!==t&&this.delayNotifierSubscriptions.splice(t,1),e.outerValue}tryDelay(e,t){const n=A(this,e,t);n&&!n.closed&&(this.destination.add(n),this.delayNotifierSubscriptions.push(n))}tryComplete(){this.completed&&0===this.delayNotifierSubscriptions.length&&this.destination.complete()}}const DY=[\"search\"];function YY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){return en(e),Jo().up()})),Ro(1,\"mat-icon\"),Sa(2,\"keyboard_backspace\"),Ho(),Ho()}}var EY,OY;function IY(e,t){1&e&&(Ro(0,\"span\"),tc(1,EY),Ho())}function PY(e,t){1&e&&jo(0,\"span\",12)}function AY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){en(e),Jo();const t=Yo(3);return Jo().searchQuery=\"\",t.focus()})),Ro(1,\"mat-icon\"),Sa(2,\"clear\"),Ho(),Ho()}}function RY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){en(e);const t=Jo(2);return t.performSearch(t.searchQuery)})),Ro(1,\"mat-icon\"),Sa(2,\"keyboard_return\"),Ho(),Ho()}}function HY(e,t){if(1&e){const e=zo();Ro(0,\"div\",13),Do(1,AY,3,0,\"button\",0),Ro(2,\"input\",14,15),Uo(\"ngModelChange\",(function(t){return en(e),Jo().searchQuery=t})),Ho(),Do(4,RY,3,0,\"button\",0),Ho()}if(2&e){const e=Jo();ys(1),Po(\"ngIf\",e.searchQuery),ys(1),Po(\"ngModel\",e.searchQuery),ys(2),Po(\"ngIf\",e.searchQuery)}}function jY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){en(e);const t=Jo();return t.searchEntry=!t.searchEntry})),Ro(1,\"mat-icon\"),Sa(2,\"search\"),Ho(),Ho()}}function FY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){return en(e),Jo().refresh()})),Ro(1,\"mat-icon\"),Sa(2,\"refresh\"),Ho(),Ho()}}function NY(e,t){if(1&e){const e=zo();Ro(0,\"mat-checkbox\",16),Uo(\"ngModelChange\",(function(t){return en(e),Jo().articleRead=t}))(\"click\",(function(){return en(e),Jo().toggleRead()})),tc(1,OY),Ho()}2&e&&Po(\"ngModel\",Jo().articleRead)}function zY(e,t){1&e&&(Ro(0,\"button\",17),Ro(1,\"mat-icon\"),Sa(2,\"share\"),Ho(),Ho()),2&e&&(Jo(),Po(\"matMenuTriggerFor\",Yo(9)))}function VY(e,t){if(1&e){const e=zo();Ro(0,\"button\",10),Uo(\"click\",(function(){en(e);const n=t.$implicit;return Jo().shareArticleTo(n)})),Sa(1),Ho()}if(2&e){const e=t.$implicit;ys(1),xa(\" \",e.description,\" \")}}function WY(e,t){1&e&&(Ro(0,\"button\",17),Ro(1,\"mat-icon\"),Sa(2,\"more_vert\"),Ho(),Ho()),2&e&&(Jo(),Po(\"matMenuTriggerFor\",Yo(13)))}function UY(e,t){if(1&e){const e=zo();Ro(0,\"button\",10),Uo(\"click\",(function(){return en(e),Jo().toggleOlderFirst()})),Ro(1,\"span\"),Sa(2,\"Older first\"),Ho(),Ho()}}function $Y(e,t){if(1&e){const e=zo();Ro(0,\"button\",10),Uo(\"click\",(function(){return en(e),Jo().toggleOlderFirst()})),Ro(1,\"span\"),Sa(2,\"Newer first\"),Ho(),Ho()}}function BY(e,t){if(1&e){const e=zo();Ro(0,\"button\",10),Uo(\"click\",(function(){return en(e),Jo().markAsRead()})),Ro(1,\"span\"),Sa(2,\"Mark all as read\"),Ho(),Ho()}}EY=\"\\u0421\\u0442\\u0430\\u0442\\u0438\\u0438\",OY=\"\\u041F\\u0440\\u043E\\u0447\\u0435\\u0442\\u0435\\u043D\\u0430\";let qY=(()=>{class e{constructor(t,n,i,s,r,o){this.articleService=t,this.featuresServices=n,this.preferences=i,this.router=s,this.location=r,this.sharingService=o,this.olderFirst=!1,this.showsArticle=!1,this.articleRead=!1,this.searchButton=!1,this.markAllRead=!1,this.inSearch=!1,this.enabledShares=!1,this.shareServices=new Array,this._searchQuery=\"\",this._searchEntry=!1,this.subscriptions=new Array,this.searchQuery=localStorage.getItem(e.key)||\"\"}get searchEntry(){return this._searchEntry}set searchEntry(e){this._searchEntry=e,e&&setTimeout(()=>{this.searchInput.nativeElement.focus()},10)}get searchQuery(){return this._searchQuery}set searchQuery(t){this._searchQuery=t,localStorage.setItem(e.key,t)}ngOnInit(){let e=lD(this.router);this.subscriptions.push(e.pipe(H(e=>null!=e)).subscribe(e=>this.showsArticle=e)),this.articleID=e.pipe(H(e=>null==e?-1:+e.params.articleID),Eb(),nv(1)),this.subscriptions.push(this.articleID.pipe(Wb(e=>{if(-1==e)return xu(!1);let t=!0;return this.articleService.articleObservable().pipe(H(t=>{for(let n of t)if(n.id==e)return n.read;return!1}),(n=e=>e&&!t?Hb(1e3):(t=!1,Hb(0)),e=>e.lift(new CY(n))));var n})).subscribe(e=>this.articleRead=e,e=>console.log(e))),this.subscriptions.push(oD(this.router).pipe(H(e=>null!=e&&\"search\"==e.data.primary)).subscribe(e=>this.inSearch=e,e=>console.log(e))),this.subscriptions.push(this.featuresServices.getFeatures().pipe(Tu(e=>e.search),Wb(t=>e.pipe(H(e=>null==e),Eb(),dD(oD(this.router),(e,t)=>{let n=!1,i=!1,s=!1;if(e)switch(aD([this.router.routerState.snapshot.root]).data.primary){case\"favorite\":s=!0;case\"popular\":break;case\"search\":i=!0;default:n=!0,s=!0}return[n,i,s]})))).subscribe(e=>{this.searchButton=e[0],this.searchEntry=e[1],this.markAllRead=e[2]},e=>console.log(e))),this.subscriptions.push(this.sharingService.enabledServices().subscribe(e=>{this.enabledShares=e.length>0,this.shareServices=e},e=>console.log(e)))}ngOnDestroy(){this.subscriptions.forEach(e=>e.unsubscribe())}toggleOlderFirst(){this.preferences.olderFirst=!this.preferences.olderFirst,this.olderFirst=this.preferences.olderFirst}toggleUnreadOnly(){this.preferences.unreadOnly=!this.preferences.unreadOnly}markAsRead(){this.articleService.readAll()}up(){let e=this.location.path(),t=e.indexOf(\"/article/\");-1!=t?this.router.navigateByUrl(e.substring(0,t)):this.inSearch&&this.router.navigateByUrl(e.substring(0,e.indexOf(\"/search/\")))}toggleRead(){this.articleID.pipe(cp(1),Wb(e=>(-1==e&&lp(),this.articleService.articleObservable().pipe(H(t=>{for(let n of t)if(n.id==e)return n;return null}),cp(1)))),V(e=>this.articleService.read(e.id,!e.read))).subscribe(e=>{},e=>console.log(e))}keyEnter(){this.searchEntry&&this.searchQuery&&this.performSearch(this.searchQuery)}performSearch(e){if(\"search\"==aD([this.router.routerState.snapshot.root]).data.primary){let t=this.location.path().indexOf(\"/search/\")+8;this.router.navigateByUrl(this.location.path().substring(0,t)+encodeURIComponent(e))}else this.router.navigateByUrl(this.location.path()+\"/search/\"+encodeURIComponent(e))}refresh(){this.articleService.refreshArticles()}shareArticleTo(e){this.articleID.pipe(cp(1),Tu(e=>-1!=e),Wb(e=>this.articleService.articleObservable().pipe(H(t=>t.filter(t=>t.id==e)),Tu(e=>e.length>0),H(e=>e[0]))),cp(1)).subscribe(t=>this.sharingService.submit(e.id,t))}}return e.key=\"searchQuery\",e.\\u0275fac=function(t){return new(t||e)(Eo(zD),Eo(XD),Eo(OD),Eo(lT),Eo(tu),Eo(uD))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],viewQuery:function(e,t){var n;1&e&&Ec(DY,!0),2&e&&Dc(n=Rc())&&(t.searchInput=n.first)},hostBindings:function(e,t){1&e&&Uo(\"keydown.enter\",(function(){return t.keyEnter()}))},decls:20,vars:13,consts:[[\"mat-icon-button\",\"\",3,\"click\",4,\"ngIf\"],[4,\"ngIf\"],[\"class\",\"spacer\",4,\"ngIf\"],[\"class\",\"input-group\",4,\"ngIf\"],[3,\"ngModel\",\"ngModelChange\",\"click\",4,\"ngIf\"],[\"mat-icon-button\",\"\",3,\"matMenuTriggerFor\",4,\"ngIf\"],[\"shares\",\"matMenu\"],[\"mat-menu-item\",\"\",3,\"click\",4,\"ngFor\",\"ngForOf\"],[\"other\",\"matMenu\"],[\"mat-menu-item\",\"\",3,\"click\",4,\"ngIf\"],[\"mat-menu-item\",\"\",3,\"click\"],[\"mat-icon-button\",\"\",3,\"click\"],[1,\"spacer\"],[1,\"input-group\"],[\"matInput\",\"\",\"focused\",\"\",1,\"spacer\",\"search\",\"mat-toolbar\",\"mat-primary\",\"form-control\",3,\"ngModel\",\"ngModelChange\"],[\"search\",\"\"],[3,\"ngModel\",\"ngModelChange\",\"click\"],[\"mat-icon-button\",\"\",3,\"matMenuTriggerFor\"]],template:function(e,t){1&e&&(Do(0,YY,3,0,\"button\",0),Do(1,IY,2,0,\"span\",1),Do(2,PY,1,0,\"span\",2),Do(3,HY,5,3,\"div\",3),Do(4,jY,3,0,\"button\",0),Do(5,FY,3,0,\"button\",0),Do(6,NY,2,1,\"mat-checkbox\",4),Do(7,zY,3,1,\"button\",5),Ro(8,\"mat-menu\",null,6),Do(10,VY,2,1,\"button\",7),Ho(),Do(11,WY,3,1,\"button\",5),Ro(12,\"mat-menu\",null,8),Do(14,UY,3,0,\"button\",9),Do(15,$Y,3,0,\"button\",9),Ro(16,\"button\",10),Uo(\"click\",(function(){return t.toggleUnreadOnly()})),Ro(17,\"span\"),Sa(18,\"Unread only\"),Ho(),Ho(),Do(19,BY,3,0,\"button\",9),Ho()),2&e&&(Po(\"ngIf\",t.showsArticle||t.inSearch),ys(1),Po(\"ngIf\",!t.searchEntry),ys(1),Po(\"ngIf\",!t.searchEntry),ys(1),Po(\"ngIf\",t.searchEntry),ys(1),Po(\"ngIf\",t.searchButton),ys(1),Po(\"ngIf\",!t.showsArticle),ys(1),Po(\"ngIf\",t.showsArticle),ys(1),Po(\"ngIf\",t.showsArticle&&t.enabledShares),ys(3),Po(\"ngForOf\",t.shareServices),ys(1),Po(\"ngIf\",!t.showsArticle),ys(3),Po(\"ngIf\",!t.olderFirst),ys(1),Po(\"ngIf\",t.olderFirst),ys(4),Po(\"ngIf\",!t.inSearch&&t.markAllRead))},directives:[mu,HM,uu,EM,Gy,Cw,gM,_h,kh,Cm,bb,zM],styles:[\"[_nghost-%COMP%]{display:flex;align-items:center}.spacer[_ngcontent-%COMP%], [_nghost-%COMP%]{flex:1 1 auto}.search[_ngcontent-%COMP%]{min-height:0;border:none;background:transparent} label{margin-bottom:0}\"]}),e})(),GY=(()=>{class e{ngOnInit(){}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-container\"]],decls:2,vars:0,consts:[[1,\"container\"]],template:function(e,t){1&e&&(Ro(0,\"div\",0),jo(1,\"router-outlet\"),Ho())},directives:[mT],styles:[\"[_nghost-%COMP%]{overflow:auto}\"]}),e})(),JY=(()=>{class e{constructor(e){this.api=e,this.user=this.api.get(\"user/current\").pipe(H(e=>e.user),nv(1))}getCurrentUser(){return this.user}changeUserPassword(e,t){return this.setUserSetting(\"password\",e,{current:t})}setUserSetting(e,t,n){var i=`value=${encodeURIComponent(t)}`;if(n)for(let s in n)i+=`&${s}=${encodeURIComponent(n[s])}`;return this.api.put(`user/settings/${e}`,i,new Iu({\"Content-Type\":\"application/x-www-form-urlencoded\"})).pipe(H(e=>e.success))}list(){return this.api.get(\"user\").pipe(H(e=>e.users))}addUser(e,t){var n=new FormData;return n.append(\"login\",e),n.append(\"password\",t),this.api.post(\"user\",n).pipe(H(e=>e.success))}deleteUser(e){return this.api.delete(`user/${e}`).pipe(H(e=>e.success))}toggleActive(e,t){return this.api.put(`user/${e}/settings/is-active`,`value=${t}`,new Iu({\"Content-Type\":\"application/x-www-form-urlencoded\"})).pipe(H(e=>e.success))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();var KY;KY=\"\\u041F\\u0435\\u0440\\u0441\\u043E\\u043D\\u0430\\u043B\\u0438\\u0437\\u0438\\u0440\\u0430\\u043D\\u0435\";const ZY=[\"placeholder\",\"\\u041F\\u044A\\u0440\\u0432\\u043E \\u0438\\u043C\\u0435\"],QY=[\"placeholder\",\"\\u041F\\u043E\\u0441\\u043B\\u0435\\u0434\\u043D\\u043E \\u0438\\u043C\\u0435\"],XY=[\"placeholder\",\"\\u041F\\u043E\\u0449\\u0430\"],eE=[\"placeholder\",\"\\u0415\\u0437\\u0438\\u043A\"];var tE,nE,iE;function sE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,nE),Ho())}tE=\"\\u041F\\u0440\\u043E\\u043C\\u044F\\u043D\\u0430 \\u043D\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\",nE=\"\\u041C\\u043E\\u043B\\u044F \\u0432\\u044A\\u0432\\u0435\\u0434\\u0435\\u0442\\u0435 \\u043F\\u0440\\u0430\\u0432\\u0438\\u043B\\u0435\\u043D \\u0430\\u0434\\u0440\\u0435\\u0441 \\u043D\\u0430 \\u043F\\u043E\\u0449\\u0430\",iE=\"\\u041F\\u0440\\u043E\\u043C\\u0435\\u043D\\u0435\\u0442\\u0435 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\\u0442\\u0430\";const rE=[\"placeholder\",\"\\u041D\\u043E\\u0432\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\"],oE=[\"placeholder\",\"\\u041F\\u043E\\u0442\\u0432\\u044A\\u0440\\u0436\\u0434\\u0430\\u0432\\u0430\\u043D\\u0435 \\u043D\\u043E\\u0432\\u0430\\u0442\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\"];var aE,lE,cE;function dE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,lE),Ho())}function uE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,cE),Ho())}aE=\"\\u0417\\u0430\\u043F\\u0438\\u0441\\u0432\\u0430\\u043D\\u0435\",lE=\"\\u041D\\u0435\\u0432\\u0430\\u043B\\u0438\\u0434\\u043D\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\",cE=\"\\u041F\\u0430\\u0440\\u043E\\u043B\\u0438\\u0442\\u0435 \\u043D\\u0435 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\\u0442\";let hE=(()=>{class e{constructor(e,t){this.userService=e,this.dialog=t,this.emailFormControl=new pm(\"\",[Dh.email]),this.language=localStorage.getItem(\"locale\")||\"en\"}ngOnInit(){this.userService.getCurrentUser().subscribe(e=>{this.firstName=e.firstName,this.lastName=e.lastName,this.emailFormControl.setValue(e.email)},e=>console.log(e))}firstNameChange(){this.userService.setUserSetting(\"first-name\",this.firstName).subscribe(()=>{},e=>console.log(e))}lastNameChange(){this.userService.setUserSetting(\"last-name\",this.lastName).subscribe(()=>{},e=>console.log(e))}emailChange(){this.emailFormControl.updateValueAndValidity(),this.emailFormControl.valid&&this.userService.setUserSetting(\"email\",this.emailFormControl.value).subscribe(e=>{e||this.emailFormControl.setErrors({email:!0})},e=>console.log(e))}languageChange(e){location.href=\"/\"+e+\"/\"}changePassword(){this.dialog.open(mE,{width:\"250px\"})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(JY),Eo(rw))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-general\"]],decls:26,vars:7,consts:[[1,\"title\"],[\"matInput\",\"\",3,\"ngModel\",\"ngModelChange\",\"change\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"email\",3,\"formControl\",\"change\",6,\"placeholder\"],[4,\"ngIf\"],[3,\"ngModel\",\"change\",\"ngModelChange\",6,\"placeholder\"],[3,\"value\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,KY),Ho(),Ro(2,\"mat-form-field\"),Ro(3,\"input\",1),nc(4,ZY),Uo(\"ngModelChange\",(function(e){return t.firstName=e}))(\"change\",(function(){return t.firstNameChange()})),Ho(),Ho(),jo(5,\"br\"),Ro(6,\"mat-form-field\"),Ro(7,\"input\",1),nc(8,QY),Uo(\"ngModelChange\",(function(e){return t.lastName=e}))(\"change\",(function(){return t.lastNameChange()})),Ho(),Ho(),jo(9,\"br\"),Ro(10,\"mat-form-field\"),Ro(11,\"input\",2),nc(12,XY),Uo(\"change\",(function(){return t.emailChange()})),Ho(),Do(13,sE,2,0,\"mat-error\",3),Ho(),jo(14,\"br\"),Ro(15,\"mat-form-field\"),Ro(16,\"mat-select\",4),nc(17,eE),Uo(\"change\",(function(e){return t.languageChange(e.value)}))(\"ngModelChange\",(function(e){return t.language=e})),Ro(18,\"mat-option\",5),Sa(19,\"English\"),Ho(),Ro(20,\"mat-option\",5),Sa(21,\"\\u0411\\u044a\\u043b\\u0433\\u0430\\u0440\\u0441\\u043a\\u0438\"),Ho(),Ho(),Ho(),jo(22,\"br\"),Ro(23,\"div\",6),Ro(24,\"button\",7),Uo(\"click\",(function(){return t.changePassword()})),tc(25,tE),Ho(),Ho()),2&e&&(ys(3),Po(\"ngModel\",t.firstName),ys(4),Po(\"ngModel\",t.lastName),ys(4),Po(\"formControl\",t.emailFormControl),ys(2),Po(\"ngIf\",t.emailFormControl.hasError(\"email\")),ys(3),Po(\"ngModel\",t.language),ys(2),Po(\"value\",\"en\"),ys(2),Po(\"value\",\"bg\"))},directives:[dM,gM,_h,kh,Cm,Em,mu,_k,Fy,Gy,Kw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),e})(),mE=(()=>{class e{constructor(e,t){this.dialogRef=e,this.userService=t,this.currentFormControl=new pm(\"\",[Dh.required]),this.passwordFormControl=new pm(\"\",[Dh.required])}save(){this.passwordFormControl.value==this.passwordConfirm?(this.currentFormControl.updateValueAndValidity(),this.currentFormControl.valid&&this.userService.changeUserPassword(this.passwordFormControl.value,this.currentFormControl.value).subscribe(e=>{e?this.close():this.currentFormControl.setErrors({auth:!0})},e=>{400!=e.status?console.log(e):this.currentFormControl.setErrors({auth:!0})})):this.passwordFormControl.setErrors({mismatch:!0})}close(){this.dialogRef.close()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ew),Eo(JY))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:18,vars:5,consts:[[1,\"title\"],[\"matInput\",\"\",\"type\",\"password\",\"placeholder\",\"Current password\",\"required\",\"\",3,\"formControl\"],[4,\"ngIf\"],[\"matInput\",\"\",\"type\",\"password\",\"required\",\"\",3,\"formControl\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"password\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h6\",0),tc(1,iE),Ho(),Ro(2,\"mat-form-field\"),jo(3,\"input\",1),Do(4,dE,2,0,\"mat-error\",2),Ho(),jo(5,\"br\"),Ro(6,\"mat-form-field\"),Ro(7,\"input\",3),nc(8,rE),Ho(),Do(9,uE,2,0,\"mat-error\",2),Ho(),jo(10,\"br\"),Ro(11,\"mat-form-field\"),Ro(12,\"input\",4),nc(13,oE),Uo(\"ngModelChange\",(function(e){return t.passwordConfirm=e})),Ho(),Ho(),jo(14,\"br\"),Ro(15,\"div\",5),Ro(16,\"button\",6),Uo(\"click\",(function(){return t.save()})),tc(17,aE),Ho(),Ho()),2&e&&(ys(3),Po(\"formControl\",t.currentFormControl),ys(1),Po(\"ngIf\",t.currentFormControl.hasError(\"auth\")),ys(3),Po(\"formControl\",t.passwordFormControl),ys(2),Po(\"ngIf\",t.passwordFormControl.hasError(\"mismatch\")),ys(3),Po(\"ngModel\",t.passwordConfirm))},directives:[dM,gM,_h,Vm,kh,Em,mu,Cm,Gy,Kw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),e})();const pE=[\"opmlInput\"];var fE,_E;fE=\"\\u041E\\u0442\\u043A\\u0440\\u0438\\u0432\\u0430\\u043D\\u0435/\\u0438\\u043C\\u043F\\u043E\\u0440\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435 \\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",_E=\" You can enter the url of a feed directly, as well as a url of a site that may contain one or more feeds, or a search query. \";const gE=[\"placeholder\",\"\\u0410\\u0434\\u0440\\u0435\\u0441/\\u043A\\u043B\\u044E\\u0447\\u043E\\u0432\\u0438 \\u0434\\u0443\\u043C\\u0438\"];var yE;yE=\"\\u041C\\u043E\\u0436\\u0435 \\u0434\\u0430 \\u0441\\u0435 \\u043A\\u0430\\u0447\\u0438 \\u0438 OPML \\u0444\\u0430\\u0439\\u043B.\";const bE=[\"placeholder\",\"\\u0418\\u043C\\u043F\\u043E\\u0440\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435 \\u043D\\u0430 OPML\"];var vE,wE,ME,kE,SE,LE,xE,CE,TE,DE;function YE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,wE),Ho())}function EE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,ME),Ho())}function OE(e,t){1&e&&jo(0,\"mat-progress-bar\",7)}function IE(e,t){if(1&e){const e=zo();Ro(0,\"div\"),Ro(1,\"p\"),tc(2,_E),Ho(),Ro(3,\"mat-form-field\"),Ro(4,\"input\",2),nc(5,gE),Uo(\"ngModelChange\",(function(t){return en(e),Jo().query=t}))(\"keydown.Enter\",(function(){return en(e),Jo().search()})),Ho(),Do(6,YE,2,0,\"mat-error\",1),Do(7,EE,2,0,\"mat-error\",1),Ho(),jo(8,\"br\"),Ro(9,\"p\"),tc(10,yE),Ho(),Ro(11,\"input\",3,4),nc(13,bE),Uo(\"keydown.Enter\",(function(){return en(e),Jo().search()})),Ho(),jo(14,\"br\"),Ro(15,\"button\",5),Uo(\"click\",(function(){return en(e),Jo().search()})),tc(16,vE),Ho(),jo(17,\"br\"),Do(18,OE,1,0,\"mat-progress-bar\",6),Ho()}if(2&e){const e=Jo();ys(4),Po(\"ngModel\",e.query),ys(2),Po(\"ngIf\",e.queryFormControl.hasError(\"empty\")),ys(1),Po(\"ngIf\",e.queryFormControl.hasError(\"search\")),ys(8),Po(\"disabled\",e.loading),ys(3),Po(\"ngIf\",e.loading)}}function PE(e,t){1&e&&(Ro(0,\"p\"),tc(1,kE),Ho())}function AE(e,t){if(1&e&&(Ro(0,\"div\"),Ro(1,\"mat-checkbox\"),Sa(2),Ho(),jo(3,\"br\"),Ro(4,\"a\",11),Sa(5),Ho(),jo(6,\"hr\"),Ho()),2&e){const e=t.$implicit,n=Jo(2);ys(2),La(e.title),ys(2),ta(\"href\",n.baseURL(e.link),es),ys(1),La(e.description||e.title)}}function RE(e,t){1&e&&(Ro(0,\"p\"),Sa(1,\" No feeds selected \"),Ho())}function HE(e,t){if(1&e){const e=zo();Ro(0,\"button\",5),Uo(\"click\",(function(){return en(e),Jo(2).add()})),tc(1,SE),Ho()}2&e&&Po(\"disabled\",Jo(2).loading)}function jE(e,t){if(1&e){const e=zo();Ro(0,\"button\",12),Uo(\"click\",(function(){return en(e),Jo(2).phase=\"query\"})),tc(1,LE),Ho()}}function FE(e,t){if(1&e&&(Ro(0,\"div\"),Do(1,PE,2,0,\"p\",1),Do(2,AE,7,3,\"div\",8),Do(3,RE,2,0,\"p\",1),Do(4,HE,2,1,\"button\",9),Do(5,jE,2,0,\"button\",10),Ho()),2&e){const e=Jo();ys(1),Po(\"ngIf\",0==e.feeds.length),ys(1),Po(\"ngForOf\",e.feeds),ys(1),Po(\"ngIf\",e.emptySelection),ys(1),Po(\"ngIf\",e.feeds.length>0),ys(1),Po(\"ngIf\",0==e.feeds.length)}}function NE(e,t){1&e&&(Ro(0,\"p\"),tc(1,CE),Ho())}function zE(e,t){1&e&&(Ro(0,\"p\"),tc(1,TE),Ho())}function VE(e,t){if(1&e&&(Ro(0,\"div\"),Ro(1,\"p\"),tc(2,DE),Ho(),Ho()),2&e){const e=t.$implicit;ys(2),rc(e.title)(e.error),oc(2)}}function WE(e,t){if(1&e){const e=zo();Ro(0,\"div\"),Do(1,NE,2,0,\"p\",1),Do(2,zE,2,0,\"p\",1),Do(3,VE,3,2,\"div\",8),Ro(4,\"button\",12),Uo(\"click\",(function(){return en(e),Jo().phase=\"query\"})),tc(5,xE),Ho(),Ho()}if(2&e){const e=Jo();ys(1),Po(\"ngIf\",!e.addFeedResult.success),ys(1),Po(\"ngIf\",e.addFeedResult.success),ys(1),Po(\"ngForOf\",e.addFeedResult.errors)}}vE=\"\\u0422\\u044A\\u0440\\u0441\\u0435\\u043D\\u0435\",wE=\"\\u041D\\u0435 \\u0441\\u0430 \\u0437\\u0430\\u0434\\u0430\\u0434\\u0435\\u043D\\u0438 \\u043A\\u043B\\u044E\\u0447\\u043E\\u0432\\u0438 \\u0434\\u0443\\u043C\\u0438 \\u0438\\u043B\\u0438 \\u0444\\u0430\\u0439\\u043B\",ME=\"\\u0413\\u0440\\u0435\\u0448\\u043A\\u0430 \\u043F\\u0440\\u0438 \\u0442\\u044A\\u0440\\u0441\\u0435\\u043D\\u0435\",kE=\"\\u041D\\u044F\\u043C\\u0430 \\u043D\\u0430\\u043C\\u0435\\u0440\\u0435\\u043D\\u0438 \\u043D\\u043E\\u0432\\u0438 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",SE=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435\",LE=\"\\u041E\\u0442\\u043A\\u0440\\u0438\\u0432\\u0430\\u043D\\u0435 \\u043D\\u0430 \\u043E\\u0449\\u0435 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",xE=\"\\u041E\\u0442\\u043A\\u0440\\u0438\\u0432\\u0430\\u043D\\u0435 \\u043D\\u0430 \\u043E\\u0449\\u0435 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",CE=\"\\u041D\\u044F\\u043C\\u0430 \\u0434\\u043E\\u0431\\u0430\\u0432\\u0435\\u043D\\u0438 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",TE=\"\\u0415\\u043C\\u0438\\u0441\\u0438\\u0438\\u0442\\u0435 \\u0441\\u0430 \\u0434\\u043E\\u0431\\u0430\\u0432\\u0435\\u043D\\u0438 \\u0443\\u0441\\u043F\\u0435\\u0448\\u043D\\u043E.\",DE=\"\\n \\u0413\\u0440\\u0435\\u0448\\u043A\\u0430 \\u043F\\u0440\\u0438 \\u0434\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435 \\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u044F \" + \"\\ufffd0\\ufffd\" + \": \" + \"\\ufffd1\\ufffd\" + \"\\n \";let UE=(()=>{class e{constructor(e){this.feedService=e,this.query=\"\",this.phase=\"query\",this.loading=!1,this.feeds=new Array,this.emptySelection=!1,this.queryFormControl=new pm(\"\")}search(){if(this.loading)return;if(\"\"==this.query&&!this.opml.nativeElement.files.length)return void this.queryFormControl.setErrors({empty:!0});let e;if(this.loading=!0,this.opml.nativeElement.files.length){let t=this.opml.nativeElement.files[0];e=v.create(e=>{let n=new FileReader;n.onload=function(t){e.next({opml:t.target.result,dryRun:!0}),e.complete()},n.onerror=function(t){e.error(t)},n.readAsText(t)}).pipe(V(e=>this.feedService.importOPML(e)))}else e=this.feedService.discover(this.query);e.subscribe(e=>{this.loading=!1,this.phase=\"search-result\",this.feeds=e},e=>{this.loading=!1,this.queryFormControl.setErrors({search:!0}),console.log(e)})}add(){if(this.loading)return;let e=new Array;this.feedChecks.forEach((t,n)=>{t.checked&&e.push(this.feeds[n].link)}),0!=e.length?(this.loading=!0,this.feedService.addFeeds(e).subscribe(e=>{this.loading=!1,this.addFeedResult=e,this.phase=\"add-result\"},e=>{this.loading=!1,console.log(e)})):this.emptySelection=!0}baseURL(e){let t=document.createElement(\"a\");return t.href=e,t.pathname=\"\",t.href}}return e.\\u0275fac=function(t){return new(t||e)(Eo(DD))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-discovery\"]],viewQuery:function(e,t){var n;1&e&&(Ec(pE,!0),Ec(bb,!0)),2&e&&(Dc(n=Rc())&&(t.opml=n.first),Dc(n=Rc())&&(t.feedChecks=n))},decls:5,vars:3,consts:[[1,\"title\"],[4,\"ngIf\"],[\"matInput\",\"\",3,\"ngModel\",\"ngModelChange\",\"keydown.Enter\",6,\"placeholder\"],[\"type\",\"file\",\"accept\",\".opml\",3,\"keydown.Enter\",6,\"placeholder\"],[\"opmlInput\",\"\"],[\"mat-raised-button\",\"\",3,\"disabled\",\"click\"],[\"mode\",\"indeterminate\",4,\"ngIf\"],[\"mode\",\"indeterminate\"],[4,\"ngFor\",\"ngForOf\"],[\"mat-raised-button\",\"\",3,\"disabled\",\"click\",4,\"ngIf\"],[\"mat-raised-button\",\"\",3,\"click\",4,\"ngIf\"],[1,\"discovery-link\",3,\"href\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,fE),Ho(),Do(2,IE,19,5,\"div\",1),Do(3,FE,6,5,\"div\",1),Do(4,WE,6,3,\"div\",1)),2&e&&(ys(2),Po(\"ngIf\",\"query\"==t.phase),ys(1),Po(\"ngIf\",\"search-result\"==t.phase),ys(1),Po(\"ngIf\",\"add-result\"==t.phase))},directives:[mu,dM,gM,_h,kh,Cm,Gy,Kw,JM,uu,bb],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}input[type=file][_ngcontent-%COMP%]{width:100%;border-bottom:1px solid grey;padding-bottom:4px;margin-bottom:1em}mat-progress-bar[_ngcontent-%COMP%]{margin-top:1em}.discovery-link[_ngcontent-%COMP%]{display:block;text-align:end}\"]}),e})();const $E=[\"downloader\"];var BE,qE;function GE(e,t){1&e&&(Ro(0,\"p\",7),Sa(1,\" No feeds have been added\\n\"),Ho())}BE=\"\\u0423\\u043F\\u0440\\u0430\\u0432\\u043B\\u0435\\u043D\\u0438\\u0435 \\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",qE=\"\\u0415\\u043A\\u0441\\u043F\\u043E\\u0440\\u0442 \\u0432 OPML \\u0444\\u043E\\u0440\\u043C\\u0430\\u0442\";const JE=[\"placeholder\",\"\\u0422\\u0430\\u0433\\u043E\\u0432\\u0435\"];function KE(e,t){if(1&e){const e=zo();Ro(0,\"div\",8),jo(1,\"img\",9),Ro(2,\"a\",10),Sa(3),Ho(),Ro(4,\"button\",11),Uo(\"click\",(function(){en(e);const n=t.$implicit;return Jo().showError(n[0].updateError)})),Ro(5,\"mat-icon\"),Sa(6,\"warning\"),Ho(),Ho(),Ro(7,\"mat-form-field\",12),Ro(8,\"input\",13),nc(9,JE),Uo(\"change\",(function(n){en(e);const i=t.$implicit;return Jo().tagsChange(n,i[0].id)})),Ho(),Ho(),Ro(10,\"button\",14),Uo(\"click\",(function(n){en(e);const i=t.$implicit;return Jo().deleteFeed(n,i[0].id)})),Ro(11,\"mat-icon\"),Sa(12,\"delete\"),Ho(),Ho(),Ho()}if(2&e){const e=t.$implicit,n=Jo();ys(1),ta(\"src\",n.favicon(e[0].link),es),ys(1),ta(\"href\",e[0].link,es),ys(1),La(e[0].title),ys(1),ua(\"visible\",e[0].updateError),ys(4),ta(\"value\",e[1].join(\", \"))}}var ZE;function QE(e,t){if(1&e&&(Ro(0,\"li\"),Sa(1),Ho()),2&e){const e=t.$implicit;ys(1),La(e)}}ZE=\"\\u0417\\u0430\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\";let XE=(()=>{class e{constructor(e,t,n,i){this.feedService=e,this.tagService=t,this.faviconService=n,this.errorDialog=i,this.feeds=new Array}ngOnInit(){this.feedService.getFeeds().pipe(dD(this.tagService.getTagsFeedIDs(),(e,t)=>{let n=new Map;for(let i of t)for(let e of i.ids)n.has(e)?n.get(e).push(i.tag.value):n.set(e,[i.tag.value]);return e.map(e=>[e,n.get(e.id)||[]])})).subscribe(e=>this.feeds=e||[],e=>console.log(e))}favicon(e){return this.faviconService.iconURL(e)}tagsChange(e,t){this.feedService.updateTags(t,e.target.value.split(\",\").map(e=>e.trim())).subscribe(e=>{},e=>console.log(e))}showError(e){this.errorDialog.open(eO,{width:\"300px\",data:e.split(\"\\n\").filter(e=>e)})}deleteFeed(e,t){this.feedService.deleteFeed(t).subscribe(t=>{if(t){let t=e.target.parentNode;for(;(t=t.parentElement)&&!t.classList.contains(\"feed\"););t.parentNode.removeChild(t)}},e=>console.log(e))}exportOPML(){this.feedService.exportOPML().subscribe(e=>{this.downloader.nativeElement.href=\"data:text/x-opml+xml,\"+encodeURIComponent(e),this.downloader.nativeElement.click()},e=>console.log(e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(DD),Eo(YD),Eo(uY),Eo(rw))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-management\"]],viewQuery:function(e,t){var n;1&e&&Ec($E,!0,Ka),2&e&&Dc(n=Rc())&&(t.downloader=n.first)},decls:9,vars:2,consts:[[1,\"title\"],[\"u18n\",\"\",4,\"ngIf\"],[\"class\",\"feed\",4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"hidden\",\"\",\"download\",\"feeds.opml\"],[\"downloader\",\"\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"u18n\",\"\"],[1,\"feed\"],[1,\"favicon\",3,\"src\"],[1,\"name\",3,\"href\"],[\"mat-icon-button\",\"\",1,\"error\",3,\"click\"],[1,\"tags\"],[\"matInput\",\"\",3,\"value\",\"change\",6,\"placeholder\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,BE),Ho(),Do(2,GE,2,0,\"p\",1),Do(3,KE,13,6,\"div\",2),Ro(4,\"div\",3),jo(5,\"a\",4,5),Ro(7,\"button\",6),Uo(\"click\",(function(){return t.exportOPML()})),tc(8,qE),Ho(),Ho()),2&e&&(ys(2),Po(\"ngIf\",0==t.feeds.length),ys(1),Po(\"ngForOf\",t.feeds))},directives:[mu,uu,Gy,Cw,dM,gM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".feed[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.favicon[_ngcontent-%COMP%]{width:16px;height:16px;margin-right:5px;flex-shrink:1}.name[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{flex:1 0 0;min-width:250px}.tags[_ngcontent-%COMP%]{width:auto}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}\"]}),e})(),eO=(()=>{class e{constructor(e,t){this.dialogRef=e,this.errors=t}close(){this.dialogRef.close()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ew),Eo(tw))},e.\\u0275cmp=yt({type:e,selectors:[[\"error-dialog\"]],decls:5,vars:1,consts:[[2,\"max-height\",\"85vh\",\"overflow\",\"auto\"],[4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"ul\",0),Do(1,QE,2,1,\"li\",1),Ho(),Ro(2,\"div\",2),Ro(3,\"button\",3),Uo(\"click\",(function(){return t.close()})),tc(4,ZE),Ho(),Ho()),2&e&&(ys(1),Po(\"ngForOf\",t.errors))},directives:[uu,Gy],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".feed[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.favicon[_ngcontent-%COMP%]{width:16px;height:16px;margin-right:5px;flex-shrink:1}.name[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{flex:1 0 0;min-width:250px}.tags[_ngcontent-%COMP%]{width:auto}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}\"]}),e})();var tO,nO,iO,sO,rO,oO,aO,lO,cO,dO,uO,hO,mO,pO;function fO(e,t){1&e&&(Ro(0,\"p\"),tc(1,iO),Ho())}function _O(e,t){1&e&&(Ro(0,\"span\"),tc(1,rO),Ho())}function gO(e,t){1&e&&(Ro(0,\"span\"),tc(1,oO),Ho())}function yO(e,t){if(1&e&&(Ro(0,\"span\"),Do(1,_O,2,0,\"span\",1),Do(2,gO,2,0,\"span\",1),Ro(3,\"span\",13),Sa(4),Ho(),Ro(5,\"span\",14),tc(6,sO),Ho(),Ho()),2&e){const e=Jo().$implicit;ys(1),Po(\"ngIf\",!e.inverseURL),ys(1),Po(\"ngIf\",e.inverseURL),ys(2),La(e.urlTerm)}}function bO(e,t){1&e&&(Ro(0,\"span\",15),Sa(1,\" and \"),Ho())}function vO(e,t){1&e&&(Ro(0,\"span\"),tc(1,lO),Ho())}function wO(e,t){1&e&&(Ro(0,\"span\"),tc(1,cO),Ho())}function MO(e,t){if(1&e&&(Ro(0,\"span\"),Do(1,vO,2,0,\"span\",1),Do(2,wO,2,0,\"span\",1),Ro(3,\"span\",13),Sa(4),Ho(),Ro(5,\"span\",16),tc(6,aO),Ho(),Ho()),2&e){const e=Jo().$implicit;ys(1),Po(\"ngIf\",!e.inverseTitle),ys(1),Po(\"ngIf\",e.inverseTitle),ys(2),La(e.titleTerm)}}function kO(e,t){1&e&&(Ro(0,\"span\",17),tc(1,dO),Ho())}function SO(e,t){1&e&&(Ro(0,\"span\",18),tc(1,uO),Ho())}function LO(e,t){1&e&&(Ro(0,\"span\",17),tc(1,hO),Ho())}function xO(e,t){1&e&&(Ro(0,\"span\",18),tc(1,mO),Ho())}function CO(e,t){if(1&e&&(Ro(0,\"span\",19),Sa(1),Ho()),2&e){const e=Jo().$implicit,t=Jo();ys(1),La(t.tagLabel(e.tagID))}}function TO(e,t){if(1&e&&(Ro(0,\"span\",20),Sa(1),Ho()),2&e){const e=Jo().$implicit,t=Jo();ys(1),La(t.feedsLabel(e.feedIDs))}}function DO(e,t){if(1&e){const e=zo();Ro(0,\"div\",5),Ro(1,\"div\",6),Do(2,yO,7,3,\"span\",1),Do(3,bO,2,0,\"span\",7),Do(4,MO,7,3,\"span\",1),Do(5,kO,2,0,\"span\",8),Do(6,SO,2,0,\"span\",9),Do(7,LO,2,0,\"span\",8),Do(8,xO,2,0,\"span\",9),Do(9,CO,2,1,\"span\",10),Do(10,TO,2,1,\"span\",11),Ho(),Ro(11,\"button\",12),Uo(\"click\",(function(n){en(e);const i=t.$implicit;return Jo().deleteFilter(n,i)})),Ro(12,\"mat-icon\"),Sa(13,\"delete\"),Ho(),Ho(),Ho()}if(2&e){const e=t.$implicit;ys(2),Po(\"ngIf\",e.urlTerm),ys(1),Po(\"ngIf\",e.urlTerm&&e.titleTerm),ys(1),Po(\"ngIf\",e.titleTerm),ys(1),Po(\"ngIf\",e.inverseFeeds&&e.tagID),ys(1),Po(\"ngIf\",e.inverseFeeds&&e.feedIDs&&!e.tagID),ys(1),Po(\"ngIf\",e.tagID),ys(1),Po(\"ngIf\",e.feedIDs&&!e.tagID),ys(1),Po(\"ngIf\",e.tagID),ys(1),Po(\"ngIf\",e.feedIDs)}}tO=\"\\u0423\\u043F\\u0440\\u0430\\u0432\\u043B\\u0435\\u043D\\u0438\\u0435 \\u043D\\u0430 \\u0444\\u0438\\u043B\\u0442\\u0440\\u0438\",nO=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435 \\u043D\\u0430 \\u0444\\u0438\\u043B\\u0442\\u044A\\u0440\",iO=\"\\u041D\\u044F\\u043C\\u0430 \\u0434\\u0435\\u0444\\u0438\\u043D\\u0438\\u0440\\u0430\\u043D\\u0438 \\u0444\\u0438\\u043B\\u0442\\u0440\\u0438\",sO=\"\\u043F\\u043E URL\",rO=\"\\u0421\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\",oO=\"\\u041D\\u0435 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\",aO=\"\\u043F\\u043E \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\",lO=\"\\u0421\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\",cO=\"\\u041D\\u0435 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\",dO=\"\\u0431\\u0435\\u0437 \\u0442\\u0430\\u0433:\",uO=\"\\u0431\\u0435\\u0437 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438:\",hO=\"\\u043D\\u0430 \\u0442\\u0430\\u0433:\",mO=\"\\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438:\",pO=\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u0440\\u0438\\u0442\\u0435 \\u043C\\u043E\\u0433\\u0430\\u0442 \\u0434\\u0430 \\u0431\\u044A\\u0434\\u0430\\u0442 \\u043F\\u0440\\u0438\\u043B\\u043E\\u0436\\u0435\\u043D\\u0438 \\u043A\\u044A\\u043C \\u0430\\u0434\\u0440\\u0435\\u0441\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u044F\\u0442\\u0430 \\u043D\\u0430 \\u0441\\u0442\\u0430\\u0442\\u0438\\u0438\\u0442\\u0435. \\u041F\\u043E\\u043D\\u0435 \\u0435\\u0434\\u043D\\u0430 \\u0446\\u0435\\u043B \\u0442\\u0440\\u044F\\u0431\\u0432\\u0430 \\u0434\\u0430 \\u0431\\u044A\\u0434\\u0435 \\u0437\\u0430\\u0434\\u0430\\u0434\\u0435\\u043D\\u0430:\\n\\t\\t\";const YO=[\"placeholder\",\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u0440\\u0438\\u0440\\u0430\\u043D\\u0435 \\u043F\\u043E \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\\n\\t\\t\"];var EO;EO=\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u044A\\u0440\\u044A\\u0442 \\u0435 \\u0430\\u043A\\u0442\\u0438\\u0432\\u0435\\u043D \\u0430\\u043A\\u043E \\u0442\\u0435\\u043A\\u0441\\u0442\\u0430 \\u043D\\u0435 \\u0435 \\u0447\\u0430\\u0441\\u0442 \\u043E\\u0442 \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\\u0442\\u043E.\\n \";const OO=[\"placeholder\",\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u0440\\u0438\\u0440\\u0430\\u043D\\u0435 \\u043F\\u043E \\u0430\\u0434\\u0440\\u0435\\u0441\\n\\t\\t\"];var IO,PO,AO,RO,HO,jO,FO,NO;function zO(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,jO),Ho())}function VO(e,t){1&e&&(Ro(0,\"span\"),tc(1,FO),Ho())}function WO(e,t){1&e&&(Ro(0,\"span\"),tc(1,NO),Ho())}IO=\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u044A\\u0440\\u044A\\u0442 \\u0435 \\u0430\\u043A\\u0442\\u0438\\u0432\\u0435\\u043D \\u0430\\u043A\\u043E \\u0442\\u0435\\u043A\\u0441\\u0442\\u0430 \\u043D\\u0435 \\u0435 \\u0447\\u0430\\u0441\\u0442 \\u043E\\u0442 \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\\u0442\\u043E.\\n \",PO=\"\\u041D\\u0435\\u0437\\u0430\\u0434\\u044A\\u043B\\u0436\\u0438\\u0442\\u0435\\u043B\\u043D\\u0438 \\u043F\\u0430\\u0440\\u0430\\u043C\\u0435\\u0442\\u0440\\u0438\",AO=\"\\u0424\\u0438\\u043B\\u0442\\u044A\\u0440\\u044A\\u0442 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430 \\u0430\\u043A\\u043E \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\\u0442\\u043E \\u043D\\u0435 \\u0435 \\u043E\\u0442 \\u0438\\u0437\\u0431\\u0440\\u0430\\u043D\\u0438\\u0442\\u0435 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438/\\u0442\\u0430\\u0433.\",RO=\"\\u0417\\u0430\\u043F\\u0438\\u0441\\u0432\\u0430\\u043D\\u0435\",HO=\"\\u0417\\u0430\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\",jO=\"\\u0424\\u0438\\u043B\\u0442\\u044A\\u0440\\u044A\\u0442 \\u0442\\u0440\\u044F\\u0431\\u0432\\u0430 \\u0434\\u0430 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430 \\u043F\\u043E\\u043D\\u0435 \\u0441 URL \\u0438\\u043B\\u0438 \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\",FO=\"\\u041B\\u0438\\u043C\\u0438\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435 \\u0434\\u043E \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",NO=\"\\u041B\\u0438\\u043C\\u0438\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435 \\u0434\\u043E \\u0442\\u0430\\u0433\";const UO=[\"placeholder\",\"\\u0415\\u043C\\u0438\\u0441\\u0438\\u0438\"];function $O(e,t){if(1&e&&(Ro(0,\"mat-option\",12),Sa(1),Ho()),2&e){const e=t.$implicit;Po(\"value\",e.id),ys(1),xa(\" \",e.title,\" \")}}function BO(e,t){if(1&e&&(Ro(0,\"mat-form-field\"),Ro(1,\"mat-select\",10),nc(2,UO),Do(3,$O,2,2,\"mat-option\",11),Ho(),Ho()),2&e){const e=Jo();ys(3),Po(\"ngForOf\",e.feeds)}}const qO=[\"placeholder\",\"\\u0422\\u0430\\u0433\"];function GO(e,t){if(1&e&&(Ro(0,\"mat-option\",12),Sa(1),Ho()),2&e){const e=t.$implicit;Po(\"value\",e.id),ys(1),xa(\" \",e.value,\" \")}}function JO(e,t){if(1&e&&(Ro(0,\"mat-form-field\"),Ro(1,\"mat-select\",13),nc(2,qO),Do(3,GO,2,2,\"mat-option\",11),Ho(),Ho()),2&e){const e=Jo();ys(3),Po(\"ngForOf\",e.tags)}}let KO=(()=>{class e{constructor(e,t,n,i){this.userService=e,this.feedService=t,this.tagService=n,this.dialog=i,this.filters=new Array}ngOnInit(){this.feedService.getFeeds().pipe(dD(this.tagService.getTags(),this.userService.getCurrentUser(),(e,t,n)=>[e,t,n])).subscribe(e=>{this.feeds=e[0],this.tags=e[1],this.filters=e[2].profileData.filters||[]},e=>console.log(e))}addFilter(){this.dialog.open(ZO,{width:\"350px\",data:{feeds:this.feeds,tags:this.tags}}).afterClosed().subscribe(e=>this.ngOnInit())}feedsLabel(e){let t=this.feeds.filter(t=>-1!=e.indexOf(t.id)).map(e=>e.title);return t.length?t.join(\", \"):`${e}`}tagLabel(e){let t=this.tags.filter(t=>t.id==e).map(e=>e.value);return t.length?t[0]:`${e}`}deleteFilter(e,t){this.userService.getCurrentUser().pipe(V(e=>{let n=e.profileData||new Map,i=n.filters||[],s=i.filter(e=>e.urlTerm!=t.urlTerm||e.inverseURL!=t.inverseURL||e.titleTerm!=t.titleTerm||e.inverseTitle!=t.inverseTitle||e.tagID!=t.tagID||e.feedIDs!=t.feedIDs||e.inverseFeeds!=t.inverseFeeds);return s.length==i.length?xu(!0):(n.filters=s,this.userService.setUserSetting(\"profile\",JSON.stringify(n)))})).subscribe(t=>{if(t){let t=e.target.parentNode;for(;(t=t.parentElement)&&!t.classList.contains(\"filter\"););t.parentNode.removeChild(t)}},e=>console.log(e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(JY),Eo(DD),Eo(YD),Eo(rw))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-filters\"]],decls:7,vars:2,consts:[[1,\"title\"],[4,\"ngIf\"],[\"class\",\"filter\",4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[1,\"filter\"],[1,\"info\"],[\"class\",\"url-and-title\",4,\"ngIf\"],[\"class\",\"match-tag\",4,\"ngIf\"],[\"class\",\"match-feeds\",4,\"ngIf\"],[\"class\",\"tag\",4,\"ngIf\"],[\"class\",\"feeds\",4,\"ngIf\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"],[1,\"term\"],[1,\"match-url\"],[1,\"url-and-title\"],[1,\"match-title\"],[1,\"match-tag\"],[1,\"match-feeds\"],[1,\"tag\"],[1,\"feeds\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,tO),Ho(),Do(2,fO,2,0,\"p\",1),Do(3,DO,14,9,\"div\",2),Ro(4,\"div\",3),Ro(5,\"button\",4),Uo(\"click\",(function(){return t.addFilter()})),tc(6,nO),Ho(),Ho()),2&e&&(ys(2),Po(\"ngIf\",0==t.filters.length),ys(1),Po(\"ngForOf\",t.filters))},directives:[mu,uu,Gy,Cw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".filter[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.filter[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{flex:1 0 0}.filter[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{padding-left:4px;padding-right:4px}.filter[_ngcontent-%COMP%] .feeds[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .tag[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .term[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;font-weight:700}.filter[_ngcontent-%COMP%] .url-and-title[_ngcontent-%COMP%]{font-style:italic}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}form[_ngcontent-%COMP%]{display:flex;flex-direction:column;margin-bottom:20px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{flex:1 0 auto}form[_ngcontent-%COMP%] mat-slide-toggle[_ngcontent-%COMP%]{align-self:center;flex:1 0 auto}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{font-size:14px}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%] .mat-checkbox-layout{white-space:normal}form[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{border-bottom:1px solid #ddd;margin-top:12px;margin-bottom:24px;font-size:13px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{width:100%}\"]}),e})(),ZO=(()=>{class e{constructor(e,t,n,i,s){this.dialogRef=e,this.userService=t,this.tagService=n,this.data=i,this.form=s.group({urlTerm:[\"\"],titleTerm:[\"\"],inverseURL:[!1],inverseTitle:[!1],useFeeds:[!0],feeds:[[]],tag:[],inverseFeeds:[!1]},{validator:e=>e.controls.urlTerm.value||e.controls.titleTerm.value?null:{nomatch:!0}}),this.feeds=i.feeds,this.tags=i.tags}save(){if(!this.form.valid)return;let e=this.form.value;this.userService.getCurrentUser().pipe(V(t=>{let n,i={urlTerm:e.urlTerm,inverseURL:e.inverseURL,titleTerm:e.titleTerm,inverseTitle:e.inverseTitle,inverseFeeds:e.inverseFeeds};return e.useFeeds?e.feeds&&e.feeds.length>0&&(i.feedIDs=e.feeds):e.tag&&(i.tagID=e.tag),n=i.tagID>0?this.tagService.getFeedIDs({id:i.tagID}).pipe(H(e=>(i.feedIDs=e,i))):xu(i),n.pipe(V(e=>{let n=t.profileData||new Map,i=n.filters||[];return i.push(e),n.filters=i,this.userService.setUserSetting(\"profile\",JSON.stringify(n))}))})).subscribe(e=>this.close(),e=>console.log(e))}close(){this.dialogRef.close()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ew),Eo(JY),Eo(YD),Eo(tw),Eo(Um))},e.\\u0275cmp=yt({type:e,selectors:[[\"new-filter-dialog\"]],decls:32,vars:6,consts:[[\"novalidate\",\"\",\"autocomplete\",\"off\",3,\"formGroup\",\"ngSubmit\"],[\"matInput\",\"\",\"formControlName\",\"titleTerm\",6,\"placeholder\"],[\"formControlName\",\"inverseTitle\"],[\"matInput\",\"\",\"formControlName\",\"urlTerm\",6,\"placeholder\"],[\"formControlName\",\"inverseURL\"],[4,\"ngIf\"],[\"formControlName\",\"useFeeds\"],[\"formControlName\",\"inverseFeeds\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"multiple\",\"\",\"formControlName\",\"feeds\",6,\"placeholder\"],[3,\"value\",4,\"ngFor\",\"ngForOf\"],[3,\"value\"],[\"formControlName\",\"tag\",6,\"placeholder\"]],template:function(e,t){1&e&&(Ro(0,\"div\"),Ro(1,\"form\",0),Uo(\"ngSubmit\",(function(){return t.save()})),Ro(2,\"p\"),tc(3,pO),Ho(),Ro(4,\"mat-form-field\"),Ro(5,\"input\",1),nc(6,YO),Ho(),Ho(),jo(7,\"br\"),Ro(8,\"mat-checkbox\",2),tc(9,EO),Ho(),Ro(10,\"mat-form-field\"),Ro(11,\"input\",3),nc(12,OO),Ho(),Ho(),jo(13,\"br\"),Ro(14,\"mat-checkbox\",4),tc(15,IO),Ho(),Do(16,zO,2,0,\"mat-error\",5),jo(17,\"br\"),Ro(18,\"p\"),tc(19,PO),Ho(),Ro(20,\"mat-slide-toggle\",6),Do(21,VO,2,0,\"span\",5),Do(22,WO,2,0,\"span\",5),Ho(),Do(23,BO,4,1,\"mat-form-field\",5),Do(24,JO,4,1,\"mat-form-field\",5),Ro(25,\"mat-checkbox\",7),tc(26,AO),Ho(),Ho(),Ho(),Ro(27,\"div\",8),Ro(28,\"button\",9),Uo(\"click\",(function(){return t.save()})),tc(29,RO),Ho(),Ro(30,\"button\",9),Uo(\"click\",(function(){return t.close()})),tc(31,HO),Ho(),Ho()),2&e&&(ys(1),Po(\"formGroup\",t.form),ys(15),Po(\"ngIf\",t.form.hasError(\"nomatch\")),ys(5),Po(\"ngIf\",t.form.value.useFeeds),ys(1),Po(\"ngIf\",!t.form.value.useFeeds),ys(1),Po(\"ngIf\",t.form.value.useFeeds),ys(1),Po(\"ngIf\",!t.form.value.useFeeds))},directives:[Tm,Sh,Im,dM,gM,_h,kh,Nm,bb,mu,Zk,Gy,Kw,_k,uu,Fy],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".filter[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.filter[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{flex:1 0 0}.filter[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{padding-left:4px;padding-right:4px}.filter[_ngcontent-%COMP%] .feeds[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .tag[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .term[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;font-weight:700}.filter[_ngcontent-%COMP%] .url-and-title[_ngcontent-%COMP%]{font-style:italic}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}form[_ngcontent-%COMP%]{display:flex;flex-direction:column;margin-bottom:20px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{flex:1 0 auto}form[_ngcontent-%COMP%] mat-slide-toggle[_ngcontent-%COMP%]{align-self:center;flex:1 0 auto}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{font-size:14px}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%] .mat-checkbox-layout{white-space:normal}form[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{border-bottom:1px solid #ddd;margin-top:12px;margin-bottom:24px;font-size:13px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{width:100%}\"]}),e})();var QO;function XO(e,t){if(1&e){const e=zo();Ro(0,\"div\",5),Ro(1,\"mat-slide-toggle\",6,7),Uo(\"change\",(function(){en(e);const n=t.$implicit,i=Yo(2);return Jo(2).toggleService(n[0].id,i.checked)})),Sa(3),Ho(),Ho()}if(2&e){const e=t.$implicit;ys(1),Po(\"checked\",e[1]),ys(2),La(e[0].description)}}function eI(e,t){if(1&e&&(Ro(0,\"mat-card\"),Ro(1,\"mat-card-header\"),Ro(2,\"mat-card-title\",3),Ro(3,\"h6\"),Sa(4),Ho(),Ho(),Ho(),Ro(5,\"mat-card-content\"),Do(6,XO,4,2,\"div\",4),Ho(),Ho()),2&e){const e=t.$implicit;ys(4),xa(\" \",e[0][0].category,\" \"),ys(2),Po(\"ngForOf\",e)}}QO=\"\\u041A\\u0430\\u043D\\u0430\\u043B\\u0438 \\u0437\\u0430 \\u0441\\u043F\\u043E\\u0434\\u0435\\u043B\\u044F\\u043D\\u0435\";let tI=(()=>{class e{constructor(e){this.sharingService=e}ngOnInit(){this.services=this.sharingService.groupedList()}toggleService(e,t){this.sharingService.toggle(e,t)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(uD))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-share-services\"]],decls:4,vars:1,consts:[[1,\"title\"],[1,\"cards-container\"],[4,\"ngFor\",\"ngForOf\"],[1,\"col\",\"title\"],[\"class\",\"service\",4,\"ngFor\",\"ngForOf\"],[1,\"service\"],[3,\"checked\",\"change\"],[\"toggle\",\"\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,QO),Ho(),Ro(2,\"div\",1),Do(3,eI,7,2,\"mat-card\",2),Ho()),2&e&&(ys(3),Po(\"ngForOf\",t.services))},directives:[uu,ob,ab,nb,tb,Zk],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".cards-container[_ngcontent-%COMP%]{display:flex;flex-direction:row;flex-wrap:wrap}mat-card[_ngcontent-%COMP%]{flex:1 0 0;margin:8px;min-width:250px}.service[_ngcontent-%COMP%]{margin-bottom:16px}\"]}),e})();var nI,iI,sI,rI,oI;function aI(e,t){if(1&e&&(Ro(0,\"p\"),tc(1,sI),Ho()),2&e){const e=Jo();ys(1),rc(e.current.login),oc(1)}}function lI(e,t){if(1&e){const e=zo();Ro(0,\"div\",5),Ro(1,\"mat-checkbox\",6,7),Uo(\"change\",(function(){en(e);const n=t.$implicit,i=Yo(2);return Jo(2).toggleActive(n.login,i.checked)}))(\"ngModelChange\",(function(n){return en(e),t.$implicit.active=n})),Sa(3),Ho(),Ro(4,\"button\",8),Uo(\"click\",(function(n){en(e);const i=t.$implicit;return Jo(2).deleteUser(n,i.login)})),Ro(5,\"mat-icon\"),Sa(6,\"delete\"),Ho(),Ho(),Ho()}if(2&e){const e=t.$implicit;ys(1),Po(\"ngModel\",e.active),ys(2),La(e.login)}}function cI(e,t){if(1&e&&(Ro(0,\"div\"),Ro(1,\"h6\"),tc(2,rI),Ho(),Do(3,lI,7,2,\"div\",4),Ho()),2&e){const e=Jo();ys(3),Po(\"ngForOf\",e.users)}}nI=\"\\u0423\\u043F\\u0440\\u0430\\u0432\\u043B\\u0435\\u043D\\u0438\\u0435 \\u043D\\u0430 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0438\",iI=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435 \\u043D\\u0430 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\",sI=\"\\n \\u0422\\u0435\\u043A\\u0443\\u0449 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B: \" + \"\\ufffd0\\ufffd\" + \"\\n\",rI=\"\\u0421\\u043F\\u0438\\u0441\\u044A\\u043A \\u0441 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0438:\",oI=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435 \\u043D\\u0430 \\u043D\\u043E\\u0432 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\";const dI=[\"placeholder\",\"\\u041F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0441\\u043A\\u043E \\u0438\\u043C\\u0435\"],uI=[\"placeholder\",\"\\u041F\\u0430\\u0440\\u043E\\u043B\\u0430\"];var hI,mI,pI;function fI(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,mI),Ho())}function _I(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,pI),Ho())}hI=\"\\u0417\\u0430\\u043F\\u0438\\u0441\\u0432\\u0430\\u043D\\u0435\",mI=\"\\n \\u041F\\u0440\\u0430\\u0437\\u043D\\u043E \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0441\\u043A\\u043E \\u0438\\u043C\\u0435\\n \",pI=\"\\n \\u041F\\u0440\\u0430\\u0437\\u043D\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\\n \";const gI=function(){return[\"login\"]},yI=function(){return[\"password\"]};let bI=(()=>{class e{constructor(e,t){this.userService=e,this.dialog=t,this.users=new Array,this.refresher=new L}ngOnInit(){this.refresher.pipe(Rf(null),Wb(e=>this.userService.list()),dD(this.userService.getCurrentUser(),(e,t)=>e.filter(e=>e.login!=t.login))).subscribe(e=>this.users=e,e=>console.log(e)),this.userService.getCurrentUser().subscribe(e=>this.current=e,e=>console.log(e))}toggleActive(e,t){this.userService.toggleActive(e,t).subscribe(e=>{},e=>console.log(e))}deleteUser(e,t){confirm(\"Are you sure you want to delete user \"+t)&&this.userService.deleteUser(t).subscribe(t=>{if(t){let t=e.target.parentNode;for(;(t=t.parentElement)&&!t.classList.contains(\"user\"););t.parentNode.removeChild(t)}},e=>console.log(e))}newUser(){this.dialog.open(vI,{width:\"250px\"}).afterClosed().subscribe(e=>this.refresher.next(null))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(JY),Eo(rw))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-admin\"]],decls:7,vars:2,consts:[[1,\"title\"],[4,\"ngIf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"class\",\"user\",4,\"ngFor\",\"ngForOf\"],[1,\"user\"],[3,\"ngModel\",\"change\",\"ngModelChange\"],[\"check\",\"\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,nI),Ho(),Do(2,aI,2,1,\"p\",1),Do(3,cI,4,1,\"div\",1),Ro(4,\"div\",2),Ro(5,\"button\",3),Uo(\"click\",(function(){return t.newUser()})),tc(6,iI),Ho(),Ho()),2&e&&(ys(2),Po(\"ngIf\",t.current),ys(1),Po(\"ngIf\",t.users.length))},directives:[mu,Gy,uu,bb,kh,Cm,Cw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".user[_ngcontent-%COMP%]{display:flex;align-items:center;border-bottom:1px solid #ccc;padding-bottom:4px;margin-bottom:4px}.user[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{flex:1 0 0}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),e})(),vI=(()=>{class e{constructor(e,t,n){this.dialogRef=e,this.userService=t,this.form=n.group({login:[\"\",Dh.required],password:[\"\",Dh.required]})}save(){if(!this.form.valid)return;let e=this.form.value;this.userService.addUser(e.login,e.password).subscribe(e=>{e&&this.close()},e=>console.log(e))}close(){this.dialogRef.close()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ew),Eo(JY),Eo(Um))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:16,vars:6,consts:[[1,\"title\"],[\"novalidate\",\"\",\"autocomplete\",\"off\",3,\"formGroup\",\"ngSubmit\"],[\"matInput\",\"\",\"formControlName\",\"login\",\"required\",\"\",6,\"placeholder\"],[4,\"ngIf\"],[\"matInput\",\"\",\"type\",\"password\",\"formControlName\",\"password\",\"required\",\"\",6,\"placeholder\"],[1,\"footer\"],[\"mat-raised-button\",\"\",\"type\",\"submit\",3,\"disabled\"]],template:function(e,t){1&e&&(Ro(0,\"h6\",0),tc(1,oI),Ho(),Ro(2,\"form\",1),Uo(\"ngSubmit\",(function(){return t.save()})),Ro(3,\"mat-form-field\"),Ro(4,\"input\",2),nc(5,dI),Ho(),Do(6,fI,2,0,\"mat-error\",3),Ho(),jo(7,\"br\"),Ro(8,\"mat-form-field\"),Ro(9,\"input\",4),nc(10,uI),Ho(),Do(11,_I,2,0,\"mat-error\",3),Ho(),jo(12,\"br\"),Ro(13,\"div\",5),Ro(14,\"button\",6),tc(15,hI),Ho(),Ho(),Ho()),2&e&&(ys(2),Po(\"formGroup\",t.form),ys(4),Po(\"ngIf\",t.form.hasError(\"required\",gc(4,gI))),ys(5),Po(\"ngIf\",t.form.hasError(\"required\",gc(5,yI))),ys(3),Po(\"disabled\",t.form.pristine))},directives:[Tm,Sh,Im,dM,gM,_h,kh,Nm,Vm,mu,Gy,Kw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".user[_ngcontent-%COMP%]{display:flex;align-items:center;border-bottom:1px solid #ccc;padding-bottom:4px;margin-bottom:4px}.user[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{flex:1 0 0}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),e})();var wI,MI,kI,SI,LI,xI,CI,TI,DI;wI=\"\\u041D\\u0430\\u0441\\u0442\\u0440\\u043E\\u0439\\u043A\\u0438\",MI=\"\\u041E\\u0431\\u0449\\u0438\",kI=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u0438\",SI=\"\\u0423\\u043F\\u0440\\u0430\\u0432\\u043B\\u0435\\u043D\\u0438\\u0435 \\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",LI=\"\\u0424\\u0438\\u043B\\u0442\\u0440\\u0438\",xI=\"\\u041A\\u0430\\u043D\\u0430\\u043B\\u0438 \\u0437\\u0430 \\u0441\\u043F\\u043E\\u0434\\u0435\\u043B\\u044F\\u043D\\u0435\",CI=\"\\u0415\\u043C\\u0438\\u0441\\u0438\\u0438\",TI=\"\\u0418\\u0437\\u0445\\u043E\\u0434\",DI=\"\\u0410\\u0434\\u043C\\u0438\\u043D\\u0438\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044F\";const YI=function(){return[\"admin\"]};function EI(e,t){1&e&&(Ro(0,\"a\",2),tc(1,DI),Ho()),2&e&&Po(\"routerLink\",gc(1,YI))}const OI=function(){return[\"general\"]},II=function(){return[\"discovery\"]},PI=function(){return[\"management\"]},AI=function(){return[\"filters\"]},RI=function(){return[\"share-services\"]};var HI;HI=\"\\u041D\\u0430\\u0441\\u0442\\u0440\\u043E\\u0439\\u043A\\u0438\";const jI=kT.forRoot([{path:\"\",canActivate:[rD],children:[{path:\"\",component:xD,children:[{path:\"feed\",children:[{path:\"\",children:[{path:\"\",data:{primary:\"user\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\"search/:query\",data:{primary:\"search\",secondary:\"user\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\"favorite\",data:{primary:\"favorite\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\"popular/tag/:id\",data:{primary:\"popular\",secondary:\"tag\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\"popular/:id\",data:{primary:\"popular\",secondary:\"feed\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\"popular\",data:{primary:\"popular\",secondary:\"user\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\"tag/:id\",data:{primary:\"tag\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\"tag/:id/search/:query\",data:{primary:\"search\",secondary:\"tag\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\":id\",data:{primary:\"feed\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\":id/search/:query\",data:{primary:\"search\",secondary:\"feed\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]}]},{path:\"\",component:SY,outlet:\"sidebar\"},{path:\"\",component:qY,outlet:\"toolbar\"}]},{path:\"settings\",children:[{path:\"\",component:GY,children:[{path:\"general\",component:hE},{path:\"discovery\",component:UE},{path:\"management\",component:XE},{path:\"filters\",component:KO},{path:\"share-services\",component:tI},{path:\"admin\",component:bI},{path:\"\",redirectTo:\"general\",pathMatch:\"full\"}]},{path:\"\",component:(()=>{class e{constructor(e){this.userService=e,this.subscriptions=new Array}ngOnInit(){this.subscriptions.push(this.userService.getCurrentUser().pipe(H(e=>e.admin)).subscribe(e=>this.admin=e,e=>console.log(e)))}ngOnDestroy(){for(let e of this.subscriptions)e.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(JY))},e.\\u0275cmp=yt({type:e,selectors:[[\"side-bar\"]],decls:19,vars:11,consts:[[\"color\",\"primary\"],[1,\"content\"],[\"mat-button\",\"\",3,\"routerLink\"],[\"mat-button\",\"\",3,\"routerLink\",4,\"ngIf\"],[\"mat-button\",\"\",\"routerLink\",\"/feed\"],[\"mat-button\",\"\",\"routerLink\",\"/login\"]],template:function(e,t){1&e&&(Ro(0,\"mat-toolbar\",0),tc(1,wI),Ho(),Ro(2,\"div\",1),Ro(3,\"a\",2),tc(4,MI),Ho(),Ro(5,\"a\",2),tc(6,kI),Ho(),Ro(7,\"a\",2),tc(8,SI),Ho(),Ro(9,\"a\",2),tc(10,LI),Ho(),Ro(11,\"a\",2),tc(12,xI),Ho(),Do(13,EI,2,2,\"a\",3),jo(14,\"hr\"),Ro(15,\"a\",4),tc(16,CI),Ho(),Ro(17,\"a\",5),tc(18,TI),Ho(),Ho()),2&e&&(ys(3),Po(\"routerLink\",gc(6,OI)),ys(2),Po(\"routerLink\",gc(7,II)),ys(2),Po(\"routerLink\",gc(8,PI)),ys(2),Po(\"routerLink\",gc(9,AI)),ys(2),Po(\"routerLink\",gc(10,RI)),ys(2),Po(\"ngIf\",t.admin))},directives:[dS,Jy,cT,mu],styles:[\".content[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{margin-bottom:4px}.content[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex;font-size:16px}.items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:13px}.category[_ngcontent-%COMP%], .items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex}.category[_ngcontent-%COMP%] > .expander[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;min-width:24px;flex-shrink:1}.category[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{flex-grow:1;text-align:start}.category[_ngcontent-%COMP%] > .items[_ngcontent-%COMP%]{flex:0 1 100%}.content[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{margin:0}.favicon[_ngcontent-%COMP%]{padding-right:4px}\"]}),e})(),outlet:\"sidebar\"},{path:\"\",component:(()=>{class e{constructor(){}ngOnInit(){}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:2,vars:0,template:function(e,t){1&e&&(Ro(0,\"span\"),tc(1,HI),Ho())},styles:[\"[_nghost-%COMP%]{display:flex;align-items:center}.spacer[_ngcontent-%COMP%], [_nghost-%COMP%]{flex:1 1 auto}.search[_ngcontent-%COMP%]{min-height:0;border:none;background:transparent} label{margin-bottom:0}\"]}),e})(),outlet:\"toolbar\"}]},{path:\"\",redirectTo:\"feed\",pathMatch:\"full\"}]}]},{path:\"login\",component:iD}],{enableTracing:!1});let FI=(()=>{class e{constructor(){this.title=\"app\"}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"app-root\"]],decls:2,vars:0,consts:[[1,\"page\"]],template:function(e,t){1&e&&(Ro(0,\"div\",0),jo(1,\"router-outlet\"),Ho())},directives:[mT],styles:[\"\"]}),e})(),NI=(()=>{class e{}return e.\\u0275mod=Mt({type:e,bootstrap:[FI]}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[{provide:bf,useClass:TL}],imports:[[If,oy,lh,jI,Mu,$m,Bm,Ky,lb,wb,ow,Tw,yM,WM,ZM,gk,sS,Fk,Xk,uS,gL,xL,kf]]}),e})();(function(){if(ki)throw new Error(\"Cannot enable prod mode after platform setup.\");Mi=!1})(),Ef().bootstrapModule(NI)},zavE:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-SG\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},zn8P:function(e,t){function n(e){return Promise.resolve().then((function(){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}))}n.keys=function(){return[]},n.resolve=n,e.exports=n,n.id=\"zn8P\"},zx6S:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekunda\",\"sekunde\",\"sekundi\"],m:[\"jedan minut\",\"jedne minute\"],mm:[\"minut\",\"minute\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mesec\",\"meseca\",\"meseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var s=t.words[i];return 1===i.length?n?s[0]:s[1]:e+\" \"+t.correctGrammaticalCase(e,s)}};e.defineLocale(\"sr\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljak_utorak_sreda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sre._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedelju] [u] LT\";case 3:return\"[u] [sredu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010de u] LT\",lastWeek:function(){return[\"[pro\\u0161le] [nedelje] [u] LT\",\"[pro\\u0161log] [ponedeljka] [u] LT\",\"[pro\\u0161log] [utorka] [u] LT\",\"[pro\\u0161le] [srede] [u] LT\",\"[pro\\u0161log] [\\u010detvrtka] [u] LT\",\"[pro\\u0161log] [petka] [u] LT\",\"[pro\\u0161le] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pre %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))}},[[0,0]]]);"); err != nil { + return nil, errors.Wrap(err, fmt.Sprintf("packing file rf-ng/ui/bg/main-es2015.cffe4d6ae44ec8c370c8.js")) } - if err := fs.Add("rf-ng/ui/bg/main-es5.f6c9f28337fd1027e64c.js", 1341802, os.FileMode(420), time.Unix(1584880252, 0), "/**\n * @license\n * Copyright Google Inc. All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n!function(n){n.ng=n.ng||{},n.ng.common=n.ng.common||{},n.ng.common.locales=n.ng.common.locales||{};const o=void 0;n.ng.common.locales.bg=[\"bg\",[[\"am\",\"pm\"],o,[\"\\u043f\\u0440.\\u043e\\u0431.\",\"\\u0441\\u043b.\\u043e\\u0431.\"]],[[\"am\",\"pm\"],o,o],[[\"\\u043d\",\"\\u043f\",\"\\u0432\",\"\\u0441\",\"\\u0447\",\"\\u043f\",\"\\u0441\"],[\"\\u043d\\u0434\",\"\\u043f\\u043d\",\"\\u0432\\u0442\",\"\\u0441\\u0440\",\"\\u0447\\u0442\",\"\\u043f\\u0442\",\"\\u0441\\u0431\"],[\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u044f\",\"\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a\",\"\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a\",\"\\u0441\\u0440\\u044f\\u0434\\u0430\",\"\\u0447\\u0435\\u0442\\u0432\\u044a\\u0440\\u0442\\u044a\\u043a\",\"\\u043f\\u0435\\u0442\\u044a\\u043a\",\"\\u0441\\u044a\\u0431\\u043e\\u0442\\u0430\"],[\"\\u043d\\u0434\",\"\\u043f\\u043d\",\"\\u0432\\u0442\",\"\\u0441\\u0440\",\"\\u0447\\u0442\",\"\\u043f\\u0442\",\"\\u0441\\u0431\"]],o,[[\"\\u044f\",\"\\u0444\",\"\\u043c\",\"\\u0430\",\"\\u043c\",\"\\u044e\",\"\\u044e\",\"\\u0430\",\"\\u0441\",\"\\u043e\",\"\\u043d\",\"\\u0434\"],[\"\\u044f\\u043d\\u0443\",\"\\u0444\\u0435\\u0432\",\"\\u043c\\u0430\\u0440\\u0442\",\"\\u0430\\u043f\\u0440\",\"\\u043c\\u0430\\u0439\",\"\\u044e\\u043d\\u0438\",\"\\u044e\\u043b\\u0438\",\"\\u0430\\u0432\\u0433\",\"\\u0441\\u0435\\u043f\",\"\\u043e\\u043a\\u0442\",\"\\u043d\\u043e\\u0435\",\"\\u0434\\u0435\\u043a\"],[\"\\u044f\\u043d\\u0443\\u0430\\u0440\\u0438\",\"\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438\",\"\\u043c\\u0430\\u0440\\u0442\",\"\\u0430\\u043f\\u0440\\u0438\\u043b\",\"\\u043c\\u0430\\u0439\",\"\\u044e\\u043d\\u0438\",\"\\u044e\\u043b\\u0438\",\"\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\",\"\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438\",\"\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438\",\"\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438\",\"\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\"]],o,[[\"\\u043f\\u0440.\\u0425\\u0440.\",\"\\u0441\\u043b.\\u0425\\u0440.\"],o,[\"\\u043f\\u0440\\u0435\\u0434\\u0438 \\u0425\\u0440\\u0438\\u0441\\u0442\\u0430\",\"\\u0441\\u043b\\u0435\\u0434 \\u0425\\u0440\\u0438\\u0441\\u0442\\u0430\"]],1,[6,0],[\"d.MM.yy '\\u0433'.\",\"d.MM.y '\\u0433'.\",\"d MMMM y '\\u0433'.\",\"EEEE, d MMMM y '\\u0433'.\"],[\"H:mm\",\"H:mm:ss\",\"H:mm:ss z\",\"H:mm:ss zzzz\"],[\"{1}, {0}\",o,o,o],[\",\",\"\\xa0\",\";\",\"%\",\"+\",\"-\",\"E\",\"\\xd7\",\"\\u2030\",\"\\u221e\",\"NaN\",\":\"],[\"#,##0.###\",\"#,##0%\",\"0.00\\xa0\\xa4\",\"#E0\"],\"BGN\",\"\\u043b\\u0432.\",\"\\u0411\\u044a\\u043b\\u0433\\u0430\\u0440\\u0441\\u043a\\u0438 \\u043b\\u0435\\u0432\",{ARS:[],AUD:[],BBD:[],BDT:[],BGN:[\"\\u043b\\u0432.\"],BMD:[],BND:[],BRL:[],BSD:[],BYN:[],BZD:[],CAD:[],CLP:[],CNY:[],COP:[],CRC:[],CUP:[],DOP:[],FJD:[],FKP:[],GBP:[o,\"\\xa3\"],GIP:[],GYD:[],HKD:[],ILS:[],INR:[],JMD:[],JPY:[o,\"\\xa5\"],KHR:[],KRW:[],KYD:[],KZT:[],LAK:[],LRD:[],MNT:[],MXN:[],NAD:[],NGN:[],NZD:[],PHP:[],PYG:[],RON:[],SBD:[],SGD:[],SRD:[],SSP:[],TRY:[],TTD:[],TWD:[],UAH:[],USD:[\"\\u0449.\\u0434.\",\"$\"],UYU:[],VND:[],XCD:[o,\"$\"]},function(n){return 1===n?1:5},[[[\"\\u043f\\u043e\\u043b\\u0443\\u043d\\u043e\\u0449\",\"\\u0441\\u0443\\u0442\\u0440\\u0438\\u043d\\u0442\\u0430\",\"\\u043d\\u0430 \\u043e\\u0431\\u044f\\u0434\",\"\\u0441\\u043b\\u0435\\u0434\\u043e\\u0431\\u0435\\u0434\",\"\\u0432\\u0435\\u0447\\u0435\\u0440\\u0442\\u0430\",\"\\u043f\\u0440\\u0435\\u0437 \\u043d\\u043e\\u0449\\u0442\\u0430\"],o,o],o,[\"00:00\",[\"04:00\",\"11:00\"],[\"11:00\",\"14:00\"],[\"14:00\",\"18:00\"],[\"18:00\",\"22:00\"],[\"22:00\",\"04:00\"]]]]}(\"undefined\"!=typeof globalThis&&globalThis||\"undefined\"!=typeof global&&global||\"undefined\"!=typeof window&&window);;var $localize=Object.assign(void 0===$localize?{}:$localize,{locale:\"bg\"});function _templateObject154(){var e=_taggedTemplateLiteral([\":\\u241f121cc5391cd2a5115bc2b3160379ee5b36cd7716\\u241f4930506384627295710:Settings\"]);return _templateObject154=function(){return e},e}function _templateObject153(){var e=_taggedTemplateLiteral([\":\\u241fb7648e7aced164498aa843b5c4e8f2f1c36a7919\\u241f7844706011418789951:Administration\"]);return _templateObject153=function(){return e},e}function _templateObject152(){var e=_taggedTemplateLiteral([\":\\u241fbb694b49d408265c91c62799c2b3a7e3151c824d\\u241f3797778920049399855:Logout\"]);return _templateObject152=function(){return e},e}function _templateObject151(){var e=_taggedTemplateLiteral([\":\\u241f7b928f1d459648a4733d54d7fb0c7141ba6955af\\u241f1246086532983525846:Feeds\"]);return _templateObject151=function(){return e},e}function _templateObject150(){var e=_taggedTemplateLiteral([\":\\u241f7240bf47e6acc8685c4ebfc74ce0d5b4db6bde4f\\u241f5231214581506259059:Share Services\"]);return _templateObject150=function(){return e},e}function _templateObject149(){var e=_taggedTemplateLiteral([\":\\u241f1298c1d2bbbb7415f5494e800f6775fdb70f4df6\\u241f4163272119298020373:Filters\"]);return _templateObject149=function(){return e},e}function _templateObject148(){var e=_taggedTemplateLiteral([\":\\u241f446bc7942ed7cd24d6b84079bb82bd7f1d4d280b\\u241f8187273895031232465:Manage Feeds\"]);return _templateObject148=function(){return e},e}function _templateObject147(){var e=_taggedTemplateLiteral([\":\\u241fb6e9d3a76584feec84c2204f11301598fb90d7ef\\u241f6372201297165580832:Add Feed\"]);return _templateObject147=function(){return e},e}function _templateObject146(){var e=_taggedTemplateLiteral([\":\\u241f3d53f64033c4b76fdc1076ba15955d913209866c\\u241f6439365426343089851:General\"]);return _templateObject146=function(){return e},e}function _templateObject145(){var e=_taggedTemplateLiteral([\":\\u241f2efe5a11c535986f60fd32bb171de59c85ec357d\\u241f6537591722407885569: Settings\\n\"]);return _templateObject145=function(){return e},e}function _templateObject144(){var e=_taggedTemplateLiteral([\":\\u241f2985844c6198518d1b99c84e29e1c8795754cf8b\\u241f4960000650285755818: Empty password \"]);return _templateObject144=function(){return e},e}function _templateObject143(){var e=_taggedTemplateLiteral([\":\\u241f81300fcfd7313522c85ffe86cc04a5c19278bf12\\u241f2191339029246291489: Empty user name \"]);return _templateObject143=function(){return e},e}function _templateObject142(){var e=_taggedTemplateLiteral([\":\\u241f52c9a103b812f258bcddc3d90a6e3f46871d25fe\\u241f3768927257183755959:Save\"]);return _templateObject142=function(){return e},e}function _templateObject141(){var e=_taggedTemplateLiteral([\":\\u241fc32ef07f8803a223a83ed17024b38e8d82292407\\u241f1431416938026210429:Password\"]);return _templateObject141=function(){return e},e}function _templateObject140(){var e=_taggedTemplateLiteral([\":\\u241f024886ca34a6f309e3e51c2ed849320592c3faaa\\u241f5312727456282218392:User name\"]);return _templateObject140=function(){return e},e}function _templateObject139(){var e=_taggedTemplateLiteral([\":\\u241ffab6f6aad7a682400356ad9ba30f1c25e80c8930\\u241f4425649962450500073:Add a new user\"]);return _templateObject139=function(){return e},e}function _templateObject138(){var e=_taggedTemplateLiteral([\":\\u241f75bff245ba90b410bd49da2788c55f572ce7f784\\u241f6033168733730940341:List of users:\"]);return _templateObject138=function(){return e},e}function _templateObject137(){var e=_taggedTemplateLiteral([\":\\u241f1df08418100ac5e70836b8adf5fa12d4c1b4b0dd\\u241f5195095583184627775: Current user: \",\":INTERPOLATION:\\n\"]);return _templateObject137=function(){return e},e}function _templateObject136(){var e=_taggedTemplateLiteral([\":\\u241ff8c7e16da78e5daf06335e60dd27f03ec30530f4\\u241f5918723526444903137:Add user\"]);return _templateObject136=function(){return e},e}function _templateObject135(){var e=_taggedTemplateLiteral([\":\\u241fcb593cb234b63428439631044bdf77fc3452357c\\u241f2108091748797172929:Manage Users\"]);return _templateObject135=function(){return e},e}function _templateObject134(){var e=_taggedTemplateLiteral([\":\\u241f7240bf47e6acc8685c4ebfc74ce0d5b4db6bde4f\\u241f5231214581506259059:Share Services\"]);return _templateObject134=function(){return e},e}function _templateObject133(){var e=_taggedTemplateLiteral([\":\\u241f337ca2e5eeea28eaca91e8511eb5eaafdb385ce6\\u241f1825829511397926879:Tag\"]);return _templateObject133=function(){return e},e}function _templateObject132(){var e=_taggedTemplateLiteral([\":\\u241f7b928f1d459648a4733d54d7fb0c7141ba6955af\\u241f1246086532983525846:Feeds\"]);return _templateObject132=function(){return e},e}function _templateObject131(){var e=_taggedTemplateLiteral([\":\\u241f48568468ed7a42b94708b89595e8e0ba4c5c4880\\u241f7921030750033180197:Limit to tag\"]);return _templateObject131=function(){return e},e}function _templateObject130(){var e=_taggedTemplateLiteral([\":\\u241f7b00e7c2dacd433e78459995668de3ae88faed6f\\u241f1943233524922375568:Limit to feeds\"]);return _templateObject130=function(){return e},e}function _templateObject129(){var e=_taggedTemplateLiteral([\":\\u241ffc9c1cf53b31d0f5bd0a8e28b56b83797a536101\\u241f1576866399027630699: A filter must match at least a URL or title \"]);return _templateObject129=function(){return e},e}function _templateObject128(){var e=_taggedTemplateLiteral([\":\\u241ff4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8\\u241f7819314041543176992:Close\"]);return _templateObject128=function(){return e},e}function _templateObject127(){var e=_taggedTemplateLiteral([\":\\u241f52c9a103b812f258bcddc3d90a6e3f46871d25fe\\u241f3768927257183755959:Save\"]);return _templateObject127=function(){return e},e}function _templateObject126(){var e=_taggedTemplateLiteral([\":\\u241f80de392929f7cade444426837fc6a322091e8143\\u241f6200388742841208230: Match filter if article is not part of the selected feeds/tag. \"]);return _templateObject126=function(){return e},e}function _templateObject125(){var e=_taggedTemplateLiteral([\":\\u241f421759c8d438a7e13844a18b48945cf1cf425769\\u241f7389317586710764363: Optional parameters \"]);return _templateObject125=function(){return e},e}function _templateObject124(){var e=_taggedTemplateLiteral([\":\\u241f1ee7e26019fd1e347d1e23443cf6895a02d62d9c\\u241f8226028651876528843: Match filter if URL term does not match. \"]);return _templateObject124=function(){return e},e}function _templateObject123(){var e=_taggedTemplateLiteral([\":\\u241f3664165270130fd3d4f89f5f7e4c56fb7c485375\\u241f215401851945683133:Filter by URL\"]);return _templateObject123=function(){return e},e}function _templateObject122(){var e=_taggedTemplateLiteral([\":\\u241f12a3c6674683fc857378e516d09535cfe6030f50\\u241f7902335185780042053: Match filter if title term does not match. \"]);return _templateObject122=function(){return e},e}function _templateObject121(){var e=_taggedTemplateLiteral([\":\\u241f34501d547e3d70233dfcc545621b3f9524046c76\\u241f1890297221031788927:Filter by title\"]);return _templateObject121=function(){return e},e}function _templateObject120(){var e=_taggedTemplateLiteral([\":\\u241f760d27bbd4821e0c2c36328a956b7e2a548af1b2\\u241f3366129698268834789: Filters can be applied to article URLs and title. At least one target must be selected: \"]);return _templateObject120=function(){return e},e}function _templateObject119(){var e=_taggedTemplateLiteral([\":\\u241fee5dbbdc2ddbcc6b9aa7262b6d6b1fd93f4a7667\\u241f1717622304171392571:on feeds:\"]);return _templateObject119=function(){return e},e}function _templateObject118(){var e=_taggedTemplateLiteral([\":\\u241f567eded396fef0222ca8ab79c661062ea2d0b0ba\\u241f2325552724815119037:on tag:\"]);return _templateObject118=function(){return e},e}function _templateObject117(){var e=_taggedTemplateLiteral([\":\\u241fa01b7cd68dedce110e9721fe35c8447aa6c7addf\\u241f2844382219174700059:excluding feeds:\"]);return _templateObject117=function(){return e},e}function _templateObject116(){var e=_taggedTemplateLiteral([\":\\u241f5ec699eaa79e1ac10b6ce2a16bfc89436bcb7120\\u241f560382346117673180:excluding tag:\"]);return _templateObject116=function(){return e},e}function _templateObject115(){var e=_taggedTemplateLiteral([\":\\u241f84bbbe38f927eaeddf081648c8783d06b4348b24\\u241f2940383431828435625:Does not match\"]);return _templateObject115=function(){return e},e}function _templateObject114(){var e=_taggedTemplateLiteral([\":\\u241f01aa5508abb4473531a18c605c1c41ae4b6074d0\\u241f1567940090040631427:Matches\"]);return _templateObject114=function(){return e},e}function _templateObject113(){var e=_taggedTemplateLiteral([\":\\u241f7bd342c384e331d17e60ccdf6eb0c23152317d51\\u241f2443387025535922739:by title\"]);return _templateObject113=function(){return e},e}function _templateObject112(){var e=_taggedTemplateLiteral([\":\\u241f84bbbe38f927eaeddf081648c8783d06b4348b24\\u241f2940383431828435625:Does not match\"]);return _templateObject112=function(){return e},e}function _templateObject111(){var e=_taggedTemplateLiteral([\":\\u241f01aa5508abb4473531a18c605c1c41ae4b6074d0\\u241f1567940090040631427:Matches\"]);return _templateObject111=function(){return e},e}function _templateObject110(){var e=_taggedTemplateLiteral([\":\\u241f583cfbb9fc11b6d18ba2859c6f6ef9801f01303a\\u241f7250849074184621975:by URL\"]);return _templateObject110=function(){return e},e}function _templateObject109(){var e=_taggedTemplateLiteral([\":\\u241f58225eba05594edb2dbf2227edcf972c45484190\\u241f3151928432395495376: No filters have been defined\\n\"]);return _templateObject109=function(){return e},e}function _templateObject108(){var e=_taggedTemplateLiteral([\":\\u241ff0296c99c29c326e114d9b5e586e525ced19acb7\\u241f910026778839409110:Add filter\"]);return _templateObject108=function(){return e},e}function _templateObject107(){var e=_taggedTemplateLiteral([\":\\u241f78a6f89ed9e0cf32497131786780cb1849d06450\\u241f1387635138150410380:Manage Filters\"]);return _templateObject107=function(){return e},e}function _templateObject106(){var e=_taggedTemplateLiteral([\":\\u241ff4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8\\u241f7819314041543176992:Close\"]);return _templateObject106=function(){return e},e}function _templateObject105(){var e=_taggedTemplateLiteral([\":\\u241f9f12050a433d9709f2231916ecfb33c4f2ed1c01\\u241f4975748273657042999:tags\"]);return _templateObject105=function(){return e},e}function _templateObject104(){var e=_taggedTemplateLiteral([\":\\u241fcf59c3b27a0d7b925f32cd1c1e2785a1bf73f829\\u241f5929451610563023881:Export OPML\"]);return _templateObject104=function(){return e},e}function _templateObject103(){var e=_taggedTemplateLiteral([\":\\u241f446bc7942ed7cd24d6b84079bb82bd7f1d4d280b\\u241f8187273895031232465:Manage Feeds\"]);return _templateObject103=function(){return e},e}function _templateObject102(){var e=_taggedTemplateLiteral([\":\\u241f51a0b2a443f1b6b1ceab1a868605d7b0f2065e28\\u241f562151600459726773: Error adding feed \",\":INTERPOLATION:: \",\":INTERPOLATION_1: \"]);return _templateObject102=function(){return e},e}function _templateObject101(){var e=_taggedTemplateLiteral([\":\\u241fccd3b9334639513fbd609704f4ec8536a15aeb97\\u241f4228842406796887022: Feeds were added successfully. \"]);return _templateObject101=function(){return e},e}function _templateObject100(){var e=_taggedTemplateLiteral([\":\\u241ff1910eaad1af7b9e7635f930ddc55586f157e3bd\\u241f5085881954406181280: No feeds added. \"]);return _templateObject100=function(){return e},e}function _templateObject99(){var e=_taggedTemplateLiteral([\":\\u241f9d9bc3eecf1610ec05a5c2b63bb7c1324529cba5\\u241f5997521680245778675:Discover more feeds\"]);return _templateObject99=function(){return e},e}function _templateObject98(){var e=_taggedTemplateLiteral([\":\\u241f9d9bc3eecf1610ec05a5c2b63bb7c1324529cba5\\u241f5997521680245778675:Discover more feeds\"]);return _templateObject98=function(){return e},e}function _templateObject97(){var e=_taggedTemplateLiteral([\":\\u241ff6755cff4957d5c3c89bafce5651f1b6fa2b1fd9\\u241f3249513483374643425:Add\"]);return _templateObject97=function(){return e},e}function _templateObject96(){var e=_taggedTemplateLiteral([\":\\u241fd95b1d4402bbe08c4ab7c089005abb260bf0fb62\\u241f4956883923261490175: No new feeds found \"]);return _templateObject96=function(){return e},e}function _templateObject95(){var e=_taggedTemplateLiteral([\":\\u241f8350af72cf77a2936cd54ac59cc1ab9adec34f74\\u241f5089003889507327516: Error during search \"]);return _templateObject95=function(){return e},e}function _templateObject94(){var e=_taggedTemplateLiteral([\":\\u241fbd2cda3ba20b1a481578e587ff255c5dd69226bb\\u241f107334190959015127: No query or opml file specified \"]);return _templateObject94=function(){return e},e}function _templateObject93(){var e=_taggedTemplateLiteral([\":\\u241f7e892ba15f2c6c17e83510e273b3e10fc32ea016\\u241f4580988005648117665:Search\"]);return _templateObject93=function(){return e},e}function _templateObject92(){var e=_taggedTemplateLiteral([\":\\u241f62eb4be126bc452812fe66b9675417704c09123a\\u241f2641672822784307275:OPML import\"]);return _templateObject92=function(){return e},e}function _templateObject91(){var e=_taggedTemplateLiteral([\":\\u241f0e6f6d047ad0445f95577c3886f5cb462ecfd614\\u241f4419855417700414171: Alternatively, upload an OPML file. \"]);return _templateObject91=function(){return e},e}function _templateObject90(){var e=_taggedTemplateLiteral([\":\\u241fc09f5d00683d3ea7a0bac506894a81c47075628f\\u241f7800294050526433264:URL/query\"]);return _templateObject90=function(){return e},e}function _templateObject89(){var e=_taggedTemplateLiteral([\":\\u241f79bf2166191aab07aa1524f2d1350fab472c468a\\u241f1179108510865870171: You can enter the url of a feed directly, as well as a url of a site that may contain one or more feeds, or a search query. \"]);return _templateObject89=function(){return e},e}function _templateObject88(){var e=_taggedTemplateLiteral([\":\\u241f2fa6619f44220045d57d900966a51c211caad6fc\\u241f8307427112695611410:Discover/import feeds\"]);return _templateObject88=function(){return e},e}function _templateObject87(){var e=_taggedTemplateLiteral([\":\\u241f71980fe48d948363935aab88e2077c7c76de93bd\\u241f4018700129027778932: Passwords do not match \"]);return _templateObject87=function(){return e},e}function _templateObject86(){var e=_taggedTemplateLiteral([\":\\u241fd4ee9c4a4fe08d273b716bf0a399570466bbd87c\\u241f5382495681765079471: Invalid password \"]);return _templateObject86=function(){return e},e}function _templateObject85(){var e=_taggedTemplateLiteral([\":\\u241f52c9a103b812f258bcddc3d90a6e3f46871d25fe\\u241f3768927257183755959:Save\"]);return _templateObject85=function(){return e},e}function _templateObject84(){var e=_taggedTemplateLiteral([\":\\u241fede41f01c781b168a783cfcefc6fb67d48780d9b\\u241f8656126574213649581:Confirm new password\"]);return _templateObject84=function(){return e},e}function _templateObject83(){var e=_taggedTemplateLiteral([\":\\u241fe70e209561583f360b1e9cefd2cbb1fe434b6229\\u241f3588415639242079458:New password\"]);return _templateObject83=function(){return e},e}function _templateObject82(){var e=_taggedTemplateLiteral([\":\\u241f6d6539a26b432fb1906f9fda102cf3ac332c8b8a\\u241f1375188762769896369:Change your password\"]);return _templateObject82=function(){return e},e}function _templateObject81(){var e=_taggedTemplateLiteral([\":\\u241f782e37fb591e59a26363f1558db22cd373660ca9\\u241f5224830667201919132: Please enter a valid email address \"]);return _templateObject81=function(){return e},e}function _templateObject80(){var e=_taggedTemplateLiteral([\":\\u241f739516c2ca75843d5aec9cf0e6b3e4335c4227b9\\u241f6309828574111583895:Change password\"]);return _templateObject80=function(){return e},e}function _templateObject79(){var e=_taggedTemplateLiteral([\":\\u241ffe46ccaae902ce974e2441abe752399288298619\\u241f2826581353496868063:Language\"]);return _templateObject79=function(){return e},e}function _templateObject78(){var e=_taggedTemplateLiteral([\":\\u241f244aae9346da82b0922506c2d2581373a15641cc\\u241f4768749765465246664:Email\"]);return _templateObject78=function(){return e},e}function _templateObject77(){var e=_taggedTemplateLiteral([\":\\u241f6ce3dadf53dda1a1ab0c3167a8ed8dced471b0dc\\u241f3586674587150281199:Last name\"]);return _templateObject77=function(){return e},e}function _templateObject76(){var e=_taggedTemplateLiteral([\":\\u241f62b6c66981335ca6eecc36b331103c60f09d1026\\u241f5342432350421167093:First name\"]);return _templateObject76=function(){return e},e}function _templateObject75(){var e=_taggedTemplateLiteral([\":\\u241f2034c9a8ec1a387f9614599aed924afedba51287\\u241f3044746121698042511:Personalize your feed reader\"]);return _templateObject75=function(){return e},e}function _templateObject74(){var e=_taggedTemplateLiteral([\":\\u241f9b1d5e95f6bdcfb4b737413f5fa157e0dcb103d5\\u241f2327592562693301723:Read\"]);return _templateObject74=function(){return e},e}function _templateObject73(){var e=_taggedTemplateLiteral([\":\\u241f3b6143a528c6f4586e60e9af4ced8ac0fbe08251\\u241f5539833462297888878:Articles\"]);return _templateObject73=function(){return e},e}function _templateObject72(){var e=_taggedTemplateLiteral([\":\\u241f8fc026bb4b317bf3a6159c364818202f5bb95a4e\\u241f7375243393535212946:Popular\"]);return _templateObject72=function(){return e},e}function _templateObject71(){var e=_taggedTemplateLiteral([\":\\u241fbb694b49d408265c91c62799c2b3a7e3151c824d\\u241f3797778920049399855:Logout\"]);return _templateObject71=function(){return e},e}function _templateObject70(){var e=_taggedTemplateLiteral([\":\\u241f121cc5391cd2a5115bc2b3160379ee5b36cd7716\\u241f4930506384627295710:Settings\"]);return _templateObject70=function(){return e},e}function _templateObject69(){var e=_taggedTemplateLiteral([\":\\u241fdfc3c34e182ea73c5d784ff7c8135f087992dac1\\u241f1616102757855967475:All\"]);return _templateObject69=function(){return e},e}function _templateObject68(){var e=_taggedTemplateLiteral([\":\\u241f11a0771f88158a540a54e0e4ec5d25733d65fc0e\\u241f5787671382322865445:Favorite\"]);return _templateObject68=function(){return e},e}function _templateObject67(){var e=_taggedTemplateLiteral([\":\\u241f416441a4532345eaa0c5cab38f0aeb148c8566e0\\u241f4648504262060403687: Feeds\\n\"]);return _templateObject67=function(){return e},e}function _templateObject66(){var e=_taggedTemplateLiteral([\":\\u241f170d0510bd494799bed6a127fc04eabc9f8bed23\\u241f97023127247629182: Summary \"]);return _templateObject66=function(){return e},e}function _templateObject65(){var e=_taggedTemplateLiteral([\":\\u241fd5e281892feed2ccbc7c3135846913de48ed7876\\u241f7925939516256734638: Format \"]);return _templateObject65=function(){return e},e}function _templateObject64(){var e=_taggedTemplateLiteral([\":\\u241fbba44ce85e0028ddbc8b0e38d5a04fabc13c8f61\\u241f342997967009162383: View \"]);return _templateObject64=function(){return e},e}function _templateObject63(){var e=_taggedTemplateLiteral([\":\\u241f94516fa213706c67ce5a5b5765681d7fb032033a\\u241f3894950702316166331:Loading...\"]);return _templateObject63=function(){return e},e}function _templateObject62(){var e=_taggedTemplateLiteral([\":\\u241f244aae9346da82b0922506c2d2581373a15641cc\\u241f4768749765465246664:Email\"]);return _templateObject62=function(){return e},e}function _templateObject61(){var e=_taggedTemplateLiteral([\":\\u241ff381d5239a6369e5f4b8582a35e135c8e3d9dfc8\\u241f1092044965355425322:Gmail\"]);return _templateObject61=function(){return e},e}function _templateObject60(){var e=_taggedTemplateLiteral([\":\\u241f244aae9346da82b0922506c2d2581373a15641cc\\u241f4768749765465246664:Email\"]);return _templateObject60=function(){return e},e}function _templateObject59(){var e=_taggedTemplateLiteral([\":\\u241f244aae9346da82b0922506c2d2581373a15641cc\\u241f4768749765465246664:Email\"]);return _templateObject59=function(){return e},e}function _templateObject58(){var e=_taggedTemplateLiteral([\":\\u241f889e1152e6351fd7607f7547eb5547f6c7a7f3df\\u241f1814818426021413844:Blogging\"]);return _templateObject58=function(){return e},e}function _templateObject57(){var e=_taggedTemplateLiteral([\":\\u241f9ed5758c5418a3aa0ecbf9c043a8d89b96852680\\u241f2394265441963394390:Flipboard\"]);return _templateObject57=function(){return e},e}function _templateObject56(){var e=_taggedTemplateLiteral([\":\\u241f889e1152e6351fd7607f7547eb5547f6c7a7f3df\\u241f1814818426021413844:Blogging\"]);return _templateObject56=function(){return e},e}function _templateObject55(){var e=_taggedTemplateLiteral([\":\\u241f8df49d58c2d6296211e3a4d6a7dcbb2256cad458\\u241f3508115160503405698:Tumblr\"]);return _templateObject55=function(){return e},e}function _templateObject54(){var e=_taggedTemplateLiteral([\":\\u241f81baa3357bebcb29271c8121a87c17915bdbb41f\\u241f3841619436439332072:Social network\"]);return _templateObject54=function(){return e},e}function _templateObject53(){var e=_taggedTemplateLiteral([\":\\u241f77ce98fa8988bd33011b2221a28c373dd35a5db1\\u241f5073753467039594647:Pinterest\"]);return _templateObject53=function(){return e},e}function _templateObject52(){var e=_taggedTemplateLiteral([\":\\u241f81baa3357bebcb29271c8121a87c17915bdbb41f\\u241f3841619436439332072:Social network\"]);return _templateObject52=function(){return e},e}function _templateObject51(){var e=_taggedTemplateLiteral([\":\\u241f99cb827741e93125476a0f5b676372d85d15b5fc\\u241f1715373473261069991:Twitter\"]);return _templateObject51=function(){return e},e}function _templateObject50(){var e=_taggedTemplateLiteral([\":\\u241f81baa3357bebcb29271c8121a87c17915bdbb41f\\u241f3841619436439332072:Social network\"]);return _templateObject50=function(){return e},e}function _templateObject49(){var e=_taggedTemplateLiteral([\":\\u241f838a46816b130c73fe73b96e69176da9eb3b1190\\u241f8790918354594417962:Facebook\"]);return _templateObject49=function(){return e},e}function _templateObject48(){var e=_taggedTemplateLiteral([\":\\u241f81baa3357bebcb29271c8121a87c17915bdbb41f\\u241f3841619436439332072:Social network\"]);return _templateObject48=function(){return e},e}function _templateObject47(){var e=_taggedTemplateLiteral([\":\\u241f6ff575335272d7e0a6843ba597216f8201b57991\\u241f7677669941581940117:Google+\"]);return _templateObject47=function(){return e},e}function _templateObject46(){var e=_taggedTemplateLiteral([\":\\u241fded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e\\u241f4957012645000249772:Read-it-later\"]);return _templateObject46=function(){return e},e}function _templateObject45(){var e=_taggedTemplateLiteral([\":\\u241f3031c36d6183f1bb68d18b5ee4aea8ae31bb0eeb\\u241f8042803930279457976:Pocket\"]);return _templateObject45=function(){return e},e}function _templateObject44(){var e=_taggedTemplateLiteral([\":\\u241fded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e\\u241f4957012645000249772:Read-it-later\"]);return _templateObject44=function(){return e},e}function _templateObject43(){var e=_taggedTemplateLiteral([\":\\u241febe46a6ad0c84110be6b37c800f3d3663eeb6aba\\u241f9204054824887609742:Readability\"]);return _templateObject43=function(){return e},e}function _templateObject42(){var e=_taggedTemplateLiteral([\":\\u241fded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e\\u241f4957012645000249772:Read-it-later\"]);return _templateObject42=function(){return e},e}function _templateObject41(){var e=_taggedTemplateLiteral([\":\\u241f35009adf932b9b5ef2c030703e87fc8837c69eb3\\u241f418690784356586368:Instapaper\"]);return _templateObject41=function(){return e},e}function _templateObject40(){var e=_taggedTemplateLiteral([\":\\u241fded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e\\u241f4957012645000249772:Read-it-later\"]);return _templateObject40=function(){return e},e}function _templateObject39(){var e=_taggedTemplateLiteral([\":\\u241f692e44560646c0bdeea893155ffcc76928378a1e\\u241f7811507103524633661:Evernote\"]);return _templateObject39=function(){return e},e}function _templateObject38(){var e=_taggedTemplateLiteral([\":\\u241f71c77bb8cecdf11ec3eead24dd1ba506573fa9cd\\u241f935187492052582731:Submit\"]);return _templateObject38=function(){return e},e}function _templateObject37(){var e=_taggedTemplateLiteral([\":\\u241fc32ef07f8803a223a83ed17024b38e8d82292407\\u241f1431416938026210429:Password\"]);return _templateObject37=function(){return e},e}function _templateObject36(){var e=_taggedTemplateLiteral([\":\\u241f024886ca34a6f309e3e51c2ed849320592c3faaa\\u241f5312727456282218392:User name\"]);return _templateObject36=function(){return e},e}function _wrapNativeSuper(e){var t=\"function\"==typeof Map?new Map:void 0;return(_wrapNativeSuper=function(e){if(null===e||!_isNativeFunction(e))return e;if(\"function\"!=typeof e)throw new TypeError(\"Super expression must either be null or a function\");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,n)}function n(){return _construct(e,arguments,_getPrototypeOf(this).constructor)}return n.prototype=Object.create(e.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),_setPrototypeOf(n,e)})(e)}function _isNativeFunction(e){return-1!==Function.toString.call(e).indexOf(\"[native code]\")}function _defineProperty(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function _templateObject35(){var e=_taggedTemplateLiteral([\":@@ngb.toast.close-aria\\u241ff4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8\\u241f7819314041543176992:Close\"]);return _templateObject35=function(){return e},e}function _templateObject34(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.AM\\u241f69a1f176a93998876952adac57c3bc3863b6105e\\u241f4592818992509942761:\",\":INTERPOLATION:\"]);return _templateObject34=function(){return e},e}function _templateObject33(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.PM\\u241f8d6e691e10306c1b34c6b26805151aaea320ef7f\\u241f3564199131264287502:\",\":INTERPOLATION:\"]);return _templateObject33=function(){return e},e}function _templateObject32(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.decrement-seconds\\u241f5db47ac104294243a70eb9124fbea9d0004ddf69\\u241f753633511487974857:Decrement seconds\"]);return _templateObject32=function(){return e},e}function _templateObject31(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.increment-seconds\\u241f912322ecee7d659d04dcf494a70e22e49d334b26\\u241f5364772110539092174:Increment seconds\"]);return _templateObject31=function(){return e},e}function _templateObject30(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.seconds\\u241f4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c\\u241f8874012390997067175:Seconds\"]);return _templateObject30=function(){return e},e}function _templateObject29(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.SS\\u241febe38d36a40a2383c5fefa9b4608ffbda08bd4a3\\u241f3628127143071124194:SS\"]);return _templateObject29=function(){return e},e}function _templateObject28(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.decrement-minutes\\u241fc1a6899e529c096da5b660385d4e77fe1f7ad271\\u241f7447789825403243588:Decrement minutes\"]);return _templateObject28=function(){return e},e}function _templateObject27(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.increment-minutes\\u241ff5a4a3bc05e053f6732475d0e74875ec01c3a348\\u241f180147720391025024:Increment minutes\"]);return _templateObject27=function(){return e},e}function _templateObject26(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.decrement-hours\\u241f147c7a19429da7d999e247d22e33fee370b1691b\\u241f3651829882940481818:Decrement hours\"]);return _templateObject26=function(){return e},e}function _templateObject25(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.increment-hours\\u241fcb74bc1d625a6c1742f0d7d47306cf495780c218\\u241f5939278348542933629:Increment hours\"]);return _templateObject25=function(){return e},e}function _templateObject24(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.minutes\\u241f41e62daa962947c0d23ded0981975d1bddf0bf38\\u241f5531237363767747080:Minutes\"]);return _templateObject24=function(){return e},e}function _templateObject23(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.MM\\u241f72c8edf6a50068a05bde70991e36b1e881f4ca54\\u241f1647282246509919852:MM\"]);return _templateObject23=function(){return e},e}function _templateObject22(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.hours\\u241f3bbce5fef7e1151da052a4e529453edb340e3912\\u241f8070396816726827304:Hours\"]);return _templateObject22=function(){return e},e}function _templateObject21(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.HH\\u241fce676ab1d6d98f85c836381cf100a4a91ef95a1f\\u241f4043638465245303811:HH\"]);return _templateObject21=function(){return e},e}function _templateObject20(){var e=_taggedTemplateLiteral([\":@@ngb.progressbar.value\\u241f04d611d19c117c60c9e14d0a04399a027184bc77\\u241f5214781723415385277:\",\":INTERPOLATION:%\"]);return _templateObject20=function(){return e},e}function _templateObject19(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.last-aria\\u241f5c729788ba138508aca1bec050b610f7bf81db3e\\u241f4882268002141858767:Last\"]);return _templateObject19=function(){return e},e}function _templateObject18(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.next-aria\\u241ff732c304c7433e5a83ffcd862c3dce709a0f4982\\u241f3885497195825665706:Next\"]);return _templateObject18=function(){return e},e}function _templateObject17(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.previous-aria\\u241f680d5c75b7fd8d37961083608b9fcdc4167b4c43\\u241f4452427314943113135:Previous\"]);return _templateObject17=function(){return e},e}function _templateObject16(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.first-aria\\u241ff2f852318759c6396b5d3d17031d53817d7b38cc\\u241f2241508602425256033:First\"]);return _templateObject16=function(){return e},e}function _templateObject15(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.last\\u241f49f27a460bc97e7e00be5b37098bfa79884fc7d9\\u241f5277020320267646988:\\xbb\\xbb\"]);return _templateObject15=function(){return e},e}function _templateObject14(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.next\\u241fba9cbb4ff311464308a3627e4f1c3345d9fe6d7d\\u241f5458177150283468089:\\xbb\"]);return _templateObject14=function(){return e},e}function _templateObject13(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.previous\\u241f6e52b6ee77a4848d899dd21b591c6fd499e3aef3\\u241f6479320895410098858:\\xab\"]);return _templateObject13=function(){return e},e}function _templateObject12(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.first\\u241f656506dfd46380956a655f919f1498d018f75ca0\\u241f6867721956102594380:\\xab\\xab\"]);return _templateObject12=function(){return e},e}function _templateObject11(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.select-year\\u241f8ceb09d002bf0c5d1cac171dfbffe1805d2b3962\\u241f8852264961585484321:Select year\"]);return _templateObject11=function(){return e},e}function _templateObject10(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.select-year\\u241f8ceb09d002bf0c5d1cac171dfbffe1805d2b3962\\u241f8852264961585484321:Select year\"]);return _templateObject10=function(){return e},e}function _templateObject9(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.select-month\\u241f1dbc84807f35518112f62e5775d1daebd3d8462b\\u241f2253869508135064750:Select month\"]);return _templateObject9=function(){return e},e}function _templateObject8(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.select-month\\u241f1dbc84807f35518112f62e5775d1daebd3d8462b\\u241f2253869508135064750:Select month\"]);return _templateObject8=function(){return e},e}function _templateObject7(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.next-month\\u241f4bd046985cfe13040d5ef0cd881edce0968a111a\\u241f3628374603023447227:Next month\"]);return _templateObject7=function(){return e},e}function _templateObject6(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.next-month\\u241f4bd046985cfe13040d5ef0cd881edce0968a111a\\u241f3628374603023447227:Next month\"]);return _templateObject6=function(){return e},e}function _templateObject5(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.previous-month\\u241fc3b08b07b5ab98e7cdcf18df39355690ab7d3884\\u241f8586908745456864217:Previous month\"]);return _templateObject5=function(){return e},e}function _templateObject4(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.previous-month\\u241fc3b08b07b5ab98e7cdcf18df39355690ab7d3884\\u241f8586908745456864217:Previous month\"]);return _templateObject4=function(){return e},e}function _templateObject3(){var e=_taggedTemplateLiteral([\":@@ngb.carousel.next\\u241ff732c304c7433e5a83ffcd862c3dce709a0f4982\\u241f3885497195825665706:Next\"]);return _templateObject3=function(){return e},e}function _templateObject2(){var e=_taggedTemplateLiteral([\":@@ngb.carousel.previous\\u241f680d5c75b7fd8d37961083608b9fcdc4167b4c43\\u241f4452427314943113135:Previous\"]);return _templateObject2=function(){return e},e}function _templateObject(){var e=_taggedTemplateLiteral([\":@@ngb.alert.close\\u241ff4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8\\u241f7819314041543176992:Close\"]);return _templateObject=function(){return e},e}function _taggedTemplateLiteral(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}function _slicedToArray(e,t){return _arrayWithHoles(e)||_iterableToArrayLimit(e,t)||_unsupportedIterableToArray(e,t)||_nonIterableRest()}function _nonIterableRest(){throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}function _iterableToArrayLimit(e,t){if(\"undefined\"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,i=!1,a=void 0;try{for(var o,s=e[Symbol.iterator]();!(r=(o=s.next()).done)&&(n.push(o.value),!t||n.length!==t);r=!0);}catch(l){i=!0,a=l}finally{try{r||null==s.return||s.return()}finally{if(i)throw a}}return n}}function _arrayWithHoles(e){if(Array.isArray(e))return e}function _toConsumableArray(e){return _arrayWithoutHoles(e)||_iterableToArray(e)||_unsupportedIterableToArray(e)||_nonIterableSpread()}function _nonIterableSpread(){throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}function _iterableToArray(e){if(\"undefined\"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}function _arrayWithoutHoles(e){if(Array.isArray(e))return _arrayLikeToArray(e)}function _createForOfIteratorHelper(e){if(\"undefined\"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(e=_unsupportedIterableToArray(e))){var t=0,n=function(){};return{s:n,n:function(){return t>=e.length?{done:!0}:{done:!1,value:e[t++]}},e:function(e){throw e},f:n}}throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}var r,i,a=!0,o=!1;return{s:function(){r=e[Symbol.iterator]()},n:function(){var e=r.next();return a=e.done,e},e:function(e){o=!0,i=e},f:function(){try{a||null==r.return||r.return()}finally{if(o)throw i}}}}function _unsupportedIterableToArray(e,t){if(e){if(\"string\"==typeof e)return _arrayLikeToArray(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return\"Object\"===n&&e.constructor&&(n=e.constructor.name),\"Map\"===n||\"Set\"===n?Array.from(n):\"Arguments\"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?_arrayLikeToArray(e,t):void 0}}function _arrayLikeToArray(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"//9w\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"se\",{months:\"o\\u0111\\u0111ajagem\\xe1nnu_guovvam\\xe1nnu_njuk\\u010dam\\xe1nnu_cuo\\u014bom\\xe1nnu_miessem\\xe1nnu_geassem\\xe1nnu_suoidnem\\xe1nnu_borgem\\xe1nnu_\\u010dak\\u010dam\\xe1nnu_golggotm\\xe1nnu_sk\\xe1bmam\\xe1nnu_juovlam\\xe1nnu\".split(\"_\"),monthsShort:\"o\\u0111\\u0111j_guov_njuk_cuo_mies_geas_suoi_borg_\\u010dak\\u010d_golg_sk\\xe1b_juov\".split(\"_\"),weekdays:\"sotnabeaivi_vuoss\\xe1rga_ma\\u014b\\u014beb\\xe1rga_gaskavahkku_duorastat_bearjadat_l\\xe1vvardat\".split(\"_\"),weekdaysShort:\"sotn_vuos_ma\\u014b_gask_duor_bear_l\\xe1v\".split(\"_\"),weekdaysMin:\"s_v_m_g_d_b_L\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"MMMM D. [b.] YYYY\",LLL:\"MMMM D. [b.] YYYY [ti.] HH:mm\",LLLL:\"dddd, MMMM D. [b.] YYYY [ti.] HH:mm\"},calendar:{sameDay:\"[otne ti] LT\",nextDay:\"[ihttin ti] LT\",nextWeek:\"dddd [ti] LT\",lastDay:\"[ikte ti] LT\",lastWeek:\"[ovddit] dddd [ti] LT\",sameElse:\"L\"},relativeTime:{future:\"%s gea\\u017ees\",past:\"ma\\u014bit %s\",s:\"moadde sekunddat\",ss:\"%d sekunddat\",m:\"okta minuhta\",mm:\"%d minuhtat\",h:\"okta diimmu\",hh:\"%d diimmut\",d:\"okta beaivi\",dd:\"%d beaivvit\",M:\"okta m\\xe1nnu\",MM:\"%d m\\xe1nut\",y:\"okta jahki\",yy:\"%d jagit\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"/X5v\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"x-pseudo\",{months:\"J~\\xe1\\xf1\\xfa\\xe1~r\\xfd_F~\\xe9br\\xfa~\\xe1r\\xfd_~M\\xe1rc~h_\\xc1p~r\\xedl_~M\\xe1\\xfd_~J\\xfa\\xf1\\xe9~_J\\xfal~\\xfd_\\xc1\\xfa~g\\xfast~_S\\xe9p~t\\xe9mb~\\xe9r_\\xd3~ct\\xf3b~\\xe9r_\\xd1~\\xf3v\\xe9m~b\\xe9r_~D\\xe9c\\xe9~mb\\xe9r\".split(\"_\"),monthsShort:\"J~\\xe1\\xf1_~F\\xe9b_~M\\xe1r_~\\xc1pr_~M\\xe1\\xfd_~J\\xfa\\xf1_~J\\xfal_~\\xc1\\xfag_~S\\xe9p_~\\xd3ct_~\\xd1\\xf3v_~D\\xe9c\".split(\"_\"),monthsParseExact:!0,weekdays:\"S~\\xfa\\xf1d\\xe1~\\xfd_M\\xf3~\\xf1d\\xe1\\xfd~_T\\xfa\\xe9~sd\\xe1\\xfd~_W\\xe9d~\\xf1\\xe9sd~\\xe1\\xfd_T~h\\xfars~d\\xe1\\xfd_~Fr\\xedd~\\xe1\\xfd_S~\\xe1t\\xfar~d\\xe1\\xfd\".split(\"_\"),weekdaysShort:\"S~\\xfa\\xf1_~M\\xf3\\xf1_~T\\xfa\\xe9_~W\\xe9d_~Th\\xfa_~Fr\\xed_~S\\xe1t\".split(\"_\"),weekdaysMin:\"S~\\xfa_M\\xf3~_T\\xfa_~W\\xe9_T~h_Fr~_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[T~\\xf3d\\xe1~\\xfd \\xe1t] LT\",nextDay:\"[T~\\xf3m\\xf3~rr\\xf3~w \\xe1t] LT\",nextWeek:\"dddd [\\xe1t] LT\",lastDay:\"[\\xdd~\\xe9st~\\xe9rd\\xe1~\\xfd \\xe1t] LT\",lastWeek:\"[L~\\xe1st] dddd [\\xe1t] LT\",sameElse:\"L\"},relativeTime:{future:\"\\xed~\\xf1 %s\",past:\"%s \\xe1~g\\xf3\",s:\"\\xe1 ~f\\xe9w ~s\\xe9c\\xf3~\\xf1ds\",ss:\"%d s~\\xe9c\\xf3\\xf1~ds\",m:\"\\xe1 ~m\\xed\\xf1~\\xfat\\xe9\",mm:\"%d m~\\xed\\xf1\\xfa~t\\xe9s\",h:\"\\xe1~\\xf1 h\\xf3~\\xfar\",hh:\"%d h~\\xf3\\xfars\",d:\"\\xe1 ~d\\xe1\\xfd\",dd:\"%d d~\\xe1\\xfds\",M:\"\\xe1 ~m\\xf3\\xf1~th\",MM:\"%d m~\\xf3\\xf1t~hs\",y:\"\\xe1 ~\\xfd\\xe9\\xe1r\",yy:\"%d \\xfd~\\xe9\\xe1rs\"},dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},0:function(e,t,n){e.exports=n(\"zUnb\")},\"0mo+\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0f21\",2:\"\\u0f22\",3:\"\\u0f23\",4:\"\\u0f24\",5:\"\\u0f25\",6:\"\\u0f26\",7:\"\\u0f27\",8:\"\\u0f28\",9:\"\\u0f29\",0:\"\\u0f20\"},n={\"\\u0f21\":\"1\",\"\\u0f22\":\"2\",\"\\u0f23\":\"3\",\"\\u0f24\":\"4\",\"\\u0f25\":\"5\",\"\\u0f26\":\"6\",\"\\u0f27\":\"7\",\"\\u0f28\":\"8\",\"\\u0f29\":\"9\",\"\\u0f20\":\"0\"};e.defineLocale(\"bo\",{months:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f44\\u0f0b\\u0f54\\u0f7c_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f66\\u0f74\\u0f58\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f5e\\u0f72\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f63\\u0f94\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0fb2\\u0f74\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f62\\u0f92\\u0fb1\\u0f51\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f42\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54\".split(\"_\"),monthsShort:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f44\\u0f0b\\u0f54\\u0f7c_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f66\\u0f74\\u0f58\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f5e\\u0f72\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f63\\u0f94\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0fb2\\u0f74\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f62\\u0f92\\u0fb1\\u0f51\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f42\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54\".split(\"_\"),weekdays:\"\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),weekdaysShort:\"\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),weekdaysMin:\"\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0f51\\u0f72\\u0f0b\\u0f62\\u0f72\\u0f44] LT\",nextDay:\"[\\u0f66\\u0f44\\u0f0b\\u0f49\\u0f72\\u0f53] LT\",nextWeek:\"[\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f55\\u0fb2\\u0f42\\u0f0b\\u0f62\\u0f97\\u0f7a\\u0f66\\u0f0b\\u0f58], LT\",lastDay:\"[\\u0f41\\u0f0b\\u0f66\\u0f44] LT\",lastWeek:\"[\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f55\\u0fb2\\u0f42\\u0f0b\\u0f58\\u0f50\\u0f60\\u0f0b\\u0f58] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0f63\\u0f0b\",past:\"%s \\u0f66\\u0f94\\u0f53\\u0f0b\\u0f63\",s:\"\\u0f63\\u0f58\\u0f0b\\u0f66\\u0f44\",ss:\"%d \\u0f66\\u0f90\\u0f62\\u0f0b\\u0f46\\u0f0d\",m:\"\\u0f66\\u0f90\\u0f62\\u0f0b\\u0f58\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",mm:\"%d \\u0f66\\u0f90\\u0f62\\u0f0b\\u0f58\",h:\"\\u0f46\\u0f74\\u0f0b\\u0f5a\\u0f7c\\u0f51\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",hh:\"%d \\u0f46\\u0f74\\u0f0b\\u0f5a\\u0f7c\\u0f51\",d:\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",dd:\"%d \\u0f49\\u0f72\\u0f53\\u0f0b\",M:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",MM:\"%d \\u0f5f\\u0fb3\\u0f0b\\u0f56\",y:\"\\u0f63\\u0f7c\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",yy:\"%d \\u0f63\\u0f7c\"},preparse:function(e){return e.replace(/[\\u0f21\\u0f22\\u0f23\\u0f24\\u0f25\\u0f26\\u0f27\\u0f28\\u0f29\\u0f20]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c|\\u0f5e\\u0f7c\\u0f42\\u0f66\\u0f0b\\u0f40\\u0f66|\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44|\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42|\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\"===t&&e>=4||\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44\"===t&&e<5||\"\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\":e<10?\"\\u0f5e\\u0f7c\\u0f42\\u0f66\\u0f0b\\u0f40\\u0f66\":e<17?\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44\":e<20?\"\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42\":\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"0tRk\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt-br\",{months:\"Janeiro_Fevereiro_Mar\\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingo_Segunda-feira_Ter\\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\\xe1bado\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ter_Qua_Qui_Sex_S\\xe1b\".split(\"_\"),weekdaysMin:\"Do_2\\xaa_3\\xaa_4\\xaa_5\\xaa_6\\xaa_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY [\\xe0s] HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY [\\xe0s] HH:mm\"},calendar:{sameDay:\"[Hoje \\xe0s] LT\",nextDay:\"[Amanh\\xe3 \\xe0s] LT\",nextWeek:\"dddd [\\xe0s] LT\",lastDay:\"[Ontem \\xe0s] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[\\xdaltimo] dddd [\\xe0s] LT\":\"[\\xdaltima] dddd [\\xe0s] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"h\\xe1 %s\",s:\"poucos segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",M:\"um m\\xeas\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\"})}(n(\"wd/R\"))},\"1rYy\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"hy-am\",{months:{format:\"\\u0570\\u0578\\u0582\\u0576\\u057e\\u0561\\u0580\\u056b_\\u0583\\u0565\\u057f\\u0580\\u057e\\u0561\\u0580\\u056b_\\u0574\\u0561\\u0580\\u057f\\u056b_\\u0561\\u057a\\u0580\\u056b\\u056c\\u056b_\\u0574\\u0561\\u0575\\u056b\\u057d\\u056b_\\u0570\\u0578\\u0582\\u0576\\u056b\\u057d\\u056b_\\u0570\\u0578\\u0582\\u056c\\u056b\\u057d\\u056b_\\u0585\\u0563\\u0578\\u057d\\u057f\\u0578\\u057d\\u056b_\\u057d\\u0565\\u057a\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0570\\u0578\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0576\\u0578\\u0575\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0564\\u0565\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b\".split(\"_\"),standalone:\"\\u0570\\u0578\\u0582\\u0576\\u057e\\u0561\\u0580_\\u0583\\u0565\\u057f\\u0580\\u057e\\u0561\\u0580_\\u0574\\u0561\\u0580\\u057f_\\u0561\\u057a\\u0580\\u056b\\u056c_\\u0574\\u0561\\u0575\\u056b\\u057d_\\u0570\\u0578\\u0582\\u0576\\u056b\\u057d_\\u0570\\u0578\\u0582\\u056c\\u056b\\u057d_\\u0585\\u0563\\u0578\\u057d\\u057f\\u0578\\u057d_\\u057d\\u0565\\u057a\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0570\\u0578\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0576\\u0578\\u0575\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0564\\u0565\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\".split(\"_\")},monthsShort:\"\\u0570\\u0576\\u057e_\\u0583\\u057f\\u0580_\\u0574\\u0580\\u057f_\\u0561\\u057a\\u0580_\\u0574\\u0575\\u057d_\\u0570\\u0576\\u057d_\\u0570\\u056c\\u057d_\\u0585\\u0563\\u057d_\\u057d\\u057a\\u057f_\\u0570\\u056f\\u057f_\\u0576\\u0574\\u0562_\\u0564\\u056f\\u057f\".split(\"_\"),weekdays:\"\\u056f\\u056b\\u0580\\u0561\\u056f\\u056b_\\u0565\\u0580\\u056f\\u0578\\u0582\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0565\\u0580\\u0565\\u0584\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0579\\u0578\\u0580\\u0565\\u0584\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0570\\u056b\\u0576\\u0563\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0578\\u0582\\u0580\\u0562\\u0561\\u0569_\\u0577\\u0561\\u0562\\u0561\\u0569\".split(\"_\"),weekdaysShort:\"\\u056f\\u0580\\u056f_\\u0565\\u0580\\u056f_\\u0565\\u0580\\u0584_\\u0579\\u0580\\u0584_\\u0570\\u0576\\u0563_\\u0578\\u0582\\u0580\\u0562_\\u0577\\u0562\\u0569\".split(\"_\"),weekdaysMin:\"\\u056f\\u0580\\u056f_\\u0565\\u0580\\u056f_\\u0565\\u0580\\u0584_\\u0579\\u0580\\u0584_\\u0570\\u0576\\u0563_\\u0578\\u0582\\u0580\\u0562_\\u0577\\u0562\\u0569\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0569.\",LLL:\"D MMMM YYYY \\u0569., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0569., HH:mm\"},calendar:{sameDay:\"[\\u0561\\u0575\\u057d\\u0585\\u0580] LT\",nextDay:\"[\\u057e\\u0561\\u0572\\u0568] LT\",lastDay:\"[\\u0565\\u0580\\u0565\\u056f] LT\",nextWeek:function(){return\"dddd [\\u0585\\u0580\\u0568 \\u056a\\u0561\\u0574\\u0568] LT\"},lastWeek:function(){return\"[\\u0561\\u0576\\u0581\\u0561\\u056e] dddd [\\u0585\\u0580\\u0568 \\u056a\\u0561\\u0574\\u0568] LT\"},sameElse:\"L\"},relativeTime:{future:\"%s \\u0570\\u0565\\u057f\\u0578\",past:\"%s \\u0561\\u057c\\u0561\\u057b\",s:\"\\u0574\\u056b \\u0584\\u0561\\u0576\\u056b \\u057e\\u0561\\u0575\\u0580\\u056f\\u0575\\u0561\\u0576\",ss:\"%d \\u057e\\u0561\\u0575\\u0580\\u056f\\u0575\\u0561\\u0576\",m:\"\\u0580\\u0578\\u057a\\u0565\",mm:\"%d \\u0580\\u0578\\u057a\\u0565\",h:\"\\u056a\\u0561\\u0574\",hh:\"%d \\u056a\\u0561\\u0574\",d:\"\\u0585\\u0580\",dd:\"%d \\u0585\\u0580\",M:\"\\u0561\\u0574\\u056b\\u057d\",MM:\"%d \\u0561\\u0574\\u056b\\u057d\",y:\"\\u057f\\u0561\\u0580\\u056b\",yy:\"%d \\u057f\\u0561\\u0580\\u056b\"},meridiemParse:/\\u0563\\u056b\\u0577\\u0565\\u0580\\u057e\\u0561|\\u0561\\u057c\\u0561\\u057e\\u0578\\u057f\\u057e\\u0561|\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561|\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576/,isPM:function(e){return/^(\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561|\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576)$/.test(e)},meridiem:function(e){return e<4?\"\\u0563\\u056b\\u0577\\u0565\\u0580\\u057e\\u0561\":e<12?\"\\u0561\\u057c\\u0561\\u057e\\u0578\\u057f\\u057e\\u0561\":e<17?\"\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561\":\"\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576\"},dayOfMonthOrdinalParse:/\\d{1,2}|\\d{1,2}-(\\u056b\\u0576|\\u0580\\u0564)/,ordinal:function(e,t){switch(t){case\"DDD\":case\"w\":case\"W\":case\"DDDo\":return 1===e?e+\"-\\u056b\\u0576\":e+\"-\\u0580\\u0564\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"1xZ4\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ca\",{months:{standalone:\"gener_febrer_mar\\xe7_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre\".split(\"_\"),format:\"de gener_de febrer_de mar\\xe7_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre\".split(\"_\"),isFormat:/D[oD]?(\\s)+MMMM/},monthsShort:\"gen._febr._mar\\xe7_abr._maig_juny_jul._ag._set._oct._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte\".split(\"_\"),weekdaysShort:\"dg._dl._dt._dc._dj._dv._ds.\".split(\"_\"),weekdaysMin:\"dg_dl_dt_dc_dj_dv_ds\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [de] YYYY\",ll:\"D MMM YYYY\",LLL:\"D MMMM [de] YYYY [a les] H:mm\",lll:\"D MMM YYYY, H:mm\",LLLL:\"dddd D MMMM [de] YYYY [a les] H:mm\",llll:\"ddd D MMM YYYY, H:mm\"},calendar:{sameDay:function(){return\"[avui a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextDay:function(){return\"[dem\\xe0 a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextWeek:function(){return\"dddd [a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastDay:function(){return\"[ahir a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [passat a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"d'aqu\\xed %s\",past:\"fa %s\",s:\"uns segons\",ss:\"%d segons\",m:\"un minut\",mm:\"%d minuts\",h:\"una hora\",hh:\"%d hores\",d:\"un dia\",dd:\"%d dies\",M:\"un mes\",MM:\"%d mesos\",y:\"un any\",yy:\"%d anys\"},dayOfMonthOrdinalParse:/\\d{1,2}(r|n|t|\\xe8|a)/,ordinal:function(e,t){var n=1===e?\"r\":2===e?\"n\":3===e?\"r\":4===e?\"t\":\"\\xe8\";return\"w\"!==t&&\"W\"!==t||(n=\"a\"),e+n},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"2fjn\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ca\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}}})}(n(\"wd/R\"))},\"2ykv\":function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),n=\"jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),r=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],i=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\\.?|feb\\.?|mrt\\.?|apr\\.?|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i;e.defineLocale(\"nl-be\",{months:\"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december\".split(\"_\"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\\.?|feb\\.?|mrt\\.?|apr\\.?|mei|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:\"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag\".split(\"_\"),weekdaysShort:\"zo._ma._di._wo._do._vr._za.\".split(\"_\"),weekdaysMin:\"zo_ma_di_wo_do_vr_za\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[vandaag om] LT\",nextDay:\"[morgen om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[gisteren om] LT\",lastWeek:\"[afgelopen] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"over %s\",past:\"%s geleden\",s:\"een paar seconden\",ss:\"%d seconden\",m:\"\\xe9\\xe9n minuut\",mm:\"%d minuten\",h:\"\\xe9\\xe9n uur\",hh:\"%d uur\",d:\"\\xe9\\xe9n dag\",dd:\"%d dagen\",M:\"\\xe9\\xe9n maand\",MM:\"%d maanden\",y:\"\\xe9\\xe9n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"3E1r\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};e.defineLocale(\"hi\",{months:\"\\u091c\\u0928\\u0935\\u0930\\u0940_\\u092b\\u093c\\u0930\\u0935\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u0948\\u0932_\\u092e\\u0908_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908_\\u0905\\u0917\\u0938\\u094d\\u0924_\\u0938\\u093f\\u0924\\u092e\\u094d\\u092c\\u0930_\\u0905\\u0915\\u094d\\u091f\\u0942\\u092c\\u0930_\\u0928\\u0935\\u092e\\u094d\\u092c\\u0930_\\u0926\\u093f\\u0938\\u092e\\u094d\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u0928._\\u092b\\u093c\\u0930._\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u0948._\\u092e\\u0908_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932._\\u0905\\u0917._\\u0938\\u093f\\u0924._\\u0905\\u0915\\u094d\\u091f\\u0942._\\u0928\\u0935._\\u0926\\u093f\\u0938.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0930\\u0935\\u093f\\u0935\\u093e\\u0930_\\u0938\\u094b\\u092e\\u0935\\u093e\\u0930_\\u092e\\u0902\\u0917\\u0932\\u0935\\u093e\\u0930_\\u092c\\u0941\\u0927\\u0935\\u093e\\u0930_\\u0917\\u0941\\u0930\\u0942\\u0935\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u0935\\u093e\\u0930_\\u0936\\u0928\\u093f\\u0935\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0930\\u0935\\u093f_\\u0938\\u094b\\u092e_\\u092e\\u0902\\u0917\\u0932_\\u092c\\u0941\\u0927_\\u0917\\u0941\\u0930\\u0942_\\u0936\\u0941\\u0915\\u094d\\u0930_\\u0936\\u0928\\u093f\".split(\"_\"),weekdaysMin:\"\\u0930_\\u0938\\u094b_\\u092e\\u0902_\\u092c\\u0941_\\u0917\\u0941_\\u0936\\u0941_\\u0936\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u092c\\u091c\\u0947\",LTS:\"A h:mm:ss \\u092c\\u091c\\u0947\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u092c\\u091c\\u0947\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u092c\\u091c\\u0947\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u0915\\u0932] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0915\\u0932] LT\",lastWeek:\"[\\u092a\\u093f\\u091b\\u0932\\u0947] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u092e\\u0947\\u0902\",past:\"%s \\u092a\\u0939\\u0932\\u0947\",s:\"\\u0915\\u0941\\u091b \\u0939\\u0940 \\u0915\\u094d\\u0937\\u0923\",ss:\"%d \\u0938\\u0947\\u0915\\u0902\\u0921\",m:\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u091f\",mm:\"%d \\u092e\\u093f\\u0928\\u091f\",h:\"\\u090f\\u0915 \\u0918\\u0902\\u091f\\u093e\",hh:\"%d \\u0918\\u0902\\u091f\\u0947\",d:\"\\u090f\\u0915 \\u0926\\u093f\\u0928\",dd:\"%d \\u0926\\u093f\\u0928\",M:\"\\u090f\\u0915 \\u092e\\u0939\\u0940\\u0928\\u0947\",MM:\"%d \\u092e\\u0939\\u0940\\u0928\\u0947\",y:\"\\u090f\\u0915 \\u0935\\u0930\\u094d\\u0937\",yy:\"%d \\u0935\\u0930\\u094d\\u0937\"},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924|\\u0938\\u0941\\u092c\\u0939|\\u0926\\u094b\\u092a\\u0939\\u0930|\\u0936\\u093e\\u092e/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\"===t?e<4?e:e+12:\"\\u0938\\u0941\\u092c\\u0939\"===t?e:\"\\u0926\\u094b\\u092a\\u0939\\u0930\"===t?e>=10?e:e+12:\"\\u0936\\u093e\\u092e\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0930\\u093e\\u0924\":e<10?\"\\u0938\\u0941\\u092c\\u0939\":e<17?\"\\u0926\\u094b\\u092a\\u0939\\u0930\":e<20?\"\\u0936\\u093e\\u092e\":\"\\u0930\\u093e\\u0924\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"4MV3\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0ae7\",2:\"\\u0ae8\",3:\"\\u0ae9\",4:\"\\u0aea\",5:\"\\u0aeb\",6:\"\\u0aec\",7:\"\\u0aed\",8:\"\\u0aee\",9:\"\\u0aef\",0:\"\\u0ae6\"},n={\"\\u0ae7\":\"1\",\"\\u0ae8\":\"2\",\"\\u0ae9\":\"3\",\"\\u0aea\":\"4\",\"\\u0aeb\":\"5\",\"\\u0aec\":\"6\",\"\\u0aed\":\"7\",\"\\u0aee\":\"8\",\"\\u0aef\":\"9\",\"\\u0ae6\":\"0\"};e.defineLocale(\"gu\",{months:\"\\u0a9c\\u0abe\\u0aa8\\u0acd\\u0aaf\\u0ac1\\u0a86\\u0ab0\\u0ac0_\\u0aab\\u0ac7\\u0aac\\u0acd\\u0ab0\\u0ac1\\u0a86\\u0ab0\\u0ac0_\\u0aae\\u0abe\\u0ab0\\u0acd\\u0a9a_\\u0a8f\\u0aaa\\u0acd\\u0ab0\\u0abf\\u0ab2_\\u0aae\\u0ac7_\\u0a9c\\u0ac2\\u0aa8_\\u0a9c\\u0ac1\\u0ab2\\u0abe\\u0a88_\\u0a91\\u0a97\\u0ab8\\u0acd\\u0a9f_\\u0ab8\\u0aaa\\u0acd\\u0a9f\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0_\\u0a91\\u0a95\\u0acd\\u0a9f\\u0acd\\u0aac\\u0ab0_\\u0aa8\\u0ab5\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0_\\u0aa1\\u0abf\\u0ab8\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0\".split(\"_\"),monthsShort:\"\\u0a9c\\u0abe\\u0aa8\\u0acd\\u0aaf\\u0ac1._\\u0aab\\u0ac7\\u0aac\\u0acd\\u0ab0\\u0ac1._\\u0aae\\u0abe\\u0ab0\\u0acd\\u0a9a_\\u0a8f\\u0aaa\\u0acd\\u0ab0\\u0abf._\\u0aae\\u0ac7_\\u0a9c\\u0ac2\\u0aa8_\\u0a9c\\u0ac1\\u0ab2\\u0abe._\\u0a91\\u0a97._\\u0ab8\\u0aaa\\u0acd\\u0a9f\\u0ac7._\\u0a91\\u0a95\\u0acd\\u0a9f\\u0acd._\\u0aa8\\u0ab5\\u0ac7._\\u0aa1\\u0abf\\u0ab8\\u0ac7.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0ab0\\u0ab5\\u0abf\\u0ab5\\u0abe\\u0ab0_\\u0ab8\\u0acb\\u0aae\\u0ab5\\u0abe\\u0ab0_\\u0aae\\u0a82\\u0a97\\u0ab3\\u0ab5\\u0abe\\u0ab0_\\u0aac\\u0ac1\\u0aa7\\u0acd\\u0ab5\\u0abe\\u0ab0_\\u0a97\\u0ac1\\u0ab0\\u0ac1\\u0ab5\\u0abe\\u0ab0_\\u0ab6\\u0ac1\\u0a95\\u0acd\\u0ab0\\u0ab5\\u0abe\\u0ab0_\\u0ab6\\u0aa8\\u0abf\\u0ab5\\u0abe\\u0ab0\".split(\"_\"),weekdaysShort:\"\\u0ab0\\u0ab5\\u0abf_\\u0ab8\\u0acb\\u0aae_\\u0aae\\u0a82\\u0a97\\u0ab3_\\u0aac\\u0ac1\\u0aa7\\u0acd_\\u0a97\\u0ac1\\u0ab0\\u0ac1_\\u0ab6\\u0ac1\\u0a95\\u0acd\\u0ab0_\\u0ab6\\u0aa8\\u0abf\".split(\"_\"),weekdaysMin:\"\\u0ab0_\\u0ab8\\u0acb_\\u0aae\\u0a82_\\u0aac\\u0ac1_\\u0a97\\u0ac1_\\u0ab6\\u0ac1_\\u0ab6\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",LTS:\"A h:mm:ss \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\"},calendar:{sameDay:\"[\\u0a86\\u0a9c] LT\",nextDay:\"[\\u0a95\\u0abe\\u0ab2\\u0ac7] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0a97\\u0a87\\u0a95\\u0abe\\u0ab2\\u0ac7] LT\",lastWeek:\"[\\u0aaa\\u0abe\\u0a9b\\u0ab2\\u0abe] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0aae\\u0abe\",past:\"%s \\u0aaa\\u0ac7\\u0ab9\\u0ab2\\u0abe\",s:\"\\u0a85\\u0aae\\u0ac1\\u0a95 \\u0aaa\\u0ab3\\u0acb\",ss:\"%d \\u0ab8\\u0ac7\\u0a95\\u0a82\\u0aa1\",m:\"\\u0a8f\\u0a95 \\u0aae\\u0abf\\u0aa8\\u0abf\\u0a9f\",mm:\"%d \\u0aae\\u0abf\\u0aa8\\u0abf\\u0a9f\",h:\"\\u0a8f\\u0a95 \\u0a95\\u0ab2\\u0abe\\u0a95\",hh:\"%d \\u0a95\\u0ab2\\u0abe\\u0a95\",d:\"\\u0a8f\\u0a95 \\u0aa6\\u0abf\\u0ab5\\u0ab8\",dd:\"%d \\u0aa6\\u0abf\\u0ab5\\u0ab8\",M:\"\\u0a8f\\u0a95 \\u0aae\\u0ab9\\u0abf\\u0aa8\\u0acb\",MM:\"%d \\u0aae\\u0ab9\\u0abf\\u0aa8\\u0acb\",y:\"\\u0a8f\\u0a95 \\u0ab5\\u0ab0\\u0acd\\u0ab7\",yy:\"%d \\u0ab5\\u0ab0\\u0acd\\u0ab7\"},preparse:function(e){return e.replace(/[\\u0ae7\\u0ae8\\u0ae9\\u0aea\\u0aeb\\u0aec\\u0aed\\u0aee\\u0aef\\u0ae6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0ab0\\u0abe\\u0aa4|\\u0aac\\u0aaa\\u0acb\\u0ab0|\\u0ab8\\u0ab5\\u0abe\\u0ab0|\\u0ab8\\u0abe\\u0a82\\u0a9c/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0ab0\\u0abe\\u0aa4\"===t?e<4?e:e+12:\"\\u0ab8\\u0ab5\\u0abe\\u0ab0\"===t?e:\"\\u0aac\\u0aaa\\u0acb\\u0ab0\"===t?e>=10?e:e+12:\"\\u0ab8\\u0abe\\u0a82\\u0a9c\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0ab0\\u0abe\\u0aa4\":e<10?\"\\u0ab8\\u0ab5\\u0abe\\u0ab0\":e<17?\"\\u0aac\\u0aaa\\u0acb\\u0ab0\":e<20?\"\\u0ab8\\u0abe\\u0a82\\u0a9c\":\"\\u0ab0\\u0abe\\u0aa4\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"4dOw\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ie\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"6+QB\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"6B0Y\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u17e1\",2:\"\\u17e2\",3:\"\\u17e3\",4:\"\\u17e4\",5:\"\\u17e5\",6:\"\\u17e6\",7:\"\\u17e7\",8:\"\\u17e8\",9:\"\\u17e9\",0:\"\\u17e0\"},n={\"\\u17e1\":\"1\",\"\\u17e2\":\"2\",\"\\u17e3\":\"3\",\"\\u17e4\":\"4\",\"\\u17e5\":\"5\",\"\\u17e6\":\"6\",\"\\u17e7\":\"7\",\"\\u17e8\":\"8\",\"\\u17e9\":\"9\",\"\\u17e0\":\"0\"};e.defineLocale(\"km\",{months:\"\\u1798\\u1780\\u179a\\u17b6_\\u1780\\u17bb\\u1798\\u17d2\\u1797\\u17c8_\\u1798\\u17b8\\u1793\\u17b6_\\u1798\\u17c1\\u179f\\u17b6_\\u17a7\\u179f\\u1797\\u17b6_\\u1798\\u17b7\\u1790\\u17bb\\u1793\\u17b6_\\u1780\\u1780\\u17d2\\u1780\\u178a\\u17b6_\\u179f\\u17b8\\u17a0\\u17b6_\\u1780\\u1789\\u17d2\\u1789\\u17b6_\\u178f\\u17bb\\u179b\\u17b6_\\u179c\\u17b7\\u1785\\u17d2\\u1786\\u17b7\\u1780\\u17b6_\\u1792\\u17d2\\u1793\\u17bc\".split(\"_\"),monthsShort:\"\\u1798\\u1780\\u179a\\u17b6_\\u1780\\u17bb\\u1798\\u17d2\\u1797\\u17c8_\\u1798\\u17b8\\u1793\\u17b6_\\u1798\\u17c1\\u179f\\u17b6_\\u17a7\\u179f\\u1797\\u17b6_\\u1798\\u17b7\\u1790\\u17bb\\u1793\\u17b6_\\u1780\\u1780\\u17d2\\u1780\\u178a\\u17b6_\\u179f\\u17b8\\u17a0\\u17b6_\\u1780\\u1789\\u17d2\\u1789\\u17b6_\\u178f\\u17bb\\u179b\\u17b6_\\u179c\\u17b7\\u1785\\u17d2\\u1786\\u17b7\\u1780\\u17b6_\\u1792\\u17d2\\u1793\\u17bc\".split(\"_\"),weekdays:\"\\u17a2\\u17b6\\u1791\\u17b7\\u178f\\u17d2\\u1799_\\u1785\\u17d0\\u1793\\u17d2\\u1791_\\u17a2\\u1784\\u17d2\\u1782\\u17b6\\u179a_\\u1796\\u17bb\\u1792_\\u1796\\u17d2\\u179a\\u17a0\\u179f\\u17d2\\u1794\\u178f\\u17b7\\u17cd_\\u179f\\u17bb\\u1780\\u17d2\\u179a_\\u179f\\u17c5\\u179a\\u17cd\".split(\"_\"),weekdaysShort:\"\\u17a2\\u17b6_\\u1785_\\u17a2_\\u1796_\\u1796\\u17d2\\u179a_\\u179f\\u17bb_\\u179f\".split(\"_\"),weekdaysMin:\"\\u17a2\\u17b6_\\u1785_\\u17a2_\\u1796_\\u1796\\u17d2\\u179a_\\u179f\\u17bb_\\u179f\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u1796\\u17d2\\u179a\\u17b9\\u1780|\\u179b\\u17d2\\u1784\\u17b6\\u1785/,isPM:function(e){return\"\\u179b\\u17d2\\u1784\\u17b6\\u1785\"===e},meridiem:function(e,t,n){return e<12?\"\\u1796\\u17d2\\u179a\\u17b9\\u1780\":\"\\u179b\\u17d2\\u1784\\u17b6\\u1785\"},calendar:{sameDay:\"[\\u1790\\u17d2\\u1784\\u17c3\\u1793\\u17c1\\u17c7 \\u1798\\u17c9\\u17c4\\u1784] LT\",nextDay:\"[\\u179f\\u17d2\\u17a2\\u17c2\\u1780 \\u1798\\u17c9\\u17c4\\u1784] LT\",nextWeek:\"dddd [\\u1798\\u17c9\\u17c4\\u1784] LT\",lastDay:\"[\\u1798\\u17d2\\u179f\\u17b7\\u179b\\u1798\\u17b7\\u1789 \\u1798\\u17c9\\u17c4\\u1784] LT\",lastWeek:\"dddd [\\u179f\\u1794\\u17d2\\u178f\\u17b6\\u17a0\\u17cd\\u1798\\u17bb\\u1793] [\\u1798\\u17c9\\u17c4\\u1784] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u1791\\u17c0\\u178f\",past:\"%s\\u1798\\u17bb\\u1793\",s:\"\\u1794\\u17c9\\u17bb\\u1793\\u17d2\\u1798\\u17b6\\u1793\\u179c\\u17b7\\u1793\\u17b6\\u1791\\u17b8\",ss:\"%d \\u179c\\u17b7\\u1793\\u17b6\\u1791\\u17b8\",m:\"\\u1798\\u17bd\\u1799\\u1793\\u17b6\\u1791\\u17b8\",mm:\"%d \\u1793\\u17b6\\u1791\\u17b8\",h:\"\\u1798\\u17bd\\u1799\\u1798\\u17c9\\u17c4\\u1784\",hh:\"%d \\u1798\\u17c9\\u17c4\\u1784\",d:\"\\u1798\\u17bd\\u1799\\u1790\\u17d2\\u1784\\u17c3\",dd:\"%d \\u1790\\u17d2\\u1784\\u17c3\",M:\"\\u1798\\u17bd\\u1799\\u1781\\u17c2\",MM:\"%d \\u1781\\u17c2\",y:\"\\u1798\\u17bd\\u1799\\u1786\\u17d2\\u1793\\u17b6\\u17c6\",yy:\"%d \\u1786\\u17d2\\u1793\\u17b6\\u17c6\"},dayOfMonthOrdinalParse:/\\u1791\\u17b8\\d{1,2}/,ordinal:\"\\u1791\\u17b8%d\",preparse:function(e){return e.replace(/[\\u17e1\\u17e2\\u17e3\\u17e4\\u17e5\\u17e6\\u17e7\\u17e8\\u17e9\\u17e0]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"7BjC\":function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={s:[\"m\\xf5ne sekundi\",\"m\\xf5ni sekund\",\"paar sekundit\"],ss:[e+\"sekundi\",e+\"sekundit\"],m:[\"\\xfche minuti\",\"\\xfcks minut\"],mm:[e+\" minuti\",e+\" minutit\"],h:[\"\\xfche tunni\",\"tund aega\",\"\\xfcks tund\"],hh:[e+\" tunni\",e+\" tundi\"],d:[\"\\xfche p\\xe4eva\",\"\\xfcks p\\xe4ev\"],M:[\"kuu aja\",\"kuu aega\",\"\\xfcks kuu\"],MM:[e+\" kuu\",e+\" kuud\"],y:[\"\\xfche aasta\",\"aasta\",\"\\xfcks aasta\"],yy:[e+\" aasta\",e+\" aastat\"]};return t?i[n][2]?i[n][2]:i[n][1]:r?i[n][0]:i[n][1]}e.defineLocale(\"et\",{months:\"jaanuar_veebruar_m\\xe4rts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember\".split(\"_\"),monthsShort:\"jaan_veebr_m\\xe4rts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets\".split(\"_\"),weekdays:\"p\\xfchap\\xe4ev_esmasp\\xe4ev_teisip\\xe4ev_kolmap\\xe4ev_neljap\\xe4ev_reede_laup\\xe4ev\".split(\"_\"),weekdaysShort:\"P_E_T_K_N_R_L\".split(\"_\"),weekdaysMin:\"P_E_T_K_N_R_L\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[T\\xe4na,] LT\",nextDay:\"[Homme,] LT\",nextWeek:\"[J\\xe4rgmine] dddd LT\",lastDay:\"[Eile,] LT\",lastWeek:\"[Eelmine] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s p\\xe4rast\",past:\"%s tagasi\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:\"%d p\\xe4eva\",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"7aV9\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"si\",{months:\"\\u0da2\\u0db1\\u0dc0\\u0dcf\\u0dbb\\u0dd2_\\u0db4\\u0dd9\\u0db6\\u0dbb\\u0dc0\\u0dcf\\u0dbb\\u0dd2_\\u0db8\\u0dcf\\u0dbb\\u0dca\\u0dad\\u0dd4_\\u0d85\\u0db4\\u0dca\\u200d\\u0dbb\\u0dda\\u0dbd\\u0dca_\\u0db8\\u0dd0\\u0dba\\u0dd2_\\u0da2\\u0dd6\\u0db1\\u0dd2_\\u0da2\\u0dd6\\u0dbd\\u0dd2_\\u0d85\\u0d9c\\u0ddd\\u0dc3\\u0dca\\u0dad\\u0dd4_\\u0dc3\\u0dd0\\u0db4\\u0dca\\u0dad\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca_\\u0d94\\u0d9a\\u0dca\\u0dad\\u0ddd\\u0db6\\u0dbb\\u0dca_\\u0db1\\u0ddc\\u0dc0\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca_\\u0daf\\u0dd9\\u0dc3\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca\".split(\"_\"),monthsShort:\"\\u0da2\\u0db1_\\u0db4\\u0dd9\\u0db6_\\u0db8\\u0dcf\\u0dbb\\u0dca_\\u0d85\\u0db4\\u0dca_\\u0db8\\u0dd0\\u0dba\\u0dd2_\\u0da2\\u0dd6\\u0db1\\u0dd2_\\u0da2\\u0dd6\\u0dbd\\u0dd2_\\u0d85\\u0d9c\\u0ddd_\\u0dc3\\u0dd0\\u0db4\\u0dca_\\u0d94\\u0d9a\\u0dca_\\u0db1\\u0ddc\\u0dc0\\u0dd0_\\u0daf\\u0dd9\\u0dc3\\u0dd0\".split(\"_\"),weekdays:\"\\u0d89\\u0dbb\\u0dd2\\u0daf\\u0dcf_\\u0dc3\\u0db3\\u0dd4\\u0daf\\u0dcf_\\u0d85\\u0d9f\\u0dc4\\u0dbb\\u0dd4\\u0dc0\\u0dcf\\u0daf\\u0dcf_\\u0db6\\u0daf\\u0dcf\\u0daf\\u0dcf_\\u0db6\\u0dca\\u200d\\u0dbb\\u0dc4\\u0dc3\\u0dca\\u0db4\\u0dad\\u0dd2\\u0db1\\u0dca\\u0daf\\u0dcf_\\u0dc3\\u0dd2\\u0d9a\\u0dd4\\u0dbb\\u0dcf\\u0daf\\u0dcf_\\u0dc3\\u0dd9\\u0db1\\u0dc3\\u0dd4\\u0dbb\\u0dcf\\u0daf\\u0dcf\".split(\"_\"),weekdaysShort:\"\\u0d89\\u0dbb\\u0dd2_\\u0dc3\\u0db3\\u0dd4_\\u0d85\\u0d9f_\\u0db6\\u0daf\\u0dcf_\\u0db6\\u0dca\\u200d\\u0dbb\\u0dc4_\\u0dc3\\u0dd2\\u0d9a\\u0dd4_\\u0dc3\\u0dd9\\u0db1\".split(\"_\"),weekdaysMin:\"\\u0d89_\\u0dc3_\\u0d85_\\u0db6_\\u0db6\\u0dca\\u200d\\u0dbb_\\u0dc3\\u0dd2_\\u0dc3\\u0dd9\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"a h:mm\",LTS:\"a h:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY MMMM D\",LLL:\"YYYY MMMM D, a h:mm\",LLLL:\"YYYY MMMM D [\\u0dc0\\u0dd0\\u0db1\\u0dd2] dddd, a h:mm:ss\"},calendar:{sameDay:\"[\\u0d85\\u0daf] LT[\\u0da7]\",nextDay:\"[\\u0dc4\\u0dd9\\u0da7] LT[\\u0da7]\",nextWeek:\"dddd LT[\\u0da7]\",lastDay:\"[\\u0d8a\\u0dba\\u0dda] LT[\\u0da7]\",lastWeek:\"[\\u0db4\\u0dc3\\u0dd4\\u0d9c\\u0dd2\\u0dba] dddd LT[\\u0da7]\",sameElse:\"L\"},relativeTime:{future:\"%s\\u0d9a\\u0dd2\\u0db1\\u0dca\",past:\"%s\\u0d9a\\u0da7 \\u0db4\\u0dd9\\u0dbb\",s:\"\\u0dad\\u0dad\\u0dca\\u0db4\\u0dbb \\u0d9a\\u0dd2\\u0dc4\\u0dd2\\u0db4\\u0dba\",ss:\"\\u0dad\\u0dad\\u0dca\\u0db4\\u0dbb %d\",m:\"\\u0db8\\u0dd2\\u0db1\\u0dd2\\u0dad\\u0dca\\u0dad\\u0dd4\\u0dc0\",mm:\"\\u0db8\\u0dd2\\u0db1\\u0dd2\\u0dad\\u0dca\\u0dad\\u0dd4 %d\",h:\"\\u0db4\\u0dd0\\u0dba\",hh:\"\\u0db4\\u0dd0\\u0dba %d\",d:\"\\u0daf\\u0dd2\\u0db1\\u0dba\",dd:\"\\u0daf\\u0dd2\\u0db1 %d\",M:\"\\u0db8\\u0dcf\\u0dc3\\u0dba\",MM:\"\\u0db8\\u0dcf\\u0dc3 %d\",y:\"\\u0dc0\\u0dc3\\u0dbb\",yy:\"\\u0dc0\\u0dc3\\u0dbb %d\"},dayOfMonthOrdinalParse:/\\d{1,2} \\u0dc0\\u0dd0\\u0db1\\u0dd2/,ordinal:function(e){return e+\" \\u0dc0\\u0dd0\\u0db1\\u0dd2\"},meridiemParse:/\\u0db4\\u0dd9\\u0dbb \\u0dc0\\u0dbb\\u0dd4|\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4|\\u0db4\\u0dd9.\\u0dc0|\\u0db4.\\u0dc0./,isPM:function(e){return\"\\u0db4.\\u0dc0.\"===e||\"\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4\"===e},meridiem:function(e,t,n){return e>11?n?\"\\u0db4.\\u0dc0.\":\"\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4\":n?\"\\u0db4\\u0dd9.\\u0dc0.\":\"\\u0db4\\u0dd9\\u0dbb \\u0dc0\\u0dbb\\u0dd4\"}})}(n(\"wd/R\"))},\"8/+R\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0a67\",2:\"\\u0a68\",3:\"\\u0a69\",4:\"\\u0a6a\",5:\"\\u0a6b\",6:\"\\u0a6c\",7:\"\\u0a6d\",8:\"\\u0a6e\",9:\"\\u0a6f\",0:\"\\u0a66\"},n={\"\\u0a67\":\"1\",\"\\u0a68\":\"2\",\"\\u0a69\":\"3\",\"\\u0a6a\":\"4\",\"\\u0a6b\":\"5\",\"\\u0a6c\":\"6\",\"\\u0a6d\":\"7\",\"\\u0a6e\":\"8\",\"\\u0a6f\":\"9\",\"\\u0a66\":\"0\"};e.defineLocale(\"pa-in\",{months:\"\\u0a1c\\u0a28\\u0a35\\u0a30\\u0a40_\\u0a2b\\u0a3c\\u0a30\\u0a35\\u0a30\\u0a40_\\u0a2e\\u0a3e\\u0a30\\u0a1a_\\u0a05\\u0a2a\\u0a4d\\u0a30\\u0a48\\u0a32_\\u0a2e\\u0a08_\\u0a1c\\u0a42\\u0a28_\\u0a1c\\u0a41\\u0a32\\u0a3e\\u0a08_\\u0a05\\u0a17\\u0a38\\u0a24_\\u0a38\\u0a24\\u0a70\\u0a2c\\u0a30_\\u0a05\\u0a15\\u0a24\\u0a42\\u0a2c\\u0a30_\\u0a28\\u0a35\\u0a70\\u0a2c\\u0a30_\\u0a26\\u0a38\\u0a70\\u0a2c\\u0a30\".split(\"_\"),monthsShort:\"\\u0a1c\\u0a28\\u0a35\\u0a30\\u0a40_\\u0a2b\\u0a3c\\u0a30\\u0a35\\u0a30\\u0a40_\\u0a2e\\u0a3e\\u0a30\\u0a1a_\\u0a05\\u0a2a\\u0a4d\\u0a30\\u0a48\\u0a32_\\u0a2e\\u0a08_\\u0a1c\\u0a42\\u0a28_\\u0a1c\\u0a41\\u0a32\\u0a3e\\u0a08_\\u0a05\\u0a17\\u0a38\\u0a24_\\u0a38\\u0a24\\u0a70\\u0a2c\\u0a30_\\u0a05\\u0a15\\u0a24\\u0a42\\u0a2c\\u0a30_\\u0a28\\u0a35\\u0a70\\u0a2c\\u0a30_\\u0a26\\u0a38\\u0a70\\u0a2c\\u0a30\".split(\"_\"),weekdays:\"\\u0a10\\u0a24\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a4b\\u0a2e\\u0a35\\u0a3e\\u0a30_\\u0a2e\\u0a70\\u0a17\\u0a32\\u0a35\\u0a3e\\u0a30_\\u0a2c\\u0a41\\u0a27\\u0a35\\u0a3e\\u0a30_\\u0a35\\u0a40\\u0a30\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a71\\u0a15\\u0a30\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\\u0a1a\\u0a30\\u0a35\\u0a3e\\u0a30\".split(\"_\"),weekdaysShort:\"\\u0a10\\u0a24_\\u0a38\\u0a4b\\u0a2e_\\u0a2e\\u0a70\\u0a17\\u0a32_\\u0a2c\\u0a41\\u0a27_\\u0a35\\u0a40\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a15\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\".split(\"_\"),weekdaysMin:\"\\u0a10\\u0a24_\\u0a38\\u0a4b\\u0a2e_\\u0a2e\\u0a70\\u0a17\\u0a32_\\u0a2c\\u0a41\\u0a27_\\u0a35\\u0a40\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a15\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0a35\\u0a1c\\u0a47\",LTS:\"A h:mm:ss \\u0a35\\u0a1c\\u0a47\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0a35\\u0a1c\\u0a47\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0a35\\u0a1c\\u0a47\"},calendar:{sameDay:\"[\\u0a05\\u0a1c] LT\",nextDay:\"[\\u0a15\\u0a32] LT\",nextWeek:\"[\\u0a05\\u0a17\\u0a32\\u0a3e] dddd, LT\",lastDay:\"[\\u0a15\\u0a32] LT\",lastWeek:\"[\\u0a2a\\u0a3f\\u0a1b\\u0a32\\u0a47] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0a35\\u0a3f\\u0a71\\u0a1a\",past:\"%s \\u0a2a\\u0a3f\\u0a1b\\u0a32\\u0a47\",s:\"\\u0a15\\u0a41\\u0a1d \\u0a38\\u0a15\\u0a3f\\u0a70\\u0a1f\",ss:\"%d \\u0a38\\u0a15\\u0a3f\\u0a70\\u0a1f\",m:\"\\u0a07\\u0a15 \\u0a2e\\u0a3f\\u0a70\\u0a1f\",mm:\"%d \\u0a2e\\u0a3f\\u0a70\\u0a1f\",h:\"\\u0a07\\u0a71\\u0a15 \\u0a18\\u0a70\\u0a1f\\u0a3e\",hh:\"%d \\u0a18\\u0a70\\u0a1f\\u0a47\",d:\"\\u0a07\\u0a71\\u0a15 \\u0a26\\u0a3f\\u0a28\",dd:\"%d \\u0a26\\u0a3f\\u0a28\",M:\"\\u0a07\\u0a71\\u0a15 \\u0a2e\\u0a39\\u0a40\\u0a28\\u0a3e\",MM:\"%d \\u0a2e\\u0a39\\u0a40\\u0a28\\u0a47\",y:\"\\u0a07\\u0a71\\u0a15 \\u0a38\\u0a3e\\u0a32\",yy:\"%d \\u0a38\\u0a3e\\u0a32\"},preparse:function(e){return e.replace(/[\\u0a67\\u0a68\\u0a69\\u0a6a\\u0a6b\\u0a6c\\u0a6d\\u0a6e\\u0a6f\\u0a66]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0a30\\u0a3e\\u0a24|\\u0a38\\u0a35\\u0a47\\u0a30|\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30|\\u0a38\\u0a3c\\u0a3e\\u0a2e/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0a30\\u0a3e\\u0a24\"===t?e<4?e:e+12:\"\\u0a38\\u0a35\\u0a47\\u0a30\"===t?e:\"\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30\"===t?e>=10?e:e+12:\"\\u0a38\\u0a3c\\u0a3e\\u0a2e\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0a30\\u0a3e\\u0a24\":e<10?\"\\u0a38\\u0a35\\u0a47\\u0a30\":e<17?\"\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30\":e<20?\"\\u0a38\\u0a3c\\u0a3e\\u0a2e\":\"\\u0a30\\u0a3e\\u0a24\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"8mBD\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt\",{months:\"Janeiro_Fevereiro_Mar\\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingo_Segunda-feira_Ter\\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\\xe1bado\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ter_Qua_Qui_Sex_S\\xe1b\".split(\"_\"),weekdaysMin:\"Do_2\\xaa_3\\xaa_4\\xaa_5\\xaa_6\\xaa_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY HH:mm\"},calendar:{sameDay:\"[Hoje \\xe0s] LT\",nextDay:\"[Amanh\\xe3 \\xe0s] LT\",nextWeek:\"dddd [\\xe0s] LT\",lastDay:\"[Ontem \\xe0s] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[\\xdaltimo] dddd [\\xe0s] LT\":\"[\\xdaltima] dddd [\\xe0s] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"h\\xe1 %s\",s:\"segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",M:\"um m\\xeas\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"9rRi\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"gd\",{months:[\"Am Faoilleach\",\"An Gearran\",\"Am M\\xe0rt\",\"An Giblean\",\"An C\\xe8itean\",\"An t-\\xd2gmhios\",\"An t-Iuchar\",\"An L\\xf9nastal\",\"An t-Sultain\",\"An D\\xe0mhair\",\"An t-Samhain\",\"An D\\xf9bhlachd\"],monthsShort:[\"Faoi\",\"Gear\",\"M\\xe0rt\",\"Gibl\",\"C\\xe8it\",\"\\xd2gmh\",\"Iuch\",\"L\\xf9n\",\"Sult\",\"D\\xe0mh\",\"Samh\",\"D\\xf9bh\"],monthsParseExact:!0,weekdays:[\"Did\\xf2mhnaich\",\"Diluain\",\"Dim\\xe0irt\",\"Diciadain\",\"Diardaoin\",\"Dihaoine\",\"Disathairne\"],weekdaysShort:[\"Did\",\"Dil\",\"Dim\",\"Dic\",\"Dia\",\"Dih\",\"Dis\"],weekdaysMin:[\"D\\xf2\",\"Lu\",\"M\\xe0\",\"Ci\",\"Ar\",\"Ha\",\"Sa\"],longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[An-diugh aig] LT\",nextDay:\"[A-m\\xe0ireach aig] LT\",nextWeek:\"dddd [aig] LT\",lastDay:\"[An-d\\xe8 aig] LT\",lastWeek:\"dddd [seo chaidh] [aig] LT\",sameElse:\"L\"},relativeTime:{future:\"ann an %s\",past:\"bho chionn %s\",s:\"beagan diogan\",ss:\"%d diogan\",m:\"mionaid\",mm:\"%d mionaidean\",h:\"uair\",hh:\"%d uairean\",d:\"latha\",dd:\"%d latha\",M:\"m\\xecos\",MM:\"%d m\\xecosan\",y:\"bliadhna\",yy:\"%d bliadhna\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"A+xa\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cv\",{months:\"\\u043a\\u04d1\\u0440\\u043b\\u0430\\u0447_\\u043d\\u0430\\u0440\\u04d1\\u0441_\\u043f\\u0443\\u0448_\\u0430\\u043a\\u0430_\\u043c\\u0430\\u0439_\\u04ab\\u04d7\\u0440\\u0442\\u043c\\u0435_\\u0443\\u0442\\u04d1_\\u04ab\\u0443\\u0440\\u043b\\u0430_\\u0430\\u0432\\u04d1\\u043d_\\u044e\\u043f\\u0430_\\u0447\\u04f3\\u043a_\\u0440\\u0430\\u0448\\u0442\\u0430\\u0432\".split(\"_\"),monthsShort:\"\\u043a\\u04d1\\u0440_\\u043d\\u0430\\u0440_\\u043f\\u0443\\u0448_\\u0430\\u043a\\u0430_\\u043c\\u0430\\u0439_\\u04ab\\u04d7\\u0440_\\u0443\\u0442\\u04d1_\\u04ab\\u0443\\u0440_\\u0430\\u0432\\u043d_\\u044e\\u043f\\u0430_\\u0447\\u04f3\\u043a_\\u0440\\u0430\\u0448\".split(\"_\"),weekdays:\"\\u0432\\u044b\\u0440\\u0441\\u0430\\u0440\\u043d\\u0438\\u043a\\u0443\\u043d_\\u0442\\u0443\\u043d\\u0442\\u0438\\u043a\\u0443\\u043d_\\u044b\\u0442\\u043b\\u0430\\u0440\\u0438\\u043a\\u0443\\u043d_\\u044e\\u043d\\u043a\\u0443\\u043d_\\u043a\\u04d7\\u04ab\\u043d\\u0435\\u0440\\u043d\\u0438\\u043a\\u0443\\u043d_\\u044d\\u0440\\u043d\\u0435\\u043a\\u0443\\u043d_\\u0448\\u04d1\\u043c\\u0430\\u0442\\u043a\\u0443\\u043d\".split(\"_\"),weekdaysShort:\"\\u0432\\u044b\\u0440_\\u0442\\u0443\\u043d_\\u044b\\u0442\\u043b_\\u044e\\u043d_\\u043a\\u04d7\\u04ab_\\u044d\\u0440\\u043d_\\u0448\\u04d1\\u043c\".split(\"_\"),weekdaysMin:\"\\u0432\\u0440_\\u0442\\u043d_\\u044b\\u0442_\\u044e\\u043d_\\u043a\\u04ab_\\u044d\\u0440_\\u0448\\u043c\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7]\",LLL:\"YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7], HH:mm\",LLLL:\"dddd, YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7], HH:mm\"},calendar:{sameDay:\"[\\u041f\\u0430\\u044f\\u043d] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",nextDay:\"[\\u042b\\u0440\\u0430\\u043d] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",lastDay:\"[\\u04d6\\u043d\\u0435\\u0440] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",nextWeek:\"[\\u04aa\\u0438\\u0442\\u0435\\u0441] dddd LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",lastWeek:\"[\\u0418\\u0440\\u0442\\u043d\\u04d7] dddd LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",sameElse:\"L\"},relativeTime:{future:function(e){return e+(/\\u0441\\u0435\\u0445\\u0435\\u0442$/i.exec(e)?\"\\u0440\\u0435\\u043d\":/\\u04ab\\u0443\\u043b$/i.exec(e)?\"\\u0442\\u0430\\u043d\":\"\\u0440\\u0430\\u043d\")},past:\"%s \\u043a\\u0430\\u044f\\u043b\\u043b\\u0430\",s:\"\\u043f\\u04d7\\u0440-\\u0438\\u043a \\u04ab\\u0435\\u043a\\u043a\\u0443\\u043d\\u0442\",ss:\"%d \\u04ab\\u0435\\u043a\\u043a\\u0443\\u043d\\u0442\",m:\"\\u043f\\u04d7\\u0440 \\u043c\\u0438\\u043d\\u0443\\u0442\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\",h:\"\\u043f\\u04d7\\u0440 \\u0441\\u0435\\u0445\\u0435\\u0442\",hh:\"%d \\u0441\\u0435\\u0445\\u0435\\u0442\",d:\"\\u043f\\u04d7\\u0440 \\u043a\\u0443\\u043d\",dd:\"%d \\u043a\\u0443\\u043d\",M:\"\\u043f\\u04d7\\u0440 \\u0443\\u0439\\u04d1\\u0445\",MM:\"%d \\u0443\\u0439\\u04d1\\u0445\",y:\"\\u043f\\u04d7\\u0440 \\u04ab\\u0443\\u043b\",yy:\"%d \\u04ab\\u0443\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-\\u043c\\u04d7\\u0448/,ordinal:\"%d-\\u043c\\u04d7\\u0448\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},AQ68:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz-latn\",{months:\"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr\".split(\"_\"),monthsShort:\"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek\".split(\"_\"),weekdays:\"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba\".split(\"_\"),weekdaysShort:\"Yak_Dush_Sesh_Chor_Pay_Jum_Shan\".split(\"_\"),weekdaysMin:\"Ya_Du_Se_Cho_Pa_Ju_Sha\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[Bugun soat] LT [da]\",nextDay:\"[Ertaga] LT [da]\",nextWeek:\"dddd [kuni soat] LT [da]\",lastDay:\"[Kecha soat] LT [da]\",lastWeek:\"[O'tgan] dddd [kuni soat] LT [da]\",sameElse:\"L\"},relativeTime:{future:\"Yaqin %s ichida\",past:\"Bir necha %s oldin\",s:\"soniya\",ss:\"%d soniya\",m:\"bir daqiqa\",mm:\"%d daqiqa\",h:\"bir soat\",hh:\"%d soat\",d:\"bir kun\",dd:\"%d kun\",M:\"bir oy\",MM:\"%d oy\",y:\"bir yil\",yy:\"%d yil\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},AvvY:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ml\",{months:\"\\u0d1c\\u0d28\\u0d41\\u0d35\\u0d30\\u0d3f_\\u0d2b\\u0d46\\u0d2c\\u0d4d\\u0d30\\u0d41\\u0d35\\u0d30\\u0d3f_\\u0d2e\\u0d3e\\u0d7c\\u0d1a\\u0d4d\\u0d1a\\u0d4d_\\u0d0f\\u0d2a\\u0d4d\\u0d30\\u0d3f\\u0d7d_\\u0d2e\\u0d47\\u0d2f\\u0d4d_\\u0d1c\\u0d42\\u0d7a_\\u0d1c\\u0d42\\u0d32\\u0d48_\\u0d13\\u0d17\\u0d38\\u0d4d\\u0d31\\u0d4d\\u0d31\\u0d4d_\\u0d38\\u0d46\\u0d2a\\u0d4d\\u0d31\\u0d4d\\u0d31\\u0d02\\u0d2c\\u0d7c_\\u0d12\\u0d15\\u0d4d\\u0d1f\\u0d4b\\u0d2c\\u0d7c_\\u0d28\\u0d35\\u0d02\\u0d2c\\u0d7c_\\u0d21\\u0d3f\\u0d38\\u0d02\\u0d2c\\u0d7c\".split(\"_\"),monthsShort:\"\\u0d1c\\u0d28\\u0d41._\\u0d2b\\u0d46\\u0d2c\\u0d4d\\u0d30\\u0d41._\\u0d2e\\u0d3e\\u0d7c._\\u0d0f\\u0d2a\\u0d4d\\u0d30\\u0d3f._\\u0d2e\\u0d47\\u0d2f\\u0d4d_\\u0d1c\\u0d42\\u0d7a_\\u0d1c\\u0d42\\u0d32\\u0d48._\\u0d13\\u0d17._\\u0d38\\u0d46\\u0d2a\\u0d4d\\u0d31\\u0d4d\\u0d31._\\u0d12\\u0d15\\u0d4d\\u0d1f\\u0d4b._\\u0d28\\u0d35\\u0d02._\\u0d21\\u0d3f\\u0d38\\u0d02.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0d1e\\u0d3e\\u0d2f\\u0d31\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d24\\u0d3f\\u0d19\\u0d4d\\u0d15\\u0d33\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d1a\\u0d4a\\u0d35\\u0d4d\\u0d35\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d2c\\u0d41\\u0d27\\u0d28\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d35\\u0d4d\\u0d2f\\u0d3e\\u0d34\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d35\\u0d46\\u0d33\\u0d4d\\u0d33\\u0d3f\\u0d2f\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d36\\u0d28\\u0d3f\\u0d2f\\u0d3e\\u0d34\\u0d4d\\u0d1a\".split(\"_\"),weekdaysShort:\"\\u0d1e\\u0d3e\\u0d2f\\u0d7c_\\u0d24\\u0d3f\\u0d19\\u0d4d\\u0d15\\u0d7e_\\u0d1a\\u0d4a\\u0d35\\u0d4d\\u0d35_\\u0d2c\\u0d41\\u0d27\\u0d7b_\\u0d35\\u0d4d\\u0d2f\\u0d3e\\u0d34\\u0d02_\\u0d35\\u0d46\\u0d33\\u0d4d\\u0d33\\u0d3f_\\u0d36\\u0d28\\u0d3f\".split(\"_\"),weekdaysMin:\"\\u0d1e\\u0d3e_\\u0d24\\u0d3f_\\u0d1a\\u0d4a_\\u0d2c\\u0d41_\\u0d35\\u0d4d\\u0d2f\\u0d3e_\\u0d35\\u0d46_\\u0d36\".split(\"_\"),longDateFormat:{LT:\"A h:mm -\\u0d28\\u0d41\",LTS:\"A h:mm:ss -\\u0d28\\u0d41\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm -\\u0d28\\u0d41\",LLLL:\"dddd, D MMMM YYYY, A h:mm -\\u0d28\\u0d41\"},calendar:{sameDay:\"[\\u0d07\\u0d28\\u0d4d\\u0d28\\u0d4d] LT\",nextDay:\"[\\u0d28\\u0d3e\\u0d33\\u0d46] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0d07\\u0d28\\u0d4d\\u0d28\\u0d32\\u0d46] LT\",lastWeek:\"[\\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\",past:\"%s \\u0d2e\\u0d41\\u0d7b\\u0d2a\\u0d4d\",s:\"\\u0d05\\u0d7d\\u0d2a \\u0d28\\u0d3f\\u0d2e\\u0d3f\\u0d37\\u0d19\\u0d4d\\u0d19\\u0d7e\",ss:\"%d \\u0d38\\u0d46\\u0d15\\u0d4d\\u0d15\\u0d7b\\u0d21\\u0d4d\",m:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d3f\\u0d28\\u0d3f\\u0d31\\u0d4d\\u0d31\\u0d4d\",mm:\"%d \\u0d2e\\u0d3f\\u0d28\\u0d3f\\u0d31\\u0d4d\\u0d31\\u0d4d\",h:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d23\\u0d3f\\u0d15\\u0d4d\\u0d15\\u0d42\\u0d7c\",hh:\"%d \\u0d2e\\u0d23\\u0d3f\\u0d15\\u0d4d\\u0d15\\u0d42\\u0d7c\",d:\"\\u0d12\\u0d30\\u0d41 \\u0d26\\u0d3f\\u0d35\\u0d38\\u0d02\",dd:\"%d \\u0d26\\u0d3f\\u0d35\\u0d38\\u0d02\",M:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d3e\\u0d38\\u0d02\",MM:\"%d \\u0d2e\\u0d3e\\u0d38\\u0d02\",y:\"\\u0d12\\u0d30\\u0d41 \\u0d35\\u0d7c\\u0d37\\u0d02\",yy:\"%d \\u0d35\\u0d7c\\u0d37\\u0d02\"},meridiemParse:/\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f|\\u0d30\\u0d3e\\u0d35\\u0d3f\\u0d32\\u0d46|\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d|\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02|\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f/i,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\"===t&&e>=4||\"\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\"===t||\"\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\":e<12?\"\\u0d30\\u0d3e\\u0d35\\u0d3f\\u0d32\\u0d46\":e<17?\"\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\":e<20?\"\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02\":\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\"}})}(n(\"wd/R\"))},B55N:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ja\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u65e5\\u66dc\\u65e5_\\u6708\\u66dc\\u65e5_\\u706b\\u66dc\\u65e5_\\u6c34\\u66dc\\u65e5_\\u6728\\u66dc\\u65e5_\\u91d1\\u66dc\\u65e5_\\u571f\\u66dc\\u65e5\".split(\"_\"),weekdaysShort:\"\\u65e5_\\u6708_\\u706b_\\u6c34_\\u6728_\\u91d1_\\u571f\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u6708_\\u706b_\\u6c34_\\u6728_\\u91d1_\\u571f\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5 dddd HH:mm\",l:\"YYYY/MM/DD\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5(ddd) HH:mm\"},meridiemParse:/\\u5348\\u524d|\\u5348\\u5f8c/i,isPM:function(e){return\"\\u5348\\u5f8c\"===e},meridiem:function(e,t,n){return e<12?\"\\u5348\\u524d\":\"\\u5348\\u5f8c\"},calendar:{sameDay:\"[\\u4eca\\u65e5] LT\",nextDay:\"[\\u660e\\u65e5] LT\",nextWeek:function(e){return e.week()12?e:e+12:\"sanje\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"rati\":e<12?\"sokalli\":e<16?\"donparam\":e<20?\"sanje\":\"rati\"}})}(n(\"wd/R\"))},Dkky:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ch\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Dmvi:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-au\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},DoHr:function(e,t,n){!function(e){\"use strict\";var t={1:\"'inci\",5:\"'inci\",8:\"'inci\",70:\"'inci\",80:\"'inci\",2:\"'nci\",7:\"'nci\",20:\"'nci\",50:\"'nci\",3:\"'\\xfcnc\\xfc\",4:\"'\\xfcnc\\xfc\",100:\"'\\xfcnc\\xfc\",6:\"'nc\\u0131\",9:\"'uncu\",10:\"'uncu\",30:\"'uncu\",60:\"'\\u0131nc\\u0131\",90:\"'\\u0131nc\\u0131\"};e.defineLocale(\"tr\",{months:\"Ocak_\\u015eubat_Mart_Nisan_May\\u0131s_Haziran_Temmuz_A\\u011fustos_Eyl\\xfcl_Ekim_Kas\\u0131m_Aral\\u0131k\".split(\"_\"),monthsShort:\"Oca_\\u015eub_Mar_Nis_May_Haz_Tem_A\\u011fu_Eyl_Eki_Kas_Ara\".split(\"_\"),weekdays:\"Pazar_Pazartesi_Sal\\u0131_\\xc7ar\\u015famba_Per\\u015fembe_Cuma_Cumartesi\".split(\"_\"),weekdaysShort:\"Paz_Pts_Sal_\\xc7ar_Per_Cum_Cts\".split(\"_\"),weekdaysMin:\"Pz_Pt_Sa_\\xc7a_Pe_Cu_Ct\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bug\\xfcn saat] LT\",nextDay:\"[yar\\u0131n saat] LT\",nextWeek:\"[gelecek] dddd [saat] LT\",lastDay:\"[d\\xfcn] LT\",lastWeek:\"[ge\\xe7en] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s \\xf6nce\",s:\"birka\\xe7 saniye\",ss:\"%d saniye\",m:\"bir dakika\",mm:\"%d dakika\",h:\"bir saat\",hh:\"%d saat\",d:\"bir g\\xfcn\",dd:\"%d g\\xfcn\",M:\"bir ay\",MM:\"%d ay\",y:\"bir y\\u0131l\",yy:\"%d y\\u0131l\"},ordinal:function(e,n){switch(n){case\"d\":case\"D\":case\"Do\":case\"DD\":return e;default:if(0===e)return e+\"'\\u0131nc\\u0131\";var r=e%10;return e+(t[r]||t[e%100-r]||t[e>=100?100:null])}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},DxQv:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"da\",{months:\"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"s\\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\\xf8rdag\".split(\"_\"),weekdaysShort:\"s\\xf8n_man_tir_ons_tor_fre_l\\xf8r\".split(\"_\"),weekdaysMin:\"s\\xf8_ma_ti_on_to_fr_l\\xf8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd [d.] D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"p\\xe5 dddd [kl.] LT\",lastDay:\"[i g\\xe5r kl.] LT\",lastWeek:\"[i] dddd[s kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"f\\xe5 sekunder\",ss:\"%d sekunder\",m:\"et minut\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dage\",M:\"en m\\xe5ned\",MM:\"%d m\\xe5neder\",y:\"et \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},Dzi0:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tl-ph\",{months:\"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre\".split(\"_\"),monthsShort:\"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis\".split(\"_\"),weekdays:\"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado\".split(\"_\"),weekdaysShort:\"Lin_Lun_Mar_Miy_Huw_Biy_Sab\".split(\"_\"),weekdaysMin:\"Li_Lu_Ma_Mi_Hu_Bi_Sab\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"MM/D/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY HH:mm\",LLLL:\"dddd, MMMM DD, YYYY HH:mm\"},calendar:{sameDay:\"LT [ngayong araw]\",nextDay:\"[Bukas ng] LT\",nextWeek:\"LT [sa susunod na] dddd\",lastDay:\"LT [kahapon]\",lastWeek:\"LT [noong nakaraang] dddd\",sameElse:\"L\"},relativeTime:{future:\"sa loob ng %s\",past:\"%s ang nakalipas\",s:\"ilang segundo\",ss:\"%d segundo\",m:\"isang minuto\",mm:\"%d minuto\",h:\"isang oras\",hh:\"%d oras\",d:\"isang araw\",dd:\"%d araw\",M:\"isang buwan\",MM:\"%d buwan\",y:\"isang taon\",yy:\"%d taon\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"E+lV\":function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430\",\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0435\",\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\"],m:[\"\\u0458\\u0435\\u0434\\u0430\\u043d \\u043c\\u0438\\u043d\\u0443\\u0442\",\"\\u0458\\u0435\\u0434\\u043d\\u0435 \\u043c\\u0438\\u043d\\u0443\\u0442\\u0435\"],mm:[\"\\u043c\\u0438\\u043d\\u0443\\u0442\",\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0435\",\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\"],h:[\"\\u0458\\u0435\\u0434\\u0430\\u043d \\u0441\\u0430\\u0442\",\"\\u0458\\u0435\\u0434\\u043d\\u043e\\u0433 \\u0441\\u0430\\u0442\\u0430\"],hh:[\"\\u0441\\u0430\\u0442\",\"\\u0441\\u0430\\u0442\\u0430\",\"\\u0441\\u0430\\u0442\\u0438\"],dd:[\"\\u0434\\u0430\\u043d\",\"\\u0434\\u0430\\u043d\\u0430\",\"\\u0434\\u0430\\u043d\\u0430\"],MM:[\"\\u043c\\u0435\\u0441\\u0435\\u0446\",\"\\u043c\\u0435\\u0441\\u0435\\u0446\\u0430\",\"\\u043c\\u0435\\u0441\\u0435\\u0446\\u0438\"],yy:[\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0435\",\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,r){var i=t.words[r];return 1===r.length?n?i[0]:i[1]:e+\" \"+t.correctGrammaticalCase(e,i)}};e.defineLocale(\"sr-cyrl\",{months:\"\\u0458\\u0430\\u043d\\u0443\\u0430\\u0440_\\u0444\\u0435\\u0431\\u0440\\u0443\\u0430\\u0440_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0431\\u0430\\u0440_\\u043e\\u043a\\u0442\\u043e\\u0431\\u0430\\u0440_\\u043d\\u043e\\u0432\\u0435\\u043c\\u0431\\u0430\\u0440_\\u0434\\u0435\\u0446\\u0435\\u043c\\u0431\\u0430\\u0440\".split(\"_\"),monthsShort:\"\\u0458\\u0430\\u043d._\\u0444\\u0435\\u0431._\\u043c\\u0430\\u0440._\\u0430\\u043f\\u0440._\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043f._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u0432._\\u0434\\u0435\\u0446.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u0459\\u0430_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u0459\\u0430\\u043a_\\u0443\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u0430\\u043a_\\u043f\\u0435\\u0442\\u0430\\u043a_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434._\\u043f\\u043e\\u043d._\\u0443\\u0442\\u043e._\\u0441\\u0440\\u0435._\\u0447\\u0435\\u0442._\\u043f\\u0435\\u0442._\\u0441\\u0443\\u0431.\".split(\"_\"),weekdaysMin:\"\\u043d\\u0435_\\u043f\\u043e_\\u0443\\u0442_\\u0441\\u0440_\\u0447\\u0435_\\u043f\\u0435_\\u0441\\u0443\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0434\\u0430\\u043d\\u0430\\u0441 \\u0443] LT\",nextDay:\"[\\u0441\\u0443\\u0442\\u0440\\u0430 \\u0443] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[\\u0443] [\\u043d\\u0435\\u0434\\u0435\\u0459\\u0443] [\\u0443] LT\";case 3:return\"[\\u0443] [\\u0441\\u0440\\u0435\\u0434\\u0443] [\\u0443] LT\";case 6:return\"[\\u0443] [\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443] [\\u0443] LT\";case 1:case 2:case 4:case 5:return\"[\\u0443] dddd [\\u0443] LT\"}},lastDay:\"[\\u0458\\u0443\\u0447\\u0435 \\u0443] LT\",lastWeek:function(){return[\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u043d\\u0435\\u0434\\u0435\\u0459\\u0435] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u0459\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u0443\\u0442\\u043e\\u0440\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u0441\\u0440\\u0435\\u0434\\u0435] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u043f\\u0435\\u0442\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u0441\\u0443\\u0431\\u043e\\u0442\\u0435] [\\u0443] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"\\u0437\\u0430 %s\",past:\"\\u043f\\u0440\\u0435 %s\",s:\"\\u043d\\u0435\\u043a\\u043e\\u043b\\u0438\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"\\u0434\\u0430\\u043d\",dd:t.translate,M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:t.translate,y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},EOgW:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"th\",{months:\"\\u0e21\\u0e01\\u0e23\\u0e32\\u0e04\\u0e21_\\u0e01\\u0e38\\u0e21\\u0e20\\u0e32\\u0e1e\\u0e31\\u0e19\\u0e18\\u0e4c_\\u0e21\\u0e35\\u0e19\\u0e32\\u0e04\\u0e21_\\u0e40\\u0e21\\u0e29\\u0e32\\u0e22\\u0e19_\\u0e1e\\u0e24\\u0e29\\u0e20\\u0e32\\u0e04\\u0e21_\\u0e21\\u0e34\\u0e16\\u0e38\\u0e19\\u0e32\\u0e22\\u0e19_\\u0e01\\u0e23\\u0e01\\u0e0e\\u0e32\\u0e04\\u0e21_\\u0e2a\\u0e34\\u0e07\\u0e2b\\u0e32\\u0e04\\u0e21_\\u0e01\\u0e31\\u0e19\\u0e22\\u0e32\\u0e22\\u0e19_\\u0e15\\u0e38\\u0e25\\u0e32\\u0e04\\u0e21_\\u0e1e\\u0e24\\u0e28\\u0e08\\u0e34\\u0e01\\u0e32\\u0e22\\u0e19_\\u0e18\\u0e31\\u0e19\\u0e27\\u0e32\\u0e04\\u0e21\".split(\"_\"),monthsShort:\"\\u0e21.\\u0e04._\\u0e01.\\u0e1e._\\u0e21\\u0e35.\\u0e04._\\u0e40\\u0e21.\\u0e22._\\u0e1e.\\u0e04._\\u0e21\\u0e34.\\u0e22._\\u0e01.\\u0e04._\\u0e2a.\\u0e04._\\u0e01.\\u0e22._\\u0e15.\\u0e04._\\u0e1e.\\u0e22._\\u0e18.\\u0e04.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0e2d\\u0e32\\u0e17\\u0e34\\u0e15\\u0e22\\u0e4c_\\u0e08\\u0e31\\u0e19\\u0e17\\u0e23\\u0e4c_\\u0e2d\\u0e31\\u0e07\\u0e04\\u0e32\\u0e23_\\u0e1e\\u0e38\\u0e18_\\u0e1e\\u0e24\\u0e2b\\u0e31\\u0e2a\\u0e1a\\u0e14\\u0e35_\\u0e28\\u0e38\\u0e01\\u0e23\\u0e4c_\\u0e40\\u0e2a\\u0e32\\u0e23\\u0e4c\".split(\"_\"),weekdaysShort:\"\\u0e2d\\u0e32\\u0e17\\u0e34\\u0e15\\u0e22\\u0e4c_\\u0e08\\u0e31\\u0e19\\u0e17\\u0e23\\u0e4c_\\u0e2d\\u0e31\\u0e07\\u0e04\\u0e32\\u0e23_\\u0e1e\\u0e38\\u0e18_\\u0e1e\\u0e24\\u0e2b\\u0e31\\u0e2a_\\u0e28\\u0e38\\u0e01\\u0e23\\u0e4c_\\u0e40\\u0e2a\\u0e32\\u0e23\\u0e4c\".split(\"_\"),weekdaysMin:\"\\u0e2d\\u0e32._\\u0e08._\\u0e2d._\\u0e1e._\\u0e1e\\u0e24._\\u0e28._\\u0e2a.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY \\u0e40\\u0e27\\u0e25\\u0e32 H:mm\",LLLL:\"\\u0e27\\u0e31\\u0e19dddd\\u0e17\\u0e35\\u0e48 D MMMM YYYY \\u0e40\\u0e27\\u0e25\\u0e32 H:mm\"},meridiemParse:/\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07|\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07/,isPM:function(e){return\"\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\"===e},meridiem:function(e,t,n){return e<12?\"\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\":\"\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\"},calendar:{sameDay:\"[\\u0e27\\u0e31\\u0e19\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",nextDay:\"[\\u0e1e\\u0e23\\u0e38\\u0e48\\u0e07\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",nextWeek:\"dddd[\\u0e2b\\u0e19\\u0e49\\u0e32 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",lastDay:\"[\\u0e40\\u0e21\\u0e37\\u0e48\\u0e2d\\u0e27\\u0e32\\u0e19\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",lastWeek:\"[\\u0e27\\u0e31\\u0e19]dddd[\\u0e17\\u0e35\\u0e48\\u0e41\\u0e25\\u0e49\\u0e27 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0e2d\\u0e35\\u0e01 %s\",past:\"%s\\u0e17\\u0e35\\u0e48\\u0e41\\u0e25\\u0e49\\u0e27\",s:\"\\u0e44\\u0e21\\u0e48\\u0e01\\u0e35\\u0e48\\u0e27\\u0e34\\u0e19\\u0e32\\u0e17\\u0e35\",ss:\"%d \\u0e27\\u0e34\\u0e19\\u0e32\\u0e17\\u0e35\",m:\"1 \\u0e19\\u0e32\\u0e17\\u0e35\",mm:\"%d \\u0e19\\u0e32\\u0e17\\u0e35\",h:\"1 \\u0e0a\\u0e31\\u0e48\\u0e27\\u0e42\\u0e21\\u0e07\",hh:\"%d \\u0e0a\\u0e31\\u0e48\\u0e27\\u0e42\\u0e21\\u0e07\",d:\"1 \\u0e27\\u0e31\\u0e19\",dd:\"%d \\u0e27\\u0e31\\u0e19\",M:\"1 \\u0e40\\u0e14\\u0e37\\u0e2d\\u0e19\",MM:\"%d \\u0e40\\u0e14\\u0e37\\u0e2d\\u0e19\",y:\"1 \\u0e1b\\u0e35\",yy:\"%d \\u0e1b\\u0e35\"}})}(n(\"wd/R\"))},G0Uy:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mt\",{months:\"Jannar_Frar_Marzu_April_Mejju_\\u0120unju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Di\\u010bembru\".split(\"_\"),monthsShort:\"Jan_Fra_Mar_Apr_Mej_\\u0120un_Lul_Aww_Set_Ott_Nov_Di\\u010b\".split(\"_\"),weekdays:\"Il-\\u0126add_It-Tnejn_It-Tlieta_L-Erbg\\u0127a_Il-\\u0126amis_Il-\\u0120img\\u0127a_Is-Sibt\".split(\"_\"),weekdaysShort:\"\\u0126ad_Tne_Tli_Erb_\\u0126am_\\u0120im_Sib\".split(\"_\"),weekdaysMin:\"\\u0126a_Tn_Tl_Er_\\u0126a_\\u0120i_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Illum fil-]LT\",nextDay:\"[G\\u0127ada fil-]LT\",nextWeek:\"dddd [fil-]LT\",lastDay:\"[Il-biera\\u0127 fil-]LT\",lastWeek:\"dddd [li g\\u0127adda] [fil-]LT\",sameElse:\"L\"},relativeTime:{future:\"f\\u2019 %s\",past:\"%s ilu\",s:\"ftit sekondi\",ss:\"%d sekondi\",m:\"minuta\",mm:\"%d minuti\",h:\"sieg\\u0127a\",hh:\"%d sieg\\u0127at\",d:\"\\u0121urnata\",dd:\"%d \\u0121ranet\",M:\"xahar\",MM:\"%d xhur\",y:\"sena\",yy:\"%d sni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},H8ED:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r,i;return\"m\"===n?t?\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0430\":\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0443\":\"h\"===n?t?\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0430\":\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0443\":e+\" \"+(r=+e,i={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0430_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u044b_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\":\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0443_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u044b_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\",hh:t?\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0430_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u044b_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\":\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0443_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u044b_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\",dd:\"\\u0434\\u0437\\u0435\\u043d\\u044c_\\u0434\\u043d\\u0456_\\u0434\\u0437\\u0451\\u043d\",MM:\"\\u043c\\u0435\\u0441\\u044f\\u0446_\\u043c\\u0435\\u0441\\u044f\\u0446\\u044b_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0430\\u045e\",yy:\"\\u0433\\u043e\\u0434_\\u0433\\u0430\\u0434\\u044b_\\u0433\\u0430\\u0434\\u043e\\u045e\"}[n].split(\"_\"),r%10==1&&r%100!=11?i[0]:r%10>=2&&r%10<=4&&(r%100<10||r%100>=20)?i[1]:i[2])}e.defineLocale(\"be\",{months:{format:\"\\u0441\\u0442\\u0443\\u0434\\u0437\\u0435\\u043d\\u044f_\\u043b\\u044e\\u0442\\u0430\\u0433\\u0430_\\u0441\\u0430\\u043a\\u0430\\u0432\\u0456\\u043a\\u0430_\\u043a\\u0440\\u0430\\u0441\\u0430\\u0432\\u0456\\u043a\\u0430_\\u0442\\u0440\\u0430\\u045e\\u043d\\u044f_\\u0447\\u044d\\u0440\\u0432\\u0435\\u043d\\u044f_\\u043b\\u0456\\u043f\\u0435\\u043d\\u044f_\\u0436\\u043d\\u0456\\u045e\\u043d\\u044f_\\u0432\\u0435\\u0440\\u0430\\u0441\\u043d\\u044f_\\u043a\\u0430\\u0441\\u0442\\u0440\\u044b\\u0447\\u043d\\u0456\\u043a\\u0430_\\u043b\\u0456\\u0441\\u0442\\u0430\\u043f\\u0430\\u0434\\u0430_\\u0441\\u043d\\u0435\\u0436\\u043d\\u044f\".split(\"_\"),standalone:\"\\u0441\\u0442\\u0443\\u0434\\u0437\\u0435\\u043d\\u044c_\\u043b\\u044e\\u0442\\u044b_\\u0441\\u0430\\u043a\\u0430\\u0432\\u0456\\u043a_\\u043a\\u0440\\u0430\\u0441\\u0430\\u0432\\u0456\\u043a_\\u0442\\u0440\\u0430\\u0432\\u0435\\u043d\\u044c_\\u0447\\u044d\\u0440\\u0432\\u0435\\u043d\\u044c_\\u043b\\u0456\\u043f\\u0435\\u043d\\u044c_\\u0436\\u043d\\u0456\\u0432\\u0435\\u043d\\u044c_\\u0432\\u0435\\u0440\\u0430\\u0441\\u0435\\u043d\\u044c_\\u043a\\u0430\\u0441\\u0442\\u0440\\u044b\\u0447\\u043d\\u0456\\u043a_\\u043b\\u0456\\u0441\\u0442\\u0430\\u043f\\u0430\\u0434_\\u0441\\u043d\\u0435\\u0436\\u0430\\u043d\\u044c\".split(\"_\")},monthsShort:\"\\u0441\\u0442\\u0443\\u0434_\\u043b\\u044e\\u0442_\\u0441\\u0430\\u043a_\\u043a\\u0440\\u0430\\u0441_\\u0442\\u0440\\u0430\\u0432_\\u0447\\u044d\\u0440\\u0432_\\u043b\\u0456\\u043f_\\u0436\\u043d\\u0456\\u0432_\\u0432\\u0435\\u0440_\\u043a\\u0430\\u0441\\u0442_\\u043b\\u0456\\u0441\\u0442_\\u0441\\u043d\\u0435\\u0436\".split(\"_\"),weekdays:{format:\"\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u044e_\\u043f\\u0430\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u0430\\u043a_\\u0430\\u045e\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0435\\u0440\\u0430\\u0434\\u0443_\\u0447\\u0430\\u0446\\u0432\\u0435\\u0440_\\u043f\\u044f\\u0442\\u043d\\u0456\\u0446\\u0443_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),standalone:\"\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u044f_\\u043f\\u0430\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u0430\\u043a_\\u0430\\u045e\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0435\\u0440\\u0430\\u0434\\u0430_\\u0447\\u0430\\u0446\\u0432\\u0435\\u0440_\\u043f\\u044f\\u0442\\u043d\\u0456\\u0446\\u0430_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),isFormat:/\\[ ?[\\u0423\\u0443\\u045e] ?(?:\\u043c\\u0456\\u043d\\u0443\\u043b\\u0443\\u044e|\\u043d\\u0430\\u0441\\u0442\\u0443\\u043f\\u043d\\u0443\\u044e)? ?\\] ?dddd/},weekdaysShort:\"\\u043d\\u0434_\\u043f\\u043d_\\u0430\\u0442_\\u0441\\u0440_\\u0447\\u0446_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0430\\u0442_\\u0441\\u0440_\\u0447\\u0446_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0433.\",LLL:\"D MMMM YYYY \\u0433., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0433., HH:mm\"},calendar:{sameDay:\"[\\u0421\\u0451\\u043d\\u043d\\u044f \\u045e] LT\",nextDay:\"[\\u0417\\u0430\\u045e\\u0442\\u0440\\u0430 \\u045e] LT\",lastDay:\"[\\u0423\\u0447\\u043e\\u0440\\u0430 \\u045e] LT\",nextWeek:function(){return\"[\\u0423] dddd [\\u045e] LT\"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return\"[\\u0423 \\u043c\\u0456\\u043d\\u0443\\u043b\\u0443\\u044e] dddd [\\u045e] LT\";case 1:case 2:case 4:return\"[\\u0423 \\u043c\\u0456\\u043d\\u0443\\u043b\\u044b] dddd [\\u045e] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u043f\\u0440\\u0430\\u0437 %s\",past:\"%s \\u0442\\u0430\\u043c\\u0443\",s:\"\\u043d\\u0435\\u043a\\u0430\\u043b\\u044c\\u043a\\u0456 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:t,mm:t,h:t,hh:t,d:\"\\u0434\\u0437\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0435\\u0441\\u044f\\u0446\",MM:t,y:\"\\u0433\\u043e\\u0434\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u044b|\\u0440\\u0430\\u043d\\u0456\\u0446\\u044b|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430/,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u044b\":e<12?\"\\u0440\\u0430\\u043d\\u0456\\u0446\\u044b\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0456|\\u044b|\\u0433\\u0430)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e%10!=2&&e%10!=3||e%100==12||e%100==13?e+\"-\\u044b\":e+\"-\\u0456\";case\"D\":return e+\"-\\u0433\\u0430\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},HP3h:function(e,t,n){!function(e){\"use strict\";var t={1:\"1\",2:\"2\",3:\"3\",4:\"4\",5:\"5\",6:\"6\",7:\"7\",8:\"8\",9:\"9\",0:\"0\"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},r={s:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062b\\u0627\\u0646\\u064a\\u0629\",\"\\u062b\\u0627\\u0646\\u064a\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u0627\\u0646\",\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u064a\\u0646\"],\"%d \\u062b\\u0648\\u0627\\u0646\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\"],m:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062f\\u0642\\u064a\\u0642\\u0629\",\"\\u062f\\u0642\\u064a\\u0642\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u0627\\u0646\",\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u064a\\u0646\"],\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\"],h:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0633\\u0627\\u0639\\u0629\",\"\\u0633\\u0627\\u0639\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u0633\\u0627\\u0639\\u062a\\u0627\\u0646\",\"\\u0633\\u0627\\u0639\\u062a\\u064a\\u0646\"],\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",\"%d \\u0633\\u0627\\u0639\\u0629\",\"%d \\u0633\\u0627\\u0639\\u0629\"],d:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u064a\\u0648\\u0645\",\"\\u064a\\u0648\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u064a\\u0648\\u0645\\u0627\\u0646\",\"\\u064a\\u0648\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u064a\\u0627\\u0645\",\"%d \\u064a\\u0648\\u0645\\u064b\\u0627\",\"%d \\u064a\\u0648\\u0645\"],M:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0634\\u0647\\u0631\",\"\\u0634\\u0647\\u0631 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0634\\u0647\\u0631\\u0627\\u0646\",\"\\u0634\\u0647\\u0631\\u064a\\u0646\"],\"%d \\u0623\\u0634\\u0647\\u0631\",\"%d \\u0634\\u0647\\u0631\\u0627\",\"%d \\u0634\\u0647\\u0631\"],y:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0639\\u0627\\u0645\",\"\\u0639\\u0627\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0639\\u0627\\u0645\\u0627\\u0646\",\"\\u0639\\u0627\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u0639\\u0648\\u0627\\u0645\",\"%d \\u0639\\u0627\\u0645\\u064b\\u0627\",\"%d \\u0639\\u0627\\u0645\"]},i=function(e){return function(t,i,a,o){var s=n(t),l=r[e][n(t)];return 2===s&&(l=l[i?0:1]),l.replace(/%d/i,t)}},a=[\"\\u064a\\u0646\\u0627\\u064a\\u0631\",\"\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631\",\"\\u0645\\u0627\\u0631\\u0633\",\"\\u0623\\u0628\\u0631\\u064a\\u0644\",\"\\u0645\\u0627\\u064a\\u0648\",\"\\u064a\\u0648\\u0646\\u064a\\u0648\",\"\\u064a\\u0648\\u0644\\u064a\\u0648\",\"\\u0623\\u063a\\u0633\\u0637\\u0633\",\"\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631\",\"\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631\",\"\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\"];e.defineLocale(\"ar-ly\",{months:a,monthsShort:a,weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/\\u200fM/\\u200fYYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u064b\\u0627 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0628\\u0639\\u062f %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:i(\"s\"),ss:i(\"s\"),m:i(\"m\"),mm:i(\"m\"),h:i(\"h\"),hh:i(\"h\"),d:i(\"d\"),dd:i(\"d\"),M:i(\"M\"),MM:i(\"M\"),y:i(\"y\"),yy:i(\"y\")},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},IBtZ:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ka\",{months:{standalone:\"\\u10d8\\u10d0\\u10dc\\u10d5\\u10d0\\u10e0\\u10d8_\\u10d7\\u10d4\\u10d1\\u10d4\\u10e0\\u10d5\\u10d0\\u10da\\u10d8_\\u10db\\u10d0\\u10e0\\u10e2\\u10d8_\\u10d0\\u10de\\u10e0\\u10d8\\u10da\\u10d8_\\u10db\\u10d0\\u10d8\\u10e1\\u10d8_\\u10d8\\u10d5\\u10dc\\u10d8\\u10e1\\u10d8_\\u10d8\\u10d5\\u10da\\u10d8\\u10e1\\u10d8_\\u10d0\\u10d2\\u10d5\\u10d8\\u10e1\\u10e2\\u10dd_\\u10e1\\u10d4\\u10e5\\u10e2\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10dd\\u10e5\\u10e2\\u10dd\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10dc\\u10dd\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10d3\\u10d4\\u10d9\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8\".split(\"_\"),format:\"\\u10d8\\u10d0\\u10dc\\u10d5\\u10d0\\u10e0\\u10e1_\\u10d7\\u10d4\\u10d1\\u10d4\\u10e0\\u10d5\\u10d0\\u10da\\u10e1_\\u10db\\u10d0\\u10e0\\u10e2\\u10e1_\\u10d0\\u10de\\u10e0\\u10d8\\u10da\\u10d8\\u10e1_\\u10db\\u10d0\\u10d8\\u10e1\\u10e1_\\u10d8\\u10d5\\u10dc\\u10d8\\u10e1\\u10e1_\\u10d8\\u10d5\\u10da\\u10d8\\u10e1\\u10e1_\\u10d0\\u10d2\\u10d5\\u10d8\\u10e1\\u10e2\\u10e1_\\u10e1\\u10d4\\u10e5\\u10e2\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10dd\\u10e5\\u10e2\\u10dd\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10dc\\u10dd\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10d3\\u10d4\\u10d9\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1\".split(\"_\")},monthsShort:\"\\u10d8\\u10d0\\u10dc_\\u10d7\\u10d4\\u10d1_\\u10db\\u10d0\\u10e0_\\u10d0\\u10de\\u10e0_\\u10db\\u10d0\\u10d8_\\u10d8\\u10d5\\u10dc_\\u10d8\\u10d5\\u10da_\\u10d0\\u10d2\\u10d5_\\u10e1\\u10d4\\u10e5_\\u10dd\\u10e5\\u10e2_\\u10dc\\u10dd\\u10d4_\\u10d3\\u10d4\\u10d9\".split(\"_\"),weekdays:{standalone:\"\\u10d9\\u10d5\\u10d8\\u10e0\\u10d0_\\u10dd\\u10e0\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10e1\\u10d0\\u10db\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10dd\\u10d7\\u10ee\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10ee\\u10e3\\u10d7\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10de\\u10d0\\u10e0\\u10d0\\u10e1\\u10d9\\u10d4\\u10d5\\u10d8_\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8\".split(\"_\"),format:\"\\u10d9\\u10d5\\u10d8\\u10e0\\u10d0\\u10e1_\\u10dd\\u10e0\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10e1\\u10d0\\u10db\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10dd\\u10d7\\u10ee\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10ee\\u10e3\\u10d7\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10de\\u10d0\\u10e0\\u10d0\\u10e1\\u10d9\\u10d4\\u10d5\\u10e1_\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1\".split(\"_\"),isFormat:/(\\u10ec\\u10d8\\u10dc\\u10d0|\\u10e8\\u10d4\\u10db\\u10d3\\u10d4\\u10d2)/},weekdaysShort:\"\\u10d9\\u10d5\\u10d8_\\u10dd\\u10e0\\u10e8_\\u10e1\\u10d0\\u10db_\\u10dd\\u10d7\\u10ee_\\u10ee\\u10e3\\u10d7_\\u10de\\u10d0\\u10e0_\\u10e8\\u10d0\\u10d1\".split(\"_\"),weekdaysMin:\"\\u10d9\\u10d5_\\u10dd\\u10e0_\\u10e1\\u10d0_\\u10dd\\u10d7_\\u10ee\\u10e3_\\u10de\\u10d0_\\u10e8\\u10d0\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[\\u10d3\\u10e6\\u10d4\\u10e1] LT[-\\u10d6\\u10d4]\",nextDay:\"[\\u10ee\\u10d5\\u10d0\\u10da] LT[-\\u10d6\\u10d4]\",lastDay:\"[\\u10d2\\u10e3\\u10e8\\u10d8\\u10dc] LT[-\\u10d6\\u10d4]\",nextWeek:\"[\\u10e8\\u10d4\\u10db\\u10d3\\u10d4\\u10d2] dddd LT[-\\u10d6\\u10d4]\",lastWeek:\"[\\u10ec\\u10d8\\u10dc\\u10d0] dddd LT-\\u10d6\\u10d4\",sameElse:\"L\"},relativeTime:{future:function(e){return/(\\u10ec\\u10d0\\u10db\\u10d8|\\u10ec\\u10e3\\u10d7\\u10d8|\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8|\\u10ec\\u10d4\\u10da\\u10d8)/.test(e)?e.replace(/\\u10d8$/,\"\\u10e8\\u10d8\"):e+\"\\u10e8\\u10d8\"},past:function(e){return/(\\u10ec\\u10d0\\u10db\\u10d8|\\u10ec\\u10e3\\u10d7\\u10d8|\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8|\\u10d3\\u10e6\\u10d4|\\u10d7\\u10d5\\u10d4)/.test(e)?e.replace(/(\\u10d8|\\u10d4)$/,\"\\u10d8\\u10e1 \\u10ec\\u10d8\\u10dc\"):/\\u10ec\\u10d4\\u10da\\u10d8/.test(e)?e.replace(/\\u10ec\\u10d4\\u10da\\u10d8$/,\"\\u10ec\\u10da\\u10d8\\u10e1 \\u10ec\\u10d8\\u10dc\"):void 0},s:\"\\u10e0\\u10d0\\u10db\\u10d3\\u10d4\\u10dc\\u10d8\\u10db\\u10d4 \\u10ec\\u10d0\\u10db\\u10d8\",ss:\"%d \\u10ec\\u10d0\\u10db\\u10d8\",m:\"\\u10ec\\u10e3\\u10d7\\u10d8\",mm:\"%d \\u10ec\\u10e3\\u10d7\\u10d8\",h:\"\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8\",hh:\"%d \\u10e1\\u10d0\\u10d0\\u10d7\\u10d8\",d:\"\\u10d3\\u10e6\\u10d4\",dd:\"%d \\u10d3\\u10e6\\u10d4\",M:\"\\u10d7\\u10d5\\u10d4\",MM:\"%d \\u10d7\\u10d5\\u10d4\",y:\"\\u10ec\\u10d4\\u10da\\u10d8\",yy:\"%d \\u10ec\\u10d4\\u10da\\u10d8\"},dayOfMonthOrdinalParse:/0|1-\\u10da\\u10d8|\\u10db\\u10d4-\\d{1,2}|\\d{1,2}-\\u10d4/,ordinal:function(e){return 0===e?e:1===e?e+\"-\\u10da\\u10d8\":e<20||e<=100&&e%20==0||e%100==0?\"\\u10db\\u10d4-\"+e:e+\"-\\u10d4\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"Ivi+\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ko\",{months:\"1\\uc6d4_2\\uc6d4_3\\uc6d4_4\\uc6d4_5\\uc6d4_6\\uc6d4_7\\uc6d4_8\\uc6d4_9\\uc6d4_10\\uc6d4_11\\uc6d4_12\\uc6d4\".split(\"_\"),monthsShort:\"1\\uc6d4_2\\uc6d4_3\\uc6d4_4\\uc6d4_5\\uc6d4_6\\uc6d4_7\\uc6d4_8\\uc6d4_9\\uc6d4_10\\uc6d4_11\\uc6d4_12\\uc6d4\".split(\"_\"),weekdays:\"\\uc77c\\uc694\\uc77c_\\uc6d4\\uc694\\uc77c_\\ud654\\uc694\\uc77c_\\uc218\\uc694\\uc77c_\\ubaa9\\uc694\\uc77c_\\uae08\\uc694\\uc77c_\\ud1a0\\uc694\\uc77c\".split(\"_\"),weekdaysShort:\"\\uc77c_\\uc6d4_\\ud654_\\uc218_\\ubaa9_\\uae08_\\ud1a0\".split(\"_\"),weekdaysMin:\"\\uc77c_\\uc6d4_\\ud654_\\uc218_\\ubaa9_\\uae08_\\ud1a0\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY\\ub144 MMMM D\\uc77c\",LLL:\"YYYY\\ub144 MMMM D\\uc77c A h:mm\",LLLL:\"YYYY\\ub144 MMMM D\\uc77c dddd A h:mm\",l:\"YYYY.MM.DD.\",ll:\"YYYY\\ub144 MMMM D\\uc77c\",lll:\"YYYY\\ub144 MMMM D\\uc77c A h:mm\",llll:\"YYYY\\ub144 MMMM D\\uc77c dddd A h:mm\"},calendar:{sameDay:\"\\uc624\\ub298 LT\",nextDay:\"\\ub0b4\\uc77c LT\",nextWeek:\"dddd LT\",lastDay:\"\\uc5b4\\uc81c LT\",lastWeek:\"\\uc9c0\\ub09c\\uc8fc dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\ud6c4\",past:\"%s \\uc804\",s:\"\\uba87 \\ucd08\",ss:\"%d\\ucd08\",m:\"1\\ubd84\",mm:\"%d\\ubd84\",h:\"\\ud55c \\uc2dc\\uac04\",hh:\"%d\\uc2dc\\uac04\",d:\"\\ud558\\ub8e8\",dd:\"%d\\uc77c\",M:\"\\ud55c \\ub2ec\",MM:\"%d\\ub2ec\",y:\"\\uc77c \\ub144\",yy:\"%d\\ub144\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\uc77c|\\uc6d4|\\uc8fc)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\uc77c\";case\"M\":return e+\"\\uc6d4\";case\"w\":case\"W\":return e+\"\\uc8fc\";default:return e}},meridiemParse:/\\uc624\\uc804|\\uc624\\ud6c4/,isPM:function(e){return\"\\uc624\\ud6c4\"===e},meridiem:function(e,t,n){return e<12?\"\\uc624\\uc804\":\"\\uc624\\ud6c4\"}})}(n(\"wd/R\"))},\"JCF/\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"},r=[\"\\u06a9\\u0627\\u0646\\u0648\\u0646\\u06cc \\u062f\\u0648\\u0648\\u06d5\\u0645\",\"\\u0634\\u0648\\u0628\\u0627\\u062a\",\"\\u0626\\u0627\\u0632\\u0627\\u0631\",\"\\u0646\\u06cc\\u0633\\u0627\\u0646\",\"\\u0626\\u0627\\u06cc\\u0627\\u0631\",\"\\u062d\\u0648\\u0632\\u06d5\\u06cc\\u0631\\u0627\\u0646\",\"\\u062a\\u06d5\\u0645\\u0645\\u0648\\u0632\",\"\\u0626\\u0627\\u0628\",\"\\u0626\\u06d5\\u06cc\\u0644\\u0648\\u0648\\u0644\",\"\\u062a\\u0634\\u0631\\u06cc\\u0646\\u06cc \\u06cc\\u06d5\\u0643\\u06d5\\u0645\",\"\\u062a\\u0634\\u0631\\u06cc\\u0646\\u06cc \\u062f\\u0648\\u0648\\u06d5\\u0645\",\"\\u0643\\u0627\\u0646\\u0648\\u0646\\u06cc \\u06cc\\u06d5\\u06a9\\u06d5\\u0645\"];e.defineLocale(\"ku\",{months:r,monthsShort:r,weekdays:\"\\u06cc\\u0647\\u200c\\u0643\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u062f\\u0648\\u0648\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0633\\u06ce\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0686\\u0648\\u0627\\u0631\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u067e\\u06ce\\u0646\\u062c\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0647\\u0647\\u200c\\u06cc\\u0646\\u06cc_\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c\".split(\"_\"),weekdaysShort:\"\\u06cc\\u0647\\u200c\\u0643\\u0634\\u0647\\u200c\\u0645_\\u062f\\u0648\\u0648\\u0634\\u0647\\u200c\\u0645_\\u0633\\u06ce\\u0634\\u0647\\u200c\\u0645_\\u0686\\u0648\\u0627\\u0631\\u0634\\u0647\\u200c\\u0645_\\u067e\\u06ce\\u0646\\u062c\\u0634\\u0647\\u200c\\u0645_\\u0647\\u0647\\u200c\\u06cc\\u0646\\u06cc_\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c\".split(\"_\"),weekdaysMin:\"\\u06cc_\\u062f_\\u0633_\\u0686_\\u067e_\\u0647_\\u0634\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c|\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc/,isPM:function(e){return/\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c/.test(e)},meridiem:function(e,t,n){return e<12?\"\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc\":\"\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c\"},calendar:{sameDay:\"[\\u0626\\u0647\\u200c\\u0645\\u0631\\u06c6 \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",nextDay:\"[\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",nextWeek:\"dddd [\\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",lastDay:\"[\\u062f\\u0648\\u06ce\\u0646\\u06ce \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",lastWeek:\"dddd [\\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0644\\u0647\\u200c %s\",past:\"%s\",s:\"\\u0686\\u0647\\u200c\\u0646\\u062f \\u0686\\u0631\\u0643\\u0647\\u200c\\u06cc\\u0647\\u200c\\u0643\",ss:\"\\u0686\\u0631\\u0643\\u0647\\u200c %d\",m:\"\\u06cc\\u0647\\u200c\\u0643 \\u062e\\u0648\\u0644\\u0647\\u200c\\u0643\",mm:\"%d \\u062e\\u0648\\u0644\\u0647\\u200c\\u0643\",h:\"\\u06cc\\u0647\\u200c\\u0643 \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631\",hh:\"%d \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631\",d:\"\\u06cc\\u0647\\u200c\\u0643 \\u0695\\u06c6\\u0698\",dd:\"%d \\u0695\\u06c6\\u0698\",M:\"\\u06cc\\u0647\\u200c\\u0643 \\u0645\\u0627\\u0646\\u06af\",MM:\"%d \\u0645\\u0627\\u0646\\u06af\",y:\"\\u06cc\\u0647\\u200c\\u0643 \\u0633\\u0627\\u06b5\",yy:\"%d \\u0633\\u0627\\u06b5\"},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},JVSJ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r=e+\" \";switch(n){case\"ss\":return r+(1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\");case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return r+(1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\");case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return r+(1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\");case\"dd\":return r+(1===e?\"dan\":\"dana\");case\"MM\":return r+(1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\");case\"yy\":return r+(1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\")}}e.defineLocale(\"bs\",{months:\"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010der u] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:return\"[pro\\u0161lu] dddd [u] LT\";case 6:return\"[pro\\u0161le] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[pro\\u0161li] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},JvlW:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekund\\u0117_sekund\\u017ei\\u0173_sekundes\",m:\"minut\\u0117_minut\\u0117s_minut\\u0119\",mm:\"minut\\u0117s_minu\\u010di\\u0173_minutes\",h:\"valanda_valandos_valand\\u0105\",hh:\"valandos_valand\\u0173_valandas\",d:\"diena_dienos_dien\\u0105\",dd:\"dienos_dien\\u0173_dienas\",M:\"m\\u0117nuo_m\\u0117nesio_m\\u0117nes\\u012f\",MM:\"m\\u0117nesiai_m\\u0117nesi\\u0173_m\\u0117nesius\",y:\"metai_met\\u0173_metus\",yy:\"metai_met\\u0173_metus\"};function n(e,t,n,r){return t?i(n)[0]:r?i(n)[1]:i(n)[2]}function r(e){return e%10==0||e>10&&e<20}function i(e){return t[e].split(\"_\")}function a(e,t,a,o){var s=e+\" \";return 1===e?s+n(0,t,a[0],o):t?s+(r(e)?i(a)[1]:i(a)[0]):o?s+i(a)[1]:s+(r(e)?i(a)[1]:i(a)[2])}e.defineLocale(\"lt\",{months:{format:\"sausio_vasario_kovo_baland\\u017eio_gegu\\u017e\\u0117s_bir\\u017eelio_liepos_rugpj\\u016b\\u010dio_rugs\\u0117jo_spalio_lapkri\\u010dio_gruod\\u017eio\".split(\"_\"),standalone:\"sausis_vasaris_kovas_balandis_gegu\\u017e\\u0117_bir\\u017eelis_liepa_rugpj\\u016btis_rugs\\u0117jis_spalis_lapkritis_gruodis\".split(\"_\"),isFormat:/D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|MMMM?(\\[[^\\[\\]]*\\]|\\s)+D[oD]?/},monthsShort:\"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd\".split(\"_\"),weekdays:{format:\"sekmadien\\u012f_pirmadien\\u012f_antradien\\u012f_tre\\u010diadien\\u012f_ketvirtadien\\u012f_penktadien\\u012f_\\u0161e\\u0161tadien\\u012f\".split(\"_\"),standalone:\"sekmadienis_pirmadienis_antradienis_tre\\u010diadienis_ketvirtadienis_penktadienis_\\u0161e\\u0161tadienis\".split(\"_\"),isFormat:/dddd HH:mm/},weekdaysShort:\"Sek_Pir_Ant_Tre_Ket_Pen_\\u0160e\\u0161\".split(\"_\"),weekdaysMin:\"S_P_A_T_K_Pn_\\u0160\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY [m.] MMMM D [d.]\",LLL:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",LLLL:\"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]\",l:\"YYYY-MM-DD\",ll:\"YYYY [m.] MMMM D [d.]\",lll:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",llll:\"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]\"},calendar:{sameDay:\"[\\u0160iandien] LT\",nextDay:\"[Rytoj] LT\",nextWeek:\"dddd LT\",lastDay:\"[Vakar] LT\",lastWeek:\"[Pra\\u0117jus\\u012f] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"po %s\",past:\"prie\\u0161 %s\",s:function(e,t,n,r){return t?\"kelios sekund\\u0117s\":r?\"keli\\u0173 sekund\\u017ei\\u0173\":\"kelias sekundes\"},ss:a,m:n,mm:a,h:n,hh:a,d:n,dd:a,M:n,MM:a,y:n,yy:a},dayOfMonthOrdinalParse:/\\d{1,2}-oji/,ordinal:function(e){return e+\"-oji\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"K/tc\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"af\",{months:\"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag\".split(\"_\"),weekdaysShort:\"Son_Maa_Din_Woe_Don_Vry_Sat\".split(\"_\"),weekdaysMin:\"So_Ma_Di_Wo_Do_Vr_Sa\".split(\"_\"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"vm\":\"VM\":n?\"nm\":\"NM\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Vandag om] LT\",nextDay:\"[M\\xf4re om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[Gister om] LT\",lastWeek:\"[Laas] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oor %s\",past:\"%s gelede\",s:\"'n paar sekondes\",ss:\"%d sekondes\",m:\"'n minuut\",mm:\"%d minute\",h:\"'n uur\",hh:\"%d ure\",d:\"'n dag\",dd:\"%d dae\",M:\"'n maand\",MM:\"%d maande\",y:\"'n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},KSF8:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"vi\",{months:\"th\\xe1ng 1_th\\xe1ng 2_th\\xe1ng 3_th\\xe1ng 4_th\\xe1ng 5_th\\xe1ng 6_th\\xe1ng 7_th\\xe1ng 8_th\\xe1ng 9_th\\xe1ng 10_th\\xe1ng 11_th\\xe1ng 12\".split(\"_\"),monthsShort:\"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12\".split(\"_\"),monthsParseExact:!0,weekdays:\"ch\\u1ee7 nh\\u1eadt_th\\u1ee9 hai_th\\u1ee9 ba_th\\u1ee9 t\\u01b0_th\\u1ee9 n\\u0103m_th\\u1ee9 s\\xe1u_th\\u1ee9 b\\u1ea3y\".split(\"_\"),weekdaysShort:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysMin:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"sa\":\"SA\":n?\"ch\":\"CH\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [n\\u0103m] YYYY\",LLL:\"D MMMM [n\\u0103m] YYYY HH:mm\",LLLL:\"dddd, D MMMM [n\\u0103m] YYYY HH:mm\",l:\"DD/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[H\\xf4m nay l\\xfac] LT\",nextDay:\"[Ng\\xe0y mai l\\xfac] LT\",nextWeek:\"dddd [tu\\u1ea7n t\\u1edbi l\\xfac] LT\",lastDay:\"[H\\xf4m qua l\\xfac] LT\",lastWeek:\"dddd [tu\\u1ea7n r\\u1ed3i l\\xfac] LT\",sameElse:\"L\"},relativeTime:{future:\"%s t\\u1edbi\",past:\"%s tr\\u01b0\\u1edbc\",s:\"v\\xe0i gi\\xe2y\",ss:\"%d gi\\xe2y\",m:\"m\\u1ed9t ph\\xfat\",mm:\"%d ph\\xfat\",h:\"m\\u1ed9t gi\\u1edd\",hh:\"%d gi\\u1edd\",d:\"m\\u1ed9t ng\\xe0y\",dd:\"%d ng\\xe0y\",M:\"m\\u1ed9t th\\xe1ng\",MM:\"%d th\\xe1ng\",y:\"m\\u1ed9t n\\u0103m\",yy:\"%d n\\u0103m\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(\"wd/R\"))},KTz0:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekund\",\"sekunda\",\"sekundi\"],m:[\"jedan minut\",\"jednog minuta\"],mm:[\"minut\",\"minuta\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mjesec\",\"mjeseca\",\"mjeseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,r){var i=t.words[r];return 1===r.length?n?i[0]:i[1]:e+\" \"+t.correctGrammaticalCase(e,i)}};e.defineLocale(\"me\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sjutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010de u] LT\",lastWeek:function(){return[\"[pro\\u0161le] [nedjelje] [u] LT\",\"[pro\\u0161log] [ponedjeljka] [u] LT\",\"[pro\\u0161log] [utorka] [u] LT\",\"[pro\\u0161le] [srijede] [u] LT\",\"[pro\\u0161log] [\\u010detvrtka] [u] LT\",\"[pro\\u0161log] [petka] [u] LT\",\"[pro\\u0161le] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mjesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},Loxo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440_\\u043d\\u043e\\u044f\\u0431\\u0440_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u042f\\u043a\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0414\\u0443\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0421\\u0435\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0427\\u043e\\u0440\\u0448\\u0430\\u043d\\u0431\\u0430_\\u041f\\u0430\\u0439\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0416\\u0443\\u043c\\u0430_\\u0428\\u0430\\u043d\\u0431\\u0430\".split(\"_\"),weekdaysShort:\"\\u042f\\u043a\\u0448_\\u0414\\u0443\\u0448_\\u0421\\u0435\\u0448_\\u0427\\u043e\\u0440_\\u041f\\u0430\\u0439_\\u0416\\u0443\\u043c_\\u0428\\u0430\\u043d\".split(\"_\"),weekdaysMin:\"\\u042f\\u043a_\\u0414\\u0443_\\u0421\\u0435_\\u0427\\u043e_\\u041f\\u0430_\\u0416\\u0443_\\u0428\\u0430\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[\\u0411\\u0443\\u0433\\u0443\\u043d \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",nextDay:\"[\\u042d\\u0440\\u0442\\u0430\\u0433\\u0430] LT [\\u0434\\u0430]\",nextWeek:\"dddd [\\u043a\\u0443\\u043d\\u0438 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",lastDay:\"[\\u041a\\u0435\\u0447\\u0430 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",lastWeek:\"[\\u0423\\u0442\\u0433\\u0430\\u043d] dddd [\\u043a\\u0443\\u043d\\u0438 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",sameElse:\"L\"},relativeTime:{future:\"\\u042f\\u043a\\u0438\\u043d %s \\u0438\\u0447\\u0438\\u0434\\u0430\",past:\"\\u0411\\u0438\\u0440 \\u043d\\u0435\\u0447\\u0430 %s \\u043e\\u043b\\u0434\\u0438\\u043d\",s:\"\\u0444\\u0443\\u0440\\u0441\\u0430\\u0442\",ss:\"%d \\u0444\\u0443\\u0440\\u0441\\u0430\\u0442\",m:\"\\u0431\\u0438\\u0440 \\u0434\\u0430\\u043a\\u0438\\u043a\\u0430\",mm:\"%d \\u0434\\u0430\\u043a\\u0438\\u043a\\u0430\",h:\"\\u0431\\u0438\\u0440 \\u0441\\u043e\\u0430\\u0442\",hh:\"%d \\u0441\\u043e\\u0430\\u0442\",d:\"\\u0431\\u0438\\u0440 \\u043a\\u0443\\u043d\",dd:\"%d \\u043a\\u0443\\u043d\",M:\"\\u0431\\u0438\\u0440 \\u043e\\u0439\",MM:\"%d \\u043e\\u0439\",y:\"\\u0431\\u0438\\u0440 \\u0439\\u0438\\u043b\",yy:\"%d \\u0439\\u0438\\u043b\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},OIYi:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ca\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"YYYY-MM-DD\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(\"wd/R\"))},Oaa7:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-gb\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Ob0Z:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};function r(e,t,n,r){var i=\"\";if(t)switch(n){case\"s\":i=\"\\u0915\\u093e\\u0939\\u0940 \\u0938\\u0947\\u0915\\u0902\\u0926\";break;case\"ss\":i=\"%d \\u0938\\u0947\\u0915\\u0902\\u0926\";break;case\"m\":i=\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u093f\\u091f\";break;case\"mm\":i=\"%d \\u092e\\u093f\\u0928\\u093f\\u091f\\u0947\";break;case\"h\":i=\"\\u090f\\u0915 \\u0924\\u093e\\u0938\";break;case\"hh\":i=\"%d \\u0924\\u093e\\u0938\";break;case\"d\":i=\"\\u090f\\u0915 \\u0926\\u093f\\u0935\\u0938\";break;case\"dd\":i=\"%d \\u0926\\u093f\\u0935\\u0938\";break;case\"M\":i=\"\\u090f\\u0915 \\u092e\\u0939\\u093f\\u0928\\u093e\";break;case\"MM\":i=\"%d \\u092e\\u0939\\u093f\\u0928\\u0947\";break;case\"y\":i=\"\\u090f\\u0915 \\u0935\\u0930\\u094d\\u0937\";break;case\"yy\":i=\"%d \\u0935\\u0930\\u094d\\u0937\\u0947\"}else switch(n){case\"s\":i=\"\\u0915\\u093e\\u0939\\u0940 \\u0938\\u0947\\u0915\\u0902\\u0926\\u093e\\u0902\";break;case\"ss\":i=\"%d \\u0938\\u0947\\u0915\\u0902\\u0926\\u093e\\u0902\";break;case\"m\":i=\"\\u090f\\u0915\\u093e \\u092e\\u093f\\u0928\\u093f\\u091f\\u093e\";break;case\"mm\":i=\"%d \\u092e\\u093f\\u0928\\u093f\\u091f\\u093e\\u0902\";break;case\"h\":i=\"\\u090f\\u0915\\u093e \\u0924\\u093e\\u0938\\u093e\";break;case\"hh\":i=\"%d \\u0924\\u093e\\u0938\\u093e\\u0902\";break;case\"d\":i=\"\\u090f\\u0915\\u093e \\u0926\\u093f\\u0935\\u0938\\u093e\";break;case\"dd\":i=\"%d \\u0926\\u093f\\u0935\\u0938\\u093e\\u0902\";break;case\"M\":i=\"\\u090f\\u0915\\u093e \\u092e\\u0939\\u093f\\u0928\\u094d\\u092f\\u093e\";break;case\"MM\":i=\"%d \\u092e\\u0939\\u093f\\u0928\\u094d\\u092f\\u093e\\u0902\";break;case\"y\":i=\"\\u090f\\u0915\\u093e \\u0935\\u0930\\u094d\\u0937\\u093e\";break;case\"yy\":i=\"%d \\u0935\\u0930\\u094d\\u0937\\u093e\\u0902\"}return i.replace(/%d/i,e)}e.defineLocale(\"mr\",{months:\"\\u091c\\u093e\\u0928\\u0947\\u0935\\u093e\\u0930\\u0940_\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941\\u0935\\u093e\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u090f\\u092a\\u094d\\u0930\\u093f\\u0932_\\u092e\\u0947_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932\\u0948_\\u0911\\u0917\\u0938\\u094d\\u091f_\\u0938\\u092a\\u094d\\u091f\\u0947\\u0902\\u092c\\u0930_\\u0911\\u0915\\u094d\\u091f\\u094b\\u092c\\u0930_\\u0928\\u094b\\u0935\\u094d\\u0939\\u0947\\u0902\\u092c\\u0930_\\u0921\\u093f\\u0938\\u0947\\u0902\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u093e\\u0928\\u0947._\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941._\\u092e\\u093e\\u0930\\u094d\\u091a._\\u090f\\u092a\\u094d\\u0930\\u093f._\\u092e\\u0947._\\u091c\\u0942\\u0928._\\u091c\\u0941\\u0932\\u0948._\\u0911\\u0917._\\u0938\\u092a\\u094d\\u091f\\u0947\\u0902._\\u0911\\u0915\\u094d\\u091f\\u094b._\\u0928\\u094b\\u0935\\u094d\\u0939\\u0947\\u0902._\\u0921\\u093f\\u0938\\u0947\\u0902.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0930\\u0935\\u093f\\u0935\\u093e\\u0930_\\u0938\\u094b\\u092e\\u0935\\u093e\\u0930_\\u092e\\u0902\\u0917\\u0933\\u0935\\u093e\\u0930_\\u092c\\u0941\\u0927\\u0935\\u093e\\u0930_\\u0917\\u0941\\u0930\\u0942\\u0935\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u0935\\u093e\\u0930_\\u0936\\u0928\\u093f\\u0935\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0930\\u0935\\u093f_\\u0938\\u094b\\u092e_\\u092e\\u0902\\u0917\\u0933_\\u092c\\u0941\\u0927_\\u0917\\u0941\\u0930\\u0942_\\u0936\\u0941\\u0915\\u094d\\u0930_\\u0936\\u0928\\u093f\".split(\"_\"),weekdaysMin:\"\\u0930_\\u0938\\u094b_\\u092e\\u0902_\\u092c\\u0941_\\u0917\\u0941_\\u0936\\u0941_\\u0936\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\",LTS:\"A h:mm:ss \\u0935\\u093e\\u091c\\u0924\\u093e\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u0909\\u0926\\u094d\\u092f\\u093e] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0915\\u093e\\u0932] LT\",lastWeek:\"[\\u092e\\u093e\\u0917\\u0940\\u0932] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u092e\\u0927\\u094d\\u092f\\u0947\",past:\"%s\\u092a\\u0942\\u0930\\u094d\\u0935\\u0940\",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940|\\u0938\\u0915\\u093e\\u0933\\u0940|\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940|\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\"===t?e<4?e:e+12:\"\\u0938\\u0915\\u093e\\u0933\\u0940\"===t?e:\"\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940\"===t?e>=10?e:e+12:\"\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\":e<10?\"\\u0938\\u0915\\u093e\\u0933\\u0940\":e<17?\"\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940\":e<20?\"\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940\":\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},OjkT:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};e.defineLocale(\"ne\",{months:\"\\u091c\\u0928\\u0935\\u0930\\u0940_\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941\\u0935\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u093f\\u0932_\\u092e\\u0908_\\u091c\\u0941\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908_\\u0905\\u0917\\u0937\\u094d\\u091f_\\u0938\\u0947\\u092a\\u094d\\u091f\\u0947\\u092e\\u094d\\u092c\\u0930_\\u0905\\u0915\\u094d\\u091f\\u094b\\u092c\\u0930_\\u0928\\u094b\\u092d\\u0947\\u092e\\u094d\\u092c\\u0930_\\u0921\\u093f\\u0938\\u0947\\u092e\\u094d\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u0928._\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941._\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u093f._\\u092e\\u0908_\\u091c\\u0941\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908._\\u0905\\u0917._\\u0938\\u0947\\u092a\\u094d\\u091f._\\u0905\\u0915\\u094d\\u091f\\u094b._\\u0928\\u094b\\u092d\\u0947._\\u0921\\u093f\\u0938\\u0947.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0906\\u0907\\u0924\\u092c\\u093e\\u0930_\\u0938\\u094b\\u092e\\u092c\\u093e\\u0930_\\u092e\\u0919\\u094d\\u0917\\u0932\\u092c\\u093e\\u0930_\\u092c\\u0941\\u0927\\u092c\\u093e\\u0930_\\u092c\\u093f\\u0939\\u093f\\u092c\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u092c\\u093e\\u0930_\\u0936\\u0928\\u093f\\u092c\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0906\\u0907\\u0924._\\u0938\\u094b\\u092e._\\u092e\\u0919\\u094d\\u0917\\u0932._\\u092c\\u0941\\u0927._\\u092c\\u093f\\u0939\\u093f._\\u0936\\u0941\\u0915\\u094d\\u0930._\\u0936\\u0928\\u093f.\".split(\"_\"),weekdaysMin:\"\\u0906._\\u0938\\u094b._\\u092e\\u0902._\\u092c\\u0941._\\u092c\\u093f._\\u0936\\u0941._\\u0936.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\",LTS:\"A\\u0915\\u094b h:mm:ss \\u092c\\u091c\\u0947\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\",LLLL:\"dddd, D MMMM YYYY, A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\"},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924\\u093f|\\u092c\\u093f\\u0939\\u093e\\u0928|\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b|\\u0938\\u093e\\u0901\\u091d/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\\u093f\"===t?e<4?e:e+12:\"\\u092c\\u093f\\u0939\\u093e\\u0928\"===t?e:\"\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b\"===t?e>=10?e:e+12:\"\\u0938\\u093e\\u0901\\u091d\"===t?e+12:void 0},meridiem:function(e,t,n){return e<3?\"\\u0930\\u093e\\u0924\\u093f\":e<12?\"\\u092c\\u093f\\u0939\\u093e\\u0928\":e<16?\"\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b\":e<20?\"\\u0938\\u093e\\u0901\\u091d\":\"\\u0930\\u093e\\u0924\\u093f\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u092d\\u094b\\u0932\\u093f] LT\",nextWeek:\"[\\u0906\\u0909\\u0901\\u0926\\u094b] dddd[,] LT\",lastDay:\"[\\u0939\\u093f\\u091c\\u094b] LT\",lastWeek:\"[\\u0917\\u090f\\u0915\\u094b] dddd[,] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u092e\\u093e\",past:\"%s \\u0905\\u0917\\u093e\\u0921\\u093f\",s:\"\\u0915\\u0947\\u0939\\u0940 \\u0915\\u094d\\u0937\\u0923\",ss:\"%d \\u0938\\u0947\\u0915\\u0947\\u0923\\u094d\\u0921\",m:\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u0947\\u091f\",mm:\"%d \\u092e\\u093f\\u0928\\u0947\\u091f\",h:\"\\u090f\\u0915 \\u0918\\u0923\\u094d\\u091f\\u093e\",hh:\"%d \\u0918\\u0923\\u094d\\u091f\\u093e\",d:\"\\u090f\\u0915 \\u0926\\u093f\\u0928\",dd:\"%d \\u0926\\u093f\\u0928\",M:\"\\u090f\\u0915 \\u092e\\u0939\\u093f\\u0928\\u093e\",MM:\"%d \\u092e\\u0939\\u093f\\u0928\\u093e\",y:\"\\u090f\\u0915 \\u092c\\u0930\\u094d\\u0937\",yy:\"%d \\u092c\\u0930\\u094d\\u0937\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},Oxv6:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0443\\u043c\",1:\"-\\u0443\\u043c\",2:\"-\\u044e\\u043c\",3:\"-\\u044e\\u043c\",4:\"-\\u0443\\u043c\",5:\"-\\u0443\\u043c\",6:\"-\\u0443\\u043c\",7:\"-\\u0443\\u043c\",8:\"-\\u0443\\u043c\",9:\"-\\u0443\\u043c\",10:\"-\\u0443\\u043c\",12:\"-\\u0443\\u043c\",13:\"-\\u0443\\u043c\",20:\"-\\u0443\\u043c\",30:\"-\\u044e\\u043c\",40:\"-\\u0443\\u043c\",50:\"-\\u0443\\u043c\",60:\"-\\u0443\\u043c\",70:\"-\\u0443\\u043c\",80:\"-\\u0443\\u043c\",90:\"-\\u0443\\u043c\",100:\"-\\u0443\\u043c\"};e.defineLocale(\"tg\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440_\\u043d\\u043e\\u044f\\u0431\\u0440_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u044f\\u043a\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0434\\u0443\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0441\\u0435\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0447\\u043e\\u0440\\u0448\\u0430\\u043d\\u0431\\u0435_\\u043f\\u0430\\u043d\\u04b7\\u0448\\u0430\\u043d\\u0431\\u0435_\\u04b7\\u0443\\u043c\\u044a\\u0430_\\u0448\\u0430\\u043d\\u0431\\u0435\".split(\"_\"),weekdaysShort:\"\\u044f\\u0448\\u0431_\\u0434\\u0448\\u0431_\\u0441\\u0448\\u0431_\\u0447\\u0448\\u0431_\\u043f\\u0448\\u0431_\\u04b7\\u0443\\u043c_\\u0448\\u043d\\u0431\".split(\"_\"),weekdaysMin:\"\\u044f\\u0448_\\u0434\\u0448_\\u0441\\u0448_\\u0447\\u0448_\\u043f\\u0448_\\u04b7\\u043c_\\u0448\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0418\\u043c\\u0440\\u04ef\\u0437 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",nextDay:\"[\\u041f\\u0430\\u0433\\u043e\\u04b3 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",lastDay:\"[\\u0414\\u0438\\u0440\\u04ef\\u0437 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",nextWeek:\"dddd[\\u0438] [\\u04b3\\u0430\\u0444\\u0442\\u0430\\u0438 \\u043e\\u044f\\u043d\\u0434\\u0430 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",lastWeek:\"dddd[\\u0438] [\\u04b3\\u0430\\u0444\\u0442\\u0430\\u0438 \\u0433\\u0443\\u0437\\u0430\\u0448\\u0442\\u0430 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0431\\u0430\\u044a\\u0434\\u0438 %s\",past:\"%s \\u043f\\u0435\\u0448\",s:\"\\u044f\\u043a\\u0447\\u0430\\u043d\\u0434 \\u0441\\u043e\\u043d\\u0438\\u044f\",m:\"\\u044f\\u043a \\u0434\\u0430\\u049b\\u0438\\u049b\\u0430\",mm:\"%d \\u0434\\u0430\\u049b\\u0438\\u049b\\u0430\",h:\"\\u044f\\u043a \\u0441\\u043e\\u0430\\u0442\",hh:\"%d \\u0441\\u043e\\u0430\\u0442\",d:\"\\u044f\\u043a \\u0440\\u04ef\\u0437\",dd:\"%d \\u0440\\u04ef\\u0437\",M:\"\\u044f\\u043a \\u043c\\u043e\\u04b3\",MM:\"%d \\u043c\\u043e\\u04b3\",y:\"\\u044f\\u043a \\u0441\\u043e\\u043b\",yy:\"%d \\u0441\\u043e\\u043b\"},meridiemParse:/\\u0448\\u0430\\u0431|\\u0441\\u0443\\u0431\\u04b3|\\u0440\\u04ef\\u0437|\\u0431\\u0435\\u0433\\u043e\\u04b3/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0448\\u0430\\u0431\"===t?e<4?e:e+12:\"\\u0441\\u0443\\u0431\\u04b3\"===t?e:\"\\u0440\\u04ef\\u0437\"===t?e>=11?e:e+12:\"\\u0431\\u0435\\u0433\\u043e\\u04b3\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0448\\u0430\\u0431\":e<11?\"\\u0441\\u0443\\u0431\\u04b3\":e<16?\"\\u0440\\u04ef\\u0437\":e<19?\"\\u0431\\u0435\\u0433\\u043e\\u04b3\":\"\\u0448\\u0430\\u0431\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0443\\u043c|\\u044e\\u043c)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},PA2r:function(e,t,n){!function(e){\"use strict\";var t=\"leden_\\xfanor_b\\u0159ezen_duben_kv\\u011bten_\\u010derven_\\u010dervenec_srpen_z\\xe1\\u0159\\xed_\\u0159\\xedjen_listopad_prosinec\".split(\"_\"),n=\"led_\\xfano_b\\u0159e_dub_kv\\u011b_\\u010dvn_\\u010dvc_srp_z\\xe1\\u0159_\\u0159\\xedj_lis_pro\".split(\"_\"),r=[/^led/i,/^\\xfano/i,/^b\\u0159e/i,/^dub/i,/^kv\\u011b/i,/^(\\u010dvn|\\u010derven$|\\u010dervna)/i,/^(\\u010dvc|\\u010dervenec|\\u010dervence)/i,/^srp/i,/^z\\xe1\\u0159/i,/^\\u0159\\xedj/i,/^lis/i,/^pro/i],i=/^(leden|\\xfanor|b\\u0159ezen|duben|kv\\u011bten|\\u010dervenec|\\u010dervence|\\u010derven|\\u010dervna|srpen|z\\xe1\\u0159\\xed|\\u0159\\xedjen|listopad|prosinec|led|\\xfano|b\\u0159e|dub|kv\\u011b|\\u010dvn|\\u010dvc|srp|z\\xe1\\u0159|\\u0159\\xedj|lis|pro)/i;function a(e){return e>1&&e<5&&1!=~~(e/10)}function o(e,t,n,r){var i=e+\" \";switch(n){case\"s\":return t||r?\"p\\xe1r sekund\":\"p\\xe1r sekundami\";case\"ss\":return t||r?i+(a(e)?\"sekundy\":\"sekund\"):i+\"sekundami\";case\"m\":return t?\"minuta\":r?\"minutu\":\"minutou\";case\"mm\":return t||r?i+(a(e)?\"minuty\":\"minut\"):i+\"minutami\";case\"h\":return t?\"hodina\":r?\"hodinu\":\"hodinou\";case\"hh\":return t||r?i+(a(e)?\"hodiny\":\"hodin\"):i+\"hodinami\";case\"d\":return t||r?\"den\":\"dnem\";case\"dd\":return t||r?i+(a(e)?\"dny\":\"dn\\xed\"):i+\"dny\";case\"M\":return t||r?\"m\\u011bs\\xedc\":\"m\\u011bs\\xedcem\";case\"MM\":return t||r?i+(a(e)?\"m\\u011bs\\xedce\":\"m\\u011bs\\xedc\\u016f\"):i+\"m\\u011bs\\xedci\";case\"y\":return t||r?\"rok\":\"rokem\";case\"yy\":return t||r?i+(a(e)?\"roky\":\"let\"):i+\"lety\"}}e.defineLocale(\"cs\",{months:t,monthsShort:n,monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(leden|ledna|\\xfanora|\\xfanor|b\\u0159ezen|b\\u0159ezna|duben|dubna|kv\\u011bten|kv\\u011btna|\\u010dervenec|\\u010dervence|\\u010derven|\\u010dervna|srpen|srpna|z\\xe1\\u0159\\xed|\\u0159\\xedjen|\\u0159\\xedjna|listopadu|listopad|prosinec|prosince)/i,monthsShortStrictRegex:/^(led|\\xfano|b\\u0159e|dub|kv\\u011b|\\u010dvn|\\u010dvc|srp|z\\xe1\\u0159|\\u0159\\xedj|lis|pro)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:\"ned\\u011ble_pond\\u011bl\\xed_\\xfater\\xfd_st\\u0159eda_\\u010dtvrtek_p\\xe1tek_sobota\".split(\"_\"),weekdaysShort:\"ne_po_\\xfat_st_\\u010dt_p\\xe1_so\".split(\"_\"),weekdaysMin:\"ne_po_\\xfat_st_\\u010dt_p\\xe1_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\",l:\"D. M. YYYY\"},calendar:{sameDay:\"[dnes v] LT\",nextDay:\"[z\\xedtra v] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v ned\\u011bli v] LT\";case 1:case 2:return\"[v] dddd [v] LT\";case 3:return\"[ve st\\u0159edu v] LT\";case 4:return\"[ve \\u010dtvrtek v] LT\";case 5:return\"[v p\\xe1tek v] LT\";case 6:return\"[v sobotu v] LT\"}},lastDay:\"[v\\u010dera v] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minulou ned\\u011bli v] LT\";case 1:case 2:return\"[minul\\xe9] dddd [v] LT\";case 3:return\"[minulou st\\u0159edu v] LT\";case 4:case 5:return\"[minul\\xfd] dddd [v] LT\";case 6:return\"[minulou sobotu v] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"p\\u0159ed %s\",s:o,ss:o,m:o,mm:o,h:o,hh:o,d:o,dd:o,M:o,MM:o,y:o,yy:o},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},PeUW:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0be7\",2:\"\\u0be8\",3:\"\\u0be9\",4:\"\\u0bea\",5:\"\\u0beb\",6:\"\\u0bec\",7:\"\\u0bed\",8:\"\\u0bee\",9:\"\\u0bef\",0:\"\\u0be6\"},n={\"\\u0be7\":\"1\",\"\\u0be8\":\"2\",\"\\u0be9\":\"3\",\"\\u0bea\":\"4\",\"\\u0beb\":\"5\",\"\\u0bec\":\"6\",\"\\u0bed\":\"7\",\"\\u0bee\":\"8\",\"\\u0bef\":\"9\",\"\\u0be6\":\"0\"};e.defineLocale(\"ta\",{months:\"\\u0b9c\\u0ba9\\u0bb5\\u0bb0\\u0bbf_\\u0baa\\u0bbf\\u0baa\\u0bcd\\u0bb0\\u0bb5\\u0bb0\\u0bbf_\\u0bae\\u0bbe\\u0bb0\\u0bcd\\u0b9a\\u0bcd_\\u0b8f\\u0baa\\u0bcd\\u0bb0\\u0bb2\\u0bcd_\\u0bae\\u0bc7_\\u0b9c\\u0bc2\\u0ba9\\u0bcd_\\u0b9c\\u0bc2\\u0bb2\\u0bc8_\\u0b86\\u0b95\\u0bb8\\u0bcd\\u0b9f\\u0bcd_\\u0b9a\\u0bc6\\u0baa\\u0bcd\\u0b9f\\u0bc6\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b85\\u0b95\\u0bcd\\u0b9f\\u0bc7\\u0bbe\\u0baa\\u0bb0\\u0bcd_\\u0ba8\\u0bb5\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b9f\\u0bbf\\u0b9a\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd\".split(\"_\"),monthsShort:\"\\u0b9c\\u0ba9\\u0bb5\\u0bb0\\u0bbf_\\u0baa\\u0bbf\\u0baa\\u0bcd\\u0bb0\\u0bb5\\u0bb0\\u0bbf_\\u0bae\\u0bbe\\u0bb0\\u0bcd\\u0b9a\\u0bcd_\\u0b8f\\u0baa\\u0bcd\\u0bb0\\u0bb2\\u0bcd_\\u0bae\\u0bc7_\\u0b9c\\u0bc2\\u0ba9\\u0bcd_\\u0b9c\\u0bc2\\u0bb2\\u0bc8_\\u0b86\\u0b95\\u0bb8\\u0bcd\\u0b9f\\u0bcd_\\u0b9a\\u0bc6\\u0baa\\u0bcd\\u0b9f\\u0bc6\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b85\\u0b95\\u0bcd\\u0b9f\\u0bc7\\u0bbe\\u0baa\\u0bb0\\u0bcd_\\u0ba8\\u0bb5\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b9f\\u0bbf\\u0b9a\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd\".split(\"_\"),weekdays:\"\\u0b9e\\u0bbe\\u0baf\\u0bbf\\u0bb1\\u0bcd\\u0bb1\\u0bc1\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0ba4\\u0bbf\\u0b99\\u0bcd\\u0b95\\u0b9f\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0b9a\\u0bc6\\u0bb5\\u0bcd\\u0bb5\\u0bbe\\u0baf\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0baa\\u0bc1\\u0ba4\\u0ba9\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0bb5\\u0bbf\\u0baf\\u0bbe\\u0bb4\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0bb5\\u0bc6\\u0bb3\\u0bcd\\u0bb3\\u0bbf\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0b9a\\u0ba9\\u0bbf\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8\".split(\"_\"),weekdaysShort:\"\\u0b9e\\u0bbe\\u0baf\\u0bbf\\u0bb1\\u0bc1_\\u0ba4\\u0bbf\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd_\\u0b9a\\u0bc6\\u0bb5\\u0bcd\\u0bb5\\u0bbe\\u0baf\\u0bcd_\\u0baa\\u0bc1\\u0ba4\\u0ba9\\u0bcd_\\u0bb5\\u0bbf\\u0baf\\u0bbe\\u0bb4\\u0ba9\\u0bcd_\\u0bb5\\u0bc6\\u0bb3\\u0bcd\\u0bb3\\u0bbf_\\u0b9a\\u0ba9\\u0bbf\".split(\"_\"),weekdaysMin:\"\\u0b9e\\u0bbe_\\u0ba4\\u0bbf_\\u0b9a\\u0bc6_\\u0baa\\u0bc1_\\u0bb5\\u0bbf_\\u0bb5\\u0bc6_\\u0b9a\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, HH:mm\",LLLL:\"dddd, D MMMM YYYY, HH:mm\"},calendar:{sameDay:\"[\\u0b87\\u0ba9\\u0bcd\\u0bb1\\u0bc1] LT\",nextDay:\"[\\u0ba8\\u0bbe\\u0bb3\\u0bc8] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0ba8\\u0bc7\\u0bb1\\u0bcd\\u0bb1\\u0bc1] LT\",lastWeek:\"[\\u0b95\\u0b9f\\u0ba8\\u0bcd\\u0ba4 \\u0bb5\\u0bbe\\u0bb0\\u0bae\\u0bcd] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0b87\\u0bb2\\u0bcd\",past:\"%s \\u0bae\\u0bc1\\u0ba9\\u0bcd\",s:\"\\u0b92\\u0bb0\\u0bc1 \\u0b9a\\u0bbf\\u0bb2 \\u0bb5\\u0bbf\\u0ba8\\u0bbe\\u0b9f\\u0bbf\\u0b95\\u0bb3\\u0bcd\",ss:\"%d \\u0bb5\\u0bbf\\u0ba8\\u0bbe\\u0b9f\\u0bbf\\u0b95\\u0bb3\\u0bcd\",m:\"\\u0b92\\u0bb0\\u0bc1 \\u0ba8\\u0bbf\\u0bae\\u0bbf\\u0b9f\\u0bae\\u0bcd\",mm:\"%d \\u0ba8\\u0bbf\\u0bae\\u0bbf\\u0b9f\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd\",h:\"\\u0b92\\u0bb0\\u0bc1 \\u0bae\\u0ba3\\u0bbf \\u0ba8\\u0bc7\\u0bb0\\u0bae\\u0bcd\",hh:\"%d \\u0bae\\u0ba3\\u0bbf \\u0ba8\\u0bc7\\u0bb0\\u0bae\\u0bcd\",d:\"\\u0b92\\u0bb0\\u0bc1 \\u0ba8\\u0bbe\\u0bb3\\u0bcd\",dd:\"%d \\u0ba8\\u0bbe\\u0b9f\\u0bcd\\u0b95\\u0bb3\\u0bcd\",M:\"\\u0b92\\u0bb0\\u0bc1 \\u0bae\\u0bbe\\u0ba4\\u0bae\\u0bcd\",MM:\"%d \\u0bae\\u0bbe\\u0ba4\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd\",y:\"\\u0b92\\u0bb0\\u0bc1 \\u0bb5\\u0bb0\\u0bc1\\u0b9f\\u0bae\\u0bcd\",yy:\"%d \\u0b86\\u0ba3\\u0bcd\\u0b9f\\u0bc1\\u0b95\\u0bb3\\u0bcd\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u0bb5\\u0ba4\\u0bc1/,ordinal:function(e){return e+\"\\u0bb5\\u0ba4\\u0bc1\"},preparse:function(e){return e.replace(/[\\u0be7\\u0be8\\u0be9\\u0bea\\u0beb\\u0bec\\u0bed\\u0bee\\u0bef\\u0be6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd|\\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8|\\u0b95\\u0bbe\\u0bb2\\u0bc8|\\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd|\\u0b8e\\u0bb1\\u0bcd\\u0baa\\u0bbe\\u0b9f\\u0bc1|\\u0bae\\u0bbe\\u0bb2\\u0bc8/,meridiem:function(e,t,n){return e<2?\" \\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\":e<6?\" \\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8\":e<10?\" \\u0b95\\u0bbe\\u0bb2\\u0bc8\":e<14?\" \\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd\":e<18?\" \\u0b8e\\u0bb1\\u0bcd\\u0baa\\u0bbe\\u0b9f\\u0bc1\":e<22?\" \\u0bae\\u0bbe\\u0bb2\\u0bc8\":\" \\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\"===t?e<2?e:e+12:\"\\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8\"===t||\"\\u0b95\\u0bbe\\u0bb2\\u0bc8\"===t||\"\\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd\"===t&&e>=10?e:e+12},week:{dow:0,doy:6}})}(n(\"wd/R\"))},PpIw:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0ce7\",2:\"\\u0ce8\",3:\"\\u0ce9\",4:\"\\u0cea\",5:\"\\u0ceb\",6:\"\\u0cec\",7:\"\\u0ced\",8:\"\\u0cee\",9:\"\\u0cef\",0:\"\\u0ce6\"},n={\"\\u0ce7\":\"1\",\"\\u0ce8\":\"2\",\"\\u0ce9\":\"3\",\"\\u0cea\":\"4\",\"\\u0ceb\":\"5\",\"\\u0cec\":\"6\",\"\\u0ced\":\"7\",\"\\u0cee\":\"8\",\"\\u0cef\":\"9\",\"\\u0ce6\":\"0\"};e.defineLocale(\"kn\",{months:\"\\u0c9c\\u0ca8\\u0cb5\\u0cb0\\u0cbf_\\u0cab\\u0cc6\\u0cac\\u0ccd\\u0cb0\\u0cb5\\u0cb0\\u0cbf_\\u0cae\\u0cbe\\u0cb0\\u0ccd\\u0c9a\\u0ccd_\\u0c8f\\u0caa\\u0ccd\\u0cb0\\u0cbf\\u0cb2\\u0ccd_\\u0cae\\u0cc6\\u0cd5_\\u0c9c\\u0cc2\\u0ca8\\u0ccd_\\u0c9c\\u0cc1\\u0cb2\\u0cc6\\u0cd6_\\u0c86\\u0c97\\u0cb8\\u0ccd\\u0c9f\\u0ccd_\\u0cb8\\u0cc6\\u0caa\\u0ccd\\u0c9f\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd_\\u0c85\\u0c95\\u0ccd\\u0c9f\\u0cc6\\u0cc2\\u0cd5\\u0cac\\u0cb0\\u0ccd_\\u0ca8\\u0cb5\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd_\\u0ca1\\u0cbf\\u0cb8\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd\".split(\"_\"),monthsShort:\"\\u0c9c\\u0ca8_\\u0cab\\u0cc6\\u0cac\\u0ccd\\u0cb0_\\u0cae\\u0cbe\\u0cb0\\u0ccd\\u0c9a\\u0ccd_\\u0c8f\\u0caa\\u0ccd\\u0cb0\\u0cbf\\u0cb2\\u0ccd_\\u0cae\\u0cc6\\u0cd5_\\u0c9c\\u0cc2\\u0ca8\\u0ccd_\\u0c9c\\u0cc1\\u0cb2\\u0cc6\\u0cd6_\\u0c86\\u0c97\\u0cb8\\u0ccd\\u0c9f\\u0ccd_\\u0cb8\\u0cc6\\u0caa\\u0ccd\\u0c9f\\u0cc6\\u0c82_\\u0c85\\u0c95\\u0ccd\\u0c9f\\u0cc6\\u0cc2\\u0cd5_\\u0ca8\\u0cb5\\u0cc6\\u0c82_\\u0ca1\\u0cbf\\u0cb8\\u0cc6\\u0c82\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0cad\\u0cbe\\u0ca8\\u0cc1\\u0cb5\\u0cbe\\u0cb0_\\u0cb8\\u0cc6\\u0cc2\\u0cd5\\u0cae\\u0cb5\\u0cbe\\u0cb0_\\u0cae\\u0c82\\u0c97\\u0cb3\\u0cb5\\u0cbe\\u0cb0_\\u0cac\\u0cc1\\u0ca7\\u0cb5\\u0cbe\\u0cb0_\\u0c97\\u0cc1\\u0cb0\\u0cc1\\u0cb5\\u0cbe\\u0cb0_\\u0cb6\\u0cc1\\u0c95\\u0ccd\\u0cb0\\u0cb5\\u0cbe\\u0cb0_\\u0cb6\\u0ca8\\u0cbf\\u0cb5\\u0cbe\\u0cb0\".split(\"_\"),weekdaysShort:\"\\u0cad\\u0cbe\\u0ca8\\u0cc1_\\u0cb8\\u0cc6\\u0cc2\\u0cd5\\u0cae_\\u0cae\\u0c82\\u0c97\\u0cb3_\\u0cac\\u0cc1\\u0ca7_\\u0c97\\u0cc1\\u0cb0\\u0cc1_\\u0cb6\\u0cc1\\u0c95\\u0ccd\\u0cb0_\\u0cb6\\u0ca8\\u0cbf\".split(\"_\"),weekdaysMin:\"\\u0cad\\u0cbe_\\u0cb8\\u0cc6\\u0cc2\\u0cd5_\\u0cae\\u0c82_\\u0cac\\u0cc1_\\u0c97\\u0cc1_\\u0cb6\\u0cc1_\\u0cb6\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0c87\\u0c82\\u0ca6\\u0cc1] LT\",nextDay:\"[\\u0ca8\\u0cbe\\u0cb3\\u0cc6] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0ca8\\u0cbf\\u0ca8\\u0ccd\\u0ca8\\u0cc6] LT\",lastWeek:\"[\\u0c95\\u0cc6\\u0cc2\\u0ca8\\u0cc6\\u0caf] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0ca8\\u0c82\\u0ca4\\u0cb0\",past:\"%s \\u0cb9\\u0cbf\\u0c82\\u0ca6\\u0cc6\",s:\"\\u0c95\\u0cc6\\u0cb2\\u0cb5\\u0cc1 \\u0c95\\u0ccd\\u0cb7\\u0ca3\\u0c97\\u0cb3\\u0cc1\",ss:\"%d \\u0cb8\\u0cc6\\u0c95\\u0cc6\\u0c82\\u0ca1\\u0cc1\\u0c97\\u0cb3\\u0cc1\",m:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca8\\u0cbf\\u0cae\\u0cbf\\u0cb7\",mm:\"%d \\u0ca8\\u0cbf\\u0cae\\u0cbf\\u0cb7\",h:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0c97\\u0c82\\u0c9f\\u0cc6\",hh:\"%d \\u0c97\\u0c82\\u0c9f\\u0cc6\",d:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca6\\u0cbf\\u0ca8\",dd:\"%d \\u0ca6\\u0cbf\\u0ca8\",M:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca4\\u0cbf\\u0c82\\u0c97\\u0cb3\\u0cc1\",MM:\"%d \\u0ca4\\u0cbf\\u0c82\\u0c97\\u0cb3\\u0cc1\",y:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0cb5\\u0cb0\\u0ccd\\u0cb7\",yy:\"%d \\u0cb5\\u0cb0\\u0ccd\\u0cb7\"},preparse:function(e){return e.replace(/[\\u0ce7\\u0ce8\\u0ce9\\u0cea\\u0ceb\\u0cec\\u0ced\\u0cee\\u0cef\\u0ce6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf|\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6|\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8|\\u0cb8\\u0c82\\u0c9c\\u0cc6/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\"===t?e<4?e:e+12:\"\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6\"===t?e:\"\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8\"===t?e>=10?e:e+12:\"\\u0cb8\\u0c82\\u0c9c\\u0cc6\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\":e<10?\"\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6\":e<17?\"\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8\":e<20?\"\\u0cb8\\u0c82\\u0c9c\\u0cc6\":\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u0ca8\\u0cc6\\u0cd5)/,ordinal:function(e){return e+\"\\u0ca8\\u0cc6\\u0cd5\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},Qj4J:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-kw\",{months:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648\\u0632_\\u063a\\u0634\\u062a_\\u0634\\u062a\\u0646\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0646\\u0628\\u0631_\\u062f\\u062c\\u0646\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648\\u0632_\\u063a\\u0634\\u062a_\\u0634\\u062a\\u0646\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0646\\u0628\\u0631_\\u062f\\u062c\\u0646\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062a\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0627\\u062d\\u062f_\\u0627\\u062a\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:0,doy:12}})}(n(\"wd/R\"))},RAwQ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={m:[\"eng Minutt\",\"enger Minutt\"],h:[\"eng Stonn\",\"enger Stonn\"],d:[\"een Dag\",\"engem Dag\"],M:[\"ee Mount\",\"engem Mount\"],y:[\"ee Joer\",\"engem Joer\"]};return t?i[n][0]:i[n][1]}function n(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var t=e%10;return n(0===t?e/10:t)}if(e<1e4){for(;e>=10;)e/=10;return n(e)}return n(e/=1e3)}e.defineLocale(\"lb\",{months:\"Januar_Februar_M\\xe4erz_Abr\\xebll_Mee_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonndeg_M\\xe9indeg_D\\xebnschdeg_M\\xebttwoch_Donneschdeg_Freideg_Samschdeg\".split(\"_\"),weekdaysShort:\"So._M\\xe9._D\\xeb._M\\xeb._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_M\\xe9_D\\xeb_M\\xeb_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm [Auer]\",LTS:\"H:mm:ss [Auer]\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm [Auer]\",LLLL:\"dddd, D. MMMM YYYY H:mm [Auer]\"},calendar:{sameDay:\"[Haut um] LT\",sameElse:\"L\",nextDay:\"[Muer um] LT\",nextWeek:\"dddd [um] LT\",lastDay:\"[G\\xebschter um] LT\",lastWeek:function(){switch(this.day()){case 2:case 4:return\"[Leschten] dddd [um] LT\";default:return\"[Leschte] dddd [um] LT\"}}},relativeTime:{future:function(e){return n(e.substr(0,e.indexOf(\" \")))?\"a \"+e:\"an \"+e},past:function(e){return n(e.substr(0,e.indexOf(\" \")))?\"viru \"+e:\"virun \"+e},s:\"e puer Sekonnen\",ss:\"%d Sekonnen\",m:t,mm:\"%d Minutten\",h:t,hh:\"%d Stonnen\",d:t,dd:\"%d Deeg\",M:t,MM:\"%d M\\xe9int\",y:t,yy:\"%d Joer\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},RnhZ:function(e,t,n){var r={\"./af\":\"K/tc\",\"./af.js\":\"K/tc\",\"./ar\":\"jnO4\",\"./ar-dz\":\"o1bE\",\"./ar-dz.js\":\"o1bE\",\"./ar-kw\":\"Qj4J\",\"./ar-kw.js\":\"Qj4J\",\"./ar-ly\":\"HP3h\",\"./ar-ly.js\":\"HP3h\",\"./ar-ma\":\"CoRJ\",\"./ar-ma.js\":\"CoRJ\",\"./ar-sa\":\"gjCT\",\"./ar-sa.js\":\"gjCT\",\"./ar-tn\":\"bYM6\",\"./ar-tn.js\":\"bYM6\",\"./ar.js\":\"jnO4\",\"./az\":\"SFxW\",\"./az.js\":\"SFxW\",\"./be\":\"H8ED\",\"./be.js\":\"H8ED\",\"./bg\":\"hKrs\",\"./bg.js\":\"hKrs\",\"./bm\":\"p/rL\",\"./bm.js\":\"p/rL\",\"./bn\":\"kEOa\",\"./bn.js\":\"kEOa\",\"./bo\":\"0mo+\",\"./bo.js\":\"0mo+\",\"./br\":\"aIdf\",\"./br.js\":\"aIdf\",\"./bs\":\"JVSJ\",\"./bs.js\":\"JVSJ\",\"./ca\":\"1xZ4\",\"./ca.js\":\"1xZ4\",\"./cs\":\"PA2r\",\"./cs.js\":\"PA2r\",\"./cv\":\"A+xa\",\"./cv.js\":\"A+xa\",\"./cy\":\"l5ep\",\"./cy.js\":\"l5ep\",\"./da\":\"DxQv\",\"./da.js\":\"DxQv\",\"./de\":\"tGlX\",\"./de-at\":\"s+uk\",\"./de-at.js\":\"s+uk\",\"./de-ch\":\"u3GI\",\"./de-ch.js\":\"u3GI\",\"./de.js\":\"tGlX\",\"./dv\":\"WYrj\",\"./dv.js\":\"WYrj\",\"./el\":\"jUeY\",\"./el.js\":\"jUeY\",\"./en-SG\":\"zavE\",\"./en-SG.js\":\"zavE\",\"./en-au\":\"Dmvi\",\"./en-au.js\":\"Dmvi\",\"./en-ca\":\"OIYi\",\"./en-ca.js\":\"OIYi\",\"./en-gb\":\"Oaa7\",\"./en-gb.js\":\"Oaa7\",\"./en-ie\":\"4dOw\",\"./en-ie.js\":\"4dOw\",\"./en-il\":\"czMo\",\"./en-il.js\":\"czMo\",\"./en-nz\":\"b1Dy\",\"./en-nz.js\":\"b1Dy\",\"./eo\":\"Zduo\",\"./eo.js\":\"Zduo\",\"./es\":\"iYuL\",\"./es-do\":\"CjzT\",\"./es-do.js\":\"CjzT\",\"./es-us\":\"Vclq\",\"./es-us.js\":\"Vclq\",\"./es.js\":\"iYuL\",\"./et\":\"7BjC\",\"./et.js\":\"7BjC\",\"./eu\":\"D/JM\",\"./eu.js\":\"D/JM\",\"./fa\":\"jfSC\",\"./fa.js\":\"jfSC\",\"./fi\":\"gekB\",\"./fi.js\":\"gekB\",\"./fo\":\"ByF4\",\"./fo.js\":\"ByF4\",\"./fr\":\"nyYc\",\"./fr-ca\":\"2fjn\",\"./fr-ca.js\":\"2fjn\",\"./fr-ch\":\"Dkky\",\"./fr-ch.js\":\"Dkky\",\"./fr.js\":\"nyYc\",\"./fy\":\"cRix\",\"./fy.js\":\"cRix\",\"./ga\":\"USCx\",\"./ga.js\":\"USCx\",\"./gd\":\"9rRi\",\"./gd.js\":\"9rRi\",\"./gl\":\"iEDd\",\"./gl.js\":\"iEDd\",\"./gom-latn\":\"DKr+\",\"./gom-latn.js\":\"DKr+\",\"./gu\":\"4MV3\",\"./gu.js\":\"4MV3\",\"./he\":\"x6pH\",\"./he.js\":\"x6pH\",\"./hi\":\"3E1r\",\"./hi.js\":\"3E1r\",\"./hr\":\"S6ln\",\"./hr.js\":\"S6ln\",\"./hu\":\"WxRl\",\"./hu.js\":\"WxRl\",\"./hy-am\":\"1rYy\",\"./hy-am.js\":\"1rYy\",\"./id\":\"UDhR\",\"./id.js\":\"UDhR\",\"./is\":\"BVg3\",\"./is.js\":\"BVg3\",\"./it\":\"bpih\",\"./it-ch\":\"bxKX\",\"./it-ch.js\":\"bxKX\",\"./it.js\":\"bpih\",\"./ja\":\"B55N\",\"./ja.js\":\"B55N\",\"./jv\":\"tUCv\",\"./jv.js\":\"tUCv\",\"./ka\":\"IBtZ\",\"./ka.js\":\"IBtZ\",\"./kk\":\"bXm7\",\"./kk.js\":\"bXm7\",\"./km\":\"6B0Y\",\"./km.js\":\"6B0Y\",\"./kn\":\"PpIw\",\"./kn.js\":\"PpIw\",\"./ko\":\"Ivi+\",\"./ko.js\":\"Ivi+\",\"./ku\":\"JCF/\",\"./ku.js\":\"JCF/\",\"./ky\":\"lgnt\",\"./ky.js\":\"lgnt\",\"./lb\":\"RAwQ\",\"./lb.js\":\"RAwQ\",\"./lo\":\"sp3z\",\"./lo.js\":\"sp3z\",\"./lt\":\"JvlW\",\"./lt.js\":\"JvlW\",\"./lv\":\"uXwI\",\"./lv.js\":\"uXwI\",\"./me\":\"KTz0\",\"./me.js\":\"KTz0\",\"./mi\":\"aIsn\",\"./mi.js\":\"aIsn\",\"./mk\":\"aQkU\",\"./mk.js\":\"aQkU\",\"./ml\":\"AvvY\",\"./ml.js\":\"AvvY\",\"./mn\":\"lYtQ\",\"./mn.js\":\"lYtQ\",\"./mr\":\"Ob0Z\",\"./mr.js\":\"Ob0Z\",\"./ms\":\"6+QB\",\"./ms-my\":\"ZAMP\",\"./ms-my.js\":\"ZAMP\",\"./ms.js\":\"6+QB\",\"./mt\":\"G0Uy\",\"./mt.js\":\"G0Uy\",\"./my\":\"honF\",\"./my.js\":\"honF\",\"./nb\":\"bOMt\",\"./nb.js\":\"bOMt\",\"./ne\":\"OjkT\",\"./ne.js\":\"OjkT\",\"./nl\":\"+s0g\",\"./nl-be\":\"2ykv\",\"./nl-be.js\":\"2ykv\",\"./nl.js\":\"+s0g\",\"./nn\":\"uEye\",\"./nn.js\":\"uEye\",\"./pa-in\":\"8/+R\",\"./pa-in.js\":\"8/+R\",\"./pl\":\"jVdC\",\"./pl.js\":\"jVdC\",\"./pt\":\"8mBD\",\"./pt-br\":\"0tRk\",\"./pt-br.js\":\"0tRk\",\"./pt.js\":\"8mBD\",\"./ro\":\"lyxo\",\"./ro.js\":\"lyxo\",\"./ru\":\"lXzo\",\"./ru.js\":\"lXzo\",\"./sd\":\"Z4QM\",\"./sd.js\":\"Z4QM\",\"./se\":\"//9w\",\"./se.js\":\"//9w\",\"./si\":\"7aV9\",\"./si.js\":\"7aV9\",\"./sk\":\"e+ae\",\"./sk.js\":\"e+ae\",\"./sl\":\"gVVK\",\"./sl.js\":\"gVVK\",\"./sq\":\"yPMs\",\"./sq.js\":\"yPMs\",\"./sr\":\"zx6S\",\"./sr-cyrl\":\"E+lV\",\"./sr-cyrl.js\":\"E+lV\",\"./sr.js\":\"zx6S\",\"./ss\":\"Ur1D\",\"./ss.js\":\"Ur1D\",\"./sv\":\"X709\",\"./sv.js\":\"X709\",\"./sw\":\"dNwA\",\"./sw.js\":\"dNwA\",\"./ta\":\"PeUW\",\"./ta.js\":\"PeUW\",\"./te\":\"XLvN\",\"./te.js\":\"XLvN\",\"./tet\":\"V2x9\",\"./tet.js\":\"V2x9\",\"./tg\":\"Oxv6\",\"./tg.js\":\"Oxv6\",\"./th\":\"EOgW\",\"./th.js\":\"EOgW\",\"./tl-ph\":\"Dzi0\",\"./tl-ph.js\":\"Dzi0\",\"./tlh\":\"z3Vd\",\"./tlh.js\":\"z3Vd\",\"./tr\":\"DoHr\",\"./tr.js\":\"DoHr\",\"./tzl\":\"z1FC\",\"./tzl.js\":\"z1FC\",\"./tzm\":\"wQk9\",\"./tzm-latn\":\"tT3J\",\"./tzm-latn.js\":\"tT3J\",\"./tzm.js\":\"wQk9\",\"./ug-cn\":\"YRex\",\"./ug-cn.js\":\"YRex\",\"./uk\":\"raLr\",\"./uk.js\":\"raLr\",\"./ur\":\"UpQW\",\"./ur.js\":\"UpQW\",\"./uz\":\"Loxo\",\"./uz-latn\":\"AQ68\",\"./uz-latn.js\":\"AQ68\",\"./uz.js\":\"Loxo\",\"./vi\":\"KSF8\",\"./vi.js\":\"KSF8\",\"./x-pseudo\":\"/X5v\",\"./x-pseudo.js\":\"/X5v\",\"./yo\":\"fzPg\",\"./yo.js\":\"fzPg\",\"./zh-cn\":\"XDpg\",\"./zh-cn.js\":\"XDpg\",\"./zh-hk\":\"SatO\",\"./zh-hk.js\":\"SatO\",\"./zh-tw\":\"kOpN\",\"./zh-tw.js\":\"kOpN\"};function i(e){var t=a(e);return n(t)}function a(e){if(!n.o(r,e)){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}return r[e]}i.keys=function(){return Object.keys(r)},i.resolve=a,e.exports=i,i.id=\"RnhZ\"},S6ln:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r=e+\" \";switch(n){case\"ss\":return r+(1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\");case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return r+(1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\");case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return r+(1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\");case\"dd\":return r+(1===e?\"dan\":\"dana\");case\"MM\":return r+(1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\");case\"yy\":return r+(1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\")}}e.defineLocale(\"hr\",{months:{format:\"sije\\u010dnja_velja\\u010de_o\\u017eujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca\".split(\"_\"),standalone:\"sije\\u010danj_velja\\u010da_o\\u017eujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac\".split(\"_\")},monthsShort:\"sij._velj._o\\u017eu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010der u] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:return\"[pro\\u0161lu] dddd [u] LT\";case 6:return\"[pro\\u0161le] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[pro\\u0161li] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},SFxW:function(e,t,n){!function(e){\"use strict\";var t={1:\"-inci\",5:\"-inci\",8:\"-inci\",70:\"-inci\",80:\"-inci\",2:\"-nci\",7:\"-nci\",20:\"-nci\",50:\"-nci\",3:\"-\\xfcnc\\xfc\",4:\"-\\xfcnc\\xfc\",100:\"-\\xfcnc\\xfc\",6:\"-nc\\u0131\",9:\"-uncu\",10:\"-uncu\",30:\"-uncu\",60:\"-\\u0131nc\\u0131\",90:\"-\\u0131nc\\u0131\"};e.defineLocale(\"az\",{months:\"yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr\".split(\"_\"),monthsShort:\"yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek\".split(\"_\"),weekdays:\"Bazar_Bazar ert\\u0259si_\\xc7\\u0259r\\u015f\\u0259nb\\u0259 ax\\u015fam\\u0131_\\xc7\\u0259r\\u015f\\u0259nb\\u0259_C\\xfcm\\u0259 ax\\u015fam\\u0131_C\\xfcm\\u0259_\\u015e\\u0259nb\\u0259\".split(\"_\"),weekdaysShort:\"Baz_BzE_\\xc7Ax_\\xc7\\u0259r_CAx_C\\xfcm_\\u015e\\u0259n\".split(\"_\"),weekdaysMin:\"Bz_BE_\\xc7A_\\xc7\\u0259_CA_C\\xfc_\\u015e\\u0259\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bug\\xfcn saat] LT\",nextDay:\"[sabah saat] LT\",nextWeek:\"[g\\u0259l\\u0259n h\\u0259ft\\u0259] dddd [saat] LT\",lastDay:\"[d\\xfcn\\u0259n] LT\",lastWeek:\"[ke\\xe7\\u0259n h\\u0259ft\\u0259] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s \\u0259vv\\u0259l\",s:\"birne\\xe7\\u0259 saniy\\u0259\",ss:\"%d saniy\\u0259\",m:\"bir d\\u0259qiq\\u0259\",mm:\"%d d\\u0259qiq\\u0259\",h:\"bir saat\",hh:\"%d saat\",d:\"bir g\\xfcn\",dd:\"%d g\\xfcn\",M:\"bir ay\",MM:\"%d ay\",y:\"bir il\",yy:\"%d il\"},meridiemParse:/gec\\u0259|s\\u0259h\\u0259r|g\\xfcnd\\xfcz|ax\\u015fam/,isPM:function(e){return/^(g\\xfcnd\\xfcz|ax\\u015fam)$/.test(e)},meridiem:function(e,t,n){return e<4?\"gec\\u0259\":e<12?\"s\\u0259h\\u0259r\":e<17?\"g\\xfcnd\\xfcz\":\"ax\\u015fam\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0131nc\\u0131|inci|nci|\\xfcnc\\xfc|nc\\u0131|uncu)/,ordinal:function(e){if(0===e)return e+\"-\\u0131nc\\u0131\";var n=e%10;return e+(t[n]||t[e%100-n]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},SatO:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-hk\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u9031\\u65e5_\\u9031\\u4e00_\\u9031\\u4e8c_\\u9031\\u4e09_\\u9031\\u56db_\\u9031\\u4e94_\\u9031\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e2d\\u5348\"===t?e>=11?e:e+12:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:void 0},meridiem:function(e,t,n){var r=100*e+t;return r<600?\"\\u51cc\\u6668\":r<900?\"\\u65e9\\u4e0a\":r<1130?\"\\u4e0a\\u5348\":r<1230?\"\\u4e2d\\u5348\":r<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929]LT\",nextDay:\"[\\u660e\\u5929]LT\",nextWeek:\"[\\u4e0b]ddddLT\",lastDay:\"[\\u6628\\u5929]LT\",lastWeek:\"[\\u4e0a]ddddLT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u9031)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u9031\";default:return e}},relativeTime:{future:\"%s\\u5167\",past:\"%s\\u524d\",s:\"\\u5e7e\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u9418\",mm:\"%d \\u5206\\u9418\",h:\"1 \\u5c0f\\u6642\",hh:\"%d \\u5c0f\\u6642\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u500b\\u6708\",MM:\"%d \\u500b\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"}})}(n(\"wd/R\"))},UDhR:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"id\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Rab_Kam_Jum_Sab\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"siang\"===t?e>=11?e:e+12:\"sore\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"siang\":e<19?\"sore\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Besok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kemarin pukul] LT\",lastWeek:\"dddd [lalu pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lalu\",s:\"beberapa detik\",ss:\"%d detik\",m:\"semenit\",mm:\"%d menit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},USCx:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ga\",{months:[\"Ean\\xe1ir\",\"Feabhra\",\"M\\xe1rta\",\"Aibre\\xe1n\",\"Bealtaine\",\"M\\xe9itheamh\",\"I\\xfail\",\"L\\xfanasa\",\"Me\\xe1n F\\xf3mhair\",\"Deaireadh F\\xf3mhair\",\"Samhain\",\"Nollaig\"],monthsShort:[\"Ean\\xe1\",\"Feab\",\"M\\xe1rt\",\"Aibr\",\"Beal\",\"M\\xe9it\",\"I\\xfail\",\"L\\xfana\",\"Me\\xe1n\",\"Deai\",\"Samh\",\"Noll\"],monthsParseExact:!0,weekdays:[\"D\\xe9 Domhnaigh\",\"D\\xe9 Luain\",\"D\\xe9 M\\xe1irt\",\"D\\xe9 C\\xe9adaoin\",\"D\\xe9ardaoin\",\"D\\xe9 hAoine\",\"D\\xe9 Satharn\"],weekdaysShort:[\"Dom\",\"Lua\",\"M\\xe1i\",\"C\\xe9a\",\"D\\xe9a\",\"hAo\",\"Sat\"],weekdaysMin:[\"Do\",\"Lu\",\"M\\xe1\",\"Ce\",\"D\\xe9\",\"hA\",\"Sa\"],longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Inniu ag] LT\",nextDay:\"[Am\\xe1rach ag] LT\",nextWeek:\"dddd [ag] LT\",lastDay:\"[Inn\\xe9 aig] LT\",lastWeek:\"dddd [seo caite] [ag] LT\",sameElse:\"L\"},relativeTime:{future:\"i %s\",past:\"%s \\xf3 shin\",s:\"c\\xfapla soicind\",ss:\"%d soicind\",m:\"n\\xf3im\\xe9ad\",mm:\"%d n\\xf3im\\xe9ad\",h:\"uair an chloig\",hh:\"%d uair an chloig\",d:\"l\\xe1\",dd:\"%d l\\xe1\",M:\"m\\xed\",MM:\"%d m\\xed\",y:\"bliain\",yy:\"%d bliain\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},UpQW:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u062c\\u0646\\u0648\\u0631\\u06cc\",\"\\u0641\\u0631\\u0648\\u0631\\u06cc\",\"\\u0645\\u0627\\u0631\\u0686\",\"\\u0627\\u067e\\u0631\\u06cc\\u0644\",\"\\u0645\\u0626\\u06cc\",\"\\u062c\\u0648\\u0646\",\"\\u062c\\u0648\\u0644\\u0627\\u0626\\u06cc\",\"\\u0627\\u06af\\u0633\\u062a\",\"\\u0633\\u062a\\u0645\\u0628\\u0631\",\"\\u0627\\u06a9\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0645\\u0628\\u0631\",\"\\u062f\\u0633\\u0645\\u0628\\u0631\"],n=[\"\\u0627\\u062a\\u0648\\u0627\\u0631\",\"\\u067e\\u06cc\\u0631\",\"\\u0645\\u0646\\u06af\\u0644\",\"\\u0628\\u062f\\u06be\",\"\\u062c\\u0645\\u0639\\u0631\\u0627\\u062a\",\"\\u062c\\u0645\\u0639\\u06c1\",\"\\u06c1\\u0641\\u062a\\u06c1\"];e.defineLocale(\"ur\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd\\u060c D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635\\u0628\\u062d|\\u0634\\u0627\\u0645/,isPM:function(e){return\"\\u0634\\u0627\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\\u0628\\u062d\":\"\\u0634\\u0627\\u0645\"},calendar:{sameDay:\"[\\u0622\\u062c \\u0628\\u0648\\u0642\\u062a] LT\",nextDay:\"[\\u06a9\\u0644 \\u0628\\u0648\\u0642\\u062a] LT\",nextWeek:\"dddd [\\u0628\\u0648\\u0642\\u062a] LT\",lastDay:\"[\\u06af\\u0630\\u0634\\u062a\\u06c1 \\u0631\\u0648\\u0632 \\u0628\\u0648\\u0642\\u062a] LT\",lastWeek:\"[\\u06af\\u0630\\u0634\\u062a\\u06c1] dddd [\\u0628\\u0648\\u0642\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0628\\u0639\\u062f\",past:\"%s \\u0642\\u0628\\u0644\",s:\"\\u0686\\u0646\\u062f \\u0633\\u06cc\\u06a9\\u0646\\u0688\",ss:\"%d \\u0633\\u06cc\\u06a9\\u0646\\u0688\",m:\"\\u0627\\u06cc\\u06a9 \\u0645\\u0646\\u0679\",mm:\"%d \\u0645\\u0646\\u0679\",h:\"\\u0627\\u06cc\\u06a9 \\u06af\\u06be\\u0646\\u0679\\u06c1\",hh:\"%d \\u06af\\u06be\\u0646\\u0679\\u06d2\",d:\"\\u0627\\u06cc\\u06a9 \\u062f\\u0646\",dd:\"%d \\u062f\\u0646\",M:\"\\u0627\\u06cc\\u06a9 \\u0645\\u0627\\u06c1\",MM:\"%d \\u0645\\u0627\\u06c1\",y:\"\\u0627\\u06cc\\u06a9 \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Ur1D:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ss\",{months:\"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni\".split(\"_\"),monthsShort:\"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo\".split(\"_\"),weekdays:\"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo\".split(\"_\"),weekdaysShort:\"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg\".split(\"_\"),weekdaysMin:\"Li_Us_Lb_Lt_Ls_Lh_Ug\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Namuhla nga] LT\",nextDay:\"[Kusasa nga] LT\",nextWeek:\"dddd [nga] LT\",lastDay:\"[Itolo nga] LT\",lastWeek:\"dddd [leliphelile] [nga] LT\",sameElse:\"L\"},relativeTime:{future:\"nga %s\",past:\"wenteka nga %s\",s:\"emizuzwana lomcane\",ss:\"%d mzuzwana\",m:\"umzuzu\",mm:\"%d emizuzu\",h:\"lihora\",hh:\"%d emahora\",d:\"lilanga\",dd:\"%d emalanga\",M:\"inyanga\",MM:\"%d tinyanga\",y:\"umnyaka\",yy:\"%d iminyaka\"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(e,t,n){return e<11?\"ekuseni\":e<15?\"emini\":e<19?\"entsambama\":\"ebusuku\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"ekuseni\"===t?e:\"emini\"===t?e>=11?e:e+12:\"entsambama\"===t||\"ebusuku\"===t?0===e?0:e+12:void 0},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:\"%d\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},V2x9:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tet\",{months:\"Janeiru_Fevereiru_Marsu_Abril_Maiu_Ju\\xf1u_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ters_Kua_Kint_Sest_Sab\".split(\"_\"),weekdaysMin:\"Do_Seg_Te_Ku_Ki_Ses_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Ohin iha] LT\",nextDay:\"[Aban iha] LT\",nextWeek:\"dddd [iha] LT\",lastDay:\"[Horiseik iha] LT\",lastWeek:\"dddd [semana kotuk] [iha] LT\",sameElse:\"L\"},relativeTime:{future:\"iha %s\",past:\"%s liuba\",s:\"minutu balun\",ss:\"minutu %d\",m:\"minutu ida\",mm:\"minutu %d\",h:\"oras ida\",hh:\"oras %d\",d:\"loron ida\",dd:\"loron %d\",M:\"fulan ida\",MM:\"fulan %d\",y:\"tinan ida\",yy:\"tinan %d\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Vclq:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],i=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es-us\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:\"domingo_lunes_martes_mi\\xe9rcoles_jueves_viernes_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mi\\xe9._jue._vie._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"MM/DD/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY h:mm A\",LLLL:\"dddd, D [de] MMMM [de] YYYY h:mm A\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1ana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un a\\xf1o\",yy:\"%d a\\xf1os\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:0,doy:6}})}(n(\"wd/R\"))},WYrj:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u0796\\u07ac\\u0782\\u07aa\\u0787\\u07a6\\u0783\\u07a9\",\"\\u078a\\u07ac\\u0784\\u07b0\\u0783\\u07aa\\u0787\\u07a6\\u0783\\u07a9\",\"\\u0789\\u07a7\\u0783\\u07a8\\u0797\\u07aa\",\"\\u0787\\u07ad\\u0795\\u07b0\\u0783\\u07a9\\u078d\\u07aa\",\"\\u0789\\u07ad\",\"\\u0796\\u07ab\\u0782\\u07b0\",\"\\u0796\\u07aa\\u078d\\u07a6\\u0787\\u07a8\",\"\\u0787\\u07af\\u078e\\u07a6\\u0790\\u07b0\\u0793\\u07aa\",\"\\u0790\\u07ac\\u0795\\u07b0\\u0793\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0787\\u07ae\\u0786\\u07b0\\u0793\\u07af\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0782\\u07ae\\u0788\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0791\\u07a8\\u0790\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\"],n=[\"\\u0787\\u07a7\\u078b\\u07a8\\u0787\\u07b0\\u078c\\u07a6\",\"\\u0780\\u07af\\u0789\\u07a6\",\"\\u0787\\u07a6\\u0782\\u07b0\\u078e\\u07a7\\u0783\\u07a6\",\"\\u0784\\u07aa\\u078b\\u07a6\",\"\\u0784\\u07aa\\u0783\\u07a7\\u0790\\u07b0\\u078a\\u07a6\\u078c\\u07a8\",\"\\u0780\\u07aa\\u0786\\u07aa\\u0783\\u07aa\",\"\\u0780\\u07ae\\u0782\\u07a8\\u0780\\u07a8\\u0783\\u07aa\"];e.defineLocale(\"dv\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:\"\\u0787\\u07a7\\u078b\\u07a8_\\u0780\\u07af\\u0789\\u07a6_\\u0787\\u07a6\\u0782\\u07b0_\\u0784\\u07aa\\u078b\\u07a6_\\u0784\\u07aa\\u0783\\u07a7_\\u0780\\u07aa\\u0786\\u07aa_\\u0780\\u07ae\\u0782\\u07a8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/M/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0789\\u0786|\\u0789\\u078a/,isPM:function(e){return\"\\u0789\\u078a\"===e},meridiem:function(e,t,n){return e<12?\"\\u0789\\u0786\":\"\\u0789\\u078a\"},calendar:{sameDay:\"[\\u0789\\u07a8\\u0787\\u07a6\\u078b\\u07aa] LT\",nextDay:\"[\\u0789\\u07a7\\u078b\\u07a6\\u0789\\u07a7] LT\",nextWeek:\"dddd LT\",lastDay:\"[\\u0787\\u07a8\\u0787\\u07b0\\u0794\\u07ac] LT\",lastWeek:\"[\\u078a\\u07a7\\u0787\\u07a8\\u078c\\u07aa\\u0788\\u07a8] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"\\u078c\\u07ac\\u0783\\u07ad\\u078e\\u07a6\\u0787\\u07a8 %s\",past:\"\\u0786\\u07aa\\u0783\\u07a8\\u0782\\u07b0 %s\",s:\"\\u0790\\u07a8\\u0786\\u07aa\\u0782\\u07b0\\u078c\\u07aa\\u0786\\u07ae\\u0785\\u07ac\\u0787\\u07b0\",ss:\"d% \\u0790\\u07a8\\u0786\\u07aa\\u0782\\u07b0\\u078c\\u07aa\",m:\"\\u0789\\u07a8\\u0782\\u07a8\\u0793\\u07ac\\u0787\\u07b0\",mm:\"\\u0789\\u07a8\\u0782\\u07a8\\u0793\\u07aa %d\",h:\"\\u078e\\u07a6\\u0791\\u07a8\\u0787\\u07a8\\u0783\\u07ac\\u0787\\u07b0\",hh:\"\\u078e\\u07a6\\u0791\\u07a8\\u0787\\u07a8\\u0783\\u07aa %d\",d:\"\\u078b\\u07aa\\u0788\\u07a6\\u0780\\u07ac\\u0787\\u07b0\",dd:\"\\u078b\\u07aa\\u0788\\u07a6\\u0790\\u07b0 %d\",M:\"\\u0789\\u07a6\\u0780\\u07ac\\u0787\\u07b0\",MM:\"\\u0789\\u07a6\\u0790\\u07b0 %d\",y:\"\\u0787\\u07a6\\u0780\\u07a6\\u0783\\u07ac\\u0787\\u07b0\",yy:\"\\u0787\\u07a6\\u0780\\u07a6\\u0783\\u07aa %d\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:7,doy:12}})}(n(\"wd/R\"))},WxRl:function(e,t,n){!function(e){\"use strict\";var t=\"vas\\xe1rnap h\\xe9tf\\u0151n kedden szerd\\xe1n cs\\xfct\\xf6rt\\xf6k\\xf6n p\\xe9nteken szombaton\".split(\" \");function n(e,t,n,r){var i=e;switch(n){case\"s\":return r||t?\"n\\xe9h\\xe1ny m\\xe1sodperc\":\"n\\xe9h\\xe1ny m\\xe1sodperce\";case\"ss\":return i+(r||t)?\" m\\xe1sodperc\":\" m\\xe1sodperce\";case\"m\":return\"egy\"+(r||t?\" perc\":\" perce\");case\"mm\":return i+(r||t?\" perc\":\" perce\");case\"h\":return\"egy\"+(r||t?\" \\xf3ra\":\" \\xf3r\\xe1ja\");case\"hh\":return i+(r||t?\" \\xf3ra\":\" \\xf3r\\xe1ja\");case\"d\":return\"egy\"+(r||t?\" nap\":\" napja\");case\"dd\":return i+(r||t?\" nap\":\" napja\");case\"M\":return\"egy\"+(r||t?\" h\\xf3nap\":\" h\\xf3napja\");case\"MM\":return i+(r||t?\" h\\xf3nap\":\" h\\xf3napja\");case\"y\":return\"egy\"+(r||t?\" \\xe9v\":\" \\xe9ve\");case\"yy\":return i+(r||t?\" \\xe9v\":\" \\xe9ve\")}return\"\"}function r(e){return(e?\"\":\"[m\\xfalt] \")+\"[\"+t[this.day()]+\"] LT[-kor]\"}e.defineLocale(\"hu\",{months:\"janu\\xe1r_febru\\xe1r_m\\xe1rcius_\\xe1prilis_m\\xe1jus_j\\xfanius_j\\xfalius_augusztus_szeptember_okt\\xf3ber_november_december\".split(\"_\"),monthsShort:\"jan_feb_m\\xe1rc_\\xe1pr_m\\xe1j_j\\xfan_j\\xfal_aug_szept_okt_nov_dec\".split(\"_\"),weekdays:\"vas\\xe1rnap_h\\xe9tf\\u0151_kedd_szerda_cs\\xfct\\xf6rt\\xf6k_p\\xe9ntek_szombat\".split(\"_\"),weekdaysShort:\"vas_h\\xe9t_kedd_sze_cs\\xfct_p\\xe9n_szo\".split(\"_\"),weekdaysMin:\"v_h_k_sze_cs_p_szo\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY. MMMM D.\",LLL:\"YYYY. MMMM D. H:mm\",LLLL:\"YYYY. MMMM D., dddd H:mm\"},meridiemParse:/de|du/i,isPM:function(e){return\"u\"===e.charAt(1).toLowerCase()},meridiem:function(e,t,n){return e<12?!0===n?\"de\":\"DE\":!0===n?\"du\":\"DU\"},calendar:{sameDay:\"[ma] LT[-kor]\",nextDay:\"[holnap] LT[-kor]\",nextWeek:function(){return r.call(this,!0)},lastDay:\"[tegnap] LT[-kor]\",lastWeek:function(){return r.call(this,!1)},sameElse:\"L\"},relativeTime:{future:\"%s m\\xfalva\",past:\"%s\",s:n,ss:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},X709:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sv\",{months:\"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"s\\xf6ndag_m\\xe5ndag_tisdag_onsdag_torsdag_fredag_l\\xf6rdag\".split(\"_\"),weekdaysShort:\"s\\xf6n_m\\xe5n_tis_ons_tor_fre_l\\xf6r\".split(\"_\"),weekdaysMin:\"s\\xf6_m\\xe5_ti_on_to_fr_l\\xf6\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D MMMM YYYY [kl.] HH:mm\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd D MMM YYYY HH:mm\"},calendar:{sameDay:\"[Idag] LT\",nextDay:\"[Imorgon] LT\",lastDay:\"[Ig\\xe5r] LT\",nextWeek:\"[P\\xe5] dddd LT\",lastWeek:\"[I] dddd[s] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"f\\xf6r %s sedan\",s:\"n\\xe5gra sekunder\",ss:\"%d sekunder\",m:\"en minut\",mm:\"%d minuter\",h:\"en timme\",hh:\"%d timmar\",d:\"en dag\",dd:\"%d dagar\",M:\"en m\\xe5nad\",MM:\"%d m\\xe5nader\",y:\"ett \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}(e|a)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"e\":1===t||2===t?\"a\":\"e\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},XDpg:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-cn\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u5468\\u65e5_\\u5468\\u4e00_\\u5468\\u4e8c_\\u5468\\u4e09_\\u5468\\u56db_\\u5468\\u4e94_\\u5468\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5Ah\\u70b9mm\\u5206\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5ddddAh\\u70b9mm\\u5206\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var r=100*e+t;return r<600?\"\\u51cc\\u6668\":r<900?\"\\u65e9\\u4e0a\":r<1130?\"\\u4e0a\\u5348\":r<1230?\"\\u4e2d\\u5348\":r<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929]LT\",nextDay:\"[\\u660e\\u5929]LT\",nextWeek:\"[\\u4e0b]ddddLT\",lastDay:\"[\\u6628\\u5929]LT\",lastWeek:\"[\\u4e0a]ddddLT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u5468)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u5468\";default:return e}},relativeTime:{future:\"%s\\u5185\",past:\"%s\\u524d\",s:\"\\u51e0\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u949f\",mm:\"%d \\u5206\\u949f\",h:\"1 \\u5c0f\\u65f6\",hh:\"%d \\u5c0f\\u65f6\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u4e2a\\u6708\",MM:\"%d \\u4e2a\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},XLvN:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"te\",{months:\"\\u0c1c\\u0c28\\u0c35\\u0c30\\u0c3f_\\u0c2b\\u0c3f\\u0c2c\\u0c4d\\u0c30\\u0c35\\u0c30\\u0c3f_\\u0c2e\\u0c3e\\u0c30\\u0c4d\\u0c1a\\u0c3f_\\u0c0f\\u0c2a\\u0c4d\\u0c30\\u0c3f\\u0c32\\u0c4d_\\u0c2e\\u0c47_\\u0c1c\\u0c42\\u0c28\\u0c4d_\\u0c1c\\u0c41\\u0c32\\u0c48_\\u0c06\\u0c17\\u0c38\\u0c4d\\u0c1f\\u0c41_\\u0c38\\u0c46\\u0c2a\\u0c4d\\u0c1f\\u0c46\\u0c02\\u0c2c\\u0c30\\u0c4d_\\u0c05\\u0c15\\u0c4d\\u0c1f\\u0c4b\\u0c2c\\u0c30\\u0c4d_\\u0c28\\u0c35\\u0c02\\u0c2c\\u0c30\\u0c4d_\\u0c21\\u0c3f\\u0c38\\u0c46\\u0c02\\u0c2c\\u0c30\\u0c4d\".split(\"_\"),monthsShort:\"\\u0c1c\\u0c28._\\u0c2b\\u0c3f\\u0c2c\\u0c4d\\u0c30._\\u0c2e\\u0c3e\\u0c30\\u0c4d\\u0c1a\\u0c3f_\\u0c0f\\u0c2a\\u0c4d\\u0c30\\u0c3f._\\u0c2e\\u0c47_\\u0c1c\\u0c42\\u0c28\\u0c4d_\\u0c1c\\u0c41\\u0c32\\u0c48_\\u0c06\\u0c17._\\u0c38\\u0c46\\u0c2a\\u0c4d._\\u0c05\\u0c15\\u0c4d\\u0c1f\\u0c4b._\\u0c28\\u0c35._\\u0c21\\u0c3f\\u0c38\\u0c46.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0c06\\u0c26\\u0c3f\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c38\\u0c4b\\u0c2e\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c2e\\u0c02\\u0c17\\u0c33\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c2c\\u0c41\\u0c27\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c17\\u0c41\\u0c30\\u0c41\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c36\\u0c41\\u0c15\\u0c4d\\u0c30\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c36\\u0c28\\u0c3f\\u0c35\\u0c3e\\u0c30\\u0c02\".split(\"_\"),weekdaysShort:\"\\u0c06\\u0c26\\u0c3f_\\u0c38\\u0c4b\\u0c2e_\\u0c2e\\u0c02\\u0c17\\u0c33_\\u0c2c\\u0c41\\u0c27_\\u0c17\\u0c41\\u0c30\\u0c41_\\u0c36\\u0c41\\u0c15\\u0c4d\\u0c30_\\u0c36\\u0c28\\u0c3f\".split(\"_\"),weekdaysMin:\"\\u0c06_\\u0c38\\u0c4b_\\u0c2e\\u0c02_\\u0c2c\\u0c41_\\u0c17\\u0c41_\\u0c36\\u0c41_\\u0c36\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0c28\\u0c47\\u0c21\\u0c41] LT\",nextDay:\"[\\u0c30\\u0c47\\u0c2a\\u0c41] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0c28\\u0c3f\\u0c28\\u0c4d\\u0c28] LT\",lastWeek:\"[\\u0c17\\u0c24] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0c32\\u0c4b\",past:\"%s \\u0c15\\u0c4d\\u0c30\\u0c3f\\u0c24\\u0c02\",s:\"\\u0c15\\u0c4a\\u0c28\\u0c4d\\u0c28\\u0c3f \\u0c15\\u0c4d\\u0c37\\u0c23\\u0c3e\\u0c32\\u0c41\",ss:\"%d \\u0c38\\u0c46\\u0c15\\u0c28\\u0c4d\\u0c32\\u0c41\",m:\"\\u0c12\\u0c15 \\u0c28\\u0c3f\\u0c2e\\u0c3f\\u0c37\\u0c02\",mm:\"%d \\u0c28\\u0c3f\\u0c2e\\u0c3f\\u0c37\\u0c3e\\u0c32\\u0c41\",h:\"\\u0c12\\u0c15 \\u0c17\\u0c02\\u0c1f\",hh:\"%d \\u0c17\\u0c02\\u0c1f\\u0c32\\u0c41\",d:\"\\u0c12\\u0c15 \\u0c30\\u0c4b\\u0c1c\\u0c41\",dd:\"%d \\u0c30\\u0c4b\\u0c1c\\u0c41\\u0c32\\u0c41\",M:\"\\u0c12\\u0c15 \\u0c28\\u0c46\\u0c32\",MM:\"%d \\u0c28\\u0c46\\u0c32\\u0c32\\u0c41\",y:\"\\u0c12\\u0c15 \\u0c38\\u0c02\\u0c35\\u0c24\\u0c4d\\u0c38\\u0c30\\u0c02\",yy:\"%d \\u0c38\\u0c02\\u0c35\\u0c24\\u0c4d\\u0c38\\u0c30\\u0c3e\\u0c32\\u0c41\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u0c35/,ordinal:\"%d\\u0c35\",meridiemParse:/\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f|\\u0c09\\u0c26\\u0c2f\\u0c02|\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02|\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\"===t?e<4?e:e+12:\"\\u0c09\\u0c26\\u0c2f\\u0c02\"===t?e:\"\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02\"===t?e>=10?e:e+12:\"\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\":e<10?\"\\u0c09\\u0c26\\u0c2f\\u0c02\":e<17?\"\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02\":e<20?\"\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02\":\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},YRex:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ug-cn\",{months:\"\\u064a\\u0627\\u0646\\u06cb\\u0627\\u0631_\\u0641\\u06d0\\u06cb\\u0631\\u0627\\u0644_\\u0645\\u0627\\u0631\\u062a_\\u0626\\u0627\\u067e\\u0631\\u06d0\\u0644_\\u0645\\u0627\\u064a_\\u0626\\u0649\\u064a\\u06c7\\u0646_\\u0626\\u0649\\u064a\\u06c7\\u0644_\\u0626\\u0627\\u06cb\\u063a\\u06c7\\u0633\\u062a_\\u0633\\u06d0\\u0646\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0626\\u06c6\\u0643\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0646\\u0648\\u064a\\u0627\\u0628\\u0649\\u0631_\\u062f\\u06d0\\u0643\\u0627\\u0628\\u0649\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0627\\u0646\\u06cb\\u0627\\u0631_\\u0641\\u06d0\\u06cb\\u0631\\u0627\\u0644_\\u0645\\u0627\\u0631\\u062a_\\u0626\\u0627\\u067e\\u0631\\u06d0\\u0644_\\u0645\\u0627\\u064a_\\u0626\\u0649\\u064a\\u06c7\\u0646_\\u0626\\u0649\\u064a\\u06c7\\u0644_\\u0626\\u0627\\u06cb\\u063a\\u06c7\\u0633\\u062a_\\u0633\\u06d0\\u0646\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0626\\u06c6\\u0643\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0646\\u0648\\u064a\\u0627\\u0628\\u0649\\u0631_\\u062f\\u06d0\\u0643\\u0627\\u0628\\u0649\\u0631\".split(\"_\"),weekdays:\"\\u064a\\u06d5\\u0643\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u062f\\u06c8\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u0633\\u06d5\\u064a\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u0686\\u0627\\u0631\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u067e\\u06d5\\u064a\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u062c\\u06c8\\u0645\\u06d5_\\u0634\\u06d5\\u0646\\u0628\\u06d5\".split(\"_\"),weekdaysShort:\"\\u064a\\u06d5_\\u062f\\u06c8_\\u0633\\u06d5_\\u0686\\u0627_\\u067e\\u06d5_\\u062c\\u06c8_\\u0634\\u06d5\".split(\"_\"),weekdaysMin:\"\\u064a\\u06d5_\\u062f\\u06c8_\\u0633\\u06d5_\\u0686\\u0627_\\u067e\\u06d5_\\u062c\\u06c8_\\u0634\\u06d5\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\",LLL:\"YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\\u060c HH:mm\",LLLL:\"dddd\\u060c YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\\u060c HH:mm\"},meridiemParse:/\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5|\\u0633\\u06d5\\u06be\\u06d5\\u0631|\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646|\\u0686\\u06c8\\u0634|\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646|\\u0643\\u06d5\\u0686/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5\"===t||\"\\u0633\\u06d5\\u06be\\u06d5\\u0631\"===t||\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646\"===t?e:\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646\"===t||\"\\u0643\\u06d5\\u0686\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var r=100*e+t;return r<600?\"\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5\":r<900?\"\\u0633\\u06d5\\u06be\\u06d5\\u0631\":r<1130?\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646\":r<1230?\"\\u0686\\u06c8\\u0634\":r<1800?\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646\":\"\\u0643\\u06d5\\u0686\"},calendar:{sameDay:\"[\\u0628\\u06c8\\u06af\\u06c8\\u0646 \\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",nextDay:\"[\\u0626\\u06d5\\u062a\\u06d5 \\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",nextWeek:\"[\\u0643\\u06d0\\u0644\\u06d5\\u0631\\u0643\\u0649] dddd [\\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",lastDay:\"[\\u062a\\u06c6\\u0646\\u06c8\\u06af\\u06c8\\u0646] LT\",lastWeek:\"[\\u0626\\u0627\\u0644\\u062f\\u0649\\u0646\\u0642\\u0649] dddd [\\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0643\\u06d0\\u064a\\u0649\\u0646\",past:\"%s \\u0628\\u06c7\\u0631\\u06c7\\u0646\",s:\"\\u0646\\u06d5\\u0686\\u0686\\u06d5 \\u0633\\u06d0\\u0643\\u0648\\u0646\\u062a\",ss:\"%d \\u0633\\u06d0\\u0643\\u0648\\u0646\\u062a\",m:\"\\u0628\\u0649\\u0631 \\u0645\\u0649\\u0646\\u06c7\\u062a\",mm:\"%d \\u0645\\u0649\\u0646\\u06c7\\u062a\",h:\"\\u0628\\u0649\\u0631 \\u0633\\u0627\\u0626\\u06d5\\u062a\",hh:\"%d \\u0633\\u0627\\u0626\\u06d5\\u062a\",d:\"\\u0628\\u0649\\u0631 \\u0643\\u06c8\\u0646\",dd:\"%d \\u0643\\u06c8\\u0646\",M:\"\\u0628\\u0649\\u0631 \\u0626\\u0627\\u064a\",MM:\"%d \\u0626\\u0627\\u064a\",y:\"\\u0628\\u0649\\u0631 \\u064a\\u0649\\u0644\",yy:\"%d \\u064a\\u0649\\u0644\"},dayOfMonthOrdinalParse:/\\d{1,2}(-\\u0643\\u06c8\\u0646\\u0649|-\\u0626\\u0627\\u064a|-\\u06be\\u06d5\\u067e\\u062a\\u06d5)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"-\\u0643\\u06c8\\u0646\\u0649\";case\"w\":case\"W\":return e+\"-\\u06be\\u06d5\\u067e\\u062a\\u06d5\";default:return e}},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:7}})}(n(\"wd/R\"))},YuTi:function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,\"loaded\",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,\"id\",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},Z4QM:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u062c\\u0646\\u0648\\u0631\\u064a\",\"\\u0641\\u064a\\u0628\\u0631\\u0648\\u0631\\u064a\",\"\\u0645\\u0627\\u0631\\u0686\",\"\\u0627\\u067e\\u0631\\u064a\\u0644\",\"\\u0645\\u0626\\u064a\",\"\\u062c\\u0648\\u0646\",\"\\u062c\\u0648\\u0644\\u0627\\u0621\\u0650\",\"\\u0622\\u06af\\u0633\\u067d\",\"\\u0633\\u064a\\u067e\\u067d\\u0645\\u0628\\u0631\",\"\\u0622\\u06aa\\u067d\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0645\\u0628\\u0631\",\"\\u068a\\u0633\\u0645\\u0628\\u0631\"],n=[\"\\u0622\\u0686\\u0631\",\"\\u0633\\u0648\\u0645\\u0631\",\"\\u0627\\u06b1\\u0627\\u0631\\u0648\",\"\\u0627\\u0631\\u0628\\u0639\",\"\\u062e\\u0645\\u064a\\u0633\",\"\\u062c\\u0645\\u0639\",\"\\u0687\\u0646\\u0687\\u0631\"];e.defineLocale(\"sd\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd\\u060c D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635\\u0628\\u062d|\\u0634\\u0627\\u0645/,isPM:function(e){return\"\\u0634\\u0627\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\\u0628\\u062d\":\"\\u0634\\u0627\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0684] LT\",nextDay:\"[\\u0633\\u0680\\u0627\\u06bb\\u064a] LT\",nextWeek:\"dddd [\\u0627\\u06b3\\u064a\\u0646 \\u0647\\u0641\\u062a\\u064a \\u062a\\u064a] LT\",lastDay:\"[\\u06aa\\u0627\\u0644\\u0647\\u0647] LT\",lastWeek:\"[\\u06af\\u0632\\u0631\\u064a\\u0644 \\u0647\\u0641\\u062a\\u064a] dddd [\\u062a\\u064a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u067e\\u0648\\u0621\",past:\"%s \\u0627\\u06b3\",s:\"\\u0686\\u0646\\u062f \\u0633\\u064a\\u06aa\\u0646\\u068a\",ss:\"%d \\u0633\\u064a\\u06aa\\u0646\\u068a\",m:\"\\u0647\\u06aa \\u0645\\u0646\\u067d\",mm:\"%d \\u0645\\u0646\\u067d\",h:\"\\u0647\\u06aa \\u06aa\\u0644\\u0627\\u06aa\",hh:\"%d \\u06aa\\u0644\\u0627\\u06aa\",d:\"\\u0647\\u06aa \\u068f\\u064a\\u0646\\u0647\\u0646\",dd:\"%d \\u068f\\u064a\\u0646\\u0647\\u0646\",M:\"\\u0647\\u06aa \\u0645\\u0647\\u064a\\u0646\\u0648\",MM:\"%d \\u0645\\u0647\\u064a\\u0646\\u0627\",y:\"\\u0647\\u06aa \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},ZAMP:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms-my\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},Zduo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"eo\",{months:\"januaro_februaro_marto_aprilo_majo_junio_julio_a\\u016dgusto_septembro_oktobro_novembro_decembro\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_a\\u016dg_sep_okt_nov_dec\".split(\"_\"),weekdays:\"diman\\u0109o_lundo_mardo_merkredo_\\u0135a\\u016ddo_vendredo_sabato\".split(\"_\"),weekdaysShort:\"dim_lun_mard_merk_\\u0135a\\u016d_ven_sab\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_\\u0135a_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D[-a de] MMMM, YYYY\",LLL:\"D[-a de] MMMM, YYYY HH:mm\",LLLL:\"dddd, [la] D[-a de] MMMM, YYYY HH:mm\"},meridiemParse:/[ap]\\.t\\.m/i,isPM:function(e){return\"p\"===e.charAt(0).toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"p.t.m.\":\"P.T.M.\":n?\"a.t.m.\":\"A.T.M.\"},calendar:{sameDay:\"[Hodia\\u016d je] LT\",nextDay:\"[Morga\\u016d je] LT\",nextWeek:\"dddd [je] LT\",lastDay:\"[Hiera\\u016d je] LT\",lastWeek:\"[pasinta] dddd [je] LT\",sameElse:\"L\"},relativeTime:{future:\"post %s\",past:\"anta\\u016d %s\",s:\"sekundoj\",ss:\"%d sekundoj\",m:\"minuto\",mm:\"%d minutoj\",h:\"horo\",hh:\"%d horoj\",d:\"tago\",dd:\"%d tagoj\",M:\"monato\",MM:\"%d monatoj\",y:\"jaro\",yy:\"%d jaroj\"},dayOfMonthOrdinalParse:/\\d{1,2}a/,ordinal:\"%da\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},aCrv:function(e,t,n){var r,i=function(){this._tweens={},this._tweensAddedDuringUpdate={}};i.prototype={getAll:function(){return Object.keys(this._tweens).map((function(e){return this._tweens[e]}).bind(this))},removeAll:function(){this._tweens={}},add:function(e){this._tweens[e.getId()]=e,this._tweensAddedDuringUpdate[e.getId()]=e},remove:function(e){delete this._tweens[e.getId()],delete this._tweensAddedDuringUpdate[e.getId()]},update:function(e,t){var n=Object.keys(this._tweens);if(0===n.length)return!1;for(e=void 0!==e?e:o.now();n.length>0;){this._tweensAddedDuringUpdate={};for(var r=0;r1?1:n),this._valuesEnd)if(void 0!==this._valuesStart[t]){var i=this._valuesStart[t]||0,a=this._valuesEnd[t];a instanceof Array?this._object[t]=this._interpolationFunction(a,r):(\"string\"==typeof a&&(a=\"+\"===a.charAt(0)||\"-\"===a.charAt(0)?i+parseFloat(a):parseFloat(a)),\"number\"==typeof a&&(this._object[t]=i+(a-i)*r))}if(null!==this._onUpdateCallback&&this._onUpdateCallback(this._object,n),1===n){if(this._repeat>0){for(t in isFinite(this._repeat)&&this._repeat--,this._valuesStartRepeat){if(\"string\"==typeof this._valuesEnd[t]&&(this._valuesStartRepeat[t]=this._valuesStartRepeat[t]+parseFloat(this._valuesEnd[t])),this._yoyo){var o=this._valuesStartRepeat[t];this._valuesStartRepeat[t]=this._valuesEnd[t],this._valuesEnd[t]=o}this._valuesStart[t]=this._valuesStartRepeat[t]}return this._yoyo&&(this._reversed=!this._reversed),this._startTime=void 0!==this._repeatDelayTime?e+this._repeatDelayTime:e+this._delayTime,null!==this._onRepeatCallback&&this._onRepeatCallback(this._object),!0}null!==this._onCompleteCallback&&this._onCompleteCallback(this._object);for(var s=0,l=this._chainedTweens.length;s1?a(e[n],e[n-1],n-r):a(e[i],e[i+1>n?n:i+1],r-i)},Bezier:function(e,t){for(var n=0,r=e.length-1,i=Math.pow,a=o.Interpolation.Utils.Bernstein,s=0;s<=r;s++)n+=i(1-t,r-s)*i(t,s)*e[s]*a(r,s);return n},CatmullRom:function(e,t){var n=e.length-1,r=n*t,i=Math.floor(r),a=o.Interpolation.Utils.CatmullRom;return e[0]===e[n]?(t<0&&(i=Math.floor(r=n*(1+t))),a(e[(i-1+n)%n],e[i],e[(i+1)%n],e[(i+2)%n],r-i)):t<0?e[0]-(a(e[0],e[0],e[1],e[1],-r)-e[0]):t>1?e[n]-(a(e[n],e[n],e[n-1],e[n-1],r-n)-e[n]):a(e[i?i-1:0],e[i],e[n1;n--)t*=n;return a[e]=t,t}),CatmullRom:function(e,t,n,r,i){var a=.5*(n-e),o=.5*(r-t),s=i*i;return(2*t-2*n+a+o)*(i*s)+(-3*t+3*n-2*a-o)*s+a*i+t}}},void 0===(r=(function(){return o}).apply(t,[]))||(e.exports=r)},aIdf:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){return e+\" \"+function(e,t){return 2===t?function(e){var t={m:\"v\",b:\"v\",d:\"z\"};return void 0===t[e.charAt(0)]?e:t[e.charAt(0)]+e.substring(1)}(e):e}({mm:\"munutenn\",MM:\"miz\",dd:\"devezh\"}[n],e)}e.defineLocale(\"br\",{months:\"Genver_C'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu\".split(\"_\"),monthsShort:\"Gen_C'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker\".split(\"_\"),weekdays:\"Sul_Lun_Meurzh_Merc'her_Yaou_Gwener_Sadorn\".split(\"_\"),weekdaysShort:\"Sul_Lun_Meu_Mer_Yao_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Lu_Me_Mer_Ya_Gw_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h[e]mm A\",LTS:\"h[e]mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D [a viz] MMMM YYYY\",LLL:\"D [a viz] MMMM YYYY h[e]mm A\",LLLL:\"dddd, D [a viz] MMMM YYYY h[e]mm A\"},calendar:{sameDay:\"[Hiziv da] LT\",nextDay:\"[Warc'hoazh da] LT\",nextWeek:\"dddd [da] LT\",lastDay:\"[Dec'h da] LT\",lastWeek:\"dddd [paset da] LT\",sameElse:\"L\"},relativeTime:{future:\"a-benn %s\",past:\"%s 'zo\",s:\"un nebeud segondenno\\xf9\",ss:\"%d eilenn\",m:\"ur vunutenn\",mm:t,h:\"un eur\",hh:\"%d eur\",d:\"un devezh\",dd:t,M:\"ur miz\",MM:t,y:\"ur bloaz\",yy:function(e){switch(function e(t){return t>9?e(t%10):t}(e)){case 1:case 3:case 4:case 5:case 9:return e+\" bloaz\";default:return e+\" vloaz\"}}},dayOfMonthOrdinalParse:/\\d{1,2}(a\\xf1|vet)/,ordinal:function(e){return e+(1===e?\"a\\xf1\":\"vet\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},aIsn:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mi\",{months:\"Kohi-t\\u0101te_Hui-tanguru_Pout\\u016b-te-rangi_Paenga-wh\\u0101wh\\u0101_Haratua_Pipiri_H\\u014dngoingoi_Here-turi-k\\u014dk\\u0101_Mahuru_Whiringa-\\u0101-nuku_Whiringa-\\u0101-rangi_Hakihea\".split(\"_\"),monthsShort:\"Kohi_Hui_Pou_Pae_Hara_Pipi_H\\u014dngoi_Here_Mahu_Whi-nu_Whi-ra_Haki\".split(\"_\"),monthsRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,2}/i,weekdays:\"R\\u0101tapu_Mane_T\\u016brei_Wenerei_T\\u0101ite_Paraire_H\\u0101tarei\".split(\"_\"),weekdaysShort:\"Ta_Ma_T\\u016b_We_T\\u0101i_Pa_H\\u0101\".split(\"_\"),weekdaysMin:\"Ta_Ma_T\\u016b_We_T\\u0101i_Pa_H\\u0101\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [i] HH:mm\",LLLL:\"dddd, D MMMM YYYY [i] HH:mm\"},calendar:{sameDay:\"[i teie mahana, i] LT\",nextDay:\"[apopo i] LT\",nextWeek:\"dddd [i] LT\",lastDay:\"[inanahi i] LT\",lastWeek:\"dddd [whakamutunga i] LT\",sameElse:\"L\"},relativeTime:{future:\"i roto i %s\",past:\"%s i mua\",s:\"te h\\u0113kona ruarua\",ss:\"%d h\\u0113kona\",m:\"he meneti\",mm:\"%d meneti\",h:\"te haora\",hh:\"%d haora\",d:\"he ra\",dd:\"%d ra\",M:\"he marama\",MM:\"%d marama\",y:\"he tau\",yy:\"%d tau\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},aQkU:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mk\",{months:\"\\u0458\\u0430\\u043d\\u0443\\u0430\\u0440\\u0438_\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d\\u0438_\\u0458\\u0443\\u043b\\u0438_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438_\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438_\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438_\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\".split(\"_\"),monthsShort:\"\\u0458\\u0430\\u043d_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043f_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u0435_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u0430_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u043e\\u043a_\\u043f\\u0435\\u0442\\u043e\\u043a_\\u0441\\u0430\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434_\\u043f\\u043e\\u043d_\\u0432\\u0442\\u043e_\\u0441\\u0440\\u0435_\\u0447\\u0435\\u0442_\\u043f\\u0435\\u0442_\\u0441\\u0430\\u0431\".split(\"_\"),weekdaysMin:\"\\u043de_\\u043fo_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0435_\\u043f\\u0435_\\u0441a\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0414\\u0435\\u043d\\u0435\\u0441 \\u0432\\u043e] LT\",nextDay:\"[\\u0423\\u0442\\u0440\\u0435 \\u0432\\u043e] LT\",nextWeek:\"[\\u0412\\u043e] dddd [\\u0432\\u043e] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430 \\u0432\\u043e] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[\\u0418\\u0437\\u043c\\u0438\\u043d\\u0430\\u0442\\u0430\\u0442\\u0430] dddd [\\u0432\\u043e] LT\";case 1:case 2:case 4:case 5:return\"[\\u0418\\u0437\\u043c\\u0438\\u043d\\u0430\\u0442\\u0438\\u043e\\u0442] dddd [\\u0432\\u043e] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u043f\\u043e\\u0441\\u043b\\u0435 %s\",past:\"\\u043f\\u0440\\u0435\\u0434 %s\",s:\"\\u043d\\u0435\\u043a\\u043e\\u043b\\u043a\\u0443 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",m:\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\\u0438\",h:\"\\u0447\\u0430\\u0441\",hh:\"%d \\u0447\\u0430\\u0441\\u0430\",d:\"\\u0434\\u0435\\u043d\",dd:\"%d \\u0434\\u0435\\u043d\\u0430\",M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:\"%d \\u043c\\u0435\\u0441\\u0435\\u0446\\u0438\",y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",yy:\"%d \\u0433\\u043e\\u0434\\u0438\\u043d\\u0438\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0435\\u0432|\\u0435\\u043d|\\u0442\\u0438|\\u0432\\u0438|\\u0440\\u0438|\\u043c\\u0438)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-\\u0435\\u0432\":0===n?e+\"-\\u0435\\u043d\":n>10&&n<20?e+\"-\\u0442\\u0438\":1===t?e+\"-\\u0432\\u0438\":2===t?e+\"-\\u0440\\u0438\":7===t||8===t?e+\"-\\u043c\\u0438\":e+\"-\\u0442\\u0438\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},b1Dy:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-nz\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},bOMt:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nb\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"s\\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\\xf8rdag\".split(\"_\"),weekdaysShort:\"s\\xf8._ma._ti._on._to._fr._l\\xf8.\".split(\"_\"),weekdaysMin:\"s\\xf8_ma_ti_on_to_fr_l\\xf8\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"dddd [kl.] LT\",lastDay:\"[i g\\xe5r kl.] LT\",lastWeek:\"[forrige] dddd [kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"noen sekunder\",ss:\"%d sekunder\",m:\"ett minutt\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dager\",M:\"en m\\xe5ned\",MM:\"%d m\\xe5neder\",y:\"ett \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},bXm7:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0448\\u0456\",1:\"-\\u0448\\u0456\",2:\"-\\u0448\\u0456\",3:\"-\\u0448\\u0456\",4:\"-\\u0448\\u0456\",5:\"-\\u0448\\u0456\",6:\"-\\u0448\\u044b\",7:\"-\\u0448\\u0456\",8:\"-\\u0448\\u0456\",9:\"-\\u0448\\u044b\",10:\"-\\u0448\\u044b\",20:\"-\\u0448\\u044b\",30:\"-\\u0448\\u044b\",40:\"-\\u0448\\u044b\",50:\"-\\u0448\\u0456\",60:\"-\\u0448\\u044b\",70:\"-\\u0448\\u0456\",80:\"-\\u0448\\u0456\",90:\"-\\u0448\\u044b\",100:\"-\\u0448\\u0456\"};e.defineLocale(\"kk\",{months:\"\\u049b\\u0430\\u04a3\\u0442\\u0430\\u0440_\\u0430\\u049b\\u043f\\u0430\\u043d_\\u043d\\u0430\\u0443\\u0440\\u044b\\u0437_\\u0441\\u04d9\\u0443\\u0456\\u0440_\\u043c\\u0430\\u043c\\u044b\\u0440_\\u043c\\u0430\\u0443\\u0441\\u044b\\u043c_\\u0448\\u0456\\u043b\\u0434\\u0435_\\u0442\\u0430\\u043c\\u044b\\u0437_\\u049b\\u044b\\u0440\\u043a\\u04af\\u0439\\u0435\\u043a_\\u049b\\u0430\\u0437\\u0430\\u043d_\\u049b\\u0430\\u0440\\u0430\\u0448\\u0430_\\u0436\\u0435\\u043b\\u0442\\u043e\\u049b\\u0441\\u0430\\u043d\".split(\"_\"),monthsShort:\"\\u049b\\u0430\\u04a3_\\u0430\\u049b\\u043f_\\u043d\\u0430\\u0443_\\u0441\\u04d9\\u0443_\\u043c\\u0430\\u043c_\\u043c\\u0430\\u0443_\\u0448\\u0456\\u043b_\\u0442\\u0430\\u043c_\\u049b\\u044b\\u0440_\\u049b\\u0430\\u0437_\\u049b\\u0430\\u0440_\\u0436\\u0435\\u043b\".split(\"_\"),weekdays:\"\\u0436\\u0435\\u043a\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0434\\u04af\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0441\\u0435\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0441\\u04d9\\u0440\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0431\\u0435\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0436\\u04b1\\u043c\\u0430_\\u0441\\u0435\\u043d\\u0431\\u0456\".split(\"_\"),weekdaysShort:\"\\u0436\\u0435\\u043a_\\u0434\\u04af\\u0439_\\u0441\\u0435\\u0439_\\u0441\\u04d9\\u0440_\\u0431\\u0435\\u0439_\\u0436\\u04b1\\u043c_\\u0441\\u0435\\u043d\".split(\"_\"),weekdaysMin:\"\\u0436\\u043a_\\u0434\\u0439_\\u0441\\u0439_\\u0441\\u0440_\\u0431\\u0439_\\u0436\\u043c_\\u0441\\u043d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0411\\u04af\\u0433\\u0456\\u043d \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",nextDay:\"[\\u0415\\u0440\\u0442\\u0435\\u04a3 \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",nextWeek:\"dddd [\\u0441\\u0430\\u0493\\u0430\\u0442] LT\",lastDay:\"[\\u041a\\u0435\\u0448\\u0435 \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",lastWeek:\"[\\u04e8\\u0442\\u043a\\u0435\\u043d \\u0430\\u043f\\u0442\\u0430\\u043d\\u044b\\u04a3] dddd [\\u0441\\u0430\\u0493\\u0430\\u0442] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0456\\u0448\\u0456\\u043d\\u0434\\u0435\",past:\"%s \\u0431\\u04b1\\u0440\\u044b\\u043d\",s:\"\\u0431\\u0456\\u0440\\u043d\\u0435\\u0448\\u0435 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:\"\\u0431\\u0456\\u0440 \\u043c\\u0438\\u043d\\u0443\\u0442\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\",h:\"\\u0431\\u0456\\u0440 \\u0441\\u0430\\u0493\\u0430\\u0442\",hh:\"%d \\u0441\\u0430\\u0493\\u0430\\u0442\",d:\"\\u0431\\u0456\\u0440 \\u043a\\u04af\\u043d\",dd:\"%d \\u043a\\u04af\\u043d\",M:\"\\u0431\\u0456\\u0440 \\u0430\\u0439\",MM:\"%d \\u0430\\u0439\",y:\"\\u0431\\u0456\\u0440 \\u0436\\u044b\\u043b\",yy:\"%d \\u0436\\u044b\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0448\\u0456|\\u0448\\u044b)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},bYM6:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-tn\",{months:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},bpih:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_luned\\xec_marted\\xec_mercoled\\xec_gioved\\xec_venerd\\xec_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Oggi alle] LT\",nextDay:\"[Domani alle] LT\",nextWeek:\"dddd [alle] LT\",lastDay:\"[Ieri alle] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[la scorsa] dddd [alle] LT\";default:return\"[lo scorso] dddd [alle] LT\"}},sameElse:\"L\"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?\"tra\":\"in\")+\" \"+e},past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},bxKX:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it-ch\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_luned\\xec_marted\\xec_mercoled\\xec_gioved\\xec_venerd\\xec_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Oggi alle] LT\",nextDay:\"[Domani alle] LT\",nextWeek:\"dddd [alle] LT\",lastDay:\"[Ieri alle] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[la scorsa] dddd [alle] LT\";default:return\"[lo scorso] dddd [alle] LT\"}},sameElse:\"L\"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?\"tra\":\"in\")+\" \"+e},past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},cRix:function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.\".split(\"_\"),n=\"jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\");e.defineLocale(\"fy\",{months:\"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber\".split(\"_\"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsParseExact:!0,weekdays:\"snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon\".split(\"_\"),weekdaysShort:\"si._mo._ti._wo._to._fr._so.\".split(\"_\"),weekdaysMin:\"Si_Mo_Ti_Wo_To_Fr_So\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[hjoed om] LT\",nextDay:\"[moarn om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[juster om] LT\",lastWeek:\"[\\xf4fr\\xfbne] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oer %s\",past:\"%s lyn\",s:\"in pear sekonden\",ss:\"%d sekonden\",m:\"ien min\\xfat\",mm:\"%d minuten\",h:\"ien oere\",hh:\"%d oeren\",d:\"ien dei\",dd:\"%d dagen\",M:\"ien moanne\",MM:\"%d moannen\",y:\"ien jier\",yy:\"%d jierren\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},czMo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-il\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(\"wd/R\"))},dNwA:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sw\",{months:\"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi\".split(\"_\"),weekdaysShort:\"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos\".split(\"_\"),weekdaysMin:\"J2_J3_J4_J5_Al_Ij_J1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[leo saa] LT\",nextDay:\"[kesho saa] LT\",nextWeek:\"[wiki ijayo] dddd [saat] LT\",lastDay:\"[jana] LT\",lastWeek:\"[wiki iliyopita] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s baadaye\",past:\"tokea %s\",s:\"hivi punde\",ss:\"sekunde %d\",m:\"dakika moja\",mm:\"dakika %d\",h:\"saa limoja\",hh:\"masaa %d\",d:\"siku moja\",dd:\"masiku %d\",M:\"mwezi mmoja\",MM:\"miezi %d\",y:\"mwaka mmoja\",yy:\"miaka %d\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"e+ae\":function(e,t,n){!function(e){\"use strict\";var t=\"janu\\xe1r_febru\\xe1r_marec_apr\\xedl_m\\xe1j_j\\xfan_j\\xfal_august_september_okt\\xf3ber_november_december\".split(\"_\"),n=\"jan_feb_mar_apr_m\\xe1j_j\\xfan_j\\xfal_aug_sep_okt_nov_dec\".split(\"_\");function r(e){return e>1&&e<5}function i(e,t,n,i){var a=e+\" \";switch(n){case\"s\":return t||i?\"p\\xe1r sek\\xfand\":\"p\\xe1r sekundami\";case\"ss\":return t||i?a+(r(e)?\"sekundy\":\"sek\\xfand\"):a+\"sekundami\";case\"m\":return t?\"min\\xfata\":i?\"min\\xfatu\":\"min\\xfatou\";case\"mm\":return t||i?a+(r(e)?\"min\\xfaty\":\"min\\xfat\"):a+\"min\\xfatami\";case\"h\":return t?\"hodina\":i?\"hodinu\":\"hodinou\";case\"hh\":return t||i?a+(r(e)?\"hodiny\":\"hod\\xedn\"):a+\"hodinami\";case\"d\":return t||i?\"de\\u0148\":\"d\\u0148om\";case\"dd\":return t||i?a+(r(e)?\"dni\":\"dn\\xed\"):a+\"d\\u0148ami\";case\"M\":return t||i?\"mesiac\":\"mesiacom\";case\"MM\":return t||i?a+(r(e)?\"mesiace\":\"mesiacov\"):a+\"mesiacmi\";case\"y\":return t||i?\"rok\":\"rokom\";case\"yy\":return t||i?a+(r(e)?\"roky\":\"rokov\"):a+\"rokmi\"}}e.defineLocale(\"sk\",{months:t,monthsShort:n,weekdays:\"nede\\u013ea_pondelok_utorok_streda_\\u0161tvrtok_piatok_sobota\".split(\"_\"),weekdaysShort:\"ne_po_ut_st_\\u0161t_pi_so\".split(\"_\"),weekdaysMin:\"ne_po_ut_st_\\u0161t_pi_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[dnes o] LT\",nextDay:\"[zajtra o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v nede\\u013eu o] LT\";case 1:case 2:return\"[v] dddd [o] LT\";case 3:return\"[v stredu o] LT\";case 4:return\"[vo \\u0161tvrtok o] LT\";case 5:return\"[v piatok o] LT\";case 6:return\"[v sobotu o] LT\"}},lastDay:\"[v\\u010dera o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minul\\xfa nede\\u013eu o] LT\";case 1:case 2:return\"[minul\\xfd] dddd [o] LT\";case 3:return\"[minul\\xfa stredu o] LT\";case 4:case 5:return\"[minul\\xfd] dddd [o] LT\";case 6:return\"[minul\\xfa sobotu o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pred %s\",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},evrj:function(e,t,n){var r=n(\"m4GZ\");e.exports=function(e){var t=e.replace(/-/g,\"+\").replace(/_/g,\"/\");switch(t.length%4){case 0:break;case 2:t+=\"==\";break;case 3:t+=\"=\";break;default:throw\"Illegal base64url string!\"}try{return function(e){return decodeURIComponent(r(e).replace(/(.)/g,(function(e,t){var n=t.charCodeAt(0).toString(16).toUpperCase();return n.length<2&&(n=\"0\"+n),\"%\"+n})))}(t)}catch(n){return r(t)}}},fzPg:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"yo\",{months:\"S\\u1eb9\\u0301r\\u1eb9\\u0301_E\\u0300re\\u0300le\\u0300_\\u1eb8r\\u1eb9\\u0300na\\u0300_I\\u0300gbe\\u0301_E\\u0300bibi_O\\u0300ku\\u0300du_Ag\\u1eb9mo_O\\u0300gu\\u0301n_Owewe_\\u1ecc\\u0300wa\\u0300ra\\u0300_Be\\u0301lu\\u0301_\\u1ecc\\u0300p\\u1eb9\\u0300\\u0300\".split(\"_\"),monthsShort:\"S\\u1eb9\\u0301r_E\\u0300rl_\\u1eb8rn_I\\u0300gb_E\\u0300bi_O\\u0300ku\\u0300_Ag\\u1eb9_O\\u0300gu\\u0301_Owe_\\u1ecc\\u0300wa\\u0300_Be\\u0301l_\\u1ecc\\u0300p\\u1eb9\\u0300\\u0300\".split(\"_\"),weekdays:\"A\\u0300i\\u0300ku\\u0301_Aje\\u0301_I\\u0300s\\u1eb9\\u0301gun_\\u1eccj\\u1ecd\\u0301ru\\u0301_\\u1eccj\\u1ecd\\u0301b\\u1ecd_\\u1eb8ti\\u0300_A\\u0300ba\\u0301m\\u1eb9\\u0301ta\".split(\"_\"),weekdaysShort:\"A\\u0300i\\u0300k_Aje\\u0301_I\\u0300s\\u1eb9\\u0301_\\u1eccjr_\\u1eccjb_\\u1eb8ti\\u0300_A\\u0300ba\\u0301\".split(\"_\"),weekdaysMin:\"A\\u0300i\\u0300_Aj_I\\u0300s_\\u1eccr_\\u1eccb_\\u1eb8t_A\\u0300b\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[O\\u0300ni\\u0300 ni] LT\",nextDay:\"[\\u1ecc\\u0300la ni] LT\",nextWeek:\"dddd [\\u1eccs\\u1eb9\\u0300 to\\u0301n'b\\u1ecd] [ni] LT\",lastDay:\"[A\\u0300na ni] LT\",lastWeek:\"dddd [\\u1eccs\\u1eb9\\u0300 to\\u0301l\\u1ecd\\u0301] [ni] LT\",sameElse:\"L\"},relativeTime:{future:\"ni\\u0301 %s\",past:\"%s k\\u1ecdja\\u0301\",s:\"i\\u0300s\\u1eb9ju\\u0301 aaya\\u0301 die\",ss:\"aaya\\u0301 %d\",m:\"i\\u0300s\\u1eb9ju\\u0301 kan\",mm:\"i\\u0300s\\u1eb9ju\\u0301 %d\",h:\"wa\\u0301kati kan\",hh:\"wa\\u0301kati %d\",d:\"\\u1ecdj\\u1ecd\\u0301 kan\",dd:\"\\u1ecdj\\u1ecd\\u0301 %d\",M:\"osu\\u0300 kan\",MM:\"osu\\u0300 %d\",y:\"\\u1ecddu\\u0301n kan\",yy:\"\\u1ecddu\\u0301n %d\"},dayOfMonthOrdinalParse:/\\u1ecdj\\u1ecd\\u0301\\s\\d{1,2}/,ordinal:\"\\u1ecdj\\u1ecd\\u0301 %d\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},gVVK:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i=e+\" \";switch(n){case\"s\":return t||r?\"nekaj sekund\":\"nekaj sekundami\";case\"ss\":return i+(1===e?t?\"sekundo\":\"sekundi\":2===e?t||r?\"sekundi\":\"sekundah\":e<5?t||r?\"sekunde\":\"sekundah\":\"sekund\");case\"m\":return t?\"ena minuta\":\"eno minuto\";case\"mm\":return i+(1===e?t?\"minuta\":\"minuto\":2===e?t||r?\"minuti\":\"minutama\":e<5?t||r?\"minute\":\"minutami\":t||r?\"minut\":\"minutami\");case\"h\":return t?\"ena ura\":\"eno uro\";case\"hh\":return i+(1===e?t?\"ura\":\"uro\":2===e?t||r?\"uri\":\"urama\":e<5?t||r?\"ure\":\"urami\":t||r?\"ur\":\"urami\");case\"d\":return t||r?\"en dan\":\"enim dnem\";case\"dd\":return i+(1===e?t||r?\"dan\":\"dnem\":2===e?t||r?\"dni\":\"dnevoma\":t||r?\"dni\":\"dnevi\");case\"M\":return t||r?\"en mesec\":\"enim mesecem\";case\"MM\":return i+(1===e?t||r?\"mesec\":\"mesecem\":2===e?t||r?\"meseca\":\"mesecema\":e<5?t||r?\"mesece\":\"meseci\":t||r?\"mesecev\":\"meseci\");case\"y\":return t||r?\"eno leto\":\"enim letom\";case\"yy\":return i+(1===e?t||r?\"leto\":\"letom\":2===e?t||r?\"leti\":\"letoma\":e<5?t||r?\"leta\":\"leti\":t||r?\"let\":\"leti\")}}e.defineLocale(\"sl\",{months:\"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljek_torek_sreda_\\u010detrtek_petek_sobota\".split(\"_\"),weekdaysShort:\"ned._pon._tor._sre._\\u010det._pet._sob.\".split(\"_\"),weekdaysMin:\"ne_po_to_sr_\\u010de_pe_so\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danes ob] LT\",nextDay:\"[jutri ob] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v] [nedeljo] [ob] LT\";case 3:return\"[v] [sredo] [ob] LT\";case 6:return\"[v] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[v] dddd [ob] LT\"}},lastDay:\"[v\\u010deraj ob] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[prej\\u0161njo] [nedeljo] [ob] LT\";case 3:return\"[prej\\u0161njo] [sredo] [ob] LT\";case 6:return\"[prej\\u0161njo] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[prej\\u0161nji] dddd [ob] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u010dez %s\",past:\"pred %s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},gekB:function(e,t,n){!function(e){\"use strict\";var t=\"nolla yksi kaksi kolme nelj\\xe4 viisi kuusi seitsem\\xe4n kahdeksan yhdeks\\xe4n\".split(\" \"),n=[\"nolla\",\"yhden\",\"kahden\",\"kolmen\",\"nelj\\xe4n\",\"viiden\",\"kuuden\",t[7],t[8],t[9]];function r(e,r,i,a){var o=\"\";switch(i){case\"s\":return a?\"muutaman sekunnin\":\"muutama sekunti\";case\"ss\":return a?\"sekunnin\":\"sekuntia\";case\"m\":return a?\"minuutin\":\"minuutti\";case\"mm\":o=a?\"minuutin\":\"minuuttia\";break;case\"h\":return a?\"tunnin\":\"tunti\";case\"hh\":o=a?\"tunnin\":\"tuntia\";break;case\"d\":return a?\"p\\xe4iv\\xe4n\":\"p\\xe4iv\\xe4\";case\"dd\":o=a?\"p\\xe4iv\\xe4n\":\"p\\xe4iv\\xe4\\xe4\";break;case\"M\":return a?\"kuukauden\":\"kuukausi\";case\"MM\":o=a?\"kuukauden\":\"kuukautta\";break;case\"y\":return a?\"vuoden\":\"vuosi\";case\"yy\":o=a?\"vuoden\":\"vuotta\"}return function(e,r){return e<10?r?n[e]:t[e]:e}(e,a)+\" \"+o}e.defineLocale(\"fi\",{months:\"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kes\\xe4kuu_hein\\xe4kuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu\".split(\"_\"),monthsShort:\"tammi_helmi_maalis_huhti_touko_kes\\xe4_hein\\xe4_elo_syys_loka_marras_joulu\".split(\"_\"),weekdays:\"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai\".split(\"_\"),weekdaysShort:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),weekdaysMin:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"Do MMMM[ta] YYYY\",LLL:\"Do MMMM[ta] YYYY, [klo] HH.mm\",LLLL:\"dddd, Do MMMM[ta] YYYY, [klo] HH.mm\",l:\"D.M.YYYY\",ll:\"Do MMM YYYY\",lll:\"Do MMM YYYY, [klo] HH.mm\",llll:\"ddd, Do MMM YYYY, [klo] HH.mm\"},calendar:{sameDay:\"[t\\xe4n\\xe4\\xe4n] [klo] LT\",nextDay:\"[huomenna] [klo] LT\",nextWeek:\"dddd [klo] LT\",lastDay:\"[eilen] [klo] LT\",lastWeek:\"[viime] dddd[na] [klo] LT\",sameElse:\"L\"},relativeTime:{future:\"%s p\\xe4\\xe4st\\xe4\",past:\"%s sitten\",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},gjCT:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"};e.defineLocale(\"ar-sa\",{months:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a\\u0648_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648_\\u0623\\u063a\\u0633\\u0637\\u0633_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a\\u0648_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648_\\u0623\\u063a\\u0633\\u0637\\u0633_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:0,doy:6}})}(n(\"wd/R\"))},hKrs:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bg\",{months:\"\\u044f\\u043d\\u0443\\u0430\\u0440\\u0438_\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0439_\\u044e\\u043d\\u0438_\\u044e\\u043b\\u0438_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438_\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438_\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438_\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0440_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u044e\\u043d\\u0438_\\u044e\\u043b\\u0438_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043f_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u0435_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u044f_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u044f\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u044a\\u0440\\u0442\\u044a\\u043a_\\u043f\\u0435\\u0442\\u044a\\u043a_\\u0441\\u044a\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434_\\u043f\\u043e\\u043d_\\u0432\\u0442\\u043e_\\u0441\\u0440\\u044f_\\u0447\\u0435\\u0442_\\u043f\\u0435\\u0442_\\u0441\\u044a\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0414\\u043d\\u0435\\u0441 \\u0432] LT\",nextDay:\"[\\u0423\\u0442\\u0440\\u0435 \\u0432] LT\",nextWeek:\"dddd [\\u0432] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430 \\u0432] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[\\u0412 \\u0438\\u0437\\u043c\\u0438\\u043d\\u0430\\u043b\\u0430\\u0442\\u0430] dddd [\\u0432] LT\";case 1:case 2:case 4:case 5:return\"[\\u0412 \\u0438\\u0437\\u043c\\u0438\\u043d\\u0430\\u043b\\u0438\\u044f] dddd [\\u0432] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u0441\\u043b\\u0435\\u0434 %s\",past:\"\\u043f\\u0440\\u0435\\u0434\\u0438 %s\",s:\"\\u043d\\u044f\\u043a\\u043e\\u043b\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",m:\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\\u0438\",h:\"\\u0447\\u0430\\u0441\",hh:\"%d \\u0447\\u0430\\u0441\\u0430\",d:\"\\u0434\\u0435\\u043d\",dd:\"%d \\u0434\\u043d\\u0438\",M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:\"%d \\u043c\\u0435\\u0441\\u0435\\u0446\\u0430\",y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",yy:\"%d \\u0433\\u043e\\u0434\\u0438\\u043d\\u0438\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0435\\u0432|\\u0435\\u043d|\\u0442\\u0438|\\u0432\\u0438|\\u0440\\u0438|\\u043c\\u0438)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-\\u0435\\u0432\":0===n?e+\"-\\u0435\\u043d\":n>10&&n<20?e+\"-\\u0442\\u0438\":1===t?e+\"-\\u0432\\u0438\":2===t?e+\"-\\u0440\\u0438\":7===t||8===t?e+\"-\\u043c\\u0438\":e+\"-\\u0442\\u0438\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},honF:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u1041\",2:\"\\u1042\",3:\"\\u1043\",4:\"\\u1044\",5:\"\\u1045\",6:\"\\u1046\",7:\"\\u1047\",8:\"\\u1048\",9:\"\\u1049\",0:\"\\u1040\"},n={\"\\u1041\":\"1\",\"\\u1042\":\"2\",\"\\u1043\":\"3\",\"\\u1044\":\"4\",\"\\u1045\":\"5\",\"\\u1046\":\"6\",\"\\u1047\":\"7\",\"\\u1048\":\"8\",\"\\u1049\":\"9\",\"\\u1040\":\"0\"};e.defineLocale(\"my\",{months:\"\\u1007\\u1014\\u103a\\u1014\\u101d\\u102b\\u101b\\u102e_\\u1016\\u1031\\u1016\\u1031\\u102c\\u103a\\u101d\\u102b\\u101b\\u102e_\\u1019\\u1010\\u103a_\\u1027\\u1015\\u103c\\u102e_\\u1019\\u1031_\\u1007\\u103d\\u1014\\u103a_\\u1007\\u1030\\u101c\\u102d\\u102f\\u1004\\u103a_\\u101e\\u103c\\u1002\\u102f\\u1010\\u103a_\\u1005\\u1000\\u103a\\u1010\\u1004\\u103a\\u1018\\u102c_\\u1021\\u1031\\u102c\\u1000\\u103a\\u1010\\u102d\\u102f\\u1018\\u102c_\\u1014\\u102d\\u102f\\u101d\\u1004\\u103a\\u1018\\u102c_\\u1012\\u102e\\u1007\\u1004\\u103a\\u1018\\u102c\".split(\"_\"),monthsShort:\"\\u1007\\u1014\\u103a_\\u1016\\u1031_\\u1019\\u1010\\u103a_\\u1015\\u103c\\u102e_\\u1019\\u1031_\\u1007\\u103d\\u1014\\u103a_\\u101c\\u102d\\u102f\\u1004\\u103a_\\u101e\\u103c_\\u1005\\u1000\\u103a_\\u1021\\u1031\\u102c\\u1000\\u103a_\\u1014\\u102d\\u102f_\\u1012\\u102e\".split(\"_\"),weekdays:\"\\u1010\\u1014\\u1004\\u103a\\u1039\\u1002\\u1014\\u103d\\u1031_\\u1010\\u1014\\u1004\\u103a\\u1039\\u101c\\u102c_\\u1021\\u1004\\u103a\\u1039\\u1002\\u102b_\\u1017\\u102f\\u1012\\u1039\\u1013\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c\\u101e\\u1015\\u1010\\u1031\\u1038_\\u101e\\u1031\\u102c\\u1000\\u103c\\u102c_\\u1005\\u1014\\u1031\".split(\"_\"),weekdaysShort:\"\\u1014\\u103d\\u1031_\\u101c\\u102c_\\u1002\\u102b_\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c_\\u101e\\u1031\\u102c_\\u1014\\u1031\".split(\"_\"),weekdaysMin:\"\\u1014\\u103d\\u1031_\\u101c\\u102c_\\u1002\\u102b_\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c_\\u101e\\u1031\\u102c_\\u1014\\u1031\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u101a\\u1014\\u1031.] LT [\\u1019\\u103e\\u102c]\",nextDay:\"[\\u1019\\u1014\\u1000\\u103a\\u1016\\u103c\\u1014\\u103a] LT [\\u1019\\u103e\\u102c]\",nextWeek:\"dddd LT [\\u1019\\u103e\\u102c]\",lastDay:\"[\\u1019\\u1014\\u1031.\\u1000] LT [\\u1019\\u103e\\u102c]\",lastWeek:\"[\\u1015\\u103c\\u102e\\u1038\\u1001\\u1032\\u1037\\u101e\\u1031\\u102c] dddd LT [\\u1019\\u103e\\u102c]\",sameElse:\"L\"},relativeTime:{future:\"\\u101c\\u102c\\u1019\\u100a\\u103a\\u1037 %s \\u1019\\u103e\\u102c\",past:\"\\u101c\\u103d\\u1014\\u103a\\u1001\\u1032\\u1037\\u101e\\u1031\\u102c %s \\u1000\",s:\"\\u1005\\u1000\\u1039\\u1000\\u1014\\u103a.\\u1021\\u1014\\u100a\\u103a\\u1038\\u1004\\u101a\\u103a\",ss:\"%d \\u1005\\u1000\\u1039\\u1000\\u1014\\u1037\\u103a\",m:\"\\u1010\\u1005\\u103a\\u1019\\u102d\\u1014\\u1005\\u103a\",mm:\"%d \\u1019\\u102d\\u1014\\u1005\\u103a\",h:\"\\u1010\\u1005\\u103a\\u1014\\u102c\\u101b\\u102e\",hh:\"%d \\u1014\\u102c\\u101b\\u102e\",d:\"\\u1010\\u1005\\u103a\\u101b\\u1000\\u103a\",dd:\"%d \\u101b\\u1000\\u103a\",M:\"\\u1010\\u1005\\u103a\\u101c\",MM:\"%d \\u101c\",y:\"\\u1010\\u1005\\u103a\\u1014\\u103e\\u1005\\u103a\",yy:\"%d \\u1014\\u103e\\u1005\\u103a\"},preparse:function(e){return e.replace(/[\\u1041\\u1042\\u1043\\u1044\\u1045\\u1046\\u1047\\u1048\\u1049\\u1040]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(\"wd/R\"))},iEDd:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"gl\",{months:\"xaneiro_febreiro_marzo_abril_maio_xu\\xf1o_xullo_agosto_setembro_outubro_novembro_decembro\".split(\"_\"),monthsShort:\"xan._feb._mar._abr._mai._xu\\xf1._xul._ago._set._out._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"domingo_luns_martes_m\\xe9rcores_xoves_venres_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._m\\xe9r._xov._ven._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_m\\xe9_xo_ve_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoxe \"+(1!==this.hours()?\"\\xe1s\":\"\\xe1\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1\\xe1 \"+(1!==this.hours()?\"\\xe1s\":\"\\xe1\")+\"] LT\"},nextWeek:function(){return\"dddd [\"+(1!==this.hours()?\"\\xe1s\":\"a\")+\"] LT\"},lastDay:function(){return\"[onte \"+(1!==this.hours()?\"\\xe1\":\"a\")+\"] LT\"},lastWeek:function(){return\"[o] dddd [pasado \"+(1!==this.hours()?\"\\xe1s\":\"a\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:function(e){return 0===e.indexOf(\"un\")?\"n\"+e:\"en \"+e},past:\"hai %s\",s:\"uns segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"unha hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},iYuL:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],i=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:\"domingo_lunes_martes_mi\\xe9rcoles_jueves_viernes_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mi\\xe9._jue._vie._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1ana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un a\\xf1o\",yy:\"%d a\\xf1os\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jUeY:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"el\",{monthsNominativeEl:\"\\u0399\\u03b1\\u03bd\\u03bf\\u03c5\\u03ac\\u03c1\\u03b9\\u03bf\\u03c2_\\u03a6\\u03b5\\u03b2\\u03c1\\u03bf\\u03c5\\u03ac\\u03c1\\u03b9\\u03bf\\u03c2_\\u039c\\u03ac\\u03c1\\u03c4\\u03b9\\u03bf\\u03c2_\\u0391\\u03c0\\u03c1\\u03af\\u03bb\\u03b9\\u03bf\\u03c2_\\u039c\\u03ac\\u03b9\\u03bf\\u03c2_\\u0399\\u03bf\\u03cd\\u03bd\\u03b9\\u03bf\\u03c2_\\u0399\\u03bf\\u03cd\\u03bb\\u03b9\\u03bf\\u03c2_\\u0391\\u03cd\\u03b3\\u03bf\\u03c5\\u03c3\\u03c4\\u03bf\\u03c2_\\u03a3\\u03b5\\u03c0\\u03c4\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u039f\\u03ba\\u03c4\\u03ce\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u039d\\u03bf\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u0394\\u03b5\\u03ba\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2\".split(\"_\"),monthsGenitiveEl:\"\\u0399\\u03b1\\u03bd\\u03bf\\u03c5\\u03b1\\u03c1\\u03af\\u03bf\\u03c5_\\u03a6\\u03b5\\u03b2\\u03c1\\u03bf\\u03c5\\u03b1\\u03c1\\u03af\\u03bf\\u03c5_\\u039c\\u03b1\\u03c1\\u03c4\\u03af\\u03bf\\u03c5_\\u0391\\u03c0\\u03c1\\u03b9\\u03bb\\u03af\\u03bf\\u03c5_\\u039c\\u03b1\\u0390\\u03bf\\u03c5_\\u0399\\u03bf\\u03c5\\u03bd\\u03af\\u03bf\\u03c5_\\u0399\\u03bf\\u03c5\\u03bb\\u03af\\u03bf\\u03c5_\\u0391\\u03c5\\u03b3\\u03bf\\u03cd\\u03c3\\u03c4\\u03bf\\u03c5_\\u03a3\\u03b5\\u03c0\\u03c4\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u039f\\u03ba\\u03c4\\u03c9\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u039d\\u03bf\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u0394\\u03b5\\u03ba\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5\".split(\"_\"),months:function(e,t){return e?\"string\"==typeof t&&/D/.test(t.substring(0,t.indexOf(\"MMMM\")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]:this._monthsNominativeEl},monthsShort:\"\\u0399\\u03b1\\u03bd_\\u03a6\\u03b5\\u03b2_\\u039c\\u03b1\\u03c1_\\u0391\\u03c0\\u03c1_\\u039c\\u03b1\\u03ca_\\u0399\\u03bf\\u03c5\\u03bd_\\u0399\\u03bf\\u03c5\\u03bb_\\u0391\\u03c5\\u03b3_\\u03a3\\u03b5\\u03c0_\\u039f\\u03ba\\u03c4_\\u039d\\u03bf\\u03b5_\\u0394\\u03b5\\u03ba\".split(\"_\"),weekdays:\"\\u039a\\u03c5\\u03c1\\u03b9\\u03b1\\u03ba\\u03ae_\\u0394\\u03b5\\u03c5\\u03c4\\u03ad\\u03c1\\u03b1_\\u03a4\\u03c1\\u03af\\u03c4\\u03b7_\\u03a4\\u03b5\\u03c4\\u03ac\\u03c1\\u03c4\\u03b7_\\u03a0\\u03ad\\u03bc\\u03c0\\u03c4\\u03b7_\\u03a0\\u03b1\\u03c1\\u03b1\\u03c3\\u03ba\\u03b5\\u03c5\\u03ae_\\u03a3\\u03ac\\u03b2\\u03b2\\u03b1\\u03c4\\u03bf\".split(\"_\"),weekdaysShort:\"\\u039a\\u03c5\\u03c1_\\u0394\\u03b5\\u03c5_\\u03a4\\u03c1\\u03b9_\\u03a4\\u03b5\\u03c4_\\u03a0\\u03b5\\u03bc_\\u03a0\\u03b1\\u03c1_\\u03a3\\u03b1\\u03b2\".split(\"_\"),weekdaysMin:\"\\u039a\\u03c5_\\u0394\\u03b5_\\u03a4\\u03c1_\\u03a4\\u03b5_\\u03a0\\u03b5_\\u03a0\\u03b1_\\u03a3\\u03b1\".split(\"_\"),meridiem:function(e,t,n){return e>11?n?\"\\u03bc\\u03bc\":\"\\u039c\\u039c\":n?\"\\u03c0\\u03bc\":\"\\u03a0\\u039c\"},isPM:function(e){return\"\\u03bc\"===(e+\"\").toLowerCase()[0]},meridiemParse:/[\\u03a0\\u039c]\\.?\\u039c?\\.?/i,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendarEl:{sameDay:\"[\\u03a3\\u03ae\\u03bc\\u03b5\\u03c1\\u03b1 {}] LT\",nextDay:\"[\\u0391\\u03cd\\u03c1\\u03b9\\u03bf {}] LT\",nextWeek:\"dddd [{}] LT\",lastDay:\"[\\u03a7\\u03b8\\u03b5\\u03c2 {}] LT\",lastWeek:function(){switch(this.day()){case 6:return\"[\\u03c4\\u03bf \\u03c0\\u03c1\\u03bf\\u03b7\\u03b3\\u03bf\\u03cd\\u03bc\\u03b5\\u03bd\\u03bf] dddd [{}] LT\";default:return\"[\\u03c4\\u03b7\\u03bd \\u03c0\\u03c1\\u03bf\\u03b7\\u03b3\\u03bf\\u03cd\\u03bc\\u03b5\\u03bd\\u03b7] dddd [{}] LT\"}},sameElse:\"L\"},calendar:function(e,t){var n,r=this._calendarEl[e],i=t&&t.hours();return((n=r)instanceof Function||\"[object Function]\"===Object.prototype.toString.call(n))&&(r=r.apply(t)),r.replace(\"{}\",i%12==1?\"\\u03c3\\u03c4\\u03b7\":\"\\u03c3\\u03c4\\u03b9\\u03c2\")},relativeTime:{future:\"\\u03c3\\u03b5 %s\",past:\"%s \\u03c0\\u03c1\\u03b9\\u03bd\",s:\"\\u03bb\\u03af\\u03b3\\u03b1 \\u03b4\\u03b5\\u03c5\\u03c4\\u03b5\\u03c1\\u03cc\\u03bb\\u03b5\\u03c0\\u03c4\\u03b1\",ss:\"%d \\u03b4\\u03b5\\u03c5\\u03c4\\u03b5\\u03c1\\u03cc\\u03bb\\u03b5\\u03c0\\u03c4\\u03b1\",m:\"\\u03ad\\u03bd\\u03b1 \\u03bb\\u03b5\\u03c0\\u03c4\\u03cc\",mm:\"%d \\u03bb\\u03b5\\u03c0\\u03c4\\u03ac\",h:\"\\u03bc\\u03af\\u03b1 \\u03ce\\u03c1\\u03b1\",hh:\"%d \\u03ce\\u03c1\\u03b5\\u03c2\",d:\"\\u03bc\\u03af\\u03b1 \\u03bc\\u03ad\\u03c1\\u03b1\",dd:\"%d \\u03bc\\u03ad\\u03c1\\u03b5\\u03c2\",M:\"\\u03ad\\u03bd\\u03b1\\u03c2 \\u03bc\\u03ae\\u03bd\\u03b1\\u03c2\",MM:\"%d \\u03bc\\u03ae\\u03bd\\u03b5\\u03c2\",y:\"\\u03ad\\u03bd\\u03b1\\u03c2 \\u03c7\\u03c1\\u03cc\\u03bd\\u03bf\\u03c2\",yy:\"%d \\u03c7\\u03c1\\u03cc\\u03bd\\u03b9\\u03b1\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u03b7/,ordinal:\"%d\\u03b7\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jVdC:function(e,t,n){!function(e){\"use strict\";var t=\"stycze\\u0144_luty_marzec_kwiecie\\u0144_maj_czerwiec_lipiec_sierpie\\u0144_wrzesie\\u0144_pa\\u017adziernik_listopad_grudzie\\u0144\".split(\"_\"),n=\"stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_wrze\\u015bnia_pa\\u017adziernika_listopada_grudnia\".split(\"_\");function r(e){return e%10<5&&e%10>1&&~~(e/10)%10!=1}function i(e,t,n){var i=e+\" \";switch(n){case\"ss\":return i+(r(e)?\"sekundy\":\"sekund\");case\"m\":return t?\"minuta\":\"minut\\u0119\";case\"mm\":return i+(r(e)?\"minuty\":\"minut\");case\"h\":return t?\"godzina\":\"godzin\\u0119\";case\"hh\":return i+(r(e)?\"godziny\":\"godzin\");case\"MM\":return i+(r(e)?\"miesi\\u0105ce\":\"miesi\\u0119cy\");case\"yy\":return i+(r(e)?\"lata\":\"lat\")}}e.defineLocale(\"pl\",{months:function(e,r){return e?\"\"===r?\"(\"+n[e.month()]+\"|\"+t[e.month()]+\")\":/D MMMM/.test(r)?n[e.month()]:t[e.month()]:t},monthsShort:\"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_pa\\u017a_lis_gru\".split(\"_\"),weekdays:\"niedziela_poniedzia\\u0142ek_wtorek_\\u015broda_czwartek_pi\\u0105tek_sobota\".split(\"_\"),weekdaysShort:\"ndz_pon_wt_\\u015br_czw_pt_sob\".split(\"_\"),weekdaysMin:\"Nd_Pn_Wt_\\u015ar_Cz_Pt_So\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Dzi\\u015b o] LT\",nextDay:\"[Jutro o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[W niedziel\\u0119 o] LT\";case 2:return\"[We wtorek o] LT\";case 3:return\"[W \\u015brod\\u0119 o] LT\";case 6:return\"[W sobot\\u0119 o] LT\";default:return\"[W] dddd [o] LT\"}},lastDay:\"[Wczoraj o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[W zesz\\u0142\\u0105 niedziel\\u0119 o] LT\";case 3:return\"[W zesz\\u0142\\u0105 \\u015brod\\u0119 o] LT\";case 6:return\"[W zesz\\u0142\\u0105 sobot\\u0119 o] LT\";default:return\"[W zesz\\u0142y] dddd [o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"%s temu\",s:\"kilka sekund\",ss:i,m:i,mm:i,h:i,hh:i,d:\"1 dzie\\u0144\",dd:\"%d dni\",M:\"miesi\\u0105c\",MM:i,y:\"rok\",yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jfSC:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u06f1\",2:\"\\u06f2\",3:\"\\u06f3\",4:\"\\u06f4\",5:\"\\u06f5\",6:\"\\u06f6\",7:\"\\u06f7\",8:\"\\u06f8\",9:\"\\u06f9\",0:\"\\u06f0\"},n={\"\\u06f1\":\"1\",\"\\u06f2\":\"2\",\"\\u06f3\":\"3\",\"\\u06f4\":\"4\",\"\\u06f5\":\"5\",\"\\u06f6\":\"6\",\"\\u06f7\":\"7\",\"\\u06f8\":\"8\",\"\\u06f9\":\"9\",\"\\u06f0\":\"0\"};e.defineLocale(\"fa\",{months:\"\\u0698\\u0627\\u0646\\u0648\\u06cc\\u0647_\\u0641\\u0648\\u0631\\u06cc\\u0647_\\u0645\\u0627\\u0631\\u0633_\\u0622\\u0648\\u0631\\u06cc\\u0644_\\u0645\\u0647_\\u0698\\u0648\\u0626\\u0646_\\u0698\\u0648\\u0626\\u06cc\\u0647_\\u0627\\u0648\\u062a_\\u0633\\u067e\\u062a\\u0627\\u0645\\u0628\\u0631_\\u0627\\u06a9\\u062a\\u0628\\u0631_\\u0646\\u0648\\u0627\\u0645\\u0628\\u0631_\\u062f\\u0633\\u0627\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u0698\\u0627\\u0646\\u0648\\u06cc\\u0647_\\u0641\\u0648\\u0631\\u06cc\\u0647_\\u0645\\u0627\\u0631\\u0633_\\u0622\\u0648\\u0631\\u06cc\\u0644_\\u0645\\u0647_\\u0698\\u0648\\u0626\\u0646_\\u0698\\u0648\\u0626\\u06cc\\u0647_\\u0627\\u0648\\u062a_\\u0633\\u067e\\u062a\\u0627\\u0645\\u0628\\u0631_\\u0627\\u06a9\\u062a\\u0628\\u0631_\\u0646\\u0648\\u0627\\u0645\\u0628\\u0631_\\u062f\\u0633\\u0627\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u06cc\\u06a9\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062f\\u0648\\u0634\\u0646\\u0628\\u0647_\\u0633\\u0647\\u200c\\u0634\\u0646\\u0628\\u0647_\\u0686\\u0647\\u0627\\u0631\\u0634\\u0646\\u0628\\u0647_\\u067e\\u0646\\u062c\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062c\\u0645\\u0639\\u0647_\\u0634\\u0646\\u0628\\u0647\".split(\"_\"),weekdaysShort:\"\\u06cc\\u06a9\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062f\\u0648\\u0634\\u0646\\u0628\\u0647_\\u0633\\u0647\\u200c\\u0634\\u0646\\u0628\\u0647_\\u0686\\u0647\\u0627\\u0631\\u0634\\u0646\\u0628\\u0647_\\u067e\\u0646\\u062c\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062c\\u0645\\u0639\\u0647_\\u0634\\u0646\\u0628\\u0647\".split(\"_\"),weekdaysMin:\"\\u06cc_\\u062f_\\u0633_\\u0686_\\u067e_\\u062c_\\u0634\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u0642\\u0628\\u0644 \\u0627\\u0632 \\u0638\\u0647\\u0631|\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631/,isPM:function(e){return/\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631/.test(e)},meridiem:function(e,t,n){return e<12?\"\\u0642\\u0628\\u0644 \\u0627\\u0632 \\u0638\\u0647\\u0631\":\"\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631\"},calendar:{sameDay:\"[\\u0627\\u0645\\u0631\\u0648\\u0632 \\u0633\\u0627\\u0639\\u062a] LT\",nextDay:\"[\\u0641\\u0631\\u062f\\u0627 \\u0633\\u0627\\u0639\\u062a] LT\",nextWeek:\"dddd [\\u0633\\u0627\\u0639\\u062a] LT\",lastDay:\"[\\u062f\\u06cc\\u0631\\u0648\\u0632 \\u0633\\u0627\\u0639\\u062a] LT\",lastWeek:\"dddd [\\u067e\\u06cc\\u0634] [\\u0633\\u0627\\u0639\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u062f\\u0631 %s\",past:\"%s \\u067e\\u06cc\\u0634\",s:\"\\u0686\\u0646\\u062f \\u062b\\u0627\\u0646\\u06cc\\u0647\",ss:\"\\u062b\\u0627\\u0646\\u06cc\\u0647 d%\",m:\"\\u06cc\\u06a9 \\u062f\\u0642\\u06cc\\u0642\\u0647\",mm:\"%d \\u062f\\u0642\\u06cc\\u0642\\u0647\",h:\"\\u06cc\\u06a9 \\u0633\\u0627\\u0639\\u062a\",hh:\"%d \\u0633\\u0627\\u0639\\u062a\",d:\"\\u06cc\\u06a9 \\u0631\\u0648\\u0632\",dd:\"%d \\u0631\\u0648\\u0632\",M:\"\\u06cc\\u06a9 \\u0645\\u0627\\u0647\",MM:\"%d \\u0645\\u0627\\u0647\",y:\"\\u06cc\\u06a9 \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/[\\u06f0-\\u06f9]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},dayOfMonthOrdinalParse:/\\d{1,2}\\u0645/,ordinal:\"%d\\u0645\",week:{dow:6,doy:12}})}(n(\"wd/R\"))},jnO4:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"},r=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},i={s:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062b\\u0627\\u0646\\u064a\\u0629\",\"\\u062b\\u0627\\u0646\\u064a\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u0627\\u0646\",\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u064a\\u0646\"],\"%d \\u062b\\u0648\\u0627\\u0646\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\"],m:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062f\\u0642\\u064a\\u0642\\u0629\",\"\\u062f\\u0642\\u064a\\u0642\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u0627\\u0646\",\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u064a\\u0646\"],\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\"],h:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0633\\u0627\\u0639\\u0629\",\"\\u0633\\u0627\\u0639\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u0633\\u0627\\u0639\\u062a\\u0627\\u0646\",\"\\u0633\\u0627\\u0639\\u062a\\u064a\\u0646\"],\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",\"%d \\u0633\\u0627\\u0639\\u0629\",\"%d \\u0633\\u0627\\u0639\\u0629\"],d:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u064a\\u0648\\u0645\",\"\\u064a\\u0648\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u064a\\u0648\\u0645\\u0627\\u0646\",\"\\u064a\\u0648\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u064a\\u0627\\u0645\",\"%d \\u064a\\u0648\\u0645\\u064b\\u0627\",\"%d \\u064a\\u0648\\u0645\"],M:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0634\\u0647\\u0631\",\"\\u0634\\u0647\\u0631 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0634\\u0647\\u0631\\u0627\\u0646\",\"\\u0634\\u0647\\u0631\\u064a\\u0646\"],\"%d \\u0623\\u0634\\u0647\\u0631\",\"%d \\u0634\\u0647\\u0631\\u0627\",\"%d \\u0634\\u0647\\u0631\"],y:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0639\\u0627\\u0645\",\"\\u0639\\u0627\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0639\\u0627\\u0645\\u0627\\u0646\",\"\\u0639\\u0627\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u0639\\u0648\\u0627\\u0645\",\"%d \\u0639\\u0627\\u0645\\u064b\\u0627\",\"%d \\u0639\\u0627\\u0645\"]},a=function(e){return function(t,n,a,o){var s=r(t),l=i[e][r(t)];return 2===s&&(l=l[n?0:1]),l.replace(/%d/i,t)}},o=[\"\\u064a\\u0646\\u0627\\u064a\\u0631\",\"\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631\",\"\\u0645\\u0627\\u0631\\u0633\",\"\\u0623\\u0628\\u0631\\u064a\\u0644\",\"\\u0645\\u0627\\u064a\\u0648\",\"\\u064a\\u0648\\u0646\\u064a\\u0648\",\"\\u064a\\u0648\\u0644\\u064a\\u0648\",\"\\u0623\\u063a\\u0633\\u0637\\u0633\",\"\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631\",\"\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631\",\"\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\"];e.defineLocale(\"ar\",{months:o,monthsShort:o,weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/\\u200fM/\\u200fYYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u064b\\u0627 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0628\\u0639\\u062f %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:a(\"s\"),ss:a(\"s\"),m:a(\"m\"),mm:a(\"m\"),h:a(\"h\"),hh:a(\"h\"),d:a(\"d\"),dd:a(\"d\"),M:a(\"M\"),MM:a(\"M\"),y:a(\"y\"),yy:a(\"y\")},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},kEOa:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u09e7\",2:\"\\u09e8\",3:\"\\u09e9\",4:\"\\u09ea\",5:\"\\u09eb\",6:\"\\u09ec\",7:\"\\u09ed\",8:\"\\u09ee\",9:\"\\u09ef\",0:\"\\u09e6\"},n={\"\\u09e7\":\"1\",\"\\u09e8\":\"2\",\"\\u09e9\":\"3\",\"\\u09ea\":\"4\",\"\\u09eb\":\"5\",\"\\u09ec\":\"6\",\"\\u09ed\":\"7\",\"\\u09ee\":\"8\",\"\\u09ef\":\"9\",\"\\u09e6\":\"0\"};e.defineLocale(\"bn\",{months:\"\\u099c\\u09be\\u09a8\\u09c1\\u09df\\u09be\\u09b0\\u09c0_\\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09c1\\u09df\\u09be\\u09b0\\u09bf_\\u09ae\\u09be\\u09b0\\u09cd\\u099a_\\u098f\\u09aa\\u09cd\\u09b0\\u09bf\\u09b2_\\u09ae\\u09c7_\\u099c\\u09c1\\u09a8_\\u099c\\u09c1\\u09b2\\u09be\\u0987_\\u0986\\u0997\\u09b8\\u09cd\\u099f_\\u09b8\\u09c7\\u09aa\\u09cd\\u099f\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0_\\u0985\\u0995\\u09cd\\u099f\\u09cb\\u09ac\\u09b0_\\u09a8\\u09ad\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0_\\u09a1\\u09bf\\u09b8\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0\".split(\"_\"),monthsShort:\"\\u099c\\u09be\\u09a8\\u09c1_\\u09ab\\u09c7\\u09ac_\\u09ae\\u09be\\u09b0\\u09cd\\u099a_\\u098f\\u09aa\\u09cd\\u09b0_\\u09ae\\u09c7_\\u099c\\u09c1\\u09a8_\\u099c\\u09c1\\u09b2_\\u0986\\u0997_\\u09b8\\u09c7\\u09aa\\u09cd\\u099f_\\u0985\\u0995\\u09cd\\u099f\\u09cb_\\u09a8\\u09ad\\u09c7_\\u09a1\\u09bf\\u09b8\\u09c7\".split(\"_\"),weekdays:\"\\u09b0\\u09ac\\u09bf\\u09ac\\u09be\\u09b0_\\u09b8\\u09cb\\u09ae\\u09ac\\u09be\\u09b0_\\u09ae\\u0999\\u09cd\\u0997\\u09b2\\u09ac\\u09be\\u09b0_\\u09ac\\u09c1\\u09a7\\u09ac\\u09be\\u09b0_\\u09ac\\u09c3\\u09b9\\u09b8\\u09cd\\u09aa\\u09a4\\u09bf\\u09ac\\u09be\\u09b0_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0\\u09ac\\u09be\\u09b0_\\u09b6\\u09a8\\u09bf\\u09ac\\u09be\\u09b0\".split(\"_\"),weekdaysShort:\"\\u09b0\\u09ac\\u09bf_\\u09b8\\u09cb\\u09ae_\\u09ae\\u0999\\u09cd\\u0997\\u09b2_\\u09ac\\u09c1\\u09a7_\\u09ac\\u09c3\\u09b9\\u09b8\\u09cd\\u09aa\\u09a4\\u09bf_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0_\\u09b6\\u09a8\\u09bf\".split(\"_\"),weekdaysMin:\"\\u09b0\\u09ac\\u09bf_\\u09b8\\u09cb\\u09ae_\\u09ae\\u0999\\u09cd\\u0997_\\u09ac\\u09c1\\u09a7_\\u09ac\\u09c3\\u09b9\\u0983_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0_\\u09b6\\u09a8\\u09bf\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u09b8\\u09ae\\u09df\",LTS:\"A h:mm:ss \\u09b8\\u09ae\\u09df\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u09b8\\u09ae\\u09df\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u09b8\\u09ae\\u09df\"},calendar:{sameDay:\"[\\u0986\\u099c] LT\",nextDay:\"[\\u0986\\u0997\\u09be\\u09ae\\u09c0\\u0995\\u09be\\u09b2] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0997\\u09a4\\u0995\\u09be\\u09b2] LT\",lastWeek:\"[\\u0997\\u09a4] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u09aa\\u09b0\\u09c7\",past:\"%s \\u0986\\u0997\\u09c7\",s:\"\\u0995\\u09df\\u09c7\\u0995 \\u09b8\\u09c7\\u0995\\u09c7\\u09a8\\u09cd\\u09a1\",ss:\"%d \\u09b8\\u09c7\\u0995\\u09c7\\u09a8\\u09cd\\u09a1\",m:\"\\u098f\\u0995 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f\",mm:\"%d \\u09ae\\u09bf\\u09a8\\u09bf\\u099f\",h:\"\\u098f\\u0995 \\u0998\\u09a8\\u09cd\\u099f\\u09be\",hh:\"%d \\u0998\\u09a8\\u09cd\\u099f\\u09be\",d:\"\\u098f\\u0995 \\u09a6\\u09bf\\u09a8\",dd:\"%d \\u09a6\\u09bf\\u09a8\",M:\"\\u098f\\u0995 \\u09ae\\u09be\\u09b8\",MM:\"%d \\u09ae\\u09be\\u09b8\",y:\"\\u098f\\u0995 \\u09ac\\u099b\\u09b0\",yy:\"%d \\u09ac\\u099b\\u09b0\"},preparse:function(e){return e.replace(/[\\u09e7\\u09e8\\u09e9\\u09ea\\u09eb\\u09ec\\u09ed\\u09ee\\u09ef\\u09e6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u09b0\\u09be\\u09a4|\\u09b8\\u0995\\u09be\\u09b2|\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0|\\u09ac\\u09bf\\u0995\\u09be\\u09b2|\\u09b0\\u09be\\u09a4/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u09b0\\u09be\\u09a4\"===t&&e>=4||\"\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0\"===t&&e<5||\"\\u09ac\\u09bf\\u0995\\u09be\\u09b2\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u09b0\\u09be\\u09a4\":e<10?\"\\u09b8\\u0995\\u09be\\u09b2\":e<17?\"\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0\":e<20?\"\\u09ac\\u09bf\\u0995\\u09be\\u09b2\":\"\\u09b0\\u09be\\u09a4\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},kOpN:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-tw\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u9031\\u65e5_\\u9031\\u4e00_\\u9031\\u4e8c_\\u9031\\u4e09_\\u9031\\u56db_\\u9031\\u4e94_\\u9031\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e2d\\u5348\"===t?e>=11?e:e+12:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:void 0},meridiem:function(e,t,n){var r=100*e+t;return r<600?\"\\u51cc\\u6668\":r<900?\"\\u65e9\\u4e0a\":r<1130?\"\\u4e0a\\u5348\":r<1230?\"\\u4e2d\\u5348\":r<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929] LT\",nextDay:\"[\\u660e\\u5929] LT\",nextWeek:\"[\\u4e0b]dddd LT\",lastDay:\"[\\u6628\\u5929] LT\",lastWeek:\"[\\u4e0a]dddd LT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u9031)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u9031\";default:return e}},relativeTime:{future:\"%s\\u5167\",past:\"%s\\u524d\",s:\"\\u5e7e\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u9418\",mm:\"%d \\u5206\\u9418\",h:\"1 \\u5c0f\\u6642\",hh:\"%d \\u5c0f\\u6642\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u500b\\u6708\",MM:\"%d \\u500b\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"}})}(n(\"wd/R\"))},l5ep:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cy\",{months:\"Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr\".split(\"_\"),monthsShort:\"Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag\".split(\"_\"),weekdays:\"Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn\".split(\"_\"),weekdaysShort:\"Sul_Llun_Maw_Mer_Iau_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Ll_Ma_Me_Ia_Gw_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Heddiw am] LT\",nextDay:\"[Yfory am] LT\",nextWeek:\"dddd [am] LT\",lastDay:\"[Ddoe am] LT\",lastWeek:\"dddd [diwethaf am] LT\",sameElse:\"L\"},relativeTime:{future:\"mewn %s\",past:\"%s yn \\xf4l\",s:\"ychydig eiliadau\",ss:\"%d eiliad\",m:\"munud\",mm:\"%d munud\",h:\"awr\",hh:\"%d awr\",d:\"diwrnod\",dd:\"%d diwrnod\",M:\"mis\",MM:\"%d mis\",y:\"blwyddyn\",yy:\"%d flynedd\"},dayOfMonthOrdinalParse:/\\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,ordinal:function(e){var t=\"\";return e>20?t=40===e||50===e||60===e||80===e||100===e?\"fed\":\"ain\":e>0&&(t=[\"\",\"af\",\"il\",\"ydd\",\"ydd\",\"ed\",\"ed\",\"ed\",\"fed\",\"fed\",\"fed\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"fed\"][e]),e+t},week:{dow:1,doy:4}})}(n(\"wd/R\"))},lXzo:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r,i;return\"m\"===n?t?\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\":\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0443\":e+\" \"+(r=+e,i={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430_\\u043c\\u0438\\u043d\\u0443\\u0442\\u044b_\\u043c\\u0438\\u043d\\u0443\\u0442\":\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0443_\\u043c\\u0438\\u043d\\u0443\\u0442\\u044b_\\u043c\\u0438\\u043d\\u0443\\u0442\",hh:\"\\u0447\\u0430\\u0441_\\u0447\\u0430\\u0441\\u0430_\\u0447\\u0430\\u0441\\u043e\\u0432\",dd:\"\\u0434\\u0435\\u043d\\u044c_\\u0434\\u043d\\u044f_\\u0434\\u043d\\u0435\\u0439\",MM:\"\\u043c\\u0435\\u0441\\u044f\\u0446_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0430_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0435\\u0432\",yy:\"\\u0433\\u043e\\u0434_\\u0433\\u043e\\u0434\\u0430_\\u043b\\u0435\\u0442\"}[n].split(\"_\"),r%10==1&&r%100!=11?i[0]:r%10>=2&&r%10<=4&&(r%100<10||r%100>=20)?i[1]:i[2])}var n=[/^\\u044f\\u043d\\u0432/i,/^\\u0444\\u0435\\u0432/i,/^\\u043c\\u0430\\u0440/i,/^\\u0430\\u043f\\u0440/i,/^\\u043c\\u0430[\\u0439\\u044f]/i,/^\\u0438\\u044e\\u043d/i,/^\\u0438\\u044e\\u043b/i,/^\\u0430\\u0432\\u0433/i,/^\\u0441\\u0435\\u043d/i,/^\\u043e\\u043a\\u0442/i,/^\\u043d\\u043e\\u044f/i,/^\\u0434\\u0435\\u043a/i];e.defineLocale(\"ru\",{months:{format:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044f_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044f_\\u043c\\u0430\\u0440\\u0442\\u0430_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044f_\\u043c\\u0430\\u044f_\\u0438\\u044e\\u043d\\u044f_\\u0438\\u044e\\u043b\\u044f_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044f_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044f_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044f_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044f\".split(\"_\"),standalone:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044c_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044c_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044c_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044c_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044c\".split(\"_\")},monthsShort:{format:\"\\u044f\\u043d\\u0432._\\u0444\\u0435\\u0432\\u0440._\\u043c\\u0430\\u0440._\\u0430\\u043f\\u0440._\\u043c\\u0430\\u044f_\\u0438\\u044e\\u043d\\u044f_\\u0438\\u044e\\u043b\\u044f_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043d\\u0442._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u044f\\u0431._\\u0434\\u0435\\u043a.\".split(\"_\"),standalone:\"\\u044f\\u043d\\u0432._\\u0444\\u0435\\u0432\\u0440._\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440._\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043d\\u0442._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u044f\\u0431._\\u0434\\u0435\\u043a.\".split(\"_\")},weekdays:{standalone:\"\\u0432\\u043e\\u0441\\u043a\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c\\u0435_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u044c\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433_\\u043f\\u044f\\u0442\\u043d\\u0438\\u0446\\u0430_\\u0441\\u0443\\u0431\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),format:\"\\u0432\\u043e\\u0441\\u043a\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c\\u0435_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u044c\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0443_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433_\\u043f\\u044f\\u0442\\u043d\\u0438\\u0446\\u0443_\\u0441\\u0443\\u0431\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),isFormat:/\\[ ?[\\u0412\\u0432] ?(?:\\u043f\\u0440\\u043e\\u0448\\u043b\\u0443\\u044e|\\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0443\\u044e|\\u044d\\u0442\\u0443)? ?\\] ?dddd/},weekdaysShort:\"\\u0432\\u0441_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u0432\\u0441_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),monthsParse:n,longMonthsParse:n,shortMonthsParse:n,monthsRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044c\\u044f]|\\u044f\\u043d\\u0432\\.?|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044c\\u044f]|\\u0444\\u0435\\u0432\\u0440?\\.?|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u043c\\u0430\\u0440\\.?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044c\\u044f]|\\u0430\\u043f\\u0440\\.?|\\u043c\\u0430[\\u0439\\u044f]|\\u0438\\u044e\\u043d[\\u044c\\u044f]|\\u0438\\u044e\\u043d\\.?|\\u0438\\u044e\\u043b[\\u044c\\u044f]|\\u0438\\u044e\\u043b\\.?|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0430\\u0432\\u0433\\.?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u0441\\u0435\\u043d\\u0442?\\.?|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043e\\u043a\\u0442\\.?|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043d\\u043e\\u044f\\u0431?\\.?|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044c\\u044f]|\\u0434\\u0435\\u043a\\.?)/i,monthsShortRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044c\\u044f]|\\u044f\\u043d\\u0432\\.?|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044c\\u044f]|\\u0444\\u0435\\u0432\\u0440?\\.?|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u043c\\u0430\\u0440\\.?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044c\\u044f]|\\u0430\\u043f\\u0440\\.?|\\u043c\\u0430[\\u0439\\u044f]|\\u0438\\u044e\\u043d[\\u044c\\u044f]|\\u0438\\u044e\\u043d\\.?|\\u0438\\u044e\\u043b[\\u044c\\u044f]|\\u0438\\u044e\\u043b\\.?|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0430\\u0432\\u0433\\.?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u0441\\u0435\\u043d\\u0442?\\.?|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043e\\u043a\\u0442\\.?|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043d\\u043e\\u044f\\u0431?\\.?|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044c\\u044f]|\\u0434\\u0435\\u043a\\.?)/i,monthsStrictRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044f\\u044c]|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044f\\u044c]|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044f\\u044c]|\\u043c\\u0430[\\u044f\\u0439]|\\u0438\\u044e\\u043d[\\u044f\\u044c]|\\u0438\\u044e\\u043b[\\u044f\\u044c]|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044f\\u044c])/i,monthsShortStrictRegex:/^(\\u044f\\u043d\\u0432\\.|\\u0444\\u0435\\u0432\\u0440?\\.|\\u043c\\u0430\\u0440[\\u0442.]|\\u0430\\u043f\\u0440\\.|\\u043c\\u0430[\\u044f\\u0439]|\\u0438\\u044e\\u043d[\\u044c\\u044f.]|\\u0438\\u044e\\u043b[\\u044c\\u044f.]|\\u0430\\u0432\\u0433\\.|\\u0441\\u0435\\u043d\\u0442?\\.|\\u043e\\u043a\\u0442\\.|\\u043d\\u043e\\u044f\\u0431?\\.|\\u0434\\u0435\\u043a\\.)/i,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0433.\",LLL:\"D MMMM YYYY \\u0433., H:mm\",LLLL:\"dddd, D MMMM YYYY \\u0433., H:mm\"},calendar:{sameDay:\"[\\u0421\\u0435\\u0433\\u043e\\u0434\\u043d\\u044f, \\u0432] LT\",nextDay:\"[\\u0417\\u0430\\u0432\\u0442\\u0440\\u0430, \\u0432] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430, \\u0432] LT\",nextWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[\\u0412\\u043e] dddd, [\\u0432] LT\":\"[\\u0412] dddd, [\\u0432] LT\";switch(this.day()){case 0:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0435\\u0435] dddd, [\\u0432] LT\";case 1:case 2:case 4:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0438\\u0439] dddd, [\\u0432] LT\";case 3:case 5:case 6:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0443\\u044e] dddd, [\\u0432] LT\"}},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[\\u0412\\u043e] dddd, [\\u0432] LT\":\"[\\u0412] dddd, [\\u0432] LT\";switch(this.day()){case 0:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0435] dddd, [\\u0432] LT\";case 1:case 2:case 4:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u044b\\u0439] dddd, [\\u0432] LT\";case 3:case 5:case 6:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u0443\\u044e] dddd, [\\u0432] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u0447\\u0435\\u0440\\u0435\\u0437 %s\",past:\"%s \\u043d\\u0430\\u0437\\u0430\\u0434\",s:\"\\u043d\\u0435\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:t,m:t,mm:t,h:\"\\u0447\\u0430\\u0441\",hh:t,d:\"\\u0434\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0435\\u0441\\u044f\\u0446\",MM:t,y:\"\\u0433\\u043e\\u0434\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u0438|\\u0443\\u0442\\u0440\\u0430|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430/i,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u0438\":e<12?\"\\u0443\\u0442\\u0440\\u0430\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0439|\\u0433\\u043e|\\u044f)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":return e+\"-\\u0439\";case\"D\":return e+\"-\\u0433\\u043e\";case\"w\":case\"W\":return e+\"-\\u044f\";default:return e}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},lYtQ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){switch(n){case\"s\":return t?\"\\u0445\\u044d\\u0434\\u0445\\u044d\\u043d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0445\\u044d\\u0434\\u0445\\u044d\\u043d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b\\u043d\";case\"ss\":return e+(t?\" \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\" \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b\\u043d\");case\"m\":case\"mm\":return e+(t?\" \\u043c\\u0438\\u043d\\u0443\\u0442\":\" \\u043c\\u0438\\u043d\\u0443\\u0442\\u044b\\u043d\");case\"h\":case\"hh\":return e+(t?\" \\u0446\\u0430\\u0433\":\" \\u0446\\u0430\\u0433\\u0438\\u0439\\u043d\");case\"d\":case\"dd\":return e+(t?\" \\u04e9\\u0434\\u04e9\\u0440\":\" \\u04e9\\u0434\\u0440\\u0438\\u0439\\u043d\");case\"M\":case\"MM\":return e+(t?\" \\u0441\\u0430\\u0440\":\" \\u0441\\u0430\\u0440\\u044b\\u043d\");case\"y\":case\"yy\":return e+(t?\" \\u0436\\u0438\\u043b\":\" \\u0436\\u0438\\u043b\\u0438\\u0439\\u043d\");default:return e}}e.defineLocale(\"mn\",{months:\"\\u041d\\u044d\\u0433\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0425\\u043e\\u0451\\u0440\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0413\\u0443\\u0440\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0414\\u04e9\\u0440\\u04e9\\u0432\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0422\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0417\\u0443\\u0440\\u0433\\u0430\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0414\\u043e\\u043b\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u041d\\u0430\\u0439\\u043c\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0415\\u0441\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0432\\u0430\\u043d \\u043d\\u044d\\u0433\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0432\\u0430\\u043d \\u0445\\u043e\\u0451\\u0440\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440\".split(\"_\"),monthsShort:\"1 \\u0441\\u0430\\u0440_2 \\u0441\\u0430\\u0440_3 \\u0441\\u0430\\u0440_4 \\u0441\\u0430\\u0440_5 \\u0441\\u0430\\u0440_6 \\u0441\\u0430\\u0440_7 \\u0441\\u0430\\u0440_8 \\u0441\\u0430\\u0440_9 \\u0441\\u0430\\u0440_10 \\u0441\\u0430\\u0440_11 \\u0441\\u0430\\u0440_12 \\u0441\\u0430\\u0440\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u041d\\u044f\\u043c_\\u0414\\u0430\\u0432\\u0430\\u0430_\\u041c\\u044f\\u0433\\u043c\\u0430\\u0440_\\u041b\\u0445\\u0430\\u0433\\u0432\\u0430_\\u041f\\u04af\\u0440\\u044d\\u0432_\\u0411\\u0430\\u0430\\u0441\\u0430\\u043d_\\u0411\\u044f\\u043c\\u0431\\u0430\".split(\"_\"),weekdaysShort:\"\\u041d\\u044f\\u043c_\\u0414\\u0430\\u0432_\\u041c\\u044f\\u0433_\\u041b\\u0445\\u0430_\\u041f\\u04af\\u0440_\\u0411\\u0430\\u0430_\\u0411\\u044f\\u043c\".split(\"_\"),weekdaysMin:\"\\u041d\\u044f_\\u0414\\u0430_\\u041c\\u044f_\\u041b\\u0445_\\u041f\\u04af_\\u0411\\u0430_\\u0411\\u044f\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D\",LLL:\"YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D HH:mm\",LLLL:\"dddd, YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D HH:mm\"},meridiemParse:/\\u04ae\\u04e8|\\u04ae\\u0425/i,isPM:function(e){return\"\\u04ae\\u0425\"===e},meridiem:function(e,t,n){return e<12?\"\\u04ae\\u04e8\":\"\\u04ae\\u0425\"},calendar:{sameDay:\"[\\u04e8\\u043d\\u04e9\\u04e9\\u0434\\u04e9\\u0440] LT\",nextDay:\"[\\u041c\\u0430\\u0440\\u0433\\u0430\\u0430\\u0448] LT\",nextWeek:\"[\\u0418\\u0440\\u044d\\u0445] dddd LT\",lastDay:\"[\\u04e8\\u0447\\u0438\\u0433\\u0434\\u04e9\\u0440] LT\",lastWeek:\"[\\u04e8\\u043d\\u0433\\u04e9\\u0440\\u0441\\u04e9\\u043d] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0434\\u0430\\u0440\\u0430\\u0430\",past:\"%s \\u04e9\\u043c\\u043d\\u04e9\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2} \\u04e9\\u0434\\u04e9\\u0440/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\" \\u04e9\\u0434\\u04e9\\u0440\";default:return e}}})}(n(\"wd/R\"))},lgnt:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0447\\u04af\",1:\"-\\u0447\\u0438\",2:\"-\\u0447\\u0438\",3:\"-\\u0447\\u04af\",4:\"-\\u0447\\u04af\",5:\"-\\u0447\\u0438\",6:\"-\\u0447\\u044b\",7:\"-\\u0447\\u0438\",8:\"-\\u0447\\u0438\",9:\"-\\u0447\\u0443\",10:\"-\\u0447\\u0443\",20:\"-\\u0447\\u044b\",30:\"-\\u0447\\u0443\",40:\"-\\u0447\\u044b\",50:\"-\\u0447\\u04af\",60:\"-\\u0447\\u044b\",70:\"-\\u0447\\u0438\",80:\"-\\u0447\\u0438\",90:\"-\\u0447\\u0443\",100:\"-\\u0447\\u04af\"};e.defineLocale(\"ky\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044c_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044c_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044c_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044c_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044c\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u0416\\u0435\\u043a\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0414\\u04af\\u0439\\u0448\\u04e9\\u043c\\u0431\\u04af_\\u0428\\u0435\\u0439\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0428\\u0430\\u0440\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0411\\u0435\\u0439\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0416\\u0443\\u043c\\u0430_\\u0418\\u0448\\u0435\\u043c\\u0431\\u0438\".split(\"_\"),weekdaysShort:\"\\u0416\\u0435\\u043a_\\u0414\\u04af\\u0439_\\u0428\\u0435\\u0439_\\u0428\\u0430\\u0440_\\u0411\\u0435\\u0439_\\u0416\\u0443\\u043c_\\u0418\\u0448\\u0435\".split(\"_\"),weekdaysMin:\"\\u0416\\u043a_\\u0414\\u0439_\\u0428\\u0439_\\u0428\\u0440_\\u0411\\u0439_\\u0416\\u043c_\\u0418\\u0448\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0411\\u04af\\u0433\\u04af\\u043d \\u0441\\u0430\\u0430\\u0442] LT\",nextDay:\"[\\u042d\\u0440\\u0442\\u0435\\u04a3 \\u0441\\u0430\\u0430\\u0442] LT\",nextWeek:\"dddd [\\u0441\\u0430\\u0430\\u0442] LT\",lastDay:\"[\\u041a\\u0435\\u0447\\u044d\\u044d \\u0441\\u0430\\u0430\\u0442] LT\",lastWeek:\"[\\u04e8\\u0442\\u043a\\u04e9\\u043d \\u0430\\u043f\\u0442\\u0430\\u043d\\u044b\\u043d] dddd [\\u043a\\u04af\\u043d\\u04af] [\\u0441\\u0430\\u0430\\u0442] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0438\\u0447\\u0438\\u043d\\u0434\\u0435\",past:\"%s \\u043c\\u0443\\u0440\\u0443\\u043d\",s:\"\\u0431\\u0438\\u0440\\u043d\\u0435\\u0447\\u0435 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:\"\\u0431\\u0438\\u0440 \\u043c\\u04af\\u043d\\u04e9\\u0442\",mm:\"%d \\u043c\\u04af\\u043d\\u04e9\\u0442\",h:\"\\u0431\\u0438\\u0440 \\u0441\\u0430\\u0430\\u0442\",hh:\"%d \\u0441\\u0430\\u0430\\u0442\",d:\"\\u0431\\u0438\\u0440 \\u043a\\u04af\\u043d\",dd:\"%d \\u043a\\u04af\\u043d\",M:\"\\u0431\\u0438\\u0440 \\u0430\\u0439\",MM:\"%d \\u0430\\u0439\",y:\"\\u0431\\u0438\\u0440 \\u0436\\u044b\\u043b\",yy:\"%d \\u0436\\u044b\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0447\\u0438|\\u0447\\u044b|\\u0447\\u04af|\\u0447\\u0443)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},lyxo:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r=\" \";return(e%100>=20||e>=100&&e%100==0)&&(r=\" de \"),e+r+{ss:\"secunde\",mm:\"minute\",hh:\"ore\",dd:\"zile\",MM:\"luni\",yy:\"ani\"}[n]}e.defineLocale(\"ro\",{months:\"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie\".split(\"_\"),monthsShort:\"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"duminic\\u0103_luni_mar\\u021bi_miercuri_joi_vineri_s\\xe2mb\\u0103t\\u0103\".split(\"_\"),weekdaysShort:\"Dum_Lun_Mar_Mie_Joi_Vin_S\\xe2m\".split(\"_\"),weekdaysMin:\"Du_Lu_Ma_Mi_Jo_Vi_S\\xe2\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[azi la] LT\",nextDay:\"[m\\xe2ine la] LT\",nextWeek:\"dddd [la] LT\",lastDay:\"[ieri la] LT\",lastWeek:\"[fosta] dddd [la] LT\",sameElse:\"L\"},relativeTime:{future:\"peste %s\",past:\"%s \\xeen urm\\u0103\",s:\"c\\xe2teva secunde\",ss:t,m:\"un minut\",mm:t,h:\"o or\\u0103\",hh:t,d:\"o zi\",dd:t,M:\"o lun\\u0103\",MM:t,y:\"un an\",yy:t},week:{dow:1,doy:7}})}(n(\"wd/R\"))},m4GZ:function(e,t){function n(e){this.message=e}(n.prototype=new Error).name=\"InvalidCharacterError\",e.exports=\"undefined\"!=typeof window&&window.atob&&window.atob.bind(window)||function(e){var t=String(e).replace(/=+$/,\"\");if(t.length%4==1)throw new n(\"'atob' failed: The string to be decoded is not correctly encoded.\");for(var r,i,a=0,o=0,s=\"\";i=t.charAt(o++);~i&&(r=a%4?64*r+i:i,a++%4)?s+=String.fromCharCode(255&r>>(-2*a&6)):0)i=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\".indexOf(i);return s}},nyYc:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|)/,ordinal:function(e,t){switch(t){case\"D\":return e+(1===e?\"er\":\"\");default:case\"M\":case\"Q\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},o1bE:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-dz\",{months:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0627\\u062d\\u062f_\\u0627\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u0623\\u062d_\\u0625\\u062b_\\u062b\\u0644\\u0627_\\u0623\\u0631_\\u062e\\u0645_\\u062c\\u0645_\\u0633\\u0628\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:0,doy:4}})}(n(\"wd/R\"))},\"p/rL\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bm\",{months:\"Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_M\\u025bkalo_Zuw\\u025bnkalo_Zuluyekalo_Utikalo_S\\u025btanburukalo_\\u0254kut\\u0254burukalo_Nowanburukalo_Desanburukalo\".split(\"_\"),monthsShort:\"Zan_Few_Mar_Awi_M\\u025b_Zuw_Zul_Uti_S\\u025bt_\\u0254ku_Now_Des\".split(\"_\"),weekdays:\"Kari_Nt\\u025bn\\u025bn_Tarata_Araba_Alamisa_Juma_Sibiri\".split(\"_\"),weekdaysShort:\"Kar_Nt\\u025b_Tar_Ara_Ala_Jum_Sib\".split(\"_\"),weekdaysMin:\"Ka_Nt_Ta_Ar_Al_Ju_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"MMMM [tile] D [san] YYYY\",LLL:\"MMMM [tile] D [san] YYYY [l\\u025br\\u025b] HH:mm\",LLLL:\"dddd MMMM [tile] D [san] YYYY [l\\u025br\\u025b] HH:mm\"},calendar:{sameDay:\"[Bi l\\u025br\\u025b] LT\",nextDay:\"[Sini l\\u025br\\u025b] LT\",nextWeek:\"dddd [don l\\u025br\\u025b] LT\",lastDay:\"[Kunu l\\u025br\\u025b] LT\",lastWeek:\"dddd [t\\u025bm\\u025bnen l\\u025br\\u025b] LT\",sameElse:\"L\"},relativeTime:{future:\"%s k\\u0254n\\u0254\",past:\"a b\\u025b %s b\\u0254\",s:\"sanga dama dama\",ss:\"sekondi %d\",m:\"miniti kelen\",mm:\"miniti %d\",h:\"l\\u025br\\u025b kelen\",hh:\"l\\u025br\\u025b %d\",d:\"tile kelen\",dd:\"tile %d\",M:\"kalo kelen\",MM:\"kalo %d\",y:\"san kelen\",yy:\"san %d\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},raLr:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r,i;return\"m\"===n?t?\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0430\":\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0443\":\"h\"===n?t?\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\":\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\":e+\" \"+(r=+e,i={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0430_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0438_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\":\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0443_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0438_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\",hh:t?\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430_\\u0433\\u043e\\u0434\\u0438\\u043d\\u0438_\\u0433\\u043e\\u0434\\u0438\\u043d\":\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443_\\u0433\\u043e\\u0434\\u0438\\u043d\\u0438_\\u0433\\u043e\\u0434\\u0438\\u043d\",dd:\"\\u0434\\u0435\\u043d\\u044c_\\u0434\\u043d\\u0456_\\u0434\\u043d\\u0456\\u0432\",MM:\"\\u043c\\u0456\\u0441\\u044f\\u0446\\u044c_\\u043c\\u0456\\u0441\\u044f\\u0446\\u0456_\\u043c\\u0456\\u0441\\u044f\\u0446\\u0456\\u0432\",yy:\"\\u0440\\u0456\\u043a_\\u0440\\u043e\\u043a\\u0438_\\u0440\\u043e\\u043a\\u0456\\u0432\"}[n].split(\"_\"),r%10==1&&r%100!=11?i[0]:r%10>=2&&r%10<=4&&(r%100<10||r%100>=20)?i[1]:i[2])}function n(e){return function(){return e+\"\\u043e\"+(11===this.hours()?\"\\u0431\":\"\")+\"] LT\"}}e.defineLocale(\"uk\",{months:{format:\"\\u0441\\u0456\\u0447\\u043d\\u044f_\\u043b\\u044e\\u0442\\u043e\\u0433\\u043e_\\u0431\\u0435\\u0440\\u0435\\u0437\\u043d\\u044f_\\u043a\\u0432\\u0456\\u0442\\u043d\\u044f_\\u0442\\u0440\\u0430\\u0432\\u043d\\u044f_\\u0447\\u0435\\u0440\\u0432\\u043d\\u044f_\\u043b\\u0438\\u043f\\u043d\\u044f_\\u0441\\u0435\\u0440\\u043f\\u043d\\u044f_\\u0432\\u0435\\u0440\\u0435\\u0441\\u043d\\u044f_\\u0436\\u043e\\u0432\\u0442\\u043d\\u044f_\\u043b\\u0438\\u0441\\u0442\\u043e\\u043f\\u0430\\u0434\\u0430_\\u0433\\u0440\\u0443\\u0434\\u043d\\u044f\".split(\"_\"),standalone:\"\\u0441\\u0456\\u0447\\u0435\\u043d\\u044c_\\u043b\\u044e\\u0442\\u0438\\u0439_\\u0431\\u0435\\u0440\\u0435\\u0437\\u0435\\u043d\\u044c_\\u043a\\u0432\\u0456\\u0442\\u0435\\u043d\\u044c_\\u0442\\u0440\\u0430\\u0432\\u0435\\u043d\\u044c_\\u0447\\u0435\\u0440\\u0432\\u0435\\u043d\\u044c_\\u043b\\u0438\\u043f\\u0435\\u043d\\u044c_\\u0441\\u0435\\u0440\\u043f\\u0435\\u043d\\u044c_\\u0432\\u0435\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c_\\u0436\\u043e\\u0432\\u0442\\u0435\\u043d\\u044c_\\u043b\\u0438\\u0441\\u0442\\u043e\\u043f\\u0430\\u0434_\\u0433\\u0440\\u0443\\u0434\\u0435\\u043d\\u044c\".split(\"_\")},monthsShort:\"\\u0441\\u0456\\u0447_\\u043b\\u044e\\u0442_\\u0431\\u0435\\u0440_\\u043a\\u0432\\u0456\\u0442_\\u0442\\u0440\\u0430\\u0432_\\u0447\\u0435\\u0440\\u0432_\\u043b\\u0438\\u043f_\\u0441\\u0435\\u0440\\u043f_\\u0432\\u0435\\u0440_\\u0436\\u043e\\u0432\\u0442_\\u043b\\u0438\\u0441\\u0442_\\u0433\\u0440\\u0443\\u0434\".split(\"_\"),weekdays:function(e,t){var n={nominative:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u044f_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043e\\u043a_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043e\\u043a_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u044f_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),accusative:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u044e_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043e\\u043a_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043e\\u043a_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0443_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u044e_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),genitive:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u0456_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043a\\u0430_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043a\\u0430_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0438_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433\\u0430_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u0456_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0438\".split(\"_\")};return!0===e?n.nominative.slice(1,7).concat(n.nominative.slice(0,1)):e?n[/(\\[[\\u0412\\u0432\\u0423\\u0443]\\]) ?dddd/.test(t)?\"accusative\":/\\[?(?:\\u043c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0457|\\u043d\\u0430\\u0441\\u0442\\u0443\\u043f\\u043d\\u043e\\u0457)? ?\\] ?dddd/.test(t)?\"genitive\":\"nominative\"][e.day()]:n.nominative},weekdaysShort:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0440.\",LLL:\"D MMMM YYYY \\u0440., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0440., HH:mm\"},calendar:{sameDay:n(\"[\\u0421\\u044c\\u043e\\u0433\\u043e\\u0434\\u043d\\u0456 \"),nextDay:n(\"[\\u0417\\u0430\\u0432\\u0442\\u0440\\u0430 \"),lastDay:n(\"[\\u0412\\u0447\\u043e\\u0440\\u0430 \"),nextWeek:n(\"[\\u0423] dddd [\"),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return n(\"[\\u041c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0457] dddd [\").call(this);case 1:case 2:case 4:return n(\"[\\u041c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0433\\u043e] dddd [\").call(this)}},sameElse:\"L\"},relativeTime:{future:\"\\u0437\\u0430 %s\",past:\"%s \\u0442\\u043e\\u043c\\u0443\",s:\"\\u0434\\u0435\\u043a\\u0456\\u043b\\u044c\\u043a\\u0430 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:t,m:t,mm:t,h:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\",hh:t,d:\"\\u0434\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0456\\u0441\\u044f\\u0446\\u044c\",MM:t,y:\"\\u0440\\u0456\\u043a\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u0456|\\u0440\\u0430\\u043d\\u043a\\u0443|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430/,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u0456\":e<12?\"\\u0440\\u0430\\u043d\\u043a\\u0443\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0439|\\u0433\\u043e)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e+\"-\\u0439\";case\"D\":return e+\"-\\u0433\\u043e\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"s+uk\":function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?i[n][0]:i[n][1]}e.defineLocale(\"de-at\",{months:\"J\\xe4nner_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"J\\xe4n._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},sp3z:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"lo\",{months:\"\\u0ea1\\u0eb1\\u0e87\\u0e81\\u0ead\\u0e99_\\u0e81\\u0eb8\\u0ea1\\u0e9e\\u0eb2_\\u0ea1\\u0eb5\\u0e99\\u0eb2_\\u0ec0\\u0ea1\\u0eaa\\u0eb2_\\u0e9e\\u0eb6\\u0e94\\u0eaa\\u0eb0\\u0e9e\\u0eb2_\\u0ea1\\u0eb4\\u0e96\\u0eb8\\u0e99\\u0eb2_\\u0e81\\u0ecd\\u0ea5\\u0eb0\\u0e81\\u0ebb\\u0e94_\\u0eaa\\u0eb4\\u0e87\\u0eab\\u0eb2_\\u0e81\\u0eb1\\u0e99\\u0e8d\\u0eb2_\\u0e95\\u0eb8\\u0ea5\\u0eb2_\\u0e9e\\u0eb0\\u0e88\\u0eb4\\u0e81_\\u0e97\\u0eb1\\u0e99\\u0ea7\\u0eb2\".split(\"_\"),monthsShort:\"\\u0ea1\\u0eb1\\u0e87\\u0e81\\u0ead\\u0e99_\\u0e81\\u0eb8\\u0ea1\\u0e9e\\u0eb2_\\u0ea1\\u0eb5\\u0e99\\u0eb2_\\u0ec0\\u0ea1\\u0eaa\\u0eb2_\\u0e9e\\u0eb6\\u0e94\\u0eaa\\u0eb0\\u0e9e\\u0eb2_\\u0ea1\\u0eb4\\u0e96\\u0eb8\\u0e99\\u0eb2_\\u0e81\\u0ecd\\u0ea5\\u0eb0\\u0e81\\u0ebb\\u0e94_\\u0eaa\\u0eb4\\u0e87\\u0eab\\u0eb2_\\u0e81\\u0eb1\\u0e99\\u0e8d\\u0eb2_\\u0e95\\u0eb8\\u0ea5\\u0eb2_\\u0e9e\\u0eb0\\u0e88\\u0eb4\\u0e81_\\u0e97\\u0eb1\\u0e99\\u0ea7\\u0eb2\".split(\"_\"),weekdays:\"\\u0ead\\u0eb2\\u0e97\\u0eb4\\u0e94_\\u0e88\\u0eb1\\u0e99_\\u0ead\\u0eb1\\u0e87\\u0e84\\u0eb2\\u0e99_\\u0e9e\\u0eb8\\u0e94_\\u0e9e\\u0eb0\\u0eab\\u0eb1\\u0e94_\\u0eaa\\u0eb8\\u0e81_\\u0ec0\\u0eaa\\u0ebb\\u0eb2\".split(\"_\"),weekdaysShort:\"\\u0e97\\u0eb4\\u0e94_\\u0e88\\u0eb1\\u0e99_\\u0ead\\u0eb1\\u0e87\\u0e84\\u0eb2\\u0e99_\\u0e9e\\u0eb8\\u0e94_\\u0e9e\\u0eb0\\u0eab\\u0eb1\\u0e94_\\u0eaa\\u0eb8\\u0e81_\\u0ec0\\u0eaa\\u0ebb\\u0eb2\".split(\"_\"),weekdaysMin:\"\\u0e97_\\u0e88_\\u0ead\\u0e84_\\u0e9e_\\u0e9e\\u0eab_\\u0eaa\\u0e81_\\u0eaa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"\\u0ea7\\u0eb1\\u0e99dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0e95\\u0ead\\u0e99\\u0ec0\\u0e8a\\u0ebb\\u0ec9\\u0eb2|\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87/,isPM:function(e){return\"\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87\"===e},meridiem:function(e,t,n){return e<12?\"\\u0e95\\u0ead\\u0e99\\u0ec0\\u0e8a\\u0ebb\\u0ec9\\u0eb2\":\"\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87\"},calendar:{sameDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",nextDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0ead\\u0eb7\\u0ec8\\u0e99\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",nextWeek:\"[\\u0ea7\\u0eb1\\u0e99]dddd[\\u0edc\\u0ec9\\u0eb2\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",lastDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0ea7\\u0eb2\\u0e99\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",lastWeek:\"[\\u0ea7\\u0eb1\\u0e99]dddd[\\u0ec1\\u0ea5\\u0ec9\\u0ea7\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0ead\\u0eb5\\u0e81 %s\",past:\"%s\\u0e9c\\u0ec8\\u0eb2\\u0e99\\u0ea1\\u0eb2\",s:\"\\u0e9a\\u0ecd\\u0ec8\\u0ec0\\u0e97\\u0ebb\\u0ec8\\u0eb2\\u0ec3\\u0e94\\u0ea7\\u0eb4\\u0e99\\u0eb2\\u0e97\\u0eb5\",ss:\"%d \\u0ea7\\u0eb4\\u0e99\\u0eb2\\u0e97\\u0eb5\",m:\"1 \\u0e99\\u0eb2\\u0e97\\u0eb5\",mm:\"%d \\u0e99\\u0eb2\\u0e97\\u0eb5\",h:\"1 \\u0e8a\\u0ebb\\u0ec8\\u0ea7\\u0ec2\\u0ea1\\u0e87\",hh:\"%d \\u0e8a\\u0ebb\\u0ec8\\u0ea7\\u0ec2\\u0ea1\\u0e87\",d:\"1 \\u0ea1\\u0eb7\\u0ec9\",dd:\"%d \\u0ea1\\u0eb7\\u0ec9\",M:\"1 \\u0ec0\\u0e94\\u0eb7\\u0ead\\u0e99\",MM:\"%d \\u0ec0\\u0e94\\u0eb7\\u0ead\\u0e99\",y:\"1 \\u0e9b\\u0eb5\",yy:\"%d \\u0e9b\\u0eb5\"},dayOfMonthOrdinalParse:/(\\u0e97\\u0eb5\\u0ec8)\\d{1,2}/,ordinal:function(e){return\"\\u0e97\\u0eb5\\u0ec8\"+e}})}(n(\"wd/R\"))},tGlX:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?i[n][0]:i[n][1]}e.defineLocale(\"de\",{months:\"Januar_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},tT3J:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm-latn\",{months:\"innayr_br\\u02e4ayr\\u02e4_mar\\u02e4s\\u02e4_ibrir_mayyw_ywnyw_ywlywz_\\u0263w\\u0161t_\\u0161wtanbir_kt\\u02e4wbr\\u02e4_nwwanbir_dwjnbir\".split(\"_\"),monthsShort:\"innayr_br\\u02e4ayr\\u02e4_mar\\u02e4s\\u02e4_ibrir_mayyw_ywnyw_ywlywz_\\u0263w\\u0161t_\\u0161wtanbir_kt\\u02e4wbr\\u02e4_nwwanbir_dwjnbir\".split(\"_\"),weekdays:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),weekdaysShort:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),weekdaysMin:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[asdkh g] LT\",nextDay:\"[aska g] LT\",nextWeek:\"dddd [g] LT\",lastDay:\"[assant g] LT\",lastWeek:\"dddd [g] LT\",sameElse:\"L\"},relativeTime:{future:\"dadkh s yan %s\",past:\"yan %s\",s:\"imik\",ss:\"%d imik\",m:\"minu\\u1e0d\",mm:\"%d minu\\u1e0d\",h:\"sa\\u025ba\",hh:\"%d tassa\\u025bin\",d:\"ass\",dd:\"%d ossan\",M:\"ayowr\",MM:\"%d iyyirn\",y:\"asgas\",yy:\"%d isgasn\"},week:{dow:6,doy:12}})}(n(\"wd/R\"))},tUCv:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"jv\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des\".split(\"_\"),weekdays:\"Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Reb_Kem_Jem_Sep\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sp\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/enjing|siyang|sonten|ndalu/,meridiemHour:function(e,t){return 12===e&&(e=0),\"enjing\"===t?e:\"siyang\"===t?e>=11?e:e+12:\"sonten\"===t||\"ndalu\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"enjing\":e<15?\"siyang\":e<19?\"sonten\":\"ndalu\"},calendar:{sameDay:\"[Dinten puniko pukul] LT\",nextDay:\"[Mbenjang pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kala wingi pukul] LT\",lastWeek:\"dddd [kepengker pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"wonten ing %s\",past:\"%s ingkang kepengker\",s:\"sawetawis detik\",ss:\"%d detik\",m:\"setunggal menit\",mm:\"%d menit\",h:\"setunggal jam\",hh:\"%d jam\",d:\"sedinten\",dd:\"%d dinten\",M:\"sewulan\",MM:\"%d wulan\",y:\"setaun\",yy:\"%d taun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},u3GI:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?i[n][0]:i[n][1]}e.defineLocale(\"de-ch\",{months:\"Januar_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},uEye:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nn\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\"),weekdays:\"sundag_m\\xe5ndag_tysdag_onsdag_torsdag_fredag_laurdag\".split(\"_\"),weekdaysShort:\"sun_m\\xe5n_tys_ons_tor_fre_lau\".split(\"_\"),weekdaysMin:\"su_m\\xe5_ty_on_to_fr_l\\xf8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] H:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[I dag klokka] LT\",nextDay:\"[I morgon klokka] LT\",nextWeek:\"dddd [klokka] LT\",lastDay:\"[I g\\xe5r klokka] LT\",lastWeek:\"[F\\xf8reg\\xe5ande] dddd [klokka] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s sidan\",s:\"nokre sekund\",ss:\"%d sekund\",m:\"eit minutt\",mm:\"%d minutt\",h:\"ein time\",hh:\"%d timar\",d:\"ein dag\",dd:\"%d dagar\",M:\"ein m\\xe5nad\",MM:\"%d m\\xe5nader\",y:\"eit \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},uXwI:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekundes_sekund\\u0113m_sekunde_sekundes\".split(\"_\"),m:\"min\\u016btes_min\\u016bt\\u0113m_min\\u016bte_min\\u016btes\".split(\"_\"),mm:\"min\\u016btes_min\\u016bt\\u0113m_min\\u016bte_min\\u016btes\".split(\"_\"),h:\"stundas_stund\\u0101m_stunda_stundas\".split(\"_\"),hh:\"stundas_stund\\u0101m_stunda_stundas\".split(\"_\"),d:\"dienas_dien\\u0101m_diena_dienas\".split(\"_\"),dd:\"dienas_dien\\u0101m_diena_dienas\".split(\"_\"),M:\"m\\u0113ne\\u0161a_m\\u0113ne\\u0161iem_m\\u0113nesis_m\\u0113ne\\u0161i\".split(\"_\"),MM:\"m\\u0113ne\\u0161a_m\\u0113ne\\u0161iem_m\\u0113nesis_m\\u0113ne\\u0161i\".split(\"_\"),y:\"gada_gadiem_gads_gadi\".split(\"_\"),yy:\"gada_gadiem_gads_gadi\".split(\"_\")};function n(e,t,n){return n?t%10==1&&t%100!=11?e[2]:e[3]:t%10==1&&t%100!=11?e[0]:e[1]}function r(e,r,i){return e+\" \"+n(t[i],e,r)}function i(e,r,i){return n(t[i],e,r)}e.defineLocale(\"lv\",{months:\"janv\\u0101ris_febru\\u0101ris_marts_apr\\u012blis_maijs_j\\u016bnijs_j\\u016blijs_augusts_septembris_oktobris_novembris_decembris\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_j\\u016bn_j\\u016bl_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"sv\\u0113tdiena_pirmdiena_otrdiena_tre\\u0161diena_ceturtdiena_piektdiena_sestdiena\".split(\"_\"),weekdaysShort:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysMin:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY.\",LL:\"YYYY. [gada] D. MMMM\",LLL:\"YYYY. [gada] D. MMMM, HH:mm\",LLLL:\"YYYY. [gada] D. MMMM, dddd, HH:mm\"},calendar:{sameDay:\"[\\u0160odien pulksten] LT\",nextDay:\"[R\\u012bt pulksten] LT\",nextWeek:\"dddd [pulksten] LT\",lastDay:\"[Vakar pulksten] LT\",lastWeek:\"[Pag\\u0101ju\\u0161\\u0101] dddd [pulksten] LT\",sameElse:\"L\"},relativeTime:{future:\"p\\u0113c %s\",past:\"pirms %s\",s:function(e,t){return t?\"da\\u017eas sekundes\":\"da\\u017e\\u0101m sekund\\u0113m\"},ss:r,m:i,mm:r,h:i,hh:r,d:i,dd:r,M:i,MM:r,y:i,yy:r},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},wQk9:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm\",{months:\"\\u2d49\\u2d4f\\u2d4f\\u2d30\\u2d62\\u2d54_\\u2d31\\u2d55\\u2d30\\u2d62\\u2d55_\\u2d4e\\u2d30\\u2d55\\u2d5a_\\u2d49\\u2d31\\u2d54\\u2d49\\u2d54_\\u2d4e\\u2d30\\u2d62\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4f\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4d\\u2d62\\u2d53\\u2d63_\\u2d56\\u2d53\\u2d5b\\u2d5c_\\u2d5b\\u2d53\\u2d5c\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d3d\\u2d5f\\u2d53\\u2d31\\u2d55_\\u2d4f\\u2d53\\u2d61\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d37\\u2d53\\u2d4a\\u2d4f\\u2d31\\u2d49\\u2d54\".split(\"_\"),monthsShort:\"\\u2d49\\u2d4f\\u2d4f\\u2d30\\u2d62\\u2d54_\\u2d31\\u2d55\\u2d30\\u2d62\\u2d55_\\u2d4e\\u2d30\\u2d55\\u2d5a_\\u2d49\\u2d31\\u2d54\\u2d49\\u2d54_\\u2d4e\\u2d30\\u2d62\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4f\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4d\\u2d62\\u2d53\\u2d63_\\u2d56\\u2d53\\u2d5b\\u2d5c_\\u2d5b\\u2d53\\u2d5c\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d3d\\u2d5f\\u2d53\\u2d31\\u2d55_\\u2d4f\\u2d53\\u2d61\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d37\\u2d53\\u2d4a\\u2d4f\\u2d31\\u2d49\\u2d54\".split(\"_\"),weekdays:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),weekdaysShort:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),weekdaysMin:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u2d30\\u2d59\\u2d37\\u2d45 \\u2d34] LT\",nextDay:\"[\\u2d30\\u2d59\\u2d3d\\u2d30 \\u2d34] LT\",nextWeek:\"dddd [\\u2d34] LT\",lastDay:\"[\\u2d30\\u2d5a\\u2d30\\u2d4f\\u2d5c \\u2d34] LT\",lastWeek:\"dddd [\\u2d34] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u2d37\\u2d30\\u2d37\\u2d45 \\u2d59 \\u2d62\\u2d30\\u2d4f %s\",past:\"\\u2d62\\u2d30\\u2d4f %s\",s:\"\\u2d49\\u2d4e\\u2d49\\u2d3d\",ss:\"%d \\u2d49\\u2d4e\\u2d49\\u2d3d\",m:\"\\u2d4e\\u2d49\\u2d4f\\u2d53\\u2d3a\",mm:\"%d \\u2d4e\\u2d49\\u2d4f\\u2d53\\u2d3a\",h:\"\\u2d59\\u2d30\\u2d44\\u2d30\",hh:\"%d \\u2d5c\\u2d30\\u2d59\\u2d59\\u2d30\\u2d44\\u2d49\\u2d4f\",d:\"\\u2d30\\u2d59\\u2d59\",dd:\"%d o\\u2d59\\u2d59\\u2d30\\u2d4f\",M:\"\\u2d30\\u2d62o\\u2d53\\u2d54\",MM:\"%d \\u2d49\\u2d62\\u2d62\\u2d49\\u2d54\\u2d4f\",y:\"\\u2d30\\u2d59\\u2d33\\u2d30\\u2d59\",yy:\"%d \\u2d49\\u2d59\\u2d33\\u2d30\\u2d59\\u2d4f\"},week:{dow:6,doy:12}})}(n(\"wd/R\"))},\"wd/R\":function(e,t,n){(function(e){e.exports=function(){\"use strict\";var t,r;function i(){return t.apply(null,arguments)}function a(e){return e instanceof Array||\"[object Array]\"===Object.prototype.toString.call(e)}function o(e){return null!=e&&\"[object Object]\"===Object.prototype.toString.call(e)}function s(e){return void 0===e}function l(e){return\"number\"==typeof e||\"[object Number]\"===Object.prototype.toString.call(e)}function u(e){return e instanceof Date||\"[object Date]\"===Object.prototype.toString.call(e)}function c(e,t){var n,r=[];for(n=0;n>>0,r=0;r0)for(n=0;n=0?n?\"+\":\"\":\"-\")+Math.pow(10,Math.max(0,t-r.length)).toString().substr(1)+r}var N=/(\\[[^\\[]*\\])|(\\\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,z=/(\\[[^\\[]*\\])|(\\\\)?(LTS|LT|LL?L?L?|l{1,4})/g,V={},W={};function U(e,t,n,r){var i=r;\"string\"==typeof r&&(i=function(){return this[r]()}),e&&(W[e]=i),t&&(W[t[0]]=function(){return F(i.apply(this,arguments),t[1],t[2])}),n&&(W[n]=function(){return this.localeData().ordinal(i.apply(this,arguments),e)})}function B(e,t){return e.isValid()?(t=q(t,e.localeData()),V[t]=V[t]||function(e){var t,n,r,i=e.match(N);for(t=0,n=i.length;t=0&&z.test(e);)e=e.replace(z,r),z.lastIndex=0,n-=1;return e}var G=/\\d/,$=/\\d\\d/,J=/\\d{3}/,K=/\\d{4}/,Z=/[+-]?\\d{6}/,Q=/\\d\\d?/,X=/\\d\\d\\d\\d?/,ee=/\\d\\d\\d\\d\\d\\d?/,te=/\\d{1,3}/,ne=/\\d{1,4}/,re=/[+-]?\\d{1,6}/,ie=/\\d+/,ae=/[+-]?\\d+/,oe=/Z|[+-]\\d\\d:?\\d\\d/gi,se=/Z|[+-]\\d\\d(?::?\\d\\d)?/gi,le=/[0-9]{0,256}['a-z\\u00A0-\\u05FF\\u0700-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFF07\\uFF10-\\uFFEF]{1,256}|[\\u0600-\\u06FF\\/]{1,256}(\\s*?[\\u0600-\\u06FF]{1,256}){1,2}/i,ue={};function ce(e,t,n){ue[e]=O(t)?t:function(e,r){return e&&n?n:t}}function de(e,t){return d(ue,e)?ue[e](t._strict,t._locale):new RegExp(he(e.replace(\"\\\\\",\"\").replace(/\\\\(\\[)|\\\\(\\])|\\[([^\\]\\[]*)\\]|\\\\(.)/g,(function(e,t,n,r,i){return t||n||r||i}))))}function he(e){return e.replace(/[-\\/\\\\^$*+?.()|[\\]{}]/g,\"\\\\$&\")}var fe={};function me(e,t){var n,r=t;for(\"string\"==typeof e&&(e=[e]),l(t)&&(r=function(e,n){n[t]=C(e)}),n=0;n68?1900:2e3)};var ye,be=ke(\"FullYear\",!0);function ke(e,t){return function(n){return null!=n?(Ce(this,e,n),i.updateOffset(this,t),this):we(this,e)}}function we(e,t){return e.isValid()?e._d[\"get\"+(e._isUTC?\"UTC\":\"\")+t]():NaN}function Ce(e,t,n){e.isValid()&&!isNaN(n)&&(\"FullYear\"===t&&ge(e.year())&&1===e.month()&&29===e.date()?e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n,e.month(),Me(n,e.month())):e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n))}function Me(e,t){if(isNaN(e)||isNaN(t))return NaN;var n=(t%12+12)%12;return e+=(t-n)/12,1===n?ge(e)?29:28:31-n%7%2}ye=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t=0?(s=new Date(e+400,t,n,r,i,a,o),isFinite(s.getFullYear())&&s.setFullYear(e)):s=new Date(e,t,n,r,i,a,o),s}function Pe(e){var t;if(e<100&&e>=0){var n=Array.prototype.slice.call(arguments);n[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)}else t=new Date(Date.UTC.apply(null,arguments));return t}function je(e,t,n){var r=7+t-n;return-(7+Pe(e,0,r).getUTCDay()-t)%7+r-1}function Re(e,t,n,r,i){var a,o,s=1+7*(t-1)+(7+n-r)%7+je(e,r,i);return s<=0?o=ve(a=e-1)+s:s>ve(e)?(a=e+1,o=s-ve(e)):(a=e,o=s),{year:a,dayOfYear:o}}function He(e,t,n){var r,i,a=je(e.year(),t,n),o=Math.floor((e.dayOfYear()-a-1)/7)+1;return o<1?r=o+Fe(i=e.year()-1,t,n):o>Fe(e.year(),t,n)?(r=o-Fe(e.year(),t,n),i=e.year()+1):(i=e.year(),r=o),{week:r,year:i}}function Fe(e,t,n){var r=je(e,t,n),i=je(e+1,t,n);return(ve(e)-r+i)/7}function Ne(e,t){return e.slice(t,7).concat(e.slice(0,t))}U(\"w\",[\"ww\",2],\"wo\",\"week\"),U(\"W\",[\"WW\",2],\"Wo\",\"isoWeek\"),A(\"week\",\"w\"),A(\"isoWeek\",\"W\"),H(\"week\",5),H(\"isoWeek\",5),ce(\"w\",Q),ce(\"ww\",Q,$),ce(\"W\",Q),ce(\"WW\",Q,$),pe([\"w\",\"ww\",\"W\",\"WW\"],(function(e,t,n,r){t[r.substr(0,1)]=C(e)})),U(\"d\",0,\"do\",\"day\"),U(\"dd\",0,0,(function(e){return this.localeData().weekdaysMin(this,e)})),U(\"ddd\",0,0,(function(e){return this.localeData().weekdaysShort(this,e)})),U(\"dddd\",0,0,(function(e){return this.localeData().weekdays(this,e)})),U(\"e\",0,0,\"weekday\"),U(\"E\",0,0,\"isoWeekday\"),A(\"day\",\"d\"),A(\"weekday\",\"e\"),A(\"isoWeekday\",\"E\"),H(\"day\",11),H(\"weekday\",11),H(\"isoWeekday\",11),ce(\"d\",Q),ce(\"e\",Q),ce(\"E\",Q),ce(\"dd\",(function(e,t){return t.weekdaysMinRegex(e)})),ce(\"ddd\",(function(e,t){return t.weekdaysShortRegex(e)})),ce(\"dddd\",(function(e,t){return t.weekdaysRegex(e)})),pe([\"dd\",\"ddd\",\"dddd\"],(function(e,t,n,r){var i=n._locale.weekdaysParse(e,r,n._strict);null!=i?t.d=i:m(n).invalidWeekday=e})),pe([\"d\",\"e\",\"E\"],(function(e,t,n,r){t[r]=C(e)}));var ze=\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),Ve=\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),We=\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\");function Ue(e,t,n){var r,i,a,o=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],r=0;r<7;++r)a=f([2e3,1]).day(r),this._minWeekdaysParse[r]=this.weekdaysMin(a,\"\").toLocaleLowerCase(),this._shortWeekdaysParse[r]=this.weekdaysShort(a,\"\").toLocaleLowerCase(),this._weekdaysParse[r]=this.weekdays(a,\"\").toLocaleLowerCase();return n?\"dddd\"===t?-1!==(i=ye.call(this._weekdaysParse,o))?i:null:\"ddd\"===t?-1!==(i=ye.call(this._shortWeekdaysParse,o))?i:null:-1!==(i=ye.call(this._minWeekdaysParse,o))?i:null:\"dddd\"===t?-1!==(i=ye.call(this._weekdaysParse,o))||-1!==(i=ye.call(this._shortWeekdaysParse,o))||-1!==(i=ye.call(this._minWeekdaysParse,o))?i:null:\"ddd\"===t?-1!==(i=ye.call(this._shortWeekdaysParse,o))||-1!==(i=ye.call(this._weekdaysParse,o))||-1!==(i=ye.call(this._minWeekdaysParse,o))?i:null:-1!==(i=ye.call(this._minWeekdaysParse,o))||-1!==(i=ye.call(this._weekdaysParse,o))||-1!==(i=ye.call(this._shortWeekdaysParse,o))?i:null}var Be=le,qe=le,Ge=le;function $e(){function e(e,t){return t.length-e.length}var t,n,r,i,a,o=[],s=[],l=[],u=[];for(t=0;t<7;t++)n=f([2e3,1]).day(t),r=this.weekdaysMin(n,\"\"),i=this.weekdaysShort(n,\"\"),a=this.weekdays(n,\"\"),o.push(r),s.push(i),l.push(a),u.push(r),u.push(i),u.push(a);for(o.sort(e),s.sort(e),l.sort(e),u.sort(e),t=0;t<7;t++)s[t]=he(s[t]),l[t]=he(l[t]),u[t]=he(u[t]);this._weekdaysRegex=new RegExp(\"^(\"+u.join(\"|\")+\")\",\"i\"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp(\"^(\"+l.join(\"|\")+\")\",\"i\"),this._weekdaysShortStrictRegex=new RegExp(\"^(\"+s.join(\"|\")+\")\",\"i\"),this._weekdaysMinStrictRegex=new RegExp(\"^(\"+o.join(\"|\")+\")\",\"i\")}function Je(){return this.hours()%12||12}function Ke(e,t){U(e,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)}))}function Ze(e,t){return t._meridiemParse}U(\"H\",[\"HH\",2],0,\"hour\"),U(\"h\",[\"hh\",2],0,Je),U(\"k\",[\"kk\",2],0,(function(){return this.hours()||24})),U(\"hmm\",0,0,(function(){return\"\"+Je.apply(this)+F(this.minutes(),2)})),U(\"hmmss\",0,0,(function(){return\"\"+Je.apply(this)+F(this.minutes(),2)+F(this.seconds(),2)})),U(\"Hmm\",0,0,(function(){return\"\"+this.hours()+F(this.minutes(),2)})),U(\"Hmmss\",0,0,(function(){return\"\"+this.hours()+F(this.minutes(),2)+F(this.seconds(),2)})),Ke(\"a\",!0),Ke(\"A\",!1),A(\"hour\",\"h\"),H(\"hour\",13),ce(\"a\",Ze),ce(\"A\",Ze),ce(\"H\",Q),ce(\"h\",Q),ce(\"k\",Q),ce(\"HH\",Q,$),ce(\"hh\",Q,$),ce(\"kk\",Q,$),ce(\"hmm\",X),ce(\"hmmss\",ee),ce(\"Hmm\",X),ce(\"Hmmss\",ee),me([\"H\",\"HH\"],3),me([\"k\",\"kk\"],(function(e,t,n){var r=C(e);t[3]=24===r?0:r})),me([\"a\",\"A\"],(function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e})),me([\"h\",\"hh\"],(function(e,t,n){t[3]=C(e),m(n).bigHour=!0})),me(\"hmm\",(function(e,t,n){var r=e.length-2;t[3]=C(e.substr(0,r)),t[4]=C(e.substr(r)),m(n).bigHour=!0})),me(\"hmmss\",(function(e,t,n){var r=e.length-4,i=e.length-2;t[3]=C(e.substr(0,r)),t[4]=C(e.substr(r,2)),t[5]=C(e.substr(i)),m(n).bigHour=!0})),me(\"Hmm\",(function(e,t,n){var r=e.length-2;t[3]=C(e.substr(0,r)),t[4]=C(e.substr(r))})),me(\"Hmmss\",(function(e,t,n){var r=e.length-4,i=e.length-2;t[3]=C(e.substr(0,r)),t[4]=C(e.substr(r,2)),t[5]=C(e.substr(i))}));var Qe,Xe=ke(\"Hours\",!0),et={calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},longDateFormat:{LTS:\"h:mm:ss A\",LT:\"h:mm A\",L:\"MM/DD/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"},invalidDate:\"Invalid date\",ordinal:\"%d\",dayOfMonthOrdinalParse:/\\d{1,2}/,relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},months:Le,monthsShort:Te,week:{dow:0,doy:6},weekdays:ze,weekdaysMin:We,weekdaysShort:Ve,meridiemParse:/[ap]\\.?m?\\.?/i},tt={},nt={};function rt(e){return e?e.toLowerCase().replace(\"_\",\"-\"):e}function it(t){var r=null;if(!tt[t]&&void 0!==e&&e&&e.exports)try{r=Qe._abbr,n(\"RnhZ\")(\"./\"+t),at(r)}catch(i){}return tt[t]}function at(e,t){var n;return e&&((n=s(t)?st(e):ot(e,t))?Qe=n:\"undefined\"!=typeof console&&console.warn&&console.warn(\"Locale \"+e+\" not found. Did you forget to load it?\")),Qe._abbr}function ot(e,t){if(null!==t){var n,r=et;if(t.abbr=e,null!=tt[e])D(\"defineLocaleOverride\",\"use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info.\"),r=tt[e]._config;else if(null!=t.parentLocale)if(null!=tt[t.parentLocale])r=tt[t.parentLocale]._config;else{if(null==(n=it(t.parentLocale)))return nt[t.parentLocale]||(nt[t.parentLocale]=[]),nt[t.parentLocale].push({name:e,config:t}),null;r=n._config}return tt[e]=new E(Y(r,t)),nt[e]&&nt[e].forEach((function(e){ot(e.name,e.config)})),at(e),tt[e]}return delete tt[e],null}function st(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return Qe;if(!a(e)){if(t=it(e))return t;e=[e]}return function(e){for(var t,n,r,i,a=0;a0;){if(r=it(i.slice(0,t).join(\"-\")))return r;if(n&&n.length>=t&&M(i,n,!0)>=t-1)break;t--}a++}return Qe}(e)}function lt(e){var t,n=e._a;return n&&-2===m(e).overflow&&(t=n[1]<0||n[1]>11?1:n[2]<1||n[2]>Me(n[0],n[1])?2:n[3]<0||n[3]>24||24===n[3]&&(0!==n[4]||0!==n[5]||0!==n[6])?3:n[4]<0||n[4]>59?4:n[5]<0||n[5]>59?5:n[6]<0||n[6]>999?6:-1,m(e)._overflowDayOfYear&&(t<0||t>2)&&(t=2),m(e)._overflowWeeks&&-1===t&&(t=7),m(e)._overflowWeekday&&-1===t&&(t=8),m(e).overflow=t),e}function ut(e,t,n){return null!=e?e:null!=t?t:n}function ct(e){var t,n,r,a,o,s=[];if(!e._d){for(r=function(e){var t=new Date(i.now());return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}(e),e._w&&null==e._a[2]&&null==e._a[1]&&function(e){var t,n,r,i,a,o,s,l;if(null!=(t=e._w).GG||null!=t.W||null!=t.E)a=1,o=4,n=ut(t.GG,e._a[0],He(Mt(),1,4).year),r=ut(t.W,1),((i=ut(t.E,1))<1||i>7)&&(l=!0);else{a=e._locale._week.dow,o=e._locale._week.doy;var u=He(Mt(),a,o);n=ut(t.gg,e._a[0],u.year),r=ut(t.w,u.week),null!=t.d?((i=t.d)<0||i>6)&&(l=!0):null!=t.e?(i=t.e+a,(t.e<0||t.e>6)&&(l=!0)):i=a}r<1||r>Fe(n,a,o)?m(e)._overflowWeeks=!0:null!=l?m(e)._overflowWeekday=!0:(s=Re(n,r,i,a,o),e._a[0]=s.year,e._dayOfYear=s.dayOfYear)}(e),null!=e._dayOfYear&&(o=ut(e._a[0],r[0]),(e._dayOfYear>ve(o)||0===e._dayOfYear)&&(m(e)._overflowDayOfYear=!0),n=Pe(o,0,e._dayOfYear),e._a[1]=n.getUTCMonth(),e._a[2]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=s[t]=r[t];for(;t<7;t++)e._a[t]=s[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[3]&&0===e._a[4]&&0===e._a[5]&&0===e._a[6]&&(e._nextDay=!0,e._a[3]=0),e._d=(e._useUTC?Pe:Ae).apply(null,s),a=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[3]=24),e._w&&void 0!==e._w.d&&e._w.d!==a&&(m(e).weekdayMismatch=!0)}}var dt=/^\\s*((?:[+-]\\d{6}|\\d{4})-(?:\\d\\d-\\d\\d|W\\d\\d-\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?::\\d\\d(?::\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,ht=/^\\s*((?:[+-]\\d{6}|\\d{4})(?:\\d\\d\\d\\d|W\\d\\d\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?:\\d\\d(?:\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,ft=/Z|[+-]\\d\\d(?::?\\d\\d)?/,mt=[[\"YYYYYY-MM-DD\",/[+-]\\d{6}-\\d\\d-\\d\\d/],[\"YYYY-MM-DD\",/\\d{4}-\\d\\d-\\d\\d/],[\"GGGG-[W]WW-E\",/\\d{4}-W\\d\\d-\\d/],[\"GGGG-[W]WW\",/\\d{4}-W\\d\\d/,!1],[\"YYYY-DDD\",/\\d{4}-\\d{3}/],[\"YYYY-MM\",/\\d{4}-\\d\\d/,!1],[\"YYYYYYMMDD\",/[+-]\\d{10}/],[\"YYYYMMDD\",/\\d{8}/],[\"GGGG[W]WWE\",/\\d{4}W\\d{3}/],[\"GGGG[W]WW\",/\\d{4}W\\d{2}/,!1],[\"YYYYDDD\",/\\d{7}/]],pt=[[\"HH:mm:ss.SSSS\",/\\d\\d:\\d\\d:\\d\\d\\.\\d+/],[\"HH:mm:ss,SSSS\",/\\d\\d:\\d\\d:\\d\\d,\\d+/],[\"HH:mm:ss\",/\\d\\d:\\d\\d:\\d\\d/],[\"HH:mm\",/\\d\\d:\\d\\d/],[\"HHmmss.SSSS\",/\\d\\d\\d\\d\\d\\d\\.\\d+/],[\"HHmmss,SSSS\",/\\d\\d\\d\\d\\d\\d,\\d+/],[\"HHmmss\",/\\d\\d\\d\\d\\d\\d/],[\"HHmm\",/\\d\\d\\d\\d/],[\"HH\",/\\d\\d/]],_t=/^\\/?Date\\((\\-?\\d+)/i;function vt(e){var t,n,r,i,a,o,s=e._i,l=dt.exec(s)||ht.exec(s);if(l){for(m(e).iso=!0,t=0,n=mt.length;t0&&m(e).unusedInput.push(o),s=s.slice(s.indexOf(n)+n.length),u+=n.length),W[a]?(n?m(e).empty=!1:m(e).unusedTokens.push(a),_e(a,n,e)):e._strict&&!n&&m(e).unusedTokens.push(a);m(e).charsLeftOver=l-u,s.length>0&&m(e).unusedInput.push(s),e._a[3]<=12&&!0===m(e).bigHour&&e._a[3]>0&&(m(e).bigHour=void 0),m(e).parsedDateParts=e._a.slice(0),m(e).meridiem=e._meridiem,e._a[3]=function(e,t,n){var r;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((r=e.isPM(n))&&t<12&&(t+=12),r||12!==t||(t=0),t):t}(e._locale,e._a[3],e._meridiem),ct(e),lt(e)}else bt(e);else vt(e)}function wt(e){var t=e._i,n=e._f;return e._locale=e._locale||st(e._l),null===t||void 0===n&&\"\"===t?_({nullInput:!0}):(\"string\"==typeof t&&(e._i=t=e._locale.preparse(t)),k(t)?new b(lt(t)):(u(t)?e._d=t:a(n)?function(e){var t,n,r,i,a;if(0===e._f.length)return m(e).invalidFormat=!0,void(e._d=new Date(NaN));for(i=0;ithis?this:e:_()}));function Tt(e,t){var n,r;if(1===t.length&&a(t[0])&&(t=t[0]),!t.length)return Mt();for(n=t[0],r=1;r=0?new Date(e+400,t,n)-126227808e5:new Date(e,t,n).valueOf()}function Xt(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-126227808e5:Date.UTC(e,t,n)}function en(e,t){U(0,[e,e.length],0,t)}function tn(e,t,n,r,i){var a;return null==e?He(this,r,i).year:(t>(a=Fe(e,r,i))&&(t=a),nn.call(this,e,t,n,r,i))}function nn(e,t,n,r,i){var a=Re(e,t,n,r,i),o=Pe(a.year,0,a.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}U(0,[\"gg\",2],0,(function(){return this.weekYear()%100})),U(0,[\"GG\",2],0,(function(){return this.isoWeekYear()%100})),en(\"gggg\",\"weekYear\"),en(\"ggggg\",\"weekYear\"),en(\"GGGG\",\"isoWeekYear\"),en(\"GGGGG\",\"isoWeekYear\"),A(\"weekYear\",\"gg\"),A(\"isoWeekYear\",\"GG\"),H(\"weekYear\",1),H(\"isoWeekYear\",1),ce(\"G\",ae),ce(\"g\",ae),ce(\"GG\",Q,$),ce(\"gg\",Q,$),ce(\"GGGG\",ne,K),ce(\"gggg\",ne,K),ce(\"GGGGG\",re,Z),ce(\"ggggg\",re,Z),pe([\"gggg\",\"ggggg\",\"GGGG\",\"GGGGG\"],(function(e,t,n,r){t[r.substr(0,2)]=C(e)})),pe([\"gg\",\"GG\"],(function(e,t,n,r){t[r]=i.parseTwoDigitYear(e)})),U(\"Q\",0,\"Qo\",\"quarter\"),A(\"quarter\",\"Q\"),H(\"quarter\",7),ce(\"Q\",G),me(\"Q\",(function(e,t){t[1]=3*(C(e)-1)})),U(\"D\",[\"DD\",2],\"Do\",\"date\"),A(\"date\",\"D\"),H(\"date\",9),ce(\"D\",Q),ce(\"DD\",Q,$),ce(\"Do\",(function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient})),me([\"D\",\"DD\"],2),me(\"Do\",(function(e,t){t[2]=C(e.match(Q)[0])}));var rn=ke(\"Date\",!0);U(\"DDD\",[\"DDDD\",3],\"DDDo\",\"dayOfYear\"),A(\"dayOfYear\",\"DDD\"),H(\"dayOfYear\",4),ce(\"DDD\",te),ce(\"DDDD\",J),me([\"DDD\",\"DDDD\"],(function(e,t,n){n._dayOfYear=C(e)})),U(\"m\",[\"mm\",2],0,\"minute\"),A(\"minute\",\"m\"),H(\"minute\",14),ce(\"m\",Q),ce(\"mm\",Q,$),me([\"m\",\"mm\"],4);var an=ke(\"Minutes\",!1);U(\"s\",[\"ss\",2],0,\"second\"),A(\"second\",\"s\"),H(\"second\",15),ce(\"s\",Q),ce(\"ss\",Q,$),me([\"s\",\"ss\"],5);var on,sn=ke(\"Seconds\",!1);for(U(\"S\",0,0,(function(){return~~(this.millisecond()/100)})),U(0,[\"SS\",2],0,(function(){return~~(this.millisecond()/10)})),U(0,[\"SSS\",3],0,\"millisecond\"),U(0,[\"SSSS\",4],0,(function(){return 10*this.millisecond()})),U(0,[\"SSSSS\",5],0,(function(){return 100*this.millisecond()})),U(0,[\"SSSSSS\",6],0,(function(){return 1e3*this.millisecond()})),U(0,[\"SSSSSSS\",7],0,(function(){return 1e4*this.millisecond()})),U(0,[\"SSSSSSSS\",8],0,(function(){return 1e5*this.millisecond()})),U(0,[\"SSSSSSSSS\",9],0,(function(){return 1e6*this.millisecond()})),A(\"millisecond\",\"ms\"),H(\"millisecond\",16),ce(\"S\",te,G),ce(\"SS\",te,$),ce(\"SSS\",te,J),on=\"SSSS\";on.length<=9;on+=\"S\")ce(on,ie);function ln(e,t){t[6]=C(1e3*(\"0.\"+e))}for(on=\"S\";on.length<=9;on+=\"S\")me(on,ln);var un=ke(\"Milliseconds\",!1);U(\"z\",0,0,\"zoneAbbr\"),U(\"zz\",0,0,\"zoneName\");var cn=b.prototype;function dn(e){return e}cn.add=Bt,cn.calendar=function(e,t){var n=e||Mt(),r=Pt(n,this).startOf(\"day\"),a=i.calendarFormat(this,r)||\"sameElse\",o=t&&(O(t[a])?t[a].call(this,n):t[a]);return this.format(o||this.localeData().calendar(a,this,Mt(n)))},cn.clone=function(){return new b(this)},cn.diff=function(e,t,n){var r,i,a;if(!this.isValid())return NaN;if(!(r=Pt(e,this)).isValid())return NaN;switch(i=6e4*(r.utcOffset()-this.utcOffset()),t=P(t)){case\"year\":a=Gt(this,r)/12;break;case\"month\":a=Gt(this,r);break;case\"quarter\":a=Gt(this,r)/3;break;case\"second\":a=(this-r)/1e3;break;case\"minute\":a=(this-r)/6e4;break;case\"hour\":a=(this-r)/36e5;break;case\"day\":a=(this-r-i)/864e5;break;case\"week\":a=(this-r-i)/6048e5;break;default:a=this-r}return n?a:w(a)},cn.endOf=function(e){var t;if(void 0===(e=P(e))||\"millisecond\"===e||!this.isValid())return this;var n=this._isUTC?Xt:Qt;switch(e){case\"year\":t=n(this.year()+1,0,1)-1;break;case\"quarter\":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case\"month\":t=n(this.year(),this.month()+1,1)-1;break;case\"week\":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case\"isoWeek\":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case\"day\":case\"date\":t=n(this.year(),this.month(),this.date()+1)-1;break;case\"hour\":t=this._d.valueOf(),t+=36e5-Zt(t+(this._isUTC?0:6e4*this.utcOffset()),36e5)-1;break;case\"minute\":t=this._d.valueOf(),t+=6e4-Zt(t,6e4)-1;break;case\"second\":t=this._d.valueOf(),t+=1e3-Zt(t,1e3)-1}return this._d.setTime(t),i.updateOffset(this,!0),this},cn.format=function(e){e||(e=this.isUtc()?i.defaultFormatUtc:i.defaultFormat);var t=B(this,e);return this.localeData().postformat(t)},cn.from=function(e,t){return this.isValid()&&(k(e)&&e.isValid()||Mt(e).isValid())?Nt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},cn.fromNow=function(e){return this.from(Mt(),e)},cn.to=function(e,t){return this.isValid()&&(k(e)&&e.isValid()||Mt(e).isValid())?Nt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},cn.toNow=function(e){return this.to(Mt(),e)},cn.get=function(e){return O(this[e=P(e)])?this[e]():this},cn.invalidAt=function(){return m(this).overflow},cn.isAfter=function(e,t){var n=k(e)?e:Mt(e);return!(!this.isValid()||!n.isValid())&&(\"millisecond\"===(t=P(t)||\"millisecond\")?this.valueOf()>n.valueOf():n.valueOf()9999?B(n,t?\"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ\"):O(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace(\"Z\",B(n,\"Z\")):B(n,t?\"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYY-MM-DD[T]HH:mm:ss.SSSZ\")},cn.inspect=function(){if(!this.isValid())return\"moment.invalid(/* \"+this._i+\" */)\";var e=\"moment\",t=\"\";this.isLocal()||(e=0===this.utcOffset()?\"moment.utc\":\"moment.parseZone\",t=\"Z\");var n=\"[\"+e+'(\"]',r=0<=this.year()&&this.year()<=9999?\"YYYY\":\"YYYYYY\";return this.format(n+r+\"-MM-DD[T]HH:mm:ss.SSS\"+t+'[\")]')},cn.toJSON=function(){return this.isValid()?this.toISOString():null},cn.toString=function(){return this.clone().locale(\"en\").format(\"ddd MMM DD YYYY HH:mm:ss [GMT]ZZ\")},cn.unix=function(){return Math.floor(this.valueOf()/1e3)},cn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},cn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},cn.year=be,cn.isLeapYear=function(){return ge(this.year())},cn.weekYear=function(e){return tn.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},cn.isoWeekYear=function(e){return tn.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)},cn.quarter=cn.quarters=function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},cn.month=Oe,cn.daysInMonth=function(){return Me(this.year(),this.month())},cn.week=cn.weeks=function(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),\"d\")},cn.isoWeek=cn.isoWeeks=function(e){var t=He(this,1,4).week;return null==e?t:this.add(7*(e-t),\"d\")},cn.weeksInYear=function(){var e=this.localeData()._week;return Fe(this.year(),e.dow,e.doy)},cn.isoWeeksInYear=function(){return Fe(this.year(),1,4)},cn.date=rn,cn.day=cn.days=function(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=function(e,t){return\"string\"!=typeof e?e:isNaN(e)?\"number\"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}(e,this.localeData()),this.add(e-t,\"d\")):t},cn.weekday=function(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,\"d\")},cn.isoWeekday=function(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=function(e,t){return\"string\"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7},cn.dayOfYear=function(e){var t=Math.round((this.clone().startOf(\"day\")-this.clone().startOf(\"year\"))/864e5)+1;return null==e?t:this.add(e-t,\"d\")},cn.hour=cn.hours=Xe,cn.minute=cn.minutes=an,cn.second=cn.seconds=sn,cn.millisecond=cn.milliseconds=un,cn.utcOffset=function(e,t,n){var r,a=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null!=e){if(\"string\"==typeof e){if(null===(e=At(se,e)))return this}else Math.abs(e)<16&&!n&&(e*=60);return!this._isUTC&&t&&(r=jt(this)),this._offset=e,this._isUTC=!0,null!=r&&this.add(r,\"m\"),a!==e&&(!t||this._changeInProgress?Ut(this,Nt(e-a,\"m\"),1,!1):this._changeInProgress||(this._changeInProgress=!0,i.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?a:jt(this)},cn.utc=function(e){return this.utcOffset(0,e)},cn.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(jt(this),\"m\")),this},cn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if(\"string\"==typeof this._i){var e=At(oe,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this},cn.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?Mt(e).utcOffset():0,(this.utcOffset()-e)%60==0)},cn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},cn.isLocal=function(){return!!this.isValid()&&!this._isUTC},cn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},cn.isUtc=Rt,cn.isUTC=Rt,cn.zoneAbbr=function(){return this._isUTC?\"UTC\":\"\"},cn.zoneName=function(){return this._isUTC?\"Coordinated Universal Time\":\"\"},cn.dates=L(\"dates accessor is deprecated. Use date instead.\",rn),cn.months=L(\"months accessor is deprecated. Use month instead\",Oe),cn.years=L(\"years accessor is deprecated. Use year instead\",be),cn.zone=L(\"moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/\",(function(e,t){return null!=e?(\"string\"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()})),cn.isDSTShifted=L(\"isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information\",(function(){if(!s(this._isDSTShifted))return this._isDSTShifted;var e={};if(g(e,this),(e=wt(e))._a){var t=e._isUTC?f(e._a):Mt(e._a);this._isDSTShifted=this.isValid()&&M(e._a,t.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}));var hn=E.prototype;function fn(e,t,n,r){var i=st(),a=f().set(r,t);return i[n](a,e)}function mn(e,t,n){if(l(e)&&(t=e,e=void 0),e=e||\"\",null!=t)return fn(e,t,n,\"month\");var r,i=[];for(r=0;r<12;r++)i[r]=fn(e,r,n,\"month\");return i}function pn(e,t,n,r){\"boolean\"==typeof e?(l(t)&&(n=t,t=void 0),t=t||\"\"):(n=t=e,e=!1,l(t)&&(n=t,t=void 0),t=t||\"\");var i,a=st(),o=e?a._week.dow:0;if(null!=n)return fn(t,(n+o)%7,r,\"day\");var s=[];for(i=0;i<7;i++)s[i]=fn(t,(i+o)%7,r,\"day\");return s}hn.calendar=function(e,t,n){var r=this._calendar[e]||this._calendar.sameElse;return O(r)?r.call(t,n):r},hn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.replace(/MMMM|MM|DD|dddd/g,(function(e){return e.slice(1)})),this._longDateFormat[e])},hn.invalidDate=function(){return this._invalidDate},hn.ordinal=function(e){return this._ordinal.replace(\"%d\",e)},hn.preparse=dn,hn.postformat=dn,hn.relativeTime=function(e,t,n,r){var i=this._relativeTime[n];return O(i)?i(e,t,n,r):i.replace(/%d/i,e)},hn.pastFuture=function(e,t){var n=this._relativeTime[e>0?\"future\":\"past\"];return O(n)?n(t):n.replace(/%s/i,t)},hn.set=function(e){var t,n;for(n in e)O(t=e[n])?this[n]=t:this[\"_\"+n]=t;this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+\"|\"+/\\d{1,2}/.source)},hn.months=function(e,t){return e?a(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||Se).test(t)?\"format\":\"standalone\"][e.month()]:a(this._months)?this._months:this._months.standalone},hn.monthsShort=function(e,t){return e?a(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[Se.test(t)?\"format\":\"standalone\"][e.month()]:a(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},hn.monthsParse=function(e,t,n){var r,i,a;if(this._monthsParseExact)return xe.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),r=0;r<12;r++){if(i=f([2e3,r]),n&&!this._longMonthsParse[r]&&(this._longMonthsParse[r]=new RegExp(\"^\"+this.months(i,\"\").replace(\".\",\"\")+\"$\",\"i\"),this._shortMonthsParse[r]=new RegExp(\"^\"+this.monthsShort(i,\"\").replace(\".\",\"\")+\"$\",\"i\")),n||this._monthsParse[r]||(a=\"^\"+this.months(i,\"\")+\"|^\"+this.monthsShort(i,\"\"),this._monthsParse[r]=new RegExp(a.replace(\".\",\"\"),\"i\")),n&&\"MMMM\"===t&&this._longMonthsParse[r].test(e))return r;if(n&&\"MMM\"===t&&this._shortMonthsParse[r].test(e))return r;if(!n&&this._monthsParse[r].test(e))return r}},hn.monthsRegex=function(e){return this._monthsParseExact?(d(this,\"_monthsRegex\")||Ie.call(this),e?this._monthsStrictRegex:this._monthsRegex):(d(this,\"_monthsRegex\")||(this._monthsRegex=Ee),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},hn.monthsShortRegex=function(e){return this._monthsParseExact?(d(this,\"_monthsRegex\")||Ie.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(d(this,\"_monthsShortRegex\")||(this._monthsShortRegex=Ye),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},hn.week=function(e){return He(e,this._week.dow,this._week.doy).week},hn.firstDayOfYear=function(){return this._week.doy},hn.firstDayOfWeek=function(){return this._week.dow},hn.weekdays=function(e,t){var n=a(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?\"format\":\"standalone\"];return!0===e?Ne(n,this._week.dow):e?n[e.day()]:n},hn.weekdaysMin=function(e){return!0===e?Ne(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin},hn.weekdaysShort=function(e){return!0===e?Ne(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort},hn.weekdaysParse=function(e,t,n){var r,i,a;if(this._weekdaysParseExact)return Ue.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++){if(i=f([2e3,1]).day(r),n&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp(\"^\"+this.weekdays(i,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._shortWeekdaysParse[r]=new RegExp(\"^\"+this.weekdaysShort(i,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._minWeekdaysParse[r]=new RegExp(\"^\"+this.weekdaysMin(i,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\")),this._weekdaysParse[r]||(a=\"^\"+this.weekdays(i,\"\")+\"|^\"+this.weekdaysShort(i,\"\")+\"|^\"+this.weekdaysMin(i,\"\"),this._weekdaysParse[r]=new RegExp(a.replace(\".\",\"\"),\"i\")),n&&\"dddd\"===t&&this._fullWeekdaysParse[r].test(e))return r;if(n&&\"ddd\"===t&&this._shortWeekdaysParse[r].test(e))return r;if(n&&\"dd\"===t&&this._minWeekdaysParse[r].test(e))return r;if(!n&&this._weekdaysParse[r].test(e))return r}},hn.weekdaysRegex=function(e){return this._weekdaysParseExact?(d(this,\"_weekdaysRegex\")||$e.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(d(this,\"_weekdaysRegex\")||(this._weekdaysRegex=Be),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},hn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(d(this,\"_weekdaysRegex\")||$e.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(d(this,\"_weekdaysShortRegex\")||(this._weekdaysShortRegex=qe),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},hn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(d(this,\"_weekdaysRegex\")||$e.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(d(this,\"_weekdaysMinRegex\")||(this._weekdaysMinRegex=Ge),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},hn.isPM=function(e){return\"p\"===(e+\"\").toLowerCase().charAt(0)},hn.meridiem=function(e,t,n){return e>11?n?\"pm\":\"PM\":n?\"am\":\"AM\"},at(\"en\",{dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===C(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}}),i.lang=L(\"moment.lang is deprecated. Use moment.locale instead.\",at),i.langData=L(\"moment.langData is deprecated. Use moment.localeData instead.\",st);var _n=Math.abs;function vn(e,t,n,r){var i=Nt(t,n);return e._milliseconds+=r*i._milliseconds,e._days+=r*i._days,e._months+=r*i._months,e._bubble()}function gn(e){return e<0?Math.floor(e):Math.ceil(e)}function yn(e){return 4800*e/146097}function bn(e){return 146097*e/4800}function kn(e){return function(){return this.as(e)}}var wn=kn(\"ms\"),Cn=kn(\"s\"),Mn=kn(\"m\"),Sn=kn(\"h\"),Ln=kn(\"d\"),Tn=kn(\"w\"),xn=kn(\"M\"),Dn=kn(\"Q\"),On=kn(\"y\");function Yn(e){return function(){return this.isValid()?this._data[e]:NaN}}var En=Yn(\"milliseconds\"),In=Yn(\"seconds\"),An=Yn(\"minutes\"),Pn=Yn(\"hours\"),jn=Yn(\"days\"),Rn=Yn(\"months\"),Hn=Yn(\"years\"),Fn=Math.round,Nn={ss:44,s:45,m:45,h:22,d:26,M:11};function zn(e,t,n,r,i){return i.relativeTime(t||1,!!n,e,r)}var Vn=Math.abs;function Wn(e){return(e>0)-(e<0)||+e}function Un(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n=Vn(this._milliseconds)/1e3,r=Vn(this._days),i=Vn(this._months);e=w(n/60),t=w(e/60),n%=60,e%=60;var a=w(i/12),o=i%=12,s=r,l=t,u=e,c=n?n.toFixed(3).replace(/\\.?0+$/,\"\"):\"\",d=this.asSeconds();if(!d)return\"P0D\";var h=d<0?\"-\":\"\",f=Wn(this._months)!==Wn(d)?\"-\":\"\",m=Wn(this._days)!==Wn(d)?\"-\":\"\",p=Wn(this._milliseconds)!==Wn(d)?\"-\":\"\";return h+\"P\"+(a?f+a+\"Y\":\"\")+(o?f+o+\"M\":\"\")+(s?m+s+\"D\":\"\")+(l||u||c?\"T\":\"\")+(l?p+l+\"H\":\"\")+(u?p+u+\"M\":\"\")+(c?p+c+\"S\":\"\")}var Bn=Dt.prototype;return Bn.isValid=function(){return this._isValid},Bn.abs=function(){var e=this._data;return this._milliseconds=_n(this._milliseconds),this._days=_n(this._days),this._months=_n(this._months),e.milliseconds=_n(e.milliseconds),e.seconds=_n(e.seconds),e.minutes=_n(e.minutes),e.hours=_n(e.hours),e.months=_n(e.months),e.years=_n(e.years),this},Bn.add=function(e,t){return vn(this,e,t,1)},Bn.subtract=function(e,t){return vn(this,e,t,-1)},Bn.as=function(e){if(!this.isValid())return NaN;var t,n,r=this._milliseconds;if(\"month\"===(e=P(e))||\"quarter\"===e||\"year\"===e)switch(n=this._months+yn(t=this._days+r/864e5),e){case\"month\":return n;case\"quarter\":return n/3;case\"year\":return n/12}else switch(t=this._days+Math.round(bn(this._months)),e){case\"week\":return t/7+r/6048e5;case\"day\":return t+r/864e5;case\"hour\":return 24*t+r/36e5;case\"minute\":return 1440*t+r/6e4;case\"second\":return 86400*t+r/1e3;case\"millisecond\":return Math.floor(864e5*t)+r;default:throw new Error(\"Unknown unit \"+e)}},Bn.asMilliseconds=wn,Bn.asSeconds=Cn,Bn.asMinutes=Mn,Bn.asHours=Sn,Bn.asDays=Ln,Bn.asWeeks=Tn,Bn.asMonths=xn,Bn.asQuarters=Dn,Bn.asYears=On,Bn.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*C(this._months/12):NaN},Bn._bubble=function(){var e,t,n,r,i,a=this._milliseconds,o=this._days,s=this._months,l=this._data;return a>=0&&o>=0&&s>=0||a<=0&&o<=0&&s<=0||(a+=864e5*gn(bn(s)+o),o=0,s=0),l.milliseconds=a%1e3,e=w(a/1e3),l.seconds=e%60,t=w(e/60),l.minutes=t%60,n=w(t/60),l.hours=n%24,o+=w(n/24),s+=i=w(yn(o)),o-=gn(bn(i)),r=w(s/12),s%=12,l.days=o,l.months=s,l.years=r,this},Bn.clone=function(){return Nt(this)},Bn.get=function(e){return e=P(e),this.isValid()?this[e+\"s\"]():NaN},Bn.milliseconds=En,Bn.seconds=In,Bn.minutes=An,Bn.hours=Pn,Bn.days=jn,Bn.weeks=function(){return w(this.days()/7)},Bn.months=Rn,Bn.years=Hn,Bn.humanize=function(e){if(!this.isValid())return this.localeData().invalidDate();var t=this.localeData(),n=function(e,t,n){var r=Nt(e).abs(),i=Fn(r.as(\"s\")),a=Fn(r.as(\"m\")),o=Fn(r.as(\"h\")),s=Fn(r.as(\"d\")),l=Fn(r.as(\"M\")),u=Fn(r.as(\"y\")),c=i<=Nn.ss&&[\"s\",i]||i0,c[4]=n,zn.apply(null,c)}(this,!e,t);return e&&(n=t.pastFuture(+this,n)),t.postformat(n)},Bn.toISOString=Un,Bn.toString=Un,Bn.toJSON=Un,Bn.locale=$t,Bn.localeData=Kt,Bn.toIsoString=L(\"toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)\",Un),Bn.lang=Jt,U(\"X\",0,0,\"unix\"),U(\"x\",0,0,\"valueOf\"),ce(\"x\",ae),ce(\"X\",/[+-]?\\d+(\\.\\d{1,3})?/),me(\"X\",(function(e,t,n){n._d=new Date(1e3*parseFloat(e,10))})),me(\"x\",(function(e,t,n){n._d=new Date(C(e))})),i.version=\"2.24.0\",t=Mt,i.fn=cn,i.min=function(){var e=[].slice.call(arguments,0);return Tt(\"isBefore\",e)},i.max=function(){var e=[].slice.call(arguments,0);return Tt(\"isAfter\",e)},i.now=function(){return Date.now?Date.now():+new Date},i.utc=f,i.unix=function(e){return Mt(1e3*e)},i.months=function(e,t){return mn(e,t,\"months\")},i.isDate=u,i.locale=at,i.invalid=_,i.duration=Nt,i.isMoment=k,i.weekdays=function(e,t,n){return pn(e,t,n,\"weekdays\")},i.parseZone=function(){return Mt.apply(null,arguments).parseZone()},i.localeData=st,i.isDuration=Ot,i.monthsShort=function(e,t){return mn(e,t,\"monthsShort\")},i.weekdaysMin=function(e,t,n){return pn(e,t,n,\"weekdaysMin\")},i.defineLocale=ot,i.updateLocale=function(e,t){if(null!=t){var n,r,i=et;null!=(r=it(e))&&(i=r._config),(n=new E(t=Y(i,t))).parentLocale=tt[e],tt[e]=n,at(e)}else null!=tt[e]&&(null!=tt[e].parentLocale?tt[e]=tt[e].parentLocale:null!=tt[e]&&delete tt[e]);return tt[e]},i.locales=function(){return T(tt)},i.weekdaysShort=function(e,t,n){return pn(e,t,n,\"weekdaysShort\")},i.normalizeUnits=P,i.relativeTimeRounding=function(e){return void 0===e?Fn:\"function\"==typeof e&&(Fn=e,!0)},i.relativeTimeThreshold=function(e,t){return void 0!==Nn[e]&&(void 0===t?Nn[e]:(Nn[e]=t,\"s\"===e&&(Nn.ss=t-1),!0))},i.calendarFormat=function(e,t){var n=e.diff(t,\"days\",!0);return n<-6?\"sameElse\":n<-1?\"lastWeek\":n<0?\"lastDay\":n<1?\"sameDay\":n<2?\"nextDay\":n<7?\"nextWeek\":\"sameElse\"},i.prototype=cn,i.HTML5_FMT={DATETIME_LOCAL:\"YYYY-MM-DDTHH:mm\",DATETIME_LOCAL_SECONDS:\"YYYY-MM-DDTHH:mm:ss\",DATETIME_LOCAL_MS:\"YYYY-MM-DDTHH:mm:ss.SSS\",DATE:\"YYYY-MM-DD\",TIME:\"HH:mm\",TIME_SECONDS:\"HH:mm:ss\",TIME_MS:\"HH:mm:ss.SSS\",WEEK:\"GGGG-[W]WW\",MONTH:\"YYYY-MM\"},i}()}).call(this,n(\"YuTi\")(e))},x6pH:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"he\",{months:\"\\u05d9\\u05e0\\u05d5\\u05d0\\u05e8_\\u05e4\\u05d1\\u05e8\\u05d5\\u05d0\\u05e8_\\u05de\\u05e8\\u05e5_\\u05d0\\u05e4\\u05e8\\u05d9\\u05dc_\\u05de\\u05d0\\u05d9_\\u05d9\\u05d5\\u05e0\\u05d9_\\u05d9\\u05d5\\u05dc\\u05d9_\\u05d0\\u05d5\\u05d2\\u05d5\\u05e1\\u05d8_\\u05e1\\u05e4\\u05d8\\u05de\\u05d1\\u05e8_\\u05d0\\u05d5\\u05e7\\u05d8\\u05d5\\u05d1\\u05e8_\\u05e0\\u05d5\\u05d1\\u05de\\u05d1\\u05e8_\\u05d3\\u05e6\\u05de\\u05d1\\u05e8\".split(\"_\"),monthsShort:\"\\u05d9\\u05e0\\u05d5\\u05f3_\\u05e4\\u05d1\\u05e8\\u05f3_\\u05de\\u05e8\\u05e5_\\u05d0\\u05e4\\u05e8\\u05f3_\\u05de\\u05d0\\u05d9_\\u05d9\\u05d5\\u05e0\\u05d9_\\u05d9\\u05d5\\u05dc\\u05d9_\\u05d0\\u05d5\\u05d2\\u05f3_\\u05e1\\u05e4\\u05d8\\u05f3_\\u05d0\\u05d5\\u05e7\\u05f3_\\u05e0\\u05d5\\u05d1\\u05f3_\\u05d3\\u05e6\\u05de\\u05f3\".split(\"_\"),weekdays:\"\\u05e8\\u05d0\\u05e9\\u05d5\\u05df_\\u05e9\\u05e0\\u05d9_\\u05e9\\u05dc\\u05d9\\u05e9\\u05d9_\\u05e8\\u05d1\\u05d9\\u05e2\\u05d9_\\u05d7\\u05de\\u05d9\\u05e9\\u05d9_\\u05e9\\u05d9\\u05e9\\u05d9_\\u05e9\\u05d1\\u05ea\".split(\"_\"),weekdaysShort:\"\\u05d0\\u05f3_\\u05d1\\u05f3_\\u05d2\\u05f3_\\u05d3\\u05f3_\\u05d4\\u05f3_\\u05d5\\u05f3_\\u05e9\\u05f3\".split(\"_\"),weekdaysMin:\"\\u05d0_\\u05d1_\\u05d2_\\u05d3_\\u05d4_\\u05d5_\\u05e9\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [\\u05d1]MMMM YYYY\",LLL:\"D [\\u05d1]MMMM YYYY HH:mm\",LLLL:\"dddd, D [\\u05d1]MMMM YYYY HH:mm\",l:\"D/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u05d4\\u05d9\\u05d5\\u05dd \\u05d1\\u05be]LT\",nextDay:\"[\\u05de\\u05d7\\u05e8 \\u05d1\\u05be]LT\",nextWeek:\"dddd [\\u05d1\\u05e9\\u05e2\\u05d4] LT\",lastDay:\"[\\u05d0\\u05ea\\u05de\\u05d5\\u05dc \\u05d1\\u05be]LT\",lastWeek:\"[\\u05d1\\u05d9\\u05d5\\u05dd] dddd [\\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05df \\u05d1\\u05e9\\u05e2\\u05d4] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u05d1\\u05e2\\u05d5\\u05d3 %s\",past:\"\\u05dc\\u05e4\\u05e0\\u05d9 %s\",s:\"\\u05de\\u05e1\\u05e4\\u05e8 \\u05e9\\u05e0\\u05d9\\u05d5\\u05ea\",ss:\"%d \\u05e9\\u05e0\\u05d9\\u05d5\\u05ea\",m:\"\\u05d3\\u05e7\\u05d4\",mm:\"%d \\u05d3\\u05e7\\u05d5\\u05ea\",h:\"\\u05e9\\u05e2\\u05d4\",hh:function(e){return 2===e?\"\\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd\":e+\" \\u05e9\\u05e2\\u05d5\\u05ea\"},d:\"\\u05d9\\u05d5\\u05dd\",dd:function(e){return 2===e?\"\\u05d9\\u05d5\\u05de\\u05d9\\u05d9\\u05dd\":e+\" \\u05d9\\u05de\\u05d9\\u05dd\"},M:\"\\u05d7\\u05d5\\u05d3\\u05e9\",MM:function(e){return 2===e?\"\\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05d9\\u05dd\":e+\" \\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05dd\"},y:\"\\u05e9\\u05e0\\u05d4\",yy:function(e){return 2===e?\"\\u05e9\\u05e0\\u05ea\\u05d9\\u05d9\\u05dd\":e%10==0&&10!==e?e+\" \\u05e9\\u05e0\\u05d4\":e+\" \\u05e9\\u05e0\\u05d9\\u05dd\"}},meridiemParse:/\\u05d0\\u05d7\\u05d4\"\\u05e6|\\u05dc\\u05e4\\u05e0\\u05d4\"\\u05e6|\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05dc\\u05e4\\u05e0\\u05d5\\u05ea \\u05d1\\u05d5\\u05e7\\u05e8|\\u05d1\\u05d1\\u05d5\\u05e7\\u05e8|\\u05d1\\u05e2\\u05e8\\u05d1/i,isPM:function(e){return/^(\\u05d0\\u05d7\\u05d4\"\\u05e6|\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05d1\\u05e2\\u05e8\\u05d1)$/.test(e)},meridiem:function(e,t,n){return e<5?\"\\u05dc\\u05e4\\u05e0\\u05d5\\u05ea \\u05d1\\u05d5\\u05e7\\u05e8\":e<10?\"\\u05d1\\u05d1\\u05d5\\u05e7\\u05e8\":e<12?n?'\\u05dc\\u05e4\\u05e0\\u05d4\"\\u05e6':\"\\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd\":e<18?n?'\\u05d0\\u05d7\\u05d4\"\\u05e6':\"\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd\":\"\\u05d1\\u05e2\\u05e8\\u05d1\"}})}(n(\"wd/R\"))},yPMs:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sq\",{months:\"Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_N\\xebntor_Dhjetor\".split(\"_\"),monthsShort:\"Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_N\\xebn_Dhj\".split(\"_\"),weekdays:\"E Diel_E H\\xebn\\xeb_E Mart\\xeb_E M\\xebrkur\\xeb_E Enjte_E Premte_E Shtun\\xeb\".split(\"_\"),weekdaysShort:\"Die_H\\xebn_Mar_M\\xebr_Enj_Pre_Sht\".split(\"_\"),weekdaysMin:\"D_H_Ma_M\\xeb_E_P_Sh\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/PD|MD/,isPM:function(e){return\"M\"===e.charAt(0)},meridiem:function(e,t,n){return e<12?\"PD\":\"MD\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Sot n\\xeb] LT\",nextDay:\"[Nes\\xebr n\\xeb] LT\",nextWeek:\"dddd [n\\xeb] LT\",lastDay:\"[Dje n\\xeb] LT\",lastWeek:\"dddd [e kaluar n\\xeb] LT\",sameElse:\"L\"},relativeTime:{future:\"n\\xeb %s\",past:\"%s m\\xeb par\\xeb\",s:\"disa sekonda\",ss:\"%d sekonda\",m:\"nj\\xeb minut\\xeb\",mm:\"%d minuta\",h:\"nj\\xeb or\\xeb\",hh:\"%d or\\xeb\",d:\"nj\\xeb dit\\xeb\",dd:\"%d dit\\xeb\",M:\"nj\\xeb muaj\",MM:\"%d muaj\",y:\"nj\\xeb vit\",yy:\"%d vite\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},z1FC:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={s:[\"viensas secunds\",\"'iensas secunds\"],ss:[e+\" secunds\",e+\" secunds\"],m:[\"'n m\\xedut\",\"'iens m\\xedut\"],mm:[e+\" m\\xeduts\",e+\" m\\xeduts\"],h:[\"'n \\xfeora\",\"'iensa \\xfeora\"],hh:[e+\" \\xfeoras\",e+\" \\xfeoras\"],d:[\"'n ziua\",\"'iensa ziua\"],dd:[e+\" ziuas\",e+\" ziuas\"],M:[\"'n mes\",\"'iens mes\"],MM:[e+\" mesen\",e+\" mesen\"],y:[\"'n ar\",\"'iens ar\"],yy:[e+\" ars\",e+\" ars\"]};return r||t?i[n][0]:i[n][1]}e.defineLocale(\"tzl\",{months:\"Januar_Fevraglh_Mar\\xe7_Avr\\xefu_Mai_G\\xfcn_Julia_Guscht_Setemvar_Listop\\xe4ts_Noemvar_Zecemvar\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Avr_Mai_G\\xfcn_Jul_Gus_Set_Lis_Noe_Zec\".split(\"_\"),weekdays:\"S\\xfaladi_L\\xfane\\xe7i_Maitzi_M\\xe1rcuri_Xh\\xfaadi_Vi\\xe9ner\\xe7i_S\\xe1turi\".split(\"_\"),weekdaysShort:\"S\\xfal_L\\xfan_Mai_M\\xe1r_Xh\\xfa_Vi\\xe9_S\\xe1t\".split(\"_\"),weekdaysMin:\"S\\xfa_L\\xfa_Ma_M\\xe1_Xh_Vi_S\\xe1\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM [dallas] YYYY\",LLL:\"D. MMMM [dallas] YYYY HH.mm\",LLLL:\"dddd, [li] D. MMMM [dallas] YYYY HH.mm\"},meridiemParse:/d\\'o|d\\'a/i,isPM:function(e){return\"d'o\"===e.toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"d'o\":\"D'O\":n?\"d'a\":\"D'A\"},calendar:{sameDay:\"[oxhi \\xe0] LT\",nextDay:\"[dem\\xe0 \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[ieiri \\xe0] LT\",lastWeek:\"[s\\xfcr el] dddd [lasteu \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"osprei %s\",past:\"ja%s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},z3Vd:function(e,t,n){!function(e){\"use strict\";var t=\"pagh_wa\\u2019_cha\\u2019_wej_loS_vagh_jav_Soch_chorgh_Hut\".split(\"_\");function n(e,n,r,i){var a=function(e){var n=Math.floor(e%1e3/100),r=Math.floor(e%100/10),i=e%10,a=\"\";return n>0&&(a+=t[n]+\"vatlh\"),r>0&&(a+=(\"\"!==a?\" \":\"\")+t[r]+\"maH\"),i>0&&(a+=(\"\"!==a?\" \":\"\")+t[i]),\"\"===a?\"pagh\":a}(e);switch(r){case\"ss\":return a+\" lup\";case\"mm\":return a+\" tup\";case\"hh\":return a+\" rep\";case\"dd\":return a+\" jaj\";case\"MM\":return a+\" jar\";case\"yy\":return a+\" DIS\"}}e.defineLocale(\"tlh\",{months:\"tera\\u2019 jar wa\\u2019_tera\\u2019 jar cha\\u2019_tera\\u2019 jar wej_tera\\u2019 jar loS_tera\\u2019 jar vagh_tera\\u2019 jar jav_tera\\u2019 jar Soch_tera\\u2019 jar chorgh_tera\\u2019 jar Hut_tera\\u2019 jar wa\\u2019maH_tera\\u2019 jar wa\\u2019maH wa\\u2019_tera\\u2019 jar wa\\u2019maH cha\\u2019\".split(\"_\"),monthsShort:\"jar wa\\u2019_jar cha\\u2019_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa\\u2019maH_jar wa\\u2019maH wa\\u2019_jar wa\\u2019maH cha\\u2019\".split(\"_\"),monthsParseExact:!0,weekdays:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysShort:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysMin:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[DaHjaj] LT\",nextDay:\"[wa\\u2019leS] LT\",nextWeek:\"LLL\",lastDay:\"[wa\\u2019Hu\\u2019] LT\",lastWeek:\"LLL\",sameElse:\"L\"},relativeTime:{future:function(e){var t=e;return-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"leS\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"waQ\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"nem\":t+\" pIq\"},past:function(e){var t=e;return-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"Hu\\u2019\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"wen\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"ben\":t+\" ret\"},s:\"puS lup\",ss:n,m:\"wa\\u2019 tup\",mm:n,h:\"wa\\u2019 rep\",hh:n,d:\"wa\\u2019 jaj\",dd:n,M:\"wa\\u2019 jar\",MM:n,y:\"wa\\u2019 DIS\",yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},zUnb:function(e,t,n){\"use strict\";function r(e){return\"function\"==typeof e}n.r(t);var i=!1,a={Promise:void 0,set useDeprecatedSynchronousErrorHandling(e){if(e){var t=new Error;console.warn(\"DEPRECATED! RxJS was set to use deprecated synchronous error handling behavior by code at: \\n\"+t.stack)}else i&&console.log(\"RxJS: Back to a better error behavior. Thank you. <3\");i=e},get useDeprecatedSynchronousErrorHandling(){return i}};function o(e){setTimeout((function(){throw e}),0)}var s={closed:!0,next:function(e){},error:function(e){if(a.useDeprecatedSynchronousErrorHandling)throw e;o(e)},complete:function(){}},l=Array.isArray||function(e){return e&&\"number\"==typeof e.length};function u(e){return null!==e&&\"object\"==typeof e}var c,d=function(){function e(e){return Error.call(this),this.message=e?\"\".concat(e.length,\" errors occurred during unsubscription:\\n\").concat(e.map((function(e,t){return\"\".concat(t+1,\") \").concat(e.toString())})).join(\"\\n \")):\"\",this.name=\"UnsubscriptionError\",this.errors=e,this}return e.prototype=Object.create(Error.prototype),e}(),h=((c=function(){function e(t){_classCallCheck(this,e),this.closed=!1,this._parentOrParents=null,this._subscriptions=null,t&&(this._unsubscribe=t)}return _createClass(e,[{key:\"unsubscribe\",value:function(){var t;if(!this.closed){var n=this._parentOrParents,i=this._unsubscribe,a=this._subscriptions;if(this.closed=!0,this._parentOrParents=null,this._subscriptions=null,n instanceof e)n.remove(this);else if(null!==n)for(var o=0;o4&&void 0!==arguments[4]?arguments[4]:new Y(e,n,r);if(!i.closed)return t instanceof w?t.subscribe(i):j(t)(i)}var H=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"notifyNext\",value:function(e,t,n,r,i){this.destination.next(t)}},{key:\"notifyError\",value:function(e,t){this.destination.error(e)}},{key:\"notifyComplete\",value:function(e){this.destination.complete()}}]),n}(p);function F(e,t){return function(n){if(\"function\"!=typeof e)throw new TypeError(\"argument is not a function. Are you looking for `mapTo()`?\");return n.lift(new N(e,t))}}var N=function(){function e(t,n){_classCallCheck(this,e),this.project=t,this.thisArg=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new z(e,this.project,this.thisArg))}}]),e}(),z=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).project=r,a.count=0,a.thisArg=i||_assertThisInitialized(a),a}return _createClass(n,[{key:\"_next\",value:function(e){var t;try{t=this.project.call(this.thisArg,e,this.count++)}catch(n){return void this.destination.error(n)}this.destination.next(t)}}]),n}(p);function V(e,t){return new w((function(n){var r=new h,i=0;return r.add(t.schedule((function(){i!==e.length?(n.next(e[i++]),n.closed||r.add(this.schedule())):n.complete()}))),r}))}function W(e,t){return t?function(e,t){if(null!=e){if(function(e){return e&&\"function\"==typeof e[v]}(e))return function(e,t){return new w((function(n){var r=new h;return r.add(t.schedule((function(){var i=e[v]();r.add(i.subscribe({next:function(e){r.add(t.schedule((function(){return n.next(e)})))},error:function(e){r.add(t.schedule((function(){return n.error(e)})))},complete:function(){r.add(t.schedule((function(){return n.complete()})))}}))}))),r}))}(e,t);if(P(e))return function(e,t){return new w((function(n){var r=new h;return r.add(t.schedule((function(){return e.then((function(e){r.add(t.schedule((function(){n.next(e),r.add(t.schedule((function(){return n.complete()})))})))}),(function(e){r.add(t.schedule((function(){return n.error(e)})))}))}))),r}))}(e,t);if(A(e))return V(e,t);if(function(e){return e&&\"function\"==typeof e[I]}(e)||\"string\"==typeof e)return function(e,t){if(!e)throw new Error(\"Iterable cannot be null\");return new w((function(n){var r,i=new h;return i.add((function(){r&&\"function\"==typeof r.return&&r.return()})),i.add(t.schedule((function(){r=e[I](),i.add(t.schedule((function(){if(!n.closed){var e,t;try{var i=r.next();e=i.value,t=i.done}catch(a){return void n.error(a)}t?n.complete():(n.next(e),this.schedule())}})))}))),i}))}(e,t)}throw new TypeError((null!==e&&typeof e||e)+\" is not observable\")}(e,t):e instanceof w?e:new w(j(e))}function U(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Number.POSITIVE_INFINITY;return\"function\"==typeof t?function(r){return r.pipe(U((function(n,r){return W(e(n,r)).pipe(F((function(e,i){return t(n,e,r,i)})))}),n))}:(\"number\"==typeof t&&(n=t),function(t){return t.lift(new B(e,n))})}var B=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.POSITIVE_INFINITY;_classCallCheck(this,e),this.project=t,this.concurrent=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new q(e,this.project,this.concurrent))}}]),e}(),q=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Number.POSITIVE_INFINITY;return _classCallCheck(this,n),(i=t.call(this,e)).project=r,i.concurrent=a,i.hasCompleted=!1,i.buffer=[],i.active=0,i.index=0,i}return _createClass(n,[{key:\"_next\",value:function(e){this.active0?this._next(t.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()}}]),n}(H);function G(e){return e}function $(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Number.POSITIVE_INFINITY;return U(G,e)}function J(e,t){return t?V(e,t):new w(E(e))}function K(){for(var e=arguments.length,t=new Array(e),n=0;n1&&\"number\"==typeof t[t.length-1]&&(r=t.pop())):\"number\"==typeof a&&(r=t.pop()),null===i&&1===t.length&&t[0]instanceof w?t[0]:$(r)(J(t,i))}function Z(){return function(e){return e.lift(new X(e))}}var Q,X=function(){function e(t){_classCallCheck(this,e),this.connectable=t}return _createClass(e,[{key:\"call\",value:function(e,t){var n=this.connectable;n._refCount++;var r=new ee(e,n),i=t.subscribe(r);return r.closed||(r.connection=n.connect()),i}}]),e}(),ee=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).connectable=r,i}return _createClass(n,[{key:\"_unsubscribe\",value:function(){var e=this.connectable;if(e){this.connectable=null;var t=e._refCount;if(t<=0)this.connection=null;else if(e._refCount=t-1,t>1)this.connection=null;else{var n=this.connection,r=e._connection;this.connection=null,!r||n&&r!==n||r.unsubscribe()}}else this.connection=null}}]),n}(p),te={operator:{value:null},_refCount:{value:0,writable:!0},_subject:{value:null,writable:!0},_connection:{value:null,writable:!0},_subscribe:{value:(Q=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this)).source=e,i.subjectFactory=r,i._refCount=0,i._isComplete=!1,i}return _createClass(n,[{key:\"_subscribe\",value:function(e){return this.getSubject().subscribe(e)}},{key:\"getSubject\",value:function(){var e=this._subject;return e&&!e.isStopped||(this._subject=this.subjectFactory()),this._subject}},{key:\"connect\",value:function(){var e=this._connection;return e||(this._isComplete=!1,(e=this._connection=new h).add(this.source.subscribe(new ne(this.getSubject(),this))),e.closed&&(this._connection=null,e=h.EMPTY)),e}},{key:\"refCount\",value:function(){return Z()(this)}}]),n}(w).prototype)._subscribe},_isComplete:{value:Q._isComplete,writable:!0},getSubject:{value:Q.getSubject},connect:{value:Q.connect},refCount:{value:Q.refCount}},ne=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).connectable=r,i}return _createClass(n,[{key:\"_error\",value:function(e){this._unsubscribe(),_get(_getPrototypeOf(n.prototype),\"_error\",this).call(this,e)}},{key:\"_complete\",value:function(){this.connectable._isComplete=!0,this._unsubscribe(),_get(_getPrototypeOf(n.prototype),\"_complete\",this).call(this)}},{key:\"_unsubscribe\",value:function(){var e=this.connectable;if(e){this.connectable=null;var t=e._connection;e._refCount=0,e._subject=null,e._connection=null,t&&t.unsubscribe()}}}]),n}(T);function re(e,t){return function(n){var r;if(r=\"function\"==typeof e?e:function(){return e},\"function\"==typeof t)return n.lift(new ie(r,t));var i=Object.create(n,te);return i.source=n,i.subjectFactory=r,i}}var ie=function(){function e(t,n){_classCallCheck(this,e),this.subjectFactory=t,this.selector=n}return _createClass(e,[{key:\"call\",value:function(e,t){var n=this.selector,r=this.subjectFactory(),i=n(r).subscribe(e);return i.add(t.subscribe(r)),i}}]),e}();function ae(){return new x}function oe(){return function(e){return Z()(re(ae)(e))}}function se(e){return{toString:e}.toString()}function le(e,t,n){return se((function(){var r=function(e){return function(){if(e){var t=e.apply(void 0,arguments);for(var n in t)this[n]=t[n]}}}(t);function i(){for(var e=arguments.length,t=new Array(e),n=0;n1&&void 0!==arguments[1]?arguments[1]:fe.Default;if(void 0===Ke)throw new Error(\"inject() must be called from an injection context\");return null===Ke?nt(e,void 0,t):Ke.get(e,t&fe.Optional?null:void 0,t)}function et(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:fe.Default;return(Ee||Xe)(Oe(e),t)}var tt=et;function nt(e,t,n){var r=ge(e);if(r&&\"root\"==r.providedIn)return void 0===r.value?r.value=r.factory():r.value;if(n&fe.Optional)return null;if(void 0!==t)return t;throw new Error(\"Injector: NOT_FOUND [\".concat(Le(e),\"]\"))}function rt(e){for(var t=[],n=0;n1&&void 0!==arguments[1]?arguments[1]:Ge;if(t===Ge){var n=new Error(\"NullInjectorError: No provider for \".concat(Le(e),\"!\"));throw n.name=\"NullInjectorError\",n}return t}}]),e}(),at=function e(){_classCallCheck(this,e)},ot=function e(){_classCallCheck(this,e)};function st(e,t){for(var n=0;n=e.length?e.push(n):e.splice(t,0,n)}function ct(e,t){return t>=e.length-1?e.pop():e.splice(t,1)[0]}function dt(e,t){for(var n=[],r=0;r=0?e[1|r]=n:function(e,t,n,r){var i=e.length;if(i==t)e.push(n,r);else if(1===i)e.push(r,e[0]),e[0]=n;else{for(i--,e.push(e[i-1],e[i]);i>t;)e[i]=e[i-2],i--;e[t]=n,e[t+1]=r}}(e,r=~r,t,n),r}function ft(e,t){var n=mt(e,t);if(n>=0)return e[1|n]}function mt(e,t){return function(e,t,n){for(var r=0,i=e.length>>1;i!==r;){var a=r+(i-r>>1),o=e[a<<1];if(t===o)return a<<1;o>t?i=a:r=a+1}return~(i<<1)}(e,t)}var pt=function(){var e={OnPush:0,Default:1};return e[e.OnPush]=\"OnPush\",e[e.Default]=\"Default\",e}(),_t=function(){var e={Emulated:0,Native:1,None:2,ShadowDom:3};return e[e.Emulated]=\"Emulated\",e[e.Native]=\"Native\",e[e.None]=\"None\",e[e.ShadowDom]=\"ShadowDom\",e}(),vt={},gt=[],yt=0;function bt(e){return se((function(){var t=e.type,n=t.prototype,r={},i={type:t,providersResolver:null,decls:e.decls,vars:e.vars,factory:null,template:e.template||null,consts:e.consts||null,ngContentSelectors:e.ngContentSelectors,hostBindings:e.hostBindings||null,hostVars:e.hostVars||0,hostAttrs:e.hostAttrs||null,contentQueries:e.contentQueries||null,declaredInputs:r,inputs:null,outputs:null,exportAs:e.exportAs||null,onChanges:null,onInit:n.ngOnInit||null,doCheck:n.ngDoCheck||null,afterContentInit:n.ngAfterContentInit||null,afterContentChecked:n.ngAfterContentChecked||null,afterViewInit:n.ngAfterViewInit||null,afterViewChecked:n.ngAfterViewChecked||null,onDestroy:n.ngOnDestroy||null,onPush:e.changeDetection===pt.OnPush,directiveDefs:null,pipeDefs:null,selectors:e.selectors||gt,viewQuery:e.viewQuery||null,features:e.features||null,data:e.data||{},encapsulation:e.encapsulation||_t.Emulated,id:\"c\",styles:e.styles||gt,_:null,setInput:null,schemas:e.schemas||null,tView:null},a=e.directives,o=e.features,s=e.pipes;return i.id+=yt++,i.inputs=St(e.inputs,r),i.outputs=St(e.outputs),o&&o.forEach((function(e){return e(i)})),i.directiveDefs=a?function(){return(\"function\"==typeof a?a():a).map(kt)}:null,i.pipeDefs=s?function(){return(\"function\"==typeof s?s():s).map(wt)}:null,i}))}function kt(e){return Tt(e)||function(e){return e[Fe]||null}(e)}function wt(e){return function(e){return e[Ne]||null}(e)}var Ct={};function Mt(e){var t={type:e.type,bootstrap:e.bootstrap||gt,declarations:e.declarations||gt,imports:e.imports||gt,exports:e.exports||gt,transitiveCompileScopes:null,schemas:e.schemas||null,id:e.id||null};return null!=e.id&&se((function(){Ct[e.id]=e.type})),t}function St(e,t){if(null==e)return vt;var n={};for(var r in e)if(e.hasOwnProperty(r)){var i=e[r],a=i;Array.isArray(i)&&(a=i[1],i=i[0]),n[i]=r,t&&(t[i]=a)}return n}var Lt=bt;function Tt(e){return e[He]||null}function xt(e,t){return e.hasOwnProperty(We)?e[We]:null}function Dt(e,t){var n=e[ze]||null;if(!n&&!0===t)throw new Error(\"Type \".concat(Le(e),\" does not have '\\u0275mod' property.\"));return n}function Ot(e){return Array.isArray(e)&&\"object\"==typeof e[1]}function Yt(e){return Array.isArray(e)&&!0===e[1]}function Et(e){return 0!=(8&e.flags)}function It(e){return 2==(2&e.flags)}function At(e){return 1==(1&e.flags)}function Pt(e){return null!==e.template}function jt(e){return 0!=(512&e[2])}var Rt=void 0;function Ht(){return void 0!==Rt?Rt:\"undefined\"!=typeof document?document:void 0}function Ft(e){return!!e.listen}var Nt={createRenderer:function(e,t){return Ht()}};function zt(e){for(;Array.isArray(e);)e=e[0];return e}function Vt(e,t){return zt(t[e+19])}function Wt(e,t){return zt(t[e.index])}function Ut(e,t){return e.data[t+19]}function Bt(e,t){return e[t+19]}function qt(e,t){var n=t[e];return Ot(n)?n:n[0]}function Gt(e){var t=function(e){return e.__ngContext__||null}(e);return t?Array.isArray(t)?t:t.lView:null}function $t(e){return 4==(4&e[2])}function Jt(e){return 128==(128&e[2])}function Kt(e,t){return null===e||null==t?null:e[t]}function Zt(e){e[18]=0}var Qt={lFrame:gn(null),bindingsEnabled:!0,checkNoChangesMode:!1};function Xt(){return Qt.bindingsEnabled}function en(){return Qt.lFrame.lView}function tn(){return Qt.lFrame.tView}function nn(e){Qt.lFrame.contextLView=e}function rn(){return Qt.lFrame.previousOrParentTNode}function an(e,t){Qt.lFrame.previousOrParentTNode=e,Qt.lFrame.isParent=t}function on(){return Qt.lFrame.isParent}function sn(){Qt.lFrame.isParent=!1}function ln(){return Qt.checkNoChangesMode}function un(e){Qt.checkNoChangesMode=e}function cn(){return Qt.lFrame.bindingIndex++}function dn(e){var t=Qt.lFrame,n=t.bindingIndex;return t.bindingIndex=t.bindingIndex+e,n}function hn(e,t){var n=Qt.lFrame;n.bindingIndex=n.bindingRootIndex=e,n.currentDirectiveIndex=t}function fn(){return Qt.lFrame.currentQueryIndex}function mn(e){Qt.lFrame.currentQueryIndex=e}function pn(e,t){var n=vn();Qt.lFrame=n,n.previousOrParentTNode=t,n.lView=e}function _n(e,t){var n=vn(),r=e[1];Qt.lFrame=n,n.previousOrParentTNode=t,n.lView=e,n.tView=r,n.contextLView=e,n.bindingIndex=r.bindingStartIndex}function vn(){var e=Qt.lFrame,t=null===e?null:e.child;return null===t?gn(e):t}function gn(e){var t={previousOrParentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:0,contextLView:null,elementDepthCount:0,currentNamespace:null,currentSanitizer:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:e,child:null};return null!==e&&(e.child=t),t}function yn(){var e=Qt.lFrame;return Qt.lFrame=e.parent,e.previousOrParentTNode=null,e.lView=null,e}var bn=yn;function kn(){var e=yn();e.isParent=!0,e.tView=null,e.selectedIndex=0,e.contextLView=null,e.elementDepthCount=0,e.currentDirectiveIndex=-1,e.currentNamespace=null,e.currentSanitizer=null,e.bindingRootIndex=-1,e.bindingIndex=-1,e.currentQueryIndex=0}function wn(){return Qt.lFrame.selectedIndex}function Cn(e){Qt.lFrame.selectedIndex=e}function Mn(){var e=Qt.lFrame;return Ut(e.tView,e.selectedIndex)}function Sn(){Qt.lFrame.currentNamespace=\"http://www.w3.org/2000/svg\"}function Ln(){Qt.lFrame.currentNamespace=null}function Tn(e,t){for(var n=t.directiveStart,r=t.directiveEnd;n=r)break}else t[o]<0&&(e[18]+=65536),(a>10>16&&(3&e[2])===t&&(e[2]+=1024,a.call(o)):a.call(o)}var In=function e(t,n,r){_classCallCheck(this,e),this.factory=t,this.resolving=!1,this.canSeeViewProviders=n,this.injectImpl=r};function An(e,t,n){for(var r=Ft(e),i=0;it){o=a-1;break}}}for(;a>16}function Vn(e,t){for(var n=zn(e),r=t;n>0;)r=r[15],n--;return r}function Wn(e){return\"string\"==typeof e?e:null==e?\"\":\"\"+e}function Un(e){return\"function\"==typeof e?e.name||e.toString():\"object\"==typeof e&&null!=e&&\"function\"==typeof e.type?e.type.name||e.type.toString():Wn(e)}var Bn=(\"undefined\"!=typeof requestAnimationFrame&&requestAnimationFrame||setTimeout).bind(Re);function qn(e){return{name:\"window\",target:e.ownerDocument.defaultView}}function Gn(e){return e instanceof Function?e():e}var $n=!0;function Jn(e){var t=$n;return $n=e,t}var Kn=0;function Zn(e,t){var n=Xn(e,t);if(-1!==n)return n;var r=t[1];r.firstCreatePass&&(e.injectorIndex=t.length,Qn(r.data,e),Qn(t,null),Qn(r.blueprint,null));var i=er(e,t),a=e.injectorIndex;if(Fn(i))for(var o=Nn(i),s=Vn(i,t),l=s[1].data,u=0;u<8;u++)t[a+u]=s[o+u]|l[o+u];return t[a+8]=i,a}function Qn(e,t){e.push(0,0,0,0,0,0,0,0,t)}function Xn(e,t){return-1===e.injectorIndex||e.parent&&e.parent.injectorIndex===e.injectorIndex||null==t[e.injectorIndex+8]?-1:e.injectorIndex}function er(e,t){if(e.parent&&-1!==e.parent.injectorIndex)return e.parent.injectorIndex;for(var n=t[6],r=1;n&&-1===n.injectorIndex;)n=(t=t[15])?t[6]:null,r++;return n?n.injectorIndex|r<<16:-1}function tr(e,t,n){!function(e,t,n){var r=\"string\"!=typeof n?n[Ue]:n.charCodeAt(0)||0;null==r&&(r=n[Ue]=Kn++);var i=255&r,a=1<3&&void 0!==arguments[3]?arguments[3]:fe.Default,i=arguments.length>4?arguments[4]:void 0;if(null!==e){var a=function(e){if(\"string\"==typeof e)return e.charCodeAt(0)||0;var t=e[Ue];return\"number\"==typeof t&&t>0?255&t:t}(n);if(\"function\"==typeof a){pn(t,e);try{var o=a();if(null!=o||r&fe.Optional)return o;throw new Error(\"No provider for \".concat(Un(n),\"!\"))}finally{bn()}}else if(\"number\"==typeof a){if(-1===a)return new ur(e,t);var s=null,l=Xn(e,t),u=-1,c=r&fe.Host?t[16][6]:null;for((-1===l||r&fe.SkipSelf)&&(u=-1===l?er(e,t):t[l+8],lr(r,!1)?(s=t[1],l=Nn(u),t=Vn(u,t)):l=-1);-1!==l;){u=t[l+8];var d=t[1];if(sr(a,l,d.data)){var h=ir(l,t,n,s,r,c);if(h!==rr)return h}lr(r,t[1].data[l+8]===c)&&sr(a,l,t)?(s=d,l=Nn(u),t=Vn(u,t)):l=-1}}}if(r&fe.Optional&&void 0===i&&(i=null),0==(r&(fe.Self|fe.Host))){var f=t[9],m=Qe(void 0);try{return f?f.get(n,i,r&fe.Optional):nt(n,i,r&fe.Optional)}finally{Qe(m)}}if(r&fe.Optional)return i;throw new Error(\"NodeInjector: NOT_FOUND [\".concat(Un(n),\"]\"))}var rr={};function ir(e,t,n,r,i,a){var o=t[1],s=o.data[e+8],l=ar(s,o,n,null==r?It(s)&&$n:r!=o&&3===s.type,i&fe.Host&&a===s);return null!==l?or(t,o,l,s):rr}function ar(e,t,n,r,i){for(var a=e.providerIndexes,o=t.data,s=65535&a,l=e.directiveStart,u=a>>16,c=i?s+u:e.directiveEnd,d=r?s:s+u;d=l&&h.type===n)return d}if(i){var f=o[l];if(f&&Pt(f)&&f.type===n)return l}return null}function or(e,t,n,r){var i=e[n],a=t.data;if(i instanceof In){var o=i;if(o.resolving)throw new Error(\"Circular dep for \".concat(Un(a[n])));var s,l=Jn(o.canSeeViewProviders);o.resolving=!0,o.injectImpl&&(s=Qe(o.injectImpl)),pn(e,r);try{i=e[n]=o.factory(void 0,a,e,r),t.firstCreatePass&&n>=r.directiveStart&&function(e,t,n){var r=t.onChanges,i=t.onInit,a=t.doCheck;r&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,r),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,r)),i&&(n.preOrderHooks||(n.preOrderHooks=[])).push(-e,i),a&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,a),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,a))}(n,a[n],t)}finally{o.injectImpl&&Qe(s),Jn(l),o.resolving=!1,bn()}}return i}function sr(e,t,n){var r=64&e,i=32&e;return!!((128&e?r?i?n[t+7]:n[t+6]:i?n[t+5]:n[t+4]:r?i?n[t+3]:n[t+2]:i?n[t+1]:n[t])&1<1?t-1:0),r=1;r',!n.querySelector||n.querySelector(\"svg\")?(n.innerHTML='

',this.getInertBodyElement=n.querySelector&&n.querySelector(\"svg img\")&&function(){try{return!!window.DOMParser}catch(e){return!1}}()?this.getInertBodyElement_DOMParser:this.getInertBodyElement_InertDocument):this.getInertBodyElement=this.getInertBodyElement_XHR}return _createClass(e,[{key:\"getInertBodyElement_XHR\",value:function(e){e=\"\"+e+\"\";try{e=encodeURI(e)}catch(r){return null}var t=new XMLHttpRequest;t.responseType=\"document\",t.open(\"GET\",\"data:text/html;charset=utf-8,\"+e,!1),t.send(void 0);var n=t.response.body;return n.removeChild(n.firstChild),n}},{key:\"getInertBodyElement_DOMParser\",value:function(e){e=\"\"+e+\"\";try{var t=(new window.DOMParser).parseFromString(e,\"text/html\").body;return t.removeChild(t.firstChild),t}catch(n){return null}}},{key:\"getInertBodyElement_InertDocument\",value:function(e){var t=this.inertDocument.createElement(\"template\");if(\"content\"in t)return t.innerHTML=e,t;var n=this.inertDocument.createElement(\"body\");return n.innerHTML=e,this.defaultDoc.documentMode&&this.stripCustomNsAttrs(n),n}},{key:\"stripCustomNsAttrs\",value:function(e){for(var t=e.attributes,n=t.length-1;0\"),!0}},{key:\"endElement\",value:function(e){var t=e.nodeName.toLowerCase();Fr.hasOwnProperty(t)&&!Pr.hasOwnProperty(t)&&(this.buf.push(\"\"))}},{key:\"chars\",value:function(e){this.buf.push(Gr(e))}},{key:\"checkClobberedElement\",value:function(e,t){if(t&&(e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error(\"Failed to sanitize html because the element is clobbered: \".concat(e.outerHTML));return t}}]),e}(),Br=/[\\uD800-\\uDBFF][\\uDC00-\\uDFFF]/g,qr=/([^\\#-~ |!])/g;function Gr(e){return e.replace(/&/g,\"&\").replace(Br,(function(e){return\"&#\"+(1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320)+65536)+\";\"})).replace(qr,(function(e){return\"&#\"+e.charCodeAt(0)+\";\"})).replace(//g,\">\")}function $r(e,t){var n=null;try{Ar=Ar||new Tr(e);var r=t?String(t):\"\";n=Ar.getInertBodyElement(r);var i=5,a=r;do{if(0===i)throw new Error(\"Failed to sanitize html because the input is unstable\");i--,r=a,a=n.innerHTML,n=Ar.getInertBodyElement(r)}while(r!==a);var o=new Ur,s=o.sanitizeChildren(Jr(n)||n);return Lr()&&o.sanitizedSomething&&console.warn(\"WARNING: sanitizing HTML stripped some content, see http://g.co/ng/security#xss\"),s}finally{if(n)for(var l=Jr(n)||n;l.firstChild;)l.removeChild(l.firstChild)}}function Jr(e){return\"content\"in e&&function(e){return e.nodeType===Node.ELEMENT_NODE&&\"TEMPLATE\"===e.nodeName}(e)?e.content:null}var Kr=function(){var e={NONE:0,HTML:1,STYLE:2,SCRIPT:3,URL:4,RESOURCE_URL:5};return e[e.NONE]=\"NONE\",e[e.HTML]=\"HTML\",e[e.STYLE]=\"STYLE\",e[e.SCRIPT]=\"SCRIPT\",e[e.URL]=\"URL\",e[e.RESOURCE_URL]=\"RESOURCE_URL\",e}(),Zr=new RegExp(\"^([-,.\\\"'%_!# a-zA-Z0-9]+|(?:(?:matrix|translate|scale|rotate|skew|perspective)(?:X|Y|Z|3d)?|(?:rgb|hsl)a?|(?:repeating-)?(?:linear|radial)-gradient|(?:attr|calc|var))\\\\([-0-9.%, #a-zA-Z]+\\\\))$\",\"g\"),Qr=/^url\\(([^)]+)\\)$/;function Xr(e){if(!(e=String(e).trim()))return\"\";var t=e.match(Qr);return t&&Or(t[1])===t[1]||e.match(Zr)&&function(e){for(var t=!0,n=!0,r=0;ra?\"\":i[c+1].toLowerCase();var h=8&r?d:null;if(h&&-1!==li(h,u,0)||2&r&&u!==d){if(hi(r))return!1;o=!0}}}}else{if(!o&&!hi(r)&&!hi(l))return!1;if(o&&hi(l))continue;o=!1,r=l|1&r}}return hi(r)||o}function hi(e){return 0==(1&e)}function fi(e,t,n,r){if(null===t)return-1;var i=0;if(r||!n){for(var a=!1;i-1)for(n++;n2&&void 0!==arguments[2]&&arguments[2],r=0;r0?'=\"'+s+'\"':\"\")+\"]\"}else 8&r?i+=\".\"+o:4&r&&(i+=\" \"+o);else\"\"===i||hi(o)||(t+=_i(a,i),i=\"\"),r=o,a=a||!hi(r);n++}return\"\"!==i&&(t+=_i(a,i)),t}var gi={};function yi(e){var t=e[3];return Yt(t)?t[3]:t}function bi(e){ki(tn(),en(),wn()+e,ln())}function ki(e,t,n,r){if(!r)if(3==(3&t[2])){var i=e.preOrderCheckHooks;null!==i&&xn(t,i,n)}else{var a=e.preOrderHooks;null!==a&&Dn(t,a,0,n)}Cn(n)}var wi={marker:\"element\"},Ci={marker:\"comment\"};function Mi(e,t){return e<<17|t<<2}function Si(e){return e>>17&32767}function Li(e){return 2|e}function Ti(e){return(131068&e)>>2}function xi(e,t){return-131069&e|t<<2}function Di(e){return 1|e}function Oi(e,t){var n=e.contentQueries;if(null!==n)for(var r=0;r>1==-1){for(var r=9;r19&&ki(e,t,0,ln()),n(r,i)}finally{Cn(a)}}function Hi(e,t,n){if(Et(t))for(var r=t.directiveEnd,i=t.directiveStart;i2&&void 0!==arguments[2]?arguments[2]:Wt,r=t.localNames;if(null!==r)for(var i=t.index+1,a=0;a0&&(e[n-1][4]=r[4]);var a=ct(e,9+t);Sa(r[1],r,!1,null);var o=a[5];null!==o&&o.detachView(a[1]),r[3]=null,r[4]=null,r[2]&=-129}return r}}function xa(e,t){if(!(256&t[2])){var n=t[11];Ft(n)&&n.destroyNode&&za(e,t,n,3,null,null),function(e){var t=e[13];if(!t)return Oa(e[1],e);for(;t;){var n=null;if(Ot(t))n=t[13];else{var r=t[9];r&&(n=r)}if(!n){for(;t&&!t[4]&&t!==e;)Ot(t)&&Oa(t[1],t),t=Da(t,e);null===t&&(t=e),Ot(t)&&Oa(t[1],t),n=t&&t[4]}t=n}}(t)}}function Da(e,t){var n;return Ot(e)&&(n=e[6])&&2===n.type?ka(n,e):e[3]===t?null:e[3]}function Oa(e,t){if(!(256&t[2])){t[2]&=-129,t[2]|=256,function(e,t){var n;if(null!=e&&null!=(n=e.destroyHooks))for(var r=0;r=0?r[l]():r[-l].unsubscribe(),i+=2}else n[i].call(r[n[i+1]]);t[7]=null}}(e,t);var n=t[6];n&&3===n.type&&Ft(t[11])&&t[11].destroy();var r=t[17];if(null!==r&&Yt(t[3])){r!==t[3]&&La(r,t);var i=t[5];null!==i&&i.detachView(e)}}}function Ya(e,t,n){for(var r=t.parent;null!=r&&(4===r.type||5===r.type);)r=(t=r).parent;if(null==r){var i=n[6];return 2===i.type?wa(i,n):n[0]}if(t&&5===t.type&&4&t.flags)return Wt(t,n).parentNode;if(2&r.flags){var a=e.data,o=a[a[r.index].directiveStart].encapsulation;if(o!==_t.ShadowDom&&o!==_t.Native)return null}return Wt(r,n)}function Ea(e,t,n,r){Ft(e)?e.insertBefore(t,n,r):t.insertBefore(n,r,!0)}function Ia(e,t,n){Ft(e)?e.appendChild(t,n):t.appendChild(n)}function Aa(e,t,n,r){null!==r?Ea(e,t,n,r):Ia(e,t,n)}function Pa(e,t){return Ft(e)?e.parentNode(t):t.parentNode}function ja(e,t){if(2===e.type){var n=ka(e,t);return null===n?null:Ha(n.indexOf(t,9)-9,n)}return 4===e.type||5===e.type?Wt(e,t):null}function Ra(e,t,n,r){var i=Ya(e,r,t);if(null!=i){var a=t[11],o=ja(r.parent||t[6],t);if(Array.isArray(n))for(var s=0;s-1&&this._viewContainerRef.detach(e),this._viewContainerRef=null}xa(this._lView[1],this._lView)}},{key:\"onDestroy\",value:function(e){var t,n,r;t=this._lView[1],r=e,pa(n=this._lView).push(r),t.firstCreatePass&&_a(t).push(n[7].length-1,null)}},{key:\"markForCheck\",value:function(){ca(this._cdRefInjectingView||this._lView)}},{key:\"detach\",value:function(){this._lView[2]&=-129}},{key:\"reattach\",value:function(){this._lView[2]|=128}},{key:\"detectChanges\",value:function(){da(this._lView[1],this._lView,this.context)}},{key:\"checkNoChanges\",value:function(){!function(e,t,n){un(!0);try{da(e,t,n)}finally{un(!1)}}(this._lView[1],this._lView,this.context)}},{key:\"attachToViewContainerRef\",value:function(e){if(this._appRef)throw new Error(\"This view is already attached directly to the ApplicationRef!\");this._viewContainerRef=e}},{key:\"detachFromAppRef\",value:function(){var e;this._appRef=null,za(this._lView[1],e=this._lView,e[11],2,null,null)}},{key:\"attachToAppRef\",value:function(e){if(this._viewContainerRef)throw new Error(\"This view is already attached to a ViewContainer!\");this._appRef=e}},{key:\"rootNodes\",get:function(){var e=this._lView;return null==e[0]?function e(t,n,r,i){for(var a=arguments.length>4&&void 0!==arguments[4]&&arguments[4];null!==r;){var o=n[r.index];if(null!==o&&i.push(zt(o)),Yt(o))for(var s=9;s0;)this.remove(this.length-1)}},{key:\"get\",value:function(e){return null!==this._lContainer[8]&&this._lContainer[8][e]||null}},{key:\"createEmbeddedView\",value:function(e,t,n){var r=e.createEmbeddedView(t||{});return this.insert(r,n),r}},{key:\"createComponent\",value:function(e,t,n,r,i){var a=n||this.parentInjector;if(!i&&null==e.ngModule&&a){var o=a.get(at,null);o&&(i=o)}var s=e.create(a,r,void 0,i);return this.insert(s.hostView,t),s}},{key:\"insert\",value:function(e,t){var n=e._lView,r=n[1];if(e.destroyed)throw new Error(\"Cannot insert a destroyed View in a ViewContainer!\");if(this.allocateContainerIfNeeded(),Yt(n[3])){var i=this.indexOf(e);if(-1!==i)this.detach(i);else{var a=n[3],o=new $a(a,a[6],a[3]);o.detach(o.indexOf(e))}}var s=this._adjustIndex(t);return function(e,t,n,r){var i=9+r,a=n.length;r>0&&(n[i-1][4]=t),r1&&void 0!==arguments[1]?arguments[1]:0;return null==e?this.length+t:e}},{key:\"allocateContainerIfNeeded\",value:function(){null===this._lContainer[8]&&(this._lContainer[8]=[])}},{key:\"element\",get:function(){return Za(t,this._hostTNode,this._hostView)}},{key:\"injector\",get:function(){return new ur(this._hostTNode,this._hostView)}},{key:\"parentInjector\",get:function(){var e=er(this._hostTNode,this._hostView),t=Vn(e,this._hostView),n=function(e,t,n){if(n.parent&&-1!==n.parent.injectorIndex){for(var r=n.parent.injectorIndex,i=n.parent;null!=i.parent&&r==i.parent.injectorIndex;)i=i.parent;return i}for(var a=zn(e),o=t,s=t[6];a>1;)s=(o=o[15])[6],a--;return s}(e,this._hostView,this._hostTNode);return Fn(e)&&null!=n?new ur(n,t):new ur(null,this._hostView)}},{key:\"length\",get:function(){return this._lContainer.length-9}}]),r}(e));var a=r[n.index];if(Yt(a))(function(e,t){e[2]=-2})(i=a);else{var o;if(4===n.type)o=zt(a);else if(o=r[11].createComment(\"\"),jt(r)){var s=r[11],l=Wt(n,r);Ea(s,Pa(s,l),o,function(e,t){return Ft(e)?e.nextSibling(t):t.nextSibling}(s,l))}else Ra(r[1],r,o,n);r[n.index]=i=aa(a,r,o,n),ua(r,i)}return new $a(i,n,r)}var eo=function(){var e=function e(){_classCallCheck(this,e)};return e.__NG_ELEMENT_ID__=function(){return to()},e}(),to=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return function(e,t,n){if(!n&&It(e)){var r=qt(e.index,t);return new Ja(r,r)}return 3===e.type||0===e.type||4===e.type||5===e.type?new Ja(t[16],t):null}(rn(),en(),e)},no=new Be(\"Set Injector scope.\"),ro={},io={},ao=[],oo=void 0;function so(){return void 0===oo&&(oo=new it),oo}function lo(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r=arguments.length>3?arguments[3]:void 0;return new uo(e,n,t||so(),r)}var uo=function(){function e(t,n,r){var i=this,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;_classCallCheck(this,e),this.parent=r,this.records=new Map,this.injectorDefTypes=new Set,this.onDestroy=new Set,this._destroyed=!1;var o=[];n&<(n,(function(e){return i.processProvider(e,t,n)})),lt([t],(function(e){return i.processInjectorType(e,[],o)})),this.records.set(qe,fo(void 0,this));var s=this.records.get(no);this.scope=null!=s?s.value:null,this.source=a||(\"object\"==typeof t?null:Le(t))}return _createClass(e,[{key:\"destroy\",value:function(){this.assertNotDestroyed(),this._destroyed=!0;try{this.onDestroy.forEach((function(e){return e.ngOnDestroy()}))}finally{this.records.clear(),this.onDestroy.clear(),this.injectorDefTypes.clear()}}},{key:\"get\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Ge,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:fe.Default;this.assertNotDestroyed();var r,i=Ze(this);try{if(!(n&fe.SkipSelf)){var a=this.records.get(e);if(void 0===a){var o=(\"function\"==typeof(r=e)||\"object\"==typeof r&&r instanceof Be)&&ge(e);a=o&&this.injectableDefInScope(o)?fo(co(e),ro):null,this.records.set(e,a)}if(null!=a)return this.hydrate(e,a)}return(n&fe.Self?so():this.parent).get(e,t=n&fe.Optional&&t===Ge?null:t)}catch(s){if(\"NullInjectorError\"===s.name){if((s.ngTempTokenPath=s.ngTempTokenPath||[]).unshift(Le(e)),i)throw s;return function(e,t,n,r){var i=e.ngTempTokenPath;throw t.__source&&i.unshift(t.__source),e.message=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;e=e&&\"\\n\"===e.charAt(0)&&\"\\u0275\"==e.charAt(1)?e.substr(2):e;var i=Le(t);if(Array.isArray(t))i=t.map(Le).join(\" -> \");else if(\"object\"==typeof t){var a=[];for(var o in t)if(t.hasOwnProperty(o)){var s=t[o];a.push(o+\":\"+(\"string\"==typeof s?JSON.stringify(s):Le(s)))}i=\"{\".concat(a.join(\", \"),\"}\")}return\"\".concat(n).concat(r?\"(\"+r+\")\":\"\",\"[\").concat(i,\"]: \").concat(e.replace($e,\"\\n \"))}(\"\\n\"+e.message,i,\"R3InjectorError\",r),e.ngTokenPath=i,e.ngTempTokenPath=null,e}(s,e,0,this.source)}throw s}finally{Ze(i)}}},{key:\"_resolveInjectorDefTypes\",value:function(){var e=this;this.injectorDefTypes.forEach((function(t){return e.get(t)}))}},{key:\"toString\",value:function(){var e=[];return this.records.forEach((function(t,n){return e.push(Le(n))})),\"R3Injector[\".concat(e.join(\", \"),\"]\")}},{key:\"assertNotDestroyed\",value:function(){if(this._destroyed)throw new Error(\"Injector has already been destroyed.\")}},{key:\"processInjectorType\",value:function(e,t,n){var r=this;if(!(e=Oe(e)))return!1;var i=be(e),a=null==i&&e.ngModule||void 0,o=void 0===a?e:a,s=-1!==n.indexOf(o);if(void 0!==a&&(i=be(a)),null==i)return!1;if(null!=i.imports&&!s){var l;n.push(o);try{lt(i.imports,(function(e){r.processInjectorType(e,t,n)&&(void 0===l&&(l=[]),l.push(e))}))}finally{}if(void 0!==l)for(var u=function(e){var t=l[e],n=t.ngModule,i=t.providers;lt(i,(function(e){return r.processProvider(e,n,i||ao)}))},c=0;c0){var n=dt(t,\"?\");throw new Error(\"Can't resolve all parameters for \".concat(Le(e),\": (\").concat(n.join(\", \"),\").\"))}var r=function(e){var t=e&&(e[ke]||e[Me]||e[Ce]&&e[Ce]());if(t){var n=function(e){if(e.hasOwnProperty(\"name\"))return e.name;var t=(\"\"+e).match(/^function\\s*([^\\s(]+)/);return null===t?\"\":t[1]}(e);return console.warn('DEPRECATED: DI is instantiating a token \"'.concat(n,'\" that inherits its @Injectable decorator but does not provide one itself.\\n')+'This will become an error in v10. Please add @Injectable() to the \"'.concat(n,'\" class.')),t}return null}(e);return null!==r?function(){return r.factory(e)}:function(){return new e}}(e);throw new Error(\"unreachable\")}function ho(e,t,n){var r,i=void 0;if(po(e)){var a=Oe(e);return xt(a)||co(a)}if(mo(e))i=function(){return Oe(e.useValue)};else if((r=e)&&r.useFactory)i=function(){return e.useFactory.apply(e,_toConsumableArray(rt(e.deps||[])))};else if(function(e){return!(!e||!e.useExisting)}(e))i=function(){return et(Oe(e.useExisting))};else{var o=Oe(e&&(e.useClass||e.provide));if(o||function(e,t,n){var r=\"\";throw e&&t&&(r=\" - only instances of Provider and Type are allowed, got: [\".concat(t.map((function(e){return e==n?\"?\"+n+\"?\":\"...\"})).join(\", \"),\"]\")),new Error(\"Invalid provider for the NgModule '\".concat(Le(e),\"'\")+r)}(t,n,e),!function(e){return!!e.deps}(e))return xt(o)||co(o);i=function(){return _construct(o,_toConsumableArray(rt(e.deps)))}}return i}function fo(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return{factory:e,value:t,multi:n?[]:void 0}}function mo(e){return null!==e&&\"object\"==typeof e&&Je in e}function po(e){return\"function\"==typeof e}var _o=function(e,t,n){return function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r=arguments.length>3?arguments[3]:void 0,i=lo(e,t,n,r);return i._resolveInjectorDefTypes(),i}({name:n},t,e,n)},vo=function(){var e=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"create\",value:function(e,t){return Array.isArray(e)?_o(e,t,\"\"):_o(e.providers,e.parent,e.name||\"\")}}]),e}();return e.THROW_IF_NOT_FOUND=Ge,e.NULL=new it,e.\\u0275prov=_e({token:e,providedIn:\"any\",factory:function(){return et(qe)}}),e.__NG_ELEMENT_ID__=-1,e}(),go=new Be(\"AnalyzeForEntryComponents\"),yo=new Map,bo=new Set;function ko(e){return\"string\"==typeof e?e:e.text()}function wo(e,t){for(var n=e.styles,r=e.classes,i=0,a=0;a1&&void 0!==arguments[1]?arguments[1]:fe.Default,n=en();return null==n?et(e,t):nr(rn(),n,Oe(e),t)}function Ao(e){return function(e,t){if(\"class\"===t)return e.classes;if(\"style\"===t)return e.styles;var n=e.attrs;if(n)for(var r=n.length,i=0;i2&&void 0!==arguments[2]&&arguments[2],r=arguments.length>3?arguments[3]:void 0,i=en(),a=tn(),o=rn();return $o(a,i,i[11],o,e,t,n,r),qo}function Go(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=arguments.length>3?arguments[3]:void 0,i=rn(),a=en(),o=va(i,a);return $o(tn(),a,o,i,e,t,n,r),Go}function $o(e,t,n,r,i,a){var o=arguments.length>6&&void 0!==arguments[6]&&arguments[6],s=arguments.length>7?arguments[7]:void 0,l=At(r),u=e.firstCreatePass&&(e.cleanup||(e.cleanup=[])),c=pa(t),d=!0;if(3===r.type){var h=Wt(r,t),f=s?s(h):vt,m=f.target||h,p=c.length,_=s?function(e){return s(zt(e[r.index])).target}:r.index;if(Ft(n)){var v=null;if(!s&&l&&(v=function(e,t,n,r){var i=e.cleanup;if(null!=i)for(var a=0;al?s[l]:null}\"string\"==typeof o&&(a+=2)}return null}(e,t,i,r.index)),null!==v)(v.__ngLastListenerFn__||v).__ngNextListenerFn__=a,v.__ngLastListenerFn__=a,d=!1;else{a=Ko(r,t,a,!1);var g=n.listen(f.name||m,i,a);c.push(a,g),u&&u.push(i,_,p,p+1)}}else a=Ko(r,t,a,!0),m.addEventListener(i,a,o),c.push(a),u&&u.push(i,_,p,o)}var y,b=r.outputs;if(d&&null!==b&&(y=b[i])){var k=y.length;if(k)for(var w=0;w0&&void 0!==arguments[0]?arguments[0]:1;return function(e){return(Qt.lFrame.contextLView=function(e,t){for(;e>0;)t=t[15],e--;return t}(e,Qt.lFrame.contextLView))[8]}(e)}function Qo(e,t){for(var n=null,r=function(e){var t=e.attrs;if(null!=t){var n=t.indexOf(5);if(0==(1&n))return t[n+1]}return null}(e),i=0;i1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2?arguments[2]:void 0,r=en(),i=tn(),a=Ii(i,r[6],e,1,null,n||null);null===a.projection&&(a.projection=t),sn(),es||Va(i,r,a)}function rs(e,t,n){return is(e,\"\",t,\"\",n),rs}function is(e,t,n,r,i){var a=en(),o=Oo(a,t,n,r);return o!==gi&&Bi(tn(),Mn(),a,e,o,a[11],i,!1),is}var as=[];function os(e,t,n,r,i){for(var a=e[n+1],o=null===t,s=r?Si(a):Ti(a),l=!1;0!==s&&(!1===l||o);){var u=e[s+1];ss(e[s],t)&&(l=!0,e[s+1]=r?Di(u):Li(u)),s=r?Si(u):Ti(u)}l&&(e[n+1]=r?Li(a):Di(a))}function ss(e,t){return null===e||null==t||(Array.isArray(e)?e[1]:e)===t||!(!Array.isArray(e)||\"string\"!=typeof t)&&mt(e,t)>=0}var ls={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function us(e){return e.substring(ls.key,ls.keyEnd)}function cs(e,t){var n=ls.textEnd;return n===t?-1:(t=ls.keyEnd=function(e,t,n){for(;t32;)t++;return t}(e,ls.key=t,n),ds(e,t,n))}function ds(e,t,n){for(;t=0;n=cs(t,n))ht(e,us(t),!0)}function _s(e,t,n,r){var i,a,o=en(),s=tn(),l=dn(2);(s.firstUpdatePass&&ys(s,e,l,r),t!==gi&&xo(o,l,t))&&(null==n&&(i=null===(a=Qt.lFrame)?null:a.currentSanitizer)&&(n=i),ws(s,s.data[wn()+19],o,o[11],e,o[l+1]=function(e,t){return null==e||(\"function\"==typeof t?e=t(e):\"string\"==typeof t?e+=t:\"object\"==typeof e&&(e=Le(kr(e)))),e}(t,n),r,l))}function vs(e,t,n,r){var i=tn(),a=dn(2);i.firstUpdatePass&&ys(i,null,a,r);var o=en();if(n!==gi&&xo(o,a,n)){var s=i.data[wn()+19];if(Ss(s,r)&&!gs(i,a)){var l=r?s.classes:s.styles;null!==l&&(n=Te(l,n||\"\")),Ro(i,s,o,n,r)}else!function(e,t,n,r,i,a,o,s){i===gi&&(i=as);for(var l=0,u=0,c=0=e.expandoStartIndex}function ys(e,t,n,r){var i=e.data;if(null===i[n+1]){var a=i[wn()+19],o=gs(e,n);Ss(a,r)&&null===t&&!o&&(t=!1),t=function(e,t,n,r){var i=function(e){var t=Qt.lFrame.currentDirectiveIndex;return-1===t?null:e[t]}(e),a=r?t.residualClasses:t.residualStyles;if(null===i)0===(r?t.classBindings:t.styleBindings)&&(n=ks(n=bs(null,e,t,n,r),t.attrs,r),a=null);else{var o=t.directiveStylingLast;if(-1===o||e[o]!==i)if(n=bs(i,e,t,n,r),null===a){var s=function(e,t,n){var r=n?t.classBindings:t.styleBindings;if(0!==Ti(r))return e[Si(r)]}(e,t,r);void 0!==s&&Array.isArray(s)&&function(e,t,n,r){e[Si(n?t.classBindings:t.styleBindings)]=r}(e,t,r,s=ks(s=bs(null,e,t,s[1],r),t.attrs,r))}else a=function(e,t,n){for(var r=void 0,i=t.directiveEnd,a=1+t.directiveStylingLast;a0)&&(c=!0)}else u=n;if(i)if(0!==l){var h=Si(e[s+1]);e[r+1]=Mi(h,s),0!==h&&(e[h+1]=xi(e[h+1],r)),e[s+1]=131071&e[s+1]|r<<17}else e[r+1]=Mi(s,0),0!==s&&(e[s+1]=xi(e[s+1],r)),s=r;else e[r+1]=Mi(l,0),0===s?s=r:e[l+1]=xi(e[l+1],r),l=r;c&&(e[r+1]=Li(e[r+1])),os(e,u,r,!0),os(e,u,r,!1),function(e,t,n,r,i){var a=i?e.residualClasses:e.residualStyles;null!=a&&\"string\"==typeof t&&mt(a,t)>=0&&(n[r+1]=Di(n[r+1]))}(t,u,e,r,a),o=Mi(s,l),a?t.classBindings=o:t.styleBindings=o}(i,a,t,n,o,r)}}function bs(e,t,n,r,i){var a=null,o=n.directiveEnd,s=n.directiveStylingLast;for(-1===s?s=n.directiveStart:s++;s0;){var l=e[i],u=Array.isArray(l),c=u?l[1]:l,d=null===c,h=n[i+1];h===gi&&(h=d?as:void 0);var f=d?ft(h,r):c===r?h:void 0;if(u&&!Ms(f)&&(f=ft(l,r)),Ms(f)&&(s=f,o))return s;var m=e[i+1];i=o?Si(m):Ti(m)}if(null!==t){var p=a?t.residualClasses:t.residualStyles;null!=p&&(s=ft(p,r))}return s}function Ms(e){return void 0!==e}function Ss(e,t){return 0!=(e.flags&(t?16:32))}function Ls(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\",n=en(),r=tn(),i=e+19,a=r.firstCreatePass?Ii(r,n[6],e,3,null,null):r.data[i],o=n[i]=Ma(t,n[11]);Ra(r,n,o,a),an(a,!1)}function Ts(e){return xs(\"\",e,\"\"),Ts}function xs(e,t,n){var r=en(),i=Oo(r,e,t,n);return i!==gi&&ba(r,wn(),i),xs}function Ds(e,t,n){var r=en();return xo(r,cn(),t)&&Bi(tn(),Mn(),r,e,t,r[11],n,!0),Ds}function Os(e,t,n){var r=en();if(xo(r,cn(),t)){var i=tn(),a=Mn();Bi(i,a,r,e,t,va(a,r),n,!0)}return Os}function Ys(e,t){var n=Gt(e)[1],r=n.data.length-1;Tn(n,{directiveStart:r,directiveEnd:r+1})}function Es(e){for(var t=Object.getPrototypeOf(e.type.prototype).constructor,n=!0,r=[e];t;){var i=void 0;if(Pt(e))i=t.\\u0275cmp||t.\\u0275dir;else{if(t.\\u0275cmp)throw new Error(\"Directives cannot inherit Components\");i=t.\\u0275dir}if(i){if(n){r.push(i);var a=e;a.inputs=Is(e.inputs),a.declaredInputs=Is(e.declaredInputs),a.outputs=Is(e.outputs);var o=i.hostBindings;o&&js(e,o);var s=i.viewQuery,l=i.contentQueries;if(s&&As(e,s),l&&Ps(e,l),pe(e.inputs,i.inputs),pe(e.declaredInputs,i.declaredInputs),pe(e.outputs,i.outputs),Pt(i)&&i.data.animation){var u=e.data;u.animation=(u.animation||[]).concat(i.data.animation)}a.afterContentChecked=a.afterContentChecked||i.afterContentChecked,a.afterContentInit=e.afterContentInit||i.afterContentInit,a.afterViewChecked=e.afterViewChecked||i.afterViewChecked,a.afterViewInit=e.afterViewInit||i.afterViewInit,a.doCheck=e.doCheck||i.doCheck,a.onDestroy=e.onDestroy||i.onDestroy,a.onInit=e.onInit||i.onInit}var c=i.features;if(c)for(var d=0;d=0;r--){var i=e[r];i.hostVars=t+=i.hostVars,i.hostAttrs=Rn(i.hostAttrs,n=Rn(n,i.hostAttrs))}}(r)}function Is(e){return e===vt?{}:e===gt?[]:e}function As(e,t){var n=e.viewQuery;e.viewQuery=n?function(e,r){t(e,r),n(e,r)}:t}function Ps(e,t){var n=e.contentQueries;e.contentQueries=n?function(e,r,i){t(e,r,i),n(e,r,i)}:t}function js(e,t){var n=e.hostBindings;e.hostBindings=n?function(e,r){t(e,r),n(e,r)}:t}var Rs=function(){function e(t,n,r){_classCallCheck(this,e),this.previousValue=t,this.currentValue=n,this.firstChange=r}return _createClass(e,[{key:\"isFirstChange\",value:function(){return this.firstChange}}]),e}();function Hs(e){e.type.prototype.ngOnChanges&&(e.setInput=Fs,e.onChanges=function(){var e=Ns(this),t=e&&e.current;if(t){var n=e.previous;if(n===vt)e.previous=t;else for(var r in t)n[r]=t[r];e.current=null,this.ngOnChanges(t)}})}function Fs(e,t,n,r){var i=Ns(e)||function(e,t){return e.__ngSimpleChanges__=t}(e,{previous:vt,current:null}),a=i.current||(i.current={}),o=i.previous,s=this.declaredInputs[n],l=o[s];a[s]=new Rs(l&&l.currentValue,t,o===vt),e[r]=t}function Ns(e){return e.__ngSimpleChanges__||null}function zs(e,t,n,r,i){if(e=Oe(e),Array.isArray(e))for(var a=0;a>16;if(po(e)||!e.multi){var m=new In(u,i,Io),p=Us(l,t,i?d:d+f,h);-1===p?(tr(Zn(c,s),o,l),Vs(o,e,t.length),t.push(l),c.directiveStart++,c.directiveEnd++,i&&(c.providerIndexes+=65536),n.push(m),s.push(m)):(n[p]=m,s[p]=m)}else{var _=Us(l,t,d+f,h),v=Us(l,t,d,d+f),g=_>=0&&n[_],y=v>=0&&n[v];if(i&&!y||!i&&!g){tr(Zn(c,s),o,l);var b=function(e,t,n,r,i){var a=new In(e,n,Io);return a.multi=[],a.index=t,a.componentProviders=0,Ws(a,i,r&&!n),a}(i?qs:Bs,n.length,i,r,u);!i&&y&&(n[v].providerFactory=b),Vs(o,e,t.length),t.push(l),c.directiveStart++,c.directiveEnd++,i&&(c.providerIndexes+=65536),n.push(b),s.push(b)}else Vs(o,e,_>-1?_:v),Ws(n[i?v:_],u,!i&&r);!i&&r&&y&&n[v].componentProviders++}}}function Vs(e,t,n){if(po(t)||t.useClass){var r=(t.useClass||t).prototype.ngOnDestroy;r&&(e.destroyHooks||(e.destroyHooks=[])).push(n,r)}}function Ws(e,t,n){e.multi.push(t),n&&e.componentProviders++}function Us(e,t,n,r){for(var i=n;i1&&void 0!==arguments[1]?arguments[1]:[];return function(n){n.providersResolver=function(n,r){return function(e,t,n){var r=tn();if(r.firstCreatePass){var i=Pt(e);zs(n,r.data,r.blueprint,i,!0),zs(t,r.data,r.blueprint,i,!1)}}(n,r?r(e):e,t)}}}Hs.ngInherit=!0;var Js=function e(){_classCallCheck(this,e)},Ks=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"resolveComponentFactory\",value:function(e){throw function(e){var t=Error(\"No component factory found for \".concat(Le(e),\". Did you add it to @NgModule.entryComponents?\"));return t.ngComponent=e,t}(e)}}]),e}(),Zs=function(){var e=function e(){_classCallCheck(this,e)};return e.NULL=new Ks,e}(),Qs=function(){var e=function e(t){_classCallCheck(this,e),this.nativeElement=t};return e.__NG_ELEMENT_ID__=function(){return Xs(e)},e}(),Xs=function(e){return Za(e,rn(),en())},el=function e(){_classCallCheck(this,e)},tl=function(){var e={Important:1,DashCase:2};return e[e.Important]=\"Important\",e[e.DashCase]=\"DashCase\",e}(),nl=function(){var e=function e(){_classCallCheck(this,e)};return e.__NG_ELEMENT_ID__=function(){return rl()},e}(),rl=function(){var e=en(),t=qt(rn().index,e);return function(e){var t=e[11];if(Ft(t))return t;throw new Error(\"Cannot inject Renderer2 when the application uses Renderer3!\")}(Ot(t)?t:e)},il=function(){var e=function e(){_classCallCheck(this,e)};return e.\\u0275prov=_e({token:e,providedIn:\"root\",factory:function(){return null}}),e}(),al=function e(t){_classCallCheck(this,e),this.full=t,this.major=t.split(\".\")[0],this.minor=t.split(\".\")[1],this.patch=t.split(\".\").slice(2).join(\".\")},ol=new al(\"9.0.7\"),sl=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"supports\",value:function(e){return Lo(e)}},{key:\"create\",value:function(e){return new ul(e)}}]),e}(),ll=function(e,t){return t},ul=function(){function e(t){_classCallCheck(this,e),this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=t||ll}return _createClass(e,[{key:\"forEachItem\",value:function(e){var t;for(t=this._itHead;null!==t;t=t._next)e(t)}},{key:\"forEachOperation\",value:function(e){for(var t=this._itHead,n=this._removalsHead,r=0,i=null;t||n;){var a=!n||t&&t.currentIndex0&&Ba(u,d,b.join(\" \"))}a=Ut(_[1],0),t&&(a.projection=t.map((function(e){return Array.from(e)}))),i=function(e,t,n,r,i){var a=n[1],o=function(e,t,n){var r=rn();e.firstCreatePass&&(n.providersResolver&&n.providersResolver(n),Ki(e,r,1),ea(e,t,n));var i=or(t,e,t.length-1,r);ai(i,t);var a=Wt(r,t);return a&&ai(a,t),i}(a,n,t);r.components.push(o),e[8]=o,i&&i.forEach((function(e){return e(o,t)})),t.contentQueries&&t.contentQueries(1,o,n.length-1);var s=rn();if(a.firstCreatePass&&(null!==t.hostBindings||null!==t.hostAttrs)){Cn(s.index-19);var l=n[1];Gi(l,t),$i(l,n,t.hostVars),Ji(t,o)}return o}(v,this.componentDef,_,m,[Ys]),Ai(p,_,null)}finally{kn()}var k=new Yl(this.componentType,i,Za(Qs,a,_),_,a);return n&&!f||(k.hostView._tViewNode.child=a),k}},{key:\"inputs\",get:function(){return xl(this.componentDef.inputs)}},{key:\"outputs\",get:function(){return xl(this.componentDef.outputs)}}]),n}(Js),Yl=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s,l,u,c;return _classCallCheck(this,n),(s=t.call(this)).location=i,s._rootLView=a,s._tNode=o,s.destroyCbs=[],s.instance=r,s.hostView=s.changeDetectorRef=new Ka(a),s.hostView._tViewNode=(l=a[1],u=a,null==(c=l.node)&&(l.node=c=Wi(0,null,2,-1,null,null)),u[6]=c),s.componentType=e,s}return _createClass(n,[{key:\"destroy\",value:function(){this.destroyCbs&&(this.destroyCbs.forEach((function(e){return e()})),this.destroyCbs=null,!this.hostView.destroyed&&this.hostView.destroy())}},{key:\"onDestroy\",value:function(e){this.destroyCbs&&this.destroyCbs.push(e)}},{key:\"injector\",get:function(){return new ur(this._tNode,this._rootLView)}}]),n}(function(){return function e(){_classCallCheck(this,e)}}()),El=void 0,Il=[\"en\",[[\"a\",\"p\"],[\"AM\",\"PM\"],El],[[\"AM\",\"PM\"],El,El],[[\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"],[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"]],El,[[\"J\",\"F\",\"M\",\"A\",\"M\",\"J\",\"J\",\"A\",\"S\",\"O\",\"N\",\"D\"],[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"]],El,[[\"B\",\"A\"],[\"BC\",\"AD\"],[\"Before Christ\",\"Anno Domini\"]],0,[6,0],[\"M/d/yy\",\"MMM d, y\",\"MMMM d, y\",\"EEEE, MMMM d, y\"],[\"h:mm a\",\"h:mm:ss a\",\"h:mm:ss a z\",\"h:mm:ss a zzzz\"],[\"{1}, {0}\",El,\"{1} 'at' {0}\",El],[\".\",\",\",\";\",\"%\",\"+\",\"-\",\"E\",\"\\xd7\",\"\\u2030\",\"\\u221e\",\"NaN\",\":\"],[\"#,##0.###\",\"#,##0%\",\"\\xa4#,##0.00\",\"#E0\"],\"USD\",\"$\",\"US Dollar\",{},function(e){var t=Math.floor(Math.abs(e)),n=e.toString().replace(/^[^.]*\\.?/,\"\").length;return 1===t&&0===n?1:5}],Al={};function Pl(e){return function(e){var t=function(e){return e.toLowerCase().replace(/_/g,\"-\")}(e),n=jl(t);if(n)return n;var r=t.split(\"-\")[0];if(n=jl(r))return n;if(\"en\"===r)return Il;throw new Error('Missing locale data for the locale \"'.concat(e,'\".'))}(e)[Rl.PluralCase]}function jl(e){return e in Al||(Al[e]=Re.ng&&Re.ng.common&&Re.ng.common.locales&&Re.ng.common.locales[e]),Al[e]}var Rl=function(){var e={LocaleId:0,DayPeriodsFormat:1,DayPeriodsStandalone:2,DaysFormat:3,DaysStandalone:4,MonthsFormat:5,MonthsStandalone:6,Eras:7,FirstDayOfWeek:8,WeekendRange:9,DateFormat:10,TimeFormat:11,DateTimeFormat:12,NumberSymbols:13,NumberFormats:14,CurrencyCode:15,CurrencySymbol:16,CurrencyName:17,Currencies:18,PluralCase:19,ExtraData:20};return e[e.LocaleId]=\"LocaleId\",e[e.DayPeriodsFormat]=\"DayPeriodsFormat\",e[e.DayPeriodsStandalone]=\"DayPeriodsStandalone\",e[e.DaysFormat]=\"DaysFormat\",e[e.DaysStandalone]=\"DaysStandalone\",e[e.MonthsFormat]=\"MonthsFormat\",e[e.MonthsStandalone]=\"MonthsStandalone\",e[e.Eras]=\"Eras\",e[e.FirstDayOfWeek]=\"FirstDayOfWeek\",e[e.WeekendRange]=\"WeekendRange\",e[e.DateFormat]=\"DateFormat\",e[e.TimeFormat]=\"TimeFormat\",e[e.DateTimeFormat]=\"DateTimeFormat\",e[e.NumberSymbols]=\"NumberSymbols\",e[e.NumberFormats]=\"NumberFormats\",e[e.CurrencyCode]=\"CurrencyCode\",e[e.CurrencySymbol]=\"CurrencySymbol\",e[e.CurrencyName]=\"CurrencyName\",e[e.Currencies]=\"Currencies\",e[e.PluralCase]=\"PluralCase\",e[e.ExtraData]=\"ExtraData\",e}(),Hl=/^\\s*(\\ufffd\\d+:?\\d*\\ufffd)\\s*,\\s*(select|plural)\\s*,/,Fl=/\\ufffd\\/?\\*(\\d+:\\d+)\\ufffd/gi,Nl=/\\ufffd(\\/?[#*!]\\d+):?\\d*\\ufffd/gi,zl=/\\ufffd(\\d+):?\\d*\\ufffd/gi,Vl=/({\\s*\\ufffd\\d+:?\\d*\\ufffd\\s*,\\s*\\S{6}\\s*,[\\s\\S]*})/gi;function Wl(e){if(!e)return[];var t,n=0,r=[],i=[],a=/[{}]/g;for(a.lastIndex=0;t=a.exec(e);){var o=t.index;if(\"}\"==t[0]){if(r.pop(),0==r.length){var s=e.substring(n,o);Hl.test(s)?i.push(Ul(s)):i.push(s),n=o+1}}else{if(0==r.length){var l=e.substring(n,o);i.push(l),n=o+1}r.push(\"{\")}}var u=e.substring(n);return i.push(u),i}function Ul(e){for(var t=[],n=[],r=1,i=0,a=Wl(e=e.replace(Hl,(function(e,t,n){return r=\"select\"===n?0:1,i=parseInt(t.substr(1),10),\"\"}))),o=0;on.length&&n.push(l)}return{type:r,mainBinding:i,cases:t,values:n}}function Bl(e){for(var t,n,r=\"\",i=0,a=!1;null!==(t=Fl.exec(e));)a?t[0]===\"\\ufffd/*\".concat(n,\"\\ufffd\")&&(i=t.index,a=!1):(r+=e.substring(i,t.index+t[0].length),n=t[1],a=!0);return r+=e.substr(i)}function ql(e,t,n){for(var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,i=[null,null],a=e.split(zl),o=0,s=0;s1&&void 0!==arguments[1]?arguments[1]:0;n|=Kl(e.mainBinding);for(var r=0;r>>17;o=Xl(n,a,h===e?r[6]:Ut(n,h),o,r);break;case 0:var f=u>=0,m=(f?u:~u)>>>3;s.push(m),o=a,(a=Ut(n,m))&&an(a,f);break;case 5:o=a=Ut(n,u>>>3),an(a,!1);break;case 4:var p=t[++l],_=t[++l];na(Ut(n,u>>>3),r,p,_,null,null);break;default:throw new Error('Unable to determine the type of mutate operation for \"'.concat(u,'\"'))}else switch(u){case Ci:var v=t[++l],g=t[++l],y=i.createComment(v);o=a,a=eu(n,r,g,5,y,null),s.push(g),ai(y,r),a.activeCaseIndex=null,sn();break;case wi:var b=t[++l],k=t[++l];o=a,a=eu(n,r,k,3,i.createElement(b),b),s.push(k);break;default:throw new Error('Unable to determine the type of mutate operation for \"'.concat(u,'\"'))}}return sn(),s}function nu(e,t,n,r){var i=Ut(e,n),a=Vt(n,t);a&&Fa(t[11],a);var o=Bt(t,n);if(Yt(o)){var s=o;0!==i.type&&Fa(t[11],s[7])}r&&(i.flags|=64)}function ru(e,t,n){var r;(function(e,t,n){var r=tn();$l[++Jl]=e,ts(!0),r.firstCreatePass&&null===r.data[e+19]&&function(e,t,n,r,i){var a=t.blueprint.length-19;Zl=0;var o=rn(),s=on()?o:o&&o.parent,l=s&&s!==e[6]?s.index-19:n,u=0;Ql[u]=l;var c=[];if(n>0&&o!==s){var d=o.index-19;on()||(d=~d),c.push(d<<3|0)}for(var h,f=[],m=[],p=function(e,t){if(\"number\"!=typeof t)return Bl(e);var n=e.indexOf(\":\".concat(t,\"\\ufffd\"))+2+t.toString().length,r=e.search(new RegExp(\"\\ufffd\\\\/\\\\*\\\\d+:\".concat(t,\"\\ufffd\")));return Bl(e.substring(n,r))}(r,i),_=(h=p,h.replace(fu,\" \")).split(Nl),v=0;v<_.length;v++){var g=_[v];if(1&v)if(\"/\"===g.charAt(0)){if(\"#\"===g.charAt(1)){var y=parseInt(g.substr(2),10);l=Ql[--u],c.push(y<<3|5)}}else{var b=parseInt(g.substr(1),10),k=\"#\"===g.charAt(0);c.push((k?b:~b)<<3|0,l<<17|1),k&&(Ql[++u]=l=b)}else for(var w=Wl(g),C=0;C0&&function(e,t,n){if(n>0&&e.firstCreatePass){for(var r=0;r>1),o++}}(tn(),r),ts(!1)}function iu(e,t){!function(e,t,n,r){for(var i=rn().index-19,a=[],o=0;o6&&void 0!==arguments[6]&&arguments[6],l=!1,u=0;u>>2,_=void 0,v=void 0;switch(3&m){case 1:var g=t[++f],y=t[++f];Bi(a,Ut(a,p),o,g,h,o[11],y,!1);break;case 0:ba(o,p,h);break;case 2:if(_=n[t[++f]],null!==(v=Ut(a,p)).activeCaseIndex)for(var b=_.remove[v.activeCaseIndex],k=0;k>>3,!1);break;case 6:var C=Ut(a,b[k+1]>>>3).activeCaseIndex;null!==C&&st(n[w>>>3].remove[C],b)}}var M=uu(_,h);v.activeCaseIndex=-1!==M?M:null,M>-1&&(tu(-1,_.create[M],a,o),l=!0);break;case 3:_=n[t[++f]],null!==(v=Ut(a,p)).activeCaseIndex&&e(_.update[v.activeCaseIndex],n,r,i,a,o,l)}}}u+=d}}(t,i,a,au,n,o),au=0,ou=0}}function uu(e,t){var n=e.cases.indexOf(t);if(-1===n)switch(e.type){case 1:var r=function(e,t){switch(Pl(t)(e)){case 0:return\"zero\";case 1:return\"one\";case 2:return\"two\";case 3:return\"few\";case 4:return\"many\";default:return\"other\"}}(t,mu);-1===(n=e.cases.indexOf(r))&&\"other\"!==r&&(n=e.cases.indexOf(\"other\"));break;case 0:n=e.cases.indexOf(\"other\")}return n}function cu(e,t,n,r){for(var i=[],a=[],o=[],s=[],l=[],u=0;u null != \".concat(t,\" <=Actual]\"))}(0,t),\"string\"==typeof e&&(mu=e.toLowerCase().replace(/_/g,\"-\"))}var _u=new Map,vu=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;_classCallCheck(this,n),(i=t.call(this))._parent=r,i._bootstrapComponents=[],i.injector=_assertThisInitialized(i),i.destroyCbs=[],i.componentFactoryResolver=new Tl(_assertThisInitialized(i));var a=Dt(e),o=e[Ve]||null;return o&&pu(o),i._bootstrapComponents=Gn(a.bootstrap),i._r3Injector=lo(e,r,[{provide:at,useValue:_assertThisInitialized(i)},{provide:Zs,useValue:i.componentFactoryResolver}],Le(e)),i._r3Injector._resolveInjectorDefTypes(),i.instance=i.get(e),i}return _createClass(n,[{key:\"get\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:vo.THROW_IF_NOT_FOUND,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:fe.Default;return e===vo||e===at||e===qe?this:this._r3Injector.get(e,t,n)}},{key:\"destroy\",value:function(){var e=this._r3Injector;!e.destroyed&&e.destroy(),this.destroyCbs.forEach((function(e){return e()})),this.destroyCbs=null}},{key:\"onDestroy\",value:function(e){this.destroyCbs.push(e)}}]),n}(at),gu=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this)).moduleType=e,null!==Dt(e)&&function e(t){if(null!==t.\\u0275mod.id){var n=t.\\u0275mod.id;(function(e,t,n){if(t&&t!==n)throw new Error(\"Duplicate module registered for \".concat(e,\" - \").concat(Le(t),\" vs \").concat(Le(t.name)))})(n,_u.get(n),t),_u.set(n,t)}var r=t.\\u0275mod.imports;r instanceof Function&&(r=r()),r&&r.forEach((function(t){return e(t)}))}(e),r}return _createClass(n,[{key:\"create\",value:function(e){return new vu(this.moduleType,e)}}]),n}(ot);function yu(e,t,n){var r,i,a=(r=Qt.lFrame,-1===(i=r.bindingRootIndex)&&(i=r.bindingRootIndex=r.tView.bindingStartIndex),i+e),o=en();return o[a]===gi?function(e,t,n){return e[t]=n}(o,a,n?t.call(n):t()):function(e,t){return e[t]}(o,a)}var bu=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return _classCallCheck(this,n),(e=t.call(this)).__isAsync=r,e}return _createClass(n,[{key:\"emit\",value:function(e){_get(_getPrototypeOf(n.prototype),\"next\",this).call(this,e)}},{key:\"subscribe\",value:function(e,t,r){var i,a=function(e){return null},o=function(){return null};e&&\"object\"==typeof e?(i=this.__isAsync?function(t){setTimeout((function(){return e.next(t)}))}:function(t){e.next(t)},e.error&&(a=this.__isAsync?function(t){setTimeout((function(){return e.error(t)}))}:function(t){e.error(t)}),e.complete&&(o=this.__isAsync?function(){setTimeout((function(){return e.complete()}))}:function(){e.complete()})):(i=this.__isAsync?function(t){setTimeout((function(){return e(t)}))}:function(t){e(t)},t&&(a=this.__isAsync?function(e){setTimeout((function(){return t(e)}))}:function(e){t(e)}),r&&(o=this.__isAsync?function(){setTimeout((function(){return r()}))}:function(){r()}));var s=_get(_getPrototypeOf(n.prototype),\"subscribe\",this).call(this,i,a,o);return e instanceof h&&e.add(s),s}}]),n}(x);function ku(){return this._results[Mo()]()}var wu=function(){function e(){_classCallCheck(this,e),this.dirty=!0,this._results=[],this.changes=new bu,this.length=0;var t=Mo(),n=e.prototype;n[t]||(n[t]=ku)}return _createClass(e,[{key:\"map\",value:function(e){return this._results.map(e)}},{key:\"filter\",value:function(e){return this._results.filter(e)}},{key:\"find\",value:function(e){return this._results.find(e)}},{key:\"reduce\",value:function(e,t){return this._results.reduce(e,t)}},{key:\"forEach\",value:function(e){this._results.forEach(e)}},{key:\"some\",value:function(e){return this._results.some(e)}},{key:\"toArray\",value:function(){return this._results.slice()}},{key:\"toString\",value:function(){return this._results.toString()}},{key:\"reset\",value:function(e){this._results=function e(t,n){void 0===n&&(n=t);for(var r=0;r0&&void 0!==arguments[0]?arguments[0]:[];_classCallCheck(this,e),this.queries=t}return _createClass(e,[{key:\"createEmbeddedView\",value:function(t){var n=t.queries;if(null!==n){for(var r=null!==t.contentQueries?t.contentQueries[0]:n.length,i=[],a=0;a3&&void 0!==arguments[3]?arguments[3]:null;_classCallCheck(this,e),this.predicate=t,this.descendants=n,this.isStatic=r,this.read=i},Lu=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];_classCallCheck(this,e),this.queries=t}return _createClass(e,[{key:\"elementStart\",value:function(e,t){for(var n=0;n1&&void 0!==arguments[1]?arguments[1]:-1;_classCallCheck(this,e),this.metadata=t,this.matches=null,this.indexInDeclarationView=-1,this.crossesNgTemplate=!1,this._appliesToNextNode=!0,this._declarationNodeIndex=n}return _createClass(e,[{key:\"elementStart\",value:function(e,t){this.isApplyingToNode(t)&&this.matchTNode(e,t)}},{key:\"elementEnd\",value:function(e){this._declarationNodeIndex===e.index&&(this._appliesToNextNode=!1)}},{key:\"template\",value:function(e,t){this.elementStart(e,t)}},{key:\"embeddedTView\",value:function(t,n){return this.isApplyingToNode(t)?(this.crossesNgTemplate=!0,this.addMatch(-t.index,n),new e(this.metadata)):null}},{key:\"isApplyingToNode\",value:function(e){if(this._appliesToNextNode&&!1===this.metadata.descendants){for(var t=this._declarationNodeIndex,n=e.parent;null!==n&&4===n.type&&n.index!==t;)n=n.parent;return t===(null!==n?n.index:-1)}return this._appliesToNextNode}},{key:\"matchTNode\",value:function(e,t){if(Array.isArray(this.metadata.predicate))for(var n=this.metadata.predicate,r=0;r0)i.push(s[l/2]);else{for(var c=o[l+1],d=n[-u],h=9;h0&&(i=setTimeout((function(){r._callbacks=r._callbacks.filter((function(e){return e.timeoutId!==i})),e(r._didWork,r.getPendingTasks())}),t)),this._callbacks.push({doneCb:e,timeoutId:i,updateCb:n})}},{key:\"whenStable\",value:function(e,t,n){if(n&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is \"zone.js/dist/task-tracking.js\" loaded?');this.addCallback(e,t,n),this._runCallbacksIfReady()}},{key:\"getPendingRequestCount\",value:function(){return this._pendingCount}},{key:\"findProviders\",value:function(e,t,n){return[]}}]),e}();return e.\\u0275fac=function(t){return new(t||e)(et(cc))},e.\\u0275prov=_e({token:e,factory:e.\\u0275fac}),e}(),bc=function(){var e=function(){function e(){_classCallCheck(this,e),this._applications=new Map,kc.addToWindow(this)}return _createClass(e,[{key:\"registerApplication\",value:function(e,t){this._applications.set(e,t)}},{key:\"unregisterApplication\",value:function(e){this._applications.delete(e)}},{key:\"unregisterAllApplications\",value:function(){this._applications.clear()}},{key:\"getTestability\",value:function(e){return this._applications.get(e)||null}},{key:\"getAllTestabilities\",value:function(){return Array.from(this._applications.values())}},{key:\"getAllRootElements\",value:function(){return Array.from(this._applications.keys())}},{key:\"findTestabilityInTree\",value:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return kc.findTestabilityInTree(this,e,t)}}]),e}();return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=_e({token:e,factory:e.\\u0275fac}),e}(),kc=new(function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"addToWindow\",value:function(e){}},{key:\"findTestabilityInTree\",value:function(e,t,n){return null}}]),e}()),wc=function(e,t,n){var r=new gu(n);if(0===yo.size)return Promise.resolve(r);var i,a,o=(i=e.get(sc,[]).concat(t).map((function(e){return e.providers})),a=[],i.forEach((function(e){return e&&a.push.apply(a,_toConsumableArray(e))})),a);if(0===o.length)return Promise.resolve(r);var s=function(){var e=Re.ng;if(!e||!e.\\u0275compilerFacade)throw new Error(\"Angular JIT compilation failed: '@angular/compiler' not loaded!\\n - JIT compilation is discouraged for production use-cases! Consider AOT mode instead.\\n - Did you bootstrap using '@angular/platform-browser-dynamic' or '@angular/platform-server'?\\n - Alternatively provide the compiler with 'import \\\"@angular/compiler\\\";' before bootstrapping.\");return e.\\u0275compilerFacade}(),l=vo.create({providers:o}).get(s.ResourceLoader);return function(e){var t=[],n=new Map;function r(e){var t=n.get(e);if(!t){var r=function(e){return Promise.resolve(l.get(e))}(e);n.set(e,t=r.then(ko))}return t}return yo.forEach((function(e,n){var i=[];e.templateUrl&&i.push(r(e.templateUrl).then((function(t){e.template=t})));var a=e.styleUrls,o=e.styles||(e.styles=[]),s=e.styles.length;a&&a.forEach((function(t,n){o.push(\"\"),i.push(r(t).then((function(r){o[s+n]=r,a.splice(a.indexOf(t),1),0==a.length&&(e.styleUrls=void 0)})))}));var l=Promise.all(i).then((function(){return function(e){bo.delete(e)}(n)}));t.push(l)})),yo=new Map,Promise.all(t).then((function(){}))}().then((function(){return r}))},Cc=new Be(\"AllowMultipleToken\"),Mc=function e(t,n){_classCallCheck(this,e),this.name=t,this.token=n};function Sc(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],r=\"Platform: \".concat(t),i=new Be(r);return function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],a=Lc();if(!a||a.injector.get(Cc,!1))if(e)e(n.concat(t).concat({provide:i,useValue:!0}));else{var o=n.concat(t).concat({provide:i,useValue:!0},{provide:no,useValue:\"platform\"});!function(e){if(vc&&!vc.destroyed&&!vc.injector.get(Cc,!1))throw new Error(\"There can be only one platform. Destroy the previous one to create a new one.\");vc=e.get(Tc);var t=e.get(Gu,null);t&&t.forEach((function(e){return e()}))}(vo.create({providers:o,name:r}))}return function(e){var t=Lc();if(!t)throw new Error(\"No platform exists!\");if(!t.injector.get(e,null))throw new Error(\"A platform with a different configuration has been created. Please destroy it first.\");return t}(i)}}function Lc(){return vc&&!vc.destroyed?vc:null}var Tc=function(){var e=function(){function e(t){_classCallCheck(this,e),this._injector=t,this._modules=[],this._destroyListeners=[],this._destroyed=!1}return _createClass(e,[{key:\"bootstrapModuleFactory\",value:function(e,t){var n,r,i=this,a=(n=t?t.ngZone:void 0,r=t&&t.ngZoneEventCoalescing||!1,\"noop\"===n?new gc:(\"zone.js\"===n?void 0:n)||new cc({enableLongStackTrace:Lr(),shouldCoalesceEventChangeDetection:r})),o=[{provide:cc,useValue:a}];return a.run((function(){var t=vo.create({providers:o,parent:i.injector,name:e.moduleType.name}),n=e.create(t),r=n.injector.get(mr,null);if(!r)throw new Error(\"No ErrorHandler. Is platform module (BrowserModule) included?\");return n.onDestroy((function(){return Yc(i._modules,n)})),a.runOutsideAngular((function(){return a.onError.subscribe({next:function(e){r.handleError(e)}})})),function(e,t,r){try{var a=((o=n.injector.get(Wu)).runInitializers(),o.donePromise.then((function(){return pu(n.injector.get(Zu,\"en-US\")||\"en-US\"),i._moduleDoBootstrap(n),n})));return Uo(a)?a.catch((function(n){throw t.runOutsideAngular((function(){return e.handleError(n)})),n})):a}catch(s){throw t.runOutsideAngular((function(){return e.handleError(s)})),s}var o}(r,a)}))}},{key:\"bootstrapModule\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],r=xc({},n);return wc(this.injector,r,e).then((function(e){return t.bootstrapModuleFactory(e,r)}))}},{key:\"_moduleDoBootstrap\",value:function(e){var t=e.injector.get(Oc);if(e._bootstrapComponents.length>0)e._bootstrapComponents.forEach((function(e){return t.bootstrap(e)}));else{if(!e.instance.ngDoBootstrap)throw new Error(\"The module \".concat(Le(e.instance.constructor),' was bootstrapped, but it does not declare \"@NgModule.bootstrap\" components nor a \"ngDoBootstrap\" method. ')+\"Please define one of these.\");e.instance.ngDoBootstrap(t)}this._modules.push(e)}},{key:\"onDestroy\",value:function(e){this._destroyListeners.push(e)}},{key:\"destroy\",value:function(){if(this._destroyed)throw new Error(\"The platform has already been destroyed!\");this._modules.slice().forEach((function(e){return e.destroy()})),this._destroyListeners.forEach((function(e){return e()})),this._destroyed=!0}},{key:\"injector\",get:function(){return this._injector}},{key:\"destroyed\",get:function(){return this._destroyed}}]),e}();return e.\\u0275fac=function(t){return new(t||e)(et(vo))},e.\\u0275prov=_e({token:e,factory:e.\\u0275fac}),e}();function xc(e,t){return Array.isArray(t)?t.reduce(xc,e):Object.assign(Object.assign({},e),t)}var Dc,Oc=((Dc=function(){function e(t,n,r,i,a,o){var s=this;_classCallCheck(this,e),this._zone=t,this._console=n,this._injector=r,this._exceptionHandler=i,this._componentFactoryResolver=a,this._initStatus=o,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._enforceNoNewChanges=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._enforceNoNewChanges=Lr(),this._zone.onMicrotaskEmpty.subscribe({next:function(){s._zone.run((function(){s.tick()}))}});var l=new w((function(e){s._stable=s._zone.isStable&&!s._zone.hasPendingMacrotasks&&!s._zone.hasPendingMicrotasks,s._zone.runOutsideAngular((function(){e.next(s._stable),e.complete()}))})),u=new w((function(e){var t;s._zone.runOutsideAngular((function(){t=s._zone.onStable.subscribe((function(){cc.assertNotInAngularZone(),uc((function(){s._stable||s._zone.hasPendingMacrotasks||s._zone.hasPendingMicrotasks||(s._stable=!0,e.next(!0))}))}))}));var n=s._zone.onUnstable.subscribe((function(){cc.assertInAngularZone(),s._stable&&(s._stable=!1,s._zone.runOutsideAngular((function(){e.next(!1)})))}));return function(){t.unsubscribe(),n.unsubscribe()}}));this.isStable=K(l,u.pipe(oe()))}return _createClass(e,[{key:\"bootstrap\",value:function(e,t){var n,r=this;if(!this._initStatus.done)throw new Error(\"Cannot bootstrap as there are still asynchronous initializers running. Bootstrap components in the `ngDoBootstrap` method of the root module.\");n=e instanceof Js?e:this._componentFactoryResolver.resolveComponentFactory(e),this.componentTypes.push(n.componentType);var i=n.isBoundToModule?void 0:this._injector.get(at),a=n.create(vo.NULL,[],t||n.selector,i);a.onDestroy((function(){r._unloadComponent(a)}));var o=a.injector.get(yc,null);return o&&a.injector.get(bc).registerApplication(a.location.nativeElement,o),this._loadComponent(a),Lr()&&this._console.log(\"Angular is running in the development mode. Call enableProdMode() to enable the production mode.\"),a}},{key:\"tick\",value:function(){var e=this;if(this._runningTick)throw new Error(\"ApplicationRef.tick is called recursively\");try{this._runningTick=!0;var t,n=_createForOfIteratorHelper(this._views);try{for(n.s();!(t=n.n()).done;)t.value.detectChanges()}catch(a){n.e(a)}finally{n.f()}if(this._enforceNoNewChanges){var r,i=_createForOfIteratorHelper(this._views);try{for(i.s();!(r=i.n()).done;)r.value.checkNoChanges()}catch(a){i.e(a)}finally{i.f()}}}catch(o){this._zone.runOutsideAngular((function(){return e._exceptionHandler.handleError(o)}))}finally{this._runningTick=!1}}},{key:\"attachView\",value:function(e){var t=e;this._views.push(t),t.attachToAppRef(this)}},{key:\"detachView\",value:function(e){var t=e;Yc(this._views,t),t.detachFromAppRef()}},{key:\"_loadComponent\",value:function(e){this.attachView(e.hostView),this.tick(),this.components.push(e),this._injector.get(Ju,[]).concat(this._bootstrapListeners).forEach((function(t){return t(e)}))}},{key:\"_unloadComponent\",value:function(e){this.detachView(e.hostView),Yc(this.components,e)}},{key:\"ngOnDestroy\",value:function(){this._views.slice().forEach((function(e){return e.destroy()}))}},{key:\"viewCount\",get:function(){return this._views.length}}]),e}()).\\u0275fac=function(e){return new(e||Dc)(et(cc),et(Ku),et(vo),et(mr),et(Zs),et(Wu))},Dc.\\u0275prov=_e({token:Dc,factory:Dc.\\u0275fac}),Dc);function Yc(e,t){var n=e.indexOf(t);n>-1&&e.splice(n,1)}var Ec=function e(){_classCallCheck(this,e)},Ic=function e(){_classCallCheck(this,e)},Ac={factoryPathPrefix:\"\",factoryPathSuffix:\".ngfactory\"},Pc=function(){var e=function(){function e(t,n){_classCallCheck(this,e),this._compiler=t,this._config=n||Ac}return _createClass(e,[{key:\"load\",value:function(e){return this.loadAndCompile(e)}},{key:\"loadAndCompile\",value:function(e){var t=this,r=_slicedToArray(e.split(\"#\"),2),i=r[0],a=r[1];return void 0===a&&(a=\"default\"),n(\"zn8P\")(i).then((function(e){return e[a]})).then((function(e){return jc(e,i,a)})).then((function(e){return t._compiler.compileModuleAsync(e)}))}},{key:\"loadFactory\",value:function(e){var t=_slicedToArray(e.split(\"#\"),2),r=t[0],i=t[1],a=\"NgFactory\";return void 0===i&&(i=\"default\",a=\"\"),n(\"zn8P\")(this._config.factoryPathPrefix+r+this._config.factoryPathSuffix).then((function(e){return e[i+a]})).then((function(e){return jc(e,r,i)}))}}]),e}();return e.\\u0275fac=function(t){return new(t||e)(et(oc),et(Ic,8))},e.\\u0275prov=_e({token:e,factory:e.\\u0275fac}),e}();function jc(e,t,n){if(!e)throw new Error(\"Cannot find '\".concat(n,\"' in '\").concat(t,\"'\"));return e}var Rc=Sc(null,\"core\",[{provide:$u,useValue:\"unknown\"},{provide:Tc,deps:[vo]},{provide:bc,deps:[]},{provide:Ku,deps:[]}]),Hc=[{provide:Oc,useClass:Oc,deps:[cc,Ku,vo,mr,Zs,Wu]},{provide:Dl,deps:[cc],useFactory:function(e){var t=[];return e.onStable.subscribe((function(){for(;t.length;)t.pop()()})),function(e){t.push(e)}}},{provide:Wu,useClass:Wu,deps:[[new ce,Vu]]},{provide:oc,useClass:oc,deps:[]},Bu,{provide:vl,useFactory:function(){return bl},deps:[]},{provide:gl,useFactory:function(){return kl},deps:[]},{provide:Zu,useFactory:function(e){return pu(e=e||\"undefined\"!=typeof $localize&&$localize.locale||\"en-US\"),e},deps:[[new ue(Zu),new ce,new he]]},{provide:Qu,useValue:\"USD\"}],Fc=function(){var e=function e(t){_classCallCheck(this,e)};return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=ve({factory:function(t){return new(t||e)(et(Oc))},providers:Hc}),e}(),Nc=null;function zc(){return Nc}var Vc,Wc=new Be(\"DocumentToken\"),Uc=((Vc=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Vc)},Vc.\\u0275prov=_e({factory:Bc,token:Vc,providedIn:\"platform\"}),Vc);function Bc(){return et($c)}var qc,Gc=new Be(\"Location Initialized\"),$c=((qc=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this))._doc=e,r._init(),r}return _createClass(n,[{key:\"_init\",value:function(){this.location=zc().getLocation(),this._history=zc().getHistory()}},{key:\"getBaseHrefFromDOM\",value:function(){return zc().getBaseHref(this._doc)}},{key:\"onPopState\",value:function(e){zc().getGlobalEventTarget(this._doc,\"window\").addEventListener(\"popstate\",e,!1)}},{key:\"onHashChange\",value:function(e){zc().getGlobalEventTarget(this._doc,\"window\").addEventListener(\"hashchange\",e,!1)}},{key:\"pushState\",value:function(e,t,n){Jc()?this._history.pushState(e,t,n):this.location.hash=n}},{key:\"replaceState\",value:function(e,t,n){Jc()?this._history.replaceState(e,t,n):this.location.hash=n}},{key:\"forward\",value:function(){this._history.forward()}},{key:\"back\",value:function(){this._history.back()}},{key:\"getState\",value:function(){return this._history.state}},{key:\"href\",get:function(){return this.location.href}},{key:\"protocol\",get:function(){return this.location.protocol}},{key:\"hostname\",get:function(){return this.location.hostname}},{key:\"port\",get:function(){return this.location.port}},{key:\"pathname\",get:function(){return this.location.pathname},set:function(e){this.location.pathname=e}},{key:\"search\",get:function(){return this.location.search}},{key:\"hash\",get:function(){return this.location.hash}}]),n}(Uc)).\\u0275fac=function(e){return new(e||qc)(et(Wc))},qc.\\u0275prov=_e({factory:Kc,token:qc,providedIn:\"platform\"}),qc);function Jc(){return!!window.history.pushState}function Kc(){return new $c(et(Wc))}function Zc(e,t){if(0==e.length)return t;if(0==t.length)return e;var n=0;return e.endsWith(\"/\")&&n++,t.startsWith(\"/\")&&n++,2==n?e+t.substring(1):1==n?e+t:e+\"/\"+t}function Qc(e){var t=e.match(/#|\\?|$/),n=t&&t.index||e.length;return e.slice(0,n-(\"/\"===e[n-1]?1:0))+e.slice(n)}function Xc(e){return e&&\"?\"!==e[0]?\"?\"+e:e}var ed,td=((ed=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||ed)},ed.\\u0275prov=_e({factory:nd,token:ed,providedIn:\"root\"}),ed);function nd(e){var t=et(Wc).location;return new sd(et(Uc),t&&t.origin||\"\")}var rd,id,ad,od=new Be(\"appBaseHref\"),sd=((ad=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;if(_classCallCheck(this,n),(i=t.call(this))._platformLocation=e,null==r&&(r=i._platformLocation.getBaseHrefFromDOM()),null==r)throw new Error(\"No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.\");return i._baseHref=r,_possibleConstructorReturn(i)}return _createClass(n,[{key:\"onPopState\",value:function(e){this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e)}},{key:\"getBaseHref\",value:function(){return this._baseHref}},{key:\"prepareExternalUrl\",value:function(e){return Zc(this._baseHref,e)}},{key:\"path\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=this._platformLocation.pathname+Xc(this._platformLocation.search),n=this._platformLocation.hash;return n&&e?\"\".concat(t).concat(n):t}},{key:\"pushState\",value:function(e,t,n,r){var i=this.prepareExternalUrl(n+Xc(r));this._platformLocation.pushState(e,t,i)}},{key:\"replaceState\",value:function(e,t,n,r){var i=this.prepareExternalUrl(n+Xc(r));this._platformLocation.replaceState(e,t,i)}},{key:\"forward\",value:function(){this._platformLocation.forward()}},{key:\"back\",value:function(){this._platformLocation.back()}}]),n}(td)).\\u0275fac=function(e){return new(e||ad)(et(Uc),et(od,8))},ad.\\u0275prov=_e({token:ad,factory:ad.\\u0275fac}),ad),ld=((id=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this))._platformLocation=e,i._baseHref=\"\",null!=r&&(i._baseHref=r),i}return _createClass(n,[{key:\"onPopState\",value:function(e){this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e)}},{key:\"getBaseHref\",value:function(){return this._baseHref}},{key:\"path\",value:function(){arguments.length>0&&void 0!==arguments[0]&&arguments[0];var e=this._platformLocation.hash;return null==e&&(e=\"#\"),e.length>0?e.substring(1):e}},{key:\"prepareExternalUrl\",value:function(e){var t=Zc(this._baseHref,e);return t.length>0?\"#\"+t:t}},{key:\"pushState\",value:function(e,t,n,r){var i=this.prepareExternalUrl(n+Xc(r));0==i.length&&(i=this._platformLocation.pathname),this._platformLocation.pushState(e,t,i)}},{key:\"replaceState\",value:function(e,t,n,r){var i=this.prepareExternalUrl(n+Xc(r));0==i.length&&(i=this._platformLocation.pathname),this._platformLocation.replaceState(e,t,i)}},{key:\"forward\",value:function(){this._platformLocation.forward()}},{key:\"back\",value:function(){this._platformLocation.back()}}]),n}(td)).\\u0275fac=function(e){return new(e||id)(et(Uc),et(od,8))},id.\\u0275prov=_e({token:id,factory:id.\\u0275fac}),id),ud=((rd=function(){function e(t,n){var r=this;_classCallCheck(this,e),this._subject=new bu,this._urlChangeListeners=[],this._platformStrategy=t;var i=this._platformStrategy.getBaseHref();this._platformLocation=n,this._baseHref=Qc(dd(i)),this._platformStrategy.onPopState((function(e){r._subject.emit({url:r.path(!0),pop:!0,state:e.state,type:e.type})}))}return _createClass(e,[{key:\"path\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return this.normalize(this._platformStrategy.path(e))}},{key:\"getState\",value:function(){return this._platformLocation.getState()}},{key:\"isCurrentPathEqualTo\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\";return this.path()==this.normalize(e+Xc(t))}},{key:\"normalize\",value:function(t){return e.stripTrailingSlash(function(e,t){return e&&t.startsWith(e)?t.substring(e.length):t}(this._baseHref,dd(t)))}},{key:\"prepareExternalUrl\",value:function(e){return e&&\"/\"!==e[0]&&(e=\"/\"+e),this._platformStrategy.prepareExternalUrl(e)}},{key:\"go\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;this._platformStrategy.pushState(n,\"\",e,t),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+Xc(t)),n)}},{key:\"replaceState\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;this._platformStrategy.replaceState(n,\"\",e,t),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+Xc(t)),n)}},{key:\"forward\",value:function(){this._platformStrategy.forward()}},{key:\"back\",value:function(){this._platformStrategy.back()}},{key:\"onUrlChange\",value:function(e){var t=this;this._urlChangeListeners.push(e),this.subscribe((function(e){t._notifyUrlChangeListeners(e.url,e.state)}))}},{key:\"_notifyUrlChangeListeners\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\",t=arguments.length>1?arguments[1]:void 0;this._urlChangeListeners.forEach((function(n){return n(e,t)}))}},{key:\"subscribe\",value:function(e,t,n){return this._subject.subscribe({next:e,error:t,complete:n})}}]),e}()).\\u0275fac=function(e){return new(e||rd)(et(td),et(Uc))},rd.normalizeQueryParams=Xc,rd.joinWithSlash=Zc,rd.stripTrailingSlash=Qc,rd.\\u0275prov=_e({factory:cd,token:rd,providedIn:\"root\"}),rd);function cd(){return new ud(et(td),et(Uc))}function dd(e){return e.replace(/\\/index.html$/,\"\")}var hd,fd=function(){var e={Zero:0,One:1,Two:2,Few:3,Many:4,Other:5};return e[e.Zero]=\"Zero\",e[e.One]=\"One\",e[e.Two]=\"Two\",e[e.Few]=\"Few\",e[e.Many]=\"Many\",e[e.Other]=\"Other\",e}(),md=Pl,pd=function e(){_classCallCheck(this,e)},_d=((hd=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this)).locale=e,r}return _createClass(n,[{key:\"getPluralCategory\",value:function(e,t){switch(md(t||this.locale)(e)){case fd.Zero:return\"zero\";case fd.One:return\"one\";case fd.Two:return\"two\";case fd.Few:return\"few\";case fd.Many:return\"many\";default:return\"other\"}}}]),n}(pd)).\\u0275fac=function(e){return new(e||hd)(et(Zu))},hd.\\u0275prov=_e({token:hd,factory:hd.\\u0275fac}),hd);function vd(e,t){t=encodeURIComponent(t);var n,r=_createForOfIteratorHelper(e.split(\";\"));try{for(r.s();!(n=r.n()).done;){var i=n.value,a=i.indexOf(\"=\"),o=_slicedToArray(-1==a?[i,\"\"]:[i.slice(0,a),i.slice(a+1)],2),s=o[0],l=o[1];if(s.trim()===t)return decodeURIComponent(l)}}catch(u){r.e(u)}finally{r.f()}return null}var gd,yd,bd,kd=((gd=function(){function e(t,n,r,i){_classCallCheck(this,e),this._iterableDiffers=t,this._keyValueDiffers=n,this._ngEl=r,this._renderer=i,this._iterableDiffer=null,this._keyValueDiffer=null,this._initialClasses=[],this._rawClass=null}return _createClass(e,[{key:\"ngDoCheck\",value:function(){if(this._iterableDiffer){var e=this._iterableDiffer.diff(this._rawClass);e&&this._applyIterableChanges(e)}else if(this._keyValueDiffer){var t=this._keyValueDiffer.diff(this._rawClass);t&&this._applyKeyValueChanges(t)}}},{key:\"_applyKeyValueChanges\",value:function(e){var t=this;e.forEachAddedItem((function(e){return t._toggleClass(e.key,e.currentValue)})),e.forEachChangedItem((function(e){return t._toggleClass(e.key,e.currentValue)})),e.forEachRemovedItem((function(e){e.previousValue&&t._toggleClass(e.key,!1)}))}},{key:\"_applyIterableChanges\",value:function(e){var t=this;e.forEachAddedItem((function(e){if(\"string\"!=typeof e.item)throw new Error(\"NgClass can only toggle CSS classes expressed as strings, got \".concat(Le(e.item)));t._toggleClass(e.item,!0)})),e.forEachRemovedItem((function(e){return t._toggleClass(e.item,!1)}))}},{key:\"_applyClasses\",value:function(e){var t=this;e&&(Array.isArray(e)||e instanceof Set?e.forEach((function(e){return t._toggleClass(e,!0)})):Object.keys(e).forEach((function(n){return t._toggleClass(n,!!e[n])})))}},{key:\"_removeClasses\",value:function(e){var t=this;e&&(Array.isArray(e)||e instanceof Set?e.forEach((function(e){return t._toggleClass(e,!1)})):Object.keys(e).forEach((function(e){return t._toggleClass(e,!1)})))}},{key:\"_toggleClass\",value:function(e,t){var n=this;(e=e.trim())&&e.split(/\\s+/g).forEach((function(e){t?n._renderer.addClass(n._ngEl.nativeElement,e):n._renderer.removeClass(n._ngEl.nativeElement,e)}))}},{key:\"klass\",set:function(e){this._removeClasses(this._initialClasses),this._initialClasses=\"string\"==typeof e?e.split(/\\s+/):[],this._applyClasses(this._initialClasses),this._applyClasses(this._rawClass)}},{key:\"ngClass\",set:function(e){this._removeClasses(this._rawClass),this._applyClasses(this._initialClasses),this._iterableDiffer=null,this._keyValueDiffer=null,this._rawClass=\"string\"==typeof e?e.split(/\\s+/):e,this._rawClass&&(Lo(this._rawClass)?this._iterableDiffer=this._iterableDiffers.find(this._rawClass).create():this._keyValueDiffer=this._keyValueDiffers.find(this._rawClass).create())}}]),e}()).\\u0275fac=function(e){return new(e||gd)(Io(vl),Io(gl),Io(Qs),Io(nl))},gd.\\u0275dir=Lt({type:gd,selectors:[[\"\",\"ngClass\",\"\"]],inputs:{klass:[\"class\",\"klass\"],ngClass:\"ngClass\"}}),gd),wd=function(){function e(t,n,r,i){_classCallCheck(this,e),this.$implicit=t,this.ngForOf=n,this.index=r,this.count=i}return _createClass(e,[{key:\"first\",get:function(){return 0===this.index}},{key:\"last\",get:function(){return this.index===this.count-1}},{key:\"even\",get:function(){return this.index%2==0}},{key:\"odd\",get:function(){return!this.even}}]),e}(),Cd=((yd=function(){function e(t,n,r){_classCallCheck(this,e),this._viewContainer=t,this._template=n,this._differs=r,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}return _createClass(e,[{key:\"ngDoCheck\",value:function(){if(this._ngForOfDirty){this._ngForOfDirty=!1;var e=this._ngForOf;if(!this._differ&&e)try{this._differ=this._differs.find(e).create(this.ngForTrackBy)}catch(r){throw new Error(\"Cannot find a differ supporting object '\".concat(e,\"' of type '\").concat((t=e).name||typeof t,\"'. NgFor only supports binding to Iterables such as Arrays.\"))}}var t;if(this._differ){var n=this._differ.diff(this._ngForOf);n&&this._applyChanges(n)}}},{key:\"_applyChanges\",value:function(e){var t=this,n=[];e.forEachOperation((function(e,r,i){if(null==e.previousIndex){var a=t._viewContainer.createEmbeddedView(t._template,new wd(null,t._ngForOf,-1,-1),null===i?void 0:i),o=new Md(e,a);n.push(o)}else if(null==i)t._viewContainer.remove(null===r?void 0:r);else if(null!==r){var s=t._viewContainer.get(r);t._viewContainer.move(s,i);var l=new Md(e,s);n.push(l)}}));for(var r=0;r0){var r=e.slice(0,t),i=r.toLowerCase(),a=e.slice(t+1).trim();n.maybeSetNormalizedName(r,i),n.headers.has(i)?n.headers.get(i).push(a):n.headers.set(i,[a])}}))}:function(){n.headers=new Map,Object.keys(t).forEach((function(e){var r=t[e],i=e.toLowerCase();\"string\"==typeof r&&(r=[r]),r.length>0&&(n.headers.set(i,r),n.maybeSetNormalizedName(e,i))}))}:this.headers=new Map}return _createClass(e,[{key:\"has\",value:function(e){return this.init(),this.headers.has(e.toLowerCase())}},{key:\"get\",value:function(e){this.init();var t=this.headers.get(e.toLowerCase());return t&&t.length>0?t[0]:null}},{key:\"keys\",value:function(){return this.init(),Array.from(this.normalizedNames.values())}},{key:\"getAll\",value:function(e){return this.init(),this.headers.get(e.toLowerCase())||null}},{key:\"append\",value:function(e,t){return this.clone({name:e,value:t,op:\"a\"})}},{key:\"set\",value:function(e,t){return this.clone({name:e,value:t,op:\"s\"})}},{key:\"delete\",value:function(e,t){return this.clone({name:e,value:t,op:\"d\"})}},{key:\"maybeSetNormalizedName\",value:function(e,t){this.normalizedNames.has(t)||this.normalizedNames.set(t,e)}},{key:\"init\",value:function(){var t=this;this.lazyInit&&(this.lazyInit instanceof e?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach((function(e){return t.applyUpdate(e)})),this.lazyUpdate=null))}},{key:\"copyFrom\",value:function(e){var t=this;e.init(),Array.from(e.headers.keys()).forEach((function(n){t.headers.set(n,e.headers.get(n)),t.normalizedNames.set(n,e.normalizedNames.get(n))}))}},{key:\"clone\",value:function(t){var n=new e;return n.lazyInit=this.lazyInit&&this.lazyInit instanceof e?this.lazyInit:this,n.lazyUpdate=(this.lazyUpdate||[]).concat([t]),n}},{key:\"applyUpdate\",value:function(e){var t=e.name.toLowerCase();switch(e.op){case\"a\":case\"s\":var n=e.value;if(\"string\"==typeof n&&(n=[n]),0===n.length)return;this.maybeSetNormalizedName(e.name,t);var r=(\"a\"===e.op?this.headers.get(t):void 0)||[];r.push.apply(r,_toConsumableArray(n)),this.headers.set(t,r);break;case\"d\":var i=e.value;if(i){var a=this.headers.get(t);if(!a)return;0===(a=a.filter((function(e){return-1===i.indexOf(e)}))).length?(this.headers.delete(t),this.normalizedNames.delete(t)):this.headers.set(t,a)}else this.headers.delete(t),this.normalizedNames.delete(t)}}},{key:\"forEach\",value:function(e){var t=this;this.init(),Array.from(this.normalizedNames.keys()).forEach((function(n){return e(t.normalizedNames.get(n),t.headers.get(n))}))}}]),e}(),Xd=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"encodeKey\",value:function(e){return eh(e)}},{key:\"encodeValue\",value:function(e){return eh(e)}},{key:\"decodeKey\",value:function(e){return decodeURIComponent(e)}},{key:\"decodeValue\",value:function(e){return decodeURIComponent(e)}}]),e}();function eh(e){return encodeURIComponent(e).replace(/%40/gi,\"@\").replace(/%3A/gi,\":\").replace(/%24/gi,\"$\").replace(/%2C/gi,\",\").replace(/%3B/gi,\";\").replace(/%2B/gi,\"+\").replace(/%3D/gi,\"=\").replace(/%3F/gi,\"?\").replace(/%2F/gi,\"/\")}var th=function(){function e(){var t=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(_classCallCheck(this,e),this.updates=null,this.cloneFrom=null,this.encoder=n.encoder||new Xd,n.fromString){if(n.fromObject)throw new Error(\"Cannot specify both fromString and fromObject.\");this.map=function(e,t){var n=new Map;return e.length>0&&e.split(\"&\").forEach((function(e){var r=e.indexOf(\"=\"),i=_slicedToArray(-1==r?[t.decodeKey(e),\"\"]:[t.decodeKey(e.slice(0,r)),t.decodeValue(e.slice(r+1))],2),a=i[0],o=i[1],s=n.get(a)||[];s.push(o),n.set(a,s)})),n}(n.fromString,this.encoder)}else n.fromObject?(this.map=new Map,Object.keys(n.fromObject).forEach((function(e){var r=n.fromObject[e];t.map.set(e,Array.isArray(r)?r:[r])}))):this.map=null}return _createClass(e,[{key:\"has\",value:function(e){return this.init(),this.map.has(e)}},{key:\"get\",value:function(e){this.init();var t=this.map.get(e);return t?t[0]:null}},{key:\"getAll\",value:function(e){return this.init(),this.map.get(e)||null}},{key:\"keys\",value:function(){return this.init(),Array.from(this.map.keys())}},{key:\"append\",value:function(e,t){return this.clone({param:e,value:t,op:\"a\"})}},{key:\"set\",value:function(e,t){return this.clone({param:e,value:t,op:\"s\"})}},{key:\"delete\",value:function(e,t){return this.clone({param:e,value:t,op:\"d\"})}},{key:\"toString\",value:function(){var e=this;return this.init(),this.keys().map((function(t){var n=e.encoder.encodeKey(t);return e.map.get(t).map((function(t){return n+\"=\"+e.encoder.encodeValue(t)})).join(\"&\")})).filter((function(e){return\"\"!==e})).join(\"&\")}},{key:\"clone\",value:function(t){var n=new e({encoder:this.encoder});return n.cloneFrom=this.cloneFrom||this,n.updates=(this.updates||[]).concat([t]),n}},{key:\"init\",value:function(){var e=this;null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach((function(t){return e.map.set(t,e.cloneFrom.map.get(t))})),this.updates.forEach((function(t){switch(t.op){case\"a\":case\"s\":var n=(\"a\"===t.op?e.map.get(t.param):void 0)||[];n.push(t.value),e.map.set(t.param,n);break;case\"d\":if(void 0===t.value){e.map.delete(t.param);break}var r=e.map.get(t.param)||[],i=r.indexOf(t.value);-1!==i&&r.splice(i,1),r.length>0?e.map.set(t.param,r):e.map.delete(t.param)}})),this.cloneFrom=this.updates=null)}}]),e}();function nh(e){return\"undefined\"!=typeof ArrayBuffer&&e instanceof ArrayBuffer}function rh(e){return\"undefined\"!=typeof Blob&&e instanceof Blob}function ih(e){return\"undefined\"!=typeof FormData&&e instanceof FormData}var ah=function(){function e(t,n,r,i){var a;if(_classCallCheck(this,e),this.url=n,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType=\"json\",this.method=t.toUpperCase(),function(e){switch(e){case\"DELETE\":case\"GET\":case\"HEAD\":case\"OPTIONS\":case\"JSONP\":return!1;default:return!0}}(this.method)||i?(this.body=void 0!==r?r:null,a=i):a=r,a&&(this.reportProgress=!!a.reportProgress,this.withCredentials=!!a.withCredentials,a.responseType&&(this.responseType=a.responseType),a.headers&&(this.headers=a.headers),a.params&&(this.params=a.params)),this.headers||(this.headers=new Qd),this.params){var o=this.params.toString();if(0===o.length)this.urlWithParams=n;else{var s=n.indexOf(\"?\");this.urlWithParams=n+(-1===s?\"?\":s0&&void 0!==arguments[0]?arguments[0]:{},n=t.method||this.method,r=t.url||this.url,i=t.responseType||this.responseType,a=void 0!==t.body?t.body:this.body,o=void 0!==t.withCredentials?t.withCredentials:this.withCredentials,s=void 0!==t.reportProgress?t.reportProgress:this.reportProgress,l=t.headers||this.headers,u=t.params||this.params;return void 0!==t.setHeaders&&(l=Object.keys(t.setHeaders).reduce((function(e,n){return e.set(n,t.setHeaders[n])}),l)),t.setParams&&(u=Object.keys(t.setParams).reduce((function(e,n){return e.set(n,t.setParams[n])}),u)),new e(n,r,a,{params:u,headers:l,reportProgress:s,responseType:i,withCredentials:o})}}]),e}(),oh=function(){var e={Sent:0,UploadProgress:1,ResponseHeader:2,DownloadProgress:3,Response:4,User:5};return e[e.Sent]=\"Sent\",e[e.UploadProgress]=\"UploadProgress\",e[e.ResponseHeader]=\"ResponseHeader\",e[e.DownloadProgress]=\"DownloadProgress\",e[e.Response]=\"Response\",e[e.User]=\"User\",e}(),sh=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:200,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:\"OK\";_classCallCheck(this,e),this.headers=t.headers||new Qd,this.status=void 0!==t.status?t.status:n,this.statusText=t.statusText||r,this.url=t.url||null,this.ok=this.status>=200&&this.status<300},lh=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return _classCallCheck(this,n),(e=t.call(this,r)).type=oh.ResponseHeader,e}return _createClass(n,[{key:\"clone\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new n({headers:e.headers||this.headers,status:void 0!==e.status?e.status:this.status,statusText:e.statusText||this.statusText,url:e.url||this.url||void 0})}}]),n}(sh),uh=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return _classCallCheck(this,n),(e=t.call(this,r)).type=oh.Response,e.body=void 0!==r.body?r.body:null,e}return _createClass(n,[{key:\"clone\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new n({body:void 0!==e.body?e.body:this.body,headers:e.headers||this.headers,status:void 0!==e.status?e.status:this.status,statusText:e.statusText||this.statusText,url:e.url||this.url||void 0})}}]),n}(sh),ch=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this,e,0,\"Unknown Error\")).name=\"HttpErrorResponse\",r.ok=!1,r.message=r.status>=200&&r.status<300?\"Http failure during parsing for \".concat(e.url||\"(unknown url)\"):\"Http failure response for \".concat(e.url||\"(unknown url)\",\": \").concat(e.status,\" \").concat(e.statusText),r.error=e.error||null,r}return n}(sh);function dh(e,t){return{body:t,headers:e.headers,observe:e.observe,params:e.params,reportProgress:e.reportProgress,responseType:e.responseType,withCredentials:e.withCredentials}}var hh,fh,mh,ph,_h,vh,gh,yh,bh,kh=((hh=function(){function e(t){_classCallCheck(this,e),this.handler=t}return _createClass(e,[{key:\"request\",value:function(e,t){var n,r=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(e instanceof ah)n=e;else{var a=void 0;a=i.headers instanceof Qd?i.headers:new Qd(i.headers);var o=void 0;i.params&&(o=i.params instanceof th?i.params:new th({fromObject:i.params})),n=new ah(e,t,void 0!==i.body?i.body:null,{headers:a,params:o,reportProgress:i.reportProgress,responseType:i.responseType||\"json\",withCredentials:i.withCredentials})}var s=Bd(n).pipe(qd((function(e){return r.handler.handle(e)})));if(e instanceof ah||\"events\"===i.observe)return s;var l=s.pipe(Gd((function(e){return e instanceof uh})));switch(i.observe||\"body\"){case\"body\":switch(n.responseType){case\"arraybuffer\":return l.pipe(F((function(e){if(null!==e.body&&!(e.body instanceof ArrayBuffer))throw new Error(\"Response is not an ArrayBuffer.\");return e.body})));case\"blob\":return l.pipe(F((function(e){if(null!==e.body&&!(e.body instanceof Blob))throw new Error(\"Response is not a Blob.\");return e.body})));case\"text\":return l.pipe(F((function(e){if(null!==e.body&&\"string\"!=typeof e.body)throw new Error(\"Response is not a string.\");return e.body})));case\"json\":default:return l.pipe(F((function(e){return e.body})))}case\"response\":return l;default:throw new Error(\"Unreachable: unhandled observe type \".concat(i.observe,\"}\"))}}},{key:\"delete\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request(\"DELETE\",e,t)}},{key:\"get\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request(\"GET\",e,t)}},{key:\"head\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request(\"HEAD\",e,t)}},{key:\"jsonp\",value:function(e,t){return this.request(\"JSONP\",e,{params:(new th).append(t,\"JSONP_CALLBACK\"),observe:\"body\",responseType:\"json\"})}},{key:\"options\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request(\"OPTIONS\",e,t)}},{key:\"patch\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.request(\"PATCH\",e,dh(n,t))}},{key:\"post\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.request(\"POST\",e,dh(n,t))}},{key:\"put\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.request(\"PUT\",e,dh(n,t))}}]),e}()).\\u0275fac=function(e){return new(e||hh)(et(Kd))},hh.\\u0275prov=_e({token:hh,factory:hh.\\u0275fac}),hh),wh=function(){function e(t,n){_classCallCheck(this,e),this.next=t,this.interceptor=n}return _createClass(e,[{key:\"handle\",value:function(e){return this.interceptor.intercept(e,this.next)}}]),e}(),Ch=new Be(\"HTTP_INTERCEPTORS\"),Mh=((fh=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"intercept\",value:function(e,t){return t.handle(e)}}]),e}()).\\u0275fac=function(e){return new(e||fh)},fh.\\u0275prov=_e({token:fh,factory:fh.\\u0275fac}),fh),Sh=/^\\)\\]\\}',?\\n/,Lh=function e(){_classCallCheck(this,e)},Th=((ph=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"build\",value:function(){return new XMLHttpRequest}}]),e}()).\\u0275fac=function(e){return new(e||ph)},ph.\\u0275prov=_e({token:ph,factory:ph.\\u0275fac}),ph),xh=((mh=function(){function e(t){_classCallCheck(this,e),this.xhrFactory=t}return _createClass(e,[{key:\"handle\",value:function(e){var t=this;if(\"JSONP\"===e.method)throw new Error(\"Attempted to construct Jsonp request without JsonpClientModule installed.\");return new w((function(n){var r=t.xhrFactory.build();if(r.open(e.method,e.urlWithParams),e.withCredentials&&(r.withCredentials=!0),e.headers.forEach((function(e,t){return r.setRequestHeader(e,t.join(\",\"))})),e.headers.has(\"Accept\")||r.setRequestHeader(\"Accept\",\"application/json, text/plain, */*\"),!e.headers.has(\"Content-Type\")){var i=e.detectContentTypeHeader();null!==i&&r.setRequestHeader(\"Content-Type\",i)}if(e.responseType){var a=e.responseType.toLowerCase();r.responseType=\"json\"!==a?a:\"text\"}var o=e.serializeBody(),s=null,l=function(){if(null!==s)return s;var t=1223===r.status?204:r.status,n=r.statusText||\"OK\",i=new Qd(r.getAllResponseHeaders()),a=function(e){return\"responseURL\"in e&&e.responseURL?e.responseURL:/^X-Request-URL:/m.test(e.getAllResponseHeaders())?e.getResponseHeader(\"X-Request-URL\"):null}(r)||e.url;return s=new lh({headers:i,status:t,statusText:n,url:a})},u=function(){var t=l(),i=t.headers,a=t.status,o=t.statusText,s=t.url,u=null;204!==a&&(u=void 0===r.response?r.responseText:r.response),0===a&&(a=u?200:0);var c=a>=200&&a<300;if(\"json\"===e.responseType&&\"string\"==typeof u){var d=u;u=u.replace(Sh,\"\");try{u=\"\"!==u?JSON.parse(u):null}catch(h){u=d,c&&(c=!1,u={error:h,text:u})}}c?(n.next(new uh({body:u,headers:i,status:a,statusText:o,url:s||void 0})),n.complete()):n.error(new ch({error:u,headers:i,status:a,statusText:o,url:s||void 0}))},c=function(e){var t=l().url,i=new ch({error:e,status:r.status||0,statusText:r.statusText||\"Unknown Error\",url:t||void 0});n.error(i)},d=!1,h=function(t){d||(n.next(l()),d=!0);var i={type:oh.DownloadProgress,loaded:t.loaded};t.lengthComputable&&(i.total=t.total),\"text\"===e.responseType&&r.responseText&&(i.partialText=r.responseText),n.next(i)},f=function(e){var t={type:oh.UploadProgress,loaded:e.loaded};e.lengthComputable&&(t.total=e.total),n.next(t)};return r.addEventListener(\"load\",u),r.addEventListener(\"error\",c),e.reportProgress&&(r.addEventListener(\"progress\",h),null!==o&&r.upload&&r.upload.addEventListener(\"progress\",f)),r.send(o),n.next({type:oh.Sent}),function(){r.removeEventListener(\"error\",c),r.removeEventListener(\"load\",u),e.reportProgress&&(r.removeEventListener(\"progress\",h),null!==o&&r.upload&&r.upload.removeEventListener(\"progress\",f)),r.abort()}}))}}]),e}()).\\u0275fac=function(e){return new(e||mh)(et(Lh))},mh.\\u0275prov=_e({token:mh,factory:mh.\\u0275fac}),mh),Dh=new Be(\"XSRF_COOKIE_NAME\"),Oh=new Be(\"XSRF_HEADER_NAME\"),Yh=function e(){_classCallCheck(this,e)},Eh=((bh=function(){function e(t,n,r){_classCallCheck(this,e),this.doc=t,this.platform=n,this.cookieName=r,this.lastCookieString=\"\",this.lastToken=null,this.parseCount=0}return _createClass(e,[{key:\"getToken\",value:function(){if(\"server\"===this.platform)return null;var e=this.doc.cookie||\"\";return e!==this.lastCookieString&&(this.parseCount++,this.lastToken=vd(e,this.cookieName),this.lastCookieString=e),this.lastToken}}]),e}()).\\u0275fac=function(e){return new(e||bh)(et(Wc),et($u),et(Dh))},bh.\\u0275prov=_e({token:bh,factory:bh.\\u0275fac}),bh),Ih=((yh=function(){function e(t,n){_classCallCheck(this,e),this.tokenService=t,this.headerName=n}return _createClass(e,[{key:\"intercept\",value:function(e,t){var n=e.url.toLowerCase();if(\"GET\"===e.method||\"HEAD\"===e.method||n.startsWith(\"http://\")||n.startsWith(\"https://\"))return t.handle(e);var r=this.tokenService.getToken();return null===r||e.headers.has(this.headerName)||(e=e.clone({headers:e.headers.set(this.headerName,r)})),t.handle(e)}}]),e}()).\\u0275fac=function(e){return new(e||yh)(et(Yh),et(Oh))},yh.\\u0275prov=_e({token:yh,factory:yh.\\u0275fac}),yh),Ah=((gh=function(){function e(t,n){_classCallCheck(this,e),this.backend=t,this.injector=n,this.chain=null}return _createClass(e,[{key:\"handle\",value:function(e){if(null===this.chain){var t=this.injector.get(Ch,[]);this.chain=t.reduceRight((function(e,t){return new wh(e,t)}),this.backend)}return this.chain.handle(e)}}]),e}()).\\u0275fac=function(e){return new(e||gh)(et(Zd),et(vo))},gh.\\u0275prov=_e({token:gh,factory:gh.\\u0275fac}),gh),Ph=((vh=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"disable\",value:function(){return{ngModule:e,providers:[{provide:Ih,useClass:Mh}]}}},{key:\"withOptions\",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{ngModule:e,providers:[t.cookieName?{provide:Dh,useValue:t.cookieName}:[],t.headerName?{provide:Oh,useValue:t.headerName}:[]]}}}]),e}()).\\u0275mod=Mt({type:vh}),vh.\\u0275inj=ve({factory:function(e){return new(e||vh)},providers:[Ih,{provide:Ch,useExisting:Ih,multi:!0},{provide:Yh,useClass:Eh},{provide:Dh,useValue:\"XSRF-TOKEN\"},{provide:Oh,useValue:\"X-XSRF-TOKEN\"}]}),vh),jh=((_h=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:_h}),_h.\\u0275inj=ve({factory:function(e){return new(e||_h)},providers:[kh,{provide:Kd,useClass:Ah},xh,{provide:Zd,useExisting:xh},Th,{provide:Lh,useExisting:Th}],imports:[[Ph.withOptions({cookieName:\"XSRF-TOKEN\",headerName:\"X-XSRF-TOKEN\"})]]}),_h);function Rh(){for(var e=arguments.length,t=new Array(e),n=0;ne?{max:{max:e,actual:t.value}}:null}}},{key:\"required\",value:function(e){return of(e.value)?{required:!0}:null}},{key:\"requiredTrue\",value:function(e){return!0===e.value?null:{required:!0}}},{key:\"email\",value:function(e){return of(e.value)||uf.test(e.value)?null:{email:!0}}},{key:\"minLength\",value:function(e){return function(t){if(of(t.value))return null;var n=t.value?t.value.length:0;return ne?{maxlength:{requiredLength:e,actualLength:n}}:null}}},{key:\"pattern\",value:function(t){return t?(\"string\"==typeof t?(r=\"\",\"^\"!==t.charAt(0)&&(r+=\"^\"),r+=t,\"$\"!==t.charAt(t.length-1)&&(r+=\"$\"),n=new RegExp(r)):(r=t.toString(),n=t),function(e){if(of(e.value))return null;var t=e.value;return n.test(t)?null:{pattern:{requiredPattern:r,actualValue:t}}}):e.nullValidator;var n,r}},{key:\"nullValidator\",value:function(e){return null}},{key:\"compose\",value:function(e){if(!e)return null;var t=e.filter(df);return 0==t.length?null:function(e){return ff(function(e,t){return t.map((function(t){return t(e)}))}(e,t))}}},{key:\"composeAsync\",value:function(e){if(!e)return null;var t=e.filter(df);return 0==t.length?null:function(e){return Rh(function(e,t){return t.map((function(t){return t(e)}))}(e,t).map(hf)).pipe(F(ff))}}}]),e}();function df(e){return null!=e}function hf(e){var t=Uo(e)?W(e):e;if(!Bo(t))throw new Error(\"Expected validator to return Promise or Observable.\");return t}function ff(e){var t={};return e.forEach((function(e){t=null!=e?Object.assign(Object.assign({},t),e):t})),0===Object.keys(t).length?null:t}function mf(e){return e.validate?function(t){return e.validate(t)}:e}function pf(e){return e.validate?function(t){return e.validate(t)}:e}var _f,vf,gf,yf,bf,kf,wf={provide:Wh,useExisting:De((function(){return Cf})),multi:!0},Cf=((_f=function(){function e(t,n){_classCallCheck(this,e),this._renderer=t,this._elementRef=n,this.onChange=function(e){},this.onTouched=function(){}}return _createClass(e,[{key:\"writeValue\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",null==e?\"\":e)}},{key:\"registerOnChange\",value:function(e){this.onChange=function(t){e(\"\"==t?null:parseFloat(t))}}},{key:\"registerOnTouched\",value:function(e){this.onTouched=e}},{key:\"setDisabledState\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}]),e}()).\\u0275fac=function(e){return new(e||_f)(Io(nl),Io(Qs))},_f.\\u0275dir=Lt({type:_f,selectors:[[\"input\",\"type\",\"number\",\"formControlName\",\"\"],[\"input\",\"type\",\"number\",\"formControl\",\"\"],[\"input\",\"type\",\"number\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"input\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},features:[$s([wf])]}),_f),Mf={provide:Wh,useExisting:De((function(){return Lf})),multi:!0},Sf=((gf=function(){function e(){_classCallCheck(this,e),this._accessors=[]}return _createClass(e,[{key:\"add\",value:function(e,t){this._accessors.push([e,t])}},{key:\"remove\",value:function(e){for(var t=this._accessors.length-1;t>=0;--t)if(this._accessors[t][1]===e)return void this._accessors.splice(t,1)}},{key:\"select\",value:function(e){var t=this;this._accessors.forEach((function(n){t._isSameGroup(n,e)&&n[1]!==e&&n[1].fireUncheck(e.value)}))}},{key:\"_isSameGroup\",value:function(e,t){return!!e[0].control&&e[0]._parent===t._control._parent&&e[1].name===t.name}}]),e}()).\\u0275fac=function(e){return new(e||gf)},gf.\\u0275prov=_e({token:gf,factory:gf.\\u0275fac}),gf),Lf=((vf=function(){function e(t,n,r,i){_classCallCheck(this,e),this._renderer=t,this._elementRef=n,this._registry=r,this._injector=i,this.onChange=function(){},this.onTouched=function(){}}return _createClass(e,[{key:\"ngOnInit\",value:function(){this._control=this._injector.get(tf),this._checkName(),this._registry.add(this._control,this)}},{key:\"ngOnDestroy\",value:function(){this._registry.remove(this)}},{key:\"writeValue\",value:function(e){this._state=e===this.value,this._renderer.setProperty(this._elementRef.nativeElement,\"checked\",this._state)}},{key:\"registerOnChange\",value:function(e){var t=this;this._fn=e,this.onChange=function(){e(t.value),t._registry.select(t)}}},{key:\"fireUncheck\",value:function(e){this.writeValue(e)}},{key:\"registerOnTouched\",value:function(e){this.onTouched=e}},{key:\"setDisabledState\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}},{key:\"_checkName\",value:function(){this.name&&this.formControlName&&this.name!==this.formControlName&&this._throwNameError(),!this.name&&this.formControlName&&(this.name=this.formControlName)}},{key:\"_throwNameError\",value:function(){throw new Error('\\n If you define both a name and a formControlName attribute on your radio button, their values\\n must match. Ex: \\n ')}}]),e}()).\\u0275fac=function(e){return new(e||vf)(Io(nl),Io(Qs),Io(Sf),Io(vo))},vf.\\u0275dir=Lt({type:vf,selectors:[[\"input\",\"type\",\"radio\",\"formControlName\",\"\"],[\"input\",\"type\",\"radio\",\"formControl\",\"\"],[\"input\",\"type\",\"radio\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"change\",(function(){return t.onChange()}))(\"blur\",(function(){return t.onTouched()}))},inputs:{name:\"name\",formControlName:\"formControlName\",value:\"value\"},features:[$s([Mf])]}),vf),Tf={provide:Wh,useExisting:De((function(){return xf})),multi:!0},xf=((yf=function(){function e(t,n){_classCallCheck(this,e),this._renderer=t,this._elementRef=n,this.onChange=function(e){},this.onTouched=function(){}}return _createClass(e,[{key:\"writeValue\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",parseFloat(e))}},{key:\"registerOnChange\",value:function(e){this.onChange=function(t){e(\"\"==t?null:parseFloat(t))}}},{key:\"registerOnTouched\",value:function(e){this.onTouched=e}},{key:\"setDisabledState\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}]),e}()).\\u0275fac=function(e){return new(e||yf)(Io(nl),Io(Qs))},yf.\\u0275dir=Lt({type:yf,selectors:[[\"input\",\"type\",\"range\",\"formControlName\",\"\"],[\"input\",\"type\",\"range\",\"formControl\",\"\"],[\"input\",\"type\",\"range\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"input\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},features:[$s([Tf])]}),yf),Df='\\n

\\n \\n
\\n\\n In your class:\\n\\n this.myGroup = new FormGroup({\\n firstName: new FormControl()\\n });',Of='\\n
\\n
\\n \\n
\\n
\\n\\n In your class:\\n\\n this.myGroup = new FormGroup({\\n person: new FormGroup({ firstName: new FormControl() })\\n });',Yf='\\n
\\n
\\n \\n
\\n
',Ef=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"controlParentException\",value:function(){throw new Error(\"formControlName must be used with a parent formGroup directive. You'll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n \".concat(Df))}},{key:\"ngModelGroupException\",value:function(){throw new Error('formControlName cannot be used with an ngModelGroup parent. It is only compatible with parents\\n that also have a \"form\" prefix: formGroupName, formArrayName, or formGroup.\\n\\n Option 1: Update the parent to be formGroupName (reactive form strategy)\\n\\n '.concat(Of,\"\\n\\n Option 2: Use ngModel instead of formControlName (template-driven strategy)\\n\\n \").concat(Yf))}},{key:\"missingFormException\",value:function(){throw new Error(\"formGroup expects a FormGroup instance. Please pass one in.\\n\\n Example:\\n\\n \".concat(Df))}},{key:\"groupParentException\",value:function(){throw new Error(\"formGroupName must be used with a parent formGroup directive. You'll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n \".concat(Of))}},{key:\"arrayParentException\",value:function(){throw new Error('formArrayName must be used with a parent formGroup directive. You\\'ll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n \\n
\\n
\\n
\\n \\n
\\n
\\n
\\n\\n In your class:\\n\\n this.cityArray = new FormArray([new FormControl(\\'SF\\')]);\\n this.myGroup = new FormGroup({\\n cities: this.cityArray\\n });')}},{key:\"disabledAttrWarning\",value:function(){console.warn(\"\\n It looks like you're using the disabled attribute with a reactive form directive. If you set disabled to true\\n when you set up this control in your component class, the disabled attribute will actually be set in the DOM for\\n you. We recommend using this approach to avoid 'changed after checked' errors.\\n \\n Example: \\n form = new FormGroup({\\n first: new FormControl({value: 'Nancy', disabled: true}, Validators.required),\\n last: new FormControl('Drew', Validators.required)\\n });\\n \")}},{key:\"ngModelWarning\",value:function(e){console.warn(\"\\n It looks like you're using ngModel on the same form field as \".concat(e,\". \\n Support for using the ngModel input property and ngModelChange event with \\n reactive form directives has been deprecated in Angular v6 and will be removed \\n in Angular v7.\\n \\n For more information on this, see our API docs here:\\n https://angular.io/api/forms/\").concat(\"formControl\"===e?\"FormControlDirective\":\"FormControlName\",\"#use-with-ngmodel\\n \"))}}]),e}(),If={provide:Wh,useExisting:De((function(){return Af})),multi:!0},Af=((bf=function(){function e(t,n){_classCallCheck(this,e),this._renderer=t,this._elementRef=n,this._optionMap=new Map,this._idCounter=0,this.onChange=function(e){},this.onTouched=function(){},this._compareWith=So}return _createClass(e,[{key:\"writeValue\",value:function(e){this.value=e;var t=this._getOptionId(e);null==t&&this._renderer.setProperty(this._elementRef.nativeElement,\"selectedIndex\",-1);var n=function(e,t){return null==e?\"\".concat(t):(t&&\"object\"==typeof t&&(t=\"Object\"),\"\".concat(e,\": \").concat(t).slice(0,50))}(t,e);this._renderer.setProperty(this._elementRef.nativeElement,\"value\",n)}},{key:\"registerOnChange\",value:function(e){var t=this;this.onChange=function(n){t.value=t._getOptionValue(n),e(t.value)}}},{key:\"registerOnTouched\",value:function(e){this.onTouched=e}},{key:\"setDisabledState\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}},{key:\"_registerOption\",value:function(){return(this._idCounter++).toString()}},{key:\"_getOptionId\",value:function(e){for(var t=0,n=Array.from(this._optionMap.keys());t-1)}}else t=function(e,t){e._setSelected(!1)};this._optionMap.forEach(t)}},{key:\"registerOnChange\",value:function(e){var t=this;this.onChange=function(n){var r=[];if(n.hasOwnProperty(\"selectedOptions\"))for(var i=n.selectedOptions,a=0;a1?\"path: '\".concat(e.path.join(\" -> \"),\"'\"):e.path[0]?\"name: '\".concat(e.path,\"'\"):\"unspecified name attribute\",new Error(\"\".concat(t,\" \").concat(n))}function Wf(e){return null!=e?cf.compose(e.map(mf)):null}function Uf(e){return null!=e?cf.composeAsync(e.map(pf)):null}function Bf(e,t){if(!e.hasOwnProperty(\"model\"))return!1;var n=e.model;return!!n.isFirstChange()||!So(t,n.currentValue)}var qf=[Bh,xf,Cf,Af,jf,Lf];function Gf(e,t){e._syncPendingControls(),t.forEach((function(e){var t=e.control;\"submit\"===t.updateOn&&t._pendingChange&&(e.viewToModelUpdate(t._pendingValue),t._pendingChange=!1)}))}function $f(e,t){if(!t)return null;Array.isArray(t)||Vf(e,\"Value accessor was not provided as an array for form control with\");var n=void 0,r=void 0,i=void 0;return t.forEach((function(t){var a;t.constructor===$h?n=t:(a=t,qf.some((function(e){return a.constructor===e}))?(r&&Vf(e,\"More than one built-in value accessor matches form control with\"),r=t):(i&&Vf(e,\"More than one custom value accessor matches form control with\"),i=t))})),i||r||n||(Vf(e,\"No valid value accessor for form control with\"),null)}function Jf(e,t){var n=e.indexOf(t);n>-1&&e.splice(n,1)}function Kf(e,t,n,r){Lr()&&\"never\"!==r&&((null!==r&&\"once\"!==r||t._ngModelWarningSentOnce)&&(\"always\"!==r||n._ngModelWarningSent)||(Ef.ngModelWarning(e),t._ngModelWarningSentOnce=!0,n._ngModelWarningSent=!0))}function Zf(e){var t=Xf(e)?e.validators:e;return Array.isArray(t)?Wf(t):t||null}function Qf(e,t){var n=Xf(t)?t.asyncValidators:e;return Array.isArray(n)?Uf(n):n||null}function Xf(e){return null!=e&&!Array.isArray(e)&&\"object\"==typeof e}var em,tm,nm,rm,im,am,om,sm,lm,um=function(){function e(t,n){_classCallCheck(this,e),this.validator=t,this.asyncValidator=n,this._onCollectionChange=function(){},this.pristine=!0,this.touched=!1,this._onDisabledChange=[]}return _createClass(e,[{key:\"setValidators\",value:function(e){this.validator=Zf(e)}},{key:\"setAsyncValidators\",value:function(e){this.asyncValidator=Qf(e)}},{key:\"clearValidators\",value:function(){this.validator=null}},{key:\"clearAsyncValidators\",value:function(){this.asyncValidator=null}},{key:\"markAsTouched\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.touched=!0,this._parent&&!e.onlySelf&&this._parent.markAsTouched(e)}},{key:\"markAllAsTouched\",value:function(){this.markAsTouched({onlySelf:!0}),this._forEachChild((function(e){return e.markAllAsTouched()}))}},{key:\"markAsUntouched\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.touched=!1,this._pendingTouched=!1,this._forEachChild((function(e){e.markAsUntouched({onlySelf:!0})})),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)}},{key:\"markAsDirty\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.pristine=!1,this._parent&&!e.onlySelf&&this._parent.markAsDirty(e)}},{key:\"markAsPristine\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.pristine=!0,this._pendingDirty=!1,this._forEachChild((function(e){e.markAsPristine({onlySelf:!0})})),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)}},{key:\"markAsPending\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.status=\"PENDING\",!1!==e.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!e.onlySelf&&this._parent.markAsPending(e)}},{key:\"disable\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this._parentMarkedDirty(e.onlySelf);this.status=\"DISABLED\",this.errors=null,this._forEachChild((function(t){t.disable(Object.assign(Object.assign({},e),{onlySelf:!0}))})),this._updateValue(),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(Object.assign(Object.assign({},e),{skipPristineCheck:t})),this._onDisabledChange.forEach((function(e){return e(!0)}))}},{key:\"enable\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this._parentMarkedDirty(e.onlySelf);this.status=\"VALID\",this._forEachChild((function(t){t.enable(Object.assign(Object.assign({},e),{onlySelf:!0}))})),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent}),this._updateAncestors(Object.assign(Object.assign({},e),{skipPristineCheck:t})),this._onDisabledChange.forEach((function(e){return e(!1)}))}},{key:\"_updateAncestors\",value:function(e){this._parent&&!e.onlySelf&&(this._parent.updateValueAndValidity(e),e.skipPristineCheck||this._parent._updatePristine(),this._parent._updateTouched())}},{key:\"setParent\",value:function(e){this._parent=e}},{key:\"updateValueAndValidity\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),\"VALID\"!==this.status&&\"PENDING\"!==this.status||this._runAsyncValidator(e.emitEvent)),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!e.onlySelf&&this._parent.updateValueAndValidity(e)}},{key:\"_updateTreeValidity\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{emitEvent:!0};this._forEachChild((function(t){return t._updateTreeValidity(e)})),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent})}},{key:\"_setInitialStatus\",value:function(){this.status=this._allControlsDisabled()?\"DISABLED\":\"VALID\"}},{key:\"_runValidator\",value:function(){return this.validator?this.validator(this):null}},{key:\"_runAsyncValidator\",value:function(e){var t=this;if(this.asyncValidator){this.status=\"PENDING\";var n=hf(this.asyncValidator(this));this._asyncValidationSubscription=n.subscribe((function(n){return t.setErrors(n,{emitEvent:e})}))}}},{key:\"_cancelExistingSubscription\",value:function(){this._asyncValidationSubscription&&this._asyncValidationSubscription.unsubscribe()}},{key:\"setErrors\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.errors=e,this._updateControlsErrors(!1!==t.emitEvent)}},{key:\"get\",value:function(e){return function(e,t,n){if(null==t)return null;if(Array.isArray(t)||(t=t.split(\".\")),Array.isArray(t)&&0===t.length)return null;var r=e;return t.forEach((function(e){r=r instanceof dm?r.controls.hasOwnProperty(e)?r.controls[e]:null:r instanceof hm&&r.at(e)||null})),r}(this,e)}},{key:\"getError\",value:function(e,t){var n=t?this.get(t):this;return n&&n.errors?n.errors[e]:null}},{key:\"hasError\",value:function(e,t){return!!this.getError(e,t)}},{key:\"_updateControlsErrors\",value:function(e){this.status=this._calculateStatus(),e&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(e)}},{key:\"_initObservables\",value:function(){this.valueChanges=new bu,this.statusChanges=new bu}},{key:\"_calculateStatus\",value:function(){return this._allControlsDisabled()?\"DISABLED\":this.errors?\"INVALID\":this._anyControlsHaveStatus(\"PENDING\")?\"PENDING\":this._anyControlsHaveStatus(\"INVALID\")?\"INVALID\":\"VALID\"}},{key:\"_anyControlsHaveStatus\",value:function(e){return this._anyControls((function(t){return t.status===e}))}},{key:\"_anyControlsDirty\",value:function(){return this._anyControls((function(e){return e.dirty}))}},{key:\"_anyControlsTouched\",value:function(){return this._anyControls((function(e){return e.touched}))}},{key:\"_updatePristine\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.pristine=!this._anyControlsDirty(),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)}},{key:\"_updateTouched\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.touched=this._anyControlsTouched(),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)}},{key:\"_isBoxedValue\",value:function(e){return\"object\"==typeof e&&null!==e&&2===Object.keys(e).length&&\"value\"in e&&\"disabled\"in e}},{key:\"_registerOnCollectionChange\",value:function(e){this._onCollectionChange=e}},{key:\"_setUpdateStrategy\",value:function(e){Xf(e)&&null!=e.updateOn&&(this._updateOn=e.updateOn)}},{key:\"_parentMarkedDirty\",value:function(e){return!e&&this._parent&&this._parent.dirty&&!this._parent._anyControlsDirty()}},{key:\"parent\",get:function(){return this._parent}},{key:\"valid\",get:function(){return\"VALID\"===this.status}},{key:\"invalid\",get:function(){return\"INVALID\"===this.status}},{key:\"pending\",get:function(){return\"PENDING\"==this.status}},{key:\"disabled\",get:function(){return\"DISABLED\"===this.status}},{key:\"enabled\",get:function(){return\"DISABLED\"!==this.status}},{key:\"dirty\",get:function(){return!this.pristine}},{key:\"untouched\",get:function(){return!this.touched}},{key:\"updateOn\",get:function(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:\"change\"}},{key:\"root\",get:function(){for(var e=this;e._parent;)e=e._parent;return e}}]),e}(),cm=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,i=arguments.length>1?arguments[1]:void 0,a=arguments.length>2?arguments[2]:void 0;return _classCallCheck(this,n),(e=t.call(this,Zf(i),Qf(a,i)))._onChange=[],e._applyFormState(r),e._setUpdateStrategy(i),e.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),e._initObservables(),e}return _createClass(n,[{key:\"setValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.value=this._pendingValue=e,this._onChange.length&&!1!==n.emitModelToViewChange&&this._onChange.forEach((function(e){return e(t.value,!1!==n.emitViewToModelChange)})),this.updateValueAndValidity(n)}},{key:\"patchValue\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.setValue(e,t)}},{key:\"reset\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._applyFormState(e),this.markAsPristine(t),this.markAsUntouched(t),this.setValue(this.value,t),this._pendingChange=!1}},{key:\"_updateValue\",value:function(){}},{key:\"_anyControls\",value:function(e){return!1}},{key:\"_allControlsDisabled\",value:function(){return this.disabled}},{key:\"registerOnChange\",value:function(e){this._onChange.push(e)}},{key:\"_clearChangeFns\",value:function(){this._onChange=[],this._onDisabledChange=[],this._onCollectionChange=function(){}}},{key:\"registerOnDisabledChange\",value:function(e){this._onDisabledChange.push(e)}},{key:\"_forEachChild\",value:function(e){}},{key:\"_syncPendingControls\",value:function(){return!(\"submit\"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))}},{key:\"_applyFormState\",value:function(e){this._isBoxedValue(e)?(this.value=this._pendingValue=e.value,e.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=e}}]),n}(um),dm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,Zf(r),Qf(i,r))).controls=e,a._initObservables(),a._setUpdateStrategy(r),a._setUpControls(),a.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),a}return _createClass(n,[{key:\"registerControl\",value:function(e,t){return this.controls[e]?this.controls[e]:(this.controls[e]=t,t.setParent(this),t._registerOnCollectionChange(this._onCollectionChange),t)}},{key:\"addControl\",value:function(e,t){this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"removeControl\",value:function(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange((function(){})),delete this.controls[e],this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"setControl\",value:function(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange((function(){})),delete this.controls[e],t&&this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"contains\",value:function(e){return this.controls.hasOwnProperty(e)&&this.controls[e].enabled}},{key:\"setValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._checkAllValuesPresent(e),Object.keys(e).forEach((function(r){t._throwIfControlMissing(r),t.controls[r].setValue(e[r],{onlySelf:!0,emitEvent:n.emitEvent})})),this.updateValueAndValidity(n)}},{key:\"patchValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};Object.keys(e).forEach((function(r){t.controls[r]&&t.controls[r].patchValue(e[r],{onlySelf:!0,emitEvent:n.emitEvent})})),this.updateValueAndValidity(n)}},{key:\"reset\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._forEachChild((function(n,r){n.reset(e[r],{onlySelf:!0,emitEvent:t.emitEvent})})),this._updatePristine(t),this._updateTouched(t),this.updateValueAndValidity(t)}},{key:\"getRawValue\",value:function(){return this._reduceChildren({},(function(e,t,n){return e[n]=t instanceof cm?t.value:t.getRawValue(),e}))}},{key:\"_syncPendingControls\",value:function(){var e=this._reduceChildren(!1,(function(e,t){return!!t._syncPendingControls()||e}));return e&&this.updateValueAndValidity({onlySelf:!0}),e}},{key:\"_throwIfControlMissing\",value:function(e){if(!Object.keys(this.controls).length)throw new Error(\"\\n There are no form controls registered with this group yet. If you're using ngModel,\\n you may want to check next tick (e.g. use setTimeout).\\n \");if(!this.controls[e])throw new Error(\"Cannot find form control with name: \".concat(e,\".\"))}},{key:\"_forEachChild\",value:function(e){var t=this;Object.keys(this.controls).forEach((function(n){return e(t.controls[n],n)}))}},{key:\"_setUpControls\",value:function(){var e=this;this._forEachChild((function(t){t.setParent(e),t._registerOnCollectionChange(e._onCollectionChange)}))}},{key:\"_updateValue\",value:function(){this.value=this._reduceValue()}},{key:\"_anyControls\",value:function(e){var t=this,n=!1;return this._forEachChild((function(r,i){n=n||t.contains(i)&&e(r)})),n}},{key:\"_reduceValue\",value:function(){var e=this;return this._reduceChildren({},(function(t,n,r){return(n.enabled||e.disabled)&&(t[r]=n.value),t}))}},{key:\"_reduceChildren\",value:function(e,t){var n=e;return this._forEachChild((function(e,r){n=t(n,e,r)})),n}},{key:\"_allControlsDisabled\",value:function(){for(var e=0,t=Object.keys(this.controls);e0||this.disabled}},{key:\"_checkAllValuesPresent\",value:function(e){this._forEachChild((function(t,n){if(void 0===e[n])throw new Error(\"Must supply a value for form control with name: '\".concat(n,\"'.\"))}))}}]),n}(um),hm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,Zf(r),Qf(i,r))).controls=e,a._initObservables(),a._setUpdateStrategy(r),a._setUpControls(),a.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),a}return _createClass(n,[{key:\"at\",value:function(e){return this.controls[e]}},{key:\"push\",value:function(e){this.controls.push(e),this._registerControl(e),this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"insert\",value:function(e,t){this.controls.splice(e,0,t),this._registerControl(t),this.updateValueAndValidity()}},{key:\"removeAt\",value:function(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange((function(){})),this.controls.splice(e,1),this.updateValueAndValidity()}},{key:\"setControl\",value:function(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange((function(){})),this.controls.splice(e,1),t&&(this.controls.splice(e,0,t),this._registerControl(t)),this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"setValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._checkAllValuesPresent(e),e.forEach((function(e,r){t._throwIfControlMissing(r),t.at(r).setValue(e,{onlySelf:!0,emitEvent:n.emitEvent})})),this.updateValueAndValidity(n)}},{key:\"patchValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};e.forEach((function(e,r){t.at(r)&&t.at(r).patchValue(e,{onlySelf:!0,emitEvent:n.emitEvent})})),this.updateValueAndValidity(n)}},{key:\"reset\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._forEachChild((function(n,r){n.reset(e[r],{onlySelf:!0,emitEvent:t.emitEvent})})),this._updatePristine(t),this._updateTouched(t),this.updateValueAndValidity(t)}},{key:\"getRawValue\",value:function(){return this.controls.map((function(e){return e instanceof cm?e.value:e.getRawValue()}))}},{key:\"clear\",value:function(){this.controls.length<1||(this._forEachChild((function(e){return e._registerOnCollectionChange((function(){}))})),this.controls.splice(0),this.updateValueAndValidity())}},{key:\"_syncPendingControls\",value:function(){var e=this.controls.reduce((function(e,t){return!!t._syncPendingControls()||e}),!1);return e&&this.updateValueAndValidity({onlySelf:!0}),e}},{key:\"_throwIfControlMissing\",value:function(e){if(!this.controls.length)throw new Error(\"\\n There are no form controls registered with this array yet. If you're using ngModel,\\n you may want to check next tick (e.g. use setTimeout).\\n \");if(!this.at(e))throw new Error(\"Cannot find form control at index \".concat(e))}},{key:\"_forEachChild\",value:function(e){this.controls.forEach((function(t,n){e(t,n)}))}},{key:\"_updateValue\",value:function(){var e=this;this.value=this.controls.filter((function(t){return t.enabled||e.disabled})).map((function(e){return e.value}))}},{key:\"_anyControls\",value:function(e){return this.controls.some((function(t){return t.enabled&&e(t)}))}},{key:\"_setUpControls\",value:function(){var e=this;this._forEachChild((function(t){return e._registerControl(t)}))}},{key:\"_checkAllValuesPresent\",value:function(e){this._forEachChild((function(t,n){if(void 0===e[n])throw new Error(\"Must supply a value for form control at index: \".concat(n,\".\"))}))}},{key:\"_allControlsDisabled\",value:function(){var e,t=_createForOfIteratorHelper(this.controls);try{for(t.s();!(e=t.n()).done;){if(e.value.enabled)return!1}}catch(n){t.e(n)}finally{t.f()}return this.controls.length>0||this.disabled}},{key:\"_registerControl\",value:function(e){e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange)}},{key:\"length\",get:function(){return this.controls.length}}]),n}(um),fm={provide:Kh,useExisting:De((function(){return pm}))},mm=Promise.resolve(null),pm=((tm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this)).submitted=!1,i._directives=[],i.ngSubmit=new bu,i.form=new dm({},Wf(e),Uf(r)),i}return _createClass(n,[{key:\"ngAfterViewInit\",value:function(){this._setUpdateStrategy()}},{key:\"addControl\",value:function(e){var t=this;mm.then((function(){var n=t._findContainer(e.path);e.control=n.registerControl(e.name,e.control),Hf(e.control,e),e.control.updateValueAndValidity({emitEvent:!1}),t._directives.push(e)}))}},{key:\"getControl\",value:function(e){return this.form.get(e.path)}},{key:\"removeControl\",value:function(e){var t=this;mm.then((function(){var n=t._findContainer(e.path);n&&n.removeControl(e.name),Jf(t._directives,e)}))}},{key:\"addFormGroup\",value:function(e){var t=this;mm.then((function(){var n=t._findContainer(e.path),r=new dm({});Nf(r,e),n.registerControl(e.name,r),r.updateValueAndValidity({emitEvent:!1})}))}},{key:\"removeFormGroup\",value:function(e){var t=this;mm.then((function(){var n=t._findContainer(e.path);n&&n.removeControl(e.name)}))}},{key:\"getFormGroup\",value:function(e){return this.form.get(e.path)}},{key:\"updateModel\",value:function(e,t){var n=this;mm.then((function(){n.form.get(e.path).setValue(t)}))}},{key:\"setValue\",value:function(e){this.control.setValue(e)}},{key:\"onSubmit\",value:function(e){return this.submitted=!0,Gf(this.form,this._directives),this.ngSubmit.emit(e),!1}},{key:\"onReset\",value:function(){this.resetForm()}},{key:\"resetForm\",value:function(e){this.form.reset(e),this.submitted=!1}},{key:\"_setUpdateStrategy\",value:function(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}},{key:\"_findContainer\",value:function(e){return e.pop(),e.length?this.form.get(e):this.form}},{key:\"formDirective\",get:function(){return this}},{key:\"control\",get:function(){return this.form}},{key:\"path\",get:function(){return[]}},{key:\"controls\",get:function(){return this.form.controls}}]),n}(Kh)).\\u0275fac=function(e){return new(e||tm)(Io(sf,10),Io(lf,10))},tm.\\u0275dir=Lt({type:tm,selectors:[[\"form\",3,\"ngNoForm\",\"\",3,\"formGroup\",\"\"],[\"ng-form\"],[\"\",\"ngForm\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"submit\",(function(e){return t.onSubmit(e)}))(\"reset\",(function(){return t.onReset()}))},inputs:{options:[\"ngFormOptions\",\"options\"]},outputs:{ngSubmit:\"ngSubmit\"},exportAs:[\"ngForm\"],features:[$s([fm]),Es]}),tm),_m=((em=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"ngOnInit\",value:function(){this._checkParentType(),this.formDirective.addFormGroup(this)}},{key:\"ngOnDestroy\",value:function(){this.formDirective&&this.formDirective.removeFormGroup(this)}},{key:\"_checkParentType\",value:function(){}},{key:\"control\",get:function(){return this.formDirective.getFormGroup(this)}},{key:\"path\",get:function(){return Rf(null==this.name?this.name:this.name.toString(),this._parent)}},{key:\"formDirective\",get:function(){return this._parent?this._parent.formDirective:null}},{key:\"validator\",get:function(){return Wf(this._validators)}},{key:\"asyncValidator\",get:function(){return Uf(this._asyncValidators)}}]),n}(Kh)).\\u0275fac=function(e){return vm(e||em)},em.\\u0275dir=Lt({type:em,features:[Es]}),em),vm=cr(_m),gm=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"modelParentException\",value:function(){throw new Error('\\n ngModel cannot be used to register form controls with a parent formGroup directive. Try using\\n formGroup\\'s partner directive \"formControlName\" instead. Example:\\n\\n '.concat(Df,'\\n\\n Or, if you\\'d like to avoid registering this form control, indicate that it\\'s standalone in ngModelOptions:\\n\\n Example:\\n\\n \\n
\\n \\n \\n
\\n '))}},{key:\"formGroupNameException\",value:function(){throw new Error(\"\\n ngModel cannot be used to register form controls with a parent formGroupName or formArrayName directive.\\n\\n Option 1: Use formControlName instead of ngModel (reactive strategy):\\n\\n \".concat(Of,\"\\n\\n Option 2: Update ngModel's parent be ngModelGroup (template-driven strategy):\\n\\n \").concat(Yf))}},{key:\"missingNameException\",value:function(){throw new Error('If ngModel is used within a form tag, either the name attribute must be set or the form\\n control must be defined as \\'standalone\\' in ngModelOptions.\\n\\n Example 1: \\n Example 2: ')}},{key:\"modelGroupParentException\",value:function(){throw new Error(\"\\n ngModelGroup cannot be used with a parent formGroup directive.\\n\\n Option 1: Use formGroupName instead of ngModelGroup (reactive strategy):\\n\\n \".concat(Of,\"\\n\\n Option 2: Use a regular form tag instead of the formGroup directive (template-driven strategy):\\n\\n \").concat(Yf))}}]),e}(),ym={provide:Kh,useExisting:De((function(){return bm}))},bm=((nm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this))._parent=e,a._validators=r,a._asyncValidators=i,a}return _createClass(n,[{key:\"_checkParentType\",value:function(){this._parent instanceof n||this._parent instanceof pm||gm.modelGroupParentException()}}]),n}(_m)).\\u0275fac=function(e){return new(e||nm)(Io(Kh,5),Io(sf,10),Io(lf,10))},nm.\\u0275dir=Lt({type:nm,selectors:[[\"\",\"ngModelGroup\",\"\"]],inputs:{name:[\"ngModelGroup\",\"name\"]},exportAs:[\"ngModelGroup\"],features:[$s([ym]),Es]}),nm),km={provide:tf,useExisting:De((function(){return Cm}))},wm=Promise.resolve(null),Cm=((im=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this)).control=new cm,o._registered=!1,o.update=new bu,o._parent=e,o._rawValidators=r||[],o._rawAsyncValidators=i||[],o.valueAccessor=$f(_assertThisInitialized(o),a),o}return _createClass(n,[{key:\"ngOnChanges\",value:function(e){this._checkForErrors(),this._registered||this._setUpControl(),\"isDisabled\"in e&&this._updateDisabled(e),Bf(e,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}},{key:\"ngOnDestroy\",value:function(){this.formDirective&&this.formDirective.removeControl(this)}},{key:\"viewToModelUpdate\",value:function(e){this.viewModel=e,this.update.emit(e)}},{key:\"_setUpControl\",value:function(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0}},{key:\"_setUpdateStrategy\",value:function(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)}},{key:\"_isStandalone\",value:function(){return!this._parent||!(!this.options||!this.options.standalone)}},{key:\"_setUpStandalone\",value:function(){Hf(this.control,this),this.control.updateValueAndValidity({emitEvent:!1})}},{key:\"_checkForErrors\",value:function(){this._isStandalone()||this._checkParentType(),this._checkName()}},{key:\"_checkParentType\",value:function(){!(this._parent instanceof bm)&&this._parent instanceof _m?gm.formGroupNameException():this._parent instanceof bm||this._parent instanceof pm||gm.modelParentException()}},{key:\"_checkName\",value:function(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()||this.name||gm.missingNameException()}},{key:\"_updateValue\",value:function(e){var t=this;wm.then((function(){t.control.setValue(e,{emitViewToModelChange:!1})}))}},{key:\"_updateDisabled\",value:function(e){var t=this,n=e.isDisabled.currentValue,r=\"\"===n||n&&\"false\"!==n;wm.then((function(){r&&!t.control.disabled?t.control.disable():!r&&t.control.disabled&&t.control.enable()}))}},{key:\"path\",get:function(){return this._parent?Rf(this.name,this._parent):[this.name]}},{key:\"formDirective\",get:function(){return this._parent?this._parent.formDirective:null}},{key:\"validator\",get:function(){return Wf(this._rawValidators)}},{key:\"asyncValidator\",get:function(){return Uf(this._rawAsyncValidators)}}]),n}(tf)).\\u0275fac=function(e){return new(e||im)(Io(Kh,9),Io(sf,10),Io(lf,10),Io(Wh,10))},im.\\u0275dir=Lt({type:im,selectors:[[\"\",\"ngModel\",\"\",3,\"formControlName\",\"\",3,\"formControl\",\"\"]],inputs:{name:\"name\",isDisabled:[\"disabled\",\"isDisabled\"],model:[\"ngModel\",\"model\"],options:[\"ngModelOptions\",\"options\"]},outputs:{update:\"ngModelChange\"},exportAs:[\"ngModel\"],features:[$s([km]),Es,Hs]}),im),Mm=((rm=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||rm)},rm.\\u0275dir=Lt({type:rm,selectors:[[\"form\",3,\"ngNoForm\",\"\",3,\"ngNativeValidate\",\"\"]],hostAttrs:[\"novalidate\",\"\"]}),rm),Sm=new Be(\"NgModelWithFormControlWarning\"),Lm={provide:tf,useExisting:De((function(){return Tm}))},Tm=((am=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this))._ngModelWarningConfig=a,o.update=new bu,o._ngModelWarningSent=!1,o._rawValidators=e||[],o._rawAsyncValidators=r||[],o.valueAccessor=$f(_assertThisInitialized(o),i),o}return _createClass(n,[{key:\"ngOnChanges\",value:function(e){this._isControlChanged(e)&&(Hf(this.form,this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this.form.updateValueAndValidity({emitEvent:!1})),Bf(e,this.viewModel)&&(Kf(\"formControl\",n,this,this._ngModelWarningConfig),this.form.setValue(this.model),this.viewModel=this.model)}},{key:\"viewToModelUpdate\",value:function(e){this.viewModel=e,this.update.emit(e)}},{key:\"_isControlChanged\",value:function(e){return e.hasOwnProperty(\"form\")}},{key:\"isDisabled\",set:function(e){Ef.disabledAttrWarning()}},{key:\"path\",get:function(){return[]}},{key:\"validator\",get:function(){return Wf(this._rawValidators)}},{key:\"asyncValidator\",get:function(){return Uf(this._rawAsyncValidators)}},{key:\"control\",get:function(){return this.form}}]),n}(tf)).\\u0275fac=function(e){return new(e||am)(Io(sf,10),Io(lf,10),Io(Wh,10),Io(Sm,8))},am.\\u0275dir=Lt({type:am,selectors:[[\"\",\"formControl\",\"\"]],inputs:{isDisabled:[\"disabled\",\"isDisabled\"],form:[\"formControl\",\"form\"],model:[\"ngModel\",\"model\"]},outputs:{update:\"ngModelChange\"},exportAs:[\"ngForm\"],features:[$s([Lm]),Es,Hs]}),am._ngModelWarningSentOnce=!1,am),xm={provide:Kh,useExisting:De((function(){return Dm}))},Dm=((om=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this))._validators=e,i._asyncValidators=r,i.submitted=!1,i.directives=[],i.form=null,i.ngSubmit=new bu,i}return _createClass(n,[{key:\"ngOnChanges\",value:function(e){this._checkFormPresent(),e.hasOwnProperty(\"form\")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations())}},{key:\"addControl\",value:function(e){var t=this.form.get(e.path);return Hf(t,e),t.updateValueAndValidity({emitEvent:!1}),this.directives.push(e),t}},{key:\"getControl\",value:function(e){return this.form.get(e.path)}},{key:\"removeControl\",value:function(e){Jf(this.directives,e)}},{key:\"addFormGroup\",value:function(e){var t=this.form.get(e.path);Nf(t,e),t.updateValueAndValidity({emitEvent:!1})}},{key:\"removeFormGroup\",value:function(e){}},{key:\"getFormGroup\",value:function(e){return this.form.get(e.path)}},{key:\"addFormArray\",value:function(e){var t=this.form.get(e.path);Nf(t,e),t.updateValueAndValidity({emitEvent:!1})}},{key:\"removeFormArray\",value:function(e){}},{key:\"getFormArray\",value:function(e){return this.form.get(e.path)}},{key:\"updateModel\",value:function(e,t){this.form.get(e.path).setValue(t)}},{key:\"onSubmit\",value:function(e){return this.submitted=!0,Gf(this.form,this.directives),this.ngSubmit.emit(e),!1}},{key:\"onReset\",value:function(){this.resetForm()}},{key:\"resetForm\",value:function(e){this.form.reset(e),this.submitted=!1}},{key:\"_updateDomValue\",value:function(){var e=this;this.directives.forEach((function(t){var n=e.form.get(t.path);t.control!==n&&(function(e,t){t.valueAccessor.registerOnChange((function(){return zf(t)})),t.valueAccessor.registerOnTouched((function(){return zf(t)})),t._rawValidators.forEach((function(e){e.registerOnValidatorChange&&e.registerOnValidatorChange(null)})),t._rawAsyncValidators.forEach((function(e){e.registerOnValidatorChange&&e.registerOnValidatorChange(null)})),e&&e._clearChangeFns()}(t.control,t),n&&Hf(n,t),t.control=n)})),this.form._updateTreeValidity({emitEvent:!1})}},{key:\"_updateRegistrations\",value:function(){var e=this;this.form._registerOnCollectionChange((function(){return e._updateDomValue()})),this._oldForm&&this._oldForm._registerOnCollectionChange((function(){})),this._oldForm=this.form}},{key:\"_updateValidators\",value:function(){var e=Wf(this._validators);this.form.validator=cf.compose([this.form.validator,e]);var t=Uf(this._asyncValidators);this.form.asyncValidator=cf.composeAsync([this.form.asyncValidator,t])}},{key:\"_checkFormPresent\",value:function(){this.form||Ef.missingFormException()}},{key:\"formDirective\",get:function(){return this}},{key:\"control\",get:function(){return this.form}},{key:\"path\",get:function(){return[]}}]),n}(Kh)).\\u0275fac=function(e){return new(e||om)(Io(sf,10),Io(lf,10))},om.\\u0275dir=Lt({type:om,selectors:[[\"\",\"formGroup\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"submit\",(function(e){return t.onSubmit(e)}))(\"reset\",(function(){return t.onReset()}))},inputs:{form:[\"formGroup\",\"form\"]},outputs:{ngSubmit:\"ngSubmit\"},exportAs:[\"ngForm\"],features:[$s([xm]),Es,Hs]}),om),Om={provide:Kh,useExisting:De((function(){return Ym}))},Ym=((sm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this))._parent=e,a._validators=r,a._asyncValidators=i,a}return _createClass(n,[{key:\"_checkParentType\",value:function(){Am(this._parent)&&Ef.groupParentException()}}]),n}(_m)).\\u0275fac=function(e){return new(e||sm)(Io(Kh,13),Io(sf,10),Io(lf,10))},sm.\\u0275dir=Lt({type:sm,selectors:[[\"\",\"formGroupName\",\"\"]],inputs:{name:[\"formGroupName\",\"name\"]},features:[$s([Om]),Es]}),sm),Em={provide:Kh,useExisting:De((function(){return Im}))},Im=((lm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this))._parent=e,a._validators=r,a._asyncValidators=i,a}return _createClass(n,[{key:\"ngOnInit\",value:function(){this._checkParentType(),this.formDirective.addFormArray(this)}},{key:\"ngOnDestroy\",value:function(){this.formDirective&&this.formDirective.removeFormArray(this)}},{key:\"_checkParentType\",value:function(){Am(this._parent)&&Ef.arrayParentException()}},{key:\"control\",get:function(){return this.formDirective.getFormArray(this)}},{key:\"formDirective\",get:function(){return this._parent?this._parent.formDirective:null}},{key:\"path\",get:function(){return Rf(null==this.name?this.name:this.name.toString(),this._parent)}},{key:\"validator\",get:function(){return Wf(this._validators)}},{key:\"asyncValidator\",get:function(){return Uf(this._asyncValidators)}}]),n}(Kh)).\\u0275fac=function(e){return new(e||lm)(Io(Kh,13),Io(sf,10),Io(lf,10))},lm.\\u0275dir=Lt({type:lm,selectors:[[\"\",\"formArrayName\",\"\"]],inputs:{name:[\"formArrayName\",\"name\"]},features:[$s([Em]),Es]}),lm);function Am(e){return!(e instanceof Ym||e instanceof Dm||e instanceof Im)}var Pm,jm,Rm,Hm,Fm,Nm,zm={provide:tf,useExisting:De((function(){return Vm}))},Vm=((Pm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this))._ngModelWarningConfig=o,s._added=!1,s.update=new bu,s._ngModelWarningSent=!1,s._parent=e,s._rawValidators=r||[],s._rawAsyncValidators=i||[],s.valueAccessor=$f(_assertThisInitialized(s),a),s}return _createClass(n,[{key:\"ngOnChanges\",value:function(e){this._added||this._setUpControl(),Bf(e,this.viewModel)&&(Kf(\"formControlName\",n,this,this._ngModelWarningConfig),this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}},{key:\"ngOnDestroy\",value:function(){this.formDirective&&this.formDirective.removeControl(this)}},{key:\"viewToModelUpdate\",value:function(e){this.viewModel=e,this.update.emit(e)}},{key:\"_checkParentType\",value:function(){!(this._parent instanceof Ym)&&this._parent instanceof _m?Ef.ngModelGroupException():this._parent instanceof Ym||this._parent instanceof Dm||this._parent instanceof Im||Ef.controlParentException()}},{key:\"_setUpControl\",value:function(){this._checkParentType(),this.control=this.formDirective.addControl(this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this._added=!0}},{key:\"isDisabled\",set:function(e){Ef.disabledAttrWarning()}},{key:\"path\",get:function(){return Rf(null==this.name?this.name:this.name.toString(),this._parent)}},{key:\"formDirective\",get:function(){return this._parent?this._parent.formDirective:null}},{key:\"validator\",get:function(){return Wf(this._rawValidators)}},{key:\"asyncValidator\",get:function(){return Uf(this._rawAsyncValidators)}}]),n}(tf)).\\u0275fac=function(e){return new(e||Pm)(Io(Kh,13),Io(sf,10),Io(lf,10),Io(Wh,10),Io(Sm,8))},Pm.\\u0275dir=Lt({type:Pm,selectors:[[\"\",\"formControlName\",\"\"]],inputs:{isDisabled:[\"disabled\",\"isDisabled\"],name:[\"formControlName\",\"name\"],model:[\"ngModel\",\"model\"]},outputs:{update:\"ngModelChange\"},features:[$s([zm]),Es,Hs]}),Pm._ngModelWarningSentOnce=!1,Pm),Wm={provide:sf,useExisting:De((function(){return Um})),multi:!0},Um=((Nm=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"validate\",value:function(e){return this.required?cf.required(e):null}},{key:\"registerOnValidatorChange\",value:function(e){this._onChange=e}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=null!=e&&!1!==e&&\"false\"!==\"\".concat(e),this._onChange&&this._onChange()}}]),e}()).\\u0275fac=function(e){return new(e||Nm)},Nm.\\u0275dir=Lt({type:Nm,selectors:[[\"\",\"required\",\"\",\"formControlName\",\"\",3,\"type\",\"checkbox\"],[\"\",\"required\",\"\",\"formControl\",\"\",3,\"type\",\"checkbox\"],[\"\",\"required\",\"\",\"ngModel\",\"\",3,\"type\",\"checkbox\"]],hostVars:1,hostBindings:function(e,t){2&e&&Do(\"required\",t.required?\"\":null)},inputs:{required:\"required\"},features:[$s([Wm])]}),Nm),Bm=((Fm=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Fm}),Fm.\\u0275inj=ve({factory:function(e){return new(e||Fm)}}),Fm),qm=((Hm=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"group\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=this._reduceControls(e),r=null,i=null,a=void 0;return null!=t&&(function(e){return void 0!==e.asyncValidators||void 0!==e.validators||void 0!==e.updateOn}(t)?(r=null!=t.validators?t.validators:null,i=null!=t.asyncValidators?t.asyncValidators:null,a=null!=t.updateOn?t.updateOn:void 0):(r=null!=t.validator?t.validator:null,i=null!=t.asyncValidator?t.asyncValidator:null)),new dm(n,{asyncValidators:i,updateOn:a,validators:r})}},{key:\"control\",value:function(e,t,n){return new cm(e,t,n)}},{key:\"array\",value:function(e,t,n){var r=this,i=e.map((function(e){return r._createControl(e)}));return new hm(i,t,n)}},{key:\"_reduceControls\",value:function(e){var t=this,n={};return Object.keys(e).forEach((function(r){n[r]=t._createControl(e[r])})),n}},{key:\"_createControl\",value:function(e){return e instanceof cm||e instanceof dm||e instanceof hm?e:Array.isArray(e)?this.control(e[0],e.length>1?e[1]:null,e.length>2?e[2]:null):this.control(e)}}]),e}()).\\u0275fac=function(e){return new(e||Hm)},Hm.\\u0275prov=_e({token:Hm,factory:Hm.\\u0275fac}),Hm),Gm=((Rm=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Rm}),Rm.\\u0275inj=ve({factory:function(e){return new(e||Rm)},providers:[Sf],imports:[Bm]}),Rm),$m=((jm=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"withConfig\",value:function(t){return{ngModule:e,providers:[{provide:Sm,useValue:t.warnOnNgModelWithFormControl}]}}}]),e}()).\\u0275mod=Mt({type:jm}),jm.\\u0275inj=ve({factory:function(e){return new(e||jm)},providers:[qm,Sf],imports:[Bm]}),jm);function Jm(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r1&&void 0!==arguments[1]?arguments[1]:0;if(this.closed)return this;this.state=e;var n=this.id,r=this.scheduler;return null!=n&&(this.id=this.recycleAsyncId(r,n,t)),this.pending=!0,this.delay=t,this.id=this.id||this.requestAsyncId(r,this.id,t),this}},{key:\"requestAsyncId\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return setInterval(e.flush.bind(e,this),n)}},{key:\"recycleAsyncId\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;if(null!==n&&this.delay===n&&!1===this.pending)return t;clearInterval(t)}},{key:\"execute\",value:function(e,t){if(this.closed)return new Error(\"executing a cancelled action\");this.pending=!1;var n=this._execute(e,t);if(n)return n;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}},{key:\"_execute\",value:function(e,t){var n=!1,r=void 0;try{this.work(e)}catch(i){n=!0,r=!!i&&i||new Error(i)}if(n)return this.unsubscribe(),r}},{key:\"_unsubscribe\",value:function(){var e=this.id,t=this.scheduler,n=t.actions,r=n.indexOf(this);this.work=null,this.state=null,this.pending=!1,this.scheduler=null,-1!==r&&n.splice(r,1),null!=e&&(this.id=this.recycleAsyncId(t,e,null)),this.delay=null}}]),n}(function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){return _classCallCheck(this,n),t.call(this)}return _createClass(n,[{key:\"schedule\",value:function(e){arguments.length>1&&void 0!==arguments[1]&&arguments[1];return this}}]),n}(h)),ep=function(){var e=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e.now;_classCallCheck(this,e),this.SchedulerAction=t,this.now=n}return _createClass(e,[{key:\"schedule\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2?arguments[2]:void 0;return new this.SchedulerAction(this,e).schedule(n,t)}}]),e}();return e.now=function(){return Date.now()},e}(),tp=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:ep.now;return _classCallCheck(this,n),(r=t.call(this,e,(function(){return n.delegate&&n.delegate!==_assertThisInitialized(r)?n.delegate.now():i()}))).actions=[],r.active=!1,r.scheduled=void 0,r}return _createClass(n,[{key:\"schedule\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=arguments.length>2?arguments[2]:void 0;return n.delegate&&n.delegate!==this?n.delegate.schedule(e,t,r):_get(_getPrototypeOf(n.prototype),\"schedule\",this).call(this,e,t,r)}},{key:\"flush\",value:function(e){var t=this.actions;if(this.active)t.push(e);else{var n;this.active=!0;do{if(n=e.execute(e.state,e.delay))break}while(e=t.shift());if(this.active=!1,n){for(;e=t.shift();)e.unsubscribe();throw n}}}}]),n}(ep),np=new tp(Xm);function rp(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:np;return function(n){return n.lift(new ip(e,t))}}var ip=function(){function e(t,n){_classCallCheck(this,e),this.dueTime=t,this.scheduler=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new ap(e,this.dueTime,this.scheduler))}}]),e}(),ap=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).dueTime=r,a.scheduler=i,a.debouncedSubscription=null,a.lastValue=null,a.hasValue=!1,a}return _createClass(n,[{key:\"_next\",value:function(e){this.clearDebounce(),this.lastValue=e,this.hasValue=!0,this.add(this.debouncedSubscription=this.scheduler.schedule(op,this.dueTime,this))}},{key:\"_complete\",value:function(){this.debouncedNext(),this.destination.complete()}},{key:\"debouncedNext\",value:function(){if(this.clearDebounce(),this.hasValue){var e=this.lastValue;this.lastValue=null,this.hasValue=!1,this.destination.next(e)}}},{key:\"clearDebounce\",value:function(){var e=this.debouncedSubscription;null!==e&&(this.remove(e),e.unsubscribe(),this.debouncedSubscription=null)}}]),n}(p);function op(e){e.debouncedNext()}var sp=function(){function e(){return Error.call(this),this.message=\"argument out of range\",this.name=\"ArgumentOutOfRangeError\",this}return e.prototype=Object.create(Error.prototype),e}(),lp=new w((function(e){return e.complete()}));function up(e){return e?function(e){return new w((function(t){return e.schedule((function(){return t.complete()}))}))}(e):lp}function cp(e){return function(t){return 0===e?up():t.lift(new hp(e))}}var dp,hp=function(){function e(t){if(_classCallCheck(this,e),this.total=t,this.total<0)throw new sp}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new fp(e,this.total))}}]),e}(),fp=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).total=r,i.count=0,i}return _createClass(n,[{key:\"_next\",value:function(e){var t=this.total,n=++this.count;n<=t&&(this.destination.next(e),n===t&&(this.destination.complete(),this.unsubscribe()))}}]),n}(p);function mp(e){return null!=e&&\"false\"!==\"\".concat(e)}function pp(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return function(e){return!isNaN(parseFloat(e))&&!isNaN(Number(e))}(e)?Number(e):t}function _p(e){return Array.isArray(e)?e:[e]}function vp(e){return null==e?\"\":\"string\"==typeof e?e:\"\".concat(e,\"px\")}function gp(e){return e instanceof Qs?e.nativeElement:e}try{dp=\"undefined\"!=typeof Intl&&Intl.v8BreakIterator}catch(KR){dp=!1}var yp,bp,kp,wp,Cp=((kp=function e(t){_classCallCheck(this,e),this._platformId=t,this.isBrowser=this._platformId?zd(this._platformId):\"object\"==typeof document&&!!document,this.EDGE=this.isBrowser&&/(edge)/i.test(navigator.userAgent),this.TRIDENT=this.isBrowser&&/(msie|trident)/i.test(navigator.userAgent),this.BLINK=this.isBrowser&&!(!window.chrome&&!dp)&&\"undefined\"!=typeof CSS&&!this.EDGE&&!this.TRIDENT,this.WEBKIT=this.isBrowser&&/AppleWebKit/i.test(navigator.userAgent)&&!this.BLINK&&!this.EDGE&&!this.TRIDENT,this.IOS=this.isBrowser&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!(\"MSStream\"in window),this.FIREFOX=this.isBrowser&&/(firefox|minefield)/i.test(navigator.userAgent),this.ANDROID=this.isBrowser&&/android/i.test(navigator.userAgent)&&!this.TRIDENT,this.SAFARI=this.isBrowser&&/safari/i.test(navigator.userAgent)&&this.WEBKIT}).\\u0275fac=function(e){return new(e||kp)(et($u,8))},kp.\\u0275prov=_e({factory:function(){return new kp(et($u,8))},token:kp,providedIn:\"root\"}),kp),Mp=((bp=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:bp}),bp.\\u0275inj=ve({factory:function(e){return new(e||bp)}}),bp),Sp=[\"color\",\"button\",\"checkbox\",\"date\",\"datetime-local\",\"email\",\"file\",\"hidden\",\"image\",\"month\",\"number\",\"password\",\"radio\",\"range\",\"reset\",\"search\",\"submit\",\"tel\",\"text\",\"time\",\"url\",\"week\"];function Lp(){if(yp)return yp;if(\"object\"!=typeof document||!document)return yp=new Set(Sp);var e=document.createElement(\"input\");return yp=new Set(Sp.filter((function(t){return e.setAttribute(\"type\",t),e.type===t})))}function Tp(e){return function(){if(null==wp&&\"undefined\"!=typeof window)try{window.addEventListener(\"test\",null,Object.defineProperty({},\"passive\",{get:function(){return wp=!0}}))}finally{wp=wp||!1}return wp}()?e:!!e.capture}var xp,Dp=function(){var e={NORMAL:0,NEGATED:1,INVERTED:2};return e[e.NORMAL]=\"NORMAL\",e[e.NEGATED]=\"NEGATED\",e[e.INVERTED]=\"INVERTED\",e}();function Op(){if(\"object\"!=typeof document||!document)return Dp.NORMAL;if(!xp){var e=document.createElement(\"div\"),t=e.style;e.dir=\"rtl\",t.height=\"1px\",t.width=\"1px\",t.overflow=\"auto\",t.visibility=\"hidden\",t.pointerEvents=\"none\",t.position=\"absolute\";var n=document.createElement(\"div\"),r=n.style;r.width=\"2px\",r.height=\"1px\",e.appendChild(n),document.body.appendChild(e),xp=Dp.NORMAL,0===e.scrollLeft&&(e.scrollLeft=1,xp=0===e.scrollLeft?Dp.NEGATED:Dp.INVERTED),e.parentNode.removeChild(e)}return xp}var Yp,Ep,Ip,Ap,Pp,jp=((Ap=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"create\",value:function(e){return\"undefined\"==typeof MutationObserver?null:new MutationObserver(e)}}]),e}()).\\u0275fac=function(e){return new(e||Ap)},Ap.\\u0275prov=_e({factory:function(){return new Ap},token:Ap,providedIn:\"root\"}),Ap),Rp=((Ip=function(){function e(t){_classCallCheck(this,e),this._mutationObserverFactory=t,this._observedElements=new Map}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){var e=this;this._observedElements.forEach((function(t,n){return e._cleanupObserver(n)}))}},{key:\"observe\",value:function(e){var t=this,n=gp(e);return new w((function(e){var r=t._observeElement(n).subscribe(e);return function(){r.unsubscribe(),t._unobserveElement(n)}}))}},{key:\"_observeElement\",value:function(e){if(this._observedElements.has(e))this._observedElements.get(e).count++;else{var t=new x,n=this._mutationObserverFactory.create((function(e){return t.next(e)}));n&&n.observe(e,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(e,{observer:n,stream:t,count:1})}return this._observedElements.get(e).stream}},{key:\"_unobserveElement\",value:function(e){this._observedElements.has(e)&&(this._observedElements.get(e).count--,this._observedElements.get(e).count||this._cleanupObserver(e))}},{key:\"_cleanupObserver\",value:function(e){if(this._observedElements.has(e)){var t=this._observedElements.get(e),n=t.observer,r=t.stream;n&&n.disconnect(),r.complete(),this._observedElements.delete(e)}}}]),e}()).\\u0275fac=function(e){return new(e||Ip)(et(jp))},Ip.\\u0275prov=_e({factory:function(){return new Ip(et(jp))},token:Ip,providedIn:\"root\"}),Ip),Hp=((Ep=function(){function e(t,n,r){_classCallCheck(this,e),this._contentObserver=t,this._elementRef=n,this._ngZone=r,this.event=new bu,this._disabled=!1,this._currentSubscription=null}return _createClass(e,[{key:\"ngAfterContentInit\",value:function(){this._currentSubscription||this.disabled||this._subscribe()}},{key:\"ngOnDestroy\",value:function(){this._unsubscribe()}},{key:\"_subscribe\",value:function(){var e=this;this._unsubscribe();var t=this._contentObserver.observe(this._elementRef);this._ngZone.runOutsideAngular((function(){e._currentSubscription=(e.debounce?t.pipe(rp(e.debounce)):t).subscribe(e.event)}))}},{key:\"_unsubscribe\",value:function(){this._currentSubscription&&this._currentSubscription.unsubscribe()}},{key:\"disabled\",get:function(){return this._disabled},set:function(e){this._disabled=mp(e),this._disabled?this._unsubscribe():this._subscribe()}},{key:\"debounce\",get:function(){return this._debounce},set:function(e){this._debounce=pp(e),this._subscribe()}}]),e}()).\\u0275fac=function(e){return new(e||Ep)(Io(Rp),Io(Qs),Io(cc))},Ep.\\u0275dir=Lt({type:Ep,selectors:[[\"\",\"cdkObserveContent\",\"\"]],inputs:{disabled:[\"cdkObserveContentDisabled\",\"disabled\"],debounce:\"debounce\"},outputs:{event:\"cdkObserveContent\"},exportAs:[\"cdkObserveContent\"]}),Ep),Fp=((Yp=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Yp}),Yp.\\u0275inj=ve({factory:function(e){return new(e||Yp)},providers:[jp]}),Yp),Np=function(){function e(t){var n=this;_classCallCheck(this,e),this._items=t,this._activeItemIndex=-1,this._activeItem=null,this._wrap=!1,this._letterKeyStream=new x,this._typeaheadSubscription=h.EMPTY,this._vertical=!0,this._allowedModifierKeys=[],this._skipPredicateFn=function(e){return e.disabled},this._pressedLetters=[],this.tabOut=new x,this.change=new x,t instanceof wu&&t.changes.subscribe((function(e){if(n._activeItem){var t=e.toArray().indexOf(n._activeItem);t>-1&&t!==n._activeItemIndex&&(n._activeItemIndex=t)}}))}return _createClass(e,[{key:\"skipPredicate\",value:function(e){return this._skipPredicateFn=e,this}},{key:\"withWrap\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._wrap=e,this}},{key:\"withVerticalOrientation\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._vertical=e,this}},{key:\"withHorizontalOrientation\",value:function(e){return this._horizontal=e,this}},{key:\"withAllowedModifierKeys\",value:function(e){return this._allowedModifierKeys=e,this}},{key:\"withTypeAhead\",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:200;if(this._items.length&&this._items.some((function(e){return\"function\"!=typeof e.getLabel})))throw Error(\"ListKeyManager items in typeahead mode must implement the `getLabel` method.\");return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe(Km((function(t){return e._pressedLetters.push(t)})),rp(t),Gd((function(){return e._pressedLetters.length>0})),F((function(){return e._pressedLetters.join(\"\")}))).subscribe((function(t){for(var n=e._getItemsArray(),r=1;r-1}));switch(n){case 9:return void this.tabOut.next();case 40:if(this._vertical&&r){this.setNextItemActive();break}return;case 38:if(this._vertical&&r){this.setPreviousItemActive();break}return;case 39:if(this._horizontal&&r){\"rtl\"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case 37:if(this._horizontal&&r){\"rtl\"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;default:return void((r||Jm(e,\"shiftKey\"))&&(e.key&&1===e.key.length?this._letterKeyStream.next(e.key.toLocaleUpperCase()):(n>=65&&n<=90||n>=48&&n<=57)&&this._letterKeyStream.next(String.fromCharCode(n))))}this._pressedLetters=[],e.preventDefault()}},{key:\"isTyping\",value:function(){return this._pressedLetters.length>0}},{key:\"setFirstItemActive\",value:function(){this._setActiveItemByIndex(0,1)}},{key:\"setLastItemActive\",value:function(){this._setActiveItemByIndex(this._items.length-1,-1)}},{key:\"setNextItemActive\",value:function(){this._activeItemIndex<0?this.setFirstItemActive():this._setActiveItemByDelta(1)}},{key:\"setPreviousItemActive\",value:function(){this._activeItemIndex<0&&this._wrap?this.setLastItemActive():this._setActiveItemByDelta(-1)}},{key:\"updateActiveItem\",value:function(e){var t=this._getItemsArray(),n=\"number\"==typeof e?e:t.indexOf(e),r=t[n];this._activeItem=null==r?null:r,this._activeItemIndex=n}},{key:\"_setActiveItemByDelta\",value:function(e){this._wrap?this._setActiveInWrapMode(e):this._setActiveInDefaultMode(e)}},{key:\"_setActiveInWrapMode\",value:function(e){for(var t=this._getItemsArray(),n=1;n<=t.length;n++){var r=(this._activeItemIndex+e*n+t.length)%t.length;if(!this._skipPredicateFn(t[r]))return void this.setActiveItem(r)}}},{key:\"_setActiveInDefaultMode\",value:function(e){this._setActiveItemByIndex(this._activeItemIndex+e,e)}},{key:\"_setActiveItemByIndex\",value:function(e,t){var n=this._getItemsArray();if(n[e]){for(;this._skipPredicateFn(n[e]);)if(!n[e+=t])return;this.setActiveItem(e)}}},{key:\"_getItemsArray\",value:function(){return this._items instanceof wu?this._items.toArray():this._items}},{key:\"activeItemIndex\",get:function(){return this._activeItemIndex}},{key:\"activeItem\",get:function(){return this._activeItem}}]),e}(),zp=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"setActiveItem\",value:function(e){this.activeItem&&this.activeItem.setInactiveStyles(),_get(_getPrototypeOf(n.prototype),\"setActiveItem\",this).call(this,e),this.activeItem&&this.activeItem.setActiveStyles()}}]),n}(Np),Vp=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e;return _classCallCheck(this,n),(e=t.apply(this,arguments))._origin=\"program\",e}return _createClass(n,[{key:\"setFocusOrigin\",value:function(e){return this._origin=e,this}},{key:\"setActiveItem\",value:function(e){_get(_getPrototypeOf(n.prototype),\"setActiveItem\",this).call(this,e),this.activeItem&&this.activeItem.focus(this._origin)}}]),n}(Np),Wp=((Pp=function(){function e(t){_classCallCheck(this,e),this._platform=t}return _createClass(e,[{key:\"isDisabled\",value:function(e){return e.hasAttribute(\"disabled\")}},{key:\"isVisible\",value:function(e){return function(e){return!!(e.offsetWidth||e.offsetHeight||\"function\"==typeof e.getClientRects&&e.getClientRects().length)}(e)&&\"visible\"===getComputedStyle(e).visibility}},{key:\"isTabbable\",value:function(e){if(!this._platform.isBrowser)return!1;var t,n=function(e){try{return e.frameElement}catch(KR){return null}}((t=e).ownerDocument&&t.ownerDocument.defaultView||window);if(n){var r=n&&n.nodeName.toLowerCase();if(-1===Bp(n))return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&\"object\"===r)return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&!this.isVisible(n))return!1}var i=e.nodeName.toLowerCase(),a=Bp(e);if(e.hasAttribute(\"contenteditable\"))return-1!==a;if(\"iframe\"===i)return!1;if(\"audio\"===i){if(!e.hasAttribute(\"controls\"))return!1;if(this._platform.BLINK)return!0}if(\"video\"===i){if(!e.hasAttribute(\"controls\")&&this._platform.TRIDENT)return!1;if(this._platform.BLINK||this._platform.FIREFOX)return!0}return(\"object\"!==i||!this._platform.BLINK&&!this._platform.WEBKIT)&&!(this._platform.WEBKIT&&this._platform.IOS&&!function(e){var t=e.nodeName.toLowerCase(),n=\"input\"===t&&e.type;return\"text\"===n||\"password\"===n||\"select\"===t||\"textarea\"===t}(e))&&e.tabIndex>=0}},{key:\"isFocusable\",value:function(e){return function(e){return!function(e){return function(e){return\"input\"==e.nodeName.toLowerCase()}(e)&&\"hidden\"==e.type}(e)&&(function(e){var t=e.nodeName.toLowerCase();return\"input\"===t||\"select\"===t||\"button\"===t||\"textarea\"===t}(e)||function(e){return function(e){return\"a\"==e.nodeName.toLowerCase()}(e)&&e.hasAttribute(\"href\")}(e)||e.hasAttribute(\"contenteditable\")||Up(e))}(e)&&!this.isDisabled(e)&&this.isVisible(e)}}]),e}()).\\u0275fac=function(e){return new(e||Pp)(et(Cp))},Pp.\\u0275prov=_e({factory:function(){return new Pp(et(Cp))},token:Pp,providedIn:\"root\"}),Pp);function Up(e){if(!e.hasAttribute(\"tabindex\")||void 0===e.tabIndex)return!1;var t=e.getAttribute(\"tabindex\");return\"-32768\"!=t&&!(!t||isNaN(parseInt(t,10)))}function Bp(e){if(!Up(e))return null;var t=parseInt(e.getAttribute(\"tabindex\")||\"\",10);return isNaN(t)?-1:t}var qp,Gp,$p,Jp=function(){function e(t,n,r,i){var a=this,o=arguments.length>4&&void 0!==arguments[4]&&arguments[4];_classCallCheck(this,e),this._element=t,this._checker=n,this._ngZone=r,this._document=i,this._hasAttached=!1,this.startAnchorListener=function(){return a.focusLastTabbableElement()},this.endAnchorListener=function(){return a.focusFirstTabbableElement()},this._enabled=!0,o||this.attachAnchors()}return _createClass(e,[{key:\"destroy\",value:function(){var e=this._startAnchor,t=this._endAnchor;e&&(e.removeEventListener(\"focus\",this.startAnchorListener),e.parentNode&&e.parentNode.removeChild(e)),t&&(t.removeEventListener(\"focus\",this.endAnchorListener),t.parentNode&&t.parentNode.removeChild(t)),this._startAnchor=this._endAnchor=null}},{key:\"attachAnchors\",value:function(){var e=this;return!!this._hasAttached||(this._ngZone.runOutsideAngular((function(){e._startAnchor||(e._startAnchor=e._createAnchor(),e._startAnchor.addEventListener(\"focus\",e.startAnchorListener)),e._endAnchor||(e._endAnchor=e._createAnchor(),e._endAnchor.addEventListener(\"focus\",e.endAnchorListener))})),this._element.parentNode&&(this._element.parentNode.insertBefore(this._startAnchor,this._element),this._element.parentNode.insertBefore(this._endAnchor,this._element.nextSibling),this._hasAttached=!0),this._hasAttached)}},{key:\"focusInitialElementWhenReady\",value:function(){var e=this;return new Promise((function(t){e._executeOnStable((function(){return t(e.focusInitialElement())}))}))}},{key:\"focusFirstTabbableElementWhenReady\",value:function(){var e=this;return new Promise((function(t){e._executeOnStable((function(){return t(e.focusFirstTabbableElement())}))}))}},{key:\"focusLastTabbableElementWhenReady\",value:function(){var e=this;return new Promise((function(t){e._executeOnStable((function(){return t(e.focusLastTabbableElement())}))}))}},{key:\"_getRegionBoundary\",value:function(e){for(var t=this._element.querySelectorAll(\"[cdk-focus-region-\".concat(e,\"], \")+\"[cdkFocusRegion\".concat(e,\"], \")+\"[cdk-focus-\".concat(e,\"]\")),n=0;n=0;n--){var r=t[n].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(t[n]):null;if(r)return r}return null}},{key:\"_createAnchor\",value:function(){var e=this._document.createElement(\"div\");return this._toggleAnchorTabIndex(this._enabled,e),e.classList.add(\"cdk-visually-hidden\"),e.classList.add(\"cdk-focus-trap-anchor\"),e.setAttribute(\"aria-hidden\",\"true\"),e}},{key:\"_toggleAnchorTabIndex\",value:function(e,t){e?t.setAttribute(\"tabindex\",\"0\"):t.removeAttribute(\"tabindex\")}},{key:\"_executeOnStable\",value:function(e){this._ngZone.isStable?e():this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(e)}},{key:\"enabled\",get:function(){return this._enabled},set:function(e){this._enabled=e,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(e,this._startAnchor),this._toggleAnchorTabIndex(e,this._endAnchor))}}]),e}(),Kp=((qp=function(){function e(t,n,r){_classCallCheck(this,e),this._checker=t,this._ngZone=n,this._document=r}return _createClass(e,[{key:\"create\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return new Jp(e,this._checker,this._ngZone,this._document,t)}}]),e}()).\\u0275fac=function(e){return new(e||qp)(et(Wp),et(cc),et(Wc))},qp.\\u0275prov=_e({factory:function(){return new qp(et(Wp),et(cc),et(Wc))},token:qp,providedIn:\"root\"}),qp),Zp=new Be(\"liveAnnouncerElement\",{providedIn:\"root\",factory:function(){return null}}),Qp=new Be(\"LIVE_ANNOUNCER_DEFAULT_OPTIONS\"),Xp=((Gp=function(){function e(t,n,r,i){_classCallCheck(this,e),this._ngZone=n,this._defaultOptions=i,this._document=r,this._liveElement=t||this._createLiveElement()}return _createClass(e,[{key:\"announce\",value:function(e){for(var t,n,r,i=this,a=this._defaultOptions,o=arguments.length,s=new Array(o>1?o-1:0),l=1;l1&&void 0!==arguments[1]&&arguments[1];if(!this._platform.isBrowser)return Bd(null);var r=gp(e);if(this._elementInfo.has(r)){var i=this._elementInfo.get(r);return i.checkChildren=n,i.subject.asObservable()}var a={unlisten:function(){},checkChildren:n,subject:new x};this._elementInfo.set(r,a),this._incrementMonitoredElementCount();var o=function(e){return t._onFocus(e,r)},s=function(e){return t._onBlur(e,r)};return this._ngZone.runOutsideAngular((function(){r.addEventListener(\"focus\",o,!0),r.addEventListener(\"blur\",s,!0)})),a.unlisten=function(){r.removeEventListener(\"focus\",o,!0),r.removeEventListener(\"blur\",s,!0)},a.subject.asObservable()}},{key:\"stopMonitoring\",value:function(e){var t=gp(e),n=this._elementInfo.get(t);n&&(n.unlisten(),n.subject.complete(),this._setClasses(t),this._elementInfo.delete(t),this._decrementMonitoredElementCount())}},{key:\"focusVia\",value:function(e,t,n){var r=gp(e);this._setOriginForCurrentEventQueue(t),\"function\"==typeof r.focus&&r.focus(n)}},{key:\"ngOnDestroy\",value:function(){var e=this;this._elementInfo.forEach((function(t,n){return e.stopMonitoring(n)}))}},{key:\"_toggleClass\",value:function(e,t,n){n?e.classList.add(t):e.classList.remove(t)}},{key:\"_setClasses\",value:function(e,t){this._elementInfo.get(e)&&(this._toggleClass(e,\"cdk-focused\",!!t),this._toggleClass(e,\"cdk-touch-focused\",\"touch\"===t),this._toggleClass(e,\"cdk-keyboard-focused\",\"keyboard\"===t),this._toggleClass(e,\"cdk-mouse-focused\",\"mouse\"===t),this._toggleClass(e,\"cdk-program-focused\",\"program\"===t))}},{key:\"_setOriginForCurrentEventQueue\",value:function(e){var t=this;this._ngZone.runOutsideAngular((function(){t._origin=e,t._originTimeoutId=setTimeout((function(){return t._origin=null}),1)}))}},{key:\"_wasCausedByTouch\",value:function(e){var t=e.target;return this._lastTouchTarget instanceof Node&&t instanceof Node&&(t===this._lastTouchTarget||t.contains(this._lastTouchTarget))}},{key:\"_onFocus\",value:function(e,t){var n=this._elementInfo.get(t);if(n&&(n.checkChildren||t===e.target)){var r=this._origin;r||(r=this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:this._wasCausedByTouch(e)?\"touch\":\"program\"),this._setClasses(t,r),this._emitOrigin(n.subject,r),this._lastFocusOrigin=r}}},{key:\"_onBlur\",value:function(e,t){var n=this._elementInfo.get(t);!n||n.checkChildren&&e.relatedTarget instanceof Node&&t.contains(e.relatedTarget)||(this._setClasses(t),this._emitOrigin(n.subject,null))}},{key:\"_emitOrigin\",value:function(e,t){this._ngZone.run((function(){return e.next(t)}))}},{key:\"_incrementMonitoredElementCount\",value:function(){var e=this;1==++this._monitoredElementCount&&this._platform.isBrowser&&this._ngZone.runOutsideAngular((function(){document.addEventListener(\"keydown\",e._documentKeydownListener,e_),document.addEventListener(\"mousedown\",e._documentMousedownListener,e_),document.addEventListener(\"touchstart\",e._documentTouchstartListener,e_),window.addEventListener(\"focus\",e._windowFocusListener)}))}},{key:\"_decrementMonitoredElementCount\",value:function(){--this._monitoredElementCount||(document.removeEventListener(\"keydown\",this._documentKeydownListener,e_),document.removeEventListener(\"mousedown\",this._documentMousedownListener,e_),document.removeEventListener(\"touchstart\",this._documentTouchstartListener,e_),window.removeEventListener(\"focus\",this._windowFocusListener),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._touchTimeoutId),clearTimeout(this._originTimeoutId))}}]),e}()).\\u0275fac=function(e){return new(e||$p)(et(cc),et(Cp))},$p.\\u0275prov=_e({factory:function(){return new $p(et(cc),et(Cp))},token:$p,providedIn:\"root\"}),$p);function n_(e){return 0===e.buttons}var r_,i_,a_,o_,s_,l_,u_,c_=((r_=function(){function e(t,n){_classCallCheck(this,e),this._platform=t,this._document=n}return _createClass(e,[{key:\"getHighContrastMode\",value:function(){if(!this._platform.isBrowser)return 0;var e=this._document.createElement(\"div\");e.style.backgroundColor=\"rgb(1,2,3)\",e.style.position=\"absolute\",this._document.body.appendChild(e);var t=(this._document.defaultView.getComputedStyle(e).backgroundColor||\"\").replace(/ /g,\"\");switch(this._document.body.removeChild(e),t){case\"rgb(0,0,0)\":return 2;case\"rgb(255,255,255)\":return 1}return 0}},{key:\"_applyBodyHighContrastModeCssClasses\",value:function(){if(this._platform.isBrowser&&this._document.body){var e=this._document.body.classList;e.remove(\"cdk-high-contrast-active\"),e.remove(\"cdk-high-contrast-black-on-white\"),e.remove(\"cdk-high-contrast-white-on-black\");var t=this.getHighContrastMode();1===t?(e.add(\"cdk-high-contrast-active\"),e.add(\"cdk-high-contrast-black-on-white\")):2===t&&(e.add(\"cdk-high-contrast-active\"),e.add(\"cdk-high-contrast-white-on-black\"))}}}]),e}()).\\u0275fac=function(e){return new(e||r_)(et(Cp),et(Wc))},r_.\\u0275prov=_e({factory:function(){return new r_(et(Cp),et(Wc))},token:r_,providedIn:\"root\"}),r_),d_=new Be(\"cdk-dir-doc\",{providedIn:\"root\",factory:function(){return tt(Wc)}}),h_=((a_=function(){function e(t){if(_classCallCheck(this,e),this.value=\"ltr\",this.change=new bu,t){var n=t.documentElement?t.documentElement.dir:null,r=(t.body?t.body.dir:null)||n;this.value=\"ltr\"===r||\"rtl\"===r?r:\"ltr\"}}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){this.change.complete()}}]),e}()).\\u0275fac=function(e){return new(e||a_)(et(d_,8))},a_.\\u0275prov=_e({factory:function(){return new a_(et(d_,8))},token:a_,providedIn:\"root\"}),a_),f_=((i_=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:i_}),i_.\\u0275inj=ve({factory:function(e){return new(e||i_)}}),i_),m_=new al(\"9.0.1\"),p_=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"getProperty\",value:function(e,t){return e[t]}},{key:\"log\",value:function(e){window.console&&window.console.log&&window.console.log(e)}},{key:\"logGroup\",value:function(e){window.console&&window.console.group&&window.console.group(e)}},{key:\"logGroupEnd\",value:function(){window.console&&window.console.groupEnd&&window.console.groupEnd()}},{key:\"onAndCancel\",value:function(e,t,n){return e.addEventListener(t,n,!1),function(){e.removeEventListener(t,n,!1)}}},{key:\"dispatchEvent\",value:function(e,t){e.dispatchEvent(t)}},{key:\"remove\",value:function(e){return e.parentNode&&e.parentNode.removeChild(e),e}},{key:\"getValue\",value:function(e){return e.value}},{key:\"createElement\",value:function(e,t){return(t=t||this.getDefaultDocument()).createElement(e)}},{key:\"createHtmlDocument\",value:function(){return document.implementation.createHTMLDocument(\"fakeTitle\")}},{key:\"getDefaultDocument\",value:function(){return document}},{key:\"isElementNode\",value:function(e){return e.nodeType===Node.ELEMENT_NODE}},{key:\"isShadowRoot\",value:function(e){return e instanceof DocumentFragment}},{key:\"getGlobalEventTarget\",value:function(e,t){return\"window\"===t?window:\"document\"===t?e:\"body\"===t?e.body:null}},{key:\"getHistory\",value:function(){return window.history}},{key:\"getLocation\",value:function(){return window.location}},{key:\"getBaseHref\",value:function(e){var t,n=__||(__=document.querySelector(\"base\"))?__.getAttribute(\"href\"):null;return null==n?null:(t=n,o_||(o_=document.createElement(\"a\")),o_.setAttribute(\"href\",t),\"/\"===o_.pathname.charAt(0)?o_.pathname:\"/\"+o_.pathname)}},{key:\"resetBaseElement\",value:function(){__=null}},{key:\"getUserAgent\",value:function(){return window.navigator.userAgent}},{key:\"performanceNow\",value:function(){return window.performance&&window.performance.now?window.performance.now():(new Date).getTime()}},{key:\"supportsCookies\",value:function(){return!0}},{key:\"getCookie\",value:function(e){return vd(document.cookie,e)}}],[{key:\"makeCurrent\",value:function(){var e;e=new n,Nc||(Nc=e)}}]),n}(function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.call(this)}return _createClass(n,[{key:\"supportsDOMEvents\",value:function(){return!0}}]),n}(function(){return function e(){_classCallCheck(this,e)}}())),__=null,v_=new Be(\"TRANSITION_ID\"),g_=[{provide:Vu,useFactory:function(e,t,n){return function(){n.get(Wu).donePromise.then((function(){var n=zc();Array.prototype.slice.apply(t.querySelectorAll(\"style[ng-transition]\")).filter((function(t){return t.getAttribute(\"ng-transition\")===e})).forEach((function(e){return n.remove(e)}))}))}},deps:[v_,Wc,vo],multi:!0}],y_=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"addToWindow\",value:function(e){Re.getAngularTestability=function(t){var n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],r=e.findTestabilityInTree(t,n);if(null==r)throw new Error(\"Could not find testability for element.\");return r},Re.getAllAngularTestabilities=function(){return e.getAllTestabilities()},Re.getAllAngularRootElements=function(){return e.getAllRootElements()},Re.frameworkStabilizers||(Re.frameworkStabilizers=[]),Re.frameworkStabilizers.push((function(e){var t=Re.getAllAngularTestabilities(),n=t.length,r=!1,i=function(t){r=r||t,0==--n&&e(r)};t.forEach((function(e){e.whenStable(i)}))}))}},{key:\"findTestabilityInTree\",value:function(e,t,n){if(null==t)return null;var r=e.getTestability(t);return null!=r?r:n?zc().isShadowRoot(t)?this.findTestabilityInTree(e,t.host,!0):this.findTestabilityInTree(e,t.parentElement,!0):null}}],[{key:\"init\",value:function(){var t;t=new e,kc=t}}]),e}(),b_=new Be(\"EventManagerPlugins\"),k_=((s_=function(){function e(t,n){var r=this;_classCallCheck(this,e),this._zone=n,this._eventNameToPlugin=new Map,t.forEach((function(e){return e.manager=r})),this._plugins=t.slice().reverse()}return _createClass(e,[{key:\"addEventListener\",value:function(e,t,n){return this._findPluginFor(t).addEventListener(e,t,n)}},{key:\"addGlobalEventListener\",value:function(e,t,n){return this._findPluginFor(t).addGlobalEventListener(e,t,n)}},{key:\"getZone\",value:function(){return this._zone}},{key:\"_findPluginFor\",value:function(e){var t=this._eventNameToPlugin.get(e);if(t)return t;for(var n=this._plugins,r=0;r-1}}]),n}(w_),E_.\\u0275fac=function(e){return new(e||E_)(et(Wc),et(U_),et(Ku),et(B_,8))},E_.\\u0275prov=_e({token:E_,factory:E_.\\u0275fac}),E_),multi:!0,deps:[Wc,U_,Ku,[new ce,B_]]},{provide:U_,useClass:q_,deps:[]}],$_=((I_=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:I_}),I_.\\u0275inj=ve({factory:function(e){return new(e||I_)},providers:G_}),I_),J_=[\"alt\",\"control\",\"meta\",\"shift\"],K_={\"\\b\":\"Backspace\",\"\\t\":\"Tab\",\"\\x7f\":\"Delete\",\"\\x1b\":\"Escape\",Del:\"Delete\",Esc:\"Escape\",Left:\"ArrowLeft\",Right:\"ArrowRight\",Up:\"ArrowUp\",Down:\"ArrowDown\",Menu:\"ContextMenu\",Scroll:\"ScrollLock\",Win:\"OS\"},Z_={A:\"1\",B:\"2\",C:\"3\",D:\"4\",E:\"5\",F:\"6\",G:\"7\",H:\"8\",I:\"9\",J:\"*\",K:\"+\",M:\"-\",N:\".\",O:\"/\",\"`\":\"0\",\"\\x90\":\"NumLock\"},Q_={alt:function(e){return e.altKey},control:function(e){return e.ctrlKey},meta:function(e){return e.metaKey},shift:function(e){return e.shiftKey}},X_=((j_=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){return _classCallCheck(this,n),t.call(this,e)}return _createClass(n,[{key:\"supports\",value:function(e){return null!=n.parseEventName(e)}},{key:\"addEventListener\",value:function(e,t,r){var i=n.parseEventName(t),a=n.eventCallback(i.fullKey,r,this.manager.getZone());return this.manager.getZone().runOutsideAngular((function(){return zc().onAndCancel(e,i.domEventName,a)}))}}],[{key:\"parseEventName\",value:function(e){var t=e.toLowerCase().split(\".\"),r=t.shift();if(0===t.length||\"keydown\"!==r&&\"keyup\"!==r)return null;var i=n._normalizeKey(t.pop()),a=\"\";if(J_.forEach((function(e){var n=t.indexOf(e);n>-1&&(t.splice(n,1),a+=e+\".\")})),a+=i,0!=t.length||0===i.length)return null;var o={};return o.domEventName=r,o.fullKey=a,o}},{key:\"getEventFullKey\",value:function(e){var t=\"\",n=function(e){var t=e.key;if(null==t){if(null==(t=e.keyIdentifier))return\"Unidentified\";t.startsWith(\"U+\")&&(t=String.fromCharCode(parseInt(t.substring(2),16)),3===e.location&&Z_.hasOwnProperty(t)&&(t=Z_[t]))}return K_[t]||t}(e);return\" \"===(n=n.toLowerCase())?n=\"space\":\".\"===n&&(n=\"dot\"),J_.forEach((function(r){r!=n&&(0,Q_[r])(e)&&(t+=r+\".\")})),t+=n}},{key:\"eventCallback\",value:function(e,t,r){return function(i){n.getEventFullKey(i)===e&&r.runGuarded((function(){return t(i)}))}}},{key:\"_normalizeKey\",value:function(e){switch(e){case\"esc\":return\"escape\";default:return e}}}]),n}(w_)).\\u0275fac=function(e){return new(e||j_)(et(Wc))},j_.\\u0275prov=_e({token:j_,factory:j_.\\u0275fac}),j_),ev=((P_=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||P_)},P_.\\u0275prov=_e({factory:function(){return et(tv)},token:P_,providedIn:\"root\"}),P_),tv=((A_=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this))._doc=e,r}return _createClass(n,[{key:\"sanitize\",value:function(e,t){if(null==t)return null;switch(e){case Kr.NONE:return t;case Kr.HTML:return wr(t,\"HTML\")?kr(t):$r(this._doc,String(t));case Kr.STYLE:return wr(t,\"Style\")?kr(t):Xr(t);case Kr.SCRIPT:if(wr(t,\"Script\"))return kr(t);throw new Error(\"unsafe value used in a script context\");case Kr.URL:return Cr(t),wr(t,\"URL\")?kr(t):Or(String(t));case Kr.RESOURCE_URL:if(wr(t,\"ResourceURL\"))return kr(t);throw new Error(\"unsafe value used in a resource URL context (see http://g.co/ng/security#xss)\");default:throw new Error(\"Unexpected SecurityContext \".concat(e,\" (see http://g.co/ng/security#xss)\"))}}},{key:\"bypassSecurityTrustHtml\",value:function(e){return new _r(e)}},{key:\"bypassSecurityTrustStyle\",value:function(e){return new vr(e)}},{key:\"bypassSecurityTrustScript\",value:function(e){return new gr(e)}},{key:\"bypassSecurityTrustUrl\",value:function(e){return new yr(e)}},{key:\"bypassSecurityTrustResourceUrl\",value:function(e){return new br(e)}}]),n}(ev)).\\u0275fac=function(e){return new(e||A_)(et(Wc))},A_.\\u0275prov=_e({factory:function(){return e=et(qe),new tv(e.get(Wc));var e},token:A_,providedIn:\"root\"}),A_),nv=Sc(Rc,\"browser\",[{provide:$u,useValue:\"browser\"},{provide:Gu,useValue:function(){p_.makeCurrent(),y_.init()},multi:!0},{provide:Wc,useFactory:function(){return function(e){Rt=e}(document),document},deps:[]}]),rv=[[],{provide:no,useValue:\"root\"},{provide:mr,useFactory:function(){return new mr},deps:[]},{provide:b_,useClass:V_,multi:!0,deps:[Wc,cc,$u]},{provide:b_,useClass:X_,multi:!0,deps:[Wc]},[],{provide:H_,useClass:H_,deps:[k_,M_,Uu]},{provide:el,useExisting:H_},{provide:C_,useExisting:M_},{provide:M_,useClass:M_,deps:[Wc]},{provide:yc,useClass:yc,deps:[cc]},{provide:k_,useClass:k_,deps:[b_,cc]},[]],iv=((R_=function(){function e(t){if(_classCallCheck(this,e),t)throw new Error(\"BrowserModule has already been loaded. If you need access to common directives such as NgIf and NgFor from a lazy loaded module, import CommonModule instead.\")}return _createClass(e,null,[{key:\"withServerTransition\",value:function(t){return{ngModule:e,providers:[{provide:Uu,useValue:t.appId},{provide:v_,useExisting:Uu},g_]}}}]),e}()).\\u0275mod=Mt({type:R_}),R_.\\u0275inj=ve({factory:function(e){return new(e||R_)(et(R_,12))},providers:rv,imports:[Nd,Fc]}),R_);function av(){return $(1)}function ov(){return av()(Bd.apply(void 0,arguments))}function sv(){for(var e=arguments.length,t=new Array(e),n=0;n1&&void 0!==arguments[1]?arguments[1]:null;return{type:4,styles:t,timings:e}}function dv(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return{type:2,steps:e,options:t}}function hv(e){return{type:6,styles:e,offset:null}}function fv(e,t,n){return{type:0,name:e,styles:t,options:n}}function mv(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return{type:1,expr:e,animation:t,options:n}}function pv(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return{type:11,selector:e,animation:t,options:n}}function _v(e){Promise.resolve(null).then(e)}var vv=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;_classCallCheck(this,e),this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this.parentPlayer=null,this.totalTime=t+n}return _createClass(e,[{key:\"_onFinish\",value:function(){this._finished||(this._finished=!0,this._onDoneFns.forEach((function(e){return e()})),this._onDoneFns=[])}},{key:\"onStart\",value:function(e){this._onStartFns.push(e)}},{key:\"onDone\",value:function(e){this._onDoneFns.push(e)}},{key:\"onDestroy\",value:function(e){this._onDestroyFns.push(e)}},{key:\"hasStarted\",value:function(){return this._started}},{key:\"init\",value:function(){}},{key:\"play\",value:function(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}},{key:\"triggerMicrotask\",value:function(){var e=this;_v((function(){return e._onFinish()}))}},{key:\"_onStart\",value:function(){this._onStartFns.forEach((function(e){return e()})),this._onStartFns=[]}},{key:\"pause\",value:function(){}},{key:\"restart\",value:function(){}},{key:\"finish\",value:function(){this._onFinish()}},{key:\"destroy\",value:function(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach((function(e){return e()})),this._onDestroyFns=[])}},{key:\"reset\",value:function(){}},{key:\"setPosition\",value:function(e){}},{key:\"getPosition\",value:function(){return 0}},{key:\"triggerCallback\",value:function(e){var t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach((function(e){return e()})),t.length=0}}]),e}(),gv=function(){function e(t){var n=this;_classCallCheck(this,e),this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=t;var r=0,i=0,a=0,o=this.players.length;0==o?_v((function(){return n._onFinish()})):this.players.forEach((function(e){e.onDone((function(){++r==o&&n._onFinish()})),e.onDestroy((function(){++i==o&&n._onDestroy()})),e.onStart((function(){++a==o&&n._onStart()}))})),this.totalTime=this.players.reduce((function(e,t){return Math.max(e,t.totalTime)}),0)}return _createClass(e,[{key:\"_onFinish\",value:function(){this._finished||(this._finished=!0,this._onDoneFns.forEach((function(e){return e()})),this._onDoneFns=[])}},{key:\"init\",value:function(){this.players.forEach((function(e){return e.init()}))}},{key:\"onStart\",value:function(e){this._onStartFns.push(e)}},{key:\"_onStart\",value:function(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach((function(e){return e()})),this._onStartFns=[])}},{key:\"onDone\",value:function(e){this._onDoneFns.push(e)}},{key:\"onDestroy\",value:function(e){this._onDestroyFns.push(e)}},{key:\"hasStarted\",value:function(){return this._started}},{key:\"play\",value:function(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach((function(e){return e.play()}))}},{key:\"pause\",value:function(){this.players.forEach((function(e){return e.pause()}))}},{key:\"restart\",value:function(){this.players.forEach((function(e){return e.restart()}))}},{key:\"finish\",value:function(){this._onFinish(),this.players.forEach((function(e){return e.finish()}))}},{key:\"destroy\",value:function(){this._onDestroy()}},{key:\"_onDestroy\",value:function(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach((function(e){return e.destroy()})),this._onDestroyFns.forEach((function(e){return e()})),this._onDestroyFns=[])}},{key:\"reset\",value:function(){this.players.forEach((function(e){return e.reset()})),this._destroyed=!1,this._finished=!1,this._started=!1}},{key:\"setPosition\",value:function(e){var t=e*this.totalTime;this.players.forEach((function(e){var n=e.totalTime?Math.min(1,t/e.totalTime):1;e.setPosition(n)}))}},{key:\"getPosition\",value:function(){var e=0;return this.players.forEach((function(t){var n=t.getPosition();e=Math.min(n,e)})),e}},{key:\"beforeDestroy\",value:function(){this.players.forEach((function(e){e.beforeDestroy&&e.beforeDestroy()}))}},{key:\"triggerCallback\",value:function(e){var t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach((function(e){return e()})),t.length=0}}]),e}();function yv(){return\"undefined\"!=typeof process&&\"[object process]\"==={}.toString.call(process)}function bv(e){switch(e.length){case 0:return new vv;case 1:return e[0];default:return new gv(e)}}function kv(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},o=[],s=[],l=-1,u=null;if(r.forEach((function(e){var n=e.offset,r=n==l,c=r&&u||{};Object.keys(e).forEach((function(n){var r=n,s=e[n];if(\"offset\"!==n)switch(r=t.normalizePropertyName(r,o),s){case\"!\":s=i[n];break;case\"*\":s=a[n];break;default:s=t.normalizeStyleValue(n,r,s,o)}c[r]=s})),r||s.push(c),u=c,l=n})),o.length){var c=\"\\n - \";throw new Error(\"Unable to animate due to the following errors:\".concat(c).concat(o.join(c)))}return s}function wv(e,t,n,r){switch(t){case\"start\":e.onStart((function(){return r(n&&Cv(n,\"start\",e))}));break;case\"done\":e.onDone((function(){return r(n&&Cv(n,\"done\",e))}));break;case\"destroy\":e.onDestroy((function(){return r(n&&Cv(n,\"destroy\",e))}))}}function Cv(e,t,n){var r=n.totalTime,i=Mv(e.element,e.triggerName,e.fromState,e.toState,t||e.phaseName,null==r?e.totalTime:r,!!n.disabled),a=e._data;return null!=a&&(i._data=a),i}function Mv(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:\"\",a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0,o=arguments.length>6?arguments[6]:void 0;return{element:e,triggerName:t,fromState:n,toState:r,phaseName:i,totalTime:a,disabled:!!o}}function Sv(e,t,n){var r;return e instanceof Map?(r=e.get(t))||e.set(t,r=n):(r=e[t])||(r=e[t]=n),r}function Lv(e){var t=e.indexOf(\":\");return[e.substring(1,t),e.substr(t+1)]}var Tv=function(e,t){return!1},xv=function(e,t){return!1},Dv=function(e,t,n){return[]},Ov=yv();(Ov||\"undefined\"!=typeof Element)&&(Tv=function(e,t){return e.contains(t)},xv=function(){if(Ov||Element.prototype.matches)return function(e,t){return e.matches(t)};var e=Element.prototype,t=e.matchesSelector||e.mozMatchesSelector||e.msMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;return t?function(e,n){return t.apply(e,[n])}:xv}(),Dv=function(e,t,n){var r=[];if(n)r.push.apply(r,_toConsumableArray(e.querySelectorAll(t)));else{var i=e.querySelector(t);i&&r.push(i)}return r});var Yv=null,Ev=!1;function Iv(e){Yv||(Yv=(\"undefined\"!=typeof document?document.body:null)||{},Ev=!!Yv.style&&\"WebkitAppearance\"in Yv.style);var t=!0;return Yv.style&&!function(e){return\"ebkit\"==e.substring(1,6)}(e)&&(!(t=e in Yv.style)&&Ev)&&(t=\"Webkit\"+e.charAt(0).toUpperCase()+e.substr(1)in Yv.style),t}var Av=xv,Pv=Tv,jv=Dv;function Rv(e){var t={};return Object.keys(e).forEach((function(n){var r=n.replace(/([a-z])([A-Z])/g,\"$1-$2\");t[r]=e[n]})),t}var Hv,Fv=((Hv=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"validateStyleProperty\",value:function(e){return Iv(e)}},{key:\"matchesElement\",value:function(e,t){return Av(e,t)}},{key:\"containsElement\",value:function(e,t){return Pv(e,t)}},{key:\"query\",value:function(e,t,n){return jv(e,t,n)}},{key:\"computeStyle\",value:function(e,t,n){return n||\"\"}},{key:\"animate\",value:function(e,t,n,r,i){return arguments.length>5&&void 0!==arguments[5]&&arguments[5],arguments.length>6&&arguments[6],new vv(n,r)}}]),e}()).\\u0275fac=function(e){return new(e||Hv)},Hv.\\u0275prov=_e({token:Hv,factory:Hv.\\u0275fac}),Hv),Nv=function(){var e=function e(){_classCallCheck(this,e)};return e.NOOP=new Fv,e}();function zv(e){if(\"number\"==typeof e)return e;var t=e.match(/^(-?[\\.\\d]+)(m?s)/);return!t||t.length<2?0:Vv(parseFloat(t[1]),t[2])}function Vv(e,t){switch(t){case\"s\":return 1e3*e;default:return e}}function Wv(e,t,n){return e.hasOwnProperty(\"duration\")?e:function(e,t,n){var r,i=0,a=\"\";if(\"string\"==typeof e){var o=e.match(/^(-?[\\.\\d]+)(m?s)(?:\\s+(-?[\\.\\d]+)(m?s))?(?:\\s+([-a-z]+(?:\\(.+?\\))?))?$/i);if(null===o)return t.push('The provided timing value \"'.concat(e,'\" is invalid.')),{duration:0,delay:0,easing:\"\"};r=Vv(parseFloat(o[1]),o[2]);var s=o[3];null!=s&&(i=Vv(parseFloat(s),o[4]));var l=o[5];l&&(a=l)}else r=e;if(!n){var u=!1,c=t.length;r<0&&(t.push(\"Duration values below 0 are not allowed for this animation step.\"),u=!0),i<0&&(t.push(\"Delay values below 0 are not allowed for this animation step.\"),u=!0),u&&t.splice(c,0,'The provided timing value \"'.concat(e,'\" is invalid.'))}return{duration:r,delay:i,easing:a}}(e,t,n)}function Uv(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Object.keys(e).forEach((function(n){t[n]=e[n]})),t}function Bv(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(t)for(var r in e)n[r]=e[r];else Uv(e,n);return n}function qv(e,t,n){return n?t+\":\"+n+\";\":\"\"}function Gv(e){for(var t=\"\",n=0;n *\";case\":leave\":return\"* => void\";case\":increment\":return function(e,t){return parseFloat(t)>parseFloat(e)};case\":decrement\":return function(e,t){return parseFloat(t) *\"}}(e,n);if(\"function\"==typeof r)return void t.push(r);e=r}var i=e.match(/^(\\*|[-\\w]+)\\s*()\\s*(\\*|[-\\w]+)$/);if(null==i||i.length<4)return n.push('The provided transition expression \"'.concat(e,'\" is not supported')),t;var a=i[1],o=i[2],s=i[3];t.push(ug(a,s)),\"<\"!=o[0]||\"*\"==a&&\"*\"==s||t.push(ug(s,a))}(e,i,r)})):i.push(n),i),animation:a,queryCount:t.queryCount,depCount:t.depCount,options:pg(e.options)}}},{key:\"visitSequence\",value:function(e,t){var n=this;return{type:2,steps:e.steps.map((function(e){return ag(n,e,t)})),options:pg(e.options)}}},{key:\"visitGroup\",value:function(e,t){var n=this,r=t.currentTime,i=0,a=e.steps.map((function(e){t.currentTime=r;var a=ag(n,e,t);return i=Math.max(i,t.currentTime),a}));return t.currentTime=i,{type:3,steps:a,options:pg(e.options)}}},{key:\"visitAnimate\",value:function(e,t){var n,r=function(e,t){var n=null;if(e.hasOwnProperty(\"duration\"))n=e;else if(\"number\"==typeof e)return _g(Wv(e,t).duration,0,\"\");var r=e;if(r.split(/\\s+/).some((function(e){return\"{\"==e.charAt(0)&&\"{\"==e.charAt(1)}))){var i=_g(0,0,\"\");return i.dynamic=!0,i.strValue=r,i}return _g((n=n||Wv(r,t)).duration,n.delay,n.easing)}(e.timings,t.errors);t.currentAnimateTimings=r;var i=e.styles?e.styles:hv({});if(5==i.type)n=this.visitKeyframes(i,t);else{var a=e.styles,o=!1;if(!a){o=!0;var s={};r.easing&&(s.easing=r.easing),a=hv(s)}t.currentTime+=r.duration+r.delay;var l=this.visitStyle(a,t);l.isEmptyStep=o,n=l}return t.currentAnimateTimings=null,{type:4,timings:r,style:n,options:null}}},{key:\"visitStyle\",value:function(e,t){var n=this._makeStyleAst(e,t);return this._validateStyleAst(n,t),n}},{key:\"_makeStyleAst\",value:function(e,t){var n=[];Array.isArray(e.styles)?e.styles.forEach((function(e){\"string\"==typeof e?\"*\"==e?n.push(e):t.errors.push(\"The provided style string value \".concat(e,\" is not allowed.\")):n.push(e)})):n.push(e.styles);var r=!1,i=null;return n.forEach((function(e){if(mg(e)){var t=e,n=t.easing;if(n&&(i=n,delete t.easing),!r)for(var a in t)if(t[a].toString().indexOf(\"{{\")>=0){r=!0;break}}})),{type:6,styles:n,easing:i,offset:e.offset,containsDynamicStyles:r,options:null}}},{key:\"_validateStyleAst\",value:function(e,t){var n=this,r=t.currentAnimateTimings,i=t.currentTime,a=t.currentTime;r&&a>0&&(a-=r.duration+r.delay),e.styles.forEach((function(e){\"string\"!=typeof e&&Object.keys(e).forEach((function(r){if(n._driver.validateStyleProperty(r)){var o,s,l,u,c,d=t.collectedStyles[t.currentQuerySelector],h=d[r],f=!0;h&&(a!=i&&a>=h.startTime&&i<=h.endTime&&(t.errors.push('The CSS property \"'.concat(r,'\" that exists between the times of \"').concat(h.startTime,'ms\" and \"').concat(h.endTime,'ms\" is also being animated in a parallel animation between the times of \"').concat(a,'ms\" and \"').concat(i,'ms\"')),f=!1),a=h.startTime),f&&(d[r]={startTime:a,endTime:i}),t.options&&(o=e[r],s=t.options,l=t.errors,u=s.params||{},(c=Qv(o)).length&&c.forEach((function(e){u.hasOwnProperty(e)||l.push(\"Unable to resolve the local animation param \".concat(e,\" in the given list of values\"))})))}else t.errors.push('The provided animation property \"'.concat(r,'\" is not a supported CSS property for animations'))}))}))}},{key:\"visitKeyframes\",value:function(e,t){var n=this,r={type:5,styles:[],options:null};if(!t.currentAnimateTimings)return t.errors.push(\"keyframes() must be placed inside of a call to animate()\"),r;var i=0,a=[],o=!1,s=!1,l=0,u=e.steps.map((function(e){var r=n._makeStyleAst(e,t),u=null!=r.offset?r.offset:function(e){if(\"string\"==typeof e)return null;var t=null;if(Array.isArray(e))e.forEach((function(e){if(mg(e)&&e.hasOwnProperty(\"offset\")){var n=e;t=parseFloat(n.offset),delete n.offset}}));else if(mg(e)&&e.hasOwnProperty(\"offset\")){var n=e;t=parseFloat(n.offset),delete n.offset}return t}(r.styles),c=0;return null!=u&&(i++,c=r.offset=u),s=s||c<0||c>1,o=o||c0&&i0?i==h?1:d*i:a[i],s=o*p;t.currentTime=f+m.delay+s,m.duration=s,n._validateStyleAst(e,t),e.offset=o,r.styles.push(e)})),r}},{key:\"visitReference\",value:function(e,t){return{type:8,animation:ag(this,Kv(e.animation),t),options:pg(e.options)}}},{key:\"visitAnimateChild\",value:function(e,t){return t.depCount++,{type:9,options:pg(e.options)}}},{key:\"visitAnimateRef\",value:function(e,t){return{type:10,animation:this.visitReference(e.animation,t),options:pg(e.options)}}},{key:\"visitQuery\",value:function(e,t){var n=t.currentQuerySelector,r=e.options||{};t.queryCount++,t.currentQuery=e;var i=_slicedToArray(function(e){var t=!!e.split(/\\s*,\\s*/).find((function(e){return\":self\"==e}));return t&&(e=e.replace(cg,\"\")),[e=e.replace(/@\\*/g,\".ng-trigger\").replace(/@\\w+/g,(function(e){return\".ng-trigger-\"+e.substr(1)})).replace(/:animating/g,\".ng-animating\"),t]}(e.selector),2),a=i[0],o=i[1];t.currentQuerySelector=n.length?n+\" \"+a:a,Sv(t.collectedStyles,t.currentQuerySelector,{});var s=ag(this,Kv(e.animation),t);return t.currentQuery=null,t.currentQuerySelector=n,{type:11,selector:a,limit:r.limit||0,optional:!!r.optional,includeSelf:o,animation:s,originalSelector:e.selector,options:pg(e.options)}}},{key:\"visitStagger\",value:function(e,t){t.currentQuery||t.errors.push(\"stagger() can only be used inside of query()\");var n=\"full\"===e.timings?{duration:0,delay:0,easing:\"full\"}:Wv(e.timings,t.errors,!0);return{type:12,animation:ag(this,Kv(e.animation),t),timings:n,options:null}}}]),e}(),fg=function e(t){_classCallCheck(this,e),this.errors=t,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles={},this.options=null};function mg(e){return!Array.isArray(e)&&\"object\"==typeof e}function pg(e){var t;return e?(e=Uv(e)).params&&(e.params=(t=e.params)?Uv(t):null):e={},e}function _g(e,t,n){return{duration:e,delay:t,easing:n}}function vg(e,t,n,r,i,a){var o=arguments.length>6&&void 0!==arguments[6]?arguments[6]:null,s=arguments.length>7&&void 0!==arguments[7]&&arguments[7];return{type:1,element:e,keyframes:t,preStyleProps:n,postStyleProps:r,duration:i,delay:a,totalTime:i+a,easing:o,subTimeline:s}}var gg=function(){function e(){_classCallCheck(this,e),this._map=new Map}return _createClass(e,[{key:\"consume\",value:function(e){var t=this._map.get(e);return t?this._map.delete(e):t=[],t}},{key:\"append\",value:function(e,t){var n,r=this._map.get(e);r||this._map.set(e,r=[]),(n=r).push.apply(n,_toConsumableArray(t))}},{key:\"has\",value:function(e){return this._map.has(e)}},{key:\"clear\",value:function(){this._map.clear()}}]),e}(),yg=new RegExp(\":enter\",\"g\"),bg=new RegExp(\":leave\",\"g\");function kg(e,t,n,r,i){var a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},o=arguments.length>6&&void 0!==arguments[6]?arguments[6]:{},s=arguments.length>7?arguments[7]:void 0,l=arguments.length>8?arguments[8]:void 0,u=arguments.length>9&&void 0!==arguments[9]?arguments[9]:[];return(new wg).buildKeyframes(e,t,n,r,i,a,o,s,l,u)}var wg=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"buildKeyframes\",value:function(e,t,n,r,i,a,o,s,l){var u=arguments.length>9&&void 0!==arguments[9]?arguments[9]:[];l=l||new gg;var c=new Mg(e,t,l,r,i,u,[]);c.options=s,c.currentTimeline.setStyles([a],null,c.errors,s),ag(this,n,c);var d=c.timelines.filter((function(e){return e.containsAnimation()}));if(d.length&&Object.keys(o).length){var h=d[d.length-1];h.allowOnlyTimelineStyles()||h.setStyles([o],null,c.errors,s)}return d.length?d.map((function(e){return e.buildKeyframes()})):[vg(t,[],[],[],0,0,\"\",!1)]}},{key:\"visitTrigger\",value:function(e,t){}},{key:\"visitState\",value:function(e,t){}},{key:\"visitTransition\",value:function(e,t){}},{key:\"visitAnimateChild\",value:function(e,t){var n=t.subInstructions.consume(t.element);if(n){var r=t.createSubContext(e.options),i=t.currentTimeline.currentTime,a=this._visitSubInstructions(n,r,r.options);i!=a&&t.transformIntoNewTimeline(a)}t.previousNode=e}},{key:\"visitAnimateRef\",value:function(e,t){var n=t.createSubContext(e.options);n.transformIntoNewTimeline(),this.visitReference(e.animation,n),t.transformIntoNewTimeline(n.currentTimeline.currentTime),t.previousNode=e}},{key:\"_visitSubInstructions\",value:function(e,t,n){var r=t.currentTimeline.currentTime,i=null!=n.duration?zv(n.duration):null,a=null!=n.delay?zv(n.delay):null;return 0!==i&&e.forEach((function(e){var n=t.appendInstructionToTimeline(e,i,a);r=Math.max(r,n.duration+n.delay)})),r}},{key:\"visitReference\",value:function(e,t){t.updateOptions(e.options,!0),ag(this,e.animation,t),t.previousNode=e}},{key:\"visitSequence\",value:function(e,t){var n=this,r=t.subContextCount,i=t,a=e.options;if(a&&(a.params||a.delay)&&((i=t.createSubContext(a)).transformIntoNewTimeline(),null!=a.delay)){6==i.previousNode.type&&(i.currentTimeline.snapshotCurrentStyles(),i.previousNode=Cg);var o=zv(a.delay);i.delayNextStep(o)}e.steps.length&&(e.steps.forEach((function(e){return ag(n,e,i)})),i.currentTimeline.applyStylesToKeyframe(),i.subContextCount>r&&i.transformIntoNewTimeline()),t.previousNode=e}},{key:\"visitGroup\",value:function(e,t){var n=this,r=[],i=t.currentTimeline.currentTime,a=e.options&&e.options.delay?zv(e.options.delay):0;e.steps.forEach((function(o){var s=t.createSubContext(e.options);a&&s.delayNextStep(a),ag(n,o,s),i=Math.max(i,s.currentTimeline.currentTime),r.push(s.currentTimeline)})),r.forEach((function(e){return t.currentTimeline.mergeTimelineCollectedStyles(e)})),t.transformIntoNewTimeline(i),t.previousNode=e}},{key:\"_visitTiming\",value:function(e,t){if(e.dynamic){var n=e.strValue;return Wv(t.params?Xv(n,t.params,t.errors):n,t.errors)}return{duration:e.duration,delay:e.delay,easing:e.easing}}},{key:\"visitAnimate\",value:function(e,t){var n=t.currentAnimateTimings=this._visitTiming(e.timings,t),r=t.currentTimeline;n.delay&&(t.incrementTime(n.delay),r.snapshotCurrentStyles());var i=e.style;5==i.type?this.visitKeyframes(i,t):(t.incrementTime(n.duration),this.visitStyle(i,t),r.applyStylesToKeyframe()),t.currentAnimateTimings=null,t.previousNode=e}},{key:\"visitStyle\",value:function(e,t){var n=t.currentTimeline,r=t.currentAnimateTimings;!r&&n.getCurrentStyleProperties().length&&n.forwardFrame();var i=r&&r.easing||e.easing;e.isEmptyStep?n.applyEmptyStep(i):n.setStyles(e.styles,i,t.errors,t.options),t.previousNode=e}},{key:\"visitKeyframes\",value:function(e,t){var n=t.currentAnimateTimings,r=t.currentTimeline.duration,i=n.duration,a=t.createSubContext().currentTimeline;a.easing=n.easing,e.styles.forEach((function(e){a.forwardTime((e.offset||0)*i),a.setStyles(e.styles,e.easing,t.errors,t.options),a.applyStylesToKeyframe()})),t.currentTimeline.mergeTimelineCollectedStyles(a),t.transformIntoNewTimeline(r+i),t.previousNode=e}},{key:\"visitQuery\",value:function(e,t){var n=this,r=t.currentTimeline.currentTime,i=e.options||{},a=i.delay?zv(i.delay):0;a&&(6===t.previousNode.type||0==r&&t.currentTimeline.getCurrentStyleProperties().length)&&(t.currentTimeline.snapshotCurrentStyles(),t.previousNode=Cg);var o=r,s=t.invokeQuery(e.selector,e.originalSelector,e.limit,e.includeSelf,!!i.optional,t.errors);t.currentQueryTotal=s.length;var l=null;s.forEach((function(r,i){t.currentQueryIndex=i;var s=t.createSubContext(e.options,r);a&&s.delayNextStep(a),r===t.element&&(l=s.currentTimeline),ag(n,e.animation,s),s.currentTimeline.applyStylesToKeyframe(),o=Math.max(o,s.currentTimeline.currentTime)})),t.currentQueryIndex=0,t.currentQueryTotal=0,t.transformIntoNewTimeline(o),l&&(t.currentTimeline.mergeTimelineCollectedStyles(l),t.currentTimeline.snapshotCurrentStyles()),t.previousNode=e}},{key:\"visitStagger\",value:function(e,t){var n=t.parentContext,r=t.currentTimeline,i=e.timings,a=Math.abs(i.duration),o=a*(t.currentQueryTotal-1),s=a*t.currentQueryIndex;switch(i.duration<0?\"reverse\":i.easing){case\"reverse\":s=o-s;break;case\"full\":s=n.currentStaggerTime}var l=t.currentTimeline;s&&l.delayNextStep(s);var u=l.currentTime;ag(this,e.animation,t),t.previousNode=e,n.currentStaggerTime=r.currentTime-u+(r.startTime-n.currentTimeline.startTime)}}]),e}(),Cg={},Mg=function(){function e(t,n,r,i,a,o,s,l){_classCallCheck(this,e),this._driver=t,this.element=n,this.subInstructions=r,this._enterClassName=i,this._leaveClassName=a,this.errors=o,this.timelines=s,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=Cg,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=l||new Sg(this._driver,n,0),s.push(this.currentTimeline)}return _createClass(e,[{key:\"updateOptions\",value:function(e,t){var n=this;if(e){var r=e,i=this.options;null!=r.duration&&(i.duration=zv(r.duration)),null!=r.delay&&(i.delay=zv(r.delay));var a=r.params;if(a){var o=i.params;o||(o=this.options.params={}),Object.keys(a).forEach((function(e){t&&o.hasOwnProperty(e)||(o[e]=Xv(a[e],o,n.errors))}))}}}},{key:\"_copyOptions\",value:function(){var e={};if(this.options){var t=this.options.params;if(t){var n=e.params={};Object.keys(t).forEach((function(e){n[e]=t[e]}))}}return e}},{key:\"createSubContext\",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,n=arguments.length>1?arguments[1]:void 0,r=arguments.length>2?arguments[2]:void 0,i=n||this.element,a=new e(this._driver,i,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(i,r||0));return a.previousNode=this.previousNode,a.currentAnimateTimings=this.currentAnimateTimings,a.options=this._copyOptions(),a.updateOptions(t),a.currentQueryIndex=this.currentQueryIndex,a.currentQueryTotal=this.currentQueryTotal,a.parentContext=this,this.subContextCount++,a}},{key:\"transformIntoNewTimeline\",value:function(e){return this.previousNode=Cg,this.currentTimeline=this.currentTimeline.fork(this.element,e),this.timelines.push(this.currentTimeline),this.currentTimeline}},{key:\"appendInstructionToTimeline\",value:function(e,t,n){var r={duration:null!=t?t:e.duration,delay:this.currentTimeline.currentTime+(null!=n?n:0)+e.delay,easing:\"\"},i=new Lg(this._driver,e.element,e.keyframes,e.preStyleProps,e.postStyleProps,r,e.stretchStartingKeyframe);return this.timelines.push(i),r}},{key:\"incrementTime\",value:function(e){this.currentTimeline.forwardTime(this.currentTimeline.duration+e)}},{key:\"delayNextStep\",value:function(e){e>0&&this.currentTimeline.delayNextStep(e)}},{key:\"invokeQuery\",value:function(e,t,n,r,i,a){var o=[];if(r&&o.push(this.element),e.length>0){e=(e=e.replace(yg,\".\"+this._enterClassName)).replace(bg,\".\"+this._leaveClassName);var s=this._driver.query(this.element,e,1!=n);0!==n&&(s=n<0?s.slice(s.length+n,s.length):s.slice(0,n)),o.push.apply(o,_toConsumableArray(s))}return i||0!=o.length||a.push('`query(\"'.concat(t,'\")` returned zero elements. (Use `query(\"').concat(t,'\", { optional: true })` if you wish to allow this.)')),o}},{key:\"params\",get:function(){return this.options.params}}]),e}(),Sg=function(){function e(t,n,r,i){_classCallCheck(this,e),this._driver=t,this.element=n,this.startTime=r,this._elementTimelineStylesLookup=i,this.duration=0,this._previousKeyframe={},this._currentKeyframe={},this._keyframes=new Map,this._styleSummary={},this._pendingStyles={},this._backFill={},this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._localTimelineStyles=Object.create(this._backFill,{}),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(n),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(n,this._localTimelineStyles)),this._loadKeyframe()}return _createClass(e,[{key:\"containsAnimation\",value:function(){switch(this._keyframes.size){case 0:return!1;case 1:return this.getCurrentStyleProperties().length>0;default:return!0}}},{key:\"getCurrentStyleProperties\",value:function(){return Object.keys(this._currentKeyframe)}},{key:\"delayNextStep\",value:function(e){var t=1==this._keyframes.size&&Object.keys(this._pendingStyles).length;this.duration||t?(this.forwardTime(this.currentTime+e),t&&this.snapshotCurrentStyles()):this.startTime+=e}},{key:\"fork\",value:function(t,n){return this.applyStylesToKeyframe(),new e(this._driver,t,n||this.currentTime,this._elementTimelineStylesLookup)}},{key:\"_loadKeyframe\",value:function(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=Object.create(this._backFill,{}),this._keyframes.set(this.duration,this._currentKeyframe))}},{key:\"forwardFrame\",value:function(){this.duration+=1,this._loadKeyframe()}},{key:\"forwardTime\",value:function(e){this.applyStylesToKeyframe(),this.duration=e,this._loadKeyframe()}},{key:\"_updateStyle\",value:function(e,t){this._localTimelineStyles[e]=t,this._globalTimelineStyles[e]=t,this._styleSummary[e]={time:this.currentTime,value:t}}},{key:\"allowOnlyTimelineStyles\",value:function(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}},{key:\"applyEmptyStep\",value:function(e){var t=this;e&&(this._previousKeyframe.easing=e),Object.keys(this._globalTimelineStyles).forEach((function(e){t._backFill[e]=t._globalTimelineStyles[e]||\"*\",t._currentKeyframe[e]=\"*\"})),this._currentEmptyStepKeyframe=this._currentKeyframe}},{key:\"setStyles\",value:function(e,t,n,r){var i=this;t&&(this._previousKeyframe.easing=t);var a=r&&r.params||{},o=function(e,t){var n,r={};return e.forEach((function(e){\"*\"===e?(n=n||Object.keys(t)).forEach((function(e){r[e]=\"*\"})):Bv(e,!1,r)})),r}(e,this._globalTimelineStyles);Object.keys(o).forEach((function(e){var t=Xv(o[e],a,n);i._pendingStyles[e]=t,i._localTimelineStyles.hasOwnProperty(e)||(i._backFill[e]=i._globalTimelineStyles.hasOwnProperty(e)?i._globalTimelineStyles[e]:\"*\"),i._updateStyle(e,t)}))}},{key:\"applyStylesToKeyframe\",value:function(){var e=this,t=this._pendingStyles,n=Object.keys(t);0!=n.length&&(this._pendingStyles={},n.forEach((function(n){e._currentKeyframe[n]=t[n]})),Object.keys(this._localTimelineStyles).forEach((function(t){e._currentKeyframe.hasOwnProperty(t)||(e._currentKeyframe[t]=e._localTimelineStyles[t])})))}},{key:\"snapshotCurrentStyles\",value:function(){var e=this;Object.keys(this._localTimelineStyles).forEach((function(t){var n=e._localTimelineStyles[t];e._pendingStyles[t]=n,e._updateStyle(t,n)}))}},{key:\"getFinalKeyframe\",value:function(){return this._keyframes.get(this.duration)}},{key:\"mergeTimelineCollectedStyles\",value:function(e){var t=this;Object.keys(e._styleSummary).forEach((function(n){var r=t._styleSummary[n],i=e._styleSummary[n];(!r||i.time>r.time)&&t._updateStyle(n,i.value)}))}},{key:\"buildKeyframes\",value:function(){var e=this;this.applyStylesToKeyframe();var t=new Set,n=new Set,r=1===this._keyframes.size&&0===this.duration,i=[];this._keyframes.forEach((function(a,o){var s=Bv(a,!0);Object.keys(s).forEach((function(e){var r=s[e];\"!\"==r?t.add(e):\"*\"==r&&n.add(e)})),r||(s.offset=o/e.duration),i.push(s)}));var a=t.size?eg(t.values()):[],o=n.size?eg(n.values()):[];if(r){var s=i[0],l=Uv(s);s.offset=0,l.offset=1,i=[s,l]}return vg(this.element,i,a,o,this.duration,this.startTime,this.easing,!1)}},{key:\"currentTime\",get:function(){return this.startTime+this.duration}},{key:\"properties\",get:function(){var e=[];for(var t in this._currentKeyframe)e.push(t);return e}}]),e}(),Lg=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s){var l,u=arguments.length>6&&void 0!==arguments[6]&&arguments[6];return _classCallCheck(this,n),(l=t.call(this,e,r,s.delay)).element=r,l.keyframes=i,l.preStyleProps=a,l.postStyleProps=o,l._stretchStartingKeyframe=u,l.timings={duration:s.duration,delay:s.delay,easing:s.easing},l}return _createClass(n,[{key:\"containsAnimation\",value:function(){return this.keyframes.length>1}},{key:\"buildKeyframes\",value:function(){var e=this.keyframes,t=this.timings,n=t.delay,r=t.duration,i=t.easing;if(this._stretchStartingKeyframe&&n){var a=[],o=r+n,s=n/o,l=Bv(e[0],!1);l.offset=0,a.push(l);var u=Bv(e[0],!1);u.offset=Tg(s),a.push(u);for(var c=e.length-1,d=1;d<=c;d++){var h=Bv(e[d],!1);h.offset=Tg((n+h.offset*r)/o),a.push(h)}r=o,n=0,i=\"\",e=a}return vg(this.element,e,this.preStyleProps,this.postStyleProps,r,n,i,!0)}}]),n}(Sg);function Tg(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:3,n=Math.pow(10,t-1);return Math.round(e*n)/n}var xg=function e(){_classCallCheck(this,e)},Dg=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"normalizePropertyName\",value:function(e,t){return ng(e)}},{key:\"normalizeStyleValue\",value:function(e,t,n,r){var i=\"\",a=n.toString().trim();if(Og[t]&&0!==n&&\"0\"!==n)if(\"number\"==typeof n)i=\"px\";else{var o=n.match(/^[+-]?[\\d\\.]+([a-z]*)$/);o&&0==o[1].length&&r.push(\"Please provide a CSS unit value for \".concat(e,\":\").concat(n))}return a+i}}]),n}(xg),Og=function(e){var t={};return e.forEach((function(e){return t[e]=!0})),t}(\"width,height,minWidth,minHeight,maxWidth,maxHeight,left,top,bottom,right,fontSize,outlineWidth,outlineOffset,paddingTop,paddingLeft,paddingBottom,paddingRight,marginTop,marginLeft,marginBottom,marginRight,borderRadius,borderWidth,borderTopWidth,borderLeftWidth,borderRightWidth,borderBottomWidth,textIndent,perspective\".split(\",\"));function Yg(e,t,n,r,i,a,o,s,l,u,c,d,h){return{type:0,element:e,triggerName:t,isRemovalTransition:i,fromState:n,fromStyles:a,toState:r,toStyles:o,timelines:s,queriedElements:l,preStyleProps:u,postStyleProps:c,totalTime:d,errors:h}}var Eg={},Ig=function(){function e(t,n,r){_classCallCheck(this,e),this._triggerName=t,this.ast=n,this._stateStyles=r}return _createClass(e,[{key:\"match\",value:function(e,t,n,r){return function(e,t,n,r,i){return e.some((function(e){return e(t,n,r,i)}))}(this.ast.matchers,e,t,n,r)}},{key:\"buildStyles\",value:function(e,t,n){var r=this._stateStyles[\"*\"],i=this._stateStyles[e],a=r?r.buildStyles(t,n):{};return i?i.buildStyles(t,n):a}},{key:\"build\",value:function(e,t,n,r,i,a,o,s,l,u){var c=[],d=this.ast.options&&this.ast.options.params||Eg,h=this.buildStyles(n,o&&o.params||Eg,c),f=s&&s.params||Eg,m=this.buildStyles(r,f,c),p=new Set,_=new Map,v=new Map,g=\"void\"===r,y={params:Object.assign(Object.assign({},d),f)},b=u?[]:kg(e,t,this.ast.animation,i,a,h,m,y,l,c),k=0;if(b.forEach((function(e){k=Math.max(e.duration+e.delay,k)})),c.length)return Yg(t,this._triggerName,n,r,g,h,m,[],[],_,v,k,c);b.forEach((function(e){var n=e.element,r=Sv(_,n,{});e.preStyleProps.forEach((function(e){return r[e]=!0}));var i=Sv(v,n,{});e.postStyleProps.forEach((function(e){return i[e]=!0})),n!==t&&p.add(n)}));var w=eg(p.values());return Yg(t,this._triggerName,n,r,g,h,m,b,w,_,v,k)}}]),e}(),Ag=function(){function e(t,n){_classCallCheck(this,e),this.styles=t,this.defaultParams=n}return _createClass(e,[{key:\"buildStyles\",value:function(e,t){var n={},r=Uv(this.defaultParams);return Object.keys(e).forEach((function(t){var n=e[t];null!=n&&(r[t]=n)})),this.styles.styles.forEach((function(e){if(\"string\"!=typeof e){var i=e;Object.keys(i).forEach((function(e){var a=i[e];a.length>1&&(a=Xv(a,r,t)),n[e]=a}))}})),n}}]),e}(),Pg=function(){function e(t,n){var r=this;_classCallCheck(this,e),this.name=t,this.ast=n,this.transitionFactories=[],this.states={},n.states.forEach((function(e){r.states[e.name]=new Ag(e.style,e.options&&e.options.params||{})})),jg(this.states,\"true\",\"1\"),jg(this.states,\"false\",\"0\"),n.transitions.forEach((function(e){r.transitionFactories.push(new Ig(t,e,r.states))})),this.fallbackTransition=new Ig(t,{type:1,animation:{type:2,steps:[],options:null},matchers:[function(e,t){return!0}],options:null,queryCount:0,depCount:0},this.states)}return _createClass(e,[{key:\"matchTransition\",value:function(e,t,n,r){return this.transitionFactories.find((function(i){return i.match(e,t,n,r)}))||null}},{key:\"matchStyles\",value:function(e,t,n){return this.fallbackTransition.buildStyles(e,t,n)}},{key:\"containsQueries\",get:function(){return this.ast.queryCount>0}}]),e}();function jg(e,t,n){e.hasOwnProperty(t)?e.hasOwnProperty(n)||(e[n]=e[t]):e.hasOwnProperty(n)&&(e[t]=e[n])}var Rg=new gg,Hg=function(){function e(t,n,r){_classCallCheck(this,e),this.bodyNode=t,this._driver=n,this._normalizer=r,this._animations={},this._playersById={},this.players=[]}return _createClass(e,[{key:\"register\",value:function(e,t){var n=[],r=dg(this._driver,t,n);if(n.length)throw new Error(\"Unable to build the animation due to the following errors: \".concat(n.join(\"\\n\")));this._animations[e]=r}},{key:\"_buildPlayer\",value:function(e,t,n){var r=e.element,i=kv(0,this._normalizer,0,e.keyframes,t,n);return this._driver.animate(r,i,e.duration,e.delay,e.easing,[],!0)}},{key:\"create\",value:function(e,t){var n,r=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=[],o=this._animations[e],s=new Map;if(o?(n=kg(this._driver,t,o,\"ng-enter\",\"ng-leave\",{},{},i,Rg,a)).forEach((function(e){var t=Sv(s,e.element,{});e.postStyleProps.forEach((function(e){return t[e]=null}))})):(a.push(\"The requested animation doesn't exist or has already been destroyed\"),n=[]),a.length)throw new Error(\"Unable to create the animation due to the following errors: \".concat(a.join(\"\\n\")));s.forEach((function(e,t){Object.keys(e).forEach((function(n){e[n]=r._driver.computeStyle(t,n,\"*\")}))}));var l=bv(n.map((function(e){var t=s.get(e.element);return r._buildPlayer(e,{},t)})));return this._playersById[e]=l,l.onDestroy((function(){return r.destroy(e)})),this.players.push(l),l}},{key:\"destroy\",value:function(e){var t=this._getPlayer(e);t.destroy(),delete this._playersById[e];var n=this.players.indexOf(t);n>=0&&this.players.splice(n,1)}},{key:\"_getPlayer\",value:function(e){var t=this._playersById[e];if(!t)throw new Error(\"Unable to find the timeline player referenced by \".concat(e));return t}},{key:\"listen\",value:function(e,t,n,r){var i=Mv(t,\"\",\"\",\"\");return wv(this._getPlayer(e),n,i,r),function(){}}},{key:\"command\",value:function(e,t,n,r){if(\"register\"!=n)if(\"create\"!=n){var i=this._getPlayer(e);switch(n){case\"play\":i.play();break;case\"pause\":i.pause();break;case\"reset\":i.reset();break;case\"restart\":i.restart();break;case\"finish\":i.finish();break;case\"init\":i.init();break;case\"setPosition\":i.setPosition(parseFloat(r[0]));break;case\"destroy\":this.destroy(e)}}else this.create(e,t,r[0]||{});else this.register(e,r[0])}}]),e}(),Fg=[],Ng={namespaceId:\"\",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},zg={namespaceId:\"\",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},Vg=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\";_classCallCheck(this,e),this.namespaceId=n;var r,i=t&&t.hasOwnProperty(\"value\");if(this.value=null!=(r=i?t.value:t)?r:null,i){var a=Uv(t);delete a.value,this.options=a}else this.options={};this.options.params||(this.options.params={})}return _createClass(e,[{key:\"absorbOptions\",value:function(e){var t=e.params;if(t){var n=this.options.params;Object.keys(t).forEach((function(e){null==n[e]&&(n[e]=t[e])}))}}},{key:\"params\",get:function(){return this.options.params}}]),e}(),Wg=new Vg(\"void\"),Ug=function(){function e(t,n,r){_classCallCheck(this,e),this.id=t,this.hostElement=n,this._engine=r,this.players=[],this._triggers={},this._queue=[],this._elementListeners=new Map,this._hostClassName=\"ng-tns-\"+t,Zg(n,this._hostClassName)}return _createClass(e,[{key:\"listen\",value:function(e,t,n,r){var i,a=this;if(!this._triggers.hasOwnProperty(t))throw new Error('Unable to listen on the animation trigger event \"'.concat(n,'\" because the animation trigger \"').concat(t,\"\\\" doesn't exist!\"));if(null==n||0==n.length)throw new Error('Unable to listen on the animation trigger \"'.concat(t,'\" because the provided event is undefined!'));if(\"start\"!=(i=n)&&\"done\"!=i)throw new Error('The provided animation trigger event \"'.concat(n,'\" for the animation trigger \"').concat(t,'\" is not supported!'));var o=Sv(this._elementListeners,e,[]),s={name:t,phase:n,callback:r};o.push(s);var l=Sv(this._engine.statesByElement,e,{});return l.hasOwnProperty(t)||(Zg(e,\"ng-trigger\"),Zg(e,\"ng-trigger-\"+t),l[t]=Wg),function(){a._engine.afterFlush((function(){var e=o.indexOf(s);e>=0&&o.splice(e,1),a._triggers[t]||delete l[t]}))}}},{key:\"register\",value:function(e,t){return!this._triggers[e]&&(this._triggers[e]=t,!0)}},{key:\"_getTrigger\",value:function(e){var t=this._triggers[e];if(!t)throw new Error('The provided animation trigger \"'.concat(e,'\" has not been registered!'));return t}},{key:\"trigger\",value:function(e,t,n){var r=this,i=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],a=this._getTrigger(t),o=new qg(this.id,t,e),s=this._engine.statesByElement.get(e);s||(Zg(e,\"ng-trigger\"),Zg(e,\"ng-trigger-\"+t),this._engine.statesByElement.set(e,s={}));var l=s[t],u=new Vg(n,this.id);if(!(n&&n.hasOwnProperty(\"value\"))&&l&&u.absorbOptions(l.options),s[t]=u,l||(l=Wg),\"void\"===u.value||l.value!==u.value){var c=Sv(this._engine.playersByElement,e,[]);c.forEach((function(e){e.namespaceId==r.id&&e.triggerName==t&&e.queued&&e.destroy()}));var d=a.matchTransition(l.value,u.value,e,u.params),h=!1;if(!d){if(!i)return;d=a.fallbackTransition,h=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:e,triggerName:t,transition:d,fromState:l,toState:u,player:o,isFallbackTransition:h}),h||(Zg(e,\"ng-animate-queued\"),o.onStart((function(){Qg(e,\"ng-animate-queued\")}))),o.onDone((function(){var t=r.players.indexOf(o);t>=0&&r.players.splice(t,1);var n=r._engine.playersByElement.get(e);if(n){var i=n.indexOf(o);i>=0&&n.splice(i,1)}})),this.players.push(o),c.push(o),o}if(!function(e,t){var n=Object.keys(e),r=Object.keys(t);if(n.length!=r.length)return!1;for(var i=0;i=0){for(var r=!1,i=n;i>=0;i--)if(this.driver.containsElement(this._namespaceList[i].hostElement,t)){this._namespaceList.splice(i+1,0,e),r=!0;break}r||this._namespaceList.splice(0,0,e)}else this._namespaceList.push(e);return this.namespacesByHostElement.set(t,e),e}},{key:\"register\",value:function(e,t){var n=this._namespaceLookup[e];return n||(n=this.createNamespace(e,t)),n}},{key:\"registerTrigger\",value:function(e,t,n){var r=this._namespaceLookup[e];r&&r.register(t,n)&&this.totalAnimations++}},{key:\"destroy\",value:function(e,t){var n=this;if(e){var r=this._fetchNamespace(e);this.afterFlush((function(){n.namespacesByHostElement.delete(r.hostElement),delete n._namespaceLookup[e];var t=n._namespaceList.indexOf(r);t>=0&&n._namespaceList.splice(t,1)})),this.afterFlushAnimationsDone((function(){return r.destroy(t)}))}}},{key:\"_fetchNamespace\",value:function(e){return this._namespaceLookup[e]}},{key:\"fetchNamespacesByElement\",value:function(e){var t=new Set,n=this.statesByElement.get(e);if(n)for(var r=Object.keys(n),i=0;i=0&&this.collectedLeaveElements.splice(a,1)}if(e){var o=this._fetchNamespace(e);o&&o.insertNode(t,n)}r&&this.collectEnterElement(t)}}},{key:\"collectEnterElement\",value:function(e){this.collectedEnterElements.push(e)}},{key:\"markElementAsDisabled\",value:function(e,t){t?this.disabledNodes.has(e)||(this.disabledNodes.add(e),Zg(e,\"ng-animate-disabled\")):this.disabledNodes.has(e)&&(this.disabledNodes.delete(e),Qg(e,\"ng-animate-disabled\"))}},{key:\"removeNode\",value:function(e,t,n,r){if(Gg(t)){var i=e?this._fetchNamespace(e):null;if(i?i.removeNode(t,r):this.markElementAsRemoved(e,t,!1,r),n){var a=this.namespacesByHostElement.get(t);a&&a.id!==e&&a.removeNode(t,r)}}else this._onRemovalComplete(t,r)}},{key:\"markElementAsRemoved\",value:function(e,t,n,r){this.collectedLeaveElements.push(t),t.__ng_removed={namespaceId:e,setForRemoval:r,hasAnimation:n,removedBeforeQueried:!1}}},{key:\"listen\",value:function(e,t,n,r,i){return Gg(t)?this._fetchNamespace(e).listen(t,n,r,i):function(){}}},{key:\"_buildInstruction\",value:function(e,t,n,r,i){return e.transition.build(this.driver,e.element,e.fromState.value,e.toState.value,n,r,e.fromState.options,e.toState.options,t,i)}},{key:\"destroyInnerAnimations\",value:function(e){var t=this,n=this.driver.query(e,\".ng-trigger\",!0);n.forEach((function(e){return t.destroyActiveAnimationsForElement(e)})),0!=this.playersByQueriedElement.size&&(n=this.driver.query(e,\".ng-animating\",!0)).forEach((function(e){return t.finishActiveQueriedAnimationOnElement(e)}))}},{key:\"destroyActiveAnimationsForElement\",value:function(e){var t=this.playersByElement.get(e);t&&t.forEach((function(e){e.queued?e.markedForDestroy=!0:e.destroy()}))}},{key:\"finishActiveQueriedAnimationOnElement\",value:function(e){var t=this.playersByQueriedElement.get(e);t&&t.forEach((function(e){return e.finish()}))}},{key:\"whenRenderingDone\",value:function(){var e=this;return new Promise((function(t){if(e.players.length)return bv(e.players).onDone((function(){return t()}));t()}))}},{key:\"processLeaveNode\",value:function(e){var t=this,n=e.__ng_removed;if(n&&n.setForRemoval){if(e.__ng_removed=Ng,n.namespaceId){this.destroyInnerAnimations(e);var r=this._fetchNamespace(n.namespaceId);r&&r.clearElementCache(e)}this._onRemovalComplete(e,n.setForRemoval)}this.driver.matchesElement(e,\".ng-animate-disabled\")&&this.markElementAsDisabled(e,!1),this.driver.query(e,\".ng-animate-disabled\",!0).forEach((function(e){t.markElementAsDisabled(e,!1)}))}},{key:\"flush\",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:-1,n=[];if(this.newHostElements.size&&(this.newHostElements.forEach((function(t,n){return e._balanceNamespaceList(t,n)})),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(var r=0;r=0;L--)this._namespaceList[L].drainQueuedTransitions(t).forEach((function(e){var t=e.player,a=e.element;if(M.push(t),n.collectedEnterElements.length){var c=a.__ng_removed;if(c&&c.setForMove)return void t.destroy()}var h=!d||!n.driver.containsElement(d,a),f=w.get(a),p=m.get(a),_=n._buildInstruction(e,r,p,f,h);if(!_.errors||!_.errors.length)return h||e.isFallbackTransition?(t.onStart((function(){return Jv(a,_.fromStyles)})),t.onDestroy((function(){return $v(a,_.toStyles)})),void i.push(t)):(_.timelines.forEach((function(e){return e.stretchStartingKeyframe=!0})),r.append(a,_.timelines),o.push({instruction:_,player:t,element:a}),_.queriedElements.forEach((function(e){return Sv(s,e,[]).push(t)})),_.preStyleProps.forEach((function(e,t){var n=Object.keys(e);if(n.length){var r=l.get(t);r||l.set(t,r=new Set),n.forEach((function(e){return r.add(e)}))}})),void _.postStyleProps.forEach((function(e,t){var n=Object.keys(e),r=u.get(t);r||u.set(t,r=new Set),n.forEach((function(e){return r.add(e)}))})));S.push(_)}));if(S.length){var T=[];S.forEach((function(e){T.push(\"@\".concat(e.triggerName,\" has failed due to:\\n\")),e.errors.forEach((function(e){return T.push(\"- \".concat(e,\"\\n\"))}))})),M.forEach((function(e){return e.destroy()})),this.reportError(T)}var x=new Map,D=new Map;o.forEach((function(e){var t=e.element;r.has(t)&&(D.set(t,t),n._beforeAnimationBuild(e.player.namespaceId,e.instruction,x))})),i.forEach((function(e){var t=e.element;n._getPreviousPlayers(t,!1,e.namespaceId,e.triggerName,null).forEach((function(e){Sv(x,t,[]).push(e),e.destroy()}))}));var O=_.filter((function(e){return ey(e,l,u)})),Y=new Map;Jg(Y,this.driver,g,u,\"*\").forEach((function(e){ey(e,l,u)&&O.push(e)}));var E=new Map;f.forEach((function(e,t){Jg(E,n.driver,new Set(e),l,\"!\")})),O.forEach((function(e){var t=Y.get(e),n=E.get(e);Y.set(e,Object.assign(Object.assign({},t),n))}));var I=[],A=[],P={};o.forEach((function(e){var t=e.element,o=e.player,s=e.instruction;if(r.has(t)){if(c.has(t))return o.onDestroy((function(){return $v(t,s.toStyles)})),o.disabled=!0,o.overrideTotalTime(s.totalTime),void i.push(o);var l=P;if(D.size>1){for(var u=t,d=[];u=u.parentNode;){var h=D.get(u);if(h){l=h;break}d.push(u)}d.forEach((function(e){return D.set(e,l)}))}var f=n._buildAnimation(o.namespaceId,s,x,a,E,Y);if(o.setRealPlayer(f),l===P)I.push(o);else{var m=n.playersByElement.get(l);m&&m.length&&(o.parentPlayer=bv(m)),i.push(o)}}else Jv(t,s.fromStyles),o.onDestroy((function(){return $v(t,s.toStyles)})),A.push(o),c.has(t)&&i.push(o)})),A.forEach((function(e){var t=a.get(e.element);if(t&&t.length){var n=bv(t);e.setRealPlayer(n)}})),i.forEach((function(e){e.parentPlayer?e.syncPlayerEvents(e.parentPlayer):e.destroy()}));for(var j=0;j<_.length;j++){var R=_[j],H=R.__ng_removed;if(Qg(R,\"ng-leave\"),!H||!H.hasAnimation){var F=[];if(s.size){var N=s.get(R);N&&N.length&&F.push.apply(F,_toConsumableArray(N));for(var z=this.driver.query(R,\".ng-animating\",!0),V=0;V0?this.driver.animate(e.element,t,e.duration,e.delay,e.easing,n):new vv(e.duration,e.delay)}},{key:\"queuedPlayers\",get:function(){var e=[];return this._namespaceList.forEach((function(t){t.players.forEach((function(t){t.queued&&e.push(t)}))})),e}}]),e}(),qg=function(){function e(t,n,r){_classCallCheck(this,e),this.namespaceId=t,this.triggerName=n,this.element=r,this._player=new vv,this._containsRealPlayer=!1,this._queuedCallbacks={},this.destroyed=!1,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}return _createClass(e,[{key:\"setRealPlayer\",value:function(e){var t=this;this._containsRealPlayer||(this._player=e,Object.keys(this._queuedCallbacks).forEach((function(n){t._queuedCallbacks[n].forEach((function(t){return wv(e,n,void 0,t)}))})),this._queuedCallbacks={},this._containsRealPlayer=!0,this.overrideTotalTime(e.totalTime),this.queued=!1)}},{key:\"getRealPlayer\",value:function(){return this._player}},{key:\"overrideTotalTime\",value:function(e){this.totalTime=e}},{key:\"syncPlayerEvents\",value:function(e){var t=this,n=this._player;n.triggerCallback&&e.onStart((function(){return n.triggerCallback(\"start\")})),e.onDone((function(){return t.finish()})),e.onDestroy((function(){return t.destroy()}))}},{key:\"_queueEvent\",value:function(e,t){Sv(this._queuedCallbacks,e,[]).push(t)}},{key:\"onDone\",value:function(e){this.queued&&this._queueEvent(\"done\",e),this._player.onDone(e)}},{key:\"onStart\",value:function(e){this.queued&&this._queueEvent(\"start\",e),this._player.onStart(e)}},{key:\"onDestroy\",value:function(e){this.queued&&this._queueEvent(\"destroy\",e),this._player.onDestroy(e)}},{key:\"init\",value:function(){this._player.init()}},{key:\"hasStarted\",value:function(){return!this.queued&&this._player.hasStarted()}},{key:\"play\",value:function(){!this.queued&&this._player.play()}},{key:\"pause\",value:function(){!this.queued&&this._player.pause()}},{key:\"restart\",value:function(){!this.queued&&this._player.restart()}},{key:\"finish\",value:function(){this._player.finish()}},{key:\"destroy\",value:function(){this.destroyed=!0,this._player.destroy()}},{key:\"reset\",value:function(){!this.queued&&this._player.reset()}},{key:\"setPosition\",value:function(e){this.queued||this._player.setPosition(e)}},{key:\"getPosition\",value:function(){return this.queued?0:this._player.getPosition()}},{key:\"triggerCallback\",value:function(e){var t=this._player;t.triggerCallback&&t.triggerCallback(e)}}]),e}();function Gg(e){return e&&1===e.nodeType}function $g(e,t){var n=e.style.display;return e.style.display=null!=t?t:\"none\",n}function Jg(e,t,n,r,i){var a=[];n.forEach((function(e){return a.push($g(e))}));var o=[];r.forEach((function(n,r){var a={};n.forEach((function(e){var n=a[e]=t.computeStyle(r,e,i);n&&0!=n.length||(r.__ng_removed=zg,o.push(r))})),e.set(r,a)}));var s=0;return n.forEach((function(e){return $g(e,a[s++])})),o}function Kg(e,t){var n=new Map;if(e.forEach((function(e){return n.set(e,[])})),0==t.length)return n;var r=new Set(t),i=new Map;return t.forEach((function(e){var t=function e(t){if(!t)return 1;var a=i.get(t);if(a)return a;var o=t.parentNode;return a=n.has(o)?o:r.has(o)?1:e(o),i.set(t,a),a}(e);1!==t&&n.get(t).push(e)})),n}function Zg(e,t){if(e.classList)e.classList.add(t);else{var n=e.$$classes;n||(n=e.$$classes={}),n[t]=!0}}function Qg(e,t){if(e.classList)e.classList.remove(t);else{var n=e.$$classes;n&&delete n[t]}}function Xg(e,t,n){bv(n).onDone((function(){return e.processLeaveNode(t)}))}function ey(e,t,n){var r=n.get(e);if(!r)return!1;var i=t.get(e);return i?r.forEach((function(e){return i.add(e)})):t.set(e,r),n.delete(e),!0}var ty=function(){function e(t,n,r){var i=this;_classCallCheck(this,e),this.bodyNode=t,this._driver=n,this._triggerCache={},this.onRemovalComplete=function(e,t){},this._transitionEngine=new Bg(t,n,r),this._timelineEngine=new Hg(t,n,r),this._transitionEngine.onRemovalComplete=function(e,t){return i.onRemovalComplete(e,t)}}return _createClass(e,[{key:\"registerTrigger\",value:function(e,t,n,r,i){var a=e+\"-\"+r,o=this._triggerCache[a];if(!o){var s=[],l=dg(this._driver,i,s);if(s.length)throw new Error('The animation trigger \"'.concat(r,'\" has failed to build due to the following errors:\\n - ').concat(s.join(\"\\n - \")));o=function(e,t){return new Pg(e,t)}(r,l),this._triggerCache[a]=o}this._transitionEngine.registerTrigger(t,r,o)}},{key:\"register\",value:function(e,t){this._transitionEngine.register(e,t)}},{key:\"destroy\",value:function(e,t){this._transitionEngine.destroy(e,t)}},{key:\"onInsert\",value:function(e,t,n,r){this._transitionEngine.insertNode(e,t,n,r)}},{key:\"onRemove\",value:function(e,t,n,r){this._transitionEngine.removeNode(e,t,r||!1,n)}},{key:\"disableAnimations\",value:function(e,t){this._transitionEngine.markElementAsDisabled(e,t)}},{key:\"process\",value:function(e,t,n,r){if(\"@\"==n.charAt(0)){var i=_slicedToArray(Lv(n),2),a=i[0],o=i[1];this._timelineEngine.command(a,t,o,r)}else this._transitionEngine.trigger(e,t,n,r)}},{key:\"listen\",value:function(e,t,n,r,i){if(\"@\"==n.charAt(0)){var a=_slicedToArray(Lv(n),2),o=a[0],s=a[1];return this._timelineEngine.listen(o,t,s,i)}return this._transitionEngine.listen(e,t,n,r,i)}},{key:\"flush\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:-1;this._transitionEngine.flush(e)}},{key:\"whenRenderingDone\",value:function(){return this._transitionEngine.whenRenderingDone()}},{key:\"players\",get:function(){return this._transitionEngine.players.concat(this._timelineEngine.players)}}]),e}();function ny(e,t){var n=null,r=null;return Array.isArray(t)&&t.length?(n=iy(t[0]),t.length>1&&(r=iy(t[t.length-1]))):t&&(n=iy(t)),n||r?new ry(e,n,r):null}var ry=function(){var e=function(){function e(t,n,r){_classCallCheck(this,e),this._element=t,this._startStyles=n,this._endStyles=r,this._state=0;var i=e.initialStylesByElement.get(t);i||e.initialStylesByElement.set(t,i={}),this._initialStyles=i}return _createClass(e,[{key:\"start\",value:function(){this._state<1&&(this._startStyles&&$v(this._element,this._startStyles,this._initialStyles),this._state=1)}},{key:\"finish\",value:function(){this.start(),this._state<2&&($v(this._element,this._initialStyles),this._endStyles&&($v(this._element,this._endStyles),this._endStyles=null),this._state=1)}},{key:\"destroy\",value:function(){this.finish(),this._state<3&&(e.initialStylesByElement.delete(this._element),this._startStyles&&(Jv(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(Jv(this._element,this._endStyles),this._endStyles=null),$v(this._element,this._initialStyles),this._state=3)}}]),e}();return e.initialStylesByElement=new WeakMap,e}();function iy(e){for(var t=null,n=Object.keys(e),r=0;r=this._delay&&n>=this._duration&&this.finish()}},{key:\"finish\",value:function(){this._finished||(this._finished=!0,this._onDoneFn(),cy(this._element,this._eventFn,!0))}},{key:\"destroy\",value:function(){var e,t,n,r;this._destroyed||(this._destroyed=!0,this.finish(),e=this._element,t=this._name,n=hy(e,\"\").split(\",\"),(r=uy(n,t))>=0&&(n.splice(r,1),dy(e,\"\",n.join(\",\"))))}}]),e}();function sy(e,t,n){dy(e,\"PlayState\",n,ly(e,t))}function ly(e,t){var n=hy(e,\"\");return n.indexOf(\",\")>0?uy(n.split(\",\"),t):uy([n],t)}function uy(e,t){for(var n=0;n=0)return n;return-1}function cy(e,t,n){n?e.removeEventListener(\"animationend\",t):e.addEventListener(\"animationend\",t)}function dy(e,t,n,r){var i=\"animation\"+t;if(null!=r){var a=e.style[i];if(a.length){var o=a.split(\",\");o[r]=n,n=o.join(\",\")}}e.style[i]=n}function hy(e,t){return e.style[\"animation\"+t]}var fy=function(){function e(t,n,r,i,a,o,s,l){_classCallCheck(this,e),this.element=t,this.keyframes=n,this.animationName=r,this._duration=i,this._delay=a,this._finalStyles=s,this._specialStyles=l,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this.currentSnapshot={},this._state=0,this.easing=o||\"linear\",this.totalTime=i+a,this._buildStyler()}return _createClass(e,[{key:\"onStart\",value:function(e){this._onStartFns.push(e)}},{key:\"onDone\",value:function(e){this._onDoneFns.push(e)}},{key:\"onDestroy\",value:function(e){this._onDestroyFns.push(e)}},{key:\"destroy\",value:function(){this.init(),this._state>=4||(this._state=4,this._styler.destroy(),this._flushStartFns(),this._flushDoneFns(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach((function(e){return e()})),this._onDestroyFns=[])}},{key:\"_flushDoneFns\",value:function(){this._onDoneFns.forEach((function(e){return e()})),this._onDoneFns=[]}},{key:\"_flushStartFns\",value:function(){this._onStartFns.forEach((function(e){return e()})),this._onStartFns=[]}},{key:\"finish\",value:function(){this.init(),this._state>=3||(this._state=3,this._styler.finish(),this._flushStartFns(),this._specialStyles&&this._specialStyles.finish(),this._flushDoneFns())}},{key:\"setPosition\",value:function(e){this._styler.setPosition(e)}},{key:\"getPosition\",value:function(){return this._styler.getPosition()}},{key:\"hasStarted\",value:function(){return this._state>=2}},{key:\"init\",value:function(){this._state>=1||(this._state=1,this._styler.apply(),this._delay&&this._styler.pause())}},{key:\"play\",value:function(){this.init(),this.hasStarted()||(this._flushStartFns(),this._state=2,this._specialStyles&&this._specialStyles.start()),this._styler.resume()}},{key:\"pause\",value:function(){this.init(),this._styler.pause()}},{key:\"restart\",value:function(){this.reset(),this.play()}},{key:\"reset\",value:function(){this._styler.destroy(),this._buildStyler(),this._styler.apply()}},{key:\"_buildStyler\",value:function(){var e=this;this._styler=new oy(this.element,this.animationName,this._duration,this._delay,this.easing,\"forwards\",(function(){return e.finish()}))}},{key:\"triggerCallback\",value:function(e){var t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach((function(e){return e()})),t.length=0}},{key:\"beforeDestroy\",value:function(){var e=this;this.init();var t={};if(this.hasStarted()){var n=this._state>=3;Object.keys(this._finalStyles).forEach((function(r){\"offset\"!=r&&(t[r]=n?e._finalStyles[r]:og(e.element,r))}))}this.currentSnapshot=t}}]),e}(),my=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this)).element=e,i._startingStyles={},i.__initialized=!1,i._styles=Rv(r),i}return _createClass(n,[{key:\"init\",value:function(){var e=this;!this.__initialized&&this._startingStyles&&(this.__initialized=!0,Object.keys(this._styles).forEach((function(t){e._startingStyles[t]=e.element.style[t]})),_get(_getPrototypeOf(n.prototype),\"init\",this).call(this))}},{key:\"play\",value:function(){var e=this;this._startingStyles&&(this.init(),Object.keys(this._styles).forEach((function(t){return e.element.style.setProperty(t,e._styles[t])})),_get(_getPrototypeOf(n.prototype),\"play\",this).call(this))}},{key:\"destroy\",value:function(){var e=this;this._startingStyles&&(Object.keys(this._startingStyles).forEach((function(t){var n=e._startingStyles[t];n?e.element.style.setProperty(t,n):e.element.style.removeProperty(t)})),this._startingStyles=null,_get(_getPrototypeOf(n.prototype),\"destroy\",this).call(this))}}]),n}(vv),py=function(){function e(){_classCallCheck(this,e),this._count=0,this._head=document.querySelector(\"head\"),this._warningIssued=!1}return _createClass(e,[{key:\"validateStyleProperty\",value:function(e){return Iv(e)}},{key:\"matchesElement\",value:function(e,t){return Av(e,t)}},{key:\"containsElement\",value:function(e,t){return Pv(e,t)}},{key:\"query\",value:function(e,t,n){return jv(e,t,n)}},{key:\"computeStyle\",value:function(e,t,n){return window.getComputedStyle(e)[t]}},{key:\"buildKeyframeElement\",value:function(e,t,n){n=n.map((function(e){return Rv(e)}));var r=\"@keyframes \".concat(t,\" {\\n\"),i=\"\";n.forEach((function(e){i=\" \";var t=parseFloat(e.offset);r+=\"\".concat(i).concat(100*t,\"% {\\n\"),i+=\" \",Object.keys(e).forEach((function(t){var n=e[t];switch(t){case\"offset\":return;case\"easing\":return void(n&&(r+=\"\".concat(i,\"animation-timing-function: \").concat(n,\";\\n\")));default:return void(r+=\"\".concat(i).concat(t,\": \").concat(n,\";\\n\"))}})),r+=\"\".concat(i,\"}\\n\")})),r+=\"}\\n\";var a=document.createElement(\"style\");return a.innerHTML=r,a}},{key:\"animate\",value:function(e,t,n,r,i){var a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:[],o=arguments.length>6?arguments[6]:void 0;o&&this._notifyFaultyScrubber();var s=a.filter((function(e){return e instanceof fy})),l={};rg(n,r)&&s.forEach((function(e){var t=e.currentSnapshot;Object.keys(t).forEach((function(e){return l[e]=t[e]}))}));var u=function(e){var t={};return e&&(Array.isArray(e)?e:[e]).forEach((function(e){Object.keys(e).forEach((function(n){\"offset\"!=n&&\"easing\"!=n&&(t[n]=e[n])}))})),t}(t=ig(e,t,l));if(0==n)return new my(e,u);var c=\"gen_css_kf_\".concat(this._count++),d=this.buildKeyframeElement(e,c,t);document.querySelector(\"head\").appendChild(d);var h=ny(e,t),f=new fy(e,t,c,n,r,i,u,h);return f.onDestroy((function(){var e;(e=d).parentNode.removeChild(e)})),f}},{key:\"_notifyFaultyScrubber\",value:function(){this._warningIssued||(console.warn(\"@angular/animations: please load the web-animations.js polyfill to allow programmatic access...\\n\",\" visit http://bit.ly/IWukam to learn more about using the web-animation-js polyfill.\"),this._warningIssued=!0)}}]),e}(),_y=function(){function e(t,n,r,i){_classCallCheck(this,e),this.element=t,this.keyframes=n,this.options=r,this._specialStyles=i,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._initialized=!1,this._finished=!1,this._started=!1,this._destroyed=!1,this.time=0,this.parentPlayer=null,this.currentSnapshot={},this._duration=r.duration,this._delay=r.delay||0,this.time=this._duration+this._delay}return _createClass(e,[{key:\"_onFinish\",value:function(){this._finished||(this._finished=!0,this._onDoneFns.forEach((function(e){return e()})),this._onDoneFns=[])}},{key:\"init\",value:function(){this._buildPlayer(),this._preparePlayerBeforeStart()}},{key:\"_buildPlayer\",value:function(){var e=this;if(!this._initialized){this._initialized=!0;var t=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,t,this.options),this._finalKeyframe=t.length?t[t.length-1]:{},this.domPlayer.addEventListener(\"finish\",(function(){return e._onFinish()}))}}},{key:\"_preparePlayerBeforeStart\",value:function(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}},{key:\"_triggerWebAnimation\",value:function(e,t,n){return e.animate(t,n)}},{key:\"onStart\",value:function(e){this._onStartFns.push(e)}},{key:\"onDone\",value:function(e){this._onDoneFns.push(e)}},{key:\"onDestroy\",value:function(e){this._onDestroyFns.push(e)}},{key:\"play\",value:function(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach((function(e){return e()})),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),this.domPlayer.play()}},{key:\"pause\",value:function(){this.init(),this.domPlayer.pause()}},{key:\"finish\",value:function(){this.init(),this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish()}},{key:\"reset\",value:function(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1}},{key:\"_resetDomPlayerState\",value:function(){this.domPlayer&&this.domPlayer.cancel()}},{key:\"restart\",value:function(){this.reset(),this.play()}},{key:\"hasStarted\",value:function(){return this._started}},{key:\"destroy\",value:function(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach((function(e){return e()})),this._onDestroyFns=[])}},{key:\"setPosition\",value:function(e){this.domPlayer.currentTime=e*this.time}},{key:\"getPosition\",value:function(){return this.domPlayer.currentTime/this.time}},{key:\"beforeDestroy\",value:function(){var e=this,t={};this.hasStarted()&&Object.keys(this._finalKeyframe).forEach((function(n){\"offset\"!=n&&(t[n]=e._finished?e._finalKeyframe[n]:og(e.element,n))})),this.currentSnapshot=t}},{key:\"triggerCallback\",value:function(e){var t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach((function(e){return e()})),t.length=0}},{key:\"totalTime\",get:function(){return this._delay+this._duration}}]),e}(),vy=function(){function e(){_classCallCheck(this,e),this._isNativeImpl=/\\{\\s*\\[native\\s+code\\]\\s*\\}/.test(gy().toString()),this._cssKeyframesDriver=new py}return _createClass(e,[{key:\"validateStyleProperty\",value:function(e){return Iv(e)}},{key:\"matchesElement\",value:function(e,t){return Av(e,t)}},{key:\"containsElement\",value:function(e,t){return Pv(e,t)}},{key:\"query\",value:function(e,t,n){return jv(e,t,n)}},{key:\"computeStyle\",value:function(e,t,n){return window.getComputedStyle(e)[t]}},{key:\"overrideWebAnimationsSupport\",value:function(e){this._isNativeImpl=e}},{key:\"animate\",value:function(e,t,n,r,i){var a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:[],o=arguments.length>6?arguments[6]:void 0;if(!o&&!this._isNativeImpl)return this._cssKeyframesDriver.animate(e,t,n,r,i,a);var s={duration:n,delay:r,fill:0==r?\"both\":\"forwards\"};i&&(s.easing=i);var l={},u=a.filter((function(e){return e instanceof _y}));rg(n,r)&&u.forEach((function(e){var t=e.currentSnapshot;Object.keys(t).forEach((function(e){return l[e]=t[e]}))}));var c=ny(e,t=ig(e,t=t.map((function(e){return Bv(e,!1)})),l));return new _y(e,t,s,c)}}]),e}();function gy(){return\"undefined\"!=typeof window&&void 0!==window.document&&Element.prototype.animate||{}}var yy,by=((yy=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this))._nextAnimationId=0,i._renderer=e.createRenderer(r.body,{id:\"0\",encapsulation:_t.None,styles:[],data:{animation:[]}}),i}return _createClass(n,[{key:\"build\",value:function(e){var t=this._nextAnimationId.toString();this._nextAnimationId++;var n=Array.isArray(e)?dv(e):e;return Cy(this._renderer,null,t,\"register\",[n]),new ky(t,this._renderer)}}]),n}(lv)).\\u0275fac=function(e){return new(e||yy)(et(el),et(Wc))},yy.\\u0275prov=_e({token:yy,factory:yy.\\u0275fac}),yy),ky=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this))._id=e,i._renderer=r,i}return _createClass(n,[{key:\"create\",value:function(e,t){return new wy(this._id,e,t||{},this._renderer)}}]),n}(function(){return function e(){_classCallCheck(this,e)}}()),wy=function(){function e(t,n,r,i){_classCallCheck(this,e),this.id=t,this.element=n,this._renderer=i,this.parentPlayer=null,this._started=!1,this.totalTime=0,this._command(\"create\",r)}return _createClass(e,[{key:\"_listen\",value:function(e,t){return this._renderer.listen(this.element,\"@@\".concat(this.id,\":\").concat(e),t)}},{key:\"_command\",value:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r=0&&e1&&void 0!==arguments[1]?arguments[1]:0;return(function(e){_inherits(r,e);var n=_createSuper(r);function r(){var e;_classCallCheck(this,r);for(var i=arguments.length,a=new Array(i),o=0;o2&&void 0!==arguments[2]?arguments[2]:{},i=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),a=Object.assign(Object.assign({},rb),r.animation);r.centered&&(e=i.left+i.width/2,t=i.top+i.height/2);var o=r.radius||function(e,t,n){var r=Math.max(Math.abs(e-n.left),Math.abs(e-n.right)),i=Math.max(Math.abs(t-n.top),Math.abs(t-n.bottom));return Math.sqrt(r*r+i*i)}(e,t,i),s=e-i.left,l=t-i.top,u=a.enterDuration,c=document.createElement(\"div\");c.classList.add(\"mat-ripple-element\"),c.style.left=\"\".concat(s-o,\"px\"),c.style.top=\"\".concat(l-o,\"px\"),c.style.height=\"\".concat(2*o,\"px\"),c.style.width=\"\".concat(2*o,\"px\"),null!=r.color&&(c.style.backgroundColor=r.color),c.style.transitionDuration=\"\".concat(u,\"ms\"),this._containerElement.appendChild(c),window.getComputedStyle(c).getPropertyValue(\"opacity\"),c.style.transform=\"scale(1)\";var d=new nb(this,c,r);return d.state=0,this._activeRipples.add(d),r.persistent||(this._mostRecentTransientRipple=d),this._runTimeoutOutsideZone((function(){var e=d===n._mostRecentTransientRipple;d.state=1,r.persistent||e&&n._isPointerDown||d.fadeOut()}),u),d}},{key:\"fadeOutRipple\",value:function(e){var t=this._activeRipples.delete(e);if(e===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),this._activeRipples.size||(this._containerRect=null),t){var n=e.element,r=Object.assign(Object.assign({},rb),e.config.animation);n.style.transitionDuration=\"\".concat(r.exitDuration,\"ms\"),n.style.opacity=\"0\",e.state=2,this._runTimeoutOutsideZone((function(){e.state=3,n.parentNode.removeChild(n)}),r.exitDuration)}}},{key:\"fadeOutAll\",value:function(){this._activeRipples.forEach((function(e){return e.fadeOut()}))}},{key:\"setupTriggerEvents\",value:function(e){var t=this,n=gp(e);n&&n!==this._triggerElement&&(this._removeTriggerEvents(),this._ngZone.runOutsideAngular((function(){t._triggerEvents.forEach((function(e,t){n.addEventListener(t,e,ib)}))})),this._triggerElement=n)}},{key:\"_runTimeoutOutsideZone\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;this._ngZone.runOutsideAngular((function(){return setTimeout(e,t)}))}},{key:\"_removeTriggerEvents\",value:function(){var e=this;this._triggerElement&&this._triggerEvents.forEach((function(t,n){e._triggerElement.removeEventListener(n,t,ib)}))}}]),e}(),ob=new Be(\"mat-ripple-global-options\"),sb=((Zy=function(){function e(t,n,r,i,a){_classCallCheck(this,e),this._elementRef=t,this.radius=0,this._disabled=!1,this._isInitialized=!1,this._globalOptions=i||{},this._rippleRenderer=new ab(this,n,t,r),\"NoopAnimations\"===a&&(this._globalOptions.animation={enterDuration:0,exitDuration:0})}return _createClass(e,[{key:\"ngOnInit\",value:function(){this._isInitialized=!0,this._setupTriggerEventsIfEnabled()}},{key:\"ngOnDestroy\",value:function(){this._rippleRenderer._removeTriggerEvents()}},{key:\"fadeOutAll\",value:function(){this._rippleRenderer.fadeOutAll()}},{key:\"_setupTriggerEventsIfEnabled\",value:function(){!this.disabled&&this._isInitialized&&this._rippleRenderer.setupTriggerEvents(this.trigger)}},{key:\"launch\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2?arguments[2]:void 0;return\"number\"==typeof e?this._rippleRenderer.fadeInRipple(e,t,Object.assign(Object.assign({},this.rippleConfig),n)):this._rippleRenderer.fadeInRipple(0,0,Object.assign(Object.assign({},this.rippleConfig),e))}},{key:\"disabled\",get:function(){return this._disabled},set:function(e){this._disabled=e,this._setupTriggerEventsIfEnabled()}},{key:\"trigger\",get:function(){return this._trigger||this._elementRef.nativeElement},set:function(e){this._trigger=e,this._setupTriggerEventsIfEnabled()}},{key:\"rippleConfig\",get:function(){return{centered:this.centered,radius:this.radius,color:this.color,animation:Object.assign(Object.assign({},this._globalOptions.animation),this.animation),terminateOnPointerUp:this._globalOptions.terminateOnPointerUp}}},{key:\"rippleDisabled\",get:function(){return this.disabled||!!this._globalOptions.disabled}}]),e}()).\\u0275fac=function(e){return new(e||Zy)(Io(Qs),Io(cc),Io(Cp),Io(ob,8),Io(Yy,8))},Zy.\\u0275dir=Lt({type:Zy,selectors:[[\"\",\"mat-ripple\",\"\"],[\"\",\"matRipple\",\"\"]],hostAttrs:[1,\"mat-ripple\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"mat-ripple-unbounded\",t.unbounded)},inputs:{radius:[\"matRippleRadius\",\"radius\"],disabled:[\"matRippleDisabled\",\"disabled\"],trigger:[\"matRippleTrigger\",\"trigger\"],color:[\"matRippleColor\",\"color\"],unbounded:[\"matRippleUnbounded\",\"unbounded\"],centered:[\"matRippleCentered\",\"centered\"],animation:[\"matRippleAnimation\",\"animation\"]},exportAs:[\"matRipple\"]}),Zy),lb=((Ky=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Ky}),Ky.\\u0275inj=ve({factory:function(e){return new(e||Ky)},imports:[[zy,Mp],zy]}),Ky),ub=((Jy=function e(t){_classCallCheck(this,e),this._animationMode=t,this.state=\"unchecked\",this.disabled=!1}).\\u0275fac=function(e){return new(e||Jy)(Io(Yy,8))},Jy.\\u0275cmp=bt({type:Jy,selectors:[[\"mat-pseudo-checkbox\"]],hostAttrs:[1,\"mat-pseudo-checkbox\"],hostVars:8,hostBindings:function(e,t){2&e&&fs(\"mat-pseudo-checkbox-indeterminate\",\"indeterminate\"===t.state)(\"mat-pseudo-checkbox-checked\",\"checked\"===t.state)(\"mat-pseudo-checkbox-disabled\",t.disabled)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode)},inputs:{state:\"state\",disabled:\"disabled\"},decls:0,vars:0,template:function(e,t){},styles:['.mat-pseudo-checkbox{width:16px;height:16px;border:2px solid;border-radius:2px;cursor:pointer;display:inline-block;vertical-align:middle;box-sizing:border-box;position:relative;flex-shrink:0;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1),background-color 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox::after{position:absolute;opacity:0;content:\"\";border-bottom:2px solid currentColor;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox.mat-pseudo-checkbox-indeterminate{border-color:transparent}._mat-animation-noopable.mat-pseudo-checkbox{transition:none;animation:none}._mat-animation-noopable.mat-pseudo-checkbox::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{top:5px;left:1px;width:10px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{top:2.4px;left:1px;width:8px;height:3px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}\\n'],encapsulation:2,changeDetection:0}),Jy),cb=(($y=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:$y}),$y.\\u0275inj=ve({factory:function(e){return new(e||$y)}}),$y),db=Vy((function e(){_classCallCheck(this,e)})),hb=0,fb=((Qy=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e;return _classCallCheck(this,n),(e=t.apply(this,arguments))._labelId=\"mat-optgroup-label-\".concat(hb++),e}return n}(db)).\\u0275fac=function(e){return mb(e||Qy)},Qy.\\u0275cmp=bt({type:Qy,selectors:[[\"mat-optgroup\"]],hostAttrs:[\"role\",\"group\",1,\"mat-optgroup\"],hostVars:4,hostBindings:function(e,t){2&e&&(Do(\"aria-disabled\",t.disabled.toString())(\"aria-labelledby\",t._labelId),fs(\"mat-optgroup-disabled\",t.disabled))},inputs:{disabled:\"disabled\",label:\"label\"},exportAs:[\"matOptgroup\"],features:[Es],ngContentSelectors:Py,decls:4,vars:2,consts:[[1,\"mat-optgroup-label\",3,\"id\"]],template:function(e,t){1&e&&(Xo(Ay),Ho(0,\"label\",0),Ls(1),ns(2),Fo(),ns(3,1)),2&e&&(jo(\"id\",t._labelId),bi(1),xs(\"\",t.label,\" \"))},styles:[\".mat-optgroup-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup-label[disabled]{cursor:default}[dir=rtl] .mat-optgroup-label{text-align:right}.mat-optgroup-label .mat-icon{margin-right:16px;vertical-align:middle}.mat-optgroup-label .mat-icon svg{vertical-align:top}[dir=rtl] .mat-optgroup-label .mat-icon{margin-left:16px;margin-right:0}\\n\"],encapsulation:2,changeDetection:0}),Qy),mb=cr(fb),pb=0,_b=function e(t){var n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];_classCallCheck(this,e),this.source=t,this.isUserInput=n},vb=new Be(\"MAT_OPTION_PARENT_COMPONENT\"),gb=((Xy=function(){function e(t,n,r,i){_classCallCheck(this,e),this._element=t,this._changeDetectorRef=n,this._parent=r,this.group=i,this._selected=!1,this._active=!1,this._disabled=!1,this._mostRecentViewValue=\"\",this.id=\"mat-option-\".concat(pb++),this.onSelectionChange=new bu,this._stateChanges=new x}return _createClass(e,[{key:\"select\",value:function(){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}},{key:\"deselect\",value:function(){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}},{key:\"focus\",value:function(e,t){var n=this._getHostElement();\"function\"==typeof n.focus&&n.focus(t)}},{key:\"setActiveStyles\",value:function(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}},{key:\"setInactiveStyles\",value:function(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}},{key:\"getLabel\",value:function(){return this.viewValue}},{key:\"_handleKeydown\",value:function(e){13!==e.keyCode&&32!==e.keyCode||Jm(e)||(this._selectViaInteraction(),e.preventDefault())}},{key:\"_selectViaInteraction\",value:function(){this.disabled||(this._selected=!this.multiple||!this._selected,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent(!0))}},{key:\"_getAriaSelected\",value:function(){return this.selected||!this.multiple&&null}},{key:\"_getTabIndex\",value:function(){return this.disabled?\"-1\":\"0\"}},{key:\"_getHostElement\",value:function(){return this._element.nativeElement}},{key:\"ngAfterViewChecked\",value:function(){if(this._selected){var e=this.viewValue;e!==this._mostRecentViewValue&&(this._mostRecentViewValue=e,this._stateChanges.next())}}},{key:\"ngOnDestroy\",value:function(){this._stateChanges.complete()}},{key:\"_emitSelectionChangeEvent\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.onSelectionChange.emit(new _b(this,e))}},{key:\"multiple\",get:function(){return this._parent&&this._parent.multiple}},{key:\"selected\",get:function(){return this._selected}},{key:\"disabled\",get:function(){return this.group&&this.group.disabled||this._disabled},set:function(e){this._disabled=mp(e)}},{key:\"disableRipple\",get:function(){return this._parent&&this._parent.disableRipple}},{key:\"active\",get:function(){return this._active}},{key:\"viewValue\",get:function(){return(this._getHostElement().textContent||\"\").trim()}}]),e}()).\\u0275fac=function(e){return new(e||Xy)(Io(Qs),Io(eo),Io(vb,8),Io(fb,8))},Xy.\\u0275cmp=bt({type:Xy,selectors:[[\"mat-option\"]],hostAttrs:[\"role\",\"option\",1,\"mat-option\",\"mat-focus-indicator\"],hostVars:12,hostBindings:function(e,t){1&e&&qo(\"click\",(function(){return t._selectViaInteraction()}))(\"keydown\",(function(e){return t._handleKeydown(e)})),2&e&&(Ds(\"id\",t.id),Do(\"tabindex\",t._getTabIndex())(\"aria-selected\",t._getAriaSelected())(\"aria-disabled\",t.disabled.toString()),fs(\"mat-selected\",t.selected)(\"mat-option-multiple\",t.multiple)(\"mat-active\",t.active)(\"mat-option-disabled\",t.disabled))},inputs:{id:\"id\",disabled:\"disabled\",value:\"value\"},outputs:{onSelectionChange:\"onSelectionChange\"},exportAs:[\"matOption\"],ngContentSelectors:Hy,decls:4,vars:3,consts:[[\"class\",\"mat-option-pseudo-checkbox\",3,\"state\",\"disabled\",4,\"ngIf\"],[1,\"mat-option-text\"],[\"mat-ripple\",\"\",1,\"mat-option-ripple\",3,\"matRippleTrigger\",\"matRippleDisabled\"],[1,\"mat-option-pseudo-checkbox\",3,\"state\",\"disabled\"]],template:function(e,t){1&e&&(Xo(),Yo(0,jy,1,2,\"mat-pseudo-checkbox\",0),Ho(1,\"span\",1),ns(2),Fo(),No(3,\"div\",2)),2&e&&(jo(\"ngIf\",t.multiple),bi(3),jo(\"matRippleTrigger\",t._getHostElement())(\"matRippleDisabled\",t.disabled||t.disableRipple))},directives:[Sd,sb,ub],styles:[\".mat-option{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative;cursor:pointer;outline:none;display:flex;flex-direction:row;max-width:100%;box-sizing:border-box;align-items:center;-webkit-tap-highlight-color:transparent}.mat-option[disabled]{cursor:default}[dir=rtl] .mat-option{text-align:right}.mat-option .mat-icon{margin-right:16px;vertical-align:middle}.mat-option .mat-icon svg{vertical-align:top}[dir=rtl] .mat-option .mat-icon{margin-left:16px;margin-right:0}.mat-option[aria-disabled=true]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:32px}[dir=rtl] .mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:16px;padding-right:32px}.cdk-high-contrast-active .mat-option{margin:0 1px}.cdk-high-contrast-active .mat-option.mat-active{border:solid 1px currentColor;margin:0}.mat-option-text{display:inline-block;flex-grow:1;overflow:hidden;text-overflow:ellipsis}.mat-option .mat-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.cdk-high-contrast-active .mat-option .mat-option-ripple{opacity:.5}.mat-option-pseudo-checkbox{margin-right:8px}[dir=rtl] .mat-option-pseudo-checkbox{margin-left:8px;margin-right:0}\\n\"],encapsulation:2,changeDetection:0}),Xy);function yb(e,t,n){if(n.length){for(var r=t.toArray(),i=n.toArray(),a=0,o=0;o0&&void 0!==arguments[0]?arguments[0]:\"program\",t=arguments.length>1?arguments[1]:void 0;this._focusMonitor.focusVia(this._getHostElement(),e,t)}},{key:\"_getHostElement\",value:function(){return this._elementRef.nativeElement}},{key:\"_isRippleDisabled\",value:function(){return this.disableRipple||this.disabled}},{key:\"_hasHostAttributes\",value:function(){for(var e=this,t=arguments.length,n=new Array(t),r=0;r*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}\\n\"],encapsulation:2,changeDetection:0}),Cb),Vb=((wb=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){return _classCallCheck(this,n),t.call(this,r,e,i)}return _createClass(n,[{key:\"_haltDisabledEvents\",value:function(e){this.disabled&&(e.preventDefault(),e.stopImmediatePropagation())}}]),n}(zb)).\\u0275fac=function(e){return new(e||wb)(Io(t_),Io(Qs),Io(Yy,8))},wb.\\u0275cmp=bt({type:wb,selectors:[[\"a\",\"mat-button\",\"\"],[\"a\",\"mat-raised-button\",\"\"],[\"a\",\"mat-icon-button\",\"\"],[\"a\",\"mat-fab\",\"\"],[\"a\",\"mat-mini-fab\",\"\"],[\"a\",\"mat-stroked-button\",\"\"],[\"a\",\"mat-flat-button\",\"\"]],hostAttrs:[1,\"mat-focus-indicator\"],hostVars:5,hostBindings:function(e,t){1&e&&qo(\"click\",(function(e){return t._haltDisabledEvents(e)})),2&e&&(Do(\"tabindex\",t.disabled?-1:t.tabIndex||0)(\"disabled\",t.disabled||null)(\"aria-disabled\",t.disabled.toString()),fs(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\"},exportAs:[\"matButton\",\"matAnchor\"],features:[Es],attrs:Rb,ngContentSelectors:Hb,decls:4,vars:5,consts:[[1,\"mat-button-wrapper\"],[\"matRipple\",\"\",1,\"mat-button-ripple\",3,\"matRippleDisabled\",\"matRippleCentered\",\"matRippleTrigger\"],[1,\"mat-button-focus-overlay\"]],template:function(e,t){1&e&&(Xo(),Ho(0,\"span\",0),ns(1),Fo(),No(2,\"div\",1),No(3,\"div\",2)),2&e&&(bi(2),fs(\"mat-button-ripple-round\",t.isRoundButton||t.isIconButton),jo(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleCentered\",t.isIconButton)(\"matRippleTrigger\",t._getHostElement()))},directives:[sb],styles:[\".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:.04}@media(hover: none){.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-button[disabled],.mat-icon-button[disabled],.mat-stroked-button[disabled],.mat-flat-button[disabled]{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button[disabled]{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}._mat-animation-noopable.mat-raised-button{transition:none;animation:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-ripple.mat-ripple,.mat-stroked-button .mat-button-focus-overlay{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab[disabled]{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-fab{transition:none;animation:none}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab[disabled]{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-mini-fab{transition:none;animation:none}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button i,.mat-icon-button .mat-icon{line-height:24px}.mat-button-ripple.mat-ripple,.mat-button-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-ripple.mat-ripple:not(:empty){transform:translateZ(0)}.mat-button-focus-overlay{opacity:0;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1),background-color 200ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}.cdk-high-contrast-active .mat-button-focus-overlay{background-color:#fff}.cdk-high-contrast-black-on-white .mat-button-focus-overlay{background-color:#000}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}\\n\"],encapsulation:2,changeDetection:0}),wb),Wb=((kb=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:kb}),kb.\\u0275inj=ve({factory:function(e){return new(e||kb)},imports:[[lb,zy],zy]}),kb),Ub=[\"*\",[[\"mat-card-footer\"]]],Bb=[\"*\",\"mat-card-footer\"],qb=[[[\"\",\"mat-card-avatar\",\"\"],[\"\",\"matCardAvatar\",\"\"]],[[\"mat-card-title\"],[\"mat-card-subtitle\"],[\"\",\"mat-card-title\",\"\"],[\"\",\"mat-card-subtitle\",\"\"],[\"\",\"matCardTitle\",\"\"],[\"\",\"matCardSubtitle\",\"\"]],\"*\"],Gb=[\"[mat-card-avatar], [matCardAvatar]\",\"mat-card-title, mat-card-subtitle,\\n [mat-card-title], [mat-card-subtitle],\\n [matCardTitle], [matCardSubtitle]\",\"*\"],$b=((Yb=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Yb)},Yb.\\u0275dir=Lt({type:Yb,selectors:[[\"mat-card-content\"],[\"\",\"mat-card-content\",\"\"],[\"\",\"matCardContent\",\"\"]],hostAttrs:[1,\"mat-card-content\"]}),Yb),Jb=((Ob=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Ob)},Ob.\\u0275dir=Lt({type:Ob,selectors:[[\"mat-card-title\"],[\"\",\"mat-card-title\",\"\"],[\"\",\"matCardTitle\",\"\"]],hostAttrs:[1,\"mat-card-title\"]}),Ob),Kb=((Db=function e(){_classCallCheck(this,e),this.align=\"start\"}).\\u0275fac=function(e){return new(e||Db)},Db.\\u0275dir=Lt({type:Db,selectors:[[\"mat-card-actions\"]],hostAttrs:[1,\"mat-card-actions\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"mat-card-actions-align-end\",\"end\"===t.align)},inputs:{align:\"align\"},exportAs:[\"matCardActions\"]}),Db),Zb=((xb=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||xb)},xb.\\u0275dir=Lt({type:xb,selectors:[[\"\",\"mat-card-image\",\"\"],[\"\",\"matCardImage\",\"\"]],hostAttrs:[1,\"mat-card-image\"]}),xb),Qb=((Tb=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Tb)},Tb.\\u0275dir=Lt({type:Tb,selectors:[[\"\",\"mat-card-avatar\",\"\"],[\"\",\"matCardAvatar\",\"\"]],hostAttrs:[1,\"mat-card-avatar\"]}),Tb),Xb=((Lb=function e(t){_classCallCheck(this,e),this._animationMode=t}).\\u0275fac=function(e){return new(e||Lb)(Io(Yy,8))},Lb.\\u0275cmp=bt({type:Lb,selectors:[[\"mat-card\"]],hostAttrs:[1,\"mat-card\",\"mat-focus-indicator\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode)},exportAs:[\"matCard\"],ngContentSelectors:Bb,decls:2,vars:0,template:function(e,t){1&e&&(Xo(Ub),ns(0),ns(1,1))},styles:[\".mat-card{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);display:block;position:relative;padding:16px;border-radius:4px}._mat-animation-noopable.mat-card{transition:none;animation:none}.mat-card .mat-divider-horizontal{position:absolute;left:0;width:100%}[dir=rtl] .mat-card .mat-divider-horizontal{left:auto;right:0}.mat-card .mat-divider-horizontal.mat-divider-inset{position:static;margin:0}[dir=rtl] .mat-card .mat-divider-horizontal.mat-divider-inset{margin-right:0}.cdk-high-contrast-active .mat-card{outline:solid 1px}.mat-card-actions,.mat-card-subtitle,.mat-card-content{display:block;margin-bottom:16px}.mat-card-title{display:block;margin-bottom:8px}.mat-card-actions{margin-left:-8px;margin-right:-8px;padding:8px 0}.mat-card-actions-align-end{display:flex;justify-content:flex-end}.mat-card-image{width:calc(100% + 32px);margin:0 -16px 16px -16px}.mat-card-footer{display:block;margin:0 -16px -16px -16px}.mat-card-actions .mat-button,.mat-card-actions .mat-raised-button,.mat-card-actions .mat-stroked-button{margin:0 8px}.mat-card-header{display:flex;flex-direction:row}.mat-card-header .mat-card-title{margin-bottom:12px}.mat-card-header-text{margin:0 16px}.mat-card-avatar{height:40px;width:40px;border-radius:50%;flex-shrink:0;object-fit:cover}.mat-card-title-group{display:flex;justify-content:space-between}.mat-card-sm-image{width:80px;height:80px}.mat-card-md-image{width:112px;height:112px}.mat-card-lg-image{width:152px;height:152px}.mat-card-xl-image{width:240px;height:240px;margin:-8px}.mat-card-title-group>.mat-card-xl-image{margin:-8px 0 8px}@media(max-width: 599px){.mat-card-title-group{margin:0}.mat-card-xl-image{margin-left:0;margin-right:0}}.mat-card>:first-child,.mat-card-content>:first-child{margin-top:0}.mat-card>:last-child:not(.mat-card-footer),.mat-card-content>:last-child:not(.mat-card-footer){margin-bottom:0}.mat-card-image:first-child{margin-top:-16px;border-top-left-radius:inherit;border-top-right-radius:inherit}.mat-card>.mat-card-actions:last-child{margin-bottom:-8px;padding-bottom:0}.mat-card-actions .mat-button:first-child,.mat-card-actions .mat-raised-button:first-child,.mat-card-actions .mat-stroked-button:first-child{margin-left:0;margin-right:0}.mat-card-title:not(:first-child),.mat-card-subtitle:not(:first-child){margin-top:-4px}.mat-card-header .mat-card-subtitle:not(:first-child){margin-top:-8px}.mat-card>.mat-card-xl-image:first-child{margin-top:-8px}.mat-card>.mat-card-xl-image:last-child{margin-bottom:-8px}\\n\"],encapsulation:2,changeDetection:0}),Lb),ek=((Sb=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Sb)},Sb.\\u0275cmp=bt({type:Sb,selectors:[[\"mat-card-header\"]],hostAttrs:[1,\"mat-card-header\"],ngContentSelectors:Gb,decls:4,vars:0,consts:[[1,\"mat-card-header-text\"]],template:function(e,t){1&e&&(Xo(qb),ns(0),Ho(1,\"div\",0),ns(2,1),Fo(),ns(3,2))},encapsulation:2,changeDetection:0}),Sb),tk=((Mb=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Mb}),Mb.\\u0275inj=ve({factory:function(e){return new(e||Mb)},imports:[[zy],zy]}),Mb),nk=[\"input\"],rk=function(){return{enterDuration:150}},ik=[\"*\"],ak=new Be(\"mat-checkbox-default-options\",{providedIn:\"root\",factory:function(){return{color:\"accent\",clickAction:\"check-indeterminate\"}}}),ok=new Be(\"mat-checkbox-click-action\"),sk=0,lk={provide:Wh,useExisting:De((function(){return dk})),multi:!0},uk=function e(){_classCallCheck(this,e)},ck=By(Wy(Uy(Vy((function e(t){_classCallCheck(this,e),this._elementRef=t}))))),dk=((Ab=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s,l,u){var c;return _classCallCheck(this,n),(c=t.call(this,e))._changeDetectorRef=r,c._focusMonitor=i,c._ngZone=a,c._clickAction=s,c._animationMode=l,c._options=u,c.ariaLabel=\"\",c.ariaLabelledby=null,c._uniqueId=\"mat-checkbox-\".concat(++sk),c.id=c._uniqueId,c.labelPosition=\"after\",c.name=null,c.change=new bu,c.indeterminateChange=new bu,c._onTouched=function(){},c._currentAnimationClass=\"\",c._currentCheckState=0,c._controlValueAccessorChangeFn=function(){},c._checked=!1,c._disabled=!1,c._indeterminate=!1,c._options=c._options||{},c._options.color&&(c.color=c._options.color),c.tabIndex=parseInt(o)||0,c._focusMonitor.monitor(e,!0).subscribe((function(e){e||Promise.resolve().then((function(){c._onTouched(),r.markForCheck()}))})),c._clickAction=c._clickAction||c._options.clickAction,c}return _createClass(n,[{key:\"ngAfterViewInit\",value:function(){this._syncIndeterminate(this._indeterminate)}},{key:\"ngAfterViewChecked\",value:function(){}},{key:\"ngOnDestroy\",value:function(){this._focusMonitor.stopMonitoring(this._elementRef)}},{key:\"_isRippleDisabled\",value:function(){return this.disableRipple||this.disabled}},{key:\"_onLabelTextChange\",value:function(){this._changeDetectorRef.detectChanges()}},{key:\"writeValue\",value:function(e){this.checked=!!e}},{key:\"registerOnChange\",value:function(e){this._controlValueAccessorChangeFn=e}},{key:\"registerOnTouched\",value:function(e){this._onTouched=e}},{key:\"setDisabledState\",value:function(e){this.disabled=e}},{key:\"_getAriaChecked\",value:function(){return this.checked?\"true\":this.indeterminate?\"mixed\":\"false\"}},{key:\"_transitionCheckState\",value:function(e){var t=this._currentCheckState,n=this._elementRef.nativeElement;if(t!==e&&(this._currentAnimationClass.length>0&&n.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(t,e),this._currentCheckState=e,this._currentAnimationClass.length>0)){n.classList.add(this._currentAnimationClass);var r=this._currentAnimationClass;this._ngZone.runOutsideAngular((function(){setTimeout((function(){n.classList.remove(r)}),1e3)}))}}},{key:\"_emitChangeEvent\",value:function(){var e=new uk;e.source=this,e.checked=this.checked,this._controlValueAccessorChangeFn(this.checked),this.change.emit(e)}},{key:\"toggle\",value:function(){this.checked=!this.checked}},{key:\"_onInputClick\",value:function(e){var t=this;e.stopPropagation(),this.disabled||\"noop\"===this._clickAction?this.disabled||\"noop\"!==this._clickAction||(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&\"check\"!==this._clickAction&&Promise.resolve().then((function(){t._indeterminate=!1,t.indeterminateChange.emit(t._indeterminate)})),this.toggle(),this._transitionCheckState(this._checked?1:2),this._emitChangeEvent())}},{key:\"focus\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"keyboard\",t=arguments.length>1?arguments[1]:void 0;this._focusMonitor.focusVia(this._inputElement,e,t)}},{key:\"_onInteractionEvent\",value:function(e){e.stopPropagation()}},{key:\"_getAnimationClassForCheckStateTransition\",value:function(e,t){if(\"NoopAnimations\"===this._animationMode)return\"\";var n=\"\";switch(e){case 0:if(1===t)n=\"unchecked-checked\";else{if(3!=t)return\"\";n=\"unchecked-indeterminate\"}break;case 2:n=1===t?\"unchecked-checked\":\"unchecked-indeterminate\";break;case 1:n=2===t?\"checked-unchecked\":\"checked-indeterminate\";break;case 3:n=1===t?\"indeterminate-checked\":\"indeterminate-unchecked\"}return\"mat-checkbox-anim-\".concat(n)}},{key:\"_syncIndeterminate\",value:function(e){var t=this._inputElement;t&&(t.nativeElement.indeterminate=e)}},{key:\"inputId\",get:function(){return\"\".concat(this.id||this._uniqueId,\"-input\")}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=mp(e)}},{key:\"checked\",get:function(){return this._checked},set:function(e){e!=this.checked&&(this._checked=e,this._changeDetectorRef.markForCheck())}},{key:\"disabled\",get:function(){return this._disabled},set:function(e){var t=mp(e);t!==this.disabled&&(this._disabled=t,this._changeDetectorRef.markForCheck())}},{key:\"indeterminate\",get:function(){return this._indeterminate},set:function(e){var t=e!=this._indeterminate;this._indeterminate=mp(e),t&&(this._transitionCheckState(this._indeterminate?3:this.checked?1:2),this.indeterminateChange.emit(this._indeterminate)),this._syncIndeterminate(this._indeterminate)}}]),n}(ck)).\\u0275fac=function(e){return new(e||Ab)(Io(Qs),Io(eo),Io(t_),Io(cc),Ao(\"tabindex\"),Io(ok,8),Io(Yy,8),Io(ak,8))},Ab.\\u0275cmp=bt({type:Ab,selectors:[[\"mat-checkbox\"]],viewQuery:function(e,t){var n;1&e&&(Iu(nk,!0),Iu(sb,!0)),2&e&&(Yu(n=Hu())&&(t._inputElement=n.first),Yu(n=Hu())&&(t.ripple=n.first))},hostAttrs:[1,\"mat-checkbox\"],hostVars:12,hostBindings:function(e,t){2&e&&(Ds(\"id\",t.id),Do(\"tabindex\",null),fs(\"mat-checkbox-indeterminate\",t.indeterminate)(\"mat-checkbox-checked\",t.checked)(\"mat-checkbox-disabled\",t.disabled)(\"mat-checkbox-label-before\",\"before\"==t.labelPosition)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],id:\"id\",labelPosition:\"labelPosition\",name:\"name\",required:\"required\",checked:\"checked\",disabled:\"disabled\",indeterminate:\"indeterminate\",value:\"value\"},outputs:{change:\"change\",indeterminateChange:\"indeterminateChange\"},exportAs:[\"matCheckbox\"],features:[$s([lk]),Es],ngContentSelectors:ik,decls:17,vars:19,consts:[[1,\"mat-checkbox-layout\"],[\"label\",\"\"],[1,\"mat-checkbox-inner-container\"],[\"type\",\"checkbox\",1,\"mat-checkbox-input\",\"cdk-visually-hidden\",3,\"id\",\"required\",\"checked\",\"disabled\",\"tabIndex\",\"change\",\"click\"],[\"input\",\"\"],[\"matRipple\",\"\",1,\"mat-checkbox-ripple\",\"mat-focus-indicator\",3,\"matRippleTrigger\",\"matRippleDisabled\",\"matRippleRadius\",\"matRippleCentered\",\"matRippleAnimation\"],[1,\"mat-ripple-element\",\"mat-checkbox-persistent-ripple\"],[1,\"mat-checkbox-frame\"],[1,\"mat-checkbox-background\"],[\"version\",\"1.1\",\"focusable\",\"false\",\"viewBox\",\"0 0 24 24\",0,\"xml\",\"space\",\"preserve\",1,\"mat-checkbox-checkmark\"],[\"fill\",\"none\",\"stroke\",\"white\",\"d\",\"M4.1,12.7 9,17.6 20.3,6.3\",1,\"mat-checkbox-checkmark-path\"],[1,\"mat-checkbox-mixedmark\"],[1,\"mat-checkbox-label\",3,\"cdkObserveContent\"],[\"checkboxLabel\",\"\"],[2,\"display\",\"none\"]],template:function(e,t){if(1&e&&(Xo(),Ho(0,\"label\",0,1),Ho(2,\"div\",2),Ho(3,\"input\",3,4),qo(\"change\",(function(e){return t._onInteractionEvent(e)}))(\"click\",(function(e){return t._onInputClick(e)})),Fo(),Ho(5,\"div\",5),No(6,\"div\",6),Fo(),No(7,\"div\",7),Ho(8,\"div\",8),Sn(),Ho(9,\"svg\",9),No(10,\"path\",10),Fo(),Ln(),No(11,\"div\",11),Fo(),Fo(),Ho(12,\"span\",12,13),qo(\"cdkObserveContent\",(function(){return t._onLabelTextChange()})),Ho(14,\"span\",14),Ls(15,\"\\xa0\"),Fo(),ns(16),Fo(),Fo()),2&e){var n=Eo(1),r=Eo(13);Do(\"for\",t.inputId),bi(2),fs(\"mat-checkbox-inner-container-no-side-margin\",!r.textContent||!r.textContent.trim()),bi(1),jo(\"id\",t.inputId)(\"required\",t.required)(\"checked\",t.checked)(\"disabled\",t.disabled)(\"tabIndex\",t.tabIndex),Do(\"value\",t.value)(\"name\",t.name)(\"aria-label\",t.ariaLabel||null)(\"aria-labelledby\",t.ariaLabelledby)(\"aria-checked\",t._getAriaChecked()),bi(2),jo(\"matRippleTrigger\",n)(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleRadius\",20)(\"matRippleCentered\",!0)(\"matRippleAnimation\",yu(18,rk))}},directives:[sb,Hp],styles:[\"@keyframes mat-checkbox-fade-in-background{0%{opacity:0}50%{opacity:1}}@keyframes mat-checkbox-fade-out-background{0%,50%{opacity:1}100%{opacity:0}}@keyframes mat-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:22.910259}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1)}100%{stroke-dashoffset:0}}@keyframes mat-checkbox-unchecked-indeterminate-mixedmark{0%,68.2%{transform:scaleX(0)}68.2%{animation-timing-function:cubic-bezier(0, 0, 0, 1)}100%{transform:scaleX(1)}}@keyframes mat-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);stroke-dashoffset:0}to{stroke-dashoffset:-22.910259}}@keyframes mat-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(45deg)}}@keyframes mat-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:0;transform:rotate(45deg)}to{opacity:1;transform:rotate(360deg)}}@keyframes mat-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:0;transform:rotate(-45deg)}to{opacity:1;transform:rotate(0deg)}}@keyframes mat-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(315deg)}}@keyframes mat-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;opacity:1;transform:scaleX(1)}32.8%,100%{opacity:0;transform:scaleX(0)}}.mat-checkbox-background,.mat-checkbox-frame{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:2px;box-sizing:border-box;pointer-events:none}.mat-checkbox{transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);cursor:pointer;-webkit-tap-highlight-color:transparent}._mat-animation-noopable.mat-checkbox{transition:none;animation:none}.mat-checkbox .mat-ripple-element:not(.mat-checkbox-persistent-ripple){opacity:.16}.mat-checkbox-layout{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:inherit;align-items:baseline;vertical-align:middle;display:inline-flex;white-space:nowrap}.mat-checkbox-label{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.mat-checkbox-inner-container{display:inline-block;height:16px;line-height:0;margin:auto;margin-right:8px;order:0;position:relative;vertical-align:middle;white-space:nowrap;width:16px;flex-shrink:0}[dir=rtl] .mat-checkbox-inner-container{margin-left:8px;margin-right:auto}.mat-checkbox-inner-container-no-side-margin{margin-left:0;margin-right:0}.mat-checkbox-frame{background-color:transparent;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1);border-width:2px;border-style:solid}._mat-animation-noopable .mat-checkbox-frame{transition:none}.mat-checkbox.cdk-keyboard-focused .cdk-high-contrast-active .mat-checkbox-frame{border-style:dotted}.mat-checkbox-background{align-items:center;display:inline-flex;justify-content:center;transition:background-color 90ms cubic-bezier(0, 0, 0.2, 0.1),opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}._mat-animation-noopable .mat-checkbox-background{transition:none}.cdk-high-contrast-active .mat-checkbox .mat-checkbox-background{background:none}.mat-checkbox-persistent-ripple{width:100%;height:100%;transform:none}.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:.04}.mat-checkbox.cdk-keyboard-focused .mat-checkbox-persistent-ripple{opacity:.12}.mat-checkbox-persistent-ripple,.mat-checkbox.mat-checkbox-disabled .mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:0}@media(hover: none){.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{display:none}}.mat-checkbox-checkmark{top:0;left:0;right:0;bottom:0;position:absolute;width:100%}.mat-checkbox-checkmark-path{stroke-dashoffset:22.910259;stroke-dasharray:22.910259;stroke-width:2.1333333333px}.cdk-high-contrast-black-on-white .mat-checkbox-checkmark-path{stroke:#000 !important}.mat-checkbox-mixedmark{width:calc(100% - 6px);height:2px;opacity:0;transform:scaleX(0) rotate(0deg);border-radius:2px}.cdk-high-contrast-active .mat-checkbox-mixedmark{height:0;border-top:solid 2px;margin-top:2px}.mat-checkbox-label-before .mat-checkbox-inner-container{order:1;margin-left:8px;margin-right:auto}[dir=rtl] .mat-checkbox-label-before .mat-checkbox-inner-container{margin-left:auto;margin-right:8px}.mat-checkbox-checked .mat-checkbox-checkmark{opacity:1}.mat-checkbox-checked .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-checked .mat-checkbox-mixedmark{transform:scaleX(1) rotate(-45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark{opacity:0;transform:rotate(45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-indeterminate .mat-checkbox-mixedmark{opacity:1;transform:scaleX(1) rotate(0deg)}.mat-checkbox-unchecked .mat-checkbox-background{background-color:transparent}.mat-checkbox-disabled{cursor:default}.cdk-high-contrast-active .mat-checkbox-disabled{opacity:.5}.mat-checkbox-anim-unchecked-checked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-checked .mat-checkbox-checkmark-path{animation:180ms linear 0ms mat-checkbox-unchecked-checked-checkmark-path}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-unchecked-indeterminate-mixedmark}.mat-checkbox-anim-checked-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-checked-unchecked .mat-checkbox-checkmark-path{animation:90ms linear 0ms mat-checkbox-checked-unchecked-checkmark-path}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-checkmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-checkmark}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-mixedmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-checkmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-checkmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-mixedmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-mixedmark}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-mixedmark{animation:300ms linear 0ms mat-checkbox-indeterminate-unchecked-mixedmark}.mat-checkbox-input{bottom:0;left:50%}.mat-checkbox .mat-checkbox-ripple{position:absolute;left:calc(50% - 20px);top:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}\\n\"],encapsulation:2,changeDetection:0}),Ab),hk=((Ib=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Ib}),Ib.\\u0275inj=ve({factory:function(e){return new(e||Ib)}}),Ib),fk=((Eb=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Eb}),Eb.\\u0275inj=ve({factory:function(e){return new(e||Eb)},imports:[[lb,zy,Fp,hk],zy,hk]}),Eb);function mk(e,t,n,i){return r(n)&&(i=n,n=void 0),i?mk(e,t,n).pipe(F((function(e){return l(e)?i.apply(void 0,_toConsumableArray(e)):i(e)}))):new w((function(r){!function e(t,n,r,i,a){var o;if(function(e){return e&&\"function\"==typeof e.addEventListener&&\"function\"==typeof e.removeEventListener}(t)){var s=t;t.addEventListener(n,r,a),o=function(){return s.removeEventListener(n,r,a)}}else if(function(e){return e&&\"function\"==typeof e.on&&\"function\"==typeof e.off}(t)){var l=t;t.on(n,r),o=function(){return l.off(n,r)}}else if(function(e){return e&&\"function\"==typeof e.addListener&&\"function\"==typeof e.removeListener}(t)){var u=t;t.addListener(n,r),o=function(){return u.removeListener(n,r)}}else{if(!t||!t.length)throw new TypeError(\"Invalid event target\");for(var c=0,d=t.length;c1?Array.prototype.slice.call(arguments):e)}),r,n)}))}var pk=1,_k=Promise.resolve(),vk={};function gk(e){return e in vk&&(delete vk[e],!0)}var yk=function(e){var t=pk++;return vk[t]=!0,_k.then((function(){return gk(t)&&e()})),t},bk=function(e){gk(e)},kk=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e,r)).scheduler=e,i.work=r,i}return _createClass(n,[{key:\"requestAsyncId\",value:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return null!==r&&r>0?_get(_getPrototypeOf(n.prototype),\"requestAsyncId\",this).call(this,e,t,r):(e.actions.push(this),e.scheduled||(e.scheduled=yk(e.flush.bind(e,null))))}},{key:\"recycleAsyncId\",value:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;if(null!==r&&r>0||null===r&&this.delay>0)return _get(_getPrototypeOf(n.prototype),\"recycleAsyncId\",this).call(this,e,t,r);0===e.actions.length&&(bk(t),e.scheduled=void 0)}}]),n}(Xm),wk=new(function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"flush\",value:function(e){this.active=!0,this.scheduled=void 0;var t,n=this.actions,r=-1,i=n.length;e=e||n.shift();do{if(t=e.execute(e.state,e.delay))break}while(++r=0}function Dk(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0,r=-1;return xk(t)?r=Number(t)<1?1:Number(t):O(t)&&(n=t),O(n)||(n=np),new w((function(t){var i=xk(e)?e:+e-n.now();return n.schedule(Ok,i,{index:0,period:r,subscriber:t})}))}function Ok(e){var t=e.index,n=e.period,r=e.subscriber;if(r.next(t),!r.closed){if(-1===n)return r.complete();e.index=t+1,this.schedule(e,n)}}function Yk(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:np;return t=function(){return Dk(e,n)},function(e){return e.lift(new Lk(t))}}function Ek(e){return function(t){return t.lift(new Ik(e))}}var Ik=function(){function e(t){_classCallCheck(this,e),this.notifier=t}return _createClass(e,[{key:\"call\",value:function(e,t){var n=new Ak(e),r=R(n,this.notifier);return r&&!n.seenValue?(n.add(r),t.subscribe(n)):n}}]),e}(),Ak=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this,e)).seenValue=!1,r}return _createClass(n,[{key:\"notifyNext\",value:function(e,t,n,r,i){this.seenValue=!0,this.complete()}},{key:\"notifyComplete\",value:function(){}}]),n}(H);function Pk(e,t){return\"function\"==typeof t?function(n){return n.pipe(Pk((function(n,r){return W(e(n,r)).pipe(F((function(e,i){return t(n,e,r,i)})))})))}:function(t){return t.lift(new jk(e))}}var jk=function(){function e(t){_classCallCheck(this,e),this.project=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new Rk(e,this.project))}}]),e}(),Rk=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).project=r,i.index=0,i}return _createClass(n,[{key:\"_next\",value:function(e){var t,n=this.index++;try{t=this.project(e,n)}catch(r){return void this.destination.error(r)}this._innerSub(t,e,n)}},{key:\"_innerSub\",value:function(e,t,n){var r=this.innerSubscription;r&&r.unsubscribe();var i=new Y(this,t,n),a=this.destination;a.add(i),this.innerSubscription=R(this,e,void 0,void 0,i),this.innerSubscription!==i&&a.add(this.innerSubscription)}},{key:\"_complete\",value:function(){var e=this.innerSubscription;e&&!e.closed||_get(_getPrototypeOf(n.prototype),\"_complete\",this).call(this),this.unsubscribe()}},{key:\"_unsubscribe\",value:function(){this.innerSubscription=null}},{key:\"notifyComplete\",value:function(e){this.destination.remove(e),this.innerSubscription=null,this.isStopped&&_get(_getPrototypeOf(n.prototype),\"_complete\",this).call(this)}},{key:\"notifyNext\",value:function(e,t,n,r,i){this.destination.next(t)}}]),n}(H),Hk=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e,r)).scheduler=e,i.work=r,i}return _createClass(n,[{key:\"schedule\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return t>0?_get(_getPrototypeOf(n.prototype),\"schedule\",this).call(this,e,t):(this.delay=t,this.state=e,this.scheduler.flush(this),this)}},{key:\"execute\",value:function(e,t){return t>0||this.closed?_get(_getPrototypeOf(n.prototype),\"execute\",this).call(this,e,t):this._execute(e,t)}},{key:\"requestAsyncId\",value:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return null!==r&&r>0||null===r&&this.delay>0?_get(_getPrototypeOf(n.prototype),\"requestAsyncId\",this).call(this,e,t,r):e.flush(this)}}]),n}(Xm),Fk=new(function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return n}(tp))(Hk);function Nk(e,t){return new w(t?function(n){return t.schedule(zk,0,{error:e,subscriber:n})}:function(t){return t.error(e)})}function zk(e){var t=e.error;e.subscriber.error(t)}var Vk=function(){var e=function(){function e(t,n,r){_classCallCheck(this,e),this.kind=t,this.value=n,this.error=r,this.hasValue=\"N\"===t}return _createClass(e,[{key:\"observe\",value:function(e){switch(this.kind){case\"N\":return e.next&&e.next(this.value);case\"E\":return e.error&&e.error(this.error);case\"C\":return e.complete&&e.complete()}}},{key:\"do\",value:function(e,t,n){switch(this.kind){case\"N\":return e&&e(this.value);case\"E\":return t&&t(this.error);case\"C\":return n&&n()}}},{key:\"accept\",value:function(e,t,n){return e&&\"function\"==typeof e.next?this.observe(e):this.do(e,t,n)}},{key:\"toObservable\",value:function(){switch(this.kind){case\"N\":return Bd(this.value);case\"E\":return Nk(this.error);case\"C\":return up()}throw new Error(\"unexpected notification kind value\")}}],[{key:\"createNext\",value:function(t){return void 0!==t?new e(\"N\",t):e.undefinedValueNotification}},{key:\"createError\",value:function(t){return new e(\"E\",void 0,t)}},{key:\"createComplete\",value:function(){return e.completeNotification}}]),e}();return e.completeNotification=new e(\"C\"),e.undefinedValueNotification=new e(\"N\",void 0),e}(),Wk=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return _classCallCheck(this,n),(i=t.call(this,e)).scheduler=r,i.delay=a,i}return _createClass(n,[{key:\"scheduleMessage\",value:function(e){this.destination.add(this.scheduler.schedule(n.dispatch,this.delay,new Uk(e,this.destination)))}},{key:\"_next\",value:function(e){this.scheduleMessage(Vk.createNext(e))}},{key:\"_error\",value:function(e){this.scheduleMessage(Vk.createError(e)),this.unsubscribe()}},{key:\"_complete\",value:function(){this.scheduleMessage(Vk.createComplete()),this.unsubscribe()}}],[{key:\"dispatch\",value:function(e){var t=e.notification,n=e.destination;t.observe(n),this.unsubscribe()}}]),n}(p),Uk=function e(t,n){_classCallCheck(this,e),this.notification=t,this.destination=n},Bk=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Number.POSITIVE_INFINITY,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.POSITIVE_INFINITY,a=arguments.length>2?arguments[2]:void 0;return _classCallCheck(this,n),(e=t.call(this)).scheduler=a,e._events=[],e._infiniteTimeWindow=!1,e._bufferSize=r<1?1:r,e._windowTime=i<1?1:i,i===Number.POSITIVE_INFINITY?(e._infiniteTimeWindow=!0,e.next=e.nextInfiniteTimeWindow):e.next=e.nextTimeWindow,e}return _createClass(n,[{key:\"nextInfiniteTimeWindow\",value:function(e){var t=this._events;t.push(e),t.length>this._bufferSize&&t.shift(),_get(_getPrototypeOf(n.prototype),\"next\",this).call(this,e)}},{key:\"nextTimeWindow\",value:function(e){this._events.push(new qk(this._getNow(),e)),this._trimBufferThenGetEvents(),_get(_getPrototypeOf(n.prototype),\"next\",this).call(this,e)}},{key:\"_subscribe\",value:function(e){var t,n=this._infiniteTimeWindow,r=n?this._events:this._trimBufferThenGetEvents(),i=this.scheduler,a=r.length;if(this.closed)throw new S;if(this.isStopped||this.hasError?t=h.EMPTY:(this.observers.push(e),t=new L(this,e)),i&&e.add(e=new Wk(e,i)),n)for(var o=0;ot&&(a=Math.max(a,i-t)),a>0&&r.splice(0,a),r}}]),n}(x),qk=function e(t,n){_classCallCheck(this,e),this.time=t,this.value=n};function Gk(e,t,n){var r;return r=e&&\"object\"==typeof e?e:{bufferSize:e,windowTime:t,refCount:!1,scheduler:n},function(e){return e.lift(function(e){var t,n,r=e.bufferSize,i=void 0===r?Number.POSITIVE_INFINITY:r,a=e.windowTime,o=void 0===a?Number.POSITIVE_INFINITY:a,s=e.refCount,l=e.scheduler,u=0,c=!1,d=!1;return function(e){u++,t&&!c||(c=!1,t=new Bk(i,o,l),n=e.subscribe({next:function(e){t.next(e)},error:function(e){c=!0,t.error(e)},complete:function(){d=!0,n=void 0,t.complete()}}));var r=t.subscribe(this);this.add((function(){u--,r.unsubscribe(),n&&!d&&s&&0===u&&(n.unsubscribe(),n=void 0,t=void 0)}))}}(r))}}var $k,Jk,Kk,Zk,Qk=function(){function e(){var t=this,n=arguments.length>0&&void 0!==arguments[0]&&arguments[0],r=arguments.length>1?arguments[1]:void 0,i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];_classCallCheck(this,e),this._multiple=n,this._emitChanges=i,this._selection=new Set,this._deselectedToEmit=[],this._selectedToEmit=[],this.changed=new x,r&&r.length&&(n?r.forEach((function(e){return t._markSelected(e)})):this._markSelected(r[0]),this._selectedToEmit.length=0)}return _createClass(e,[{key:\"select\",value:function(){for(var e=this,t=arguments.length,n=new Array(t),r=0;r1&&!this._multiple)throw Error(\"Cannot pass multiple values into SelectionModel with single-value mode.\")}},{key:\"selected\",get:function(){return this._selected||(this._selected=Array.from(this._selection.values())),this._selected}}]),e}(),Xk=((Zk=function(){function e(t,n){_classCallCheck(this,e),this._ngZone=t,this._platform=n,this._scrolled=new x,this._globalSubscription=null,this._scrolledCount=0,this.scrollContainers=new Map}return _createClass(e,[{key:\"register\",value:function(e){var t=this;this.scrollContainers.has(e)||this.scrollContainers.set(e,e.elementScrolled().subscribe((function(){return t._scrolled.next(e)})))}},{key:\"deregister\",value:function(e){var t=this.scrollContainers.get(e);t&&(t.unsubscribe(),this.scrollContainers.delete(e))}},{key:\"scrolled\",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:20;return this._platform.isBrowser?new w((function(n){e._globalSubscription||e._addGlobalListener();var r=t>0?e._scrolled.pipe(Yk(t)).subscribe(n):e._scrolled.subscribe(n);return e._scrolledCount++,function(){r.unsubscribe(),e._scrolledCount--,e._scrolledCount||e._removeGlobalListener()}})):Bd()}},{key:\"ngOnDestroy\",value:function(){var e=this;this._removeGlobalListener(),this.scrollContainers.forEach((function(t,n){return e.deregister(n)})),this._scrolled.complete()}},{key:\"ancestorScrolled\",value:function(e,t){var n=this.getAncestorScrollContainers(e);return this.scrolled(t).pipe(Gd((function(e){return!e||n.indexOf(e)>-1})))}},{key:\"getAncestorScrollContainers\",value:function(e){var t=this,n=[];return this.scrollContainers.forEach((function(r,i){t._scrollableContainsElement(i,e)&&n.push(i)})),n}},{key:\"_scrollableContainsElement\",value:function(e,t){var n=t.nativeElement,r=e.getElementRef().nativeElement;do{if(n==r)return!0}while(n=n.parentElement);return!1}},{key:\"_addGlobalListener\",value:function(){var e=this;this._globalSubscription=this._ngZone.runOutsideAngular((function(){return mk(window.document,\"scroll\").subscribe((function(){return e._scrolled.next()}))}))}},{key:\"_removeGlobalListener\",value:function(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)}}]),e}()).\\u0275fac=function(e){return new(e||Zk)(et(cc),et(Cp))},Zk.\\u0275prov=_e({factory:function(){return new Zk(et(cc),et(Cp))},token:Zk,providedIn:\"root\"}),Zk),ew=((Kk=function(){function e(t,n,r,i){var a=this;_classCallCheck(this,e),this.elementRef=t,this.scrollDispatcher=n,this.ngZone=r,this.dir=i,this._destroyed=new x,this._elementScrolled=new w((function(e){return a.ngZone.runOutsideAngular((function(){return mk(a.elementRef.nativeElement,\"scroll\").pipe(Ek(a._destroyed)).subscribe(e)}))}))}return _createClass(e,[{key:\"ngOnInit\",value:function(){this.scrollDispatcher.register(this)}},{key:\"ngOnDestroy\",value:function(){this.scrollDispatcher.deregister(this),this._destroyed.next(),this._destroyed.complete()}},{key:\"elementScrolled\",value:function(){return this._elementScrolled}},{key:\"getElementRef\",value:function(){return this.elementRef}},{key:\"scrollTo\",value:function(e){var t=this.elementRef.nativeElement,n=this.dir&&\"rtl\"==this.dir.value;e.left=null==e.left?n?e.end:e.start:e.left,e.right=null==e.right?n?e.start:e.end:e.right,null!=e.bottom&&(e.top=t.scrollHeight-t.clientHeight-e.bottom),n&&Op()!=Dp.NORMAL?(null!=e.left&&(e.right=t.scrollWidth-t.clientWidth-e.left),Op()==Dp.INVERTED?e.left=e.right:Op()==Dp.NEGATED&&(e.left=e.right?-e.right:e.right)):null!=e.right&&(e.left=t.scrollWidth-t.clientWidth-e.right),this._applyScrollToOptions(e)}},{key:\"_applyScrollToOptions\",value:function(e){var t=this.elementRef.nativeElement;\"object\"==typeof document&&\"scrollBehavior\"in document.documentElement.style?t.scrollTo(e):(null!=e.top&&(t.scrollTop=e.top),null!=e.left&&(t.scrollLeft=e.left))}},{key:\"measureScrollOffset\",value:function(e){var t=this.elementRef.nativeElement;if(\"top\"==e)return t.scrollTop;if(\"bottom\"==e)return t.scrollHeight-t.clientHeight-t.scrollTop;var n=this.dir&&\"rtl\"==this.dir.value;return\"start\"==e?e=n?\"right\":\"left\":\"end\"==e&&(e=n?\"left\":\"right\"),n&&Op()==Dp.INVERTED?\"left\"==e?t.scrollWidth-t.clientWidth-t.scrollLeft:t.scrollLeft:n&&Op()==Dp.NEGATED?\"left\"==e?t.scrollLeft+t.scrollWidth-t.clientWidth:-t.scrollLeft:\"left\"==e?t.scrollLeft:t.scrollWidth-t.clientWidth-t.scrollLeft}}]),e}()).\\u0275fac=function(e){return new(e||Kk)(Io(Qs),Io(Xk),Io(cc),Io(h_,8))},Kk.\\u0275dir=Lt({type:Kk,selectors:[[\"\",\"cdk-scrollable\",\"\"],[\"\",\"cdkScrollable\",\"\"]]}),Kk),tw=((Jk=function(){function e(t,n){var r=this;_classCallCheck(this,e),this._platform=t,n.runOutsideAngular((function(){r._change=t.isBrowser?K(mk(window,\"resize\"),mk(window,\"orientationchange\")):Bd(),r._invalidateCache=r.change().subscribe((function(){return r._updateViewportSize()}))}))}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){this._invalidateCache.unsubscribe()}},{key:\"getViewportSize\",value:function(){this._viewportSize||this._updateViewportSize();var e={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),e}},{key:\"getViewportRect\",value:function(){var e=this.getViewportScrollPosition(),t=this.getViewportSize(),n=t.width,r=t.height;return{top:e.top,left:e.left,bottom:e.top+r,right:e.left+n,height:r,width:n}}},{key:\"getViewportScrollPosition\",value:function(){if(!this._platform.isBrowser)return{top:0,left:0};var e=document.documentElement,t=e.getBoundingClientRect();return{top:-t.top||document.body.scrollTop||window.scrollY||e.scrollTop||0,left:-t.left||document.body.scrollLeft||window.scrollX||e.scrollLeft||0}}},{key:\"change\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:20;return e>0?this._change.pipe(Yk(e)):this._change}},{key:\"_updateViewportSize\",value:function(){this._viewportSize=this._platform.isBrowser?{width:window.innerWidth,height:window.innerHeight}:{width:0,height:0}}}]),e}()).\\u0275fac=function(e){return new(e||Jk)(et(Cp),et(cc))},Jk.\\u0275prov=_e({factory:function(){return new Jk(et(Cp),et(cc))},token:Jk,providedIn:\"root\"}),Jk),nw=(($k=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:$k}),$k.\\u0275inj=ve({factory:function(e){return new(e||$k)},imports:[[f_,Mp],f_]}),$k);function rw(){throw Error(\"Host already has a portal attached\")}var iw,aw,ow=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"attach\",value:function(e){return null==e&&function(){throw Error(\"Attempting to attach a portal to a null PortalOutlet\")}(),e.hasAttached()&&rw(),this._attachedHost=e,e.attach(this)}},{key:\"detach\",value:function(){var e=this._attachedHost;null==e?function(){throw Error(\"Attempting to detach a portal that is not attached to a host\")}():(this._attachedHost=null,e.detach())}},{key:\"setAttachedHost\",value:function(e){this._attachedHost=e}},{key:\"isAttached\",get:function(){return null!=this._attachedHost}}]),e}(),sw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this)).component=e,o.viewContainerRef=r,o.injector=i,o.componentFactoryResolver=a,o}return n}(ow),lw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this)).templateRef=e,a.viewContainerRef=r,a.context=i,a}return _createClass(n,[{key:\"attach\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.context;return this.context=t,_get(_getPrototypeOf(n.prototype),\"attach\",this).call(this,e)}},{key:\"detach\",value:function(){return this.context=void 0,_get(_getPrototypeOf(n.prototype),\"detach\",this).call(this)}},{key:\"origin\",get:function(){return this.templateRef.elementRef}}]),n}(ow),uw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this)).element=e instanceof Qs?e.nativeElement:e,r}return n}(ow),cw=function(){function e(){_classCallCheck(this,e),this._isDisposed=!1,this.attachDomPortal=null}return _createClass(e,[{key:\"hasAttached\",value:function(){return!!this._attachedPortal}},{key:\"attach\",value:function(e){return e||function(){throw Error(\"Must provide a portal to attach\")}(),this.hasAttached()&&rw(),this._isDisposed&&function(){throw Error(\"This PortalOutlet has already been disposed\")}(),e instanceof sw?(this._attachedPortal=e,this.attachComponentPortal(e)):e instanceof lw?(this._attachedPortal=e,this.attachTemplatePortal(e)):this.attachDomPortal&&e instanceof uw?(this._attachedPortal=e,this.attachDomPortal(e)):void function(){throw Error(\"Attempting to attach an unknown Portal type. BasePortalOutlet accepts either a ComponentPortal or a TemplatePortal.\")}()}},{key:\"detach\",value:function(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()}},{key:\"dispose\",value:function(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0}},{key:\"setDisposeFn\",value:function(e){this._disposeFn=e}},{key:\"_invokeDisposeFn\",value:function(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}]),e}(),dw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this)).outletElement=e,s._componentFactoryResolver=r,s._appRef=i,s._defaultInjector=a,s.attachDomPortal=function(e){if(!s._document)throw Error(\"Cannot attach DOM portal without _document constructor parameter\");var t=e.element;if(!t.parentNode)throw Error(\"DOM portal content must be attached to a parent node.\");var r=s._document.createComment(\"dom-portal\");t.parentNode.insertBefore(r,t),s.outletElement.appendChild(t),_get(_getPrototypeOf(n.prototype),\"setDisposeFn\",_assertThisInitialized(s)).call(_assertThisInitialized(s),(function(){r.parentNode&&r.parentNode.replaceChild(t,r)}))},s._document=o,s}return _createClass(n,[{key:\"attachComponentPortal\",value:function(e){var t,n=this,r=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component);return e.viewContainerRef?(t=e.viewContainerRef.createComponent(r,e.viewContainerRef.length,e.injector||e.viewContainerRef.injector),this.setDisposeFn((function(){return t.destroy()}))):(t=r.create(e.injector||this._defaultInjector),this._appRef.attachView(t.hostView),this.setDisposeFn((function(){n._appRef.detachView(t.hostView),t.destroy()}))),this.outletElement.appendChild(this._getComponentRootNode(t)),t}},{key:\"attachTemplatePortal\",value:function(e){var t=this,n=e.viewContainerRef,r=n.createEmbeddedView(e.templateRef,e.context);return r.detectChanges(),r.rootNodes.forEach((function(e){return t.outletElement.appendChild(e)})),this.setDisposeFn((function(){var e=n.indexOf(r);-1!==e&&n.remove(e)})),r}},{key:\"dispose\",value:function(){_get(_getPrototypeOf(n.prototype),\"dispose\",this).call(this),null!=this.outletElement.parentNode&&this.outletElement.parentNode.removeChild(this.outletElement)}},{key:\"_getComponentRootNode\",value:function(e){return e.hostView.rootNodes[0]}}]),n}(cw),hw=((aw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this))._componentFactoryResolver=e,a._viewContainerRef=r,a._isInitialized=!1,a.attached=new bu,a.attachDomPortal=function(e){if(!a._document)throw Error(\"Cannot attach DOM portal without _document constructor parameter\");var t=e.element;if(!t.parentNode)throw Error(\"DOM portal content must be attached to a parent node.\");var r=a._document.createComment(\"dom-portal\");e.setAttachedHost(_assertThisInitialized(a)),t.parentNode.insertBefore(r,t),a._getRootNode().appendChild(t),_get(_getPrototypeOf(n.prototype),\"setDisposeFn\",_assertThisInitialized(a)).call(_assertThisInitialized(a),(function(){r.parentNode&&r.parentNode.replaceChild(t,r)}))},a._document=i,a}return _createClass(n,[{key:\"ngOnInit\",value:function(){this._isInitialized=!0}},{key:\"ngOnDestroy\",value:function(){_get(_getPrototypeOf(n.prototype),\"dispose\",this).call(this),this._attachedPortal=null,this._attachedRef=null}},{key:\"attachComponentPortal\",value:function(e){e.setAttachedHost(this);var t=null!=e.viewContainerRef?e.viewContainerRef:this._viewContainerRef,r=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component),i=t.createComponent(r,t.length,e.injector||t.injector);return t!==this._viewContainerRef&&this._getRootNode().appendChild(i.hostView.rootNodes[0]),_get(_getPrototypeOf(n.prototype),\"setDisposeFn\",this).call(this,(function(){return i.destroy()})),this._attachedPortal=e,this._attachedRef=i,this.attached.emit(i),i}},{key:\"attachTemplatePortal\",value:function(e){var t=this;e.setAttachedHost(this);var r=this._viewContainerRef.createEmbeddedView(e.templateRef,e.context);return _get(_getPrototypeOf(n.prototype),\"setDisposeFn\",this).call(this,(function(){return t._viewContainerRef.clear()})),this._attachedPortal=e,this._attachedRef=r,this.attached.emit(r),r}},{key:\"_getRootNode\",value:function(){var e=this._viewContainerRef.element.nativeElement;return e.nodeType===e.ELEMENT_NODE?e:e.parentNode}},{key:\"portal\",get:function(){return this._attachedPortal},set:function(e){(!this.hasAttached()||e||this._isInitialized)&&(this.hasAttached()&&_get(_getPrototypeOf(n.prototype),\"detach\",this).call(this),e&&_get(_getPrototypeOf(n.prototype),\"attach\",this).call(this,e),this._attachedPortal=e)}},{key:\"attachedRef\",get:function(){return this._attachedRef}}]),n}(cw)).\\u0275fac=function(e){return new(e||aw)(Io(Zs),Io(Ml),Io(Wc))},aw.\\u0275dir=Lt({type:aw,selectors:[[\"\",\"cdkPortalOutlet\",\"\"]],inputs:{portal:[\"cdkPortalOutlet\",\"portal\"]},outputs:{attached:\"attached\"},exportAs:[\"cdkPortalOutlet\"],features:[Es]}),aw),fw=((iw=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:iw}),iw.\\u0275inj=ve({factory:function(e){return new(e||iw)}}),iw),mw=function(){function e(t,n){_classCallCheck(this,e),this._viewportRuler=t,this._previousHTMLStyles={top:\"\",left:\"\"},this._isEnabled=!1,this._document=n}return _createClass(e,[{key:\"attach\",value:function(){}},{key:\"enable\",value:function(){if(this._canBeEnabled()){var e=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=e.style.left||\"\",this._previousHTMLStyles.top=e.style.top||\"\",e.style.left=vp(-this._previousScrollPosition.left),e.style.top=vp(-this._previousScrollPosition.top),e.classList.add(\"cdk-global-scrollblock\"),this._isEnabled=!0}}},{key:\"disable\",value:function(){if(this._isEnabled){var e=this._document.documentElement,t=e.style,n=this._document.body.style,r=t.scrollBehavior||\"\",i=n.scrollBehavior||\"\";this._isEnabled=!1,t.left=this._previousHTMLStyles.left,t.top=this._previousHTMLStyles.top,e.classList.remove(\"cdk-global-scrollblock\"),t.scrollBehavior=n.scrollBehavior=\"auto\",window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),t.scrollBehavior=r,n.scrollBehavior=i}}},{key:\"_canBeEnabled\",value:function(){if(this._document.documentElement.classList.contains(\"cdk-global-scrollblock\")||this._isEnabled)return!1;var e=this._document.body,t=this._viewportRuler.getViewportSize();return e.scrollHeight>t.height||e.scrollWidth>t.width}}]),e}();function pw(){return Error(\"Scroll strategy has already been attached.\")}var _w=function(){function e(t,n,r,i){var a=this;_classCallCheck(this,e),this._scrollDispatcher=t,this._ngZone=n,this._viewportRuler=r,this._config=i,this._scrollSubscription=null,this._detach=function(){a.disable(),a._overlayRef.hasAttached()&&a._ngZone.run((function(){return a._overlayRef.detach()}))}}return _createClass(e,[{key:\"attach\",value:function(e){if(this._overlayRef)throw pw();this._overlayRef=e}},{key:\"enable\",value:function(){var e=this;if(!this._scrollSubscription){var t=this._scrollDispatcher.scrolled(0);this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=t.subscribe((function(){var t=e._viewportRuler.getViewportScrollPosition().top;Math.abs(t-e._initialScrollPosition)>e._config.threshold?e._detach():e._overlayRef.updatePosition()}))):this._scrollSubscription=t.subscribe(this._detach)}}},{key:\"disable\",value:function(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}},{key:\"detach\",value:function(){this.disable(),this._overlayRef=null}}]),e}(),vw=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"enable\",value:function(){}},{key:\"disable\",value:function(){}},{key:\"attach\",value:function(){}}]),e}();function gw(e,t){return t.some((function(t){return e.bottomt.bottom||e.rightt.right}))}function yw(e,t){return t.some((function(t){return e.topt.bottom||e.leftt.right}))}var bw,kw=function(){function e(t,n,r,i){_classCallCheck(this,e),this._scrollDispatcher=t,this._viewportRuler=n,this._ngZone=r,this._config=i,this._scrollSubscription=null}return _createClass(e,[{key:\"attach\",value:function(e){if(this._overlayRef)throw pw();this._overlayRef=e}},{key:\"enable\",value:function(){var e=this;this._scrollSubscription||(this._scrollSubscription=this._scrollDispatcher.scrolled(this._config?this._config.scrollThrottle:0).subscribe((function(){if(e._overlayRef.updatePosition(),e._config&&e._config.autoClose){var t=e._overlayRef.overlayElement.getBoundingClientRect(),n=e._viewportRuler.getViewportSize(),r=n.width,i=n.height;gw(t,[{width:r,height:i,bottom:i,right:r,top:0,left:0}])&&(e.disable(),e._ngZone.run((function(){return e._overlayRef.detach()})))}})))}},{key:\"disable\",value:function(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}},{key:\"detach\",value:function(){this.disable(),this._overlayRef=null}}]),e}(),ww=((bw=function e(t,n,r,i){var a=this;_classCallCheck(this,e),this._scrollDispatcher=t,this._viewportRuler=n,this._ngZone=r,this.noop=function(){return new vw},this.close=function(e){return new _w(a._scrollDispatcher,a._ngZone,a._viewportRuler,e)},this.block=function(){return new mw(a._viewportRuler,a._document)},this.reposition=function(e){return new kw(a._scrollDispatcher,a._viewportRuler,a._ngZone,e)},this._document=i}).\\u0275fac=function(e){return new(e||bw)(et(Xk),et(tw),et(cc),et(Wc))},bw.\\u0275prov=_e({factory:function(){return new bw(et(Xk),et(tw),et(cc),et(Wc))},token:bw,providedIn:\"root\"}),bw),Cw=function e(t){if(_classCallCheck(this,e),this.scrollStrategy=new vw,this.panelClass=\"\",this.hasBackdrop=!1,this.backdropClass=\"cdk-overlay-dark-backdrop\",this.disposeOnNavigation=!1,t)for(var n=0,r=Object.keys(t);n-1;r--)if(t[r]._keydownEventSubscriptions>0){t[r]._keydownEvents.next(e);break}},this._document=t}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){this._detach()}},{key:\"add\",value:function(e){this.remove(e),this._isAttached||(this._document.body.addEventListener(\"keydown\",this._keydownListener),this._isAttached=!0),this._attachedOverlays.push(e)}},{key:\"remove\",value:function(e){var t=this._attachedOverlays.indexOf(e);t>-1&&this._attachedOverlays.splice(t,1),0===this._attachedOverlays.length&&this._detach()}},{key:\"_detach\",value:function(){this._isAttached&&(this._document.body.removeEventListener(\"keydown\",this._keydownListener),this._isAttached=!1)}}]),e}()).\\u0275fac=function(e){return new(e||xw)(et(Wc))},xw.\\u0275prov=_e({factory:function(){return new xw(et(Wc))},token:xw,providedIn:\"root\"}),xw),Yw=!(\"undefined\"==typeof window||!window||!window.__karma__&&!window.jasmine),Ew=((Dw=function(){function e(t,n){_classCallCheck(this,e),this._platform=n,this._document=t}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){var e=this._containerElement;e&&e.parentNode&&e.parentNode.removeChild(e)}},{key:\"getContainerElement\",value:function(){return this._containerElement||this._createContainer(),this._containerElement}},{key:\"_createContainer\",value:function(){var e=this._platform?this._platform.isBrowser:\"undefined\"!=typeof window;if(e||Yw)for(var t=this._document.querySelectorAll('.cdk-overlay-container[platform=\"server\"], .cdk-overlay-container[platform=\"test\"]'),n=0;nf&&(f=_,h=p)}}catch(v){m.e(v)}finally{m.f()}return this._isPushed=!1,void this._applyPosition(h.position,h.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(e.position,e.originPoint);this._applyPosition(e.position,e.originPoint)}}},{key:\"detach\",value:function(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}},{key:\"dispose\",value:function(){this._isDisposed||(this._boundingBox&&Pw(this._boundingBox.style,{top:\"\",left:\"\",right:\"\",bottom:\"\",height:\"\",width:\"\",alignItems:\"\",justifyContent:\"\"}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(\"cdk-overlay-connected-position-bounding-box\"),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}},{key:\"reapplyLastPosition\",value:function(){if(!this._isDisposed&&(!this._platform||this._platform.isBrowser)){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect();var e=this._lastPosition||this._preferredPositions[0],t=this._getOriginPoint(this._originRect,e);this._applyPosition(e,t)}}},{key:\"withScrollableContainers\",value:function(e){return this._scrollables=e,this}},{key:\"withPositions\",value:function(e){return this._preferredPositions=e,-1===e.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}},{key:\"withViewportMargin\",value:function(e){return this._viewportMargin=e,this}},{key:\"withFlexibleDimensions\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._hasFlexibleDimensions=e,this}},{key:\"withGrowAfterOpen\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._growAfterOpen=e,this}},{key:\"withPush\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._canPush=e,this}},{key:\"withLockedPosition\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._positionLocked=e,this}},{key:\"setOrigin\",value:function(e){return this._origin=e,this}},{key:\"withDefaultOffsetX\",value:function(e){return this._offsetX=e,this}},{key:\"withDefaultOffsetY\",value:function(e){return this._offsetY=e,this}},{key:\"withTransformOriginOn\",value:function(e){return this._transformOriginSelector=e,this}},{key:\"_getOriginPoint\",value:function(e,t){var n;if(\"center\"==t.originX)n=e.left+e.width/2;else{var r=this._isRtl()?e.right:e.left,i=this._isRtl()?e.left:e.right;n=\"start\"==t.originX?r:i}return{x:n,y:\"center\"==t.originY?e.top+e.height/2:\"top\"==t.originY?e.top:e.bottom}}},{key:\"_getOverlayPoint\",value:function(e,t,n){var r,i;return r=\"center\"==n.overlayX?-t.width/2:\"start\"===n.overlayX?this._isRtl()?-t.width:0:this._isRtl()?0:-t.width,i=\"center\"==n.overlayY?-t.height/2:\"top\"==n.overlayY?0:-t.height,{x:e.x+r,y:e.y+i}}},{key:\"_getOverlayFit\",value:function(e,t,n,r){var i=e.x,a=e.y,o=this._getOffset(r,\"x\"),s=this._getOffset(r,\"y\");o&&(i+=o),s&&(a+=s);var l=0-a,u=a+t.height-n.height,c=this._subtractOverflows(t.width,0-i,i+t.width-n.width),d=this._subtractOverflows(t.height,l,u),h=c*d;return{visibleArea:h,isCompletelyWithinViewport:t.width*t.height===h,fitsInViewportVertically:d===t.height,fitsInViewportHorizontally:c==t.width}}},{key:\"_canFitWithFlexibleDimensions\",value:function(e,t,n){if(this._hasFlexibleDimensions){var r=n.bottom-t.y,i=n.right-t.x,a=this._overlayRef.getConfig().minHeight,o=this._overlayRef.getConfig().minWidth,s=e.fitsInViewportHorizontally||null!=o&&o<=i;return(e.fitsInViewportVertically||null!=a&&a<=r)&&s}return!1}},{key:\"_pushOverlayOnScreen\",value:function(e,t,n){if(this._previousPushAmount&&this._positionLocked)return{x:e.x+this._previousPushAmount.x,y:e.y+this._previousPushAmount.y};var r,i,a=this._viewportRect,o=Math.max(e.x+t.width-a.right,0),s=Math.max(e.y+t.height-a.bottom,0),l=Math.max(a.top-n.top-e.y,0),u=Math.max(a.left-n.left-e.x,0);return r=t.width<=a.width?u||-o:e.xd&&!this._isInitialRender&&!this._growAfterOpen&&(r=e.y-d/2)}if(\"end\"===t.overlayX&&!u||\"start\"===t.overlayX&&u)s=l.width-e.x+this._viewportMargin,a=e.x-this._viewportMargin;else if(\"start\"===t.overlayX&&!u||\"end\"===t.overlayX&&u)o=e.x,a=l.right-e.x;else{var h=Math.min(l.right-e.x+l.left,e.x),f=this._lastBoundingBoxSize.width;a=2*h,o=e.x-h,a>f&&!this._isInitialRender&&!this._growAfterOpen&&(o=e.x-f/2)}return{top:r,left:o,bottom:i,right:s,width:a,height:n}}},{key:\"_setBoundingBoxStyles\",value:function(e,t){var n=this._calculateBoundingBoxRect(e,t);this._isInitialRender||this._growAfterOpen||(n.height=Math.min(n.height,this._lastBoundingBoxSize.height),n.width=Math.min(n.width,this._lastBoundingBoxSize.width));var r={};if(this._hasExactPosition())r.top=r.left=\"0\",r.bottom=r.right=r.maxHeight=r.maxWidth=\"\",r.width=r.height=\"100%\";else{var i=this._overlayRef.getConfig().maxHeight,a=this._overlayRef.getConfig().maxWidth;r.height=vp(n.height),r.top=vp(n.top),r.bottom=vp(n.bottom),r.width=vp(n.width),r.left=vp(n.left),r.right=vp(n.right),r.alignItems=\"center\"===t.overlayX?\"center\":\"end\"===t.overlayX?\"flex-end\":\"flex-start\",r.justifyContent=\"center\"===t.overlayY?\"center\":\"bottom\"===t.overlayY?\"flex-end\":\"flex-start\",i&&(r.maxHeight=vp(i)),a&&(r.maxWidth=vp(a))}this._lastBoundingBoxSize=n,Pw(this._boundingBox.style,r)}},{key:\"_resetBoundingBoxStyles\",value:function(){Pw(this._boundingBox.style,{top:\"0\",left:\"0\",right:\"0\",bottom:\"0\",height:\"\",width:\"\",alignItems:\"\",justifyContent:\"\"})}},{key:\"_resetOverlayElementStyles\",value:function(){Pw(this._pane.style,{top:\"\",left:\"\",bottom:\"\",right:\"\",position:\"\",transform:\"\"})}},{key:\"_setOverlayElementStyles\",value:function(e,t){var n={},r=this._hasExactPosition(),i=this._hasFlexibleDimensions,a=this._overlayRef.getConfig();if(r){var o=this._viewportRuler.getViewportScrollPosition();Pw(n,this._getExactOverlayY(t,e,o)),Pw(n,this._getExactOverlayX(t,e,o))}else n.position=\"static\";var s=\"\",l=this._getOffset(t,\"x\"),u=this._getOffset(t,\"y\");l&&(s+=\"translateX(\".concat(l,\"px) \")),u&&(s+=\"translateY(\".concat(u,\"px)\")),n.transform=s.trim(),a.maxHeight&&(r?n.maxHeight=vp(a.maxHeight):i&&(n.maxHeight=\"\")),a.maxWidth&&(r?n.maxWidth=vp(a.maxWidth):i&&(n.maxWidth=\"\")),Pw(this._pane.style,n)}},{key:\"_getExactOverlayY\",value:function(e,t,n){var r={top:\"\",bottom:\"\"},i=this._getOverlayPoint(t,this._overlayRect,e);this._isPushed&&(i=this._pushOverlayOnScreen(i,this._overlayRect,n));var a=this._overlayContainer.getContainerElement().getBoundingClientRect().top;return i.y-=a,\"bottom\"===e.overlayY?r.bottom=\"\".concat(this._document.documentElement.clientHeight-(i.y+this._overlayRect.height),\"px\"):r.top=vp(i.y),r}},{key:\"_getExactOverlayX\",value:function(e,t,n){var r={left:\"\",right:\"\"},i=this._getOverlayPoint(t,this._overlayRect,e);return this._isPushed&&(i=this._pushOverlayOnScreen(i,this._overlayRect,n)),\"right\"===(this._isRtl()?\"end\"===e.overlayX?\"left\":\"right\":\"end\"===e.overlayX?\"right\":\"left\")?r.right=\"\".concat(this._document.documentElement.clientWidth-(i.x+this._overlayRect.width),\"px\"):r.left=vp(i.x),r}},{key:\"_getScrollVisibility\",value:function(){var e=this._getOriginRect(),t=this._pane.getBoundingClientRect(),n=this._scrollables.map((function(e){return e.getElementRef().nativeElement.getBoundingClientRect()}));return{isOriginClipped:yw(e,n),isOriginOutsideView:gw(e,n),isOverlayClipped:yw(t,n),isOverlayOutsideView:gw(t,n)}}},{key:\"_subtractOverflows\",value:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r0&&void 0!==arguments[0]?arguments[0]:\"\";return this._bottomOffset=\"\",this._topOffset=e,this._alignItems=\"flex-start\",this}},{key:\"left\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._rightOffset=\"\",this._leftOffset=e,this._justifyContent=\"flex-start\",this}},{key:\"bottom\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._topOffset=\"\",this._bottomOffset=e,this._alignItems=\"flex-end\",this}},{key:\"right\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._leftOffset=\"\",this._rightOffset=e,this._justifyContent=\"flex-end\",this}},{key:\"width\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._overlayRef?this._overlayRef.updateSize({width:e}):this._width=e,this}},{key:\"height\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._overlayRef?this._overlayRef.updateSize({height:e}):this._height=e,this}},{key:\"centerHorizontally\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this.left(e),this._justifyContent=\"center\",this}},{key:\"centerVertically\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this.top(e),this._alignItems=\"center\",this}},{key:\"apply\",value:function(){if(this._overlayRef&&this._overlayRef.hasAttached()){var e=this._overlayRef.overlayElement.style,t=this._overlayRef.hostElement.style,n=this._overlayRef.getConfig(),r=n.width,i=n.height,a=n.maxWidth,o=n.maxHeight,s=!(\"100%\"!==r&&\"100vw\"!==r||a&&\"100%\"!==a&&\"100vw\"!==a),l=!(\"100%\"!==i&&\"100vh\"!==i||o&&\"100%\"!==o&&\"100vh\"!==o);e.position=this._cssPosition,e.marginLeft=s?\"0\":this._leftOffset,e.marginTop=l?\"0\":this._topOffset,e.marginBottom=this._bottomOffset,e.marginRight=this._rightOffset,s?t.justifyContent=\"flex-start\":\"center\"===this._justifyContent?t.justifyContent=\"center\":\"rtl\"===this._overlayRef.getConfig().direction?\"flex-start\"===this._justifyContent?t.justifyContent=\"flex-end\":\"flex-end\"===this._justifyContent&&(t.justifyContent=\"flex-start\"):t.justifyContent=this._justifyContent,t.alignItems=l?\"flex-start\":this._alignItems}}},{key:\"dispose\",value:function(){if(!this._isDisposed&&this._overlayRef){var e=this._overlayRef.overlayElement.style,t=this._overlayRef.hostElement,n=t.style;t.classList.remove(\"cdk-global-overlay-wrapper\"),n.justifyContent=n.alignItems=e.marginTop=e.marginBottom=e.marginLeft=e.marginRight=e.position=\"\",this._overlayRef=null,this._isDisposed=!0}}}]),e}(),Ww=((Rw=function(){function e(t,n,r,i){_classCallCheck(this,e),this._viewportRuler=t,this._document=n,this._platform=r,this._overlayContainer=i}return _createClass(e,[{key:\"global\",value:function(){return new Vw}},{key:\"connectedTo\",value:function(e,t,n){return new zw(t,n,e,this._viewportRuler,this._document,this._platform,this._overlayContainer)}},{key:\"flexibleConnectedTo\",value:function(e){return new Aw(e,this._viewportRuler,this._document,this._platform,this._overlayContainer)}}]),e}()).\\u0275fac=function(e){return new(e||Rw)(et(tw),et(Wc),et(Cp),et(Ew))},Rw.\\u0275prov=_e({factory:function(){return new Rw(et(tw),et(Wc),et(Cp),et(Ew))},token:Rw,providedIn:\"root\"}),Rw),Uw=0,Bw=((jw=function(){function e(t,n,r,i,a,o,s,l,u,c){_classCallCheck(this,e),this.scrollStrategies=t,this._overlayContainer=n,this._componentFactoryResolver=r,this._positionBuilder=i,this._keyboardDispatcher=a,this._injector=o,this._ngZone=s,this._document=l,this._directionality=u,this._location=c}return _createClass(e,[{key:\"create\",value:function(e){var t=this._createHostElement(),n=this._createPaneElement(t),r=this._createPortalOutlet(n),i=new Cw(e);return i.direction=i.direction||this._directionality.value,new Iw(r,t,n,i,this._ngZone,this._keyboardDispatcher,this._document,this._location)}},{key:\"position\",value:function(){return this._positionBuilder}},{key:\"_createPaneElement\",value:function(e){var t=this._document.createElement(\"div\");return t.id=\"cdk-overlay-\".concat(Uw++),t.classList.add(\"cdk-overlay-pane\"),e.appendChild(t),t}},{key:\"_createHostElement\",value:function(){var e=this._document.createElement(\"div\");return this._overlayContainer.getContainerElement().appendChild(e),e}},{key:\"_createPortalOutlet\",value:function(e){return this._appRef||(this._appRef=this._injector.get(Oc)),new dw(e,this._componentFactoryResolver,this._appRef,this._injector,this._document)}}]),e}()).\\u0275fac=function(e){return new(e||jw)(et(ww),et(Ew),et(Zs),et(Ww),et(Ow),et(vo),et(cc),et(Wc),et(h_),et(ud,8))},jw.\\u0275prov=_e({token:jw,factory:jw.\\u0275fac}),jw),qw=[{originX:\"start\",originY:\"bottom\",overlayX:\"start\",overlayY:\"top\"},{originX:\"start\",originY:\"top\",overlayX:\"start\",overlayY:\"bottom\"},{originX:\"end\",originY:\"top\",overlayX:\"end\",overlayY:\"bottom\"},{originX:\"end\",originY:\"bottom\",overlayX:\"end\",overlayY:\"top\"}],Gw=new Be(\"cdk-connected-overlay-scroll-strategy\"),$w=((Fw=function e(t){_classCallCheck(this,e),this.elementRef=t}).\\u0275fac=function(e){return new(e||Fw)(Io(Qs))},Fw.\\u0275dir=Lt({type:Fw,selectors:[[\"\",\"cdk-overlay-origin\",\"\"],[\"\",\"overlay-origin\",\"\"],[\"\",\"cdkOverlayOrigin\",\"\"]],exportAs:[\"cdkOverlayOrigin\"]}),Fw),Jw=((Hw=function(){function e(t,n,r,i,a){_classCallCheck(this,e),this._overlay=t,this._dir=a,this._hasBackdrop=!1,this._lockPosition=!1,this._growAfterOpen=!1,this._flexibleDimensions=!1,this._push=!1,this._backdropSubscription=h.EMPTY,this.viewportMargin=0,this.open=!1,this.backdropClick=new bu,this.positionChange=new bu,this.attach=new bu,this.detach=new bu,this.overlayKeydown=new bu,this._templatePortal=new lw(n,r),this._scrollStrategyFactory=i,this.scrollStrategy=this._scrollStrategyFactory()}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){this._overlayRef&&this._overlayRef.dispose(),this._backdropSubscription.unsubscribe()}},{key:\"ngOnChanges\",value:function(e){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),e.origin&&this.open&&this._position.apply()),e.open&&(this.open?this._attachOverlay():this._detachOverlay())}},{key:\"_createOverlay\",value:function(){var e=this;this.positions&&this.positions.length||(this.positions=qw),this._overlayRef=this._overlay.create(this._buildConfig()),this._overlayRef.keydownEvents().subscribe((function(t){e.overlayKeydown.next(t),27!==t.keyCode||Jm(t)||(t.preventDefault(),e._detachOverlay())}))}},{key:\"_buildConfig\",value:function(){var e=this._position=this.positionStrategy||this._createPositionStrategy(),t=new Cw({direction:this._dir,positionStrategy:e,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop});return(this.width||0===this.width)&&(t.width=this.width),(this.height||0===this.height)&&(t.height=this.height),(this.minWidth||0===this.minWidth)&&(t.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(t.minHeight=this.minHeight),this.backdropClass&&(t.backdropClass=this.backdropClass),this.panelClass&&(t.panelClass=this.panelClass),t}},{key:\"_updatePositionStrategy\",value:function(e){var t=this,n=this.positions.map((function(e){return{originX:e.originX,originY:e.originY,overlayX:e.overlayX,overlayY:e.overlayY,offsetX:e.offsetX||t.offsetX,offsetY:e.offsetY||t.offsetY,panelClass:e.panelClass||void 0}}));return e.setOrigin(this.origin.elementRef).withPositions(n).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}},{key:\"_createPositionStrategy\",value:function(){var e=this,t=this._overlay.position().flexibleConnectedTo(this.origin.elementRef);return this._updatePositionStrategy(t),t.positionChanges.subscribe((function(t){return e.positionChange.emit(t)})),t}},{key:\"_attachOverlay\",value:function(){var e=this;this._overlayRef?this._overlayRef.getConfig().hasBackdrop=this.hasBackdrop:this._createOverlay(),this._overlayRef.hasAttached()||(this._overlayRef.attach(this._templatePortal),this.attach.emit()),this.hasBackdrop?this._backdropSubscription=this._overlayRef.backdropClick().subscribe((function(t){e.backdropClick.emit(t)})):this._backdropSubscription.unsubscribe()}},{key:\"_detachOverlay\",value:function(){this._overlayRef&&(this._overlayRef.detach(),this.detach.emit()),this._backdropSubscription.unsubscribe()}},{key:\"offsetX\",get:function(){return this._offsetX},set:function(e){this._offsetX=e,this._position&&this._updatePositionStrategy(this._position)}},{key:\"offsetY\",get:function(){return this._offsetY},set:function(e){this._offsetY=e,this._position&&this._updatePositionStrategy(this._position)}},{key:\"hasBackdrop\",get:function(){return this._hasBackdrop},set:function(e){this._hasBackdrop=mp(e)}},{key:\"lockPosition\",get:function(){return this._lockPosition},set:function(e){this._lockPosition=mp(e)}},{key:\"flexibleDimensions\",get:function(){return this._flexibleDimensions},set:function(e){this._flexibleDimensions=mp(e)}},{key:\"growAfterOpen\",get:function(){return this._growAfterOpen},set:function(e){this._growAfterOpen=mp(e)}},{key:\"push\",get:function(){return this._push},set:function(e){this._push=mp(e)}},{key:\"overlayRef\",get:function(){return this._overlayRef}},{key:\"dir\",get:function(){return this._dir?this._dir.value:\"ltr\"}}]),e}()).\\u0275fac=function(e){return new(e||Hw)(Io(Bw),Io(wl),Io(Ml),Io(Gw),Io(h_,8))},Hw.\\u0275dir=Lt({type:Hw,selectors:[[\"\",\"cdk-connected-overlay\",\"\"],[\"\",\"connected-overlay\",\"\"],[\"\",\"cdkConnectedOverlay\",\"\"]],inputs:{viewportMargin:[\"cdkConnectedOverlayViewportMargin\",\"viewportMargin\"],open:[\"cdkConnectedOverlayOpen\",\"open\"],scrollStrategy:[\"cdkConnectedOverlayScrollStrategy\",\"scrollStrategy\"],offsetX:[\"cdkConnectedOverlayOffsetX\",\"offsetX\"],offsetY:[\"cdkConnectedOverlayOffsetY\",\"offsetY\"],hasBackdrop:[\"cdkConnectedOverlayHasBackdrop\",\"hasBackdrop\"],lockPosition:[\"cdkConnectedOverlayLockPosition\",\"lockPosition\"],flexibleDimensions:[\"cdkConnectedOverlayFlexibleDimensions\",\"flexibleDimensions\"],growAfterOpen:[\"cdkConnectedOverlayGrowAfterOpen\",\"growAfterOpen\"],push:[\"cdkConnectedOverlayPush\",\"push\"],positions:[\"cdkConnectedOverlayPositions\",\"positions\"],origin:[\"cdkConnectedOverlayOrigin\",\"origin\"],positionStrategy:[\"cdkConnectedOverlayPositionStrategy\",\"positionStrategy\"],width:[\"cdkConnectedOverlayWidth\",\"width\"],height:[\"cdkConnectedOverlayHeight\",\"height\"],minWidth:[\"cdkConnectedOverlayMinWidth\",\"minWidth\"],minHeight:[\"cdkConnectedOverlayMinHeight\",\"minHeight\"],backdropClass:[\"cdkConnectedOverlayBackdropClass\",\"backdropClass\"],panelClass:[\"cdkConnectedOverlayPanelClass\",\"panelClass\"],transformOriginSelector:[\"cdkConnectedOverlayTransformOriginOn\",\"transformOriginSelector\"]},outputs:{backdropClick:\"backdropClick\",positionChange:\"positionChange\",attach:\"attach\",detach:\"detach\",overlayKeydown:\"overlayKeydown\"},exportAs:[\"cdkConnectedOverlay\"],features:[Hs]}),Hw),Kw={provide:Gw,deps:[Bw],useFactory:function(e){return function(){return e.scrollStrategies.reposition()}}},Zw=((Nw=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Nw}),Nw.\\u0275inj=ve({factory:function(e){return new(e||Nw)},providers:[Bw,Kw],imports:[[f_,fw,nw],nw]}),Nw);function Qw(e){return new w((function(t){var n;try{n=e()}catch(r){return void t.error(r)}return(n?W(n):up()).subscribe(t)}))}function Xw(e,t){}var eC=function e(){_classCallCheck(this,e),this.role=\"dialog\",this.panelClass=\"\",this.hasBackdrop=!0,this.backdropClass=\"\",this.disableClose=!1,this.width=\"\",this.height=\"\",this.maxWidth=\"80vw\",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.autoFocus=!0,this.restoreFocus=!0,this.closeOnNavigation=!0},tC={dialogContainer:uv(\"dialogContainer\",[fv(\"void, exit\",hv({opacity:0,transform:\"scale(0.7)\"})),fv(\"enter\",hv({transform:\"none\"})),mv(\"* => enter\",cv(\"150ms cubic-bezier(0, 0, 0.2, 1)\",hv({transform:\"none\",opacity:1}))),mv(\"* => void, * => exit\",cv(\"75ms cubic-bezier(0.4, 0.0, 0.2, 1)\",hv({opacity:0})))])};function nC(){throw Error(\"Attempting to attach dialog content after content is already attached\")}var rC,iC,aC,oC=((rC=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this))._elementRef=e,s._focusTrapFactory=r,s._changeDetectorRef=i,s._config=o,s._elementFocusedBeforeDialogWasOpened=null,s._state=\"enter\",s._animationStateChanged=new bu,s.attachDomPortal=function(e){return s._portalOutlet.hasAttached()&&nC(),s._savePreviouslyFocusedElement(),s._portalOutlet.attachDomPortal(e)},s._ariaLabelledBy=o.ariaLabelledBy||null,s._document=a,s}return _createClass(n,[{key:\"attachComponentPortal\",value:function(e){return this._portalOutlet.hasAttached()&&nC(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachComponentPortal(e)}},{key:\"attachTemplatePortal\",value:function(e){return this._portalOutlet.hasAttached()&&nC(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachTemplatePortal(e)}},{key:\"_trapFocus\",value:function(){var e=this._elementRef.nativeElement;if(this._focusTrap||(this._focusTrap=this._focusTrapFactory.create(e)),this._config.autoFocus)this._focusTrap.focusInitialElementWhenReady();else{var t=this._document.activeElement;t===e||e.contains(t)||e.focus()}}},{key:\"_restoreFocus\",value:function(){var e=this._elementFocusedBeforeDialogWasOpened;if(this._config.restoreFocus&&e&&\"function\"==typeof e.focus){var t=this._document.activeElement,n=this._elementRef.nativeElement;t&&t!==this._document.body&&t!==n&&!n.contains(t)||e.focus()}this._focusTrap&&this._focusTrap.destroy()}},{key:\"_savePreviouslyFocusedElement\",value:function(){var e=this;this._document&&(this._elementFocusedBeforeDialogWasOpened=this._document.activeElement,this._elementRef.nativeElement.focus&&Promise.resolve().then((function(){return e._elementRef.nativeElement.focus()})))}},{key:\"_onAnimationDone\",value:function(e){\"enter\"===e.toState?this._trapFocus():\"exit\"===e.toState&&this._restoreFocus(),this._animationStateChanged.emit(e)}},{key:\"_onAnimationStart\",value:function(e){this._animationStateChanged.emit(e)}},{key:\"_startExitAnimation\",value:function(){this._state=\"exit\",this._changeDetectorRef.markForCheck()}}]),n}(cw)).\\u0275fac=function(e){return new(e||rC)(Io(Qs),Io(Kp),Io(eo),Io(Wc,8),Io(eC))},rC.\\u0275cmp=bt({type:rC,selectors:[[\"mat-dialog-container\"]],viewQuery:function(e,t){var n;1&e&&Eu(hw,!0),2&e&&Yu(n=Hu())&&(t._portalOutlet=n.first)},hostAttrs:[\"tabindex\",\"-1\",\"aria-modal\",\"true\",1,\"mat-dialog-container\"],hostVars:6,hostBindings:function(e,t){1&e&&Go(\"@dialogContainer.start\",(function(e){return t._onAnimationStart(e)}))(\"@dialogContainer.done\",(function(e){return t._onAnimationDone(e)})),2&e&&(Do(\"id\",t._id)(\"role\",t._config.role)(\"aria-labelledby\",t._config.ariaLabel?null:t._ariaLabelledBy)(\"aria-label\",t._config.ariaLabel)(\"aria-describedby\",t._config.ariaDescribedBy||null),Os(\"@dialogContainer\",t._state))},features:[Es],decls:1,vars:0,consts:[[\"cdkPortalOutlet\",\"\"]],template:function(e,t){1&e&&Yo(0,Xw,0,0,\"ng-template\",0)},directives:[hw],styles:[\".mat-dialog-container{display:block;padding:24px;border-radius:4px;box-sizing:border-box;overflow:auto;outline:0;width:100%;height:100%;min-height:inherit;max-height:inherit}.cdk-high-contrast-active .mat-dialog-container{outline:solid 1px}.mat-dialog-content{display:block;margin:0 -24px;padding:0 24px;max-height:65vh;overflow:auto;-webkit-overflow-scrolling:touch}.mat-dialog-title{margin:0 0 20px;display:block}.mat-dialog-actions{padding:8px 0;display:flex;flex-wrap:wrap;min-height:52px;align-items:center;margin-bottom:-24px}.mat-dialog-actions[align=end]{justify-content:flex-end}.mat-dialog-actions[align=center]{justify-content:center}.mat-dialog-actions .mat-button-base+.mat-button-base,.mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}\\n\"],encapsulation:2,data:{animation:[tC.dialogContainer]}}),rC),sC=0,lC=function(){function e(t,n){var r=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:\"mat-dialog-\".concat(sC++);_classCallCheck(this,e),this._overlayRef=t,this._containerInstance=n,this.id=i,this.disableClose=this._containerInstance._config.disableClose,this._afterOpened=new x,this._afterClosed=new x,this._beforeClosed=new x,this._state=0,n._id=i,n._animationStateChanged.pipe(Gd((function(e){return\"done\"===e.phaseName&&\"enter\"===e.toState})),cp(1)).subscribe((function(){r._afterOpened.next(),r._afterOpened.complete()})),n._animationStateChanged.pipe(Gd((function(e){return\"done\"===e.phaseName&&\"exit\"===e.toState})),cp(1)).subscribe((function(){clearTimeout(r._closeFallbackTimeout),r._overlayRef.dispose()})),t.detachments().subscribe((function(){r._beforeClosed.next(r._result),r._beforeClosed.complete(),r._afterClosed.next(r._result),r._afterClosed.complete(),r.componentInstance=null,r._overlayRef.dispose()})),t.keydownEvents().pipe(Gd((function(e){return 27===e.keyCode&&!r.disableClose&&!Jm(e)}))).subscribe((function(e){e.preventDefault(),r.close()}))}return _createClass(e,[{key:\"close\",value:function(e){var t=this;this._result=e,this._containerInstance._animationStateChanged.pipe(Gd((function(e){return\"start\"===e.phaseName})),cp(1)).subscribe((function(n){t._beforeClosed.next(e),t._beforeClosed.complete(),t._state=2,t._overlayRef.detachBackdrop(),t._closeFallbackTimeout=setTimeout((function(){t._overlayRef.dispose()}),n.totalTime+100)})),this._containerInstance._startExitAnimation(),this._state=1}},{key:\"afterOpened\",value:function(){return this._afterOpened.asObservable()}},{key:\"afterClosed\",value:function(){return this._afterClosed.asObservable()}},{key:\"beforeClosed\",value:function(){return this._beforeClosed.asObservable()}},{key:\"backdropClick\",value:function(){return this._overlayRef.backdropClick()}},{key:\"keydownEvents\",value:function(){return this._overlayRef.keydownEvents()}},{key:\"updatePosition\",value:function(e){var t=this._getPositionStrategy();return e&&(e.left||e.right)?e.left?t.left(e.left):t.right(e.right):t.centerHorizontally(),e&&(e.top||e.bottom)?e.top?t.top(e.top):t.bottom(e.bottom):t.centerVertically(),this._overlayRef.updatePosition(),this}},{key:\"updateSize\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\";return this._getPositionStrategy().width(e).height(t),this._overlayRef.updatePosition(),this}},{key:\"addPanelClass\",value:function(e){return this._overlayRef.addPanelClass(e),this}},{key:\"removePanelClass\",value:function(e){return this._overlayRef.removePanelClass(e),this}},{key:\"getState\",value:function(){return this._state}},{key:\"_getPositionStrategy\",value:function(){return this._overlayRef.getConfig().positionStrategy}}]),e}(),uC=new Be(\"MatDialogData\"),cC=new Be(\"mat-dialog-default-options\"),dC=new Be(\"mat-dialog-scroll-strategy\"),hC={provide:dC,deps:[Bw],useFactory:function(e){return function(){return e.scrollStrategies.block()}}},fC=((aC=function(){function e(t,n,r,i,a,o,s){var l=this;_classCallCheck(this,e),this._overlay=t,this._injector=n,this._defaultOptions=i,this._parentDialog=o,this._overlayContainer=s,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new x,this._afterOpenedAtThisLevel=new x,this._ariaHiddenElements=new Map,this.afterAllClosed=Qw((function(){return l.openDialogs.length?l._afterAllClosed:l._afterAllClosed.pipe(sv(void 0))})),this._scrollStrategy=a}return _createClass(e,[{key:\"open\",value:function(e,t){var n=this;if((t=function(e,t){return Object.assign(Object.assign({},t),e)}(t,this._defaultOptions||new eC)).id&&this.getDialogById(t.id))throw Error('Dialog with id \"'.concat(t.id,'\" exists already. The dialog id must be unique.'));var r=this._createOverlay(t),i=this._attachDialogContainer(r,t),a=this._attachDialogContent(e,i,r,t);return this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(a),a.afterClosed().subscribe((function(){return n._removeOpenDialog(a)})),this.afterOpened.next(a),a}},{key:\"closeAll\",value:function(){this._closeDialogs(this.openDialogs)}},{key:\"getDialogById\",value:function(e){return this.openDialogs.find((function(t){return t.id===e}))}},{key:\"ngOnDestroy\",value:function(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}},{key:\"_createOverlay\",value:function(e){var t=this._getOverlayConfig(e);return this._overlay.create(t)}},{key:\"_getOverlayConfig\",value:function(e){var t=new Cw({positionStrategy:this._overlay.position().global(),scrollStrategy:e.scrollStrategy||this._scrollStrategy(),panelClass:e.panelClass,hasBackdrop:e.hasBackdrop,direction:e.direction,minWidth:e.minWidth,minHeight:e.minHeight,maxWidth:e.maxWidth,maxHeight:e.maxHeight,disposeOnNavigation:e.closeOnNavigation});return e.backdropClass&&(t.backdropClass=e.backdropClass),t}},{key:\"_attachDialogContainer\",value:function(e,t){var n=vo.create({parent:t&&t.viewContainerRef&&t.viewContainerRef.injector||this._injector,providers:[{provide:eC,useValue:t}]}),r=new sw(oC,t.viewContainerRef,n,t.componentFactoryResolver);return e.attach(r).instance}},{key:\"_attachDialogContent\",value:function(e,t,n,r){var i=new lC(n,t,r.id);if(r.hasBackdrop&&n.backdropClick().subscribe((function(){i.disableClose||i.close()})),e instanceof wl)t.attachTemplatePortal(new lw(e,null,{$implicit:r.data,dialogRef:i}));else{var a=this._createInjector(r,i,t),o=t.attachComponentPortal(new sw(e,r.viewContainerRef,a));i.componentInstance=o.instance}return i.updateSize(r.width,r.height).updatePosition(r.position),i}},{key:\"_createInjector\",value:function(e,t,n){var r=e&&e.viewContainerRef&&e.viewContainerRef.injector,i=[{provide:oC,useValue:n},{provide:uC,useValue:e.data},{provide:lC,useValue:t}];return!e.direction||r&&r.get(h_,null)||i.push({provide:h_,useValue:{value:e.direction,change:Bd()}}),vo.create({parent:r||this._injector,providers:i})}},{key:\"_removeOpenDialog\",value:function(e){var t=this.openDialogs.indexOf(e);t>-1&&(this.openDialogs.splice(t,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((function(e,t){e?t.setAttribute(\"aria-hidden\",e):t.removeAttribute(\"aria-hidden\")})),this._ariaHiddenElements.clear(),this._afterAllClosed.next()))}},{key:\"_hideNonDialogContentFromAssistiveTechnology\",value:function(){var e=this._overlayContainer.getContainerElement();if(e.parentElement)for(var t=e.parentElement.children,n=t.length-1;n>-1;n--){var r=t[n];r===e||\"SCRIPT\"===r.nodeName||\"STYLE\"===r.nodeName||r.hasAttribute(\"aria-live\")||(this._ariaHiddenElements.set(r,r.getAttribute(\"aria-hidden\")),r.setAttribute(\"aria-hidden\",\"true\"))}}},{key:\"_closeDialogs\",value:function(e){for(var t=e.length;t--;)e[t].close()}},{key:\"openDialogs\",get:function(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}},{key:\"afterOpened\",get:function(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}},{key:\"_afterAllClosed\",get:function(){var e=this._parentDialog;return e?e._afterAllClosed:this._afterAllClosedAtThisLevel}}]),e}()).\\u0275fac=function(e){return new(e||aC)(et(Bw),et(vo),et(ud,8),et(cC,8),et(dC),et(aC,12),et(Ew))},aC.\\u0275prov=_e({token:aC,factory:aC.\\u0275fac}),aC),mC=((iC=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:iC}),iC.\\u0275inj=ve({factory:function(e){return new(e||iC)},providers:[fC,hC],imports:[[Zw,fw,zy],zy]}),iC);function pC(e){return function(t){var n=new _C(e),r=t.lift(n);return n.caught=r}}var _C=function(){function e(t){_classCallCheck(this,e),this.selector=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new vC(e,this.selector,this.caught))}}]),e}(),vC=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).selector=r,a.caught=i,a}return _createClass(n,[{key:\"error\",value:function(e){if(!this.isStopped){var t;try{t=this.selector(e,this.caught)}catch(a){return void _get(_getPrototypeOf(n.prototype),\"error\",this).call(this,a)}this._unsubscribeAndRecycle();var r=new Y(this,void 0,void 0);this.add(r);var i=R(this,t,void 0,void 0,r);i!==r&&this.add(i)}}}]),n}(H);function gC(e){return function(t){return t.lift(new yC(e))}}var yC=function(){function e(t){_classCallCheck(this,e),this.callback=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new bC(e,this.callback))}}]),e}(),bC=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).add(new h(r)),i}return n}(p),kC=[\"*\"];function wC(e){return Error('Unable to find icon with the name \"'.concat(e,'\"'))}function CC(e){return Error(\"The URL provided to MatIconRegistry was not trusted as a resource URL \"+\"via Angular's DomSanitizer. Attempted URL was \\\"\".concat(e,'\".'))}function MC(e){return Error(\"The literal provided to MatIconRegistry was not trusted as safe HTML by \"+\"Angular's DomSanitizer. Attempted literal was \\\"\".concat(e,'\".'))}var SC,LC=function e(t,n){_classCallCheck(this,e),this.options=n,t.nodeName?this.svgElement=t:this.url=t},TC=((SC=function(){function e(t,n,r,i){_classCallCheck(this,e),this._httpClient=t,this._sanitizer=n,this._errorHandler=i,this._svgIconConfigs=new Map,this._iconSetConfigs=new Map,this._cachedIconsByUrl=new Map,this._inProgressUrlFetches=new Map,this._fontCssClassesByAlias=new Map,this._defaultFontSetClass=\"material-icons\",this._document=r}return _createClass(e,[{key:\"addSvgIcon\",value:function(e,t,n){return this.addSvgIconInNamespace(\"\",e,t,n)}},{key:\"addSvgIconLiteral\",value:function(e,t,n){return this.addSvgIconLiteralInNamespace(\"\",e,t,n)}},{key:\"addSvgIconInNamespace\",value:function(e,t,n,r){return this._addSvgIconConfig(e,t,new LC(n,r))}},{key:\"addSvgIconLiteralInNamespace\",value:function(e,t,n,r){var i=this._sanitizer.sanitize(Kr.HTML,n);if(!i)throw MC(n);var a=this._createSvgElementForSingleIcon(i,r);return this._addSvgIconConfig(e,t,new LC(a,r))}},{key:\"addSvgIconSet\",value:function(e,t){return this.addSvgIconSetInNamespace(\"\",e,t)}},{key:\"addSvgIconSetLiteral\",value:function(e,t){return this.addSvgIconSetLiteralInNamespace(\"\",e,t)}},{key:\"addSvgIconSetInNamespace\",value:function(e,t,n){return this._addSvgIconSetConfig(e,new LC(t,n))}},{key:\"addSvgIconSetLiteralInNamespace\",value:function(e,t,n){var r=this._sanitizer.sanitize(Kr.HTML,t);if(!r)throw MC(t);var i=this._svgElementFromString(r);return this._addSvgIconSetConfig(e,new LC(i,n))}},{key:\"registerFontClassAlias\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;return this._fontCssClassesByAlias.set(e,t),this}},{key:\"classNameForFontAlias\",value:function(e){return this._fontCssClassesByAlias.get(e)||e}},{key:\"setDefaultFontSetClass\",value:function(e){return this._defaultFontSetClass=e,this}},{key:\"getDefaultFontSetClass\",value:function(){return this._defaultFontSetClass}},{key:\"getSvgIconFromUrl\",value:function(e){var t=this,n=this._sanitizer.sanitize(Kr.RESOURCE_URL,e);if(!n)throw CC(e);var r=this._cachedIconsByUrl.get(n);return r?Bd(xC(r)):this._loadSvgIconFromConfig(new LC(e)).pipe(Km((function(e){return t._cachedIconsByUrl.set(n,e)})),F((function(e){return xC(e)})))}},{key:\"getNamedSvgIcon\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\",n=DC(t,e),r=this._svgIconConfigs.get(n);if(r)return this._getSvgFromConfig(r);var i=this._iconSetConfigs.get(t);return i?this._getSvgFromIconSetConfigs(e,i):Nk(wC(n))}},{key:\"ngOnDestroy\",value:function(){this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}},{key:\"_getSvgFromConfig\",value:function(e){return e.svgElement?Bd(xC(e.svgElement)):this._loadSvgIconFromConfig(e).pipe(Km((function(t){return e.svgElement=t})),F((function(e){return xC(e)})))}},{key:\"_getSvgFromIconSetConfigs\",value:function(e,t){var n=this,r=this._extractIconWithNameFromAnySet(e,t);return r?Bd(r):Rh(t.filter((function(e){return!e.svgElement})).map((function(e){return n._loadSvgIconSetFromConfig(e).pipe(pC((function(t){var r=\"Loading icon set URL: \".concat(n._sanitizer.sanitize(Kr.RESOURCE_URL,e.url),\" failed: \").concat(t.message);return n._errorHandler?n._errorHandler.handleError(new Error(r)):console.error(r),Bd(null)})))}))).pipe(F((function(){var r=n._extractIconWithNameFromAnySet(e,t);if(!r)throw wC(e);return r})))}},{key:\"_extractIconWithNameFromAnySet\",value:function(e,t){for(var n=t.length-1;n>=0;n--){var r=t[n];if(r.svgElement){var i=this._extractSvgIconFromSet(r.svgElement,e,r.options);if(i)return i}}return null}},{key:\"_loadSvgIconFromConfig\",value:function(e){var t=this;return this._fetchUrl(e.url).pipe(F((function(n){return t._createSvgElementForSingleIcon(n,e.options)})))}},{key:\"_loadSvgIconSetFromConfig\",value:function(e){var t=this;return e.svgElement?Bd(e.svgElement):this._fetchUrl(e.url).pipe(F((function(n){return e.svgElement||(e.svgElement=t._svgElementFromString(n)),e.svgElement})))}},{key:\"_createSvgElementForSingleIcon\",value:function(e,t){var n=this._svgElementFromString(e);return this._setSvgAttributes(n,t),n}},{key:\"_extractSvgIconFromSet\",value:function(e,t,n){var r=e.querySelector('[id=\"'.concat(t,'\"]'));if(!r)return null;var i=r.cloneNode(!0);if(i.removeAttribute(\"id\"),\"svg\"===i.nodeName.toLowerCase())return this._setSvgAttributes(i,n);if(\"symbol\"===i.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(i),n);var a=this._svgElementFromString(\"\");return a.appendChild(i),this._setSvgAttributes(a,n)}},{key:\"_svgElementFromString\",value:function(e){var t=this._document.createElement(\"DIV\");t.innerHTML=e;var n=t.querySelector(\"svg\");if(!n)throw Error(\" tag not found\");return n}},{key:\"_toSvgElement\",value:function(e){for(var t=this._svgElementFromString(\"\"),n=e.attributes,r=0;r enter\",[hv({opacity:0,transform:\"translateY(-100%)\"}),cv(\"300ms cubic-bezier(0.55, 0, 0.55, 0.2)\")])])},hM=((oM=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||oM)},oM.\\u0275dir=Lt({type:oM}),oM);function fM(e){return Error(\"A hint was already declared for 'align=\\\"\".concat(e,\"\\\"'.\"))}var mM,pM,_M,vM,gM,yM,bM,kM,wM,CM=0,MM=((gM=function e(){_classCallCheck(this,e),this.align=\"start\",this.id=\"mat-hint-\".concat(CM++)}).\\u0275fac=function(e){return new(e||gM)},gM.\\u0275dir=Lt({type:gM,selectors:[[\"mat-hint\"]],hostAttrs:[1,\"mat-hint\"],hostVars:4,hostBindings:function(e,t){2&e&&(Do(\"id\",t.id)(\"align\",null),fs(\"mat-right\",\"end\"==t.align))},inputs:{align:\"align\",id:\"id\"}}),gM),SM=((vM=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||vM)},vM.\\u0275dir=Lt({type:vM,selectors:[[\"mat-label\"]]}),vM),LM=((_M=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||_M)},_M.\\u0275dir=Lt({type:_M,selectors:[[\"mat-placeholder\"]]}),_M),TM=((pM=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||pM)},pM.\\u0275dir=Lt({type:pM,selectors:[[\"\",\"matPrefix\",\"\"]]}),pM),xM=((mM=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||mM)},mM.\\u0275dir=Lt({type:mM,selectors:[[\"\",\"matSuffix\",\"\"]]}),mM),DM=0,OM=Wy((function e(t){_classCallCheck(this,e),this._elementRef=t}),\"primary\"),YM=new Be(\"MAT_FORM_FIELD_DEFAULT_OPTIONS\"),EM=((bM=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s,l,u){var c;return _classCallCheck(this,n),(c=t.call(this,e))._elementRef=e,c._changeDetectorRef=r,c._dir=a,c._defaults=o,c._platform=s,c._ngZone=l,c._outlineGapCalculationNeededImmediately=!1,c._outlineGapCalculationNeededOnStable=!1,c._destroyed=new x,c._showAlwaysAnimate=!1,c._subscriptAnimationState=\"\",c._hintLabel=\"\",c._hintLabelId=\"mat-hint-\".concat(DM++),c._labelId=\"mat-form-field-label-\".concat(DM++),c._labelOptions=i||{},c.floatLabel=c._getDefaultFloatLabelState(),c._animationsEnabled=\"NoopAnimations\"!==u,c.appearance=o&&o.appearance?o.appearance:\"legacy\",c._hideRequiredMarker=!(!o||null==o.hideRequiredMarker)&&o.hideRequiredMarker,c}return _createClass(n,[{key:\"getConnectedOverlayOrigin\",value:function(){return this._connectionContainerRef||this._elementRef}},{key:\"ngAfterContentInit\",value:function(){var e=this;this._validateControlChild();var t=this._control;t.controlType&&this._elementRef.nativeElement.classList.add(\"mat-form-field-type-\".concat(t.controlType)),t.stateChanges.pipe(sv(null)).subscribe((function(){e._validatePlaceholders(),e._syncDescribedByIds(),e._changeDetectorRef.markForCheck()})),t.ngControl&&t.ngControl.valueChanges&&t.ngControl.valueChanges.pipe(Ek(this._destroyed)).subscribe((function(){return e._changeDetectorRef.markForCheck()})),this._ngZone.runOutsideAngular((function(){e._ngZone.onStable.asObservable().pipe(Ek(e._destroyed)).subscribe((function(){e._outlineGapCalculationNeededOnStable&&e.updateOutlineGap()}))})),K(this._prefixChildren.changes,this._suffixChildren.changes).subscribe((function(){e._outlineGapCalculationNeededOnStable=!0,e._changeDetectorRef.markForCheck()})),this._hintChildren.changes.pipe(sv(null)).subscribe((function(){e._processHints(),e._changeDetectorRef.markForCheck()})),this._errorChildren.changes.pipe(sv(null)).subscribe((function(){e._syncDescribedByIds(),e._changeDetectorRef.markForCheck()})),this._dir&&this._dir.change.pipe(Ek(this._destroyed)).subscribe((function(){\"function\"==typeof requestAnimationFrame?e._ngZone.runOutsideAngular((function(){requestAnimationFrame((function(){return e.updateOutlineGap()}))})):e.updateOutlineGap()}))}},{key:\"ngAfterContentChecked\",value:function(){this._validateControlChild(),this._outlineGapCalculationNeededImmediately&&this.updateOutlineGap()}},{key:\"ngAfterViewInit\",value:function(){this._subscriptAnimationState=\"enter\",this._changeDetectorRef.detectChanges()}},{key:\"ngOnDestroy\",value:function(){this._destroyed.next(),this._destroyed.complete()}},{key:\"_shouldForward\",value:function(e){var t=this._control?this._control.ngControl:null;return t&&t[e]}},{key:\"_hasPlaceholder\",value:function(){return!!(this._control&&this._control.placeholder||this._placeholderChild)}},{key:\"_hasLabel\",value:function(){return!!this._labelChild}},{key:\"_shouldLabelFloat\",value:function(){return this._canLabelFloat&&(this._control.shouldLabelFloat||this._shouldAlwaysFloat)}},{key:\"_hideControlPlaceholder\",value:function(){return\"legacy\"===this.appearance&&!this._hasLabel()||this._hasLabel()&&!this._shouldLabelFloat()}},{key:\"_hasFloatingLabel\",value:function(){return this._hasLabel()||\"legacy\"===this.appearance&&this._hasPlaceholder()}},{key:\"_getDisplayedMessages\",value:function(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?\"error\":\"hint\"}},{key:\"_animateAndLockLabel\",value:function(){var e=this;this._hasFloatingLabel()&&this._canLabelFloat&&(this._animationsEnabled&&this._label&&(this._showAlwaysAnimate=!0,mk(this._label.nativeElement,\"transitionend\").pipe(cp(1)).subscribe((function(){e._showAlwaysAnimate=!1}))),this.floatLabel=\"always\",this._changeDetectorRef.markForCheck())}},{key:\"_validatePlaceholders\",value:function(){if(this._control.placeholder&&this._placeholderChild)throw Error(\"Placeholder attribute and child element were both specified.\")}},{key:\"_processHints\",value:function(){this._validateHints(),this._syncDescribedByIds()}},{key:\"_validateHints\",value:function(){var e,t,n=this;this._hintChildren&&this._hintChildren.forEach((function(r){if(\"start\"===r.align){if(e||n.hintLabel)throw fM(\"start\");e=r}else if(\"end\"===r.align){if(t)throw fM(\"end\");t=r}}))}},{key:\"_getDefaultFloatLabelState\",value:function(){return this._defaults&&this._defaults.floatLabel||this._labelOptions.float||\"auto\"}},{key:\"_syncDescribedByIds\",value:function(){if(this._control){var e=[];if(\"hint\"===this._getDisplayedMessages()){var t=this._hintChildren?this._hintChildren.find((function(e){return\"start\"===e.align})):null,n=this._hintChildren?this._hintChildren.find((function(e){return\"end\"===e.align})):null;t?e.push(t.id):this._hintLabel&&e.push(this._hintLabelId),n&&e.push(n.id)}else this._errorChildren&&(e=this._errorChildren.map((function(e){return e.id})));this._control.setDescribedByIds(e)}}},{key:\"_validateControlChild\",value:function(){if(!this._control)throw Error(\"mat-form-field must contain a MatFormFieldControl.\")}},{key:\"updateOutlineGap\",value:function(){var e=this._label?this._label.nativeElement:null;if(\"outline\"===this.appearance&&e&&e.children.length&&e.textContent.trim()&&this._platform.isBrowser)if(this._isAttachedToDOM()){var t=0,n=0,r=this._connectionContainerRef.nativeElement,i=r.querySelectorAll(\".mat-form-field-outline-start\"),a=r.querySelectorAll(\".mat-form-field-outline-gap\");if(this._label&&this._label.nativeElement.children.length){var o=r.getBoundingClientRect();if(0===o.width&&0===o.height)return this._outlineGapCalculationNeededOnStable=!0,void(this._outlineGapCalculationNeededImmediately=!1);var s,l=this._getStartEnd(o),u=this._getStartEnd(e.children[0].getBoundingClientRect()),c=0,d=_createForOfIteratorHelper(e.children);try{for(d.s();!(s=d.n()).done;)c+=s.value.offsetWidth}catch(m){d.e(m)}finally{d.f()}t=u-l-5,n=c>0?.75*c+10:0}for(var h=0;h-1)throw Error('Input type \"'.concat(this._type,\"\\\" isn't supported by matInput.\"))}},{key:\"_isNeverEmpty\",value:function(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}},{key:\"_isBadInput\",value:function(){var e=this._elementRef.nativeElement.validity;return e&&e.badInput}},{key:\"setDescribedByIds\",value:function(e){this._ariaDescribedby=e.join(\" \")}},{key:\"onContainerClick\",value:function(){this.focused||this.focus()}},{key:\"disabled\",get:function(){return this.ngControl&&null!==this.ngControl.disabled?this.ngControl.disabled:this._disabled},set:function(e){this._disabled=mp(e),this.focused&&(this.focused=!1,this.stateChanges.next())}},{key:\"id\",get:function(){return this._id},set:function(e){this._id=e||this._uid}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=mp(e)}},{key:\"type\",get:function(){return this._type},set:function(e){this._type=e||\"text\",this._validateType(),!this._isTextarea()&&Lp().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}},{key:\"value\",get:function(){return this._inputValueAccessor.value},set:function(e){e!==this.value&&(this._inputValueAccessor.value=e,this.stateChanges.next())}},{key:\"readonly\",get:function(){return this._readonly},set:function(e){this._readonly=mp(e)}},{key:\"empty\",get:function(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}},{key:\"shouldLabelFloat\",get:function(){if(this._isNativeSelect){var e=this._elementRef.nativeElement,t=e.options[0];return this.focused||e.multiple||!this.empty||!!(e.selectedIndex>-1&&t&&t.label)}return this.focused||!this.empty}}]),n}(RM)).\\u0275fac=function(e){return new(e||wM)(Io(Qs),Io(Cp),Io(tf,10),Io(pm,8),Io(Dm,8),Io(eb),Io(AM,10),Io(VC),Io(cc))},wM.\\u0275dir=Lt({type:wM,selectors:[[\"input\",\"matInput\",\"\"],[\"textarea\",\"matInput\",\"\"],[\"select\",\"matNativeControl\",\"\"],[\"input\",\"matNativeControl\",\"\"],[\"textarea\",\"matNativeControl\",\"\"]],hostAttrs:[1,\"mat-input-element\",\"mat-form-field-autofill-control\"],hostVars:10,hostBindings:function(e,t){1&e&&qo(\"blur\",(function(){return t._focusChanged(!1)}))(\"focus\",(function(){return t._focusChanged(!0)}))(\"input\",(function(){return t._onInput()})),2&e&&(Ds(\"disabled\",t.disabled)(\"required\",t.required),Do(\"id\",t.id)(\"placeholder\",t.placeholder)(\"readonly\",t.readonly&&!t._isNativeSelect||null)(\"aria-describedby\",t._ariaDescribedby||null)(\"aria-invalid\",t.errorState)(\"aria-required\",t.required.toString()),fs(\"mat-input-server\",t._isServer))},inputs:{id:\"id\",disabled:\"disabled\",required:\"required\",type:\"type\",value:\"value\",readonly:\"readonly\",placeholder:\"placeholder\",errorStateMatcher:\"errorStateMatcher\"},exportAs:[\"matInput\"],features:[$s([{provide:hM,useExisting:wM}]),Es,Hs]}),wM),FM=((kM=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:kM}),kM.\\u0275inj=ve({factory:function(e){return new(e||kM)},providers:[eb],imports:[[WC,IM],WC,IM]}),kM);function NM(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:np,r=(t=e)instanceof Date&&!isNaN(+t)?+e-n.now():Math.abs(e);return function(e){return e.lift(new zM(r,n))}}var zM=function(){function e(t,n){_classCallCheck(this,e),this.delay=t,this.scheduler=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new VM(e,this.delay,this.scheduler))}}]),e}(),VM=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).delay=r,a.scheduler=i,a.queue=[],a.active=!1,a.errored=!1,a}return _createClass(n,[{key:\"_schedule\",value:function(e){this.active=!0,this.destination.add(e.schedule(n.dispatch,this.delay,{source:this,destination:this.destination,scheduler:e}))}},{key:\"scheduleNotification\",value:function(e){if(!0!==this.errored){var t=this.scheduler,n=new WM(t.now()+this.delay,e);this.queue.push(n),!1===this.active&&this._schedule(t)}}},{key:\"_next\",value:function(e){this.scheduleNotification(Vk.createNext(e))}},{key:\"_error\",value:function(e){this.errored=!0,this.queue=[],this.destination.error(e),this.unsubscribe()}},{key:\"_complete\",value:function(){this.scheduleNotification(Vk.createComplete()),this.unsubscribe()}}],[{key:\"dispatch\",value:function(e){for(var t=e.source,n=t.queue,r=e.scheduler,i=e.destination;n.length>0&&n[0].time-r.now()<=0;)n.shift().notification.observe(i);if(n.length>0){var a=Math.max(0,n[0].time-r.now());this.schedule(e,a)}else this.unsubscribe(),t.active=!1}}]),n}(p),WM=function e(t,n){_classCallCheck(this,e),this.time=t,this.notification=n},UM=[\"mat-menu-item\",\"\"],BM=[\"*\"];function qM(e,t){if(1&e){var n=Wo();Ho(0,\"div\",0),qo(\"keydown\",(function(e){return nn(n),Zo()._handleKeydown(e)}))(\"click\",(function(){return nn(n),Zo().closed.emit(\"click\")}))(\"@transformMenu.start\",(function(e){return nn(n),Zo()._onAnimationStart(e)}))(\"@transformMenu.done\",(function(e){return nn(n),Zo()._onAnimationDone(e)})),Ho(1,\"div\",1),ns(2),Fo(),Fo()}if(2&e){var r=Zo();jo(\"id\",r.panelId)(\"ngClass\",r._classList)(\"@transformMenu\",r._panelAnimationState),Do(\"aria-label\",r.ariaLabel||null)(\"aria-labelledby\",r.ariaLabelledby||null)(\"aria-describedby\",r.ariaDescribedby||null)}}var GM,$M,JM,KM,ZM,QM,XM,eS,tS,nS={transformMenu:uv(\"transformMenu\",[fv(\"void\",hv({opacity:0,transform:\"scale(0.8)\"})),mv(\"void => enter\",function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return{type:3,steps:e,options:t}}([pv(\".mat-menu-content, .mat-mdc-menu-content\",cv(\"100ms linear\",hv({opacity:1}))),cv(\"120ms cubic-bezier(0, 0, 0.2, 1)\",hv({transform:\"scale(1)\"}))])),mv(\"* => void\",cv(\"100ms 25ms linear\",hv({opacity:0})))]),fadeInItems:uv(\"fadeInItems\",[fv(\"showing\",hv({opacity:1})),mv(\"void => *\",[hv({opacity:0}),cv(\"400ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)\")])])},rS=((GM=function(){function e(t,n,r,i,a,o,s){_classCallCheck(this,e),this._template=t,this._componentFactoryResolver=n,this._appRef=r,this._injector=i,this._viewContainerRef=a,this._document=o,this._changeDetectorRef=s,this._attached=new x}return _createClass(e,[{key:\"attach\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this._portal||(this._portal=new lw(this._template,this._viewContainerRef)),this.detach(),this._outlet||(this._outlet=new dw(this._document.createElement(\"div\"),this._componentFactoryResolver,this._appRef,this._injector));var t=this._template.elementRef.nativeElement;t.parentNode.insertBefore(this._outlet.outletElement,t),this._changeDetectorRef&&this._changeDetectorRef.markForCheck(),this._portal.attach(this._outlet,e),this._attached.next()}},{key:\"detach\",value:function(){this._portal.isAttached&&this._portal.detach()}},{key:\"ngOnDestroy\",value:function(){this._outlet&&this._outlet.dispose()}}]),e}()).\\u0275fac=function(e){return new(e||GM)(Io(wl),Io(Zs),Io(Oc),Io(vo),Io(Ml),Io(Wc),Io(eo))},GM.\\u0275dir=Lt({type:GM,selectors:[[\"ng-template\",\"matMenuContent\",\"\"]]}),GM),iS=new Be(\"MAT_MENU_PANEL\"),aS=Uy(Vy((function e(){_classCallCheck(this,e)}))),oS=(($M=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this))._elementRef=e,o._focusMonitor=i,o._parentMenu=a,o.role=\"menuitem\",o._hovered=new x,o._focused=new x,o._highlighted=!1,o._triggersSubmenu=!1,i&&i.monitor(o._elementRef,!1),a&&a.addItem&&a.addItem(_assertThisInitialized(o)),o._document=r,o}return _createClass(n,[{key:\"focus\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"program\",t=arguments.length>1?arguments[1]:void 0;this._focusMonitor?this._focusMonitor.focusVia(this._getHostElement(),e,t):this._getHostElement().focus(t),this._focused.next(this)}},{key:\"ngOnDestroy\",value:function(){this._focusMonitor&&this._focusMonitor.stopMonitoring(this._elementRef),this._parentMenu&&this._parentMenu.removeItem&&this._parentMenu.removeItem(this),this._hovered.complete(),this._focused.complete()}},{key:\"_getTabIndex\",value:function(){return this.disabled?\"-1\":\"0\"}},{key:\"_getHostElement\",value:function(){return this._elementRef.nativeElement}},{key:\"_checkDisabled\",value:function(e){this.disabled&&(e.preventDefault(),e.stopPropagation())}},{key:\"_handleMouseEnter\",value:function(){this._hovered.next(this)}},{key:\"getLabel\",value:function(){var e=this._elementRef.nativeElement,t=this._document?this._document.TEXT_NODE:3,n=\"\";if(e.childNodes)for(var r=e.childNodes.length,i=0;i0&&void 0!==arguments[0]?arguments[0]:\"program\";this.lazyContent?this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe((function(){return e._focusFirstItem(t)})):this._focusFirstItem(t)}},{key:\"_focusFirstItem\",value:function(e){var t=this._keyManager;if(t.setFocusOrigin(e).setFirstItemActive(),!t.activeItem&&this._directDescendantItems.length)for(var n=this._directDescendantItems.first._getHostElement().parentElement;n;){if(\"menu\"===n.getAttribute(\"role\")){n.focus();break}n=n.parentElement}}},{key:\"resetActiveItem\",value:function(){this._keyManager.setActiveItem(-1)}},{key:\"setElevation\",value:function(e){var t=\"mat-elevation-z\".concat(Math.min(4+e,24)),n=Object.keys(this._classList).find((function(e){return e.startsWith(\"mat-elevation-z\")}));n&&n!==this._previousElevation||(this._previousElevation&&(this._classList[this._previousElevation]=!1),this._classList[t]=!0,this._previousElevation=t)}},{key:\"setPositionClasses\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.xPosition,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.yPosition,n=this._classList;n[\"mat-menu-before\"]=\"before\"===e,n[\"mat-menu-after\"]=\"after\"===e,n[\"mat-menu-above\"]=\"above\"===t,n[\"mat-menu-below\"]=\"below\"===t}},{key:\"_startAnimation\",value:function(){this._panelAnimationState=\"enter\"}},{key:\"_resetAnimation\",value:function(){this._panelAnimationState=\"void\"}},{key:\"_onAnimationDone\",value:function(e){this._animationDone.next(e),this._isAnimating=!1}},{key:\"_onAnimationStart\",value:function(e){this._isAnimating=!0,\"enter\"===e.toState&&0===this._keyManager.activeItemIndex&&(e.element.scrollTop=0)}},{key:\"_updateDirectDescendants\",value:function(){var e=this;this._allItems.changes.pipe(sv(this._allItems)).subscribe((function(t){e._directDescendantItems.reset(t.filter((function(t){return t._parentMenu===e}))),e._directDescendantItems.notifyOnChanges()}))}},{key:\"xPosition\",get:function(){return this._xPosition},set:function(e){\"before\"!==e&&\"after\"!==e&&function(){throw Error('xPosition value must be either \\'before\\' or after\\'.\\n Example: ')}(),this._xPosition=e,this.setPositionClasses()}},{key:\"yPosition\",get:function(){return this._yPosition},set:function(e){\"above\"!==e&&\"below\"!==e&&function(){throw Error('yPosition value must be either \\'above\\' or below\\'.\\n Example: ')}(),this._yPosition=e,this.setPositionClasses()}},{key:\"overlapTrigger\",get:function(){return this._overlapTrigger},set:function(e){this._overlapTrigger=mp(e)}},{key:\"hasBackdrop\",get:function(){return this._hasBackdrop},set:function(e){this._hasBackdrop=mp(e)}},{key:\"panelClass\",set:function(e){var t=this,n=this._previousPanelClass;n&&n.length&&n.split(\" \").forEach((function(e){t._classList[e]=!1})),this._previousPanelClass=e,e&&e.length&&(e.split(\" \").forEach((function(e){t._classList[e]=!0})),this._elementRef.nativeElement.className=\"\")}},{key:\"classList\",get:function(){return this.panelClass},set:function(e){this.panelClass=e}}]),e}()).\\u0275fac=function(e){return new(e||KM)(Io(Qs),Io(cc),Io(sS))},KM.\\u0275dir=Lt({type:KM,contentQueries:function(e,t,n){var r;1&e&&(Pu(n,rS,!0),Pu(n,oS,!0),Pu(n,oS,!1)),2&e&&(Yu(r=Hu())&&(t.lazyContent=r.first),Yu(r=Hu())&&(t._allItems=r),Yu(r=Hu())&&(t.items=r))},viewQuery:function(e,t){var n;1&e&&Iu(wl,!0),2&e&&Yu(n=Hu())&&(t.templateRef=n.first)},inputs:{backdropClass:\"backdropClass\",xPosition:\"xPosition\",yPosition:\"yPosition\",overlapTrigger:\"overlapTrigger\",hasBackdrop:\"hasBackdrop\",panelClass:[\"class\",\"panelClass\"],classList:\"classList\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],ariaDescribedby:[\"aria-describedby\",\"ariaDescribedby\"]},outputs:{closed:\"closed\",close:\"close\"}}),KM),cS=((JM=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return n}(uS)).\\u0275fac=function(e){return dS(e||JM)},JM.\\u0275dir=Lt({type:JM,features:[Es]}),JM),dS=cr(cS),hS=((ZM=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){return _classCallCheck(this,n),t.call(this,e,r,i)}return n}(cS)).\\u0275fac=function(e){return new(e||ZM)(Io(Qs),Io(cc),Io(sS))},ZM.\\u0275cmp=bt({type:ZM,selectors:[[\"mat-menu\"]],exportAs:[\"matMenu\"],features:[$s([{provide:iS,useExisting:cS},{provide:cS,useExisting:ZM}]),Es],ngContentSelectors:BM,decls:1,vars:0,consts:[[\"tabindex\",\"-1\",\"role\",\"menu\",1,\"mat-menu-panel\",3,\"id\",\"ngClass\",\"keydown\",\"click\"],[1,\"mat-menu-content\"]],template:function(e,t){1&e&&(Xo(),Yo(0,qM,3,6,\"ng-template\"))},directives:[kd],styles:['.mat-menu-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;max-height:calc(100vh - 48px);border-radius:4px;outline:0;min-height:64px}.mat-menu-panel.ng-animating{pointer-events:none}.cdk-high-contrast-active .mat-menu-panel{outline:solid 1px}.mat-menu-content:not(:empty){padding-top:8px;padding-bottom:8px}.mat-menu-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative}.mat-menu-item::-moz-focus-inner{border:0}.mat-menu-item[disabled]{cursor:default}[dir=rtl] .mat-menu-item{text-align:right}.mat-menu-item .mat-icon{margin-right:16px;vertical-align:middle}.mat-menu-item .mat-icon svg{vertical-align:top}[dir=rtl] .mat-menu-item .mat-icon{margin-left:16px;margin-right:0}.mat-menu-item[disabled]{pointer-events:none}.cdk-high-contrast-active .mat-menu-item.cdk-program-focused,.cdk-high-contrast-active .mat-menu-item.cdk-keyboard-focused,.cdk-high-contrast-active .mat-menu-item-highlighted{outline:dotted 1px}.mat-menu-item-submenu-trigger{padding-right:32px}.mat-menu-item-submenu-trigger::after{width:0;height:0;border-style:solid;border-width:5px 0 5px 5px;border-color:transparent transparent transparent currentColor;content:\"\";display:inline-block;position:absolute;top:50%;right:16px;transform:translateY(-50%)}[dir=rtl] .mat-menu-item-submenu-trigger{padding-right:16px;padding-left:32px}[dir=rtl] .mat-menu-item-submenu-trigger::after{right:auto;left:16px;transform:rotateY(180deg) translateY(-50%)}button.mat-menu-item{width:100%}.mat-menu-item .mat-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}\\n'],encapsulation:2,data:{animation:[nS.transformMenu,nS.fadeInItems]},changeDetection:0}),ZM),fS=new Be(\"mat-menu-scroll-strategy\"),mS={provide:fS,deps:[Bw],useFactory:function(e){return function(){return e.scrollStrategies.reposition()}}},pS=Tp({passive:!0}),_S=((eS=function(){function e(t,n,r,i,a,o,s,l){var u=this;_classCallCheck(this,e),this._overlay=t,this._element=n,this._viewContainerRef=r,this._parentMenu=a,this._menuItemInstance=o,this._dir=s,this._focusMonitor=l,this._overlayRef=null,this._menuOpen=!1,this._closingActionsSubscription=h.EMPTY,this._hoverSubscription=h.EMPTY,this._menuCloseSubscription=h.EMPTY,this._handleTouchStart=function(){return u._openedBy=\"touch\"},this._openedBy=null,this.restoreFocus=!0,this.menuOpened=new bu,this.onMenuOpen=this.menuOpened,this.menuClosed=new bu,this.onMenuClose=this.menuClosed,n.nativeElement.addEventListener(\"touchstart\",this._handleTouchStart,pS),o&&(o._triggersSubmenu=this.triggersSubmenu()),this._scrollStrategy=i}return _createClass(e,[{key:\"ngAfterContentInit\",value:function(){this._checkMenu(),this._handleHover()}},{key:\"ngOnDestroy\",value:function(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null),this._element.nativeElement.removeEventListener(\"touchstart\",this._handleTouchStart,pS),this._menuCloseSubscription.unsubscribe(),this._closingActionsSubscription.unsubscribe(),this._hoverSubscription.unsubscribe()}},{key:\"triggersSubmenu\",value:function(){return!(!this._menuItemInstance||!this._parentMenu)}},{key:\"toggleMenu\",value:function(){return this._menuOpen?this.closeMenu():this.openMenu()}},{key:\"openMenu\",value:function(){var e=this;if(!this._menuOpen){this._checkMenu();var t=this._createOverlay(),n=t.getConfig();this._setPosition(n.positionStrategy),n.hasBackdrop=null==this.menu.hasBackdrop?!this.triggersSubmenu():this.menu.hasBackdrop,t.attach(this._getPortal()),this.menu.lazyContent&&this.menu.lazyContent.attach(this.menuData),this._closingActionsSubscription=this._menuClosingActions().subscribe((function(){return e.closeMenu()})),this._initMenu(),this.menu instanceof cS&&this.menu._startAnimation()}}},{key:\"closeMenu\",value:function(){this.menu.close.emit()}},{key:\"focus\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"program\",t=arguments.length>1?arguments[1]:void 0;this._focusMonitor?this._focusMonitor.focusVia(this._element,e,t):this._element.nativeElement.focus(t)}},{key:\"_destroyMenu\",value:function(){var e=this;if(this._overlayRef&&this.menuOpen){var t=this.menu;this._closingActionsSubscription.unsubscribe(),this._overlayRef.detach(),this._restoreFocus(),t instanceof cS?(t._resetAnimation(),t.lazyContent?t._animationDone.pipe(Gd((function(e){return\"void\"===e.toState})),cp(1),Ek(t.lazyContent._attached)).subscribe({next:function(){return t.lazyContent.detach()},complete:function(){return e._setIsMenuOpen(!1)}}):this._setIsMenuOpen(!1)):(this._setIsMenuOpen(!1),t.lazyContent&&t.lazyContent.detach())}}},{key:\"_initMenu\",value:function(){this.menu.parentMenu=this.triggersSubmenu()?this._parentMenu:void 0,this.menu.direction=this.dir,this._setMenuElevation(),this._setIsMenuOpen(!0),this.menu.focusFirstItem(this._openedBy||\"program\")}},{key:\"_setMenuElevation\",value:function(){if(this.menu.setElevation){for(var e=0,t=this.menu.parentMenu;t;)e++,t=t.parentMenu;this.menu.setElevation(e)}}},{key:\"_restoreFocus\",value:function(){this.restoreFocus&&(this._openedBy?this.triggersSubmenu()||this.focus(this._openedBy):this.focus()),this._openedBy=null}},{key:\"_setIsMenuOpen\",value:function(e){this._menuOpen=e,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this.triggersSubmenu()&&(this._menuItemInstance._highlighted=e)}},{key:\"_checkMenu\",value:function(){this.menu||function(){throw Error('matMenuTriggerFor: must pass in an mat-menu instance.\\n\\n Example:\\n \\n ')}()}},{key:\"_createOverlay\",value:function(){if(!this._overlayRef){var e=this._getOverlayConfig();this._subscribeToPositions(e.positionStrategy),this._overlayRef=this._overlay.create(e),this._overlayRef.keydownEvents().subscribe()}return this._overlayRef}},{key:\"_getOverlayConfig\",value:function(){return new Cw({positionStrategy:this._overlay.position().flexibleConnectedTo(this._element).withLockedPosition().withTransformOriginOn(\".mat-menu-panel, .mat-mdc-menu-panel\"),backdropClass:this.menu.backdropClass||\"cdk-overlay-transparent-backdrop\",scrollStrategy:this._scrollStrategy(),direction:this._dir})}},{key:\"_subscribeToPositions\",value:function(e){var t=this;this.menu.setPositionClasses&&e.positionChanges.subscribe((function(e){t.menu.setPositionClasses(\"start\"===e.connectionPair.overlayX?\"after\":\"before\",\"top\"===e.connectionPair.overlayY?\"below\":\"above\")}))}},{key:\"_setPosition\",value:function(e){var t=_slicedToArray(\"before\"===this.menu.xPosition?[\"end\",\"start\"]:[\"start\",\"end\"],2),n=t[0],r=t[1],i=_slicedToArray(\"above\"===this.menu.yPosition?[\"bottom\",\"top\"]:[\"top\",\"bottom\"],2),a=i[0],o=i[1],s=a,l=o,u=n,c=r,d=0;this.triggersSubmenu()?(c=n=\"before\"===this.menu.xPosition?\"start\":\"end\",r=u=\"end\"===n?\"start\":\"end\",d=\"bottom\"===a?8:-8):this.menu.overlapTrigger||(s=\"top\"===a?\"bottom\":\"top\",l=\"top\"===o?\"bottom\":\"top\"),e.withPositions([{originX:n,originY:s,overlayX:u,overlayY:a,offsetY:d},{originX:r,originY:s,overlayX:c,overlayY:a,offsetY:d},{originX:n,originY:l,overlayX:u,overlayY:o,offsetY:-d},{originX:r,originY:l,overlayX:c,overlayY:o,offsetY:-d}])}},{key:\"_menuClosingActions\",value:function(){var e=this,t=this._overlayRef.backdropClick(),n=this._overlayRef.detachments();return K(t,this._parentMenu?this._parentMenu.closed:Bd(),this._parentMenu?this._parentMenu._hovered().pipe(Gd((function(t){return t!==e._menuItemInstance})),Gd((function(){return e._menuOpen}))):Bd(),n)}},{key:\"_handleMousedown\",value:function(e){n_(e)||(this._openedBy=0===e.button?\"mouse\":null,this.triggersSubmenu()&&e.preventDefault())}},{key:\"_handleKeydown\",value:function(e){var t=e.keyCode;this.triggersSubmenu()&&(39===t&&\"ltr\"===this.dir||37===t&&\"rtl\"===this.dir)&&this.openMenu()}},{key:\"_handleClick\",value:function(e){this.triggersSubmenu()?(e.stopPropagation(),this.openMenu()):this.toggleMenu()}},{key:\"_handleHover\",value:function(){var e=this;this.triggersSubmenu()&&(this._hoverSubscription=this._parentMenu._hovered().pipe(Gd((function(t){return t===e._menuItemInstance&&!t.disabled})),NM(0,wk)).subscribe((function(){e._openedBy=\"mouse\",e.menu instanceof cS&&e.menu._isAnimating?e.menu._animationDone.pipe(cp(1),NM(0,wk),Ek(e._parentMenu._hovered())).subscribe((function(){return e.openMenu()})):e.openMenu()})))}},{key:\"_getPortal\",value:function(){return this._portal&&this._portal.templateRef===this.menu.templateRef||(this._portal=new lw(this.menu.templateRef,this._viewContainerRef)),this._portal}},{key:\"_deprecatedMatMenuTriggerFor\",get:function(){return this.menu},set:function(e){this.menu=e}},{key:\"menu\",get:function(){return this._menu},set:function(e){var t=this;e!==this._menu&&(this._menu=e,this._menuCloseSubscription.unsubscribe(),e&&(this._menuCloseSubscription=e.close.asObservable().subscribe((function(e){t._destroyMenu(),\"click\"!==e&&\"tab\"!==e||!t._parentMenu||t._parentMenu.closed.emit(e)}))))}},{key:\"menuOpen\",get:function(){return this._menuOpen}},{key:\"dir\",get:function(){return this._dir&&\"rtl\"===this._dir.value?\"rtl\":\"ltr\"}}]),e}()).\\u0275fac=function(e){return new(e||eS)(Io(Bw),Io(Qs),Io(Ml),Io(fS),Io(cS,8),Io(oS,10),Io(h_,8),Io(t_))},eS.\\u0275dir=Lt({type:eS,selectors:[[\"\",\"mat-menu-trigger-for\",\"\"],[\"\",\"matMenuTriggerFor\",\"\"]],hostAttrs:[\"aria-haspopup\",\"true\",1,\"mat-menu-trigger\"],hostVars:2,hostBindings:function(e,t){1&e&&qo(\"mousedown\",(function(e){return t._handleMousedown(e)}))(\"keydown\",(function(e){return t._handleKeydown(e)}))(\"click\",(function(e){return t._handleClick(e)})),2&e&&Do(\"aria-expanded\",t.menuOpen||null)(\"aria-controls\",t.menuOpen?t.menu.panelId:null)},inputs:{restoreFocus:[\"matMenuTriggerRestoreFocus\",\"restoreFocus\"],_deprecatedMatMenuTriggerFor:[\"mat-menu-trigger-for\",\"_deprecatedMatMenuTriggerFor\"],menu:[\"matMenuTriggerFor\",\"menu\"],menuData:[\"matMenuTriggerData\",\"menuData\"]},outputs:{menuOpened:\"menuOpened\",onMenuOpen:\"onMenuOpen\",menuClosed:\"menuClosed\",onMenuClose:\"onMenuClose\"},exportAs:[\"matMenuTrigger\"]}),eS),vS=((XM=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:XM}),XM.\\u0275inj=ve({factory:function(e){return new(e||XM)},providers:[mS],imports:[zy]}),XM),gS=((QM=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:QM}),QM.\\u0275inj=ve({factory:function(e){return new(e||QM)},providers:[mS],imports:[[Nd,zy,lb,Zw,vS],vS]}),QM),yS=[\"primaryValueBar\"],bS=Wy((function e(t){_classCallCheck(this,e),this._elementRef=t}),\"primary\"),kS=new Be(\"mat-progress-bar-location\",{providedIn:\"root\",factory:function(){var e=tt(Wc),t=e?e.location:null;return{getPathname:function(){return t?t.pathname+t.search:\"\"}}}}),wS=0,CS=((tS=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;_classCallCheck(this,n),(o=t.call(this,e))._elementRef=e,o._ngZone=r,o._animationMode=i,o._isNoopAnimation=!1,o._value=0,o._bufferValue=0,o.animationEnd=new bu,o._animationEndSubscription=h.EMPTY,o.mode=\"determinate\",o.progressbarId=\"mat-progress-bar-\".concat(wS++);var s=a?a.getPathname().split(\"#\")[0]:\"\";return o._rectangleFillValue=\"url('\".concat(s,\"#\").concat(o.progressbarId,\"')\"),o._isNoopAnimation=\"NoopAnimations\"===i,o}return _createClass(n,[{key:\"_primaryTransform\",value:function(){return{transform:\"scaleX(\".concat(this.value/100,\")\")}}},{key:\"_bufferTransform\",value:function(){return\"buffer\"===this.mode?{transform:\"scaleX(\".concat(this.bufferValue/100,\")\")}:null}},{key:\"ngAfterViewInit\",value:function(){var e=this;this._ngZone.runOutsideAngular((function(){var t=e._primaryValueBar.nativeElement;e._animationEndSubscription=mk(t,\"transitionend\").pipe(Gd((function(e){return e.target===t}))).subscribe((function(){\"determinate\"!==e.mode&&\"buffer\"!==e.mode||e._ngZone.run((function(){return e.animationEnd.next({value:e.value})}))}))}))}},{key:\"ngOnDestroy\",value:function(){this._animationEndSubscription.unsubscribe()}},{key:\"value\",get:function(){return this._value},set:function(e){this._value=MS(pp(e)||0)}},{key:\"bufferValue\",get:function(){return this._bufferValue},set:function(e){this._bufferValue=MS(e||0)}}]),n}(bS)).\\u0275fac=function(e){return new(e||tS)(Io(Qs),Io(cc),Io(Yy,8),Io(kS,8))},tS.\\u0275cmp=bt({type:tS,selectors:[[\"mat-progress-bar\"]],viewQuery:function(e,t){var n;1&e&&Iu(yS,!0),2&e&&Yu(n=Hu())&&(t._primaryValueBar=n.first)},hostAttrs:[\"role\",\"progressbar\",\"aria-valuemin\",\"0\",\"aria-valuemax\",\"100\",1,\"mat-progress-bar\"],hostVars:4,hostBindings:function(e,t){2&e&&(Do(\"aria-valuenow\",\"indeterminate\"===t.mode||\"query\"===t.mode?null:t.value)(\"mode\",t.mode),fs(\"_mat-animation-noopable\",t._isNoopAnimation))},inputs:{color:\"color\",mode:\"mode\",value:\"value\",bufferValue:\"bufferValue\"},outputs:{animationEnd:\"animationEnd\"},exportAs:[\"matProgressBar\"],features:[Es],decls:9,vars:4,consts:[[\"width\",\"100%\",\"height\",\"4\",\"focusable\",\"false\",1,\"mat-progress-bar-background\",\"mat-progress-bar-element\"],[\"x\",\"4\",\"y\",\"0\",\"width\",\"8\",\"height\",\"4\",\"patternUnits\",\"userSpaceOnUse\",3,\"id\"],[\"cx\",\"2\",\"cy\",\"2\",\"r\",\"2\"],[\"width\",\"100%\",\"height\",\"100%\"],[1,\"mat-progress-bar-buffer\",\"mat-progress-bar-element\",3,\"ngStyle\"],[1,\"mat-progress-bar-primary\",\"mat-progress-bar-fill\",\"mat-progress-bar-element\",3,\"ngStyle\"],[\"primaryValueBar\",\"\"],[1,\"mat-progress-bar-secondary\",\"mat-progress-bar-fill\",\"mat-progress-bar-element\"]],template:function(e,t){1&e&&(Sn(),Ho(0,\"svg\",0),Ho(1,\"defs\"),Ho(2,\"pattern\",1),No(3,\"circle\",2),Fo(),Fo(),No(4,\"rect\",3),Fo(),Ln(),No(5,\"div\",4),No(6,\"div\",5,6),No(8,\"div\",7)),2&e&&(bi(2),jo(\"id\",t.progressbarId),bi(2),Do(\"fill\",t._rectangleFillValue),bi(1),jo(\"ngStyle\",t._bufferTransform()),bi(1),jo(\"ngStyle\",t._primaryTransform()))},directives:[Hd],styles:['.mat-progress-bar{display:block;height:4px;overflow:hidden;position:relative;transition:opacity 250ms linear;width:100%}._mat-animation-noopable.mat-progress-bar{transition:none;animation:none}.mat-progress-bar .mat-progress-bar-element,.mat-progress-bar .mat-progress-bar-fill::after{height:100%;position:absolute;width:100%}.mat-progress-bar .mat-progress-bar-background{width:calc(100% + 10px)}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-background{display:none}.mat-progress-bar .mat-progress-bar-buffer{transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-buffer{border-top:solid 5px;opacity:.5}.mat-progress-bar .mat-progress-bar-secondary{display:none}.mat-progress-bar .mat-progress-bar-fill{animation:none;transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-fill{border-top:solid 4px}.mat-progress-bar .mat-progress-bar-fill::after{animation:none;content:\"\";display:inline-block;left:0}.mat-progress-bar[dir=rtl],[dir=rtl] .mat-progress-bar{transform:rotateY(180deg)}.mat-progress-bar[mode=query]{transform:rotateZ(180deg)}.mat-progress-bar[mode=query][dir=rtl],[dir=rtl] .mat-progress-bar[mode=query]{transform:rotateZ(180deg) rotateY(180deg)}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-fill,.mat-progress-bar[mode=query] .mat-progress-bar-fill{transition:none}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary,.mat-progress-bar[mode=query] .mat-progress-bar-primary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-translate 2000ms infinite linear;left:-145.166611%}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-primary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary,.mat-progress-bar[mode=query] .mat-progress-bar-secondary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-translate 2000ms infinite linear;left:-54.888891%;display:block}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-secondary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=buffer] .mat-progress-bar-background{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-background-scroll 250ms infinite linear;display:block}.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-buffer,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-background{animation:none;transition-duration:1ms}@keyframes mat-progress-bar-primary-indeterminate-translate{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(83.67142%)}100%{transform:translateX(200.611057%)}}@keyframes mat-progress-bar-primary-indeterminate-scale{0%{transform:scaleX(0.08)}36.65%{animation-timing-function:cubic-bezier(0.334731, 0.12482, 0.785844, 1);transform:scaleX(0.08)}69.15%{animation-timing-function:cubic-bezier(0.06, 0.11, 0.6, 1);transform:scaleX(0.661479)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-secondary-indeterminate-translate{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(37.651913%)}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(84.386165%)}100%{transform:translateX(160.277782%)}}@keyframes mat-progress-bar-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-background-scroll{to{transform:translateX(-8px)}}\\n'],encapsulation:2,changeDetection:0}),tS);function MS(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:100;return Math.max(t,Math.min(n,e))}var SS,LS=((SS=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:SS}),SS.\\u0275inj=ve({factory:function(e){return new(e||SS)},imports:[[Nd,zy],zy]}),SS),TS=[\"trigger\"],xS=[\"panel\"];function DS(e,t){if(1&e&&(Ho(0,\"span\",8),Ls(1),Fo()),2&e){var n=Zo();bi(1),Ts(n.placeholder||\"\\xa0\")}}function OS(e,t){if(1&e&&(Ho(0,\"span\"),Ls(1),Fo()),2&e){var n=Zo(2);bi(1),Ts(n.triggerValue||\"\\xa0\")}}function YS(e,t){1&e&&ns(0,0,[\"*ngSwitchCase\",\"true\"])}function ES(e,t){1&e&&(Ho(0,\"span\",9),Yo(1,OS,2,1,\"span\",10),Yo(2,YS,1,0,void 0,11),Fo()),2&e&&(jo(\"ngSwitch\",!!Zo().customTrigger),bi(2),jo(\"ngSwitchCase\",!0))}function IS(e,t){if(1&e){var n=Wo();Ho(0,\"div\",12),Ho(1,\"div\",13,14),qo(\"@transformPanel.done\",(function(e){return nn(n),Zo()._panelDoneAnimatingStream.next(e.toState)}))(\"keydown\",(function(e){return nn(n),Zo()._handleKeydown(e)})),ns(3,1),Fo(),Fo()}if(2&e){var r=Zo();jo(\"@transformPanelWrap\",void 0),bi(1),i=r._getPanelTheme(),vs(ht,ps,Oo(en(),\"mat-select-panel \",i,\"\"),!0),hs(\"transform-origin\",r._transformOrigin)(\"font-size\",r._triggerFontSize,\"px\"),jo(\"ngClass\",r.panelClass)(\"@transformPanel\",r.multiple?\"showing-multiple\":\"showing\")}var i}var AS,PS,jS,RS=[[[\"mat-select-trigger\"]],\"*\"],HS=[\"mat-select-trigger\",\"*\"],FS={transformPanelWrap:uv(\"transformPanelWrap\",[mv(\"* => void\",pv(\"@transformPanel\",[function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return{type:9,options:e}}()],{optional:!0}))]),transformPanel:uv(\"transformPanel\",[fv(\"void\",hv({transform:\"scaleY(0.8)\",minWidth:\"100%\",opacity:0})),fv(\"showing\",hv({opacity:1,minWidth:\"calc(100% + 32px)\",transform:\"scaleY(1)\"})),fv(\"showing-multiple\",hv({opacity:1,minWidth:\"calc(100% + 64px)\",transform:\"scaleY(1)\"})),mv(\"void => *\",cv(\"120ms cubic-bezier(0, 0, 0.2, 1)\")),mv(\"* => void\",cv(\"100ms 25ms linear\",hv({opacity:0})))])},NS=0,zS=new Be(\"mat-select-scroll-strategy\"),VS=new Be(\"MAT_SELECT_CONFIG\"),WS={provide:zS,deps:[Bw],useFactory:function(e){return function(){return e.scrollStrategies.reposition()}}},US=function e(t,n){_classCallCheck(this,e),this.source=t,this.value=n},BS=Uy(By(Vy(qy((function e(t,n,r,i,a){_classCallCheck(this,e),this._elementRef=t,this._defaultErrorStateMatcher=n,this._parentForm=r,this._parentFormGroup=i,this.ngControl=a}))))),qS=((jS=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||jS)},jS.\\u0275dir=Lt({type:jS,selectors:[[\"mat-select-trigger\"]]}),jS),GS=((PS=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s,l,u,c,d,h,f,m,p){var _;return _classCallCheck(this,n),(_=t.call(this,o,a,l,u,d))._viewportRuler=e,_._changeDetectorRef=r,_._ngZone=i,_._dir=s,_._parentFormField=c,_.ngControl=d,_._liveAnnouncer=m,_._panelOpen=!1,_._required=!1,_._scrollTop=0,_._multiple=!1,_._compareWith=function(e,t){return e===t},_._uid=\"mat-select-\".concat(NS++),_._destroy=new x,_._triggerFontSize=0,_._onChange=function(){},_._onTouched=function(){},_._optionIds=\"\",_._transformOrigin=\"top\",_._panelDoneAnimatingStream=new x,_._offsetY=0,_._positions=[{originX:\"start\",originY:\"top\",overlayX:\"start\",overlayY:\"top\"},{originX:\"start\",originY:\"bottom\",overlayX:\"start\",overlayY:\"bottom\"}],_._disableOptionCentering=!1,_._focused=!1,_.controlType=\"mat-select\",_.ariaLabel=\"\",_.optionSelectionChanges=Qw((function(){var e=_.options;return e?e.changes.pipe(sv(e),Pk((function(){return K.apply(void 0,_toConsumableArray(e.map((function(e){return e.onSelectionChange}))))}))):_._ngZone.onStable.asObservable().pipe(cp(1),Pk((function(){return _.optionSelectionChanges})))})),_.openedChange=new bu,_._openedStream=_.openedChange.pipe(Gd((function(e){return e})),F((function(){}))),_._closedStream=_.openedChange.pipe(Gd((function(e){return!e})),F((function(){}))),_.selectionChange=new bu,_.valueChange=new bu,_.ngControl&&(_.ngControl.valueAccessor=_assertThisInitialized(_)),_._scrollStrategyFactory=f,_._scrollStrategy=_._scrollStrategyFactory(),_.tabIndex=parseInt(h)||0,_.id=_.id,p&&(null!=p.disableOptionCentering&&(_.disableOptionCentering=p.disableOptionCentering),null!=p.typeaheadDebounceInterval&&(_.typeaheadDebounceInterval=p.typeaheadDebounceInterval)),_}return _createClass(n,[{key:\"ngOnInit\",value:function(){var e=this;this._selectionModel=new Qk(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe(Ck(),Ek(this._destroy)).subscribe((function(){e.panelOpen?(e._scrollTop=0,e.openedChange.emit(!0)):(e.openedChange.emit(!1),e.overlayDir.offsetX=0,e._changeDetectorRef.markForCheck())})),this._viewportRuler.change().pipe(Ek(this._destroy)).subscribe((function(){e._panelOpen&&(e._triggerRect=e.trigger.nativeElement.getBoundingClientRect(),e._changeDetectorRef.markForCheck())}))}},{key:\"ngAfterContentInit\",value:function(){var e=this;this._initKeyManager(),this._selectionModel.changed.pipe(Ek(this._destroy)).subscribe((function(e){e.added.forEach((function(e){return e.select()})),e.removed.forEach((function(e){return e.deselect()}))})),this.options.changes.pipe(sv(null),Ek(this._destroy)).subscribe((function(){e._resetOptions(),e._initializeSelection()}))}},{key:\"ngDoCheck\",value:function(){this.ngControl&&this.updateErrorState()}},{key:\"ngOnChanges\",value:function(e){e.disabled&&this.stateChanges.next(),e.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this._typeaheadDebounceInterval)}},{key:\"ngOnDestroy\",value:function(){this._destroy.next(),this._destroy.complete(),this.stateChanges.complete()}},{key:\"toggle\",value:function(){this.panelOpen?this.close():this.open()}},{key:\"open\",value:function(){var e=this;!this.disabled&&this.options&&this.options.length&&!this._panelOpen&&(this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._triggerFontSize=parseInt(getComputedStyle(this.trigger.nativeElement).fontSize||\"0\"),this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._calculateOverlayPosition(),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck(),this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe((function(){e._triggerFontSize&&e.overlayDir.overlayRef&&e.overlayDir.overlayRef.overlayElement&&(e.overlayDir.overlayRef.overlayElement.style.fontSize=\"\".concat(e._triggerFontSize,\"px\"))})))}},{key:\"close\",value:function(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?\"rtl\":\"ltr\"),this._changeDetectorRef.markForCheck(),this._onTouched())}},{key:\"writeValue\",value:function(e){this.options&&this._setSelectionByValue(e)}},{key:\"registerOnChange\",value:function(e){this._onChange=e}},{key:\"registerOnTouched\",value:function(e){this._onTouched=e}},{key:\"setDisabledState\",value:function(e){this.disabled=e,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}},{key:\"_isRtl\",value:function(){return!!this._dir&&\"rtl\"===this._dir.value}},{key:\"_handleKeydown\",value:function(e){this.disabled||(this.panelOpen?this._handleOpenKeydown(e):this._handleClosedKeydown(e))}},{key:\"_handleClosedKeydown\",value:function(e){var t=e.keyCode,n=40===t||38===t||37===t||39===t,r=13===t||32===t,i=this._keyManager;if(!i.isTyping()&&r&&!Jm(e)||(this.multiple||e.altKey)&&n)e.preventDefault(),this.open();else if(!this.multiple){var a=this.selected;36===t||35===t?(36===t?i.setFirstItemActive():i.setLastItemActive(),e.preventDefault()):i.onKeydown(e);var o=this.selected;o&&a!==o&&this._liveAnnouncer.announce(o.viewValue,1e4)}}},{key:\"_handleOpenKeydown\",value:function(e){var t=this._keyManager,n=e.keyCode,r=40===n||38===n,i=t.isTyping();if(36===n||35===n)e.preventDefault(),36===n?t.setFirstItemActive():t.setLastItemActive();else if(r&&e.altKey)e.preventDefault(),this.close();else if(i||13!==n&&32!==n||!t.activeItem||Jm(e))if(!i&&this._multiple&&65===n&&e.ctrlKey){e.preventDefault();var a=this.options.some((function(e){return!e.disabled&&!e.selected}));this.options.forEach((function(e){e.disabled||(a?e.select():e.deselect())}))}else{var o=t.activeItemIndex;t.onKeydown(e),this._multiple&&r&&e.shiftKey&&t.activeItem&&t.activeItemIndex!==o&&t.activeItem._selectViaInteraction()}else e.preventDefault(),t.activeItem._selectViaInteraction()}},{key:\"_onFocus\",value:function(){this.disabled||(this._focused=!0,this.stateChanges.next())}},{key:\"_onBlur\",value:function(){this._focused=!1,this.disabled||this.panelOpen||(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}},{key:\"_onAttached\",value:function(){var e=this;this.overlayDir.positionChange.pipe(cp(1)).subscribe((function(){e._changeDetectorRef.detectChanges(),e._calculateOverlayOffsetX(),e.panel.nativeElement.scrollTop=e._scrollTop}))}},{key:\"_getPanelTheme\",value:function(){return this._parentFormField?\"mat-\".concat(this._parentFormField.color):\"\"}},{key:\"_initializeSelection\",value:function(){var e=this;Promise.resolve().then((function(){e._setSelectionByValue(e.ngControl?e.ngControl.value:e._value),e.stateChanges.next()}))}},{key:\"_setSelectionByValue\",value:function(e){var t=this;if(this.multiple&&e){if(!Array.isArray(e))throw Error(\"Value must be an array in multiple-selection mode.\");this._selectionModel.clear(),e.forEach((function(e){return t._selectValue(e)})),this._sortValues()}else{this._selectionModel.clear();var n=this._selectValue(e);n?this._keyManager.setActiveItem(n):this.panelOpen||this._keyManager.setActiveItem(-1)}this._changeDetectorRef.markForCheck()}},{key:\"_selectValue\",value:function(e){var t=this,n=this.options.find((function(n){try{return null!=n.value&&t._compareWith(n.value,e)}catch(r){return Lr()&&console.warn(r),!1}}));return n&&this._selectionModel.select(n),n}},{key:\"_initKeyManager\",value:function(){var e=this;this._keyManager=new zp(this.options).withTypeAhead(this._typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?\"rtl\":\"ltr\").withAllowedModifierKeys([\"shiftKey\"]),this._keyManager.tabOut.pipe(Ek(this._destroy)).subscribe((function(){!e.multiple&&e._keyManager.activeItem&&e._keyManager.activeItem._selectViaInteraction(),e.focus(),e.close()})),this._keyManager.change.pipe(Ek(this._destroy)).subscribe((function(){e._panelOpen&&e.panel?e._scrollActiveOptionIntoView():e._panelOpen||e.multiple||!e._keyManager.activeItem||e._keyManager.activeItem._selectViaInteraction()}))}},{key:\"_resetOptions\",value:function(){var e=this,t=K(this.options.changes,this._destroy);this.optionSelectionChanges.pipe(Ek(t)).subscribe((function(t){e._onSelect(t.source,t.isUserInput),t.isUserInput&&!e.multiple&&e._panelOpen&&(e.close(),e.focus())})),K.apply(void 0,_toConsumableArray(this.options.map((function(e){return e._stateChanges})))).pipe(Ek(t)).subscribe((function(){e._changeDetectorRef.markForCheck(),e.stateChanges.next()})),this._setOptionIds()}},{key:\"_onSelect\",value:function(e,t){var n=this._selectionModel.isSelected(e);null!=e.value||this._multiple?(n!==e.selected&&(e.selected?this._selectionModel.select(e):this._selectionModel.deselect(e)),t&&this._keyManager.setActiveItem(e),this.multiple&&(this._sortValues(),t&&this.focus())):(e.deselect(),this._selectionModel.clear(),this._propagateChanges(e.value)),n!==this._selectionModel.isSelected(e)&&this._propagateChanges(),this.stateChanges.next()}},{key:\"_sortValues\",value:function(){var e=this;if(this.multiple){var t=this.options.toArray();this._selectionModel.sort((function(n,r){return e.sortComparator?e.sortComparator(n,r,t):t.indexOf(n)-t.indexOf(r)})),this.stateChanges.next()}}},{key:\"_propagateChanges\",value:function(e){var t;t=this.multiple?this.selected.map((function(e){return e.value})):this.selected?this.selected.value:e,this._value=t,this.valueChange.emit(t),this._onChange(t),this.selectionChange.emit(new US(this,t)),this._changeDetectorRef.markForCheck()}},{key:\"_setOptionIds\",value:function(){this._optionIds=this.options.map((function(e){return e.id})).join(\" \")}},{key:\"_highlightCorrectOption\",value:function(){this._keyManager&&(this.empty?this._keyManager.setFirstItemActive():this._keyManager.setActiveItem(this._selectionModel.selected[0]))}},{key:\"_scrollActiveOptionIntoView\",value:function(){var e,t,n,r,i=this._keyManager.activeItemIndex||0,a=yb(i,this.options,this.optionGroups);this.panel.nativeElement.scrollTop=(e=i+a,t=this._getItemHeight(),n=this.panel.nativeElement.scrollTop,(r=e*t)n+256?Math.max(0,r-256+t):n)}},{key:\"focus\",value:function(e){this._elementRef.nativeElement.focus(e)}},{key:\"_getOptionIndex\",value:function(e){return this.options.reduce((function(t,n,r){return void 0!==t?t:e===n?r:void 0}),void 0)}},{key:\"_calculateOverlayPosition\",value:function(){var e=this._getItemHeight(),t=this._getItemCount(),n=Math.min(t*e,256),r=t*e-n,i=this.empty?0:this._getOptionIndex(this._selectionModel.selected[0]);i+=yb(i,this.options,this.optionGroups);var a=n/2;this._scrollTop=this._calculateOverlayScroll(i,a,r),this._offsetY=this._calculateOverlayOffsetY(i,a,r),this._checkOverlayWithinViewport(r)}},{key:\"_calculateOverlayScroll\",value:function(e,t,n){var r=this._getItemHeight();return Math.min(Math.max(0,r*e-t+r/2),n)}},{key:\"_getAriaLabel\",value:function(){return this.ariaLabelledby?null:this.ariaLabel||this.placeholder}},{key:\"_getAriaLabelledby\",value:function(){return this.ariaLabelledby?this.ariaLabelledby:this._parentFormField&&this._parentFormField._hasFloatingLabel()&&!this._getAriaLabel()&&this._parentFormField._labelId||null}},{key:\"_getAriaActiveDescendant\",value:function(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}},{key:\"_calculateOverlayOffsetX\",value:function(){var e,t=this.overlayDir.overlayRef.overlayElement.getBoundingClientRect(),n=this._viewportRuler.getViewportSize(),r=this._isRtl(),i=this.multiple?56:32;if(this.multiple)e=40;else{var a=this._selectionModel.selected[0]||this.options.first;e=a&&a.group?32:16}r||(e*=-1);var o=0-(t.left+e-(r?i:0)),s=t.right+e-n.width+(r?0:i);o>0?e+=o+8:s>0&&(e-=s+8),this.overlayDir.offsetX=Math.round(e),this.overlayDir.overlayRef.updatePosition()}},{key:\"_calculateOverlayOffsetY\",value:function(e,t,n){var r,i=this._getItemHeight(),a=(i-this._triggerRect.height)/2,o=Math.floor(256/i);return this._disableOptionCentering?0:(r=0===this._scrollTop?e*i:this._scrollTop===n?(e-(this._getItemCount()-o))*i+(i-(this._getItemCount()*i-256)%i):t-i/2,Math.round(-1*r-a))}},{key:\"_checkOverlayWithinViewport\",value:function(e){var t=this._getItemHeight(),n=this._viewportRuler.getViewportSize(),r=this._triggerRect.top-8,i=n.height-this._triggerRect.bottom-8,a=Math.abs(this._offsetY),o=Math.min(this._getItemCount()*t,256)-a-this._triggerRect.height;o>i?this._adjustPanelUp(o,i):a>r?this._adjustPanelDown(a,r,e):this._transformOrigin=this._getOriginBasedOnOption()}},{key:\"_adjustPanelUp\",value:function(e,t){var n=Math.round(e-t);this._scrollTop-=n,this._offsetY-=n,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop<=0&&(this._scrollTop=0,this._offsetY=0,this._transformOrigin=\"50% bottom 0px\")}},{key:\"_adjustPanelDown\",value:function(e,t,n){var r=Math.round(e-t);if(this._scrollTop+=r,this._offsetY+=r,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop>=n)return this._scrollTop=n,this._offsetY=0,void(this._transformOrigin=\"50% top 0px\")}},{key:\"_getOriginBasedOnOption\",value:function(){var e=this._getItemHeight(),t=(e-this._triggerRect.height)/2;return\"50% \".concat(Math.abs(this._offsetY)-t+e/2,\"px 0px\")}},{key:\"_getItemCount\",value:function(){return this.options.length+this.optionGroups.length}},{key:\"_getItemHeight\",value:function(){return 3*this._triggerFontSize}},{key:\"setDescribedByIds\",value:function(e){this._ariaDescribedby=e.join(\" \")}},{key:\"onContainerClick\",value:function(){this.focus(),this.open()}},{key:\"focused\",get:function(){return this._focused||this._panelOpen}},{key:\"placeholder\",get:function(){return this._placeholder},set:function(e){this._placeholder=e,this.stateChanges.next()}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=mp(e),this.stateChanges.next()}},{key:\"multiple\",get:function(){return this._multiple},set:function(e){if(this._selectionModel)throw Error(\"Cannot change `multiple` mode of select after initialization.\");this._multiple=mp(e)}},{key:\"disableOptionCentering\",get:function(){return this._disableOptionCentering},set:function(e){this._disableOptionCentering=mp(e)}},{key:\"compareWith\",get:function(){return this._compareWith},set:function(e){if(\"function\"!=typeof e)throw Error(\"`compareWith` must be a function.\");this._compareWith=e,this._selectionModel&&this._initializeSelection()}},{key:\"value\",get:function(){return this._value},set:function(e){e!==this._value&&(this.writeValue(e),this._value=e)}},{key:\"typeaheadDebounceInterval\",get:function(){return this._typeaheadDebounceInterval},set:function(e){this._typeaheadDebounceInterval=pp(e)}},{key:\"id\",get:function(){return this._id},set:function(e){this._id=e||this._uid,this.stateChanges.next()}},{key:\"panelOpen\",get:function(){return this._panelOpen}},{key:\"selected\",get:function(){return this.multiple?this._selectionModel.selected:this._selectionModel.selected[0]}},{key:\"triggerValue\",get:function(){if(this.empty)return\"\";if(this._multiple){var e=this._selectionModel.selected.map((function(e){return e.viewValue}));return this._isRtl()&&e.reverse(),e.join(\", \")}return this._selectionModel.selected[0].viewValue}},{key:\"empty\",get:function(){return!this._selectionModel||this._selectionModel.isEmpty()}},{key:\"shouldLabelFloat\",get:function(){return this._panelOpen||!this.empty}}]),n}(BS)).\\u0275fac=function(e){return new(e||PS)(Io(tw),Io(eo),Io(cc),Io(eb),Io(Qs),Io(h_,8),Io(pm,8),Io(Dm,8),Io(EM,8),Io(tf,10),Ao(\"tabindex\"),Io(zS),Io(Xp),Io(VS,8))},PS.\\u0275cmp=bt({type:PS,selectors:[[\"mat-select\"]],contentQueries:function(e,t,n){var r;1&e&&(Pu(n,qS,!0),Pu(n,gb,!0),Pu(n,fb,!0)),2&e&&(Yu(r=Hu())&&(t.customTrigger=r.first),Yu(r=Hu())&&(t.options=r),Yu(r=Hu())&&(t.optionGroups=r))},viewQuery:function(e,t){var n;1&e&&(Iu(TS,!0),Iu(xS,!0),Iu(Jw,!0)),2&e&&(Yu(n=Hu())&&(t.trigger=n.first),Yu(n=Hu())&&(t.panel=n.first),Yu(n=Hu())&&(t.overlayDir=n.first))},hostAttrs:[\"role\",\"listbox\",1,\"mat-select\"],hostVars:19,hostBindings:function(e,t){1&e&&qo(\"keydown\",(function(e){return t._handleKeydown(e)}))(\"focus\",(function(){return t._onFocus()}))(\"blur\",(function(){return t._onBlur()})),2&e&&(Do(\"id\",t.id)(\"tabindex\",t.tabIndex)(\"aria-label\",t._getAriaLabel())(\"aria-labelledby\",t._getAriaLabelledby())(\"aria-required\",t.required.toString())(\"aria-disabled\",t.disabled.toString())(\"aria-invalid\",t.errorState)(\"aria-owns\",t.panelOpen?t._optionIds:null)(\"aria-multiselectable\",t.multiple)(\"aria-describedby\",t._ariaDescribedby||null)(\"aria-activedescendant\",t._getAriaActiveDescendant()),fs(\"mat-select-disabled\",t.disabled)(\"mat-select-invalid\",t.errorState)(\"mat-select-required\",t.required)(\"mat-select-empty\",t.empty))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",tabIndex:\"tabIndex\",ariaLabel:[\"aria-label\",\"ariaLabel\"],id:\"id\",disableOptionCentering:\"disableOptionCentering\",typeaheadDebounceInterval:\"typeaheadDebounceInterval\",placeholder:\"placeholder\",required:\"required\",multiple:\"multiple\",compareWith:\"compareWith\",value:\"value\",panelClass:\"panelClass\",ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],errorStateMatcher:\"errorStateMatcher\",sortComparator:\"sortComparator\"},outputs:{openedChange:\"openedChange\",_openedStream:\"opened\",_closedStream:\"closed\",selectionChange:\"selectionChange\",valueChange:\"valueChange\"},exportAs:[\"matSelect\"],features:[$s([{provide:hM,useExisting:PS},{provide:vb,useExisting:PS}]),Es,Hs],ngContentSelectors:HS,decls:9,vars:9,consts:[[\"cdk-overlay-origin\",\"\",\"aria-hidden\",\"true\",1,\"mat-select-trigger\",3,\"click\"],[\"origin\",\"cdkOverlayOrigin\",\"trigger\",\"\"],[1,\"mat-select-value\",3,\"ngSwitch\"],[\"class\",\"mat-select-placeholder\",4,\"ngSwitchCase\"],[\"class\",\"mat-select-value-text\",3,\"ngSwitch\",4,\"ngSwitchCase\"],[1,\"mat-select-arrow-wrapper\"],[1,\"mat-select-arrow\"],[\"cdk-connected-overlay\",\"\",\"cdkConnectedOverlayLockPosition\",\"\",\"cdkConnectedOverlayHasBackdrop\",\"\",\"cdkConnectedOverlayBackdropClass\",\"cdk-overlay-transparent-backdrop\",3,\"cdkConnectedOverlayScrollStrategy\",\"cdkConnectedOverlayOrigin\",\"cdkConnectedOverlayOpen\",\"cdkConnectedOverlayPositions\",\"cdkConnectedOverlayMinWidth\",\"cdkConnectedOverlayOffsetY\",\"backdropClick\",\"attach\",\"detach\"],[1,\"mat-select-placeholder\"],[1,\"mat-select-value-text\",3,\"ngSwitch\"],[4,\"ngSwitchDefault\"],[4,\"ngSwitchCase\"],[1,\"mat-select-panel-wrap\"],[3,\"ngClass\",\"keydown\"],[\"panel\",\"\"]],template:function(e,t){if(1&e&&(Xo(RS),Ho(0,\"div\",0,1),qo(\"click\",(function(){return t.toggle()})),Ho(3,\"div\",2),Yo(4,DS,2,1,\"span\",3),Yo(5,ES,3,2,\"span\",4),Fo(),Ho(6,\"div\",5),No(7,\"div\",6),Fo(),Fo(),Yo(8,IS,4,10,\"ng-template\",7),qo(\"backdropClick\",(function(){return t.close()}))(\"attach\",(function(){return t._onAttached()}))(\"detach\",(function(){return t.close()}))),2&e){var n=Eo(1);bi(3),jo(\"ngSwitch\",t.empty),bi(1),jo(\"ngSwitchCase\",!0),bi(1),jo(\"ngSwitchCase\",!1),bi(3),jo(\"cdkConnectedOverlayScrollStrategy\",t._scrollStrategy)(\"cdkConnectedOverlayOrigin\",n)(\"cdkConnectedOverlayOpen\",t.panelOpen)(\"cdkConnectedOverlayPositions\",t._positions)(\"cdkConnectedOverlayMinWidth\",null==t._triggerRect?null:t._triggerRect.width)(\"cdkConnectedOverlayOffsetY\",t._offsetY)}},directives:[$w,Pd,jd,Jw,Rd,kd],styles:[\".mat-select{display:inline-block;width:100%;outline:none}.mat-select-trigger{display:inline-table;cursor:pointer;position:relative;box-sizing:border-box}.mat-select-disabled .mat-select-trigger{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-select-value{display:table-cell;max-width:0;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-select-arrow-wrapper{display:table-cell;vertical-align:middle}.mat-form-field-appearance-fill .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-outline .mat-select-arrow-wrapper{transform:translateY(-25%)}.mat-form-field-appearance-standard.mat-form-field-has-label .mat-select:not(.mat-select-empty) .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:none}.mat-select-arrow{width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;margin:0 4px}.mat-select-panel-wrap{flex-basis:100%}.mat-select-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;padding-top:0;padding-bottom:0;max-height:256px;min-width:100%;border-radius:4px}.cdk-high-contrast-active .mat-select-panel{outline:solid 1px}.mat-select-panel .mat-optgroup-label,.mat-select-panel .mat-option{font-size:inherit;line-height:3em;height:3em}.mat-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-form-field-flex{cursor:pointer}.mat-form-field-type-mat-select .mat-form-field-label{width:calc(100% - 18px)}.mat-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable .mat-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-select-placeholder{color:transparent;-webkit-text-fill-color:transparent;transition:none;display:block}\\n\"],encapsulation:2,data:{animation:[FS.transformPanelWrap,FS.transformPanel]},changeDetection:0}),PS),$S=((AS=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:AS}),AS.\\u0275inj=ve({factory:function(e){return new(e||AS)},providers:[WS],imports:[[Nd,Zw,Pb,zy],IM,Pb,zy]}),AS),JS=[\"*\"];function KS(e,t){if(1&e){var n=Wo();Ho(0,\"div\",2),qo(\"click\",(function(){return nn(n),Zo()._onBackdropClicked()})),Fo()}2&e&&fs(\"mat-drawer-shown\",Zo()._isShowingBackdrop())}function ZS(e,t){1&e&&(Ho(0,\"mat-drawer-content\"),ns(1,2),Fo())}var QS=[[[\"mat-drawer\"]],[[\"mat-drawer-content\"]],\"*\"],XS=[\"mat-drawer\",\"mat-drawer-content\",\"*\"];function eL(e,t){if(1&e){var n=Wo();Ho(0,\"div\",2),qo(\"click\",(function(){return nn(n),Zo()._onBackdropClicked()})),Fo()}2&e&&fs(\"mat-drawer-shown\",Zo()._isShowingBackdrop())}function tL(e,t){1&e&&(Ho(0,\"mat-sidenav-content\",3),ns(1,2),Fo())}var nL=[[[\"mat-sidenav\"]],[[\"mat-sidenav-content\"]],\"*\"],rL=[\"mat-sidenav\",\"mat-sidenav-content\",\"*\"],iL={transformDrawer:uv(\"transform\",[fv(\"open, open-instant\",hv({transform:\"none\",visibility:\"visible\"})),fv(\"void\",hv({\"box-shadow\":\"none\",visibility:\"hidden\"})),mv(\"void => open-instant\",cv(\"0ms\")),mv(\"void <=> open, open-instant => void\",cv(\"400ms cubic-bezier(0.25, 0.8, 0.25, 1)\"))])};function aL(e){throw Error(\"A drawer was already declared for 'position=\\\"\".concat(e,\"\\\"'\"))}var oL,sL,lL,uL,cL,dL,hL,fL,mL,pL,_L=new Be(\"MAT_DRAWER_DEFAULT_AUTOSIZE\",{providedIn:\"root\",factory:function(){return!1}}),vL=new Be(\"MAT_DRAWER_CONTAINER\"),gL=((cL=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this,i,a,o))._changeDetectorRef=e,s._container=r,s}return _createClass(n,[{key:\"ngAfterContentInit\",value:function(){var e=this;this._container._contentMarginChanges.subscribe((function(){e._changeDetectorRef.markForCheck()}))}}]),n}(ew)).\\u0275fac=function(e){return new(e||cL)(Io(eo),Io(De((function(){return bL}))),Io(Qs),Io(Xk),Io(cc))},cL.\\u0275cmp=bt({type:cL,selectors:[[\"mat-drawer-content\"]],hostAttrs:[1,\"mat-drawer-content\"],hostVars:4,hostBindings:function(e,t){2&e&&hs(\"margin-left\",t._container._contentMargins.left,\"px\")(\"margin-right\",t._container._contentMargins.right,\"px\")},features:[Es],ngContentSelectors:JS,decls:1,vars:0,template:function(e,t){1&e&&(Xo(),ns(0))},encapsulation:2,changeDetection:0}),cL),yL=((uL=function(){function e(t,n,r,i,a,o,s){var l=this;_classCallCheck(this,e),this._elementRef=t,this._focusTrapFactory=n,this._focusMonitor=r,this._platform=i,this._ngZone=a,this._doc=o,this._container=s,this._elementFocusedBeforeDrawerWasOpened=null,this._enableAnimations=!1,this._position=\"start\",this._mode=\"over\",this._disableClose=!1,this._opened=!1,this._animationStarted=new x,this._animationEnd=new x,this._animationState=\"void\",this.openedChange=new bu(!0),this._destroyed=new x,this.onPositionChanged=new bu,this._modeChanged=new x,this.openedChange.subscribe((function(e){e?(l._doc&&(l._elementFocusedBeforeDrawerWasOpened=l._doc.activeElement),l._takeFocus()):l._restoreFocus()})),this._ngZone.runOutsideAngular((function(){mk(l._elementRef.nativeElement,\"keydown\").pipe(Gd((function(e){return 27===e.keyCode&&!l.disableClose&&!Jm(e)})),Ek(l._destroyed)).subscribe((function(e){return l._ngZone.run((function(){l.close(),e.stopPropagation(),e.preventDefault()}))}))})),this._animationEnd.pipe(Ck((function(e,t){return e.fromState===t.fromState&&e.toState===t.toState}))).subscribe((function(e){var t=e.fromState,n=e.toState;(0===n.indexOf(\"open\")&&\"void\"===t||\"void\"===n&&0===t.indexOf(\"open\"))&&l.openedChange.emit(l._opened)}))}return _createClass(e,[{key:\"_takeFocus\",value:function(){var e=this;this.autoFocus&&this._focusTrap&&this._focusTrap.focusInitialElementWhenReady().then((function(t){t||\"function\"!=typeof e._elementRef.nativeElement.focus||e._elementRef.nativeElement.focus()}))}},{key:\"_restoreFocus\",value:function(){if(this.autoFocus){var e=this._doc&&this._doc.activeElement;e&&this._elementRef.nativeElement.contains(e)&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,this._openedVia):this._elementRef.nativeElement.blur()),this._elementFocusedBeforeDrawerWasOpened=null,this._openedVia=null}}},{key:\"ngAfterContentInit\",value:function(){this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState()}},{key:\"ngAfterContentChecked\",value:function(){this._platform.isBrowser&&(this._enableAnimations=!0)}},{key:\"ngOnDestroy\",value:function(){this._focusTrap&&this._focusTrap.destroy(),this._animationStarted.complete(),this._animationEnd.complete(),this._modeChanged.complete(),this._destroyed.next(),this._destroyed.complete()}},{key:\"open\",value:function(e){return this.toggle(!0,e)}},{key:\"close\",value:function(){return this.toggle(!1)}},{key:\"toggle\",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:!this.opened,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"program\";return this._opened=t,t?(this._animationState=this._enableAnimations?\"open\":\"open-instant\",this._openedVia=n):(this._animationState=\"void\",this._restoreFocus()),this._updateFocusTrapState(),new Promise((function(t){e.openedChange.pipe(cp(1)).subscribe((function(e){return t(e?\"open\":\"close\")}))}))}},{key:\"_updateFocusTrapState\",value:function(){this._focusTrap&&(this._focusTrap.enabled=this.opened&&\"side\"!==this.mode)}},{key:\"_animationStartListener\",value:function(e){this._animationStarted.next(e)}},{key:\"_animationDoneListener\",value:function(e){this._animationEnd.next(e)}},{key:\"position\",get:function(){return this._position},set:function(e){(e=\"end\"===e?\"end\":\"start\")!=this._position&&(this._position=e,this.onPositionChanged.emit())}},{key:\"mode\",get:function(){return this._mode},set:function(e){this._mode=e,this._updateFocusTrapState(),this._modeChanged.next()}},{key:\"disableClose\",get:function(){return this._disableClose},set:function(e){this._disableClose=mp(e)}},{key:\"autoFocus\",get:function(){var e=this._autoFocus;return null==e?\"side\"!==this.mode:e},set:function(e){this._autoFocus=mp(e)}},{key:\"opened\",get:function(){return this._opened},set:function(e){this.toggle(mp(e))}},{key:\"_openedStream\",get:function(){return this.openedChange.pipe(Gd((function(e){return e})),F((function(){})))}},{key:\"openedStart\",get:function(){return this._animationStarted.pipe(Gd((function(e){return e.fromState!==e.toState&&0===e.toState.indexOf(\"open\")})),F((function(){})))}},{key:\"_closedStream\",get:function(){return this.openedChange.pipe(Gd((function(e){return!e})),F((function(){})))}},{key:\"closedStart\",get:function(){return this._animationStarted.pipe(Gd((function(e){return e.fromState!==e.toState&&\"void\"===e.toState})),F((function(){})))}},{key:\"_width\",get:function(){return this._elementRef.nativeElement&&this._elementRef.nativeElement.offsetWidth||0}}]),e}()).\\u0275fac=function(e){return new(e||uL)(Io(Qs),Io(Kp),Io(t_),Io(Cp),Io(cc),Io(Wc,8),Io(vL,8))},uL.\\u0275cmp=bt({type:uL,selectors:[[\"mat-drawer\"]],hostAttrs:[\"tabIndex\",\"-1\",1,\"mat-drawer\"],hostVars:12,hostBindings:function(e,t){1&e&&Go(\"@transform.start\",(function(e){return t._animationStartListener(e)}))(\"@transform.done\",(function(e){return t._animationDoneListener(e)})),2&e&&(Do(\"align\",null),Os(\"@transform\",t._animationState),fs(\"mat-drawer-end\",\"end\"===t.position)(\"mat-drawer-over\",\"over\"===t.mode)(\"mat-drawer-push\",\"push\"===t.mode)(\"mat-drawer-side\",\"side\"===t.mode)(\"mat-drawer-opened\",t.opened))},inputs:{position:\"position\",mode:\"mode\",disableClose:\"disableClose\",autoFocus:\"autoFocus\",opened:\"opened\"},outputs:{openedChange:\"openedChange\",onPositionChanged:\"positionChanged\",_openedStream:\"opened\",openedStart:\"openedStart\",_closedStream:\"closed\",closedStart:\"closedStart\"},exportAs:[\"matDrawer\"],ngContentSelectors:JS,decls:2,vars:0,consts:[[1,\"mat-drawer-inner-container\"]],template:function(e,t){1&e&&(Xo(),Ho(0,\"div\",0),ns(1),Fo())},encapsulation:2,data:{animation:[iL.transformDrawer]},changeDetection:0}),uL),bL=((lL=function(){function e(t,n,r,i,a){var o=this,s=arguments.length>5&&void 0!==arguments[5]&&arguments[5],l=arguments.length>6?arguments[6]:void 0;_classCallCheck(this,e),this._dir=t,this._element=n,this._ngZone=r,this._changeDetectorRef=i,this._animationMode=l,this._drawers=new wu,this.backdropClick=new bu,this._destroyed=new x,this._doCheckSubject=new x,this._contentMargins={left:null,right:null},this._contentMarginChanges=new x,t&&t.change.pipe(Ek(this._destroyed)).subscribe((function(){o._validateDrawers(),o.updateContentMargins()})),a.change().pipe(Ek(this._destroyed)).subscribe((function(){return o.updateContentMargins()})),this._autosize=s}return _createClass(e,[{key:\"ngAfterContentInit\",value:function(){var e=this;this._allDrawers.changes.pipe(sv(this._allDrawers),Ek(this._destroyed)).subscribe((function(t){e._drawers.reset(t.filter((function(t){return!t._container||t._container===e}))),e._drawers.notifyOnChanges()})),this._drawers.changes.pipe(sv(null)).subscribe((function(){e._validateDrawers(),e._drawers.forEach((function(t){e._watchDrawerToggle(t),e._watchDrawerPosition(t),e._watchDrawerMode(t)})),(!e._drawers.length||e._isDrawerOpen(e._start)||e._isDrawerOpen(e._end))&&e.updateContentMargins(),e._changeDetectorRef.markForCheck()})),this._doCheckSubject.pipe(rp(10),Ek(this._destroyed)).subscribe((function(){return e.updateContentMargins()}))}},{key:\"ngOnDestroy\",value:function(){this._contentMarginChanges.complete(),this._doCheckSubject.complete(),this._drawers.destroy(),this._destroyed.next(),this._destroyed.complete()}},{key:\"open\",value:function(){this._drawers.forEach((function(e){return e.open()}))}},{key:\"close\",value:function(){this._drawers.forEach((function(e){return e.close()}))}},{key:\"updateContentMargins\",value:function(){var e=this,t=0,n=0;if(this._left&&this._left.opened)if(\"side\"==this._left.mode)t+=this._left._width;else if(\"push\"==this._left.mode){var r=this._left._width;t+=r,n-=r}if(this._right&&this._right.opened)if(\"side\"==this._right.mode)n+=this._right._width;else if(\"push\"==this._right.mode){var i=this._right._width;n+=i,t-=i}n=n||null,(t=t||null)===this._contentMargins.left&&n===this._contentMargins.right||(this._contentMargins={left:t,right:n},this._ngZone.run((function(){return e._contentMarginChanges.next(e._contentMargins)})))}},{key:\"ngDoCheck\",value:function(){var e=this;this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular((function(){return e._doCheckSubject.next()}))}},{key:\"_watchDrawerToggle\",value:function(e){var t=this;e._animationStarted.pipe(Gd((function(e){return e.fromState!==e.toState})),Ek(this._drawers.changes)).subscribe((function(e){\"open-instant\"!==e.toState&&\"NoopAnimations\"!==t._animationMode&&t._element.nativeElement.classList.add(\"mat-drawer-transition\"),t.updateContentMargins(),t._changeDetectorRef.markForCheck()})),\"side\"!==e.mode&&e.openedChange.pipe(Ek(this._drawers.changes)).subscribe((function(){return t._setContainerClass(e.opened)}))}},{key:\"_watchDrawerPosition\",value:function(e){var t=this;e&&e.onPositionChanged.pipe(Ek(this._drawers.changes)).subscribe((function(){t._ngZone.onMicrotaskEmpty.asObservable().pipe(cp(1)).subscribe((function(){t._validateDrawers()}))}))}},{key:\"_watchDrawerMode\",value:function(e){var t=this;e&&e._modeChanged.pipe(Ek(K(this._drawers.changes,this._destroyed))).subscribe((function(){t.updateContentMargins(),t._changeDetectorRef.markForCheck()}))}},{key:\"_setContainerClass\",value:function(e){var t=this._element.nativeElement.classList,n=\"mat-drawer-container-has-open\";e?t.add(n):t.remove(n)}},{key:\"_validateDrawers\",value:function(){var e=this;this._start=this._end=null,this._drawers.forEach((function(t){\"end\"==t.position?(null!=e._end&&aL(\"end\"),e._end=t):(null!=e._start&&aL(\"start\"),e._start=t)})),this._right=this._left=null,this._dir&&\"rtl\"===this._dir.value?(this._left=this._end,this._right=this._start):(this._left=this._start,this._right=this._end)}},{key:\"_isPushed\",value:function(){return this._isDrawerOpen(this._start)&&\"over\"!=this._start.mode||this._isDrawerOpen(this._end)&&\"over\"!=this._end.mode}},{key:\"_onBackdropClicked\",value:function(){this.backdropClick.emit(),this._closeModalDrawer()}},{key:\"_closeModalDrawer\",value:function(){var e=this;[this._start,this._end].filter((function(t){return t&&!t.disableClose&&e._canHaveBackdrop(t)})).forEach((function(e){return e.close()}))}},{key:\"_isShowingBackdrop\",value:function(){return this._isDrawerOpen(this._start)&&this._canHaveBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._canHaveBackdrop(this._end)}},{key:\"_canHaveBackdrop\",value:function(e){return\"side\"!==e.mode||!!this._backdropOverride}},{key:\"_isDrawerOpen\",value:function(e){return null!=e&&e.opened}},{key:\"start\",get:function(){return this._start}},{key:\"end\",get:function(){return this._end}},{key:\"autosize\",get:function(){return this._autosize},set:function(e){this._autosize=mp(e)}},{key:\"hasBackdrop\",get:function(){return null==this._backdropOverride?!this._start||\"side\"!==this._start.mode||!this._end||\"side\"!==this._end.mode:this._backdropOverride},set:function(e){this._backdropOverride=null==e?null:mp(e)}},{key:\"scrollable\",get:function(){return this._userContent||this._content}}]),e}()).\\u0275fac=function(e){return new(e||lL)(Io(h_,8),Io(Qs),Io(cc),Io(eo),Io(tw),Io(_L),Io(Yy,8))},lL.\\u0275cmp=bt({type:lL,selectors:[[\"mat-drawer-container\"]],contentQueries:function(e,t,n){var r;1&e&&(Pu(n,gL,!0),Pu(n,yL,!0)),2&e&&(Yu(r=Hu())&&(t._content=r.first),Yu(r=Hu())&&(t._allDrawers=r))},viewQuery:function(e,t){var n;1&e&&Iu(gL,!0),2&e&&Yu(n=Hu())&&(t._userContent=n.first)},hostAttrs:[1,\"mat-drawer-container\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"mat-drawer-container-explicit-backdrop\",t._backdropOverride)},inputs:{autosize:\"autosize\",hasBackdrop:\"hasBackdrop\"},outputs:{backdropClick:\"backdropClick\"},exportAs:[\"matDrawerContainer\"],features:[$s([{provide:vL,useExisting:lL}])],ngContentSelectors:XS,decls:4,vars:2,consts:[[\"class\",\"mat-drawer-backdrop\",3,\"mat-drawer-shown\",\"click\",4,\"ngIf\"],[4,\"ngIf\"],[1,\"mat-drawer-backdrop\",3,\"click\"]],template:function(e,t){1&e&&(Xo(QS),Yo(0,KS,1,2,\"div\",0),ns(1),ns(2,1),Yo(3,ZS,2,0,\"mat-drawer-content\",1)),2&e&&(jo(\"ngIf\",t.hasBackdrop),bi(3),jo(\"ngIf\",!t._content))},directives:[Sd,gL],styles:[\".mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\\n\"],encapsulation:2,changeDetection:0}),lL),kL=((sL=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){return _classCallCheck(this,n),t.call(this,e,r,i,a,o)}return n}(gL)).\\u0275fac=function(e){return new(e||sL)(Io(eo),Io(De((function(){return ML}))),Io(Qs),Io(Xk),Io(cc))},sL.\\u0275cmp=bt({type:sL,selectors:[[\"mat-sidenav-content\"]],hostAttrs:[1,\"mat-drawer-content\",\"mat-sidenav-content\"],hostVars:4,hostBindings:function(e,t){2&e&&hs(\"margin-left\",t._container._contentMargins.left,\"px\")(\"margin-right\",t._container._contentMargins.right,\"px\")},features:[Es],ngContentSelectors:JS,decls:1,vars:0,template:function(e,t){1&e&&(Xo(),ns(0))},encapsulation:2,changeDetection:0}),sL),wL=((oL=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e;return _classCallCheck(this,n),(e=t.apply(this,arguments))._fixedInViewport=!1,e._fixedTopGap=0,e._fixedBottomGap=0,e}return _createClass(n,[{key:\"fixedInViewport\",get:function(){return this._fixedInViewport},set:function(e){this._fixedInViewport=mp(e)}},{key:\"fixedTopGap\",get:function(){return this._fixedTopGap},set:function(e){this._fixedTopGap=pp(e)}},{key:\"fixedBottomGap\",get:function(){return this._fixedBottomGap},set:function(e){this._fixedBottomGap=pp(e)}}]),n}(yL)).\\u0275fac=function(e){return CL(e||oL)},oL.\\u0275cmp=bt({type:oL,selectors:[[\"mat-sidenav\"]],hostAttrs:[\"tabIndex\",\"-1\",1,\"mat-drawer\",\"mat-sidenav\"],hostVars:17,hostBindings:function(e,t){2&e&&(Do(\"align\",null),hs(\"top\",t.fixedInViewport?t.fixedTopGap:null,\"px\")(\"bottom\",t.fixedInViewport?t.fixedBottomGap:null,\"px\"),fs(\"mat-drawer-end\",\"end\"===t.position)(\"mat-drawer-over\",\"over\"===t.mode)(\"mat-drawer-push\",\"push\"===t.mode)(\"mat-drawer-side\",\"side\"===t.mode)(\"mat-drawer-opened\",t.opened)(\"mat-sidenav-fixed\",t.fixedInViewport))},inputs:{fixedInViewport:\"fixedInViewport\",fixedTopGap:\"fixedTopGap\",fixedBottomGap:\"fixedBottomGap\"},exportAs:[\"matSidenav\"],features:[Es],ngContentSelectors:JS,decls:2,vars:0,consts:[[1,\"mat-drawer-inner-container\"]],template:function(e,t){1&e&&(Xo(),Ho(0,\"div\",0),ns(1),Fo())},encapsulation:2,data:{animation:[iL.transformDrawer]},changeDetection:0}),oL),CL=cr(wL),ML=((dL=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return n}(bL)).\\u0275fac=function(e){return SL(e||dL)},dL.\\u0275cmp=bt({type:dL,selectors:[[\"mat-sidenav-container\"]],contentQueries:function(e,t,n){var r;1&e&&(Pu(n,kL,!0),Pu(n,wL,!0)),2&e&&(Yu(r=Hu())&&(t._content=r.first),Yu(r=Hu())&&(t._allDrawers=r))},hostAttrs:[1,\"mat-drawer-container\",\"mat-sidenav-container\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"mat-drawer-container-explicit-backdrop\",t._backdropOverride)},exportAs:[\"matSidenavContainer\"],features:[$s([{provide:vL,useExisting:dL}]),Es],ngContentSelectors:rL,decls:4,vars:2,consts:[[\"class\",\"mat-drawer-backdrop\",3,\"mat-drawer-shown\",\"click\",4,\"ngIf\"],[\"cdkScrollable\",\"\",4,\"ngIf\"],[1,\"mat-drawer-backdrop\",3,\"click\"],[\"cdkScrollable\",\"\"]],template:function(e,t){1&e&&(Xo(nL),Yo(0,eL,1,2,\"div\",0),ns(1),ns(2,1),Yo(3,tL,2,0,\"mat-sidenav-content\",1)),2&e&&(jo(\"ngIf\",t.hasBackdrop),bi(3),jo(\"ngIf\",!t._content))},directives:[Sd,kL,ew],styles:[\".mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\\n\"],encapsulation:2,changeDetection:0}),dL),SL=cr(ML),LL=((hL=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:hL}),hL.\\u0275inj=ve({factory:function(e){return new(e||hL)},imports:[[Nd,zy,nw,Mp],zy]}),hL),TL=[\"thumbContainer\"],xL=[\"toggleBar\"],DL=[\"input\"],OL=function(){return{enterDuration:150}},YL=[\"*\"],EL=new Be(\"mat-slide-toggle-default-options\",{providedIn:\"root\",factory:function(){return{disableToggleValue:!1}}}),IL=0,AL={provide:Wh,useExisting:De((function(){return RL})),multi:!0},PL=function e(t,n){_classCallCheck(this,e),this.source=t,this.checked=n},jL=By(Wy(Uy(Vy((function e(t){_classCallCheck(this,e),this._elementRef=t}))),\"accent\")),RL=((pL=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s,l,u){var c;return _classCallCheck(this,n),(c=t.call(this,e))._focusMonitor=r,c._changeDetectorRef=i,c.defaults=s,c._animationMode=l,c._onChange=function(e){},c._onTouched=function(){},c._uniqueId=\"mat-slide-toggle-\".concat(++IL),c._required=!1,c._checked=!1,c.name=null,c.id=c._uniqueId,c.labelPosition=\"after\",c.ariaLabel=null,c.ariaLabelledby=null,c.change=new bu,c.toggleChange=new bu,c.dragChange=new bu,c.tabIndex=parseInt(a)||0,c}return _createClass(n,[{key:\"ngAfterContentInit\",value:function(){var e=this;this._focusMonitor.monitor(this._elementRef,!0).subscribe((function(t){\"keyboard\"===t||\"program\"===t?e._inputElement.nativeElement.focus():t||Promise.resolve().then((function(){return e._onTouched()}))}))}},{key:\"ngOnDestroy\",value:function(){this._focusMonitor.stopMonitoring(this._elementRef)}},{key:\"_onChangeEvent\",value:function(e){e.stopPropagation(),this.toggleChange.emit(),this.defaults.disableToggleValue?this._inputElement.nativeElement.checked=this.checked:(this.checked=this._inputElement.nativeElement.checked,this._emitChangeEvent())}},{key:\"_onInputClick\",value:function(e){e.stopPropagation()}},{key:\"writeValue\",value:function(e){this.checked=!!e}},{key:\"registerOnChange\",value:function(e){this._onChange=e}},{key:\"registerOnTouched\",value:function(e){this._onTouched=e}},{key:\"setDisabledState\",value:function(e){this.disabled=e,this._changeDetectorRef.markForCheck()}},{key:\"focus\",value:function(e){this._focusMonitor.focusVia(this._inputElement,\"keyboard\",e)}},{key:\"toggle\",value:function(){this.checked=!this.checked,this._onChange(this.checked)}},{key:\"_emitChangeEvent\",value:function(){this._onChange(this.checked),this.change.emit(new PL(this,this.checked))}},{key:\"_onLabelTextChange\",value:function(){this._changeDetectorRef.detectChanges()}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=mp(e)}},{key:\"checked\",get:function(){return this._checked},set:function(e){this._checked=mp(e),this._changeDetectorRef.markForCheck()}},{key:\"inputId\",get:function(){return\"\".concat(this.id||this._uniqueId,\"-input\")}}]),n}(jL)).\\u0275fac=function(e){return new(e||pL)(Io(Qs),Io(t_),Io(eo),Ao(\"tabindex\"),Io(cc),Io(EL),Io(Yy,8),Io(h_,8))},pL.\\u0275cmp=bt({type:pL,selectors:[[\"mat-slide-toggle\"]],viewQuery:function(e,t){var n;1&e&&(Iu(TL,!0),Iu(xL,!0),Iu(DL,!0)),2&e&&(Yu(n=Hu())&&(t._thumbEl=n.first),Yu(n=Hu())&&(t._thumbBarEl=n.first),Yu(n=Hu())&&(t._inputElement=n.first))},hostAttrs:[1,\"mat-slide-toggle\"],hostVars:12,hostBindings:function(e,t){2&e&&(Ds(\"id\",t.id),Do(\"tabindex\",t.disabled?null:-1)(\"aria-label\",null)(\"aria-labelledby\",null),fs(\"mat-checked\",t.checked)(\"mat-disabled\",t.disabled)(\"mat-slide-toggle-label-before\",\"before\"==t.labelPosition)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\",name:\"name\",id:\"id\",labelPosition:\"labelPosition\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],required:\"required\",checked:\"checked\"},outputs:{change:\"change\",toggleChange:\"toggleChange\",dragChange:\"dragChange\"},exportAs:[\"matSlideToggle\"],features:[$s([AL]),Es],ngContentSelectors:YL,decls:16,vars:18,consts:[[1,\"mat-slide-toggle-label\"],[\"label\",\"\"],[1,\"mat-slide-toggle-bar\"],[\"toggleBar\",\"\"],[\"type\",\"checkbox\",\"role\",\"switch\",1,\"mat-slide-toggle-input\",\"cdk-visually-hidden\",3,\"id\",\"required\",\"tabIndex\",\"checked\",\"disabled\",\"change\",\"click\"],[\"input\",\"\"],[1,\"mat-slide-toggle-thumb-container\"],[\"thumbContainer\",\"\"],[1,\"mat-slide-toggle-thumb\"],[\"mat-ripple\",\"\",1,\"mat-slide-toggle-ripple\",\"mat-focus-indicator\",3,\"matRippleTrigger\",\"matRippleDisabled\",\"matRippleCentered\",\"matRippleRadius\",\"matRippleAnimation\"],[1,\"mat-ripple-element\",\"mat-slide-toggle-persistent-ripple\"],[1,\"mat-slide-toggle-content\",3,\"cdkObserveContent\"],[\"labelContent\",\"\"],[2,\"display\",\"none\"]],template:function(e,t){if(1&e&&(Xo(),Ho(0,\"label\",0,1),Ho(2,\"div\",2,3),Ho(4,\"input\",4,5),qo(\"change\",(function(e){return t._onChangeEvent(e)}))(\"click\",(function(e){return t._onInputClick(e)})),Fo(),Ho(6,\"div\",6,7),No(8,\"div\",8),Ho(9,\"div\",9),No(10,\"div\",10),Fo(),Fo(),Fo(),Ho(11,\"span\",11,12),qo(\"cdkObserveContent\",(function(){return t._onLabelTextChange()})),Ho(13,\"span\",13),Ls(14,\"\\xa0\"),Fo(),ns(15),Fo(),Fo()),2&e){var n=Eo(1),r=Eo(12);Do(\"for\",t.inputId),bi(2),fs(\"mat-slide-toggle-bar-no-side-margin\",!r.textContent||!r.textContent.trim()),bi(2),jo(\"id\",t.inputId)(\"required\",t.required)(\"tabIndex\",t.tabIndex)(\"checked\",t.checked)(\"disabled\",t.disabled),Do(\"name\",t.name)(\"aria-checked\",t.checked.toString())(\"aria-label\",t.ariaLabel)(\"aria-labelledby\",t.ariaLabelledby),bi(5),jo(\"matRippleTrigger\",n)(\"matRippleDisabled\",t.disableRipple||t.disabled)(\"matRippleCentered\",!0)(\"matRippleRadius\",20)(\"matRippleAnimation\",yu(17,OL))}},directives:[sb,Hp],styles:[\".mat-slide-toggle{display:inline-block;height:24px;max-width:100%;line-height:24px;white-space:nowrap;outline:none;-webkit-tap-highlight-color:transparent}.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(16px, 0, 0)}[dir=rtl] .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(-16px, 0, 0)}.mat-slide-toggle.mat-disabled{opacity:.38}.mat-slide-toggle.mat-disabled .mat-slide-toggle-label,.mat-slide-toggle.mat-disabled .mat-slide-toggle-thumb-container{cursor:default}.mat-slide-toggle-label{display:flex;flex:1;flex-direction:row;align-items:center;height:inherit;cursor:pointer}.mat-slide-toggle-content{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-slide-toggle-label-before .mat-slide-toggle-label{order:1}.mat-slide-toggle-label-before .mat-slide-toggle-bar{order:2}[dir=rtl] .mat-slide-toggle-label-before .mat-slide-toggle-bar,.mat-slide-toggle-bar{margin-right:8px;margin-left:0}[dir=rtl] .mat-slide-toggle-bar,.mat-slide-toggle-label-before .mat-slide-toggle-bar{margin-left:8px;margin-right:0}.mat-slide-toggle-bar-no-side-margin{margin-left:0;margin-right:0}.mat-slide-toggle-thumb-container{position:absolute;z-index:1;width:20px;height:20px;top:-3px;left:0;transform:translate3d(0, 0, 0);transition:all 80ms linear;transition-property:transform}._mat-animation-noopable .mat-slide-toggle-thumb-container{transition:none}[dir=rtl] .mat-slide-toggle-thumb-container{left:auto;right:0}.mat-slide-toggle-thumb{height:20px;width:20px;border-radius:50%}.mat-slide-toggle-bar{position:relative;width:36px;height:14px;flex-shrink:0;border-radius:8px}.mat-slide-toggle-input{bottom:0;left:10px}[dir=rtl] .mat-slide-toggle-input{left:auto;right:10px}.mat-slide-toggle-bar,.mat-slide-toggle-thumb{transition:all 80ms linear;transition-property:background-color;transition-delay:50ms}._mat-animation-noopable .mat-slide-toggle-bar,._mat-animation-noopable .mat-slide-toggle-thumb{transition:none}.mat-slide-toggle .mat-slide-toggle-ripple{position:absolute;top:calc(50% - 20px);left:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}.mat-slide-toggle .mat-slide-toggle-ripple .mat-ripple-element:not(.mat-slide-toggle-persistent-ripple){opacity:.12}.mat-slide-toggle-persistent-ripple{width:100%;height:100%;transform:none}.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:.04}.mat-slide-toggle:not(.mat-disabled).cdk-keyboard-focused .mat-slide-toggle-persistent-ripple{opacity:.12}.mat-slide-toggle-persistent-ripple,.mat-slide-toggle.mat-disabled .mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:0}@media(hover: none){.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{display:none}}.cdk-high-contrast-active .mat-slide-toggle-thumb,.cdk-high-contrast-active .mat-slide-toggle-bar{border:1px solid}.cdk-high-contrast-active .mat-slide-toggle.cdk-keyboard-focused .mat-slide-toggle-bar{outline:2px dotted;outline-offset:5px}\\n\"],encapsulation:2,changeDetection:0}),pL),HL=((mL=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:mL}),mL.\\u0275inj=ve({factory:function(e){return new(e||mL)}}),mL),FL=((fL=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:fL}),fL.\\u0275inj=ve({factory:function(e){return new(e||fL)},imports:[[HL,lb,zy,Fp],HL,zy]}),fL),NL={};function zL(){for(var e=arguments.length,t=new Array(e),n=0;n` elements explicitly or just place content inside of a `` for a single row.\")}()}}]),n}(ZL)).\\u0275fac=function(e){return new(e||UL)(Io(Qs),Io(Cp),Io(Wc))},UL.\\u0275cmp=bt({type:UL,selectors:[[\"mat-toolbar\"]],contentQueries:function(e,t,n){var r;1&e&&Pu(n,QL,!0),2&e&&Yu(r=Hu())&&(t._toolbarRows=r)},hostAttrs:[1,\"mat-toolbar\"],hostVars:4,hostBindings:function(e,t){2&e&&fs(\"mat-toolbar-multiple-rows\",t._toolbarRows.length>0)(\"mat-toolbar-single-row\",0===t._toolbarRows.length)},inputs:{color:\"color\"},exportAs:[\"matToolbar\"],features:[Es],ngContentSelectors:KL,decls:2,vars:0,template:function(e,t){1&e&&(Xo(JL),ns(0),ns(1,1))},styles:[\".cdk-high-contrast-active .mat-toolbar{outline:solid 1px}.mat-toolbar-row,.mat-toolbar-single-row{display:flex;box-sizing:border-box;padding:0 16px;width:100%;flex-direction:row;align-items:center;white-space:nowrap}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}\\n\"],encapsulation:2,changeDetection:0}),UL),eT=((WL=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:WL}),WL.\\u0275inj=ve({factory:function(e){return new(e||WL)},imports:[[zy],zy]}),WL),tT=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this))._value=e,r}return _createClass(n,[{key:\"_subscribe\",value:function(e){var t=_get(_getPrototypeOf(n.prototype),\"_subscribe\",this).call(this,e);return t&&!t.closed&&e.next(this._value),t}},{key:\"getValue\",value:function(){if(this.hasError)throw this.thrownError;if(this.closed)throw new S;return this._value}},{key:\"next\",value:function(e){_get(_getPrototypeOf(n.prototype),\"next\",this).call(this,this._value=e)}},{key:\"value\",get:function(){return this.getValue()}}]),n}(x),nT=new w(g);function rT(){return nT}function iT(){for(var e=arguments.length,t=new Array(e),n=0;n0){var o=a.indexOf(n);-1!==o&&a.splice(o,1)}}},{key:\"notifyComplete\",value:function(){}},{key:\"_next\",value:function(e){if(0===this.toRespond.length){var t=[e].concat(_toConsumableArray(this.values));this.project?this._tryProject(t):this.destination.next(t)}}},{key:\"_tryProject\",value:function(e){var t;try{t=this.project.apply(this,e)}catch(n){return void this.destination.error(n)}this.destination.next(t)}}]),n}(H),sT=[\"aria-label\",\"\\u0417\\u0430\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\"];function lT(e,t){if(1&e){var n=Wo();Ho(0,\"button\",1),iu(1,sT),qo(\"click\",(function(){return nn(n),Zo().closeHandler()})),Ho(2,\"span\",2),Ls(3,\"\\xd7\"),Fo(),Fo()}}var uT,cT,dT=[\"*\"];function hT(e,t){if(1&e){var n=Wo();Ho(0,\"li\",7),qo(\"click\",(function(){nn(n);var e=t.$implicit,r=Zo(2);return r.select(e.id,r.NgbSlideEventSource.INDICATOR)})),Fo()}if(2&e){var r=t.$implicit,i=Zo(2);fs(\"active\",r.id===i.activeId),jo(\"id\",r.id)}}function fT(e,t){if(1&e&&(Ho(0,\"ol\",5),Yo(1,hT,1,3,\"li\",6),Fo()),2&e){var n=Zo();bi(1),jo(\"ngForOf\",n.slides)}}function mT(e,t){}function pT(e,t){if(1&e&&(Ho(0,\"div\",8),Yo(1,mT,0,0,\"ng-template\",9),Fo()),2&e){var n=t.$implicit,r=Zo();fs(\"active\",n.id===r.activeId),bi(1),jo(\"ngTemplateOutlet\",n.tplRef)}}function _T(e,t){if(1&e){var n=Wo();Ho(0,\"a\",10),qo(\"click\",(function(){nn(n);var e=Zo();return e.prev(e.NgbSlideEventSource.ARROW_LEFT)})),No(1,\"span\",11),Ho(2,\"span\",12),ru(3,uT),Fo(),Fo()}}function vT(e,t){if(1&e){var n=Wo();Ho(0,\"a\",13),qo(\"click\",(function(){nn(n);var e=Zo();return e.next(e.NgbSlideEventSource.ARROW_RIGHT)})),No(1,\"span\",14),Ho(2,\"span\",12),ru(3,cT),Fo(),Fo()}}function gT(e){return null!=e}uT=\"Previous\",cT=\"Next\",\"Previous month\",\"Previous month\",\"Next month\",\"Next month\",\"Select month\",\"Select month\",\"Select year\",\"Select year\",\"\\xAB\\xAB\",\"\\xAB\",\"\\xBB\",\"\\xBB\\xBB\",\"First\",\"Previous\",\"Next\",\"Last\",\"\" + \"\\ufffd0\\ufffd\" + \"%\",\"HH\",\"Hours\",\"MM\",\"Minutes\",\"Increment hours\",\"Decrement hours\",\"Increment minutes\",\"Decrement minutes\",\"SS\",\"Seconds\",\"Increment seconds\",\"Decrement seconds\",\"\" + \"\\ufffd0\\ufffd\" + \"\",\"\" + \"\\ufffd0\\ufffd\" + \"\",\"\\u0417\\u0430\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\",\"undefined\"==typeof Element||Element.prototype.closest||(Element.prototype.matches||(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector),Element.prototype.closest=function(e){var t=this;if(!document.documentElement.contains(t))return null;do{if(t.matches(e))return t;t=t.parentElement||t.parentNode}while(null!==t&&1===t.nodeType);return null});var yT,bT,kT,wT,CT,MT,ST,LT,TT,xT,DT,OT=((LT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:LT}),LT.\\u0275inj=ve({factory:function(e){return new(e||LT)},imports:[[Nd]]}),LT),YT=((ST=function e(){_classCallCheck(this,e),this.dismissible=!0,this.type=\"warning\"}).\\u0275prov=_e({token:ST,factory:ST.\\u0275fac=function(e){return new(e||ST)},providedIn:\"root\"}),ST.ngInjectableDef=_e({factory:function(){return new ST},token:ST,providedIn:\"root\"}),ST),ET=((MT=function(){function e(t,n,r){_classCallCheck(this,e),this._renderer=n,this._element=r,this.close=new bu,this.dismissible=t.dismissible,this.type=t.type}return _createClass(e,[{key:\"closeHandler\",value:function(){this.close.emit(null)}},{key:\"ngOnChanges\",value:function(e){var t=e.type;t&&!t.firstChange&&(this._renderer.removeClass(this._element.nativeElement,\"alert-\".concat(t.previousValue)),this._renderer.addClass(this._element.nativeElement,\"alert-\".concat(t.currentValue)))}},{key:\"ngOnInit\",value:function(){this._renderer.addClass(this._element.nativeElement,\"alert-\".concat(this.type))}}]),e}()).\\u0275fac=function(e){return new(e||MT)(Io(YT),Io(nl),Io(Qs))},MT.\\u0275cmp=bt({type:MT,selectors:[[\"ngb-alert\"]],hostAttrs:[\"role\",\"alert\",1,\"alert\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"alert-dismissible\",t.dismissible)},inputs:{dismissible:\"dismissible\",type:\"type\"},outputs:{close:\"close\"},features:[Hs],ngContentSelectors:dT,decls:2,vars:1,consts:[[\"type\",\"button\",\"class\",\"close\",\"aria-label\",\"Close\",3,\"click\",4,\"ngIf\"],[\"type\",\"button\",1,\"close\",3,\"click\",6,\"aria-label\"],[\"aria-hidden\",\"true\"]],template:function(e,t){1&e&&(Xo(),ns(0),Yo(1,lT,4,0,\"button\",0)),2&e&&(bi(1),jo(\"ngIf\",t.dismissible))},directives:[Sd],styles:[\"ngb-alert{display:block}\"],encapsulation:2,changeDetection:0}),MT),IT=((CT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:CT}),CT.\\u0275inj=ve({factory:function(e){return new(e||CT)},imports:[[Nd]]}),CT),AT=((wT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:wT}),wT.\\u0275inj=ve({factory:function(e){return new(e||wT)}}),wT),PT=((kT=function e(){_classCallCheck(this,e),this.interval=5e3,this.wrap=!0,this.keyboard=!0,this.pauseOnHover=!0,this.showNavigationArrows=!0,this.showNavigationIndicators=!0}).\\u0275prov=_e({token:kT,factory:kT.\\u0275fac=function(e){return new(e||kT)},providedIn:\"root\"}),kT.ngInjectableDef=_e({factory:function(){return new kT},token:kT,providedIn:\"root\"}),kT),jT=0,RT=((bT=function e(t){_classCallCheck(this,e),this.tplRef=t,this.id=\"ngb-slide-\".concat(jT++)}).\\u0275fac=function(e){return new(e||bT)(Io(wl))},bT.\\u0275dir=Lt({type:bT,selectors:[[\"ng-template\",\"ngbSlide\",\"\"]],inputs:{id:\"id\"}}),bT),HT=((yT=function(){function e(t,n,r,i){_classCallCheck(this,e),this._platformId=n,this._ngZone=r,this._cd=i,this.NgbSlideEventSource=NT,this._destroy$=new x,this._interval$=new tT(0),this._mouseHover$=new tT(!1),this._pauseOnHover$=new tT(!1),this._pause$=new tT(!1),this._wrap$=new tT(!1),this.slide=new bu,this.interval=t.interval,this.wrap=t.wrap,this.keyboard=t.keyboard,this.pauseOnHover=t.pauseOnHover,this.showNavigationArrows=t.showNavigationArrows,this.showNavigationIndicators=t.showNavigationIndicators}return _createClass(e,[{key:\"mouseEnter\",value:function(){this._mouseHover$.next(!0)}},{key:\"mouseLeave\",value:function(){this._mouseHover$.next(!1)}},{key:\"ngAfterContentInit\",value:function(){var e=this;zd(this._platformId)&&this._ngZone.runOutsideAngular((function(){var t=zL(e.slide.pipe(F((function(e){return e.current})),sv(e.activeId)),e._wrap$,e.slides.changes.pipe(sv(null))).pipe(F((function(t){var n=_slicedToArray(t,2),r=n[0],i=n[1],a=e.slides.toArray(),o=e._getSlideIdxById(r);return i?a.length>1:o0?Dk(e,e):nT})),Ek(e._destroy$)).subscribe((function(){return e._ngZone.run((function(){return e.next(NT.TIMER)}))}))})),this.slides.changes.pipe(Ek(this._destroy$)).subscribe((function(){return e._cd.markForCheck()}))}},{key:\"ngAfterContentChecked\",value:function(){var e=this._getSlideById(this.activeId);this.activeId=e?e.id:this.slides.length?this.slides.first.id:null}},{key:\"ngOnDestroy\",value:function(){this._destroy$.next()}},{key:\"select\",value:function(e,t){this._cycleToSelected(e,this._getSlideEventDirection(this.activeId,e),t)}},{key:\"prev\",value:function(e){this._cycleToSelected(this._getPrevSlide(this.activeId),FT.RIGHT,e)}},{key:\"next\",value:function(e){this._cycleToSelected(this._getNextSlide(this.activeId),FT.LEFT,e)}},{key:\"pause\",value:function(){this._pause$.next(!0)}},{key:\"cycle\",value:function(){this._pause$.next(!1)}},{key:\"_cycleToSelected\",value:function(e,t,n){var r=this._getSlideById(e);r&&r.id!==this.activeId&&(this.slide.emit({prev:this.activeId,current:r.id,direction:t,paused:this._pause$.value,source:n}),this.activeId=r.id),this._cd.markForCheck()}},{key:\"_getSlideEventDirection\",value:function(e,t){return this._getSlideIdxById(e)>this._getSlideIdxById(t)?FT.RIGHT:FT.LEFT}},{key:\"_getSlideById\",value:function(e){return this.slides.find((function(t){return t.id===e}))}},{key:\"_getSlideIdxById\",value:function(e){return this.slides.toArray().indexOf(this._getSlideById(e))}},{key:\"_getNextSlide\",value:function(e){var t=this.slides.toArray(),n=this._getSlideIdxById(e);return n===t.length-1?this.wrap?t[0].id:t[t.length-1].id:t[n+1].id}},{key:\"_getPrevSlide\",value:function(e){var t=this.slides.toArray(),n=this._getSlideIdxById(e);return 0===n?this.wrap?t[t.length-1].id:t[0].id:t[n-1].id}},{key:\"interval\",set:function(e){this._interval$.next(e)},get:function(){return this._interval$.value}},{key:\"wrap\",set:function(e){this._wrap$.next(e)},get:function(){return this._wrap$.value}},{key:\"pauseOnHover\",set:function(e){this._pauseOnHover$.next(e)},get:function(){return this._pauseOnHover$.value}}]),e}()).\\u0275fac=function(e){return new(e||yT)(Io(PT),Io($u),Io(cc),Io(eo))},yT.\\u0275cmp=bt({type:yT,selectors:[[\"ngb-carousel\"]],contentQueries:function(e,t,n){var r;1&e&&Pu(n,RT,!1),2&e&&Yu(r=Hu())&&(t.slides=r)},hostAttrs:[\"tabIndex\",\"0\",1,\"carousel\",\"slide\"],hostVars:2,hostBindings:function(e,t){1&e&&qo(\"keydown.arrowLeft\",(function(){return t.keyboard&&t.prev(t.NgbSlideEventSource.ARROW_LEFT)}))(\"keydown.arrowRight\",(function(){return t.keyboard&&t.next(t.NgbSlideEventSource.ARROW_RIGHT)}))(\"mouseenter\",(function(){return t.mouseEnter()}))(\"mouseleave\",(function(){return t.mouseLeave()})),2&e&&hs(\"display\",\"block\")},inputs:{interval:\"interval\",wrap:\"wrap\",keyboard:\"keyboard\",pauseOnHover:\"pauseOnHover\",showNavigationArrows:\"showNavigationArrows\",showNavigationIndicators:\"showNavigationIndicators\",activeId:\"activeId\"},outputs:{slide:\"slide\"},exportAs:[\"ngbCarousel\"],decls:5,vars:4,consts:[[\"class\",\"carousel-indicators\",4,\"ngIf\"],[1,\"carousel-inner\"],[\"class\",\"carousel-item\",3,\"active\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"carousel-control-prev\",\"role\",\"button\",3,\"click\",4,\"ngIf\"],[\"class\",\"carousel-control-next\",\"role\",\"button\",3,\"click\",4,\"ngIf\"],[1,\"carousel-indicators\"],[3,\"id\",\"active\",\"click\",4,\"ngFor\",\"ngForOf\"],[3,\"id\",\"click\"],[1,\"carousel-item\"],[3,\"ngTemplateOutlet\"],[\"role\",\"button\",1,\"carousel-control-prev\",3,\"click\"],[\"aria-hidden\",\"true\",1,\"carousel-control-prev-icon\"],[1,\"sr-only\"],[\"role\",\"button\",1,\"carousel-control-next\",3,\"click\"],[\"aria-hidden\",\"true\",1,\"carousel-control-next-icon\"]],template:function(e,t){1&e&&(Yo(0,fT,2,1,\"ol\",0),Ho(1,\"div\",1),Yo(2,pT,2,3,\"div\",2),Fo(),Yo(3,_T,4,0,\"a\",3),Yo(4,vT,4,0,\"a\",4)),2&e&&(jo(\"ngIf\",t.showNavigationIndicators),bi(2),jo(\"ngForOf\",t.slides),bi(1),jo(\"ngIf\",t.showNavigationArrows),bi(1),jo(\"ngIf\",t.showNavigationArrows))},directives:[Sd,Cd,Fd],encapsulation:2,changeDetection:0}),yT),FT={LEFT:\"left\",RIGHT:\"right\"},NT={TIMER:\"timer\",ARROW_LEFT:\"arrowLeft\",ARROW_RIGHT:\"arrowRight\",INDICATOR:\"indicator\"},zT=((DT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:DT}),DT.\\u0275inj=ve({factory:function(e){return new(e||DT)},imports:[[Nd]]}),DT),VT=((xT=function e(){_classCallCheck(this,e),this.collapsed=!1}).\\u0275fac=function(e){return new(e||xT)},xT.\\u0275dir=Lt({type:xT,selectors:[[\"\",\"ngbCollapse\",\"\"]],hostVars:4,hostBindings:function(e,t){2&e&&fs(\"collapse\",!0)(\"show\",!t.collapsed)},inputs:{collapsed:[\"ngbCollapse\",\"collapsed\"]},exportAs:[\"ngbCollapse\"]}),xT),WT=((TT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:TT}),TT.\\u0275inj=ve({factory:function(e){return new(e||TT)}}),TT),UT=function(){var e={Tab:9,Enter:13,Escape:27,Space:32,PageUp:33,PageDown:34,End:35,Home:36,ArrowLeft:37,ArrowUp:38,ArrowRight:39,ArrowDown:40};return e[e.Tab]=\"Tab\",e[e.Enter]=\"Enter\",e[e.Escape]=\"Escape\",e[e.Space]=\"Space\",e[e.PageUp]=\"PageUp\",e[e.PageDown]=\"PageDown\",e[e.End]=\"End\",e[e.Home]=\"Home\",e[e.ArrowLeft]=\"ArrowLeft\",e[e.ArrowUp]=\"ArrowUp\",e[e.ArrowRight]=\"ArrowRight\",e[e.ArrowDown]=\"ArrowDown\",e}();\"undefined\"!=typeof navigator&&navigator.userAgent&&navigator;var BT=[\"a[href]\",\"button:not([disabled])\",'input:not([disabled]):not([type=\"hidden\"])',\"select:not([disabled])\",\"textarea:not([disabled])\",\"[contenteditable]\",'[tabindex]:not([tabindex=\"-1\"])'].join(\", \");function qT(e){var t=Array.from(e.querySelectorAll(BT)).filter((function(e){return-1!==e.tabIndex}));return[t[0],t[t.length-1]]}var GT,$T,JT,KT,ZT,QT,XT,ex,tx,nx,rx,ix,ax,ox,sx,lx,ux,cx,dx,hx=((JT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:JT}),JT.\\u0275inj=ve({factory:function(e){return new(e||JT)},imports:[[Nd,Gm]]}),JT),fx=(($T=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:$T}),$T.\\u0275inj=ve({factory:function(e){return new(e||$T)}}),$T),mx=((GT=function e(){_classCallCheck(this,e),this.backdrop=!0,this.keyboard=!0}).\\u0275prov=_e({token:GT,factory:GT.\\u0275fac=function(e){return new(e||GT)},providedIn:\"root\"}),GT.ngInjectableDef=_e({factory:function(){return new GT},token:GT,providedIn:\"root\"}),GT),px=function e(t,n,r){_classCallCheck(this,e),this.nodes=t,this.viewRef=n,this.componentRef=r},_x=function(){},vx=((ZT=function(){function e(t){_classCallCheck(this,e),this._document=t}return _createClass(e,[{key:\"compensate\",value:function(){return this._isPresent()?this._adjustBody(this._getWidth()):_x}},{key:\"_adjustBody\",value:function(e){var t=this._document.body,n=t.style.paddingRight,r=parseFloat(window.getComputedStyle(t)[\"padding-right\"]);return t.style[\"padding-right\"]=\"\".concat(r+e,\"px\"),function(){return t.style[\"padding-right\"]=n}}},{key:\"_isPresent\",value:function(){var e=this._document.body.getBoundingClientRect();return e.left+e.right3&&void 0!==arguments[3]&&arguments[3];s._ngZone.runOutsideAngular((function(){var e=mk(t,\"focusin\").pipe(Ek(n),F((function(e){return e.target})));mk(t,\"keydown\").pipe(Ek(n),Gd((function(e){return e.which===UT.Tab})),iT(e)).subscribe((function(e){var n=_slicedToArray(e,2),r=n[0],i=n[1],a=_slicedToArray(qT(t),2),o=a[0],s=a[1];i!==o&&i!==t||!r.shiftKey||(s.focus(),r.preventDefault()),i!==s||r.shiftKey||(o.focus(),r.preventDefault())})),r&&mk(t,\"click\").pipe(Ek(n),iT(e),F((function(e){return e[1]}))).subscribe((function(e){return e.focus()}))}))})(0,e.location.nativeElement,s._activeWindowCmptHasChanged),s._revertAriaHidden(),s._setAriaHidden(e.location.nativeElement)}}))}return _createClass(e,[{key:\"open\",value:function(e,t,n,r){var i=this,a=gT(r.container)?this._document.querySelector(r.container):this._document.body,o=this._rendererFactory.createRenderer(null,null),s=this._scrollBar.compensate(),l=function(){i._modalRefs.length||(o.removeClass(i._document.body,\"modal-open\"),i._revertAriaHidden())};if(!a)throw new Error('The specified modal container \"'.concat(r.container||\"body\",'\" was not found in the DOM.'));var u=new yx,c=this._getContentRef(e,r.injector||t,n,u,r),d=!1!==r.backdrop?this._attachBackdrop(e,a):null,h=this._attachWindowComponent(e,a,c),f=new bx(h,c,d,r.beforeDismiss);return this._registerModalRef(f),this._registerWindowCmpt(h),f.result.then(s,s),f.result.then(l,l),u.close=function(e){f.close(e)},u.dismiss=function(e){f.dismiss(e)},this._applyWindowOptions(h.instance,r),1===this._modalRefs.length&&o.addClass(this._document.body,\"modal-open\"),d&&d.instance&&this._applyBackdropOptions(d.instance,r),f}},{key:\"dismissAll\",value:function(e){this._modalRefs.forEach((function(t){return t.dismiss(e)}))}},{key:\"hasOpenModals\",value:function(){return this._modalRefs.length>0}},{key:\"_attachBackdrop\",value:function(e,t){var n=e.resolveComponentFactory(gx).create(this._injector);return this._applicationRef.attachView(n.hostView),t.appendChild(n.location.nativeElement),n}},{key:\"_attachWindowComponent\",value:function(e,t,n){var r=e.resolveComponentFactory(wx).create(this._injector,n.nodes);return this._applicationRef.attachView(r.hostView),t.appendChild(r.location.nativeElement),r}},{key:\"_applyWindowOptions\",value:function(e,t){this._windowAttributes.forEach((function(n){gT(t[n])&&(e[n]=t[n])}))}},{key:\"_applyBackdropOptions\",value:function(e,t){this._backdropAttributes.forEach((function(n){gT(t[n])&&(e[n]=t[n])}))}},{key:\"_getContentRef\",value:function(e,t,n,r,i){return n?n instanceof wl?this._createFromTemplateRef(n,r):\"string\"==typeof n?this._createFromString(n):this._createFromComponent(e,t,n,r,i):new px([])}},{key:\"_createFromTemplateRef\",value:function(e,t){var n=e.createEmbeddedView({$implicit:t,close:function(e){t.close(e)},dismiss:function(e){t.dismiss(e)}});return this._applicationRef.attachView(n),new px([n.rootNodes],n)}},{key:\"_createFromString\",value:function(e){var t=this._document.createTextNode(\"\".concat(e));return new px([[t]])}},{key:\"_createFromComponent\",value:function(e,t,n,r,i){var a=e.resolveComponentFactory(n),o=vo.create({providers:[{provide:yx,useValue:r}],parent:t}),s=a.create(o),l=s.location.nativeElement;return i.scrollable&&l.classList.add(\"component-host-scrollable\"),this._applicationRef.attachView(s.hostView),new px([[l]],s.hostView,s)}},{key:\"_setAriaHidden\",value:function(e){var t=this,n=e.parentElement;n&&e!==this._document.body&&(Array.from(n.children).forEach((function(n){n!==e&&\"SCRIPT\"!==n.nodeName&&(t._ariaHiddenValues.set(n,n.getAttribute(\"aria-hidden\")),n.setAttribute(\"aria-hidden\",\"true\"))})),this._setAriaHidden(n))}},{key:\"_revertAriaHidden\",value:function(){this._ariaHiddenValues.forEach((function(e,t){e?t.setAttribute(\"aria-hidden\",e):t.removeAttribute(\"aria-hidden\")})),this._ariaHiddenValues.clear()}},{key:\"_registerModalRef\",value:function(e){var t=this,n=function(){var n=t._modalRefs.indexOf(e);n>-1&&t._modalRefs.splice(n,1)};this._modalRefs.push(e),e.result.then(n,n)}},{key:\"_registerWindowCmpt\",value:function(e){var t=this;this._windowCmpts.push(e),this._activeWindowCmptHasChanged.next(),e.onDestroy((function(){var n=t._windowCmpts.indexOf(e);n>-1&&(t._windowCmpts.splice(n,1),t._activeWindowCmptHasChanged.next())}))}}]),e}()).\\u0275fac=function(e){return new(e||ux)(et(Oc),et(vo),et(Wc),et(vx),et(el),et(cc))},ux.\\u0275prov=_e({token:ux,factory:ux.\\u0275fac,providedIn:\"root\"}),ux.ngInjectableDef=_e({factory:function(){return new ux(et(Oc),et(qe),et(Wc),et(vx),et(el),et(cc))},token:ux,providedIn:\"root\"}),ux),Mx=((lx=function(){function e(t,n,r,i){_classCallCheck(this,e),this._moduleCFR=t,this._injector=n,this._modalStack=r,this._config=i}return _createClass(e,[{key:\"open\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=Object.assign({},this._config,t);return this._modalStack.open(this._moduleCFR,this._injector,e,n)}},{key:\"dismissAll\",value:function(e){this._modalStack.dismissAll(e)}},{key:\"hasOpenModals\",value:function(){return this._modalStack.hasOpenModals()}}]),e}()).\\u0275fac=function(e){return new(e||lx)(et(Zs),et(vo),et(Cx),et(mx))},lx.\\u0275prov=_e({token:lx,factory:lx.\\u0275fac,providedIn:\"root\"}),lx.ngInjectableDef=_e({factory:function(){return new lx(et(Zs),et(qe),et(Cx),et(mx))},token:lx,providedIn:\"root\"}),lx),Sx=((sx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:sx}),sx.\\u0275inj=ve({factory:function(e){return new(e||sx)},providers:[Mx]}),sx),Lx=((ox=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:ox}),ox.\\u0275inj=ve({factory:function(e){return new(e||ox)},imports:[[Nd]]}),ox),Tx=((ax=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:ax}),ax.\\u0275inj=ve({factory:function(e){return new(e||ax)},imports:[[Nd]]}),ax),xx=((ix=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:ix}),ix.\\u0275inj=ve({factory:function(e){return new(e||ix)},imports:[[Nd]]}),ix),Dx=((rx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:rx}),rx.\\u0275inj=ve({factory:function(e){return new(e||rx)},imports:[[Nd]]}),rx),Ox=((nx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:nx}),nx.\\u0275inj=ve({factory:function(e){return new(e||nx)},imports:[[Nd]]}),nx),Yx=((tx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:tx}),tx.\\u0275inj=ve({factory:function(e){return new(e||tx)},imports:[[Nd]]}),tx),Ex=((ex=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:ex}),ex.\\u0275inj=ve({factory:function(e){return new(e||ex)},imports:[[Nd]]}),ex),Ix=((XT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:XT}),XT.\\u0275inj=ve({factory:function(e){return new(e||XT)}}),XT),Ax=((QT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:QT}),QT.\\u0275inj=ve({factory:function(e){return new(e||QT)},imports:[[Nd]]}),QT),Px=[OT,IT,AT,zT,WT,hx,fx,Sx,Lx,Tx,xx,Dx,Ox,Yx,Ex,Ix,Ax],jx=((dx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:dx}),dx.\\u0275inj=ve({factory:function(e){return new(e||dx)},imports:[Px,OT,IT,AT,zT,WT,hx,fx,Sx,Lx,Tx,xx,Dx,Ox,Yx,Ex,Ix,Ax]}),dx),Rx=n(\"aCrv\"),Hx=[\"header\"],Fx=[\"container\"],Nx=[\"content\"],zx=[\"invisiblePadding\"],Vx=[\"*\"];function Wx(){return{scrollThrottlingTime:0,scrollDebounceTime:0,scrollAnimationTime:750,checkResizeInterval:1e3,resizeBypassRefreshThreshold:5,modifyOverflowStyleOfParentScroll:!0,stripedTable:!1}}var Ux,Bx,qx,Gx=((Bx=function(){function e(t,n,r,i,a,o){_classCallCheck(this,e),this.element=t,this.renderer=n,this.zone=r,this.changeDetectorRef=i,this.window=window,this.executeRefreshOutsideAngularZone=!1,this._enableUnequalChildrenSizes=!1,this.useMarginInsteadOfTranslate=!1,this.ssrViewportWidth=1920,this.ssrViewportHeight=1080,this._bufferAmount=0,this._items=[],this.compareItems=function(e,t){return e===t},this.vsUpdate=new bu,this.vsChange=new bu,this.vsStart=new bu,this.vsEnd=new bu,this.calculatedScrollbarWidth=0,this.calculatedScrollbarHeight=0,this.padding=0,this.previousViewPort={},this.cachedPageSize=0,this.previousScrollNumberElements=0,this.isAngularUniversalSSR=function(e){return\"server\"===e}(a),this.scrollThrottlingTime=o.scrollThrottlingTime,this.scrollDebounceTime=o.scrollDebounceTime,this.scrollAnimationTime=o.scrollAnimationTime,this.scrollbarWidth=o.scrollbarWidth,this.scrollbarHeight=o.scrollbarHeight,this.checkResizeInterval=o.checkResizeInterval,this.resizeBypassRefreshThreshold=o.resizeBypassRefreshThreshold,this.modifyOverflowStyleOfParentScroll=o.modifyOverflowStyleOfParentScroll,this.stripedTable=o.stripedTable,this.horizontal=!1,this.resetWrapGroupDimensions()}return _createClass(e,[{key:\"updateOnScrollFunction\",value:function(){var e=this;this.onScroll=this.scrollDebounceTime?this.debounce((function(){e.refresh_internal(!1)}),this.scrollDebounceTime):this.scrollThrottlingTime?this.throttleTrailing((function(){e.refresh_internal(!1)}),this.scrollThrottlingTime):function(){e.refresh_internal(!1)}}},{key:\"revertParentOverscroll\",value:function(){var e=this.getScrollElement();e&&this.oldParentScrollOverflow&&(e.style[\"overflow-y\"]=this.oldParentScrollOverflow.y,e.style[\"overflow-x\"]=this.oldParentScrollOverflow.x),this.oldParentScrollOverflow=void 0}},{key:\"ngOnInit\",value:function(){this.addScrollEventHandlers()}},{key:\"ngOnDestroy\",value:function(){this.removeScrollEventHandlers(),this.revertParentOverscroll()}},{key:\"ngOnChanges\",value:function(e){var t=this.cachedItemsLength!==this.items.length;this.cachedItemsLength=this.items.length,this.refresh_internal(t||!e.items||!e.items.previousValue||0===e.items.previousValue.length)}},{key:\"ngDoCheck\",value:function(){if(this.cachedItemsLength!==this.items.length)return this.cachedItemsLength=this.items.length,void this.refresh_internal(!0);if(this.previousViewPort&&this.viewPortItems&&this.viewPortItems.length>0){for(var e=!1,t=0;t=0&&this.invalidateCachedMeasurementAtIndex(t)}else this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0;this.refresh_internal(!1)}},{key:\"invalidateCachedMeasurementAtIndex\",value:function(e){if(this.enableUnequalChildrenSizes){var t=this.wrapGroupDimensions.maxChildSizePerWrapGroup[e];t&&(this.wrapGroupDimensions.maxChildSizePerWrapGroup[e]=void 0,--this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes,this.wrapGroupDimensions.sumOfKnownWrapGroupChildWidths-=t.childWidth||0,this.wrapGroupDimensions.sumOfKnownWrapGroupChildHeights-=t.childHeight||0)}else this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0;this.refresh_internal(!1)}},{key:\"scrollInto\",value:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=arguments.length>3?arguments[3]:void 0,i=arguments.length>4?arguments[4]:void 0,a=this.items.indexOf(e);-1!==a&&this.scrollToIndex(a,t,n,r,i)}},{key:\"scrollToIndex\",value:function(e){var t=this,n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,i=arguments.length>3?arguments[3]:void 0,a=arguments.length>4?arguments[4]:void 0,o=5,s=function i(){if(--o<=0)a&&a();else{var s=t.calculateDimensions(),l=Math.min(Math.max(e,0),s.itemCount-1);t.previousViewPort.startIndex!==l?t.scrollToIndex_internal(e,n,r,0,i):a&&a()}};this.scrollToIndex_internal(e,n,r,i,s)}},{key:\"scrollToIndex_internal\",value:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=arguments.length>3?arguments[3]:void 0,i=arguments.length>4?arguments[4]:void 0;r=void 0===r?this.scrollAnimationTime:r;var a=this.calculateDimensions(),o=this.calculatePadding(e,a)+n;t||(o-=a.wrapGroupsPerPage*a[this._childScrollDim]),this.scrollToPosition(o,r,i)}},{key:\"scrollToPosition\",value:function(e,t,n){var r=this;e+=this.getElementsOffset(),t=void 0===t?this.scrollAnimationTime:t;var i,a=this.getScrollElement();if(this.currentTween&&(this.currentTween.stop(),this.currentTween=void 0),!t)return this.renderer.setProperty(a,this._scrollType,e),void this.refresh_internal(!1,n);var o={scrollPosition:a[this._scrollType]},s=new Rx.Tween(o).to({scrollPosition:e},t).easing(Rx.Easing.Quadratic.Out).onUpdate((function(e){isNaN(e.scrollPosition)||(r.renderer.setProperty(a,r._scrollType,e.scrollPosition),r.refresh_internal(!1))})).onStop((function(){cancelAnimationFrame(i)})).start();(function t(a){s.isPlaying()&&(s.update(a),o.scrollPosition!==e?r.zone.runOutsideAngular((function(){i=requestAnimationFrame(t)})):r.refresh_internal(!1,n))})(),this.currentTween=s}},{key:\"getElementSize\",value:function(e){var t=e.getBoundingClientRect(),n=getComputedStyle(e),r=parseInt(n[\"margin-top\"],10)||0,i=parseInt(n[\"margin-bottom\"],10)||0,a=parseInt(n[\"margin-left\"],10)||0,o=parseInt(n[\"margin-right\"],10)||0;return{top:t.top+r,bottom:t.bottom+i,left:t.left+a,right:t.right+o,width:t.width+a+o,height:t.height+r+i}}},{key:\"checkScrollElementResized\",value:function(){var e,t=this.getElementSize(this.getScrollElement());if(this.previousScrollBoundingRect){var n=Math.abs(t.width-this.previousScrollBoundingRect.width),r=Math.abs(t.height-this.previousScrollBoundingRect.height);e=n>this.resizeBypassRefreshThreshold||r>this.resizeBypassRefreshThreshold}else e=!0;e&&(this.previousScrollBoundingRect=t,t.width>0&&t.height>0&&this.refresh_internal(!1))}},{key:\"updateDirection\",value:function(){this.horizontal?(this._invisiblePaddingProperty=\"width\",this._offsetType=\"offsetLeft\",this._pageOffsetType=\"pageXOffset\",this._childScrollDim=\"childWidth\",this._marginDir=\"margin-left\",this._translateDir=\"translateX\",this._scrollType=\"scrollLeft\"):(this._invisiblePaddingProperty=\"height\",this._offsetType=\"offsetTop\",this._pageOffsetType=\"pageYOffset\",this._childScrollDim=\"childHeight\",this._marginDir=\"margin-top\",this._translateDir=\"translateY\",this._scrollType=\"scrollTop\")}},{key:\"debounce\",value:function(e,t){var n=this.throttleTrailing(e,t),r=function(){n.cancel(),n.apply(this,arguments)};return r.cancel=function(){n.cancel()},r}},{key:\"throttleTrailing\",value:function(e,t){var n=void 0,r=arguments,i=function(){var i=this;r=arguments,n||(t<=0?e.apply(i,r):n=setTimeout((function(){n=void 0,e.apply(i,r)}),t))};return i.cancel=function(){n&&(clearTimeout(n),n=void 0)},i}},{key:\"refresh_internal\",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:2;if(e&&this.previousViewPort&&this.previousViewPort.scrollStartPosition>0){var i=this.previousViewPort,a=this.viewPortItems,o=t;t=function(){var e=n.previousViewPort.scrollLength-i.scrollLength;if(e>0&&n.viewPortItems){var t=a[0],r=n.items.findIndex((function(e){return n.compareItems(t,e)}));if(r>n.previousViewPort.startIndexWithBuffer){for(var s=!1,l=1;l=0&&i.endIndexWithBuffer>=0?n.items.slice(i.startIndexWithBuffer,i.endIndexWithBuffer+1):[],n.vsUpdate.emit(n.viewPortItems),a&&n.vsStart.emit(f),o&&n.vsEnd.emit(f),(a||o)&&(n.changeDetectorRef.markForCheck(),n.vsChange.emit(f)),r>0?n.refresh_internal(!1,t,r-1):t&&t()};n.executeRefreshOutsideAngularZone?m():n.zone.run(m)}else{if(r>0&&(s||l))return void n.refresh_internal(!1,t,r-1);t&&t()}}))}))}},{key:\"getScrollElement\",value:function(){return this.parentScroll instanceof Window?document.scrollingElement||document.documentElement||document.body:this.parentScroll||this.element.nativeElement}},{key:\"addScrollEventHandlers\",value:function(){var e=this;if(!this.isAngularUniversalSSR){var t=this.getScrollElement();this.removeScrollEventHandlers(),this.zone.runOutsideAngular((function(){e.parentScroll instanceof Window?(e.disposeScrollHandler=e.renderer.listen(\"window\",\"scroll\",e.onScroll),e.disposeResizeHandler=e.renderer.listen(\"window\",\"resize\",e.onScroll)):(e.disposeScrollHandler=e.renderer.listen(t,\"scroll\",e.onScroll),e._checkResizeInterval>0&&(e.checkScrollElementResizedTimer=setInterval((function(){e.checkScrollElementResized()}),e._checkResizeInterval)))}))}}},{key:\"removeScrollEventHandlers\",value:function(){this.checkScrollElementResizedTimer&&clearInterval(this.checkScrollElementResizedTimer),this.disposeScrollHandler&&(this.disposeScrollHandler(),this.disposeScrollHandler=void 0),this.disposeResizeHandler&&(this.disposeResizeHandler(),this.disposeResizeHandler=void 0)}},{key:\"getElementsOffset\",value:function(){if(this.isAngularUniversalSSR)return 0;var e=0;if(this.containerElementRef&&this.containerElementRef.nativeElement&&(e+=this.containerElementRef.nativeElement[this._offsetType]),this.parentScroll){var t=this.getScrollElement(),n=this.getElementSize(this.element.nativeElement),r=this.getElementSize(t);e+=this.horizontal?n.left-r.left:n.top-r.top,this.parentScroll instanceof Window||(e+=t[this._scrollType])}return e}},{key:\"countItemsPerWrapGroup\",value:function(){if(this.isAngularUniversalSSR)return Math.round(this.horizontal?this.ssrViewportHeight/this.ssrChildHeight:this.ssrViewportWidth/this.ssrChildWidth);var e=this.horizontal?\"offsetLeft\":\"offsetTop\",t=(this.containerElementRef&&this.containerElementRef.nativeElement||this.contentElementRef.nativeElement).children,n=t?t.length:0;if(0===n)return 1;for(var r=t[0][e],i=1;i0){var w=Math.min(c,k);k-=w,c-=w}p+=k,k>0&&i>=p&&++t}else{var C=Math.min(m,Math.max(a-_,0));if(c>0){var M=Math.min(c,C);C-=M,c-=M}_+=C,C>0&&a>=_&&++t}++h,f=0,m=0}}var S=this.wrapGroupDimensions.sumOfKnownWrapGroupChildWidths/this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes,L=this.wrapGroupDimensions.sumOfKnownWrapGroupChildHeights/this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes;n=this.childWidth||S||i,r=this.childHeight||L||a,this.horizontal?i>p&&(t+=Math.ceil((i-p)/n)):a>_&&(t+=Math.ceil((a-_)/r))}else{if(o.children.length>0){this.childWidth&&this.childHeight||(!this.minMeasuredChildWidth&&i>0&&(this.minMeasuredChildWidth=i),!this.minMeasuredChildHeight&&a>0&&(this.minMeasuredChildHeight=a));var T=this.getElementSize(o.children[0]);this.minMeasuredChildWidth=Math.min(this.minMeasuredChildWidth,T.width),this.minMeasuredChildHeight=Math.min(this.minMeasuredChildHeight,T.height)}n=this.childWidth||this.minMeasuredChildWidth||i,r=this.childHeight||this.minMeasuredChildHeight||a;var x=Math.max(Math.ceil(i/n),1),D=Math.max(Math.ceil(a/r),1);t=this.horizontal?x:D}var O=this.items.length,Y=s*t,E=O/Y,I=Math.ceil(O/s),A=0,P=this.horizontal?n:r;if(this.enableUnequalChildrenSizes){for(var j=0,R=0;R0&&(d+=t.itemsPerWrapGroup-h),isNaN(u)&&(u=0),isNaN(d)&&(d=0),u=Math.min(Math.max(u,0),t.itemCount-1),d=Math.min(Math.max(d,0),t.itemCount-1);var f=this.bufferAmount*t.itemsPerWrapGroup;return{startIndex:u,endIndex:d,startIndexWithBuffer:Math.min(Math.max(u-f,0),t.itemCount-1),endIndexWithBuffer:Math.min(Math.max(d+f,0),t.itemCount-1),scrollStartPosition:e,scrollEndPosition:e+t.viewportLength,maxScrollPosition:t.maxScrollPosition}}},{key:\"calculateViewport\",value:function(){var e=this.calculateDimensions(),t=this.getElementsOffset(),n=this.getScrollStartPosition();n>e.scrollLength+t&&!(this.parentScroll instanceof Window)?n=e.scrollLength:n-=t,n=Math.max(0,n);var r=this.calculatePageInfo(n,e),i=this.calculatePadding(r.startIndexWithBuffer,e),a=e.scrollLength;return{startIndex:r.startIndex,endIndex:r.endIndex,startIndexWithBuffer:r.startIndexWithBuffer,endIndexWithBuffer:r.endIndexWithBuffer,padding:Math.round(i),scrollLength:Math.round(a),scrollStartPosition:r.scrollStartPosition,scrollEndPosition:r.scrollEndPosition,maxScrollPosition:r.maxScrollPosition}}},{key:\"viewPortInfo\",get:function(){var e=this.previousViewPort||{};return{startIndex:e.startIndex||0,endIndex:e.endIndex||0,scrollStartPosition:e.scrollStartPosition||0,scrollEndPosition:e.scrollEndPosition||0,maxScrollPosition:e.maxScrollPosition||0,startIndexWithBuffer:e.startIndexWithBuffer||0,endIndexWithBuffer:e.endIndexWithBuffer||0}}},{key:\"enableUnequalChildrenSizes\",get:function(){return this._enableUnequalChildrenSizes},set:function(e){this._enableUnequalChildrenSizes!==e&&(this._enableUnequalChildrenSizes=e,this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0)}},{key:\"bufferAmount\",get:function(){return\"number\"==typeof this._bufferAmount&&this._bufferAmount>=0?this._bufferAmount:this.enableUnequalChildrenSizes?5:0},set:function(e){this._bufferAmount=e}},{key:\"scrollThrottlingTime\",get:function(){return this._scrollThrottlingTime},set:function(e){this._scrollThrottlingTime=e,this.updateOnScrollFunction()}},{key:\"scrollDebounceTime\",get:function(){return this._scrollDebounceTime},set:function(e){this._scrollDebounceTime=e,this.updateOnScrollFunction()}},{key:\"checkResizeInterval\",get:function(){return this._checkResizeInterval},set:function(e){this._checkResizeInterval!==e&&(this._checkResizeInterval=e,this.addScrollEventHandlers())}},{key:\"items\",get:function(){return this._items},set:function(e){e!==this._items&&(this._items=e||[],this.refresh_internal(!0))}},{key:\"horizontal\",get:function(){return this._horizontal},set:function(e){this._horizontal=e,this.updateDirection()}},{key:\"parentScroll\",get:function(){return this._parentScroll},set:function(e){if(this._parentScroll!==e){this.revertParentOverscroll(),this._parentScroll=e,this.addScrollEventHandlers();var t=this.getScrollElement();this.modifyOverflowStyleOfParentScroll&&t!==this.element.nativeElement&&(this.oldParentScrollOverflow={x:t.style[\"overflow-x\"],y:t.style[\"overflow-y\"]},t.style[\"overflow-y\"]=this.horizontal?\"visible\":\"auto\",t.style[\"overflow-x\"]=this.horizontal?\"auto\":\"visible\")}}}]),e}()).\\u0275fac=function(e){return new(e||Bx)(Io(Qs),Io(nl),Io(cc),Io(eo),Io($u),Io(\"virtual-scroller-default-options\",8))},Bx.\\u0275cmp=bt({type:Bx,selectors:[[\"virtual-scroller\"],[\"\",\"virtualScroller\",\"\"]],contentQueries:function(e,t,n){var r;1&e&&(Pu(n,Hx,!0,Qs),Pu(n,Fx,!0,Qs)),2&e&&(Yu(r=Hu())&&(t.headerElementRef=r.first),Yu(r=Hu())&&(t.containerElementRef=r.first))},viewQuery:function(e,t){var n;1&e&&(Iu(Nx,!0,Qs),Iu(zx,!0,Qs)),2&e&&(Yu(n=Hu())&&(t.contentElementRef=n.first),Yu(n=Hu())&&(t.invisiblePaddingElementRef=n.first))},hostVars:6,hostBindings:function(e,t){2&e&&fs(\"horizontal\",t.horizontal)(\"vertical\",!t.horizontal)(\"selfScroll\",!t.parentScroll)},inputs:{executeRefreshOutsideAngularZone:\"executeRefreshOutsideAngularZone\",useMarginInsteadOfTranslate:\"useMarginInsteadOfTranslate\",ssrViewportWidth:\"ssrViewportWidth\",ssrViewportHeight:\"ssrViewportHeight\",compareItems:\"compareItems\",scrollThrottlingTime:\"scrollThrottlingTime\",scrollDebounceTime:\"scrollDebounceTime\",scrollAnimationTime:\"scrollAnimationTime\",scrollbarWidth:\"scrollbarWidth\",scrollbarHeight:\"scrollbarHeight\",checkResizeInterval:\"checkResizeInterval\",resizeBypassRefreshThreshold:\"resizeBypassRefreshThreshold\",modifyOverflowStyleOfParentScroll:\"modifyOverflowStyleOfParentScroll\",stripedTable:\"stripedTable\",horizontal:\"horizontal\",enableUnequalChildrenSizes:\"enableUnequalChildrenSizes\",bufferAmount:\"bufferAmount\",items:\"items\",parentScroll:\"parentScroll\",childWidth:\"childWidth\",childHeight:\"childHeight\",ssrChildWidth:\"ssrChildWidth\",ssrChildHeight:\"ssrChildHeight\"},outputs:{vsUpdate:\"vsUpdate\",vsChange:\"vsChange\",vsStart:\"vsStart\",vsEnd:\"vsEnd\"},exportAs:[\"virtualScroller\"],features:[Hs],ngContentSelectors:Vx,decls:5,vars:0,consts:[[1,\"total-padding\"],[\"invisiblePadding\",\"\"],[1,\"scrollable-content\"],[\"content\",\"\"]],template:function(e,t){1&e&&(Xo(),No(0,\"div\",0,1),Ho(2,\"div\",2,3),ns(4),Fo())},styles:[\"[_nghost-%COMP%] {\\n position: relative;\\n\\t display: block;\\n -webkit-overflow-scrolling: touch;\\n }\\n\\t\\n\\t.horizontal.selfScroll[_nghost-%COMP%] {\\n overflow-y: visible;\\n overflow-x: auto;\\n\\t}\\n\\t.vertical.selfScroll[_nghost-%COMP%] {\\n overflow-y: auto;\\n overflow-x: visible;\\n\\t}\\n\\t\\n .scrollable-content[_ngcontent-%COMP%] {\\n top: 0;\\n left: 0;\\n width: 100%;\\n height: 100%;\\n max-width: 100vw;\\n max-height: 100vh;\\n position: absolute;\\n }\\n\\n\\t.scrollable-content[_ngcontent-%COMP%] > * {\\n\\t\\tbox-sizing: border-box;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] {\\n\\t\\twhite-space: nowrap;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] .scrollable-content[_ngcontent-%COMP%] {\\n\\t\\tdisplay: flex;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] .scrollable-content[_ngcontent-%COMP%] > * {\\n\\t\\tflex-shrink: 0;\\n\\t\\tflex-grow: 0;\\n\\t\\twhite-space: initial;\\n\\t}\\n\\t\\n .total-padding[_ngcontent-%COMP%] {\\n width: 1px;\\n opacity: 0;\\n }\\n \\n .horizontal[_nghost-%COMP%] .total-padding[_ngcontent-%COMP%] {\\n height: 100%;\\n }\"]}),Bx),$x=((Ux=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Ux}),Ux.\\u0275inj=ve({factory:function(e){return new(e||Ux)},providers:[{provide:\"virtual-scroller-default-options\",useFactory:Wx}],imports:[[Nd]]}),Ux),Jx={on:function(){},off:function(){}},Kx=((qx=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this)).hammerOptions=e,r.events=[\"longpress\",\"slide\",\"slidestart\",\"slideend\",\"slideright\",\"slideleft\"],r}return _createClass(n,[{key:\"buildHammer\",value:function(e){var t=\"undefined\"!=typeof window?window.Hammer:null;if(!t)return Jx;var n=new t(e,this.hammerOptions||void 0),r=new t.Pan,i=new t.Swipe,a=new t.Press,o=this._createRecognizer(r,{event:\"slide\",threshold:0},i),s=this._createRecognizer(a,{event:\"longpress\",time:500});return r.recognizeWith(i),s.recognizeWith(o),n.add([i,a,r,o,s]),n}},{key:\"_createRecognizer\",value:function(e,t){for(var n=new e.constructor(t),r=arguments.length,i=new Array(r>2?r-2:0),a=2;a0)for(var n=this.count>=this.total?this.total:this.count,r=this.ring,i=0;i0&&void 0!==arguments[0]?arguments[0]:iD;return function(t){return t.lift(new nD(e))}}var nD=function(){function e(t){_classCallCheck(this,e),this.errorFactory=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new rD(e,this.errorFactory))}}]),e}(),rD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).errorFactory=r,i.hasValue=!1,i}return _createClass(n,[{key:\"_next\",value:function(e){this.hasValue=!0,this.destination.next(e)}},{key:\"_complete\",value:function(){if(this.hasValue)return this.destination.complete();var e;try{e=this.errorFactory()}catch(t){e=t}this.destination.error(e)}}]),n}(p);function iD(){return new Zx}function aD(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return function(t){return t.lift(new oD(e))}}var oD=function(){function e(t){_classCallCheck(this,e),this.defaultValue=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new sD(e,this.defaultValue))}}]),e}(),sD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).defaultValue=r,i.isEmpty=!0,i}return _createClass(n,[{key:\"_next\",value:function(e){this.isEmpty=!1,this.destination.next(e)}},{key:\"_complete\",value:function(){this.isEmpty&&this.destination.next(this.defaultValue),this.destination.complete()}}]),n}(p);function lD(e,t){var n=arguments.length>=2;return function(r){return r.pipe(e?Gd((function(t,n){return e(t,n,r)})):G,Qx(1),n?aD(t):tD((function(){return new Zx})))}}function uD(e,t){var n=arguments.length>=2;return function(r){return r.pipe(e?Gd((function(t,n){return e(t,n,r)})):G,cp(1),n?aD(t):tD((function(){return new Zx})))}}var cD=function(){function e(t,n,r){_classCallCheck(this,e),this.predicate=t,this.thisArg=n,this.source=r}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new dD(e,this.predicate,this.thisArg,this.source))}}]),e}(),dD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e)).predicate=r,o.thisArg=i,o.source=a,o.index=0,o.thisArg=i||_assertThisInitialized(o),o}return _createClass(n,[{key:\"notifyComplete\",value:function(e){this.destination.next(e),this.destination.complete()}},{key:\"_next\",value:function(e){var t=!1;try{t=this.predicate.call(this.thisArg,e,this.index++,this.source)}catch(n){return void this.destination.error(n)}t||this.notifyComplete(!1)}},{key:\"_complete\",value:function(){this.notifyComplete(!0)}}]),n}(p);function hD(e,t){var n=!1;return arguments.length>=2&&(n=!0),function(r){return r.lift(new mD(e,t,n))}}var fD,mD=function(){function e(t,n){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];_classCallCheck(this,e),this.accumulator=t,this.seed=n,this.hasSeed=r}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new pD(e,this.accumulator,this.seed,this.hasSeed))}}]),e}(),pD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e)).accumulator=r,o._seed=i,o.hasSeed=a,o.index=0,o}return _createClass(n,[{key:\"_next\",value:function(e){if(this.hasSeed)return this._tryNext(e);this.seed=e,this.destination.next(e)}},{key:\"_tryNext\",value:function(e){var t,n=this.index++;try{t=this.accumulator(this.seed,e,n)}catch(r){this.destination.error(r)}this.seed=t,this.destination.next(t)}},{key:\"seed\",get:function(){return this._seed},set:function(e){this.hasSeed=!0,this._seed=e}}]),n}(p),_D=function e(t,n){_classCallCheck(this,e),this.id=t,this.url=n},vD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:\"imperative\",o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;return _classCallCheck(this,n),(i=t.call(this,e,r)).navigationTrigger=a,i.restoredState=o,i}return _createClass(n,[{key:\"toString\",value:function(){return\"NavigationStart(id: \".concat(this.id,\", url: '\").concat(this.url,\"')\")}}]),n}(_D),gD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e,r)).urlAfterRedirects=i,a}return _createClass(n,[{key:\"toString\",value:function(){return\"NavigationEnd(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"')\")}}]),n}(_D),yD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e,r)).reason=i,a}return _createClass(n,[{key:\"toString\",value:function(){return\"NavigationCancel(id: \".concat(this.id,\", url: '\").concat(this.url,\"')\")}}]),n}(_D),bD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e,r)).error=i,a}return _createClass(n,[{key:\"toString\",value:function(){return\"NavigationError(id: \".concat(this.id,\", url: '\").concat(this.url,\"', error: \").concat(this.error,\")\")}}]),n}(_D),kD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e,r)).urlAfterRedirects=i,o.state=a,o}return _createClass(n,[{key:\"toString\",value:function(){return\"RoutesRecognized(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\")\")}}]),n}(_D),wD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e,r)).urlAfterRedirects=i,o.state=a,o}return _createClass(n,[{key:\"toString\",value:function(){return\"GuardsCheckStart(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\")\")}}]),n}(_D),CD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this,e,r)).urlAfterRedirects=i,s.state=a,s.shouldActivate=o,s}return _createClass(n,[{key:\"toString\",value:function(){return\"GuardsCheckEnd(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\", shouldActivate: \").concat(this.shouldActivate,\")\")}}]),n}(_D),MD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e,r)).urlAfterRedirects=i,o.state=a,o}return _createClass(n,[{key:\"toString\",value:function(){return\"ResolveStart(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\")\")}}]),n}(_D),SD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e,r)).urlAfterRedirects=i,o.state=a,o}return _createClass(n,[{key:\"toString\",value:function(){return\"ResolveEnd(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\")\")}}]),n}(_D),LD=function(){function e(t){_classCallCheck(this,e),this.route=t}return _createClass(e,[{key:\"toString\",value:function(){return\"RouteConfigLoadStart(path: \".concat(this.route.path,\")\")}}]),e}(),TD=function(){function e(t){_classCallCheck(this,e),this.route=t}return _createClass(e,[{key:\"toString\",value:function(){return\"RouteConfigLoadEnd(path: \".concat(this.route.path,\")\")}}]),e}(),xD=function(){function e(t){_classCallCheck(this,e),this.snapshot=t}return _createClass(e,[{key:\"toString\",value:function(){return\"ChildActivationStart(path: '\".concat(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\",\"')\")}}]),e}(),DD=function(){function e(t){_classCallCheck(this,e),this.snapshot=t}return _createClass(e,[{key:\"toString\",value:function(){return\"ChildActivationEnd(path: '\".concat(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\",\"')\")}}]),e}(),OD=function(){function e(t){_classCallCheck(this,e),this.snapshot=t}return _createClass(e,[{key:\"toString\",value:function(){return\"ActivationStart(path: '\".concat(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\",\"')\")}}]),e}(),YD=function(){function e(t){_classCallCheck(this,e),this.snapshot=t}return _createClass(e,[{key:\"toString\",value:function(){return\"ActivationEnd(path: '\".concat(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\",\"')\")}}]),e}(),ED=function(){function e(t,n,r){_classCallCheck(this,e),this.routerEvent=t,this.position=n,this.anchor=r}return _createClass(e,[{key:\"toString\",value:function(){return\"Scroll(anchor: '\".concat(this.anchor,\"', position: '\").concat(this.position?\"\".concat(this.position[0],\", \").concat(this.position[1]):null,\"')\")}}]),e}(),ID=((fD=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||fD)},fD.\\u0275cmp=bt({type:fD,selectors:[[\"ng-component\"]],decls:1,vars:0,template:function(e,t){1&e&&No(0,\"router-outlet\")},directives:function(){return[NY]},encapsulation:2}),fD),AD=function(){function e(t){_classCallCheck(this,e),this.params=t||{}}return _createClass(e,[{key:\"has\",value:function(e){return this.params.hasOwnProperty(e)}},{key:\"get\",value:function(e){if(this.has(e)){var t=this.params[e];return Array.isArray(t)?t[0]:t}return null}},{key:\"getAll\",value:function(e){if(this.has(e)){var t=this.params[e];return Array.isArray(t)?t:[t]}return[]}},{key:\"keys\",get:function(){return Object.keys(this.params)}}]),e}();function PD(e){return new AD(e)}function jD(e){var t=Error(\"NavigationCancelingError: \"+e);return t.ngNavigationCancelingError=!0,t}function RD(e,t,n){var r=n.path.split(\"/\");if(r.length>e.length)return null;if(\"full\"===n.pathMatch&&(t.hasChildren()||r.length1&&void 0!==arguments[1]?arguments[1]:\"\",n=0;n-1})):e===t}function BD(e){return Array.prototype.concat.apply([],e)}function qD(e){return e.length>0?e[e.length-1]:null}function GD(e,t){for(var n in e)e.hasOwnProperty(n)&&t(e[n],n)}function $D(e){return Bo(e)?e:Uo(e)?W(Promise.resolve(e)):Bd(e)}function JD(e,t,n){return n?function(e,t){return WD(e,t)}(e.queryParams,t.queryParams)&&function e(t,n){if(!XD(t.segments,n.segments))return!1;if(t.numberOfChildren!==n.numberOfChildren)return!1;for(var r in n.children){if(!t.children[r])return!1;if(!e(t.children[r],n.children[r]))return!1}return!0}(e.root,t.root):function(e,t){return Object.keys(t).length<=Object.keys(e).length&&Object.keys(t).every((function(n){return UD(e[n],t[n])}))}(e.queryParams,t.queryParams)&&function e(t,n){return function t(n,r,i){if(n.segments.length>i.length)return!!XD(n.segments.slice(0,i.length),i)&&!r.hasChildren();if(n.segments.length===i.length){if(!XD(n.segments,i))return!1;for(var a in r.children){if(!n.children[a])return!1;if(!e(n.children[a],r.children[a]))return!1}return!0}var o=i.slice(0,n.segments.length),s=i.slice(n.segments.length);return!!XD(n.segments,o)&&!!n.children.primary&&t(n.children.primary,r,s)}(t,n,n.segments)}(e.root,t.root)}var KD=function(){function e(t,n,r){_classCallCheck(this,e),this.root=t,this.queryParams=n,this.fragment=r}return _createClass(e,[{key:\"toString\",value:function(){return rO.serialize(this)}},{key:\"queryParamMap\",get:function(){return this._queryParamMap||(this._queryParamMap=PD(this.queryParams)),this._queryParamMap}}]),e}(),ZD=function(){function e(t,n){var r=this;_classCallCheck(this,e),this.segments=t,this.children=n,this.parent=null,GD(n,(function(e,t){return e.parent=r}))}return _createClass(e,[{key:\"hasChildren\",value:function(){return this.numberOfChildren>0}},{key:\"toString\",value:function(){return iO(this)}},{key:\"numberOfChildren\",get:function(){return Object.keys(this.children).length}}]),e}(),QD=function(){function e(t,n){_classCallCheck(this,e),this.path=t,this.parameters=n}return _createClass(e,[{key:\"toString\",value:function(){return cO(this)}},{key:\"parameterMap\",get:function(){return this._parameterMap||(this._parameterMap=PD(this.parameters)),this._parameterMap}}]),e}();function XD(e,t){return e.length===t.length&&e.every((function(e,n){return e.path===t[n].path}))}function eO(e,t){var n=[];return GD(e.children,(function(e,r){\"primary\"===r&&(n=n.concat(t(e,r)))})),GD(e.children,(function(e,r){\"primary\"!==r&&(n=n.concat(t(e,r)))})),n}var tO=function e(){_classCallCheck(this,e)},nO=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"parse\",value:function(e){var t=new pO(e);return new KD(t.parseRootSegment(),t.parseQueryParams(),t.parseFragment())}},{key:\"serialize\",value:function(e){var t,n,r;return\"\".concat(\"/\".concat(function e(t,n){if(!t.hasChildren())return iO(t);if(n){var r=t.children.primary?e(t.children.primary,!1):\"\",i=[];return GD(t.children,(function(t,n){\"primary\"!==n&&i.push(\"\".concat(n,\":\").concat(e(t,!1)))})),i.length>0?\"\".concat(r,\"(\").concat(i.join(\"//\"),\")\"):r}var a=eO(t,(function(n,r){return\"primary\"===r?[e(t.children.primary,!1)]:[\"\".concat(r,\":\").concat(e(n,!1))]}));return\"\".concat(iO(t),\"/(\").concat(a.join(\"//\"),\")\")}(e.root,!0)),(n=e.queryParams,r=Object.keys(n).map((function(e){var t=n[e];return Array.isArray(t)?t.map((function(t){return\"\".concat(oO(e),\"=\").concat(oO(t))})).join(\"&\"):\"\".concat(oO(e),\"=\").concat(oO(t))})),r.length?\"?\".concat(r.join(\"&\")):\"\")).concat(\"string\"==typeof e.fragment?\"#\".concat((t=e.fragment,encodeURI(t))):\"\")}}]),e}(),rO=new nO;function iO(e){return e.segments.map((function(e){return cO(e)})).join(\"/\")}function aO(e){return encodeURIComponent(e).replace(/%40/g,\"@\").replace(/%3A/gi,\":\").replace(/%24/g,\"$\").replace(/%2C/gi,\",\")}function oO(e){return aO(e).replace(/%3B/gi,\";\")}function sO(e){return aO(e).replace(/\\(/g,\"%28\").replace(/\\)/g,\"%29\").replace(/%26/gi,\"&\")}function lO(e){return decodeURIComponent(e)}function uO(e){return lO(e.replace(/\\+/g,\"%20\"))}function cO(e){return\"\".concat(sO(e.path)).concat((t=e.parameters,Object.keys(t).map((function(e){return\";\".concat(sO(e),\"=\").concat(sO(t[e]))})).join(\"\")));var t}var dO=/^[^\\/()?;=#]+/;function hO(e){var t=e.match(dO);return t?t[0]:\"\"}var fO=/^[^=?&#]+/,mO=/^[^?&#]+/,pO=function(){function e(t){_classCallCheck(this,e),this.url=t,this.remaining=t}return _createClass(e,[{key:\"parseRootSegment\",value:function(){return this.consumeOptional(\"/\"),\"\"===this.remaining||this.peekStartsWith(\"?\")||this.peekStartsWith(\"#\")?new ZD([],{}):new ZD([],this.parseChildren())}},{key:\"parseQueryParams\",value:function(){var e={};if(this.consumeOptional(\"?\"))do{this.parseQueryParam(e)}while(this.consumeOptional(\"&\"));return e}},{key:\"parseFragment\",value:function(){return this.consumeOptional(\"#\")?decodeURIComponent(this.remaining):null}},{key:\"parseChildren\",value:function(){if(\"\"===this.remaining)return{};this.consumeOptional(\"/\");var e=[];for(this.peekStartsWith(\"(\")||e.push(this.parseSegment());this.peekStartsWith(\"/\")&&!this.peekStartsWith(\"//\")&&!this.peekStartsWith(\"/(\");)this.capture(\"/\"),e.push(this.parseSegment());var t={};this.peekStartsWith(\"/(\")&&(this.capture(\"/\"),t=this.parseParens(!0));var n={};return this.peekStartsWith(\"(\")&&(n=this.parseParens(!1)),(e.length>0||Object.keys(t).length>0)&&(n.primary=new ZD(e,t)),n}},{key:\"parseSegment\",value:function(){var e=hO(this.remaining);if(\"\"===e&&this.peekStartsWith(\";\"))throw new Error(\"Empty path url segment cannot have parameters: '\".concat(this.remaining,\"'.\"));return this.capture(e),new QD(lO(e),this.parseMatrixParams())}},{key:\"parseMatrixParams\",value:function(){for(var e={};this.consumeOptional(\";\");)this.parseParam(e);return e}},{key:\"parseParam\",value:function(e){var t=hO(this.remaining);if(t){this.capture(t);var n=\"\";if(this.consumeOptional(\"=\")){var r=hO(this.remaining);r&&(n=r,this.capture(n))}e[lO(t)]=lO(n)}}},{key:\"parseQueryParam\",value:function(e){var t=function(e){var t=e.match(fO);return t?t[0]:\"\"}(this.remaining);if(t){this.capture(t);var n=\"\";if(this.consumeOptional(\"=\")){var r=function(e){var t=e.match(mO);return t?t[0]:\"\"}(this.remaining);r&&(n=r,this.capture(n))}var i=uO(t),a=uO(n);if(e.hasOwnProperty(i)){var o=e[i];Array.isArray(o)||(o=[o],e[i]=o),o.push(a)}else e[i]=a}}},{key:\"parseParens\",value:function(e){var t={};for(this.capture(\"(\");!this.consumeOptional(\")\")&&this.remaining.length>0;){var n=hO(this.remaining),r=this.remaining[n.length];if(\"/\"!==r&&\")\"!==r&&\";\"!==r)throw new Error(\"Cannot parse url '\".concat(this.url,\"'\"));var i=void 0;n.indexOf(\":\")>-1?(i=n.substr(0,n.indexOf(\":\")),this.capture(i),this.capture(\":\")):e&&(i=\"primary\");var a=this.parseChildren();t[i]=1===Object.keys(a).length?a.primary:new ZD([],a),this.consumeOptional(\"//\")}return t}},{key:\"peekStartsWith\",value:function(e){return this.remaining.startsWith(e)}},{key:\"consumeOptional\",value:function(e){return!!this.peekStartsWith(e)&&(this.remaining=this.remaining.substring(e.length),!0)}},{key:\"capture\",value:function(e){if(!this.consumeOptional(e))throw new Error('Expected \"'.concat(e,'\".'))}}]),e}(),_O=function(){function e(t){_classCallCheck(this,e),this._root=t}return _createClass(e,[{key:\"parent\",value:function(e){var t=this.pathFromRoot(e);return t.length>1?t[t.length-2]:null}},{key:\"children\",value:function(e){var t=vO(e,this._root);return t?t.children.map((function(e){return e.value})):[]}},{key:\"firstChild\",value:function(e){var t=vO(e,this._root);return t&&t.children.length>0?t.children[0].value:null}},{key:\"siblings\",value:function(e){var t=gO(e,this._root);return t.length<2?[]:t[t.length-2].children.map((function(e){return e.value})).filter((function(t){return t!==e}))}},{key:\"pathFromRoot\",value:function(e){return gO(e,this._root).map((function(e){return e.value}))}},{key:\"root\",get:function(){return this._root.value}}]),e}();function vO(e,t){if(e===t.value)return t;var n,r=_createForOfIteratorHelper(t.children);try{for(r.s();!(n=r.n()).done;){var i=vO(e,n.value);if(i)return i}}catch(a){r.e(a)}finally{r.f()}return null}function gO(e,t){if(e===t.value)return[t];var n,r=_createForOfIteratorHelper(t.children);try{for(r.s();!(n=r.n()).done;){var i=gO(e,n.value);if(i.length)return i.unshift(t),i}}catch(a){r.e(a)}finally{r.f()}return[]}var yO=function(){function e(t,n){_classCallCheck(this,e),this.value=t,this.children=n}return _createClass(e,[{key:\"toString\",value:function(){return\"TreeNode(\".concat(this.value,\")\")}}]),e}();function bO(e){var t={};return e&&e.children.forEach((function(e){return t[e.value.outlet]=e})),t}var kO=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).snapshot=r,TO(_assertThisInitialized(i),e),i}return _createClass(n,[{key:\"toString\",value:function(){return this.snapshot.toString()}}]),n}(_O);function wO(e,t){var n=function(e,t){var n=new SO([],{},{},\"\",{},\"primary\",t,null,e.root,-1,{});return new LO(\"\",new yO(n,[]))}(e,t),r=new tT([new QD(\"\",{})]),i=new tT({}),a=new tT({}),o=new tT({}),s=new tT(\"\"),l=new CO(r,i,o,s,a,\"primary\",t,n.root);return l.snapshot=n.root,new kO(new yO(l,[]),n)}var CO=function(){function e(t,n,r,i,a,o,s,l){_classCallCheck(this,e),this.url=t,this.params=n,this.queryParams=r,this.fragment=i,this.data=a,this.outlet=o,this.component=s,this._futureSnapshot=l}return _createClass(e,[{key:\"toString\",value:function(){return this.snapshot?this.snapshot.toString():\"Future(\".concat(this._futureSnapshot,\")\")}},{key:\"routeConfig\",get:function(){return this._futureSnapshot.routeConfig}},{key:\"root\",get:function(){return this._routerState.root}},{key:\"parent\",get:function(){return this._routerState.parent(this)}},{key:\"firstChild\",get:function(){return this._routerState.firstChild(this)}},{key:\"children\",get:function(){return this._routerState.children(this)}},{key:\"pathFromRoot\",get:function(){return this._routerState.pathFromRoot(this)}},{key:\"paramMap\",get:function(){return this._paramMap||(this._paramMap=this.params.pipe(F((function(e){return PD(e)})))),this._paramMap}},{key:\"queryParamMap\",get:function(){return this._queryParamMap||(this._queryParamMap=this.queryParams.pipe(F((function(e){return PD(e)})))),this._queryParamMap}}]),e}();function MO(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"emptyOnly\",n=e.pathFromRoot,r=0;if(\"always\"!==t)for(r=n.length-1;r>=1;){var i=n[r],a=n[r-1];if(i.routeConfig&&\"\"===i.routeConfig.path)r--;else{if(a.component)break;r--}}return function(e){return e.reduce((function(e,t){return{params:Object.assign(Object.assign({},e.params),t.params),data:Object.assign(Object.assign({},e.data),t.data),resolve:Object.assign(Object.assign({},e.resolve),t._resolvedData)}}),{params:{},data:{},resolve:{}})}(n.slice(r))}var SO=function(){function e(t,n,r,i,a,o,s,l,u,c,d){_classCallCheck(this,e),this.url=t,this.params=n,this.queryParams=r,this.fragment=i,this.data=a,this.outlet=o,this.component=s,this.routeConfig=l,this._urlSegment=u,this._lastPathIndex=c,this._resolve=d}return _createClass(e,[{key:\"toString\",value:function(){return\"Route(url:'\".concat(this.url.map((function(e){return e.toString()})).join(\"/\"),\"', path:'\").concat(this.routeConfig?this.routeConfig.path:\"\",\"')\")}},{key:\"root\",get:function(){return this._routerState.root}},{key:\"parent\",get:function(){return this._routerState.parent(this)}},{key:\"firstChild\",get:function(){return this._routerState.firstChild(this)}},{key:\"children\",get:function(){return this._routerState.children(this)}},{key:\"pathFromRoot\",get:function(){return this._routerState.pathFromRoot(this)}},{key:\"paramMap\",get:function(){return this._paramMap||(this._paramMap=PD(this.params)),this._paramMap}},{key:\"queryParamMap\",get:function(){return this._queryParamMap||(this._queryParamMap=PD(this.queryParams)),this._queryParamMap}}]),e}(),LO=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,r)).url=e,TO(_assertThisInitialized(i),r),i}return _createClass(n,[{key:\"toString\",value:function(){return xO(this._root)}}]),n}(_O);function TO(e,t){t.value._routerState=e,t.children.forEach((function(t){return TO(e,t)}))}function xO(e){var t=e.children.length>0?\" { \".concat(e.children.map(xO).join(\", \"),\" } \"):\"\";return\"\".concat(e.value).concat(t)}function DO(e){if(e.snapshot){var t=e.snapshot,n=e._futureSnapshot;e.snapshot=n,WD(t.queryParams,n.queryParams)||e.queryParams.next(n.queryParams),t.fragment!==n.fragment&&e.fragment.next(n.fragment),WD(t.params,n.params)||e.params.next(n.params),function(e,t){if(e.length!==t.length)return!1;for(var n=0;n0&&YO(r[0]))throw new Error(\"Root segment cannot have matrix parameters\");var i=r.find((function(e){return\"object\"==typeof e&&null!=e&&e.outlets}));if(i&&i!==qD(r))throw new Error(\"{outlets:{}} has to be the last command\")}return _createClass(e,[{key:\"toRoot\",value:function(){return this.isAbsolute&&1===this.commands.length&&\"/\"==this.commands[0]}}]),e}(),AO=function e(t,n,r){_classCallCheck(this,e),this.segmentGroup=t,this.processChildren=n,this.index=r};function PO(e){return\"object\"==typeof e&&null!=e&&e.outlets?e.outlets.primary:\"\".concat(e)}function jO(e,t,n){if(e||(e=new ZD([],{})),0===e.segments.length&&e.hasChildren())return RO(e,t,n);var r=function(e,t,n){for(var r=0,i=t,a={match:!1,pathIndex:0,commandIndex:0};i=n.length)return a;var o=e.segments[i],s=PO(n[r]),l=r0&&void 0===s)break;if(s&&l&&\"object\"==typeof l&&void 0===l.outlets){if(!zO(s,l,o))return a;r+=2}else{if(!zO(s,{},o))return a;r++}i++}return{match:!0,pathIndex:i,commandIndex:r}}(e,t,n),i=n.slice(r.commandIndex);if(r.match&&r.pathIndex0?new ZD([],{primary:e}):e;return new KD(r,t,n)}},{key:\"expandSegmentGroup\",value:function(e,t,n,r){return 0===n.segments.length&&n.hasChildren()?this.expandChildren(e,t,n).pipe(F((function(e){return new ZD([],e)}))):this.expandSegment(e,n,t,n.segments,r,!0)}},{key:\"expandChildren\",value:function(e,t,n){var r=this;return function(n,i){if(0===Object.keys(n).length)return Bd({});var a=[],o=[],s={};return GD(n,(function(n,i){var l,u,c=(l=i,u=n,r.expandSegmentGroup(e,t,u,l)).pipe(F((function(e){return s[i]=e})));\"primary\"===i?a.push(c):o.push(c)})),Bd.apply(null,a.concat(o)).pipe(av(),lD(),F((function(){return s})))}(n.children)}},{key:\"expandSegment\",value:function(e,t,n,r,i,a){var o=this;return Bd.apply(void 0,_toConsumableArray(n)).pipe(F((function(s){return o.expandSegmentAgainstRoute(e,t,n,s,r,i,a).pipe(pC((function(e){if(e instanceof qO)return Bd(null);throw e})))})),av(),uD((function(e){return!!e})),pC((function(e,n){if(e instanceof Zx||\"EmptyError\"===e.name){if(o.noLeftoversInUrl(t,r,i))return Bd(new ZD([],{}));throw new qO(t)}throw e})))}},{key:\"noLeftoversInUrl\",value:function(e,t,n){return 0===t.length&&!e.children[n]}},{key:\"expandSegmentAgainstRoute\",value:function(e,t,n,r,i,a,o){return tY(r)!==a?$O(t):void 0===r.redirectTo?this.matchSegmentAgainstRoute(e,t,r,i):o&&this.allowRedirects?this.expandSegmentAgainstRouteUsingRedirect(e,t,n,r,i,a):$O(t)}},{key:\"expandSegmentAgainstRouteUsingRedirect\",value:function(e,t,n,r,i,a){return\"**\"===r.path?this.expandWildCardWithParamsAgainstRouteUsingRedirect(e,n,r,a):this.expandRegularSegmentAgainstRouteUsingRedirect(e,t,n,r,i,a)}},{key:\"expandWildCardWithParamsAgainstRouteUsingRedirect\",value:function(e,t,n,r){var i=this,a=this.applyRedirectCommands([],n.redirectTo,{});return n.redirectTo.startsWith(\"/\")?JO(a):this.lineralizeSegments(n,a).pipe(U((function(n){var a=new ZD(n,{});return i.expandSegment(e,a,t,n,r,!1)})))}},{key:\"expandRegularSegmentAgainstRouteUsingRedirect\",value:function(e,t,n,r,i,a){var o=this,s=QO(t,r,i),l=s.matched,u=s.consumedSegments,c=s.lastChild,d=s.positionalParamSegments;if(!l)return $O(t);var h=this.applyRedirectCommands(u,r.redirectTo,d);return r.redirectTo.startsWith(\"/\")?JO(h):this.lineralizeSegments(r,h).pipe(U((function(r){return o.expandSegment(e,t,n,r.concat(i.slice(c)),a,!1)})))}},{key:\"matchSegmentAgainstRoute\",value:function(e,t,n,r){var i=this;if(\"**\"===n.path)return n.loadChildren?this.configLoader.load(e.injector,n).pipe(F((function(e){return n._loadedConfig=e,new ZD(r,{})}))):Bd(new ZD(r,{}));var a=QO(t,n,r),o=a.matched,s=a.consumedSegments,l=a.lastChild;if(!o)return $O(t);var u=r.slice(l);return this.getChildConfig(e,n,r).pipe(U((function(e){var n=e.module,r=e.routes,a=function(e,t,n,r){return n.length>0&&function(e,t,n){return n.some((function(n){return eY(e,t,n)&&\"primary\"!==tY(n)}))}(e,n,r)?{segmentGroup:XO(new ZD(t,function(e,t){var n={};n.primary=t;var r,i=_createForOfIteratorHelper(e);try{for(i.s();!(r=i.n()).done;){var a=r.value;\"\"===a.path&&\"primary\"!==tY(a)&&(n[tY(a)]=new ZD([],{}))}}catch(o){i.e(o)}finally{i.f()}return n}(r,new ZD(n,e.children)))),slicedSegments:[]}:0===n.length&&function(e,t,n){return n.some((function(n){return eY(e,t,n)}))}(e,n,r)?{segmentGroup:XO(new ZD(e.segments,function(e,t,n,r){var i,a={},o=_createForOfIteratorHelper(n);try{for(o.s();!(i=o.n()).done;){var s=i.value;eY(e,t,s)&&!r[tY(s)]&&(a[tY(s)]=new ZD([],{}))}}catch(l){o.e(l)}finally{o.f()}return Object.assign(Object.assign({},r),a)}(e,n,r,e.children))),slicedSegments:n}:{segmentGroup:e,slicedSegments:n}}(t,s,u,r),o=a.segmentGroup,l=a.slicedSegments;return 0===l.length&&o.hasChildren()?i.expandChildren(n,r,o).pipe(F((function(e){return new ZD(s,e)}))):0===r.length&&0===l.length?Bd(new ZD(s,{})):i.expandSegment(n,o,r,l,\"primary\",!0).pipe(F((function(e){return new ZD(s.concat(e.segments),e.children)})))})))}},{key:\"getChildConfig\",value:function(e,t,n){var r=this;return t.children?Bd(new HD(t.children,e)):t.loadChildren?void 0!==t._loadedConfig?Bd(t._loadedConfig):function(e,t,n){var r,i=t.canLoad;return i&&0!==i.length?W(i).pipe(F((function(r){var i,a=e.get(r);if(function(e){return e&&UO(e.canLoad)}(a))i=a.canLoad(t,n);else{if(!UO(a))throw new Error(\"Invalid CanLoad guard\");i=a(t,n)}return $D(i)}))).pipe(av(),(r=function(e){return!0===e},function(e){return e.lift(new cD(r,void 0,e))})):Bd(!0)}(e.injector,t,n).pipe(U((function(n){return n?r.configLoader.load(e.injector,t).pipe(F((function(e){return t._loadedConfig=e,e}))):function(e){return new w((function(t){return t.error(jD(\"Cannot load children because the guard of the route \\\"path: '\".concat(e.path,\"'\\\" returned false\")))}))}(t)}))):Bd(new HD([],e))}},{key:\"lineralizeSegments\",value:function(e,t){for(var n=[],r=t.root;;){if(n=n.concat(r.segments),0===r.numberOfChildren)return Bd(n);if(r.numberOfChildren>1||!r.children.primary)return KO(e.redirectTo);r=r.children.primary}}},{key:\"applyRedirectCommands\",value:function(e,t,n){return this.applyRedirectCreatreUrlTree(t,this.urlSerializer.parse(t),e,n)}},{key:\"applyRedirectCreatreUrlTree\",value:function(e,t,n,r){var i=this.createSegmentGroup(e,t.root,n,r);return new KD(i,this.createQueryParams(t.queryParams,this.urlTree.queryParams),t.fragment)}},{key:\"createQueryParams\",value:function(e,t){var n={};return GD(e,(function(e,r){if(\"string\"==typeof e&&e.startsWith(\":\")){var i=e.substring(1);n[r]=t[i]}else n[r]=e})),n}},{key:\"createSegmentGroup\",value:function(e,t,n,r){var i=this,a=this.createSegments(e,t.segments,n,r),o={};return GD(t.children,(function(t,a){o[a]=i.createSegmentGroup(e,t,n,r)})),new ZD(a,o)}},{key:\"createSegments\",value:function(e,t,n,r){var i=this;return t.map((function(t){return t.path.startsWith(\":\")?i.findPosParam(e,t,r):i.findOrReturn(t,n)}))}},{key:\"findPosParam\",value:function(e,t,n){var r=n[t.path.substring(1)];if(!r)throw new Error(\"Cannot redirect to '\".concat(e,\"'. Cannot find '\").concat(t.path,\"'.\"));return r}},{key:\"findOrReturn\",value:function(e,t){var n,r=0,i=_createForOfIteratorHelper(t);try{for(i.s();!(n=i.n()).done;){var a=n.value;if(a.path===e.path)return t.splice(r),a;r++}}catch(o){i.e(o)}finally{i.f()}return e}}]),e}();function QO(e,t,n){if(\"\"===t.path)return\"full\"===t.pathMatch&&(e.hasChildren()||n.length>0)?{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}:{matched:!0,consumedSegments:[],lastChild:0,positionalParamSegments:{}};var r=(t.matcher||RD)(n,e,t);return r?{matched:!0,consumedSegments:r.consumed,lastChild:r.consumed.length,positionalParamSegments:r.posParams}:{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}}function XO(e){if(1===e.numberOfChildren&&e.children.primary){var t=e.children.primary;return new ZD(e.segments.concat(t.segments),t.children)}return e}function eY(e,t,n){return(!(e.hasChildren()||t.length>0)||\"full\"!==n.pathMatch)&&\"\"===n.path&&void 0!==n.redirectTo}function tY(e){return e.outlet||\"primary\"}var nY=function e(t){_classCallCheck(this,e),this.path=t,this.route=this.path[this.path.length-1]},rY=function e(t,n){_classCallCheck(this,e),this.component=t,this.route=n};function iY(e,t,n){var r=function(e){if(!e)return null;for(var t=e.parent;t;t=t.parent){var n=t.routeConfig;if(n&&n._loadedConfig)return n._loadedConfig}return null}(t);return(r?r.module.injector:n).get(e)}function aY(e,t,n){var r=bO(e),i=e.value;GD(r,(function(e,r){aY(e,i.component?t?t.children.getContext(r):null:t,n)})),n.canDeactivateChecks.push(new rY(i.component&&t&&t.outlet&&t.outlet.isActivated?t.outlet.component:null,i))}var oY=Symbol(\"INITIAL_VALUE\");function sY(){return Pk((function(e){return zL.apply(void 0,_toConsumableArray(e.map((function(e){return e.pipe(cp(1),sv(oY))})))).pipe(hD((function(e,t){var n=!1;return t.reduce((function(e,r,i){if(e!==oY)return e;if(r===oY&&(n=!0),!n){if(!1===r)return r;if(i===t.length-1||BO(r))return r}return e}),e)}),oY),Gd((function(e){return e!==oY})),F((function(e){return BO(e)?e:!0===e})),cp(1))}))}function lY(e,t){return null!==e&&t&&t(new OD(e)),Bd(!0)}function uY(e,t){return null!==e&&t&&t(new xD(e)),Bd(!0)}function cY(e,t,n){var r=t.routeConfig?t.routeConfig.canActivate:null;return r&&0!==r.length?Bd(r.map((function(r){return Qw((function(){var i,a=iY(r,t,n);if(function(e){return e&&UO(e.canActivate)}(a))i=$D(a.canActivate(t,e));else{if(!UO(a))throw new Error(\"Invalid CanActivate guard\");i=$D(a(t,e))}return i.pipe(uD())}))}))).pipe(sY()):Bd(!0)}function dY(e,t,n){var r=t[t.length-1],i=t.slice(0,t.length-1).reverse().map((function(e){return function(e){var t=e.routeConfig?e.routeConfig.canActivateChild:null;return t&&0!==t.length?{node:e,guards:t}:null}(e)})).filter((function(e){return null!==e})).map((function(t){return Qw((function(){return Bd(t.guards.map((function(i){var a,o=iY(i,t.node,n);if(function(e){return e&&UO(e.canActivateChild)}(o))a=$D(o.canActivateChild(r,e));else{if(!UO(o))throw new Error(\"Invalid CanActivateChild guard\");a=$D(o(r,e))}return a.pipe(uD())}))).pipe(sY())}))}));return Bd(i).pipe(sY())}var hY=function e(){_classCallCheck(this,e)},fY=function(){function e(t,n,r,i,a,o){_classCallCheck(this,e),this.rootComponentType=t,this.config=n,this.urlTree=r,this.url=i,this.paramsInheritanceStrategy=a,this.relativeLinkResolution=o}return _createClass(e,[{key:\"recognize\",value:function(){try{var e=_Y(this.urlTree.root,[],[],this.config,this.relativeLinkResolution).segmentGroup,t=this.processSegmentGroup(this.config,e,\"primary\"),n=new SO([],Object.freeze({}),Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,{},\"primary\",this.rootComponentType,null,this.urlTree.root,-1,{}),r=new yO(n,t),i=new LO(this.url,r);return this.inheritParamsAndData(i._root),Bd(i)}catch(a){return new w((function(e){return e.error(a)}))}}},{key:\"inheritParamsAndData\",value:function(e){var t=this,n=e.value,r=MO(n,this.paramsInheritanceStrategy);n.params=Object.freeze(r.params),n.data=Object.freeze(r.data),e.children.forEach((function(e){return t.inheritParamsAndData(e)}))}},{key:\"processSegmentGroup\",value:function(e,t,n){return 0===t.segments.length&&t.hasChildren()?this.processChildren(e,t):this.processSegment(e,t,t.segments,n)}},{key:\"processChildren\",value:function(e,t){var n,r=this,i=eO(t,(function(t,n){return r.processSegmentGroup(e,t,n)}));return n={},i.forEach((function(e){var t=n[e.value.outlet];if(t){var r=t.url.map((function(e){return e.toString()})).join(\"/\"),i=e.value.url.map((function(e){return e.toString()})).join(\"/\");throw new Error(\"Two segments cannot have the same outlet name: '\".concat(r,\"' and '\").concat(i,\"'.\"))}n[e.value.outlet]=e.value})),i.sort((function(e,t){return\"primary\"===e.value.outlet?-1:\"primary\"===t.value.outlet?1:e.value.outlet.localeCompare(t.value.outlet)})),i}},{key:\"processSegment\",value:function(e,t,n,r){var i,a=_createForOfIteratorHelper(e);try{for(a.s();!(i=a.n()).done;){var o=i.value;try{return this.processSegmentAgainstRoute(o,t,n,r)}catch(s){if(!(s instanceof hY))throw s}}}catch(l){a.e(l)}finally{a.f()}if(this.noLeftoversInUrl(t,n,r))return[];throw new hY}},{key:\"noLeftoversInUrl\",value:function(e,t,n){return 0===t.length&&!e.children[n]}},{key:\"processSegmentAgainstRoute\",value:function(e,t,n,r){if(e.redirectTo)throw new hY;if((e.outlet||\"primary\")!==r)throw new hY;var i,a=[],o=[];if(\"**\"===e.path){var s=n.length>0?qD(n).parameters:{};i=new SO(n,s,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,yY(e),r,e.component,e,mY(t),pY(t)+n.length,bY(e))}else{var l=function(e,t,n){if(\"\"===t.path){if(\"full\"===t.pathMatch&&(e.hasChildren()||n.length>0))throw new hY;return{consumedSegments:[],lastChild:0,parameters:{}}}var r=(t.matcher||RD)(n,e,t);if(!r)throw new hY;var i={};GD(r.posParams,(function(e,t){i[t]=e.path}));var a=r.consumed.length>0?Object.assign(Object.assign({},i),r.consumed[r.consumed.length-1].parameters):i;return{consumedSegments:r.consumed,lastChild:r.consumed.length,parameters:a}}(t,e,n);a=l.consumedSegments,o=n.slice(l.lastChild),i=new SO(a,l.parameters,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,yY(e),r,e.component,e,mY(t),pY(t)+a.length,bY(e))}var u=function(e){return e.children?e.children:e.loadChildren?e._loadedConfig.routes:[]}(e),c=_Y(t,a,o,u,this.relativeLinkResolution),d=c.segmentGroup,h=c.slicedSegments;if(0===h.length&&d.hasChildren()){var f=this.processChildren(u,d);return[new yO(i,f)]}if(0===u.length&&0===h.length)return[new yO(i,[])];var m=this.processSegment(u,d,h,\"primary\");return[new yO(i,m)]}}]),e}();function mY(e){for(var t=e;t._sourceSegment;)t=t._sourceSegment;return t}function pY(e){for(var t=e,n=t._segmentIndexShift?t._segmentIndexShift:0;t._sourceSegment;)n+=(t=t._sourceSegment)._segmentIndexShift?t._segmentIndexShift:0;return n-1}function _Y(e,t,n,r,i){if(n.length>0&&function(e,t,n){return n.some((function(n){return vY(e,t,n)&&\"primary\"!==gY(n)}))}(e,n,r)){var a=new ZD(t,function(e,t,n,r){var i={};i.primary=r,r._sourceSegment=e,r._segmentIndexShift=t.length;var a,o=_createForOfIteratorHelper(n);try{for(o.s();!(a=o.n()).done;){var s=a.value;if(\"\"===s.path&&\"primary\"!==gY(s)){var l=new ZD([],{});l._sourceSegment=e,l._segmentIndexShift=t.length,i[gY(s)]=l}}}catch(u){o.e(u)}finally{o.f()}return i}(e,t,r,new ZD(n,e.children)));return a._sourceSegment=e,a._segmentIndexShift=t.length,{segmentGroup:a,slicedSegments:[]}}if(0===n.length&&function(e,t,n){return n.some((function(n){return vY(e,t,n)}))}(e,n,r)){var o=new ZD(e.segments,function(e,t,n,r,i,a){var o,s={},l=_createForOfIteratorHelper(r);try{for(l.s();!(o=l.n()).done;){var u=o.value;if(vY(e,n,u)&&!i[gY(u)]){var c=new ZD([],{});c._sourceSegment=e,c._segmentIndexShift=\"legacy\"===a?e.segments.length:t.length,s[gY(u)]=c}}}catch(d){l.e(d)}finally{l.f()}return Object.assign(Object.assign({},i),s)}(e,t,n,r,e.children,i));return o._sourceSegment=e,o._segmentIndexShift=t.length,{segmentGroup:o,slicedSegments:n}}var s=new ZD(e.segments,e.children);return s._sourceSegment=e,s._segmentIndexShift=t.length,{segmentGroup:s,slicedSegments:n}}function vY(e,t,n){return(!(e.hasChildren()||t.length>0)||\"full\"!==n.pathMatch)&&\"\"===n.path&&void 0===n.redirectTo}function gY(e){return e.outlet||\"primary\"}function yY(e){return e.data||{}}function bY(e){return e.resolve||{}}function kY(e,t,n,r){var i=iY(e,t,r);return $D(i.resolve?i.resolve(t,n):i(t,n))}function wY(e){return function(t){return t.pipe(Pk((function(t){var n=e(t);return n?W(n).pipe(F((function(){return t}))):W([t])})))}}var CY=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"shouldDetach\",value:function(e){return!1}},{key:\"store\",value:function(e,t){}},{key:\"shouldAttach\",value:function(e){return!1}},{key:\"retrieve\",value:function(e){return null}},{key:\"shouldReuseRoute\",value:function(e,t){return e.routeConfig===t.routeConfig}}]),e}(),MY=new Be(\"ROUTES\"),SY=function(){function e(t,n,r,i){_classCallCheck(this,e),this.loader=t,this.compiler=n,this.onLoadStartListener=r,this.onLoadEndListener=i}return _createClass(e,[{key:\"load\",value:function(e,t){var n=this;return this.onLoadStartListener&&this.onLoadStartListener(t),this.loadModuleFactory(t.loadChildren).pipe(F((function(r){n.onLoadEndListener&&n.onLoadEndListener(t);var i=r.create(e);return new HD(BD(i.injector.get(MY)).map(VD),i)})))}},{key:\"loadModuleFactory\",value:function(e){var t=this;return\"string\"==typeof e?W(this.loader.load(e)):$D(e()).pipe(U((function(e){return e instanceof ot?Bd(e):W(t.compiler.compileModuleAsync(e))})))}}]),e}(),LY=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"shouldProcessUrl\",value:function(e){return!0}},{key:\"extract\",value:function(e){return e}},{key:\"merge\",value:function(e,t){return e}}]),e}();function TY(e){throw e}function xY(e,t,n){return t.parse(\"/\")}function DY(e,t){return Bd(null)}var OY,YY,EY=((YY=function(){function e(t,n,r,i,a,o,s,l){var u=this;_classCallCheck(this,e),this.rootComponentType=t,this.urlSerializer=n,this.rootContexts=r,this.location=i,this.config=l,this.lastSuccessfulNavigation=null,this.currentNavigation=null,this.navigationId=0,this.isNgZoneEnabled=!1,this.events=new x,this.errorHandler=TY,this.malformedUriErrorHandler=xY,this.navigated=!1,this.lastSuccessfulId=-1,this.hooks={beforePreactivation:DY,afterPreactivation:DY},this.urlHandlingStrategy=new LY,this.routeReuseStrategy=new CY,this.onSameUrlNavigation=\"ignore\",this.paramsInheritanceStrategy=\"emptyOnly\",this.urlUpdateStrategy=\"deferred\",this.relativeLinkResolution=\"legacy\",this.ngModule=a.get(at),this.console=a.get(Ku);var c=a.get(cc);this.isNgZoneEnabled=c instanceof cc,this.resetConfig(l),this.currentUrlTree=new KD(new ZD([],{}),{},null),this.rawUrlTree=this.currentUrlTree,this.browserUrlTree=this.currentUrlTree,this.configLoader=new SY(o,s,(function(e){return u.triggerEvent(new LD(e))}),(function(e){return u.triggerEvent(new TD(e))})),this.routerState=wO(this.currentUrlTree,this.rootComponentType),this.transitions=new tT({id:0,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,extractedUrl:this.urlHandlingStrategy.extract(this.currentUrlTree),urlAfterRedirects:this.urlHandlingStrategy.extract(this.currentUrlTree),rawUrl:this.currentUrlTree,extras:{},resolve:null,reject:null,promise:Promise.resolve(!0),source:\"imperative\",restoredState:null,currentSnapshot:this.routerState.snapshot,targetSnapshot:null,currentRouterState:this.routerState,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.navigations=this.setupNavigations(this.transitions),this.processNavigations()}return _createClass(e,[{key:\"setupNavigations\",value:function(e){var t=this,n=this.events;return e.pipe(Gd((function(e){return 0!==e.id})),F((function(e){return Object.assign(Object.assign({},e),{extractedUrl:t.urlHandlingStrategy.extract(e.rawUrl)})})),Pk((function(e){var r,i,a,o=!1,s=!1;return Bd(e).pipe(Km((function(e){t.currentNavigation={id:e.id,initialUrl:e.currentRawUrl,extractedUrl:e.extractedUrl,trigger:e.source,extras:e.extras,previousNavigation:t.lastSuccessfulNavigation?Object.assign(Object.assign({},t.lastSuccessfulNavigation),{previousNavigation:null}):null}})),Pk((function(e){var r,i,a,o,s=!t.navigated||e.extractedUrl.toString()!==t.browserUrlTree.toString();if((\"reload\"===t.onSameUrlNavigation||s)&&t.urlHandlingStrategy.shouldProcessUrl(e.rawUrl))return Bd(e).pipe(Pk((function(e){var r=t.transitions.getValue();return n.next(new vD(e.id,t.serializeUrl(e.extractedUrl),e.source,e.restoredState)),r!==t.transitions.getValue()?lp:[e]})),Pk((function(e){return Promise.resolve(e)})),(r=t.ngModule.injector,i=t.configLoader,a=t.urlSerializer,o=t.config,function(e){return e.pipe(Pk((function(e){return function(e,t,n,r,i){return new ZO(e,t,n,r,i).apply()}(r,i,a,e.extractedUrl,o).pipe(F((function(t){return Object.assign(Object.assign({},e),{urlAfterRedirects:t})})))})))}),Km((function(e){t.currentNavigation=Object.assign(Object.assign({},t.currentNavigation),{finalUrl:e.urlAfterRedirects})})),function(e,n,r,i,a){return function(r){return r.pipe(U((function(r){return function(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:\"emptyOnly\",a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:\"legacy\";return new fY(e,t,n,r,i,a).recognize()}(e,n,r.urlAfterRedirects,(o=r.urlAfterRedirects,t.serializeUrl(o)),i,a).pipe(F((function(e){return Object.assign(Object.assign({},r),{targetSnapshot:e})})));var o})))}}(t.rootComponentType,t.config,0,t.paramsInheritanceStrategy,t.relativeLinkResolution),Km((function(e){\"eager\"===t.urlUpdateStrategy&&(e.extras.skipLocationChange||t.setBrowserUrl(e.urlAfterRedirects,!!e.extras.replaceUrl,e.id,e.extras.state),t.browserUrlTree=e.urlAfterRedirects)})),Km((function(e){var r=new kD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);n.next(r)})));if(s&&t.rawUrlTree&&t.urlHandlingStrategy.shouldProcessUrl(t.rawUrlTree)){var l=e.id,u=e.extractedUrl,c=e.source,d=e.restoredState,h=e.extras,f=new vD(l,t.serializeUrl(u),c,d);n.next(f);var m=wO(u,t.rootComponentType).snapshot;return Bd(Object.assign(Object.assign({},e),{targetSnapshot:m,urlAfterRedirects:u,extras:Object.assign(Object.assign({},h),{skipLocationChange:!1,replaceUrl:!1})}))}return t.rawUrlTree=e.rawUrl,t.browserUrlTree=e.urlAfterRedirects,e.resolve(null),lp})),wY((function(e){var n=e.targetSnapshot,r=e.id,i=e.extractedUrl,a=e.rawUrl,o=e.extras,s=o.skipLocationChange,l=o.replaceUrl;return t.hooks.beforePreactivation(n,{navigationId:r,appliedUrlTree:i,rawUrlTree:a,skipLocationChange:!!s,replaceUrl:!!l})})),Km((function(e){var n=new wD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);t.triggerEvent(n)})),F((function(e){return Object.assign(Object.assign({},e),{guards:(n=e.targetSnapshot,r=e.currentSnapshot,i=t.rootContexts,a=n._root,function e(t,n,r,i){var a=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{canDeactivateChecks:[],canActivateChecks:[]},o=bO(n);return t.children.forEach((function(t){!function(t,n,r,i){var a=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{canDeactivateChecks:[],canActivateChecks:[]},o=t.value,s=n?n.value:null,l=r?r.getContext(t.value.outlet):null;if(s&&o.routeConfig===s.routeConfig){var u=function(e,t,n){if(\"function\"==typeof n)return n(e,t);switch(n){case\"pathParamsChange\":return!XD(e.url,t.url);case\"pathParamsOrQueryParamsChange\":return!XD(e.url,t.url)||!WD(e.queryParams,t.queryParams);case\"always\":return!0;case\"paramsOrQueryParamsChange\":return!OO(e,t)||!WD(e.queryParams,t.queryParams);case\"paramsChange\":default:return!OO(e,t)}}(s,o,o.routeConfig.runGuardsAndResolvers);u?a.canActivateChecks.push(new nY(i)):(o.data=s.data,o._resolvedData=s._resolvedData),e(t,n,o.component?l?l.children:null:r,i,a),u&&a.canDeactivateChecks.push(new rY(l&&l.outlet&&l.outlet.component||null,s))}else s&&aY(n,l,a),a.canActivateChecks.push(new nY(i)),e(t,null,o.component?l?l.children:null:r,i,a)}(t,o[t.value.outlet],r,i.concat([t.value]),a),delete o[t.value.outlet]})),GD(o,(function(e,t){return aY(e,r.getContext(t),a)})),a}(a,r?r._root:null,i,[a.value]))});var n,r,i,a})),function(e,t){return function(n){return n.pipe(U((function(n){var r=n.targetSnapshot,i=n.currentSnapshot,a=n.guards,o=a.canActivateChecks,s=a.canDeactivateChecks;return 0===s.length&&0===o.length?Bd(Object.assign(Object.assign({},n),{guardsResult:!0})):function(e,t,n,r){return W(e).pipe(U((function(e){return function(e,t,n,r,i){var a=t&&t.routeConfig?t.routeConfig.canDeactivate:null;return a&&0!==a.length?Bd(a.map((function(a){var o,s=iY(a,t,i);if(function(e){return e&&UO(e.canDeactivate)}(s))o=$D(s.canDeactivate(e,t,n,r));else{if(!UO(s))throw new Error(\"Invalid CanDeactivate guard\");o=$D(s(e,t,n,r))}return o.pipe(uD())}))).pipe(sY()):Bd(!0)}(e.component,e.route,n,t,r)})),uD((function(e){return!0!==e}),!0))}(s,r,i,e).pipe(U((function(n){return n&&\"boolean\"==typeof n?function(e,t,n,r){return W(t).pipe(qd((function(t){return W([uY(t.route.parent,r),lY(t.route,r),dY(e,t.path,n),cY(e,t.route,n)]).pipe(av(),uD((function(e){return!0!==e}),!0))})),uD((function(e){return!0!==e}),!0))}(r,o,e,t):Bd(n)})),F((function(e){return Object.assign(Object.assign({},n),{guardsResult:e})})))})))}}(t.ngModule.injector,(function(e){return t.triggerEvent(e)})),Km((function(e){if(BO(e.guardsResult)){var n=jD('Redirecting to \"'.concat(t.serializeUrl(e.guardsResult),'\"'));throw n.url=e.guardsResult,n}})),Km((function(e){var n=new CD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot,!!e.guardsResult);t.triggerEvent(n)})),Gd((function(e){if(!e.guardsResult){t.resetUrlToCurrentUrlTree();var r=new yD(e.id,t.serializeUrl(e.extractedUrl),\"\");return n.next(r),e.resolve(!1),!1}return!0})),wY((function(e){if(e.guards.canActivateChecks.length)return Bd(e).pipe(Km((function(e){var n=new MD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);t.triggerEvent(n)})),(n=t.paramsInheritanceStrategy,r=t.ngModule.injector,function(e){return e.pipe(U((function(e){var t=e.targetSnapshot,i=e.guards.canActivateChecks;return i.length?W(i).pipe(qd((function(e){return function(e,t,n,r){return function(e,t,n,r){var i=Object.keys(e);if(0===i.length)return Bd({});if(1===i.length){var a=i[0];return kY(e[a],t,n,r).pipe(F((function(e){return _defineProperty({},a,e)})))}var o={};return W(i).pipe(U((function(i){return kY(e[i],t,n,r).pipe(F((function(e){return o[i]=e,e})))}))).pipe(lD(),F((function(){return o})))}(e._resolve,e,t,r).pipe(F((function(t){return e._resolvedData=t,e.data=Object.assign(Object.assign({},e.data),MO(e,n).resolve),null})))}(e.route,t,n,r)})),function(e,t){return arguments.length>=2?function(n){return y(hD(e,t),Qx(1),aD(t))(n)}:function(t){return y(hD((function(t,n,r){return e(t,n,r+1)})),Qx(1))(t)}}((function(e,t){return e})),F((function(t){return e}))):Bd(e)})))}),Km((function(e){var n=new SD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);t.triggerEvent(n)})));var n,r})),wY((function(e){var n=e.targetSnapshot,r=e.id,i=e.extractedUrl,a=e.rawUrl,o=e.extras,s=o.skipLocationChange,l=o.replaceUrl;return t.hooks.afterPreactivation(n,{navigationId:r,appliedUrlTree:i,rawUrlTree:a,skipLocationChange:!!s,replaceUrl:!!l})})),F((function(e){var n=function(e,t,n){var r=function e(t,n,r){if(r&&t.shouldReuseRoute(n.value,r.value.snapshot)){var i=r.value;i._futureSnapshot=n.value;var a=function(t,n,r){return n.children.map((function(n){var i,a=_createForOfIteratorHelper(r.children);try{for(a.s();!(i=a.n()).done;){var o=i.value;if(t.shouldReuseRoute(o.value.snapshot,n.value))return e(t,n,o)}}catch(s){a.e(s)}finally{a.f()}return e(t,n)}))}(t,n,r);return new yO(i,a)}var o=t.retrieve(n.value);if(o){var s=o.route;return function e(t,n){if(t.value.routeConfig!==n.value.routeConfig)throw new Error(\"Cannot reattach ActivatedRouteSnapshot created from a different route\");if(t.children.length!==n.children.length)throw new Error(\"Cannot reattach ActivatedRouteSnapshot with a different number of children\");n.value._futureSnapshot=t.value;for(var r=0;r1&&void 0!==arguments[1]?arguments[1]:{},n=t.relativeTo,r=t.queryParams,i=t.fragment,a=t.preserveQueryParams,o=t.queryParamsHandling,s=t.preserveFragment;Lr()&&a&&console&&console.warn&&console.warn(\"preserveQueryParams is deprecated, use queryParamsHandling instead.\");var l=n||this.routerState.root,u=s?this.currentUrlTree.fragment:i,c=null;if(o)switch(o){case\"merge\":c=Object.assign(Object.assign({},this.currentUrlTree.queryParams),r);break;case\"preserve\":c=this.currentUrlTree.queryParams;break;default:c=r||null}else c=a?this.currentUrlTree.queryParams:r||null;return null!==c&&(c=this.removeEmptyProps(c)),function(e,t,n,r,i){if(0===n.length)return EO(t.root,t.root,t,r,i);var a=function(e){if(\"string\"==typeof e[0]&&1===e.length&&\"/\"===e[0])return new IO(!0,0,e);var t=0,n=!1,r=e.reduce((function(e,r,i){if(\"object\"==typeof r&&null!=r){if(r.outlets){var a={};return GD(r.outlets,(function(e,t){a[t]=\"string\"==typeof e?e.split(\"/\"):e})),[].concat(_toConsumableArray(e),[{outlets:a}])}if(r.segmentPath)return[].concat(_toConsumableArray(e),[r.segmentPath])}return\"string\"!=typeof r?[].concat(_toConsumableArray(e),[r]):0===i?(r.split(\"/\").forEach((function(r,i){0==i&&\".\"===r||(0==i&&\"\"===r?n=!0:\"..\"===r?t++:\"\"!=r&&e.push(r))})),e):[].concat(_toConsumableArray(e),[r])}),[]);return new IO(n,t,r)}(n);if(a.toRoot())return EO(t.root,new ZD([],{}),t,r,i);var o=function(e,t,n){if(e.isAbsolute)return new AO(t.root,!0,0);if(-1===n.snapshot._lastPathIndex)return new AO(n.snapshot._urlSegment,!0,0);var r=YO(e.commands[0])?0:1;return function(e,t,n){for(var r=e,i=t,a=n;a>i;){if(a-=i,!(r=r.parent))throw new Error(\"Invalid number of '../'\");i=r.segments.length}return new AO(r,!1,i-a)}(n.snapshot._urlSegment,n.snapshot._lastPathIndex+r,e.numberOfDoubleDots)}(a,t,e),s=o.processChildren?RO(o.segmentGroup,o.index,a.commands):jO(o.segmentGroup,o.index,a.commands);return EO(o.segmentGroup,s,t,r,i)}(l,this.currentUrlTree,e,c,u)}},{key:\"navigateByUrl\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{skipLocationChange:!1};Lr()&&this.isNgZoneEnabled&&!cc.isInAngularZone()&&this.console.warn(\"Navigation triggered outside Angular zone, did you forget to call 'ngZone.run()'?\");var n=BO(e)?e:this.parseUrl(e),r=this.urlHandlingStrategy.merge(n,this.rawUrlTree);return this.scheduleNavigation(r,\"imperative\",null,t)}},{key:\"navigate\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{skipLocationChange:!1};return function(e){for(var t=0;t2&&void 0!==arguments[2]?arguments[2]:{};_classCallCheck(this,e),this.router=t,this.viewportScroller=n,this.options=r,this.lastId=0,this.lastSource=\"imperative\",this.restoredId=0,this.store={},r.scrollPositionRestoration=r.scrollPositionRestoration||\"disabled\",r.anchorScrolling=r.anchorScrolling||\"disabled\"}return _createClass(e,[{key:\"init\",value:function(){\"disabled\"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration(\"manual\"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}},{key:\"createScrollEvents\",value:function(){var e=this;return this.router.events.subscribe((function(t){t instanceof vD?(e.store[e.lastId]=e.viewportScroller.getScrollPosition(),e.lastSource=t.navigationTrigger,e.restoredId=t.restoredState?t.restoredState.navigationId:0):t instanceof gD&&(e.lastId=t.id,e.scheduleScrollEvent(t,e.router.parseUrl(t.urlAfterRedirects).fragment))}))}},{key:\"consumeScrollEvents\",value:function(){var e=this;return this.router.events.subscribe((function(t){t instanceof ED&&(t.position?\"top\"===e.options.scrollPositionRestoration?e.viewportScroller.scrollToPosition([0,0]):\"enabled\"===e.options.scrollPositionRestoration&&e.viewportScroller.scrollToPosition(t.position):t.anchor&&\"enabled\"===e.options.anchorScrolling?e.viewportScroller.scrollToAnchor(t.anchor):\"disabled\"!==e.options.scrollPositionRestoration&&e.viewportScroller.scrollToPosition([0,0]))}))}},{key:\"scheduleScrollEvent\",value:function(e,t){this.router.triggerEvent(new ED(e,\"popstate\"===this.lastSource?this.store[this.restoredId]:null,t))}},{key:\"ngOnDestroy\",value:function(){this.routerEventsSubscription&&this.routerEventsSubscription.unsubscribe(),this.scrollEventsSubscription&&this.scrollEventsSubscription.unsubscribe()}}]),e}()).\\u0275fac=function(e){Po()},jY.\\u0275dir=Lt({type:jY}),jY),qY=new Be(\"ROUTER_CONFIGURATION\"),GY=new Be(\"ROUTER_FORROOT_GUARD\"),$Y=[ud,{provide:tO,useClass:nO},{provide:EY,useFactory:function(e,t,n,r,i,a,o){var s=arguments.length>7&&void 0!==arguments[7]?arguments[7]:{},l=arguments.length>8?arguments[8]:void 0,u=arguments.length>9?arguments[9]:void 0,c=new EY(null,e,t,n,r,i,a,BD(o));if(l&&(c.urlHandlingStrategy=l),u&&(c.routeReuseStrategy=u),s.errorHandler&&(c.errorHandler=s.errorHandler),s.malformedUriErrorHandler&&(c.malformedUriErrorHandler=s.malformedUriErrorHandler),s.enableTracing){var d=zc();c.events.subscribe((function(e){d.logGroup(\"Router Event: \".concat(e.constructor.name)),d.log(e.toString()),d.log(e),d.logGroupEnd()}))}return s.onSameUrlNavigation&&(c.onSameUrlNavigation=s.onSameUrlNavigation),s.paramsInheritanceStrategy&&(c.paramsInheritanceStrategy=s.paramsInheritanceStrategy),s.urlUpdateStrategy&&(c.urlUpdateStrategy=s.urlUpdateStrategy),s.relativeLinkResolution&&(c.relativeLinkResolution=s.relativeLinkResolution),c},deps:[tO,FY,ud,vo,Ec,oc,MY,qY,[function(){return function e(){_classCallCheck(this,e)}}(),new ce],[function(){return function e(){_classCallCheck(this,e)}}(),new ce]]},FY,{provide:CO,useFactory:function(e){return e.routerState.root},deps:[EY]},{provide:Ec,useClass:Pc},UY,WY,function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"preload\",value:function(e,t){return t().pipe(pC((function(){return Bd(null)})))}}]),e}(),{provide:qY,useValue:{enableTracing:!1}}];function JY(){return new Mc(\"Router\",EY)}var KY,ZY=((KY=function(){function e(t,n){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"forRoot\",value:function(t,n){return{ngModule:e,providers:[$Y,tE(t),{provide:GY,useFactory:eE,deps:[[EY,new ce,new he]]},{provide:qY,useValue:n||{}},{provide:td,useFactory:XY,deps:[Uc,[new ue(od),new ce],qY]},{provide:BY,useFactory:QY,deps:[EY,Wd,qY]},{provide:VY,useExisting:n&&n.preloadingStrategy?n.preloadingStrategy:WY},{provide:Mc,multi:!0,useFactory:JY},[rE,{provide:Vu,multi:!0,useFactory:iE,deps:[rE]},{provide:oE,useFactory:aE,deps:[rE]},{provide:Ju,multi:!0,useExisting:oE}]]}}},{key:\"forChild\",value:function(t){return{ngModule:e,providers:[tE(t)]}}}]),e}()).\\u0275mod=Mt({type:KY}),KY.\\u0275inj=ve({factory:function(e){return new(e||KY)(et(GY,8),et(EY,8))}}),KY);function QY(e,t,n){return n.scrollOffset&&t.setOffset(n.scrollOffset),new BY(e,t,n)}function XY(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return n.useHash?new ld(e,t):new sd(e,t)}function eE(e){if(e)throw new Error(\"RouterModule.forRoot() called twice. Lazy loaded modules should use RouterModule.forChild() instead.\");return\"guarded\"}function tE(e){return[{provide:go,multi:!0,useValue:e},{provide:MY,multi:!0,useValue:e}]}var nE,rE=((nE=function(){function e(t){_classCallCheck(this,e),this.injector=t,this.initNavigation=!1,this.resultOfPreactivationDone=new x}return _createClass(e,[{key:\"appInitializer\",value:function(){var e=this;return this.injector.get(Gc,Promise.resolve(null)).then((function(){var t=null,n=new Promise((function(e){return t=e})),r=e.injector.get(EY),i=e.injector.get(qY);if(e.isLegacyDisabled(i)||e.isLegacyEnabled(i))t(!0);else if(\"disabled\"===i.initialNavigation)r.setUpLocationChangeListener(),t(!0);else{if(\"enabled\"!==i.initialNavigation)throw new Error(\"Invalid initialNavigation options: '\".concat(i.initialNavigation,\"'\"));r.hooks.afterPreactivation=function(){return e.initNavigation?Bd(null):(e.initNavigation=!0,t(!0),e.resultOfPreactivationDone)},r.initialNavigation()}return n}))}},{key:\"bootstrapListener\",value:function(e){var t=this.injector.get(qY),n=this.injector.get(UY),r=this.injector.get(BY),i=this.injector.get(EY),a=this.injector.get(Oc);e===a.components[0]&&(this.isLegacyEnabled(t)?i.initialNavigation():this.isLegacyDisabled(t)&&i.setUpLocationChangeListener(),n.setUpPreloading(),r.init(),i.resetRootComponentType(a.componentTypes[0]),this.resultOfPreactivationDone.next(null),this.resultOfPreactivationDone.complete())}},{key:\"isLegacyEnabled\",value:function(e){return\"legacy_enabled\"===e.initialNavigation||!0===e.initialNavigation||void 0===e.initialNavigation}},{key:\"isLegacyDisabled\",value:function(e){return\"legacy_disabled\"===e.initialNavigation||!1===e.initialNavigation}}]),e}()).\\u0275fac=function(e){return new(e||nE)(et(vo))},nE.\\u0275prov=_e({token:nE,factory:nE.\\u0275fac}),nE);function iE(e){return e.appInitializer.bind(e)}function aE(e){return e.bootstrapListener.bind(e)}var oE=new Be(\"Router Initializer\");function sE(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:np;return(!xk(e)||e<0)&&(e=0),t&&\"function\"==typeof t.schedule||(t=np),new w((function(n){return n.add(t.schedule(lE,e,{subscriber:n,counter:0,period:e})),n}))}function lE(e){var t=e.subscriber,n=e.counter,r=e.period;t.next(n),this.schedule({subscriber:t,counter:n+1,period:r},r)}var uE={leading:!0,trailing:!1},cE=function(){function e(t,n,r){_classCallCheck(this,e),this.durationSelector=t,this.leading=n,this.trailing=r}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new dE(e,this.durationSelector,this.leading,this.trailing))}}]),e}(),dE=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e)).destination=e,o.durationSelector=r,o._leading=i,o._trailing=a,o._hasValue=!1,o}return _createClass(n,[{key:\"_next\",value:function(e){this._hasValue=!0,this._sendValue=e,this._throttled||(this._leading?this.send():this.throttle(e))}},{key:\"send\",value:function(){var e=this._hasValue,t=this._sendValue;e&&(this.destination.next(t),this.throttle(t)),this._hasValue=!1,this._sendValue=null}},{key:\"throttle\",value:function(e){var t=this.tryDurationSelector(e);t&&this.add(this._throttled=R(this,t))}},{key:\"tryDurationSelector\",value:function(e){try{return this.durationSelector(e)}catch(t){return this.destination.error(t),null}}},{key:\"throttlingDone\",value:function(){var e=this._throttled,t=this._trailing;e&&e.unsubscribe(),this._throttled=null,t&&this.send()}},{key:\"notifyNext\",value:function(e,t,n,r,i){this.throttlingDone()}},{key:\"notifyComplete\",value:function(){this.throttlingDone()}}]),n}(H);function hE(e){var t=e.start,n=e.index,r=e.count,i=e.subscriber;n>=r?i.complete():(i.next(t),i.closed||(e.index=n+1,e.start=t+1,this.schedule(e)))}function fE(e){return function(t){return t.lift(new pE(e,t))}}var mE,pE=function(){function e(t,n){_classCallCheck(this,e),this.notifier=t,this.source=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new _E(e,this.notifier,this.source))}}]),e}(),_E=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).notifier=r,a.source=i,a}return _createClass(n,[{key:\"error\",value:function(e){if(!this.isStopped){var t=this.errors,r=this.retries,i=this.retriesSubscription;if(r)this.errors=null,this.retriesSubscription=null;else{t=new x;try{r=(0,this.notifier)(t)}catch(a){return _get(_getPrototypeOf(n.prototype),\"error\",this).call(this,a)}i=R(this,r)}this._unsubscribeAndRecycle(),this.errors=t,this.retries=r,this.retriesSubscription=i,t.next(e)}}},{key:\"_unsubscribe\",value:function(){var e=this.errors,t=this.retriesSubscription;e&&(e.unsubscribe(),this.errors=null),t&&(t.unsubscribe(),this.retriesSubscription=null),this.retries=null}},{key:\"notifyNext\",value:function(e,t,n,r,i){var a=this._unsubscribe;this._unsubscribe=null,this._unsubscribeAndRecycle(),this._unsubscribe=a,this.source.subscribe(this)}}]),n}(H),vE=function(){function e(t){_classCallCheck(this,e),this.resultSelector=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new gE(e,this.resultSelector))}}]),e}(),gE=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Object.create(null);return _classCallCheck(this,n),(i=t.call(this,e)).iterators=[],i.active=0,i.resultSelector=\"function\"==typeof r?r:null,i.values=a,i}return _createClass(n,[{key:\"_next\",value:function(e){var t=this.iterators;l(e)?t.push(new bE(e)):t.push(\"function\"==typeof e[I]?new yE(e[I]()):new kE(this.destination,this,e))}},{key:\"_complete\",value:function(){var e=this.iterators,t=e.length;if(this.unsubscribe(),0!==t){this.active=t;for(var n=0;nthis.index}},{key:\"hasCompleted\",value:function(){return this.array.length===this.index}}]),e}(),kE=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).parent=r,a.observable=i,a.stillUnsubscribed=!0,a.buffer=[],a.isComplete=!1,a}return _createClass(n,[{key:I,value:function(){return this}},{key:\"next\",value:function(){var e=this.buffer;return 0===e.length&&this.isComplete?{value:null,done:!0}:{value:e.shift(),done:!1}}},{key:\"hasValue\",value:function(){return this.buffer.length>0}},{key:\"hasCompleted\",value:function(){return 0===this.buffer.length&&this.isComplete}},{key:\"notifyComplete\",value:function(){this.buffer.length>0?(this.isComplete=!0,this.parent.notifyInactive()):this.destination.complete()}},{key:\"notifyNext\",value:function(e,t,n,r,i){this.buffer.push(t),this.parent.checkIterators()}},{key:\"subscribe\",value:function(e,t){return R(this,this.observable,this,t)}}]),n}(H),wE=((mE=function(){function e(t,n){_classCallCheck(this,e),this.http=t,this.router=n}return _createClass(e,[{key:\"get\",value:function(e,t){return this.http.get(TE(e),{headers:xE(t)}).pipe(pC(CE(this.router)),fE(ME()))}},{key:\"post\",value:function(e,t,n){return this.http.post(TE(e),t,{headers:xE(n)}).pipe(pC(CE(this.router)),fE(ME()))}},{key:\"rawPost\",value:function(e,t,n){return this.http.post(TE(e),t,{headers:xE(n),observe:\"response\",responseType:\"text\"}).pipe(pC(CE(this.router)),fE(ME()))}},{key:\"delete\",value:function(e,t){return this.http.delete(TE(e),{headers:xE(t)}).pipe(pC(CE(this.router)),fE(ME()))}},{key:\"put\",value:function(e,t,n){return this.http.put(TE(e),t,{headers:xE(n)}).pipe(pC(CE(this.router)),fE(ME()))}}]),e}()).\\u0275fac=function(e){return new(e||mE)(et(kh),et(EY))},mE.\\u0275prov=_e({token:mE,factory:mE.\\u0275fac,providedIn:\"root\"}),mE);function CE(e){return function(t,n){return Bd(t).pipe(U((function(t){if(403==t.status||401==t.status)return e.routerState.snapshot.url.startsWith(\"/login\")||e.navigate([\"/login\"],{queryParams:{returnUrl:e.url}}),up();throw t})))}}function ME(){return function(e){return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0;return new w((function(r){void 0===t&&(t=e,e=0);var i=0,a=e;if(n)return n.schedule(hE,0,{index:i,count:t,start:e,subscriber:r});for(;;){if(i++>=t){r.complete();break}if(r.next(a++),r.closed)break}}))}(1,10).pipe(function(){for(var e=arguments.length,t=new Array(e),n=0;n144e6})),Pk((function(e){return console.log(\"Renewing user token\"),r.api.rawPost(\"user/token\").pipe(F((function(e){return e.headers.get(\"Authorization\")})),Gd((function(e){return\"\"!=e})),pC((function(e){return console.log(\"Error generating new user token: \",e),rT()})))}))).subscribe((function(e){return r.tokenSubject.next(e)}))}return _createClass(e,[{key:\"create\",value:function(e,t){var n=this,r=new FormData;return r.append(\"user\",e),r.append(\"password\",t),this.http.post(\"/api/v2/token\",r,{observe:\"response\",responseType:\"text\"}).pipe(F((function(e){return e.headers.get(\"Authorization\")})),F((function(e){if(e)return n.tokenSubject.next(e),e;throw new OE(\"test\")})))}},{key:\"delete\",value:function(){this.tokenSubject.next(\"\")}},{key:\"tokenObservable\",value:function(){return this.tokenSubject.pipe(F((function(e){return(e||\"\").replace(\"Bearer \",\"\")})),function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:uE;return function(n){return n.lift(new cE(e,t.leading,t.trailing))}}((function(e){return sE(2e3)})))}},{key:\"tokenUser\",value:function(e){return e?JSON.parse(atob(e.split(\".\")[1])).sub:\"\"}}]),e}()).\\u0275fac=function(e){return new(e||SE)(et(kh),et(wE))},SE.\\u0275prov=_e({token:SE,factory:SE.\\u0275fac,providedIn:\"root\"}),SE),OE=function(e){_inherits(n,_wrapNativeSuper(Error));var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return n}(),YE=[\"placeholder\",\"\\u041F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0441\\u043A\\u043E \\u0438\\u043C\\u0435\"],EE=[\"placeholder\",\"\\u041F\\u0430\\u0440\\u043E\\u043B\\u0430\"];function IE(e,t){1&e&&(Ho(0,\"ngb-alert\",7),Ls(1,\"Invalid username or password\"),Fo()),2&e&&jo(\"dismissible\",!1)(\"type\",\"danger\")}LE=\"\\u0412\\u043B\\u0435\\u0437\";var AE,PE,jE=((AE=function(){function e(t,n,r){_classCallCheck(this,e),this.router=t,this.route=n,this.tokenService=r,this.loading=!1,this.invalidLogin=!1}return _createClass(e,[{key:\"ngOnInit\",value:function(){this.tokenService.delete(),this.returnURL=this.route.snapshot.queryParams.returnURL||\"/\"}},{key:\"login\",value:function(){var e=this;this.loading=!0,this.tokenService.create(this.user,this.password).subscribe((function(t){e.invalidLogin=!1,e.router.navigate([e.returnURL])}),(function(t){401==t.status&&(e.invalidLogin=!0),e.loading=!1}))}}]),e}()).\\u0275fac=function(e){return new(e||AE)(Io(EY),Io(CO),Io(DE))},AE.\\u0275cmp=bt({type:AE,selectors:[[\"ng-component\"]],decls:13,vars:4,consts:[[1,\"content\"],[\"novalidate\",\"\",1,\"login-form\",3,\"ngSubmit\"],[\"f\",\"ngForm\"],[\"matInput\",\"\",\"name\",\"user\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"password\",\"name\",\"password\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[\"mat-raised-button\",\"\",\"type\",\"submit\",3,\"disabled\"],[3,\"dismissible\",\"type\",4,\"ngIf\"],[3,\"dismissible\",\"type\"]],template:function(e,t){if(1&e&&(Ho(0,\"div\",0),Ho(1,\"form\",1,2),qo(\"ngSubmit\",(function(){return t.login()})),Ho(3,\"mat-form-field\"),Ho(4,\"input\",3),iu(5,YE),qo(\"ngModelChange\",(function(e){return t.user=e})),Fo(),Fo(),Ho(6,\"mat-form-field\"),Ho(7,\"input\",4),iu(8,EE),qo(\"ngModelChange\",(function(e){return t.password=e})),Fo(),Fo(),No(9,\"br\"),Ho(10,\"button\",5),ru(11,LE),Fo(),Yo(12,IE,2,2,\"ngb-alert\",6),Fo(),Fo()),2&e){var n=Eo(2);bi(4),jo(\"ngModel\",t.user),bi(3),jo(\"ngModel\",t.password),bi(3),jo(\"disabled\",t.loading||!n.valid),bi(2),jo(\"ngIf\",t.invalidLogin)}},directives:[Mm,af,pm,EM,HM,$h,Um,rf,Cm,zb,Sd,ET],styles:[\".content[_ngcontent-%COMP%]{display:flex;height:100vh;align-items:center;justify-content:center}button[_ngcontent-%COMP%]{margin-bottom:1rem}\"]}),AE),RE=n(\"BOF4\"),HE=((PE=function(){function e(t){_classCallCheck(this,e),this.router=t}return _createClass(e,[{key:\"canActivate\",value:function(e,t){var n=localStorage.getItem(\"token\");if(n){var r=RE(n);if((!r.exp||r.exp>=(new Date).getTime()/1e3)&&(!r.nbf||r.nbf<(new Date).getTime()/1e3))return!0}return this.router.navigate([\"/login\"],{queryParams:{returnUrl:t.url}}),!1}}]),e}()).\\u0275fac=function(e){return new(e||PE)(et(EY))},PE.\\u0275prov=_e({token:PE,factory:PE.\\u0275fac,providedIn:\"root\"}),PE);function FE(e){return e.events.pipe(Gd((function(e){return e instanceof gD})),F((function(t){return NE([e.routerState.snapshot.root])})),sv(NE([e.routerState.snapshot.root])),Ck(),Gk(1))}function NE(e){var t,n=_createForOfIteratorHelper(e);try{for(n.s();!(t=n.n()).done;){var r=t.value;if(\"primary\"in r.data)return r;var i=NE(r.children);if(null!=i)return i}}catch(a){n.e(a)}finally{n.f()}return null}function zE(e){return e.events.pipe(Gd((function(e){return e instanceof gD})),F((function(t){return VE([e.routerState.snapshot.root])})),sv(VE([e.routerState.snapshot.root])),Ck(),Gk(1))}function VE(e){var t,n=_createForOfIteratorHelper(e);try{for(n.s();!(t=n.n()).done;){var r=t.value;if(\"articleID\"in r.params)return r;var i=VE(r.children);if(null!=i)return i}}catch(a){n.e(a)}finally{n.f()}return null}function WE(){for(var e=arguments.length,t=new Array(e),n=0;n0&&(t.title=t.hits.fragments.title.join(\" \")),t.hits.fragments.description.length>0&&(t.stripped=t.hits.fragments.description.join(\" \"))),t.stripped||(t.stripped=t.description.replace(/<[^>]+>/g,\"\")),t.feed=e[0][t.feedID],t})),t})),hD((function(e,t){if(t.unreadIDs)for(var r=0;r=t.unreadIDRange[0]&&i<=t.unreadIDRange[1]&&(e.articles[r].read=!t.unreadIDs.has(i))}if(t.fromEvent){var a,o=new Array,s=_createForOfIteratorHelper(t.articles);try{for(s.s();!(a=s.n()).done;){var u=a.value;if(u.id in e.indexMap)o.push(u);else if(n.olderFirst){for(var c=e.articles.length-1;c>=0;c--)if(l.shouldInsert(u,e.articles[c],n)){e.articles.splice(c,0,u);break}}else for(var d=0;d0})),F((function(e){return e.map((function(e){return e.id}))})),F((function(e){return[Math.min.apply(Math,e),Math.max.apply(Math,e)]})),F((function(e){return l.preferences.olderFirst?[{afterID:e[1]},e[0]]:[{olderFirst:!0,afterID:e[1]},e[0]]}))).subscribe((function(e){return l.updateSubject.next(e)}),(function(e){return console.log(\"Error refreshing article list after reconnect: \",e)})),this.eventService.articleState.subscribe((function(e){return l.stateChange.next({options:e.options,name:e.state,value:e.value})}));var d=(new Date).getTime();Notification.requestPermission((function(e){\"granted\"==e&&c.pipe(WE(l.source,(function(e,t){return[e[0],e[1],t]})),Pk((function(e){return l.eventService.feedUpdate.pipe(Gd((function(t){return l.shouldUpdate(t,e[2],e[1])})),F((function(t){var n=e[0].get(t.feedID);return n?[\"readeef: updates\",\"Feed \".concat(n,\" has been updated\")]:null})),Gd((function(e){return null!=e})),NM(3e4))}))).subscribe((function(e){document.hasFocus()||(new Date).getTime()-d>3e4&&(new Notification(e[0],{body:e[1],icon:\"/en/readeef.png\",tag:\"readeef\"}),d=(new Date).getTime())}))}))}return _createClass(e,[{key:\"articleObservable\",value:function(){return this.articles}},{key:\"requestNextPage\",value:function(){this.paging.next(null)}},{key:\"ids\",value:function(e,t){return this.api.get(this.buildURL(\"article\".concat(e.url,\"/ids\"),t)).pipe(F((function(e){return e.ids})))}},{key:\"formatArticle\",value:function(e){return this.api.get(\"article/\".concat(e,\"/format\"))}},{key:\"refreshArticles\",value:function(){this.refresh.next(null)}},{key:\"favor\",value:function(e,t){return this.articleStateChange(e,\"favorite\",t)}},{key:\"read\",value:function(e,t){return this.articleStateChange(e,\"read\",t)}},{key:\"readAll\",value:function(){var e=this;this.source.pipe(cp(1),Gd((function(e){return e.updatable})),F((function(e){return\"article\"+e.url+\"/read\"})),U((function(t){return e.api.post(t)})),F((function(e){return e.success}))).subscribe((function(e){}),(function(e){return console.log(e)}))}},{key:\"articleStateChange\",value:function(e,t,n){var r=this,i=\"article/\".concat(e,\"/\").concat(t);return(n?this.api.post(i):this.api.delete(i)).pipe(F((function(e){return e.success})),F((function(i){return i&&r.stateChange.next({options:{ids:[e]},name:t,value:n}),i})))}},{key:\"getArticlesFor\",value:function(e,t,n,r){var i=this,a=Object.assign({},t,{limit:n}),o=Object.assign({},a),s=-1,l=0;r.unreadTime?(s=r.unreadTime,l=r.unreadScore,o.unreadOnly=!0):r.time&&(s=r.time,l=r.score),-1!=s&&(t.olderFirst?(o.afterTime=s,l&&(o.afterScore=l)):(o.beforeTime=s,l&&(o.beforeScore=l)));var u=this.api.get(this.buildURL(\"article\"+e.url,o)).pipe(F((function(e){return yI(e.articles)})));if(r.unreadTime&&((o=Object.assign({},a)).readOnly=!0,r.time&&(t.olderFirst?(o.afterTime=r.time,r.score&&(o.afterScore=r.score)):(o.beforeTime=r.time,r.score&&(o.beforeScore=r.score))),u=u.pipe(U((function(t){return t.length==n?Bd(t):(o.limit=n-t.length,i.api.get(i.buildURL(\"article\"+e.url,o)).pipe(F((function(e){return yI(e.articles)})),F((function(e){return t.concat(e)}))))})))),o.afterID&&(u=u.pipe(U((function(t){if(!t||!t.length)return Bd(t);var a=Math.max.apply(Math,t.map((function(e){return e.id}))),s=Object.assign({},o,{afterID:a});return i.getArticlesFor(e,s,n,r).pipe(F((function(e){return e&&e.length?e.concat(t):t})))})))),!this.initialFetched){this.initialFetched=!0;var c=VE([this.router.routerState.snapshot.root]);if(null!=c&&+c.params.articleID>-1){var d=+c.params.articleID;return this.api.get(this.buildURL(\"article\"+(new kI).url,{ids:[d]})).pipe(F((function(e){return yI(e.articles)[0]})),cp(1),U((function(e){return u.pipe(F((function(t){for(var n=0;n0?e+(-1==e.indexOf(\"?\")?\"?\":\"&\")+n.join(\"&\"):e}},{key:\"nameToSource\",value:function(e,t){var n,r;switch(\"string\"==typeof e?n=e:(n=e.primary,r=e.secondary),n){case\"user\":return new kI;case\"favorite\":return new wI;case\"popular\":return new CI(this.nameToSource(r,t));case\"search\":return new LI(decodeURIComponent(t.query),this.nameToSource(r,t));case\"feed\":return new MI(t.id);case\"tag\":return new SI(t.id)}}},{key:\"datePaging\",value:function(e,t){return this.articles.pipe(cp(1),F((function(n){if(0==n.length)return t?{unreadTime:-1}:{};var r=n[n.length-1],i={time:r.date.getTime()/1e3};if(e instanceof CI&&(i.score=r.score),t&&!(e instanceof LI)){if(!r.read)return i.unreadTime=i.time,e instanceof CI&&(i.unreadScore=i.score),i;for(var a=1;at.date)return!0;return!1}},{key:\"shouldSet\",value:function(e,t,n){return!(t.feedIDs&&-1==t.feedIDs.indexOf(e.feedID)||t.readOnly&&!e.read||t.unreadOnly&&e.read||t.favoriteOnly&&!e.favorite||t.untaggedOnly&&!n.has(e.feedID)||t.beforeID&&e.id>=t.beforeID||t.afterID&&e.id<=t.afterID||t.beforeDate&&e.date>=t.beforeDate||t.afterDate&&e.date<=t.afterDate)}}]),e}()).\\u0275fac=function(e){return new(e||bI)(et(wE),et(DE),et(pI),et(_I),et(vI),et(EY),et(gI))},bI.\\u0275prov=_e({token:bI,factory:bI.\\u0275fac,providedIn:\"root\"}),bI);function DI(e,t){1&e&&No(0,\"div\",9),2&e&&hs(\"background-image\",\"url(\"+Zo().item.thumbnail+\")\",ri)}function OI(e,t){if(1&e&&(Ho(0,\"div\",10),Ls(1),Fo()),2&e){var n=Zo();bi(1),xs(\" \",n.item.feed,\" \")}}var YI,EI,II=((YI=function(){function e(t,n,r){_classCallCheck(this,e),this.articleService=t,this.router=n,this.route=r}return _createClass(e,[{key:\"openArticle\",value:function(e){this.router.navigate([\"article\",e.id],{relativeTo:this.route})}},{key:\"favor\",value:function(e,t){this.articleService.favor(e,t).subscribe((function(e){}),(function(e){return console.log(e)}))}}]),e}()).\\u0275fac=function(e){return new(e||YI)(Io(xI),Io(EY),Io(CO))},YI.\\u0275cmp=bt({type:YI,selectors:[[\"list-item\"]],inputs:{item:\"item\"},decls:15,vars:11,consts:[[3,\"id\",\"click\"],[1,\"row\",\"align-items-center\"],[1,\"col\",\"title\"],[\"mat-card-avatar\",\"\",\"mat-icon-button\",\"\",3,\"click\"],[3,\"innerHTML\"],[\"mat-card-image\",\"\",3,\"backgroundImage\",4,\"ngIf\"],[1,\"row\",\"align-items-center\",\"info\"],[\"class\",\"col-mat-auto feed\",4,\"ngIf\"],[1,\"col\",\"time\"],[\"mat-card-image\",\"\"],[1,\"col-mat-auto\",\"feed\"]],template:function(e,t){1&e&&(Ho(0,\"mat-card\",0),qo(\"click\",(function(){return t.openArticle(t.item)})),Ho(1,\"mat-card-header\",1),Ho(2,\"mat-card-title\",2),Ho(3,\"button\",3),qo(\"click\",(function(e){return e.stopPropagation(),t.favor(t.item.id,!t.item.favorite)})),Ho(4,\"mat-icon\"),Ls(5),Fo(),Fo(),No(6,\"span\",4),Fo(),Fo(),Yo(7,DI,1,2,\"div\",5),Ho(8,\"mat-card-content\"),No(9,\"div\",4),Fo(),Ho(10,\"mat-card-actions\"),Ho(11,\"div\",6),Yo(12,OI,2,1,\"div\",7),Ho(13,\"div\",8),Ls(14),Fo(),Fo(),Fo(),Fo()),2&e&&(fs(\"read\",t.item.read),rs(\"id\",t.item.id),bi(5),xs(\" \",t.item.favorite?\"bookmark\":\"bookmark_border\",\" \"),bi(1),jo(\"innerHTML\",t.item.title,ei),bi(1),jo(\"ngIf\",t.item.thumbnail),bi(2),jo(\"innerHTML\",t.item.stripped,ei),bi(2),fs(\"read\",t.item.read),bi(1),jo(\"ngIf\",t.item.feed),bi(2),xs(\" \",t.item.time,\" \"))},directives:[Xb,ek,Jb,zb,Qb,FC,Sd,$b,Kb,Zb],styles:[\"[_nghost-%COMP%]{height:500px}mat-card[_ngcontent-%COMP%]{display:flex;flex-direction:column;max-height:calc(100% - 12px);cursor:pointer}mat-card-header[_ngcontent-%COMP%]{overflow:hidden;flex:0 0 auto}[mat-card-image][_ngcontent-%COMP%]{height:240px;flex:1 0 auto;background-position:50%;background-repeat:no-repeat}mat-card-content[_ngcontent-%COMP%]{flex:0 1 auto;overflow:hidden;text-overflow:ellipsis-lastline;font-size:12px}mat-card-actions[_ngcontent-%COMP%]{flex:0 0 auto}.read[_ngcontent-%COMP%]{font-weight:100;color:#666}.read[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{font-weight:300}.title[_ngcontent-%COMP%]{font-weight:700;font-size:14px;overflow:hidden;text-overflow:ellipsis;line-height:1;height:3.85em}.info[_ngcontent-%COMP%]{margin:0}.feed[_ngcontent-%COMP%]{font-weight:200;font-size:10px;text-align:start}.time[_ngcontent-%COMP%]{font-size:11px;text-align:end}button[_ngcontent-%COMP%]:focus, button[_ngcontent-%COMP%]:hover{outline:none;text-decoration:none}\"]}),YI);function AI(e,t){1&e&&No(0,\"list-item\",4),2&e&&jo(\"item\",t.$implicit)}function PI(e,t){1&e&&(Ho(0,\"div\",5),ru(1,EI),Fo())}EI=\"\\u0417\\u0430\\u0440\\u0435\\u0436\\u0434\\u0430\\u043D\\u0435...\";var jI,RI,HI,FI,NI,zI=function e(t,n){_classCallCheck(this,e),this.iteration=t,this.articles=n},VI=((jI=function(){function e(t,n,r){_classCallCheck(this,e),this.articleService=t,this.router=n,this.route=r,this.items=[],this.finished=!1,this.limit=200}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.loading=!0,this.subscription=this.articleService.articleObservable().pipe(hD((function(t,n,r){return t.iteration>0&&t.articles.length==n.length&&(e.finished=!0),t.articles=[].concat(n),t.iteration++,t}),new zI(0,[])),F((function(e){return e.articles})),Pk((function(e){return sE(6e4).pipe(sv(0),F((function(t){return e.map((function(e){return e.time=uI(e.date).fromNow(),e}))})))}))).subscribe((function(t){e.loading=!1,e.items=t}),(function(t){e.loading=!1,console.log(t)}))}},{key:\"ngOnDestroy\",value:function(){this.subscription.unsubscribe()}},{key:\"fetchMore\",value:function(e){e.endIndex!==this.items.length-1||this.loading||this.finished||(this.loading=!0,this.articleService.requestNextPage())}},{key:\"firstUnread\",value:function(){if(!document.activeElement.matches(\"input\")){var e=this.items.find((function(e){return!e.read}));e&&this.router.navigate([\"article\",e.id],{relativeTo:this.route})}}},{key:\"lastUnread\",value:function(){if(!document.activeElement.matches(\"input\"))for(var e=this.items.length-1;e>-1;e--){var t=this.items[e];if(!t.read)return void this.router.navigate([\"article\",t.id],{relativeTo:this.route})}}},{key:\"refresh\",value:function(){document.activeElement.matches(\"input\")||this.articleService.refreshArticles()}}]),e}()).\\u0275fac=function(e){return new(e||jI)(Io(xI),Io(EY),Io(CO))},jI.\\u0275cmp=bt({type:jI,selectors:[[\"article-list\"]],hostBindings:function(e,t){1&e&&qo(\"keydown.arrowLeft\",(function(){return t.firstUnread()}),!1,qn)(\"keydown.shift.j\",(function(){return t.firstUnread()}),!1,qn)(\"keydown.arrowRight\",(function(){return t.lastUnread()}),!1,qn)(\"keydown.shift.k\",(function(){return t.lastUnread()}),!1,qn)(\"keydown.r\",(function(){return t.refresh()}),!1,qn)},decls:4,vars:3,consts:[[3,\"items\",\"vsEnd\"],[\"scroll\",\"\"],[3,\"item\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"loader\",4,\"ngIf\"],[3,\"item\"],[1,\"loader\"]],template:function(e,t){if(1&e&&(Ho(0,\"virtual-scroller\",0,1),qo(\"vsEnd\",(function(e){return t.fetchMore(e)})),Yo(2,AI,1,1,\"list-item\",2),Yo(3,PI,2,0,\"div\",3),Fo()),2&e){var n=Eo(1);jo(\"items\",t.items),bi(2),jo(\"ngForOf\",n.viewPortItems),bi(1),jo(\"ngIf\",t.loading)}},directives:[Gx,Cd,Sd,II],styles:['[_nghost-%COMP%]{flex-grow:1;display:flex;height:calc(100% - 64px)}virtual-scroller[_ngcontent-%COMP%]{overflow:hidden;overflow-y:auto;display:block;flex-grow:1;background:#eee}list-item[_ngcontent-%COMP%]{display:inline-block;overflow:hidden;vertical-align:top;border:0;width:calc(25% - 16px);margin:8px}@media (max-width:1350px){list-item[_ngcontent-%COMP%]{width:calc(33% - 16px)}}@media (max-width:900px){list-item[_ngcontent-%COMP%]{width:calc(50% - 16px)}}@media (max-width:600px){list-item[_ngcontent-%COMP%]{width:calc(100% - 16px)}}.loader[_ngcontent-%COMP%]{height:4em;display:block;line-height:4em;text-align:center;position:relative}.loader[_ngcontent-%COMP%]:before{content:\" \";position:absolute;top:0;left:0;width:20%;height:2px;background:red;-webkit-animation:loader-animation 2s ease-out infinite;animation:loader-animation 2s ease-out infinite}@-webkit-keyframes loader-animation{0%{transform:translate(0)}to{transform:translate(500%)}}@keyframes loader-animation{0%{transform:translate(0)}to{transform:translate(500%)}}']}),jI),WI=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new UI(e))}}]),e}(),UI=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"_next\",value:function(e){}}]),n}(p),BI=((RI=function(){function e(t,n){var r=this;_classCallCheck(this,e),this.api=t,this.tokenService=n;var i=this.tokenService.tokenObservable().pipe(Pk((function(e){return r.api.get(\"features\").pipe(F((function(e){return e.features})))})),cI(1));i.connect(),this.features=i}return _createClass(e,[{key:\"getFeatures\",value:function(){return this.features}}]),e}()).\\u0275fac=function(e){return new(e||RI)(et(wE),et(DE))},RI.\\u0275prov=_e({token:RI,factory:RI.\\u0275fac,providedIn:\"root\"}),RI),qI=[\"carousel\"];function GI(e,t){if(1&e&&(Ho(0,\"div\",17),Ls(1),Fo()),2&e){var n=Zo(2).$implicit;bi(1),xs(\" \",n.feed,\" \")}}function $I(e,t){if(1&e){var n=Wo();Ho(0,\"div\",18),Ho(1,\"button\",19),qo(\"click\",(function(){nn(n);var e=Zo(2).$implicit;return Zo().formatArticle(e)})),ru(2,FI),Fo(),Fo()}}function JI(e,t){if(1&e){var n=Wo();Ho(0,\"div\",18),Ho(1,\"button\",19),qo(\"click\",(function(){nn(n);var e=Zo(2).$implicit;return Zo().summarizeArticle(e)})),ru(2,NI),Fo(),Fo()}}function KI(e,t){if(1&e){var n=Wo();Ho(0,\"div\",4),Ho(1,\"h3\",5),Ho(2,\"button\",6),qo(\"click\",(function(){nn(n);var e=Zo().$implicit;return Zo().favorArticle(e)})),Ho(3,\"mat-icon\"),Ls(4),Fo(),Fo(),Ho(5,\"a\",7),qo(\"click\",(function(){return nn(n),Zo(2).viewActive()})),Fo(),Fo(),Ho(6,\"div\",8),Yo(7,GI,2,1,\"div\",9),Ho(8,\"div\",10),Ls(9),Fo(),Ho(10,\"div\",11),Ls(11),Fo(),Fo(),No(12,\"p\",12),Ho(13,\"div\",13),Ho(14,\"div\",14),Ho(15,\"a\",15),qo(\"click\",(function(){return nn(n),Zo(2).viewActive()})),ru(16,HI),Fo(),Fo(),Yo(17,$I,3,0,\"div\",16),Yo(18,JI,3,0,\"div\",16),Fo(),Fo()}if(2&e){var r=Zo().$implicit,i=Zo();bi(4),xs(\" \",r.favorite?\"bookmark\":\"bookmark_border\",\" \"),bi(1),rs(\"href\",r.link,ni),jo(\"innerHTML\",r.title,ei),bi(1),fs(\"read\",r.read),bi(1),jo(\"ngIf\",r.feed),bi(2),xs(\" \",i.index,\" \"),bi(2),xs(\" \",r.time,\" \"),bi(1),jo(\"innerHTML\",r.formatted,ei),bi(3),rs(\"href\",r.link,ni),bi(2),jo(\"ngIf\",i.canExtract),bi(1),jo(\"ngIf\",i.canExtract)}}function ZI(e,t){1&e&&Yo(0,KI,19,12,\"ng-template\",3),2&e&&jo(\"id\",t.$implicit.id.toString())}HI=\"\\u041E\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\",FI=\"\\u0424\\u043E\\u0440\\u043C\\u0430\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435\",NI=\"\\u041E\\u0431\\u043E\\u0431\\u0449\\u0430\\u0432\\u0430\\u043D\\u0435\";var QI,XI,eA,tA,nA,rA,iA,aA,oA=function(e){return e[e.DESCRIPTION=0]=\"DESCRIPTION\",e[e.FORMAT=1]=\"FORMAT\",e[e.SUMMARY=2]=\"SUMMARY\",e}({}),sA=((XI=function(){function e(t,n,r,i,a,o){_classCallCheck(this,e),this.route=n,this.router=r,this.articleService=i,this.featuresService=a,this.sanitizer=o,this.slides=[],this.offset=new x,this.stateChange=new tT([-1,oA.DESCRIPTION]),this.states=new Map,this.subscriptions=new Array,t.interval=0,t.wrap=!1,t.keyboard=!1}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.subscriptions.push(this.articleService.articleObservable().pipe(Pk((function(t){return e.stateChange.pipe(Pk((function(t){return e.offset.pipe(sv(0),F((function(e){return[e,t]})))})),F((function(n){var r=_slicedToArray(n,2),i=r[0],a=r[1],o=e.route.snapshot.params.articleID,s=[],l=t.findIndex((function(e){return e.id==o}));return-1==l?null:(0!=i&&(l+i!=-1&&l+i0&&s.push(t[l-1]),s.push(t[l]),l+10&&e[--n].read;);return e[n].read?t:e[n].id})),cp(1),Gd((function(e){return e!=t})),U((function(t){return W(e.router.navigate([\"../\",t],{relativeTo:e.route})).pipe(F((function(e){return t})))}))).subscribe((function(t){e.stateChange.next([t,oA.DESCRIPTION])}))}},{key:\"nextUnread\",value:function(){var e=this,t=this.route.snapshot.params.articleID;this.articleService.articleObservable().pipe(F((function(e){for(var n=e.findIndex((function(e){return e.id==t}));n
  • ')+e.keyPoints.join(\"
  • \")+\"
\"}},{key:\"getState\",value:function(e){return this.states.has(e)?this.states.get(e):oA.DESCRIPTION}},{key:\"setFormat\",value:function(e,t){var n=this,r=this.active;t!=oA.DESCRIPTION?(e.format?Bd(e.format):this.articleService.formatArticle(r.id)).subscribe((function(e){r.format=e,n.stateChange.next([r.id,t])}),(function(e){return console.log(e)})):this.stateChange.next([r.id,t])}},{key:\"formatSource\",value:function(e){return e.replace(\"0){var i=new Map;n.forEach((function(e){i.set(e.id,e)})),e.tags=r.map((function(e){return new yA(e.tag.id,\"/tag/\"+e.tag.id,e.tag.value,e.ids.map((function(e){return new bA(e,\"\".concat(e),i.get(e).title,i.get(e).link)})))})),e.tags.forEach((function(t){return e.collapses.set(t.id,!1)}))}}),(function(e){return console.log(e)}))}},{key:\"favicon\",value:function(e){return this.faviconService.iconURL(e)}}]),e}()).\\u0275fac=function(e){return new(e||pA)(Io(_I),Io(pI),Io(BI),Io(lA))},pA.\\u0275cmp=bt({type:pA,selectors:[[\"side-bar\"]],decls:22,vars:5,consts:[[\"color\",\"primary\"],[1,\"content\"],[\"mat-button\",\"\",\"routerLink\",\"/feed/favorite\"],[\"class\",\"group\",4,\"ngIf\"],[1,\"group\"],[1,\"category\"],[\"mat-button\",\"\",1,\"expander\",3,\"click\"],[\"mat-button\",\"\",\"routerLink\",\"/feed\"],[1,\"items\",3,\"ngbCollapse\"],[\"mat-button\",\"\",3,\"routerLink\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"group\",4,\"ngFor\",\"ngForOf\"],[\"mat-button\",\"\",\"routerLink\",\"/settings\"],[\"mat-button\",\"\",\"routerLink\",\"/login\"],[\"mat-button\",\"\",\"routerLink\",\"/feed/popular\"],[\"mat-button\",\"\",3,\"routerLink\"],[1,\"favicon\",3,\"src\"]],template:function(e,t){1&e&&(Ho(0,\"mat-toolbar\",0),ru(1,eA),Fo(),Ho(2,\"div\",1),Ho(3,\"a\",2),ru(4,tA),Fo(),Yo(5,dA,10,4,\"div\",3),No(6,\"hr\"),Ho(7,\"div\",4),Ho(8,\"div\",5),Ho(9,\"button\",6),qo(\"click\",(function(){return t.collapses.__all=!t.collapses.__all})),Ho(10,\"mat-icon\"),Ls(11),Fo(),Fo(),Ho(12,\"a\",7),ru(13,nA),Fo(),Fo(),Ho(14,\"div\",8),Yo(15,hA,3,3,\"a\",9),Fo(),Fo(),Yo(16,mA,9,5,\"div\",10),No(17,\"hr\"),Ho(18,\"a\",11),ru(19,rA),Fo(),Ho(20,\"a\",12),ru(21,iA),Fo(),Fo()),2&e&&(bi(5),jo(\"ngIf\",t.popularity),bi(6),Ts(t.collapses.__all?\"expand_less\":\"expand_more\"),bi(3),jo(\"ngbCollapse\",!t.collapses.__all),bi(1),jo(\"ngForOf\",t.allItems),bi(1),jo(\"ngForOf\",t.tags))},directives:[XL,Vb,IY,Sd,zb,FC,VT,Cd],styles:[\".content[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{margin-bottom:4px}.content[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex;font-size:16px}.items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:13px}.category[_ngcontent-%COMP%], .items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex}.category[_ngcontent-%COMP%] > .expander[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;min-width:24px;flex-shrink:1}.category[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{flex-grow:1;text-align:start}.category[_ngcontent-%COMP%] > .items[_ngcontent-%COMP%]{flex:0 1 100%}.content[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{margin:0}.favicon[_ngcontent-%COMP%]{padding-right:4px}\"]}),pA),yA=function e(t,n,r,i){_classCallCheck(this,e),this.id=t,this.link=n,this.title=r,this.items=i},bA=function e(t,n,r,i){_classCallCheck(this,e),this.id=t,this.link=n,this.title=r,this.url=i},kA=function(){function e(t){_classCallCheck(this,e),this.delayDurationSelector=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new wA(e,this.delayDurationSelector))}}]),e}(),wA=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).delayDurationSelector=r,i.completed=!1,i.delayNotifierSubscriptions=[],i.index=0,i}return _createClass(n,[{key:\"notifyNext\",value:function(e,t,n,r,i){this.destination.next(e),this.removeSubscription(i),this.tryComplete()}},{key:\"notifyError\",value:function(e,t){this._error(e)}},{key:\"notifyComplete\",value:function(e){var t=this.removeSubscription(e);t&&this.destination.next(t),this.tryComplete()}},{key:\"_next\",value:function(e){var t=this.index++;try{var n=this.delayDurationSelector(e,t);n&&this.tryDelay(n,e)}catch(r){this.destination.error(r)}}},{key:\"_complete\",value:function(){this.completed=!0,this.tryComplete(),this.unsubscribe()}},{key:\"removeSubscription\",value:function(e){e.unsubscribe();var t=this.delayNotifierSubscriptions.indexOf(e);return-1!==t&&this.delayNotifierSubscriptions.splice(t,1),e.outerValue}},{key:\"tryDelay\",value:function(e,t){var n=R(this,e,t);n&&!n.closed&&(this.destination.add(n),this.delayNotifierSubscriptions.push(n))}},{key:\"tryComplete\",value:function(){this.completed&&0===this.delayNotifierSubscriptions.length&&this.destination.complete()}}]),n}(H),CA=[\"search\"];function MA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){return nn(n),Zo().up()})),Ho(1,\"mat-icon\"),Ls(2,\"keyboard_backspace\"),Fo(),Fo()}}function SA(e,t){1&e&&(Ho(0,\"span\"),ru(1,_A),Fo())}function LA(e,t){1&e&&No(0,\"span\",12)}function TA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){nn(n),Zo();var e=Eo(3);return Zo().searchQuery=\"\",e.focus()})),Ho(1,\"mat-icon\"),Ls(2,\"clear\"),Fo(),Fo()}}function xA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){nn(n);var e=Zo(2);return e.performSearch(e.searchQuery)})),Ho(1,\"mat-icon\"),Ls(2,\"keyboard_return\"),Fo(),Fo()}}function DA(e,t){if(1&e){var n=Wo();Ho(0,\"div\",13),Yo(1,TA,3,0,\"button\",0),Ho(2,\"input\",14,15),qo(\"ngModelChange\",(function(e){return nn(n),Zo().searchQuery=e})),Fo(),Yo(4,xA,3,0,\"button\",0),Fo()}if(2&e){var r=Zo();bi(1),jo(\"ngIf\",r.searchQuery),bi(1),jo(\"ngModel\",r.searchQuery),bi(2),jo(\"ngIf\",r.searchQuery)}}function OA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){nn(n);var e=Zo();return e.searchEntry=!e.searchEntry})),Ho(1,\"mat-icon\"),Ls(2,\"search\"),Fo(),Fo()}}function YA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){return nn(n),Zo().refresh()})),Ho(1,\"mat-icon\"),Ls(2,\"refresh\"),Fo(),Fo()}}function EA(e,t){if(1&e){var n=Wo();Ho(0,\"mat-checkbox\",16),qo(\"ngModelChange\",(function(e){return nn(n),Zo().articleRead=e}))(\"click\",(function(){return nn(n),Zo().toggleRead()})),ru(1,vA),Fo()}2&e&&jo(\"ngModel\",Zo().articleRead)}function IA(e,t){1&e&&(Ho(0,\"button\",17),Ho(1,\"mat-icon\"),Ls(2,\"share\"),Fo(),Fo()),2&e&&(Zo(),jo(\"matMenuTriggerFor\",Eo(9)))}function AA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",10),qo(\"click\",(function(){nn(n);var e=t.$implicit;return Zo().shareArticleTo(e)})),Ls(1),Fo()}if(2&e){var r=t.$implicit;bi(1),xs(\" \",r.description,\" \")}}function PA(e,t){1&e&&(Ho(0,\"button\",17),Ho(1,\"mat-icon\"),Ls(2,\"more_vert\"),Fo(),Fo()),2&e&&(Zo(),jo(\"matMenuTriggerFor\",Eo(13)))}function jA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",10),qo(\"click\",(function(){return nn(n),Zo().toggleOlderFirst()})),Ho(1,\"span\"),Ls(2,\"Older first\"),Fo(),Fo()}}function RA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",10),qo(\"click\",(function(){return nn(n),Zo().toggleOlderFirst()})),Ho(1,\"span\"),Ls(2,\"Newer first\"),Fo(),Fo()}}function HA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",10),qo(\"click\",(function(){return nn(n),Zo().markAsRead()})),Ho(1,\"span\"),Ls(2,\"Mark all as read\"),Fo(),Fo()}}_A=\"\\u0421\\u0442\\u0430\\u0442\\u0438\\u0438\",vA=\"\\u041F\\u0440\\u043E\\u0447\\u0435\\u0442\\u0435\\u043D\\u0430\";var FA,NA,zA,VA,WA=((zA=function(){function e(t,n,r,i,a,o){_classCallCheck(this,e),this.articleService=t,this.featuresServices=n,this.preferences=r,this.router=i,this.location=a,this.sharingService=o,this.olderFirst=!1,this.showsArticle=!1,this.articleRead=!1,this.searchButton=!1,this.markAllRead=!1,this.inSearch=!1,this.enabledShares=!1,this.shareServices=new Array,this._searchQuery=\"\",this._searchEntry=!1,this.subscriptions=new Array,this.searchQuery=localStorage.getItem(e.key)||\"\"}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this,t=zE(this.router);this.subscriptions.push(t.pipe(F((function(e){return null!=e}))).subscribe((function(t){return e.showsArticle=t}))),this.articleID=t.pipe(F((function(e){return null==e?-1:+e.params.articleID})),Ck(),Gk(1)),this.subscriptions.push(this.articleID.pipe(Pk((function(t){if(-1==t)return Bd(!1);var n,r=!0;return e.articleService.articleObservable().pipe(F((function(e){var n,r=_createForOfIteratorHelper(e);try{for(r.s();!(n=r.n()).done;){var i=n.value;if(i.id==t)return i.read}}catch(a){r.e(a)}finally{r.f()}return!1})),(n=function(e){return e&&!r?Dk(1e3):(r=!1,Dk(0))},function(e){return e.lift(new kA(n))}))}))).subscribe((function(t){return e.articleRead=t}),(function(e){return console.log(e)}))),this.subscriptions.push(FE(this.router).pipe(F((function(e){return null!=e&&\"search\"==e.data.primary}))).subscribe((function(t){return e.inSearch=t}),(function(e){return console.log(e)}))),this.subscriptions.push(this.featuresServices.getFeatures().pipe(Gd((function(e){return e.search})),Pk((function(n){return t.pipe(F((function(e){return null==e})),Ck(),WE(FE(e.router),(function(t,n){var r=!1,i=!1,a=!1;if(t)switch(NE([e.router.routerState.snapshot.root]).data.primary){case\"favorite\":a=!0;case\"popular\":break;case\"search\":i=!0;default:r=!0,a=!0}return[r,i,a]})))}))).subscribe((function(t){e.searchButton=t[0],e.searchEntry=t[1],e.markAllRead=t[2]}),(function(e){return console.log(e)}))),this.subscriptions.push(this.sharingService.enabledServices().subscribe((function(t){e.enabledShares=t.length>0,e.shareServices=t}),(function(e){return console.log(e)})))}},{key:\"ngOnDestroy\",value:function(){this.subscriptions.forEach((function(e){return e.unsubscribe()}))}},{key:\"toggleOlderFirst\",value:function(){this.preferences.olderFirst=!this.preferences.olderFirst,this.olderFirst=this.preferences.olderFirst}},{key:\"toggleUnreadOnly\",value:function(){this.preferences.unreadOnly=!this.preferences.unreadOnly}},{key:\"markAsRead\",value:function(){this.articleService.readAll()}},{key:\"up\",value:function(){var e=this.location.path(),t=e.indexOf(\"/article/\");-1!=t?this.router.navigateByUrl(e.substring(0,t)):this.inSearch&&this.router.navigateByUrl(e.substring(0,e.indexOf(\"/search/\")))}},{key:\"toggleRead\",value:function(){var e=this;this.articleID.pipe(cp(1),Pk((function(t){return-1==t&&up(),e.articleService.articleObservable().pipe(F((function(e){var n,r=_createForOfIteratorHelper(e);try{for(r.s();!(n=r.n()).done;){var i=n.value;if(i.id==t)return i}}catch(a){r.e(a)}finally{r.f()}return null})),cp(1))})),U((function(t){return e.articleService.read(t.id,!t.read)}))).subscribe((function(e){}),(function(e){return console.log(e)}))}},{key:\"keyEnter\",value:function(){this.searchEntry&&this.searchQuery&&this.performSearch(this.searchQuery)}},{key:\"performSearch\",value:function(e){if(\"search\"==NE([this.router.routerState.snapshot.root]).data.primary){var t=this.location.path().indexOf(\"/search/\")+8;this.router.navigateByUrl(this.location.path().substring(0,t)+encodeURIComponent(e))}else this.router.navigateByUrl(this.location.path()+\"/search/\"+encodeURIComponent(e))}},{key:\"refresh\",value:function(){this.articleService.refreshArticles()}},{key:\"shareArticleTo\",value:function(e){var t=this;this.articleID.pipe(cp(1),Gd((function(e){return-1!=e})),Pk((function(e){return t.articleService.articleObservable().pipe(F((function(t){return t.filter((function(t){return t.id==e}))})),Gd((function(e){return e.length>0})),F((function(e){return e[0]})))})),cp(1)).subscribe((function(n){return t.sharingService.submit(e.id,n)}))}},{key:\"searchEntry\",get:function(){return this._searchEntry},set:function(e){var t=this;this._searchEntry=e,e&&setTimeout((function(){t.searchInput.nativeElement.focus()}),10)}},{key:\"searchQuery\",get:function(){return this._searchQuery},set:function(t){this._searchQuery=t,localStorage.setItem(e.key,t)}}]),e}()).key=\"searchQuery\",zA.\\u0275fac=function(e){return new(e||zA)(Io(xI),Io(BI),Io(gI),Io(EY),Io(ud),Io(qE))},zA.\\u0275cmp=bt({type:zA,selectors:[[\"ng-component\"]],viewQuery:function(e,t){var n;1&e&&Iu(CA,!0),2&e&&Yu(n=Hu())&&(t.searchInput=n.first)},hostBindings:function(e,t){1&e&&qo(\"keydown.enter\",(function(){return t.keyEnter()}))},decls:20,vars:13,consts:[[\"mat-icon-button\",\"\",3,\"click\",4,\"ngIf\"],[4,\"ngIf\"],[\"class\",\"spacer\",4,\"ngIf\"],[\"class\",\"input-group\",4,\"ngIf\"],[3,\"ngModel\",\"ngModelChange\",\"click\",4,\"ngIf\"],[\"mat-icon-button\",\"\",3,\"matMenuTriggerFor\",4,\"ngIf\"],[\"shares\",\"matMenu\"],[\"mat-menu-item\",\"\",3,\"click\",4,\"ngFor\",\"ngForOf\"],[\"other\",\"matMenu\"],[\"mat-menu-item\",\"\",3,\"click\",4,\"ngIf\"],[\"mat-menu-item\",\"\",3,\"click\"],[\"mat-icon-button\",\"\",3,\"click\"],[1,\"spacer\"],[1,\"input-group\"],[\"matInput\",\"\",\"focused\",\"\",1,\"spacer\",\"search\",\"mat-toolbar\",\"mat-primary\",\"form-control\",3,\"ngModel\",\"ngModelChange\"],[\"search\",\"\"],[3,\"ngModel\",\"ngModelChange\",\"click\"],[\"mat-icon-button\",\"\",3,\"matMenuTriggerFor\"]],template:function(e,t){1&e&&(Yo(0,MA,3,0,\"button\",0),Yo(1,SA,2,0,\"span\",1),Yo(2,LA,1,0,\"span\",2),Yo(3,DA,5,3,\"div\",3),Yo(4,OA,3,0,\"button\",0),Yo(5,YA,3,0,\"button\",0),Yo(6,EA,2,1,\"mat-checkbox\",4),Yo(7,IA,3,1,\"button\",5),Ho(8,\"mat-menu\",null,6),Yo(10,AA,2,1,\"button\",7),Fo(),Yo(11,PA,3,1,\"button\",5),Ho(12,\"mat-menu\",null,8),Yo(14,jA,3,0,\"button\",9),Yo(15,RA,3,0,\"button\",9),Ho(16,\"button\",10),qo(\"click\",(function(){return t.toggleUnreadOnly()})),Ho(17,\"span\"),Ls(18,\"Unread only\"),Fo(),Fo(),Yo(19,HA,3,0,\"button\",9),Fo()),2&e&&(jo(\"ngIf\",t.showsArticle||t.inSearch),bi(1),jo(\"ngIf\",!t.searchEntry),bi(1),jo(\"ngIf\",!t.searchEntry),bi(1),jo(\"ngIf\",t.searchEntry),bi(1),jo(\"ngIf\",t.searchButton),bi(1),jo(\"ngIf\",!t.showsArticle),bi(1),jo(\"ngIf\",t.showsArticle),bi(1),jo(\"ngIf\",t.showsArticle&&t.enabledShares),bi(3),jo(\"ngForOf\",t.shareServices),bi(1),jo(\"ngIf\",!t.showsArticle),bi(3),jo(\"ngIf\",!t.olderFirst),bi(1),jo(\"ngIf\",t.olderFirst),bi(4),jo(\"ngIf\",!t.inSearch&&t.markAllRead))},directives:[Sd,hS,Cd,oS,zb,FC,HM,$h,rf,Cm,dk,_S],styles:[\"[_nghost-%COMP%]{display:flex;align-items:center}.spacer[_ngcontent-%COMP%], [_nghost-%COMP%]{flex:1 1 auto}.search[_ngcontent-%COMP%]{min-height:0;border:none;background:transparent} label{margin-bottom:0}\"]}),zA),UA=((NA=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"ngOnInit\",value:function(){}}]),e}()).\\u0275fac=function(e){return new(e||NA)},NA.\\u0275cmp=bt({type:NA,selectors:[[\"settings-container\"]],decls:2,vars:0,consts:[[1,\"container\"]],template:function(e,t){1&e&&(Ho(0,\"div\",0),No(1,\"router-outlet\"),Fo())},directives:[NY],styles:[\"[_nghost-%COMP%]{overflow:auto}\"]}),NA),BA=((FA=function(){function e(t){_classCallCheck(this,e),this.api=t,this.user=this.api.get(\"user/current\").pipe(F((function(e){return e.user})),Gk(1))}return _createClass(e,[{key:\"getCurrentUser\",value:function(){return this.user}},{key:\"changeUserPassword\",value:function(e,t){return this.setUserSetting(\"password\",e,{current:t})}},{key:\"setUserSetting\",value:function(e,t,n){var r=\"value=\".concat(encodeURIComponent(t));if(n)for(var i in n)r+=\"&\".concat(i,\"=\").concat(encodeURIComponent(n[i]));return this.api.put(\"user/settings/\".concat(e),r,new Qd({\"Content-Type\":\"application/x-www-form-urlencoded\"})).pipe(F((function(e){return e.success})))}},{key:\"list\",value:function(){return this.api.get(\"user\").pipe(F((function(e){return e.users})))}},{key:\"addUser\",value:function(e,t){var n=new FormData;return n.append(\"login\",e),n.append(\"password\",t),this.api.post(\"user\",n).pipe(F((function(e){return e.success})))}},{key:\"deleteUser\",value:function(e){return this.api.delete(\"user/\".concat(e)).pipe(F((function(e){return e.success})))}},{key:\"toggleActive\",value:function(e,t){return this.api.put(\"user/\".concat(e,\"/settings/is-active\"),\"value=\".concat(t),new Qd({\"Content-Type\":\"application/x-www-form-urlencoded\"})).pipe(F((function(e){return e.success})))}}]),e}()).\\u0275fac=function(e){return new(e||FA)(et(wE))},FA.\\u0275prov=_e({token:FA,factory:FA.\\u0275fac,providedIn:\"root\"}),FA);VA=\"\\u041F\\u0435\\u0440\\u0441\\u043E\\u043D\\u0430\\u043B\\u0438\\u0437\\u0438\\u0440\\u0430\\u043D\\u0435\";var qA,GA,$A,JA=[\"placeholder\",\"\\u041F\\u044A\\u0440\\u0432\\u043E \\u0438\\u043C\\u0435\"],KA=[\"placeholder\",\"\\u041F\\u043E\\u0441\\u043B\\u0435\\u0434\\u043D\\u043E \\u0438\\u043C\\u0435\"],ZA=[\"placeholder\",\"\\u041F\\u043E\\u0449\\u0430\"],QA=[\"placeholder\",\"\\u0415\\u0437\\u0438\\u043A\"];function XA(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,GA),Fo())}qA=\"\\u041F\\u0440\\u043E\\u043C\\u044F\\u043D\\u0430 \\u043D\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\",GA=\"\\u041C\\u043E\\u043B\\u044F \\u0432\\u044A\\u0432\\u0435\\u0434\\u0435\\u0442\\u0435 \\u043F\\u0440\\u0430\\u0432\\u0438\\u043B\\u0435\\u043D \\u0430\\u0434\\u0440\\u0435\\u0441 \\u043D\\u0430 \\u043F\\u043E\\u0449\\u0430\",$A=\"\\u041F\\u0440\\u043E\\u043C\\u0435\\u043D\\u0435\\u0442\\u0435 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\\u0442\\u0430\";var eP,tP,nP,rP=[\"placeholder\",\"\\u041D\\u043E\\u0432\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\"],iP=[\"placeholder\",\"\\u041F\\u043E\\u0442\\u0432\\u044A\\u0440\\u0436\\u0434\\u0430\\u0432\\u0430\\u043D\\u0435 \\u043D\\u043E\\u0432\\u0430\\u0442\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\"];function aP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,tP),Fo())}function oP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,nP),Fo())}eP=\"\\u0417\\u0430\\u043F\\u0438\\u0441\\u0432\\u0430\\u043D\\u0435\",tP=\"\\u041D\\u0435\\u0432\\u0430\\u043B\\u0438\\u0434\\u043D\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\",nP=\"\\u041F\\u0430\\u0440\\u043E\\u043B\\u0438\\u0442\\u0435 \\u043D\\u0435 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\\u0442\";var sP,lP,uP,cP,dP=((lP=function(){function e(t,n){_classCallCheck(this,e),this.userService=t,this.dialog=n,this.emailFormControl=new cm(\"\",[cf.email]),this.language=localStorage.getItem(\"locale\")||\"en\"}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.userService.getCurrentUser().subscribe((function(t){e.firstName=t.firstName,e.lastName=t.lastName,e.emailFormControl.setValue(t.email)}),(function(e){return console.log(e)}))}},{key:\"firstNameChange\",value:function(){this.userService.setUserSetting(\"first-name\",this.firstName).subscribe((function(){}),(function(e){return console.log(e)}))}},{key:\"lastNameChange\",value:function(){this.userService.setUserSetting(\"last-name\",this.lastName).subscribe((function(){}),(function(e){return console.log(e)}))}},{key:\"emailChange\",value:function(){var e=this;this.emailFormControl.updateValueAndValidity(),this.emailFormControl.valid&&this.userService.setUserSetting(\"email\",this.emailFormControl.value).subscribe((function(t){t||e.emailFormControl.setErrors({email:!0})}),(function(e){return console.log(e)}))}},{key:\"languageChange\",value:function(e){location.href=\"/\"+e+\"/\"}},{key:\"changePassword\",value:function(){this.dialog.open(hP,{width:\"250px\"})}}]),e}()).\\u0275fac=function(e){return new(e||lP)(Io(BA),Io(fC))},lP.\\u0275cmp=bt({type:lP,selectors:[[\"settings-general\"]],decls:26,vars:7,consts:[[1,\"title\"],[\"matInput\",\"\",3,\"ngModel\",\"ngModelChange\",\"change\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"email\",3,\"formControl\",\"change\",6,\"placeholder\"],[4,\"ngIf\"],[3,\"ngModel\",\"change\",\"ngModelChange\",6,\"placeholder\"],[3,\"value\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,VA),Fo(),Ho(2,\"mat-form-field\"),Ho(3,\"input\",1),iu(4,JA),qo(\"ngModelChange\",(function(e){return t.firstName=e}))(\"change\",(function(){return t.firstNameChange()})),Fo(),Fo(),No(5,\"br\"),Ho(6,\"mat-form-field\"),Ho(7,\"input\",1),iu(8,KA),qo(\"ngModelChange\",(function(e){return t.lastName=e}))(\"change\",(function(){return t.lastNameChange()})),Fo(),Fo(),No(9,\"br\"),Ho(10,\"mat-form-field\"),Ho(11,\"input\",2),iu(12,ZA),qo(\"change\",(function(){return t.emailChange()})),Fo(),Yo(13,XA,2,0,\"mat-error\",3),Fo(),No(14,\"br\"),Ho(15,\"mat-form-field\"),Ho(16,\"mat-select\",4),iu(17,QA),qo(\"change\",(function(e){return t.languageChange(e.value)}))(\"ngModelChange\",(function(e){return t.language=e})),Ho(18,\"mat-option\",5),Ls(19,\"English\"),Fo(),Ho(20,\"mat-option\",5),Ls(21,\"\\u0411\\u044a\\u043b\\u0433\\u0430\\u0440\\u0441\\u043a\\u0438\"),Fo(),Fo(),Fo(),No(22,\"br\"),Ho(23,\"div\",6),Ho(24,\"button\",7),qo(\"click\",(function(){return t.changePassword()})),ru(25,qA),Fo(),Fo()),2&e&&(bi(3),jo(\"ngModel\",t.firstName),bi(4),jo(\"ngModel\",t.lastName),bi(4),jo(\"formControl\",t.emailFormControl),bi(2),jo(\"ngIf\",t.emailFormControl.hasError(\"email\")),bi(3),jo(\"ngModel\",t.language),bi(2),jo(\"value\",\"en\"),bi(2),jo(\"value\",\"bg\"))},directives:[EM,HM,$h,rf,Cm,Tm,Sd,GS,gb,zb,cM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),lP),hP=((sP=function(){function e(t,n){_classCallCheck(this,e),this.dialogRef=t,this.userService=n,this.currentFormControl=new cm(\"\",[cf.required]),this.passwordFormControl=new cm(\"\",[cf.required])}return _createClass(e,[{key:\"save\",value:function(){var e=this;this.passwordFormControl.value==this.passwordConfirm?(this.currentFormControl.updateValueAndValidity(),this.currentFormControl.valid&&this.userService.changeUserPassword(this.passwordFormControl.value,this.currentFormControl.value).subscribe((function(t){t?e.close():e.currentFormControl.setErrors({auth:!0})}),(function(t){400!=t.status?console.log(t):e.currentFormControl.setErrors({auth:!0})}))):this.passwordFormControl.setErrors({mismatch:!0})}},{key:\"close\",value:function(){this.dialogRef.close()}}]),e}()).\\u0275fac=function(e){return new(e||sP)(Io(lC),Io(BA))},sP.\\u0275cmp=bt({type:sP,selectors:[[\"ng-component\"]],decls:18,vars:5,consts:[[1,\"title\"],[\"matInput\",\"\",\"type\",\"password\",\"placeholder\",\"Current password\",\"required\",\"\",3,\"formControl\"],[4,\"ngIf\"],[\"matInput\",\"\",\"type\",\"password\",\"required\",\"\",3,\"formControl\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"password\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h6\",0),ru(1,$A),Fo(),Ho(2,\"mat-form-field\"),No(3,\"input\",1),Yo(4,aP,2,0,\"mat-error\",2),Fo(),No(5,\"br\"),Ho(6,\"mat-form-field\"),Ho(7,\"input\",3),iu(8,rP),Fo(),Yo(9,oP,2,0,\"mat-error\",2),Fo(),No(10,\"br\"),Ho(11,\"mat-form-field\"),Ho(12,\"input\",4),iu(13,iP),qo(\"ngModelChange\",(function(e){return t.passwordConfirm=e})),Fo(),Fo(),No(14,\"br\"),Ho(15,\"div\",5),Ho(16,\"button\",6),qo(\"click\",(function(){return t.save()})),ru(17,eP),Fo(),Fo()),2&e&&(bi(3),jo(\"formControl\",t.currentFormControl),bi(1),jo(\"ngIf\",t.currentFormControl.hasError(\"auth\")),bi(3),jo(\"formControl\",t.passwordFormControl),bi(2),jo(\"ngIf\",t.passwordFormControl.hasError(\"mismatch\")),bi(3),jo(\"ngModel\",t.passwordConfirm))},directives:[EM,HM,$h,Um,rf,Tm,Sd,Cm,zb,cM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),sP),fP=[\"opmlInput\"];uP=\"\\u041E\\u0442\\u043A\\u0440\\u0438\\u0432\\u0430\\u043D\\u0435/\\u0438\\u043C\\u043F\\u043E\\u0440\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435 \\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",cP=\" You can enter the url of a feed directly, as well as a url of a site that may contain one or more feeds, or a search query. \";var mP,pP=[\"placeholder\",\"\\u0410\\u0434\\u0440\\u0435\\u0441/\\u043A\\u043B\\u044E\\u0447\\u043E\\u0432\\u0438 \\u0434\\u0443\\u043C\\u0438\"];mP=\"\\u041C\\u043E\\u0436\\u0435 \\u0434\\u0430 \\u0441\\u0435 \\u043A\\u0430\\u0447\\u0438 \\u0438 OPML \\u0444\\u0430\\u0439\\u043B.\";var _P,vP,gP,yP,bP,kP,wP,CP,MP,SP,LP=[\"placeholder\",\"\\u0418\\u043C\\u043F\\u043E\\u0440\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435 \\u043D\\u0430 OPML\"];function TP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,vP),Fo())}function xP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,gP),Fo())}function DP(e,t){1&e&&No(0,\"mat-progress-bar\",7)}function OP(e,t){if(1&e){var n=Wo();Ho(0,\"div\"),Ho(1,\"p\"),ru(2,cP),Fo(),Ho(3,\"mat-form-field\"),Ho(4,\"input\",2),iu(5,pP),qo(\"ngModelChange\",(function(e){return nn(n),Zo().query=e}))(\"keydown.Enter\",(function(){return nn(n),Zo().search()})),Fo(),Yo(6,TP,2,0,\"mat-error\",1),Yo(7,xP,2,0,\"mat-error\",1),Fo(),No(8,\"br\"),Ho(9,\"p\"),ru(10,mP),Fo(),Ho(11,\"input\",3,4),iu(13,LP),qo(\"keydown.Enter\",(function(){return nn(n),Zo().search()})),Fo(),No(14,\"br\"),Ho(15,\"button\",5),qo(\"click\",(function(){return nn(n),Zo().search()})),ru(16,_P),Fo(),No(17,\"br\"),Yo(18,DP,1,0,\"mat-progress-bar\",6),Fo()}if(2&e){var r=Zo();bi(4),jo(\"ngModel\",r.query),bi(2),jo(\"ngIf\",r.queryFormControl.hasError(\"empty\")),bi(1),jo(\"ngIf\",r.queryFormControl.hasError(\"search\")),bi(8),jo(\"disabled\",r.loading),bi(3),jo(\"ngIf\",r.loading)}}function YP(e,t){1&e&&(Ho(0,\"p\"),ru(1,yP),Fo())}function EP(e,t){if(1&e&&(Ho(0,\"div\"),Ho(1,\"mat-checkbox\"),Ls(2),Fo(),No(3,\"br\"),Ho(4,\"a\",11),Ls(5),Fo(),No(6,\"hr\"),Fo()),2&e){var n=t.$implicit,r=Zo(2);bi(2),Ts(n.title),bi(2),rs(\"href\",r.baseURL(n.link),ni),bi(1),Ts(n.description||n.title)}}function IP(e,t){1&e&&(Ho(0,\"p\"),Ls(1,\" No feeds selected \"),Fo())}function AP(e,t){if(1&e){var n=Wo();Ho(0,\"button\",5),qo(\"click\",(function(){return nn(n),Zo(2).add()})),ru(1,bP),Fo()}2&e&&jo(\"disabled\",Zo(2).loading)}function PP(e,t){if(1&e){var n=Wo();Ho(0,\"button\",12),qo(\"click\",(function(){return nn(n),Zo(2).phase=\"query\"})),ru(1,kP),Fo()}}function jP(e,t){if(1&e&&(Ho(0,\"div\"),Yo(1,YP,2,0,\"p\",1),Yo(2,EP,7,3,\"div\",8),Yo(3,IP,2,0,\"p\",1),Yo(4,AP,2,1,\"button\",9),Yo(5,PP,2,0,\"button\",10),Fo()),2&e){var n=Zo();bi(1),jo(\"ngIf\",0==n.feeds.length),bi(1),jo(\"ngForOf\",n.feeds),bi(1),jo(\"ngIf\",n.emptySelection),bi(1),jo(\"ngIf\",n.feeds.length>0),bi(1),jo(\"ngIf\",0==n.feeds.length)}}function RP(e,t){1&e&&(Ho(0,\"p\"),ru(1,CP),Fo())}function HP(e,t){1&e&&(Ho(0,\"p\"),ru(1,MP),Fo())}function FP(e,t){if(1&e&&(Ho(0,\"div\"),Ho(1,\"p\"),ru(2,SP),Fo(),Fo()),2&e){var n=t.$implicit;bi(2),su(n.title)(n.error),lu(2)}}function NP(e,t){if(1&e){var n=Wo();Ho(0,\"div\"),Yo(1,RP,2,0,\"p\",1),Yo(2,HP,2,0,\"p\",1),Yo(3,FP,3,2,\"div\",8),Ho(4,\"button\",12),qo(\"click\",(function(){return nn(n),Zo().phase=\"query\"})),ru(5,wP),Fo(),Fo()}if(2&e){var r=Zo();bi(1),jo(\"ngIf\",!r.addFeedResult.success),bi(1),jo(\"ngIf\",r.addFeedResult.success),bi(1),jo(\"ngForOf\",r.addFeedResult.errors)}}_P=\"\\u0422\\u044A\\u0440\\u0441\\u0435\\u043D\\u0435\",vP=\"\\u041D\\u0435 \\u0441\\u0430 \\u0437\\u0430\\u0434\\u0430\\u0434\\u0435\\u043D\\u0438 \\u043A\\u043B\\u044E\\u0447\\u043E\\u0432\\u0438 \\u0434\\u0443\\u043C\\u0438 \\u0438\\u043B\\u0438 \\u0444\\u0430\\u0439\\u043B\",gP=\"\\u0413\\u0440\\u0435\\u0448\\u043A\\u0430 \\u043F\\u0440\\u0438 \\u0442\\u044A\\u0440\\u0441\\u0435\\u043D\\u0435\",yP=\"\\u041D\\u044F\\u043C\\u0430 \\u043D\\u0430\\u043C\\u0435\\u0440\\u0435\\u043D\\u0438 \\u043D\\u043E\\u0432\\u0438 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",bP=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435\",kP=\"\\u041E\\u0442\\u043A\\u0440\\u0438\\u0432\\u0430\\u043D\\u0435 \\u043D\\u0430 \\u043E\\u0449\\u0435 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",wP=\"\\u041E\\u0442\\u043A\\u0440\\u0438\\u0432\\u0430\\u043D\\u0435 \\u043D\\u0430 \\u043E\\u0449\\u0435 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",CP=\"\\u041D\\u044F\\u043C\\u0430 \\u0434\\u043E\\u0431\\u0430\\u0432\\u0435\\u043D\\u0438 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",MP=\"\\u0415\\u043C\\u0438\\u0441\\u0438\\u0438\\u0442\\u0435 \\u0441\\u0430 \\u0434\\u043E\\u0431\\u0430\\u0432\\u0435\\u043D\\u0438 \\u0443\\u0441\\u043F\\u0435\\u0448\\u043D\\u043E.\",SP=\"\\n \\u0413\\u0440\\u0435\\u0448\\u043A\\u0430 \\u043F\\u0440\\u0438 \\u0434\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435 \\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u044F \" + \"\\ufffd0\\ufffd\" + \": \" + \"\\ufffd1\\ufffd\" + \"\\n \";var zP,VP,WP,UP=((zP=function(){function e(t){_classCallCheck(this,e),this.feedService=t,this.query=\"\",this.phase=\"query\",this.loading=!1,this.feeds=new Array,this.emptySelection=!1,this.queryFormControl=new cm(\"\")}return _createClass(e,[{key:\"search\",value:function(){var e=this;if(!this.loading)if(\"\"!=this.query||this.opml.nativeElement.files.length){var t;if(this.loading=!0,this.opml.nativeElement.files.length){var n=this.opml.nativeElement.files[0];t=w.create((function(e){var t=new FileReader;t.onload=function(t){e.next({opml:t.target.result,dryRun:!0}),e.complete()},t.onerror=function(t){e.error(t)},t.readAsText(n)})).pipe(U((function(t){return e.feedService.importOPML(t)})))}else t=this.feedService.discover(this.query);t.subscribe((function(t){e.loading=!1,e.phase=\"search-result\",e.feeds=t}),(function(t){e.loading=!1,e.queryFormControl.setErrors({search:!0}),console.log(t)}))}else this.queryFormControl.setErrors({empty:!0})}},{key:\"add\",value:function(){var e=this;if(!this.loading){var t=new Array;this.feedChecks.forEach((function(n,r){n.checked&&t.push(e.feeds[r].link)})),0!=t.length?(this.loading=!0,this.feedService.addFeeds(t).subscribe((function(t){e.loading=!1,e.addFeedResult=t,e.phase=\"add-result\"}),(function(t){e.loading=!1,console.log(t)}))):this.emptySelection=!0}}},{key:\"baseURL\",value:function(e){var t=document.createElement(\"a\");return t.href=e,t.pathname=\"\",t.href}}]),e}()).\\u0275fac=function(e){return new(e||zP)(Io(pI))},zP.\\u0275cmp=bt({type:zP,selectors:[[\"settings-discovery\"]],viewQuery:function(e,t){var n;1&e&&(Iu(fP,!0),Iu(dk,!0)),2&e&&(Yu(n=Hu())&&(t.opml=n.first),Yu(n=Hu())&&(t.feedChecks=n))},decls:5,vars:3,consts:[[1,\"title\"],[4,\"ngIf\"],[\"matInput\",\"\",3,\"ngModel\",\"ngModelChange\",\"keydown.Enter\",6,\"placeholder\"],[\"type\",\"file\",\"accept\",\".opml\",3,\"keydown.Enter\",6,\"placeholder\"],[\"opmlInput\",\"\"],[\"mat-raised-button\",\"\",3,\"disabled\",\"click\"],[\"mode\",\"indeterminate\",4,\"ngIf\"],[\"mode\",\"indeterminate\"],[4,\"ngFor\",\"ngForOf\"],[\"mat-raised-button\",\"\",3,\"disabled\",\"click\",4,\"ngIf\"],[\"mat-raised-button\",\"\",3,\"click\",4,\"ngIf\"],[1,\"discovery-link\",3,\"href\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,uP),Fo(),Yo(2,OP,19,5,\"div\",1),Yo(3,jP,6,5,\"div\",1),Yo(4,NP,6,3,\"div\",1)),2&e&&(bi(2),jo(\"ngIf\",\"query\"==t.phase),bi(1),jo(\"ngIf\",\"search-result\"==t.phase),bi(1),jo(\"ngIf\",\"add-result\"==t.phase))},directives:[Sd,EM,HM,$h,rf,Cm,zb,cM,CS,Cd,dk],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}input[type=file][_ngcontent-%COMP%]{width:100%;border-bottom:1px solid grey;padding-bottom:4px;margin-bottom:1em}mat-progress-bar[_ngcontent-%COMP%]{margin-top:1em}.discovery-link[_ngcontent-%COMP%]{display:block;text-align:end}\"]}),zP),BP=[\"downloader\"];function qP(e,t){1&e&&(Ho(0,\"p\",7),Ls(1,\" No feeds have been added\\n\"),Fo())}VP=\"\\u0423\\u043F\\u0440\\u0430\\u0432\\u043B\\u0435\\u043D\\u0438\\u0435 \\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",WP=\"\\u0415\\u043A\\u0441\\u043F\\u043E\\u0440\\u0442 \\u0432 OPML \\u0444\\u043E\\u0440\\u043C\\u0430\\u0442\";var GP,$P=[\"placeholder\",\"\\u0422\\u0430\\u0433\\u043E\\u0432\\u0435\"];function JP(e,t){if(1&e){var n=Wo();Ho(0,\"div\",8),No(1,\"img\",9),Ho(2,\"a\",10),Ls(3),Fo(),Ho(4,\"button\",11),qo(\"click\",(function(){nn(n);var e=t.$implicit;return Zo().showError(e[0].updateError)})),Ho(5,\"mat-icon\"),Ls(6,\"warning\"),Fo(),Fo(),Ho(7,\"mat-form-field\",12),Ho(8,\"input\",13),iu(9,$P),qo(\"change\",(function(e){nn(n);var r=t.$implicit;return Zo().tagsChange(e,r[0].id)})),Fo(),Fo(),Ho(10,\"button\",14),qo(\"click\",(function(e){nn(n);var r=t.$implicit;return Zo().deleteFeed(e,r[0].id)})),Ho(11,\"mat-icon\"),Ls(12,\"delete\"),Fo(),Fo(),Fo()}if(2&e){var r=t.$implicit,i=Zo();bi(1),rs(\"src\",i.favicon(r[0].link),ni),bi(1),rs(\"href\",r[0].link,ni),bi(1),Ts(r[0].title),bi(1),fs(\"visible\",r[0].updateError),bi(4),rs(\"value\",r[1].join(\", \"))}}function KP(e,t){if(1&e&&(Ho(0,\"li\"),Ls(1),Fo()),2&e){var n=t.$implicit;bi(1),Ts(n)}}GP=\"\\u0417\\u0430\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\";var ZP,QP,XP,ej,tj,nj,rj,ij,aj,oj,sj,lj,uj,cj,dj,hj,fj=((QP=function(){function e(t,n,r,i){_classCallCheck(this,e),this.feedService=t,this.tagService=n,this.faviconService=r,this.errorDialog=i,this.feeds=new Array}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.feedService.getFeeds().pipe(WE(this.tagService.getTagsFeedIDs(),(function(e,t){var n,r=new Map,i=_createForOfIteratorHelper(t);try{for(i.s();!(n=i.n()).done;){var a,o=n.value,s=_createForOfIteratorHelper(o.ids);try{for(s.s();!(a=s.n()).done;){var l=a.value;r.has(l)?r.get(l).push(o.tag.value):r.set(l,[o.tag.value])}}catch(u){s.e(u)}finally{s.f()}}}catch(u){i.e(u)}finally{i.f()}return e.map((function(e){return[e,r.get(e.id)||[]]}))}))).subscribe((function(t){return e.feeds=t||[]}),(function(e){return console.log(e)}))}},{key:\"favicon\",value:function(e){return this.faviconService.iconURL(e)}},{key:\"tagsChange\",value:function(e,t){this.feedService.updateTags(t,e.target.value.split(\",\").map((function(e){return e.trim()}))).subscribe((function(e){}),(function(e){return console.log(e)}))}},{key:\"showError\",value:function(e){this.errorDialog.open(mj,{width:\"300px\",data:e.split(\"\\n\").filter((function(e){return e}))})}},{key:\"deleteFeed\",value:function(e,t){this.feedService.deleteFeed(t).subscribe((function(t){if(t){for(var n=e.target.parentNode;(n=n.parentElement)&&!n.classList.contains(\"feed\"););n.parentNode.removeChild(n)}}),(function(e){return console.log(e)}))}},{key:\"exportOPML\",value:function(){var e=this;this.feedService.exportOPML().subscribe((function(t){e.downloader.nativeElement.href=\"data:text/x-opml+xml,\"+encodeURIComponent(t),e.downloader.nativeElement.click()}),(function(e){return console.log(e)}))}}]),e}()).\\u0275fac=function(e){return new(e||QP)(Io(pI),Io(_I),Io(lA),Io(fC))},QP.\\u0275cmp=bt({type:QP,selectors:[[\"settings-management\"]],viewQuery:function(e,t){var n;1&e&&Iu(BP,!0,Qs),2&e&&Yu(n=Hu())&&(t.downloader=n.first)},decls:9,vars:2,consts:[[1,\"title\"],[\"u18n\",\"\",4,\"ngIf\"],[\"class\",\"feed\",4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"hidden\",\"\",\"download\",\"feeds.opml\"],[\"downloader\",\"\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"u18n\",\"\"],[1,\"feed\"],[1,\"favicon\",3,\"src\"],[1,\"name\",3,\"href\"],[\"mat-icon-button\",\"\",1,\"error\",3,\"click\"],[1,\"tags\"],[\"matInput\",\"\",3,\"value\",\"change\",6,\"placeholder\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,VP),Fo(),Yo(2,qP,2,0,\"p\",1),Yo(3,JP,13,6,\"div\",2),Ho(4,\"div\",3),No(5,\"a\",4,5),Ho(7,\"button\",6),qo(\"click\",(function(){return t.exportOPML()})),ru(8,WP),Fo(),Fo()),2&e&&(bi(2),jo(\"ngIf\",0==t.feeds.length),bi(1),jo(\"ngForOf\",t.feeds))},directives:[Sd,Cd,zb,FC,EM,HM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".feed[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.favicon[_ngcontent-%COMP%]{width:16px;height:16px;margin-right:5px;flex-shrink:1}.name[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{flex:1 0 0;min-width:250px}.tags[_ngcontent-%COMP%]{width:auto}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}\"]}),QP),mj=((ZP=function(){function e(t,n){_classCallCheck(this,e),this.dialogRef=t,this.errors=n}return _createClass(e,[{key:\"close\",value:function(){this.dialogRef.close()}}]),e}()).\\u0275fac=function(e){return new(e||ZP)(Io(lC),Io(uC))},ZP.\\u0275cmp=bt({type:ZP,selectors:[[\"error-dialog\"]],decls:5,vars:1,consts:[[2,\"max-height\",\"85vh\",\"overflow\",\"auto\"],[4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"ul\",0),Yo(1,KP,2,1,\"li\",1),Fo(),Ho(2,\"div\",2),Ho(3,\"button\",3),qo(\"click\",(function(){return t.close()})),ru(4,GP),Fo(),Fo()),2&e&&(bi(1),jo(\"ngForOf\",t.errors))},directives:[Cd,zb],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".feed[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.favicon[_ngcontent-%COMP%]{width:16px;height:16px;margin-right:5px;flex-shrink:1}.name[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{flex:1 0 0;min-width:250px}.tags[_ngcontent-%COMP%]{width:auto}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}\"]}),ZP);function pj(e,t){1&e&&(Ho(0,\"p\"),ru(1,tj),Fo())}function _j(e,t){1&e&&(Ho(0,\"span\"),ru(1,rj),Fo())}function vj(e,t){1&e&&(Ho(0,\"span\"),ru(1,ij),Fo())}function gj(e,t){if(1&e&&(Ho(0,\"span\"),Yo(1,_j,2,0,\"span\",1),Yo(2,vj,2,0,\"span\",1),Ho(3,\"span\",13),Ls(4),Fo(),Ho(5,\"span\",14),ru(6,nj),Fo(),Fo()),2&e){var n=Zo().$implicit;bi(1),jo(\"ngIf\",!n.inverseURL),bi(1),jo(\"ngIf\",n.inverseURL),bi(2),Ts(n.urlTerm)}}function yj(e,t){1&e&&(Ho(0,\"span\",15),Ls(1,\" and \"),Fo())}function bj(e,t){1&e&&(Ho(0,\"span\"),ru(1,oj),Fo())}function kj(e,t){1&e&&(Ho(0,\"span\"),ru(1,sj),Fo())}function wj(e,t){if(1&e&&(Ho(0,\"span\"),Yo(1,bj,2,0,\"span\",1),Yo(2,kj,2,0,\"span\",1),Ho(3,\"span\",13),Ls(4),Fo(),Ho(5,\"span\",16),ru(6,aj),Fo(),Fo()),2&e){var n=Zo().$implicit;bi(1),jo(\"ngIf\",!n.inverseTitle),bi(1),jo(\"ngIf\",n.inverseTitle),bi(2),Ts(n.titleTerm)}}function Cj(e,t){1&e&&(Ho(0,\"span\",17),ru(1,lj),Fo())}function Mj(e,t){1&e&&(Ho(0,\"span\",18),ru(1,uj),Fo())}function Sj(e,t){1&e&&(Ho(0,\"span\",17),ru(1,cj),Fo())}function Lj(e,t){1&e&&(Ho(0,\"span\",18),ru(1,dj),Fo())}function Tj(e,t){if(1&e&&(Ho(0,\"span\",19),Ls(1),Fo()),2&e){var n=Zo().$implicit,r=Zo();bi(1),Ts(r.tagLabel(n.tagID))}}function xj(e,t){if(1&e&&(Ho(0,\"span\",20),Ls(1),Fo()),2&e){var n=Zo().$implicit,r=Zo();bi(1),Ts(r.feedsLabel(n.feedIDs))}}function Dj(e,t){if(1&e){var n=Wo();Ho(0,\"div\",5),Ho(1,\"div\",6),Yo(2,gj,7,3,\"span\",1),Yo(3,yj,2,0,\"span\",7),Yo(4,wj,7,3,\"span\",1),Yo(5,Cj,2,0,\"span\",8),Yo(6,Mj,2,0,\"span\",9),Yo(7,Sj,2,0,\"span\",8),Yo(8,Lj,2,0,\"span\",9),Yo(9,Tj,2,1,\"span\",10),Yo(10,xj,2,1,\"span\",11),Fo(),Ho(11,\"button\",12),qo(\"click\",(function(e){nn(n);var r=t.$implicit;return Zo().deleteFilter(e,r)})),Ho(12,\"mat-icon\"),Ls(13,\"delete\"),Fo(),Fo(),Fo()}if(2&e){var r=t.$implicit;bi(2),jo(\"ngIf\",r.urlTerm),bi(1),jo(\"ngIf\",r.urlTerm&&r.titleTerm),bi(1),jo(\"ngIf\",r.titleTerm),bi(1),jo(\"ngIf\",r.inverseFeeds&&r.tagID),bi(1),jo(\"ngIf\",r.inverseFeeds&&r.feedIDs&&!r.tagID),bi(1),jo(\"ngIf\",r.tagID),bi(1),jo(\"ngIf\",r.feedIDs&&!r.tagID),bi(1),jo(\"ngIf\",r.tagID),bi(1),jo(\"ngIf\",r.feedIDs)}}XP=\"\\u0423\\u043F\\u0440\\u0430\\u0432\\u043B\\u0435\\u043D\\u0438\\u0435 \\u043D\\u0430 \\u0444\\u0438\\u043B\\u0442\\u0440\\u0438\",ej=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435 \\u043D\\u0430 \\u0444\\u0438\\u043B\\u0442\\u044A\\u0440\",tj=\"\\u041D\\u044F\\u043C\\u0430 \\u0434\\u0435\\u0444\\u0438\\u043D\\u0438\\u0440\\u0430\\u043D\\u0438 \\u0444\\u0438\\u043B\\u0442\\u0440\\u0438\",nj=\"\\u043F\\u043E URL\",rj=\"\\u0421\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\",ij=\"\\u041D\\u0435 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\",aj=\"\\u043F\\u043E \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\",oj=\"\\u0421\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\",sj=\"\\u041D\\u0435 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\",lj=\"\\u0431\\u0435\\u0437 \\u0442\\u0430\\u0433:\",uj=\"\\u0431\\u0435\\u0437 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438:\",cj=\"\\u043D\\u0430 \\u0442\\u0430\\u0433:\",dj=\"\\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438:\",hj=\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u0440\\u0438\\u0442\\u0435 \\u043C\\u043E\\u0433\\u0430\\u0442 \\u0434\\u0430 \\u0431\\u044A\\u0434\\u0430\\u0442 \\u043F\\u0440\\u0438\\u043B\\u043E\\u0436\\u0435\\u043D\\u0438 \\u043A\\u044A\\u043C \\u0430\\u0434\\u0440\\u0435\\u0441\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u044F\\u0442\\u0430 \\u043D\\u0430 \\u0441\\u0442\\u0430\\u0442\\u0438\\u0438\\u0442\\u0435. \\u041F\\u043E\\u043D\\u0435 \\u0435\\u0434\\u043D\\u0430 \\u0446\\u0435\\u043B \\u0442\\u0440\\u044F\\u0431\\u0432\\u0430 \\u0434\\u0430 \\u0431\\u044A\\u0434\\u0435 \\u0437\\u0430\\u0434\\u0430\\u0434\\u0435\\u043D\\u0430:\\n\\t\\t\";var Oj,Yj=[\"placeholder\",\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u0440\\u0438\\u0440\\u0430\\u043D\\u0435 \\u043F\\u043E \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\\n\\t\\t\"];Oj=\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u044A\\u0440\\u044A\\u0442 \\u0435 \\u0430\\u043A\\u0442\\u0438\\u0432\\u0435\\u043D \\u0430\\u043A\\u043E \\u0442\\u0435\\u043A\\u0441\\u0442\\u0430 \\u043D\\u0435 \\u0435 \\u0447\\u0430\\u0441\\u0442 \\u043E\\u0442 \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\\u0442\\u043E.\\n \";var Ej,Ij,Aj,Pj,jj,Rj,Hj,Fj,Nj=[\"placeholder\",\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u0440\\u0438\\u0440\\u0430\\u043D\\u0435 \\u043F\\u043E \\u0430\\u0434\\u0440\\u0435\\u0441\\n\\t\\t\"];function zj(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,Rj),Fo())}function Vj(e,t){1&e&&(Ho(0,\"span\"),ru(1,Hj),Fo())}function Wj(e,t){1&e&&(Ho(0,\"span\"),ru(1,Fj),Fo())}Ej=\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u044A\\u0440\\u044A\\u0442 \\u0435 \\u0430\\u043A\\u0442\\u0438\\u0432\\u0435\\u043D \\u0430\\u043A\\u043E \\u0442\\u0435\\u043A\\u0441\\u0442\\u0430 \\u043D\\u0435 \\u0435 \\u0447\\u0430\\u0441\\u0442 \\u043E\\u0442 \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\\u0442\\u043E.\\n \",Ij=\"\\u041D\\u0435\\u0437\\u0430\\u0434\\u044A\\u043B\\u0436\\u0438\\u0442\\u0435\\u043B\\u043D\\u0438 \\u043F\\u0430\\u0440\\u0430\\u043C\\u0435\\u0442\\u0440\\u0438\",Aj=\"\\u0424\\u0438\\u043B\\u0442\\u044A\\u0440\\u044A\\u0442 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430 \\u0430\\u043A\\u043E \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\\u0442\\u043E \\u043D\\u0435 \\u0435 \\u043E\\u0442 \\u0438\\u0437\\u0431\\u0440\\u0430\\u043D\\u0438\\u0442\\u0435 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438/\\u0442\\u0430\\u0433.\",Pj=\"\\u0417\\u0430\\u043F\\u0438\\u0441\\u0432\\u0430\\u043D\\u0435\",jj=\"\\u0417\\u0430\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\",Rj=\"\\u0424\\u0438\\u043B\\u0442\\u044A\\u0440\\u044A\\u0442 \\u0442\\u0440\\u044F\\u0431\\u0432\\u0430 \\u0434\\u0430 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430 \\u043F\\u043E\\u043D\\u0435 \\u0441 URL \\u0438\\u043B\\u0438 \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\",Hj=\"\\u041B\\u0438\\u043C\\u0438\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435 \\u0434\\u043E \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",Fj=\"\\u041B\\u0438\\u043C\\u0438\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435 \\u0434\\u043E \\u0442\\u0430\\u0433\";var Uj=[\"placeholder\",\"\\u0415\\u043C\\u0438\\u0441\\u0438\\u0438\"];function Bj(e,t){if(1&e&&(Ho(0,\"mat-option\",12),Ls(1),Fo()),2&e){var n=t.$implicit;jo(\"value\",n.id),bi(1),xs(\" \",n.title,\" \")}}function qj(e,t){if(1&e&&(Ho(0,\"mat-form-field\"),Ho(1,\"mat-select\",10),iu(2,Uj),Yo(3,Bj,2,2,\"mat-option\",11),Fo(),Fo()),2&e){var n=Zo();bi(3),jo(\"ngForOf\",n.feeds)}}var Gj=[\"placeholder\",\"\\u0422\\u0430\\u0433\"];function $j(e,t){if(1&e&&(Ho(0,\"mat-option\",12),Ls(1),Fo()),2&e){var n=t.$implicit;jo(\"value\",n.id),bi(1),xs(\" \",n.value,\" \")}}function Jj(e,t){if(1&e&&(Ho(0,\"mat-form-field\"),Ho(1,\"mat-select\",13),iu(2,Gj),Yo(3,$j,2,2,\"mat-option\",11),Fo(),Fo()),2&e){var n=Zo();bi(3),jo(\"ngForOf\",n.tags)}}var Kj,Zj,Qj,Xj=((Zj=function(){function e(t,n,r,i){_classCallCheck(this,e),this.userService=t,this.feedService=n,this.tagService=r,this.dialog=i,this.filters=new Array}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.feedService.getFeeds().pipe(WE(this.tagService.getTags(),this.userService.getCurrentUser(),(function(e,t,n){return[e,t,n]}))).subscribe((function(t){e.feeds=t[0],e.tags=t[1],e.filters=t[2].profileData.filters||[]}),(function(e){return console.log(e)}))}},{key:\"addFilter\",value:function(){var e=this;this.dialog.open(eR,{width:\"350px\",data:{feeds:this.feeds,tags:this.tags}}).afterClosed().subscribe((function(t){return e.ngOnInit()}))}},{key:\"feedsLabel\",value:function(e){var t=this.feeds.filter((function(t){return-1!=e.indexOf(t.id)})).map((function(e){return e.title}));return t.length?t.join(\", \"):\"\".concat(e)}},{key:\"tagLabel\",value:function(e){var t=this.tags.filter((function(t){return t.id==e})).map((function(e){return e.value}));return t.length?t[0]:\"\".concat(e)}},{key:\"deleteFilter\",value:function(e,t){var n=this;this.userService.getCurrentUser().pipe(U((function(e){var r=e.profileData||new Map,i=r.filters||[],a=i.filter((function(e){return e.urlTerm!=t.urlTerm||e.inverseURL!=t.inverseURL||e.titleTerm!=t.titleTerm||e.inverseTitle!=t.inverseTitle||e.tagID!=t.tagID||e.feedIDs!=t.feedIDs||e.inverseFeeds!=t.inverseFeeds}));return a.length==i.length?Bd(!0):(r.filters=a,n.userService.setUserSetting(\"profile\",JSON.stringify(r)))}))).subscribe((function(t){if(t){for(var n=e.target.parentNode;(n=n.parentElement)&&!n.classList.contains(\"filter\"););n.parentNode.removeChild(n)}}),(function(e){return console.log(e)}))}}]),e}()).\\u0275fac=function(e){return new(e||Zj)(Io(BA),Io(pI),Io(_I),Io(fC))},Zj.\\u0275cmp=bt({type:Zj,selectors:[[\"settings-filters\"]],decls:7,vars:2,consts:[[1,\"title\"],[4,\"ngIf\"],[\"class\",\"filter\",4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[1,\"filter\"],[1,\"info\"],[\"class\",\"url-and-title\",4,\"ngIf\"],[\"class\",\"match-tag\",4,\"ngIf\"],[\"class\",\"match-feeds\",4,\"ngIf\"],[\"class\",\"tag\",4,\"ngIf\"],[\"class\",\"feeds\",4,\"ngIf\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"],[1,\"term\"],[1,\"match-url\"],[1,\"url-and-title\"],[1,\"match-title\"],[1,\"match-tag\"],[1,\"match-feeds\"],[1,\"tag\"],[1,\"feeds\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,XP),Fo(),Yo(2,pj,2,0,\"p\",1),Yo(3,Dj,14,9,\"div\",2),Ho(4,\"div\",3),Ho(5,\"button\",4),qo(\"click\",(function(){return t.addFilter()})),ru(6,ej),Fo(),Fo()),2&e&&(bi(2),jo(\"ngIf\",0==t.filters.length),bi(1),jo(\"ngForOf\",t.filters))},directives:[Sd,Cd,zb,FC],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".filter[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.filter[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{flex:1 0 0}.filter[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{padding-left:4px;padding-right:4px}.filter[_ngcontent-%COMP%] .feeds[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .tag[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .term[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;font-weight:700}.filter[_ngcontent-%COMP%] .url-and-title[_ngcontent-%COMP%]{font-style:italic}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}form[_ngcontent-%COMP%]{display:flex;flex-direction:column;margin-bottom:20px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{flex:1 0 auto}form[_ngcontent-%COMP%] mat-slide-toggle[_ngcontent-%COMP%]{align-self:center;flex:1 0 auto}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{font-size:14px}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%] .mat-checkbox-layout{white-space:normal}form[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{border-bottom:1px solid #ddd;margin-top:12px;margin-bottom:24px;font-size:13px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{width:100%}\"]}),Zj),eR=((Kj=function(){function e(t,n,r,i,a){_classCallCheck(this,e),this.dialogRef=t,this.userService=n,this.tagService=r,this.data=i,this.form=a.group({urlTerm:[\"\"],titleTerm:[\"\"],inverseURL:[!1],inverseTitle:[!1],useFeeds:[!0],feeds:[[]],tag:[],inverseFeeds:[!1]},{validator:function(e){return e.controls.urlTerm.value||e.controls.titleTerm.value?null:{nomatch:!0}}}),this.feeds=i.feeds,this.tags=i.tags}return _createClass(e,[{key:\"save\",value:function(){var e=this;if(this.form.valid){var t=this.form.value;this.userService.getCurrentUser().pipe(U((function(n){var r={urlTerm:t.urlTerm,inverseURL:t.inverseURL,titleTerm:t.titleTerm,inverseTitle:t.inverseTitle,inverseFeeds:t.inverseFeeds};return t.useFeeds?t.feeds&&t.feeds.length>0&&(r.feedIDs=t.feeds):t.tag&&(r.tagID=t.tag),(r.tagID>0?e.tagService.getFeedIDs({id:r.tagID}).pipe(F((function(e){return r.feedIDs=e,r}))):Bd(r)).pipe(U((function(t){var r=n.profileData||new Map,i=r.filters||[];return i.push(t),r.filters=i,e.userService.setUserSetting(\"profile\",JSON.stringify(r))})))}))).subscribe((function(t){return e.close()}),(function(e){return console.log(e)}))}}},{key:\"close\",value:function(){this.dialogRef.close()}}]),e}()).\\u0275fac=function(e){return new(e||Kj)(Io(lC),Io(BA),Io(_I),Io(uC),Io(qm))},Kj.\\u0275cmp=bt({type:Kj,selectors:[[\"new-filter-dialog\"]],decls:32,vars:6,consts:[[\"novalidate\",\"\",\"autocomplete\",\"off\",3,\"formGroup\",\"ngSubmit\"],[\"matInput\",\"\",\"formControlName\",\"titleTerm\",6,\"placeholder\"],[\"formControlName\",\"inverseTitle\"],[\"matInput\",\"\",\"formControlName\",\"urlTerm\",6,\"placeholder\"],[\"formControlName\",\"inverseURL\"],[4,\"ngIf\"],[\"formControlName\",\"useFeeds\"],[\"formControlName\",\"inverseFeeds\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"multiple\",\"\",\"formControlName\",\"feeds\",6,\"placeholder\"],[3,\"value\",4,\"ngFor\",\"ngForOf\"],[3,\"value\"],[\"formControlName\",\"tag\",6,\"placeholder\"]],template:function(e,t){1&e&&(Ho(0,\"div\"),Ho(1,\"form\",0),qo(\"ngSubmit\",(function(){return t.save()})),Ho(2,\"p\"),ru(3,hj),Fo(),Ho(4,\"mat-form-field\"),Ho(5,\"input\",1),iu(6,Yj),Fo(),Fo(),No(7,\"br\"),Ho(8,\"mat-checkbox\",2),ru(9,Oj),Fo(),Ho(10,\"mat-form-field\"),Ho(11,\"input\",3),iu(12,Nj),Fo(),Fo(),No(13,\"br\"),Ho(14,\"mat-checkbox\",4),ru(15,Ej),Fo(),Yo(16,zj,2,0,\"mat-error\",5),No(17,\"br\"),Ho(18,\"p\"),ru(19,Ij),Fo(),Ho(20,\"mat-slide-toggle\",6),Yo(21,Vj,2,0,\"span\",5),Yo(22,Wj,2,0,\"span\",5),Fo(),Yo(23,qj,4,1,\"mat-form-field\",5),Yo(24,Jj,4,1,\"mat-form-field\",5),Ho(25,\"mat-checkbox\",7),ru(26,Aj),Fo(),Fo(),Fo(),Ho(27,\"div\",8),Ho(28,\"button\",9),qo(\"click\",(function(){return t.save()})),ru(29,Pj),Fo(),Ho(30,\"button\",9),qo(\"click\",(function(){return t.close()})),ru(31,jj),Fo(),Fo()),2&e&&(bi(1),jo(\"formGroup\",t.form),bi(15),jo(\"ngIf\",t.form.hasError(\"nomatch\")),bi(5),jo(\"ngIf\",t.form.value.useFeeds),bi(1),jo(\"ngIf\",!t.form.value.useFeeds),bi(1),jo(\"ngIf\",t.form.value.useFeeds),bi(1),jo(\"ngIf\",!t.form.value.useFeeds))},directives:[Mm,af,Dm,EM,HM,$h,rf,Vm,dk,Sd,RL,zb,cM,GS,Cd,gb],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".filter[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.filter[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{flex:1 0 0}.filter[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{padding-left:4px;padding-right:4px}.filter[_ngcontent-%COMP%] .feeds[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .tag[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .term[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;font-weight:700}.filter[_ngcontent-%COMP%] .url-and-title[_ngcontent-%COMP%]{font-style:italic}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}form[_ngcontent-%COMP%]{display:flex;flex-direction:column;margin-bottom:20px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{flex:1 0 auto}form[_ngcontent-%COMP%] mat-slide-toggle[_ngcontent-%COMP%]{align-self:center;flex:1 0 auto}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{font-size:14px}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%] .mat-checkbox-layout{white-space:normal}form[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{border-bottom:1px solid #ddd;margin-top:12px;margin-bottom:24px;font-size:13px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{width:100%}\"]}),Kj);function tR(e,t){if(1&e){var n=Wo();Ho(0,\"div\",5),Ho(1,\"mat-slide-toggle\",6,7),qo(\"change\",(function(){nn(n);var e=t.$implicit,r=Eo(2);return Zo(2).toggleService(e[0].id,r.checked)})),Ls(3),Fo(),Fo()}if(2&e){var r=t.$implicit;bi(1),jo(\"checked\",r[1]),bi(2),Ts(r[0].description)}}function nR(e,t){if(1&e&&(Ho(0,\"mat-card\"),Ho(1,\"mat-card-header\"),Ho(2,\"mat-card-title\",3),Ho(3,\"h6\"),Ls(4),Fo(),Fo(),Fo(),Ho(5,\"mat-card-content\"),Yo(6,tR,4,2,\"div\",4),Fo(),Fo()),2&e){var n=t.$implicit;bi(4),xs(\" \",n[0][0].category,\" \"),bi(2),jo(\"ngForOf\",n)}}Qj=\"\\u041A\\u0430\\u043D\\u0430\\u043B\\u0438 \\u0437\\u0430 \\u0441\\u043F\\u043E\\u0434\\u0435\\u043B\\u044F\\u043D\\u0435\";var rR,iR,aR,oR,sR,lR,uR=((rR=function(){function e(t){_classCallCheck(this,e),this.sharingService=t}return _createClass(e,[{key:\"ngOnInit\",value:function(){this.services=this.sharingService.groupedList()}},{key:\"toggleService\",value:function(e,t){this.sharingService.toggle(e,t)}}]),e}()).\\u0275fac=function(e){return new(e||rR)(Io(qE))},rR.\\u0275cmp=bt({type:rR,selectors:[[\"settings-share-services\"]],decls:4,vars:1,consts:[[1,\"title\"],[1,\"cards-container\"],[4,\"ngFor\",\"ngForOf\"],[1,\"col\",\"title\"],[\"class\",\"service\",4,\"ngFor\",\"ngForOf\"],[1,\"service\"],[3,\"checked\",\"change\"],[\"toggle\",\"\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,Qj),Fo(),Ho(2,\"div\",1),Yo(3,nR,7,2,\"mat-card\",2),Fo()),2&e&&(bi(3),jo(\"ngForOf\",t.services))},directives:[Cd,Xb,ek,Jb,$b,RL],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".cards-container[_ngcontent-%COMP%]{display:flex;flex-direction:row;flex-wrap:wrap}mat-card[_ngcontent-%COMP%]{flex:1 0 0;margin:8px;min-width:250px}.service[_ngcontent-%COMP%]{margin-bottom:16px}\"]}),rR);function cR(e,t){if(1&e&&(Ho(0,\"p\"),ru(1,oR),Fo()),2&e){var n=Zo();bi(1),su(n.current.login),lu(1)}}function dR(e,t){if(1&e){var n=Wo();Ho(0,\"div\",5),Ho(1,\"mat-checkbox\",6,7),qo(\"change\",(function(){nn(n);var e=t.$implicit,r=Eo(2);return Zo(2).toggleActive(e.login,r.checked)}))(\"ngModelChange\",(function(e){return nn(n),t.$implicit.active=e})),Ls(3),Fo(),Ho(4,\"button\",8),qo(\"click\",(function(e){nn(n);var r=t.$implicit;return Zo(2).deleteUser(e,r.login)})),Ho(5,\"mat-icon\"),Ls(6,\"delete\"),Fo(),Fo(),Fo()}if(2&e){var r=t.$implicit;bi(1),jo(\"ngModel\",r.active),bi(2),Ts(r.login)}}function hR(e,t){if(1&e&&(Ho(0,\"div\"),Ho(1,\"h6\"),ru(2,sR),Fo(),Yo(3,dR,7,2,\"div\",4),Fo()),2&e){var n=Zo();bi(3),jo(\"ngForOf\",n.users)}}iR=\"\\u0423\\u043F\\u0440\\u0430\\u0432\\u043B\\u0435\\u043D\\u0438\\u0435 \\u043D\\u0430 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0438\",aR=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435 \\u043D\\u0430 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\",oR=\"\\n \\u0422\\u0435\\u043A\\u0443\\u0449 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B: \" + \"\\ufffd0\\ufffd\" + \"\\n\",sR=\"\\u0421\\u043F\\u0438\\u0441\\u044A\\u043A \\u0441 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0438:\",lR=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435 \\u043D\\u0430 \\u043D\\u043E\\u0432 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\";var fR,mR,pR,_R=[\"placeholder\",\"\\u041F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0441\\u043A\\u043E \\u0438\\u043C\\u0435\"],vR=[\"placeholder\",\"\\u041F\\u0430\\u0440\\u043E\\u043B\\u0430\"];function gR(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,mR),Fo())}function yR(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,pR),Fo())}fR=\"\\u0417\\u0430\\u043F\\u0438\\u0441\\u0432\\u0430\\u043D\\u0435\",mR=\"\\n \\u041F\\u0440\\u0430\\u0437\\u043D\\u043E \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0441\\u043A\\u043E \\u0438\\u043C\\u0435\\n \",pR=\"\\n \\u041F\\u0440\\u0430\\u0437\\u043D\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\\n \";var bR,kR,wR,CR,MR,SR,LR,TR,xR,DR,OR,YR=function(){return[\"login\"]},ER=function(){return[\"password\"]},IR=((kR=function(){function e(t,n){_classCallCheck(this,e),this.userService=t,this.dialog=n,this.users=new Array,this.refresher=new x}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.refresher.pipe(sv(null),Pk((function(t){return e.userService.list()})),WE(this.userService.getCurrentUser(),(function(e,t){return e.filter((function(e){return e.login!=t.login}))}))).subscribe((function(t){return e.users=t}),(function(e){return console.log(e)})),this.userService.getCurrentUser().subscribe((function(t){return e.current=t}),(function(e){return console.log(e)}))}},{key:\"toggleActive\",value:function(e,t){this.userService.toggleActive(e,t).subscribe((function(e){}),(function(e){return console.log(e)}))}},{key:\"deleteUser\",value:function(e,t){confirm(\"Are you sure you want to delete user \"+t)&&this.userService.deleteUser(t).subscribe((function(t){if(t){for(var n=e.target.parentNode;(n=n.parentElement)&&!n.classList.contains(\"user\"););n.parentNode.removeChild(n)}}),(function(e){return console.log(e)}))}},{key:\"newUser\",value:function(){var e=this;this.dialog.open(AR,{width:\"250px\"}).afterClosed().subscribe((function(t){return e.refresher.next(null)}))}}]),e}()).\\u0275fac=function(e){return new(e||kR)(Io(BA),Io(fC))},kR.\\u0275cmp=bt({type:kR,selectors:[[\"settings-admin\"]],decls:7,vars:2,consts:[[1,\"title\"],[4,\"ngIf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"class\",\"user\",4,\"ngFor\",\"ngForOf\"],[1,\"user\"],[3,\"ngModel\",\"change\",\"ngModelChange\"],[\"check\",\"\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,iR),Fo(),Yo(2,cR,2,1,\"p\",1),Yo(3,hR,4,1,\"div\",1),Ho(4,\"div\",2),Ho(5,\"button\",3),qo(\"click\",(function(){return t.newUser()})),ru(6,aR),Fo(),Fo()),2&e&&(bi(2),jo(\"ngIf\",t.current),bi(1),jo(\"ngIf\",t.users.length))},directives:[Sd,zb,Cd,dk,rf,Cm,FC],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".user[_ngcontent-%COMP%]{display:flex;align-items:center;border-bottom:1px solid #ccc;padding-bottom:4px;margin-bottom:4px}.user[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{flex:1 0 0}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),kR),AR=((bR=function(){function e(t,n,r){_classCallCheck(this,e),this.dialogRef=t,this.userService=n,this.form=r.group({login:[\"\",cf.required],password:[\"\",cf.required]})}return _createClass(e,[{key:\"save\",value:function(){var e=this;if(this.form.valid){var t=this.form.value;this.userService.addUser(t.login,t.password).subscribe((function(t){t&&e.close()}),(function(e){return console.log(e)}))}}},{key:\"close\",value:function(){this.dialogRef.close()}}]),e}()).\\u0275fac=function(e){return new(e||bR)(Io(lC),Io(BA),Io(qm))},bR.\\u0275cmp=bt({type:bR,selectors:[[\"ng-component\"]],decls:16,vars:6,consts:[[1,\"title\"],[\"novalidate\",\"\",\"autocomplete\",\"off\",3,\"formGroup\",\"ngSubmit\"],[\"matInput\",\"\",\"formControlName\",\"login\",\"required\",\"\",6,\"placeholder\"],[4,\"ngIf\"],[\"matInput\",\"\",\"type\",\"password\",\"formControlName\",\"password\",\"required\",\"\",6,\"placeholder\"],[1,\"footer\"],[\"mat-raised-button\",\"\",\"type\",\"submit\",3,\"disabled\"]],template:function(e,t){1&e&&(Ho(0,\"h6\",0),ru(1,lR),Fo(),Ho(2,\"form\",1),qo(\"ngSubmit\",(function(){return t.save()})),Ho(3,\"mat-form-field\"),Ho(4,\"input\",2),iu(5,_R),Fo(),Yo(6,gR,2,0,\"mat-error\",3),Fo(),No(7,\"br\"),Ho(8,\"mat-form-field\"),Ho(9,\"input\",4),iu(10,vR),Fo(),Yo(11,yR,2,0,\"mat-error\",3),Fo(),No(12,\"br\"),Ho(13,\"div\",5),Ho(14,\"button\",6),ru(15,fR),Fo(),Fo(),Fo()),2&e&&(bi(2),jo(\"formGroup\",t.form),bi(4),jo(\"ngIf\",t.form.hasError(\"required\",yu(4,YR))),bi(5),jo(\"ngIf\",t.form.hasError(\"required\",yu(5,ER))),bi(3),jo(\"disabled\",t.form.pristine))},directives:[Mm,af,Dm,EM,HM,$h,rf,Vm,Um,Sd,zb,cM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".user[_ngcontent-%COMP%]{display:flex;align-items:center;border-bottom:1px solid #ccc;padding-bottom:4px;margin-bottom:4px}.user[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{flex:1 0 0}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),bR);wR=\"\\u041D\\u0430\\u0441\\u0442\\u0440\\u043E\\u0439\\u043A\\u0438\",CR=\"\\u041E\\u0431\\u0449\\u0438\",MR=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u0438\",SR=\"\\u0423\\u043F\\u0440\\u0430\\u0432\\u043B\\u0435\\u043D\\u0438\\u0435 \\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",LR=\"\\u0424\\u0438\\u043B\\u0442\\u0440\\u0438\",TR=\"\\u041A\\u0430\\u043D\\u0430\\u043B\\u0438 \\u0437\\u0430 \\u0441\\u043F\\u043E\\u0434\\u0435\\u043B\\u044F\\u043D\\u0435\",xR=\"\\u0415\\u043C\\u0438\\u0441\\u0438\\u0438\",DR=\"\\u0418\\u0437\\u0445\\u043E\\u0434\",OR=\"\\u0410\\u0434\\u043C\\u0438\\u043D\\u0438\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044F\";var PR=function(){return[\"admin\"]};function jR(e,t){1&e&&(Ho(0,\"a\",2),ru(1,OR),Fo()),2&e&&jo(\"routerLink\",yu(1,PR))}var RR,HR=function(){return[\"general\"]},FR=function(){return[\"discovery\"]},NR=function(){return[\"management\"]},zR=function(){return[\"filters\"]},VR=function(){return[\"share-services\"]};RR=\"\\u041D\\u0430\\u0441\\u0442\\u0440\\u043E\\u0439\\u043A\\u0438\";var WR,UR,BR,qR,GR=ZY.forRoot([{path:\"\",canActivate:[HE],children:[{path:\"\",component:lI,children:[{path:\"feed\",children:[{path:\"\",children:[{path:\"\",data:{primary:\"user\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\"search/:query\",data:{primary:\"search\",secondary:\"user\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\"favorite\",data:{primary:\"favorite\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\"popular/tag/:id\",data:{primary:\"popular\",secondary:\"tag\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\"popular/:id\",data:{primary:\"popular\",secondary:\"feed\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\"popular\",data:{primary:\"popular\",secondary:\"user\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\"tag/:id\",data:{primary:\"tag\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\"tag/:id/search/:query\",data:{primary:\"search\",secondary:\"tag\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\":id\",data:{primary:\"feed\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\":id/search/:query\",data:{primary:\"search\",secondary:\"feed\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]}]},{path:\"\",component:gA,outlet:\"sidebar\"},{path:\"\",component:WA,outlet:\"toolbar\"}]},{path:\"settings\",children:[{path:\"\",component:UA,children:[{path:\"general\",component:dP},{path:\"discovery\",component:UP},{path:\"management\",component:fj},{path:\"filters\",component:Xj},{path:\"share-services\",component:uR},{path:\"admin\",component:IR},{path:\"\",redirectTo:\"general\",pathMatch:\"full\"}]},{path:\"\",component:(UR=function(){function e(t){_classCallCheck(this,e),this.userService=t,this.subscriptions=new Array}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.subscriptions.push(this.userService.getCurrentUser().pipe(F((function(e){return e.admin}))).subscribe((function(t){return e.admin=t}),(function(e){return console.log(e)})))}},{key:\"ngOnDestroy\",value:function(){var e,t=_createForOfIteratorHelper(this.subscriptions);try{for(t.s();!(e=t.n()).done;)e.value.unsubscribe()}catch(n){t.e(n)}finally{t.f()}}}]),e}(),UR.\\u0275fac=function(e){return new(e||UR)(Io(BA))},UR.\\u0275cmp=bt({type:UR,selectors:[[\"side-bar\"]],decls:19,vars:11,consts:[[\"color\",\"primary\"],[1,\"content\"],[\"mat-button\",\"\",3,\"routerLink\"],[\"mat-button\",\"\",3,\"routerLink\",4,\"ngIf\"],[\"mat-button\",\"\",\"routerLink\",\"/feed\"],[\"mat-button\",\"\",\"routerLink\",\"/login\"]],template:function(e,t){1&e&&(Ho(0,\"mat-toolbar\",0),ru(1,wR),Fo(),Ho(2,\"div\",1),Ho(3,\"a\",2),ru(4,CR),Fo(),Ho(5,\"a\",2),ru(6,MR),Fo(),Ho(7,\"a\",2),ru(8,SR),Fo(),Ho(9,\"a\",2),ru(10,LR),Fo(),Ho(11,\"a\",2),ru(12,TR),Fo(),Yo(13,jR,2,2,\"a\",3),No(14,\"hr\"),Ho(15,\"a\",4),ru(16,xR),Fo(),Ho(17,\"a\",5),ru(18,DR),Fo(),Fo()),2&e&&(bi(3),jo(\"routerLink\",yu(6,HR)),bi(2),jo(\"routerLink\",yu(7,FR)),bi(2),jo(\"routerLink\",yu(8,NR)),bi(2),jo(\"routerLink\",yu(9,zR)),bi(2),jo(\"routerLink\",yu(10,VR)),bi(2),jo(\"ngIf\",t.admin))},directives:[XL,Vb,IY,Sd],styles:[\".content[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{margin-bottom:4px}.content[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex;font-size:16px}.items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:13px}.category[_ngcontent-%COMP%], .items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex}.category[_ngcontent-%COMP%] > .expander[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;min-width:24px;flex-shrink:1}.category[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{flex-grow:1;text-align:start}.category[_ngcontent-%COMP%] > .items[_ngcontent-%COMP%]{flex:0 1 100%}.content[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{margin:0}.favicon[_ngcontent-%COMP%]{padding-right:4px}\"]}),UR),outlet:\"sidebar\"},{path:\"\",component:(WR=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"ngOnInit\",value:function(){}}]),e}(),WR.\\u0275fac=function(e){return new(e||WR)},WR.\\u0275cmp=bt({type:WR,selectors:[[\"ng-component\"]],decls:2,vars:0,template:function(e,t){1&e&&(Ho(0,\"span\"),ru(1,RR),Fo())},styles:[\"[_nghost-%COMP%]{display:flex;align-items:center}.spacer[_ngcontent-%COMP%], [_nghost-%COMP%]{flex:1 1 auto}.search[_ngcontent-%COMP%]{min-height:0;border:none;background:transparent} label{margin-bottom:0}\"]}),WR),outlet:\"toolbar\"}]},{path:\"\",redirectTo:\"feed\",pathMatch:\"full\"}]}]},{path:\"login\",component:jE}],{enableTracing:!1}),$R=((qR=function e(){_classCallCheck(this,e),this.title=\"app\"}).\\u0275fac=function(e){return new(e||qR)},qR.\\u0275cmp=bt({type:qR,selectors:[[\"app-root\"]],decls:2,vars:0,consts:[[1,\"page\"]],template:function(e,t){1&e&&(Ho(0,\"div\",0),No(1,\"router-outlet\"),Fo())},directives:[NY],styles:[\"\"]}),qR),JR=((BR=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:BR,bootstrap:[$R]}),BR.\\u0275inj=ve({factory:function(e){return new(e||BR)},providers:[{provide:U_,useClass:Kx}],imports:[[iv,Iy,jh,GR,Nd,Gm,$m,Wb,tk,fk,mC,NC,FM,gS,LS,$S,$L,LL,FL,eT,jx,$x,$_]]}),BR);(function(){if(Sr)throw new Error(\"Cannot enable prod mode after platform setup.\");Mr=!1})(),nv().bootstrapModule(JR)},zavE:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-SG\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},zn8P:function(e,t){function n(e){return Promise.resolve().then((function(){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}))}n.keys=function(){return[]},n.resolve=n,e.exports=n,n.id=\"zn8P\"},zx6S:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekunda\",\"sekunde\",\"sekundi\"],m:[\"jedan minut\",\"jedne minute\"],mm:[\"minut\",\"minute\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mesec\",\"meseca\",\"meseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,r){var i=t.words[r];return 1===r.length?n?i[0]:i[1]:e+\" \"+t.correctGrammaticalCase(e,i)}};e.defineLocale(\"sr\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljak_utorak_sreda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sre._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedelju] [u] LT\";case 3:return\"[u] [sredu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010de u] LT\",lastWeek:function(){return[\"[pro\\u0161le] [nedelje] [u] LT\",\"[pro\\u0161log] [ponedeljka] [u] LT\",\"[pro\\u0161log] [utorka] [u] LT\",\"[pro\\u0161le] [srede] [u] LT\",\"[pro\\u0161log] [\\u010detvrtka] [u] LT\",\"[pro\\u0161log] [petka] [u] LT\",\"[pro\\u0161le] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pre %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))}},[[0,0]]]);"); err != nil { - return nil, errors.Wrap(err, fmt.Sprintf("packing file rf-ng/ui/bg/main-es5.f6c9f28337fd1027e64c.js")) + if err := fs.Add("rf-ng/ui/bg/main-es5.cffe4d6ae44ec8c370c8.js", 1342007, os.FileMode(420), time.Unix(1587937639, 0), "/**\n * @license\n * Copyright Google Inc. All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n!function(n){n.ng=n.ng||{},n.ng.common=n.ng.common||{},n.ng.common.locales=n.ng.common.locales||{};const o=void 0;n.ng.common.locales.bg=[\"bg\",[[\"am\",\"pm\"],o,[\"\\u043f\\u0440.\\u043e\\u0431.\",\"\\u0441\\u043b.\\u043e\\u0431.\"]],[[\"am\",\"pm\"],o,o],[[\"\\u043d\",\"\\u043f\",\"\\u0432\",\"\\u0441\",\"\\u0447\",\"\\u043f\",\"\\u0441\"],[\"\\u043d\\u0434\",\"\\u043f\\u043d\",\"\\u0432\\u0442\",\"\\u0441\\u0440\",\"\\u0447\\u0442\",\"\\u043f\\u0442\",\"\\u0441\\u0431\"],[\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u044f\",\"\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a\",\"\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a\",\"\\u0441\\u0440\\u044f\\u0434\\u0430\",\"\\u0447\\u0435\\u0442\\u0432\\u044a\\u0440\\u0442\\u044a\\u043a\",\"\\u043f\\u0435\\u0442\\u044a\\u043a\",\"\\u0441\\u044a\\u0431\\u043e\\u0442\\u0430\"],[\"\\u043d\\u0434\",\"\\u043f\\u043d\",\"\\u0432\\u0442\",\"\\u0441\\u0440\",\"\\u0447\\u0442\",\"\\u043f\\u0442\",\"\\u0441\\u0431\"]],o,[[\"\\u044f\",\"\\u0444\",\"\\u043c\",\"\\u0430\",\"\\u043c\",\"\\u044e\",\"\\u044e\",\"\\u0430\",\"\\u0441\",\"\\u043e\",\"\\u043d\",\"\\u0434\"],[\"\\u044f\\u043d\\u0443\",\"\\u0444\\u0435\\u0432\",\"\\u043c\\u0430\\u0440\\u0442\",\"\\u0430\\u043f\\u0440\",\"\\u043c\\u0430\\u0439\",\"\\u044e\\u043d\\u0438\",\"\\u044e\\u043b\\u0438\",\"\\u0430\\u0432\\u0433\",\"\\u0441\\u0435\\u043f\",\"\\u043e\\u043a\\u0442\",\"\\u043d\\u043e\\u0435\",\"\\u0434\\u0435\\u043a\"],[\"\\u044f\\u043d\\u0443\\u0430\\u0440\\u0438\",\"\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438\",\"\\u043c\\u0430\\u0440\\u0442\",\"\\u0430\\u043f\\u0440\\u0438\\u043b\",\"\\u043c\\u0430\\u0439\",\"\\u044e\\u043d\\u0438\",\"\\u044e\\u043b\\u0438\",\"\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\",\"\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438\",\"\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438\",\"\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438\",\"\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\"]],o,[[\"\\u043f\\u0440.\\u0425\\u0440.\",\"\\u0441\\u043b.\\u0425\\u0440.\"],o,[\"\\u043f\\u0440\\u0435\\u0434\\u0438 \\u0425\\u0440\\u0438\\u0441\\u0442\\u0430\",\"\\u0441\\u043b\\u0435\\u0434 \\u0425\\u0440\\u0438\\u0441\\u0442\\u0430\"]],1,[6,0],[\"d.MM.yy '\\u0433'.\",\"d.MM.y '\\u0433'.\",\"d MMMM y '\\u0433'.\",\"EEEE, d MMMM y '\\u0433'.\"],[\"H:mm\",\"H:mm:ss\",\"H:mm:ss z\",\"H:mm:ss zzzz\"],[\"{1}, {0}\",o,o,o],[\",\",\"\\xa0\",\";\",\"%\",\"+\",\"-\",\"E\",\"\\xd7\",\"\\u2030\",\"\\u221e\",\"NaN\",\":\"],[\"#,##0.###\",\"#,##0%\",\"0.00\\xa0\\xa4\",\"#E0\"],\"BGN\",\"\\u043b\\u0432.\",\"\\u0411\\u044a\\u043b\\u0433\\u0430\\u0440\\u0441\\u043a\\u0438 \\u043b\\u0435\\u0432\",{ARS:[],AUD:[],BBD:[],BDT:[],BGN:[\"\\u043b\\u0432.\"],BMD:[],BND:[],BRL:[],BSD:[],BYN:[],BZD:[],CAD:[],CLP:[],CNY:[],COP:[],CRC:[],CUP:[],DOP:[],FJD:[],FKP:[],GBP:[o,\"\\xa3\"],GIP:[],GYD:[],HKD:[],ILS:[],INR:[],JMD:[],JPY:[o,\"\\xa5\"],KHR:[],KRW:[],KYD:[],KZT:[],LAK:[],LRD:[],MNT:[],MXN:[],NAD:[],NGN:[],NZD:[],PHP:[],PYG:[],RON:[],SBD:[],SGD:[],SRD:[],SSP:[],TRY:[],TTD:[],TWD:[],UAH:[],USD:[\"\\u0449.\\u0434.\",\"$\"],UYU:[],VND:[],XCD:[o,\"$\"]},function(n){return 1===n?1:5},[[[\"\\u043f\\u043e\\u043b\\u0443\\u043d\\u043e\\u0449\",\"\\u0441\\u0443\\u0442\\u0440\\u0438\\u043d\\u0442\\u0430\",\"\\u043d\\u0430 \\u043e\\u0431\\u044f\\u0434\",\"\\u0441\\u043b\\u0435\\u0434\\u043e\\u0431\\u0435\\u0434\",\"\\u0432\\u0435\\u0447\\u0435\\u0440\\u0442\\u0430\",\"\\u043f\\u0440\\u0435\\u0437 \\u043d\\u043e\\u0449\\u0442\\u0430\"],o,o],o,[\"00:00\",[\"04:00\",\"11:00\"],[\"11:00\",\"14:00\"],[\"14:00\",\"18:00\"],[\"18:00\",\"22:00\"],[\"22:00\",\"04:00\"]]]]}(\"undefined\"!=typeof globalThis&&globalThis||\"undefined\"!=typeof global&&global||\"undefined\"!=typeof window&&window);;var $localize=Object.assign(void 0===$localize?{}:$localize,{locale:\"bg\"});function _templateObject154(){var e=_taggedTemplateLiteral([\":\\u241f121cc5391cd2a5115bc2b3160379ee5b36cd7716\\u241f4930506384627295710:Settings\"]);return _templateObject154=function(){return e},e}function _templateObject153(){var e=_taggedTemplateLiteral([\":\\u241fb7648e7aced164498aa843b5c4e8f2f1c36a7919\\u241f7844706011418789951:Administration\"]);return _templateObject153=function(){return e},e}function _templateObject152(){var e=_taggedTemplateLiteral([\":\\u241fbb694b49d408265c91c62799c2b3a7e3151c824d\\u241f3797778920049399855:Logout\"]);return _templateObject152=function(){return e},e}function _templateObject151(){var e=_taggedTemplateLiteral([\":\\u241f7b928f1d459648a4733d54d7fb0c7141ba6955af\\u241f1246086532983525846:Feeds\"]);return _templateObject151=function(){return e},e}function _templateObject150(){var e=_taggedTemplateLiteral([\":\\u241f7240bf47e6acc8685c4ebfc74ce0d5b4db6bde4f\\u241f5231214581506259059:Share Services\"]);return _templateObject150=function(){return e},e}function _templateObject149(){var e=_taggedTemplateLiteral([\":\\u241f1298c1d2bbbb7415f5494e800f6775fdb70f4df6\\u241f4163272119298020373:Filters\"]);return _templateObject149=function(){return e},e}function _templateObject148(){var e=_taggedTemplateLiteral([\":\\u241f446bc7942ed7cd24d6b84079bb82bd7f1d4d280b\\u241f8187273895031232465:Manage Feeds\"]);return _templateObject148=function(){return e},e}function _templateObject147(){var e=_taggedTemplateLiteral([\":\\u241fb6e9d3a76584feec84c2204f11301598fb90d7ef\\u241f6372201297165580832:Add Feed\"]);return _templateObject147=function(){return e},e}function _templateObject146(){var e=_taggedTemplateLiteral([\":\\u241f3d53f64033c4b76fdc1076ba15955d913209866c\\u241f6439365426343089851:General\"]);return _templateObject146=function(){return e},e}function _templateObject145(){var e=_taggedTemplateLiteral([\":\\u241f2efe5a11c535986f60fd32bb171de59c85ec357d\\u241f6537591722407885569: Settings\\n\"]);return _templateObject145=function(){return e},e}function _templateObject144(){var e=_taggedTemplateLiteral([\":\\u241f2985844c6198518d1b99c84e29e1c8795754cf8b\\u241f4960000650285755818: Empty password \"]);return _templateObject144=function(){return e},e}function _templateObject143(){var e=_taggedTemplateLiteral([\":\\u241f81300fcfd7313522c85ffe86cc04a5c19278bf12\\u241f2191339029246291489: Empty user name \"]);return _templateObject143=function(){return e},e}function _templateObject142(){var e=_taggedTemplateLiteral([\":\\u241f52c9a103b812f258bcddc3d90a6e3f46871d25fe\\u241f3768927257183755959:Save\"]);return _templateObject142=function(){return e},e}function _templateObject141(){var e=_taggedTemplateLiteral([\":\\u241fc32ef07f8803a223a83ed17024b38e8d82292407\\u241f1431416938026210429:Password\"]);return _templateObject141=function(){return e},e}function _templateObject140(){var e=_taggedTemplateLiteral([\":\\u241f024886ca34a6f309e3e51c2ed849320592c3faaa\\u241f5312727456282218392:User name\"]);return _templateObject140=function(){return e},e}function _templateObject139(){var e=_taggedTemplateLiteral([\":\\u241ffab6f6aad7a682400356ad9ba30f1c25e80c8930\\u241f4425649962450500073:Add a new user\"]);return _templateObject139=function(){return e},e}function _templateObject138(){var e=_taggedTemplateLiteral([\":\\u241f75bff245ba90b410bd49da2788c55f572ce7f784\\u241f6033168733730940341:List of users:\"]);return _templateObject138=function(){return e},e}function _templateObject137(){var e=_taggedTemplateLiteral([\":\\u241f1df08418100ac5e70836b8adf5fa12d4c1b4b0dd\\u241f5195095583184627775: Current user: \",\":INTERPOLATION:\\n\"]);return _templateObject137=function(){return e},e}function _templateObject136(){var e=_taggedTemplateLiteral([\":\\u241ff8c7e16da78e5daf06335e60dd27f03ec30530f4\\u241f5918723526444903137:Add user\"]);return _templateObject136=function(){return e},e}function _templateObject135(){var e=_taggedTemplateLiteral([\":\\u241fcb593cb234b63428439631044bdf77fc3452357c\\u241f2108091748797172929:Manage Users\"]);return _templateObject135=function(){return e},e}function _templateObject134(){var e=_taggedTemplateLiteral([\":\\u241f7240bf47e6acc8685c4ebfc74ce0d5b4db6bde4f\\u241f5231214581506259059:Share Services\"]);return _templateObject134=function(){return e},e}function _templateObject133(){var e=_taggedTemplateLiteral([\":\\u241f337ca2e5eeea28eaca91e8511eb5eaafdb385ce6\\u241f1825829511397926879:Tag\"]);return _templateObject133=function(){return e},e}function _templateObject132(){var e=_taggedTemplateLiteral([\":\\u241f7b928f1d459648a4733d54d7fb0c7141ba6955af\\u241f1246086532983525846:Feeds\"]);return _templateObject132=function(){return e},e}function _templateObject131(){var e=_taggedTemplateLiteral([\":\\u241f48568468ed7a42b94708b89595e8e0ba4c5c4880\\u241f7921030750033180197:Limit to tag\"]);return _templateObject131=function(){return e},e}function _templateObject130(){var e=_taggedTemplateLiteral([\":\\u241f7b00e7c2dacd433e78459995668de3ae88faed6f\\u241f1943233524922375568:Limit to feeds\"]);return _templateObject130=function(){return e},e}function _templateObject129(){var e=_taggedTemplateLiteral([\":\\u241ffc9c1cf53b31d0f5bd0a8e28b56b83797a536101\\u241f1576866399027630699: A filter must match at least a URL or title \"]);return _templateObject129=function(){return e},e}function _templateObject128(){var e=_taggedTemplateLiteral([\":\\u241ff4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8\\u241f7819314041543176992:Close\"]);return _templateObject128=function(){return e},e}function _templateObject127(){var e=_taggedTemplateLiteral([\":\\u241f52c9a103b812f258bcddc3d90a6e3f46871d25fe\\u241f3768927257183755959:Save\"]);return _templateObject127=function(){return e},e}function _templateObject126(){var e=_taggedTemplateLiteral([\":\\u241f80de392929f7cade444426837fc6a322091e8143\\u241f6200388742841208230: Match filter if article is not part of the selected feeds/tag. \"]);return _templateObject126=function(){return e},e}function _templateObject125(){var e=_taggedTemplateLiteral([\":\\u241f421759c8d438a7e13844a18b48945cf1cf425769\\u241f7389317586710764363: Optional parameters \"]);return _templateObject125=function(){return e},e}function _templateObject124(){var e=_taggedTemplateLiteral([\":\\u241f1ee7e26019fd1e347d1e23443cf6895a02d62d9c\\u241f8226028651876528843: Match filter if URL term does not match. \"]);return _templateObject124=function(){return e},e}function _templateObject123(){var e=_taggedTemplateLiteral([\":\\u241f3664165270130fd3d4f89f5f7e4c56fb7c485375\\u241f215401851945683133:Filter by URL\"]);return _templateObject123=function(){return e},e}function _templateObject122(){var e=_taggedTemplateLiteral([\":\\u241f12a3c6674683fc857378e516d09535cfe6030f50\\u241f7902335185780042053: Match filter if title term does not match. \"]);return _templateObject122=function(){return e},e}function _templateObject121(){var e=_taggedTemplateLiteral([\":\\u241f34501d547e3d70233dfcc545621b3f9524046c76\\u241f1890297221031788927:Filter by title\"]);return _templateObject121=function(){return e},e}function _templateObject120(){var e=_taggedTemplateLiteral([\":\\u241f760d27bbd4821e0c2c36328a956b7e2a548af1b2\\u241f3366129698268834789: Filters can be applied to article URLs and title. At least one target must be selected: \"]);return _templateObject120=function(){return e},e}function _templateObject119(){var e=_taggedTemplateLiteral([\":\\u241fee5dbbdc2ddbcc6b9aa7262b6d6b1fd93f4a7667\\u241f1717622304171392571:on feeds:\"]);return _templateObject119=function(){return e},e}function _templateObject118(){var e=_taggedTemplateLiteral([\":\\u241f567eded396fef0222ca8ab79c661062ea2d0b0ba\\u241f2325552724815119037:on tag:\"]);return _templateObject118=function(){return e},e}function _templateObject117(){var e=_taggedTemplateLiteral([\":\\u241fa01b7cd68dedce110e9721fe35c8447aa6c7addf\\u241f2844382219174700059:excluding feeds:\"]);return _templateObject117=function(){return e},e}function _templateObject116(){var e=_taggedTemplateLiteral([\":\\u241f5ec699eaa79e1ac10b6ce2a16bfc89436bcb7120\\u241f560382346117673180:excluding tag:\"]);return _templateObject116=function(){return e},e}function _templateObject115(){var e=_taggedTemplateLiteral([\":\\u241f84bbbe38f927eaeddf081648c8783d06b4348b24\\u241f2940383431828435625:Does not match\"]);return _templateObject115=function(){return e},e}function _templateObject114(){var e=_taggedTemplateLiteral([\":\\u241f01aa5508abb4473531a18c605c1c41ae4b6074d0\\u241f1567940090040631427:Matches\"]);return _templateObject114=function(){return e},e}function _templateObject113(){var e=_taggedTemplateLiteral([\":\\u241f7bd342c384e331d17e60ccdf6eb0c23152317d51\\u241f2443387025535922739:by title\"]);return _templateObject113=function(){return e},e}function _templateObject112(){var e=_taggedTemplateLiteral([\":\\u241f84bbbe38f927eaeddf081648c8783d06b4348b24\\u241f2940383431828435625:Does not match\"]);return _templateObject112=function(){return e},e}function _templateObject111(){var e=_taggedTemplateLiteral([\":\\u241f01aa5508abb4473531a18c605c1c41ae4b6074d0\\u241f1567940090040631427:Matches\"]);return _templateObject111=function(){return e},e}function _templateObject110(){var e=_taggedTemplateLiteral([\":\\u241f583cfbb9fc11b6d18ba2859c6f6ef9801f01303a\\u241f7250849074184621975:by URL\"]);return _templateObject110=function(){return e},e}function _templateObject109(){var e=_taggedTemplateLiteral([\":\\u241f58225eba05594edb2dbf2227edcf972c45484190\\u241f3151928432395495376: No filters have been defined\\n\"]);return _templateObject109=function(){return e},e}function _templateObject108(){var e=_taggedTemplateLiteral([\":\\u241ff0296c99c29c326e114d9b5e586e525ced19acb7\\u241f910026778839409110:Add filter\"]);return _templateObject108=function(){return e},e}function _templateObject107(){var e=_taggedTemplateLiteral([\":\\u241f78a6f89ed9e0cf32497131786780cb1849d06450\\u241f1387635138150410380:Manage Filters\"]);return _templateObject107=function(){return e},e}function _templateObject106(){var e=_taggedTemplateLiteral([\":\\u241ff4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8\\u241f7819314041543176992:Close\"]);return _templateObject106=function(){return e},e}function _templateObject105(){var e=_taggedTemplateLiteral([\":\\u241f9f12050a433d9709f2231916ecfb33c4f2ed1c01\\u241f4975748273657042999:tags\"]);return _templateObject105=function(){return e},e}function _templateObject104(){var e=_taggedTemplateLiteral([\":\\u241fcf59c3b27a0d7b925f32cd1c1e2785a1bf73f829\\u241f5929451610563023881:Export OPML\"]);return _templateObject104=function(){return e},e}function _templateObject103(){var e=_taggedTemplateLiteral([\":\\u241f446bc7942ed7cd24d6b84079bb82bd7f1d4d280b\\u241f8187273895031232465:Manage Feeds\"]);return _templateObject103=function(){return e},e}function _templateObject102(){var e=_taggedTemplateLiteral([\":\\u241f51a0b2a443f1b6b1ceab1a868605d7b0f2065e28\\u241f562151600459726773: Error adding feed \",\":INTERPOLATION:: \",\":INTERPOLATION_1: \"]);return _templateObject102=function(){return e},e}function _templateObject101(){var e=_taggedTemplateLiteral([\":\\u241fccd3b9334639513fbd609704f4ec8536a15aeb97\\u241f4228842406796887022: Feeds were added successfully. \"]);return _templateObject101=function(){return e},e}function _templateObject100(){var e=_taggedTemplateLiteral([\":\\u241ff1910eaad1af7b9e7635f930ddc55586f157e3bd\\u241f5085881954406181280: No feeds added. \"]);return _templateObject100=function(){return e},e}function _templateObject99(){var e=_taggedTemplateLiteral([\":\\u241f9d9bc3eecf1610ec05a5c2b63bb7c1324529cba5\\u241f5997521680245778675:Discover more feeds\"]);return _templateObject99=function(){return e},e}function _templateObject98(){var e=_taggedTemplateLiteral([\":\\u241f9d9bc3eecf1610ec05a5c2b63bb7c1324529cba5\\u241f5997521680245778675:Discover more feeds\"]);return _templateObject98=function(){return e},e}function _templateObject97(){var e=_taggedTemplateLiteral([\":\\u241ff6755cff4957d5c3c89bafce5651f1b6fa2b1fd9\\u241f3249513483374643425:Add\"]);return _templateObject97=function(){return e},e}function _templateObject96(){var e=_taggedTemplateLiteral([\":\\u241fd95b1d4402bbe08c4ab7c089005abb260bf0fb62\\u241f4956883923261490175: No new feeds found \"]);return _templateObject96=function(){return e},e}function _templateObject95(){var e=_taggedTemplateLiteral([\":\\u241f8350af72cf77a2936cd54ac59cc1ab9adec34f74\\u241f5089003889507327516: Error during search \"]);return _templateObject95=function(){return e},e}function _templateObject94(){var e=_taggedTemplateLiteral([\":\\u241fbd2cda3ba20b1a481578e587ff255c5dd69226bb\\u241f107334190959015127: No query or opml file specified \"]);return _templateObject94=function(){return e},e}function _templateObject93(){var e=_taggedTemplateLiteral([\":\\u241f7e892ba15f2c6c17e83510e273b3e10fc32ea016\\u241f4580988005648117665:Search\"]);return _templateObject93=function(){return e},e}function _templateObject92(){var e=_taggedTemplateLiteral([\":\\u241f62eb4be126bc452812fe66b9675417704c09123a\\u241f2641672822784307275:OPML import\"]);return _templateObject92=function(){return e},e}function _templateObject91(){var e=_taggedTemplateLiteral([\":\\u241f0e6f6d047ad0445f95577c3886f5cb462ecfd614\\u241f4419855417700414171: Alternatively, upload an OPML file. \"]);return _templateObject91=function(){return e},e}function _templateObject90(){var e=_taggedTemplateLiteral([\":\\u241fc09f5d00683d3ea7a0bac506894a81c47075628f\\u241f7800294050526433264:URL/query\"]);return _templateObject90=function(){return e},e}function _templateObject89(){var e=_taggedTemplateLiteral([\":\\u241f79bf2166191aab07aa1524f2d1350fab472c468a\\u241f1179108510865870171: You can enter the url of a feed directly, as well as a url of a site that may contain one or more feeds, or a search query. \"]);return _templateObject89=function(){return e},e}function _templateObject88(){var e=_taggedTemplateLiteral([\":\\u241f2fa6619f44220045d57d900966a51c211caad6fc\\u241f8307427112695611410:Discover/import feeds\"]);return _templateObject88=function(){return e},e}function _templateObject87(){var e=_taggedTemplateLiteral([\":\\u241f71980fe48d948363935aab88e2077c7c76de93bd\\u241f4018700129027778932: Passwords do not match \"]);return _templateObject87=function(){return e},e}function _templateObject86(){var e=_taggedTemplateLiteral([\":\\u241fd4ee9c4a4fe08d273b716bf0a399570466bbd87c\\u241f5382495681765079471: Invalid password \"]);return _templateObject86=function(){return e},e}function _templateObject85(){var e=_taggedTemplateLiteral([\":\\u241f52c9a103b812f258bcddc3d90a6e3f46871d25fe\\u241f3768927257183755959:Save\"]);return _templateObject85=function(){return e},e}function _templateObject84(){var e=_taggedTemplateLiteral([\":\\u241fede41f01c781b168a783cfcefc6fb67d48780d9b\\u241f8656126574213649581:Confirm new password\"]);return _templateObject84=function(){return e},e}function _templateObject83(){var e=_taggedTemplateLiteral([\":\\u241fe70e209561583f360b1e9cefd2cbb1fe434b6229\\u241f3588415639242079458:New password\"]);return _templateObject83=function(){return e},e}function _templateObject82(){var e=_taggedTemplateLiteral([\":\\u241f6d6539a26b432fb1906f9fda102cf3ac332c8b8a\\u241f1375188762769896369:Change your password\"]);return _templateObject82=function(){return e},e}function _templateObject81(){var e=_taggedTemplateLiteral([\":\\u241f782e37fb591e59a26363f1558db22cd373660ca9\\u241f5224830667201919132: Please enter a valid email address \"]);return _templateObject81=function(){return e},e}function _templateObject80(){var e=_taggedTemplateLiteral([\":\\u241f739516c2ca75843d5aec9cf0e6b3e4335c4227b9\\u241f6309828574111583895:Change password\"]);return _templateObject80=function(){return e},e}function _templateObject79(){var e=_taggedTemplateLiteral([\":\\u241ffe46ccaae902ce974e2441abe752399288298619\\u241f2826581353496868063:Language\"]);return _templateObject79=function(){return e},e}function _templateObject78(){var e=_taggedTemplateLiteral([\":\\u241f244aae9346da82b0922506c2d2581373a15641cc\\u241f4768749765465246664:Email\"]);return _templateObject78=function(){return e},e}function _templateObject77(){var e=_taggedTemplateLiteral([\":\\u241f6ce3dadf53dda1a1ab0c3167a8ed8dced471b0dc\\u241f3586674587150281199:Last name\"]);return _templateObject77=function(){return e},e}function _templateObject76(){var e=_taggedTemplateLiteral([\":\\u241f62b6c66981335ca6eecc36b331103c60f09d1026\\u241f5342432350421167093:First name\"]);return _templateObject76=function(){return e},e}function _templateObject75(){var e=_taggedTemplateLiteral([\":\\u241f2034c9a8ec1a387f9614599aed924afedba51287\\u241f3044746121698042511:Personalize your feed reader\"]);return _templateObject75=function(){return e},e}function _templateObject74(){var e=_taggedTemplateLiteral([\":\\u241f9b1d5e95f6bdcfb4b737413f5fa157e0dcb103d5\\u241f2327592562693301723:Read\"]);return _templateObject74=function(){return e},e}function _templateObject73(){var e=_taggedTemplateLiteral([\":\\u241f3b6143a528c6f4586e60e9af4ced8ac0fbe08251\\u241f5539833462297888878:Articles\"]);return _templateObject73=function(){return e},e}function _templateObject72(){var e=_taggedTemplateLiteral([\":\\u241f8fc026bb4b317bf3a6159c364818202f5bb95a4e\\u241f7375243393535212946:Popular\"]);return _templateObject72=function(){return e},e}function _templateObject71(){var e=_taggedTemplateLiteral([\":\\u241fbb694b49d408265c91c62799c2b3a7e3151c824d\\u241f3797778920049399855:Logout\"]);return _templateObject71=function(){return e},e}function _templateObject70(){var e=_taggedTemplateLiteral([\":\\u241f121cc5391cd2a5115bc2b3160379ee5b36cd7716\\u241f4930506384627295710:Settings\"]);return _templateObject70=function(){return e},e}function _templateObject69(){var e=_taggedTemplateLiteral([\":\\u241fdfc3c34e182ea73c5d784ff7c8135f087992dac1\\u241f1616102757855967475:All\"]);return _templateObject69=function(){return e},e}function _templateObject68(){var e=_taggedTemplateLiteral([\":\\u241f11a0771f88158a540a54e0e4ec5d25733d65fc0e\\u241f5787671382322865445:Favorite\"]);return _templateObject68=function(){return e},e}function _templateObject67(){var e=_taggedTemplateLiteral([\":\\u241f416441a4532345eaa0c5cab38f0aeb148c8566e0\\u241f4648504262060403687: Feeds\\n\"]);return _templateObject67=function(){return e},e}function _templateObject66(){var e=_taggedTemplateLiteral([\":\\u241f170d0510bd494799bed6a127fc04eabc9f8bed23\\u241f97023127247629182: Summary \"]);return _templateObject66=function(){return e},e}function _templateObject65(){var e=_taggedTemplateLiteral([\":\\u241fd5e281892feed2ccbc7c3135846913de48ed7876\\u241f7925939516256734638: Format \"]);return _templateObject65=function(){return e},e}function _templateObject64(){var e=_taggedTemplateLiteral([\":\\u241fbba44ce85e0028ddbc8b0e38d5a04fabc13c8f61\\u241f342997967009162383: View \"]);return _templateObject64=function(){return e},e}function _templateObject63(){var e=_taggedTemplateLiteral([\":\\u241f94516fa213706c67ce5a5b5765681d7fb032033a\\u241f3894950702316166331:Loading...\"]);return _templateObject63=function(){return e},e}function _templateObject62(){var e=_taggedTemplateLiteral([\":\\u241f244aae9346da82b0922506c2d2581373a15641cc\\u241f4768749765465246664:Email\"]);return _templateObject62=function(){return e},e}function _templateObject61(){var e=_taggedTemplateLiteral([\":\\u241ff381d5239a6369e5f4b8582a35e135c8e3d9dfc8\\u241f1092044965355425322:Gmail\"]);return _templateObject61=function(){return e},e}function _templateObject60(){var e=_taggedTemplateLiteral([\":\\u241f244aae9346da82b0922506c2d2581373a15641cc\\u241f4768749765465246664:Email\"]);return _templateObject60=function(){return e},e}function _templateObject59(){var e=_taggedTemplateLiteral([\":\\u241f244aae9346da82b0922506c2d2581373a15641cc\\u241f4768749765465246664:Email\"]);return _templateObject59=function(){return e},e}function _templateObject58(){var e=_taggedTemplateLiteral([\":\\u241f889e1152e6351fd7607f7547eb5547f6c7a7f3df\\u241f1814818426021413844:Blogging\"]);return _templateObject58=function(){return e},e}function _templateObject57(){var e=_taggedTemplateLiteral([\":\\u241f9ed5758c5418a3aa0ecbf9c043a8d89b96852680\\u241f2394265441963394390:Flipboard\"]);return _templateObject57=function(){return e},e}function _templateObject56(){var e=_taggedTemplateLiteral([\":\\u241f889e1152e6351fd7607f7547eb5547f6c7a7f3df\\u241f1814818426021413844:Blogging\"]);return _templateObject56=function(){return e},e}function _templateObject55(){var e=_taggedTemplateLiteral([\":\\u241f8df49d58c2d6296211e3a4d6a7dcbb2256cad458\\u241f3508115160503405698:Tumblr\"]);return _templateObject55=function(){return e},e}function _templateObject54(){var e=_taggedTemplateLiteral([\":\\u241f81baa3357bebcb29271c8121a87c17915bdbb41f\\u241f3841619436439332072:Social network\"]);return _templateObject54=function(){return e},e}function _templateObject53(){var e=_taggedTemplateLiteral([\":\\u241f77ce98fa8988bd33011b2221a28c373dd35a5db1\\u241f5073753467039594647:Pinterest\"]);return _templateObject53=function(){return e},e}function _templateObject52(){var e=_taggedTemplateLiteral([\":\\u241f81baa3357bebcb29271c8121a87c17915bdbb41f\\u241f3841619436439332072:Social network\"]);return _templateObject52=function(){return e},e}function _templateObject51(){var e=_taggedTemplateLiteral([\":\\u241f99cb827741e93125476a0f5b676372d85d15b5fc\\u241f1715373473261069991:Twitter\"]);return _templateObject51=function(){return e},e}function _templateObject50(){var e=_taggedTemplateLiteral([\":\\u241f81baa3357bebcb29271c8121a87c17915bdbb41f\\u241f3841619436439332072:Social network\"]);return _templateObject50=function(){return e},e}function _templateObject49(){var e=_taggedTemplateLiteral([\":\\u241f838a46816b130c73fe73b96e69176da9eb3b1190\\u241f8790918354594417962:Facebook\"]);return _templateObject49=function(){return e},e}function _templateObject48(){var e=_taggedTemplateLiteral([\":\\u241f81baa3357bebcb29271c8121a87c17915bdbb41f\\u241f3841619436439332072:Social network\"]);return _templateObject48=function(){return e},e}function _templateObject47(){var e=_taggedTemplateLiteral([\":\\u241f6ff575335272d7e0a6843ba597216f8201b57991\\u241f7677669941581940117:Google+\"]);return _templateObject47=function(){return e},e}function _templateObject46(){var e=_taggedTemplateLiteral([\":\\u241fded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e\\u241f4957012645000249772:Read-it-later\"]);return _templateObject46=function(){return e},e}function _templateObject45(){var e=_taggedTemplateLiteral([\":\\u241f3031c36d6183f1bb68d18b5ee4aea8ae31bb0eeb\\u241f8042803930279457976:Pocket\"]);return _templateObject45=function(){return e},e}function _templateObject44(){var e=_taggedTemplateLiteral([\":\\u241fded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e\\u241f4957012645000249772:Read-it-later\"]);return _templateObject44=function(){return e},e}function _templateObject43(){var e=_taggedTemplateLiteral([\":\\u241febe46a6ad0c84110be6b37c800f3d3663eeb6aba\\u241f9204054824887609742:Readability\"]);return _templateObject43=function(){return e},e}function _templateObject42(){var e=_taggedTemplateLiteral([\":\\u241fded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e\\u241f4957012645000249772:Read-it-later\"]);return _templateObject42=function(){return e},e}function _templateObject41(){var e=_taggedTemplateLiteral([\":\\u241f35009adf932b9b5ef2c030703e87fc8837c69eb3\\u241f418690784356586368:Instapaper\"]);return _templateObject41=function(){return e},e}function _templateObject40(){var e=_taggedTemplateLiteral([\":\\u241fded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e\\u241f4957012645000249772:Read-it-later\"]);return _templateObject40=function(){return e},e}function _templateObject39(){var e=_taggedTemplateLiteral([\":\\u241f692e44560646c0bdeea893155ffcc76928378a1e\\u241f7811507103524633661:Evernote\"]);return _templateObject39=function(){return e},e}function _templateObject38(){var e=_taggedTemplateLiteral([\":\\u241f71c77bb8cecdf11ec3eead24dd1ba506573fa9cd\\u241f935187492052582731:Submit\"]);return _templateObject38=function(){return e},e}function _templateObject37(){var e=_taggedTemplateLiteral([\":\\u241fc32ef07f8803a223a83ed17024b38e8d82292407\\u241f1431416938026210429:Password\"]);return _templateObject37=function(){return e},e}function _templateObject36(){var e=_taggedTemplateLiteral([\":\\u241f024886ca34a6f309e3e51c2ed849320592c3faaa\\u241f5312727456282218392:User name\"]);return _templateObject36=function(){return e},e}function _wrapNativeSuper(e){var t=\"function\"==typeof Map?new Map:void 0;return(_wrapNativeSuper=function(e){if(null===e||!_isNativeFunction(e))return e;if(\"function\"!=typeof e)throw new TypeError(\"Super expression must either be null or a function\");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,n)}function n(){return _construct(e,arguments,_getPrototypeOf(this).constructor)}return n.prototype=Object.create(e.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),_setPrototypeOf(n,e)})(e)}function _isNativeFunction(e){return-1!==Function.toString.call(e).indexOf(\"[native code]\")}function _defineProperty(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function _templateObject35(){var e=_taggedTemplateLiteral([\":@@ngb.toast.close-aria\\u241ff4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8\\u241f7819314041543176992:Close\"]);return _templateObject35=function(){return e},e}function _templateObject34(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.AM\\u241f69a1f176a93998876952adac57c3bc3863b6105e\\u241f4592818992509942761:\",\":INTERPOLATION:\"]);return _templateObject34=function(){return e},e}function _templateObject33(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.PM\\u241f8d6e691e10306c1b34c6b26805151aaea320ef7f\\u241f3564199131264287502:\",\":INTERPOLATION:\"]);return _templateObject33=function(){return e},e}function _templateObject32(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.decrement-seconds\\u241f5db47ac104294243a70eb9124fbea9d0004ddf69\\u241f753633511487974857:Decrement seconds\"]);return _templateObject32=function(){return e},e}function _templateObject31(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.increment-seconds\\u241f912322ecee7d659d04dcf494a70e22e49d334b26\\u241f5364772110539092174:Increment seconds\"]);return _templateObject31=function(){return e},e}function _templateObject30(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.seconds\\u241f4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c\\u241f8874012390997067175:Seconds\"]);return _templateObject30=function(){return e},e}function _templateObject29(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.SS\\u241febe38d36a40a2383c5fefa9b4608ffbda08bd4a3\\u241f3628127143071124194:SS\"]);return _templateObject29=function(){return e},e}function _templateObject28(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.decrement-minutes\\u241fc1a6899e529c096da5b660385d4e77fe1f7ad271\\u241f7447789825403243588:Decrement minutes\"]);return _templateObject28=function(){return e},e}function _templateObject27(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.increment-minutes\\u241ff5a4a3bc05e053f6732475d0e74875ec01c3a348\\u241f180147720391025024:Increment minutes\"]);return _templateObject27=function(){return e},e}function _templateObject26(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.decrement-hours\\u241f147c7a19429da7d999e247d22e33fee370b1691b\\u241f3651829882940481818:Decrement hours\"]);return _templateObject26=function(){return e},e}function _templateObject25(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.increment-hours\\u241fcb74bc1d625a6c1742f0d7d47306cf495780c218\\u241f5939278348542933629:Increment hours\"]);return _templateObject25=function(){return e},e}function _templateObject24(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.minutes\\u241f41e62daa962947c0d23ded0981975d1bddf0bf38\\u241f5531237363767747080:Minutes\"]);return _templateObject24=function(){return e},e}function _templateObject23(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.MM\\u241f72c8edf6a50068a05bde70991e36b1e881f4ca54\\u241f1647282246509919852:MM\"]);return _templateObject23=function(){return e},e}function _templateObject22(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.hours\\u241f3bbce5fef7e1151da052a4e529453edb340e3912\\u241f8070396816726827304:Hours\"]);return _templateObject22=function(){return e},e}function _templateObject21(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.HH\\u241fce676ab1d6d98f85c836381cf100a4a91ef95a1f\\u241f4043638465245303811:HH\"]);return _templateObject21=function(){return e},e}function _templateObject20(){var e=_taggedTemplateLiteral([\":@@ngb.progressbar.value\\u241f04d611d19c117c60c9e14d0a04399a027184bc77\\u241f5214781723415385277:\",\":INTERPOLATION:%\"]);return _templateObject20=function(){return e},e}function _templateObject19(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.last-aria\\u241f5c729788ba138508aca1bec050b610f7bf81db3e\\u241f4882268002141858767:Last\"]);return _templateObject19=function(){return e},e}function _templateObject18(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.next-aria\\u241ff732c304c7433e5a83ffcd862c3dce709a0f4982\\u241f3885497195825665706:Next\"]);return _templateObject18=function(){return e},e}function _templateObject17(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.previous-aria\\u241f680d5c75b7fd8d37961083608b9fcdc4167b4c43\\u241f4452427314943113135:Previous\"]);return _templateObject17=function(){return e},e}function _templateObject16(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.first-aria\\u241ff2f852318759c6396b5d3d17031d53817d7b38cc\\u241f2241508602425256033:First\"]);return _templateObject16=function(){return e},e}function _templateObject15(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.last\\u241f49f27a460bc97e7e00be5b37098bfa79884fc7d9\\u241f5277020320267646988:\\xbb\\xbb\"]);return _templateObject15=function(){return e},e}function _templateObject14(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.next\\u241fba9cbb4ff311464308a3627e4f1c3345d9fe6d7d\\u241f5458177150283468089:\\xbb\"]);return _templateObject14=function(){return e},e}function _templateObject13(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.previous\\u241f6e52b6ee77a4848d899dd21b591c6fd499e3aef3\\u241f6479320895410098858:\\xab\"]);return _templateObject13=function(){return e},e}function _templateObject12(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.first\\u241f656506dfd46380956a655f919f1498d018f75ca0\\u241f6867721956102594380:\\xab\\xab\"]);return _templateObject12=function(){return e},e}function _templateObject11(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.select-year\\u241f8ceb09d002bf0c5d1cac171dfbffe1805d2b3962\\u241f8852264961585484321:Select year\"]);return _templateObject11=function(){return e},e}function _templateObject10(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.select-year\\u241f8ceb09d002bf0c5d1cac171dfbffe1805d2b3962\\u241f8852264961585484321:Select year\"]);return _templateObject10=function(){return e},e}function _templateObject9(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.select-month\\u241f1dbc84807f35518112f62e5775d1daebd3d8462b\\u241f2253869508135064750:Select month\"]);return _templateObject9=function(){return e},e}function _templateObject8(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.select-month\\u241f1dbc84807f35518112f62e5775d1daebd3d8462b\\u241f2253869508135064750:Select month\"]);return _templateObject8=function(){return e},e}function _templateObject7(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.next-month\\u241f4bd046985cfe13040d5ef0cd881edce0968a111a\\u241f3628374603023447227:Next month\"]);return _templateObject7=function(){return e},e}function _templateObject6(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.next-month\\u241f4bd046985cfe13040d5ef0cd881edce0968a111a\\u241f3628374603023447227:Next month\"]);return _templateObject6=function(){return e},e}function _templateObject5(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.previous-month\\u241fc3b08b07b5ab98e7cdcf18df39355690ab7d3884\\u241f8586908745456864217:Previous month\"]);return _templateObject5=function(){return e},e}function _templateObject4(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.previous-month\\u241fc3b08b07b5ab98e7cdcf18df39355690ab7d3884\\u241f8586908745456864217:Previous month\"]);return _templateObject4=function(){return e},e}function _templateObject3(){var e=_taggedTemplateLiteral([\":@@ngb.carousel.next\\u241ff732c304c7433e5a83ffcd862c3dce709a0f4982\\u241f3885497195825665706:Next\"]);return _templateObject3=function(){return e},e}function _templateObject2(){var e=_taggedTemplateLiteral([\":@@ngb.carousel.previous\\u241f680d5c75b7fd8d37961083608b9fcdc4167b4c43\\u241f4452427314943113135:Previous\"]);return _templateObject2=function(){return e},e}function _templateObject(){var e=_taggedTemplateLiteral([\":@@ngb.alert.close\\u241ff4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8\\u241f7819314041543176992:Close\"]);return _templateObject=function(){return e},e}function _taggedTemplateLiteral(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}function _slicedToArray(e,t){return _arrayWithHoles(e)||_iterableToArrayLimit(e,t)||_unsupportedIterableToArray(e,t)||_nonIterableRest()}function _nonIterableRest(){throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}function _iterableToArrayLimit(e,t){if(\"undefined\"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,i=!1,a=void 0;try{for(var o,s=e[Symbol.iterator]();!(r=(o=s.next()).done)&&(n.push(o.value),!t||n.length!==t);r=!0);}catch(l){i=!0,a=l}finally{try{r||null==s.return||s.return()}finally{if(i)throw a}}return n}}function _arrayWithHoles(e){if(Array.isArray(e))return e}function _toConsumableArray(e){return _arrayWithoutHoles(e)||_iterableToArray(e)||_unsupportedIterableToArray(e)||_nonIterableSpread()}function _nonIterableSpread(){throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}function _iterableToArray(e){if(\"undefined\"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}function _arrayWithoutHoles(e){if(Array.isArray(e))return _arrayLikeToArray(e)}function _createForOfIteratorHelper(e){if(\"undefined\"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(e=_unsupportedIterableToArray(e))){var t=0,n=function(){};return{s:n,n:function(){return t>=e.length?{done:!0}:{done:!1,value:e[t++]}},e:function(e){throw e},f:n}}throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}var r,i,a=!0,o=!1;return{s:function(){r=e[Symbol.iterator]()},n:function(){var e=r.next();return a=e.done,e},e:function(e){o=!0,i=e},f:function(){try{a||null==r.return||r.return()}finally{if(o)throw i}}}}function _unsupportedIterableToArray(e,t){if(e){if(\"string\"==typeof e)return _arrayLikeToArray(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return\"Object\"===n&&e.constructor&&(n=e.constructor.name),\"Map\"===n||\"Set\"===n?Array.from(n):\"Arguments\"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?_arrayLikeToArray(e,t):void 0}}function _arrayLikeToArray(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"//9w\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"se\",{months:\"o\\u0111\\u0111ajagem\\xe1nnu_guovvam\\xe1nnu_njuk\\u010dam\\xe1nnu_cuo\\u014bom\\xe1nnu_miessem\\xe1nnu_geassem\\xe1nnu_suoidnem\\xe1nnu_borgem\\xe1nnu_\\u010dak\\u010dam\\xe1nnu_golggotm\\xe1nnu_sk\\xe1bmam\\xe1nnu_juovlam\\xe1nnu\".split(\"_\"),monthsShort:\"o\\u0111\\u0111j_guov_njuk_cuo_mies_geas_suoi_borg_\\u010dak\\u010d_golg_sk\\xe1b_juov\".split(\"_\"),weekdays:\"sotnabeaivi_vuoss\\xe1rga_ma\\u014b\\u014beb\\xe1rga_gaskavahkku_duorastat_bearjadat_l\\xe1vvardat\".split(\"_\"),weekdaysShort:\"sotn_vuos_ma\\u014b_gask_duor_bear_l\\xe1v\".split(\"_\"),weekdaysMin:\"s_v_m_g_d_b_L\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"MMMM D. [b.] YYYY\",LLL:\"MMMM D. [b.] YYYY [ti.] HH:mm\",LLLL:\"dddd, MMMM D. [b.] YYYY [ti.] HH:mm\"},calendar:{sameDay:\"[otne ti] LT\",nextDay:\"[ihttin ti] LT\",nextWeek:\"dddd [ti] LT\",lastDay:\"[ikte ti] LT\",lastWeek:\"[ovddit] dddd [ti] LT\",sameElse:\"L\"},relativeTime:{future:\"%s gea\\u017ees\",past:\"ma\\u014bit %s\",s:\"moadde sekunddat\",ss:\"%d sekunddat\",m:\"okta minuhta\",mm:\"%d minuhtat\",h:\"okta diimmu\",hh:\"%d diimmut\",d:\"okta beaivi\",dd:\"%d beaivvit\",M:\"okta m\\xe1nnu\",MM:\"%d m\\xe1nut\",y:\"okta jahki\",yy:\"%d jagit\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"/X5v\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"x-pseudo\",{months:\"J~\\xe1\\xf1\\xfa\\xe1~r\\xfd_F~\\xe9br\\xfa~\\xe1r\\xfd_~M\\xe1rc~h_\\xc1p~r\\xedl_~M\\xe1\\xfd_~J\\xfa\\xf1\\xe9~_J\\xfal~\\xfd_\\xc1\\xfa~g\\xfast~_S\\xe9p~t\\xe9mb~\\xe9r_\\xd3~ct\\xf3b~\\xe9r_\\xd1~\\xf3v\\xe9m~b\\xe9r_~D\\xe9c\\xe9~mb\\xe9r\".split(\"_\"),monthsShort:\"J~\\xe1\\xf1_~F\\xe9b_~M\\xe1r_~\\xc1pr_~M\\xe1\\xfd_~J\\xfa\\xf1_~J\\xfal_~\\xc1\\xfag_~S\\xe9p_~\\xd3ct_~\\xd1\\xf3v_~D\\xe9c\".split(\"_\"),monthsParseExact:!0,weekdays:\"S~\\xfa\\xf1d\\xe1~\\xfd_M\\xf3~\\xf1d\\xe1\\xfd~_T\\xfa\\xe9~sd\\xe1\\xfd~_W\\xe9d~\\xf1\\xe9sd~\\xe1\\xfd_T~h\\xfars~d\\xe1\\xfd_~Fr\\xedd~\\xe1\\xfd_S~\\xe1t\\xfar~d\\xe1\\xfd\".split(\"_\"),weekdaysShort:\"S~\\xfa\\xf1_~M\\xf3\\xf1_~T\\xfa\\xe9_~W\\xe9d_~Th\\xfa_~Fr\\xed_~S\\xe1t\".split(\"_\"),weekdaysMin:\"S~\\xfa_M\\xf3~_T\\xfa_~W\\xe9_T~h_Fr~_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[T~\\xf3d\\xe1~\\xfd \\xe1t] LT\",nextDay:\"[T~\\xf3m\\xf3~rr\\xf3~w \\xe1t] LT\",nextWeek:\"dddd [\\xe1t] LT\",lastDay:\"[\\xdd~\\xe9st~\\xe9rd\\xe1~\\xfd \\xe1t] LT\",lastWeek:\"[L~\\xe1st] dddd [\\xe1t] LT\",sameElse:\"L\"},relativeTime:{future:\"\\xed~\\xf1 %s\",past:\"%s \\xe1~g\\xf3\",s:\"\\xe1 ~f\\xe9w ~s\\xe9c\\xf3~\\xf1ds\",ss:\"%d s~\\xe9c\\xf3\\xf1~ds\",m:\"\\xe1 ~m\\xed\\xf1~\\xfat\\xe9\",mm:\"%d m~\\xed\\xf1\\xfa~t\\xe9s\",h:\"\\xe1~\\xf1 h\\xf3~\\xfar\",hh:\"%d h~\\xf3\\xfars\",d:\"\\xe1 ~d\\xe1\\xfd\",dd:\"%d d~\\xe1\\xfds\",M:\"\\xe1 ~m\\xf3\\xf1~th\",MM:\"%d m~\\xf3\\xf1t~hs\",y:\"\\xe1 ~\\xfd\\xe9\\xe1r\",yy:\"%d \\xfd~\\xe9\\xe1rs\"},dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},0:function(e,t,n){e.exports=n(\"zUnb\")},\"0mo+\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0f21\",2:\"\\u0f22\",3:\"\\u0f23\",4:\"\\u0f24\",5:\"\\u0f25\",6:\"\\u0f26\",7:\"\\u0f27\",8:\"\\u0f28\",9:\"\\u0f29\",0:\"\\u0f20\"},n={\"\\u0f21\":\"1\",\"\\u0f22\":\"2\",\"\\u0f23\":\"3\",\"\\u0f24\":\"4\",\"\\u0f25\":\"5\",\"\\u0f26\":\"6\",\"\\u0f27\":\"7\",\"\\u0f28\":\"8\",\"\\u0f29\":\"9\",\"\\u0f20\":\"0\"};e.defineLocale(\"bo\",{months:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f44\\u0f0b\\u0f54\\u0f7c_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f66\\u0f74\\u0f58\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f5e\\u0f72\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f63\\u0f94\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0fb2\\u0f74\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f62\\u0f92\\u0fb1\\u0f51\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f42\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54\".split(\"_\"),monthsShort:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f44\\u0f0b\\u0f54\\u0f7c_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f66\\u0f74\\u0f58\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f5e\\u0f72\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f63\\u0f94\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0fb2\\u0f74\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f62\\u0f92\\u0fb1\\u0f51\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f42\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54\".split(\"_\"),weekdays:\"\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),weekdaysShort:\"\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),weekdaysMin:\"\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0f51\\u0f72\\u0f0b\\u0f62\\u0f72\\u0f44] LT\",nextDay:\"[\\u0f66\\u0f44\\u0f0b\\u0f49\\u0f72\\u0f53] LT\",nextWeek:\"[\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f55\\u0fb2\\u0f42\\u0f0b\\u0f62\\u0f97\\u0f7a\\u0f66\\u0f0b\\u0f58], LT\",lastDay:\"[\\u0f41\\u0f0b\\u0f66\\u0f44] LT\",lastWeek:\"[\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f55\\u0fb2\\u0f42\\u0f0b\\u0f58\\u0f50\\u0f60\\u0f0b\\u0f58] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0f63\\u0f0b\",past:\"%s \\u0f66\\u0f94\\u0f53\\u0f0b\\u0f63\",s:\"\\u0f63\\u0f58\\u0f0b\\u0f66\\u0f44\",ss:\"%d \\u0f66\\u0f90\\u0f62\\u0f0b\\u0f46\\u0f0d\",m:\"\\u0f66\\u0f90\\u0f62\\u0f0b\\u0f58\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",mm:\"%d \\u0f66\\u0f90\\u0f62\\u0f0b\\u0f58\",h:\"\\u0f46\\u0f74\\u0f0b\\u0f5a\\u0f7c\\u0f51\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",hh:\"%d \\u0f46\\u0f74\\u0f0b\\u0f5a\\u0f7c\\u0f51\",d:\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",dd:\"%d \\u0f49\\u0f72\\u0f53\\u0f0b\",M:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",MM:\"%d \\u0f5f\\u0fb3\\u0f0b\\u0f56\",y:\"\\u0f63\\u0f7c\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",yy:\"%d \\u0f63\\u0f7c\"},preparse:function(e){return e.replace(/[\\u0f21\\u0f22\\u0f23\\u0f24\\u0f25\\u0f26\\u0f27\\u0f28\\u0f29\\u0f20]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c|\\u0f5e\\u0f7c\\u0f42\\u0f66\\u0f0b\\u0f40\\u0f66|\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44|\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42|\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\"===t&&e>=4||\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44\"===t&&e<5||\"\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\":e<10?\"\\u0f5e\\u0f7c\\u0f42\\u0f66\\u0f0b\\u0f40\\u0f66\":e<17?\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44\":e<20?\"\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42\":\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"0tRk\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt-br\",{months:\"Janeiro_Fevereiro_Mar\\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingo_Segunda-feira_Ter\\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\\xe1bado\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ter_Qua_Qui_Sex_S\\xe1b\".split(\"_\"),weekdaysMin:\"Do_2\\xaa_3\\xaa_4\\xaa_5\\xaa_6\\xaa_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY [\\xe0s] HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY [\\xe0s] HH:mm\"},calendar:{sameDay:\"[Hoje \\xe0s] LT\",nextDay:\"[Amanh\\xe3 \\xe0s] LT\",nextWeek:\"dddd [\\xe0s] LT\",lastDay:\"[Ontem \\xe0s] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[\\xdaltimo] dddd [\\xe0s] LT\":\"[\\xdaltima] dddd [\\xe0s] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"h\\xe1 %s\",s:\"poucos segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",M:\"um m\\xeas\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\"})}(n(\"wd/R\"))},\"1rYy\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"hy-am\",{months:{format:\"\\u0570\\u0578\\u0582\\u0576\\u057e\\u0561\\u0580\\u056b_\\u0583\\u0565\\u057f\\u0580\\u057e\\u0561\\u0580\\u056b_\\u0574\\u0561\\u0580\\u057f\\u056b_\\u0561\\u057a\\u0580\\u056b\\u056c\\u056b_\\u0574\\u0561\\u0575\\u056b\\u057d\\u056b_\\u0570\\u0578\\u0582\\u0576\\u056b\\u057d\\u056b_\\u0570\\u0578\\u0582\\u056c\\u056b\\u057d\\u056b_\\u0585\\u0563\\u0578\\u057d\\u057f\\u0578\\u057d\\u056b_\\u057d\\u0565\\u057a\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0570\\u0578\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0576\\u0578\\u0575\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0564\\u0565\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b\".split(\"_\"),standalone:\"\\u0570\\u0578\\u0582\\u0576\\u057e\\u0561\\u0580_\\u0583\\u0565\\u057f\\u0580\\u057e\\u0561\\u0580_\\u0574\\u0561\\u0580\\u057f_\\u0561\\u057a\\u0580\\u056b\\u056c_\\u0574\\u0561\\u0575\\u056b\\u057d_\\u0570\\u0578\\u0582\\u0576\\u056b\\u057d_\\u0570\\u0578\\u0582\\u056c\\u056b\\u057d_\\u0585\\u0563\\u0578\\u057d\\u057f\\u0578\\u057d_\\u057d\\u0565\\u057a\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0570\\u0578\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0576\\u0578\\u0575\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0564\\u0565\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\".split(\"_\")},monthsShort:\"\\u0570\\u0576\\u057e_\\u0583\\u057f\\u0580_\\u0574\\u0580\\u057f_\\u0561\\u057a\\u0580_\\u0574\\u0575\\u057d_\\u0570\\u0576\\u057d_\\u0570\\u056c\\u057d_\\u0585\\u0563\\u057d_\\u057d\\u057a\\u057f_\\u0570\\u056f\\u057f_\\u0576\\u0574\\u0562_\\u0564\\u056f\\u057f\".split(\"_\"),weekdays:\"\\u056f\\u056b\\u0580\\u0561\\u056f\\u056b_\\u0565\\u0580\\u056f\\u0578\\u0582\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0565\\u0580\\u0565\\u0584\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0579\\u0578\\u0580\\u0565\\u0584\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0570\\u056b\\u0576\\u0563\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0578\\u0582\\u0580\\u0562\\u0561\\u0569_\\u0577\\u0561\\u0562\\u0561\\u0569\".split(\"_\"),weekdaysShort:\"\\u056f\\u0580\\u056f_\\u0565\\u0580\\u056f_\\u0565\\u0580\\u0584_\\u0579\\u0580\\u0584_\\u0570\\u0576\\u0563_\\u0578\\u0582\\u0580\\u0562_\\u0577\\u0562\\u0569\".split(\"_\"),weekdaysMin:\"\\u056f\\u0580\\u056f_\\u0565\\u0580\\u056f_\\u0565\\u0580\\u0584_\\u0579\\u0580\\u0584_\\u0570\\u0576\\u0563_\\u0578\\u0582\\u0580\\u0562_\\u0577\\u0562\\u0569\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0569.\",LLL:\"D MMMM YYYY \\u0569., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0569., HH:mm\"},calendar:{sameDay:\"[\\u0561\\u0575\\u057d\\u0585\\u0580] LT\",nextDay:\"[\\u057e\\u0561\\u0572\\u0568] LT\",lastDay:\"[\\u0565\\u0580\\u0565\\u056f] LT\",nextWeek:function(){return\"dddd [\\u0585\\u0580\\u0568 \\u056a\\u0561\\u0574\\u0568] LT\"},lastWeek:function(){return\"[\\u0561\\u0576\\u0581\\u0561\\u056e] dddd [\\u0585\\u0580\\u0568 \\u056a\\u0561\\u0574\\u0568] LT\"},sameElse:\"L\"},relativeTime:{future:\"%s \\u0570\\u0565\\u057f\\u0578\",past:\"%s \\u0561\\u057c\\u0561\\u057b\",s:\"\\u0574\\u056b \\u0584\\u0561\\u0576\\u056b \\u057e\\u0561\\u0575\\u0580\\u056f\\u0575\\u0561\\u0576\",ss:\"%d \\u057e\\u0561\\u0575\\u0580\\u056f\\u0575\\u0561\\u0576\",m:\"\\u0580\\u0578\\u057a\\u0565\",mm:\"%d \\u0580\\u0578\\u057a\\u0565\",h:\"\\u056a\\u0561\\u0574\",hh:\"%d \\u056a\\u0561\\u0574\",d:\"\\u0585\\u0580\",dd:\"%d \\u0585\\u0580\",M:\"\\u0561\\u0574\\u056b\\u057d\",MM:\"%d \\u0561\\u0574\\u056b\\u057d\",y:\"\\u057f\\u0561\\u0580\\u056b\",yy:\"%d \\u057f\\u0561\\u0580\\u056b\"},meridiemParse:/\\u0563\\u056b\\u0577\\u0565\\u0580\\u057e\\u0561|\\u0561\\u057c\\u0561\\u057e\\u0578\\u057f\\u057e\\u0561|\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561|\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576/,isPM:function(e){return/^(\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561|\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576)$/.test(e)},meridiem:function(e){return e<4?\"\\u0563\\u056b\\u0577\\u0565\\u0580\\u057e\\u0561\":e<12?\"\\u0561\\u057c\\u0561\\u057e\\u0578\\u057f\\u057e\\u0561\":e<17?\"\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561\":\"\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576\"},dayOfMonthOrdinalParse:/\\d{1,2}|\\d{1,2}-(\\u056b\\u0576|\\u0580\\u0564)/,ordinal:function(e,t){switch(t){case\"DDD\":case\"w\":case\"W\":case\"DDDo\":return 1===e?e+\"-\\u056b\\u0576\":e+\"-\\u0580\\u0564\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"1xZ4\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ca\",{months:{standalone:\"gener_febrer_mar\\xe7_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre\".split(\"_\"),format:\"de gener_de febrer_de mar\\xe7_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre\".split(\"_\"),isFormat:/D[oD]?(\\s)+MMMM/},monthsShort:\"gen._febr._mar\\xe7_abr._maig_juny_jul._ag._set._oct._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte\".split(\"_\"),weekdaysShort:\"dg._dl._dt._dc._dj._dv._ds.\".split(\"_\"),weekdaysMin:\"dg_dl_dt_dc_dj_dv_ds\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [de] YYYY\",ll:\"D MMM YYYY\",LLL:\"D MMMM [de] YYYY [a les] H:mm\",lll:\"D MMM YYYY, H:mm\",LLLL:\"dddd D MMMM [de] YYYY [a les] H:mm\",llll:\"ddd D MMM YYYY, H:mm\"},calendar:{sameDay:function(){return\"[avui a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextDay:function(){return\"[dem\\xe0 a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextWeek:function(){return\"dddd [a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastDay:function(){return\"[ahir a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [passat a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"d'aqu\\xed %s\",past:\"fa %s\",s:\"uns segons\",ss:\"%d segons\",m:\"un minut\",mm:\"%d minuts\",h:\"una hora\",hh:\"%d hores\",d:\"un dia\",dd:\"%d dies\",M:\"un mes\",MM:\"%d mesos\",y:\"un any\",yy:\"%d anys\"},dayOfMonthOrdinalParse:/\\d{1,2}(r|n|t|\\xe8|a)/,ordinal:function(e,t){var n=1===e?\"r\":2===e?\"n\":3===e?\"r\":4===e?\"t\":\"\\xe8\";return\"w\"!==t&&\"W\"!==t||(n=\"a\"),e+n},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"2fjn\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ca\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}}})}(n(\"wd/R\"))},\"2ykv\":function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),n=\"jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),r=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],i=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\\.?|feb\\.?|mrt\\.?|apr\\.?|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i;e.defineLocale(\"nl-be\",{months:\"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december\".split(\"_\"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\\.?|feb\\.?|mrt\\.?|apr\\.?|mei|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:\"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag\".split(\"_\"),weekdaysShort:\"zo._ma._di._wo._do._vr._za.\".split(\"_\"),weekdaysMin:\"zo_ma_di_wo_do_vr_za\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[vandaag om] LT\",nextDay:\"[morgen om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[gisteren om] LT\",lastWeek:\"[afgelopen] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"over %s\",past:\"%s geleden\",s:\"een paar seconden\",ss:\"%d seconden\",m:\"\\xe9\\xe9n minuut\",mm:\"%d minuten\",h:\"\\xe9\\xe9n uur\",hh:\"%d uur\",d:\"\\xe9\\xe9n dag\",dd:\"%d dagen\",M:\"\\xe9\\xe9n maand\",MM:\"%d maanden\",y:\"\\xe9\\xe9n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"3E1r\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};e.defineLocale(\"hi\",{months:\"\\u091c\\u0928\\u0935\\u0930\\u0940_\\u092b\\u093c\\u0930\\u0935\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u0948\\u0932_\\u092e\\u0908_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908_\\u0905\\u0917\\u0938\\u094d\\u0924_\\u0938\\u093f\\u0924\\u092e\\u094d\\u092c\\u0930_\\u0905\\u0915\\u094d\\u091f\\u0942\\u092c\\u0930_\\u0928\\u0935\\u092e\\u094d\\u092c\\u0930_\\u0926\\u093f\\u0938\\u092e\\u094d\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u0928._\\u092b\\u093c\\u0930._\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u0948._\\u092e\\u0908_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932._\\u0905\\u0917._\\u0938\\u093f\\u0924._\\u0905\\u0915\\u094d\\u091f\\u0942._\\u0928\\u0935._\\u0926\\u093f\\u0938.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0930\\u0935\\u093f\\u0935\\u093e\\u0930_\\u0938\\u094b\\u092e\\u0935\\u093e\\u0930_\\u092e\\u0902\\u0917\\u0932\\u0935\\u093e\\u0930_\\u092c\\u0941\\u0927\\u0935\\u093e\\u0930_\\u0917\\u0941\\u0930\\u0942\\u0935\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u0935\\u093e\\u0930_\\u0936\\u0928\\u093f\\u0935\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0930\\u0935\\u093f_\\u0938\\u094b\\u092e_\\u092e\\u0902\\u0917\\u0932_\\u092c\\u0941\\u0927_\\u0917\\u0941\\u0930\\u0942_\\u0936\\u0941\\u0915\\u094d\\u0930_\\u0936\\u0928\\u093f\".split(\"_\"),weekdaysMin:\"\\u0930_\\u0938\\u094b_\\u092e\\u0902_\\u092c\\u0941_\\u0917\\u0941_\\u0936\\u0941_\\u0936\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u092c\\u091c\\u0947\",LTS:\"A h:mm:ss \\u092c\\u091c\\u0947\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u092c\\u091c\\u0947\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u092c\\u091c\\u0947\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u0915\\u0932] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0915\\u0932] LT\",lastWeek:\"[\\u092a\\u093f\\u091b\\u0932\\u0947] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u092e\\u0947\\u0902\",past:\"%s \\u092a\\u0939\\u0932\\u0947\",s:\"\\u0915\\u0941\\u091b \\u0939\\u0940 \\u0915\\u094d\\u0937\\u0923\",ss:\"%d \\u0938\\u0947\\u0915\\u0902\\u0921\",m:\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u091f\",mm:\"%d \\u092e\\u093f\\u0928\\u091f\",h:\"\\u090f\\u0915 \\u0918\\u0902\\u091f\\u093e\",hh:\"%d \\u0918\\u0902\\u091f\\u0947\",d:\"\\u090f\\u0915 \\u0926\\u093f\\u0928\",dd:\"%d \\u0926\\u093f\\u0928\",M:\"\\u090f\\u0915 \\u092e\\u0939\\u0940\\u0928\\u0947\",MM:\"%d \\u092e\\u0939\\u0940\\u0928\\u0947\",y:\"\\u090f\\u0915 \\u0935\\u0930\\u094d\\u0937\",yy:\"%d \\u0935\\u0930\\u094d\\u0937\"},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924|\\u0938\\u0941\\u092c\\u0939|\\u0926\\u094b\\u092a\\u0939\\u0930|\\u0936\\u093e\\u092e/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\"===t?e<4?e:e+12:\"\\u0938\\u0941\\u092c\\u0939\"===t?e:\"\\u0926\\u094b\\u092a\\u0939\\u0930\"===t?e>=10?e:e+12:\"\\u0936\\u093e\\u092e\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0930\\u093e\\u0924\":e<10?\"\\u0938\\u0941\\u092c\\u0939\":e<17?\"\\u0926\\u094b\\u092a\\u0939\\u0930\":e<20?\"\\u0936\\u093e\\u092e\":\"\\u0930\\u093e\\u0924\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"4MV3\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0ae7\",2:\"\\u0ae8\",3:\"\\u0ae9\",4:\"\\u0aea\",5:\"\\u0aeb\",6:\"\\u0aec\",7:\"\\u0aed\",8:\"\\u0aee\",9:\"\\u0aef\",0:\"\\u0ae6\"},n={\"\\u0ae7\":\"1\",\"\\u0ae8\":\"2\",\"\\u0ae9\":\"3\",\"\\u0aea\":\"4\",\"\\u0aeb\":\"5\",\"\\u0aec\":\"6\",\"\\u0aed\":\"7\",\"\\u0aee\":\"8\",\"\\u0aef\":\"9\",\"\\u0ae6\":\"0\"};e.defineLocale(\"gu\",{months:\"\\u0a9c\\u0abe\\u0aa8\\u0acd\\u0aaf\\u0ac1\\u0a86\\u0ab0\\u0ac0_\\u0aab\\u0ac7\\u0aac\\u0acd\\u0ab0\\u0ac1\\u0a86\\u0ab0\\u0ac0_\\u0aae\\u0abe\\u0ab0\\u0acd\\u0a9a_\\u0a8f\\u0aaa\\u0acd\\u0ab0\\u0abf\\u0ab2_\\u0aae\\u0ac7_\\u0a9c\\u0ac2\\u0aa8_\\u0a9c\\u0ac1\\u0ab2\\u0abe\\u0a88_\\u0a91\\u0a97\\u0ab8\\u0acd\\u0a9f_\\u0ab8\\u0aaa\\u0acd\\u0a9f\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0_\\u0a91\\u0a95\\u0acd\\u0a9f\\u0acd\\u0aac\\u0ab0_\\u0aa8\\u0ab5\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0_\\u0aa1\\u0abf\\u0ab8\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0\".split(\"_\"),monthsShort:\"\\u0a9c\\u0abe\\u0aa8\\u0acd\\u0aaf\\u0ac1._\\u0aab\\u0ac7\\u0aac\\u0acd\\u0ab0\\u0ac1._\\u0aae\\u0abe\\u0ab0\\u0acd\\u0a9a_\\u0a8f\\u0aaa\\u0acd\\u0ab0\\u0abf._\\u0aae\\u0ac7_\\u0a9c\\u0ac2\\u0aa8_\\u0a9c\\u0ac1\\u0ab2\\u0abe._\\u0a91\\u0a97._\\u0ab8\\u0aaa\\u0acd\\u0a9f\\u0ac7._\\u0a91\\u0a95\\u0acd\\u0a9f\\u0acd._\\u0aa8\\u0ab5\\u0ac7._\\u0aa1\\u0abf\\u0ab8\\u0ac7.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0ab0\\u0ab5\\u0abf\\u0ab5\\u0abe\\u0ab0_\\u0ab8\\u0acb\\u0aae\\u0ab5\\u0abe\\u0ab0_\\u0aae\\u0a82\\u0a97\\u0ab3\\u0ab5\\u0abe\\u0ab0_\\u0aac\\u0ac1\\u0aa7\\u0acd\\u0ab5\\u0abe\\u0ab0_\\u0a97\\u0ac1\\u0ab0\\u0ac1\\u0ab5\\u0abe\\u0ab0_\\u0ab6\\u0ac1\\u0a95\\u0acd\\u0ab0\\u0ab5\\u0abe\\u0ab0_\\u0ab6\\u0aa8\\u0abf\\u0ab5\\u0abe\\u0ab0\".split(\"_\"),weekdaysShort:\"\\u0ab0\\u0ab5\\u0abf_\\u0ab8\\u0acb\\u0aae_\\u0aae\\u0a82\\u0a97\\u0ab3_\\u0aac\\u0ac1\\u0aa7\\u0acd_\\u0a97\\u0ac1\\u0ab0\\u0ac1_\\u0ab6\\u0ac1\\u0a95\\u0acd\\u0ab0_\\u0ab6\\u0aa8\\u0abf\".split(\"_\"),weekdaysMin:\"\\u0ab0_\\u0ab8\\u0acb_\\u0aae\\u0a82_\\u0aac\\u0ac1_\\u0a97\\u0ac1_\\u0ab6\\u0ac1_\\u0ab6\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",LTS:\"A h:mm:ss \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\"},calendar:{sameDay:\"[\\u0a86\\u0a9c] LT\",nextDay:\"[\\u0a95\\u0abe\\u0ab2\\u0ac7] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0a97\\u0a87\\u0a95\\u0abe\\u0ab2\\u0ac7] LT\",lastWeek:\"[\\u0aaa\\u0abe\\u0a9b\\u0ab2\\u0abe] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0aae\\u0abe\",past:\"%s \\u0aaa\\u0ac7\\u0ab9\\u0ab2\\u0abe\",s:\"\\u0a85\\u0aae\\u0ac1\\u0a95 \\u0aaa\\u0ab3\\u0acb\",ss:\"%d \\u0ab8\\u0ac7\\u0a95\\u0a82\\u0aa1\",m:\"\\u0a8f\\u0a95 \\u0aae\\u0abf\\u0aa8\\u0abf\\u0a9f\",mm:\"%d \\u0aae\\u0abf\\u0aa8\\u0abf\\u0a9f\",h:\"\\u0a8f\\u0a95 \\u0a95\\u0ab2\\u0abe\\u0a95\",hh:\"%d \\u0a95\\u0ab2\\u0abe\\u0a95\",d:\"\\u0a8f\\u0a95 \\u0aa6\\u0abf\\u0ab5\\u0ab8\",dd:\"%d \\u0aa6\\u0abf\\u0ab5\\u0ab8\",M:\"\\u0a8f\\u0a95 \\u0aae\\u0ab9\\u0abf\\u0aa8\\u0acb\",MM:\"%d \\u0aae\\u0ab9\\u0abf\\u0aa8\\u0acb\",y:\"\\u0a8f\\u0a95 \\u0ab5\\u0ab0\\u0acd\\u0ab7\",yy:\"%d \\u0ab5\\u0ab0\\u0acd\\u0ab7\"},preparse:function(e){return e.replace(/[\\u0ae7\\u0ae8\\u0ae9\\u0aea\\u0aeb\\u0aec\\u0aed\\u0aee\\u0aef\\u0ae6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0ab0\\u0abe\\u0aa4|\\u0aac\\u0aaa\\u0acb\\u0ab0|\\u0ab8\\u0ab5\\u0abe\\u0ab0|\\u0ab8\\u0abe\\u0a82\\u0a9c/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0ab0\\u0abe\\u0aa4\"===t?e<4?e:e+12:\"\\u0ab8\\u0ab5\\u0abe\\u0ab0\"===t?e:\"\\u0aac\\u0aaa\\u0acb\\u0ab0\"===t?e>=10?e:e+12:\"\\u0ab8\\u0abe\\u0a82\\u0a9c\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0ab0\\u0abe\\u0aa4\":e<10?\"\\u0ab8\\u0ab5\\u0abe\\u0ab0\":e<17?\"\\u0aac\\u0aaa\\u0acb\\u0ab0\":e<20?\"\\u0ab8\\u0abe\\u0a82\\u0a9c\":\"\\u0ab0\\u0abe\\u0aa4\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"4dOw\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ie\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"6+QB\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"6B0Y\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u17e1\",2:\"\\u17e2\",3:\"\\u17e3\",4:\"\\u17e4\",5:\"\\u17e5\",6:\"\\u17e6\",7:\"\\u17e7\",8:\"\\u17e8\",9:\"\\u17e9\",0:\"\\u17e0\"},n={\"\\u17e1\":\"1\",\"\\u17e2\":\"2\",\"\\u17e3\":\"3\",\"\\u17e4\":\"4\",\"\\u17e5\":\"5\",\"\\u17e6\":\"6\",\"\\u17e7\":\"7\",\"\\u17e8\":\"8\",\"\\u17e9\":\"9\",\"\\u17e0\":\"0\"};e.defineLocale(\"km\",{months:\"\\u1798\\u1780\\u179a\\u17b6_\\u1780\\u17bb\\u1798\\u17d2\\u1797\\u17c8_\\u1798\\u17b8\\u1793\\u17b6_\\u1798\\u17c1\\u179f\\u17b6_\\u17a7\\u179f\\u1797\\u17b6_\\u1798\\u17b7\\u1790\\u17bb\\u1793\\u17b6_\\u1780\\u1780\\u17d2\\u1780\\u178a\\u17b6_\\u179f\\u17b8\\u17a0\\u17b6_\\u1780\\u1789\\u17d2\\u1789\\u17b6_\\u178f\\u17bb\\u179b\\u17b6_\\u179c\\u17b7\\u1785\\u17d2\\u1786\\u17b7\\u1780\\u17b6_\\u1792\\u17d2\\u1793\\u17bc\".split(\"_\"),monthsShort:\"\\u1798\\u1780\\u179a\\u17b6_\\u1780\\u17bb\\u1798\\u17d2\\u1797\\u17c8_\\u1798\\u17b8\\u1793\\u17b6_\\u1798\\u17c1\\u179f\\u17b6_\\u17a7\\u179f\\u1797\\u17b6_\\u1798\\u17b7\\u1790\\u17bb\\u1793\\u17b6_\\u1780\\u1780\\u17d2\\u1780\\u178a\\u17b6_\\u179f\\u17b8\\u17a0\\u17b6_\\u1780\\u1789\\u17d2\\u1789\\u17b6_\\u178f\\u17bb\\u179b\\u17b6_\\u179c\\u17b7\\u1785\\u17d2\\u1786\\u17b7\\u1780\\u17b6_\\u1792\\u17d2\\u1793\\u17bc\".split(\"_\"),weekdays:\"\\u17a2\\u17b6\\u1791\\u17b7\\u178f\\u17d2\\u1799_\\u1785\\u17d0\\u1793\\u17d2\\u1791_\\u17a2\\u1784\\u17d2\\u1782\\u17b6\\u179a_\\u1796\\u17bb\\u1792_\\u1796\\u17d2\\u179a\\u17a0\\u179f\\u17d2\\u1794\\u178f\\u17b7\\u17cd_\\u179f\\u17bb\\u1780\\u17d2\\u179a_\\u179f\\u17c5\\u179a\\u17cd\".split(\"_\"),weekdaysShort:\"\\u17a2\\u17b6_\\u1785_\\u17a2_\\u1796_\\u1796\\u17d2\\u179a_\\u179f\\u17bb_\\u179f\".split(\"_\"),weekdaysMin:\"\\u17a2\\u17b6_\\u1785_\\u17a2_\\u1796_\\u1796\\u17d2\\u179a_\\u179f\\u17bb_\\u179f\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u1796\\u17d2\\u179a\\u17b9\\u1780|\\u179b\\u17d2\\u1784\\u17b6\\u1785/,isPM:function(e){return\"\\u179b\\u17d2\\u1784\\u17b6\\u1785\"===e},meridiem:function(e,t,n){return e<12?\"\\u1796\\u17d2\\u179a\\u17b9\\u1780\":\"\\u179b\\u17d2\\u1784\\u17b6\\u1785\"},calendar:{sameDay:\"[\\u1790\\u17d2\\u1784\\u17c3\\u1793\\u17c1\\u17c7 \\u1798\\u17c9\\u17c4\\u1784] LT\",nextDay:\"[\\u179f\\u17d2\\u17a2\\u17c2\\u1780 \\u1798\\u17c9\\u17c4\\u1784] LT\",nextWeek:\"dddd [\\u1798\\u17c9\\u17c4\\u1784] LT\",lastDay:\"[\\u1798\\u17d2\\u179f\\u17b7\\u179b\\u1798\\u17b7\\u1789 \\u1798\\u17c9\\u17c4\\u1784] LT\",lastWeek:\"dddd [\\u179f\\u1794\\u17d2\\u178f\\u17b6\\u17a0\\u17cd\\u1798\\u17bb\\u1793] [\\u1798\\u17c9\\u17c4\\u1784] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u1791\\u17c0\\u178f\",past:\"%s\\u1798\\u17bb\\u1793\",s:\"\\u1794\\u17c9\\u17bb\\u1793\\u17d2\\u1798\\u17b6\\u1793\\u179c\\u17b7\\u1793\\u17b6\\u1791\\u17b8\",ss:\"%d \\u179c\\u17b7\\u1793\\u17b6\\u1791\\u17b8\",m:\"\\u1798\\u17bd\\u1799\\u1793\\u17b6\\u1791\\u17b8\",mm:\"%d \\u1793\\u17b6\\u1791\\u17b8\",h:\"\\u1798\\u17bd\\u1799\\u1798\\u17c9\\u17c4\\u1784\",hh:\"%d \\u1798\\u17c9\\u17c4\\u1784\",d:\"\\u1798\\u17bd\\u1799\\u1790\\u17d2\\u1784\\u17c3\",dd:\"%d \\u1790\\u17d2\\u1784\\u17c3\",M:\"\\u1798\\u17bd\\u1799\\u1781\\u17c2\",MM:\"%d \\u1781\\u17c2\",y:\"\\u1798\\u17bd\\u1799\\u1786\\u17d2\\u1793\\u17b6\\u17c6\",yy:\"%d \\u1786\\u17d2\\u1793\\u17b6\\u17c6\"},dayOfMonthOrdinalParse:/\\u1791\\u17b8\\d{1,2}/,ordinal:\"\\u1791\\u17b8%d\",preparse:function(e){return e.replace(/[\\u17e1\\u17e2\\u17e3\\u17e4\\u17e5\\u17e6\\u17e7\\u17e8\\u17e9\\u17e0]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"7BjC\":function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={s:[\"m\\xf5ne sekundi\",\"m\\xf5ni sekund\",\"paar sekundit\"],ss:[e+\"sekundi\",e+\"sekundit\"],m:[\"\\xfche minuti\",\"\\xfcks minut\"],mm:[e+\" minuti\",e+\" minutit\"],h:[\"\\xfche tunni\",\"tund aega\",\"\\xfcks tund\"],hh:[e+\" tunni\",e+\" tundi\"],d:[\"\\xfche p\\xe4eva\",\"\\xfcks p\\xe4ev\"],M:[\"kuu aja\",\"kuu aega\",\"\\xfcks kuu\"],MM:[e+\" kuu\",e+\" kuud\"],y:[\"\\xfche aasta\",\"aasta\",\"\\xfcks aasta\"],yy:[e+\" aasta\",e+\" aastat\"]};return t?i[n][2]?i[n][2]:i[n][1]:r?i[n][0]:i[n][1]}e.defineLocale(\"et\",{months:\"jaanuar_veebruar_m\\xe4rts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember\".split(\"_\"),monthsShort:\"jaan_veebr_m\\xe4rts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets\".split(\"_\"),weekdays:\"p\\xfchap\\xe4ev_esmasp\\xe4ev_teisip\\xe4ev_kolmap\\xe4ev_neljap\\xe4ev_reede_laup\\xe4ev\".split(\"_\"),weekdaysShort:\"P_E_T_K_N_R_L\".split(\"_\"),weekdaysMin:\"P_E_T_K_N_R_L\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[T\\xe4na,] LT\",nextDay:\"[Homme,] LT\",nextWeek:\"[J\\xe4rgmine] dddd LT\",lastDay:\"[Eile,] LT\",lastWeek:\"[Eelmine] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s p\\xe4rast\",past:\"%s tagasi\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:\"%d p\\xe4eva\",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"7aV9\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"si\",{months:\"\\u0da2\\u0db1\\u0dc0\\u0dcf\\u0dbb\\u0dd2_\\u0db4\\u0dd9\\u0db6\\u0dbb\\u0dc0\\u0dcf\\u0dbb\\u0dd2_\\u0db8\\u0dcf\\u0dbb\\u0dca\\u0dad\\u0dd4_\\u0d85\\u0db4\\u0dca\\u200d\\u0dbb\\u0dda\\u0dbd\\u0dca_\\u0db8\\u0dd0\\u0dba\\u0dd2_\\u0da2\\u0dd6\\u0db1\\u0dd2_\\u0da2\\u0dd6\\u0dbd\\u0dd2_\\u0d85\\u0d9c\\u0ddd\\u0dc3\\u0dca\\u0dad\\u0dd4_\\u0dc3\\u0dd0\\u0db4\\u0dca\\u0dad\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca_\\u0d94\\u0d9a\\u0dca\\u0dad\\u0ddd\\u0db6\\u0dbb\\u0dca_\\u0db1\\u0ddc\\u0dc0\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca_\\u0daf\\u0dd9\\u0dc3\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca\".split(\"_\"),monthsShort:\"\\u0da2\\u0db1_\\u0db4\\u0dd9\\u0db6_\\u0db8\\u0dcf\\u0dbb\\u0dca_\\u0d85\\u0db4\\u0dca_\\u0db8\\u0dd0\\u0dba\\u0dd2_\\u0da2\\u0dd6\\u0db1\\u0dd2_\\u0da2\\u0dd6\\u0dbd\\u0dd2_\\u0d85\\u0d9c\\u0ddd_\\u0dc3\\u0dd0\\u0db4\\u0dca_\\u0d94\\u0d9a\\u0dca_\\u0db1\\u0ddc\\u0dc0\\u0dd0_\\u0daf\\u0dd9\\u0dc3\\u0dd0\".split(\"_\"),weekdays:\"\\u0d89\\u0dbb\\u0dd2\\u0daf\\u0dcf_\\u0dc3\\u0db3\\u0dd4\\u0daf\\u0dcf_\\u0d85\\u0d9f\\u0dc4\\u0dbb\\u0dd4\\u0dc0\\u0dcf\\u0daf\\u0dcf_\\u0db6\\u0daf\\u0dcf\\u0daf\\u0dcf_\\u0db6\\u0dca\\u200d\\u0dbb\\u0dc4\\u0dc3\\u0dca\\u0db4\\u0dad\\u0dd2\\u0db1\\u0dca\\u0daf\\u0dcf_\\u0dc3\\u0dd2\\u0d9a\\u0dd4\\u0dbb\\u0dcf\\u0daf\\u0dcf_\\u0dc3\\u0dd9\\u0db1\\u0dc3\\u0dd4\\u0dbb\\u0dcf\\u0daf\\u0dcf\".split(\"_\"),weekdaysShort:\"\\u0d89\\u0dbb\\u0dd2_\\u0dc3\\u0db3\\u0dd4_\\u0d85\\u0d9f_\\u0db6\\u0daf\\u0dcf_\\u0db6\\u0dca\\u200d\\u0dbb\\u0dc4_\\u0dc3\\u0dd2\\u0d9a\\u0dd4_\\u0dc3\\u0dd9\\u0db1\".split(\"_\"),weekdaysMin:\"\\u0d89_\\u0dc3_\\u0d85_\\u0db6_\\u0db6\\u0dca\\u200d\\u0dbb_\\u0dc3\\u0dd2_\\u0dc3\\u0dd9\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"a h:mm\",LTS:\"a h:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY MMMM D\",LLL:\"YYYY MMMM D, a h:mm\",LLLL:\"YYYY MMMM D [\\u0dc0\\u0dd0\\u0db1\\u0dd2] dddd, a h:mm:ss\"},calendar:{sameDay:\"[\\u0d85\\u0daf] LT[\\u0da7]\",nextDay:\"[\\u0dc4\\u0dd9\\u0da7] LT[\\u0da7]\",nextWeek:\"dddd LT[\\u0da7]\",lastDay:\"[\\u0d8a\\u0dba\\u0dda] LT[\\u0da7]\",lastWeek:\"[\\u0db4\\u0dc3\\u0dd4\\u0d9c\\u0dd2\\u0dba] dddd LT[\\u0da7]\",sameElse:\"L\"},relativeTime:{future:\"%s\\u0d9a\\u0dd2\\u0db1\\u0dca\",past:\"%s\\u0d9a\\u0da7 \\u0db4\\u0dd9\\u0dbb\",s:\"\\u0dad\\u0dad\\u0dca\\u0db4\\u0dbb \\u0d9a\\u0dd2\\u0dc4\\u0dd2\\u0db4\\u0dba\",ss:\"\\u0dad\\u0dad\\u0dca\\u0db4\\u0dbb %d\",m:\"\\u0db8\\u0dd2\\u0db1\\u0dd2\\u0dad\\u0dca\\u0dad\\u0dd4\\u0dc0\",mm:\"\\u0db8\\u0dd2\\u0db1\\u0dd2\\u0dad\\u0dca\\u0dad\\u0dd4 %d\",h:\"\\u0db4\\u0dd0\\u0dba\",hh:\"\\u0db4\\u0dd0\\u0dba %d\",d:\"\\u0daf\\u0dd2\\u0db1\\u0dba\",dd:\"\\u0daf\\u0dd2\\u0db1 %d\",M:\"\\u0db8\\u0dcf\\u0dc3\\u0dba\",MM:\"\\u0db8\\u0dcf\\u0dc3 %d\",y:\"\\u0dc0\\u0dc3\\u0dbb\",yy:\"\\u0dc0\\u0dc3\\u0dbb %d\"},dayOfMonthOrdinalParse:/\\d{1,2} \\u0dc0\\u0dd0\\u0db1\\u0dd2/,ordinal:function(e){return e+\" \\u0dc0\\u0dd0\\u0db1\\u0dd2\"},meridiemParse:/\\u0db4\\u0dd9\\u0dbb \\u0dc0\\u0dbb\\u0dd4|\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4|\\u0db4\\u0dd9.\\u0dc0|\\u0db4.\\u0dc0./,isPM:function(e){return\"\\u0db4.\\u0dc0.\"===e||\"\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4\"===e},meridiem:function(e,t,n){return e>11?n?\"\\u0db4.\\u0dc0.\":\"\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4\":n?\"\\u0db4\\u0dd9.\\u0dc0.\":\"\\u0db4\\u0dd9\\u0dbb \\u0dc0\\u0dbb\\u0dd4\"}})}(n(\"wd/R\"))},\"8/+R\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0a67\",2:\"\\u0a68\",3:\"\\u0a69\",4:\"\\u0a6a\",5:\"\\u0a6b\",6:\"\\u0a6c\",7:\"\\u0a6d\",8:\"\\u0a6e\",9:\"\\u0a6f\",0:\"\\u0a66\"},n={\"\\u0a67\":\"1\",\"\\u0a68\":\"2\",\"\\u0a69\":\"3\",\"\\u0a6a\":\"4\",\"\\u0a6b\":\"5\",\"\\u0a6c\":\"6\",\"\\u0a6d\":\"7\",\"\\u0a6e\":\"8\",\"\\u0a6f\":\"9\",\"\\u0a66\":\"0\"};e.defineLocale(\"pa-in\",{months:\"\\u0a1c\\u0a28\\u0a35\\u0a30\\u0a40_\\u0a2b\\u0a3c\\u0a30\\u0a35\\u0a30\\u0a40_\\u0a2e\\u0a3e\\u0a30\\u0a1a_\\u0a05\\u0a2a\\u0a4d\\u0a30\\u0a48\\u0a32_\\u0a2e\\u0a08_\\u0a1c\\u0a42\\u0a28_\\u0a1c\\u0a41\\u0a32\\u0a3e\\u0a08_\\u0a05\\u0a17\\u0a38\\u0a24_\\u0a38\\u0a24\\u0a70\\u0a2c\\u0a30_\\u0a05\\u0a15\\u0a24\\u0a42\\u0a2c\\u0a30_\\u0a28\\u0a35\\u0a70\\u0a2c\\u0a30_\\u0a26\\u0a38\\u0a70\\u0a2c\\u0a30\".split(\"_\"),monthsShort:\"\\u0a1c\\u0a28\\u0a35\\u0a30\\u0a40_\\u0a2b\\u0a3c\\u0a30\\u0a35\\u0a30\\u0a40_\\u0a2e\\u0a3e\\u0a30\\u0a1a_\\u0a05\\u0a2a\\u0a4d\\u0a30\\u0a48\\u0a32_\\u0a2e\\u0a08_\\u0a1c\\u0a42\\u0a28_\\u0a1c\\u0a41\\u0a32\\u0a3e\\u0a08_\\u0a05\\u0a17\\u0a38\\u0a24_\\u0a38\\u0a24\\u0a70\\u0a2c\\u0a30_\\u0a05\\u0a15\\u0a24\\u0a42\\u0a2c\\u0a30_\\u0a28\\u0a35\\u0a70\\u0a2c\\u0a30_\\u0a26\\u0a38\\u0a70\\u0a2c\\u0a30\".split(\"_\"),weekdays:\"\\u0a10\\u0a24\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a4b\\u0a2e\\u0a35\\u0a3e\\u0a30_\\u0a2e\\u0a70\\u0a17\\u0a32\\u0a35\\u0a3e\\u0a30_\\u0a2c\\u0a41\\u0a27\\u0a35\\u0a3e\\u0a30_\\u0a35\\u0a40\\u0a30\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a71\\u0a15\\u0a30\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\\u0a1a\\u0a30\\u0a35\\u0a3e\\u0a30\".split(\"_\"),weekdaysShort:\"\\u0a10\\u0a24_\\u0a38\\u0a4b\\u0a2e_\\u0a2e\\u0a70\\u0a17\\u0a32_\\u0a2c\\u0a41\\u0a27_\\u0a35\\u0a40\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a15\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\".split(\"_\"),weekdaysMin:\"\\u0a10\\u0a24_\\u0a38\\u0a4b\\u0a2e_\\u0a2e\\u0a70\\u0a17\\u0a32_\\u0a2c\\u0a41\\u0a27_\\u0a35\\u0a40\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a15\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0a35\\u0a1c\\u0a47\",LTS:\"A h:mm:ss \\u0a35\\u0a1c\\u0a47\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0a35\\u0a1c\\u0a47\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0a35\\u0a1c\\u0a47\"},calendar:{sameDay:\"[\\u0a05\\u0a1c] LT\",nextDay:\"[\\u0a15\\u0a32] LT\",nextWeek:\"[\\u0a05\\u0a17\\u0a32\\u0a3e] dddd, LT\",lastDay:\"[\\u0a15\\u0a32] LT\",lastWeek:\"[\\u0a2a\\u0a3f\\u0a1b\\u0a32\\u0a47] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0a35\\u0a3f\\u0a71\\u0a1a\",past:\"%s \\u0a2a\\u0a3f\\u0a1b\\u0a32\\u0a47\",s:\"\\u0a15\\u0a41\\u0a1d \\u0a38\\u0a15\\u0a3f\\u0a70\\u0a1f\",ss:\"%d \\u0a38\\u0a15\\u0a3f\\u0a70\\u0a1f\",m:\"\\u0a07\\u0a15 \\u0a2e\\u0a3f\\u0a70\\u0a1f\",mm:\"%d \\u0a2e\\u0a3f\\u0a70\\u0a1f\",h:\"\\u0a07\\u0a71\\u0a15 \\u0a18\\u0a70\\u0a1f\\u0a3e\",hh:\"%d \\u0a18\\u0a70\\u0a1f\\u0a47\",d:\"\\u0a07\\u0a71\\u0a15 \\u0a26\\u0a3f\\u0a28\",dd:\"%d \\u0a26\\u0a3f\\u0a28\",M:\"\\u0a07\\u0a71\\u0a15 \\u0a2e\\u0a39\\u0a40\\u0a28\\u0a3e\",MM:\"%d \\u0a2e\\u0a39\\u0a40\\u0a28\\u0a47\",y:\"\\u0a07\\u0a71\\u0a15 \\u0a38\\u0a3e\\u0a32\",yy:\"%d \\u0a38\\u0a3e\\u0a32\"},preparse:function(e){return e.replace(/[\\u0a67\\u0a68\\u0a69\\u0a6a\\u0a6b\\u0a6c\\u0a6d\\u0a6e\\u0a6f\\u0a66]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0a30\\u0a3e\\u0a24|\\u0a38\\u0a35\\u0a47\\u0a30|\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30|\\u0a38\\u0a3c\\u0a3e\\u0a2e/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0a30\\u0a3e\\u0a24\"===t?e<4?e:e+12:\"\\u0a38\\u0a35\\u0a47\\u0a30\"===t?e:\"\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30\"===t?e>=10?e:e+12:\"\\u0a38\\u0a3c\\u0a3e\\u0a2e\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0a30\\u0a3e\\u0a24\":e<10?\"\\u0a38\\u0a35\\u0a47\\u0a30\":e<17?\"\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30\":e<20?\"\\u0a38\\u0a3c\\u0a3e\\u0a2e\":\"\\u0a30\\u0a3e\\u0a24\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"8mBD\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt\",{months:\"Janeiro_Fevereiro_Mar\\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingo_Segunda-feira_Ter\\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\\xe1bado\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ter_Qua_Qui_Sex_S\\xe1b\".split(\"_\"),weekdaysMin:\"Do_2\\xaa_3\\xaa_4\\xaa_5\\xaa_6\\xaa_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY HH:mm\"},calendar:{sameDay:\"[Hoje \\xe0s] LT\",nextDay:\"[Amanh\\xe3 \\xe0s] LT\",nextWeek:\"dddd [\\xe0s] LT\",lastDay:\"[Ontem \\xe0s] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[\\xdaltimo] dddd [\\xe0s] LT\":\"[\\xdaltima] dddd [\\xe0s] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"h\\xe1 %s\",s:\"segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",M:\"um m\\xeas\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"9rRi\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"gd\",{months:[\"Am Faoilleach\",\"An Gearran\",\"Am M\\xe0rt\",\"An Giblean\",\"An C\\xe8itean\",\"An t-\\xd2gmhios\",\"An t-Iuchar\",\"An L\\xf9nastal\",\"An t-Sultain\",\"An D\\xe0mhair\",\"An t-Samhain\",\"An D\\xf9bhlachd\"],monthsShort:[\"Faoi\",\"Gear\",\"M\\xe0rt\",\"Gibl\",\"C\\xe8it\",\"\\xd2gmh\",\"Iuch\",\"L\\xf9n\",\"Sult\",\"D\\xe0mh\",\"Samh\",\"D\\xf9bh\"],monthsParseExact:!0,weekdays:[\"Did\\xf2mhnaich\",\"Diluain\",\"Dim\\xe0irt\",\"Diciadain\",\"Diardaoin\",\"Dihaoine\",\"Disathairne\"],weekdaysShort:[\"Did\",\"Dil\",\"Dim\",\"Dic\",\"Dia\",\"Dih\",\"Dis\"],weekdaysMin:[\"D\\xf2\",\"Lu\",\"M\\xe0\",\"Ci\",\"Ar\",\"Ha\",\"Sa\"],longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[An-diugh aig] LT\",nextDay:\"[A-m\\xe0ireach aig] LT\",nextWeek:\"dddd [aig] LT\",lastDay:\"[An-d\\xe8 aig] LT\",lastWeek:\"dddd [seo chaidh] [aig] LT\",sameElse:\"L\"},relativeTime:{future:\"ann an %s\",past:\"bho chionn %s\",s:\"beagan diogan\",ss:\"%d diogan\",m:\"mionaid\",mm:\"%d mionaidean\",h:\"uair\",hh:\"%d uairean\",d:\"latha\",dd:\"%d latha\",M:\"m\\xecos\",MM:\"%d m\\xecosan\",y:\"bliadhna\",yy:\"%d bliadhna\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"A+xa\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cv\",{months:\"\\u043a\\u04d1\\u0440\\u043b\\u0430\\u0447_\\u043d\\u0430\\u0440\\u04d1\\u0441_\\u043f\\u0443\\u0448_\\u0430\\u043a\\u0430_\\u043c\\u0430\\u0439_\\u04ab\\u04d7\\u0440\\u0442\\u043c\\u0435_\\u0443\\u0442\\u04d1_\\u04ab\\u0443\\u0440\\u043b\\u0430_\\u0430\\u0432\\u04d1\\u043d_\\u044e\\u043f\\u0430_\\u0447\\u04f3\\u043a_\\u0440\\u0430\\u0448\\u0442\\u0430\\u0432\".split(\"_\"),monthsShort:\"\\u043a\\u04d1\\u0440_\\u043d\\u0430\\u0440_\\u043f\\u0443\\u0448_\\u0430\\u043a\\u0430_\\u043c\\u0430\\u0439_\\u04ab\\u04d7\\u0440_\\u0443\\u0442\\u04d1_\\u04ab\\u0443\\u0440_\\u0430\\u0432\\u043d_\\u044e\\u043f\\u0430_\\u0447\\u04f3\\u043a_\\u0440\\u0430\\u0448\".split(\"_\"),weekdays:\"\\u0432\\u044b\\u0440\\u0441\\u0430\\u0440\\u043d\\u0438\\u043a\\u0443\\u043d_\\u0442\\u0443\\u043d\\u0442\\u0438\\u043a\\u0443\\u043d_\\u044b\\u0442\\u043b\\u0430\\u0440\\u0438\\u043a\\u0443\\u043d_\\u044e\\u043d\\u043a\\u0443\\u043d_\\u043a\\u04d7\\u04ab\\u043d\\u0435\\u0440\\u043d\\u0438\\u043a\\u0443\\u043d_\\u044d\\u0440\\u043d\\u0435\\u043a\\u0443\\u043d_\\u0448\\u04d1\\u043c\\u0430\\u0442\\u043a\\u0443\\u043d\".split(\"_\"),weekdaysShort:\"\\u0432\\u044b\\u0440_\\u0442\\u0443\\u043d_\\u044b\\u0442\\u043b_\\u044e\\u043d_\\u043a\\u04d7\\u04ab_\\u044d\\u0440\\u043d_\\u0448\\u04d1\\u043c\".split(\"_\"),weekdaysMin:\"\\u0432\\u0440_\\u0442\\u043d_\\u044b\\u0442_\\u044e\\u043d_\\u043a\\u04ab_\\u044d\\u0440_\\u0448\\u043c\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7]\",LLL:\"YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7], HH:mm\",LLLL:\"dddd, YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7], HH:mm\"},calendar:{sameDay:\"[\\u041f\\u0430\\u044f\\u043d] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",nextDay:\"[\\u042b\\u0440\\u0430\\u043d] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",lastDay:\"[\\u04d6\\u043d\\u0435\\u0440] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",nextWeek:\"[\\u04aa\\u0438\\u0442\\u0435\\u0441] dddd LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",lastWeek:\"[\\u0418\\u0440\\u0442\\u043d\\u04d7] dddd LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",sameElse:\"L\"},relativeTime:{future:function(e){return e+(/\\u0441\\u0435\\u0445\\u0435\\u0442$/i.exec(e)?\"\\u0440\\u0435\\u043d\":/\\u04ab\\u0443\\u043b$/i.exec(e)?\"\\u0442\\u0430\\u043d\":\"\\u0440\\u0430\\u043d\")},past:\"%s \\u043a\\u0430\\u044f\\u043b\\u043b\\u0430\",s:\"\\u043f\\u04d7\\u0440-\\u0438\\u043a \\u04ab\\u0435\\u043a\\u043a\\u0443\\u043d\\u0442\",ss:\"%d \\u04ab\\u0435\\u043a\\u043a\\u0443\\u043d\\u0442\",m:\"\\u043f\\u04d7\\u0440 \\u043c\\u0438\\u043d\\u0443\\u0442\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\",h:\"\\u043f\\u04d7\\u0440 \\u0441\\u0435\\u0445\\u0435\\u0442\",hh:\"%d \\u0441\\u0435\\u0445\\u0435\\u0442\",d:\"\\u043f\\u04d7\\u0440 \\u043a\\u0443\\u043d\",dd:\"%d \\u043a\\u0443\\u043d\",M:\"\\u043f\\u04d7\\u0440 \\u0443\\u0439\\u04d1\\u0445\",MM:\"%d \\u0443\\u0439\\u04d1\\u0445\",y:\"\\u043f\\u04d7\\u0440 \\u04ab\\u0443\\u043b\",yy:\"%d \\u04ab\\u0443\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-\\u043c\\u04d7\\u0448/,ordinal:\"%d-\\u043c\\u04d7\\u0448\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},AQ68:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz-latn\",{months:\"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr\".split(\"_\"),monthsShort:\"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek\".split(\"_\"),weekdays:\"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba\".split(\"_\"),weekdaysShort:\"Yak_Dush_Sesh_Chor_Pay_Jum_Shan\".split(\"_\"),weekdaysMin:\"Ya_Du_Se_Cho_Pa_Ju_Sha\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[Bugun soat] LT [da]\",nextDay:\"[Ertaga] LT [da]\",nextWeek:\"dddd [kuni soat] LT [da]\",lastDay:\"[Kecha soat] LT [da]\",lastWeek:\"[O'tgan] dddd [kuni soat] LT [da]\",sameElse:\"L\"},relativeTime:{future:\"Yaqin %s ichida\",past:\"Bir necha %s oldin\",s:\"soniya\",ss:\"%d soniya\",m:\"bir daqiqa\",mm:\"%d daqiqa\",h:\"bir soat\",hh:\"%d soat\",d:\"bir kun\",dd:\"%d kun\",M:\"bir oy\",MM:\"%d oy\",y:\"bir yil\",yy:\"%d yil\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},AvvY:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ml\",{months:\"\\u0d1c\\u0d28\\u0d41\\u0d35\\u0d30\\u0d3f_\\u0d2b\\u0d46\\u0d2c\\u0d4d\\u0d30\\u0d41\\u0d35\\u0d30\\u0d3f_\\u0d2e\\u0d3e\\u0d7c\\u0d1a\\u0d4d\\u0d1a\\u0d4d_\\u0d0f\\u0d2a\\u0d4d\\u0d30\\u0d3f\\u0d7d_\\u0d2e\\u0d47\\u0d2f\\u0d4d_\\u0d1c\\u0d42\\u0d7a_\\u0d1c\\u0d42\\u0d32\\u0d48_\\u0d13\\u0d17\\u0d38\\u0d4d\\u0d31\\u0d4d\\u0d31\\u0d4d_\\u0d38\\u0d46\\u0d2a\\u0d4d\\u0d31\\u0d4d\\u0d31\\u0d02\\u0d2c\\u0d7c_\\u0d12\\u0d15\\u0d4d\\u0d1f\\u0d4b\\u0d2c\\u0d7c_\\u0d28\\u0d35\\u0d02\\u0d2c\\u0d7c_\\u0d21\\u0d3f\\u0d38\\u0d02\\u0d2c\\u0d7c\".split(\"_\"),monthsShort:\"\\u0d1c\\u0d28\\u0d41._\\u0d2b\\u0d46\\u0d2c\\u0d4d\\u0d30\\u0d41._\\u0d2e\\u0d3e\\u0d7c._\\u0d0f\\u0d2a\\u0d4d\\u0d30\\u0d3f._\\u0d2e\\u0d47\\u0d2f\\u0d4d_\\u0d1c\\u0d42\\u0d7a_\\u0d1c\\u0d42\\u0d32\\u0d48._\\u0d13\\u0d17._\\u0d38\\u0d46\\u0d2a\\u0d4d\\u0d31\\u0d4d\\u0d31._\\u0d12\\u0d15\\u0d4d\\u0d1f\\u0d4b._\\u0d28\\u0d35\\u0d02._\\u0d21\\u0d3f\\u0d38\\u0d02.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0d1e\\u0d3e\\u0d2f\\u0d31\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d24\\u0d3f\\u0d19\\u0d4d\\u0d15\\u0d33\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d1a\\u0d4a\\u0d35\\u0d4d\\u0d35\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d2c\\u0d41\\u0d27\\u0d28\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d35\\u0d4d\\u0d2f\\u0d3e\\u0d34\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d35\\u0d46\\u0d33\\u0d4d\\u0d33\\u0d3f\\u0d2f\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d36\\u0d28\\u0d3f\\u0d2f\\u0d3e\\u0d34\\u0d4d\\u0d1a\".split(\"_\"),weekdaysShort:\"\\u0d1e\\u0d3e\\u0d2f\\u0d7c_\\u0d24\\u0d3f\\u0d19\\u0d4d\\u0d15\\u0d7e_\\u0d1a\\u0d4a\\u0d35\\u0d4d\\u0d35_\\u0d2c\\u0d41\\u0d27\\u0d7b_\\u0d35\\u0d4d\\u0d2f\\u0d3e\\u0d34\\u0d02_\\u0d35\\u0d46\\u0d33\\u0d4d\\u0d33\\u0d3f_\\u0d36\\u0d28\\u0d3f\".split(\"_\"),weekdaysMin:\"\\u0d1e\\u0d3e_\\u0d24\\u0d3f_\\u0d1a\\u0d4a_\\u0d2c\\u0d41_\\u0d35\\u0d4d\\u0d2f\\u0d3e_\\u0d35\\u0d46_\\u0d36\".split(\"_\"),longDateFormat:{LT:\"A h:mm -\\u0d28\\u0d41\",LTS:\"A h:mm:ss -\\u0d28\\u0d41\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm -\\u0d28\\u0d41\",LLLL:\"dddd, D MMMM YYYY, A h:mm -\\u0d28\\u0d41\"},calendar:{sameDay:\"[\\u0d07\\u0d28\\u0d4d\\u0d28\\u0d4d] LT\",nextDay:\"[\\u0d28\\u0d3e\\u0d33\\u0d46] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0d07\\u0d28\\u0d4d\\u0d28\\u0d32\\u0d46] LT\",lastWeek:\"[\\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\",past:\"%s \\u0d2e\\u0d41\\u0d7b\\u0d2a\\u0d4d\",s:\"\\u0d05\\u0d7d\\u0d2a \\u0d28\\u0d3f\\u0d2e\\u0d3f\\u0d37\\u0d19\\u0d4d\\u0d19\\u0d7e\",ss:\"%d \\u0d38\\u0d46\\u0d15\\u0d4d\\u0d15\\u0d7b\\u0d21\\u0d4d\",m:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d3f\\u0d28\\u0d3f\\u0d31\\u0d4d\\u0d31\\u0d4d\",mm:\"%d \\u0d2e\\u0d3f\\u0d28\\u0d3f\\u0d31\\u0d4d\\u0d31\\u0d4d\",h:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d23\\u0d3f\\u0d15\\u0d4d\\u0d15\\u0d42\\u0d7c\",hh:\"%d \\u0d2e\\u0d23\\u0d3f\\u0d15\\u0d4d\\u0d15\\u0d42\\u0d7c\",d:\"\\u0d12\\u0d30\\u0d41 \\u0d26\\u0d3f\\u0d35\\u0d38\\u0d02\",dd:\"%d \\u0d26\\u0d3f\\u0d35\\u0d38\\u0d02\",M:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d3e\\u0d38\\u0d02\",MM:\"%d \\u0d2e\\u0d3e\\u0d38\\u0d02\",y:\"\\u0d12\\u0d30\\u0d41 \\u0d35\\u0d7c\\u0d37\\u0d02\",yy:\"%d \\u0d35\\u0d7c\\u0d37\\u0d02\"},meridiemParse:/\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f|\\u0d30\\u0d3e\\u0d35\\u0d3f\\u0d32\\u0d46|\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d|\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02|\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f/i,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\"===t&&e>=4||\"\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\"===t||\"\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\":e<12?\"\\u0d30\\u0d3e\\u0d35\\u0d3f\\u0d32\\u0d46\":e<17?\"\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\":e<20?\"\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02\":\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\"}})}(n(\"wd/R\"))},B55N:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ja\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u65e5\\u66dc\\u65e5_\\u6708\\u66dc\\u65e5_\\u706b\\u66dc\\u65e5_\\u6c34\\u66dc\\u65e5_\\u6728\\u66dc\\u65e5_\\u91d1\\u66dc\\u65e5_\\u571f\\u66dc\\u65e5\".split(\"_\"),weekdaysShort:\"\\u65e5_\\u6708_\\u706b_\\u6c34_\\u6728_\\u91d1_\\u571f\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u6708_\\u706b_\\u6c34_\\u6728_\\u91d1_\\u571f\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5 dddd HH:mm\",l:\"YYYY/MM/DD\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5(ddd) HH:mm\"},meridiemParse:/\\u5348\\u524d|\\u5348\\u5f8c/i,isPM:function(e){return\"\\u5348\\u5f8c\"===e},meridiem:function(e,t,n){return e<12?\"\\u5348\\u524d\":\"\\u5348\\u5f8c\"},calendar:{sameDay:\"[\\u4eca\\u65e5] LT\",nextDay:\"[\\u660e\\u65e5] LT\",nextWeek:function(e){return e.week()12?e:e+12:\"sanje\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"rati\":e<12?\"sokalli\":e<16?\"donparam\":e<20?\"sanje\":\"rati\"}})}(n(\"wd/R\"))},Dkky:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ch\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Dmvi:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-au\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},DoHr:function(e,t,n){!function(e){\"use strict\";var t={1:\"'inci\",5:\"'inci\",8:\"'inci\",70:\"'inci\",80:\"'inci\",2:\"'nci\",7:\"'nci\",20:\"'nci\",50:\"'nci\",3:\"'\\xfcnc\\xfc\",4:\"'\\xfcnc\\xfc\",100:\"'\\xfcnc\\xfc\",6:\"'nc\\u0131\",9:\"'uncu\",10:\"'uncu\",30:\"'uncu\",60:\"'\\u0131nc\\u0131\",90:\"'\\u0131nc\\u0131\"};e.defineLocale(\"tr\",{months:\"Ocak_\\u015eubat_Mart_Nisan_May\\u0131s_Haziran_Temmuz_A\\u011fustos_Eyl\\xfcl_Ekim_Kas\\u0131m_Aral\\u0131k\".split(\"_\"),monthsShort:\"Oca_\\u015eub_Mar_Nis_May_Haz_Tem_A\\u011fu_Eyl_Eki_Kas_Ara\".split(\"_\"),weekdays:\"Pazar_Pazartesi_Sal\\u0131_\\xc7ar\\u015famba_Per\\u015fembe_Cuma_Cumartesi\".split(\"_\"),weekdaysShort:\"Paz_Pts_Sal_\\xc7ar_Per_Cum_Cts\".split(\"_\"),weekdaysMin:\"Pz_Pt_Sa_\\xc7a_Pe_Cu_Ct\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bug\\xfcn saat] LT\",nextDay:\"[yar\\u0131n saat] LT\",nextWeek:\"[gelecek] dddd [saat] LT\",lastDay:\"[d\\xfcn] LT\",lastWeek:\"[ge\\xe7en] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s \\xf6nce\",s:\"birka\\xe7 saniye\",ss:\"%d saniye\",m:\"bir dakika\",mm:\"%d dakika\",h:\"bir saat\",hh:\"%d saat\",d:\"bir g\\xfcn\",dd:\"%d g\\xfcn\",M:\"bir ay\",MM:\"%d ay\",y:\"bir y\\u0131l\",yy:\"%d y\\u0131l\"},ordinal:function(e,n){switch(n){case\"d\":case\"D\":case\"Do\":case\"DD\":return e;default:if(0===e)return e+\"'\\u0131nc\\u0131\";var r=e%10;return e+(t[r]||t[e%100-r]||t[e>=100?100:null])}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},DxQv:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"da\",{months:\"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"s\\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\\xf8rdag\".split(\"_\"),weekdaysShort:\"s\\xf8n_man_tir_ons_tor_fre_l\\xf8r\".split(\"_\"),weekdaysMin:\"s\\xf8_ma_ti_on_to_fr_l\\xf8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd [d.] D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"p\\xe5 dddd [kl.] LT\",lastDay:\"[i g\\xe5r kl.] LT\",lastWeek:\"[i] dddd[s kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"f\\xe5 sekunder\",ss:\"%d sekunder\",m:\"et minut\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dage\",M:\"en m\\xe5ned\",MM:\"%d m\\xe5neder\",y:\"et \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},Dzi0:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tl-ph\",{months:\"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre\".split(\"_\"),monthsShort:\"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis\".split(\"_\"),weekdays:\"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado\".split(\"_\"),weekdaysShort:\"Lin_Lun_Mar_Miy_Huw_Biy_Sab\".split(\"_\"),weekdaysMin:\"Li_Lu_Ma_Mi_Hu_Bi_Sab\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"MM/D/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY HH:mm\",LLLL:\"dddd, MMMM DD, YYYY HH:mm\"},calendar:{sameDay:\"LT [ngayong araw]\",nextDay:\"[Bukas ng] LT\",nextWeek:\"LT [sa susunod na] dddd\",lastDay:\"LT [kahapon]\",lastWeek:\"LT [noong nakaraang] dddd\",sameElse:\"L\"},relativeTime:{future:\"sa loob ng %s\",past:\"%s ang nakalipas\",s:\"ilang segundo\",ss:\"%d segundo\",m:\"isang minuto\",mm:\"%d minuto\",h:\"isang oras\",hh:\"%d oras\",d:\"isang araw\",dd:\"%d araw\",M:\"isang buwan\",MM:\"%d buwan\",y:\"isang taon\",yy:\"%d taon\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"E+lV\":function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430\",\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0435\",\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\"],m:[\"\\u0458\\u0435\\u0434\\u0430\\u043d \\u043c\\u0438\\u043d\\u0443\\u0442\",\"\\u0458\\u0435\\u0434\\u043d\\u0435 \\u043c\\u0438\\u043d\\u0443\\u0442\\u0435\"],mm:[\"\\u043c\\u0438\\u043d\\u0443\\u0442\",\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0435\",\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\"],h:[\"\\u0458\\u0435\\u0434\\u0430\\u043d \\u0441\\u0430\\u0442\",\"\\u0458\\u0435\\u0434\\u043d\\u043e\\u0433 \\u0441\\u0430\\u0442\\u0430\"],hh:[\"\\u0441\\u0430\\u0442\",\"\\u0441\\u0430\\u0442\\u0430\",\"\\u0441\\u0430\\u0442\\u0438\"],dd:[\"\\u0434\\u0430\\u043d\",\"\\u0434\\u0430\\u043d\\u0430\",\"\\u0434\\u0430\\u043d\\u0430\"],MM:[\"\\u043c\\u0435\\u0441\\u0435\\u0446\",\"\\u043c\\u0435\\u0441\\u0435\\u0446\\u0430\",\"\\u043c\\u0435\\u0441\\u0435\\u0446\\u0438\"],yy:[\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0435\",\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,r){var i=t.words[r];return 1===r.length?n?i[0]:i[1]:e+\" \"+t.correctGrammaticalCase(e,i)}};e.defineLocale(\"sr-cyrl\",{months:\"\\u0458\\u0430\\u043d\\u0443\\u0430\\u0440_\\u0444\\u0435\\u0431\\u0440\\u0443\\u0430\\u0440_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0431\\u0430\\u0440_\\u043e\\u043a\\u0442\\u043e\\u0431\\u0430\\u0440_\\u043d\\u043e\\u0432\\u0435\\u043c\\u0431\\u0430\\u0440_\\u0434\\u0435\\u0446\\u0435\\u043c\\u0431\\u0430\\u0440\".split(\"_\"),monthsShort:\"\\u0458\\u0430\\u043d._\\u0444\\u0435\\u0431._\\u043c\\u0430\\u0440._\\u0430\\u043f\\u0440._\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043f._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u0432._\\u0434\\u0435\\u0446.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u0459\\u0430_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u0459\\u0430\\u043a_\\u0443\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u0430\\u043a_\\u043f\\u0435\\u0442\\u0430\\u043a_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434._\\u043f\\u043e\\u043d._\\u0443\\u0442\\u043e._\\u0441\\u0440\\u0435._\\u0447\\u0435\\u0442._\\u043f\\u0435\\u0442._\\u0441\\u0443\\u0431.\".split(\"_\"),weekdaysMin:\"\\u043d\\u0435_\\u043f\\u043e_\\u0443\\u0442_\\u0441\\u0440_\\u0447\\u0435_\\u043f\\u0435_\\u0441\\u0443\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0434\\u0430\\u043d\\u0430\\u0441 \\u0443] LT\",nextDay:\"[\\u0441\\u0443\\u0442\\u0440\\u0430 \\u0443] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[\\u0443] [\\u043d\\u0435\\u0434\\u0435\\u0459\\u0443] [\\u0443] LT\";case 3:return\"[\\u0443] [\\u0441\\u0440\\u0435\\u0434\\u0443] [\\u0443] LT\";case 6:return\"[\\u0443] [\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443] [\\u0443] LT\";case 1:case 2:case 4:case 5:return\"[\\u0443] dddd [\\u0443] LT\"}},lastDay:\"[\\u0458\\u0443\\u0447\\u0435 \\u0443] LT\",lastWeek:function(){return[\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u043d\\u0435\\u0434\\u0435\\u0459\\u0435] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u0459\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u0443\\u0442\\u043e\\u0440\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u0441\\u0440\\u0435\\u0434\\u0435] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u043f\\u0435\\u0442\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u0441\\u0443\\u0431\\u043e\\u0442\\u0435] [\\u0443] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"\\u0437\\u0430 %s\",past:\"\\u043f\\u0440\\u0435 %s\",s:\"\\u043d\\u0435\\u043a\\u043e\\u043b\\u0438\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"\\u0434\\u0430\\u043d\",dd:t.translate,M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:t.translate,y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},EOgW:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"th\",{months:\"\\u0e21\\u0e01\\u0e23\\u0e32\\u0e04\\u0e21_\\u0e01\\u0e38\\u0e21\\u0e20\\u0e32\\u0e1e\\u0e31\\u0e19\\u0e18\\u0e4c_\\u0e21\\u0e35\\u0e19\\u0e32\\u0e04\\u0e21_\\u0e40\\u0e21\\u0e29\\u0e32\\u0e22\\u0e19_\\u0e1e\\u0e24\\u0e29\\u0e20\\u0e32\\u0e04\\u0e21_\\u0e21\\u0e34\\u0e16\\u0e38\\u0e19\\u0e32\\u0e22\\u0e19_\\u0e01\\u0e23\\u0e01\\u0e0e\\u0e32\\u0e04\\u0e21_\\u0e2a\\u0e34\\u0e07\\u0e2b\\u0e32\\u0e04\\u0e21_\\u0e01\\u0e31\\u0e19\\u0e22\\u0e32\\u0e22\\u0e19_\\u0e15\\u0e38\\u0e25\\u0e32\\u0e04\\u0e21_\\u0e1e\\u0e24\\u0e28\\u0e08\\u0e34\\u0e01\\u0e32\\u0e22\\u0e19_\\u0e18\\u0e31\\u0e19\\u0e27\\u0e32\\u0e04\\u0e21\".split(\"_\"),monthsShort:\"\\u0e21.\\u0e04._\\u0e01.\\u0e1e._\\u0e21\\u0e35.\\u0e04._\\u0e40\\u0e21.\\u0e22._\\u0e1e.\\u0e04._\\u0e21\\u0e34.\\u0e22._\\u0e01.\\u0e04._\\u0e2a.\\u0e04._\\u0e01.\\u0e22._\\u0e15.\\u0e04._\\u0e1e.\\u0e22._\\u0e18.\\u0e04.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0e2d\\u0e32\\u0e17\\u0e34\\u0e15\\u0e22\\u0e4c_\\u0e08\\u0e31\\u0e19\\u0e17\\u0e23\\u0e4c_\\u0e2d\\u0e31\\u0e07\\u0e04\\u0e32\\u0e23_\\u0e1e\\u0e38\\u0e18_\\u0e1e\\u0e24\\u0e2b\\u0e31\\u0e2a\\u0e1a\\u0e14\\u0e35_\\u0e28\\u0e38\\u0e01\\u0e23\\u0e4c_\\u0e40\\u0e2a\\u0e32\\u0e23\\u0e4c\".split(\"_\"),weekdaysShort:\"\\u0e2d\\u0e32\\u0e17\\u0e34\\u0e15\\u0e22\\u0e4c_\\u0e08\\u0e31\\u0e19\\u0e17\\u0e23\\u0e4c_\\u0e2d\\u0e31\\u0e07\\u0e04\\u0e32\\u0e23_\\u0e1e\\u0e38\\u0e18_\\u0e1e\\u0e24\\u0e2b\\u0e31\\u0e2a_\\u0e28\\u0e38\\u0e01\\u0e23\\u0e4c_\\u0e40\\u0e2a\\u0e32\\u0e23\\u0e4c\".split(\"_\"),weekdaysMin:\"\\u0e2d\\u0e32._\\u0e08._\\u0e2d._\\u0e1e._\\u0e1e\\u0e24._\\u0e28._\\u0e2a.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY \\u0e40\\u0e27\\u0e25\\u0e32 H:mm\",LLLL:\"\\u0e27\\u0e31\\u0e19dddd\\u0e17\\u0e35\\u0e48 D MMMM YYYY \\u0e40\\u0e27\\u0e25\\u0e32 H:mm\"},meridiemParse:/\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07|\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07/,isPM:function(e){return\"\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\"===e},meridiem:function(e,t,n){return e<12?\"\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\":\"\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\"},calendar:{sameDay:\"[\\u0e27\\u0e31\\u0e19\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",nextDay:\"[\\u0e1e\\u0e23\\u0e38\\u0e48\\u0e07\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",nextWeek:\"dddd[\\u0e2b\\u0e19\\u0e49\\u0e32 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",lastDay:\"[\\u0e40\\u0e21\\u0e37\\u0e48\\u0e2d\\u0e27\\u0e32\\u0e19\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",lastWeek:\"[\\u0e27\\u0e31\\u0e19]dddd[\\u0e17\\u0e35\\u0e48\\u0e41\\u0e25\\u0e49\\u0e27 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0e2d\\u0e35\\u0e01 %s\",past:\"%s\\u0e17\\u0e35\\u0e48\\u0e41\\u0e25\\u0e49\\u0e27\",s:\"\\u0e44\\u0e21\\u0e48\\u0e01\\u0e35\\u0e48\\u0e27\\u0e34\\u0e19\\u0e32\\u0e17\\u0e35\",ss:\"%d \\u0e27\\u0e34\\u0e19\\u0e32\\u0e17\\u0e35\",m:\"1 \\u0e19\\u0e32\\u0e17\\u0e35\",mm:\"%d \\u0e19\\u0e32\\u0e17\\u0e35\",h:\"1 \\u0e0a\\u0e31\\u0e48\\u0e27\\u0e42\\u0e21\\u0e07\",hh:\"%d \\u0e0a\\u0e31\\u0e48\\u0e27\\u0e42\\u0e21\\u0e07\",d:\"1 \\u0e27\\u0e31\\u0e19\",dd:\"%d \\u0e27\\u0e31\\u0e19\",M:\"1 \\u0e40\\u0e14\\u0e37\\u0e2d\\u0e19\",MM:\"%d \\u0e40\\u0e14\\u0e37\\u0e2d\\u0e19\",y:\"1 \\u0e1b\\u0e35\",yy:\"%d \\u0e1b\\u0e35\"}})}(n(\"wd/R\"))},G0Uy:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mt\",{months:\"Jannar_Frar_Marzu_April_Mejju_\\u0120unju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Di\\u010bembru\".split(\"_\"),monthsShort:\"Jan_Fra_Mar_Apr_Mej_\\u0120un_Lul_Aww_Set_Ott_Nov_Di\\u010b\".split(\"_\"),weekdays:\"Il-\\u0126add_It-Tnejn_It-Tlieta_L-Erbg\\u0127a_Il-\\u0126amis_Il-\\u0120img\\u0127a_Is-Sibt\".split(\"_\"),weekdaysShort:\"\\u0126ad_Tne_Tli_Erb_\\u0126am_\\u0120im_Sib\".split(\"_\"),weekdaysMin:\"\\u0126a_Tn_Tl_Er_\\u0126a_\\u0120i_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Illum fil-]LT\",nextDay:\"[G\\u0127ada fil-]LT\",nextWeek:\"dddd [fil-]LT\",lastDay:\"[Il-biera\\u0127 fil-]LT\",lastWeek:\"dddd [li g\\u0127adda] [fil-]LT\",sameElse:\"L\"},relativeTime:{future:\"f\\u2019 %s\",past:\"%s ilu\",s:\"ftit sekondi\",ss:\"%d sekondi\",m:\"minuta\",mm:\"%d minuti\",h:\"sieg\\u0127a\",hh:\"%d sieg\\u0127at\",d:\"\\u0121urnata\",dd:\"%d \\u0121ranet\",M:\"xahar\",MM:\"%d xhur\",y:\"sena\",yy:\"%d sni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},H8ED:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r,i;return\"m\"===n?t?\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0430\":\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0443\":\"h\"===n?t?\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0430\":\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0443\":e+\" \"+(r=+e,i={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0430_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u044b_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\":\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0443_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u044b_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\",hh:t?\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0430_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u044b_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\":\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0443_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u044b_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\",dd:\"\\u0434\\u0437\\u0435\\u043d\\u044c_\\u0434\\u043d\\u0456_\\u0434\\u0437\\u0451\\u043d\",MM:\"\\u043c\\u0435\\u0441\\u044f\\u0446_\\u043c\\u0435\\u0441\\u044f\\u0446\\u044b_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0430\\u045e\",yy:\"\\u0433\\u043e\\u0434_\\u0433\\u0430\\u0434\\u044b_\\u0433\\u0430\\u0434\\u043e\\u045e\"}[n].split(\"_\"),r%10==1&&r%100!=11?i[0]:r%10>=2&&r%10<=4&&(r%100<10||r%100>=20)?i[1]:i[2])}e.defineLocale(\"be\",{months:{format:\"\\u0441\\u0442\\u0443\\u0434\\u0437\\u0435\\u043d\\u044f_\\u043b\\u044e\\u0442\\u0430\\u0433\\u0430_\\u0441\\u0430\\u043a\\u0430\\u0432\\u0456\\u043a\\u0430_\\u043a\\u0440\\u0430\\u0441\\u0430\\u0432\\u0456\\u043a\\u0430_\\u0442\\u0440\\u0430\\u045e\\u043d\\u044f_\\u0447\\u044d\\u0440\\u0432\\u0435\\u043d\\u044f_\\u043b\\u0456\\u043f\\u0435\\u043d\\u044f_\\u0436\\u043d\\u0456\\u045e\\u043d\\u044f_\\u0432\\u0435\\u0440\\u0430\\u0441\\u043d\\u044f_\\u043a\\u0430\\u0441\\u0442\\u0440\\u044b\\u0447\\u043d\\u0456\\u043a\\u0430_\\u043b\\u0456\\u0441\\u0442\\u0430\\u043f\\u0430\\u0434\\u0430_\\u0441\\u043d\\u0435\\u0436\\u043d\\u044f\".split(\"_\"),standalone:\"\\u0441\\u0442\\u0443\\u0434\\u0437\\u0435\\u043d\\u044c_\\u043b\\u044e\\u0442\\u044b_\\u0441\\u0430\\u043a\\u0430\\u0432\\u0456\\u043a_\\u043a\\u0440\\u0430\\u0441\\u0430\\u0432\\u0456\\u043a_\\u0442\\u0440\\u0430\\u0432\\u0435\\u043d\\u044c_\\u0447\\u044d\\u0440\\u0432\\u0435\\u043d\\u044c_\\u043b\\u0456\\u043f\\u0435\\u043d\\u044c_\\u0436\\u043d\\u0456\\u0432\\u0435\\u043d\\u044c_\\u0432\\u0435\\u0440\\u0430\\u0441\\u0435\\u043d\\u044c_\\u043a\\u0430\\u0441\\u0442\\u0440\\u044b\\u0447\\u043d\\u0456\\u043a_\\u043b\\u0456\\u0441\\u0442\\u0430\\u043f\\u0430\\u0434_\\u0441\\u043d\\u0435\\u0436\\u0430\\u043d\\u044c\".split(\"_\")},monthsShort:\"\\u0441\\u0442\\u0443\\u0434_\\u043b\\u044e\\u0442_\\u0441\\u0430\\u043a_\\u043a\\u0440\\u0430\\u0441_\\u0442\\u0440\\u0430\\u0432_\\u0447\\u044d\\u0440\\u0432_\\u043b\\u0456\\u043f_\\u0436\\u043d\\u0456\\u0432_\\u0432\\u0435\\u0440_\\u043a\\u0430\\u0441\\u0442_\\u043b\\u0456\\u0441\\u0442_\\u0441\\u043d\\u0435\\u0436\".split(\"_\"),weekdays:{format:\"\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u044e_\\u043f\\u0430\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u0430\\u043a_\\u0430\\u045e\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0435\\u0440\\u0430\\u0434\\u0443_\\u0447\\u0430\\u0446\\u0432\\u0435\\u0440_\\u043f\\u044f\\u0442\\u043d\\u0456\\u0446\\u0443_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),standalone:\"\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u044f_\\u043f\\u0430\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u0430\\u043a_\\u0430\\u045e\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0435\\u0440\\u0430\\u0434\\u0430_\\u0447\\u0430\\u0446\\u0432\\u0435\\u0440_\\u043f\\u044f\\u0442\\u043d\\u0456\\u0446\\u0430_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),isFormat:/\\[ ?[\\u0423\\u0443\\u045e] ?(?:\\u043c\\u0456\\u043d\\u0443\\u043b\\u0443\\u044e|\\u043d\\u0430\\u0441\\u0442\\u0443\\u043f\\u043d\\u0443\\u044e)? ?\\] ?dddd/},weekdaysShort:\"\\u043d\\u0434_\\u043f\\u043d_\\u0430\\u0442_\\u0441\\u0440_\\u0447\\u0446_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0430\\u0442_\\u0441\\u0440_\\u0447\\u0446_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0433.\",LLL:\"D MMMM YYYY \\u0433., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0433., HH:mm\"},calendar:{sameDay:\"[\\u0421\\u0451\\u043d\\u043d\\u044f \\u045e] LT\",nextDay:\"[\\u0417\\u0430\\u045e\\u0442\\u0440\\u0430 \\u045e] LT\",lastDay:\"[\\u0423\\u0447\\u043e\\u0440\\u0430 \\u045e] LT\",nextWeek:function(){return\"[\\u0423] dddd [\\u045e] LT\"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return\"[\\u0423 \\u043c\\u0456\\u043d\\u0443\\u043b\\u0443\\u044e] dddd [\\u045e] LT\";case 1:case 2:case 4:return\"[\\u0423 \\u043c\\u0456\\u043d\\u0443\\u043b\\u044b] dddd [\\u045e] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u043f\\u0440\\u0430\\u0437 %s\",past:\"%s \\u0442\\u0430\\u043c\\u0443\",s:\"\\u043d\\u0435\\u043a\\u0430\\u043b\\u044c\\u043a\\u0456 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:t,mm:t,h:t,hh:t,d:\"\\u0434\\u0437\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0435\\u0441\\u044f\\u0446\",MM:t,y:\"\\u0433\\u043e\\u0434\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u044b|\\u0440\\u0430\\u043d\\u0456\\u0446\\u044b|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430/,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u044b\":e<12?\"\\u0440\\u0430\\u043d\\u0456\\u0446\\u044b\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0456|\\u044b|\\u0433\\u0430)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e%10!=2&&e%10!=3||e%100==12||e%100==13?e+\"-\\u044b\":e+\"-\\u0456\";case\"D\":return e+\"-\\u0433\\u0430\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},HP3h:function(e,t,n){!function(e){\"use strict\";var t={1:\"1\",2:\"2\",3:\"3\",4:\"4\",5:\"5\",6:\"6\",7:\"7\",8:\"8\",9:\"9\",0:\"0\"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},r={s:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062b\\u0627\\u0646\\u064a\\u0629\",\"\\u062b\\u0627\\u0646\\u064a\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u0627\\u0646\",\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u064a\\u0646\"],\"%d \\u062b\\u0648\\u0627\\u0646\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\"],m:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062f\\u0642\\u064a\\u0642\\u0629\",\"\\u062f\\u0642\\u064a\\u0642\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u0627\\u0646\",\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u064a\\u0646\"],\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\"],h:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0633\\u0627\\u0639\\u0629\",\"\\u0633\\u0627\\u0639\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u0633\\u0627\\u0639\\u062a\\u0627\\u0646\",\"\\u0633\\u0627\\u0639\\u062a\\u064a\\u0646\"],\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",\"%d \\u0633\\u0627\\u0639\\u0629\",\"%d \\u0633\\u0627\\u0639\\u0629\"],d:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u064a\\u0648\\u0645\",\"\\u064a\\u0648\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u064a\\u0648\\u0645\\u0627\\u0646\",\"\\u064a\\u0648\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u064a\\u0627\\u0645\",\"%d \\u064a\\u0648\\u0645\\u064b\\u0627\",\"%d \\u064a\\u0648\\u0645\"],M:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0634\\u0647\\u0631\",\"\\u0634\\u0647\\u0631 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0634\\u0647\\u0631\\u0627\\u0646\",\"\\u0634\\u0647\\u0631\\u064a\\u0646\"],\"%d \\u0623\\u0634\\u0647\\u0631\",\"%d \\u0634\\u0647\\u0631\\u0627\",\"%d \\u0634\\u0647\\u0631\"],y:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0639\\u0627\\u0645\",\"\\u0639\\u0627\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0639\\u0627\\u0645\\u0627\\u0646\",\"\\u0639\\u0627\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u0639\\u0648\\u0627\\u0645\",\"%d \\u0639\\u0627\\u0645\\u064b\\u0627\",\"%d \\u0639\\u0627\\u0645\"]},i=function(e){return function(t,i,a,o){var s=n(t),l=r[e][n(t)];return 2===s&&(l=l[i?0:1]),l.replace(/%d/i,t)}},a=[\"\\u064a\\u0646\\u0627\\u064a\\u0631\",\"\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631\",\"\\u0645\\u0627\\u0631\\u0633\",\"\\u0623\\u0628\\u0631\\u064a\\u0644\",\"\\u0645\\u0627\\u064a\\u0648\",\"\\u064a\\u0648\\u0646\\u064a\\u0648\",\"\\u064a\\u0648\\u0644\\u064a\\u0648\",\"\\u0623\\u063a\\u0633\\u0637\\u0633\",\"\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631\",\"\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631\",\"\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\"];e.defineLocale(\"ar-ly\",{months:a,monthsShort:a,weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/\\u200fM/\\u200fYYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u064b\\u0627 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0628\\u0639\\u062f %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:i(\"s\"),ss:i(\"s\"),m:i(\"m\"),mm:i(\"m\"),h:i(\"h\"),hh:i(\"h\"),d:i(\"d\"),dd:i(\"d\"),M:i(\"M\"),MM:i(\"M\"),y:i(\"y\"),yy:i(\"y\")},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},IBtZ:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ka\",{months:{standalone:\"\\u10d8\\u10d0\\u10dc\\u10d5\\u10d0\\u10e0\\u10d8_\\u10d7\\u10d4\\u10d1\\u10d4\\u10e0\\u10d5\\u10d0\\u10da\\u10d8_\\u10db\\u10d0\\u10e0\\u10e2\\u10d8_\\u10d0\\u10de\\u10e0\\u10d8\\u10da\\u10d8_\\u10db\\u10d0\\u10d8\\u10e1\\u10d8_\\u10d8\\u10d5\\u10dc\\u10d8\\u10e1\\u10d8_\\u10d8\\u10d5\\u10da\\u10d8\\u10e1\\u10d8_\\u10d0\\u10d2\\u10d5\\u10d8\\u10e1\\u10e2\\u10dd_\\u10e1\\u10d4\\u10e5\\u10e2\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10dd\\u10e5\\u10e2\\u10dd\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10dc\\u10dd\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10d3\\u10d4\\u10d9\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8\".split(\"_\"),format:\"\\u10d8\\u10d0\\u10dc\\u10d5\\u10d0\\u10e0\\u10e1_\\u10d7\\u10d4\\u10d1\\u10d4\\u10e0\\u10d5\\u10d0\\u10da\\u10e1_\\u10db\\u10d0\\u10e0\\u10e2\\u10e1_\\u10d0\\u10de\\u10e0\\u10d8\\u10da\\u10d8\\u10e1_\\u10db\\u10d0\\u10d8\\u10e1\\u10e1_\\u10d8\\u10d5\\u10dc\\u10d8\\u10e1\\u10e1_\\u10d8\\u10d5\\u10da\\u10d8\\u10e1\\u10e1_\\u10d0\\u10d2\\u10d5\\u10d8\\u10e1\\u10e2\\u10e1_\\u10e1\\u10d4\\u10e5\\u10e2\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10dd\\u10e5\\u10e2\\u10dd\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10dc\\u10dd\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10d3\\u10d4\\u10d9\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1\".split(\"_\")},monthsShort:\"\\u10d8\\u10d0\\u10dc_\\u10d7\\u10d4\\u10d1_\\u10db\\u10d0\\u10e0_\\u10d0\\u10de\\u10e0_\\u10db\\u10d0\\u10d8_\\u10d8\\u10d5\\u10dc_\\u10d8\\u10d5\\u10da_\\u10d0\\u10d2\\u10d5_\\u10e1\\u10d4\\u10e5_\\u10dd\\u10e5\\u10e2_\\u10dc\\u10dd\\u10d4_\\u10d3\\u10d4\\u10d9\".split(\"_\"),weekdays:{standalone:\"\\u10d9\\u10d5\\u10d8\\u10e0\\u10d0_\\u10dd\\u10e0\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10e1\\u10d0\\u10db\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10dd\\u10d7\\u10ee\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10ee\\u10e3\\u10d7\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10de\\u10d0\\u10e0\\u10d0\\u10e1\\u10d9\\u10d4\\u10d5\\u10d8_\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8\".split(\"_\"),format:\"\\u10d9\\u10d5\\u10d8\\u10e0\\u10d0\\u10e1_\\u10dd\\u10e0\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10e1\\u10d0\\u10db\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10dd\\u10d7\\u10ee\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10ee\\u10e3\\u10d7\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10de\\u10d0\\u10e0\\u10d0\\u10e1\\u10d9\\u10d4\\u10d5\\u10e1_\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1\".split(\"_\"),isFormat:/(\\u10ec\\u10d8\\u10dc\\u10d0|\\u10e8\\u10d4\\u10db\\u10d3\\u10d4\\u10d2)/},weekdaysShort:\"\\u10d9\\u10d5\\u10d8_\\u10dd\\u10e0\\u10e8_\\u10e1\\u10d0\\u10db_\\u10dd\\u10d7\\u10ee_\\u10ee\\u10e3\\u10d7_\\u10de\\u10d0\\u10e0_\\u10e8\\u10d0\\u10d1\".split(\"_\"),weekdaysMin:\"\\u10d9\\u10d5_\\u10dd\\u10e0_\\u10e1\\u10d0_\\u10dd\\u10d7_\\u10ee\\u10e3_\\u10de\\u10d0_\\u10e8\\u10d0\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[\\u10d3\\u10e6\\u10d4\\u10e1] LT[-\\u10d6\\u10d4]\",nextDay:\"[\\u10ee\\u10d5\\u10d0\\u10da] LT[-\\u10d6\\u10d4]\",lastDay:\"[\\u10d2\\u10e3\\u10e8\\u10d8\\u10dc] LT[-\\u10d6\\u10d4]\",nextWeek:\"[\\u10e8\\u10d4\\u10db\\u10d3\\u10d4\\u10d2] dddd LT[-\\u10d6\\u10d4]\",lastWeek:\"[\\u10ec\\u10d8\\u10dc\\u10d0] dddd LT-\\u10d6\\u10d4\",sameElse:\"L\"},relativeTime:{future:function(e){return/(\\u10ec\\u10d0\\u10db\\u10d8|\\u10ec\\u10e3\\u10d7\\u10d8|\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8|\\u10ec\\u10d4\\u10da\\u10d8)/.test(e)?e.replace(/\\u10d8$/,\"\\u10e8\\u10d8\"):e+\"\\u10e8\\u10d8\"},past:function(e){return/(\\u10ec\\u10d0\\u10db\\u10d8|\\u10ec\\u10e3\\u10d7\\u10d8|\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8|\\u10d3\\u10e6\\u10d4|\\u10d7\\u10d5\\u10d4)/.test(e)?e.replace(/(\\u10d8|\\u10d4)$/,\"\\u10d8\\u10e1 \\u10ec\\u10d8\\u10dc\"):/\\u10ec\\u10d4\\u10da\\u10d8/.test(e)?e.replace(/\\u10ec\\u10d4\\u10da\\u10d8$/,\"\\u10ec\\u10da\\u10d8\\u10e1 \\u10ec\\u10d8\\u10dc\"):void 0},s:\"\\u10e0\\u10d0\\u10db\\u10d3\\u10d4\\u10dc\\u10d8\\u10db\\u10d4 \\u10ec\\u10d0\\u10db\\u10d8\",ss:\"%d \\u10ec\\u10d0\\u10db\\u10d8\",m:\"\\u10ec\\u10e3\\u10d7\\u10d8\",mm:\"%d \\u10ec\\u10e3\\u10d7\\u10d8\",h:\"\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8\",hh:\"%d \\u10e1\\u10d0\\u10d0\\u10d7\\u10d8\",d:\"\\u10d3\\u10e6\\u10d4\",dd:\"%d \\u10d3\\u10e6\\u10d4\",M:\"\\u10d7\\u10d5\\u10d4\",MM:\"%d \\u10d7\\u10d5\\u10d4\",y:\"\\u10ec\\u10d4\\u10da\\u10d8\",yy:\"%d \\u10ec\\u10d4\\u10da\\u10d8\"},dayOfMonthOrdinalParse:/0|1-\\u10da\\u10d8|\\u10db\\u10d4-\\d{1,2}|\\d{1,2}-\\u10d4/,ordinal:function(e){return 0===e?e:1===e?e+\"-\\u10da\\u10d8\":e<20||e<=100&&e%20==0||e%100==0?\"\\u10db\\u10d4-\"+e:e+\"-\\u10d4\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"Ivi+\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ko\",{months:\"1\\uc6d4_2\\uc6d4_3\\uc6d4_4\\uc6d4_5\\uc6d4_6\\uc6d4_7\\uc6d4_8\\uc6d4_9\\uc6d4_10\\uc6d4_11\\uc6d4_12\\uc6d4\".split(\"_\"),monthsShort:\"1\\uc6d4_2\\uc6d4_3\\uc6d4_4\\uc6d4_5\\uc6d4_6\\uc6d4_7\\uc6d4_8\\uc6d4_9\\uc6d4_10\\uc6d4_11\\uc6d4_12\\uc6d4\".split(\"_\"),weekdays:\"\\uc77c\\uc694\\uc77c_\\uc6d4\\uc694\\uc77c_\\ud654\\uc694\\uc77c_\\uc218\\uc694\\uc77c_\\ubaa9\\uc694\\uc77c_\\uae08\\uc694\\uc77c_\\ud1a0\\uc694\\uc77c\".split(\"_\"),weekdaysShort:\"\\uc77c_\\uc6d4_\\ud654_\\uc218_\\ubaa9_\\uae08_\\ud1a0\".split(\"_\"),weekdaysMin:\"\\uc77c_\\uc6d4_\\ud654_\\uc218_\\ubaa9_\\uae08_\\ud1a0\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY\\ub144 MMMM D\\uc77c\",LLL:\"YYYY\\ub144 MMMM D\\uc77c A h:mm\",LLLL:\"YYYY\\ub144 MMMM D\\uc77c dddd A h:mm\",l:\"YYYY.MM.DD.\",ll:\"YYYY\\ub144 MMMM D\\uc77c\",lll:\"YYYY\\ub144 MMMM D\\uc77c A h:mm\",llll:\"YYYY\\ub144 MMMM D\\uc77c dddd A h:mm\"},calendar:{sameDay:\"\\uc624\\ub298 LT\",nextDay:\"\\ub0b4\\uc77c LT\",nextWeek:\"dddd LT\",lastDay:\"\\uc5b4\\uc81c LT\",lastWeek:\"\\uc9c0\\ub09c\\uc8fc dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\ud6c4\",past:\"%s \\uc804\",s:\"\\uba87 \\ucd08\",ss:\"%d\\ucd08\",m:\"1\\ubd84\",mm:\"%d\\ubd84\",h:\"\\ud55c \\uc2dc\\uac04\",hh:\"%d\\uc2dc\\uac04\",d:\"\\ud558\\ub8e8\",dd:\"%d\\uc77c\",M:\"\\ud55c \\ub2ec\",MM:\"%d\\ub2ec\",y:\"\\uc77c \\ub144\",yy:\"%d\\ub144\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\uc77c|\\uc6d4|\\uc8fc)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\uc77c\";case\"M\":return e+\"\\uc6d4\";case\"w\":case\"W\":return e+\"\\uc8fc\";default:return e}},meridiemParse:/\\uc624\\uc804|\\uc624\\ud6c4/,isPM:function(e){return\"\\uc624\\ud6c4\"===e},meridiem:function(e,t,n){return e<12?\"\\uc624\\uc804\":\"\\uc624\\ud6c4\"}})}(n(\"wd/R\"))},\"JCF/\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"},r=[\"\\u06a9\\u0627\\u0646\\u0648\\u0646\\u06cc \\u062f\\u0648\\u0648\\u06d5\\u0645\",\"\\u0634\\u0648\\u0628\\u0627\\u062a\",\"\\u0626\\u0627\\u0632\\u0627\\u0631\",\"\\u0646\\u06cc\\u0633\\u0627\\u0646\",\"\\u0626\\u0627\\u06cc\\u0627\\u0631\",\"\\u062d\\u0648\\u0632\\u06d5\\u06cc\\u0631\\u0627\\u0646\",\"\\u062a\\u06d5\\u0645\\u0645\\u0648\\u0632\",\"\\u0626\\u0627\\u0628\",\"\\u0626\\u06d5\\u06cc\\u0644\\u0648\\u0648\\u0644\",\"\\u062a\\u0634\\u0631\\u06cc\\u0646\\u06cc \\u06cc\\u06d5\\u0643\\u06d5\\u0645\",\"\\u062a\\u0634\\u0631\\u06cc\\u0646\\u06cc \\u062f\\u0648\\u0648\\u06d5\\u0645\",\"\\u0643\\u0627\\u0646\\u0648\\u0646\\u06cc \\u06cc\\u06d5\\u06a9\\u06d5\\u0645\"];e.defineLocale(\"ku\",{months:r,monthsShort:r,weekdays:\"\\u06cc\\u0647\\u200c\\u0643\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u062f\\u0648\\u0648\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0633\\u06ce\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0686\\u0648\\u0627\\u0631\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u067e\\u06ce\\u0646\\u062c\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0647\\u0647\\u200c\\u06cc\\u0646\\u06cc_\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c\".split(\"_\"),weekdaysShort:\"\\u06cc\\u0647\\u200c\\u0643\\u0634\\u0647\\u200c\\u0645_\\u062f\\u0648\\u0648\\u0634\\u0647\\u200c\\u0645_\\u0633\\u06ce\\u0634\\u0647\\u200c\\u0645_\\u0686\\u0648\\u0627\\u0631\\u0634\\u0647\\u200c\\u0645_\\u067e\\u06ce\\u0646\\u062c\\u0634\\u0647\\u200c\\u0645_\\u0647\\u0647\\u200c\\u06cc\\u0646\\u06cc_\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c\".split(\"_\"),weekdaysMin:\"\\u06cc_\\u062f_\\u0633_\\u0686_\\u067e_\\u0647_\\u0634\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c|\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc/,isPM:function(e){return/\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c/.test(e)},meridiem:function(e,t,n){return e<12?\"\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc\":\"\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c\"},calendar:{sameDay:\"[\\u0626\\u0647\\u200c\\u0645\\u0631\\u06c6 \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",nextDay:\"[\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",nextWeek:\"dddd [\\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",lastDay:\"[\\u062f\\u0648\\u06ce\\u0646\\u06ce \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",lastWeek:\"dddd [\\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0644\\u0647\\u200c %s\",past:\"%s\",s:\"\\u0686\\u0647\\u200c\\u0646\\u062f \\u0686\\u0631\\u0643\\u0647\\u200c\\u06cc\\u0647\\u200c\\u0643\",ss:\"\\u0686\\u0631\\u0643\\u0647\\u200c %d\",m:\"\\u06cc\\u0647\\u200c\\u0643 \\u062e\\u0648\\u0644\\u0647\\u200c\\u0643\",mm:\"%d \\u062e\\u0648\\u0644\\u0647\\u200c\\u0643\",h:\"\\u06cc\\u0647\\u200c\\u0643 \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631\",hh:\"%d \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631\",d:\"\\u06cc\\u0647\\u200c\\u0643 \\u0695\\u06c6\\u0698\",dd:\"%d \\u0695\\u06c6\\u0698\",M:\"\\u06cc\\u0647\\u200c\\u0643 \\u0645\\u0627\\u0646\\u06af\",MM:\"%d \\u0645\\u0627\\u0646\\u06af\",y:\"\\u06cc\\u0647\\u200c\\u0643 \\u0633\\u0627\\u06b5\",yy:\"%d \\u0633\\u0627\\u06b5\"},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},JVSJ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r=e+\" \";switch(n){case\"ss\":return r+(1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\");case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return r+(1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\");case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return r+(1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\");case\"dd\":return r+(1===e?\"dan\":\"dana\");case\"MM\":return r+(1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\");case\"yy\":return r+(1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\")}}e.defineLocale(\"bs\",{months:\"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010der u] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:return\"[pro\\u0161lu] dddd [u] LT\";case 6:return\"[pro\\u0161le] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[pro\\u0161li] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},JvlW:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekund\\u0117_sekund\\u017ei\\u0173_sekundes\",m:\"minut\\u0117_minut\\u0117s_minut\\u0119\",mm:\"minut\\u0117s_minu\\u010di\\u0173_minutes\",h:\"valanda_valandos_valand\\u0105\",hh:\"valandos_valand\\u0173_valandas\",d:\"diena_dienos_dien\\u0105\",dd:\"dienos_dien\\u0173_dienas\",M:\"m\\u0117nuo_m\\u0117nesio_m\\u0117nes\\u012f\",MM:\"m\\u0117nesiai_m\\u0117nesi\\u0173_m\\u0117nesius\",y:\"metai_met\\u0173_metus\",yy:\"metai_met\\u0173_metus\"};function n(e,t,n,r){return t?i(n)[0]:r?i(n)[1]:i(n)[2]}function r(e){return e%10==0||e>10&&e<20}function i(e){return t[e].split(\"_\")}function a(e,t,a,o){var s=e+\" \";return 1===e?s+n(0,t,a[0],o):t?s+(r(e)?i(a)[1]:i(a)[0]):o?s+i(a)[1]:s+(r(e)?i(a)[1]:i(a)[2])}e.defineLocale(\"lt\",{months:{format:\"sausio_vasario_kovo_baland\\u017eio_gegu\\u017e\\u0117s_bir\\u017eelio_liepos_rugpj\\u016b\\u010dio_rugs\\u0117jo_spalio_lapkri\\u010dio_gruod\\u017eio\".split(\"_\"),standalone:\"sausis_vasaris_kovas_balandis_gegu\\u017e\\u0117_bir\\u017eelis_liepa_rugpj\\u016btis_rugs\\u0117jis_spalis_lapkritis_gruodis\".split(\"_\"),isFormat:/D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|MMMM?(\\[[^\\[\\]]*\\]|\\s)+D[oD]?/},monthsShort:\"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd\".split(\"_\"),weekdays:{format:\"sekmadien\\u012f_pirmadien\\u012f_antradien\\u012f_tre\\u010diadien\\u012f_ketvirtadien\\u012f_penktadien\\u012f_\\u0161e\\u0161tadien\\u012f\".split(\"_\"),standalone:\"sekmadienis_pirmadienis_antradienis_tre\\u010diadienis_ketvirtadienis_penktadienis_\\u0161e\\u0161tadienis\".split(\"_\"),isFormat:/dddd HH:mm/},weekdaysShort:\"Sek_Pir_Ant_Tre_Ket_Pen_\\u0160e\\u0161\".split(\"_\"),weekdaysMin:\"S_P_A_T_K_Pn_\\u0160\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY [m.] MMMM D [d.]\",LLL:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",LLLL:\"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]\",l:\"YYYY-MM-DD\",ll:\"YYYY [m.] MMMM D [d.]\",lll:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",llll:\"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]\"},calendar:{sameDay:\"[\\u0160iandien] LT\",nextDay:\"[Rytoj] LT\",nextWeek:\"dddd LT\",lastDay:\"[Vakar] LT\",lastWeek:\"[Pra\\u0117jus\\u012f] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"po %s\",past:\"prie\\u0161 %s\",s:function(e,t,n,r){return t?\"kelios sekund\\u0117s\":r?\"keli\\u0173 sekund\\u017ei\\u0173\":\"kelias sekundes\"},ss:a,m:n,mm:a,h:n,hh:a,d:n,dd:a,M:n,MM:a,y:n,yy:a},dayOfMonthOrdinalParse:/\\d{1,2}-oji/,ordinal:function(e){return e+\"-oji\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"K/tc\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"af\",{months:\"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag\".split(\"_\"),weekdaysShort:\"Son_Maa_Din_Woe_Don_Vry_Sat\".split(\"_\"),weekdaysMin:\"So_Ma_Di_Wo_Do_Vr_Sa\".split(\"_\"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"vm\":\"VM\":n?\"nm\":\"NM\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Vandag om] LT\",nextDay:\"[M\\xf4re om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[Gister om] LT\",lastWeek:\"[Laas] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oor %s\",past:\"%s gelede\",s:\"'n paar sekondes\",ss:\"%d sekondes\",m:\"'n minuut\",mm:\"%d minute\",h:\"'n uur\",hh:\"%d ure\",d:\"'n dag\",dd:\"%d dae\",M:\"'n maand\",MM:\"%d maande\",y:\"'n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},KSF8:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"vi\",{months:\"th\\xe1ng 1_th\\xe1ng 2_th\\xe1ng 3_th\\xe1ng 4_th\\xe1ng 5_th\\xe1ng 6_th\\xe1ng 7_th\\xe1ng 8_th\\xe1ng 9_th\\xe1ng 10_th\\xe1ng 11_th\\xe1ng 12\".split(\"_\"),monthsShort:\"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12\".split(\"_\"),monthsParseExact:!0,weekdays:\"ch\\u1ee7 nh\\u1eadt_th\\u1ee9 hai_th\\u1ee9 ba_th\\u1ee9 t\\u01b0_th\\u1ee9 n\\u0103m_th\\u1ee9 s\\xe1u_th\\u1ee9 b\\u1ea3y\".split(\"_\"),weekdaysShort:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysMin:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"sa\":\"SA\":n?\"ch\":\"CH\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [n\\u0103m] YYYY\",LLL:\"D MMMM [n\\u0103m] YYYY HH:mm\",LLLL:\"dddd, D MMMM [n\\u0103m] YYYY HH:mm\",l:\"DD/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[H\\xf4m nay l\\xfac] LT\",nextDay:\"[Ng\\xe0y mai l\\xfac] LT\",nextWeek:\"dddd [tu\\u1ea7n t\\u1edbi l\\xfac] LT\",lastDay:\"[H\\xf4m qua l\\xfac] LT\",lastWeek:\"dddd [tu\\u1ea7n r\\u1ed3i l\\xfac] LT\",sameElse:\"L\"},relativeTime:{future:\"%s t\\u1edbi\",past:\"%s tr\\u01b0\\u1edbc\",s:\"v\\xe0i gi\\xe2y\",ss:\"%d gi\\xe2y\",m:\"m\\u1ed9t ph\\xfat\",mm:\"%d ph\\xfat\",h:\"m\\u1ed9t gi\\u1edd\",hh:\"%d gi\\u1edd\",d:\"m\\u1ed9t ng\\xe0y\",dd:\"%d ng\\xe0y\",M:\"m\\u1ed9t th\\xe1ng\",MM:\"%d th\\xe1ng\",y:\"m\\u1ed9t n\\u0103m\",yy:\"%d n\\u0103m\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(\"wd/R\"))},KTz0:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekund\",\"sekunda\",\"sekundi\"],m:[\"jedan minut\",\"jednog minuta\"],mm:[\"minut\",\"minuta\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mjesec\",\"mjeseca\",\"mjeseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,r){var i=t.words[r];return 1===r.length?n?i[0]:i[1]:e+\" \"+t.correctGrammaticalCase(e,i)}};e.defineLocale(\"me\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sjutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010de u] LT\",lastWeek:function(){return[\"[pro\\u0161le] [nedjelje] [u] LT\",\"[pro\\u0161log] [ponedjeljka] [u] LT\",\"[pro\\u0161log] [utorka] [u] LT\",\"[pro\\u0161le] [srijede] [u] LT\",\"[pro\\u0161log] [\\u010detvrtka] [u] LT\",\"[pro\\u0161log] [petka] [u] LT\",\"[pro\\u0161le] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mjesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},Loxo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440_\\u043d\\u043e\\u044f\\u0431\\u0440_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u042f\\u043a\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0414\\u0443\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0421\\u0435\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0427\\u043e\\u0440\\u0448\\u0430\\u043d\\u0431\\u0430_\\u041f\\u0430\\u0439\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0416\\u0443\\u043c\\u0430_\\u0428\\u0430\\u043d\\u0431\\u0430\".split(\"_\"),weekdaysShort:\"\\u042f\\u043a\\u0448_\\u0414\\u0443\\u0448_\\u0421\\u0435\\u0448_\\u0427\\u043e\\u0440_\\u041f\\u0430\\u0439_\\u0416\\u0443\\u043c_\\u0428\\u0430\\u043d\".split(\"_\"),weekdaysMin:\"\\u042f\\u043a_\\u0414\\u0443_\\u0421\\u0435_\\u0427\\u043e_\\u041f\\u0430_\\u0416\\u0443_\\u0428\\u0430\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[\\u0411\\u0443\\u0433\\u0443\\u043d \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",nextDay:\"[\\u042d\\u0440\\u0442\\u0430\\u0433\\u0430] LT [\\u0434\\u0430]\",nextWeek:\"dddd [\\u043a\\u0443\\u043d\\u0438 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",lastDay:\"[\\u041a\\u0435\\u0447\\u0430 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",lastWeek:\"[\\u0423\\u0442\\u0433\\u0430\\u043d] dddd [\\u043a\\u0443\\u043d\\u0438 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",sameElse:\"L\"},relativeTime:{future:\"\\u042f\\u043a\\u0438\\u043d %s \\u0438\\u0447\\u0438\\u0434\\u0430\",past:\"\\u0411\\u0438\\u0440 \\u043d\\u0435\\u0447\\u0430 %s \\u043e\\u043b\\u0434\\u0438\\u043d\",s:\"\\u0444\\u0443\\u0440\\u0441\\u0430\\u0442\",ss:\"%d \\u0444\\u0443\\u0440\\u0441\\u0430\\u0442\",m:\"\\u0431\\u0438\\u0440 \\u0434\\u0430\\u043a\\u0438\\u043a\\u0430\",mm:\"%d \\u0434\\u0430\\u043a\\u0438\\u043a\\u0430\",h:\"\\u0431\\u0438\\u0440 \\u0441\\u043e\\u0430\\u0442\",hh:\"%d \\u0441\\u043e\\u0430\\u0442\",d:\"\\u0431\\u0438\\u0440 \\u043a\\u0443\\u043d\",dd:\"%d \\u043a\\u0443\\u043d\",M:\"\\u0431\\u0438\\u0440 \\u043e\\u0439\",MM:\"%d \\u043e\\u0439\",y:\"\\u0431\\u0438\\u0440 \\u0439\\u0438\\u043b\",yy:\"%d \\u0439\\u0438\\u043b\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},OIYi:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ca\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"YYYY-MM-DD\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(\"wd/R\"))},Oaa7:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-gb\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Ob0Z:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};function r(e,t,n,r){var i=\"\";if(t)switch(n){case\"s\":i=\"\\u0915\\u093e\\u0939\\u0940 \\u0938\\u0947\\u0915\\u0902\\u0926\";break;case\"ss\":i=\"%d \\u0938\\u0947\\u0915\\u0902\\u0926\";break;case\"m\":i=\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u093f\\u091f\";break;case\"mm\":i=\"%d \\u092e\\u093f\\u0928\\u093f\\u091f\\u0947\";break;case\"h\":i=\"\\u090f\\u0915 \\u0924\\u093e\\u0938\";break;case\"hh\":i=\"%d \\u0924\\u093e\\u0938\";break;case\"d\":i=\"\\u090f\\u0915 \\u0926\\u093f\\u0935\\u0938\";break;case\"dd\":i=\"%d \\u0926\\u093f\\u0935\\u0938\";break;case\"M\":i=\"\\u090f\\u0915 \\u092e\\u0939\\u093f\\u0928\\u093e\";break;case\"MM\":i=\"%d \\u092e\\u0939\\u093f\\u0928\\u0947\";break;case\"y\":i=\"\\u090f\\u0915 \\u0935\\u0930\\u094d\\u0937\";break;case\"yy\":i=\"%d \\u0935\\u0930\\u094d\\u0937\\u0947\"}else switch(n){case\"s\":i=\"\\u0915\\u093e\\u0939\\u0940 \\u0938\\u0947\\u0915\\u0902\\u0926\\u093e\\u0902\";break;case\"ss\":i=\"%d \\u0938\\u0947\\u0915\\u0902\\u0926\\u093e\\u0902\";break;case\"m\":i=\"\\u090f\\u0915\\u093e \\u092e\\u093f\\u0928\\u093f\\u091f\\u093e\";break;case\"mm\":i=\"%d \\u092e\\u093f\\u0928\\u093f\\u091f\\u093e\\u0902\";break;case\"h\":i=\"\\u090f\\u0915\\u093e \\u0924\\u093e\\u0938\\u093e\";break;case\"hh\":i=\"%d \\u0924\\u093e\\u0938\\u093e\\u0902\";break;case\"d\":i=\"\\u090f\\u0915\\u093e \\u0926\\u093f\\u0935\\u0938\\u093e\";break;case\"dd\":i=\"%d \\u0926\\u093f\\u0935\\u0938\\u093e\\u0902\";break;case\"M\":i=\"\\u090f\\u0915\\u093e \\u092e\\u0939\\u093f\\u0928\\u094d\\u092f\\u093e\";break;case\"MM\":i=\"%d \\u092e\\u0939\\u093f\\u0928\\u094d\\u092f\\u093e\\u0902\";break;case\"y\":i=\"\\u090f\\u0915\\u093e \\u0935\\u0930\\u094d\\u0937\\u093e\";break;case\"yy\":i=\"%d \\u0935\\u0930\\u094d\\u0937\\u093e\\u0902\"}return i.replace(/%d/i,e)}e.defineLocale(\"mr\",{months:\"\\u091c\\u093e\\u0928\\u0947\\u0935\\u093e\\u0930\\u0940_\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941\\u0935\\u093e\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u090f\\u092a\\u094d\\u0930\\u093f\\u0932_\\u092e\\u0947_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932\\u0948_\\u0911\\u0917\\u0938\\u094d\\u091f_\\u0938\\u092a\\u094d\\u091f\\u0947\\u0902\\u092c\\u0930_\\u0911\\u0915\\u094d\\u091f\\u094b\\u092c\\u0930_\\u0928\\u094b\\u0935\\u094d\\u0939\\u0947\\u0902\\u092c\\u0930_\\u0921\\u093f\\u0938\\u0947\\u0902\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u093e\\u0928\\u0947._\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941._\\u092e\\u093e\\u0930\\u094d\\u091a._\\u090f\\u092a\\u094d\\u0930\\u093f._\\u092e\\u0947._\\u091c\\u0942\\u0928._\\u091c\\u0941\\u0932\\u0948._\\u0911\\u0917._\\u0938\\u092a\\u094d\\u091f\\u0947\\u0902._\\u0911\\u0915\\u094d\\u091f\\u094b._\\u0928\\u094b\\u0935\\u094d\\u0939\\u0947\\u0902._\\u0921\\u093f\\u0938\\u0947\\u0902.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0930\\u0935\\u093f\\u0935\\u093e\\u0930_\\u0938\\u094b\\u092e\\u0935\\u093e\\u0930_\\u092e\\u0902\\u0917\\u0933\\u0935\\u093e\\u0930_\\u092c\\u0941\\u0927\\u0935\\u093e\\u0930_\\u0917\\u0941\\u0930\\u0942\\u0935\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u0935\\u093e\\u0930_\\u0936\\u0928\\u093f\\u0935\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0930\\u0935\\u093f_\\u0938\\u094b\\u092e_\\u092e\\u0902\\u0917\\u0933_\\u092c\\u0941\\u0927_\\u0917\\u0941\\u0930\\u0942_\\u0936\\u0941\\u0915\\u094d\\u0930_\\u0936\\u0928\\u093f\".split(\"_\"),weekdaysMin:\"\\u0930_\\u0938\\u094b_\\u092e\\u0902_\\u092c\\u0941_\\u0917\\u0941_\\u0936\\u0941_\\u0936\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\",LTS:\"A h:mm:ss \\u0935\\u093e\\u091c\\u0924\\u093e\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u0909\\u0926\\u094d\\u092f\\u093e] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0915\\u093e\\u0932] LT\",lastWeek:\"[\\u092e\\u093e\\u0917\\u0940\\u0932] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u092e\\u0927\\u094d\\u092f\\u0947\",past:\"%s\\u092a\\u0942\\u0930\\u094d\\u0935\\u0940\",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940|\\u0938\\u0915\\u093e\\u0933\\u0940|\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940|\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\"===t?e<4?e:e+12:\"\\u0938\\u0915\\u093e\\u0933\\u0940\"===t?e:\"\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940\"===t?e>=10?e:e+12:\"\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\":e<10?\"\\u0938\\u0915\\u093e\\u0933\\u0940\":e<17?\"\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940\":e<20?\"\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940\":\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},OjkT:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};e.defineLocale(\"ne\",{months:\"\\u091c\\u0928\\u0935\\u0930\\u0940_\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941\\u0935\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u093f\\u0932_\\u092e\\u0908_\\u091c\\u0941\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908_\\u0905\\u0917\\u0937\\u094d\\u091f_\\u0938\\u0947\\u092a\\u094d\\u091f\\u0947\\u092e\\u094d\\u092c\\u0930_\\u0905\\u0915\\u094d\\u091f\\u094b\\u092c\\u0930_\\u0928\\u094b\\u092d\\u0947\\u092e\\u094d\\u092c\\u0930_\\u0921\\u093f\\u0938\\u0947\\u092e\\u094d\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u0928._\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941._\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u093f._\\u092e\\u0908_\\u091c\\u0941\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908._\\u0905\\u0917._\\u0938\\u0947\\u092a\\u094d\\u091f._\\u0905\\u0915\\u094d\\u091f\\u094b._\\u0928\\u094b\\u092d\\u0947._\\u0921\\u093f\\u0938\\u0947.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0906\\u0907\\u0924\\u092c\\u093e\\u0930_\\u0938\\u094b\\u092e\\u092c\\u093e\\u0930_\\u092e\\u0919\\u094d\\u0917\\u0932\\u092c\\u093e\\u0930_\\u092c\\u0941\\u0927\\u092c\\u093e\\u0930_\\u092c\\u093f\\u0939\\u093f\\u092c\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u092c\\u093e\\u0930_\\u0936\\u0928\\u093f\\u092c\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0906\\u0907\\u0924._\\u0938\\u094b\\u092e._\\u092e\\u0919\\u094d\\u0917\\u0932._\\u092c\\u0941\\u0927._\\u092c\\u093f\\u0939\\u093f._\\u0936\\u0941\\u0915\\u094d\\u0930._\\u0936\\u0928\\u093f.\".split(\"_\"),weekdaysMin:\"\\u0906._\\u0938\\u094b._\\u092e\\u0902._\\u092c\\u0941._\\u092c\\u093f._\\u0936\\u0941._\\u0936.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\",LTS:\"A\\u0915\\u094b h:mm:ss \\u092c\\u091c\\u0947\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\",LLLL:\"dddd, D MMMM YYYY, A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\"},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924\\u093f|\\u092c\\u093f\\u0939\\u093e\\u0928|\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b|\\u0938\\u093e\\u0901\\u091d/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\\u093f\"===t?e<4?e:e+12:\"\\u092c\\u093f\\u0939\\u093e\\u0928\"===t?e:\"\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b\"===t?e>=10?e:e+12:\"\\u0938\\u093e\\u0901\\u091d\"===t?e+12:void 0},meridiem:function(e,t,n){return e<3?\"\\u0930\\u093e\\u0924\\u093f\":e<12?\"\\u092c\\u093f\\u0939\\u093e\\u0928\":e<16?\"\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b\":e<20?\"\\u0938\\u093e\\u0901\\u091d\":\"\\u0930\\u093e\\u0924\\u093f\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u092d\\u094b\\u0932\\u093f] LT\",nextWeek:\"[\\u0906\\u0909\\u0901\\u0926\\u094b] dddd[,] LT\",lastDay:\"[\\u0939\\u093f\\u091c\\u094b] LT\",lastWeek:\"[\\u0917\\u090f\\u0915\\u094b] dddd[,] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u092e\\u093e\",past:\"%s \\u0905\\u0917\\u093e\\u0921\\u093f\",s:\"\\u0915\\u0947\\u0939\\u0940 \\u0915\\u094d\\u0937\\u0923\",ss:\"%d \\u0938\\u0947\\u0915\\u0947\\u0923\\u094d\\u0921\",m:\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u0947\\u091f\",mm:\"%d \\u092e\\u093f\\u0928\\u0947\\u091f\",h:\"\\u090f\\u0915 \\u0918\\u0923\\u094d\\u091f\\u093e\",hh:\"%d \\u0918\\u0923\\u094d\\u091f\\u093e\",d:\"\\u090f\\u0915 \\u0926\\u093f\\u0928\",dd:\"%d \\u0926\\u093f\\u0928\",M:\"\\u090f\\u0915 \\u092e\\u0939\\u093f\\u0928\\u093e\",MM:\"%d \\u092e\\u0939\\u093f\\u0928\\u093e\",y:\"\\u090f\\u0915 \\u092c\\u0930\\u094d\\u0937\",yy:\"%d \\u092c\\u0930\\u094d\\u0937\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},Oxv6:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0443\\u043c\",1:\"-\\u0443\\u043c\",2:\"-\\u044e\\u043c\",3:\"-\\u044e\\u043c\",4:\"-\\u0443\\u043c\",5:\"-\\u0443\\u043c\",6:\"-\\u0443\\u043c\",7:\"-\\u0443\\u043c\",8:\"-\\u0443\\u043c\",9:\"-\\u0443\\u043c\",10:\"-\\u0443\\u043c\",12:\"-\\u0443\\u043c\",13:\"-\\u0443\\u043c\",20:\"-\\u0443\\u043c\",30:\"-\\u044e\\u043c\",40:\"-\\u0443\\u043c\",50:\"-\\u0443\\u043c\",60:\"-\\u0443\\u043c\",70:\"-\\u0443\\u043c\",80:\"-\\u0443\\u043c\",90:\"-\\u0443\\u043c\",100:\"-\\u0443\\u043c\"};e.defineLocale(\"tg\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440_\\u043d\\u043e\\u044f\\u0431\\u0440_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u044f\\u043a\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0434\\u0443\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0441\\u0435\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0447\\u043e\\u0440\\u0448\\u0430\\u043d\\u0431\\u0435_\\u043f\\u0430\\u043d\\u04b7\\u0448\\u0430\\u043d\\u0431\\u0435_\\u04b7\\u0443\\u043c\\u044a\\u0430_\\u0448\\u0430\\u043d\\u0431\\u0435\".split(\"_\"),weekdaysShort:\"\\u044f\\u0448\\u0431_\\u0434\\u0448\\u0431_\\u0441\\u0448\\u0431_\\u0447\\u0448\\u0431_\\u043f\\u0448\\u0431_\\u04b7\\u0443\\u043c_\\u0448\\u043d\\u0431\".split(\"_\"),weekdaysMin:\"\\u044f\\u0448_\\u0434\\u0448_\\u0441\\u0448_\\u0447\\u0448_\\u043f\\u0448_\\u04b7\\u043c_\\u0448\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0418\\u043c\\u0440\\u04ef\\u0437 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",nextDay:\"[\\u041f\\u0430\\u0433\\u043e\\u04b3 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",lastDay:\"[\\u0414\\u0438\\u0440\\u04ef\\u0437 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",nextWeek:\"dddd[\\u0438] [\\u04b3\\u0430\\u0444\\u0442\\u0430\\u0438 \\u043e\\u044f\\u043d\\u0434\\u0430 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",lastWeek:\"dddd[\\u0438] [\\u04b3\\u0430\\u0444\\u0442\\u0430\\u0438 \\u0433\\u0443\\u0437\\u0430\\u0448\\u0442\\u0430 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0431\\u0430\\u044a\\u0434\\u0438 %s\",past:\"%s \\u043f\\u0435\\u0448\",s:\"\\u044f\\u043a\\u0447\\u0430\\u043d\\u0434 \\u0441\\u043e\\u043d\\u0438\\u044f\",m:\"\\u044f\\u043a \\u0434\\u0430\\u049b\\u0438\\u049b\\u0430\",mm:\"%d \\u0434\\u0430\\u049b\\u0438\\u049b\\u0430\",h:\"\\u044f\\u043a \\u0441\\u043e\\u0430\\u0442\",hh:\"%d \\u0441\\u043e\\u0430\\u0442\",d:\"\\u044f\\u043a \\u0440\\u04ef\\u0437\",dd:\"%d \\u0440\\u04ef\\u0437\",M:\"\\u044f\\u043a \\u043c\\u043e\\u04b3\",MM:\"%d \\u043c\\u043e\\u04b3\",y:\"\\u044f\\u043a \\u0441\\u043e\\u043b\",yy:\"%d \\u0441\\u043e\\u043b\"},meridiemParse:/\\u0448\\u0430\\u0431|\\u0441\\u0443\\u0431\\u04b3|\\u0440\\u04ef\\u0437|\\u0431\\u0435\\u0433\\u043e\\u04b3/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0448\\u0430\\u0431\"===t?e<4?e:e+12:\"\\u0441\\u0443\\u0431\\u04b3\"===t?e:\"\\u0440\\u04ef\\u0437\"===t?e>=11?e:e+12:\"\\u0431\\u0435\\u0433\\u043e\\u04b3\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0448\\u0430\\u0431\":e<11?\"\\u0441\\u0443\\u0431\\u04b3\":e<16?\"\\u0440\\u04ef\\u0437\":e<19?\"\\u0431\\u0435\\u0433\\u043e\\u04b3\":\"\\u0448\\u0430\\u0431\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0443\\u043c|\\u044e\\u043c)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},PA2r:function(e,t,n){!function(e){\"use strict\";var t=\"leden_\\xfanor_b\\u0159ezen_duben_kv\\u011bten_\\u010derven_\\u010dervenec_srpen_z\\xe1\\u0159\\xed_\\u0159\\xedjen_listopad_prosinec\".split(\"_\"),n=\"led_\\xfano_b\\u0159e_dub_kv\\u011b_\\u010dvn_\\u010dvc_srp_z\\xe1\\u0159_\\u0159\\xedj_lis_pro\".split(\"_\"),r=[/^led/i,/^\\xfano/i,/^b\\u0159e/i,/^dub/i,/^kv\\u011b/i,/^(\\u010dvn|\\u010derven$|\\u010dervna)/i,/^(\\u010dvc|\\u010dervenec|\\u010dervence)/i,/^srp/i,/^z\\xe1\\u0159/i,/^\\u0159\\xedj/i,/^lis/i,/^pro/i],i=/^(leden|\\xfanor|b\\u0159ezen|duben|kv\\u011bten|\\u010dervenec|\\u010dervence|\\u010derven|\\u010dervna|srpen|z\\xe1\\u0159\\xed|\\u0159\\xedjen|listopad|prosinec|led|\\xfano|b\\u0159e|dub|kv\\u011b|\\u010dvn|\\u010dvc|srp|z\\xe1\\u0159|\\u0159\\xedj|lis|pro)/i;function a(e){return e>1&&e<5&&1!=~~(e/10)}function o(e,t,n,r){var i=e+\" \";switch(n){case\"s\":return t||r?\"p\\xe1r sekund\":\"p\\xe1r sekundami\";case\"ss\":return t||r?i+(a(e)?\"sekundy\":\"sekund\"):i+\"sekundami\";case\"m\":return t?\"minuta\":r?\"minutu\":\"minutou\";case\"mm\":return t||r?i+(a(e)?\"minuty\":\"minut\"):i+\"minutami\";case\"h\":return t?\"hodina\":r?\"hodinu\":\"hodinou\";case\"hh\":return t||r?i+(a(e)?\"hodiny\":\"hodin\"):i+\"hodinami\";case\"d\":return t||r?\"den\":\"dnem\";case\"dd\":return t||r?i+(a(e)?\"dny\":\"dn\\xed\"):i+\"dny\";case\"M\":return t||r?\"m\\u011bs\\xedc\":\"m\\u011bs\\xedcem\";case\"MM\":return t||r?i+(a(e)?\"m\\u011bs\\xedce\":\"m\\u011bs\\xedc\\u016f\"):i+\"m\\u011bs\\xedci\";case\"y\":return t||r?\"rok\":\"rokem\";case\"yy\":return t||r?i+(a(e)?\"roky\":\"let\"):i+\"lety\"}}e.defineLocale(\"cs\",{months:t,monthsShort:n,monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(leden|ledna|\\xfanora|\\xfanor|b\\u0159ezen|b\\u0159ezna|duben|dubna|kv\\u011bten|kv\\u011btna|\\u010dervenec|\\u010dervence|\\u010derven|\\u010dervna|srpen|srpna|z\\xe1\\u0159\\xed|\\u0159\\xedjen|\\u0159\\xedjna|listopadu|listopad|prosinec|prosince)/i,monthsShortStrictRegex:/^(led|\\xfano|b\\u0159e|dub|kv\\u011b|\\u010dvn|\\u010dvc|srp|z\\xe1\\u0159|\\u0159\\xedj|lis|pro)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:\"ned\\u011ble_pond\\u011bl\\xed_\\xfater\\xfd_st\\u0159eda_\\u010dtvrtek_p\\xe1tek_sobota\".split(\"_\"),weekdaysShort:\"ne_po_\\xfat_st_\\u010dt_p\\xe1_so\".split(\"_\"),weekdaysMin:\"ne_po_\\xfat_st_\\u010dt_p\\xe1_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\",l:\"D. M. YYYY\"},calendar:{sameDay:\"[dnes v] LT\",nextDay:\"[z\\xedtra v] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v ned\\u011bli v] LT\";case 1:case 2:return\"[v] dddd [v] LT\";case 3:return\"[ve st\\u0159edu v] LT\";case 4:return\"[ve \\u010dtvrtek v] LT\";case 5:return\"[v p\\xe1tek v] LT\";case 6:return\"[v sobotu v] LT\"}},lastDay:\"[v\\u010dera v] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minulou ned\\u011bli v] LT\";case 1:case 2:return\"[minul\\xe9] dddd [v] LT\";case 3:return\"[minulou st\\u0159edu v] LT\";case 4:case 5:return\"[minul\\xfd] dddd [v] LT\";case 6:return\"[minulou sobotu v] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"p\\u0159ed %s\",s:o,ss:o,m:o,mm:o,h:o,hh:o,d:o,dd:o,M:o,MM:o,y:o,yy:o},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},PeUW:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0be7\",2:\"\\u0be8\",3:\"\\u0be9\",4:\"\\u0bea\",5:\"\\u0beb\",6:\"\\u0bec\",7:\"\\u0bed\",8:\"\\u0bee\",9:\"\\u0bef\",0:\"\\u0be6\"},n={\"\\u0be7\":\"1\",\"\\u0be8\":\"2\",\"\\u0be9\":\"3\",\"\\u0bea\":\"4\",\"\\u0beb\":\"5\",\"\\u0bec\":\"6\",\"\\u0bed\":\"7\",\"\\u0bee\":\"8\",\"\\u0bef\":\"9\",\"\\u0be6\":\"0\"};e.defineLocale(\"ta\",{months:\"\\u0b9c\\u0ba9\\u0bb5\\u0bb0\\u0bbf_\\u0baa\\u0bbf\\u0baa\\u0bcd\\u0bb0\\u0bb5\\u0bb0\\u0bbf_\\u0bae\\u0bbe\\u0bb0\\u0bcd\\u0b9a\\u0bcd_\\u0b8f\\u0baa\\u0bcd\\u0bb0\\u0bb2\\u0bcd_\\u0bae\\u0bc7_\\u0b9c\\u0bc2\\u0ba9\\u0bcd_\\u0b9c\\u0bc2\\u0bb2\\u0bc8_\\u0b86\\u0b95\\u0bb8\\u0bcd\\u0b9f\\u0bcd_\\u0b9a\\u0bc6\\u0baa\\u0bcd\\u0b9f\\u0bc6\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b85\\u0b95\\u0bcd\\u0b9f\\u0bc7\\u0bbe\\u0baa\\u0bb0\\u0bcd_\\u0ba8\\u0bb5\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b9f\\u0bbf\\u0b9a\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd\".split(\"_\"),monthsShort:\"\\u0b9c\\u0ba9\\u0bb5\\u0bb0\\u0bbf_\\u0baa\\u0bbf\\u0baa\\u0bcd\\u0bb0\\u0bb5\\u0bb0\\u0bbf_\\u0bae\\u0bbe\\u0bb0\\u0bcd\\u0b9a\\u0bcd_\\u0b8f\\u0baa\\u0bcd\\u0bb0\\u0bb2\\u0bcd_\\u0bae\\u0bc7_\\u0b9c\\u0bc2\\u0ba9\\u0bcd_\\u0b9c\\u0bc2\\u0bb2\\u0bc8_\\u0b86\\u0b95\\u0bb8\\u0bcd\\u0b9f\\u0bcd_\\u0b9a\\u0bc6\\u0baa\\u0bcd\\u0b9f\\u0bc6\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b85\\u0b95\\u0bcd\\u0b9f\\u0bc7\\u0bbe\\u0baa\\u0bb0\\u0bcd_\\u0ba8\\u0bb5\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b9f\\u0bbf\\u0b9a\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd\".split(\"_\"),weekdays:\"\\u0b9e\\u0bbe\\u0baf\\u0bbf\\u0bb1\\u0bcd\\u0bb1\\u0bc1\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0ba4\\u0bbf\\u0b99\\u0bcd\\u0b95\\u0b9f\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0b9a\\u0bc6\\u0bb5\\u0bcd\\u0bb5\\u0bbe\\u0baf\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0baa\\u0bc1\\u0ba4\\u0ba9\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0bb5\\u0bbf\\u0baf\\u0bbe\\u0bb4\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0bb5\\u0bc6\\u0bb3\\u0bcd\\u0bb3\\u0bbf\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0b9a\\u0ba9\\u0bbf\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8\".split(\"_\"),weekdaysShort:\"\\u0b9e\\u0bbe\\u0baf\\u0bbf\\u0bb1\\u0bc1_\\u0ba4\\u0bbf\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd_\\u0b9a\\u0bc6\\u0bb5\\u0bcd\\u0bb5\\u0bbe\\u0baf\\u0bcd_\\u0baa\\u0bc1\\u0ba4\\u0ba9\\u0bcd_\\u0bb5\\u0bbf\\u0baf\\u0bbe\\u0bb4\\u0ba9\\u0bcd_\\u0bb5\\u0bc6\\u0bb3\\u0bcd\\u0bb3\\u0bbf_\\u0b9a\\u0ba9\\u0bbf\".split(\"_\"),weekdaysMin:\"\\u0b9e\\u0bbe_\\u0ba4\\u0bbf_\\u0b9a\\u0bc6_\\u0baa\\u0bc1_\\u0bb5\\u0bbf_\\u0bb5\\u0bc6_\\u0b9a\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, HH:mm\",LLLL:\"dddd, D MMMM YYYY, HH:mm\"},calendar:{sameDay:\"[\\u0b87\\u0ba9\\u0bcd\\u0bb1\\u0bc1] LT\",nextDay:\"[\\u0ba8\\u0bbe\\u0bb3\\u0bc8] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0ba8\\u0bc7\\u0bb1\\u0bcd\\u0bb1\\u0bc1] LT\",lastWeek:\"[\\u0b95\\u0b9f\\u0ba8\\u0bcd\\u0ba4 \\u0bb5\\u0bbe\\u0bb0\\u0bae\\u0bcd] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0b87\\u0bb2\\u0bcd\",past:\"%s \\u0bae\\u0bc1\\u0ba9\\u0bcd\",s:\"\\u0b92\\u0bb0\\u0bc1 \\u0b9a\\u0bbf\\u0bb2 \\u0bb5\\u0bbf\\u0ba8\\u0bbe\\u0b9f\\u0bbf\\u0b95\\u0bb3\\u0bcd\",ss:\"%d \\u0bb5\\u0bbf\\u0ba8\\u0bbe\\u0b9f\\u0bbf\\u0b95\\u0bb3\\u0bcd\",m:\"\\u0b92\\u0bb0\\u0bc1 \\u0ba8\\u0bbf\\u0bae\\u0bbf\\u0b9f\\u0bae\\u0bcd\",mm:\"%d \\u0ba8\\u0bbf\\u0bae\\u0bbf\\u0b9f\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd\",h:\"\\u0b92\\u0bb0\\u0bc1 \\u0bae\\u0ba3\\u0bbf \\u0ba8\\u0bc7\\u0bb0\\u0bae\\u0bcd\",hh:\"%d \\u0bae\\u0ba3\\u0bbf \\u0ba8\\u0bc7\\u0bb0\\u0bae\\u0bcd\",d:\"\\u0b92\\u0bb0\\u0bc1 \\u0ba8\\u0bbe\\u0bb3\\u0bcd\",dd:\"%d \\u0ba8\\u0bbe\\u0b9f\\u0bcd\\u0b95\\u0bb3\\u0bcd\",M:\"\\u0b92\\u0bb0\\u0bc1 \\u0bae\\u0bbe\\u0ba4\\u0bae\\u0bcd\",MM:\"%d \\u0bae\\u0bbe\\u0ba4\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd\",y:\"\\u0b92\\u0bb0\\u0bc1 \\u0bb5\\u0bb0\\u0bc1\\u0b9f\\u0bae\\u0bcd\",yy:\"%d \\u0b86\\u0ba3\\u0bcd\\u0b9f\\u0bc1\\u0b95\\u0bb3\\u0bcd\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u0bb5\\u0ba4\\u0bc1/,ordinal:function(e){return e+\"\\u0bb5\\u0ba4\\u0bc1\"},preparse:function(e){return e.replace(/[\\u0be7\\u0be8\\u0be9\\u0bea\\u0beb\\u0bec\\u0bed\\u0bee\\u0bef\\u0be6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd|\\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8|\\u0b95\\u0bbe\\u0bb2\\u0bc8|\\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd|\\u0b8e\\u0bb1\\u0bcd\\u0baa\\u0bbe\\u0b9f\\u0bc1|\\u0bae\\u0bbe\\u0bb2\\u0bc8/,meridiem:function(e,t,n){return e<2?\" \\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\":e<6?\" \\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8\":e<10?\" \\u0b95\\u0bbe\\u0bb2\\u0bc8\":e<14?\" \\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd\":e<18?\" \\u0b8e\\u0bb1\\u0bcd\\u0baa\\u0bbe\\u0b9f\\u0bc1\":e<22?\" \\u0bae\\u0bbe\\u0bb2\\u0bc8\":\" \\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\"===t?e<2?e:e+12:\"\\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8\"===t||\"\\u0b95\\u0bbe\\u0bb2\\u0bc8\"===t||\"\\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd\"===t&&e>=10?e:e+12},week:{dow:0,doy:6}})}(n(\"wd/R\"))},PpIw:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0ce7\",2:\"\\u0ce8\",3:\"\\u0ce9\",4:\"\\u0cea\",5:\"\\u0ceb\",6:\"\\u0cec\",7:\"\\u0ced\",8:\"\\u0cee\",9:\"\\u0cef\",0:\"\\u0ce6\"},n={\"\\u0ce7\":\"1\",\"\\u0ce8\":\"2\",\"\\u0ce9\":\"3\",\"\\u0cea\":\"4\",\"\\u0ceb\":\"5\",\"\\u0cec\":\"6\",\"\\u0ced\":\"7\",\"\\u0cee\":\"8\",\"\\u0cef\":\"9\",\"\\u0ce6\":\"0\"};e.defineLocale(\"kn\",{months:\"\\u0c9c\\u0ca8\\u0cb5\\u0cb0\\u0cbf_\\u0cab\\u0cc6\\u0cac\\u0ccd\\u0cb0\\u0cb5\\u0cb0\\u0cbf_\\u0cae\\u0cbe\\u0cb0\\u0ccd\\u0c9a\\u0ccd_\\u0c8f\\u0caa\\u0ccd\\u0cb0\\u0cbf\\u0cb2\\u0ccd_\\u0cae\\u0cc6\\u0cd5_\\u0c9c\\u0cc2\\u0ca8\\u0ccd_\\u0c9c\\u0cc1\\u0cb2\\u0cc6\\u0cd6_\\u0c86\\u0c97\\u0cb8\\u0ccd\\u0c9f\\u0ccd_\\u0cb8\\u0cc6\\u0caa\\u0ccd\\u0c9f\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd_\\u0c85\\u0c95\\u0ccd\\u0c9f\\u0cc6\\u0cc2\\u0cd5\\u0cac\\u0cb0\\u0ccd_\\u0ca8\\u0cb5\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd_\\u0ca1\\u0cbf\\u0cb8\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd\".split(\"_\"),monthsShort:\"\\u0c9c\\u0ca8_\\u0cab\\u0cc6\\u0cac\\u0ccd\\u0cb0_\\u0cae\\u0cbe\\u0cb0\\u0ccd\\u0c9a\\u0ccd_\\u0c8f\\u0caa\\u0ccd\\u0cb0\\u0cbf\\u0cb2\\u0ccd_\\u0cae\\u0cc6\\u0cd5_\\u0c9c\\u0cc2\\u0ca8\\u0ccd_\\u0c9c\\u0cc1\\u0cb2\\u0cc6\\u0cd6_\\u0c86\\u0c97\\u0cb8\\u0ccd\\u0c9f\\u0ccd_\\u0cb8\\u0cc6\\u0caa\\u0ccd\\u0c9f\\u0cc6\\u0c82_\\u0c85\\u0c95\\u0ccd\\u0c9f\\u0cc6\\u0cc2\\u0cd5_\\u0ca8\\u0cb5\\u0cc6\\u0c82_\\u0ca1\\u0cbf\\u0cb8\\u0cc6\\u0c82\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0cad\\u0cbe\\u0ca8\\u0cc1\\u0cb5\\u0cbe\\u0cb0_\\u0cb8\\u0cc6\\u0cc2\\u0cd5\\u0cae\\u0cb5\\u0cbe\\u0cb0_\\u0cae\\u0c82\\u0c97\\u0cb3\\u0cb5\\u0cbe\\u0cb0_\\u0cac\\u0cc1\\u0ca7\\u0cb5\\u0cbe\\u0cb0_\\u0c97\\u0cc1\\u0cb0\\u0cc1\\u0cb5\\u0cbe\\u0cb0_\\u0cb6\\u0cc1\\u0c95\\u0ccd\\u0cb0\\u0cb5\\u0cbe\\u0cb0_\\u0cb6\\u0ca8\\u0cbf\\u0cb5\\u0cbe\\u0cb0\".split(\"_\"),weekdaysShort:\"\\u0cad\\u0cbe\\u0ca8\\u0cc1_\\u0cb8\\u0cc6\\u0cc2\\u0cd5\\u0cae_\\u0cae\\u0c82\\u0c97\\u0cb3_\\u0cac\\u0cc1\\u0ca7_\\u0c97\\u0cc1\\u0cb0\\u0cc1_\\u0cb6\\u0cc1\\u0c95\\u0ccd\\u0cb0_\\u0cb6\\u0ca8\\u0cbf\".split(\"_\"),weekdaysMin:\"\\u0cad\\u0cbe_\\u0cb8\\u0cc6\\u0cc2\\u0cd5_\\u0cae\\u0c82_\\u0cac\\u0cc1_\\u0c97\\u0cc1_\\u0cb6\\u0cc1_\\u0cb6\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0c87\\u0c82\\u0ca6\\u0cc1] LT\",nextDay:\"[\\u0ca8\\u0cbe\\u0cb3\\u0cc6] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0ca8\\u0cbf\\u0ca8\\u0ccd\\u0ca8\\u0cc6] LT\",lastWeek:\"[\\u0c95\\u0cc6\\u0cc2\\u0ca8\\u0cc6\\u0caf] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0ca8\\u0c82\\u0ca4\\u0cb0\",past:\"%s \\u0cb9\\u0cbf\\u0c82\\u0ca6\\u0cc6\",s:\"\\u0c95\\u0cc6\\u0cb2\\u0cb5\\u0cc1 \\u0c95\\u0ccd\\u0cb7\\u0ca3\\u0c97\\u0cb3\\u0cc1\",ss:\"%d \\u0cb8\\u0cc6\\u0c95\\u0cc6\\u0c82\\u0ca1\\u0cc1\\u0c97\\u0cb3\\u0cc1\",m:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca8\\u0cbf\\u0cae\\u0cbf\\u0cb7\",mm:\"%d \\u0ca8\\u0cbf\\u0cae\\u0cbf\\u0cb7\",h:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0c97\\u0c82\\u0c9f\\u0cc6\",hh:\"%d \\u0c97\\u0c82\\u0c9f\\u0cc6\",d:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca6\\u0cbf\\u0ca8\",dd:\"%d \\u0ca6\\u0cbf\\u0ca8\",M:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca4\\u0cbf\\u0c82\\u0c97\\u0cb3\\u0cc1\",MM:\"%d \\u0ca4\\u0cbf\\u0c82\\u0c97\\u0cb3\\u0cc1\",y:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0cb5\\u0cb0\\u0ccd\\u0cb7\",yy:\"%d \\u0cb5\\u0cb0\\u0ccd\\u0cb7\"},preparse:function(e){return e.replace(/[\\u0ce7\\u0ce8\\u0ce9\\u0cea\\u0ceb\\u0cec\\u0ced\\u0cee\\u0cef\\u0ce6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf|\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6|\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8|\\u0cb8\\u0c82\\u0c9c\\u0cc6/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\"===t?e<4?e:e+12:\"\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6\"===t?e:\"\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8\"===t?e>=10?e:e+12:\"\\u0cb8\\u0c82\\u0c9c\\u0cc6\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\":e<10?\"\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6\":e<17?\"\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8\":e<20?\"\\u0cb8\\u0c82\\u0c9c\\u0cc6\":\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u0ca8\\u0cc6\\u0cd5)/,ordinal:function(e){return e+\"\\u0ca8\\u0cc6\\u0cd5\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},Qj4J:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-kw\",{months:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648\\u0632_\\u063a\\u0634\\u062a_\\u0634\\u062a\\u0646\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0646\\u0628\\u0631_\\u062f\\u062c\\u0646\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648\\u0632_\\u063a\\u0634\\u062a_\\u0634\\u062a\\u0646\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0646\\u0628\\u0631_\\u062f\\u062c\\u0646\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062a\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0627\\u062d\\u062f_\\u0627\\u062a\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:0,doy:12}})}(n(\"wd/R\"))},RAwQ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={m:[\"eng Minutt\",\"enger Minutt\"],h:[\"eng Stonn\",\"enger Stonn\"],d:[\"een Dag\",\"engem Dag\"],M:[\"ee Mount\",\"engem Mount\"],y:[\"ee Joer\",\"engem Joer\"]};return t?i[n][0]:i[n][1]}function n(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var t=e%10;return n(0===t?e/10:t)}if(e<1e4){for(;e>=10;)e/=10;return n(e)}return n(e/=1e3)}e.defineLocale(\"lb\",{months:\"Januar_Februar_M\\xe4erz_Abr\\xebll_Mee_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonndeg_M\\xe9indeg_D\\xebnschdeg_M\\xebttwoch_Donneschdeg_Freideg_Samschdeg\".split(\"_\"),weekdaysShort:\"So._M\\xe9._D\\xeb._M\\xeb._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_M\\xe9_D\\xeb_M\\xeb_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm [Auer]\",LTS:\"H:mm:ss [Auer]\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm [Auer]\",LLLL:\"dddd, D. MMMM YYYY H:mm [Auer]\"},calendar:{sameDay:\"[Haut um] LT\",sameElse:\"L\",nextDay:\"[Muer um] LT\",nextWeek:\"dddd [um] LT\",lastDay:\"[G\\xebschter um] LT\",lastWeek:function(){switch(this.day()){case 2:case 4:return\"[Leschten] dddd [um] LT\";default:return\"[Leschte] dddd [um] LT\"}}},relativeTime:{future:function(e){return n(e.substr(0,e.indexOf(\" \")))?\"a \"+e:\"an \"+e},past:function(e){return n(e.substr(0,e.indexOf(\" \")))?\"viru \"+e:\"virun \"+e},s:\"e puer Sekonnen\",ss:\"%d Sekonnen\",m:t,mm:\"%d Minutten\",h:t,hh:\"%d Stonnen\",d:t,dd:\"%d Deeg\",M:t,MM:\"%d M\\xe9int\",y:t,yy:\"%d Joer\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},RnhZ:function(e,t,n){var r={\"./af\":\"K/tc\",\"./af.js\":\"K/tc\",\"./ar\":\"jnO4\",\"./ar-dz\":\"o1bE\",\"./ar-dz.js\":\"o1bE\",\"./ar-kw\":\"Qj4J\",\"./ar-kw.js\":\"Qj4J\",\"./ar-ly\":\"HP3h\",\"./ar-ly.js\":\"HP3h\",\"./ar-ma\":\"CoRJ\",\"./ar-ma.js\":\"CoRJ\",\"./ar-sa\":\"gjCT\",\"./ar-sa.js\":\"gjCT\",\"./ar-tn\":\"bYM6\",\"./ar-tn.js\":\"bYM6\",\"./ar.js\":\"jnO4\",\"./az\":\"SFxW\",\"./az.js\":\"SFxW\",\"./be\":\"H8ED\",\"./be.js\":\"H8ED\",\"./bg\":\"hKrs\",\"./bg.js\":\"hKrs\",\"./bm\":\"p/rL\",\"./bm.js\":\"p/rL\",\"./bn\":\"kEOa\",\"./bn.js\":\"kEOa\",\"./bo\":\"0mo+\",\"./bo.js\":\"0mo+\",\"./br\":\"aIdf\",\"./br.js\":\"aIdf\",\"./bs\":\"JVSJ\",\"./bs.js\":\"JVSJ\",\"./ca\":\"1xZ4\",\"./ca.js\":\"1xZ4\",\"./cs\":\"PA2r\",\"./cs.js\":\"PA2r\",\"./cv\":\"A+xa\",\"./cv.js\":\"A+xa\",\"./cy\":\"l5ep\",\"./cy.js\":\"l5ep\",\"./da\":\"DxQv\",\"./da.js\":\"DxQv\",\"./de\":\"tGlX\",\"./de-at\":\"s+uk\",\"./de-at.js\":\"s+uk\",\"./de-ch\":\"u3GI\",\"./de-ch.js\":\"u3GI\",\"./de.js\":\"tGlX\",\"./dv\":\"WYrj\",\"./dv.js\":\"WYrj\",\"./el\":\"jUeY\",\"./el.js\":\"jUeY\",\"./en-SG\":\"zavE\",\"./en-SG.js\":\"zavE\",\"./en-au\":\"Dmvi\",\"./en-au.js\":\"Dmvi\",\"./en-ca\":\"OIYi\",\"./en-ca.js\":\"OIYi\",\"./en-gb\":\"Oaa7\",\"./en-gb.js\":\"Oaa7\",\"./en-ie\":\"4dOw\",\"./en-ie.js\":\"4dOw\",\"./en-il\":\"czMo\",\"./en-il.js\":\"czMo\",\"./en-nz\":\"b1Dy\",\"./en-nz.js\":\"b1Dy\",\"./eo\":\"Zduo\",\"./eo.js\":\"Zduo\",\"./es\":\"iYuL\",\"./es-do\":\"CjzT\",\"./es-do.js\":\"CjzT\",\"./es-us\":\"Vclq\",\"./es-us.js\":\"Vclq\",\"./es.js\":\"iYuL\",\"./et\":\"7BjC\",\"./et.js\":\"7BjC\",\"./eu\":\"D/JM\",\"./eu.js\":\"D/JM\",\"./fa\":\"jfSC\",\"./fa.js\":\"jfSC\",\"./fi\":\"gekB\",\"./fi.js\":\"gekB\",\"./fo\":\"ByF4\",\"./fo.js\":\"ByF4\",\"./fr\":\"nyYc\",\"./fr-ca\":\"2fjn\",\"./fr-ca.js\":\"2fjn\",\"./fr-ch\":\"Dkky\",\"./fr-ch.js\":\"Dkky\",\"./fr.js\":\"nyYc\",\"./fy\":\"cRix\",\"./fy.js\":\"cRix\",\"./ga\":\"USCx\",\"./ga.js\":\"USCx\",\"./gd\":\"9rRi\",\"./gd.js\":\"9rRi\",\"./gl\":\"iEDd\",\"./gl.js\":\"iEDd\",\"./gom-latn\":\"DKr+\",\"./gom-latn.js\":\"DKr+\",\"./gu\":\"4MV3\",\"./gu.js\":\"4MV3\",\"./he\":\"x6pH\",\"./he.js\":\"x6pH\",\"./hi\":\"3E1r\",\"./hi.js\":\"3E1r\",\"./hr\":\"S6ln\",\"./hr.js\":\"S6ln\",\"./hu\":\"WxRl\",\"./hu.js\":\"WxRl\",\"./hy-am\":\"1rYy\",\"./hy-am.js\":\"1rYy\",\"./id\":\"UDhR\",\"./id.js\":\"UDhR\",\"./is\":\"BVg3\",\"./is.js\":\"BVg3\",\"./it\":\"bpih\",\"./it-ch\":\"bxKX\",\"./it-ch.js\":\"bxKX\",\"./it.js\":\"bpih\",\"./ja\":\"B55N\",\"./ja.js\":\"B55N\",\"./jv\":\"tUCv\",\"./jv.js\":\"tUCv\",\"./ka\":\"IBtZ\",\"./ka.js\":\"IBtZ\",\"./kk\":\"bXm7\",\"./kk.js\":\"bXm7\",\"./km\":\"6B0Y\",\"./km.js\":\"6B0Y\",\"./kn\":\"PpIw\",\"./kn.js\":\"PpIw\",\"./ko\":\"Ivi+\",\"./ko.js\":\"Ivi+\",\"./ku\":\"JCF/\",\"./ku.js\":\"JCF/\",\"./ky\":\"lgnt\",\"./ky.js\":\"lgnt\",\"./lb\":\"RAwQ\",\"./lb.js\":\"RAwQ\",\"./lo\":\"sp3z\",\"./lo.js\":\"sp3z\",\"./lt\":\"JvlW\",\"./lt.js\":\"JvlW\",\"./lv\":\"uXwI\",\"./lv.js\":\"uXwI\",\"./me\":\"KTz0\",\"./me.js\":\"KTz0\",\"./mi\":\"aIsn\",\"./mi.js\":\"aIsn\",\"./mk\":\"aQkU\",\"./mk.js\":\"aQkU\",\"./ml\":\"AvvY\",\"./ml.js\":\"AvvY\",\"./mn\":\"lYtQ\",\"./mn.js\":\"lYtQ\",\"./mr\":\"Ob0Z\",\"./mr.js\":\"Ob0Z\",\"./ms\":\"6+QB\",\"./ms-my\":\"ZAMP\",\"./ms-my.js\":\"ZAMP\",\"./ms.js\":\"6+QB\",\"./mt\":\"G0Uy\",\"./mt.js\":\"G0Uy\",\"./my\":\"honF\",\"./my.js\":\"honF\",\"./nb\":\"bOMt\",\"./nb.js\":\"bOMt\",\"./ne\":\"OjkT\",\"./ne.js\":\"OjkT\",\"./nl\":\"+s0g\",\"./nl-be\":\"2ykv\",\"./nl-be.js\":\"2ykv\",\"./nl.js\":\"+s0g\",\"./nn\":\"uEye\",\"./nn.js\":\"uEye\",\"./pa-in\":\"8/+R\",\"./pa-in.js\":\"8/+R\",\"./pl\":\"jVdC\",\"./pl.js\":\"jVdC\",\"./pt\":\"8mBD\",\"./pt-br\":\"0tRk\",\"./pt-br.js\":\"0tRk\",\"./pt.js\":\"8mBD\",\"./ro\":\"lyxo\",\"./ro.js\":\"lyxo\",\"./ru\":\"lXzo\",\"./ru.js\":\"lXzo\",\"./sd\":\"Z4QM\",\"./sd.js\":\"Z4QM\",\"./se\":\"//9w\",\"./se.js\":\"//9w\",\"./si\":\"7aV9\",\"./si.js\":\"7aV9\",\"./sk\":\"e+ae\",\"./sk.js\":\"e+ae\",\"./sl\":\"gVVK\",\"./sl.js\":\"gVVK\",\"./sq\":\"yPMs\",\"./sq.js\":\"yPMs\",\"./sr\":\"zx6S\",\"./sr-cyrl\":\"E+lV\",\"./sr-cyrl.js\":\"E+lV\",\"./sr.js\":\"zx6S\",\"./ss\":\"Ur1D\",\"./ss.js\":\"Ur1D\",\"./sv\":\"X709\",\"./sv.js\":\"X709\",\"./sw\":\"dNwA\",\"./sw.js\":\"dNwA\",\"./ta\":\"PeUW\",\"./ta.js\":\"PeUW\",\"./te\":\"XLvN\",\"./te.js\":\"XLvN\",\"./tet\":\"V2x9\",\"./tet.js\":\"V2x9\",\"./tg\":\"Oxv6\",\"./tg.js\":\"Oxv6\",\"./th\":\"EOgW\",\"./th.js\":\"EOgW\",\"./tl-ph\":\"Dzi0\",\"./tl-ph.js\":\"Dzi0\",\"./tlh\":\"z3Vd\",\"./tlh.js\":\"z3Vd\",\"./tr\":\"DoHr\",\"./tr.js\":\"DoHr\",\"./tzl\":\"z1FC\",\"./tzl.js\":\"z1FC\",\"./tzm\":\"wQk9\",\"./tzm-latn\":\"tT3J\",\"./tzm-latn.js\":\"tT3J\",\"./tzm.js\":\"wQk9\",\"./ug-cn\":\"YRex\",\"./ug-cn.js\":\"YRex\",\"./uk\":\"raLr\",\"./uk.js\":\"raLr\",\"./ur\":\"UpQW\",\"./ur.js\":\"UpQW\",\"./uz\":\"Loxo\",\"./uz-latn\":\"AQ68\",\"./uz-latn.js\":\"AQ68\",\"./uz.js\":\"Loxo\",\"./vi\":\"KSF8\",\"./vi.js\":\"KSF8\",\"./x-pseudo\":\"/X5v\",\"./x-pseudo.js\":\"/X5v\",\"./yo\":\"fzPg\",\"./yo.js\":\"fzPg\",\"./zh-cn\":\"XDpg\",\"./zh-cn.js\":\"XDpg\",\"./zh-hk\":\"SatO\",\"./zh-hk.js\":\"SatO\",\"./zh-tw\":\"kOpN\",\"./zh-tw.js\":\"kOpN\"};function i(e){var t=a(e);return n(t)}function a(e){if(!n.o(r,e)){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}return r[e]}i.keys=function(){return Object.keys(r)},i.resolve=a,e.exports=i,i.id=\"RnhZ\"},S6ln:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r=e+\" \";switch(n){case\"ss\":return r+(1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\");case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return r+(1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\");case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return r+(1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\");case\"dd\":return r+(1===e?\"dan\":\"dana\");case\"MM\":return r+(1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\");case\"yy\":return r+(1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\")}}e.defineLocale(\"hr\",{months:{format:\"sije\\u010dnja_velja\\u010de_o\\u017eujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca\".split(\"_\"),standalone:\"sije\\u010danj_velja\\u010da_o\\u017eujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac\".split(\"_\")},monthsShort:\"sij._velj._o\\u017eu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010der u] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:return\"[pro\\u0161lu] dddd [u] LT\";case 6:return\"[pro\\u0161le] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[pro\\u0161li] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},SFxW:function(e,t,n){!function(e){\"use strict\";var t={1:\"-inci\",5:\"-inci\",8:\"-inci\",70:\"-inci\",80:\"-inci\",2:\"-nci\",7:\"-nci\",20:\"-nci\",50:\"-nci\",3:\"-\\xfcnc\\xfc\",4:\"-\\xfcnc\\xfc\",100:\"-\\xfcnc\\xfc\",6:\"-nc\\u0131\",9:\"-uncu\",10:\"-uncu\",30:\"-uncu\",60:\"-\\u0131nc\\u0131\",90:\"-\\u0131nc\\u0131\"};e.defineLocale(\"az\",{months:\"yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr\".split(\"_\"),monthsShort:\"yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek\".split(\"_\"),weekdays:\"Bazar_Bazar ert\\u0259si_\\xc7\\u0259r\\u015f\\u0259nb\\u0259 ax\\u015fam\\u0131_\\xc7\\u0259r\\u015f\\u0259nb\\u0259_C\\xfcm\\u0259 ax\\u015fam\\u0131_C\\xfcm\\u0259_\\u015e\\u0259nb\\u0259\".split(\"_\"),weekdaysShort:\"Baz_BzE_\\xc7Ax_\\xc7\\u0259r_CAx_C\\xfcm_\\u015e\\u0259n\".split(\"_\"),weekdaysMin:\"Bz_BE_\\xc7A_\\xc7\\u0259_CA_C\\xfc_\\u015e\\u0259\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bug\\xfcn saat] LT\",nextDay:\"[sabah saat] LT\",nextWeek:\"[g\\u0259l\\u0259n h\\u0259ft\\u0259] dddd [saat] LT\",lastDay:\"[d\\xfcn\\u0259n] LT\",lastWeek:\"[ke\\xe7\\u0259n h\\u0259ft\\u0259] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s \\u0259vv\\u0259l\",s:\"birne\\xe7\\u0259 saniy\\u0259\",ss:\"%d saniy\\u0259\",m:\"bir d\\u0259qiq\\u0259\",mm:\"%d d\\u0259qiq\\u0259\",h:\"bir saat\",hh:\"%d saat\",d:\"bir g\\xfcn\",dd:\"%d g\\xfcn\",M:\"bir ay\",MM:\"%d ay\",y:\"bir il\",yy:\"%d il\"},meridiemParse:/gec\\u0259|s\\u0259h\\u0259r|g\\xfcnd\\xfcz|ax\\u015fam/,isPM:function(e){return/^(g\\xfcnd\\xfcz|ax\\u015fam)$/.test(e)},meridiem:function(e,t,n){return e<4?\"gec\\u0259\":e<12?\"s\\u0259h\\u0259r\":e<17?\"g\\xfcnd\\xfcz\":\"ax\\u015fam\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0131nc\\u0131|inci|nci|\\xfcnc\\xfc|nc\\u0131|uncu)/,ordinal:function(e){if(0===e)return e+\"-\\u0131nc\\u0131\";var n=e%10;return e+(t[n]||t[e%100-n]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},SatO:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-hk\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u9031\\u65e5_\\u9031\\u4e00_\\u9031\\u4e8c_\\u9031\\u4e09_\\u9031\\u56db_\\u9031\\u4e94_\\u9031\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e2d\\u5348\"===t?e>=11?e:e+12:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:void 0},meridiem:function(e,t,n){var r=100*e+t;return r<600?\"\\u51cc\\u6668\":r<900?\"\\u65e9\\u4e0a\":r<1130?\"\\u4e0a\\u5348\":r<1230?\"\\u4e2d\\u5348\":r<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929]LT\",nextDay:\"[\\u660e\\u5929]LT\",nextWeek:\"[\\u4e0b]ddddLT\",lastDay:\"[\\u6628\\u5929]LT\",lastWeek:\"[\\u4e0a]ddddLT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u9031)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u9031\";default:return e}},relativeTime:{future:\"%s\\u5167\",past:\"%s\\u524d\",s:\"\\u5e7e\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u9418\",mm:\"%d \\u5206\\u9418\",h:\"1 \\u5c0f\\u6642\",hh:\"%d \\u5c0f\\u6642\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u500b\\u6708\",MM:\"%d \\u500b\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"}})}(n(\"wd/R\"))},UDhR:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"id\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Rab_Kam_Jum_Sab\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"siang\"===t?e>=11?e:e+12:\"sore\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"siang\":e<19?\"sore\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Besok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kemarin pukul] LT\",lastWeek:\"dddd [lalu pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lalu\",s:\"beberapa detik\",ss:\"%d detik\",m:\"semenit\",mm:\"%d menit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},USCx:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ga\",{months:[\"Ean\\xe1ir\",\"Feabhra\",\"M\\xe1rta\",\"Aibre\\xe1n\",\"Bealtaine\",\"M\\xe9itheamh\",\"I\\xfail\",\"L\\xfanasa\",\"Me\\xe1n F\\xf3mhair\",\"Deaireadh F\\xf3mhair\",\"Samhain\",\"Nollaig\"],monthsShort:[\"Ean\\xe1\",\"Feab\",\"M\\xe1rt\",\"Aibr\",\"Beal\",\"M\\xe9it\",\"I\\xfail\",\"L\\xfana\",\"Me\\xe1n\",\"Deai\",\"Samh\",\"Noll\"],monthsParseExact:!0,weekdays:[\"D\\xe9 Domhnaigh\",\"D\\xe9 Luain\",\"D\\xe9 M\\xe1irt\",\"D\\xe9 C\\xe9adaoin\",\"D\\xe9ardaoin\",\"D\\xe9 hAoine\",\"D\\xe9 Satharn\"],weekdaysShort:[\"Dom\",\"Lua\",\"M\\xe1i\",\"C\\xe9a\",\"D\\xe9a\",\"hAo\",\"Sat\"],weekdaysMin:[\"Do\",\"Lu\",\"M\\xe1\",\"Ce\",\"D\\xe9\",\"hA\",\"Sa\"],longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Inniu ag] LT\",nextDay:\"[Am\\xe1rach ag] LT\",nextWeek:\"dddd [ag] LT\",lastDay:\"[Inn\\xe9 aig] LT\",lastWeek:\"dddd [seo caite] [ag] LT\",sameElse:\"L\"},relativeTime:{future:\"i %s\",past:\"%s \\xf3 shin\",s:\"c\\xfapla soicind\",ss:\"%d soicind\",m:\"n\\xf3im\\xe9ad\",mm:\"%d n\\xf3im\\xe9ad\",h:\"uair an chloig\",hh:\"%d uair an chloig\",d:\"l\\xe1\",dd:\"%d l\\xe1\",M:\"m\\xed\",MM:\"%d m\\xed\",y:\"bliain\",yy:\"%d bliain\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},UpQW:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u062c\\u0646\\u0648\\u0631\\u06cc\",\"\\u0641\\u0631\\u0648\\u0631\\u06cc\",\"\\u0645\\u0627\\u0631\\u0686\",\"\\u0627\\u067e\\u0631\\u06cc\\u0644\",\"\\u0645\\u0626\\u06cc\",\"\\u062c\\u0648\\u0646\",\"\\u062c\\u0648\\u0644\\u0627\\u0626\\u06cc\",\"\\u0627\\u06af\\u0633\\u062a\",\"\\u0633\\u062a\\u0645\\u0628\\u0631\",\"\\u0627\\u06a9\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0645\\u0628\\u0631\",\"\\u062f\\u0633\\u0645\\u0628\\u0631\"],n=[\"\\u0627\\u062a\\u0648\\u0627\\u0631\",\"\\u067e\\u06cc\\u0631\",\"\\u0645\\u0646\\u06af\\u0644\",\"\\u0628\\u062f\\u06be\",\"\\u062c\\u0645\\u0639\\u0631\\u0627\\u062a\",\"\\u062c\\u0645\\u0639\\u06c1\",\"\\u06c1\\u0641\\u062a\\u06c1\"];e.defineLocale(\"ur\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd\\u060c D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635\\u0628\\u062d|\\u0634\\u0627\\u0645/,isPM:function(e){return\"\\u0634\\u0627\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\\u0628\\u062d\":\"\\u0634\\u0627\\u0645\"},calendar:{sameDay:\"[\\u0622\\u062c \\u0628\\u0648\\u0642\\u062a] LT\",nextDay:\"[\\u06a9\\u0644 \\u0628\\u0648\\u0642\\u062a] LT\",nextWeek:\"dddd [\\u0628\\u0648\\u0642\\u062a] LT\",lastDay:\"[\\u06af\\u0630\\u0634\\u062a\\u06c1 \\u0631\\u0648\\u0632 \\u0628\\u0648\\u0642\\u062a] LT\",lastWeek:\"[\\u06af\\u0630\\u0634\\u062a\\u06c1] dddd [\\u0628\\u0648\\u0642\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0628\\u0639\\u062f\",past:\"%s \\u0642\\u0628\\u0644\",s:\"\\u0686\\u0646\\u062f \\u0633\\u06cc\\u06a9\\u0646\\u0688\",ss:\"%d \\u0633\\u06cc\\u06a9\\u0646\\u0688\",m:\"\\u0627\\u06cc\\u06a9 \\u0645\\u0646\\u0679\",mm:\"%d \\u0645\\u0646\\u0679\",h:\"\\u0627\\u06cc\\u06a9 \\u06af\\u06be\\u0646\\u0679\\u06c1\",hh:\"%d \\u06af\\u06be\\u0646\\u0679\\u06d2\",d:\"\\u0627\\u06cc\\u06a9 \\u062f\\u0646\",dd:\"%d \\u062f\\u0646\",M:\"\\u0627\\u06cc\\u06a9 \\u0645\\u0627\\u06c1\",MM:\"%d \\u0645\\u0627\\u06c1\",y:\"\\u0627\\u06cc\\u06a9 \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Ur1D:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ss\",{months:\"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni\".split(\"_\"),monthsShort:\"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo\".split(\"_\"),weekdays:\"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo\".split(\"_\"),weekdaysShort:\"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg\".split(\"_\"),weekdaysMin:\"Li_Us_Lb_Lt_Ls_Lh_Ug\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Namuhla nga] LT\",nextDay:\"[Kusasa nga] LT\",nextWeek:\"dddd [nga] LT\",lastDay:\"[Itolo nga] LT\",lastWeek:\"dddd [leliphelile] [nga] LT\",sameElse:\"L\"},relativeTime:{future:\"nga %s\",past:\"wenteka nga %s\",s:\"emizuzwana lomcane\",ss:\"%d mzuzwana\",m:\"umzuzu\",mm:\"%d emizuzu\",h:\"lihora\",hh:\"%d emahora\",d:\"lilanga\",dd:\"%d emalanga\",M:\"inyanga\",MM:\"%d tinyanga\",y:\"umnyaka\",yy:\"%d iminyaka\"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(e,t,n){return e<11?\"ekuseni\":e<15?\"emini\":e<19?\"entsambama\":\"ebusuku\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"ekuseni\"===t?e:\"emini\"===t?e>=11?e:e+12:\"entsambama\"===t||\"ebusuku\"===t?0===e?0:e+12:void 0},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:\"%d\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},V2x9:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tet\",{months:\"Janeiru_Fevereiru_Marsu_Abril_Maiu_Ju\\xf1u_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ters_Kua_Kint_Sest_Sab\".split(\"_\"),weekdaysMin:\"Do_Seg_Te_Ku_Ki_Ses_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Ohin iha] LT\",nextDay:\"[Aban iha] LT\",nextWeek:\"dddd [iha] LT\",lastDay:\"[Horiseik iha] LT\",lastWeek:\"dddd [semana kotuk] [iha] LT\",sameElse:\"L\"},relativeTime:{future:\"iha %s\",past:\"%s liuba\",s:\"minutu balun\",ss:\"minutu %d\",m:\"minutu ida\",mm:\"minutu %d\",h:\"oras ida\",hh:\"oras %d\",d:\"loron ida\",dd:\"loron %d\",M:\"fulan ida\",MM:\"fulan %d\",y:\"tinan ida\",yy:\"tinan %d\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Vclq:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],i=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es-us\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:\"domingo_lunes_martes_mi\\xe9rcoles_jueves_viernes_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mi\\xe9._jue._vie._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"MM/DD/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY h:mm A\",LLLL:\"dddd, D [de] MMMM [de] YYYY h:mm A\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1ana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un a\\xf1o\",yy:\"%d a\\xf1os\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:0,doy:6}})}(n(\"wd/R\"))},WYrj:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u0796\\u07ac\\u0782\\u07aa\\u0787\\u07a6\\u0783\\u07a9\",\"\\u078a\\u07ac\\u0784\\u07b0\\u0783\\u07aa\\u0787\\u07a6\\u0783\\u07a9\",\"\\u0789\\u07a7\\u0783\\u07a8\\u0797\\u07aa\",\"\\u0787\\u07ad\\u0795\\u07b0\\u0783\\u07a9\\u078d\\u07aa\",\"\\u0789\\u07ad\",\"\\u0796\\u07ab\\u0782\\u07b0\",\"\\u0796\\u07aa\\u078d\\u07a6\\u0787\\u07a8\",\"\\u0787\\u07af\\u078e\\u07a6\\u0790\\u07b0\\u0793\\u07aa\",\"\\u0790\\u07ac\\u0795\\u07b0\\u0793\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0787\\u07ae\\u0786\\u07b0\\u0793\\u07af\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0782\\u07ae\\u0788\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0791\\u07a8\\u0790\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\"],n=[\"\\u0787\\u07a7\\u078b\\u07a8\\u0787\\u07b0\\u078c\\u07a6\",\"\\u0780\\u07af\\u0789\\u07a6\",\"\\u0787\\u07a6\\u0782\\u07b0\\u078e\\u07a7\\u0783\\u07a6\",\"\\u0784\\u07aa\\u078b\\u07a6\",\"\\u0784\\u07aa\\u0783\\u07a7\\u0790\\u07b0\\u078a\\u07a6\\u078c\\u07a8\",\"\\u0780\\u07aa\\u0786\\u07aa\\u0783\\u07aa\",\"\\u0780\\u07ae\\u0782\\u07a8\\u0780\\u07a8\\u0783\\u07aa\"];e.defineLocale(\"dv\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:\"\\u0787\\u07a7\\u078b\\u07a8_\\u0780\\u07af\\u0789\\u07a6_\\u0787\\u07a6\\u0782\\u07b0_\\u0784\\u07aa\\u078b\\u07a6_\\u0784\\u07aa\\u0783\\u07a7_\\u0780\\u07aa\\u0786\\u07aa_\\u0780\\u07ae\\u0782\\u07a8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/M/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0789\\u0786|\\u0789\\u078a/,isPM:function(e){return\"\\u0789\\u078a\"===e},meridiem:function(e,t,n){return e<12?\"\\u0789\\u0786\":\"\\u0789\\u078a\"},calendar:{sameDay:\"[\\u0789\\u07a8\\u0787\\u07a6\\u078b\\u07aa] LT\",nextDay:\"[\\u0789\\u07a7\\u078b\\u07a6\\u0789\\u07a7] LT\",nextWeek:\"dddd LT\",lastDay:\"[\\u0787\\u07a8\\u0787\\u07b0\\u0794\\u07ac] LT\",lastWeek:\"[\\u078a\\u07a7\\u0787\\u07a8\\u078c\\u07aa\\u0788\\u07a8] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"\\u078c\\u07ac\\u0783\\u07ad\\u078e\\u07a6\\u0787\\u07a8 %s\",past:\"\\u0786\\u07aa\\u0783\\u07a8\\u0782\\u07b0 %s\",s:\"\\u0790\\u07a8\\u0786\\u07aa\\u0782\\u07b0\\u078c\\u07aa\\u0786\\u07ae\\u0785\\u07ac\\u0787\\u07b0\",ss:\"d% \\u0790\\u07a8\\u0786\\u07aa\\u0782\\u07b0\\u078c\\u07aa\",m:\"\\u0789\\u07a8\\u0782\\u07a8\\u0793\\u07ac\\u0787\\u07b0\",mm:\"\\u0789\\u07a8\\u0782\\u07a8\\u0793\\u07aa %d\",h:\"\\u078e\\u07a6\\u0791\\u07a8\\u0787\\u07a8\\u0783\\u07ac\\u0787\\u07b0\",hh:\"\\u078e\\u07a6\\u0791\\u07a8\\u0787\\u07a8\\u0783\\u07aa %d\",d:\"\\u078b\\u07aa\\u0788\\u07a6\\u0780\\u07ac\\u0787\\u07b0\",dd:\"\\u078b\\u07aa\\u0788\\u07a6\\u0790\\u07b0 %d\",M:\"\\u0789\\u07a6\\u0780\\u07ac\\u0787\\u07b0\",MM:\"\\u0789\\u07a6\\u0790\\u07b0 %d\",y:\"\\u0787\\u07a6\\u0780\\u07a6\\u0783\\u07ac\\u0787\\u07b0\",yy:\"\\u0787\\u07a6\\u0780\\u07a6\\u0783\\u07aa %d\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:7,doy:12}})}(n(\"wd/R\"))},WxRl:function(e,t,n){!function(e){\"use strict\";var t=\"vas\\xe1rnap h\\xe9tf\\u0151n kedden szerd\\xe1n cs\\xfct\\xf6rt\\xf6k\\xf6n p\\xe9nteken szombaton\".split(\" \");function n(e,t,n,r){var i=e;switch(n){case\"s\":return r||t?\"n\\xe9h\\xe1ny m\\xe1sodperc\":\"n\\xe9h\\xe1ny m\\xe1sodperce\";case\"ss\":return i+(r||t)?\" m\\xe1sodperc\":\" m\\xe1sodperce\";case\"m\":return\"egy\"+(r||t?\" perc\":\" perce\");case\"mm\":return i+(r||t?\" perc\":\" perce\");case\"h\":return\"egy\"+(r||t?\" \\xf3ra\":\" \\xf3r\\xe1ja\");case\"hh\":return i+(r||t?\" \\xf3ra\":\" \\xf3r\\xe1ja\");case\"d\":return\"egy\"+(r||t?\" nap\":\" napja\");case\"dd\":return i+(r||t?\" nap\":\" napja\");case\"M\":return\"egy\"+(r||t?\" h\\xf3nap\":\" h\\xf3napja\");case\"MM\":return i+(r||t?\" h\\xf3nap\":\" h\\xf3napja\");case\"y\":return\"egy\"+(r||t?\" \\xe9v\":\" \\xe9ve\");case\"yy\":return i+(r||t?\" \\xe9v\":\" \\xe9ve\")}return\"\"}function r(e){return(e?\"\":\"[m\\xfalt] \")+\"[\"+t[this.day()]+\"] LT[-kor]\"}e.defineLocale(\"hu\",{months:\"janu\\xe1r_febru\\xe1r_m\\xe1rcius_\\xe1prilis_m\\xe1jus_j\\xfanius_j\\xfalius_augusztus_szeptember_okt\\xf3ber_november_december\".split(\"_\"),monthsShort:\"jan_feb_m\\xe1rc_\\xe1pr_m\\xe1j_j\\xfan_j\\xfal_aug_szept_okt_nov_dec\".split(\"_\"),weekdays:\"vas\\xe1rnap_h\\xe9tf\\u0151_kedd_szerda_cs\\xfct\\xf6rt\\xf6k_p\\xe9ntek_szombat\".split(\"_\"),weekdaysShort:\"vas_h\\xe9t_kedd_sze_cs\\xfct_p\\xe9n_szo\".split(\"_\"),weekdaysMin:\"v_h_k_sze_cs_p_szo\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY. MMMM D.\",LLL:\"YYYY. MMMM D. H:mm\",LLLL:\"YYYY. MMMM D., dddd H:mm\"},meridiemParse:/de|du/i,isPM:function(e){return\"u\"===e.charAt(1).toLowerCase()},meridiem:function(e,t,n){return e<12?!0===n?\"de\":\"DE\":!0===n?\"du\":\"DU\"},calendar:{sameDay:\"[ma] LT[-kor]\",nextDay:\"[holnap] LT[-kor]\",nextWeek:function(){return r.call(this,!0)},lastDay:\"[tegnap] LT[-kor]\",lastWeek:function(){return r.call(this,!1)},sameElse:\"L\"},relativeTime:{future:\"%s m\\xfalva\",past:\"%s\",s:n,ss:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},X709:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sv\",{months:\"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"s\\xf6ndag_m\\xe5ndag_tisdag_onsdag_torsdag_fredag_l\\xf6rdag\".split(\"_\"),weekdaysShort:\"s\\xf6n_m\\xe5n_tis_ons_tor_fre_l\\xf6r\".split(\"_\"),weekdaysMin:\"s\\xf6_m\\xe5_ti_on_to_fr_l\\xf6\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D MMMM YYYY [kl.] HH:mm\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd D MMM YYYY HH:mm\"},calendar:{sameDay:\"[Idag] LT\",nextDay:\"[Imorgon] LT\",lastDay:\"[Ig\\xe5r] LT\",nextWeek:\"[P\\xe5] dddd LT\",lastWeek:\"[I] dddd[s] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"f\\xf6r %s sedan\",s:\"n\\xe5gra sekunder\",ss:\"%d sekunder\",m:\"en minut\",mm:\"%d minuter\",h:\"en timme\",hh:\"%d timmar\",d:\"en dag\",dd:\"%d dagar\",M:\"en m\\xe5nad\",MM:\"%d m\\xe5nader\",y:\"ett \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}(e|a)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"e\":1===t||2===t?\"a\":\"e\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},XDpg:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-cn\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u5468\\u65e5_\\u5468\\u4e00_\\u5468\\u4e8c_\\u5468\\u4e09_\\u5468\\u56db_\\u5468\\u4e94_\\u5468\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5Ah\\u70b9mm\\u5206\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5ddddAh\\u70b9mm\\u5206\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var r=100*e+t;return r<600?\"\\u51cc\\u6668\":r<900?\"\\u65e9\\u4e0a\":r<1130?\"\\u4e0a\\u5348\":r<1230?\"\\u4e2d\\u5348\":r<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929]LT\",nextDay:\"[\\u660e\\u5929]LT\",nextWeek:\"[\\u4e0b]ddddLT\",lastDay:\"[\\u6628\\u5929]LT\",lastWeek:\"[\\u4e0a]ddddLT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u5468)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u5468\";default:return e}},relativeTime:{future:\"%s\\u5185\",past:\"%s\\u524d\",s:\"\\u51e0\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u949f\",mm:\"%d \\u5206\\u949f\",h:\"1 \\u5c0f\\u65f6\",hh:\"%d \\u5c0f\\u65f6\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u4e2a\\u6708\",MM:\"%d \\u4e2a\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},XLvN:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"te\",{months:\"\\u0c1c\\u0c28\\u0c35\\u0c30\\u0c3f_\\u0c2b\\u0c3f\\u0c2c\\u0c4d\\u0c30\\u0c35\\u0c30\\u0c3f_\\u0c2e\\u0c3e\\u0c30\\u0c4d\\u0c1a\\u0c3f_\\u0c0f\\u0c2a\\u0c4d\\u0c30\\u0c3f\\u0c32\\u0c4d_\\u0c2e\\u0c47_\\u0c1c\\u0c42\\u0c28\\u0c4d_\\u0c1c\\u0c41\\u0c32\\u0c48_\\u0c06\\u0c17\\u0c38\\u0c4d\\u0c1f\\u0c41_\\u0c38\\u0c46\\u0c2a\\u0c4d\\u0c1f\\u0c46\\u0c02\\u0c2c\\u0c30\\u0c4d_\\u0c05\\u0c15\\u0c4d\\u0c1f\\u0c4b\\u0c2c\\u0c30\\u0c4d_\\u0c28\\u0c35\\u0c02\\u0c2c\\u0c30\\u0c4d_\\u0c21\\u0c3f\\u0c38\\u0c46\\u0c02\\u0c2c\\u0c30\\u0c4d\".split(\"_\"),monthsShort:\"\\u0c1c\\u0c28._\\u0c2b\\u0c3f\\u0c2c\\u0c4d\\u0c30._\\u0c2e\\u0c3e\\u0c30\\u0c4d\\u0c1a\\u0c3f_\\u0c0f\\u0c2a\\u0c4d\\u0c30\\u0c3f._\\u0c2e\\u0c47_\\u0c1c\\u0c42\\u0c28\\u0c4d_\\u0c1c\\u0c41\\u0c32\\u0c48_\\u0c06\\u0c17._\\u0c38\\u0c46\\u0c2a\\u0c4d._\\u0c05\\u0c15\\u0c4d\\u0c1f\\u0c4b._\\u0c28\\u0c35._\\u0c21\\u0c3f\\u0c38\\u0c46.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0c06\\u0c26\\u0c3f\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c38\\u0c4b\\u0c2e\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c2e\\u0c02\\u0c17\\u0c33\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c2c\\u0c41\\u0c27\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c17\\u0c41\\u0c30\\u0c41\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c36\\u0c41\\u0c15\\u0c4d\\u0c30\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c36\\u0c28\\u0c3f\\u0c35\\u0c3e\\u0c30\\u0c02\".split(\"_\"),weekdaysShort:\"\\u0c06\\u0c26\\u0c3f_\\u0c38\\u0c4b\\u0c2e_\\u0c2e\\u0c02\\u0c17\\u0c33_\\u0c2c\\u0c41\\u0c27_\\u0c17\\u0c41\\u0c30\\u0c41_\\u0c36\\u0c41\\u0c15\\u0c4d\\u0c30_\\u0c36\\u0c28\\u0c3f\".split(\"_\"),weekdaysMin:\"\\u0c06_\\u0c38\\u0c4b_\\u0c2e\\u0c02_\\u0c2c\\u0c41_\\u0c17\\u0c41_\\u0c36\\u0c41_\\u0c36\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0c28\\u0c47\\u0c21\\u0c41] LT\",nextDay:\"[\\u0c30\\u0c47\\u0c2a\\u0c41] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0c28\\u0c3f\\u0c28\\u0c4d\\u0c28] LT\",lastWeek:\"[\\u0c17\\u0c24] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0c32\\u0c4b\",past:\"%s \\u0c15\\u0c4d\\u0c30\\u0c3f\\u0c24\\u0c02\",s:\"\\u0c15\\u0c4a\\u0c28\\u0c4d\\u0c28\\u0c3f \\u0c15\\u0c4d\\u0c37\\u0c23\\u0c3e\\u0c32\\u0c41\",ss:\"%d \\u0c38\\u0c46\\u0c15\\u0c28\\u0c4d\\u0c32\\u0c41\",m:\"\\u0c12\\u0c15 \\u0c28\\u0c3f\\u0c2e\\u0c3f\\u0c37\\u0c02\",mm:\"%d \\u0c28\\u0c3f\\u0c2e\\u0c3f\\u0c37\\u0c3e\\u0c32\\u0c41\",h:\"\\u0c12\\u0c15 \\u0c17\\u0c02\\u0c1f\",hh:\"%d \\u0c17\\u0c02\\u0c1f\\u0c32\\u0c41\",d:\"\\u0c12\\u0c15 \\u0c30\\u0c4b\\u0c1c\\u0c41\",dd:\"%d \\u0c30\\u0c4b\\u0c1c\\u0c41\\u0c32\\u0c41\",M:\"\\u0c12\\u0c15 \\u0c28\\u0c46\\u0c32\",MM:\"%d \\u0c28\\u0c46\\u0c32\\u0c32\\u0c41\",y:\"\\u0c12\\u0c15 \\u0c38\\u0c02\\u0c35\\u0c24\\u0c4d\\u0c38\\u0c30\\u0c02\",yy:\"%d \\u0c38\\u0c02\\u0c35\\u0c24\\u0c4d\\u0c38\\u0c30\\u0c3e\\u0c32\\u0c41\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u0c35/,ordinal:\"%d\\u0c35\",meridiemParse:/\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f|\\u0c09\\u0c26\\u0c2f\\u0c02|\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02|\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\"===t?e<4?e:e+12:\"\\u0c09\\u0c26\\u0c2f\\u0c02\"===t?e:\"\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02\"===t?e>=10?e:e+12:\"\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\":e<10?\"\\u0c09\\u0c26\\u0c2f\\u0c02\":e<17?\"\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02\":e<20?\"\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02\":\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},YRex:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ug-cn\",{months:\"\\u064a\\u0627\\u0646\\u06cb\\u0627\\u0631_\\u0641\\u06d0\\u06cb\\u0631\\u0627\\u0644_\\u0645\\u0627\\u0631\\u062a_\\u0626\\u0627\\u067e\\u0631\\u06d0\\u0644_\\u0645\\u0627\\u064a_\\u0626\\u0649\\u064a\\u06c7\\u0646_\\u0626\\u0649\\u064a\\u06c7\\u0644_\\u0626\\u0627\\u06cb\\u063a\\u06c7\\u0633\\u062a_\\u0633\\u06d0\\u0646\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0626\\u06c6\\u0643\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0646\\u0648\\u064a\\u0627\\u0628\\u0649\\u0631_\\u062f\\u06d0\\u0643\\u0627\\u0628\\u0649\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0627\\u0646\\u06cb\\u0627\\u0631_\\u0641\\u06d0\\u06cb\\u0631\\u0627\\u0644_\\u0645\\u0627\\u0631\\u062a_\\u0626\\u0627\\u067e\\u0631\\u06d0\\u0644_\\u0645\\u0627\\u064a_\\u0626\\u0649\\u064a\\u06c7\\u0646_\\u0626\\u0649\\u064a\\u06c7\\u0644_\\u0626\\u0627\\u06cb\\u063a\\u06c7\\u0633\\u062a_\\u0633\\u06d0\\u0646\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0626\\u06c6\\u0643\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0646\\u0648\\u064a\\u0627\\u0628\\u0649\\u0631_\\u062f\\u06d0\\u0643\\u0627\\u0628\\u0649\\u0631\".split(\"_\"),weekdays:\"\\u064a\\u06d5\\u0643\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u062f\\u06c8\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u0633\\u06d5\\u064a\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u0686\\u0627\\u0631\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u067e\\u06d5\\u064a\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u062c\\u06c8\\u0645\\u06d5_\\u0634\\u06d5\\u0646\\u0628\\u06d5\".split(\"_\"),weekdaysShort:\"\\u064a\\u06d5_\\u062f\\u06c8_\\u0633\\u06d5_\\u0686\\u0627_\\u067e\\u06d5_\\u062c\\u06c8_\\u0634\\u06d5\".split(\"_\"),weekdaysMin:\"\\u064a\\u06d5_\\u062f\\u06c8_\\u0633\\u06d5_\\u0686\\u0627_\\u067e\\u06d5_\\u062c\\u06c8_\\u0634\\u06d5\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\",LLL:\"YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\\u060c HH:mm\",LLLL:\"dddd\\u060c YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\\u060c HH:mm\"},meridiemParse:/\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5|\\u0633\\u06d5\\u06be\\u06d5\\u0631|\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646|\\u0686\\u06c8\\u0634|\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646|\\u0643\\u06d5\\u0686/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5\"===t||\"\\u0633\\u06d5\\u06be\\u06d5\\u0631\"===t||\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646\"===t?e:\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646\"===t||\"\\u0643\\u06d5\\u0686\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var r=100*e+t;return r<600?\"\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5\":r<900?\"\\u0633\\u06d5\\u06be\\u06d5\\u0631\":r<1130?\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646\":r<1230?\"\\u0686\\u06c8\\u0634\":r<1800?\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646\":\"\\u0643\\u06d5\\u0686\"},calendar:{sameDay:\"[\\u0628\\u06c8\\u06af\\u06c8\\u0646 \\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",nextDay:\"[\\u0626\\u06d5\\u062a\\u06d5 \\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",nextWeek:\"[\\u0643\\u06d0\\u0644\\u06d5\\u0631\\u0643\\u0649] dddd [\\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",lastDay:\"[\\u062a\\u06c6\\u0646\\u06c8\\u06af\\u06c8\\u0646] LT\",lastWeek:\"[\\u0626\\u0627\\u0644\\u062f\\u0649\\u0646\\u0642\\u0649] dddd [\\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0643\\u06d0\\u064a\\u0649\\u0646\",past:\"%s \\u0628\\u06c7\\u0631\\u06c7\\u0646\",s:\"\\u0646\\u06d5\\u0686\\u0686\\u06d5 \\u0633\\u06d0\\u0643\\u0648\\u0646\\u062a\",ss:\"%d \\u0633\\u06d0\\u0643\\u0648\\u0646\\u062a\",m:\"\\u0628\\u0649\\u0631 \\u0645\\u0649\\u0646\\u06c7\\u062a\",mm:\"%d \\u0645\\u0649\\u0646\\u06c7\\u062a\",h:\"\\u0628\\u0649\\u0631 \\u0633\\u0627\\u0626\\u06d5\\u062a\",hh:\"%d \\u0633\\u0627\\u0626\\u06d5\\u062a\",d:\"\\u0628\\u0649\\u0631 \\u0643\\u06c8\\u0646\",dd:\"%d \\u0643\\u06c8\\u0646\",M:\"\\u0628\\u0649\\u0631 \\u0626\\u0627\\u064a\",MM:\"%d \\u0626\\u0627\\u064a\",y:\"\\u0628\\u0649\\u0631 \\u064a\\u0649\\u0644\",yy:\"%d \\u064a\\u0649\\u0644\"},dayOfMonthOrdinalParse:/\\d{1,2}(-\\u0643\\u06c8\\u0646\\u0649|-\\u0626\\u0627\\u064a|-\\u06be\\u06d5\\u067e\\u062a\\u06d5)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"-\\u0643\\u06c8\\u0646\\u0649\";case\"w\":case\"W\":return e+\"-\\u06be\\u06d5\\u067e\\u062a\\u06d5\";default:return e}},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:7}})}(n(\"wd/R\"))},YuTi:function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,\"loaded\",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,\"id\",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},Z4QM:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u062c\\u0646\\u0648\\u0631\\u064a\",\"\\u0641\\u064a\\u0628\\u0631\\u0648\\u0631\\u064a\",\"\\u0645\\u0627\\u0631\\u0686\",\"\\u0627\\u067e\\u0631\\u064a\\u0644\",\"\\u0645\\u0626\\u064a\",\"\\u062c\\u0648\\u0646\",\"\\u062c\\u0648\\u0644\\u0627\\u0621\\u0650\",\"\\u0622\\u06af\\u0633\\u067d\",\"\\u0633\\u064a\\u067e\\u067d\\u0645\\u0628\\u0631\",\"\\u0622\\u06aa\\u067d\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0645\\u0628\\u0631\",\"\\u068a\\u0633\\u0645\\u0628\\u0631\"],n=[\"\\u0622\\u0686\\u0631\",\"\\u0633\\u0648\\u0645\\u0631\",\"\\u0627\\u06b1\\u0627\\u0631\\u0648\",\"\\u0627\\u0631\\u0628\\u0639\",\"\\u062e\\u0645\\u064a\\u0633\",\"\\u062c\\u0645\\u0639\",\"\\u0687\\u0646\\u0687\\u0631\"];e.defineLocale(\"sd\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd\\u060c D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635\\u0628\\u062d|\\u0634\\u0627\\u0645/,isPM:function(e){return\"\\u0634\\u0627\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\\u0628\\u062d\":\"\\u0634\\u0627\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0684] LT\",nextDay:\"[\\u0633\\u0680\\u0627\\u06bb\\u064a] LT\",nextWeek:\"dddd [\\u0627\\u06b3\\u064a\\u0646 \\u0647\\u0641\\u062a\\u064a \\u062a\\u064a] LT\",lastDay:\"[\\u06aa\\u0627\\u0644\\u0647\\u0647] LT\",lastWeek:\"[\\u06af\\u0632\\u0631\\u064a\\u0644 \\u0647\\u0641\\u062a\\u064a] dddd [\\u062a\\u064a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u067e\\u0648\\u0621\",past:\"%s \\u0627\\u06b3\",s:\"\\u0686\\u0646\\u062f \\u0633\\u064a\\u06aa\\u0646\\u068a\",ss:\"%d \\u0633\\u064a\\u06aa\\u0646\\u068a\",m:\"\\u0647\\u06aa \\u0645\\u0646\\u067d\",mm:\"%d \\u0645\\u0646\\u067d\",h:\"\\u0647\\u06aa \\u06aa\\u0644\\u0627\\u06aa\",hh:\"%d \\u06aa\\u0644\\u0627\\u06aa\",d:\"\\u0647\\u06aa \\u068f\\u064a\\u0646\\u0647\\u0646\",dd:\"%d \\u068f\\u064a\\u0646\\u0647\\u0646\",M:\"\\u0647\\u06aa \\u0645\\u0647\\u064a\\u0646\\u0648\",MM:\"%d \\u0645\\u0647\\u064a\\u0646\\u0627\",y:\"\\u0647\\u06aa \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},ZAMP:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms-my\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},Zduo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"eo\",{months:\"januaro_februaro_marto_aprilo_majo_junio_julio_a\\u016dgusto_septembro_oktobro_novembro_decembro\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_a\\u016dg_sep_okt_nov_dec\".split(\"_\"),weekdays:\"diman\\u0109o_lundo_mardo_merkredo_\\u0135a\\u016ddo_vendredo_sabato\".split(\"_\"),weekdaysShort:\"dim_lun_mard_merk_\\u0135a\\u016d_ven_sab\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_\\u0135a_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D[-a de] MMMM, YYYY\",LLL:\"D[-a de] MMMM, YYYY HH:mm\",LLLL:\"dddd, [la] D[-a de] MMMM, YYYY HH:mm\"},meridiemParse:/[ap]\\.t\\.m/i,isPM:function(e){return\"p\"===e.charAt(0).toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"p.t.m.\":\"P.T.M.\":n?\"a.t.m.\":\"A.T.M.\"},calendar:{sameDay:\"[Hodia\\u016d je] LT\",nextDay:\"[Morga\\u016d je] LT\",nextWeek:\"dddd [je] LT\",lastDay:\"[Hiera\\u016d je] LT\",lastWeek:\"[pasinta] dddd [je] LT\",sameElse:\"L\"},relativeTime:{future:\"post %s\",past:\"anta\\u016d %s\",s:\"sekundoj\",ss:\"%d sekundoj\",m:\"minuto\",mm:\"%d minutoj\",h:\"horo\",hh:\"%d horoj\",d:\"tago\",dd:\"%d tagoj\",M:\"monato\",MM:\"%d monatoj\",y:\"jaro\",yy:\"%d jaroj\"},dayOfMonthOrdinalParse:/\\d{1,2}a/,ordinal:\"%da\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},aCrv:function(e,t,n){var r,i=function(){this._tweens={},this._tweensAddedDuringUpdate={}};i.prototype={getAll:function(){return Object.keys(this._tweens).map((function(e){return this._tweens[e]}).bind(this))},removeAll:function(){this._tweens={}},add:function(e){this._tweens[e.getId()]=e,this._tweensAddedDuringUpdate[e.getId()]=e},remove:function(e){delete this._tweens[e.getId()],delete this._tweensAddedDuringUpdate[e.getId()]},update:function(e,t){var n=Object.keys(this._tweens);if(0===n.length)return!1;for(e=void 0!==e?e:o.now();n.length>0;){this._tweensAddedDuringUpdate={};for(var r=0;r1?1:n),this._valuesEnd)if(void 0!==this._valuesStart[t]){var i=this._valuesStart[t]||0,a=this._valuesEnd[t];a instanceof Array?this._object[t]=this._interpolationFunction(a,r):(\"string\"==typeof a&&(a=\"+\"===a.charAt(0)||\"-\"===a.charAt(0)?i+parseFloat(a):parseFloat(a)),\"number\"==typeof a&&(this._object[t]=i+(a-i)*r))}if(null!==this._onUpdateCallback&&this._onUpdateCallback(this._object,n),1===n){if(this._repeat>0){for(t in isFinite(this._repeat)&&this._repeat--,this._valuesStartRepeat){if(\"string\"==typeof this._valuesEnd[t]&&(this._valuesStartRepeat[t]=this._valuesStartRepeat[t]+parseFloat(this._valuesEnd[t])),this._yoyo){var o=this._valuesStartRepeat[t];this._valuesStartRepeat[t]=this._valuesEnd[t],this._valuesEnd[t]=o}this._valuesStart[t]=this._valuesStartRepeat[t]}return this._yoyo&&(this._reversed=!this._reversed),this._startTime=void 0!==this._repeatDelayTime?e+this._repeatDelayTime:e+this._delayTime,null!==this._onRepeatCallback&&this._onRepeatCallback(this._object),!0}null!==this._onCompleteCallback&&this._onCompleteCallback(this._object);for(var s=0,l=this._chainedTweens.length;s1?a(e[n],e[n-1],n-r):a(e[i],e[i+1>n?n:i+1],r-i)},Bezier:function(e,t){for(var n=0,r=e.length-1,i=Math.pow,a=o.Interpolation.Utils.Bernstein,s=0;s<=r;s++)n+=i(1-t,r-s)*i(t,s)*e[s]*a(r,s);return n},CatmullRom:function(e,t){var n=e.length-1,r=n*t,i=Math.floor(r),a=o.Interpolation.Utils.CatmullRom;return e[0]===e[n]?(t<0&&(i=Math.floor(r=n*(1+t))),a(e[(i-1+n)%n],e[i],e[(i+1)%n],e[(i+2)%n],r-i)):t<0?e[0]-(a(e[0],e[0],e[1],e[1],-r)-e[0]):t>1?e[n]-(a(e[n],e[n],e[n-1],e[n-1],r-n)-e[n]):a(e[i?i-1:0],e[i],e[n1;n--)t*=n;return a[e]=t,t}),CatmullRom:function(e,t,n,r,i){var a=.5*(n-e),o=.5*(r-t),s=i*i;return(2*t-2*n+a+o)*(i*s)+(-3*t+3*n-2*a-o)*s+a*i+t}}},void 0===(r=(function(){return o}).apply(t,[]))||(e.exports=r)},aIdf:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){return e+\" \"+function(e,t){return 2===t?function(e){var t={m:\"v\",b:\"v\",d:\"z\"};return void 0===t[e.charAt(0)]?e:t[e.charAt(0)]+e.substring(1)}(e):e}({mm:\"munutenn\",MM:\"miz\",dd:\"devezh\"}[n],e)}e.defineLocale(\"br\",{months:\"Genver_C'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu\".split(\"_\"),monthsShort:\"Gen_C'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker\".split(\"_\"),weekdays:\"Sul_Lun_Meurzh_Merc'her_Yaou_Gwener_Sadorn\".split(\"_\"),weekdaysShort:\"Sul_Lun_Meu_Mer_Yao_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Lu_Me_Mer_Ya_Gw_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h[e]mm A\",LTS:\"h[e]mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D [a viz] MMMM YYYY\",LLL:\"D [a viz] MMMM YYYY h[e]mm A\",LLLL:\"dddd, D [a viz] MMMM YYYY h[e]mm A\"},calendar:{sameDay:\"[Hiziv da] LT\",nextDay:\"[Warc'hoazh da] LT\",nextWeek:\"dddd [da] LT\",lastDay:\"[Dec'h da] LT\",lastWeek:\"dddd [paset da] LT\",sameElse:\"L\"},relativeTime:{future:\"a-benn %s\",past:\"%s 'zo\",s:\"un nebeud segondenno\\xf9\",ss:\"%d eilenn\",m:\"ur vunutenn\",mm:t,h:\"un eur\",hh:\"%d eur\",d:\"un devezh\",dd:t,M:\"ur miz\",MM:t,y:\"ur bloaz\",yy:function(e){switch(function e(t){return t>9?e(t%10):t}(e)){case 1:case 3:case 4:case 5:case 9:return e+\" bloaz\";default:return e+\" vloaz\"}}},dayOfMonthOrdinalParse:/\\d{1,2}(a\\xf1|vet)/,ordinal:function(e){return e+(1===e?\"a\\xf1\":\"vet\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},aIsn:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mi\",{months:\"Kohi-t\\u0101te_Hui-tanguru_Pout\\u016b-te-rangi_Paenga-wh\\u0101wh\\u0101_Haratua_Pipiri_H\\u014dngoingoi_Here-turi-k\\u014dk\\u0101_Mahuru_Whiringa-\\u0101-nuku_Whiringa-\\u0101-rangi_Hakihea\".split(\"_\"),monthsShort:\"Kohi_Hui_Pou_Pae_Hara_Pipi_H\\u014dngoi_Here_Mahu_Whi-nu_Whi-ra_Haki\".split(\"_\"),monthsRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,2}/i,weekdays:\"R\\u0101tapu_Mane_T\\u016brei_Wenerei_T\\u0101ite_Paraire_H\\u0101tarei\".split(\"_\"),weekdaysShort:\"Ta_Ma_T\\u016b_We_T\\u0101i_Pa_H\\u0101\".split(\"_\"),weekdaysMin:\"Ta_Ma_T\\u016b_We_T\\u0101i_Pa_H\\u0101\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [i] HH:mm\",LLLL:\"dddd, D MMMM YYYY [i] HH:mm\"},calendar:{sameDay:\"[i teie mahana, i] LT\",nextDay:\"[apopo i] LT\",nextWeek:\"dddd [i] LT\",lastDay:\"[inanahi i] LT\",lastWeek:\"dddd [whakamutunga i] LT\",sameElse:\"L\"},relativeTime:{future:\"i roto i %s\",past:\"%s i mua\",s:\"te h\\u0113kona ruarua\",ss:\"%d h\\u0113kona\",m:\"he meneti\",mm:\"%d meneti\",h:\"te haora\",hh:\"%d haora\",d:\"he ra\",dd:\"%d ra\",M:\"he marama\",MM:\"%d marama\",y:\"he tau\",yy:\"%d tau\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},aQkU:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mk\",{months:\"\\u0458\\u0430\\u043d\\u0443\\u0430\\u0440\\u0438_\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d\\u0438_\\u0458\\u0443\\u043b\\u0438_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438_\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438_\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438_\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\".split(\"_\"),monthsShort:\"\\u0458\\u0430\\u043d_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043f_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u0435_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u0430_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u043e\\u043a_\\u043f\\u0435\\u0442\\u043e\\u043a_\\u0441\\u0430\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434_\\u043f\\u043e\\u043d_\\u0432\\u0442\\u043e_\\u0441\\u0440\\u0435_\\u0447\\u0435\\u0442_\\u043f\\u0435\\u0442_\\u0441\\u0430\\u0431\".split(\"_\"),weekdaysMin:\"\\u043de_\\u043fo_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0435_\\u043f\\u0435_\\u0441a\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0414\\u0435\\u043d\\u0435\\u0441 \\u0432\\u043e] LT\",nextDay:\"[\\u0423\\u0442\\u0440\\u0435 \\u0432\\u043e] LT\",nextWeek:\"[\\u0412\\u043e] dddd [\\u0432\\u043e] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430 \\u0432\\u043e] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[\\u0418\\u0437\\u043c\\u0438\\u043d\\u0430\\u0442\\u0430\\u0442\\u0430] dddd [\\u0432\\u043e] LT\";case 1:case 2:case 4:case 5:return\"[\\u0418\\u0437\\u043c\\u0438\\u043d\\u0430\\u0442\\u0438\\u043e\\u0442] dddd [\\u0432\\u043e] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u043f\\u043e\\u0441\\u043b\\u0435 %s\",past:\"\\u043f\\u0440\\u0435\\u0434 %s\",s:\"\\u043d\\u0435\\u043a\\u043e\\u043b\\u043a\\u0443 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",m:\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\\u0438\",h:\"\\u0447\\u0430\\u0441\",hh:\"%d \\u0447\\u0430\\u0441\\u0430\",d:\"\\u0434\\u0435\\u043d\",dd:\"%d \\u0434\\u0435\\u043d\\u0430\",M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:\"%d \\u043c\\u0435\\u0441\\u0435\\u0446\\u0438\",y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",yy:\"%d \\u0433\\u043e\\u0434\\u0438\\u043d\\u0438\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0435\\u0432|\\u0435\\u043d|\\u0442\\u0438|\\u0432\\u0438|\\u0440\\u0438|\\u043c\\u0438)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-\\u0435\\u0432\":0===n?e+\"-\\u0435\\u043d\":n>10&&n<20?e+\"-\\u0442\\u0438\":1===t?e+\"-\\u0432\\u0438\":2===t?e+\"-\\u0440\\u0438\":7===t||8===t?e+\"-\\u043c\\u0438\":e+\"-\\u0442\\u0438\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},b1Dy:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-nz\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},bOMt:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nb\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"s\\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\\xf8rdag\".split(\"_\"),weekdaysShort:\"s\\xf8._ma._ti._on._to._fr._l\\xf8.\".split(\"_\"),weekdaysMin:\"s\\xf8_ma_ti_on_to_fr_l\\xf8\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"dddd [kl.] LT\",lastDay:\"[i g\\xe5r kl.] LT\",lastWeek:\"[forrige] dddd [kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"noen sekunder\",ss:\"%d sekunder\",m:\"ett minutt\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dager\",M:\"en m\\xe5ned\",MM:\"%d m\\xe5neder\",y:\"ett \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},bXm7:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0448\\u0456\",1:\"-\\u0448\\u0456\",2:\"-\\u0448\\u0456\",3:\"-\\u0448\\u0456\",4:\"-\\u0448\\u0456\",5:\"-\\u0448\\u0456\",6:\"-\\u0448\\u044b\",7:\"-\\u0448\\u0456\",8:\"-\\u0448\\u0456\",9:\"-\\u0448\\u044b\",10:\"-\\u0448\\u044b\",20:\"-\\u0448\\u044b\",30:\"-\\u0448\\u044b\",40:\"-\\u0448\\u044b\",50:\"-\\u0448\\u0456\",60:\"-\\u0448\\u044b\",70:\"-\\u0448\\u0456\",80:\"-\\u0448\\u0456\",90:\"-\\u0448\\u044b\",100:\"-\\u0448\\u0456\"};e.defineLocale(\"kk\",{months:\"\\u049b\\u0430\\u04a3\\u0442\\u0430\\u0440_\\u0430\\u049b\\u043f\\u0430\\u043d_\\u043d\\u0430\\u0443\\u0440\\u044b\\u0437_\\u0441\\u04d9\\u0443\\u0456\\u0440_\\u043c\\u0430\\u043c\\u044b\\u0440_\\u043c\\u0430\\u0443\\u0441\\u044b\\u043c_\\u0448\\u0456\\u043b\\u0434\\u0435_\\u0442\\u0430\\u043c\\u044b\\u0437_\\u049b\\u044b\\u0440\\u043a\\u04af\\u0439\\u0435\\u043a_\\u049b\\u0430\\u0437\\u0430\\u043d_\\u049b\\u0430\\u0440\\u0430\\u0448\\u0430_\\u0436\\u0435\\u043b\\u0442\\u043e\\u049b\\u0441\\u0430\\u043d\".split(\"_\"),monthsShort:\"\\u049b\\u0430\\u04a3_\\u0430\\u049b\\u043f_\\u043d\\u0430\\u0443_\\u0441\\u04d9\\u0443_\\u043c\\u0430\\u043c_\\u043c\\u0430\\u0443_\\u0448\\u0456\\u043b_\\u0442\\u0430\\u043c_\\u049b\\u044b\\u0440_\\u049b\\u0430\\u0437_\\u049b\\u0430\\u0440_\\u0436\\u0435\\u043b\".split(\"_\"),weekdays:\"\\u0436\\u0435\\u043a\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0434\\u04af\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0441\\u0435\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0441\\u04d9\\u0440\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0431\\u0435\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0436\\u04b1\\u043c\\u0430_\\u0441\\u0435\\u043d\\u0431\\u0456\".split(\"_\"),weekdaysShort:\"\\u0436\\u0435\\u043a_\\u0434\\u04af\\u0439_\\u0441\\u0435\\u0439_\\u0441\\u04d9\\u0440_\\u0431\\u0435\\u0439_\\u0436\\u04b1\\u043c_\\u0441\\u0435\\u043d\".split(\"_\"),weekdaysMin:\"\\u0436\\u043a_\\u0434\\u0439_\\u0441\\u0439_\\u0441\\u0440_\\u0431\\u0439_\\u0436\\u043c_\\u0441\\u043d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0411\\u04af\\u0433\\u0456\\u043d \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",nextDay:\"[\\u0415\\u0440\\u0442\\u0435\\u04a3 \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",nextWeek:\"dddd [\\u0441\\u0430\\u0493\\u0430\\u0442] LT\",lastDay:\"[\\u041a\\u0435\\u0448\\u0435 \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",lastWeek:\"[\\u04e8\\u0442\\u043a\\u0435\\u043d \\u0430\\u043f\\u0442\\u0430\\u043d\\u044b\\u04a3] dddd [\\u0441\\u0430\\u0493\\u0430\\u0442] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0456\\u0448\\u0456\\u043d\\u0434\\u0435\",past:\"%s \\u0431\\u04b1\\u0440\\u044b\\u043d\",s:\"\\u0431\\u0456\\u0440\\u043d\\u0435\\u0448\\u0435 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:\"\\u0431\\u0456\\u0440 \\u043c\\u0438\\u043d\\u0443\\u0442\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\",h:\"\\u0431\\u0456\\u0440 \\u0441\\u0430\\u0493\\u0430\\u0442\",hh:\"%d \\u0441\\u0430\\u0493\\u0430\\u0442\",d:\"\\u0431\\u0456\\u0440 \\u043a\\u04af\\u043d\",dd:\"%d \\u043a\\u04af\\u043d\",M:\"\\u0431\\u0456\\u0440 \\u0430\\u0439\",MM:\"%d \\u0430\\u0439\",y:\"\\u0431\\u0456\\u0440 \\u0436\\u044b\\u043b\",yy:\"%d \\u0436\\u044b\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0448\\u0456|\\u0448\\u044b)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},bYM6:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-tn\",{months:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},bpih:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_luned\\xec_marted\\xec_mercoled\\xec_gioved\\xec_venerd\\xec_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Oggi alle] LT\",nextDay:\"[Domani alle] LT\",nextWeek:\"dddd [alle] LT\",lastDay:\"[Ieri alle] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[la scorsa] dddd [alle] LT\";default:return\"[lo scorso] dddd [alle] LT\"}},sameElse:\"L\"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?\"tra\":\"in\")+\" \"+e},past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},bxKX:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it-ch\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_luned\\xec_marted\\xec_mercoled\\xec_gioved\\xec_venerd\\xec_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Oggi alle] LT\",nextDay:\"[Domani alle] LT\",nextWeek:\"dddd [alle] LT\",lastDay:\"[Ieri alle] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[la scorsa] dddd [alle] LT\";default:return\"[lo scorso] dddd [alle] LT\"}},sameElse:\"L\"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?\"tra\":\"in\")+\" \"+e},past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},cRix:function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.\".split(\"_\"),n=\"jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\");e.defineLocale(\"fy\",{months:\"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber\".split(\"_\"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsParseExact:!0,weekdays:\"snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon\".split(\"_\"),weekdaysShort:\"si._mo._ti._wo._to._fr._so.\".split(\"_\"),weekdaysMin:\"Si_Mo_Ti_Wo_To_Fr_So\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[hjoed om] LT\",nextDay:\"[moarn om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[juster om] LT\",lastWeek:\"[\\xf4fr\\xfbne] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oer %s\",past:\"%s lyn\",s:\"in pear sekonden\",ss:\"%d sekonden\",m:\"ien min\\xfat\",mm:\"%d minuten\",h:\"ien oere\",hh:\"%d oeren\",d:\"ien dei\",dd:\"%d dagen\",M:\"ien moanne\",MM:\"%d moannen\",y:\"ien jier\",yy:\"%d jierren\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},czMo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-il\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(\"wd/R\"))},dNwA:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sw\",{months:\"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi\".split(\"_\"),weekdaysShort:\"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos\".split(\"_\"),weekdaysMin:\"J2_J3_J4_J5_Al_Ij_J1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[leo saa] LT\",nextDay:\"[kesho saa] LT\",nextWeek:\"[wiki ijayo] dddd [saat] LT\",lastDay:\"[jana] LT\",lastWeek:\"[wiki iliyopita] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s baadaye\",past:\"tokea %s\",s:\"hivi punde\",ss:\"sekunde %d\",m:\"dakika moja\",mm:\"dakika %d\",h:\"saa limoja\",hh:\"masaa %d\",d:\"siku moja\",dd:\"masiku %d\",M:\"mwezi mmoja\",MM:\"miezi %d\",y:\"mwaka mmoja\",yy:\"miaka %d\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"e+ae\":function(e,t,n){!function(e){\"use strict\";var t=\"janu\\xe1r_febru\\xe1r_marec_apr\\xedl_m\\xe1j_j\\xfan_j\\xfal_august_september_okt\\xf3ber_november_december\".split(\"_\"),n=\"jan_feb_mar_apr_m\\xe1j_j\\xfan_j\\xfal_aug_sep_okt_nov_dec\".split(\"_\");function r(e){return e>1&&e<5}function i(e,t,n,i){var a=e+\" \";switch(n){case\"s\":return t||i?\"p\\xe1r sek\\xfand\":\"p\\xe1r sekundami\";case\"ss\":return t||i?a+(r(e)?\"sekundy\":\"sek\\xfand\"):a+\"sekundami\";case\"m\":return t?\"min\\xfata\":i?\"min\\xfatu\":\"min\\xfatou\";case\"mm\":return t||i?a+(r(e)?\"min\\xfaty\":\"min\\xfat\"):a+\"min\\xfatami\";case\"h\":return t?\"hodina\":i?\"hodinu\":\"hodinou\";case\"hh\":return t||i?a+(r(e)?\"hodiny\":\"hod\\xedn\"):a+\"hodinami\";case\"d\":return t||i?\"de\\u0148\":\"d\\u0148om\";case\"dd\":return t||i?a+(r(e)?\"dni\":\"dn\\xed\"):a+\"d\\u0148ami\";case\"M\":return t||i?\"mesiac\":\"mesiacom\";case\"MM\":return t||i?a+(r(e)?\"mesiace\":\"mesiacov\"):a+\"mesiacmi\";case\"y\":return t||i?\"rok\":\"rokom\";case\"yy\":return t||i?a+(r(e)?\"roky\":\"rokov\"):a+\"rokmi\"}}e.defineLocale(\"sk\",{months:t,monthsShort:n,weekdays:\"nede\\u013ea_pondelok_utorok_streda_\\u0161tvrtok_piatok_sobota\".split(\"_\"),weekdaysShort:\"ne_po_ut_st_\\u0161t_pi_so\".split(\"_\"),weekdaysMin:\"ne_po_ut_st_\\u0161t_pi_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[dnes o] LT\",nextDay:\"[zajtra o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v nede\\u013eu o] LT\";case 1:case 2:return\"[v] dddd [o] LT\";case 3:return\"[v stredu o] LT\";case 4:return\"[vo \\u0161tvrtok o] LT\";case 5:return\"[v piatok o] LT\";case 6:return\"[v sobotu o] LT\"}},lastDay:\"[v\\u010dera o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minul\\xfa nede\\u013eu o] LT\";case 1:case 2:return\"[minul\\xfd] dddd [o] LT\";case 3:return\"[minul\\xfa stredu o] LT\";case 4:case 5:return\"[minul\\xfd] dddd [o] LT\";case 6:return\"[minul\\xfa sobotu o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pred %s\",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},evrj:function(e,t,n){var r=n(\"m4GZ\");e.exports=function(e){var t=e.replace(/-/g,\"+\").replace(/_/g,\"/\");switch(t.length%4){case 0:break;case 2:t+=\"==\";break;case 3:t+=\"=\";break;default:throw\"Illegal base64url string!\"}try{return function(e){return decodeURIComponent(r(e).replace(/(.)/g,(function(e,t){var n=t.charCodeAt(0).toString(16).toUpperCase();return n.length<2&&(n=\"0\"+n),\"%\"+n})))}(t)}catch(n){return r(t)}}},fzPg:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"yo\",{months:\"S\\u1eb9\\u0301r\\u1eb9\\u0301_E\\u0300re\\u0300le\\u0300_\\u1eb8r\\u1eb9\\u0300na\\u0300_I\\u0300gbe\\u0301_E\\u0300bibi_O\\u0300ku\\u0300du_Ag\\u1eb9mo_O\\u0300gu\\u0301n_Owewe_\\u1ecc\\u0300wa\\u0300ra\\u0300_Be\\u0301lu\\u0301_\\u1ecc\\u0300p\\u1eb9\\u0300\\u0300\".split(\"_\"),monthsShort:\"S\\u1eb9\\u0301r_E\\u0300rl_\\u1eb8rn_I\\u0300gb_E\\u0300bi_O\\u0300ku\\u0300_Ag\\u1eb9_O\\u0300gu\\u0301_Owe_\\u1ecc\\u0300wa\\u0300_Be\\u0301l_\\u1ecc\\u0300p\\u1eb9\\u0300\\u0300\".split(\"_\"),weekdays:\"A\\u0300i\\u0300ku\\u0301_Aje\\u0301_I\\u0300s\\u1eb9\\u0301gun_\\u1eccj\\u1ecd\\u0301ru\\u0301_\\u1eccj\\u1ecd\\u0301b\\u1ecd_\\u1eb8ti\\u0300_A\\u0300ba\\u0301m\\u1eb9\\u0301ta\".split(\"_\"),weekdaysShort:\"A\\u0300i\\u0300k_Aje\\u0301_I\\u0300s\\u1eb9\\u0301_\\u1eccjr_\\u1eccjb_\\u1eb8ti\\u0300_A\\u0300ba\\u0301\".split(\"_\"),weekdaysMin:\"A\\u0300i\\u0300_Aj_I\\u0300s_\\u1eccr_\\u1eccb_\\u1eb8t_A\\u0300b\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[O\\u0300ni\\u0300 ni] LT\",nextDay:\"[\\u1ecc\\u0300la ni] LT\",nextWeek:\"dddd [\\u1eccs\\u1eb9\\u0300 to\\u0301n'b\\u1ecd] [ni] LT\",lastDay:\"[A\\u0300na ni] LT\",lastWeek:\"dddd [\\u1eccs\\u1eb9\\u0300 to\\u0301l\\u1ecd\\u0301] [ni] LT\",sameElse:\"L\"},relativeTime:{future:\"ni\\u0301 %s\",past:\"%s k\\u1ecdja\\u0301\",s:\"i\\u0300s\\u1eb9ju\\u0301 aaya\\u0301 die\",ss:\"aaya\\u0301 %d\",m:\"i\\u0300s\\u1eb9ju\\u0301 kan\",mm:\"i\\u0300s\\u1eb9ju\\u0301 %d\",h:\"wa\\u0301kati kan\",hh:\"wa\\u0301kati %d\",d:\"\\u1ecdj\\u1ecd\\u0301 kan\",dd:\"\\u1ecdj\\u1ecd\\u0301 %d\",M:\"osu\\u0300 kan\",MM:\"osu\\u0300 %d\",y:\"\\u1ecddu\\u0301n kan\",yy:\"\\u1ecddu\\u0301n %d\"},dayOfMonthOrdinalParse:/\\u1ecdj\\u1ecd\\u0301\\s\\d{1,2}/,ordinal:\"\\u1ecdj\\u1ecd\\u0301 %d\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},gVVK:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i=e+\" \";switch(n){case\"s\":return t||r?\"nekaj sekund\":\"nekaj sekundami\";case\"ss\":return i+(1===e?t?\"sekundo\":\"sekundi\":2===e?t||r?\"sekundi\":\"sekundah\":e<5?t||r?\"sekunde\":\"sekundah\":\"sekund\");case\"m\":return t?\"ena minuta\":\"eno minuto\";case\"mm\":return i+(1===e?t?\"minuta\":\"minuto\":2===e?t||r?\"minuti\":\"minutama\":e<5?t||r?\"minute\":\"minutami\":t||r?\"minut\":\"minutami\");case\"h\":return t?\"ena ura\":\"eno uro\";case\"hh\":return i+(1===e?t?\"ura\":\"uro\":2===e?t||r?\"uri\":\"urama\":e<5?t||r?\"ure\":\"urami\":t||r?\"ur\":\"urami\");case\"d\":return t||r?\"en dan\":\"enim dnem\";case\"dd\":return i+(1===e?t||r?\"dan\":\"dnem\":2===e?t||r?\"dni\":\"dnevoma\":t||r?\"dni\":\"dnevi\");case\"M\":return t||r?\"en mesec\":\"enim mesecem\";case\"MM\":return i+(1===e?t||r?\"mesec\":\"mesecem\":2===e?t||r?\"meseca\":\"mesecema\":e<5?t||r?\"mesece\":\"meseci\":t||r?\"mesecev\":\"meseci\");case\"y\":return t||r?\"eno leto\":\"enim letom\";case\"yy\":return i+(1===e?t||r?\"leto\":\"letom\":2===e?t||r?\"leti\":\"letoma\":e<5?t||r?\"leta\":\"leti\":t||r?\"let\":\"leti\")}}e.defineLocale(\"sl\",{months:\"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljek_torek_sreda_\\u010detrtek_petek_sobota\".split(\"_\"),weekdaysShort:\"ned._pon._tor._sre._\\u010det._pet._sob.\".split(\"_\"),weekdaysMin:\"ne_po_to_sr_\\u010de_pe_so\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danes ob] LT\",nextDay:\"[jutri ob] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v] [nedeljo] [ob] LT\";case 3:return\"[v] [sredo] [ob] LT\";case 6:return\"[v] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[v] dddd [ob] LT\"}},lastDay:\"[v\\u010deraj ob] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[prej\\u0161njo] [nedeljo] [ob] LT\";case 3:return\"[prej\\u0161njo] [sredo] [ob] LT\";case 6:return\"[prej\\u0161njo] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[prej\\u0161nji] dddd [ob] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u010dez %s\",past:\"pred %s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},gekB:function(e,t,n){!function(e){\"use strict\";var t=\"nolla yksi kaksi kolme nelj\\xe4 viisi kuusi seitsem\\xe4n kahdeksan yhdeks\\xe4n\".split(\" \"),n=[\"nolla\",\"yhden\",\"kahden\",\"kolmen\",\"nelj\\xe4n\",\"viiden\",\"kuuden\",t[7],t[8],t[9]];function r(e,r,i,a){var o=\"\";switch(i){case\"s\":return a?\"muutaman sekunnin\":\"muutama sekunti\";case\"ss\":return a?\"sekunnin\":\"sekuntia\";case\"m\":return a?\"minuutin\":\"minuutti\";case\"mm\":o=a?\"minuutin\":\"minuuttia\";break;case\"h\":return a?\"tunnin\":\"tunti\";case\"hh\":o=a?\"tunnin\":\"tuntia\";break;case\"d\":return a?\"p\\xe4iv\\xe4n\":\"p\\xe4iv\\xe4\";case\"dd\":o=a?\"p\\xe4iv\\xe4n\":\"p\\xe4iv\\xe4\\xe4\";break;case\"M\":return a?\"kuukauden\":\"kuukausi\";case\"MM\":o=a?\"kuukauden\":\"kuukautta\";break;case\"y\":return a?\"vuoden\":\"vuosi\";case\"yy\":o=a?\"vuoden\":\"vuotta\"}return function(e,r){return e<10?r?n[e]:t[e]:e}(e,a)+\" \"+o}e.defineLocale(\"fi\",{months:\"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kes\\xe4kuu_hein\\xe4kuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu\".split(\"_\"),monthsShort:\"tammi_helmi_maalis_huhti_touko_kes\\xe4_hein\\xe4_elo_syys_loka_marras_joulu\".split(\"_\"),weekdays:\"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai\".split(\"_\"),weekdaysShort:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),weekdaysMin:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"Do MMMM[ta] YYYY\",LLL:\"Do MMMM[ta] YYYY, [klo] HH.mm\",LLLL:\"dddd, Do MMMM[ta] YYYY, [klo] HH.mm\",l:\"D.M.YYYY\",ll:\"Do MMM YYYY\",lll:\"Do MMM YYYY, [klo] HH.mm\",llll:\"ddd, Do MMM YYYY, [klo] HH.mm\"},calendar:{sameDay:\"[t\\xe4n\\xe4\\xe4n] [klo] LT\",nextDay:\"[huomenna] [klo] LT\",nextWeek:\"dddd [klo] LT\",lastDay:\"[eilen] [klo] LT\",lastWeek:\"[viime] dddd[na] [klo] LT\",sameElse:\"L\"},relativeTime:{future:\"%s p\\xe4\\xe4st\\xe4\",past:\"%s sitten\",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},gjCT:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"};e.defineLocale(\"ar-sa\",{months:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a\\u0648_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648_\\u0623\\u063a\\u0633\\u0637\\u0633_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a\\u0648_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648_\\u0623\\u063a\\u0633\\u0637\\u0633_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:0,doy:6}})}(n(\"wd/R\"))},hKrs:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bg\",{months:\"\\u044f\\u043d\\u0443\\u0430\\u0440\\u0438_\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0439_\\u044e\\u043d\\u0438_\\u044e\\u043b\\u0438_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438_\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438_\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438_\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0440_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u044e\\u043d\\u0438_\\u044e\\u043b\\u0438_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043f_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u0435_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u044f_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u044f\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u044a\\u0440\\u0442\\u044a\\u043a_\\u043f\\u0435\\u0442\\u044a\\u043a_\\u0441\\u044a\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434_\\u043f\\u043e\\u043d_\\u0432\\u0442\\u043e_\\u0441\\u0440\\u044f_\\u0447\\u0435\\u0442_\\u043f\\u0435\\u0442_\\u0441\\u044a\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0414\\u043d\\u0435\\u0441 \\u0432] LT\",nextDay:\"[\\u0423\\u0442\\u0440\\u0435 \\u0432] LT\",nextWeek:\"dddd [\\u0432] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430 \\u0432] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[\\u0412 \\u0438\\u0437\\u043c\\u0438\\u043d\\u0430\\u043b\\u0430\\u0442\\u0430] dddd [\\u0432] LT\";case 1:case 2:case 4:case 5:return\"[\\u0412 \\u0438\\u0437\\u043c\\u0438\\u043d\\u0430\\u043b\\u0438\\u044f] dddd [\\u0432] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u0441\\u043b\\u0435\\u0434 %s\",past:\"\\u043f\\u0440\\u0435\\u0434\\u0438 %s\",s:\"\\u043d\\u044f\\u043a\\u043e\\u043b\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",m:\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\\u0438\",h:\"\\u0447\\u0430\\u0441\",hh:\"%d \\u0447\\u0430\\u0441\\u0430\",d:\"\\u0434\\u0435\\u043d\",dd:\"%d \\u0434\\u043d\\u0438\",M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:\"%d \\u043c\\u0435\\u0441\\u0435\\u0446\\u0430\",y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",yy:\"%d \\u0433\\u043e\\u0434\\u0438\\u043d\\u0438\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0435\\u0432|\\u0435\\u043d|\\u0442\\u0438|\\u0432\\u0438|\\u0440\\u0438|\\u043c\\u0438)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-\\u0435\\u0432\":0===n?e+\"-\\u0435\\u043d\":n>10&&n<20?e+\"-\\u0442\\u0438\":1===t?e+\"-\\u0432\\u0438\":2===t?e+\"-\\u0440\\u0438\":7===t||8===t?e+\"-\\u043c\\u0438\":e+\"-\\u0442\\u0438\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},honF:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u1041\",2:\"\\u1042\",3:\"\\u1043\",4:\"\\u1044\",5:\"\\u1045\",6:\"\\u1046\",7:\"\\u1047\",8:\"\\u1048\",9:\"\\u1049\",0:\"\\u1040\"},n={\"\\u1041\":\"1\",\"\\u1042\":\"2\",\"\\u1043\":\"3\",\"\\u1044\":\"4\",\"\\u1045\":\"5\",\"\\u1046\":\"6\",\"\\u1047\":\"7\",\"\\u1048\":\"8\",\"\\u1049\":\"9\",\"\\u1040\":\"0\"};e.defineLocale(\"my\",{months:\"\\u1007\\u1014\\u103a\\u1014\\u101d\\u102b\\u101b\\u102e_\\u1016\\u1031\\u1016\\u1031\\u102c\\u103a\\u101d\\u102b\\u101b\\u102e_\\u1019\\u1010\\u103a_\\u1027\\u1015\\u103c\\u102e_\\u1019\\u1031_\\u1007\\u103d\\u1014\\u103a_\\u1007\\u1030\\u101c\\u102d\\u102f\\u1004\\u103a_\\u101e\\u103c\\u1002\\u102f\\u1010\\u103a_\\u1005\\u1000\\u103a\\u1010\\u1004\\u103a\\u1018\\u102c_\\u1021\\u1031\\u102c\\u1000\\u103a\\u1010\\u102d\\u102f\\u1018\\u102c_\\u1014\\u102d\\u102f\\u101d\\u1004\\u103a\\u1018\\u102c_\\u1012\\u102e\\u1007\\u1004\\u103a\\u1018\\u102c\".split(\"_\"),monthsShort:\"\\u1007\\u1014\\u103a_\\u1016\\u1031_\\u1019\\u1010\\u103a_\\u1015\\u103c\\u102e_\\u1019\\u1031_\\u1007\\u103d\\u1014\\u103a_\\u101c\\u102d\\u102f\\u1004\\u103a_\\u101e\\u103c_\\u1005\\u1000\\u103a_\\u1021\\u1031\\u102c\\u1000\\u103a_\\u1014\\u102d\\u102f_\\u1012\\u102e\".split(\"_\"),weekdays:\"\\u1010\\u1014\\u1004\\u103a\\u1039\\u1002\\u1014\\u103d\\u1031_\\u1010\\u1014\\u1004\\u103a\\u1039\\u101c\\u102c_\\u1021\\u1004\\u103a\\u1039\\u1002\\u102b_\\u1017\\u102f\\u1012\\u1039\\u1013\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c\\u101e\\u1015\\u1010\\u1031\\u1038_\\u101e\\u1031\\u102c\\u1000\\u103c\\u102c_\\u1005\\u1014\\u1031\".split(\"_\"),weekdaysShort:\"\\u1014\\u103d\\u1031_\\u101c\\u102c_\\u1002\\u102b_\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c_\\u101e\\u1031\\u102c_\\u1014\\u1031\".split(\"_\"),weekdaysMin:\"\\u1014\\u103d\\u1031_\\u101c\\u102c_\\u1002\\u102b_\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c_\\u101e\\u1031\\u102c_\\u1014\\u1031\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u101a\\u1014\\u1031.] LT [\\u1019\\u103e\\u102c]\",nextDay:\"[\\u1019\\u1014\\u1000\\u103a\\u1016\\u103c\\u1014\\u103a] LT [\\u1019\\u103e\\u102c]\",nextWeek:\"dddd LT [\\u1019\\u103e\\u102c]\",lastDay:\"[\\u1019\\u1014\\u1031.\\u1000] LT [\\u1019\\u103e\\u102c]\",lastWeek:\"[\\u1015\\u103c\\u102e\\u1038\\u1001\\u1032\\u1037\\u101e\\u1031\\u102c] dddd LT [\\u1019\\u103e\\u102c]\",sameElse:\"L\"},relativeTime:{future:\"\\u101c\\u102c\\u1019\\u100a\\u103a\\u1037 %s \\u1019\\u103e\\u102c\",past:\"\\u101c\\u103d\\u1014\\u103a\\u1001\\u1032\\u1037\\u101e\\u1031\\u102c %s \\u1000\",s:\"\\u1005\\u1000\\u1039\\u1000\\u1014\\u103a.\\u1021\\u1014\\u100a\\u103a\\u1038\\u1004\\u101a\\u103a\",ss:\"%d \\u1005\\u1000\\u1039\\u1000\\u1014\\u1037\\u103a\",m:\"\\u1010\\u1005\\u103a\\u1019\\u102d\\u1014\\u1005\\u103a\",mm:\"%d \\u1019\\u102d\\u1014\\u1005\\u103a\",h:\"\\u1010\\u1005\\u103a\\u1014\\u102c\\u101b\\u102e\",hh:\"%d \\u1014\\u102c\\u101b\\u102e\",d:\"\\u1010\\u1005\\u103a\\u101b\\u1000\\u103a\",dd:\"%d \\u101b\\u1000\\u103a\",M:\"\\u1010\\u1005\\u103a\\u101c\",MM:\"%d \\u101c\",y:\"\\u1010\\u1005\\u103a\\u1014\\u103e\\u1005\\u103a\",yy:\"%d \\u1014\\u103e\\u1005\\u103a\"},preparse:function(e){return e.replace(/[\\u1041\\u1042\\u1043\\u1044\\u1045\\u1046\\u1047\\u1048\\u1049\\u1040]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(\"wd/R\"))},iEDd:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"gl\",{months:\"xaneiro_febreiro_marzo_abril_maio_xu\\xf1o_xullo_agosto_setembro_outubro_novembro_decembro\".split(\"_\"),monthsShort:\"xan._feb._mar._abr._mai._xu\\xf1._xul._ago._set._out._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"domingo_luns_martes_m\\xe9rcores_xoves_venres_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._m\\xe9r._xov._ven._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_m\\xe9_xo_ve_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoxe \"+(1!==this.hours()?\"\\xe1s\":\"\\xe1\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1\\xe1 \"+(1!==this.hours()?\"\\xe1s\":\"\\xe1\")+\"] LT\"},nextWeek:function(){return\"dddd [\"+(1!==this.hours()?\"\\xe1s\":\"a\")+\"] LT\"},lastDay:function(){return\"[onte \"+(1!==this.hours()?\"\\xe1\":\"a\")+\"] LT\"},lastWeek:function(){return\"[o] dddd [pasado \"+(1!==this.hours()?\"\\xe1s\":\"a\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:function(e){return 0===e.indexOf(\"un\")?\"n\"+e:\"en \"+e},past:\"hai %s\",s:\"uns segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"unha hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},iYuL:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],i=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:\"domingo_lunes_martes_mi\\xe9rcoles_jueves_viernes_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mi\\xe9._jue._vie._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1ana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un a\\xf1o\",yy:\"%d a\\xf1os\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jUeY:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"el\",{monthsNominativeEl:\"\\u0399\\u03b1\\u03bd\\u03bf\\u03c5\\u03ac\\u03c1\\u03b9\\u03bf\\u03c2_\\u03a6\\u03b5\\u03b2\\u03c1\\u03bf\\u03c5\\u03ac\\u03c1\\u03b9\\u03bf\\u03c2_\\u039c\\u03ac\\u03c1\\u03c4\\u03b9\\u03bf\\u03c2_\\u0391\\u03c0\\u03c1\\u03af\\u03bb\\u03b9\\u03bf\\u03c2_\\u039c\\u03ac\\u03b9\\u03bf\\u03c2_\\u0399\\u03bf\\u03cd\\u03bd\\u03b9\\u03bf\\u03c2_\\u0399\\u03bf\\u03cd\\u03bb\\u03b9\\u03bf\\u03c2_\\u0391\\u03cd\\u03b3\\u03bf\\u03c5\\u03c3\\u03c4\\u03bf\\u03c2_\\u03a3\\u03b5\\u03c0\\u03c4\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u039f\\u03ba\\u03c4\\u03ce\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u039d\\u03bf\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u0394\\u03b5\\u03ba\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2\".split(\"_\"),monthsGenitiveEl:\"\\u0399\\u03b1\\u03bd\\u03bf\\u03c5\\u03b1\\u03c1\\u03af\\u03bf\\u03c5_\\u03a6\\u03b5\\u03b2\\u03c1\\u03bf\\u03c5\\u03b1\\u03c1\\u03af\\u03bf\\u03c5_\\u039c\\u03b1\\u03c1\\u03c4\\u03af\\u03bf\\u03c5_\\u0391\\u03c0\\u03c1\\u03b9\\u03bb\\u03af\\u03bf\\u03c5_\\u039c\\u03b1\\u0390\\u03bf\\u03c5_\\u0399\\u03bf\\u03c5\\u03bd\\u03af\\u03bf\\u03c5_\\u0399\\u03bf\\u03c5\\u03bb\\u03af\\u03bf\\u03c5_\\u0391\\u03c5\\u03b3\\u03bf\\u03cd\\u03c3\\u03c4\\u03bf\\u03c5_\\u03a3\\u03b5\\u03c0\\u03c4\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u039f\\u03ba\\u03c4\\u03c9\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u039d\\u03bf\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u0394\\u03b5\\u03ba\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5\".split(\"_\"),months:function(e,t){return e?\"string\"==typeof t&&/D/.test(t.substring(0,t.indexOf(\"MMMM\")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]:this._monthsNominativeEl},monthsShort:\"\\u0399\\u03b1\\u03bd_\\u03a6\\u03b5\\u03b2_\\u039c\\u03b1\\u03c1_\\u0391\\u03c0\\u03c1_\\u039c\\u03b1\\u03ca_\\u0399\\u03bf\\u03c5\\u03bd_\\u0399\\u03bf\\u03c5\\u03bb_\\u0391\\u03c5\\u03b3_\\u03a3\\u03b5\\u03c0_\\u039f\\u03ba\\u03c4_\\u039d\\u03bf\\u03b5_\\u0394\\u03b5\\u03ba\".split(\"_\"),weekdays:\"\\u039a\\u03c5\\u03c1\\u03b9\\u03b1\\u03ba\\u03ae_\\u0394\\u03b5\\u03c5\\u03c4\\u03ad\\u03c1\\u03b1_\\u03a4\\u03c1\\u03af\\u03c4\\u03b7_\\u03a4\\u03b5\\u03c4\\u03ac\\u03c1\\u03c4\\u03b7_\\u03a0\\u03ad\\u03bc\\u03c0\\u03c4\\u03b7_\\u03a0\\u03b1\\u03c1\\u03b1\\u03c3\\u03ba\\u03b5\\u03c5\\u03ae_\\u03a3\\u03ac\\u03b2\\u03b2\\u03b1\\u03c4\\u03bf\".split(\"_\"),weekdaysShort:\"\\u039a\\u03c5\\u03c1_\\u0394\\u03b5\\u03c5_\\u03a4\\u03c1\\u03b9_\\u03a4\\u03b5\\u03c4_\\u03a0\\u03b5\\u03bc_\\u03a0\\u03b1\\u03c1_\\u03a3\\u03b1\\u03b2\".split(\"_\"),weekdaysMin:\"\\u039a\\u03c5_\\u0394\\u03b5_\\u03a4\\u03c1_\\u03a4\\u03b5_\\u03a0\\u03b5_\\u03a0\\u03b1_\\u03a3\\u03b1\".split(\"_\"),meridiem:function(e,t,n){return e>11?n?\"\\u03bc\\u03bc\":\"\\u039c\\u039c\":n?\"\\u03c0\\u03bc\":\"\\u03a0\\u039c\"},isPM:function(e){return\"\\u03bc\"===(e+\"\").toLowerCase()[0]},meridiemParse:/[\\u03a0\\u039c]\\.?\\u039c?\\.?/i,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendarEl:{sameDay:\"[\\u03a3\\u03ae\\u03bc\\u03b5\\u03c1\\u03b1 {}] LT\",nextDay:\"[\\u0391\\u03cd\\u03c1\\u03b9\\u03bf {}] LT\",nextWeek:\"dddd [{}] LT\",lastDay:\"[\\u03a7\\u03b8\\u03b5\\u03c2 {}] LT\",lastWeek:function(){switch(this.day()){case 6:return\"[\\u03c4\\u03bf \\u03c0\\u03c1\\u03bf\\u03b7\\u03b3\\u03bf\\u03cd\\u03bc\\u03b5\\u03bd\\u03bf] dddd [{}] LT\";default:return\"[\\u03c4\\u03b7\\u03bd \\u03c0\\u03c1\\u03bf\\u03b7\\u03b3\\u03bf\\u03cd\\u03bc\\u03b5\\u03bd\\u03b7] dddd [{}] LT\"}},sameElse:\"L\"},calendar:function(e,t){var n,r=this._calendarEl[e],i=t&&t.hours();return((n=r)instanceof Function||\"[object Function]\"===Object.prototype.toString.call(n))&&(r=r.apply(t)),r.replace(\"{}\",i%12==1?\"\\u03c3\\u03c4\\u03b7\":\"\\u03c3\\u03c4\\u03b9\\u03c2\")},relativeTime:{future:\"\\u03c3\\u03b5 %s\",past:\"%s \\u03c0\\u03c1\\u03b9\\u03bd\",s:\"\\u03bb\\u03af\\u03b3\\u03b1 \\u03b4\\u03b5\\u03c5\\u03c4\\u03b5\\u03c1\\u03cc\\u03bb\\u03b5\\u03c0\\u03c4\\u03b1\",ss:\"%d \\u03b4\\u03b5\\u03c5\\u03c4\\u03b5\\u03c1\\u03cc\\u03bb\\u03b5\\u03c0\\u03c4\\u03b1\",m:\"\\u03ad\\u03bd\\u03b1 \\u03bb\\u03b5\\u03c0\\u03c4\\u03cc\",mm:\"%d \\u03bb\\u03b5\\u03c0\\u03c4\\u03ac\",h:\"\\u03bc\\u03af\\u03b1 \\u03ce\\u03c1\\u03b1\",hh:\"%d \\u03ce\\u03c1\\u03b5\\u03c2\",d:\"\\u03bc\\u03af\\u03b1 \\u03bc\\u03ad\\u03c1\\u03b1\",dd:\"%d \\u03bc\\u03ad\\u03c1\\u03b5\\u03c2\",M:\"\\u03ad\\u03bd\\u03b1\\u03c2 \\u03bc\\u03ae\\u03bd\\u03b1\\u03c2\",MM:\"%d \\u03bc\\u03ae\\u03bd\\u03b5\\u03c2\",y:\"\\u03ad\\u03bd\\u03b1\\u03c2 \\u03c7\\u03c1\\u03cc\\u03bd\\u03bf\\u03c2\",yy:\"%d \\u03c7\\u03c1\\u03cc\\u03bd\\u03b9\\u03b1\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u03b7/,ordinal:\"%d\\u03b7\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jVdC:function(e,t,n){!function(e){\"use strict\";var t=\"stycze\\u0144_luty_marzec_kwiecie\\u0144_maj_czerwiec_lipiec_sierpie\\u0144_wrzesie\\u0144_pa\\u017adziernik_listopad_grudzie\\u0144\".split(\"_\"),n=\"stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_wrze\\u015bnia_pa\\u017adziernika_listopada_grudnia\".split(\"_\");function r(e){return e%10<5&&e%10>1&&~~(e/10)%10!=1}function i(e,t,n){var i=e+\" \";switch(n){case\"ss\":return i+(r(e)?\"sekundy\":\"sekund\");case\"m\":return t?\"minuta\":\"minut\\u0119\";case\"mm\":return i+(r(e)?\"minuty\":\"minut\");case\"h\":return t?\"godzina\":\"godzin\\u0119\";case\"hh\":return i+(r(e)?\"godziny\":\"godzin\");case\"MM\":return i+(r(e)?\"miesi\\u0105ce\":\"miesi\\u0119cy\");case\"yy\":return i+(r(e)?\"lata\":\"lat\")}}e.defineLocale(\"pl\",{months:function(e,r){return e?\"\"===r?\"(\"+n[e.month()]+\"|\"+t[e.month()]+\")\":/D MMMM/.test(r)?n[e.month()]:t[e.month()]:t},monthsShort:\"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_pa\\u017a_lis_gru\".split(\"_\"),weekdays:\"niedziela_poniedzia\\u0142ek_wtorek_\\u015broda_czwartek_pi\\u0105tek_sobota\".split(\"_\"),weekdaysShort:\"ndz_pon_wt_\\u015br_czw_pt_sob\".split(\"_\"),weekdaysMin:\"Nd_Pn_Wt_\\u015ar_Cz_Pt_So\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Dzi\\u015b o] LT\",nextDay:\"[Jutro o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[W niedziel\\u0119 o] LT\";case 2:return\"[We wtorek o] LT\";case 3:return\"[W \\u015brod\\u0119 o] LT\";case 6:return\"[W sobot\\u0119 o] LT\";default:return\"[W] dddd [o] LT\"}},lastDay:\"[Wczoraj o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[W zesz\\u0142\\u0105 niedziel\\u0119 o] LT\";case 3:return\"[W zesz\\u0142\\u0105 \\u015brod\\u0119 o] LT\";case 6:return\"[W zesz\\u0142\\u0105 sobot\\u0119 o] LT\";default:return\"[W zesz\\u0142y] dddd [o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"%s temu\",s:\"kilka sekund\",ss:i,m:i,mm:i,h:i,hh:i,d:\"1 dzie\\u0144\",dd:\"%d dni\",M:\"miesi\\u0105c\",MM:i,y:\"rok\",yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jfSC:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u06f1\",2:\"\\u06f2\",3:\"\\u06f3\",4:\"\\u06f4\",5:\"\\u06f5\",6:\"\\u06f6\",7:\"\\u06f7\",8:\"\\u06f8\",9:\"\\u06f9\",0:\"\\u06f0\"},n={\"\\u06f1\":\"1\",\"\\u06f2\":\"2\",\"\\u06f3\":\"3\",\"\\u06f4\":\"4\",\"\\u06f5\":\"5\",\"\\u06f6\":\"6\",\"\\u06f7\":\"7\",\"\\u06f8\":\"8\",\"\\u06f9\":\"9\",\"\\u06f0\":\"0\"};e.defineLocale(\"fa\",{months:\"\\u0698\\u0627\\u0646\\u0648\\u06cc\\u0647_\\u0641\\u0648\\u0631\\u06cc\\u0647_\\u0645\\u0627\\u0631\\u0633_\\u0622\\u0648\\u0631\\u06cc\\u0644_\\u0645\\u0647_\\u0698\\u0648\\u0626\\u0646_\\u0698\\u0648\\u0626\\u06cc\\u0647_\\u0627\\u0648\\u062a_\\u0633\\u067e\\u062a\\u0627\\u0645\\u0628\\u0631_\\u0627\\u06a9\\u062a\\u0628\\u0631_\\u0646\\u0648\\u0627\\u0645\\u0628\\u0631_\\u062f\\u0633\\u0627\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u0698\\u0627\\u0646\\u0648\\u06cc\\u0647_\\u0641\\u0648\\u0631\\u06cc\\u0647_\\u0645\\u0627\\u0631\\u0633_\\u0622\\u0648\\u0631\\u06cc\\u0644_\\u0645\\u0647_\\u0698\\u0648\\u0626\\u0646_\\u0698\\u0648\\u0626\\u06cc\\u0647_\\u0627\\u0648\\u062a_\\u0633\\u067e\\u062a\\u0627\\u0645\\u0628\\u0631_\\u0627\\u06a9\\u062a\\u0628\\u0631_\\u0646\\u0648\\u0627\\u0645\\u0628\\u0631_\\u062f\\u0633\\u0627\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u06cc\\u06a9\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062f\\u0648\\u0634\\u0646\\u0628\\u0647_\\u0633\\u0647\\u200c\\u0634\\u0646\\u0628\\u0647_\\u0686\\u0647\\u0627\\u0631\\u0634\\u0646\\u0628\\u0647_\\u067e\\u0646\\u062c\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062c\\u0645\\u0639\\u0647_\\u0634\\u0646\\u0628\\u0647\".split(\"_\"),weekdaysShort:\"\\u06cc\\u06a9\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062f\\u0648\\u0634\\u0646\\u0628\\u0647_\\u0633\\u0647\\u200c\\u0634\\u0646\\u0628\\u0647_\\u0686\\u0647\\u0627\\u0631\\u0634\\u0646\\u0628\\u0647_\\u067e\\u0646\\u062c\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062c\\u0645\\u0639\\u0647_\\u0634\\u0646\\u0628\\u0647\".split(\"_\"),weekdaysMin:\"\\u06cc_\\u062f_\\u0633_\\u0686_\\u067e_\\u062c_\\u0634\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u0642\\u0628\\u0644 \\u0627\\u0632 \\u0638\\u0647\\u0631|\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631/,isPM:function(e){return/\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631/.test(e)},meridiem:function(e,t,n){return e<12?\"\\u0642\\u0628\\u0644 \\u0627\\u0632 \\u0638\\u0647\\u0631\":\"\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631\"},calendar:{sameDay:\"[\\u0627\\u0645\\u0631\\u0648\\u0632 \\u0633\\u0627\\u0639\\u062a] LT\",nextDay:\"[\\u0641\\u0631\\u062f\\u0627 \\u0633\\u0627\\u0639\\u062a] LT\",nextWeek:\"dddd [\\u0633\\u0627\\u0639\\u062a] LT\",lastDay:\"[\\u062f\\u06cc\\u0631\\u0648\\u0632 \\u0633\\u0627\\u0639\\u062a] LT\",lastWeek:\"dddd [\\u067e\\u06cc\\u0634] [\\u0633\\u0627\\u0639\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u062f\\u0631 %s\",past:\"%s \\u067e\\u06cc\\u0634\",s:\"\\u0686\\u0646\\u062f \\u062b\\u0627\\u0646\\u06cc\\u0647\",ss:\"\\u062b\\u0627\\u0646\\u06cc\\u0647 d%\",m:\"\\u06cc\\u06a9 \\u062f\\u0642\\u06cc\\u0642\\u0647\",mm:\"%d \\u062f\\u0642\\u06cc\\u0642\\u0647\",h:\"\\u06cc\\u06a9 \\u0633\\u0627\\u0639\\u062a\",hh:\"%d \\u0633\\u0627\\u0639\\u062a\",d:\"\\u06cc\\u06a9 \\u0631\\u0648\\u0632\",dd:\"%d \\u0631\\u0648\\u0632\",M:\"\\u06cc\\u06a9 \\u0645\\u0627\\u0647\",MM:\"%d \\u0645\\u0627\\u0647\",y:\"\\u06cc\\u06a9 \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/[\\u06f0-\\u06f9]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},dayOfMonthOrdinalParse:/\\d{1,2}\\u0645/,ordinal:\"%d\\u0645\",week:{dow:6,doy:12}})}(n(\"wd/R\"))},jnO4:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"},r=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},i={s:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062b\\u0627\\u0646\\u064a\\u0629\",\"\\u062b\\u0627\\u0646\\u064a\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u0627\\u0646\",\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u064a\\u0646\"],\"%d \\u062b\\u0648\\u0627\\u0646\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\"],m:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062f\\u0642\\u064a\\u0642\\u0629\",\"\\u062f\\u0642\\u064a\\u0642\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u0627\\u0646\",\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u064a\\u0646\"],\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\"],h:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0633\\u0627\\u0639\\u0629\",\"\\u0633\\u0627\\u0639\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u0633\\u0627\\u0639\\u062a\\u0627\\u0646\",\"\\u0633\\u0627\\u0639\\u062a\\u064a\\u0646\"],\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",\"%d \\u0633\\u0627\\u0639\\u0629\",\"%d \\u0633\\u0627\\u0639\\u0629\"],d:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u064a\\u0648\\u0645\",\"\\u064a\\u0648\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u064a\\u0648\\u0645\\u0627\\u0646\",\"\\u064a\\u0648\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u064a\\u0627\\u0645\",\"%d \\u064a\\u0648\\u0645\\u064b\\u0627\",\"%d \\u064a\\u0648\\u0645\"],M:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0634\\u0647\\u0631\",\"\\u0634\\u0647\\u0631 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0634\\u0647\\u0631\\u0627\\u0646\",\"\\u0634\\u0647\\u0631\\u064a\\u0646\"],\"%d \\u0623\\u0634\\u0647\\u0631\",\"%d \\u0634\\u0647\\u0631\\u0627\",\"%d \\u0634\\u0647\\u0631\"],y:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0639\\u0627\\u0645\",\"\\u0639\\u0627\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0639\\u0627\\u0645\\u0627\\u0646\",\"\\u0639\\u0627\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u0639\\u0648\\u0627\\u0645\",\"%d \\u0639\\u0627\\u0645\\u064b\\u0627\",\"%d \\u0639\\u0627\\u0645\"]},a=function(e){return function(t,n,a,o){var s=r(t),l=i[e][r(t)];return 2===s&&(l=l[n?0:1]),l.replace(/%d/i,t)}},o=[\"\\u064a\\u0646\\u0627\\u064a\\u0631\",\"\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631\",\"\\u0645\\u0627\\u0631\\u0633\",\"\\u0623\\u0628\\u0631\\u064a\\u0644\",\"\\u0645\\u0627\\u064a\\u0648\",\"\\u064a\\u0648\\u0646\\u064a\\u0648\",\"\\u064a\\u0648\\u0644\\u064a\\u0648\",\"\\u0623\\u063a\\u0633\\u0637\\u0633\",\"\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631\",\"\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631\",\"\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\"];e.defineLocale(\"ar\",{months:o,monthsShort:o,weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/\\u200fM/\\u200fYYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u064b\\u0627 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0628\\u0639\\u062f %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:a(\"s\"),ss:a(\"s\"),m:a(\"m\"),mm:a(\"m\"),h:a(\"h\"),hh:a(\"h\"),d:a(\"d\"),dd:a(\"d\"),M:a(\"M\"),MM:a(\"M\"),y:a(\"y\"),yy:a(\"y\")},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},kEOa:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u09e7\",2:\"\\u09e8\",3:\"\\u09e9\",4:\"\\u09ea\",5:\"\\u09eb\",6:\"\\u09ec\",7:\"\\u09ed\",8:\"\\u09ee\",9:\"\\u09ef\",0:\"\\u09e6\"},n={\"\\u09e7\":\"1\",\"\\u09e8\":\"2\",\"\\u09e9\":\"3\",\"\\u09ea\":\"4\",\"\\u09eb\":\"5\",\"\\u09ec\":\"6\",\"\\u09ed\":\"7\",\"\\u09ee\":\"8\",\"\\u09ef\":\"9\",\"\\u09e6\":\"0\"};e.defineLocale(\"bn\",{months:\"\\u099c\\u09be\\u09a8\\u09c1\\u09df\\u09be\\u09b0\\u09c0_\\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09c1\\u09df\\u09be\\u09b0\\u09bf_\\u09ae\\u09be\\u09b0\\u09cd\\u099a_\\u098f\\u09aa\\u09cd\\u09b0\\u09bf\\u09b2_\\u09ae\\u09c7_\\u099c\\u09c1\\u09a8_\\u099c\\u09c1\\u09b2\\u09be\\u0987_\\u0986\\u0997\\u09b8\\u09cd\\u099f_\\u09b8\\u09c7\\u09aa\\u09cd\\u099f\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0_\\u0985\\u0995\\u09cd\\u099f\\u09cb\\u09ac\\u09b0_\\u09a8\\u09ad\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0_\\u09a1\\u09bf\\u09b8\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0\".split(\"_\"),monthsShort:\"\\u099c\\u09be\\u09a8\\u09c1_\\u09ab\\u09c7\\u09ac_\\u09ae\\u09be\\u09b0\\u09cd\\u099a_\\u098f\\u09aa\\u09cd\\u09b0_\\u09ae\\u09c7_\\u099c\\u09c1\\u09a8_\\u099c\\u09c1\\u09b2_\\u0986\\u0997_\\u09b8\\u09c7\\u09aa\\u09cd\\u099f_\\u0985\\u0995\\u09cd\\u099f\\u09cb_\\u09a8\\u09ad\\u09c7_\\u09a1\\u09bf\\u09b8\\u09c7\".split(\"_\"),weekdays:\"\\u09b0\\u09ac\\u09bf\\u09ac\\u09be\\u09b0_\\u09b8\\u09cb\\u09ae\\u09ac\\u09be\\u09b0_\\u09ae\\u0999\\u09cd\\u0997\\u09b2\\u09ac\\u09be\\u09b0_\\u09ac\\u09c1\\u09a7\\u09ac\\u09be\\u09b0_\\u09ac\\u09c3\\u09b9\\u09b8\\u09cd\\u09aa\\u09a4\\u09bf\\u09ac\\u09be\\u09b0_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0\\u09ac\\u09be\\u09b0_\\u09b6\\u09a8\\u09bf\\u09ac\\u09be\\u09b0\".split(\"_\"),weekdaysShort:\"\\u09b0\\u09ac\\u09bf_\\u09b8\\u09cb\\u09ae_\\u09ae\\u0999\\u09cd\\u0997\\u09b2_\\u09ac\\u09c1\\u09a7_\\u09ac\\u09c3\\u09b9\\u09b8\\u09cd\\u09aa\\u09a4\\u09bf_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0_\\u09b6\\u09a8\\u09bf\".split(\"_\"),weekdaysMin:\"\\u09b0\\u09ac\\u09bf_\\u09b8\\u09cb\\u09ae_\\u09ae\\u0999\\u09cd\\u0997_\\u09ac\\u09c1\\u09a7_\\u09ac\\u09c3\\u09b9\\u0983_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0_\\u09b6\\u09a8\\u09bf\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u09b8\\u09ae\\u09df\",LTS:\"A h:mm:ss \\u09b8\\u09ae\\u09df\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u09b8\\u09ae\\u09df\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u09b8\\u09ae\\u09df\"},calendar:{sameDay:\"[\\u0986\\u099c] LT\",nextDay:\"[\\u0986\\u0997\\u09be\\u09ae\\u09c0\\u0995\\u09be\\u09b2] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0997\\u09a4\\u0995\\u09be\\u09b2] LT\",lastWeek:\"[\\u0997\\u09a4] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u09aa\\u09b0\\u09c7\",past:\"%s \\u0986\\u0997\\u09c7\",s:\"\\u0995\\u09df\\u09c7\\u0995 \\u09b8\\u09c7\\u0995\\u09c7\\u09a8\\u09cd\\u09a1\",ss:\"%d \\u09b8\\u09c7\\u0995\\u09c7\\u09a8\\u09cd\\u09a1\",m:\"\\u098f\\u0995 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f\",mm:\"%d \\u09ae\\u09bf\\u09a8\\u09bf\\u099f\",h:\"\\u098f\\u0995 \\u0998\\u09a8\\u09cd\\u099f\\u09be\",hh:\"%d \\u0998\\u09a8\\u09cd\\u099f\\u09be\",d:\"\\u098f\\u0995 \\u09a6\\u09bf\\u09a8\",dd:\"%d \\u09a6\\u09bf\\u09a8\",M:\"\\u098f\\u0995 \\u09ae\\u09be\\u09b8\",MM:\"%d \\u09ae\\u09be\\u09b8\",y:\"\\u098f\\u0995 \\u09ac\\u099b\\u09b0\",yy:\"%d \\u09ac\\u099b\\u09b0\"},preparse:function(e){return e.replace(/[\\u09e7\\u09e8\\u09e9\\u09ea\\u09eb\\u09ec\\u09ed\\u09ee\\u09ef\\u09e6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u09b0\\u09be\\u09a4|\\u09b8\\u0995\\u09be\\u09b2|\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0|\\u09ac\\u09bf\\u0995\\u09be\\u09b2|\\u09b0\\u09be\\u09a4/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u09b0\\u09be\\u09a4\"===t&&e>=4||\"\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0\"===t&&e<5||\"\\u09ac\\u09bf\\u0995\\u09be\\u09b2\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u09b0\\u09be\\u09a4\":e<10?\"\\u09b8\\u0995\\u09be\\u09b2\":e<17?\"\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0\":e<20?\"\\u09ac\\u09bf\\u0995\\u09be\\u09b2\":\"\\u09b0\\u09be\\u09a4\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},kOpN:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-tw\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u9031\\u65e5_\\u9031\\u4e00_\\u9031\\u4e8c_\\u9031\\u4e09_\\u9031\\u56db_\\u9031\\u4e94_\\u9031\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e2d\\u5348\"===t?e>=11?e:e+12:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:void 0},meridiem:function(e,t,n){var r=100*e+t;return r<600?\"\\u51cc\\u6668\":r<900?\"\\u65e9\\u4e0a\":r<1130?\"\\u4e0a\\u5348\":r<1230?\"\\u4e2d\\u5348\":r<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929] LT\",nextDay:\"[\\u660e\\u5929] LT\",nextWeek:\"[\\u4e0b]dddd LT\",lastDay:\"[\\u6628\\u5929] LT\",lastWeek:\"[\\u4e0a]dddd LT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u9031)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u9031\";default:return e}},relativeTime:{future:\"%s\\u5167\",past:\"%s\\u524d\",s:\"\\u5e7e\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u9418\",mm:\"%d \\u5206\\u9418\",h:\"1 \\u5c0f\\u6642\",hh:\"%d \\u5c0f\\u6642\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u500b\\u6708\",MM:\"%d \\u500b\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"}})}(n(\"wd/R\"))},l5ep:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cy\",{months:\"Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr\".split(\"_\"),monthsShort:\"Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag\".split(\"_\"),weekdays:\"Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn\".split(\"_\"),weekdaysShort:\"Sul_Llun_Maw_Mer_Iau_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Ll_Ma_Me_Ia_Gw_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Heddiw am] LT\",nextDay:\"[Yfory am] LT\",nextWeek:\"dddd [am] LT\",lastDay:\"[Ddoe am] LT\",lastWeek:\"dddd [diwethaf am] LT\",sameElse:\"L\"},relativeTime:{future:\"mewn %s\",past:\"%s yn \\xf4l\",s:\"ychydig eiliadau\",ss:\"%d eiliad\",m:\"munud\",mm:\"%d munud\",h:\"awr\",hh:\"%d awr\",d:\"diwrnod\",dd:\"%d diwrnod\",M:\"mis\",MM:\"%d mis\",y:\"blwyddyn\",yy:\"%d flynedd\"},dayOfMonthOrdinalParse:/\\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,ordinal:function(e){var t=\"\";return e>20?t=40===e||50===e||60===e||80===e||100===e?\"fed\":\"ain\":e>0&&(t=[\"\",\"af\",\"il\",\"ydd\",\"ydd\",\"ed\",\"ed\",\"ed\",\"fed\",\"fed\",\"fed\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"fed\"][e]),e+t},week:{dow:1,doy:4}})}(n(\"wd/R\"))},lXzo:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r,i;return\"m\"===n?t?\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\":\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0443\":e+\" \"+(r=+e,i={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430_\\u043c\\u0438\\u043d\\u0443\\u0442\\u044b_\\u043c\\u0438\\u043d\\u0443\\u0442\":\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0443_\\u043c\\u0438\\u043d\\u0443\\u0442\\u044b_\\u043c\\u0438\\u043d\\u0443\\u0442\",hh:\"\\u0447\\u0430\\u0441_\\u0447\\u0430\\u0441\\u0430_\\u0447\\u0430\\u0441\\u043e\\u0432\",dd:\"\\u0434\\u0435\\u043d\\u044c_\\u0434\\u043d\\u044f_\\u0434\\u043d\\u0435\\u0439\",MM:\"\\u043c\\u0435\\u0441\\u044f\\u0446_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0430_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0435\\u0432\",yy:\"\\u0433\\u043e\\u0434_\\u0433\\u043e\\u0434\\u0430_\\u043b\\u0435\\u0442\"}[n].split(\"_\"),r%10==1&&r%100!=11?i[0]:r%10>=2&&r%10<=4&&(r%100<10||r%100>=20)?i[1]:i[2])}var n=[/^\\u044f\\u043d\\u0432/i,/^\\u0444\\u0435\\u0432/i,/^\\u043c\\u0430\\u0440/i,/^\\u0430\\u043f\\u0440/i,/^\\u043c\\u0430[\\u0439\\u044f]/i,/^\\u0438\\u044e\\u043d/i,/^\\u0438\\u044e\\u043b/i,/^\\u0430\\u0432\\u0433/i,/^\\u0441\\u0435\\u043d/i,/^\\u043e\\u043a\\u0442/i,/^\\u043d\\u043e\\u044f/i,/^\\u0434\\u0435\\u043a/i];e.defineLocale(\"ru\",{months:{format:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044f_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044f_\\u043c\\u0430\\u0440\\u0442\\u0430_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044f_\\u043c\\u0430\\u044f_\\u0438\\u044e\\u043d\\u044f_\\u0438\\u044e\\u043b\\u044f_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044f_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044f_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044f_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044f\".split(\"_\"),standalone:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044c_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044c_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044c_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044c_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044c\".split(\"_\")},monthsShort:{format:\"\\u044f\\u043d\\u0432._\\u0444\\u0435\\u0432\\u0440._\\u043c\\u0430\\u0440._\\u0430\\u043f\\u0440._\\u043c\\u0430\\u044f_\\u0438\\u044e\\u043d\\u044f_\\u0438\\u044e\\u043b\\u044f_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043d\\u0442._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u044f\\u0431._\\u0434\\u0435\\u043a.\".split(\"_\"),standalone:\"\\u044f\\u043d\\u0432._\\u0444\\u0435\\u0432\\u0440._\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440._\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043d\\u0442._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u044f\\u0431._\\u0434\\u0435\\u043a.\".split(\"_\")},weekdays:{standalone:\"\\u0432\\u043e\\u0441\\u043a\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c\\u0435_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u044c\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433_\\u043f\\u044f\\u0442\\u043d\\u0438\\u0446\\u0430_\\u0441\\u0443\\u0431\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),format:\"\\u0432\\u043e\\u0441\\u043a\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c\\u0435_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u044c\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0443_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433_\\u043f\\u044f\\u0442\\u043d\\u0438\\u0446\\u0443_\\u0441\\u0443\\u0431\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),isFormat:/\\[ ?[\\u0412\\u0432] ?(?:\\u043f\\u0440\\u043e\\u0448\\u043b\\u0443\\u044e|\\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0443\\u044e|\\u044d\\u0442\\u0443)? ?\\] ?dddd/},weekdaysShort:\"\\u0432\\u0441_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u0432\\u0441_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),monthsParse:n,longMonthsParse:n,shortMonthsParse:n,monthsRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044c\\u044f]|\\u044f\\u043d\\u0432\\.?|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044c\\u044f]|\\u0444\\u0435\\u0432\\u0440?\\.?|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u043c\\u0430\\u0440\\.?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044c\\u044f]|\\u0430\\u043f\\u0440\\.?|\\u043c\\u0430[\\u0439\\u044f]|\\u0438\\u044e\\u043d[\\u044c\\u044f]|\\u0438\\u044e\\u043d\\.?|\\u0438\\u044e\\u043b[\\u044c\\u044f]|\\u0438\\u044e\\u043b\\.?|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0430\\u0432\\u0433\\.?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u0441\\u0435\\u043d\\u0442?\\.?|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043e\\u043a\\u0442\\.?|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043d\\u043e\\u044f\\u0431?\\.?|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044c\\u044f]|\\u0434\\u0435\\u043a\\.?)/i,monthsShortRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044c\\u044f]|\\u044f\\u043d\\u0432\\.?|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044c\\u044f]|\\u0444\\u0435\\u0432\\u0440?\\.?|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u043c\\u0430\\u0440\\.?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044c\\u044f]|\\u0430\\u043f\\u0440\\.?|\\u043c\\u0430[\\u0439\\u044f]|\\u0438\\u044e\\u043d[\\u044c\\u044f]|\\u0438\\u044e\\u043d\\.?|\\u0438\\u044e\\u043b[\\u044c\\u044f]|\\u0438\\u044e\\u043b\\.?|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0430\\u0432\\u0433\\.?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u0441\\u0435\\u043d\\u0442?\\.?|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043e\\u043a\\u0442\\.?|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043d\\u043e\\u044f\\u0431?\\.?|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044c\\u044f]|\\u0434\\u0435\\u043a\\.?)/i,monthsStrictRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044f\\u044c]|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044f\\u044c]|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044f\\u044c]|\\u043c\\u0430[\\u044f\\u0439]|\\u0438\\u044e\\u043d[\\u044f\\u044c]|\\u0438\\u044e\\u043b[\\u044f\\u044c]|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044f\\u044c])/i,monthsShortStrictRegex:/^(\\u044f\\u043d\\u0432\\.|\\u0444\\u0435\\u0432\\u0440?\\.|\\u043c\\u0430\\u0440[\\u0442.]|\\u0430\\u043f\\u0440\\.|\\u043c\\u0430[\\u044f\\u0439]|\\u0438\\u044e\\u043d[\\u044c\\u044f.]|\\u0438\\u044e\\u043b[\\u044c\\u044f.]|\\u0430\\u0432\\u0433\\.|\\u0441\\u0435\\u043d\\u0442?\\.|\\u043e\\u043a\\u0442\\.|\\u043d\\u043e\\u044f\\u0431?\\.|\\u0434\\u0435\\u043a\\.)/i,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0433.\",LLL:\"D MMMM YYYY \\u0433., H:mm\",LLLL:\"dddd, D MMMM YYYY \\u0433., H:mm\"},calendar:{sameDay:\"[\\u0421\\u0435\\u0433\\u043e\\u0434\\u043d\\u044f, \\u0432] LT\",nextDay:\"[\\u0417\\u0430\\u0432\\u0442\\u0440\\u0430, \\u0432] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430, \\u0432] LT\",nextWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[\\u0412\\u043e] dddd, [\\u0432] LT\":\"[\\u0412] dddd, [\\u0432] LT\";switch(this.day()){case 0:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0435\\u0435] dddd, [\\u0432] LT\";case 1:case 2:case 4:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0438\\u0439] dddd, [\\u0432] LT\";case 3:case 5:case 6:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0443\\u044e] dddd, [\\u0432] LT\"}},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[\\u0412\\u043e] dddd, [\\u0432] LT\":\"[\\u0412] dddd, [\\u0432] LT\";switch(this.day()){case 0:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0435] dddd, [\\u0432] LT\";case 1:case 2:case 4:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u044b\\u0439] dddd, [\\u0432] LT\";case 3:case 5:case 6:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u0443\\u044e] dddd, [\\u0432] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u0447\\u0435\\u0440\\u0435\\u0437 %s\",past:\"%s \\u043d\\u0430\\u0437\\u0430\\u0434\",s:\"\\u043d\\u0435\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:t,m:t,mm:t,h:\"\\u0447\\u0430\\u0441\",hh:t,d:\"\\u0434\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0435\\u0441\\u044f\\u0446\",MM:t,y:\"\\u0433\\u043e\\u0434\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u0438|\\u0443\\u0442\\u0440\\u0430|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430/i,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u0438\":e<12?\"\\u0443\\u0442\\u0440\\u0430\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0439|\\u0433\\u043e|\\u044f)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":return e+\"-\\u0439\";case\"D\":return e+\"-\\u0433\\u043e\";case\"w\":case\"W\":return e+\"-\\u044f\";default:return e}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},lYtQ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){switch(n){case\"s\":return t?\"\\u0445\\u044d\\u0434\\u0445\\u044d\\u043d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0445\\u044d\\u0434\\u0445\\u044d\\u043d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b\\u043d\";case\"ss\":return e+(t?\" \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\" \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b\\u043d\");case\"m\":case\"mm\":return e+(t?\" \\u043c\\u0438\\u043d\\u0443\\u0442\":\" \\u043c\\u0438\\u043d\\u0443\\u0442\\u044b\\u043d\");case\"h\":case\"hh\":return e+(t?\" \\u0446\\u0430\\u0433\":\" \\u0446\\u0430\\u0433\\u0438\\u0439\\u043d\");case\"d\":case\"dd\":return e+(t?\" \\u04e9\\u0434\\u04e9\\u0440\":\" \\u04e9\\u0434\\u0440\\u0438\\u0439\\u043d\");case\"M\":case\"MM\":return e+(t?\" \\u0441\\u0430\\u0440\":\" \\u0441\\u0430\\u0440\\u044b\\u043d\");case\"y\":case\"yy\":return e+(t?\" \\u0436\\u0438\\u043b\":\" \\u0436\\u0438\\u043b\\u0438\\u0439\\u043d\");default:return e}}e.defineLocale(\"mn\",{months:\"\\u041d\\u044d\\u0433\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0425\\u043e\\u0451\\u0440\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0413\\u0443\\u0440\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0414\\u04e9\\u0440\\u04e9\\u0432\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0422\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0417\\u0443\\u0440\\u0433\\u0430\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0414\\u043e\\u043b\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u041d\\u0430\\u0439\\u043c\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0415\\u0441\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0432\\u0430\\u043d \\u043d\\u044d\\u0433\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0432\\u0430\\u043d \\u0445\\u043e\\u0451\\u0440\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440\".split(\"_\"),monthsShort:\"1 \\u0441\\u0430\\u0440_2 \\u0441\\u0430\\u0440_3 \\u0441\\u0430\\u0440_4 \\u0441\\u0430\\u0440_5 \\u0441\\u0430\\u0440_6 \\u0441\\u0430\\u0440_7 \\u0441\\u0430\\u0440_8 \\u0441\\u0430\\u0440_9 \\u0441\\u0430\\u0440_10 \\u0441\\u0430\\u0440_11 \\u0441\\u0430\\u0440_12 \\u0441\\u0430\\u0440\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u041d\\u044f\\u043c_\\u0414\\u0430\\u0432\\u0430\\u0430_\\u041c\\u044f\\u0433\\u043c\\u0430\\u0440_\\u041b\\u0445\\u0430\\u0433\\u0432\\u0430_\\u041f\\u04af\\u0440\\u044d\\u0432_\\u0411\\u0430\\u0430\\u0441\\u0430\\u043d_\\u0411\\u044f\\u043c\\u0431\\u0430\".split(\"_\"),weekdaysShort:\"\\u041d\\u044f\\u043c_\\u0414\\u0430\\u0432_\\u041c\\u044f\\u0433_\\u041b\\u0445\\u0430_\\u041f\\u04af\\u0440_\\u0411\\u0430\\u0430_\\u0411\\u044f\\u043c\".split(\"_\"),weekdaysMin:\"\\u041d\\u044f_\\u0414\\u0430_\\u041c\\u044f_\\u041b\\u0445_\\u041f\\u04af_\\u0411\\u0430_\\u0411\\u044f\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D\",LLL:\"YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D HH:mm\",LLLL:\"dddd, YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D HH:mm\"},meridiemParse:/\\u04ae\\u04e8|\\u04ae\\u0425/i,isPM:function(e){return\"\\u04ae\\u0425\"===e},meridiem:function(e,t,n){return e<12?\"\\u04ae\\u04e8\":\"\\u04ae\\u0425\"},calendar:{sameDay:\"[\\u04e8\\u043d\\u04e9\\u04e9\\u0434\\u04e9\\u0440] LT\",nextDay:\"[\\u041c\\u0430\\u0440\\u0433\\u0430\\u0430\\u0448] LT\",nextWeek:\"[\\u0418\\u0440\\u044d\\u0445] dddd LT\",lastDay:\"[\\u04e8\\u0447\\u0438\\u0433\\u0434\\u04e9\\u0440] LT\",lastWeek:\"[\\u04e8\\u043d\\u0433\\u04e9\\u0440\\u0441\\u04e9\\u043d] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0434\\u0430\\u0440\\u0430\\u0430\",past:\"%s \\u04e9\\u043c\\u043d\\u04e9\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2} \\u04e9\\u0434\\u04e9\\u0440/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\" \\u04e9\\u0434\\u04e9\\u0440\";default:return e}}})}(n(\"wd/R\"))},lgnt:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0447\\u04af\",1:\"-\\u0447\\u0438\",2:\"-\\u0447\\u0438\",3:\"-\\u0447\\u04af\",4:\"-\\u0447\\u04af\",5:\"-\\u0447\\u0438\",6:\"-\\u0447\\u044b\",7:\"-\\u0447\\u0438\",8:\"-\\u0447\\u0438\",9:\"-\\u0447\\u0443\",10:\"-\\u0447\\u0443\",20:\"-\\u0447\\u044b\",30:\"-\\u0447\\u0443\",40:\"-\\u0447\\u044b\",50:\"-\\u0447\\u04af\",60:\"-\\u0447\\u044b\",70:\"-\\u0447\\u0438\",80:\"-\\u0447\\u0438\",90:\"-\\u0447\\u0443\",100:\"-\\u0447\\u04af\"};e.defineLocale(\"ky\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044c_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044c_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044c_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044c_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044c\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u0416\\u0435\\u043a\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0414\\u04af\\u0439\\u0448\\u04e9\\u043c\\u0431\\u04af_\\u0428\\u0435\\u0439\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0428\\u0430\\u0440\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0411\\u0435\\u0439\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0416\\u0443\\u043c\\u0430_\\u0418\\u0448\\u0435\\u043c\\u0431\\u0438\".split(\"_\"),weekdaysShort:\"\\u0416\\u0435\\u043a_\\u0414\\u04af\\u0439_\\u0428\\u0435\\u0439_\\u0428\\u0430\\u0440_\\u0411\\u0435\\u0439_\\u0416\\u0443\\u043c_\\u0418\\u0448\\u0435\".split(\"_\"),weekdaysMin:\"\\u0416\\u043a_\\u0414\\u0439_\\u0428\\u0439_\\u0428\\u0440_\\u0411\\u0439_\\u0416\\u043c_\\u0418\\u0448\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0411\\u04af\\u0433\\u04af\\u043d \\u0441\\u0430\\u0430\\u0442] LT\",nextDay:\"[\\u042d\\u0440\\u0442\\u0435\\u04a3 \\u0441\\u0430\\u0430\\u0442] LT\",nextWeek:\"dddd [\\u0441\\u0430\\u0430\\u0442] LT\",lastDay:\"[\\u041a\\u0435\\u0447\\u044d\\u044d \\u0441\\u0430\\u0430\\u0442] LT\",lastWeek:\"[\\u04e8\\u0442\\u043a\\u04e9\\u043d \\u0430\\u043f\\u0442\\u0430\\u043d\\u044b\\u043d] dddd [\\u043a\\u04af\\u043d\\u04af] [\\u0441\\u0430\\u0430\\u0442] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0438\\u0447\\u0438\\u043d\\u0434\\u0435\",past:\"%s \\u043c\\u0443\\u0440\\u0443\\u043d\",s:\"\\u0431\\u0438\\u0440\\u043d\\u0435\\u0447\\u0435 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:\"\\u0431\\u0438\\u0440 \\u043c\\u04af\\u043d\\u04e9\\u0442\",mm:\"%d \\u043c\\u04af\\u043d\\u04e9\\u0442\",h:\"\\u0431\\u0438\\u0440 \\u0441\\u0430\\u0430\\u0442\",hh:\"%d \\u0441\\u0430\\u0430\\u0442\",d:\"\\u0431\\u0438\\u0440 \\u043a\\u04af\\u043d\",dd:\"%d \\u043a\\u04af\\u043d\",M:\"\\u0431\\u0438\\u0440 \\u0430\\u0439\",MM:\"%d \\u0430\\u0439\",y:\"\\u0431\\u0438\\u0440 \\u0436\\u044b\\u043b\",yy:\"%d \\u0436\\u044b\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0447\\u0438|\\u0447\\u044b|\\u0447\\u04af|\\u0447\\u0443)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},lyxo:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r=\" \";return(e%100>=20||e>=100&&e%100==0)&&(r=\" de \"),e+r+{ss:\"secunde\",mm:\"minute\",hh:\"ore\",dd:\"zile\",MM:\"luni\",yy:\"ani\"}[n]}e.defineLocale(\"ro\",{months:\"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie\".split(\"_\"),monthsShort:\"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"duminic\\u0103_luni_mar\\u021bi_miercuri_joi_vineri_s\\xe2mb\\u0103t\\u0103\".split(\"_\"),weekdaysShort:\"Dum_Lun_Mar_Mie_Joi_Vin_S\\xe2m\".split(\"_\"),weekdaysMin:\"Du_Lu_Ma_Mi_Jo_Vi_S\\xe2\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[azi la] LT\",nextDay:\"[m\\xe2ine la] LT\",nextWeek:\"dddd [la] LT\",lastDay:\"[ieri la] LT\",lastWeek:\"[fosta] dddd [la] LT\",sameElse:\"L\"},relativeTime:{future:\"peste %s\",past:\"%s \\xeen urm\\u0103\",s:\"c\\xe2teva secunde\",ss:t,m:\"un minut\",mm:t,h:\"o or\\u0103\",hh:t,d:\"o zi\",dd:t,M:\"o lun\\u0103\",MM:t,y:\"un an\",yy:t},week:{dow:1,doy:7}})}(n(\"wd/R\"))},m4GZ:function(e,t){function n(e){this.message=e}(n.prototype=new Error).name=\"InvalidCharacterError\",e.exports=\"undefined\"!=typeof window&&window.atob&&window.atob.bind(window)||function(e){var t=String(e).replace(/=+$/,\"\");if(t.length%4==1)throw new n(\"'atob' failed: The string to be decoded is not correctly encoded.\");for(var r,i,a=0,o=0,s=\"\";i=t.charAt(o++);~i&&(r=a%4?64*r+i:i,a++%4)?s+=String.fromCharCode(255&r>>(-2*a&6)):0)i=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\".indexOf(i);return s}},nyYc:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|)/,ordinal:function(e,t){switch(t){case\"D\":return e+(1===e?\"er\":\"\");default:case\"M\":case\"Q\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},o1bE:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-dz\",{months:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0627\\u062d\\u062f_\\u0627\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u0623\\u062d_\\u0625\\u062b_\\u062b\\u0644\\u0627_\\u0623\\u0631_\\u062e\\u0645_\\u062c\\u0645_\\u0633\\u0628\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:0,doy:4}})}(n(\"wd/R\"))},\"p/rL\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bm\",{months:\"Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_M\\u025bkalo_Zuw\\u025bnkalo_Zuluyekalo_Utikalo_S\\u025btanburukalo_\\u0254kut\\u0254burukalo_Nowanburukalo_Desanburukalo\".split(\"_\"),monthsShort:\"Zan_Few_Mar_Awi_M\\u025b_Zuw_Zul_Uti_S\\u025bt_\\u0254ku_Now_Des\".split(\"_\"),weekdays:\"Kari_Nt\\u025bn\\u025bn_Tarata_Araba_Alamisa_Juma_Sibiri\".split(\"_\"),weekdaysShort:\"Kar_Nt\\u025b_Tar_Ara_Ala_Jum_Sib\".split(\"_\"),weekdaysMin:\"Ka_Nt_Ta_Ar_Al_Ju_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"MMMM [tile] D [san] YYYY\",LLL:\"MMMM [tile] D [san] YYYY [l\\u025br\\u025b] HH:mm\",LLLL:\"dddd MMMM [tile] D [san] YYYY [l\\u025br\\u025b] HH:mm\"},calendar:{sameDay:\"[Bi l\\u025br\\u025b] LT\",nextDay:\"[Sini l\\u025br\\u025b] LT\",nextWeek:\"dddd [don l\\u025br\\u025b] LT\",lastDay:\"[Kunu l\\u025br\\u025b] LT\",lastWeek:\"dddd [t\\u025bm\\u025bnen l\\u025br\\u025b] LT\",sameElse:\"L\"},relativeTime:{future:\"%s k\\u0254n\\u0254\",past:\"a b\\u025b %s b\\u0254\",s:\"sanga dama dama\",ss:\"sekondi %d\",m:\"miniti kelen\",mm:\"miniti %d\",h:\"l\\u025br\\u025b kelen\",hh:\"l\\u025br\\u025b %d\",d:\"tile kelen\",dd:\"tile %d\",M:\"kalo kelen\",MM:\"kalo %d\",y:\"san kelen\",yy:\"san %d\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},raLr:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r,i;return\"m\"===n?t?\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0430\":\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0443\":\"h\"===n?t?\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\":\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\":e+\" \"+(r=+e,i={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0430_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0438_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\":\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0443_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0438_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\",hh:t?\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430_\\u0433\\u043e\\u0434\\u0438\\u043d\\u0438_\\u0433\\u043e\\u0434\\u0438\\u043d\":\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443_\\u0433\\u043e\\u0434\\u0438\\u043d\\u0438_\\u0433\\u043e\\u0434\\u0438\\u043d\",dd:\"\\u0434\\u0435\\u043d\\u044c_\\u0434\\u043d\\u0456_\\u0434\\u043d\\u0456\\u0432\",MM:\"\\u043c\\u0456\\u0441\\u044f\\u0446\\u044c_\\u043c\\u0456\\u0441\\u044f\\u0446\\u0456_\\u043c\\u0456\\u0441\\u044f\\u0446\\u0456\\u0432\",yy:\"\\u0440\\u0456\\u043a_\\u0440\\u043e\\u043a\\u0438_\\u0440\\u043e\\u043a\\u0456\\u0432\"}[n].split(\"_\"),r%10==1&&r%100!=11?i[0]:r%10>=2&&r%10<=4&&(r%100<10||r%100>=20)?i[1]:i[2])}function n(e){return function(){return e+\"\\u043e\"+(11===this.hours()?\"\\u0431\":\"\")+\"] LT\"}}e.defineLocale(\"uk\",{months:{format:\"\\u0441\\u0456\\u0447\\u043d\\u044f_\\u043b\\u044e\\u0442\\u043e\\u0433\\u043e_\\u0431\\u0435\\u0440\\u0435\\u0437\\u043d\\u044f_\\u043a\\u0432\\u0456\\u0442\\u043d\\u044f_\\u0442\\u0440\\u0430\\u0432\\u043d\\u044f_\\u0447\\u0435\\u0440\\u0432\\u043d\\u044f_\\u043b\\u0438\\u043f\\u043d\\u044f_\\u0441\\u0435\\u0440\\u043f\\u043d\\u044f_\\u0432\\u0435\\u0440\\u0435\\u0441\\u043d\\u044f_\\u0436\\u043e\\u0432\\u0442\\u043d\\u044f_\\u043b\\u0438\\u0441\\u0442\\u043e\\u043f\\u0430\\u0434\\u0430_\\u0433\\u0440\\u0443\\u0434\\u043d\\u044f\".split(\"_\"),standalone:\"\\u0441\\u0456\\u0447\\u0435\\u043d\\u044c_\\u043b\\u044e\\u0442\\u0438\\u0439_\\u0431\\u0435\\u0440\\u0435\\u0437\\u0435\\u043d\\u044c_\\u043a\\u0432\\u0456\\u0442\\u0435\\u043d\\u044c_\\u0442\\u0440\\u0430\\u0432\\u0435\\u043d\\u044c_\\u0447\\u0435\\u0440\\u0432\\u0435\\u043d\\u044c_\\u043b\\u0438\\u043f\\u0435\\u043d\\u044c_\\u0441\\u0435\\u0440\\u043f\\u0435\\u043d\\u044c_\\u0432\\u0435\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c_\\u0436\\u043e\\u0432\\u0442\\u0435\\u043d\\u044c_\\u043b\\u0438\\u0441\\u0442\\u043e\\u043f\\u0430\\u0434_\\u0433\\u0440\\u0443\\u0434\\u0435\\u043d\\u044c\".split(\"_\")},monthsShort:\"\\u0441\\u0456\\u0447_\\u043b\\u044e\\u0442_\\u0431\\u0435\\u0440_\\u043a\\u0432\\u0456\\u0442_\\u0442\\u0440\\u0430\\u0432_\\u0447\\u0435\\u0440\\u0432_\\u043b\\u0438\\u043f_\\u0441\\u0435\\u0440\\u043f_\\u0432\\u0435\\u0440_\\u0436\\u043e\\u0432\\u0442_\\u043b\\u0438\\u0441\\u0442_\\u0433\\u0440\\u0443\\u0434\".split(\"_\"),weekdays:function(e,t){var n={nominative:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u044f_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043e\\u043a_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043e\\u043a_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u044f_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),accusative:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u044e_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043e\\u043a_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043e\\u043a_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0443_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u044e_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),genitive:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u0456_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043a\\u0430_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043a\\u0430_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0438_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433\\u0430_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u0456_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0438\".split(\"_\")};return!0===e?n.nominative.slice(1,7).concat(n.nominative.slice(0,1)):e?n[/(\\[[\\u0412\\u0432\\u0423\\u0443]\\]) ?dddd/.test(t)?\"accusative\":/\\[?(?:\\u043c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0457|\\u043d\\u0430\\u0441\\u0442\\u0443\\u043f\\u043d\\u043e\\u0457)? ?\\] ?dddd/.test(t)?\"genitive\":\"nominative\"][e.day()]:n.nominative},weekdaysShort:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0440.\",LLL:\"D MMMM YYYY \\u0440., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0440., HH:mm\"},calendar:{sameDay:n(\"[\\u0421\\u044c\\u043e\\u0433\\u043e\\u0434\\u043d\\u0456 \"),nextDay:n(\"[\\u0417\\u0430\\u0432\\u0442\\u0440\\u0430 \"),lastDay:n(\"[\\u0412\\u0447\\u043e\\u0440\\u0430 \"),nextWeek:n(\"[\\u0423] dddd [\"),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return n(\"[\\u041c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0457] dddd [\").call(this);case 1:case 2:case 4:return n(\"[\\u041c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0433\\u043e] dddd [\").call(this)}},sameElse:\"L\"},relativeTime:{future:\"\\u0437\\u0430 %s\",past:\"%s \\u0442\\u043e\\u043c\\u0443\",s:\"\\u0434\\u0435\\u043a\\u0456\\u043b\\u044c\\u043a\\u0430 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:t,m:t,mm:t,h:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\",hh:t,d:\"\\u0434\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0456\\u0441\\u044f\\u0446\\u044c\",MM:t,y:\"\\u0440\\u0456\\u043a\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u0456|\\u0440\\u0430\\u043d\\u043a\\u0443|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430/,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u0456\":e<12?\"\\u0440\\u0430\\u043d\\u043a\\u0443\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0439|\\u0433\\u043e)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e+\"-\\u0439\";case\"D\":return e+\"-\\u0433\\u043e\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"s+uk\":function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?i[n][0]:i[n][1]}e.defineLocale(\"de-at\",{months:\"J\\xe4nner_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"J\\xe4n._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},sp3z:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"lo\",{months:\"\\u0ea1\\u0eb1\\u0e87\\u0e81\\u0ead\\u0e99_\\u0e81\\u0eb8\\u0ea1\\u0e9e\\u0eb2_\\u0ea1\\u0eb5\\u0e99\\u0eb2_\\u0ec0\\u0ea1\\u0eaa\\u0eb2_\\u0e9e\\u0eb6\\u0e94\\u0eaa\\u0eb0\\u0e9e\\u0eb2_\\u0ea1\\u0eb4\\u0e96\\u0eb8\\u0e99\\u0eb2_\\u0e81\\u0ecd\\u0ea5\\u0eb0\\u0e81\\u0ebb\\u0e94_\\u0eaa\\u0eb4\\u0e87\\u0eab\\u0eb2_\\u0e81\\u0eb1\\u0e99\\u0e8d\\u0eb2_\\u0e95\\u0eb8\\u0ea5\\u0eb2_\\u0e9e\\u0eb0\\u0e88\\u0eb4\\u0e81_\\u0e97\\u0eb1\\u0e99\\u0ea7\\u0eb2\".split(\"_\"),monthsShort:\"\\u0ea1\\u0eb1\\u0e87\\u0e81\\u0ead\\u0e99_\\u0e81\\u0eb8\\u0ea1\\u0e9e\\u0eb2_\\u0ea1\\u0eb5\\u0e99\\u0eb2_\\u0ec0\\u0ea1\\u0eaa\\u0eb2_\\u0e9e\\u0eb6\\u0e94\\u0eaa\\u0eb0\\u0e9e\\u0eb2_\\u0ea1\\u0eb4\\u0e96\\u0eb8\\u0e99\\u0eb2_\\u0e81\\u0ecd\\u0ea5\\u0eb0\\u0e81\\u0ebb\\u0e94_\\u0eaa\\u0eb4\\u0e87\\u0eab\\u0eb2_\\u0e81\\u0eb1\\u0e99\\u0e8d\\u0eb2_\\u0e95\\u0eb8\\u0ea5\\u0eb2_\\u0e9e\\u0eb0\\u0e88\\u0eb4\\u0e81_\\u0e97\\u0eb1\\u0e99\\u0ea7\\u0eb2\".split(\"_\"),weekdays:\"\\u0ead\\u0eb2\\u0e97\\u0eb4\\u0e94_\\u0e88\\u0eb1\\u0e99_\\u0ead\\u0eb1\\u0e87\\u0e84\\u0eb2\\u0e99_\\u0e9e\\u0eb8\\u0e94_\\u0e9e\\u0eb0\\u0eab\\u0eb1\\u0e94_\\u0eaa\\u0eb8\\u0e81_\\u0ec0\\u0eaa\\u0ebb\\u0eb2\".split(\"_\"),weekdaysShort:\"\\u0e97\\u0eb4\\u0e94_\\u0e88\\u0eb1\\u0e99_\\u0ead\\u0eb1\\u0e87\\u0e84\\u0eb2\\u0e99_\\u0e9e\\u0eb8\\u0e94_\\u0e9e\\u0eb0\\u0eab\\u0eb1\\u0e94_\\u0eaa\\u0eb8\\u0e81_\\u0ec0\\u0eaa\\u0ebb\\u0eb2\".split(\"_\"),weekdaysMin:\"\\u0e97_\\u0e88_\\u0ead\\u0e84_\\u0e9e_\\u0e9e\\u0eab_\\u0eaa\\u0e81_\\u0eaa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"\\u0ea7\\u0eb1\\u0e99dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0e95\\u0ead\\u0e99\\u0ec0\\u0e8a\\u0ebb\\u0ec9\\u0eb2|\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87/,isPM:function(e){return\"\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87\"===e},meridiem:function(e,t,n){return e<12?\"\\u0e95\\u0ead\\u0e99\\u0ec0\\u0e8a\\u0ebb\\u0ec9\\u0eb2\":\"\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87\"},calendar:{sameDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",nextDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0ead\\u0eb7\\u0ec8\\u0e99\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",nextWeek:\"[\\u0ea7\\u0eb1\\u0e99]dddd[\\u0edc\\u0ec9\\u0eb2\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",lastDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0ea7\\u0eb2\\u0e99\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",lastWeek:\"[\\u0ea7\\u0eb1\\u0e99]dddd[\\u0ec1\\u0ea5\\u0ec9\\u0ea7\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0ead\\u0eb5\\u0e81 %s\",past:\"%s\\u0e9c\\u0ec8\\u0eb2\\u0e99\\u0ea1\\u0eb2\",s:\"\\u0e9a\\u0ecd\\u0ec8\\u0ec0\\u0e97\\u0ebb\\u0ec8\\u0eb2\\u0ec3\\u0e94\\u0ea7\\u0eb4\\u0e99\\u0eb2\\u0e97\\u0eb5\",ss:\"%d \\u0ea7\\u0eb4\\u0e99\\u0eb2\\u0e97\\u0eb5\",m:\"1 \\u0e99\\u0eb2\\u0e97\\u0eb5\",mm:\"%d \\u0e99\\u0eb2\\u0e97\\u0eb5\",h:\"1 \\u0e8a\\u0ebb\\u0ec8\\u0ea7\\u0ec2\\u0ea1\\u0e87\",hh:\"%d \\u0e8a\\u0ebb\\u0ec8\\u0ea7\\u0ec2\\u0ea1\\u0e87\",d:\"1 \\u0ea1\\u0eb7\\u0ec9\",dd:\"%d \\u0ea1\\u0eb7\\u0ec9\",M:\"1 \\u0ec0\\u0e94\\u0eb7\\u0ead\\u0e99\",MM:\"%d \\u0ec0\\u0e94\\u0eb7\\u0ead\\u0e99\",y:\"1 \\u0e9b\\u0eb5\",yy:\"%d \\u0e9b\\u0eb5\"},dayOfMonthOrdinalParse:/(\\u0e97\\u0eb5\\u0ec8)\\d{1,2}/,ordinal:function(e){return\"\\u0e97\\u0eb5\\u0ec8\"+e}})}(n(\"wd/R\"))},tGlX:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?i[n][0]:i[n][1]}e.defineLocale(\"de\",{months:\"Januar_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},tT3J:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm-latn\",{months:\"innayr_br\\u02e4ayr\\u02e4_mar\\u02e4s\\u02e4_ibrir_mayyw_ywnyw_ywlywz_\\u0263w\\u0161t_\\u0161wtanbir_kt\\u02e4wbr\\u02e4_nwwanbir_dwjnbir\".split(\"_\"),monthsShort:\"innayr_br\\u02e4ayr\\u02e4_mar\\u02e4s\\u02e4_ibrir_mayyw_ywnyw_ywlywz_\\u0263w\\u0161t_\\u0161wtanbir_kt\\u02e4wbr\\u02e4_nwwanbir_dwjnbir\".split(\"_\"),weekdays:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),weekdaysShort:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),weekdaysMin:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[asdkh g] LT\",nextDay:\"[aska g] LT\",nextWeek:\"dddd [g] LT\",lastDay:\"[assant g] LT\",lastWeek:\"dddd [g] LT\",sameElse:\"L\"},relativeTime:{future:\"dadkh s yan %s\",past:\"yan %s\",s:\"imik\",ss:\"%d imik\",m:\"minu\\u1e0d\",mm:\"%d minu\\u1e0d\",h:\"sa\\u025ba\",hh:\"%d tassa\\u025bin\",d:\"ass\",dd:\"%d ossan\",M:\"ayowr\",MM:\"%d iyyirn\",y:\"asgas\",yy:\"%d isgasn\"},week:{dow:6,doy:12}})}(n(\"wd/R\"))},tUCv:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"jv\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des\".split(\"_\"),weekdays:\"Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Reb_Kem_Jem_Sep\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sp\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/enjing|siyang|sonten|ndalu/,meridiemHour:function(e,t){return 12===e&&(e=0),\"enjing\"===t?e:\"siyang\"===t?e>=11?e:e+12:\"sonten\"===t||\"ndalu\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"enjing\":e<15?\"siyang\":e<19?\"sonten\":\"ndalu\"},calendar:{sameDay:\"[Dinten puniko pukul] LT\",nextDay:\"[Mbenjang pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kala wingi pukul] LT\",lastWeek:\"dddd [kepengker pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"wonten ing %s\",past:\"%s ingkang kepengker\",s:\"sawetawis detik\",ss:\"%d detik\",m:\"setunggal menit\",mm:\"%d menit\",h:\"setunggal jam\",hh:\"%d jam\",d:\"sedinten\",dd:\"%d dinten\",M:\"sewulan\",MM:\"%d wulan\",y:\"setaun\",yy:\"%d taun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},u3GI:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?i[n][0]:i[n][1]}e.defineLocale(\"de-ch\",{months:\"Januar_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},uEye:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nn\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\"),weekdays:\"sundag_m\\xe5ndag_tysdag_onsdag_torsdag_fredag_laurdag\".split(\"_\"),weekdaysShort:\"sun_m\\xe5n_tys_ons_tor_fre_lau\".split(\"_\"),weekdaysMin:\"su_m\\xe5_ty_on_to_fr_l\\xf8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] H:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[I dag klokka] LT\",nextDay:\"[I morgon klokka] LT\",nextWeek:\"dddd [klokka] LT\",lastDay:\"[I g\\xe5r klokka] LT\",lastWeek:\"[F\\xf8reg\\xe5ande] dddd [klokka] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s sidan\",s:\"nokre sekund\",ss:\"%d sekund\",m:\"eit minutt\",mm:\"%d minutt\",h:\"ein time\",hh:\"%d timar\",d:\"ein dag\",dd:\"%d dagar\",M:\"ein m\\xe5nad\",MM:\"%d m\\xe5nader\",y:\"eit \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},uXwI:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekundes_sekund\\u0113m_sekunde_sekundes\".split(\"_\"),m:\"min\\u016btes_min\\u016bt\\u0113m_min\\u016bte_min\\u016btes\".split(\"_\"),mm:\"min\\u016btes_min\\u016bt\\u0113m_min\\u016bte_min\\u016btes\".split(\"_\"),h:\"stundas_stund\\u0101m_stunda_stundas\".split(\"_\"),hh:\"stundas_stund\\u0101m_stunda_stundas\".split(\"_\"),d:\"dienas_dien\\u0101m_diena_dienas\".split(\"_\"),dd:\"dienas_dien\\u0101m_diena_dienas\".split(\"_\"),M:\"m\\u0113ne\\u0161a_m\\u0113ne\\u0161iem_m\\u0113nesis_m\\u0113ne\\u0161i\".split(\"_\"),MM:\"m\\u0113ne\\u0161a_m\\u0113ne\\u0161iem_m\\u0113nesis_m\\u0113ne\\u0161i\".split(\"_\"),y:\"gada_gadiem_gads_gadi\".split(\"_\"),yy:\"gada_gadiem_gads_gadi\".split(\"_\")};function n(e,t,n){return n?t%10==1&&t%100!=11?e[2]:e[3]:t%10==1&&t%100!=11?e[0]:e[1]}function r(e,r,i){return e+\" \"+n(t[i],e,r)}function i(e,r,i){return n(t[i],e,r)}e.defineLocale(\"lv\",{months:\"janv\\u0101ris_febru\\u0101ris_marts_apr\\u012blis_maijs_j\\u016bnijs_j\\u016blijs_augusts_septembris_oktobris_novembris_decembris\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_j\\u016bn_j\\u016bl_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"sv\\u0113tdiena_pirmdiena_otrdiena_tre\\u0161diena_ceturtdiena_piektdiena_sestdiena\".split(\"_\"),weekdaysShort:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysMin:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY.\",LL:\"YYYY. [gada] D. MMMM\",LLL:\"YYYY. [gada] D. MMMM, HH:mm\",LLLL:\"YYYY. [gada] D. MMMM, dddd, HH:mm\"},calendar:{sameDay:\"[\\u0160odien pulksten] LT\",nextDay:\"[R\\u012bt pulksten] LT\",nextWeek:\"dddd [pulksten] LT\",lastDay:\"[Vakar pulksten] LT\",lastWeek:\"[Pag\\u0101ju\\u0161\\u0101] dddd [pulksten] LT\",sameElse:\"L\"},relativeTime:{future:\"p\\u0113c %s\",past:\"pirms %s\",s:function(e,t){return t?\"da\\u017eas sekundes\":\"da\\u017e\\u0101m sekund\\u0113m\"},ss:r,m:i,mm:r,h:i,hh:r,d:i,dd:r,M:i,MM:r,y:i,yy:r},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},wQk9:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm\",{months:\"\\u2d49\\u2d4f\\u2d4f\\u2d30\\u2d62\\u2d54_\\u2d31\\u2d55\\u2d30\\u2d62\\u2d55_\\u2d4e\\u2d30\\u2d55\\u2d5a_\\u2d49\\u2d31\\u2d54\\u2d49\\u2d54_\\u2d4e\\u2d30\\u2d62\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4f\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4d\\u2d62\\u2d53\\u2d63_\\u2d56\\u2d53\\u2d5b\\u2d5c_\\u2d5b\\u2d53\\u2d5c\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d3d\\u2d5f\\u2d53\\u2d31\\u2d55_\\u2d4f\\u2d53\\u2d61\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d37\\u2d53\\u2d4a\\u2d4f\\u2d31\\u2d49\\u2d54\".split(\"_\"),monthsShort:\"\\u2d49\\u2d4f\\u2d4f\\u2d30\\u2d62\\u2d54_\\u2d31\\u2d55\\u2d30\\u2d62\\u2d55_\\u2d4e\\u2d30\\u2d55\\u2d5a_\\u2d49\\u2d31\\u2d54\\u2d49\\u2d54_\\u2d4e\\u2d30\\u2d62\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4f\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4d\\u2d62\\u2d53\\u2d63_\\u2d56\\u2d53\\u2d5b\\u2d5c_\\u2d5b\\u2d53\\u2d5c\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d3d\\u2d5f\\u2d53\\u2d31\\u2d55_\\u2d4f\\u2d53\\u2d61\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d37\\u2d53\\u2d4a\\u2d4f\\u2d31\\u2d49\\u2d54\".split(\"_\"),weekdays:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),weekdaysShort:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),weekdaysMin:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u2d30\\u2d59\\u2d37\\u2d45 \\u2d34] LT\",nextDay:\"[\\u2d30\\u2d59\\u2d3d\\u2d30 \\u2d34] LT\",nextWeek:\"dddd [\\u2d34] LT\",lastDay:\"[\\u2d30\\u2d5a\\u2d30\\u2d4f\\u2d5c \\u2d34] LT\",lastWeek:\"dddd [\\u2d34] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u2d37\\u2d30\\u2d37\\u2d45 \\u2d59 \\u2d62\\u2d30\\u2d4f %s\",past:\"\\u2d62\\u2d30\\u2d4f %s\",s:\"\\u2d49\\u2d4e\\u2d49\\u2d3d\",ss:\"%d \\u2d49\\u2d4e\\u2d49\\u2d3d\",m:\"\\u2d4e\\u2d49\\u2d4f\\u2d53\\u2d3a\",mm:\"%d \\u2d4e\\u2d49\\u2d4f\\u2d53\\u2d3a\",h:\"\\u2d59\\u2d30\\u2d44\\u2d30\",hh:\"%d \\u2d5c\\u2d30\\u2d59\\u2d59\\u2d30\\u2d44\\u2d49\\u2d4f\",d:\"\\u2d30\\u2d59\\u2d59\",dd:\"%d o\\u2d59\\u2d59\\u2d30\\u2d4f\",M:\"\\u2d30\\u2d62o\\u2d53\\u2d54\",MM:\"%d \\u2d49\\u2d62\\u2d62\\u2d49\\u2d54\\u2d4f\",y:\"\\u2d30\\u2d59\\u2d33\\u2d30\\u2d59\",yy:\"%d \\u2d49\\u2d59\\u2d33\\u2d30\\u2d59\\u2d4f\"},week:{dow:6,doy:12}})}(n(\"wd/R\"))},\"wd/R\":function(e,t,n){(function(e){e.exports=function(){\"use strict\";var t,r;function i(){return t.apply(null,arguments)}function a(e){return e instanceof Array||\"[object Array]\"===Object.prototype.toString.call(e)}function o(e){return null!=e&&\"[object Object]\"===Object.prototype.toString.call(e)}function s(e){return void 0===e}function l(e){return\"number\"==typeof e||\"[object Number]\"===Object.prototype.toString.call(e)}function u(e){return e instanceof Date||\"[object Date]\"===Object.prototype.toString.call(e)}function c(e,t){var n,r=[];for(n=0;n>>0,r=0;r0)for(n=0;n=0?n?\"+\":\"\":\"-\")+Math.pow(10,Math.max(0,t-r.length)).toString().substr(1)+r}var N=/(\\[[^\\[]*\\])|(\\\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,z=/(\\[[^\\[]*\\])|(\\\\)?(LTS|LT|LL?L?L?|l{1,4})/g,V={},W={};function U(e,t,n,r){var i=r;\"string\"==typeof r&&(i=function(){return this[r]()}),e&&(W[e]=i),t&&(W[t[0]]=function(){return F(i.apply(this,arguments),t[1],t[2])}),n&&(W[n]=function(){return this.localeData().ordinal(i.apply(this,arguments),e)})}function B(e,t){return e.isValid()?(t=q(t,e.localeData()),V[t]=V[t]||function(e){var t,n,r,i=e.match(N);for(t=0,n=i.length;t=0&&z.test(e);)e=e.replace(z,r),z.lastIndex=0,n-=1;return e}var G=/\\d/,$=/\\d\\d/,J=/\\d{3}/,K=/\\d{4}/,Z=/[+-]?\\d{6}/,Q=/\\d\\d?/,X=/\\d\\d\\d\\d?/,ee=/\\d\\d\\d\\d\\d\\d?/,te=/\\d{1,3}/,ne=/\\d{1,4}/,re=/[+-]?\\d{1,6}/,ie=/\\d+/,ae=/[+-]?\\d+/,oe=/Z|[+-]\\d\\d:?\\d\\d/gi,se=/Z|[+-]\\d\\d(?::?\\d\\d)?/gi,le=/[0-9]{0,256}['a-z\\u00A0-\\u05FF\\u0700-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFF07\\uFF10-\\uFFEF]{1,256}|[\\u0600-\\u06FF\\/]{1,256}(\\s*?[\\u0600-\\u06FF]{1,256}){1,2}/i,ue={};function ce(e,t,n){ue[e]=O(t)?t:function(e,r){return e&&n?n:t}}function de(e,t){return d(ue,e)?ue[e](t._strict,t._locale):new RegExp(he(e.replace(\"\\\\\",\"\").replace(/\\\\(\\[)|\\\\(\\])|\\[([^\\]\\[]*)\\]|\\\\(.)/g,(function(e,t,n,r,i){return t||n||r||i}))))}function he(e){return e.replace(/[-\\/\\\\^$*+?.()|[\\]{}]/g,\"\\\\$&\")}var fe={};function me(e,t){var n,r=t;for(\"string\"==typeof e&&(e=[e]),l(t)&&(r=function(e,n){n[t]=C(e)}),n=0;n68?1900:2e3)};var ye,be=ke(\"FullYear\",!0);function ke(e,t){return function(n){return null!=n?(Ce(this,e,n),i.updateOffset(this,t),this):we(this,e)}}function we(e,t){return e.isValid()?e._d[\"get\"+(e._isUTC?\"UTC\":\"\")+t]():NaN}function Ce(e,t,n){e.isValid()&&!isNaN(n)&&(\"FullYear\"===t&&ge(e.year())&&1===e.month()&&29===e.date()?e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n,e.month(),Me(n,e.month())):e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n))}function Me(e,t){if(isNaN(e)||isNaN(t))return NaN;var n=(t%12+12)%12;return e+=(t-n)/12,1===n?ge(e)?29:28:31-n%7%2}ye=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t=0?(s=new Date(e+400,t,n,r,i,a,o),isFinite(s.getFullYear())&&s.setFullYear(e)):s=new Date(e,t,n,r,i,a,o),s}function Pe(e){var t;if(e<100&&e>=0){var n=Array.prototype.slice.call(arguments);n[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)}else t=new Date(Date.UTC.apply(null,arguments));return t}function je(e,t,n){var r=7+t-n;return-(7+Pe(e,0,r).getUTCDay()-t)%7+r-1}function Re(e,t,n,r,i){var a,o,s=1+7*(t-1)+(7+n-r)%7+je(e,r,i);return s<=0?o=ve(a=e-1)+s:s>ve(e)?(a=e+1,o=s-ve(e)):(a=e,o=s),{year:a,dayOfYear:o}}function He(e,t,n){var r,i,a=je(e.year(),t,n),o=Math.floor((e.dayOfYear()-a-1)/7)+1;return o<1?r=o+Fe(i=e.year()-1,t,n):o>Fe(e.year(),t,n)?(r=o-Fe(e.year(),t,n),i=e.year()+1):(i=e.year(),r=o),{week:r,year:i}}function Fe(e,t,n){var r=je(e,t,n),i=je(e+1,t,n);return(ve(e)-r+i)/7}function Ne(e,t){return e.slice(t,7).concat(e.slice(0,t))}U(\"w\",[\"ww\",2],\"wo\",\"week\"),U(\"W\",[\"WW\",2],\"Wo\",\"isoWeek\"),A(\"week\",\"w\"),A(\"isoWeek\",\"W\"),H(\"week\",5),H(\"isoWeek\",5),ce(\"w\",Q),ce(\"ww\",Q,$),ce(\"W\",Q),ce(\"WW\",Q,$),pe([\"w\",\"ww\",\"W\",\"WW\"],(function(e,t,n,r){t[r.substr(0,1)]=C(e)})),U(\"d\",0,\"do\",\"day\"),U(\"dd\",0,0,(function(e){return this.localeData().weekdaysMin(this,e)})),U(\"ddd\",0,0,(function(e){return this.localeData().weekdaysShort(this,e)})),U(\"dddd\",0,0,(function(e){return this.localeData().weekdays(this,e)})),U(\"e\",0,0,\"weekday\"),U(\"E\",0,0,\"isoWeekday\"),A(\"day\",\"d\"),A(\"weekday\",\"e\"),A(\"isoWeekday\",\"E\"),H(\"day\",11),H(\"weekday\",11),H(\"isoWeekday\",11),ce(\"d\",Q),ce(\"e\",Q),ce(\"E\",Q),ce(\"dd\",(function(e,t){return t.weekdaysMinRegex(e)})),ce(\"ddd\",(function(e,t){return t.weekdaysShortRegex(e)})),ce(\"dddd\",(function(e,t){return t.weekdaysRegex(e)})),pe([\"dd\",\"ddd\",\"dddd\"],(function(e,t,n,r){var i=n._locale.weekdaysParse(e,r,n._strict);null!=i?t.d=i:m(n).invalidWeekday=e})),pe([\"d\",\"e\",\"E\"],(function(e,t,n,r){t[r]=C(e)}));var ze=\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),Ve=\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),We=\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\");function Ue(e,t,n){var r,i,a,o=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],r=0;r<7;++r)a=f([2e3,1]).day(r),this._minWeekdaysParse[r]=this.weekdaysMin(a,\"\").toLocaleLowerCase(),this._shortWeekdaysParse[r]=this.weekdaysShort(a,\"\").toLocaleLowerCase(),this._weekdaysParse[r]=this.weekdays(a,\"\").toLocaleLowerCase();return n?\"dddd\"===t?-1!==(i=ye.call(this._weekdaysParse,o))?i:null:\"ddd\"===t?-1!==(i=ye.call(this._shortWeekdaysParse,o))?i:null:-1!==(i=ye.call(this._minWeekdaysParse,o))?i:null:\"dddd\"===t?-1!==(i=ye.call(this._weekdaysParse,o))||-1!==(i=ye.call(this._shortWeekdaysParse,o))||-1!==(i=ye.call(this._minWeekdaysParse,o))?i:null:\"ddd\"===t?-1!==(i=ye.call(this._shortWeekdaysParse,o))||-1!==(i=ye.call(this._weekdaysParse,o))||-1!==(i=ye.call(this._minWeekdaysParse,o))?i:null:-1!==(i=ye.call(this._minWeekdaysParse,o))||-1!==(i=ye.call(this._weekdaysParse,o))||-1!==(i=ye.call(this._shortWeekdaysParse,o))?i:null}var Be=le,qe=le,Ge=le;function $e(){function e(e,t){return t.length-e.length}var t,n,r,i,a,o=[],s=[],l=[],u=[];for(t=0;t<7;t++)n=f([2e3,1]).day(t),r=this.weekdaysMin(n,\"\"),i=this.weekdaysShort(n,\"\"),a=this.weekdays(n,\"\"),o.push(r),s.push(i),l.push(a),u.push(r),u.push(i),u.push(a);for(o.sort(e),s.sort(e),l.sort(e),u.sort(e),t=0;t<7;t++)s[t]=he(s[t]),l[t]=he(l[t]),u[t]=he(u[t]);this._weekdaysRegex=new RegExp(\"^(\"+u.join(\"|\")+\")\",\"i\"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp(\"^(\"+l.join(\"|\")+\")\",\"i\"),this._weekdaysShortStrictRegex=new RegExp(\"^(\"+s.join(\"|\")+\")\",\"i\"),this._weekdaysMinStrictRegex=new RegExp(\"^(\"+o.join(\"|\")+\")\",\"i\")}function Je(){return this.hours()%12||12}function Ke(e,t){U(e,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)}))}function Ze(e,t){return t._meridiemParse}U(\"H\",[\"HH\",2],0,\"hour\"),U(\"h\",[\"hh\",2],0,Je),U(\"k\",[\"kk\",2],0,(function(){return this.hours()||24})),U(\"hmm\",0,0,(function(){return\"\"+Je.apply(this)+F(this.minutes(),2)})),U(\"hmmss\",0,0,(function(){return\"\"+Je.apply(this)+F(this.minutes(),2)+F(this.seconds(),2)})),U(\"Hmm\",0,0,(function(){return\"\"+this.hours()+F(this.minutes(),2)})),U(\"Hmmss\",0,0,(function(){return\"\"+this.hours()+F(this.minutes(),2)+F(this.seconds(),2)})),Ke(\"a\",!0),Ke(\"A\",!1),A(\"hour\",\"h\"),H(\"hour\",13),ce(\"a\",Ze),ce(\"A\",Ze),ce(\"H\",Q),ce(\"h\",Q),ce(\"k\",Q),ce(\"HH\",Q,$),ce(\"hh\",Q,$),ce(\"kk\",Q,$),ce(\"hmm\",X),ce(\"hmmss\",ee),ce(\"Hmm\",X),ce(\"Hmmss\",ee),me([\"H\",\"HH\"],3),me([\"k\",\"kk\"],(function(e,t,n){var r=C(e);t[3]=24===r?0:r})),me([\"a\",\"A\"],(function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e})),me([\"h\",\"hh\"],(function(e,t,n){t[3]=C(e),m(n).bigHour=!0})),me(\"hmm\",(function(e,t,n){var r=e.length-2;t[3]=C(e.substr(0,r)),t[4]=C(e.substr(r)),m(n).bigHour=!0})),me(\"hmmss\",(function(e,t,n){var r=e.length-4,i=e.length-2;t[3]=C(e.substr(0,r)),t[4]=C(e.substr(r,2)),t[5]=C(e.substr(i)),m(n).bigHour=!0})),me(\"Hmm\",(function(e,t,n){var r=e.length-2;t[3]=C(e.substr(0,r)),t[4]=C(e.substr(r))})),me(\"Hmmss\",(function(e,t,n){var r=e.length-4,i=e.length-2;t[3]=C(e.substr(0,r)),t[4]=C(e.substr(r,2)),t[5]=C(e.substr(i))}));var Qe,Xe=ke(\"Hours\",!0),et={calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},longDateFormat:{LTS:\"h:mm:ss A\",LT:\"h:mm A\",L:\"MM/DD/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"},invalidDate:\"Invalid date\",ordinal:\"%d\",dayOfMonthOrdinalParse:/\\d{1,2}/,relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},months:Le,monthsShort:Te,week:{dow:0,doy:6},weekdays:ze,weekdaysMin:We,weekdaysShort:Ve,meridiemParse:/[ap]\\.?m?\\.?/i},tt={},nt={};function rt(e){return e?e.toLowerCase().replace(\"_\",\"-\"):e}function it(t){var r=null;if(!tt[t]&&void 0!==e&&e&&e.exports)try{r=Qe._abbr,n(\"RnhZ\")(\"./\"+t),at(r)}catch(i){}return tt[t]}function at(e,t){var n;return e&&((n=s(t)?st(e):ot(e,t))?Qe=n:\"undefined\"!=typeof console&&console.warn&&console.warn(\"Locale \"+e+\" not found. Did you forget to load it?\")),Qe._abbr}function ot(e,t){if(null!==t){var n,r=et;if(t.abbr=e,null!=tt[e])D(\"defineLocaleOverride\",\"use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info.\"),r=tt[e]._config;else if(null!=t.parentLocale)if(null!=tt[t.parentLocale])r=tt[t.parentLocale]._config;else{if(null==(n=it(t.parentLocale)))return nt[t.parentLocale]||(nt[t.parentLocale]=[]),nt[t.parentLocale].push({name:e,config:t}),null;r=n._config}return tt[e]=new E(Y(r,t)),nt[e]&&nt[e].forEach((function(e){ot(e.name,e.config)})),at(e),tt[e]}return delete tt[e],null}function st(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return Qe;if(!a(e)){if(t=it(e))return t;e=[e]}return function(e){for(var t,n,r,i,a=0;a0;){if(r=it(i.slice(0,t).join(\"-\")))return r;if(n&&n.length>=t&&M(i,n,!0)>=t-1)break;t--}a++}return Qe}(e)}function lt(e){var t,n=e._a;return n&&-2===m(e).overflow&&(t=n[1]<0||n[1]>11?1:n[2]<1||n[2]>Me(n[0],n[1])?2:n[3]<0||n[3]>24||24===n[3]&&(0!==n[4]||0!==n[5]||0!==n[6])?3:n[4]<0||n[4]>59?4:n[5]<0||n[5]>59?5:n[6]<0||n[6]>999?6:-1,m(e)._overflowDayOfYear&&(t<0||t>2)&&(t=2),m(e)._overflowWeeks&&-1===t&&(t=7),m(e)._overflowWeekday&&-1===t&&(t=8),m(e).overflow=t),e}function ut(e,t,n){return null!=e?e:null!=t?t:n}function ct(e){var t,n,r,a,o,s=[];if(!e._d){for(r=function(e){var t=new Date(i.now());return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}(e),e._w&&null==e._a[2]&&null==e._a[1]&&function(e){var t,n,r,i,a,o,s,l;if(null!=(t=e._w).GG||null!=t.W||null!=t.E)a=1,o=4,n=ut(t.GG,e._a[0],He(Mt(),1,4).year),r=ut(t.W,1),((i=ut(t.E,1))<1||i>7)&&(l=!0);else{a=e._locale._week.dow,o=e._locale._week.doy;var u=He(Mt(),a,o);n=ut(t.gg,e._a[0],u.year),r=ut(t.w,u.week),null!=t.d?((i=t.d)<0||i>6)&&(l=!0):null!=t.e?(i=t.e+a,(t.e<0||t.e>6)&&(l=!0)):i=a}r<1||r>Fe(n,a,o)?m(e)._overflowWeeks=!0:null!=l?m(e)._overflowWeekday=!0:(s=Re(n,r,i,a,o),e._a[0]=s.year,e._dayOfYear=s.dayOfYear)}(e),null!=e._dayOfYear&&(o=ut(e._a[0],r[0]),(e._dayOfYear>ve(o)||0===e._dayOfYear)&&(m(e)._overflowDayOfYear=!0),n=Pe(o,0,e._dayOfYear),e._a[1]=n.getUTCMonth(),e._a[2]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=s[t]=r[t];for(;t<7;t++)e._a[t]=s[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[3]&&0===e._a[4]&&0===e._a[5]&&0===e._a[6]&&(e._nextDay=!0,e._a[3]=0),e._d=(e._useUTC?Pe:Ae).apply(null,s),a=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[3]=24),e._w&&void 0!==e._w.d&&e._w.d!==a&&(m(e).weekdayMismatch=!0)}}var dt=/^\\s*((?:[+-]\\d{6}|\\d{4})-(?:\\d\\d-\\d\\d|W\\d\\d-\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?::\\d\\d(?::\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,ht=/^\\s*((?:[+-]\\d{6}|\\d{4})(?:\\d\\d\\d\\d|W\\d\\d\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?:\\d\\d(?:\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,ft=/Z|[+-]\\d\\d(?::?\\d\\d)?/,mt=[[\"YYYYYY-MM-DD\",/[+-]\\d{6}-\\d\\d-\\d\\d/],[\"YYYY-MM-DD\",/\\d{4}-\\d\\d-\\d\\d/],[\"GGGG-[W]WW-E\",/\\d{4}-W\\d\\d-\\d/],[\"GGGG-[W]WW\",/\\d{4}-W\\d\\d/,!1],[\"YYYY-DDD\",/\\d{4}-\\d{3}/],[\"YYYY-MM\",/\\d{4}-\\d\\d/,!1],[\"YYYYYYMMDD\",/[+-]\\d{10}/],[\"YYYYMMDD\",/\\d{8}/],[\"GGGG[W]WWE\",/\\d{4}W\\d{3}/],[\"GGGG[W]WW\",/\\d{4}W\\d{2}/,!1],[\"YYYYDDD\",/\\d{7}/]],pt=[[\"HH:mm:ss.SSSS\",/\\d\\d:\\d\\d:\\d\\d\\.\\d+/],[\"HH:mm:ss,SSSS\",/\\d\\d:\\d\\d:\\d\\d,\\d+/],[\"HH:mm:ss\",/\\d\\d:\\d\\d:\\d\\d/],[\"HH:mm\",/\\d\\d:\\d\\d/],[\"HHmmss.SSSS\",/\\d\\d\\d\\d\\d\\d\\.\\d+/],[\"HHmmss,SSSS\",/\\d\\d\\d\\d\\d\\d,\\d+/],[\"HHmmss\",/\\d\\d\\d\\d\\d\\d/],[\"HHmm\",/\\d\\d\\d\\d/],[\"HH\",/\\d\\d/]],_t=/^\\/?Date\\((\\-?\\d+)/i;function vt(e){var t,n,r,i,a,o,s=e._i,l=dt.exec(s)||ht.exec(s);if(l){for(m(e).iso=!0,t=0,n=mt.length;t0&&m(e).unusedInput.push(o),s=s.slice(s.indexOf(n)+n.length),u+=n.length),W[a]?(n?m(e).empty=!1:m(e).unusedTokens.push(a),_e(a,n,e)):e._strict&&!n&&m(e).unusedTokens.push(a);m(e).charsLeftOver=l-u,s.length>0&&m(e).unusedInput.push(s),e._a[3]<=12&&!0===m(e).bigHour&&e._a[3]>0&&(m(e).bigHour=void 0),m(e).parsedDateParts=e._a.slice(0),m(e).meridiem=e._meridiem,e._a[3]=function(e,t,n){var r;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((r=e.isPM(n))&&t<12&&(t+=12),r||12!==t||(t=0),t):t}(e._locale,e._a[3],e._meridiem),ct(e),lt(e)}else bt(e);else vt(e)}function wt(e){var t=e._i,n=e._f;return e._locale=e._locale||st(e._l),null===t||void 0===n&&\"\"===t?_({nullInput:!0}):(\"string\"==typeof t&&(e._i=t=e._locale.preparse(t)),k(t)?new b(lt(t)):(u(t)?e._d=t:a(n)?function(e){var t,n,r,i,a;if(0===e._f.length)return m(e).invalidFormat=!0,void(e._d=new Date(NaN));for(i=0;ithis?this:e:_()}));function Tt(e,t){var n,r;if(1===t.length&&a(t[0])&&(t=t[0]),!t.length)return Mt();for(n=t[0],r=1;r=0?new Date(e+400,t,n)-126227808e5:new Date(e,t,n).valueOf()}function Xt(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-126227808e5:Date.UTC(e,t,n)}function en(e,t){U(0,[e,e.length],0,t)}function tn(e,t,n,r,i){var a;return null==e?He(this,r,i).year:(t>(a=Fe(e,r,i))&&(t=a),nn.call(this,e,t,n,r,i))}function nn(e,t,n,r,i){var a=Re(e,t,n,r,i),o=Pe(a.year,0,a.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}U(0,[\"gg\",2],0,(function(){return this.weekYear()%100})),U(0,[\"GG\",2],0,(function(){return this.isoWeekYear()%100})),en(\"gggg\",\"weekYear\"),en(\"ggggg\",\"weekYear\"),en(\"GGGG\",\"isoWeekYear\"),en(\"GGGGG\",\"isoWeekYear\"),A(\"weekYear\",\"gg\"),A(\"isoWeekYear\",\"GG\"),H(\"weekYear\",1),H(\"isoWeekYear\",1),ce(\"G\",ae),ce(\"g\",ae),ce(\"GG\",Q,$),ce(\"gg\",Q,$),ce(\"GGGG\",ne,K),ce(\"gggg\",ne,K),ce(\"GGGGG\",re,Z),ce(\"ggggg\",re,Z),pe([\"gggg\",\"ggggg\",\"GGGG\",\"GGGGG\"],(function(e,t,n,r){t[r.substr(0,2)]=C(e)})),pe([\"gg\",\"GG\"],(function(e,t,n,r){t[r]=i.parseTwoDigitYear(e)})),U(\"Q\",0,\"Qo\",\"quarter\"),A(\"quarter\",\"Q\"),H(\"quarter\",7),ce(\"Q\",G),me(\"Q\",(function(e,t){t[1]=3*(C(e)-1)})),U(\"D\",[\"DD\",2],\"Do\",\"date\"),A(\"date\",\"D\"),H(\"date\",9),ce(\"D\",Q),ce(\"DD\",Q,$),ce(\"Do\",(function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient})),me([\"D\",\"DD\"],2),me(\"Do\",(function(e,t){t[2]=C(e.match(Q)[0])}));var rn=ke(\"Date\",!0);U(\"DDD\",[\"DDDD\",3],\"DDDo\",\"dayOfYear\"),A(\"dayOfYear\",\"DDD\"),H(\"dayOfYear\",4),ce(\"DDD\",te),ce(\"DDDD\",J),me([\"DDD\",\"DDDD\"],(function(e,t,n){n._dayOfYear=C(e)})),U(\"m\",[\"mm\",2],0,\"minute\"),A(\"minute\",\"m\"),H(\"minute\",14),ce(\"m\",Q),ce(\"mm\",Q,$),me([\"m\",\"mm\"],4);var an=ke(\"Minutes\",!1);U(\"s\",[\"ss\",2],0,\"second\"),A(\"second\",\"s\"),H(\"second\",15),ce(\"s\",Q),ce(\"ss\",Q,$),me([\"s\",\"ss\"],5);var on,sn=ke(\"Seconds\",!1);for(U(\"S\",0,0,(function(){return~~(this.millisecond()/100)})),U(0,[\"SS\",2],0,(function(){return~~(this.millisecond()/10)})),U(0,[\"SSS\",3],0,\"millisecond\"),U(0,[\"SSSS\",4],0,(function(){return 10*this.millisecond()})),U(0,[\"SSSSS\",5],0,(function(){return 100*this.millisecond()})),U(0,[\"SSSSSS\",6],0,(function(){return 1e3*this.millisecond()})),U(0,[\"SSSSSSS\",7],0,(function(){return 1e4*this.millisecond()})),U(0,[\"SSSSSSSS\",8],0,(function(){return 1e5*this.millisecond()})),U(0,[\"SSSSSSSSS\",9],0,(function(){return 1e6*this.millisecond()})),A(\"millisecond\",\"ms\"),H(\"millisecond\",16),ce(\"S\",te,G),ce(\"SS\",te,$),ce(\"SSS\",te,J),on=\"SSSS\";on.length<=9;on+=\"S\")ce(on,ie);function ln(e,t){t[6]=C(1e3*(\"0.\"+e))}for(on=\"S\";on.length<=9;on+=\"S\")me(on,ln);var un=ke(\"Milliseconds\",!1);U(\"z\",0,0,\"zoneAbbr\"),U(\"zz\",0,0,\"zoneName\");var cn=b.prototype;function dn(e){return e}cn.add=Bt,cn.calendar=function(e,t){var n=e||Mt(),r=Pt(n,this).startOf(\"day\"),a=i.calendarFormat(this,r)||\"sameElse\",o=t&&(O(t[a])?t[a].call(this,n):t[a]);return this.format(o||this.localeData().calendar(a,this,Mt(n)))},cn.clone=function(){return new b(this)},cn.diff=function(e,t,n){var r,i,a;if(!this.isValid())return NaN;if(!(r=Pt(e,this)).isValid())return NaN;switch(i=6e4*(r.utcOffset()-this.utcOffset()),t=P(t)){case\"year\":a=Gt(this,r)/12;break;case\"month\":a=Gt(this,r);break;case\"quarter\":a=Gt(this,r)/3;break;case\"second\":a=(this-r)/1e3;break;case\"minute\":a=(this-r)/6e4;break;case\"hour\":a=(this-r)/36e5;break;case\"day\":a=(this-r-i)/864e5;break;case\"week\":a=(this-r-i)/6048e5;break;default:a=this-r}return n?a:w(a)},cn.endOf=function(e){var t;if(void 0===(e=P(e))||\"millisecond\"===e||!this.isValid())return this;var n=this._isUTC?Xt:Qt;switch(e){case\"year\":t=n(this.year()+1,0,1)-1;break;case\"quarter\":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case\"month\":t=n(this.year(),this.month()+1,1)-1;break;case\"week\":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case\"isoWeek\":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case\"day\":case\"date\":t=n(this.year(),this.month(),this.date()+1)-1;break;case\"hour\":t=this._d.valueOf(),t+=36e5-Zt(t+(this._isUTC?0:6e4*this.utcOffset()),36e5)-1;break;case\"minute\":t=this._d.valueOf(),t+=6e4-Zt(t,6e4)-1;break;case\"second\":t=this._d.valueOf(),t+=1e3-Zt(t,1e3)-1}return this._d.setTime(t),i.updateOffset(this,!0),this},cn.format=function(e){e||(e=this.isUtc()?i.defaultFormatUtc:i.defaultFormat);var t=B(this,e);return this.localeData().postformat(t)},cn.from=function(e,t){return this.isValid()&&(k(e)&&e.isValid()||Mt(e).isValid())?Nt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},cn.fromNow=function(e){return this.from(Mt(),e)},cn.to=function(e,t){return this.isValid()&&(k(e)&&e.isValid()||Mt(e).isValid())?Nt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},cn.toNow=function(e){return this.to(Mt(),e)},cn.get=function(e){return O(this[e=P(e)])?this[e]():this},cn.invalidAt=function(){return m(this).overflow},cn.isAfter=function(e,t){var n=k(e)?e:Mt(e);return!(!this.isValid()||!n.isValid())&&(\"millisecond\"===(t=P(t)||\"millisecond\")?this.valueOf()>n.valueOf():n.valueOf()9999?B(n,t?\"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ\"):O(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace(\"Z\",B(n,\"Z\")):B(n,t?\"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYY-MM-DD[T]HH:mm:ss.SSSZ\")},cn.inspect=function(){if(!this.isValid())return\"moment.invalid(/* \"+this._i+\" */)\";var e=\"moment\",t=\"\";this.isLocal()||(e=0===this.utcOffset()?\"moment.utc\":\"moment.parseZone\",t=\"Z\");var n=\"[\"+e+'(\"]',r=0<=this.year()&&this.year()<=9999?\"YYYY\":\"YYYYYY\";return this.format(n+r+\"-MM-DD[T]HH:mm:ss.SSS\"+t+'[\")]')},cn.toJSON=function(){return this.isValid()?this.toISOString():null},cn.toString=function(){return this.clone().locale(\"en\").format(\"ddd MMM DD YYYY HH:mm:ss [GMT]ZZ\")},cn.unix=function(){return Math.floor(this.valueOf()/1e3)},cn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},cn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},cn.year=be,cn.isLeapYear=function(){return ge(this.year())},cn.weekYear=function(e){return tn.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},cn.isoWeekYear=function(e){return tn.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)},cn.quarter=cn.quarters=function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},cn.month=Oe,cn.daysInMonth=function(){return Me(this.year(),this.month())},cn.week=cn.weeks=function(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),\"d\")},cn.isoWeek=cn.isoWeeks=function(e){var t=He(this,1,4).week;return null==e?t:this.add(7*(e-t),\"d\")},cn.weeksInYear=function(){var e=this.localeData()._week;return Fe(this.year(),e.dow,e.doy)},cn.isoWeeksInYear=function(){return Fe(this.year(),1,4)},cn.date=rn,cn.day=cn.days=function(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=function(e,t){return\"string\"!=typeof e?e:isNaN(e)?\"number\"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}(e,this.localeData()),this.add(e-t,\"d\")):t},cn.weekday=function(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,\"d\")},cn.isoWeekday=function(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=function(e,t){return\"string\"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7},cn.dayOfYear=function(e){var t=Math.round((this.clone().startOf(\"day\")-this.clone().startOf(\"year\"))/864e5)+1;return null==e?t:this.add(e-t,\"d\")},cn.hour=cn.hours=Xe,cn.minute=cn.minutes=an,cn.second=cn.seconds=sn,cn.millisecond=cn.milliseconds=un,cn.utcOffset=function(e,t,n){var r,a=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null!=e){if(\"string\"==typeof e){if(null===(e=At(se,e)))return this}else Math.abs(e)<16&&!n&&(e*=60);return!this._isUTC&&t&&(r=jt(this)),this._offset=e,this._isUTC=!0,null!=r&&this.add(r,\"m\"),a!==e&&(!t||this._changeInProgress?Ut(this,Nt(e-a,\"m\"),1,!1):this._changeInProgress||(this._changeInProgress=!0,i.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?a:jt(this)},cn.utc=function(e){return this.utcOffset(0,e)},cn.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(jt(this),\"m\")),this},cn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if(\"string\"==typeof this._i){var e=At(oe,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this},cn.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?Mt(e).utcOffset():0,(this.utcOffset()-e)%60==0)},cn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},cn.isLocal=function(){return!!this.isValid()&&!this._isUTC},cn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},cn.isUtc=Rt,cn.isUTC=Rt,cn.zoneAbbr=function(){return this._isUTC?\"UTC\":\"\"},cn.zoneName=function(){return this._isUTC?\"Coordinated Universal Time\":\"\"},cn.dates=L(\"dates accessor is deprecated. Use date instead.\",rn),cn.months=L(\"months accessor is deprecated. Use month instead\",Oe),cn.years=L(\"years accessor is deprecated. Use year instead\",be),cn.zone=L(\"moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/\",(function(e,t){return null!=e?(\"string\"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()})),cn.isDSTShifted=L(\"isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information\",(function(){if(!s(this._isDSTShifted))return this._isDSTShifted;var e={};if(g(e,this),(e=wt(e))._a){var t=e._isUTC?f(e._a):Mt(e._a);this._isDSTShifted=this.isValid()&&M(e._a,t.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}));var hn=E.prototype;function fn(e,t,n,r){var i=st(),a=f().set(r,t);return i[n](a,e)}function mn(e,t,n){if(l(e)&&(t=e,e=void 0),e=e||\"\",null!=t)return fn(e,t,n,\"month\");var r,i=[];for(r=0;r<12;r++)i[r]=fn(e,r,n,\"month\");return i}function pn(e,t,n,r){\"boolean\"==typeof e?(l(t)&&(n=t,t=void 0),t=t||\"\"):(n=t=e,e=!1,l(t)&&(n=t,t=void 0),t=t||\"\");var i,a=st(),o=e?a._week.dow:0;if(null!=n)return fn(t,(n+o)%7,r,\"day\");var s=[];for(i=0;i<7;i++)s[i]=fn(t,(i+o)%7,r,\"day\");return s}hn.calendar=function(e,t,n){var r=this._calendar[e]||this._calendar.sameElse;return O(r)?r.call(t,n):r},hn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.replace(/MMMM|MM|DD|dddd/g,(function(e){return e.slice(1)})),this._longDateFormat[e])},hn.invalidDate=function(){return this._invalidDate},hn.ordinal=function(e){return this._ordinal.replace(\"%d\",e)},hn.preparse=dn,hn.postformat=dn,hn.relativeTime=function(e,t,n,r){var i=this._relativeTime[n];return O(i)?i(e,t,n,r):i.replace(/%d/i,e)},hn.pastFuture=function(e,t){var n=this._relativeTime[e>0?\"future\":\"past\"];return O(n)?n(t):n.replace(/%s/i,t)},hn.set=function(e){var t,n;for(n in e)O(t=e[n])?this[n]=t:this[\"_\"+n]=t;this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+\"|\"+/\\d{1,2}/.source)},hn.months=function(e,t){return e?a(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||Se).test(t)?\"format\":\"standalone\"][e.month()]:a(this._months)?this._months:this._months.standalone},hn.monthsShort=function(e,t){return e?a(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[Se.test(t)?\"format\":\"standalone\"][e.month()]:a(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},hn.monthsParse=function(e,t,n){var r,i,a;if(this._monthsParseExact)return xe.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),r=0;r<12;r++){if(i=f([2e3,r]),n&&!this._longMonthsParse[r]&&(this._longMonthsParse[r]=new RegExp(\"^\"+this.months(i,\"\").replace(\".\",\"\")+\"$\",\"i\"),this._shortMonthsParse[r]=new RegExp(\"^\"+this.monthsShort(i,\"\").replace(\".\",\"\")+\"$\",\"i\")),n||this._monthsParse[r]||(a=\"^\"+this.months(i,\"\")+\"|^\"+this.monthsShort(i,\"\"),this._monthsParse[r]=new RegExp(a.replace(\".\",\"\"),\"i\")),n&&\"MMMM\"===t&&this._longMonthsParse[r].test(e))return r;if(n&&\"MMM\"===t&&this._shortMonthsParse[r].test(e))return r;if(!n&&this._monthsParse[r].test(e))return r}},hn.monthsRegex=function(e){return this._monthsParseExact?(d(this,\"_monthsRegex\")||Ie.call(this),e?this._monthsStrictRegex:this._monthsRegex):(d(this,\"_monthsRegex\")||(this._monthsRegex=Ee),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},hn.monthsShortRegex=function(e){return this._monthsParseExact?(d(this,\"_monthsRegex\")||Ie.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(d(this,\"_monthsShortRegex\")||(this._monthsShortRegex=Ye),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},hn.week=function(e){return He(e,this._week.dow,this._week.doy).week},hn.firstDayOfYear=function(){return this._week.doy},hn.firstDayOfWeek=function(){return this._week.dow},hn.weekdays=function(e,t){var n=a(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?\"format\":\"standalone\"];return!0===e?Ne(n,this._week.dow):e?n[e.day()]:n},hn.weekdaysMin=function(e){return!0===e?Ne(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin},hn.weekdaysShort=function(e){return!0===e?Ne(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort},hn.weekdaysParse=function(e,t,n){var r,i,a;if(this._weekdaysParseExact)return Ue.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++){if(i=f([2e3,1]).day(r),n&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp(\"^\"+this.weekdays(i,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._shortWeekdaysParse[r]=new RegExp(\"^\"+this.weekdaysShort(i,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._minWeekdaysParse[r]=new RegExp(\"^\"+this.weekdaysMin(i,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\")),this._weekdaysParse[r]||(a=\"^\"+this.weekdays(i,\"\")+\"|^\"+this.weekdaysShort(i,\"\")+\"|^\"+this.weekdaysMin(i,\"\"),this._weekdaysParse[r]=new RegExp(a.replace(\".\",\"\"),\"i\")),n&&\"dddd\"===t&&this._fullWeekdaysParse[r].test(e))return r;if(n&&\"ddd\"===t&&this._shortWeekdaysParse[r].test(e))return r;if(n&&\"dd\"===t&&this._minWeekdaysParse[r].test(e))return r;if(!n&&this._weekdaysParse[r].test(e))return r}},hn.weekdaysRegex=function(e){return this._weekdaysParseExact?(d(this,\"_weekdaysRegex\")||$e.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(d(this,\"_weekdaysRegex\")||(this._weekdaysRegex=Be),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},hn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(d(this,\"_weekdaysRegex\")||$e.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(d(this,\"_weekdaysShortRegex\")||(this._weekdaysShortRegex=qe),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},hn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(d(this,\"_weekdaysRegex\")||$e.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(d(this,\"_weekdaysMinRegex\")||(this._weekdaysMinRegex=Ge),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},hn.isPM=function(e){return\"p\"===(e+\"\").toLowerCase().charAt(0)},hn.meridiem=function(e,t,n){return e>11?n?\"pm\":\"PM\":n?\"am\":\"AM\"},at(\"en\",{dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===C(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}}),i.lang=L(\"moment.lang is deprecated. Use moment.locale instead.\",at),i.langData=L(\"moment.langData is deprecated. Use moment.localeData instead.\",st);var _n=Math.abs;function vn(e,t,n,r){var i=Nt(t,n);return e._milliseconds+=r*i._milliseconds,e._days+=r*i._days,e._months+=r*i._months,e._bubble()}function gn(e){return e<0?Math.floor(e):Math.ceil(e)}function yn(e){return 4800*e/146097}function bn(e){return 146097*e/4800}function kn(e){return function(){return this.as(e)}}var wn=kn(\"ms\"),Cn=kn(\"s\"),Mn=kn(\"m\"),Sn=kn(\"h\"),Ln=kn(\"d\"),Tn=kn(\"w\"),xn=kn(\"M\"),Dn=kn(\"Q\"),On=kn(\"y\");function Yn(e){return function(){return this.isValid()?this._data[e]:NaN}}var En=Yn(\"milliseconds\"),In=Yn(\"seconds\"),An=Yn(\"minutes\"),Pn=Yn(\"hours\"),jn=Yn(\"days\"),Rn=Yn(\"months\"),Hn=Yn(\"years\"),Fn=Math.round,Nn={ss:44,s:45,m:45,h:22,d:26,M:11};function zn(e,t,n,r,i){return i.relativeTime(t||1,!!n,e,r)}var Vn=Math.abs;function Wn(e){return(e>0)-(e<0)||+e}function Un(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n=Vn(this._milliseconds)/1e3,r=Vn(this._days),i=Vn(this._months);e=w(n/60),t=w(e/60),n%=60,e%=60;var a=w(i/12),o=i%=12,s=r,l=t,u=e,c=n?n.toFixed(3).replace(/\\.?0+$/,\"\"):\"\",d=this.asSeconds();if(!d)return\"P0D\";var h=d<0?\"-\":\"\",f=Wn(this._months)!==Wn(d)?\"-\":\"\",m=Wn(this._days)!==Wn(d)?\"-\":\"\",p=Wn(this._milliseconds)!==Wn(d)?\"-\":\"\";return h+\"P\"+(a?f+a+\"Y\":\"\")+(o?f+o+\"M\":\"\")+(s?m+s+\"D\":\"\")+(l||u||c?\"T\":\"\")+(l?p+l+\"H\":\"\")+(u?p+u+\"M\":\"\")+(c?p+c+\"S\":\"\")}var Bn=Dt.prototype;return Bn.isValid=function(){return this._isValid},Bn.abs=function(){var e=this._data;return this._milliseconds=_n(this._milliseconds),this._days=_n(this._days),this._months=_n(this._months),e.milliseconds=_n(e.milliseconds),e.seconds=_n(e.seconds),e.minutes=_n(e.minutes),e.hours=_n(e.hours),e.months=_n(e.months),e.years=_n(e.years),this},Bn.add=function(e,t){return vn(this,e,t,1)},Bn.subtract=function(e,t){return vn(this,e,t,-1)},Bn.as=function(e){if(!this.isValid())return NaN;var t,n,r=this._milliseconds;if(\"month\"===(e=P(e))||\"quarter\"===e||\"year\"===e)switch(n=this._months+yn(t=this._days+r/864e5),e){case\"month\":return n;case\"quarter\":return n/3;case\"year\":return n/12}else switch(t=this._days+Math.round(bn(this._months)),e){case\"week\":return t/7+r/6048e5;case\"day\":return t+r/864e5;case\"hour\":return 24*t+r/36e5;case\"minute\":return 1440*t+r/6e4;case\"second\":return 86400*t+r/1e3;case\"millisecond\":return Math.floor(864e5*t)+r;default:throw new Error(\"Unknown unit \"+e)}},Bn.asMilliseconds=wn,Bn.asSeconds=Cn,Bn.asMinutes=Mn,Bn.asHours=Sn,Bn.asDays=Ln,Bn.asWeeks=Tn,Bn.asMonths=xn,Bn.asQuarters=Dn,Bn.asYears=On,Bn.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*C(this._months/12):NaN},Bn._bubble=function(){var e,t,n,r,i,a=this._milliseconds,o=this._days,s=this._months,l=this._data;return a>=0&&o>=0&&s>=0||a<=0&&o<=0&&s<=0||(a+=864e5*gn(bn(s)+o),o=0,s=0),l.milliseconds=a%1e3,e=w(a/1e3),l.seconds=e%60,t=w(e/60),l.minutes=t%60,n=w(t/60),l.hours=n%24,o+=w(n/24),s+=i=w(yn(o)),o-=gn(bn(i)),r=w(s/12),s%=12,l.days=o,l.months=s,l.years=r,this},Bn.clone=function(){return Nt(this)},Bn.get=function(e){return e=P(e),this.isValid()?this[e+\"s\"]():NaN},Bn.milliseconds=En,Bn.seconds=In,Bn.minutes=An,Bn.hours=Pn,Bn.days=jn,Bn.weeks=function(){return w(this.days()/7)},Bn.months=Rn,Bn.years=Hn,Bn.humanize=function(e){if(!this.isValid())return this.localeData().invalidDate();var t=this.localeData(),n=function(e,t,n){var r=Nt(e).abs(),i=Fn(r.as(\"s\")),a=Fn(r.as(\"m\")),o=Fn(r.as(\"h\")),s=Fn(r.as(\"d\")),l=Fn(r.as(\"M\")),u=Fn(r.as(\"y\")),c=i<=Nn.ss&&[\"s\",i]||i0,c[4]=n,zn.apply(null,c)}(this,!e,t);return e&&(n=t.pastFuture(+this,n)),t.postformat(n)},Bn.toISOString=Un,Bn.toString=Un,Bn.toJSON=Un,Bn.locale=$t,Bn.localeData=Kt,Bn.toIsoString=L(\"toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)\",Un),Bn.lang=Jt,U(\"X\",0,0,\"unix\"),U(\"x\",0,0,\"valueOf\"),ce(\"x\",ae),ce(\"X\",/[+-]?\\d+(\\.\\d{1,3})?/),me(\"X\",(function(e,t,n){n._d=new Date(1e3*parseFloat(e,10))})),me(\"x\",(function(e,t,n){n._d=new Date(C(e))})),i.version=\"2.24.0\",t=Mt,i.fn=cn,i.min=function(){var e=[].slice.call(arguments,0);return Tt(\"isBefore\",e)},i.max=function(){var e=[].slice.call(arguments,0);return Tt(\"isAfter\",e)},i.now=function(){return Date.now?Date.now():+new Date},i.utc=f,i.unix=function(e){return Mt(1e3*e)},i.months=function(e,t){return mn(e,t,\"months\")},i.isDate=u,i.locale=at,i.invalid=_,i.duration=Nt,i.isMoment=k,i.weekdays=function(e,t,n){return pn(e,t,n,\"weekdays\")},i.parseZone=function(){return Mt.apply(null,arguments).parseZone()},i.localeData=st,i.isDuration=Ot,i.monthsShort=function(e,t){return mn(e,t,\"monthsShort\")},i.weekdaysMin=function(e,t,n){return pn(e,t,n,\"weekdaysMin\")},i.defineLocale=ot,i.updateLocale=function(e,t){if(null!=t){var n,r,i=et;null!=(r=it(e))&&(i=r._config),(n=new E(t=Y(i,t))).parentLocale=tt[e],tt[e]=n,at(e)}else null!=tt[e]&&(null!=tt[e].parentLocale?tt[e]=tt[e].parentLocale:null!=tt[e]&&delete tt[e]);return tt[e]},i.locales=function(){return T(tt)},i.weekdaysShort=function(e,t,n){return pn(e,t,n,\"weekdaysShort\")},i.normalizeUnits=P,i.relativeTimeRounding=function(e){return void 0===e?Fn:\"function\"==typeof e&&(Fn=e,!0)},i.relativeTimeThreshold=function(e,t){return void 0!==Nn[e]&&(void 0===t?Nn[e]:(Nn[e]=t,\"s\"===e&&(Nn.ss=t-1),!0))},i.calendarFormat=function(e,t){var n=e.diff(t,\"days\",!0);return n<-6?\"sameElse\":n<-1?\"lastWeek\":n<0?\"lastDay\":n<1?\"sameDay\":n<2?\"nextDay\":n<7?\"nextWeek\":\"sameElse\"},i.prototype=cn,i.HTML5_FMT={DATETIME_LOCAL:\"YYYY-MM-DDTHH:mm\",DATETIME_LOCAL_SECONDS:\"YYYY-MM-DDTHH:mm:ss\",DATETIME_LOCAL_MS:\"YYYY-MM-DDTHH:mm:ss.SSS\",DATE:\"YYYY-MM-DD\",TIME:\"HH:mm\",TIME_SECONDS:\"HH:mm:ss\",TIME_MS:\"HH:mm:ss.SSS\",WEEK:\"GGGG-[W]WW\",MONTH:\"YYYY-MM\"},i}()}).call(this,n(\"YuTi\")(e))},x6pH:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"he\",{months:\"\\u05d9\\u05e0\\u05d5\\u05d0\\u05e8_\\u05e4\\u05d1\\u05e8\\u05d5\\u05d0\\u05e8_\\u05de\\u05e8\\u05e5_\\u05d0\\u05e4\\u05e8\\u05d9\\u05dc_\\u05de\\u05d0\\u05d9_\\u05d9\\u05d5\\u05e0\\u05d9_\\u05d9\\u05d5\\u05dc\\u05d9_\\u05d0\\u05d5\\u05d2\\u05d5\\u05e1\\u05d8_\\u05e1\\u05e4\\u05d8\\u05de\\u05d1\\u05e8_\\u05d0\\u05d5\\u05e7\\u05d8\\u05d5\\u05d1\\u05e8_\\u05e0\\u05d5\\u05d1\\u05de\\u05d1\\u05e8_\\u05d3\\u05e6\\u05de\\u05d1\\u05e8\".split(\"_\"),monthsShort:\"\\u05d9\\u05e0\\u05d5\\u05f3_\\u05e4\\u05d1\\u05e8\\u05f3_\\u05de\\u05e8\\u05e5_\\u05d0\\u05e4\\u05e8\\u05f3_\\u05de\\u05d0\\u05d9_\\u05d9\\u05d5\\u05e0\\u05d9_\\u05d9\\u05d5\\u05dc\\u05d9_\\u05d0\\u05d5\\u05d2\\u05f3_\\u05e1\\u05e4\\u05d8\\u05f3_\\u05d0\\u05d5\\u05e7\\u05f3_\\u05e0\\u05d5\\u05d1\\u05f3_\\u05d3\\u05e6\\u05de\\u05f3\".split(\"_\"),weekdays:\"\\u05e8\\u05d0\\u05e9\\u05d5\\u05df_\\u05e9\\u05e0\\u05d9_\\u05e9\\u05dc\\u05d9\\u05e9\\u05d9_\\u05e8\\u05d1\\u05d9\\u05e2\\u05d9_\\u05d7\\u05de\\u05d9\\u05e9\\u05d9_\\u05e9\\u05d9\\u05e9\\u05d9_\\u05e9\\u05d1\\u05ea\".split(\"_\"),weekdaysShort:\"\\u05d0\\u05f3_\\u05d1\\u05f3_\\u05d2\\u05f3_\\u05d3\\u05f3_\\u05d4\\u05f3_\\u05d5\\u05f3_\\u05e9\\u05f3\".split(\"_\"),weekdaysMin:\"\\u05d0_\\u05d1_\\u05d2_\\u05d3_\\u05d4_\\u05d5_\\u05e9\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [\\u05d1]MMMM YYYY\",LLL:\"D [\\u05d1]MMMM YYYY HH:mm\",LLLL:\"dddd, D [\\u05d1]MMMM YYYY HH:mm\",l:\"D/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u05d4\\u05d9\\u05d5\\u05dd \\u05d1\\u05be]LT\",nextDay:\"[\\u05de\\u05d7\\u05e8 \\u05d1\\u05be]LT\",nextWeek:\"dddd [\\u05d1\\u05e9\\u05e2\\u05d4] LT\",lastDay:\"[\\u05d0\\u05ea\\u05de\\u05d5\\u05dc \\u05d1\\u05be]LT\",lastWeek:\"[\\u05d1\\u05d9\\u05d5\\u05dd] dddd [\\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05df \\u05d1\\u05e9\\u05e2\\u05d4] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u05d1\\u05e2\\u05d5\\u05d3 %s\",past:\"\\u05dc\\u05e4\\u05e0\\u05d9 %s\",s:\"\\u05de\\u05e1\\u05e4\\u05e8 \\u05e9\\u05e0\\u05d9\\u05d5\\u05ea\",ss:\"%d \\u05e9\\u05e0\\u05d9\\u05d5\\u05ea\",m:\"\\u05d3\\u05e7\\u05d4\",mm:\"%d \\u05d3\\u05e7\\u05d5\\u05ea\",h:\"\\u05e9\\u05e2\\u05d4\",hh:function(e){return 2===e?\"\\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd\":e+\" \\u05e9\\u05e2\\u05d5\\u05ea\"},d:\"\\u05d9\\u05d5\\u05dd\",dd:function(e){return 2===e?\"\\u05d9\\u05d5\\u05de\\u05d9\\u05d9\\u05dd\":e+\" \\u05d9\\u05de\\u05d9\\u05dd\"},M:\"\\u05d7\\u05d5\\u05d3\\u05e9\",MM:function(e){return 2===e?\"\\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05d9\\u05dd\":e+\" \\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05dd\"},y:\"\\u05e9\\u05e0\\u05d4\",yy:function(e){return 2===e?\"\\u05e9\\u05e0\\u05ea\\u05d9\\u05d9\\u05dd\":e%10==0&&10!==e?e+\" \\u05e9\\u05e0\\u05d4\":e+\" \\u05e9\\u05e0\\u05d9\\u05dd\"}},meridiemParse:/\\u05d0\\u05d7\\u05d4\"\\u05e6|\\u05dc\\u05e4\\u05e0\\u05d4\"\\u05e6|\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05dc\\u05e4\\u05e0\\u05d5\\u05ea \\u05d1\\u05d5\\u05e7\\u05e8|\\u05d1\\u05d1\\u05d5\\u05e7\\u05e8|\\u05d1\\u05e2\\u05e8\\u05d1/i,isPM:function(e){return/^(\\u05d0\\u05d7\\u05d4\"\\u05e6|\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05d1\\u05e2\\u05e8\\u05d1)$/.test(e)},meridiem:function(e,t,n){return e<5?\"\\u05dc\\u05e4\\u05e0\\u05d5\\u05ea \\u05d1\\u05d5\\u05e7\\u05e8\":e<10?\"\\u05d1\\u05d1\\u05d5\\u05e7\\u05e8\":e<12?n?'\\u05dc\\u05e4\\u05e0\\u05d4\"\\u05e6':\"\\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd\":e<18?n?'\\u05d0\\u05d7\\u05d4\"\\u05e6':\"\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd\":\"\\u05d1\\u05e2\\u05e8\\u05d1\"}})}(n(\"wd/R\"))},yPMs:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sq\",{months:\"Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_N\\xebntor_Dhjetor\".split(\"_\"),monthsShort:\"Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_N\\xebn_Dhj\".split(\"_\"),weekdays:\"E Diel_E H\\xebn\\xeb_E Mart\\xeb_E M\\xebrkur\\xeb_E Enjte_E Premte_E Shtun\\xeb\".split(\"_\"),weekdaysShort:\"Die_H\\xebn_Mar_M\\xebr_Enj_Pre_Sht\".split(\"_\"),weekdaysMin:\"D_H_Ma_M\\xeb_E_P_Sh\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/PD|MD/,isPM:function(e){return\"M\"===e.charAt(0)},meridiem:function(e,t,n){return e<12?\"PD\":\"MD\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Sot n\\xeb] LT\",nextDay:\"[Nes\\xebr n\\xeb] LT\",nextWeek:\"dddd [n\\xeb] LT\",lastDay:\"[Dje n\\xeb] LT\",lastWeek:\"dddd [e kaluar n\\xeb] LT\",sameElse:\"L\"},relativeTime:{future:\"n\\xeb %s\",past:\"%s m\\xeb par\\xeb\",s:\"disa sekonda\",ss:\"%d sekonda\",m:\"nj\\xeb minut\\xeb\",mm:\"%d minuta\",h:\"nj\\xeb or\\xeb\",hh:\"%d or\\xeb\",d:\"nj\\xeb dit\\xeb\",dd:\"%d dit\\xeb\",M:\"nj\\xeb muaj\",MM:\"%d muaj\",y:\"nj\\xeb vit\",yy:\"%d vite\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},z1FC:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={s:[\"viensas secunds\",\"'iensas secunds\"],ss:[e+\" secunds\",e+\" secunds\"],m:[\"'n m\\xedut\",\"'iens m\\xedut\"],mm:[e+\" m\\xeduts\",e+\" m\\xeduts\"],h:[\"'n \\xfeora\",\"'iensa \\xfeora\"],hh:[e+\" \\xfeoras\",e+\" \\xfeoras\"],d:[\"'n ziua\",\"'iensa ziua\"],dd:[e+\" ziuas\",e+\" ziuas\"],M:[\"'n mes\",\"'iens mes\"],MM:[e+\" mesen\",e+\" mesen\"],y:[\"'n ar\",\"'iens ar\"],yy:[e+\" ars\",e+\" ars\"]};return r||t?i[n][0]:i[n][1]}e.defineLocale(\"tzl\",{months:\"Januar_Fevraglh_Mar\\xe7_Avr\\xefu_Mai_G\\xfcn_Julia_Guscht_Setemvar_Listop\\xe4ts_Noemvar_Zecemvar\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Avr_Mai_G\\xfcn_Jul_Gus_Set_Lis_Noe_Zec\".split(\"_\"),weekdays:\"S\\xfaladi_L\\xfane\\xe7i_Maitzi_M\\xe1rcuri_Xh\\xfaadi_Vi\\xe9ner\\xe7i_S\\xe1turi\".split(\"_\"),weekdaysShort:\"S\\xfal_L\\xfan_Mai_M\\xe1r_Xh\\xfa_Vi\\xe9_S\\xe1t\".split(\"_\"),weekdaysMin:\"S\\xfa_L\\xfa_Ma_M\\xe1_Xh_Vi_S\\xe1\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM [dallas] YYYY\",LLL:\"D. MMMM [dallas] YYYY HH.mm\",LLLL:\"dddd, [li] D. MMMM [dallas] YYYY HH.mm\"},meridiemParse:/d\\'o|d\\'a/i,isPM:function(e){return\"d'o\"===e.toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"d'o\":\"D'O\":n?\"d'a\":\"D'A\"},calendar:{sameDay:\"[oxhi \\xe0] LT\",nextDay:\"[dem\\xe0 \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[ieiri \\xe0] LT\",lastWeek:\"[s\\xfcr el] dddd [lasteu \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"osprei %s\",past:\"ja%s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},z3Vd:function(e,t,n){!function(e){\"use strict\";var t=\"pagh_wa\\u2019_cha\\u2019_wej_loS_vagh_jav_Soch_chorgh_Hut\".split(\"_\");function n(e,n,r,i){var a=function(e){var n=Math.floor(e%1e3/100),r=Math.floor(e%100/10),i=e%10,a=\"\";return n>0&&(a+=t[n]+\"vatlh\"),r>0&&(a+=(\"\"!==a?\" \":\"\")+t[r]+\"maH\"),i>0&&(a+=(\"\"!==a?\" \":\"\")+t[i]),\"\"===a?\"pagh\":a}(e);switch(r){case\"ss\":return a+\" lup\";case\"mm\":return a+\" tup\";case\"hh\":return a+\" rep\";case\"dd\":return a+\" jaj\";case\"MM\":return a+\" jar\";case\"yy\":return a+\" DIS\"}}e.defineLocale(\"tlh\",{months:\"tera\\u2019 jar wa\\u2019_tera\\u2019 jar cha\\u2019_tera\\u2019 jar wej_tera\\u2019 jar loS_tera\\u2019 jar vagh_tera\\u2019 jar jav_tera\\u2019 jar Soch_tera\\u2019 jar chorgh_tera\\u2019 jar Hut_tera\\u2019 jar wa\\u2019maH_tera\\u2019 jar wa\\u2019maH wa\\u2019_tera\\u2019 jar wa\\u2019maH cha\\u2019\".split(\"_\"),monthsShort:\"jar wa\\u2019_jar cha\\u2019_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa\\u2019maH_jar wa\\u2019maH wa\\u2019_jar wa\\u2019maH cha\\u2019\".split(\"_\"),monthsParseExact:!0,weekdays:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysShort:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysMin:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[DaHjaj] LT\",nextDay:\"[wa\\u2019leS] LT\",nextWeek:\"LLL\",lastDay:\"[wa\\u2019Hu\\u2019] LT\",lastWeek:\"LLL\",sameElse:\"L\"},relativeTime:{future:function(e){var t=e;return-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"leS\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"waQ\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"nem\":t+\" pIq\"},past:function(e){var t=e;return-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"Hu\\u2019\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"wen\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"ben\":t+\" ret\"},s:\"puS lup\",ss:n,m:\"wa\\u2019 tup\",mm:n,h:\"wa\\u2019 rep\",hh:n,d:\"wa\\u2019 jaj\",dd:n,M:\"wa\\u2019 jar\",MM:n,y:\"wa\\u2019 DIS\",yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},zUnb:function(e,t,n){\"use strict\";function r(e){return\"function\"==typeof e}n.r(t);var i=!1,a={Promise:void 0,set useDeprecatedSynchronousErrorHandling(e){if(e){var t=new Error;console.warn(\"DEPRECATED! RxJS was set to use deprecated synchronous error handling behavior by code at: \\n\"+t.stack)}else i&&console.log(\"RxJS: Back to a better error behavior. Thank you. <3\");i=e},get useDeprecatedSynchronousErrorHandling(){return i}};function o(e){setTimeout((function(){throw e}),0)}var s={closed:!0,next:function(e){},error:function(e){if(a.useDeprecatedSynchronousErrorHandling)throw e;o(e)},complete:function(){}},l=Array.isArray||function(e){return e&&\"number\"==typeof e.length};function u(e){return null!==e&&\"object\"==typeof e}var c,d=function(){function e(e){return Error.call(this),this.message=e?\"\".concat(e.length,\" errors occurred during unsubscription:\\n\").concat(e.map((function(e,t){return\"\".concat(t+1,\") \").concat(e.toString())})).join(\"\\n \")):\"\",this.name=\"UnsubscriptionError\",this.errors=e,this}return e.prototype=Object.create(Error.prototype),e}(),h=((c=function(){function e(t){_classCallCheck(this,e),this.closed=!1,this._parentOrParents=null,this._subscriptions=null,t&&(this._unsubscribe=t)}return _createClass(e,[{key:\"unsubscribe\",value:function(){var t;if(!this.closed){var n=this._parentOrParents,i=this._unsubscribe,a=this._subscriptions;if(this.closed=!0,this._parentOrParents=null,this._subscriptions=null,n instanceof e)n.remove(this);else if(null!==n)for(var o=0;o4&&void 0!==arguments[4]?arguments[4]:new Y(e,n,r);if(!i.closed)return t instanceof w?t.subscribe(i):j(t)(i)}var H=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"notifyNext\",value:function(e,t,n,r,i){this.destination.next(t)}},{key:\"notifyError\",value:function(e,t){this.destination.error(e)}},{key:\"notifyComplete\",value:function(e){this.destination.complete()}}]),n}(p);function F(e,t){return function(n){if(\"function\"!=typeof e)throw new TypeError(\"argument is not a function. Are you looking for `mapTo()`?\");return n.lift(new N(e,t))}}var N=function(){function e(t,n){_classCallCheck(this,e),this.project=t,this.thisArg=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new z(e,this.project,this.thisArg))}}]),e}(),z=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).project=r,a.count=0,a.thisArg=i||_assertThisInitialized(a),a}return _createClass(n,[{key:\"_next\",value:function(e){var t;try{t=this.project.call(this.thisArg,e,this.count++)}catch(n){return void this.destination.error(n)}this.destination.next(t)}}]),n}(p);function V(e,t){return new w((function(n){var r=new h,i=0;return r.add(t.schedule((function(){i!==e.length?(n.next(e[i++]),n.closed||r.add(this.schedule())):n.complete()}))),r}))}function W(e,t){return t?function(e,t){if(null!=e){if(function(e){return e&&\"function\"==typeof e[v]}(e))return function(e,t){return new w((function(n){var r=new h;return r.add(t.schedule((function(){var i=e[v]();r.add(i.subscribe({next:function(e){r.add(t.schedule((function(){return n.next(e)})))},error:function(e){r.add(t.schedule((function(){return n.error(e)})))},complete:function(){r.add(t.schedule((function(){return n.complete()})))}}))}))),r}))}(e,t);if(P(e))return function(e,t){return new w((function(n){var r=new h;return r.add(t.schedule((function(){return e.then((function(e){r.add(t.schedule((function(){n.next(e),r.add(t.schedule((function(){return n.complete()})))})))}),(function(e){r.add(t.schedule((function(){return n.error(e)})))}))}))),r}))}(e,t);if(A(e))return V(e,t);if(function(e){return e&&\"function\"==typeof e[I]}(e)||\"string\"==typeof e)return function(e,t){if(!e)throw new Error(\"Iterable cannot be null\");return new w((function(n){var r,i=new h;return i.add((function(){r&&\"function\"==typeof r.return&&r.return()})),i.add(t.schedule((function(){r=e[I](),i.add(t.schedule((function(){if(!n.closed){var e,t;try{var i=r.next();e=i.value,t=i.done}catch(a){return void n.error(a)}t?n.complete():(n.next(e),this.schedule())}})))}))),i}))}(e,t)}throw new TypeError((null!==e&&typeof e||e)+\" is not observable\")}(e,t):e instanceof w?e:new w(j(e))}function U(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Number.POSITIVE_INFINITY;return\"function\"==typeof t?function(r){return r.pipe(U((function(n,r){return W(e(n,r)).pipe(F((function(e,i){return t(n,e,r,i)})))}),n))}:(\"number\"==typeof t&&(n=t),function(t){return t.lift(new B(e,n))})}var B=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.POSITIVE_INFINITY;_classCallCheck(this,e),this.project=t,this.concurrent=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new q(e,this.project,this.concurrent))}}]),e}(),q=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Number.POSITIVE_INFINITY;return _classCallCheck(this,n),(i=t.call(this,e)).project=r,i.concurrent=a,i.hasCompleted=!1,i.buffer=[],i.active=0,i.index=0,i}return _createClass(n,[{key:\"_next\",value:function(e){this.active0?this._next(t.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()}}]),n}(H);function G(e){return e}function $(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Number.POSITIVE_INFINITY;return U(G,e)}function J(e,t){return t?V(e,t):new w(E(e))}function K(){for(var e=arguments.length,t=new Array(e),n=0;n1&&\"number\"==typeof t[t.length-1]&&(r=t.pop())):\"number\"==typeof a&&(r=t.pop()),null===i&&1===t.length&&t[0]instanceof w?t[0]:$(r)(J(t,i))}function Z(){return function(e){return e.lift(new X(e))}}var Q,X=function(){function e(t){_classCallCheck(this,e),this.connectable=t}return _createClass(e,[{key:\"call\",value:function(e,t){var n=this.connectable;n._refCount++;var r=new ee(e,n),i=t.subscribe(r);return r.closed||(r.connection=n.connect()),i}}]),e}(),ee=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).connectable=r,i}return _createClass(n,[{key:\"_unsubscribe\",value:function(){var e=this.connectable;if(e){this.connectable=null;var t=e._refCount;if(t<=0)this.connection=null;else if(e._refCount=t-1,t>1)this.connection=null;else{var n=this.connection,r=e._connection;this.connection=null,!r||n&&r!==n||r.unsubscribe()}}else this.connection=null}}]),n}(p),te={operator:{value:null},_refCount:{value:0,writable:!0},_subject:{value:null,writable:!0},_connection:{value:null,writable:!0},_subscribe:{value:(Q=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this)).source=e,i.subjectFactory=r,i._refCount=0,i._isComplete=!1,i}return _createClass(n,[{key:\"_subscribe\",value:function(e){return this.getSubject().subscribe(e)}},{key:\"getSubject\",value:function(){var e=this._subject;return e&&!e.isStopped||(this._subject=this.subjectFactory()),this._subject}},{key:\"connect\",value:function(){var e=this._connection;return e||(this._isComplete=!1,(e=this._connection=new h).add(this.source.subscribe(new ne(this.getSubject(),this))),e.closed&&(this._connection=null,e=h.EMPTY)),e}},{key:\"refCount\",value:function(){return Z()(this)}}]),n}(w).prototype)._subscribe},_isComplete:{value:Q._isComplete,writable:!0},getSubject:{value:Q.getSubject},connect:{value:Q.connect},refCount:{value:Q.refCount}},ne=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).connectable=r,i}return _createClass(n,[{key:\"_error\",value:function(e){this._unsubscribe(),_get(_getPrototypeOf(n.prototype),\"_error\",this).call(this,e)}},{key:\"_complete\",value:function(){this.connectable._isComplete=!0,this._unsubscribe(),_get(_getPrototypeOf(n.prototype),\"_complete\",this).call(this)}},{key:\"_unsubscribe\",value:function(){var e=this.connectable;if(e){this.connectable=null;var t=e._connection;e._refCount=0,e._subject=null,e._connection=null,t&&t.unsubscribe()}}}]),n}(T);function re(e,t){return function(n){var r;if(r=\"function\"==typeof e?e:function(){return e},\"function\"==typeof t)return n.lift(new ie(r,t));var i=Object.create(n,te);return i.source=n,i.subjectFactory=r,i}}var ie=function(){function e(t,n){_classCallCheck(this,e),this.subjectFactory=t,this.selector=n}return _createClass(e,[{key:\"call\",value:function(e,t){var n=this.selector,r=this.subjectFactory(),i=n(r).subscribe(e);return i.add(t.subscribe(r)),i}}]),e}();function ae(){return new x}function oe(){return function(e){return Z()(re(ae)(e))}}function se(e){return{toString:e}.toString()}function le(e,t,n){return se((function(){var r=function(e){return function(){if(e){var t=e.apply(void 0,arguments);for(var n in t)this[n]=t[n]}}}(t);function i(){for(var e=arguments.length,t=new Array(e),n=0;n1&&void 0!==arguments[1]?arguments[1]:fe.Default;if(void 0===Ke)throw new Error(\"inject() must be called from an injection context\");return null===Ke?nt(e,void 0,t):Ke.get(e,t&fe.Optional?null:void 0,t)}function et(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:fe.Default;return(Ee||Xe)(Oe(e),t)}var tt=et;function nt(e,t,n){var r=ge(e);if(r&&\"root\"==r.providedIn)return void 0===r.value?r.value=r.factory():r.value;if(n&fe.Optional)return null;if(void 0!==t)return t;throw new Error(\"Injector: NOT_FOUND [\".concat(Le(e),\"]\"))}function rt(e){for(var t=[],n=0;n1&&void 0!==arguments[1]?arguments[1]:Ge;if(t===Ge){var n=new Error(\"NullInjectorError: No provider for \".concat(Le(e),\"!\"));throw n.name=\"NullInjectorError\",n}return t}}]),e}(),at=function e(){_classCallCheck(this,e)},ot=function e(){_classCallCheck(this,e)};function st(e,t){for(var n=0;n=e.length?e.push(n):e.splice(t,0,n)}function ct(e,t){return t>=e.length-1?e.pop():e.splice(t,1)[0]}function dt(e,t){for(var n=[],r=0;r=0?e[1|r]=n:function(e,t,n,r){var i=e.length;if(i==t)e.push(n,r);else if(1===i)e.push(r,e[0]),e[0]=n;else{for(i--,e.push(e[i-1],e[i]);i>t;)e[i]=e[i-2],i--;e[t]=n,e[t+1]=r}}(e,r=~r,t,n),r}function ft(e,t){var n=mt(e,t);if(n>=0)return e[1|n]}function mt(e,t){return function(e,t,n){for(var r=0,i=e.length>>1;i!==r;){var a=r+(i-r>>1),o=e[a<<1];if(t===o)return a<<1;o>t?i=a:r=a+1}return~(i<<1)}(e,t)}var pt=function(){var e={OnPush:0,Default:1};return e[e.OnPush]=\"OnPush\",e[e.Default]=\"Default\",e}(),_t=function(){var e={Emulated:0,Native:1,None:2,ShadowDom:3};return e[e.Emulated]=\"Emulated\",e[e.Native]=\"Native\",e[e.None]=\"None\",e[e.ShadowDom]=\"ShadowDom\",e}(),vt={},gt=[],yt=0;function bt(e){return se((function(){var t=e.type,n=t.prototype,r={},i={type:t,providersResolver:null,decls:e.decls,vars:e.vars,factory:null,template:e.template||null,consts:e.consts||null,ngContentSelectors:e.ngContentSelectors,hostBindings:e.hostBindings||null,hostVars:e.hostVars||0,hostAttrs:e.hostAttrs||null,contentQueries:e.contentQueries||null,declaredInputs:r,inputs:null,outputs:null,exportAs:e.exportAs||null,onChanges:null,onInit:n.ngOnInit||null,doCheck:n.ngDoCheck||null,afterContentInit:n.ngAfterContentInit||null,afterContentChecked:n.ngAfterContentChecked||null,afterViewInit:n.ngAfterViewInit||null,afterViewChecked:n.ngAfterViewChecked||null,onDestroy:n.ngOnDestroy||null,onPush:e.changeDetection===pt.OnPush,directiveDefs:null,pipeDefs:null,selectors:e.selectors||gt,viewQuery:e.viewQuery||null,features:e.features||null,data:e.data||{},encapsulation:e.encapsulation||_t.Emulated,id:\"c\",styles:e.styles||gt,_:null,setInput:null,schemas:e.schemas||null,tView:null},a=e.directives,o=e.features,s=e.pipes;return i.id+=yt++,i.inputs=St(e.inputs,r),i.outputs=St(e.outputs),o&&o.forEach((function(e){return e(i)})),i.directiveDefs=a?function(){return(\"function\"==typeof a?a():a).map(kt)}:null,i.pipeDefs=s?function(){return(\"function\"==typeof s?s():s).map(wt)}:null,i}))}function kt(e){return Tt(e)||function(e){return e[Fe]||null}(e)}function wt(e){return function(e){return e[Ne]||null}(e)}var Ct={};function Mt(e){var t={type:e.type,bootstrap:e.bootstrap||gt,declarations:e.declarations||gt,imports:e.imports||gt,exports:e.exports||gt,transitiveCompileScopes:null,schemas:e.schemas||null,id:e.id||null};return null!=e.id&&se((function(){Ct[e.id]=e.type})),t}function St(e,t){if(null==e)return vt;var n={};for(var r in e)if(e.hasOwnProperty(r)){var i=e[r],a=i;Array.isArray(i)&&(a=i[1],i=i[0]),n[i]=r,t&&(t[i]=a)}return n}var Lt=bt;function Tt(e){return e[He]||null}function xt(e,t){return e.hasOwnProperty(We)?e[We]:null}function Dt(e,t){var n=e[ze]||null;if(!n&&!0===t)throw new Error(\"Type \".concat(Le(e),\" does not have '\\u0275mod' property.\"));return n}function Ot(e){return Array.isArray(e)&&\"object\"==typeof e[1]}function Yt(e){return Array.isArray(e)&&!0===e[1]}function Et(e){return 0!=(8&e.flags)}function It(e){return 2==(2&e.flags)}function At(e){return 1==(1&e.flags)}function Pt(e){return null!==e.template}function jt(e){return 0!=(512&e[2])}var Rt=void 0;function Ht(){return void 0!==Rt?Rt:\"undefined\"!=typeof document?document:void 0}function Ft(e){return!!e.listen}var Nt={createRenderer:function(e,t){return Ht()}};function zt(e){for(;Array.isArray(e);)e=e[0];return e}function Vt(e,t){return zt(t[e+19])}function Wt(e,t){return zt(t[e.index])}function Ut(e,t){return e.data[t+19]}function Bt(e,t){return e[t+19]}function qt(e,t){var n=t[e];return Ot(n)?n:n[0]}function Gt(e){var t=function(e){return e.__ngContext__||null}(e);return t?Array.isArray(t)?t:t.lView:null}function $t(e){return 4==(4&e[2])}function Jt(e){return 128==(128&e[2])}function Kt(e,t){return null===e||null==t?null:e[t]}function Zt(e){e[18]=0}var Qt={lFrame:gn(null),bindingsEnabled:!0,checkNoChangesMode:!1};function Xt(){return Qt.bindingsEnabled}function en(){return Qt.lFrame.lView}function tn(){return Qt.lFrame.tView}function nn(e){Qt.lFrame.contextLView=e}function rn(){return Qt.lFrame.previousOrParentTNode}function an(e,t){Qt.lFrame.previousOrParentTNode=e,Qt.lFrame.isParent=t}function on(){return Qt.lFrame.isParent}function sn(){Qt.lFrame.isParent=!1}function ln(){return Qt.checkNoChangesMode}function un(e){Qt.checkNoChangesMode=e}function cn(){return Qt.lFrame.bindingIndex++}function dn(e){var t=Qt.lFrame,n=t.bindingIndex;return t.bindingIndex=t.bindingIndex+e,n}function hn(e,t){var n=Qt.lFrame;n.bindingIndex=n.bindingRootIndex=e,n.currentDirectiveIndex=t}function fn(){return Qt.lFrame.currentQueryIndex}function mn(e){Qt.lFrame.currentQueryIndex=e}function pn(e,t){var n=vn();Qt.lFrame=n,n.previousOrParentTNode=t,n.lView=e}function _n(e,t){var n=vn(),r=e[1];Qt.lFrame=n,n.previousOrParentTNode=t,n.lView=e,n.tView=r,n.contextLView=e,n.bindingIndex=r.bindingStartIndex}function vn(){var e=Qt.lFrame,t=null===e?null:e.child;return null===t?gn(e):t}function gn(e){var t={previousOrParentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:0,contextLView:null,elementDepthCount:0,currentNamespace:null,currentSanitizer:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:e,child:null};return null!==e&&(e.child=t),t}function yn(){var e=Qt.lFrame;return Qt.lFrame=e.parent,e.previousOrParentTNode=null,e.lView=null,e}var bn=yn;function kn(){var e=yn();e.isParent=!0,e.tView=null,e.selectedIndex=0,e.contextLView=null,e.elementDepthCount=0,e.currentDirectiveIndex=-1,e.currentNamespace=null,e.currentSanitizer=null,e.bindingRootIndex=-1,e.bindingIndex=-1,e.currentQueryIndex=0}function wn(){return Qt.lFrame.selectedIndex}function Cn(e){Qt.lFrame.selectedIndex=e}function Mn(){var e=Qt.lFrame;return Ut(e.tView,e.selectedIndex)}function Sn(){Qt.lFrame.currentNamespace=\"http://www.w3.org/2000/svg\"}function Ln(){Qt.lFrame.currentNamespace=null}function Tn(e,t){for(var n=t.directiveStart,r=t.directiveEnd;n=r)break}else t[o]<0&&(e[18]+=65536),(a>10>16&&(3&e[2])===t&&(e[2]+=1024,a.call(o)):a.call(o)}var In=function e(t,n,r){_classCallCheck(this,e),this.factory=t,this.resolving=!1,this.canSeeViewProviders=n,this.injectImpl=r};function An(e,t,n){for(var r=Ft(e),i=0;it){o=a-1;break}}}for(;a>16}function Vn(e,t){for(var n=zn(e),r=t;n>0;)r=r[15],n--;return r}function Wn(e){return\"string\"==typeof e?e:null==e?\"\":\"\"+e}function Un(e){return\"function\"==typeof e?e.name||e.toString():\"object\"==typeof e&&null!=e&&\"function\"==typeof e.type?e.type.name||e.type.toString():Wn(e)}var Bn=(\"undefined\"!=typeof requestAnimationFrame&&requestAnimationFrame||setTimeout).bind(Re);function qn(e){return{name:\"window\",target:e.ownerDocument.defaultView}}function Gn(e){return e instanceof Function?e():e}var $n=!0;function Jn(e){var t=$n;return $n=e,t}var Kn=0;function Zn(e,t){var n=Xn(e,t);if(-1!==n)return n;var r=t[1];r.firstCreatePass&&(e.injectorIndex=t.length,Qn(r.data,e),Qn(t,null),Qn(r.blueprint,null));var i=er(e,t),a=e.injectorIndex;if(Fn(i))for(var o=Nn(i),s=Vn(i,t),l=s[1].data,u=0;u<8;u++)t[a+u]=s[o+u]|l[o+u];return t[a+8]=i,a}function Qn(e,t){e.push(0,0,0,0,0,0,0,0,t)}function Xn(e,t){return-1===e.injectorIndex||e.parent&&e.parent.injectorIndex===e.injectorIndex||null==t[e.injectorIndex+8]?-1:e.injectorIndex}function er(e,t){if(e.parent&&-1!==e.parent.injectorIndex)return e.parent.injectorIndex;for(var n=t[6],r=1;n&&-1===n.injectorIndex;)n=(t=t[15])?t[6]:null,r++;return n?n.injectorIndex|r<<16:-1}function tr(e,t,n){!function(e,t,n){var r=\"string\"!=typeof n?n[Ue]:n.charCodeAt(0)||0;null==r&&(r=n[Ue]=Kn++);var i=255&r,a=1<3&&void 0!==arguments[3]?arguments[3]:fe.Default,i=arguments.length>4?arguments[4]:void 0;if(null!==e){var a=function(e){if(\"string\"==typeof e)return e.charCodeAt(0)||0;var t=e[Ue];return\"number\"==typeof t&&t>0?255&t:t}(n);if(\"function\"==typeof a){pn(t,e);try{var o=a();if(null!=o||r&fe.Optional)return o;throw new Error(\"No provider for \".concat(Un(n),\"!\"))}finally{bn()}}else if(\"number\"==typeof a){if(-1===a)return new ur(e,t);var s=null,l=Xn(e,t),u=-1,c=r&fe.Host?t[16][6]:null;for((-1===l||r&fe.SkipSelf)&&(u=-1===l?er(e,t):t[l+8],lr(r,!1)?(s=t[1],l=Nn(u),t=Vn(u,t)):l=-1);-1!==l;){u=t[l+8];var d=t[1];if(sr(a,l,d.data)){var h=ir(l,t,n,s,r,c);if(h!==rr)return h}lr(r,t[1].data[l+8]===c)&&sr(a,l,t)?(s=d,l=Nn(u),t=Vn(u,t)):l=-1}}}if(r&fe.Optional&&void 0===i&&(i=null),0==(r&(fe.Self|fe.Host))){var f=t[9],m=Qe(void 0);try{return f?f.get(n,i,r&fe.Optional):nt(n,i,r&fe.Optional)}finally{Qe(m)}}if(r&fe.Optional)return i;throw new Error(\"NodeInjector: NOT_FOUND [\".concat(Un(n),\"]\"))}var rr={};function ir(e,t,n,r,i,a){var o=t[1],s=o.data[e+8],l=ar(s,o,n,null==r?It(s)&&$n:r!=o&&3===s.type,i&fe.Host&&a===s);return null!==l?or(t,o,l,s):rr}function ar(e,t,n,r,i){for(var a=e.providerIndexes,o=t.data,s=65535&a,l=e.directiveStart,u=a>>16,c=i?s+u:e.directiveEnd,d=r?s:s+u;d=l&&h.type===n)return d}if(i){var f=o[l];if(f&&Pt(f)&&f.type===n)return l}return null}function or(e,t,n,r){var i=e[n],a=t.data;if(i instanceof In){var o=i;if(o.resolving)throw new Error(\"Circular dep for \".concat(Un(a[n])));var s,l=Jn(o.canSeeViewProviders);o.resolving=!0,o.injectImpl&&(s=Qe(o.injectImpl)),pn(e,r);try{i=e[n]=o.factory(void 0,a,e,r),t.firstCreatePass&&n>=r.directiveStart&&function(e,t,n){var r=t.onChanges,i=t.onInit,a=t.doCheck;r&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,r),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,r)),i&&(n.preOrderHooks||(n.preOrderHooks=[])).push(-e,i),a&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,a),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,a))}(n,a[n],t)}finally{o.injectImpl&&Qe(s),Jn(l),o.resolving=!1,bn()}}return i}function sr(e,t,n){var r=64&e,i=32&e;return!!((128&e?r?i?n[t+7]:n[t+6]:i?n[t+5]:n[t+4]:r?i?n[t+3]:n[t+2]:i?n[t+1]:n[t])&1<1?t-1:0),r=1;r',!n.querySelector||n.querySelector(\"svg\")?(n.innerHTML='

',this.getInertBodyElement=n.querySelector&&n.querySelector(\"svg img\")&&function(){try{return!!window.DOMParser}catch(e){return!1}}()?this.getInertBodyElement_DOMParser:this.getInertBodyElement_InertDocument):this.getInertBodyElement=this.getInertBodyElement_XHR}return _createClass(e,[{key:\"getInertBodyElement_XHR\",value:function(e){e=\"\"+e+\"\";try{e=encodeURI(e)}catch(r){return null}var t=new XMLHttpRequest;t.responseType=\"document\",t.open(\"GET\",\"data:text/html;charset=utf-8,\"+e,!1),t.send(void 0);var n=t.response.body;return n.removeChild(n.firstChild),n}},{key:\"getInertBodyElement_DOMParser\",value:function(e){e=\"\"+e+\"\";try{var t=(new window.DOMParser).parseFromString(e,\"text/html\").body;return t.removeChild(t.firstChild),t}catch(n){return null}}},{key:\"getInertBodyElement_InertDocument\",value:function(e){var t=this.inertDocument.createElement(\"template\");if(\"content\"in t)return t.innerHTML=e,t;var n=this.inertDocument.createElement(\"body\");return n.innerHTML=e,this.defaultDoc.documentMode&&this.stripCustomNsAttrs(n),n}},{key:\"stripCustomNsAttrs\",value:function(e){for(var t=e.attributes,n=t.length-1;0\"),!0}},{key:\"endElement\",value:function(e){var t=e.nodeName.toLowerCase();Fr.hasOwnProperty(t)&&!Pr.hasOwnProperty(t)&&(this.buf.push(\"\"))}},{key:\"chars\",value:function(e){this.buf.push(Gr(e))}},{key:\"checkClobberedElement\",value:function(e,t){if(t&&(e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error(\"Failed to sanitize html because the element is clobbered: \".concat(e.outerHTML));return t}}]),e}(),Br=/[\\uD800-\\uDBFF][\\uDC00-\\uDFFF]/g,qr=/([^\\#-~ |!])/g;function Gr(e){return e.replace(/&/g,\"&\").replace(Br,(function(e){return\"&#\"+(1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320)+65536)+\";\"})).replace(qr,(function(e){return\"&#\"+e.charCodeAt(0)+\";\"})).replace(//g,\">\")}function $r(e,t){var n=null;try{Ar=Ar||new Tr(e);var r=t?String(t):\"\";n=Ar.getInertBodyElement(r);var i=5,a=r;do{if(0===i)throw new Error(\"Failed to sanitize html because the input is unstable\");i--,r=a,a=n.innerHTML,n=Ar.getInertBodyElement(r)}while(r!==a);var o=new Ur,s=o.sanitizeChildren(Jr(n)||n);return Lr()&&o.sanitizedSomething&&console.warn(\"WARNING: sanitizing HTML stripped some content, see http://g.co/ng/security#xss\"),s}finally{if(n)for(var l=Jr(n)||n;l.firstChild;)l.removeChild(l.firstChild)}}function Jr(e){return\"content\"in e&&function(e){return e.nodeType===Node.ELEMENT_NODE&&\"TEMPLATE\"===e.nodeName}(e)?e.content:null}var Kr=function(){var e={NONE:0,HTML:1,STYLE:2,SCRIPT:3,URL:4,RESOURCE_URL:5};return e[e.NONE]=\"NONE\",e[e.HTML]=\"HTML\",e[e.STYLE]=\"STYLE\",e[e.SCRIPT]=\"SCRIPT\",e[e.URL]=\"URL\",e[e.RESOURCE_URL]=\"RESOURCE_URL\",e}(),Zr=new RegExp(\"^([-,.\\\"'%_!# a-zA-Z0-9]+|(?:(?:matrix|translate|scale|rotate|skew|perspective)(?:X|Y|Z|3d)?|(?:rgb|hsl)a?|(?:repeating-)?(?:linear|radial)-gradient|(?:attr|calc|var))\\\\([-0-9.%, #a-zA-Z]+\\\\))$\",\"g\"),Qr=/^url\\(([^)]+)\\)$/;function Xr(e){if(!(e=String(e).trim()))return\"\";var t=e.match(Qr);return t&&Or(t[1])===t[1]||e.match(Zr)&&function(e){for(var t=!0,n=!0,r=0;ra?\"\":i[c+1].toLowerCase();var h=8&r?d:null;if(h&&-1!==li(h,u,0)||2&r&&u!==d){if(hi(r))return!1;o=!0}}}}else{if(!o&&!hi(r)&&!hi(l))return!1;if(o&&hi(l))continue;o=!1,r=l|1&r}}return hi(r)||o}function hi(e){return 0==(1&e)}function fi(e,t,n,r){if(null===t)return-1;var i=0;if(r||!n){for(var a=!1;i-1)for(n++;n2&&void 0!==arguments[2]&&arguments[2],r=0;r0?'=\"'+s+'\"':\"\")+\"]\"}else 8&r?i+=\".\"+o:4&r&&(i+=\" \"+o);else\"\"===i||hi(o)||(t+=_i(a,i),i=\"\"),r=o,a=a||!hi(r);n++}return\"\"!==i&&(t+=_i(a,i)),t}var gi={};function yi(e){var t=e[3];return Yt(t)?t[3]:t}function bi(e){ki(tn(),en(),wn()+e,ln())}function ki(e,t,n,r){if(!r)if(3==(3&t[2])){var i=e.preOrderCheckHooks;null!==i&&xn(t,i,n)}else{var a=e.preOrderHooks;null!==a&&Dn(t,a,0,n)}Cn(n)}var wi={marker:\"element\"},Ci={marker:\"comment\"};function Mi(e,t){return e<<17|t<<2}function Si(e){return e>>17&32767}function Li(e){return 2|e}function Ti(e){return(131068&e)>>2}function xi(e,t){return-131069&e|t<<2}function Di(e){return 1|e}function Oi(e,t){var n=e.contentQueries;if(null!==n)for(var r=0;r>1==-1){for(var r=9;r19&&ki(e,t,0,ln()),n(r,i)}finally{Cn(a)}}function Hi(e,t,n){if(Et(t))for(var r=t.directiveEnd,i=t.directiveStart;i2&&void 0!==arguments[2]?arguments[2]:Wt,r=t.localNames;if(null!==r)for(var i=t.index+1,a=0;a0&&(e[n-1][4]=r[4]);var a=ct(e,9+t);Sa(r[1],r,!1,null);var o=a[5];null!==o&&o.detachView(a[1]),r[3]=null,r[4]=null,r[2]&=-129}return r}}function xa(e,t){if(!(256&t[2])){var n=t[11];Ft(n)&&n.destroyNode&&za(e,t,n,3,null,null),function(e){var t=e[13];if(!t)return Oa(e[1],e);for(;t;){var n=null;if(Ot(t))n=t[13];else{var r=t[9];r&&(n=r)}if(!n){for(;t&&!t[4]&&t!==e;)Ot(t)&&Oa(t[1],t),t=Da(t,e);null===t&&(t=e),Ot(t)&&Oa(t[1],t),n=t&&t[4]}t=n}}(t)}}function Da(e,t){var n;return Ot(e)&&(n=e[6])&&2===n.type?ka(n,e):e[3]===t?null:e[3]}function Oa(e,t){if(!(256&t[2])){t[2]&=-129,t[2]|=256,function(e,t){var n;if(null!=e&&null!=(n=e.destroyHooks))for(var r=0;r=0?r[l]():r[-l].unsubscribe(),i+=2}else n[i].call(r[n[i+1]]);t[7]=null}}(e,t);var n=t[6];n&&3===n.type&&Ft(t[11])&&t[11].destroy();var r=t[17];if(null!==r&&Yt(t[3])){r!==t[3]&&La(r,t);var i=t[5];null!==i&&i.detachView(e)}}}function Ya(e,t,n){for(var r=t.parent;null!=r&&(4===r.type||5===r.type);)r=(t=r).parent;if(null==r){var i=n[6];return 2===i.type?wa(i,n):n[0]}if(t&&5===t.type&&4&t.flags)return Wt(t,n).parentNode;if(2&r.flags){var a=e.data,o=a[a[r.index].directiveStart].encapsulation;if(o!==_t.ShadowDom&&o!==_t.Native)return null}return Wt(r,n)}function Ea(e,t,n,r){Ft(e)?e.insertBefore(t,n,r):t.insertBefore(n,r,!0)}function Ia(e,t,n){Ft(e)?e.appendChild(t,n):t.appendChild(n)}function Aa(e,t,n,r){null!==r?Ea(e,t,n,r):Ia(e,t,n)}function Pa(e,t){return Ft(e)?e.parentNode(t):t.parentNode}function ja(e,t){if(2===e.type){var n=ka(e,t);return null===n?null:Ha(n.indexOf(t,9)-9,n)}return 4===e.type||5===e.type?Wt(e,t):null}function Ra(e,t,n,r){var i=Ya(e,r,t);if(null!=i){var a=t[11],o=ja(r.parent||t[6],t);if(Array.isArray(n))for(var s=0;s-1&&this._viewContainerRef.detach(e),this._viewContainerRef=null}xa(this._lView[1],this._lView)}},{key:\"onDestroy\",value:function(e){var t,n,r;t=this._lView[1],r=e,pa(n=this._lView).push(r),t.firstCreatePass&&_a(t).push(n[7].length-1,null)}},{key:\"markForCheck\",value:function(){ca(this._cdRefInjectingView||this._lView)}},{key:\"detach\",value:function(){this._lView[2]&=-129}},{key:\"reattach\",value:function(){this._lView[2]|=128}},{key:\"detectChanges\",value:function(){da(this._lView[1],this._lView,this.context)}},{key:\"checkNoChanges\",value:function(){!function(e,t,n){un(!0);try{da(e,t,n)}finally{un(!1)}}(this._lView[1],this._lView,this.context)}},{key:\"attachToViewContainerRef\",value:function(e){if(this._appRef)throw new Error(\"This view is already attached directly to the ApplicationRef!\");this._viewContainerRef=e}},{key:\"detachFromAppRef\",value:function(){var e;this._appRef=null,za(this._lView[1],e=this._lView,e[11],2,null,null)}},{key:\"attachToAppRef\",value:function(e){if(this._viewContainerRef)throw new Error(\"This view is already attached to a ViewContainer!\");this._appRef=e}},{key:\"rootNodes\",get:function(){var e=this._lView;return null==e[0]?function e(t,n,r,i){for(var a=arguments.length>4&&void 0!==arguments[4]&&arguments[4];null!==r;){var o=n[r.index];if(null!==o&&i.push(zt(o)),Yt(o))for(var s=9;s0;)this.remove(this.length-1)}},{key:\"get\",value:function(e){return null!==this._lContainer[8]&&this._lContainer[8][e]||null}},{key:\"createEmbeddedView\",value:function(e,t,n){var r=e.createEmbeddedView(t||{});return this.insert(r,n),r}},{key:\"createComponent\",value:function(e,t,n,r,i){var a=n||this.parentInjector;if(!i&&null==e.ngModule&&a){var o=a.get(at,null);o&&(i=o)}var s=e.create(a,r,void 0,i);return this.insert(s.hostView,t),s}},{key:\"insert\",value:function(e,t){var n=e._lView,r=n[1];if(e.destroyed)throw new Error(\"Cannot insert a destroyed View in a ViewContainer!\");if(this.allocateContainerIfNeeded(),Yt(n[3])){var i=this.indexOf(e);if(-1!==i)this.detach(i);else{var a=n[3],o=new $a(a,a[6],a[3]);o.detach(o.indexOf(e))}}var s=this._adjustIndex(t);return function(e,t,n,r){var i=9+r,a=n.length;r>0&&(n[i-1][4]=t),r1&&void 0!==arguments[1]?arguments[1]:0;return null==e?this.length+t:e}},{key:\"allocateContainerIfNeeded\",value:function(){null===this._lContainer[8]&&(this._lContainer[8]=[])}},{key:\"element\",get:function(){return Za(t,this._hostTNode,this._hostView)}},{key:\"injector\",get:function(){return new ur(this._hostTNode,this._hostView)}},{key:\"parentInjector\",get:function(){var e=er(this._hostTNode,this._hostView),t=Vn(e,this._hostView),n=function(e,t,n){if(n.parent&&-1!==n.parent.injectorIndex){for(var r=n.parent.injectorIndex,i=n.parent;null!=i.parent&&r==i.parent.injectorIndex;)i=i.parent;return i}for(var a=zn(e),o=t,s=t[6];a>1;)s=(o=o[15])[6],a--;return s}(e,this._hostView,this._hostTNode);return Fn(e)&&null!=n?new ur(n,t):new ur(null,this._hostView)}},{key:\"length\",get:function(){return this._lContainer.length-9}}]),r}(e));var a=r[n.index];if(Yt(a))(function(e,t){e[2]=-2})(i=a);else{var o;if(4===n.type)o=zt(a);else if(o=r[11].createComment(\"\"),jt(r)){var s=r[11],l=Wt(n,r);Ea(s,Pa(s,l),o,function(e,t){return Ft(e)?e.nextSibling(t):t.nextSibling}(s,l))}else Ra(r[1],r,o,n);r[n.index]=i=aa(a,r,o,n),ua(r,i)}return new $a(i,n,r)}var eo=function(){var e=function e(){_classCallCheck(this,e)};return e.__NG_ELEMENT_ID__=function(){return to()},e}(),to=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return function(e,t,n){if(!n&&It(e)){var r=qt(e.index,t);return new Ja(r,r)}return 3===e.type||0===e.type||4===e.type||5===e.type?new Ja(t[16],t):null}(rn(),en(),e)},no=new Be(\"Set Injector scope.\"),ro={},io={},ao=[],oo=void 0;function so(){return void 0===oo&&(oo=new it),oo}function lo(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r=arguments.length>3?arguments[3]:void 0;return new uo(e,n,t||so(),r)}var uo=function(){function e(t,n,r){var i=this,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;_classCallCheck(this,e),this.parent=r,this.records=new Map,this.injectorDefTypes=new Set,this.onDestroy=new Set,this._destroyed=!1;var o=[];n&<(n,(function(e){return i.processProvider(e,t,n)})),lt([t],(function(e){return i.processInjectorType(e,[],o)})),this.records.set(qe,fo(void 0,this));var s=this.records.get(no);this.scope=null!=s?s.value:null,this.source=a||(\"object\"==typeof t?null:Le(t))}return _createClass(e,[{key:\"destroy\",value:function(){this.assertNotDestroyed(),this._destroyed=!0;try{this.onDestroy.forEach((function(e){return e.ngOnDestroy()}))}finally{this.records.clear(),this.onDestroy.clear(),this.injectorDefTypes.clear()}}},{key:\"get\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Ge,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:fe.Default;this.assertNotDestroyed();var r,i=Ze(this);try{if(!(n&fe.SkipSelf)){var a=this.records.get(e);if(void 0===a){var o=(\"function\"==typeof(r=e)||\"object\"==typeof r&&r instanceof Be)&&ge(e);a=o&&this.injectableDefInScope(o)?fo(co(e),ro):null,this.records.set(e,a)}if(null!=a)return this.hydrate(e,a)}return(n&fe.Self?so():this.parent).get(e,t=n&fe.Optional&&t===Ge?null:t)}catch(s){if(\"NullInjectorError\"===s.name){if((s.ngTempTokenPath=s.ngTempTokenPath||[]).unshift(Le(e)),i)throw s;return function(e,t,n,r){var i=e.ngTempTokenPath;throw t.__source&&i.unshift(t.__source),e.message=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;e=e&&\"\\n\"===e.charAt(0)&&\"\\u0275\"==e.charAt(1)?e.substr(2):e;var i=Le(t);if(Array.isArray(t))i=t.map(Le).join(\" -> \");else if(\"object\"==typeof t){var a=[];for(var o in t)if(t.hasOwnProperty(o)){var s=t[o];a.push(o+\":\"+(\"string\"==typeof s?JSON.stringify(s):Le(s)))}i=\"{\".concat(a.join(\", \"),\"}\")}return\"\".concat(n).concat(r?\"(\"+r+\")\":\"\",\"[\").concat(i,\"]: \").concat(e.replace($e,\"\\n \"))}(\"\\n\"+e.message,i,\"R3InjectorError\",r),e.ngTokenPath=i,e.ngTempTokenPath=null,e}(s,e,0,this.source)}throw s}finally{Ze(i)}}},{key:\"_resolveInjectorDefTypes\",value:function(){var e=this;this.injectorDefTypes.forEach((function(t){return e.get(t)}))}},{key:\"toString\",value:function(){var e=[];return this.records.forEach((function(t,n){return e.push(Le(n))})),\"R3Injector[\".concat(e.join(\", \"),\"]\")}},{key:\"assertNotDestroyed\",value:function(){if(this._destroyed)throw new Error(\"Injector has already been destroyed.\")}},{key:\"processInjectorType\",value:function(e,t,n){var r=this;if(!(e=Oe(e)))return!1;var i=be(e),a=null==i&&e.ngModule||void 0,o=void 0===a?e:a,s=-1!==n.indexOf(o);if(void 0!==a&&(i=be(a)),null==i)return!1;if(null!=i.imports&&!s){var l;n.push(o);try{lt(i.imports,(function(e){r.processInjectorType(e,t,n)&&(void 0===l&&(l=[]),l.push(e))}))}finally{}if(void 0!==l)for(var u=function(e){var t=l[e],n=t.ngModule,i=t.providers;lt(i,(function(e){return r.processProvider(e,n,i||ao)}))},c=0;c0){var n=dt(t,\"?\");throw new Error(\"Can't resolve all parameters for \".concat(Le(e),\": (\").concat(n.join(\", \"),\").\"))}var r=function(e){var t=e&&(e[ke]||e[Me]||e[Ce]&&e[Ce]());if(t){var n=function(e){if(e.hasOwnProperty(\"name\"))return e.name;var t=(\"\"+e).match(/^function\\s*([^\\s(]+)/);return null===t?\"\":t[1]}(e);return console.warn('DEPRECATED: DI is instantiating a token \"'.concat(n,'\" that inherits its @Injectable decorator but does not provide one itself.\\n')+'This will become an error in v10. Please add @Injectable() to the \"'.concat(n,'\" class.')),t}return null}(e);return null!==r?function(){return r.factory(e)}:function(){return new e}}(e);throw new Error(\"unreachable\")}function ho(e,t,n){var r,i=void 0;if(po(e)){var a=Oe(e);return xt(a)||co(a)}if(mo(e))i=function(){return Oe(e.useValue)};else if((r=e)&&r.useFactory)i=function(){return e.useFactory.apply(e,_toConsumableArray(rt(e.deps||[])))};else if(function(e){return!(!e||!e.useExisting)}(e))i=function(){return et(Oe(e.useExisting))};else{var o=Oe(e&&(e.useClass||e.provide));if(o||function(e,t,n){var r=\"\";throw e&&t&&(r=\" - only instances of Provider and Type are allowed, got: [\".concat(t.map((function(e){return e==n?\"?\"+n+\"?\":\"...\"})).join(\", \"),\"]\")),new Error(\"Invalid provider for the NgModule '\".concat(Le(e),\"'\")+r)}(t,n,e),!function(e){return!!e.deps}(e))return xt(o)||co(o);i=function(){return _construct(o,_toConsumableArray(rt(e.deps)))}}return i}function fo(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return{factory:e,value:t,multi:n?[]:void 0}}function mo(e){return null!==e&&\"object\"==typeof e&&Je in e}function po(e){return\"function\"==typeof e}var _o=function(e,t,n){return function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r=arguments.length>3?arguments[3]:void 0,i=lo(e,t,n,r);return i._resolveInjectorDefTypes(),i}({name:n},t,e,n)},vo=function(){var e=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"create\",value:function(e,t){return Array.isArray(e)?_o(e,t,\"\"):_o(e.providers,e.parent,e.name||\"\")}}]),e}();return e.THROW_IF_NOT_FOUND=Ge,e.NULL=new it,e.\\u0275prov=_e({token:e,providedIn:\"any\",factory:function(){return et(qe)}}),e.__NG_ELEMENT_ID__=-1,e}(),go=new Be(\"AnalyzeForEntryComponents\"),yo=new Map,bo=new Set;function ko(e){return\"string\"==typeof e?e:e.text()}function wo(e,t){for(var n=e.styles,r=e.classes,i=0,a=0;a1&&void 0!==arguments[1]?arguments[1]:fe.Default,n=en();return null==n?et(e,t):nr(rn(),n,Oe(e),t)}function Ao(e){return function(e,t){if(\"class\"===t)return e.classes;if(\"style\"===t)return e.styles;var n=e.attrs;if(n)for(var r=n.length,i=0;i2&&void 0!==arguments[2]&&arguments[2],r=arguments.length>3?arguments[3]:void 0,i=en(),a=tn(),o=rn();return $o(a,i,i[11],o,e,t,n,r),qo}function Go(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=arguments.length>3?arguments[3]:void 0,i=rn(),a=en(),o=va(i,a);return $o(tn(),a,o,i,e,t,n,r),Go}function $o(e,t,n,r,i,a){var o=arguments.length>6&&void 0!==arguments[6]&&arguments[6],s=arguments.length>7?arguments[7]:void 0,l=At(r),u=e.firstCreatePass&&(e.cleanup||(e.cleanup=[])),c=pa(t),d=!0;if(3===r.type){var h=Wt(r,t),f=s?s(h):vt,m=f.target||h,p=c.length,_=s?function(e){return s(zt(e[r.index])).target}:r.index;if(Ft(n)){var v=null;if(!s&&l&&(v=function(e,t,n,r){var i=e.cleanup;if(null!=i)for(var a=0;al?s[l]:null}\"string\"==typeof o&&(a+=2)}return null}(e,t,i,r.index)),null!==v)(v.__ngLastListenerFn__||v).__ngNextListenerFn__=a,v.__ngLastListenerFn__=a,d=!1;else{a=Ko(r,t,a,!1);var g=n.listen(f.name||m,i,a);c.push(a,g),u&&u.push(i,_,p,p+1)}}else a=Ko(r,t,a,!0),m.addEventListener(i,a,o),c.push(a),u&&u.push(i,_,p,o)}var y,b=r.outputs;if(d&&null!==b&&(y=b[i])){var k=y.length;if(k)for(var w=0;w0&&void 0!==arguments[0]?arguments[0]:1;return function(e){return(Qt.lFrame.contextLView=function(e,t){for(;e>0;)t=t[15],e--;return t}(e,Qt.lFrame.contextLView))[8]}(e)}function Qo(e,t){for(var n=null,r=function(e){var t=e.attrs;if(null!=t){var n=t.indexOf(5);if(0==(1&n))return t[n+1]}return null}(e),i=0;i1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2?arguments[2]:void 0,r=en(),i=tn(),a=Ii(i,r[6],e,1,null,n||null);null===a.projection&&(a.projection=t),sn(),es||Va(i,r,a)}function rs(e,t,n){return is(e,\"\",t,\"\",n),rs}function is(e,t,n,r,i){var a=en(),o=Oo(a,t,n,r);return o!==gi&&Bi(tn(),Mn(),a,e,o,a[11],i,!1),is}var as=[];function os(e,t,n,r,i){for(var a=e[n+1],o=null===t,s=r?Si(a):Ti(a),l=!1;0!==s&&(!1===l||o);){var u=e[s+1];ss(e[s],t)&&(l=!0,e[s+1]=r?Di(u):Li(u)),s=r?Si(u):Ti(u)}l&&(e[n+1]=r?Li(a):Di(a))}function ss(e,t){return null===e||null==t||(Array.isArray(e)?e[1]:e)===t||!(!Array.isArray(e)||\"string\"!=typeof t)&&mt(e,t)>=0}var ls={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function us(e){return e.substring(ls.key,ls.keyEnd)}function cs(e,t){var n=ls.textEnd;return n===t?-1:(t=ls.keyEnd=function(e,t,n){for(;t32;)t++;return t}(e,ls.key=t,n),ds(e,t,n))}function ds(e,t,n){for(;t=0;n=cs(t,n))ht(e,us(t),!0)}function _s(e,t,n,r){var i,a,o=en(),s=tn(),l=dn(2);(s.firstUpdatePass&&ys(s,e,l,r),t!==gi&&xo(o,l,t))&&(null==n&&(i=null===(a=Qt.lFrame)?null:a.currentSanitizer)&&(n=i),ws(s,s.data[wn()+19],o,o[11],e,o[l+1]=function(e,t){return null==e||(\"function\"==typeof t?e=t(e):\"string\"==typeof t?e+=t:\"object\"==typeof e&&(e=Le(kr(e)))),e}(t,n),r,l))}function vs(e,t,n,r){var i=tn(),a=dn(2);i.firstUpdatePass&&ys(i,null,a,r);var o=en();if(n!==gi&&xo(o,a,n)){var s=i.data[wn()+19];if(Ss(s,r)&&!gs(i,a)){var l=r?s.classes:s.styles;null!==l&&(n=Te(l,n||\"\")),Ro(i,s,o,n,r)}else!function(e,t,n,r,i,a,o,s){i===gi&&(i=as);for(var l=0,u=0,c=0=e.expandoStartIndex}function ys(e,t,n,r){var i=e.data;if(null===i[n+1]){var a=i[wn()+19],o=gs(e,n);Ss(a,r)&&null===t&&!o&&(t=!1),t=function(e,t,n,r){var i=function(e){var t=Qt.lFrame.currentDirectiveIndex;return-1===t?null:e[t]}(e),a=r?t.residualClasses:t.residualStyles;if(null===i)0===(r?t.classBindings:t.styleBindings)&&(n=ks(n=bs(null,e,t,n,r),t.attrs,r),a=null);else{var o=t.directiveStylingLast;if(-1===o||e[o]!==i)if(n=bs(i,e,t,n,r),null===a){var s=function(e,t,n){var r=n?t.classBindings:t.styleBindings;if(0!==Ti(r))return e[Si(r)]}(e,t,r);void 0!==s&&Array.isArray(s)&&function(e,t,n,r){e[Si(n?t.classBindings:t.styleBindings)]=r}(e,t,r,s=ks(s=bs(null,e,t,s[1],r),t.attrs,r))}else a=function(e,t,n){for(var r=void 0,i=t.directiveEnd,a=1+t.directiveStylingLast;a0)&&(c=!0)}else u=n;if(i)if(0!==l){var h=Si(e[s+1]);e[r+1]=Mi(h,s),0!==h&&(e[h+1]=xi(e[h+1],r)),e[s+1]=131071&e[s+1]|r<<17}else e[r+1]=Mi(s,0),0!==s&&(e[s+1]=xi(e[s+1],r)),s=r;else e[r+1]=Mi(l,0),0===s?s=r:e[l+1]=xi(e[l+1],r),l=r;c&&(e[r+1]=Li(e[r+1])),os(e,u,r,!0),os(e,u,r,!1),function(e,t,n,r,i){var a=i?e.residualClasses:e.residualStyles;null!=a&&\"string\"==typeof t&&mt(a,t)>=0&&(n[r+1]=Di(n[r+1]))}(t,u,e,r,a),o=Mi(s,l),a?t.classBindings=o:t.styleBindings=o}(i,a,t,n,o,r)}}function bs(e,t,n,r,i){var a=null,o=n.directiveEnd,s=n.directiveStylingLast;for(-1===s?s=n.directiveStart:s++;s0;){var l=e[i],u=Array.isArray(l),c=u?l[1]:l,d=null===c,h=n[i+1];h===gi&&(h=d?as:void 0);var f=d?ft(h,r):c===r?h:void 0;if(u&&!Ms(f)&&(f=ft(l,r)),Ms(f)&&(s=f,o))return s;var m=e[i+1];i=o?Si(m):Ti(m)}if(null!==t){var p=a?t.residualClasses:t.residualStyles;null!=p&&(s=ft(p,r))}return s}function Ms(e){return void 0!==e}function Ss(e,t){return 0!=(e.flags&(t?16:32))}function Ls(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\",n=en(),r=tn(),i=e+19,a=r.firstCreatePass?Ii(r,n[6],e,3,null,null):r.data[i],o=n[i]=Ma(t,n[11]);Ra(r,n,o,a),an(a,!1)}function Ts(e){return xs(\"\",e,\"\"),Ts}function xs(e,t,n){var r=en(),i=Oo(r,e,t,n);return i!==gi&&ba(r,wn(),i),xs}function Ds(e,t,n){var r=en();return xo(r,cn(),t)&&Bi(tn(),Mn(),r,e,t,r[11],n,!0),Ds}function Os(e,t,n){var r=en();if(xo(r,cn(),t)){var i=tn(),a=Mn();Bi(i,a,r,e,t,va(a,r),n,!0)}return Os}function Ys(e,t){var n=Gt(e)[1],r=n.data.length-1;Tn(n,{directiveStart:r,directiveEnd:r+1})}function Es(e){for(var t=Object.getPrototypeOf(e.type.prototype).constructor,n=!0,r=[e];t;){var i=void 0;if(Pt(e))i=t.\\u0275cmp||t.\\u0275dir;else{if(t.\\u0275cmp)throw new Error(\"Directives cannot inherit Components\");i=t.\\u0275dir}if(i){if(n){r.push(i);var a=e;a.inputs=Is(e.inputs),a.declaredInputs=Is(e.declaredInputs),a.outputs=Is(e.outputs);var o=i.hostBindings;o&&js(e,o);var s=i.viewQuery,l=i.contentQueries;if(s&&As(e,s),l&&Ps(e,l),pe(e.inputs,i.inputs),pe(e.declaredInputs,i.declaredInputs),pe(e.outputs,i.outputs),Pt(i)&&i.data.animation){var u=e.data;u.animation=(u.animation||[]).concat(i.data.animation)}a.afterContentChecked=a.afterContentChecked||i.afterContentChecked,a.afterContentInit=e.afterContentInit||i.afterContentInit,a.afterViewChecked=e.afterViewChecked||i.afterViewChecked,a.afterViewInit=e.afterViewInit||i.afterViewInit,a.doCheck=e.doCheck||i.doCheck,a.onDestroy=e.onDestroy||i.onDestroy,a.onInit=e.onInit||i.onInit}var c=i.features;if(c)for(var d=0;d=0;r--){var i=e[r];i.hostVars=t+=i.hostVars,i.hostAttrs=Rn(i.hostAttrs,n=Rn(n,i.hostAttrs))}}(r)}function Is(e){return e===vt?{}:e===gt?[]:e}function As(e,t){var n=e.viewQuery;e.viewQuery=n?function(e,r){t(e,r),n(e,r)}:t}function Ps(e,t){var n=e.contentQueries;e.contentQueries=n?function(e,r,i){t(e,r,i),n(e,r,i)}:t}function js(e,t){var n=e.hostBindings;e.hostBindings=n?function(e,r){t(e,r),n(e,r)}:t}var Rs=function(){function e(t,n,r){_classCallCheck(this,e),this.previousValue=t,this.currentValue=n,this.firstChange=r}return _createClass(e,[{key:\"isFirstChange\",value:function(){return this.firstChange}}]),e}();function Hs(e){e.type.prototype.ngOnChanges&&(e.setInput=Fs,e.onChanges=function(){var e=Ns(this),t=e&&e.current;if(t){var n=e.previous;if(n===vt)e.previous=t;else for(var r in t)n[r]=t[r];e.current=null,this.ngOnChanges(t)}})}function Fs(e,t,n,r){var i=Ns(e)||function(e,t){return e.__ngSimpleChanges__=t}(e,{previous:vt,current:null}),a=i.current||(i.current={}),o=i.previous,s=this.declaredInputs[n],l=o[s];a[s]=new Rs(l&&l.currentValue,t,o===vt),e[r]=t}function Ns(e){return e.__ngSimpleChanges__||null}function zs(e,t,n,r,i){if(e=Oe(e),Array.isArray(e))for(var a=0;a>16;if(po(e)||!e.multi){var m=new In(u,i,Io),p=Us(l,t,i?d:d+f,h);-1===p?(tr(Zn(c,s),o,l),Vs(o,e,t.length),t.push(l),c.directiveStart++,c.directiveEnd++,i&&(c.providerIndexes+=65536),n.push(m),s.push(m)):(n[p]=m,s[p]=m)}else{var _=Us(l,t,d+f,h),v=Us(l,t,d,d+f),g=_>=0&&n[_],y=v>=0&&n[v];if(i&&!y||!i&&!g){tr(Zn(c,s),o,l);var b=function(e,t,n,r,i){var a=new In(e,n,Io);return a.multi=[],a.index=t,a.componentProviders=0,Ws(a,i,r&&!n),a}(i?qs:Bs,n.length,i,r,u);!i&&y&&(n[v].providerFactory=b),Vs(o,e,t.length),t.push(l),c.directiveStart++,c.directiveEnd++,i&&(c.providerIndexes+=65536),n.push(b),s.push(b)}else Vs(o,e,_>-1?_:v),Ws(n[i?v:_],u,!i&&r);!i&&r&&y&&n[v].componentProviders++}}}function Vs(e,t,n){if(po(t)||t.useClass){var r=(t.useClass||t).prototype.ngOnDestroy;r&&(e.destroyHooks||(e.destroyHooks=[])).push(n,r)}}function Ws(e,t,n){e.multi.push(t),n&&e.componentProviders++}function Us(e,t,n,r){for(var i=n;i1&&void 0!==arguments[1]?arguments[1]:[];return function(n){n.providersResolver=function(n,r){return function(e,t,n){var r=tn();if(r.firstCreatePass){var i=Pt(e);zs(n,r.data,r.blueprint,i,!0),zs(t,r.data,r.blueprint,i,!1)}}(n,r?r(e):e,t)}}}Hs.ngInherit=!0;var Js=function e(){_classCallCheck(this,e)},Ks=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"resolveComponentFactory\",value:function(e){throw function(e){var t=Error(\"No component factory found for \".concat(Le(e),\". Did you add it to @NgModule.entryComponents?\"));return t.ngComponent=e,t}(e)}}]),e}(),Zs=function(){var e=function e(){_classCallCheck(this,e)};return e.NULL=new Ks,e}(),Qs=function(){var e=function e(t){_classCallCheck(this,e),this.nativeElement=t};return e.__NG_ELEMENT_ID__=function(){return Xs(e)},e}(),Xs=function(e){return Za(e,rn(),en())},el=function e(){_classCallCheck(this,e)},tl=function(){var e={Important:1,DashCase:2};return e[e.Important]=\"Important\",e[e.DashCase]=\"DashCase\",e}(),nl=function(){var e=function e(){_classCallCheck(this,e)};return e.__NG_ELEMENT_ID__=function(){return rl()},e}(),rl=function(){var e=en(),t=qt(rn().index,e);return function(e){var t=e[11];if(Ft(t))return t;throw new Error(\"Cannot inject Renderer2 when the application uses Renderer3!\")}(Ot(t)?t:e)},il=function(){var e=function e(){_classCallCheck(this,e)};return e.\\u0275prov=_e({token:e,providedIn:\"root\",factory:function(){return null}}),e}(),al=function e(t){_classCallCheck(this,e),this.full=t,this.major=t.split(\".\")[0],this.minor=t.split(\".\")[1],this.patch=t.split(\".\").slice(2).join(\".\")},ol=new al(\"9.0.7\"),sl=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"supports\",value:function(e){return Lo(e)}},{key:\"create\",value:function(e){return new ul(e)}}]),e}(),ll=function(e,t){return t},ul=function(){function e(t){_classCallCheck(this,e),this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=t||ll}return _createClass(e,[{key:\"forEachItem\",value:function(e){var t;for(t=this._itHead;null!==t;t=t._next)e(t)}},{key:\"forEachOperation\",value:function(e){for(var t=this._itHead,n=this._removalsHead,r=0,i=null;t||n;){var a=!n||t&&t.currentIndex0&&Ba(u,d,b.join(\" \"))}a=Ut(_[1],0),t&&(a.projection=t.map((function(e){return Array.from(e)}))),i=function(e,t,n,r,i){var a=n[1],o=function(e,t,n){var r=rn();e.firstCreatePass&&(n.providersResolver&&n.providersResolver(n),Ki(e,r,1),ea(e,t,n));var i=or(t,e,t.length-1,r);ai(i,t);var a=Wt(r,t);return a&&ai(a,t),i}(a,n,t);r.components.push(o),e[8]=o,i&&i.forEach((function(e){return e(o,t)})),t.contentQueries&&t.contentQueries(1,o,n.length-1);var s=rn();if(a.firstCreatePass&&(null!==t.hostBindings||null!==t.hostAttrs)){Cn(s.index-19);var l=n[1];Gi(l,t),$i(l,n,t.hostVars),Ji(t,o)}return o}(v,this.componentDef,_,m,[Ys]),Ai(p,_,null)}finally{kn()}var k=new Yl(this.componentType,i,Za(Qs,a,_),_,a);return n&&!f||(k.hostView._tViewNode.child=a),k}},{key:\"inputs\",get:function(){return xl(this.componentDef.inputs)}},{key:\"outputs\",get:function(){return xl(this.componentDef.outputs)}}]),n}(Js),Yl=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s,l,u,c;return _classCallCheck(this,n),(s=t.call(this)).location=i,s._rootLView=a,s._tNode=o,s.destroyCbs=[],s.instance=r,s.hostView=s.changeDetectorRef=new Ka(a),s.hostView._tViewNode=(l=a[1],u=a,null==(c=l.node)&&(l.node=c=Wi(0,null,2,-1,null,null)),u[6]=c),s.componentType=e,s}return _createClass(n,[{key:\"destroy\",value:function(){this.destroyCbs&&(this.destroyCbs.forEach((function(e){return e()})),this.destroyCbs=null,!this.hostView.destroyed&&this.hostView.destroy())}},{key:\"onDestroy\",value:function(e){this.destroyCbs&&this.destroyCbs.push(e)}},{key:\"injector\",get:function(){return new ur(this._tNode,this._rootLView)}}]),n}(function(){return function e(){_classCallCheck(this,e)}}()),El=void 0,Il=[\"en\",[[\"a\",\"p\"],[\"AM\",\"PM\"],El],[[\"AM\",\"PM\"],El,El],[[\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"],[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"]],El,[[\"J\",\"F\",\"M\",\"A\",\"M\",\"J\",\"J\",\"A\",\"S\",\"O\",\"N\",\"D\"],[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"]],El,[[\"B\",\"A\"],[\"BC\",\"AD\"],[\"Before Christ\",\"Anno Domini\"]],0,[6,0],[\"M/d/yy\",\"MMM d, y\",\"MMMM d, y\",\"EEEE, MMMM d, y\"],[\"h:mm a\",\"h:mm:ss a\",\"h:mm:ss a z\",\"h:mm:ss a zzzz\"],[\"{1}, {0}\",El,\"{1} 'at' {0}\",El],[\".\",\",\",\";\",\"%\",\"+\",\"-\",\"E\",\"\\xd7\",\"\\u2030\",\"\\u221e\",\"NaN\",\":\"],[\"#,##0.###\",\"#,##0%\",\"\\xa4#,##0.00\",\"#E0\"],\"USD\",\"$\",\"US Dollar\",{},function(e){var t=Math.floor(Math.abs(e)),n=e.toString().replace(/^[^.]*\\.?/,\"\").length;return 1===t&&0===n?1:5}],Al={};function Pl(e){return function(e){var t=function(e){return e.toLowerCase().replace(/_/g,\"-\")}(e),n=jl(t);if(n)return n;var r=t.split(\"-\")[0];if(n=jl(r))return n;if(\"en\"===r)return Il;throw new Error('Missing locale data for the locale \"'.concat(e,'\".'))}(e)[Rl.PluralCase]}function jl(e){return e in Al||(Al[e]=Re.ng&&Re.ng.common&&Re.ng.common.locales&&Re.ng.common.locales[e]),Al[e]}var Rl=function(){var e={LocaleId:0,DayPeriodsFormat:1,DayPeriodsStandalone:2,DaysFormat:3,DaysStandalone:4,MonthsFormat:5,MonthsStandalone:6,Eras:7,FirstDayOfWeek:8,WeekendRange:9,DateFormat:10,TimeFormat:11,DateTimeFormat:12,NumberSymbols:13,NumberFormats:14,CurrencyCode:15,CurrencySymbol:16,CurrencyName:17,Currencies:18,PluralCase:19,ExtraData:20};return e[e.LocaleId]=\"LocaleId\",e[e.DayPeriodsFormat]=\"DayPeriodsFormat\",e[e.DayPeriodsStandalone]=\"DayPeriodsStandalone\",e[e.DaysFormat]=\"DaysFormat\",e[e.DaysStandalone]=\"DaysStandalone\",e[e.MonthsFormat]=\"MonthsFormat\",e[e.MonthsStandalone]=\"MonthsStandalone\",e[e.Eras]=\"Eras\",e[e.FirstDayOfWeek]=\"FirstDayOfWeek\",e[e.WeekendRange]=\"WeekendRange\",e[e.DateFormat]=\"DateFormat\",e[e.TimeFormat]=\"TimeFormat\",e[e.DateTimeFormat]=\"DateTimeFormat\",e[e.NumberSymbols]=\"NumberSymbols\",e[e.NumberFormats]=\"NumberFormats\",e[e.CurrencyCode]=\"CurrencyCode\",e[e.CurrencySymbol]=\"CurrencySymbol\",e[e.CurrencyName]=\"CurrencyName\",e[e.Currencies]=\"Currencies\",e[e.PluralCase]=\"PluralCase\",e[e.ExtraData]=\"ExtraData\",e}(),Hl=/^\\s*(\\ufffd\\d+:?\\d*\\ufffd)\\s*,\\s*(select|plural)\\s*,/,Fl=/\\ufffd\\/?\\*(\\d+:\\d+)\\ufffd/gi,Nl=/\\ufffd(\\/?[#*!]\\d+):?\\d*\\ufffd/gi,zl=/\\ufffd(\\d+):?\\d*\\ufffd/gi,Vl=/({\\s*\\ufffd\\d+:?\\d*\\ufffd\\s*,\\s*\\S{6}\\s*,[\\s\\S]*})/gi;function Wl(e){if(!e)return[];var t,n=0,r=[],i=[],a=/[{}]/g;for(a.lastIndex=0;t=a.exec(e);){var o=t.index;if(\"}\"==t[0]){if(r.pop(),0==r.length){var s=e.substring(n,o);Hl.test(s)?i.push(Ul(s)):i.push(s),n=o+1}}else{if(0==r.length){var l=e.substring(n,o);i.push(l),n=o+1}r.push(\"{\")}}var u=e.substring(n);return i.push(u),i}function Ul(e){for(var t=[],n=[],r=1,i=0,a=Wl(e=e.replace(Hl,(function(e,t,n){return r=\"select\"===n?0:1,i=parseInt(t.substr(1),10),\"\"}))),o=0;on.length&&n.push(l)}return{type:r,mainBinding:i,cases:t,values:n}}function Bl(e){for(var t,n,r=\"\",i=0,a=!1;null!==(t=Fl.exec(e));)a?t[0]===\"\\ufffd/*\".concat(n,\"\\ufffd\")&&(i=t.index,a=!1):(r+=e.substring(i,t.index+t[0].length),n=t[1],a=!0);return r+=e.substr(i)}function ql(e,t,n){for(var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,i=[null,null],a=e.split(zl),o=0,s=0;s1&&void 0!==arguments[1]?arguments[1]:0;n|=Kl(e.mainBinding);for(var r=0;r>>17;o=Xl(n,a,h===e?r[6]:Ut(n,h),o,r);break;case 0:var f=u>=0,m=(f?u:~u)>>>3;s.push(m),o=a,(a=Ut(n,m))&&an(a,f);break;case 5:o=a=Ut(n,u>>>3),an(a,!1);break;case 4:var p=t[++l],_=t[++l];na(Ut(n,u>>>3),r,p,_,null,null);break;default:throw new Error('Unable to determine the type of mutate operation for \"'.concat(u,'\"'))}else switch(u){case Ci:var v=t[++l],g=t[++l],y=i.createComment(v);o=a,a=eu(n,r,g,5,y,null),s.push(g),ai(y,r),a.activeCaseIndex=null,sn();break;case wi:var b=t[++l],k=t[++l];o=a,a=eu(n,r,k,3,i.createElement(b),b),s.push(k);break;default:throw new Error('Unable to determine the type of mutate operation for \"'.concat(u,'\"'))}}return sn(),s}function nu(e,t,n,r){var i=Ut(e,n),a=Vt(n,t);a&&Fa(t[11],a);var o=Bt(t,n);if(Yt(o)){var s=o;0!==i.type&&Fa(t[11],s[7])}r&&(i.flags|=64)}function ru(e,t,n){var r;(function(e,t,n){var r=tn();$l[++Jl]=e,ts(!0),r.firstCreatePass&&null===r.data[e+19]&&function(e,t,n,r,i){var a=t.blueprint.length-19;Zl=0;var o=rn(),s=on()?o:o&&o.parent,l=s&&s!==e[6]?s.index-19:n,u=0;Ql[u]=l;var c=[];if(n>0&&o!==s){var d=o.index-19;on()||(d=~d),c.push(d<<3|0)}for(var h,f=[],m=[],p=function(e,t){if(\"number\"!=typeof t)return Bl(e);var n=e.indexOf(\":\".concat(t,\"\\ufffd\"))+2+t.toString().length,r=e.search(new RegExp(\"\\ufffd\\\\/\\\\*\\\\d+:\".concat(t,\"\\ufffd\")));return Bl(e.substring(n,r))}(r,i),_=(h=p,h.replace(fu,\" \")).split(Nl),v=0;v<_.length;v++){var g=_[v];if(1&v)if(\"/\"===g.charAt(0)){if(\"#\"===g.charAt(1)){var y=parseInt(g.substr(2),10);l=Ql[--u],c.push(y<<3|5)}}else{var b=parseInt(g.substr(1),10),k=\"#\"===g.charAt(0);c.push((k?b:~b)<<3|0,l<<17|1),k&&(Ql[++u]=l=b)}else for(var w=Wl(g),C=0;C0&&function(e,t,n){if(n>0&&e.firstCreatePass){for(var r=0;r>1),o++}}(tn(),r),ts(!1)}function iu(e,t){!function(e,t,n,r){for(var i=rn().index-19,a=[],o=0;o6&&void 0!==arguments[6]&&arguments[6],l=!1,u=0;u>>2,_=void 0,v=void 0;switch(3&m){case 1:var g=t[++f],y=t[++f];Bi(a,Ut(a,p),o,g,h,o[11],y,!1);break;case 0:ba(o,p,h);break;case 2:if(_=n[t[++f]],null!==(v=Ut(a,p)).activeCaseIndex)for(var b=_.remove[v.activeCaseIndex],k=0;k>>3,!1);break;case 6:var C=Ut(a,b[k+1]>>>3).activeCaseIndex;null!==C&&st(n[w>>>3].remove[C],b)}}var M=uu(_,h);v.activeCaseIndex=-1!==M?M:null,M>-1&&(tu(-1,_.create[M],a,o),l=!0);break;case 3:_=n[t[++f]],null!==(v=Ut(a,p)).activeCaseIndex&&e(_.update[v.activeCaseIndex],n,r,i,a,o,l)}}}u+=d}}(t,i,a,au,n,o),au=0,ou=0}}function uu(e,t){var n=e.cases.indexOf(t);if(-1===n)switch(e.type){case 1:var r=function(e,t){switch(Pl(t)(e)){case 0:return\"zero\";case 1:return\"one\";case 2:return\"two\";case 3:return\"few\";case 4:return\"many\";default:return\"other\"}}(t,mu);-1===(n=e.cases.indexOf(r))&&\"other\"!==r&&(n=e.cases.indexOf(\"other\"));break;case 0:n=e.cases.indexOf(\"other\")}return n}function cu(e,t,n,r){for(var i=[],a=[],o=[],s=[],l=[],u=0;u null != \".concat(t,\" <=Actual]\"))}(0,t),\"string\"==typeof e&&(mu=e.toLowerCase().replace(/_/g,\"-\"))}var _u=new Map,vu=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;_classCallCheck(this,n),(i=t.call(this))._parent=r,i._bootstrapComponents=[],i.injector=_assertThisInitialized(i),i.destroyCbs=[],i.componentFactoryResolver=new Tl(_assertThisInitialized(i));var a=Dt(e),o=e[Ve]||null;return o&&pu(o),i._bootstrapComponents=Gn(a.bootstrap),i._r3Injector=lo(e,r,[{provide:at,useValue:_assertThisInitialized(i)},{provide:Zs,useValue:i.componentFactoryResolver}],Le(e)),i._r3Injector._resolveInjectorDefTypes(),i.instance=i.get(e),i}return _createClass(n,[{key:\"get\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:vo.THROW_IF_NOT_FOUND,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:fe.Default;return e===vo||e===at||e===qe?this:this._r3Injector.get(e,t,n)}},{key:\"destroy\",value:function(){var e=this._r3Injector;!e.destroyed&&e.destroy(),this.destroyCbs.forEach((function(e){return e()})),this.destroyCbs=null}},{key:\"onDestroy\",value:function(e){this.destroyCbs.push(e)}}]),n}(at),gu=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this)).moduleType=e,null!==Dt(e)&&function e(t){if(null!==t.\\u0275mod.id){var n=t.\\u0275mod.id;(function(e,t,n){if(t&&t!==n)throw new Error(\"Duplicate module registered for \".concat(e,\" - \").concat(Le(t),\" vs \").concat(Le(t.name)))})(n,_u.get(n),t),_u.set(n,t)}var r=t.\\u0275mod.imports;r instanceof Function&&(r=r()),r&&r.forEach((function(t){return e(t)}))}(e),r}return _createClass(n,[{key:\"create\",value:function(e){return new vu(this.moduleType,e)}}]),n}(ot);function yu(e,t,n){var r,i,a=(r=Qt.lFrame,-1===(i=r.bindingRootIndex)&&(i=r.bindingRootIndex=r.tView.bindingStartIndex),i+e),o=en();return o[a]===gi?function(e,t,n){return e[t]=n}(o,a,n?t.call(n):t()):function(e,t){return e[t]}(o,a)}var bu=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return _classCallCheck(this,n),(e=t.call(this)).__isAsync=r,e}return _createClass(n,[{key:\"emit\",value:function(e){_get(_getPrototypeOf(n.prototype),\"next\",this).call(this,e)}},{key:\"subscribe\",value:function(e,t,r){var i,a=function(e){return null},o=function(){return null};e&&\"object\"==typeof e?(i=this.__isAsync?function(t){setTimeout((function(){return e.next(t)}))}:function(t){e.next(t)},e.error&&(a=this.__isAsync?function(t){setTimeout((function(){return e.error(t)}))}:function(t){e.error(t)}),e.complete&&(o=this.__isAsync?function(){setTimeout((function(){return e.complete()}))}:function(){e.complete()})):(i=this.__isAsync?function(t){setTimeout((function(){return e(t)}))}:function(t){e(t)},t&&(a=this.__isAsync?function(e){setTimeout((function(){return t(e)}))}:function(e){t(e)}),r&&(o=this.__isAsync?function(){setTimeout((function(){return r()}))}:function(){r()}));var s=_get(_getPrototypeOf(n.prototype),\"subscribe\",this).call(this,i,a,o);return e instanceof h&&e.add(s),s}}]),n}(x);function ku(){return this._results[Mo()]()}var wu=function(){function e(){_classCallCheck(this,e),this.dirty=!0,this._results=[],this.changes=new bu,this.length=0;var t=Mo(),n=e.prototype;n[t]||(n[t]=ku)}return _createClass(e,[{key:\"map\",value:function(e){return this._results.map(e)}},{key:\"filter\",value:function(e){return this._results.filter(e)}},{key:\"find\",value:function(e){return this._results.find(e)}},{key:\"reduce\",value:function(e,t){return this._results.reduce(e,t)}},{key:\"forEach\",value:function(e){this._results.forEach(e)}},{key:\"some\",value:function(e){return this._results.some(e)}},{key:\"toArray\",value:function(){return this._results.slice()}},{key:\"toString\",value:function(){return this._results.toString()}},{key:\"reset\",value:function(e){this._results=function e(t,n){void 0===n&&(n=t);for(var r=0;r0&&void 0!==arguments[0]?arguments[0]:[];_classCallCheck(this,e),this.queries=t}return _createClass(e,[{key:\"createEmbeddedView\",value:function(t){var n=t.queries;if(null!==n){for(var r=null!==t.contentQueries?t.contentQueries[0]:n.length,i=[],a=0;a3&&void 0!==arguments[3]?arguments[3]:null;_classCallCheck(this,e),this.predicate=t,this.descendants=n,this.isStatic=r,this.read=i},Lu=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];_classCallCheck(this,e),this.queries=t}return _createClass(e,[{key:\"elementStart\",value:function(e,t){for(var n=0;n1&&void 0!==arguments[1]?arguments[1]:-1;_classCallCheck(this,e),this.metadata=t,this.matches=null,this.indexInDeclarationView=-1,this.crossesNgTemplate=!1,this._appliesToNextNode=!0,this._declarationNodeIndex=n}return _createClass(e,[{key:\"elementStart\",value:function(e,t){this.isApplyingToNode(t)&&this.matchTNode(e,t)}},{key:\"elementEnd\",value:function(e){this._declarationNodeIndex===e.index&&(this._appliesToNextNode=!1)}},{key:\"template\",value:function(e,t){this.elementStart(e,t)}},{key:\"embeddedTView\",value:function(t,n){return this.isApplyingToNode(t)?(this.crossesNgTemplate=!0,this.addMatch(-t.index,n),new e(this.metadata)):null}},{key:\"isApplyingToNode\",value:function(e){if(this._appliesToNextNode&&!1===this.metadata.descendants){for(var t=this._declarationNodeIndex,n=e.parent;null!==n&&4===n.type&&n.index!==t;)n=n.parent;return t===(null!==n?n.index:-1)}return this._appliesToNextNode}},{key:\"matchTNode\",value:function(e,t){if(Array.isArray(this.metadata.predicate))for(var n=this.metadata.predicate,r=0;r0)i.push(s[l/2]);else{for(var c=o[l+1],d=n[-u],h=9;h0&&(i=setTimeout((function(){r._callbacks=r._callbacks.filter((function(e){return e.timeoutId!==i})),e(r._didWork,r.getPendingTasks())}),t)),this._callbacks.push({doneCb:e,timeoutId:i,updateCb:n})}},{key:\"whenStable\",value:function(e,t,n){if(n&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is \"zone.js/dist/task-tracking.js\" loaded?');this.addCallback(e,t,n),this._runCallbacksIfReady()}},{key:\"getPendingRequestCount\",value:function(){return this._pendingCount}},{key:\"findProviders\",value:function(e,t,n){return[]}}]),e}();return e.\\u0275fac=function(t){return new(t||e)(et(cc))},e.\\u0275prov=_e({token:e,factory:e.\\u0275fac}),e}(),bc=function(){var e=function(){function e(){_classCallCheck(this,e),this._applications=new Map,kc.addToWindow(this)}return _createClass(e,[{key:\"registerApplication\",value:function(e,t){this._applications.set(e,t)}},{key:\"unregisterApplication\",value:function(e){this._applications.delete(e)}},{key:\"unregisterAllApplications\",value:function(){this._applications.clear()}},{key:\"getTestability\",value:function(e){return this._applications.get(e)||null}},{key:\"getAllTestabilities\",value:function(){return Array.from(this._applications.values())}},{key:\"getAllRootElements\",value:function(){return Array.from(this._applications.keys())}},{key:\"findTestabilityInTree\",value:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return kc.findTestabilityInTree(this,e,t)}}]),e}();return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=_e({token:e,factory:e.\\u0275fac}),e}(),kc=new(function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"addToWindow\",value:function(e){}},{key:\"findTestabilityInTree\",value:function(e,t,n){return null}}]),e}()),wc=function(e,t,n){var r=new gu(n);if(0===yo.size)return Promise.resolve(r);var i,a,o=(i=e.get(sc,[]).concat(t).map((function(e){return e.providers})),a=[],i.forEach((function(e){return e&&a.push.apply(a,_toConsumableArray(e))})),a);if(0===o.length)return Promise.resolve(r);var s=function(){var e=Re.ng;if(!e||!e.\\u0275compilerFacade)throw new Error(\"Angular JIT compilation failed: '@angular/compiler' not loaded!\\n - JIT compilation is discouraged for production use-cases! Consider AOT mode instead.\\n - Did you bootstrap using '@angular/platform-browser-dynamic' or '@angular/platform-server'?\\n - Alternatively provide the compiler with 'import \\\"@angular/compiler\\\";' before bootstrapping.\");return e.\\u0275compilerFacade}(),l=vo.create({providers:o}).get(s.ResourceLoader);return function(e){var t=[],n=new Map;function r(e){var t=n.get(e);if(!t){var r=function(e){return Promise.resolve(l.get(e))}(e);n.set(e,t=r.then(ko))}return t}return yo.forEach((function(e,n){var i=[];e.templateUrl&&i.push(r(e.templateUrl).then((function(t){e.template=t})));var a=e.styleUrls,o=e.styles||(e.styles=[]),s=e.styles.length;a&&a.forEach((function(t,n){o.push(\"\"),i.push(r(t).then((function(r){o[s+n]=r,a.splice(a.indexOf(t),1),0==a.length&&(e.styleUrls=void 0)})))}));var l=Promise.all(i).then((function(){return function(e){bo.delete(e)}(n)}));t.push(l)})),yo=new Map,Promise.all(t).then((function(){}))}().then((function(){return r}))},Cc=new Be(\"AllowMultipleToken\"),Mc=function e(t,n){_classCallCheck(this,e),this.name=t,this.token=n};function Sc(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],r=\"Platform: \".concat(t),i=new Be(r);return function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],a=Lc();if(!a||a.injector.get(Cc,!1))if(e)e(n.concat(t).concat({provide:i,useValue:!0}));else{var o=n.concat(t).concat({provide:i,useValue:!0},{provide:no,useValue:\"platform\"});!function(e){if(vc&&!vc.destroyed&&!vc.injector.get(Cc,!1))throw new Error(\"There can be only one platform. Destroy the previous one to create a new one.\");vc=e.get(Tc);var t=e.get(Gu,null);t&&t.forEach((function(e){return e()}))}(vo.create({providers:o,name:r}))}return function(e){var t=Lc();if(!t)throw new Error(\"No platform exists!\");if(!t.injector.get(e,null))throw new Error(\"A platform with a different configuration has been created. Please destroy it first.\");return t}(i)}}function Lc(){return vc&&!vc.destroyed?vc:null}var Tc=function(){var e=function(){function e(t){_classCallCheck(this,e),this._injector=t,this._modules=[],this._destroyListeners=[],this._destroyed=!1}return _createClass(e,[{key:\"bootstrapModuleFactory\",value:function(e,t){var n,r,i=this,a=(n=t?t.ngZone:void 0,r=t&&t.ngZoneEventCoalescing||!1,\"noop\"===n?new gc:(\"zone.js\"===n?void 0:n)||new cc({enableLongStackTrace:Lr(),shouldCoalesceEventChangeDetection:r})),o=[{provide:cc,useValue:a}];return a.run((function(){var t=vo.create({providers:o,parent:i.injector,name:e.moduleType.name}),n=e.create(t),r=n.injector.get(mr,null);if(!r)throw new Error(\"No ErrorHandler. Is platform module (BrowserModule) included?\");return n.onDestroy((function(){return Yc(i._modules,n)})),a.runOutsideAngular((function(){return a.onError.subscribe({next:function(e){r.handleError(e)}})})),function(e,t,r){try{var a=((o=n.injector.get(Wu)).runInitializers(),o.donePromise.then((function(){return pu(n.injector.get(Zu,\"en-US\")||\"en-US\"),i._moduleDoBootstrap(n),n})));return Uo(a)?a.catch((function(n){throw t.runOutsideAngular((function(){return e.handleError(n)})),n})):a}catch(s){throw t.runOutsideAngular((function(){return e.handleError(s)})),s}var o}(r,a)}))}},{key:\"bootstrapModule\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],r=xc({},n);return wc(this.injector,r,e).then((function(e){return t.bootstrapModuleFactory(e,r)}))}},{key:\"_moduleDoBootstrap\",value:function(e){var t=e.injector.get(Oc);if(e._bootstrapComponents.length>0)e._bootstrapComponents.forEach((function(e){return t.bootstrap(e)}));else{if(!e.instance.ngDoBootstrap)throw new Error(\"The module \".concat(Le(e.instance.constructor),' was bootstrapped, but it does not declare \"@NgModule.bootstrap\" components nor a \"ngDoBootstrap\" method. ')+\"Please define one of these.\");e.instance.ngDoBootstrap(t)}this._modules.push(e)}},{key:\"onDestroy\",value:function(e){this._destroyListeners.push(e)}},{key:\"destroy\",value:function(){if(this._destroyed)throw new Error(\"The platform has already been destroyed!\");this._modules.slice().forEach((function(e){return e.destroy()})),this._destroyListeners.forEach((function(e){return e()})),this._destroyed=!0}},{key:\"injector\",get:function(){return this._injector}},{key:\"destroyed\",get:function(){return this._destroyed}}]),e}();return e.\\u0275fac=function(t){return new(t||e)(et(vo))},e.\\u0275prov=_e({token:e,factory:e.\\u0275fac}),e}();function xc(e,t){return Array.isArray(t)?t.reduce(xc,e):Object.assign(Object.assign({},e),t)}var Dc,Oc=((Dc=function(){function e(t,n,r,i,a,o){var s=this;_classCallCheck(this,e),this._zone=t,this._console=n,this._injector=r,this._exceptionHandler=i,this._componentFactoryResolver=a,this._initStatus=o,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._enforceNoNewChanges=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._enforceNoNewChanges=Lr(),this._zone.onMicrotaskEmpty.subscribe({next:function(){s._zone.run((function(){s.tick()}))}});var l=new w((function(e){s._stable=s._zone.isStable&&!s._zone.hasPendingMacrotasks&&!s._zone.hasPendingMicrotasks,s._zone.runOutsideAngular((function(){e.next(s._stable),e.complete()}))})),u=new w((function(e){var t;s._zone.runOutsideAngular((function(){t=s._zone.onStable.subscribe((function(){cc.assertNotInAngularZone(),uc((function(){s._stable||s._zone.hasPendingMacrotasks||s._zone.hasPendingMicrotasks||(s._stable=!0,e.next(!0))}))}))}));var n=s._zone.onUnstable.subscribe((function(){cc.assertInAngularZone(),s._stable&&(s._stable=!1,s._zone.runOutsideAngular((function(){e.next(!1)})))}));return function(){t.unsubscribe(),n.unsubscribe()}}));this.isStable=K(l,u.pipe(oe()))}return _createClass(e,[{key:\"bootstrap\",value:function(e,t){var n,r=this;if(!this._initStatus.done)throw new Error(\"Cannot bootstrap as there are still asynchronous initializers running. Bootstrap components in the `ngDoBootstrap` method of the root module.\");n=e instanceof Js?e:this._componentFactoryResolver.resolveComponentFactory(e),this.componentTypes.push(n.componentType);var i=n.isBoundToModule?void 0:this._injector.get(at),a=n.create(vo.NULL,[],t||n.selector,i);a.onDestroy((function(){r._unloadComponent(a)}));var o=a.injector.get(yc,null);return o&&a.injector.get(bc).registerApplication(a.location.nativeElement,o),this._loadComponent(a),Lr()&&this._console.log(\"Angular is running in the development mode. Call enableProdMode() to enable the production mode.\"),a}},{key:\"tick\",value:function(){var e=this;if(this._runningTick)throw new Error(\"ApplicationRef.tick is called recursively\");try{this._runningTick=!0;var t,n=_createForOfIteratorHelper(this._views);try{for(n.s();!(t=n.n()).done;)t.value.detectChanges()}catch(a){n.e(a)}finally{n.f()}if(this._enforceNoNewChanges){var r,i=_createForOfIteratorHelper(this._views);try{for(i.s();!(r=i.n()).done;)r.value.checkNoChanges()}catch(a){i.e(a)}finally{i.f()}}}catch(o){this._zone.runOutsideAngular((function(){return e._exceptionHandler.handleError(o)}))}finally{this._runningTick=!1}}},{key:\"attachView\",value:function(e){var t=e;this._views.push(t),t.attachToAppRef(this)}},{key:\"detachView\",value:function(e){var t=e;Yc(this._views,t),t.detachFromAppRef()}},{key:\"_loadComponent\",value:function(e){this.attachView(e.hostView),this.tick(),this.components.push(e),this._injector.get(Ju,[]).concat(this._bootstrapListeners).forEach((function(t){return t(e)}))}},{key:\"_unloadComponent\",value:function(e){this.detachView(e.hostView),Yc(this.components,e)}},{key:\"ngOnDestroy\",value:function(){this._views.slice().forEach((function(e){return e.destroy()}))}},{key:\"viewCount\",get:function(){return this._views.length}}]),e}()).\\u0275fac=function(e){return new(e||Dc)(et(cc),et(Ku),et(vo),et(mr),et(Zs),et(Wu))},Dc.\\u0275prov=_e({token:Dc,factory:Dc.\\u0275fac}),Dc);function Yc(e,t){var n=e.indexOf(t);n>-1&&e.splice(n,1)}var Ec=function e(){_classCallCheck(this,e)},Ic=function e(){_classCallCheck(this,e)},Ac={factoryPathPrefix:\"\",factoryPathSuffix:\".ngfactory\"},Pc=function(){var e=function(){function e(t,n){_classCallCheck(this,e),this._compiler=t,this._config=n||Ac}return _createClass(e,[{key:\"load\",value:function(e){return this.loadAndCompile(e)}},{key:\"loadAndCompile\",value:function(e){var t=this,r=_slicedToArray(e.split(\"#\"),2),i=r[0],a=r[1];return void 0===a&&(a=\"default\"),n(\"zn8P\")(i).then((function(e){return e[a]})).then((function(e){return jc(e,i,a)})).then((function(e){return t._compiler.compileModuleAsync(e)}))}},{key:\"loadFactory\",value:function(e){var t=_slicedToArray(e.split(\"#\"),2),r=t[0],i=t[1],a=\"NgFactory\";return void 0===i&&(i=\"default\",a=\"\"),n(\"zn8P\")(this._config.factoryPathPrefix+r+this._config.factoryPathSuffix).then((function(e){return e[i+a]})).then((function(e){return jc(e,r,i)}))}}]),e}();return e.\\u0275fac=function(t){return new(t||e)(et(oc),et(Ic,8))},e.\\u0275prov=_e({token:e,factory:e.\\u0275fac}),e}();function jc(e,t,n){if(!e)throw new Error(\"Cannot find '\".concat(n,\"' in '\").concat(t,\"'\"));return e}var Rc=Sc(null,\"core\",[{provide:$u,useValue:\"unknown\"},{provide:Tc,deps:[vo]},{provide:bc,deps:[]},{provide:Ku,deps:[]}]),Hc=[{provide:Oc,useClass:Oc,deps:[cc,Ku,vo,mr,Zs,Wu]},{provide:Dl,deps:[cc],useFactory:function(e){var t=[];return e.onStable.subscribe((function(){for(;t.length;)t.pop()()})),function(e){t.push(e)}}},{provide:Wu,useClass:Wu,deps:[[new ce,Vu]]},{provide:oc,useClass:oc,deps:[]},Bu,{provide:vl,useFactory:function(){return bl},deps:[]},{provide:gl,useFactory:function(){return kl},deps:[]},{provide:Zu,useFactory:function(e){return pu(e=e||\"undefined\"!=typeof $localize&&$localize.locale||\"en-US\"),e},deps:[[new ue(Zu),new ce,new he]]},{provide:Qu,useValue:\"USD\"}],Fc=function(){var e=function e(t){_classCallCheck(this,e)};return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=ve({factory:function(t){return new(t||e)(et(Oc))},providers:Hc}),e}(),Nc=null;function zc(){return Nc}var Vc,Wc=new Be(\"DocumentToken\"),Uc=((Vc=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Vc)},Vc.\\u0275prov=_e({factory:Bc,token:Vc,providedIn:\"platform\"}),Vc);function Bc(){return et($c)}var qc,Gc=new Be(\"Location Initialized\"),$c=((qc=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this))._doc=e,r._init(),r}return _createClass(n,[{key:\"_init\",value:function(){this.location=zc().getLocation(),this._history=zc().getHistory()}},{key:\"getBaseHrefFromDOM\",value:function(){return zc().getBaseHref(this._doc)}},{key:\"onPopState\",value:function(e){zc().getGlobalEventTarget(this._doc,\"window\").addEventListener(\"popstate\",e,!1)}},{key:\"onHashChange\",value:function(e){zc().getGlobalEventTarget(this._doc,\"window\").addEventListener(\"hashchange\",e,!1)}},{key:\"pushState\",value:function(e,t,n){Jc()?this._history.pushState(e,t,n):this.location.hash=n}},{key:\"replaceState\",value:function(e,t,n){Jc()?this._history.replaceState(e,t,n):this.location.hash=n}},{key:\"forward\",value:function(){this._history.forward()}},{key:\"back\",value:function(){this._history.back()}},{key:\"getState\",value:function(){return this._history.state}},{key:\"href\",get:function(){return this.location.href}},{key:\"protocol\",get:function(){return this.location.protocol}},{key:\"hostname\",get:function(){return this.location.hostname}},{key:\"port\",get:function(){return this.location.port}},{key:\"pathname\",get:function(){return this.location.pathname},set:function(e){this.location.pathname=e}},{key:\"search\",get:function(){return this.location.search}},{key:\"hash\",get:function(){return this.location.hash}}]),n}(Uc)).\\u0275fac=function(e){return new(e||qc)(et(Wc))},qc.\\u0275prov=_e({factory:Kc,token:qc,providedIn:\"platform\"}),qc);function Jc(){return!!window.history.pushState}function Kc(){return new $c(et(Wc))}function Zc(e,t){if(0==e.length)return t;if(0==t.length)return e;var n=0;return e.endsWith(\"/\")&&n++,t.startsWith(\"/\")&&n++,2==n?e+t.substring(1):1==n?e+t:e+\"/\"+t}function Qc(e){var t=e.match(/#|\\?|$/),n=t&&t.index||e.length;return e.slice(0,n-(\"/\"===e[n-1]?1:0))+e.slice(n)}function Xc(e){return e&&\"?\"!==e[0]?\"?\"+e:e}var ed,td=((ed=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||ed)},ed.\\u0275prov=_e({factory:nd,token:ed,providedIn:\"root\"}),ed);function nd(e){var t=et(Wc).location;return new sd(et(Uc),t&&t.origin||\"\")}var rd,id,ad,od=new Be(\"appBaseHref\"),sd=((ad=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;if(_classCallCheck(this,n),(i=t.call(this))._platformLocation=e,null==r&&(r=i._platformLocation.getBaseHrefFromDOM()),null==r)throw new Error(\"No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.\");return i._baseHref=r,_possibleConstructorReturn(i)}return _createClass(n,[{key:\"onPopState\",value:function(e){this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e)}},{key:\"getBaseHref\",value:function(){return this._baseHref}},{key:\"prepareExternalUrl\",value:function(e){return Zc(this._baseHref,e)}},{key:\"path\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=this._platformLocation.pathname+Xc(this._platformLocation.search),n=this._platformLocation.hash;return n&&e?\"\".concat(t).concat(n):t}},{key:\"pushState\",value:function(e,t,n,r){var i=this.prepareExternalUrl(n+Xc(r));this._platformLocation.pushState(e,t,i)}},{key:\"replaceState\",value:function(e,t,n,r){var i=this.prepareExternalUrl(n+Xc(r));this._platformLocation.replaceState(e,t,i)}},{key:\"forward\",value:function(){this._platformLocation.forward()}},{key:\"back\",value:function(){this._platformLocation.back()}}]),n}(td)).\\u0275fac=function(e){return new(e||ad)(et(Uc),et(od,8))},ad.\\u0275prov=_e({token:ad,factory:ad.\\u0275fac}),ad),ld=((id=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this))._platformLocation=e,i._baseHref=\"\",null!=r&&(i._baseHref=r),i}return _createClass(n,[{key:\"onPopState\",value:function(e){this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e)}},{key:\"getBaseHref\",value:function(){return this._baseHref}},{key:\"path\",value:function(){arguments.length>0&&void 0!==arguments[0]&&arguments[0];var e=this._platformLocation.hash;return null==e&&(e=\"#\"),e.length>0?e.substring(1):e}},{key:\"prepareExternalUrl\",value:function(e){var t=Zc(this._baseHref,e);return t.length>0?\"#\"+t:t}},{key:\"pushState\",value:function(e,t,n,r){var i=this.prepareExternalUrl(n+Xc(r));0==i.length&&(i=this._platformLocation.pathname),this._platformLocation.pushState(e,t,i)}},{key:\"replaceState\",value:function(e,t,n,r){var i=this.prepareExternalUrl(n+Xc(r));0==i.length&&(i=this._platformLocation.pathname),this._platformLocation.replaceState(e,t,i)}},{key:\"forward\",value:function(){this._platformLocation.forward()}},{key:\"back\",value:function(){this._platformLocation.back()}}]),n}(td)).\\u0275fac=function(e){return new(e||id)(et(Uc),et(od,8))},id.\\u0275prov=_e({token:id,factory:id.\\u0275fac}),id),ud=((rd=function(){function e(t,n){var r=this;_classCallCheck(this,e),this._subject=new bu,this._urlChangeListeners=[],this._platformStrategy=t;var i=this._platformStrategy.getBaseHref();this._platformLocation=n,this._baseHref=Qc(dd(i)),this._platformStrategy.onPopState((function(e){r._subject.emit({url:r.path(!0),pop:!0,state:e.state,type:e.type})}))}return _createClass(e,[{key:\"path\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return this.normalize(this._platformStrategy.path(e))}},{key:\"getState\",value:function(){return this._platformLocation.getState()}},{key:\"isCurrentPathEqualTo\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\";return this.path()==this.normalize(e+Xc(t))}},{key:\"normalize\",value:function(t){return e.stripTrailingSlash(function(e,t){return e&&t.startsWith(e)?t.substring(e.length):t}(this._baseHref,dd(t)))}},{key:\"prepareExternalUrl\",value:function(e){return e&&\"/\"!==e[0]&&(e=\"/\"+e),this._platformStrategy.prepareExternalUrl(e)}},{key:\"go\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;this._platformStrategy.pushState(n,\"\",e,t),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+Xc(t)),n)}},{key:\"replaceState\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;this._platformStrategy.replaceState(n,\"\",e,t),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+Xc(t)),n)}},{key:\"forward\",value:function(){this._platformStrategy.forward()}},{key:\"back\",value:function(){this._platformStrategy.back()}},{key:\"onUrlChange\",value:function(e){var t=this;this._urlChangeListeners.push(e),this.subscribe((function(e){t._notifyUrlChangeListeners(e.url,e.state)}))}},{key:\"_notifyUrlChangeListeners\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\",t=arguments.length>1?arguments[1]:void 0;this._urlChangeListeners.forEach((function(n){return n(e,t)}))}},{key:\"subscribe\",value:function(e,t,n){return this._subject.subscribe({next:e,error:t,complete:n})}}]),e}()).\\u0275fac=function(e){return new(e||rd)(et(td),et(Uc))},rd.normalizeQueryParams=Xc,rd.joinWithSlash=Zc,rd.stripTrailingSlash=Qc,rd.\\u0275prov=_e({factory:cd,token:rd,providedIn:\"root\"}),rd);function cd(){return new ud(et(td),et(Uc))}function dd(e){return e.replace(/\\/index.html$/,\"\")}var hd,fd=function(){var e={Zero:0,One:1,Two:2,Few:3,Many:4,Other:5};return e[e.Zero]=\"Zero\",e[e.One]=\"One\",e[e.Two]=\"Two\",e[e.Few]=\"Few\",e[e.Many]=\"Many\",e[e.Other]=\"Other\",e}(),md=Pl,pd=function e(){_classCallCheck(this,e)},_d=((hd=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this)).locale=e,r}return _createClass(n,[{key:\"getPluralCategory\",value:function(e,t){switch(md(t||this.locale)(e)){case fd.Zero:return\"zero\";case fd.One:return\"one\";case fd.Two:return\"two\";case fd.Few:return\"few\";case fd.Many:return\"many\";default:return\"other\"}}}]),n}(pd)).\\u0275fac=function(e){return new(e||hd)(et(Zu))},hd.\\u0275prov=_e({token:hd,factory:hd.\\u0275fac}),hd);function vd(e,t){t=encodeURIComponent(t);var n,r=_createForOfIteratorHelper(e.split(\";\"));try{for(r.s();!(n=r.n()).done;){var i=n.value,a=i.indexOf(\"=\"),o=_slicedToArray(-1==a?[i,\"\"]:[i.slice(0,a),i.slice(a+1)],2),s=o[0],l=o[1];if(s.trim()===t)return decodeURIComponent(l)}}catch(u){r.e(u)}finally{r.f()}return null}var gd,yd,bd,kd=((gd=function(){function e(t,n,r,i){_classCallCheck(this,e),this._iterableDiffers=t,this._keyValueDiffers=n,this._ngEl=r,this._renderer=i,this._iterableDiffer=null,this._keyValueDiffer=null,this._initialClasses=[],this._rawClass=null}return _createClass(e,[{key:\"ngDoCheck\",value:function(){if(this._iterableDiffer){var e=this._iterableDiffer.diff(this._rawClass);e&&this._applyIterableChanges(e)}else if(this._keyValueDiffer){var t=this._keyValueDiffer.diff(this._rawClass);t&&this._applyKeyValueChanges(t)}}},{key:\"_applyKeyValueChanges\",value:function(e){var t=this;e.forEachAddedItem((function(e){return t._toggleClass(e.key,e.currentValue)})),e.forEachChangedItem((function(e){return t._toggleClass(e.key,e.currentValue)})),e.forEachRemovedItem((function(e){e.previousValue&&t._toggleClass(e.key,!1)}))}},{key:\"_applyIterableChanges\",value:function(e){var t=this;e.forEachAddedItem((function(e){if(\"string\"!=typeof e.item)throw new Error(\"NgClass can only toggle CSS classes expressed as strings, got \".concat(Le(e.item)));t._toggleClass(e.item,!0)})),e.forEachRemovedItem((function(e){return t._toggleClass(e.item,!1)}))}},{key:\"_applyClasses\",value:function(e){var t=this;e&&(Array.isArray(e)||e instanceof Set?e.forEach((function(e){return t._toggleClass(e,!0)})):Object.keys(e).forEach((function(n){return t._toggleClass(n,!!e[n])})))}},{key:\"_removeClasses\",value:function(e){var t=this;e&&(Array.isArray(e)||e instanceof Set?e.forEach((function(e){return t._toggleClass(e,!1)})):Object.keys(e).forEach((function(e){return t._toggleClass(e,!1)})))}},{key:\"_toggleClass\",value:function(e,t){var n=this;(e=e.trim())&&e.split(/\\s+/g).forEach((function(e){t?n._renderer.addClass(n._ngEl.nativeElement,e):n._renderer.removeClass(n._ngEl.nativeElement,e)}))}},{key:\"klass\",set:function(e){this._removeClasses(this._initialClasses),this._initialClasses=\"string\"==typeof e?e.split(/\\s+/):[],this._applyClasses(this._initialClasses),this._applyClasses(this._rawClass)}},{key:\"ngClass\",set:function(e){this._removeClasses(this._rawClass),this._applyClasses(this._initialClasses),this._iterableDiffer=null,this._keyValueDiffer=null,this._rawClass=\"string\"==typeof e?e.split(/\\s+/):e,this._rawClass&&(Lo(this._rawClass)?this._iterableDiffer=this._iterableDiffers.find(this._rawClass).create():this._keyValueDiffer=this._keyValueDiffers.find(this._rawClass).create())}}]),e}()).\\u0275fac=function(e){return new(e||gd)(Io(vl),Io(gl),Io(Qs),Io(nl))},gd.\\u0275dir=Lt({type:gd,selectors:[[\"\",\"ngClass\",\"\"]],inputs:{klass:[\"class\",\"klass\"],ngClass:\"ngClass\"}}),gd),wd=function(){function e(t,n,r,i){_classCallCheck(this,e),this.$implicit=t,this.ngForOf=n,this.index=r,this.count=i}return _createClass(e,[{key:\"first\",get:function(){return 0===this.index}},{key:\"last\",get:function(){return this.index===this.count-1}},{key:\"even\",get:function(){return this.index%2==0}},{key:\"odd\",get:function(){return!this.even}}]),e}(),Cd=((yd=function(){function e(t,n,r){_classCallCheck(this,e),this._viewContainer=t,this._template=n,this._differs=r,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}return _createClass(e,[{key:\"ngDoCheck\",value:function(){if(this._ngForOfDirty){this._ngForOfDirty=!1;var e=this._ngForOf;if(!this._differ&&e)try{this._differ=this._differs.find(e).create(this.ngForTrackBy)}catch(r){throw new Error(\"Cannot find a differ supporting object '\".concat(e,\"' of type '\").concat((t=e).name||typeof t,\"'. NgFor only supports binding to Iterables such as Arrays.\"))}}var t;if(this._differ){var n=this._differ.diff(this._ngForOf);n&&this._applyChanges(n)}}},{key:\"_applyChanges\",value:function(e){var t=this,n=[];e.forEachOperation((function(e,r,i){if(null==e.previousIndex){var a=t._viewContainer.createEmbeddedView(t._template,new wd(null,t._ngForOf,-1,-1),null===i?void 0:i),o=new Md(e,a);n.push(o)}else if(null==i)t._viewContainer.remove(null===r?void 0:r);else if(null!==r){var s=t._viewContainer.get(r);t._viewContainer.move(s,i);var l=new Md(e,s);n.push(l)}}));for(var r=0;r0){var r=e.slice(0,t),i=r.toLowerCase(),a=e.slice(t+1).trim();n.maybeSetNormalizedName(r,i),n.headers.has(i)?n.headers.get(i).push(a):n.headers.set(i,[a])}}))}:function(){n.headers=new Map,Object.keys(t).forEach((function(e){var r=t[e],i=e.toLowerCase();\"string\"==typeof r&&(r=[r]),r.length>0&&(n.headers.set(i,r),n.maybeSetNormalizedName(e,i))}))}:this.headers=new Map}return _createClass(e,[{key:\"has\",value:function(e){return this.init(),this.headers.has(e.toLowerCase())}},{key:\"get\",value:function(e){this.init();var t=this.headers.get(e.toLowerCase());return t&&t.length>0?t[0]:null}},{key:\"keys\",value:function(){return this.init(),Array.from(this.normalizedNames.values())}},{key:\"getAll\",value:function(e){return this.init(),this.headers.get(e.toLowerCase())||null}},{key:\"append\",value:function(e,t){return this.clone({name:e,value:t,op:\"a\"})}},{key:\"set\",value:function(e,t){return this.clone({name:e,value:t,op:\"s\"})}},{key:\"delete\",value:function(e,t){return this.clone({name:e,value:t,op:\"d\"})}},{key:\"maybeSetNormalizedName\",value:function(e,t){this.normalizedNames.has(t)||this.normalizedNames.set(t,e)}},{key:\"init\",value:function(){var t=this;this.lazyInit&&(this.lazyInit instanceof e?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach((function(e){return t.applyUpdate(e)})),this.lazyUpdate=null))}},{key:\"copyFrom\",value:function(e){var t=this;e.init(),Array.from(e.headers.keys()).forEach((function(n){t.headers.set(n,e.headers.get(n)),t.normalizedNames.set(n,e.normalizedNames.get(n))}))}},{key:\"clone\",value:function(t){var n=new e;return n.lazyInit=this.lazyInit&&this.lazyInit instanceof e?this.lazyInit:this,n.lazyUpdate=(this.lazyUpdate||[]).concat([t]),n}},{key:\"applyUpdate\",value:function(e){var t=e.name.toLowerCase();switch(e.op){case\"a\":case\"s\":var n=e.value;if(\"string\"==typeof n&&(n=[n]),0===n.length)return;this.maybeSetNormalizedName(e.name,t);var r=(\"a\"===e.op?this.headers.get(t):void 0)||[];r.push.apply(r,_toConsumableArray(n)),this.headers.set(t,r);break;case\"d\":var i=e.value;if(i){var a=this.headers.get(t);if(!a)return;0===(a=a.filter((function(e){return-1===i.indexOf(e)}))).length?(this.headers.delete(t),this.normalizedNames.delete(t)):this.headers.set(t,a)}else this.headers.delete(t),this.normalizedNames.delete(t)}}},{key:\"forEach\",value:function(e){var t=this;this.init(),Array.from(this.normalizedNames.keys()).forEach((function(n){return e(t.normalizedNames.get(n),t.headers.get(n))}))}}]),e}(),Xd=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"encodeKey\",value:function(e){return eh(e)}},{key:\"encodeValue\",value:function(e){return eh(e)}},{key:\"decodeKey\",value:function(e){return decodeURIComponent(e)}},{key:\"decodeValue\",value:function(e){return decodeURIComponent(e)}}]),e}();function eh(e){return encodeURIComponent(e).replace(/%40/gi,\"@\").replace(/%3A/gi,\":\").replace(/%24/gi,\"$\").replace(/%2C/gi,\",\").replace(/%3B/gi,\";\").replace(/%2B/gi,\"+\").replace(/%3D/gi,\"=\").replace(/%3F/gi,\"?\").replace(/%2F/gi,\"/\")}var th=function(){function e(){var t=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(_classCallCheck(this,e),this.updates=null,this.cloneFrom=null,this.encoder=n.encoder||new Xd,n.fromString){if(n.fromObject)throw new Error(\"Cannot specify both fromString and fromObject.\");this.map=function(e,t){var n=new Map;return e.length>0&&e.split(\"&\").forEach((function(e){var r=e.indexOf(\"=\"),i=_slicedToArray(-1==r?[t.decodeKey(e),\"\"]:[t.decodeKey(e.slice(0,r)),t.decodeValue(e.slice(r+1))],2),a=i[0],o=i[1],s=n.get(a)||[];s.push(o),n.set(a,s)})),n}(n.fromString,this.encoder)}else n.fromObject?(this.map=new Map,Object.keys(n.fromObject).forEach((function(e){var r=n.fromObject[e];t.map.set(e,Array.isArray(r)?r:[r])}))):this.map=null}return _createClass(e,[{key:\"has\",value:function(e){return this.init(),this.map.has(e)}},{key:\"get\",value:function(e){this.init();var t=this.map.get(e);return t?t[0]:null}},{key:\"getAll\",value:function(e){return this.init(),this.map.get(e)||null}},{key:\"keys\",value:function(){return this.init(),Array.from(this.map.keys())}},{key:\"append\",value:function(e,t){return this.clone({param:e,value:t,op:\"a\"})}},{key:\"set\",value:function(e,t){return this.clone({param:e,value:t,op:\"s\"})}},{key:\"delete\",value:function(e,t){return this.clone({param:e,value:t,op:\"d\"})}},{key:\"toString\",value:function(){var e=this;return this.init(),this.keys().map((function(t){var n=e.encoder.encodeKey(t);return e.map.get(t).map((function(t){return n+\"=\"+e.encoder.encodeValue(t)})).join(\"&\")})).filter((function(e){return\"\"!==e})).join(\"&\")}},{key:\"clone\",value:function(t){var n=new e({encoder:this.encoder});return n.cloneFrom=this.cloneFrom||this,n.updates=(this.updates||[]).concat([t]),n}},{key:\"init\",value:function(){var e=this;null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach((function(t){return e.map.set(t,e.cloneFrom.map.get(t))})),this.updates.forEach((function(t){switch(t.op){case\"a\":case\"s\":var n=(\"a\"===t.op?e.map.get(t.param):void 0)||[];n.push(t.value),e.map.set(t.param,n);break;case\"d\":if(void 0===t.value){e.map.delete(t.param);break}var r=e.map.get(t.param)||[],i=r.indexOf(t.value);-1!==i&&r.splice(i,1),r.length>0?e.map.set(t.param,r):e.map.delete(t.param)}})),this.cloneFrom=this.updates=null)}}]),e}();function nh(e){return\"undefined\"!=typeof ArrayBuffer&&e instanceof ArrayBuffer}function rh(e){return\"undefined\"!=typeof Blob&&e instanceof Blob}function ih(e){return\"undefined\"!=typeof FormData&&e instanceof FormData}var ah=function(){function e(t,n,r,i){var a;if(_classCallCheck(this,e),this.url=n,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType=\"json\",this.method=t.toUpperCase(),function(e){switch(e){case\"DELETE\":case\"GET\":case\"HEAD\":case\"OPTIONS\":case\"JSONP\":return!1;default:return!0}}(this.method)||i?(this.body=void 0!==r?r:null,a=i):a=r,a&&(this.reportProgress=!!a.reportProgress,this.withCredentials=!!a.withCredentials,a.responseType&&(this.responseType=a.responseType),a.headers&&(this.headers=a.headers),a.params&&(this.params=a.params)),this.headers||(this.headers=new Qd),this.params){var o=this.params.toString();if(0===o.length)this.urlWithParams=n;else{var s=n.indexOf(\"?\");this.urlWithParams=n+(-1===s?\"?\":s0&&void 0!==arguments[0]?arguments[0]:{},n=t.method||this.method,r=t.url||this.url,i=t.responseType||this.responseType,a=void 0!==t.body?t.body:this.body,o=void 0!==t.withCredentials?t.withCredentials:this.withCredentials,s=void 0!==t.reportProgress?t.reportProgress:this.reportProgress,l=t.headers||this.headers,u=t.params||this.params;return void 0!==t.setHeaders&&(l=Object.keys(t.setHeaders).reduce((function(e,n){return e.set(n,t.setHeaders[n])}),l)),t.setParams&&(u=Object.keys(t.setParams).reduce((function(e,n){return e.set(n,t.setParams[n])}),u)),new e(n,r,a,{params:u,headers:l,reportProgress:s,responseType:i,withCredentials:o})}}]),e}(),oh=function(){var e={Sent:0,UploadProgress:1,ResponseHeader:2,DownloadProgress:3,Response:4,User:5};return e[e.Sent]=\"Sent\",e[e.UploadProgress]=\"UploadProgress\",e[e.ResponseHeader]=\"ResponseHeader\",e[e.DownloadProgress]=\"DownloadProgress\",e[e.Response]=\"Response\",e[e.User]=\"User\",e}(),sh=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:200,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:\"OK\";_classCallCheck(this,e),this.headers=t.headers||new Qd,this.status=void 0!==t.status?t.status:n,this.statusText=t.statusText||r,this.url=t.url||null,this.ok=this.status>=200&&this.status<300},lh=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return _classCallCheck(this,n),(e=t.call(this,r)).type=oh.ResponseHeader,e}return _createClass(n,[{key:\"clone\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new n({headers:e.headers||this.headers,status:void 0!==e.status?e.status:this.status,statusText:e.statusText||this.statusText,url:e.url||this.url||void 0})}}]),n}(sh),uh=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return _classCallCheck(this,n),(e=t.call(this,r)).type=oh.Response,e.body=void 0!==r.body?r.body:null,e}return _createClass(n,[{key:\"clone\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new n({body:void 0!==e.body?e.body:this.body,headers:e.headers||this.headers,status:void 0!==e.status?e.status:this.status,statusText:e.statusText||this.statusText,url:e.url||this.url||void 0})}}]),n}(sh),ch=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this,e,0,\"Unknown Error\")).name=\"HttpErrorResponse\",r.ok=!1,r.message=r.status>=200&&r.status<300?\"Http failure during parsing for \".concat(e.url||\"(unknown url)\"):\"Http failure response for \".concat(e.url||\"(unknown url)\",\": \").concat(e.status,\" \").concat(e.statusText),r.error=e.error||null,r}return n}(sh);function dh(e,t){return{body:t,headers:e.headers,observe:e.observe,params:e.params,reportProgress:e.reportProgress,responseType:e.responseType,withCredentials:e.withCredentials}}var hh,fh,mh,ph,_h,vh,gh,yh,bh,kh=((hh=function(){function e(t){_classCallCheck(this,e),this.handler=t}return _createClass(e,[{key:\"request\",value:function(e,t){var n,r=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(e instanceof ah)n=e;else{var a=void 0;a=i.headers instanceof Qd?i.headers:new Qd(i.headers);var o=void 0;i.params&&(o=i.params instanceof th?i.params:new th({fromObject:i.params})),n=new ah(e,t,void 0!==i.body?i.body:null,{headers:a,params:o,reportProgress:i.reportProgress,responseType:i.responseType||\"json\",withCredentials:i.withCredentials})}var s=Bd(n).pipe(qd((function(e){return r.handler.handle(e)})));if(e instanceof ah||\"events\"===i.observe)return s;var l=s.pipe(Gd((function(e){return e instanceof uh})));switch(i.observe||\"body\"){case\"body\":switch(n.responseType){case\"arraybuffer\":return l.pipe(F((function(e){if(null!==e.body&&!(e.body instanceof ArrayBuffer))throw new Error(\"Response is not an ArrayBuffer.\");return e.body})));case\"blob\":return l.pipe(F((function(e){if(null!==e.body&&!(e.body instanceof Blob))throw new Error(\"Response is not a Blob.\");return e.body})));case\"text\":return l.pipe(F((function(e){if(null!==e.body&&\"string\"!=typeof e.body)throw new Error(\"Response is not a string.\");return e.body})));case\"json\":default:return l.pipe(F((function(e){return e.body})))}case\"response\":return l;default:throw new Error(\"Unreachable: unhandled observe type \".concat(i.observe,\"}\"))}}},{key:\"delete\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request(\"DELETE\",e,t)}},{key:\"get\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request(\"GET\",e,t)}},{key:\"head\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request(\"HEAD\",e,t)}},{key:\"jsonp\",value:function(e,t){return this.request(\"JSONP\",e,{params:(new th).append(t,\"JSONP_CALLBACK\"),observe:\"body\",responseType:\"json\"})}},{key:\"options\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request(\"OPTIONS\",e,t)}},{key:\"patch\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.request(\"PATCH\",e,dh(n,t))}},{key:\"post\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.request(\"POST\",e,dh(n,t))}},{key:\"put\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.request(\"PUT\",e,dh(n,t))}}]),e}()).\\u0275fac=function(e){return new(e||hh)(et(Kd))},hh.\\u0275prov=_e({token:hh,factory:hh.\\u0275fac}),hh),wh=function(){function e(t,n){_classCallCheck(this,e),this.next=t,this.interceptor=n}return _createClass(e,[{key:\"handle\",value:function(e){return this.interceptor.intercept(e,this.next)}}]),e}(),Ch=new Be(\"HTTP_INTERCEPTORS\"),Mh=((fh=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"intercept\",value:function(e,t){return t.handle(e)}}]),e}()).\\u0275fac=function(e){return new(e||fh)},fh.\\u0275prov=_e({token:fh,factory:fh.\\u0275fac}),fh),Sh=/^\\)\\]\\}',?\\n/,Lh=function e(){_classCallCheck(this,e)},Th=((ph=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"build\",value:function(){return new XMLHttpRequest}}]),e}()).\\u0275fac=function(e){return new(e||ph)},ph.\\u0275prov=_e({token:ph,factory:ph.\\u0275fac}),ph),xh=((mh=function(){function e(t){_classCallCheck(this,e),this.xhrFactory=t}return _createClass(e,[{key:\"handle\",value:function(e){var t=this;if(\"JSONP\"===e.method)throw new Error(\"Attempted to construct Jsonp request without JsonpClientModule installed.\");return new w((function(n){var r=t.xhrFactory.build();if(r.open(e.method,e.urlWithParams),e.withCredentials&&(r.withCredentials=!0),e.headers.forEach((function(e,t){return r.setRequestHeader(e,t.join(\",\"))})),e.headers.has(\"Accept\")||r.setRequestHeader(\"Accept\",\"application/json, text/plain, */*\"),!e.headers.has(\"Content-Type\")){var i=e.detectContentTypeHeader();null!==i&&r.setRequestHeader(\"Content-Type\",i)}if(e.responseType){var a=e.responseType.toLowerCase();r.responseType=\"json\"!==a?a:\"text\"}var o=e.serializeBody(),s=null,l=function(){if(null!==s)return s;var t=1223===r.status?204:r.status,n=r.statusText||\"OK\",i=new Qd(r.getAllResponseHeaders()),a=function(e){return\"responseURL\"in e&&e.responseURL?e.responseURL:/^X-Request-URL:/m.test(e.getAllResponseHeaders())?e.getResponseHeader(\"X-Request-URL\"):null}(r)||e.url;return s=new lh({headers:i,status:t,statusText:n,url:a})},u=function(){var t=l(),i=t.headers,a=t.status,o=t.statusText,s=t.url,u=null;204!==a&&(u=void 0===r.response?r.responseText:r.response),0===a&&(a=u?200:0);var c=a>=200&&a<300;if(\"json\"===e.responseType&&\"string\"==typeof u){var d=u;u=u.replace(Sh,\"\");try{u=\"\"!==u?JSON.parse(u):null}catch(h){u=d,c&&(c=!1,u={error:h,text:u})}}c?(n.next(new uh({body:u,headers:i,status:a,statusText:o,url:s||void 0})),n.complete()):n.error(new ch({error:u,headers:i,status:a,statusText:o,url:s||void 0}))},c=function(e){var t=l().url,i=new ch({error:e,status:r.status||0,statusText:r.statusText||\"Unknown Error\",url:t||void 0});n.error(i)},d=!1,h=function(t){d||(n.next(l()),d=!0);var i={type:oh.DownloadProgress,loaded:t.loaded};t.lengthComputable&&(i.total=t.total),\"text\"===e.responseType&&r.responseText&&(i.partialText=r.responseText),n.next(i)},f=function(e){var t={type:oh.UploadProgress,loaded:e.loaded};e.lengthComputable&&(t.total=e.total),n.next(t)};return r.addEventListener(\"load\",u),r.addEventListener(\"error\",c),e.reportProgress&&(r.addEventListener(\"progress\",h),null!==o&&r.upload&&r.upload.addEventListener(\"progress\",f)),r.send(o),n.next({type:oh.Sent}),function(){r.removeEventListener(\"error\",c),r.removeEventListener(\"load\",u),e.reportProgress&&(r.removeEventListener(\"progress\",h),null!==o&&r.upload&&r.upload.removeEventListener(\"progress\",f)),r.abort()}}))}}]),e}()).\\u0275fac=function(e){return new(e||mh)(et(Lh))},mh.\\u0275prov=_e({token:mh,factory:mh.\\u0275fac}),mh),Dh=new Be(\"XSRF_COOKIE_NAME\"),Oh=new Be(\"XSRF_HEADER_NAME\"),Yh=function e(){_classCallCheck(this,e)},Eh=((bh=function(){function e(t,n,r){_classCallCheck(this,e),this.doc=t,this.platform=n,this.cookieName=r,this.lastCookieString=\"\",this.lastToken=null,this.parseCount=0}return _createClass(e,[{key:\"getToken\",value:function(){if(\"server\"===this.platform)return null;var e=this.doc.cookie||\"\";return e!==this.lastCookieString&&(this.parseCount++,this.lastToken=vd(e,this.cookieName),this.lastCookieString=e),this.lastToken}}]),e}()).\\u0275fac=function(e){return new(e||bh)(et(Wc),et($u),et(Dh))},bh.\\u0275prov=_e({token:bh,factory:bh.\\u0275fac}),bh),Ih=((yh=function(){function e(t,n){_classCallCheck(this,e),this.tokenService=t,this.headerName=n}return _createClass(e,[{key:\"intercept\",value:function(e,t){var n=e.url.toLowerCase();if(\"GET\"===e.method||\"HEAD\"===e.method||n.startsWith(\"http://\")||n.startsWith(\"https://\"))return t.handle(e);var r=this.tokenService.getToken();return null===r||e.headers.has(this.headerName)||(e=e.clone({headers:e.headers.set(this.headerName,r)})),t.handle(e)}}]),e}()).\\u0275fac=function(e){return new(e||yh)(et(Yh),et(Oh))},yh.\\u0275prov=_e({token:yh,factory:yh.\\u0275fac}),yh),Ah=((gh=function(){function e(t,n){_classCallCheck(this,e),this.backend=t,this.injector=n,this.chain=null}return _createClass(e,[{key:\"handle\",value:function(e){if(null===this.chain){var t=this.injector.get(Ch,[]);this.chain=t.reduceRight((function(e,t){return new wh(e,t)}),this.backend)}return this.chain.handle(e)}}]),e}()).\\u0275fac=function(e){return new(e||gh)(et(Zd),et(vo))},gh.\\u0275prov=_e({token:gh,factory:gh.\\u0275fac}),gh),Ph=((vh=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"disable\",value:function(){return{ngModule:e,providers:[{provide:Ih,useClass:Mh}]}}},{key:\"withOptions\",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{ngModule:e,providers:[t.cookieName?{provide:Dh,useValue:t.cookieName}:[],t.headerName?{provide:Oh,useValue:t.headerName}:[]]}}}]),e}()).\\u0275mod=Mt({type:vh}),vh.\\u0275inj=ve({factory:function(e){return new(e||vh)},providers:[Ih,{provide:Ch,useExisting:Ih,multi:!0},{provide:Yh,useClass:Eh},{provide:Dh,useValue:\"XSRF-TOKEN\"},{provide:Oh,useValue:\"X-XSRF-TOKEN\"}]}),vh),jh=((_h=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:_h}),_h.\\u0275inj=ve({factory:function(e){return new(e||_h)},providers:[kh,{provide:Kd,useClass:Ah},xh,{provide:Zd,useExisting:xh},Th,{provide:Lh,useExisting:Th}],imports:[[Ph.withOptions({cookieName:\"XSRF-TOKEN\",headerName:\"X-XSRF-TOKEN\"})]]}),_h);function Rh(){for(var e=arguments.length,t=new Array(e),n=0;ne?{max:{max:e,actual:t.value}}:null}}},{key:\"required\",value:function(e){return of(e.value)?{required:!0}:null}},{key:\"requiredTrue\",value:function(e){return!0===e.value?null:{required:!0}}},{key:\"email\",value:function(e){return of(e.value)||uf.test(e.value)?null:{email:!0}}},{key:\"minLength\",value:function(e){return function(t){if(of(t.value))return null;var n=t.value?t.value.length:0;return ne?{maxlength:{requiredLength:e,actualLength:n}}:null}}},{key:\"pattern\",value:function(t){return t?(\"string\"==typeof t?(r=\"\",\"^\"!==t.charAt(0)&&(r+=\"^\"),r+=t,\"$\"!==t.charAt(t.length-1)&&(r+=\"$\"),n=new RegExp(r)):(r=t.toString(),n=t),function(e){if(of(e.value))return null;var t=e.value;return n.test(t)?null:{pattern:{requiredPattern:r,actualValue:t}}}):e.nullValidator;var n,r}},{key:\"nullValidator\",value:function(e){return null}},{key:\"compose\",value:function(e){if(!e)return null;var t=e.filter(df);return 0==t.length?null:function(e){return ff(function(e,t){return t.map((function(t){return t(e)}))}(e,t))}}},{key:\"composeAsync\",value:function(e){if(!e)return null;var t=e.filter(df);return 0==t.length?null:function(e){return Rh(function(e,t){return t.map((function(t){return t(e)}))}(e,t).map(hf)).pipe(F(ff))}}}]),e}();function df(e){return null!=e}function hf(e){var t=Uo(e)?W(e):e;if(!Bo(t))throw new Error(\"Expected validator to return Promise or Observable.\");return t}function ff(e){var t={};return e.forEach((function(e){t=null!=e?Object.assign(Object.assign({},t),e):t})),0===Object.keys(t).length?null:t}function mf(e){return e.validate?function(t){return e.validate(t)}:e}function pf(e){return e.validate?function(t){return e.validate(t)}:e}var _f,vf,gf,yf,bf,kf,wf={provide:Wh,useExisting:De((function(){return Cf})),multi:!0},Cf=((_f=function(){function e(t,n){_classCallCheck(this,e),this._renderer=t,this._elementRef=n,this.onChange=function(e){},this.onTouched=function(){}}return _createClass(e,[{key:\"writeValue\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",null==e?\"\":e)}},{key:\"registerOnChange\",value:function(e){this.onChange=function(t){e(\"\"==t?null:parseFloat(t))}}},{key:\"registerOnTouched\",value:function(e){this.onTouched=e}},{key:\"setDisabledState\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}]),e}()).\\u0275fac=function(e){return new(e||_f)(Io(nl),Io(Qs))},_f.\\u0275dir=Lt({type:_f,selectors:[[\"input\",\"type\",\"number\",\"formControlName\",\"\"],[\"input\",\"type\",\"number\",\"formControl\",\"\"],[\"input\",\"type\",\"number\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"input\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},features:[$s([wf])]}),_f),Mf={provide:Wh,useExisting:De((function(){return Lf})),multi:!0},Sf=((gf=function(){function e(){_classCallCheck(this,e),this._accessors=[]}return _createClass(e,[{key:\"add\",value:function(e,t){this._accessors.push([e,t])}},{key:\"remove\",value:function(e){for(var t=this._accessors.length-1;t>=0;--t)if(this._accessors[t][1]===e)return void this._accessors.splice(t,1)}},{key:\"select\",value:function(e){var t=this;this._accessors.forEach((function(n){t._isSameGroup(n,e)&&n[1]!==e&&n[1].fireUncheck(e.value)}))}},{key:\"_isSameGroup\",value:function(e,t){return!!e[0].control&&e[0]._parent===t._control._parent&&e[1].name===t.name}}]),e}()).\\u0275fac=function(e){return new(e||gf)},gf.\\u0275prov=_e({token:gf,factory:gf.\\u0275fac}),gf),Lf=((vf=function(){function e(t,n,r,i){_classCallCheck(this,e),this._renderer=t,this._elementRef=n,this._registry=r,this._injector=i,this.onChange=function(){},this.onTouched=function(){}}return _createClass(e,[{key:\"ngOnInit\",value:function(){this._control=this._injector.get(tf),this._checkName(),this._registry.add(this._control,this)}},{key:\"ngOnDestroy\",value:function(){this._registry.remove(this)}},{key:\"writeValue\",value:function(e){this._state=e===this.value,this._renderer.setProperty(this._elementRef.nativeElement,\"checked\",this._state)}},{key:\"registerOnChange\",value:function(e){var t=this;this._fn=e,this.onChange=function(){e(t.value),t._registry.select(t)}}},{key:\"fireUncheck\",value:function(e){this.writeValue(e)}},{key:\"registerOnTouched\",value:function(e){this.onTouched=e}},{key:\"setDisabledState\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}},{key:\"_checkName\",value:function(){this.name&&this.formControlName&&this.name!==this.formControlName&&this._throwNameError(),!this.name&&this.formControlName&&(this.name=this.formControlName)}},{key:\"_throwNameError\",value:function(){throw new Error('\\n If you define both a name and a formControlName attribute on your radio button, their values\\n must match. Ex: \\n ')}}]),e}()).\\u0275fac=function(e){return new(e||vf)(Io(nl),Io(Qs),Io(Sf),Io(vo))},vf.\\u0275dir=Lt({type:vf,selectors:[[\"input\",\"type\",\"radio\",\"formControlName\",\"\"],[\"input\",\"type\",\"radio\",\"formControl\",\"\"],[\"input\",\"type\",\"radio\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"change\",(function(){return t.onChange()}))(\"blur\",(function(){return t.onTouched()}))},inputs:{name:\"name\",formControlName:\"formControlName\",value:\"value\"},features:[$s([Mf])]}),vf),Tf={provide:Wh,useExisting:De((function(){return xf})),multi:!0},xf=((yf=function(){function e(t,n){_classCallCheck(this,e),this._renderer=t,this._elementRef=n,this.onChange=function(e){},this.onTouched=function(){}}return _createClass(e,[{key:\"writeValue\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",parseFloat(e))}},{key:\"registerOnChange\",value:function(e){this.onChange=function(t){e(\"\"==t?null:parseFloat(t))}}},{key:\"registerOnTouched\",value:function(e){this.onTouched=e}},{key:\"setDisabledState\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}]),e}()).\\u0275fac=function(e){return new(e||yf)(Io(nl),Io(Qs))},yf.\\u0275dir=Lt({type:yf,selectors:[[\"input\",\"type\",\"range\",\"formControlName\",\"\"],[\"input\",\"type\",\"range\",\"formControl\",\"\"],[\"input\",\"type\",\"range\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"input\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},features:[$s([Tf])]}),yf),Df='\\n

\\n \\n
\\n\\n In your class:\\n\\n this.myGroup = new FormGroup({\\n firstName: new FormControl()\\n });',Of='\\n
\\n
\\n \\n
\\n
\\n\\n In your class:\\n\\n this.myGroup = new FormGroup({\\n person: new FormGroup({ firstName: new FormControl() })\\n });',Yf='\\n
\\n
\\n \\n
\\n
',Ef=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"controlParentException\",value:function(){throw new Error(\"formControlName must be used with a parent formGroup directive. You'll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n \".concat(Df))}},{key:\"ngModelGroupException\",value:function(){throw new Error('formControlName cannot be used with an ngModelGroup parent. It is only compatible with parents\\n that also have a \"form\" prefix: formGroupName, formArrayName, or formGroup.\\n\\n Option 1: Update the parent to be formGroupName (reactive form strategy)\\n\\n '.concat(Of,\"\\n\\n Option 2: Use ngModel instead of formControlName (template-driven strategy)\\n\\n \").concat(Yf))}},{key:\"missingFormException\",value:function(){throw new Error(\"formGroup expects a FormGroup instance. Please pass one in.\\n\\n Example:\\n\\n \".concat(Df))}},{key:\"groupParentException\",value:function(){throw new Error(\"formGroupName must be used with a parent formGroup directive. You'll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n \".concat(Of))}},{key:\"arrayParentException\",value:function(){throw new Error('formArrayName must be used with a parent formGroup directive. You\\'ll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n \\n
\\n
\\n
\\n \\n
\\n
\\n
\\n\\n In your class:\\n\\n this.cityArray = new FormArray([new FormControl(\\'SF\\')]);\\n this.myGroup = new FormGroup({\\n cities: this.cityArray\\n });')}},{key:\"disabledAttrWarning\",value:function(){console.warn(\"\\n It looks like you're using the disabled attribute with a reactive form directive. If you set disabled to true\\n when you set up this control in your component class, the disabled attribute will actually be set in the DOM for\\n you. We recommend using this approach to avoid 'changed after checked' errors.\\n \\n Example: \\n form = new FormGroup({\\n first: new FormControl({value: 'Nancy', disabled: true}, Validators.required),\\n last: new FormControl('Drew', Validators.required)\\n });\\n \")}},{key:\"ngModelWarning\",value:function(e){console.warn(\"\\n It looks like you're using ngModel on the same form field as \".concat(e,\". \\n Support for using the ngModel input property and ngModelChange event with \\n reactive form directives has been deprecated in Angular v6 and will be removed \\n in Angular v7.\\n \\n For more information on this, see our API docs here:\\n https://angular.io/api/forms/\").concat(\"formControl\"===e?\"FormControlDirective\":\"FormControlName\",\"#use-with-ngmodel\\n \"))}}]),e}(),If={provide:Wh,useExisting:De((function(){return Af})),multi:!0},Af=((bf=function(){function e(t,n){_classCallCheck(this,e),this._renderer=t,this._elementRef=n,this._optionMap=new Map,this._idCounter=0,this.onChange=function(e){},this.onTouched=function(){},this._compareWith=So}return _createClass(e,[{key:\"writeValue\",value:function(e){this.value=e;var t=this._getOptionId(e);null==t&&this._renderer.setProperty(this._elementRef.nativeElement,\"selectedIndex\",-1);var n=function(e,t){return null==e?\"\".concat(t):(t&&\"object\"==typeof t&&(t=\"Object\"),\"\".concat(e,\": \").concat(t).slice(0,50))}(t,e);this._renderer.setProperty(this._elementRef.nativeElement,\"value\",n)}},{key:\"registerOnChange\",value:function(e){var t=this;this.onChange=function(n){t.value=t._getOptionValue(n),e(t.value)}}},{key:\"registerOnTouched\",value:function(e){this.onTouched=e}},{key:\"setDisabledState\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}},{key:\"_registerOption\",value:function(){return(this._idCounter++).toString()}},{key:\"_getOptionId\",value:function(e){for(var t=0,n=Array.from(this._optionMap.keys());t-1)}}else t=function(e,t){e._setSelected(!1)};this._optionMap.forEach(t)}},{key:\"registerOnChange\",value:function(e){var t=this;this.onChange=function(n){var r=[];if(n.hasOwnProperty(\"selectedOptions\"))for(var i=n.selectedOptions,a=0;a1?\"path: '\".concat(e.path.join(\" -> \"),\"'\"):e.path[0]?\"name: '\".concat(e.path,\"'\"):\"unspecified name attribute\",new Error(\"\".concat(t,\" \").concat(n))}function Wf(e){return null!=e?cf.compose(e.map(mf)):null}function Uf(e){return null!=e?cf.composeAsync(e.map(pf)):null}function Bf(e,t){if(!e.hasOwnProperty(\"model\"))return!1;var n=e.model;return!!n.isFirstChange()||!So(t,n.currentValue)}var qf=[Bh,xf,Cf,Af,jf,Lf];function Gf(e,t){e._syncPendingControls(),t.forEach((function(e){var t=e.control;\"submit\"===t.updateOn&&t._pendingChange&&(e.viewToModelUpdate(t._pendingValue),t._pendingChange=!1)}))}function $f(e,t){if(!t)return null;Array.isArray(t)||Vf(e,\"Value accessor was not provided as an array for form control with\");var n=void 0,r=void 0,i=void 0;return t.forEach((function(t){var a;t.constructor===$h?n=t:(a=t,qf.some((function(e){return a.constructor===e}))?(r&&Vf(e,\"More than one built-in value accessor matches form control with\"),r=t):(i&&Vf(e,\"More than one custom value accessor matches form control with\"),i=t))})),i||r||n||(Vf(e,\"No valid value accessor for form control with\"),null)}function Jf(e,t){var n=e.indexOf(t);n>-1&&e.splice(n,1)}function Kf(e,t,n,r){Lr()&&\"never\"!==r&&((null!==r&&\"once\"!==r||t._ngModelWarningSentOnce)&&(\"always\"!==r||n._ngModelWarningSent)||(Ef.ngModelWarning(e),t._ngModelWarningSentOnce=!0,n._ngModelWarningSent=!0))}function Zf(e){var t=Xf(e)?e.validators:e;return Array.isArray(t)?Wf(t):t||null}function Qf(e,t){var n=Xf(t)?t.asyncValidators:e;return Array.isArray(n)?Uf(n):n||null}function Xf(e){return null!=e&&!Array.isArray(e)&&\"object\"==typeof e}var em,tm,nm,rm,im,am,om,sm,lm,um=function(){function e(t,n){_classCallCheck(this,e),this.validator=t,this.asyncValidator=n,this._onCollectionChange=function(){},this.pristine=!0,this.touched=!1,this._onDisabledChange=[]}return _createClass(e,[{key:\"setValidators\",value:function(e){this.validator=Zf(e)}},{key:\"setAsyncValidators\",value:function(e){this.asyncValidator=Qf(e)}},{key:\"clearValidators\",value:function(){this.validator=null}},{key:\"clearAsyncValidators\",value:function(){this.asyncValidator=null}},{key:\"markAsTouched\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.touched=!0,this._parent&&!e.onlySelf&&this._parent.markAsTouched(e)}},{key:\"markAllAsTouched\",value:function(){this.markAsTouched({onlySelf:!0}),this._forEachChild((function(e){return e.markAllAsTouched()}))}},{key:\"markAsUntouched\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.touched=!1,this._pendingTouched=!1,this._forEachChild((function(e){e.markAsUntouched({onlySelf:!0})})),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)}},{key:\"markAsDirty\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.pristine=!1,this._parent&&!e.onlySelf&&this._parent.markAsDirty(e)}},{key:\"markAsPristine\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.pristine=!0,this._pendingDirty=!1,this._forEachChild((function(e){e.markAsPristine({onlySelf:!0})})),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)}},{key:\"markAsPending\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.status=\"PENDING\",!1!==e.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!e.onlySelf&&this._parent.markAsPending(e)}},{key:\"disable\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this._parentMarkedDirty(e.onlySelf);this.status=\"DISABLED\",this.errors=null,this._forEachChild((function(t){t.disable(Object.assign(Object.assign({},e),{onlySelf:!0}))})),this._updateValue(),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(Object.assign(Object.assign({},e),{skipPristineCheck:t})),this._onDisabledChange.forEach((function(e){return e(!0)}))}},{key:\"enable\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this._parentMarkedDirty(e.onlySelf);this.status=\"VALID\",this._forEachChild((function(t){t.enable(Object.assign(Object.assign({},e),{onlySelf:!0}))})),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent}),this._updateAncestors(Object.assign(Object.assign({},e),{skipPristineCheck:t})),this._onDisabledChange.forEach((function(e){return e(!1)}))}},{key:\"_updateAncestors\",value:function(e){this._parent&&!e.onlySelf&&(this._parent.updateValueAndValidity(e),e.skipPristineCheck||this._parent._updatePristine(),this._parent._updateTouched())}},{key:\"setParent\",value:function(e){this._parent=e}},{key:\"updateValueAndValidity\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),\"VALID\"!==this.status&&\"PENDING\"!==this.status||this._runAsyncValidator(e.emitEvent)),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!e.onlySelf&&this._parent.updateValueAndValidity(e)}},{key:\"_updateTreeValidity\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{emitEvent:!0};this._forEachChild((function(t){return t._updateTreeValidity(e)})),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent})}},{key:\"_setInitialStatus\",value:function(){this.status=this._allControlsDisabled()?\"DISABLED\":\"VALID\"}},{key:\"_runValidator\",value:function(){return this.validator?this.validator(this):null}},{key:\"_runAsyncValidator\",value:function(e){var t=this;if(this.asyncValidator){this.status=\"PENDING\";var n=hf(this.asyncValidator(this));this._asyncValidationSubscription=n.subscribe((function(n){return t.setErrors(n,{emitEvent:e})}))}}},{key:\"_cancelExistingSubscription\",value:function(){this._asyncValidationSubscription&&this._asyncValidationSubscription.unsubscribe()}},{key:\"setErrors\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.errors=e,this._updateControlsErrors(!1!==t.emitEvent)}},{key:\"get\",value:function(e){return function(e,t,n){if(null==t)return null;if(Array.isArray(t)||(t=t.split(\".\")),Array.isArray(t)&&0===t.length)return null;var r=e;return t.forEach((function(e){r=r instanceof dm?r.controls.hasOwnProperty(e)?r.controls[e]:null:r instanceof hm&&r.at(e)||null})),r}(this,e)}},{key:\"getError\",value:function(e,t){var n=t?this.get(t):this;return n&&n.errors?n.errors[e]:null}},{key:\"hasError\",value:function(e,t){return!!this.getError(e,t)}},{key:\"_updateControlsErrors\",value:function(e){this.status=this._calculateStatus(),e&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(e)}},{key:\"_initObservables\",value:function(){this.valueChanges=new bu,this.statusChanges=new bu}},{key:\"_calculateStatus\",value:function(){return this._allControlsDisabled()?\"DISABLED\":this.errors?\"INVALID\":this._anyControlsHaveStatus(\"PENDING\")?\"PENDING\":this._anyControlsHaveStatus(\"INVALID\")?\"INVALID\":\"VALID\"}},{key:\"_anyControlsHaveStatus\",value:function(e){return this._anyControls((function(t){return t.status===e}))}},{key:\"_anyControlsDirty\",value:function(){return this._anyControls((function(e){return e.dirty}))}},{key:\"_anyControlsTouched\",value:function(){return this._anyControls((function(e){return e.touched}))}},{key:\"_updatePristine\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.pristine=!this._anyControlsDirty(),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)}},{key:\"_updateTouched\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.touched=this._anyControlsTouched(),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)}},{key:\"_isBoxedValue\",value:function(e){return\"object\"==typeof e&&null!==e&&2===Object.keys(e).length&&\"value\"in e&&\"disabled\"in e}},{key:\"_registerOnCollectionChange\",value:function(e){this._onCollectionChange=e}},{key:\"_setUpdateStrategy\",value:function(e){Xf(e)&&null!=e.updateOn&&(this._updateOn=e.updateOn)}},{key:\"_parentMarkedDirty\",value:function(e){return!e&&this._parent&&this._parent.dirty&&!this._parent._anyControlsDirty()}},{key:\"parent\",get:function(){return this._parent}},{key:\"valid\",get:function(){return\"VALID\"===this.status}},{key:\"invalid\",get:function(){return\"INVALID\"===this.status}},{key:\"pending\",get:function(){return\"PENDING\"==this.status}},{key:\"disabled\",get:function(){return\"DISABLED\"===this.status}},{key:\"enabled\",get:function(){return\"DISABLED\"!==this.status}},{key:\"dirty\",get:function(){return!this.pristine}},{key:\"untouched\",get:function(){return!this.touched}},{key:\"updateOn\",get:function(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:\"change\"}},{key:\"root\",get:function(){for(var e=this;e._parent;)e=e._parent;return e}}]),e}(),cm=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,i=arguments.length>1?arguments[1]:void 0,a=arguments.length>2?arguments[2]:void 0;return _classCallCheck(this,n),(e=t.call(this,Zf(i),Qf(a,i)))._onChange=[],e._applyFormState(r),e._setUpdateStrategy(i),e.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),e._initObservables(),e}return _createClass(n,[{key:\"setValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.value=this._pendingValue=e,this._onChange.length&&!1!==n.emitModelToViewChange&&this._onChange.forEach((function(e){return e(t.value,!1!==n.emitViewToModelChange)})),this.updateValueAndValidity(n)}},{key:\"patchValue\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.setValue(e,t)}},{key:\"reset\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._applyFormState(e),this.markAsPristine(t),this.markAsUntouched(t),this.setValue(this.value,t),this._pendingChange=!1}},{key:\"_updateValue\",value:function(){}},{key:\"_anyControls\",value:function(e){return!1}},{key:\"_allControlsDisabled\",value:function(){return this.disabled}},{key:\"registerOnChange\",value:function(e){this._onChange.push(e)}},{key:\"_clearChangeFns\",value:function(){this._onChange=[],this._onDisabledChange=[],this._onCollectionChange=function(){}}},{key:\"registerOnDisabledChange\",value:function(e){this._onDisabledChange.push(e)}},{key:\"_forEachChild\",value:function(e){}},{key:\"_syncPendingControls\",value:function(){return!(\"submit\"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))}},{key:\"_applyFormState\",value:function(e){this._isBoxedValue(e)?(this.value=this._pendingValue=e.value,e.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=e}}]),n}(um),dm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,Zf(r),Qf(i,r))).controls=e,a._initObservables(),a._setUpdateStrategy(r),a._setUpControls(),a.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),a}return _createClass(n,[{key:\"registerControl\",value:function(e,t){return this.controls[e]?this.controls[e]:(this.controls[e]=t,t.setParent(this),t._registerOnCollectionChange(this._onCollectionChange),t)}},{key:\"addControl\",value:function(e,t){this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"removeControl\",value:function(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange((function(){})),delete this.controls[e],this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"setControl\",value:function(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange((function(){})),delete this.controls[e],t&&this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"contains\",value:function(e){return this.controls.hasOwnProperty(e)&&this.controls[e].enabled}},{key:\"setValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._checkAllValuesPresent(e),Object.keys(e).forEach((function(r){t._throwIfControlMissing(r),t.controls[r].setValue(e[r],{onlySelf:!0,emitEvent:n.emitEvent})})),this.updateValueAndValidity(n)}},{key:\"patchValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};Object.keys(e).forEach((function(r){t.controls[r]&&t.controls[r].patchValue(e[r],{onlySelf:!0,emitEvent:n.emitEvent})})),this.updateValueAndValidity(n)}},{key:\"reset\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._forEachChild((function(n,r){n.reset(e[r],{onlySelf:!0,emitEvent:t.emitEvent})})),this._updatePristine(t),this._updateTouched(t),this.updateValueAndValidity(t)}},{key:\"getRawValue\",value:function(){return this._reduceChildren({},(function(e,t,n){return e[n]=t instanceof cm?t.value:t.getRawValue(),e}))}},{key:\"_syncPendingControls\",value:function(){var e=this._reduceChildren(!1,(function(e,t){return!!t._syncPendingControls()||e}));return e&&this.updateValueAndValidity({onlySelf:!0}),e}},{key:\"_throwIfControlMissing\",value:function(e){if(!Object.keys(this.controls).length)throw new Error(\"\\n There are no form controls registered with this group yet. If you're using ngModel,\\n you may want to check next tick (e.g. use setTimeout).\\n \");if(!this.controls[e])throw new Error(\"Cannot find form control with name: \".concat(e,\".\"))}},{key:\"_forEachChild\",value:function(e){var t=this;Object.keys(this.controls).forEach((function(n){return e(t.controls[n],n)}))}},{key:\"_setUpControls\",value:function(){var e=this;this._forEachChild((function(t){t.setParent(e),t._registerOnCollectionChange(e._onCollectionChange)}))}},{key:\"_updateValue\",value:function(){this.value=this._reduceValue()}},{key:\"_anyControls\",value:function(e){var t=this,n=!1;return this._forEachChild((function(r,i){n=n||t.contains(i)&&e(r)})),n}},{key:\"_reduceValue\",value:function(){var e=this;return this._reduceChildren({},(function(t,n,r){return(n.enabled||e.disabled)&&(t[r]=n.value),t}))}},{key:\"_reduceChildren\",value:function(e,t){var n=e;return this._forEachChild((function(e,r){n=t(n,e,r)})),n}},{key:\"_allControlsDisabled\",value:function(){for(var e=0,t=Object.keys(this.controls);e0||this.disabled}},{key:\"_checkAllValuesPresent\",value:function(e){this._forEachChild((function(t,n){if(void 0===e[n])throw new Error(\"Must supply a value for form control with name: '\".concat(n,\"'.\"))}))}}]),n}(um),hm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,Zf(r),Qf(i,r))).controls=e,a._initObservables(),a._setUpdateStrategy(r),a._setUpControls(),a.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),a}return _createClass(n,[{key:\"at\",value:function(e){return this.controls[e]}},{key:\"push\",value:function(e){this.controls.push(e),this._registerControl(e),this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"insert\",value:function(e,t){this.controls.splice(e,0,t),this._registerControl(t),this.updateValueAndValidity()}},{key:\"removeAt\",value:function(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange((function(){})),this.controls.splice(e,1),this.updateValueAndValidity()}},{key:\"setControl\",value:function(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange((function(){})),this.controls.splice(e,1),t&&(this.controls.splice(e,0,t),this._registerControl(t)),this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"setValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._checkAllValuesPresent(e),e.forEach((function(e,r){t._throwIfControlMissing(r),t.at(r).setValue(e,{onlySelf:!0,emitEvent:n.emitEvent})})),this.updateValueAndValidity(n)}},{key:\"patchValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};e.forEach((function(e,r){t.at(r)&&t.at(r).patchValue(e,{onlySelf:!0,emitEvent:n.emitEvent})})),this.updateValueAndValidity(n)}},{key:\"reset\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._forEachChild((function(n,r){n.reset(e[r],{onlySelf:!0,emitEvent:t.emitEvent})})),this._updatePristine(t),this._updateTouched(t),this.updateValueAndValidity(t)}},{key:\"getRawValue\",value:function(){return this.controls.map((function(e){return e instanceof cm?e.value:e.getRawValue()}))}},{key:\"clear\",value:function(){this.controls.length<1||(this._forEachChild((function(e){return e._registerOnCollectionChange((function(){}))})),this.controls.splice(0),this.updateValueAndValidity())}},{key:\"_syncPendingControls\",value:function(){var e=this.controls.reduce((function(e,t){return!!t._syncPendingControls()||e}),!1);return e&&this.updateValueAndValidity({onlySelf:!0}),e}},{key:\"_throwIfControlMissing\",value:function(e){if(!this.controls.length)throw new Error(\"\\n There are no form controls registered with this array yet. If you're using ngModel,\\n you may want to check next tick (e.g. use setTimeout).\\n \");if(!this.at(e))throw new Error(\"Cannot find form control at index \".concat(e))}},{key:\"_forEachChild\",value:function(e){this.controls.forEach((function(t,n){e(t,n)}))}},{key:\"_updateValue\",value:function(){var e=this;this.value=this.controls.filter((function(t){return t.enabled||e.disabled})).map((function(e){return e.value}))}},{key:\"_anyControls\",value:function(e){return this.controls.some((function(t){return t.enabled&&e(t)}))}},{key:\"_setUpControls\",value:function(){var e=this;this._forEachChild((function(t){return e._registerControl(t)}))}},{key:\"_checkAllValuesPresent\",value:function(e){this._forEachChild((function(t,n){if(void 0===e[n])throw new Error(\"Must supply a value for form control at index: \".concat(n,\".\"))}))}},{key:\"_allControlsDisabled\",value:function(){var e,t=_createForOfIteratorHelper(this.controls);try{for(t.s();!(e=t.n()).done;){if(e.value.enabled)return!1}}catch(n){t.e(n)}finally{t.f()}return this.controls.length>0||this.disabled}},{key:\"_registerControl\",value:function(e){e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange)}},{key:\"length\",get:function(){return this.controls.length}}]),n}(um),fm={provide:Kh,useExisting:De((function(){return pm}))},mm=Promise.resolve(null),pm=((tm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this)).submitted=!1,i._directives=[],i.ngSubmit=new bu,i.form=new dm({},Wf(e),Uf(r)),i}return _createClass(n,[{key:\"ngAfterViewInit\",value:function(){this._setUpdateStrategy()}},{key:\"addControl\",value:function(e){var t=this;mm.then((function(){var n=t._findContainer(e.path);e.control=n.registerControl(e.name,e.control),Hf(e.control,e),e.control.updateValueAndValidity({emitEvent:!1}),t._directives.push(e)}))}},{key:\"getControl\",value:function(e){return this.form.get(e.path)}},{key:\"removeControl\",value:function(e){var t=this;mm.then((function(){var n=t._findContainer(e.path);n&&n.removeControl(e.name),Jf(t._directives,e)}))}},{key:\"addFormGroup\",value:function(e){var t=this;mm.then((function(){var n=t._findContainer(e.path),r=new dm({});Nf(r,e),n.registerControl(e.name,r),r.updateValueAndValidity({emitEvent:!1})}))}},{key:\"removeFormGroup\",value:function(e){var t=this;mm.then((function(){var n=t._findContainer(e.path);n&&n.removeControl(e.name)}))}},{key:\"getFormGroup\",value:function(e){return this.form.get(e.path)}},{key:\"updateModel\",value:function(e,t){var n=this;mm.then((function(){n.form.get(e.path).setValue(t)}))}},{key:\"setValue\",value:function(e){this.control.setValue(e)}},{key:\"onSubmit\",value:function(e){return this.submitted=!0,Gf(this.form,this._directives),this.ngSubmit.emit(e),!1}},{key:\"onReset\",value:function(){this.resetForm()}},{key:\"resetForm\",value:function(e){this.form.reset(e),this.submitted=!1}},{key:\"_setUpdateStrategy\",value:function(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}},{key:\"_findContainer\",value:function(e){return e.pop(),e.length?this.form.get(e):this.form}},{key:\"formDirective\",get:function(){return this}},{key:\"control\",get:function(){return this.form}},{key:\"path\",get:function(){return[]}},{key:\"controls\",get:function(){return this.form.controls}}]),n}(Kh)).\\u0275fac=function(e){return new(e||tm)(Io(sf,10),Io(lf,10))},tm.\\u0275dir=Lt({type:tm,selectors:[[\"form\",3,\"ngNoForm\",\"\",3,\"formGroup\",\"\"],[\"ng-form\"],[\"\",\"ngForm\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"submit\",(function(e){return t.onSubmit(e)}))(\"reset\",(function(){return t.onReset()}))},inputs:{options:[\"ngFormOptions\",\"options\"]},outputs:{ngSubmit:\"ngSubmit\"},exportAs:[\"ngForm\"],features:[$s([fm]),Es]}),tm),_m=((em=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"ngOnInit\",value:function(){this._checkParentType(),this.formDirective.addFormGroup(this)}},{key:\"ngOnDestroy\",value:function(){this.formDirective&&this.formDirective.removeFormGroup(this)}},{key:\"_checkParentType\",value:function(){}},{key:\"control\",get:function(){return this.formDirective.getFormGroup(this)}},{key:\"path\",get:function(){return Rf(null==this.name?this.name:this.name.toString(),this._parent)}},{key:\"formDirective\",get:function(){return this._parent?this._parent.formDirective:null}},{key:\"validator\",get:function(){return Wf(this._validators)}},{key:\"asyncValidator\",get:function(){return Uf(this._asyncValidators)}}]),n}(Kh)).\\u0275fac=function(e){return vm(e||em)},em.\\u0275dir=Lt({type:em,features:[Es]}),em),vm=cr(_m),gm=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"modelParentException\",value:function(){throw new Error('\\n ngModel cannot be used to register form controls with a parent formGroup directive. Try using\\n formGroup\\'s partner directive \"formControlName\" instead. Example:\\n\\n '.concat(Df,'\\n\\n Or, if you\\'d like to avoid registering this form control, indicate that it\\'s standalone in ngModelOptions:\\n\\n Example:\\n\\n \\n
\\n \\n \\n
\\n '))}},{key:\"formGroupNameException\",value:function(){throw new Error(\"\\n ngModel cannot be used to register form controls with a parent formGroupName or formArrayName directive.\\n\\n Option 1: Use formControlName instead of ngModel (reactive strategy):\\n\\n \".concat(Of,\"\\n\\n Option 2: Update ngModel's parent be ngModelGroup (template-driven strategy):\\n\\n \").concat(Yf))}},{key:\"missingNameException\",value:function(){throw new Error('If ngModel is used within a form tag, either the name attribute must be set or the form\\n control must be defined as \\'standalone\\' in ngModelOptions.\\n\\n Example 1: \\n Example 2: ')}},{key:\"modelGroupParentException\",value:function(){throw new Error(\"\\n ngModelGroup cannot be used with a parent formGroup directive.\\n\\n Option 1: Use formGroupName instead of ngModelGroup (reactive strategy):\\n\\n \".concat(Of,\"\\n\\n Option 2: Use a regular form tag instead of the formGroup directive (template-driven strategy):\\n\\n \").concat(Yf))}}]),e}(),ym={provide:Kh,useExisting:De((function(){return bm}))},bm=((nm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this))._parent=e,a._validators=r,a._asyncValidators=i,a}return _createClass(n,[{key:\"_checkParentType\",value:function(){this._parent instanceof n||this._parent instanceof pm||gm.modelGroupParentException()}}]),n}(_m)).\\u0275fac=function(e){return new(e||nm)(Io(Kh,5),Io(sf,10),Io(lf,10))},nm.\\u0275dir=Lt({type:nm,selectors:[[\"\",\"ngModelGroup\",\"\"]],inputs:{name:[\"ngModelGroup\",\"name\"]},exportAs:[\"ngModelGroup\"],features:[$s([ym]),Es]}),nm),km={provide:tf,useExisting:De((function(){return Cm}))},wm=Promise.resolve(null),Cm=((im=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this)).control=new cm,o._registered=!1,o.update=new bu,o._parent=e,o._rawValidators=r||[],o._rawAsyncValidators=i||[],o.valueAccessor=$f(_assertThisInitialized(o),a),o}return _createClass(n,[{key:\"ngOnChanges\",value:function(e){this._checkForErrors(),this._registered||this._setUpControl(),\"isDisabled\"in e&&this._updateDisabled(e),Bf(e,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}},{key:\"ngOnDestroy\",value:function(){this.formDirective&&this.formDirective.removeControl(this)}},{key:\"viewToModelUpdate\",value:function(e){this.viewModel=e,this.update.emit(e)}},{key:\"_setUpControl\",value:function(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0}},{key:\"_setUpdateStrategy\",value:function(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)}},{key:\"_isStandalone\",value:function(){return!this._parent||!(!this.options||!this.options.standalone)}},{key:\"_setUpStandalone\",value:function(){Hf(this.control,this),this.control.updateValueAndValidity({emitEvent:!1})}},{key:\"_checkForErrors\",value:function(){this._isStandalone()||this._checkParentType(),this._checkName()}},{key:\"_checkParentType\",value:function(){!(this._parent instanceof bm)&&this._parent instanceof _m?gm.formGroupNameException():this._parent instanceof bm||this._parent instanceof pm||gm.modelParentException()}},{key:\"_checkName\",value:function(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()||this.name||gm.missingNameException()}},{key:\"_updateValue\",value:function(e){var t=this;wm.then((function(){t.control.setValue(e,{emitViewToModelChange:!1})}))}},{key:\"_updateDisabled\",value:function(e){var t=this,n=e.isDisabled.currentValue,r=\"\"===n||n&&\"false\"!==n;wm.then((function(){r&&!t.control.disabled?t.control.disable():!r&&t.control.disabled&&t.control.enable()}))}},{key:\"path\",get:function(){return this._parent?Rf(this.name,this._parent):[this.name]}},{key:\"formDirective\",get:function(){return this._parent?this._parent.formDirective:null}},{key:\"validator\",get:function(){return Wf(this._rawValidators)}},{key:\"asyncValidator\",get:function(){return Uf(this._rawAsyncValidators)}}]),n}(tf)).\\u0275fac=function(e){return new(e||im)(Io(Kh,9),Io(sf,10),Io(lf,10),Io(Wh,10))},im.\\u0275dir=Lt({type:im,selectors:[[\"\",\"ngModel\",\"\",3,\"formControlName\",\"\",3,\"formControl\",\"\"]],inputs:{name:\"name\",isDisabled:[\"disabled\",\"isDisabled\"],model:[\"ngModel\",\"model\"],options:[\"ngModelOptions\",\"options\"]},outputs:{update:\"ngModelChange\"},exportAs:[\"ngModel\"],features:[$s([km]),Es,Hs]}),im),Mm=((rm=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||rm)},rm.\\u0275dir=Lt({type:rm,selectors:[[\"form\",3,\"ngNoForm\",\"\",3,\"ngNativeValidate\",\"\"]],hostAttrs:[\"novalidate\",\"\"]}),rm),Sm=new Be(\"NgModelWithFormControlWarning\"),Lm={provide:tf,useExisting:De((function(){return Tm}))},Tm=((am=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this))._ngModelWarningConfig=a,o.update=new bu,o._ngModelWarningSent=!1,o._rawValidators=e||[],o._rawAsyncValidators=r||[],o.valueAccessor=$f(_assertThisInitialized(o),i),o}return _createClass(n,[{key:\"ngOnChanges\",value:function(e){this._isControlChanged(e)&&(Hf(this.form,this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this.form.updateValueAndValidity({emitEvent:!1})),Bf(e,this.viewModel)&&(Kf(\"formControl\",n,this,this._ngModelWarningConfig),this.form.setValue(this.model),this.viewModel=this.model)}},{key:\"viewToModelUpdate\",value:function(e){this.viewModel=e,this.update.emit(e)}},{key:\"_isControlChanged\",value:function(e){return e.hasOwnProperty(\"form\")}},{key:\"isDisabled\",set:function(e){Ef.disabledAttrWarning()}},{key:\"path\",get:function(){return[]}},{key:\"validator\",get:function(){return Wf(this._rawValidators)}},{key:\"asyncValidator\",get:function(){return Uf(this._rawAsyncValidators)}},{key:\"control\",get:function(){return this.form}}]),n}(tf)).\\u0275fac=function(e){return new(e||am)(Io(sf,10),Io(lf,10),Io(Wh,10),Io(Sm,8))},am.\\u0275dir=Lt({type:am,selectors:[[\"\",\"formControl\",\"\"]],inputs:{isDisabled:[\"disabled\",\"isDisabled\"],form:[\"formControl\",\"form\"],model:[\"ngModel\",\"model\"]},outputs:{update:\"ngModelChange\"},exportAs:[\"ngForm\"],features:[$s([Lm]),Es,Hs]}),am._ngModelWarningSentOnce=!1,am),xm={provide:Kh,useExisting:De((function(){return Dm}))},Dm=((om=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this))._validators=e,i._asyncValidators=r,i.submitted=!1,i.directives=[],i.form=null,i.ngSubmit=new bu,i}return _createClass(n,[{key:\"ngOnChanges\",value:function(e){this._checkFormPresent(),e.hasOwnProperty(\"form\")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations())}},{key:\"addControl\",value:function(e){var t=this.form.get(e.path);return Hf(t,e),t.updateValueAndValidity({emitEvent:!1}),this.directives.push(e),t}},{key:\"getControl\",value:function(e){return this.form.get(e.path)}},{key:\"removeControl\",value:function(e){Jf(this.directives,e)}},{key:\"addFormGroup\",value:function(e){var t=this.form.get(e.path);Nf(t,e),t.updateValueAndValidity({emitEvent:!1})}},{key:\"removeFormGroup\",value:function(e){}},{key:\"getFormGroup\",value:function(e){return this.form.get(e.path)}},{key:\"addFormArray\",value:function(e){var t=this.form.get(e.path);Nf(t,e),t.updateValueAndValidity({emitEvent:!1})}},{key:\"removeFormArray\",value:function(e){}},{key:\"getFormArray\",value:function(e){return this.form.get(e.path)}},{key:\"updateModel\",value:function(e,t){this.form.get(e.path).setValue(t)}},{key:\"onSubmit\",value:function(e){return this.submitted=!0,Gf(this.form,this.directives),this.ngSubmit.emit(e),!1}},{key:\"onReset\",value:function(){this.resetForm()}},{key:\"resetForm\",value:function(e){this.form.reset(e),this.submitted=!1}},{key:\"_updateDomValue\",value:function(){var e=this;this.directives.forEach((function(t){var n=e.form.get(t.path);t.control!==n&&(function(e,t){t.valueAccessor.registerOnChange((function(){return zf(t)})),t.valueAccessor.registerOnTouched((function(){return zf(t)})),t._rawValidators.forEach((function(e){e.registerOnValidatorChange&&e.registerOnValidatorChange(null)})),t._rawAsyncValidators.forEach((function(e){e.registerOnValidatorChange&&e.registerOnValidatorChange(null)})),e&&e._clearChangeFns()}(t.control,t),n&&Hf(n,t),t.control=n)})),this.form._updateTreeValidity({emitEvent:!1})}},{key:\"_updateRegistrations\",value:function(){var e=this;this.form._registerOnCollectionChange((function(){return e._updateDomValue()})),this._oldForm&&this._oldForm._registerOnCollectionChange((function(){})),this._oldForm=this.form}},{key:\"_updateValidators\",value:function(){var e=Wf(this._validators);this.form.validator=cf.compose([this.form.validator,e]);var t=Uf(this._asyncValidators);this.form.asyncValidator=cf.composeAsync([this.form.asyncValidator,t])}},{key:\"_checkFormPresent\",value:function(){this.form||Ef.missingFormException()}},{key:\"formDirective\",get:function(){return this}},{key:\"control\",get:function(){return this.form}},{key:\"path\",get:function(){return[]}}]),n}(Kh)).\\u0275fac=function(e){return new(e||om)(Io(sf,10),Io(lf,10))},om.\\u0275dir=Lt({type:om,selectors:[[\"\",\"formGroup\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"submit\",(function(e){return t.onSubmit(e)}))(\"reset\",(function(){return t.onReset()}))},inputs:{form:[\"formGroup\",\"form\"]},outputs:{ngSubmit:\"ngSubmit\"},exportAs:[\"ngForm\"],features:[$s([xm]),Es,Hs]}),om),Om={provide:Kh,useExisting:De((function(){return Ym}))},Ym=((sm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this))._parent=e,a._validators=r,a._asyncValidators=i,a}return _createClass(n,[{key:\"_checkParentType\",value:function(){Am(this._parent)&&Ef.groupParentException()}}]),n}(_m)).\\u0275fac=function(e){return new(e||sm)(Io(Kh,13),Io(sf,10),Io(lf,10))},sm.\\u0275dir=Lt({type:sm,selectors:[[\"\",\"formGroupName\",\"\"]],inputs:{name:[\"formGroupName\",\"name\"]},features:[$s([Om]),Es]}),sm),Em={provide:Kh,useExisting:De((function(){return Im}))},Im=((lm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this))._parent=e,a._validators=r,a._asyncValidators=i,a}return _createClass(n,[{key:\"ngOnInit\",value:function(){this._checkParentType(),this.formDirective.addFormArray(this)}},{key:\"ngOnDestroy\",value:function(){this.formDirective&&this.formDirective.removeFormArray(this)}},{key:\"_checkParentType\",value:function(){Am(this._parent)&&Ef.arrayParentException()}},{key:\"control\",get:function(){return this.formDirective.getFormArray(this)}},{key:\"formDirective\",get:function(){return this._parent?this._parent.formDirective:null}},{key:\"path\",get:function(){return Rf(null==this.name?this.name:this.name.toString(),this._parent)}},{key:\"validator\",get:function(){return Wf(this._validators)}},{key:\"asyncValidator\",get:function(){return Uf(this._asyncValidators)}}]),n}(Kh)).\\u0275fac=function(e){return new(e||lm)(Io(Kh,13),Io(sf,10),Io(lf,10))},lm.\\u0275dir=Lt({type:lm,selectors:[[\"\",\"formArrayName\",\"\"]],inputs:{name:[\"formArrayName\",\"name\"]},features:[$s([Em]),Es]}),lm);function Am(e){return!(e instanceof Ym||e instanceof Dm||e instanceof Im)}var Pm,jm,Rm,Hm,Fm,Nm,zm={provide:tf,useExisting:De((function(){return Vm}))},Vm=((Pm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this))._ngModelWarningConfig=o,s._added=!1,s.update=new bu,s._ngModelWarningSent=!1,s._parent=e,s._rawValidators=r||[],s._rawAsyncValidators=i||[],s.valueAccessor=$f(_assertThisInitialized(s),a),s}return _createClass(n,[{key:\"ngOnChanges\",value:function(e){this._added||this._setUpControl(),Bf(e,this.viewModel)&&(Kf(\"formControlName\",n,this,this._ngModelWarningConfig),this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}},{key:\"ngOnDestroy\",value:function(){this.formDirective&&this.formDirective.removeControl(this)}},{key:\"viewToModelUpdate\",value:function(e){this.viewModel=e,this.update.emit(e)}},{key:\"_checkParentType\",value:function(){!(this._parent instanceof Ym)&&this._parent instanceof _m?Ef.ngModelGroupException():this._parent instanceof Ym||this._parent instanceof Dm||this._parent instanceof Im||Ef.controlParentException()}},{key:\"_setUpControl\",value:function(){this._checkParentType(),this.control=this.formDirective.addControl(this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this._added=!0}},{key:\"isDisabled\",set:function(e){Ef.disabledAttrWarning()}},{key:\"path\",get:function(){return Rf(null==this.name?this.name:this.name.toString(),this._parent)}},{key:\"formDirective\",get:function(){return this._parent?this._parent.formDirective:null}},{key:\"validator\",get:function(){return Wf(this._rawValidators)}},{key:\"asyncValidator\",get:function(){return Uf(this._rawAsyncValidators)}}]),n}(tf)).\\u0275fac=function(e){return new(e||Pm)(Io(Kh,13),Io(sf,10),Io(lf,10),Io(Wh,10),Io(Sm,8))},Pm.\\u0275dir=Lt({type:Pm,selectors:[[\"\",\"formControlName\",\"\"]],inputs:{isDisabled:[\"disabled\",\"isDisabled\"],name:[\"formControlName\",\"name\"],model:[\"ngModel\",\"model\"]},outputs:{update:\"ngModelChange\"},features:[$s([zm]),Es,Hs]}),Pm._ngModelWarningSentOnce=!1,Pm),Wm={provide:sf,useExisting:De((function(){return Um})),multi:!0},Um=((Nm=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"validate\",value:function(e){return this.required?cf.required(e):null}},{key:\"registerOnValidatorChange\",value:function(e){this._onChange=e}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=null!=e&&!1!==e&&\"false\"!==\"\".concat(e),this._onChange&&this._onChange()}}]),e}()).\\u0275fac=function(e){return new(e||Nm)},Nm.\\u0275dir=Lt({type:Nm,selectors:[[\"\",\"required\",\"\",\"formControlName\",\"\",3,\"type\",\"checkbox\"],[\"\",\"required\",\"\",\"formControl\",\"\",3,\"type\",\"checkbox\"],[\"\",\"required\",\"\",\"ngModel\",\"\",3,\"type\",\"checkbox\"]],hostVars:1,hostBindings:function(e,t){2&e&&Do(\"required\",t.required?\"\":null)},inputs:{required:\"required\"},features:[$s([Wm])]}),Nm),Bm=((Fm=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Fm}),Fm.\\u0275inj=ve({factory:function(e){return new(e||Fm)}}),Fm),qm=((Hm=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"group\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=this._reduceControls(e),r=null,i=null,a=void 0;return null!=t&&(function(e){return void 0!==e.asyncValidators||void 0!==e.validators||void 0!==e.updateOn}(t)?(r=null!=t.validators?t.validators:null,i=null!=t.asyncValidators?t.asyncValidators:null,a=null!=t.updateOn?t.updateOn:void 0):(r=null!=t.validator?t.validator:null,i=null!=t.asyncValidator?t.asyncValidator:null)),new dm(n,{asyncValidators:i,updateOn:a,validators:r})}},{key:\"control\",value:function(e,t,n){return new cm(e,t,n)}},{key:\"array\",value:function(e,t,n){var r=this,i=e.map((function(e){return r._createControl(e)}));return new hm(i,t,n)}},{key:\"_reduceControls\",value:function(e){var t=this,n={};return Object.keys(e).forEach((function(r){n[r]=t._createControl(e[r])})),n}},{key:\"_createControl\",value:function(e){return e instanceof cm||e instanceof dm||e instanceof hm?e:Array.isArray(e)?this.control(e[0],e.length>1?e[1]:null,e.length>2?e[2]:null):this.control(e)}}]),e}()).\\u0275fac=function(e){return new(e||Hm)},Hm.\\u0275prov=_e({token:Hm,factory:Hm.\\u0275fac}),Hm),Gm=((Rm=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Rm}),Rm.\\u0275inj=ve({factory:function(e){return new(e||Rm)},providers:[Sf],imports:[Bm]}),Rm),$m=((jm=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"withConfig\",value:function(t){return{ngModule:e,providers:[{provide:Sm,useValue:t.warnOnNgModelWithFormControl}]}}}]),e}()).\\u0275mod=Mt({type:jm}),jm.\\u0275inj=ve({factory:function(e){return new(e||jm)},providers:[qm,Sf],imports:[Bm]}),jm);function Jm(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r1&&void 0!==arguments[1]?arguments[1]:0;if(this.closed)return this;this.state=e;var n=this.id,r=this.scheduler;return null!=n&&(this.id=this.recycleAsyncId(r,n,t)),this.pending=!0,this.delay=t,this.id=this.id||this.requestAsyncId(r,this.id,t),this}},{key:\"requestAsyncId\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return setInterval(e.flush.bind(e,this),n)}},{key:\"recycleAsyncId\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;if(null!==n&&this.delay===n&&!1===this.pending)return t;clearInterval(t)}},{key:\"execute\",value:function(e,t){if(this.closed)return new Error(\"executing a cancelled action\");this.pending=!1;var n=this._execute(e,t);if(n)return n;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}},{key:\"_execute\",value:function(e,t){var n=!1,r=void 0;try{this.work(e)}catch(i){n=!0,r=!!i&&i||new Error(i)}if(n)return this.unsubscribe(),r}},{key:\"_unsubscribe\",value:function(){var e=this.id,t=this.scheduler,n=t.actions,r=n.indexOf(this);this.work=null,this.state=null,this.pending=!1,this.scheduler=null,-1!==r&&n.splice(r,1),null!=e&&(this.id=this.recycleAsyncId(t,e,null)),this.delay=null}}]),n}(function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){return _classCallCheck(this,n),t.call(this)}return _createClass(n,[{key:\"schedule\",value:function(e){arguments.length>1&&void 0!==arguments[1]&&arguments[1];return this}}]),n}(h)),ep=function(){var e=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e.now;_classCallCheck(this,e),this.SchedulerAction=t,this.now=n}return _createClass(e,[{key:\"schedule\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2?arguments[2]:void 0;return new this.SchedulerAction(this,e).schedule(n,t)}}]),e}();return e.now=function(){return Date.now()},e}(),tp=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:ep.now;return _classCallCheck(this,n),(r=t.call(this,e,(function(){return n.delegate&&n.delegate!==_assertThisInitialized(r)?n.delegate.now():i()}))).actions=[],r.active=!1,r.scheduled=void 0,r}return _createClass(n,[{key:\"schedule\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=arguments.length>2?arguments[2]:void 0;return n.delegate&&n.delegate!==this?n.delegate.schedule(e,t,r):_get(_getPrototypeOf(n.prototype),\"schedule\",this).call(this,e,t,r)}},{key:\"flush\",value:function(e){var t=this.actions;if(this.active)t.push(e);else{var n;this.active=!0;do{if(n=e.execute(e.state,e.delay))break}while(e=t.shift());if(this.active=!1,n){for(;e=t.shift();)e.unsubscribe();throw n}}}}]),n}(ep),np=new tp(Xm);function rp(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:np;return function(n){return n.lift(new ip(e,t))}}var ip=function(){function e(t,n){_classCallCheck(this,e),this.dueTime=t,this.scheduler=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new ap(e,this.dueTime,this.scheduler))}}]),e}(),ap=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).dueTime=r,a.scheduler=i,a.debouncedSubscription=null,a.lastValue=null,a.hasValue=!1,a}return _createClass(n,[{key:\"_next\",value:function(e){this.clearDebounce(),this.lastValue=e,this.hasValue=!0,this.add(this.debouncedSubscription=this.scheduler.schedule(op,this.dueTime,this))}},{key:\"_complete\",value:function(){this.debouncedNext(),this.destination.complete()}},{key:\"debouncedNext\",value:function(){if(this.clearDebounce(),this.hasValue){var e=this.lastValue;this.lastValue=null,this.hasValue=!1,this.destination.next(e)}}},{key:\"clearDebounce\",value:function(){var e=this.debouncedSubscription;null!==e&&(this.remove(e),e.unsubscribe(),this.debouncedSubscription=null)}}]),n}(p);function op(e){e.debouncedNext()}var sp=function(){function e(){return Error.call(this),this.message=\"argument out of range\",this.name=\"ArgumentOutOfRangeError\",this}return e.prototype=Object.create(Error.prototype),e}(),lp=new w((function(e){return e.complete()}));function up(e){return e?function(e){return new w((function(t){return e.schedule((function(){return t.complete()}))}))}(e):lp}function cp(e){return function(t){return 0===e?up():t.lift(new hp(e))}}var dp,hp=function(){function e(t){if(_classCallCheck(this,e),this.total=t,this.total<0)throw new sp}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new fp(e,this.total))}}]),e}(),fp=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).total=r,i.count=0,i}return _createClass(n,[{key:\"_next\",value:function(e){var t=this.total,n=++this.count;n<=t&&(this.destination.next(e),n===t&&(this.destination.complete(),this.unsubscribe()))}}]),n}(p);function mp(e){return null!=e&&\"false\"!==\"\".concat(e)}function pp(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return function(e){return!isNaN(parseFloat(e))&&!isNaN(Number(e))}(e)?Number(e):t}function _p(e){return Array.isArray(e)?e:[e]}function vp(e){return null==e?\"\":\"string\"==typeof e?e:\"\".concat(e,\"px\")}function gp(e){return e instanceof Qs?e.nativeElement:e}try{dp=\"undefined\"!=typeof Intl&&Intl.v8BreakIterator}catch(ZR){dp=!1}var yp,bp,kp,wp,Cp=((kp=function e(t){_classCallCheck(this,e),this._platformId=t,this.isBrowser=this._platformId?zd(this._platformId):\"object\"==typeof document&&!!document,this.EDGE=this.isBrowser&&/(edge)/i.test(navigator.userAgent),this.TRIDENT=this.isBrowser&&/(msie|trident)/i.test(navigator.userAgent),this.BLINK=this.isBrowser&&!(!window.chrome&&!dp)&&\"undefined\"!=typeof CSS&&!this.EDGE&&!this.TRIDENT,this.WEBKIT=this.isBrowser&&/AppleWebKit/i.test(navigator.userAgent)&&!this.BLINK&&!this.EDGE&&!this.TRIDENT,this.IOS=this.isBrowser&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!(\"MSStream\"in window),this.FIREFOX=this.isBrowser&&/(firefox|minefield)/i.test(navigator.userAgent),this.ANDROID=this.isBrowser&&/android/i.test(navigator.userAgent)&&!this.TRIDENT,this.SAFARI=this.isBrowser&&/safari/i.test(navigator.userAgent)&&this.WEBKIT}).\\u0275fac=function(e){return new(e||kp)(et($u,8))},kp.\\u0275prov=_e({factory:function(){return new kp(et($u,8))},token:kp,providedIn:\"root\"}),kp),Mp=((bp=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:bp}),bp.\\u0275inj=ve({factory:function(e){return new(e||bp)}}),bp),Sp=[\"color\",\"button\",\"checkbox\",\"date\",\"datetime-local\",\"email\",\"file\",\"hidden\",\"image\",\"month\",\"number\",\"password\",\"radio\",\"range\",\"reset\",\"search\",\"submit\",\"tel\",\"text\",\"time\",\"url\",\"week\"];function Lp(){if(yp)return yp;if(\"object\"!=typeof document||!document)return yp=new Set(Sp);var e=document.createElement(\"input\");return yp=new Set(Sp.filter((function(t){return e.setAttribute(\"type\",t),e.type===t})))}function Tp(e){return function(){if(null==wp&&\"undefined\"!=typeof window)try{window.addEventListener(\"test\",null,Object.defineProperty({},\"passive\",{get:function(){return wp=!0}}))}finally{wp=wp||!1}return wp}()?e:!!e.capture}var xp,Dp=function(){var e={NORMAL:0,NEGATED:1,INVERTED:2};return e[e.NORMAL]=\"NORMAL\",e[e.NEGATED]=\"NEGATED\",e[e.INVERTED]=\"INVERTED\",e}();function Op(){if(\"object\"!=typeof document||!document)return Dp.NORMAL;if(!xp){var e=document.createElement(\"div\"),t=e.style;e.dir=\"rtl\",t.height=\"1px\",t.width=\"1px\",t.overflow=\"auto\",t.visibility=\"hidden\",t.pointerEvents=\"none\",t.position=\"absolute\";var n=document.createElement(\"div\"),r=n.style;r.width=\"2px\",r.height=\"1px\",e.appendChild(n),document.body.appendChild(e),xp=Dp.NORMAL,0===e.scrollLeft&&(e.scrollLeft=1,xp=0===e.scrollLeft?Dp.NEGATED:Dp.INVERTED),e.parentNode.removeChild(e)}return xp}var Yp,Ep,Ip,Ap,Pp,jp=((Ap=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"create\",value:function(e){return\"undefined\"==typeof MutationObserver?null:new MutationObserver(e)}}]),e}()).\\u0275fac=function(e){return new(e||Ap)},Ap.\\u0275prov=_e({factory:function(){return new Ap},token:Ap,providedIn:\"root\"}),Ap),Rp=((Ip=function(){function e(t){_classCallCheck(this,e),this._mutationObserverFactory=t,this._observedElements=new Map}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){var e=this;this._observedElements.forEach((function(t,n){return e._cleanupObserver(n)}))}},{key:\"observe\",value:function(e){var t=this,n=gp(e);return new w((function(e){var r=t._observeElement(n).subscribe(e);return function(){r.unsubscribe(),t._unobserveElement(n)}}))}},{key:\"_observeElement\",value:function(e){if(this._observedElements.has(e))this._observedElements.get(e).count++;else{var t=new x,n=this._mutationObserverFactory.create((function(e){return t.next(e)}));n&&n.observe(e,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(e,{observer:n,stream:t,count:1})}return this._observedElements.get(e).stream}},{key:\"_unobserveElement\",value:function(e){this._observedElements.has(e)&&(this._observedElements.get(e).count--,this._observedElements.get(e).count||this._cleanupObserver(e))}},{key:\"_cleanupObserver\",value:function(e){if(this._observedElements.has(e)){var t=this._observedElements.get(e),n=t.observer,r=t.stream;n&&n.disconnect(),r.complete(),this._observedElements.delete(e)}}}]),e}()).\\u0275fac=function(e){return new(e||Ip)(et(jp))},Ip.\\u0275prov=_e({factory:function(){return new Ip(et(jp))},token:Ip,providedIn:\"root\"}),Ip),Hp=((Ep=function(){function e(t,n,r){_classCallCheck(this,e),this._contentObserver=t,this._elementRef=n,this._ngZone=r,this.event=new bu,this._disabled=!1,this._currentSubscription=null}return _createClass(e,[{key:\"ngAfterContentInit\",value:function(){this._currentSubscription||this.disabled||this._subscribe()}},{key:\"ngOnDestroy\",value:function(){this._unsubscribe()}},{key:\"_subscribe\",value:function(){var e=this;this._unsubscribe();var t=this._contentObserver.observe(this._elementRef);this._ngZone.runOutsideAngular((function(){e._currentSubscription=(e.debounce?t.pipe(rp(e.debounce)):t).subscribe(e.event)}))}},{key:\"_unsubscribe\",value:function(){this._currentSubscription&&this._currentSubscription.unsubscribe()}},{key:\"disabled\",get:function(){return this._disabled},set:function(e){this._disabled=mp(e),this._disabled?this._unsubscribe():this._subscribe()}},{key:\"debounce\",get:function(){return this._debounce},set:function(e){this._debounce=pp(e),this._subscribe()}}]),e}()).\\u0275fac=function(e){return new(e||Ep)(Io(Rp),Io(Qs),Io(cc))},Ep.\\u0275dir=Lt({type:Ep,selectors:[[\"\",\"cdkObserveContent\",\"\"]],inputs:{disabled:[\"cdkObserveContentDisabled\",\"disabled\"],debounce:\"debounce\"},outputs:{event:\"cdkObserveContent\"},exportAs:[\"cdkObserveContent\"]}),Ep),Fp=((Yp=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Yp}),Yp.\\u0275inj=ve({factory:function(e){return new(e||Yp)},providers:[jp]}),Yp),Np=function(){function e(t){var n=this;_classCallCheck(this,e),this._items=t,this._activeItemIndex=-1,this._activeItem=null,this._wrap=!1,this._letterKeyStream=new x,this._typeaheadSubscription=h.EMPTY,this._vertical=!0,this._allowedModifierKeys=[],this._skipPredicateFn=function(e){return e.disabled},this._pressedLetters=[],this.tabOut=new x,this.change=new x,t instanceof wu&&t.changes.subscribe((function(e){if(n._activeItem){var t=e.toArray().indexOf(n._activeItem);t>-1&&t!==n._activeItemIndex&&(n._activeItemIndex=t)}}))}return _createClass(e,[{key:\"skipPredicate\",value:function(e){return this._skipPredicateFn=e,this}},{key:\"withWrap\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._wrap=e,this}},{key:\"withVerticalOrientation\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._vertical=e,this}},{key:\"withHorizontalOrientation\",value:function(e){return this._horizontal=e,this}},{key:\"withAllowedModifierKeys\",value:function(e){return this._allowedModifierKeys=e,this}},{key:\"withTypeAhead\",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:200;if(this._items.length&&this._items.some((function(e){return\"function\"!=typeof e.getLabel})))throw Error(\"ListKeyManager items in typeahead mode must implement the `getLabel` method.\");return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe(Km((function(t){return e._pressedLetters.push(t)})),rp(t),Gd((function(){return e._pressedLetters.length>0})),F((function(){return e._pressedLetters.join(\"\")}))).subscribe((function(t){for(var n=e._getItemsArray(),r=1;r-1}));switch(n){case 9:return void this.tabOut.next();case 40:if(this._vertical&&r){this.setNextItemActive();break}return;case 38:if(this._vertical&&r){this.setPreviousItemActive();break}return;case 39:if(this._horizontal&&r){\"rtl\"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case 37:if(this._horizontal&&r){\"rtl\"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;default:return void((r||Jm(e,\"shiftKey\"))&&(e.key&&1===e.key.length?this._letterKeyStream.next(e.key.toLocaleUpperCase()):(n>=65&&n<=90||n>=48&&n<=57)&&this._letterKeyStream.next(String.fromCharCode(n))))}this._pressedLetters=[],e.preventDefault()}},{key:\"isTyping\",value:function(){return this._pressedLetters.length>0}},{key:\"setFirstItemActive\",value:function(){this._setActiveItemByIndex(0,1)}},{key:\"setLastItemActive\",value:function(){this._setActiveItemByIndex(this._items.length-1,-1)}},{key:\"setNextItemActive\",value:function(){this._activeItemIndex<0?this.setFirstItemActive():this._setActiveItemByDelta(1)}},{key:\"setPreviousItemActive\",value:function(){this._activeItemIndex<0&&this._wrap?this.setLastItemActive():this._setActiveItemByDelta(-1)}},{key:\"updateActiveItem\",value:function(e){var t=this._getItemsArray(),n=\"number\"==typeof e?e:t.indexOf(e),r=t[n];this._activeItem=null==r?null:r,this._activeItemIndex=n}},{key:\"_setActiveItemByDelta\",value:function(e){this._wrap?this._setActiveInWrapMode(e):this._setActiveInDefaultMode(e)}},{key:\"_setActiveInWrapMode\",value:function(e){for(var t=this._getItemsArray(),n=1;n<=t.length;n++){var r=(this._activeItemIndex+e*n+t.length)%t.length;if(!this._skipPredicateFn(t[r]))return void this.setActiveItem(r)}}},{key:\"_setActiveInDefaultMode\",value:function(e){this._setActiveItemByIndex(this._activeItemIndex+e,e)}},{key:\"_setActiveItemByIndex\",value:function(e,t){var n=this._getItemsArray();if(n[e]){for(;this._skipPredicateFn(n[e]);)if(!n[e+=t])return;this.setActiveItem(e)}}},{key:\"_getItemsArray\",value:function(){return this._items instanceof wu?this._items.toArray():this._items}},{key:\"activeItemIndex\",get:function(){return this._activeItemIndex}},{key:\"activeItem\",get:function(){return this._activeItem}}]),e}(),zp=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"setActiveItem\",value:function(e){this.activeItem&&this.activeItem.setInactiveStyles(),_get(_getPrototypeOf(n.prototype),\"setActiveItem\",this).call(this,e),this.activeItem&&this.activeItem.setActiveStyles()}}]),n}(Np),Vp=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e;return _classCallCheck(this,n),(e=t.apply(this,arguments))._origin=\"program\",e}return _createClass(n,[{key:\"setFocusOrigin\",value:function(e){return this._origin=e,this}},{key:\"setActiveItem\",value:function(e){_get(_getPrototypeOf(n.prototype),\"setActiveItem\",this).call(this,e),this.activeItem&&this.activeItem.focus(this._origin)}}]),n}(Np),Wp=((Pp=function(){function e(t){_classCallCheck(this,e),this._platform=t}return _createClass(e,[{key:\"isDisabled\",value:function(e){return e.hasAttribute(\"disabled\")}},{key:\"isVisible\",value:function(e){return function(e){return!!(e.offsetWidth||e.offsetHeight||\"function\"==typeof e.getClientRects&&e.getClientRects().length)}(e)&&\"visible\"===getComputedStyle(e).visibility}},{key:\"isTabbable\",value:function(e){if(!this._platform.isBrowser)return!1;var t,n=function(e){try{return e.frameElement}catch(ZR){return null}}((t=e).ownerDocument&&t.ownerDocument.defaultView||window);if(n){var r=n&&n.nodeName.toLowerCase();if(-1===Bp(n))return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&\"object\"===r)return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&!this.isVisible(n))return!1}var i=e.nodeName.toLowerCase(),a=Bp(e);if(e.hasAttribute(\"contenteditable\"))return-1!==a;if(\"iframe\"===i)return!1;if(\"audio\"===i){if(!e.hasAttribute(\"controls\"))return!1;if(this._platform.BLINK)return!0}if(\"video\"===i){if(!e.hasAttribute(\"controls\")&&this._platform.TRIDENT)return!1;if(this._platform.BLINK||this._platform.FIREFOX)return!0}return(\"object\"!==i||!this._platform.BLINK&&!this._platform.WEBKIT)&&!(this._platform.WEBKIT&&this._platform.IOS&&!function(e){var t=e.nodeName.toLowerCase(),n=\"input\"===t&&e.type;return\"text\"===n||\"password\"===n||\"select\"===t||\"textarea\"===t}(e))&&e.tabIndex>=0}},{key:\"isFocusable\",value:function(e){return function(e){return!function(e){return function(e){return\"input\"==e.nodeName.toLowerCase()}(e)&&\"hidden\"==e.type}(e)&&(function(e){var t=e.nodeName.toLowerCase();return\"input\"===t||\"select\"===t||\"button\"===t||\"textarea\"===t}(e)||function(e){return function(e){return\"a\"==e.nodeName.toLowerCase()}(e)&&e.hasAttribute(\"href\")}(e)||e.hasAttribute(\"contenteditable\")||Up(e))}(e)&&!this.isDisabled(e)&&this.isVisible(e)}}]),e}()).\\u0275fac=function(e){return new(e||Pp)(et(Cp))},Pp.\\u0275prov=_e({factory:function(){return new Pp(et(Cp))},token:Pp,providedIn:\"root\"}),Pp);function Up(e){if(!e.hasAttribute(\"tabindex\")||void 0===e.tabIndex)return!1;var t=e.getAttribute(\"tabindex\");return\"-32768\"!=t&&!(!t||isNaN(parseInt(t,10)))}function Bp(e){if(!Up(e))return null;var t=parseInt(e.getAttribute(\"tabindex\")||\"\",10);return isNaN(t)?-1:t}var qp,Gp,$p,Jp=function(){function e(t,n,r,i){var a=this,o=arguments.length>4&&void 0!==arguments[4]&&arguments[4];_classCallCheck(this,e),this._element=t,this._checker=n,this._ngZone=r,this._document=i,this._hasAttached=!1,this.startAnchorListener=function(){return a.focusLastTabbableElement()},this.endAnchorListener=function(){return a.focusFirstTabbableElement()},this._enabled=!0,o||this.attachAnchors()}return _createClass(e,[{key:\"destroy\",value:function(){var e=this._startAnchor,t=this._endAnchor;e&&(e.removeEventListener(\"focus\",this.startAnchorListener),e.parentNode&&e.parentNode.removeChild(e)),t&&(t.removeEventListener(\"focus\",this.endAnchorListener),t.parentNode&&t.parentNode.removeChild(t)),this._startAnchor=this._endAnchor=null}},{key:\"attachAnchors\",value:function(){var e=this;return!!this._hasAttached||(this._ngZone.runOutsideAngular((function(){e._startAnchor||(e._startAnchor=e._createAnchor(),e._startAnchor.addEventListener(\"focus\",e.startAnchorListener)),e._endAnchor||(e._endAnchor=e._createAnchor(),e._endAnchor.addEventListener(\"focus\",e.endAnchorListener))})),this._element.parentNode&&(this._element.parentNode.insertBefore(this._startAnchor,this._element),this._element.parentNode.insertBefore(this._endAnchor,this._element.nextSibling),this._hasAttached=!0),this._hasAttached)}},{key:\"focusInitialElementWhenReady\",value:function(){var e=this;return new Promise((function(t){e._executeOnStable((function(){return t(e.focusInitialElement())}))}))}},{key:\"focusFirstTabbableElementWhenReady\",value:function(){var e=this;return new Promise((function(t){e._executeOnStable((function(){return t(e.focusFirstTabbableElement())}))}))}},{key:\"focusLastTabbableElementWhenReady\",value:function(){var e=this;return new Promise((function(t){e._executeOnStable((function(){return t(e.focusLastTabbableElement())}))}))}},{key:\"_getRegionBoundary\",value:function(e){for(var t=this._element.querySelectorAll(\"[cdk-focus-region-\".concat(e,\"], \")+\"[cdkFocusRegion\".concat(e,\"], \")+\"[cdk-focus-\".concat(e,\"]\")),n=0;n=0;n--){var r=t[n].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(t[n]):null;if(r)return r}return null}},{key:\"_createAnchor\",value:function(){var e=this._document.createElement(\"div\");return this._toggleAnchorTabIndex(this._enabled,e),e.classList.add(\"cdk-visually-hidden\"),e.classList.add(\"cdk-focus-trap-anchor\"),e.setAttribute(\"aria-hidden\",\"true\"),e}},{key:\"_toggleAnchorTabIndex\",value:function(e,t){e?t.setAttribute(\"tabindex\",\"0\"):t.removeAttribute(\"tabindex\")}},{key:\"_executeOnStable\",value:function(e){this._ngZone.isStable?e():this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(e)}},{key:\"enabled\",get:function(){return this._enabled},set:function(e){this._enabled=e,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(e,this._startAnchor),this._toggleAnchorTabIndex(e,this._endAnchor))}}]),e}(),Kp=((qp=function(){function e(t,n,r){_classCallCheck(this,e),this._checker=t,this._ngZone=n,this._document=r}return _createClass(e,[{key:\"create\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return new Jp(e,this._checker,this._ngZone,this._document,t)}}]),e}()).\\u0275fac=function(e){return new(e||qp)(et(Wp),et(cc),et(Wc))},qp.\\u0275prov=_e({factory:function(){return new qp(et(Wp),et(cc),et(Wc))},token:qp,providedIn:\"root\"}),qp),Zp=new Be(\"liveAnnouncerElement\",{providedIn:\"root\",factory:function(){return null}}),Qp=new Be(\"LIVE_ANNOUNCER_DEFAULT_OPTIONS\"),Xp=((Gp=function(){function e(t,n,r,i){_classCallCheck(this,e),this._ngZone=n,this._defaultOptions=i,this._document=r,this._liveElement=t||this._createLiveElement()}return _createClass(e,[{key:\"announce\",value:function(e){for(var t,n,r,i=this,a=this._defaultOptions,o=arguments.length,s=new Array(o>1?o-1:0),l=1;l1&&void 0!==arguments[1]&&arguments[1];if(!this._platform.isBrowser)return Bd(null);var r=gp(e);if(this._elementInfo.has(r)){var i=this._elementInfo.get(r);return i.checkChildren=n,i.subject.asObservable()}var a={unlisten:function(){},checkChildren:n,subject:new x};this._elementInfo.set(r,a),this._incrementMonitoredElementCount();var o=function(e){return t._onFocus(e,r)},s=function(e){return t._onBlur(e,r)};return this._ngZone.runOutsideAngular((function(){r.addEventListener(\"focus\",o,!0),r.addEventListener(\"blur\",s,!0)})),a.unlisten=function(){r.removeEventListener(\"focus\",o,!0),r.removeEventListener(\"blur\",s,!0)},a.subject.asObservable()}},{key:\"stopMonitoring\",value:function(e){var t=gp(e),n=this._elementInfo.get(t);n&&(n.unlisten(),n.subject.complete(),this._setClasses(t),this._elementInfo.delete(t),this._decrementMonitoredElementCount())}},{key:\"focusVia\",value:function(e,t,n){var r=gp(e);this._setOriginForCurrentEventQueue(t),\"function\"==typeof r.focus&&r.focus(n)}},{key:\"ngOnDestroy\",value:function(){var e=this;this._elementInfo.forEach((function(t,n){return e.stopMonitoring(n)}))}},{key:\"_toggleClass\",value:function(e,t,n){n?e.classList.add(t):e.classList.remove(t)}},{key:\"_setClasses\",value:function(e,t){this._elementInfo.get(e)&&(this._toggleClass(e,\"cdk-focused\",!!t),this._toggleClass(e,\"cdk-touch-focused\",\"touch\"===t),this._toggleClass(e,\"cdk-keyboard-focused\",\"keyboard\"===t),this._toggleClass(e,\"cdk-mouse-focused\",\"mouse\"===t),this._toggleClass(e,\"cdk-program-focused\",\"program\"===t))}},{key:\"_setOriginForCurrentEventQueue\",value:function(e){var t=this;this._ngZone.runOutsideAngular((function(){t._origin=e,t._originTimeoutId=setTimeout((function(){return t._origin=null}),1)}))}},{key:\"_wasCausedByTouch\",value:function(e){var t=e.target;return this._lastTouchTarget instanceof Node&&t instanceof Node&&(t===this._lastTouchTarget||t.contains(this._lastTouchTarget))}},{key:\"_onFocus\",value:function(e,t){var n=this._elementInfo.get(t);if(n&&(n.checkChildren||t===e.target)){var r=this._origin;r||(r=this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:this._wasCausedByTouch(e)?\"touch\":\"program\"),this._setClasses(t,r),this._emitOrigin(n.subject,r),this._lastFocusOrigin=r}}},{key:\"_onBlur\",value:function(e,t){var n=this._elementInfo.get(t);!n||n.checkChildren&&e.relatedTarget instanceof Node&&t.contains(e.relatedTarget)||(this._setClasses(t),this._emitOrigin(n.subject,null))}},{key:\"_emitOrigin\",value:function(e,t){this._ngZone.run((function(){return e.next(t)}))}},{key:\"_incrementMonitoredElementCount\",value:function(){var e=this;1==++this._monitoredElementCount&&this._platform.isBrowser&&this._ngZone.runOutsideAngular((function(){document.addEventListener(\"keydown\",e._documentKeydownListener,e_),document.addEventListener(\"mousedown\",e._documentMousedownListener,e_),document.addEventListener(\"touchstart\",e._documentTouchstartListener,e_),window.addEventListener(\"focus\",e._windowFocusListener)}))}},{key:\"_decrementMonitoredElementCount\",value:function(){--this._monitoredElementCount||(document.removeEventListener(\"keydown\",this._documentKeydownListener,e_),document.removeEventListener(\"mousedown\",this._documentMousedownListener,e_),document.removeEventListener(\"touchstart\",this._documentTouchstartListener,e_),window.removeEventListener(\"focus\",this._windowFocusListener),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._touchTimeoutId),clearTimeout(this._originTimeoutId))}}]),e}()).\\u0275fac=function(e){return new(e||$p)(et(cc),et(Cp))},$p.\\u0275prov=_e({factory:function(){return new $p(et(cc),et(Cp))},token:$p,providedIn:\"root\"}),$p);function n_(e){return 0===e.buttons}var r_,i_,a_,o_,s_,l_,u_,c_=((r_=function(){function e(t,n){_classCallCheck(this,e),this._platform=t,this._document=n}return _createClass(e,[{key:\"getHighContrastMode\",value:function(){if(!this._platform.isBrowser)return 0;var e=this._document.createElement(\"div\");e.style.backgroundColor=\"rgb(1,2,3)\",e.style.position=\"absolute\",this._document.body.appendChild(e);var t=(this._document.defaultView.getComputedStyle(e).backgroundColor||\"\").replace(/ /g,\"\");switch(this._document.body.removeChild(e),t){case\"rgb(0,0,0)\":return 2;case\"rgb(255,255,255)\":return 1}return 0}},{key:\"_applyBodyHighContrastModeCssClasses\",value:function(){if(this._platform.isBrowser&&this._document.body){var e=this._document.body.classList;e.remove(\"cdk-high-contrast-active\"),e.remove(\"cdk-high-contrast-black-on-white\"),e.remove(\"cdk-high-contrast-white-on-black\");var t=this.getHighContrastMode();1===t?(e.add(\"cdk-high-contrast-active\"),e.add(\"cdk-high-contrast-black-on-white\")):2===t&&(e.add(\"cdk-high-contrast-active\"),e.add(\"cdk-high-contrast-white-on-black\"))}}}]),e}()).\\u0275fac=function(e){return new(e||r_)(et(Cp),et(Wc))},r_.\\u0275prov=_e({factory:function(){return new r_(et(Cp),et(Wc))},token:r_,providedIn:\"root\"}),r_),d_=new Be(\"cdk-dir-doc\",{providedIn:\"root\",factory:function(){return tt(Wc)}}),h_=((a_=function(){function e(t){if(_classCallCheck(this,e),this.value=\"ltr\",this.change=new bu,t){var n=t.documentElement?t.documentElement.dir:null,r=(t.body?t.body.dir:null)||n;this.value=\"ltr\"===r||\"rtl\"===r?r:\"ltr\"}}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){this.change.complete()}}]),e}()).\\u0275fac=function(e){return new(e||a_)(et(d_,8))},a_.\\u0275prov=_e({factory:function(){return new a_(et(d_,8))},token:a_,providedIn:\"root\"}),a_),f_=((i_=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:i_}),i_.\\u0275inj=ve({factory:function(e){return new(e||i_)}}),i_),m_=new al(\"9.0.1\"),p_=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"getProperty\",value:function(e,t){return e[t]}},{key:\"log\",value:function(e){window.console&&window.console.log&&window.console.log(e)}},{key:\"logGroup\",value:function(e){window.console&&window.console.group&&window.console.group(e)}},{key:\"logGroupEnd\",value:function(){window.console&&window.console.groupEnd&&window.console.groupEnd()}},{key:\"onAndCancel\",value:function(e,t,n){return e.addEventListener(t,n,!1),function(){e.removeEventListener(t,n,!1)}}},{key:\"dispatchEvent\",value:function(e,t){e.dispatchEvent(t)}},{key:\"remove\",value:function(e){return e.parentNode&&e.parentNode.removeChild(e),e}},{key:\"getValue\",value:function(e){return e.value}},{key:\"createElement\",value:function(e,t){return(t=t||this.getDefaultDocument()).createElement(e)}},{key:\"createHtmlDocument\",value:function(){return document.implementation.createHTMLDocument(\"fakeTitle\")}},{key:\"getDefaultDocument\",value:function(){return document}},{key:\"isElementNode\",value:function(e){return e.nodeType===Node.ELEMENT_NODE}},{key:\"isShadowRoot\",value:function(e){return e instanceof DocumentFragment}},{key:\"getGlobalEventTarget\",value:function(e,t){return\"window\"===t?window:\"document\"===t?e:\"body\"===t?e.body:null}},{key:\"getHistory\",value:function(){return window.history}},{key:\"getLocation\",value:function(){return window.location}},{key:\"getBaseHref\",value:function(e){var t,n=__||(__=document.querySelector(\"base\"))?__.getAttribute(\"href\"):null;return null==n?null:(t=n,o_||(o_=document.createElement(\"a\")),o_.setAttribute(\"href\",t),\"/\"===o_.pathname.charAt(0)?o_.pathname:\"/\"+o_.pathname)}},{key:\"resetBaseElement\",value:function(){__=null}},{key:\"getUserAgent\",value:function(){return window.navigator.userAgent}},{key:\"performanceNow\",value:function(){return window.performance&&window.performance.now?window.performance.now():(new Date).getTime()}},{key:\"supportsCookies\",value:function(){return!0}},{key:\"getCookie\",value:function(e){return vd(document.cookie,e)}}],[{key:\"makeCurrent\",value:function(){var e;e=new n,Nc||(Nc=e)}}]),n}(function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.call(this)}return _createClass(n,[{key:\"supportsDOMEvents\",value:function(){return!0}}]),n}(function(){return function e(){_classCallCheck(this,e)}}())),__=null,v_=new Be(\"TRANSITION_ID\"),g_=[{provide:Vu,useFactory:function(e,t,n){return function(){n.get(Wu).donePromise.then((function(){var n=zc();Array.prototype.slice.apply(t.querySelectorAll(\"style[ng-transition]\")).filter((function(t){return t.getAttribute(\"ng-transition\")===e})).forEach((function(e){return n.remove(e)}))}))}},deps:[v_,Wc,vo],multi:!0}],y_=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"addToWindow\",value:function(e){Re.getAngularTestability=function(t){var n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],r=e.findTestabilityInTree(t,n);if(null==r)throw new Error(\"Could not find testability for element.\");return r},Re.getAllAngularTestabilities=function(){return e.getAllTestabilities()},Re.getAllAngularRootElements=function(){return e.getAllRootElements()},Re.frameworkStabilizers||(Re.frameworkStabilizers=[]),Re.frameworkStabilizers.push((function(e){var t=Re.getAllAngularTestabilities(),n=t.length,r=!1,i=function(t){r=r||t,0==--n&&e(r)};t.forEach((function(e){e.whenStable(i)}))}))}},{key:\"findTestabilityInTree\",value:function(e,t,n){if(null==t)return null;var r=e.getTestability(t);return null!=r?r:n?zc().isShadowRoot(t)?this.findTestabilityInTree(e,t.host,!0):this.findTestabilityInTree(e,t.parentElement,!0):null}}],[{key:\"init\",value:function(){var t;t=new e,kc=t}}]),e}(),b_=new Be(\"EventManagerPlugins\"),k_=((s_=function(){function e(t,n){var r=this;_classCallCheck(this,e),this._zone=n,this._eventNameToPlugin=new Map,t.forEach((function(e){return e.manager=r})),this._plugins=t.slice().reverse()}return _createClass(e,[{key:\"addEventListener\",value:function(e,t,n){return this._findPluginFor(t).addEventListener(e,t,n)}},{key:\"addGlobalEventListener\",value:function(e,t,n){return this._findPluginFor(t).addGlobalEventListener(e,t,n)}},{key:\"getZone\",value:function(){return this._zone}},{key:\"_findPluginFor\",value:function(e){var t=this._eventNameToPlugin.get(e);if(t)return t;for(var n=this._plugins,r=0;r-1}}]),n}(w_),E_.\\u0275fac=function(e){return new(e||E_)(et(Wc),et(U_),et(Ku),et(B_,8))},E_.\\u0275prov=_e({token:E_,factory:E_.\\u0275fac}),E_),multi:!0,deps:[Wc,U_,Ku,[new ce,B_]]},{provide:U_,useClass:q_,deps:[]}],$_=((I_=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:I_}),I_.\\u0275inj=ve({factory:function(e){return new(e||I_)},providers:G_}),I_),J_=[\"alt\",\"control\",\"meta\",\"shift\"],K_={\"\\b\":\"Backspace\",\"\\t\":\"Tab\",\"\\x7f\":\"Delete\",\"\\x1b\":\"Escape\",Del:\"Delete\",Esc:\"Escape\",Left:\"ArrowLeft\",Right:\"ArrowRight\",Up:\"ArrowUp\",Down:\"ArrowDown\",Menu:\"ContextMenu\",Scroll:\"ScrollLock\",Win:\"OS\"},Z_={A:\"1\",B:\"2\",C:\"3\",D:\"4\",E:\"5\",F:\"6\",G:\"7\",H:\"8\",I:\"9\",J:\"*\",K:\"+\",M:\"-\",N:\".\",O:\"/\",\"`\":\"0\",\"\\x90\":\"NumLock\"},Q_={alt:function(e){return e.altKey},control:function(e){return e.ctrlKey},meta:function(e){return e.metaKey},shift:function(e){return e.shiftKey}},X_=((j_=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){return _classCallCheck(this,n),t.call(this,e)}return _createClass(n,[{key:\"supports\",value:function(e){return null!=n.parseEventName(e)}},{key:\"addEventListener\",value:function(e,t,r){var i=n.parseEventName(t),a=n.eventCallback(i.fullKey,r,this.manager.getZone());return this.manager.getZone().runOutsideAngular((function(){return zc().onAndCancel(e,i.domEventName,a)}))}}],[{key:\"parseEventName\",value:function(e){var t=e.toLowerCase().split(\".\"),r=t.shift();if(0===t.length||\"keydown\"!==r&&\"keyup\"!==r)return null;var i=n._normalizeKey(t.pop()),a=\"\";if(J_.forEach((function(e){var n=t.indexOf(e);n>-1&&(t.splice(n,1),a+=e+\".\")})),a+=i,0!=t.length||0===i.length)return null;var o={};return o.domEventName=r,o.fullKey=a,o}},{key:\"getEventFullKey\",value:function(e){var t=\"\",n=function(e){var t=e.key;if(null==t){if(null==(t=e.keyIdentifier))return\"Unidentified\";t.startsWith(\"U+\")&&(t=String.fromCharCode(parseInt(t.substring(2),16)),3===e.location&&Z_.hasOwnProperty(t)&&(t=Z_[t]))}return K_[t]||t}(e);return\" \"===(n=n.toLowerCase())?n=\"space\":\".\"===n&&(n=\"dot\"),J_.forEach((function(r){r!=n&&(0,Q_[r])(e)&&(t+=r+\".\")})),t+=n}},{key:\"eventCallback\",value:function(e,t,r){return function(i){n.getEventFullKey(i)===e&&r.runGuarded((function(){return t(i)}))}}},{key:\"_normalizeKey\",value:function(e){switch(e){case\"esc\":return\"escape\";default:return e}}}]),n}(w_)).\\u0275fac=function(e){return new(e||j_)(et(Wc))},j_.\\u0275prov=_e({token:j_,factory:j_.\\u0275fac}),j_),ev=((P_=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||P_)},P_.\\u0275prov=_e({factory:function(){return et(tv)},token:P_,providedIn:\"root\"}),P_),tv=((A_=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this))._doc=e,r}return _createClass(n,[{key:\"sanitize\",value:function(e,t){if(null==t)return null;switch(e){case Kr.NONE:return t;case Kr.HTML:return wr(t,\"HTML\")?kr(t):$r(this._doc,String(t));case Kr.STYLE:return wr(t,\"Style\")?kr(t):Xr(t);case Kr.SCRIPT:if(wr(t,\"Script\"))return kr(t);throw new Error(\"unsafe value used in a script context\");case Kr.URL:return Cr(t),wr(t,\"URL\")?kr(t):Or(String(t));case Kr.RESOURCE_URL:if(wr(t,\"ResourceURL\"))return kr(t);throw new Error(\"unsafe value used in a resource URL context (see http://g.co/ng/security#xss)\");default:throw new Error(\"Unexpected SecurityContext \".concat(e,\" (see http://g.co/ng/security#xss)\"))}}},{key:\"bypassSecurityTrustHtml\",value:function(e){return new _r(e)}},{key:\"bypassSecurityTrustStyle\",value:function(e){return new vr(e)}},{key:\"bypassSecurityTrustScript\",value:function(e){return new gr(e)}},{key:\"bypassSecurityTrustUrl\",value:function(e){return new yr(e)}},{key:\"bypassSecurityTrustResourceUrl\",value:function(e){return new br(e)}}]),n}(ev)).\\u0275fac=function(e){return new(e||A_)(et(Wc))},A_.\\u0275prov=_e({factory:function(){return e=et(qe),new tv(e.get(Wc));var e},token:A_,providedIn:\"root\"}),A_),nv=Sc(Rc,\"browser\",[{provide:$u,useValue:\"browser\"},{provide:Gu,useValue:function(){p_.makeCurrent(),y_.init()},multi:!0},{provide:Wc,useFactory:function(){return function(e){Rt=e}(document),document},deps:[]}]),rv=[[],{provide:no,useValue:\"root\"},{provide:mr,useFactory:function(){return new mr},deps:[]},{provide:b_,useClass:V_,multi:!0,deps:[Wc,cc,$u]},{provide:b_,useClass:X_,multi:!0,deps:[Wc]},[],{provide:H_,useClass:H_,deps:[k_,M_,Uu]},{provide:el,useExisting:H_},{provide:C_,useExisting:M_},{provide:M_,useClass:M_,deps:[Wc]},{provide:yc,useClass:yc,deps:[cc]},{provide:k_,useClass:k_,deps:[b_,cc]},[]],iv=((R_=function(){function e(t){if(_classCallCheck(this,e),t)throw new Error(\"BrowserModule has already been loaded. If you need access to common directives such as NgIf and NgFor from a lazy loaded module, import CommonModule instead.\")}return _createClass(e,null,[{key:\"withServerTransition\",value:function(t){return{ngModule:e,providers:[{provide:Uu,useValue:t.appId},{provide:v_,useExisting:Uu},g_]}}}]),e}()).\\u0275mod=Mt({type:R_}),R_.\\u0275inj=ve({factory:function(e){return new(e||R_)(et(R_,12))},providers:rv,imports:[Nd,Fc]}),R_);function av(){return $(1)}function ov(){return av()(Bd.apply(void 0,arguments))}function sv(){for(var e=arguments.length,t=new Array(e),n=0;n1&&void 0!==arguments[1]?arguments[1]:null;return{type:4,styles:t,timings:e}}function dv(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return{type:2,steps:e,options:t}}function hv(e){return{type:6,styles:e,offset:null}}function fv(e,t,n){return{type:0,name:e,styles:t,options:n}}function mv(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return{type:1,expr:e,animation:t,options:n}}function pv(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return{type:11,selector:e,animation:t,options:n}}function _v(e){Promise.resolve(null).then(e)}var vv=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;_classCallCheck(this,e),this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this.parentPlayer=null,this.totalTime=t+n}return _createClass(e,[{key:\"_onFinish\",value:function(){this._finished||(this._finished=!0,this._onDoneFns.forEach((function(e){return e()})),this._onDoneFns=[])}},{key:\"onStart\",value:function(e){this._onStartFns.push(e)}},{key:\"onDone\",value:function(e){this._onDoneFns.push(e)}},{key:\"onDestroy\",value:function(e){this._onDestroyFns.push(e)}},{key:\"hasStarted\",value:function(){return this._started}},{key:\"init\",value:function(){}},{key:\"play\",value:function(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}},{key:\"triggerMicrotask\",value:function(){var e=this;_v((function(){return e._onFinish()}))}},{key:\"_onStart\",value:function(){this._onStartFns.forEach((function(e){return e()})),this._onStartFns=[]}},{key:\"pause\",value:function(){}},{key:\"restart\",value:function(){}},{key:\"finish\",value:function(){this._onFinish()}},{key:\"destroy\",value:function(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach((function(e){return e()})),this._onDestroyFns=[])}},{key:\"reset\",value:function(){}},{key:\"setPosition\",value:function(e){}},{key:\"getPosition\",value:function(){return 0}},{key:\"triggerCallback\",value:function(e){var t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach((function(e){return e()})),t.length=0}}]),e}(),gv=function(){function e(t){var n=this;_classCallCheck(this,e),this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=t;var r=0,i=0,a=0,o=this.players.length;0==o?_v((function(){return n._onFinish()})):this.players.forEach((function(e){e.onDone((function(){++r==o&&n._onFinish()})),e.onDestroy((function(){++i==o&&n._onDestroy()})),e.onStart((function(){++a==o&&n._onStart()}))})),this.totalTime=this.players.reduce((function(e,t){return Math.max(e,t.totalTime)}),0)}return _createClass(e,[{key:\"_onFinish\",value:function(){this._finished||(this._finished=!0,this._onDoneFns.forEach((function(e){return e()})),this._onDoneFns=[])}},{key:\"init\",value:function(){this.players.forEach((function(e){return e.init()}))}},{key:\"onStart\",value:function(e){this._onStartFns.push(e)}},{key:\"_onStart\",value:function(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach((function(e){return e()})),this._onStartFns=[])}},{key:\"onDone\",value:function(e){this._onDoneFns.push(e)}},{key:\"onDestroy\",value:function(e){this._onDestroyFns.push(e)}},{key:\"hasStarted\",value:function(){return this._started}},{key:\"play\",value:function(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach((function(e){return e.play()}))}},{key:\"pause\",value:function(){this.players.forEach((function(e){return e.pause()}))}},{key:\"restart\",value:function(){this.players.forEach((function(e){return e.restart()}))}},{key:\"finish\",value:function(){this._onFinish(),this.players.forEach((function(e){return e.finish()}))}},{key:\"destroy\",value:function(){this._onDestroy()}},{key:\"_onDestroy\",value:function(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach((function(e){return e.destroy()})),this._onDestroyFns.forEach((function(e){return e()})),this._onDestroyFns=[])}},{key:\"reset\",value:function(){this.players.forEach((function(e){return e.reset()})),this._destroyed=!1,this._finished=!1,this._started=!1}},{key:\"setPosition\",value:function(e){var t=e*this.totalTime;this.players.forEach((function(e){var n=e.totalTime?Math.min(1,t/e.totalTime):1;e.setPosition(n)}))}},{key:\"getPosition\",value:function(){var e=0;return this.players.forEach((function(t){var n=t.getPosition();e=Math.min(n,e)})),e}},{key:\"beforeDestroy\",value:function(){this.players.forEach((function(e){e.beforeDestroy&&e.beforeDestroy()}))}},{key:\"triggerCallback\",value:function(e){var t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach((function(e){return e()})),t.length=0}}]),e}();function yv(){return\"undefined\"!=typeof process&&\"[object process]\"==={}.toString.call(process)}function bv(e){switch(e.length){case 0:return new vv;case 1:return e[0];default:return new gv(e)}}function kv(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},o=[],s=[],l=-1,u=null;if(r.forEach((function(e){var n=e.offset,r=n==l,c=r&&u||{};Object.keys(e).forEach((function(n){var r=n,s=e[n];if(\"offset\"!==n)switch(r=t.normalizePropertyName(r,o),s){case\"!\":s=i[n];break;case\"*\":s=a[n];break;default:s=t.normalizeStyleValue(n,r,s,o)}c[r]=s})),r||s.push(c),u=c,l=n})),o.length){var c=\"\\n - \";throw new Error(\"Unable to animate due to the following errors:\".concat(c).concat(o.join(c)))}return s}function wv(e,t,n,r){switch(t){case\"start\":e.onStart((function(){return r(n&&Cv(n,\"start\",e))}));break;case\"done\":e.onDone((function(){return r(n&&Cv(n,\"done\",e))}));break;case\"destroy\":e.onDestroy((function(){return r(n&&Cv(n,\"destroy\",e))}))}}function Cv(e,t,n){var r=n.totalTime,i=Mv(e.element,e.triggerName,e.fromState,e.toState,t||e.phaseName,null==r?e.totalTime:r,!!n.disabled),a=e._data;return null!=a&&(i._data=a),i}function Mv(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:\"\",a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0,o=arguments.length>6?arguments[6]:void 0;return{element:e,triggerName:t,fromState:n,toState:r,phaseName:i,totalTime:a,disabled:!!o}}function Sv(e,t,n){var r;return e instanceof Map?(r=e.get(t))||e.set(t,r=n):(r=e[t])||(r=e[t]=n),r}function Lv(e){var t=e.indexOf(\":\");return[e.substring(1,t),e.substr(t+1)]}var Tv=function(e,t){return!1},xv=function(e,t){return!1},Dv=function(e,t,n){return[]},Ov=yv();(Ov||\"undefined\"!=typeof Element)&&(Tv=function(e,t){return e.contains(t)},xv=function(){if(Ov||Element.prototype.matches)return function(e,t){return e.matches(t)};var e=Element.prototype,t=e.matchesSelector||e.mozMatchesSelector||e.msMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;return t?function(e,n){return t.apply(e,[n])}:xv}(),Dv=function(e,t,n){var r=[];if(n)r.push.apply(r,_toConsumableArray(e.querySelectorAll(t)));else{var i=e.querySelector(t);i&&r.push(i)}return r});var Yv=null,Ev=!1;function Iv(e){Yv||(Yv=(\"undefined\"!=typeof document?document.body:null)||{},Ev=!!Yv.style&&\"WebkitAppearance\"in Yv.style);var t=!0;return Yv.style&&!function(e){return\"ebkit\"==e.substring(1,6)}(e)&&(!(t=e in Yv.style)&&Ev)&&(t=\"Webkit\"+e.charAt(0).toUpperCase()+e.substr(1)in Yv.style),t}var Av=xv,Pv=Tv,jv=Dv;function Rv(e){var t={};return Object.keys(e).forEach((function(n){var r=n.replace(/([a-z])([A-Z])/g,\"$1-$2\");t[r]=e[n]})),t}var Hv,Fv=((Hv=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"validateStyleProperty\",value:function(e){return Iv(e)}},{key:\"matchesElement\",value:function(e,t){return Av(e,t)}},{key:\"containsElement\",value:function(e,t){return Pv(e,t)}},{key:\"query\",value:function(e,t,n){return jv(e,t,n)}},{key:\"computeStyle\",value:function(e,t,n){return n||\"\"}},{key:\"animate\",value:function(e,t,n,r,i){return arguments.length>5&&void 0!==arguments[5]&&arguments[5],arguments.length>6&&arguments[6],new vv(n,r)}}]),e}()).\\u0275fac=function(e){return new(e||Hv)},Hv.\\u0275prov=_e({token:Hv,factory:Hv.\\u0275fac}),Hv),Nv=function(){var e=function e(){_classCallCheck(this,e)};return e.NOOP=new Fv,e}();function zv(e){if(\"number\"==typeof e)return e;var t=e.match(/^(-?[\\.\\d]+)(m?s)/);return!t||t.length<2?0:Vv(parseFloat(t[1]),t[2])}function Vv(e,t){switch(t){case\"s\":return 1e3*e;default:return e}}function Wv(e,t,n){return e.hasOwnProperty(\"duration\")?e:function(e,t,n){var r,i=0,a=\"\";if(\"string\"==typeof e){var o=e.match(/^(-?[\\.\\d]+)(m?s)(?:\\s+(-?[\\.\\d]+)(m?s))?(?:\\s+([-a-z]+(?:\\(.+?\\))?))?$/i);if(null===o)return t.push('The provided timing value \"'.concat(e,'\" is invalid.')),{duration:0,delay:0,easing:\"\"};r=Vv(parseFloat(o[1]),o[2]);var s=o[3];null!=s&&(i=Vv(parseFloat(s),o[4]));var l=o[5];l&&(a=l)}else r=e;if(!n){var u=!1,c=t.length;r<0&&(t.push(\"Duration values below 0 are not allowed for this animation step.\"),u=!0),i<0&&(t.push(\"Delay values below 0 are not allowed for this animation step.\"),u=!0),u&&t.splice(c,0,'The provided timing value \"'.concat(e,'\" is invalid.'))}return{duration:r,delay:i,easing:a}}(e,t,n)}function Uv(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Object.keys(e).forEach((function(n){t[n]=e[n]})),t}function Bv(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(t)for(var r in e)n[r]=e[r];else Uv(e,n);return n}function qv(e,t,n){return n?t+\":\"+n+\";\":\"\"}function Gv(e){for(var t=\"\",n=0;n *\";case\":leave\":return\"* => void\";case\":increment\":return function(e,t){return parseFloat(t)>parseFloat(e)};case\":decrement\":return function(e,t){return parseFloat(t) *\"}}(e,n);if(\"function\"==typeof r)return void t.push(r);e=r}var i=e.match(/^(\\*|[-\\w]+)\\s*()\\s*(\\*|[-\\w]+)$/);if(null==i||i.length<4)return n.push('The provided transition expression \"'.concat(e,'\" is not supported')),t;var a=i[1],o=i[2],s=i[3];t.push(ug(a,s)),\"<\"!=o[0]||\"*\"==a&&\"*\"==s||t.push(ug(s,a))}(e,i,r)})):i.push(n),i),animation:a,queryCount:t.queryCount,depCount:t.depCount,options:pg(e.options)}}},{key:\"visitSequence\",value:function(e,t){var n=this;return{type:2,steps:e.steps.map((function(e){return ag(n,e,t)})),options:pg(e.options)}}},{key:\"visitGroup\",value:function(e,t){var n=this,r=t.currentTime,i=0,a=e.steps.map((function(e){t.currentTime=r;var a=ag(n,e,t);return i=Math.max(i,t.currentTime),a}));return t.currentTime=i,{type:3,steps:a,options:pg(e.options)}}},{key:\"visitAnimate\",value:function(e,t){var n,r=function(e,t){var n=null;if(e.hasOwnProperty(\"duration\"))n=e;else if(\"number\"==typeof e)return _g(Wv(e,t).duration,0,\"\");var r=e;if(r.split(/\\s+/).some((function(e){return\"{\"==e.charAt(0)&&\"{\"==e.charAt(1)}))){var i=_g(0,0,\"\");return i.dynamic=!0,i.strValue=r,i}return _g((n=n||Wv(r,t)).duration,n.delay,n.easing)}(e.timings,t.errors);t.currentAnimateTimings=r;var i=e.styles?e.styles:hv({});if(5==i.type)n=this.visitKeyframes(i,t);else{var a=e.styles,o=!1;if(!a){o=!0;var s={};r.easing&&(s.easing=r.easing),a=hv(s)}t.currentTime+=r.duration+r.delay;var l=this.visitStyle(a,t);l.isEmptyStep=o,n=l}return t.currentAnimateTimings=null,{type:4,timings:r,style:n,options:null}}},{key:\"visitStyle\",value:function(e,t){var n=this._makeStyleAst(e,t);return this._validateStyleAst(n,t),n}},{key:\"_makeStyleAst\",value:function(e,t){var n=[];Array.isArray(e.styles)?e.styles.forEach((function(e){\"string\"==typeof e?\"*\"==e?n.push(e):t.errors.push(\"The provided style string value \".concat(e,\" is not allowed.\")):n.push(e)})):n.push(e.styles);var r=!1,i=null;return n.forEach((function(e){if(mg(e)){var t=e,n=t.easing;if(n&&(i=n,delete t.easing),!r)for(var a in t)if(t[a].toString().indexOf(\"{{\")>=0){r=!0;break}}})),{type:6,styles:n,easing:i,offset:e.offset,containsDynamicStyles:r,options:null}}},{key:\"_validateStyleAst\",value:function(e,t){var n=this,r=t.currentAnimateTimings,i=t.currentTime,a=t.currentTime;r&&a>0&&(a-=r.duration+r.delay),e.styles.forEach((function(e){\"string\"!=typeof e&&Object.keys(e).forEach((function(r){if(n._driver.validateStyleProperty(r)){var o,s,l,u,c,d=t.collectedStyles[t.currentQuerySelector],h=d[r],f=!0;h&&(a!=i&&a>=h.startTime&&i<=h.endTime&&(t.errors.push('The CSS property \"'.concat(r,'\" that exists between the times of \"').concat(h.startTime,'ms\" and \"').concat(h.endTime,'ms\" is also being animated in a parallel animation between the times of \"').concat(a,'ms\" and \"').concat(i,'ms\"')),f=!1),a=h.startTime),f&&(d[r]={startTime:a,endTime:i}),t.options&&(o=e[r],s=t.options,l=t.errors,u=s.params||{},(c=Qv(o)).length&&c.forEach((function(e){u.hasOwnProperty(e)||l.push(\"Unable to resolve the local animation param \".concat(e,\" in the given list of values\"))})))}else t.errors.push('The provided animation property \"'.concat(r,'\" is not a supported CSS property for animations'))}))}))}},{key:\"visitKeyframes\",value:function(e,t){var n=this,r={type:5,styles:[],options:null};if(!t.currentAnimateTimings)return t.errors.push(\"keyframes() must be placed inside of a call to animate()\"),r;var i=0,a=[],o=!1,s=!1,l=0,u=e.steps.map((function(e){var r=n._makeStyleAst(e,t),u=null!=r.offset?r.offset:function(e){if(\"string\"==typeof e)return null;var t=null;if(Array.isArray(e))e.forEach((function(e){if(mg(e)&&e.hasOwnProperty(\"offset\")){var n=e;t=parseFloat(n.offset),delete n.offset}}));else if(mg(e)&&e.hasOwnProperty(\"offset\")){var n=e;t=parseFloat(n.offset),delete n.offset}return t}(r.styles),c=0;return null!=u&&(i++,c=r.offset=u),s=s||c<0||c>1,o=o||c0&&i0?i==h?1:d*i:a[i],s=o*p;t.currentTime=f+m.delay+s,m.duration=s,n._validateStyleAst(e,t),e.offset=o,r.styles.push(e)})),r}},{key:\"visitReference\",value:function(e,t){return{type:8,animation:ag(this,Kv(e.animation),t),options:pg(e.options)}}},{key:\"visitAnimateChild\",value:function(e,t){return t.depCount++,{type:9,options:pg(e.options)}}},{key:\"visitAnimateRef\",value:function(e,t){return{type:10,animation:this.visitReference(e.animation,t),options:pg(e.options)}}},{key:\"visitQuery\",value:function(e,t){var n=t.currentQuerySelector,r=e.options||{};t.queryCount++,t.currentQuery=e;var i=_slicedToArray(function(e){var t=!!e.split(/\\s*,\\s*/).find((function(e){return\":self\"==e}));return t&&(e=e.replace(cg,\"\")),[e=e.replace(/@\\*/g,\".ng-trigger\").replace(/@\\w+/g,(function(e){return\".ng-trigger-\"+e.substr(1)})).replace(/:animating/g,\".ng-animating\"),t]}(e.selector),2),a=i[0],o=i[1];t.currentQuerySelector=n.length?n+\" \"+a:a,Sv(t.collectedStyles,t.currentQuerySelector,{});var s=ag(this,Kv(e.animation),t);return t.currentQuery=null,t.currentQuerySelector=n,{type:11,selector:a,limit:r.limit||0,optional:!!r.optional,includeSelf:o,animation:s,originalSelector:e.selector,options:pg(e.options)}}},{key:\"visitStagger\",value:function(e,t){t.currentQuery||t.errors.push(\"stagger() can only be used inside of query()\");var n=\"full\"===e.timings?{duration:0,delay:0,easing:\"full\"}:Wv(e.timings,t.errors,!0);return{type:12,animation:ag(this,Kv(e.animation),t),timings:n,options:null}}}]),e}(),fg=function e(t){_classCallCheck(this,e),this.errors=t,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles={},this.options=null};function mg(e){return!Array.isArray(e)&&\"object\"==typeof e}function pg(e){var t;return e?(e=Uv(e)).params&&(e.params=(t=e.params)?Uv(t):null):e={},e}function _g(e,t,n){return{duration:e,delay:t,easing:n}}function vg(e,t,n,r,i,a){var o=arguments.length>6&&void 0!==arguments[6]?arguments[6]:null,s=arguments.length>7&&void 0!==arguments[7]&&arguments[7];return{type:1,element:e,keyframes:t,preStyleProps:n,postStyleProps:r,duration:i,delay:a,totalTime:i+a,easing:o,subTimeline:s}}var gg=function(){function e(){_classCallCheck(this,e),this._map=new Map}return _createClass(e,[{key:\"consume\",value:function(e){var t=this._map.get(e);return t?this._map.delete(e):t=[],t}},{key:\"append\",value:function(e,t){var n,r=this._map.get(e);r||this._map.set(e,r=[]),(n=r).push.apply(n,_toConsumableArray(t))}},{key:\"has\",value:function(e){return this._map.has(e)}},{key:\"clear\",value:function(){this._map.clear()}}]),e}(),yg=new RegExp(\":enter\",\"g\"),bg=new RegExp(\":leave\",\"g\");function kg(e,t,n,r,i){var a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},o=arguments.length>6&&void 0!==arguments[6]?arguments[6]:{},s=arguments.length>7?arguments[7]:void 0,l=arguments.length>8?arguments[8]:void 0,u=arguments.length>9&&void 0!==arguments[9]?arguments[9]:[];return(new wg).buildKeyframes(e,t,n,r,i,a,o,s,l,u)}var wg=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"buildKeyframes\",value:function(e,t,n,r,i,a,o,s,l){var u=arguments.length>9&&void 0!==arguments[9]?arguments[9]:[];l=l||new gg;var c=new Mg(e,t,l,r,i,u,[]);c.options=s,c.currentTimeline.setStyles([a],null,c.errors,s),ag(this,n,c);var d=c.timelines.filter((function(e){return e.containsAnimation()}));if(d.length&&Object.keys(o).length){var h=d[d.length-1];h.allowOnlyTimelineStyles()||h.setStyles([o],null,c.errors,s)}return d.length?d.map((function(e){return e.buildKeyframes()})):[vg(t,[],[],[],0,0,\"\",!1)]}},{key:\"visitTrigger\",value:function(e,t){}},{key:\"visitState\",value:function(e,t){}},{key:\"visitTransition\",value:function(e,t){}},{key:\"visitAnimateChild\",value:function(e,t){var n=t.subInstructions.consume(t.element);if(n){var r=t.createSubContext(e.options),i=t.currentTimeline.currentTime,a=this._visitSubInstructions(n,r,r.options);i!=a&&t.transformIntoNewTimeline(a)}t.previousNode=e}},{key:\"visitAnimateRef\",value:function(e,t){var n=t.createSubContext(e.options);n.transformIntoNewTimeline(),this.visitReference(e.animation,n),t.transformIntoNewTimeline(n.currentTimeline.currentTime),t.previousNode=e}},{key:\"_visitSubInstructions\",value:function(e,t,n){var r=t.currentTimeline.currentTime,i=null!=n.duration?zv(n.duration):null,a=null!=n.delay?zv(n.delay):null;return 0!==i&&e.forEach((function(e){var n=t.appendInstructionToTimeline(e,i,a);r=Math.max(r,n.duration+n.delay)})),r}},{key:\"visitReference\",value:function(e,t){t.updateOptions(e.options,!0),ag(this,e.animation,t),t.previousNode=e}},{key:\"visitSequence\",value:function(e,t){var n=this,r=t.subContextCount,i=t,a=e.options;if(a&&(a.params||a.delay)&&((i=t.createSubContext(a)).transformIntoNewTimeline(),null!=a.delay)){6==i.previousNode.type&&(i.currentTimeline.snapshotCurrentStyles(),i.previousNode=Cg);var o=zv(a.delay);i.delayNextStep(o)}e.steps.length&&(e.steps.forEach((function(e){return ag(n,e,i)})),i.currentTimeline.applyStylesToKeyframe(),i.subContextCount>r&&i.transformIntoNewTimeline()),t.previousNode=e}},{key:\"visitGroup\",value:function(e,t){var n=this,r=[],i=t.currentTimeline.currentTime,a=e.options&&e.options.delay?zv(e.options.delay):0;e.steps.forEach((function(o){var s=t.createSubContext(e.options);a&&s.delayNextStep(a),ag(n,o,s),i=Math.max(i,s.currentTimeline.currentTime),r.push(s.currentTimeline)})),r.forEach((function(e){return t.currentTimeline.mergeTimelineCollectedStyles(e)})),t.transformIntoNewTimeline(i),t.previousNode=e}},{key:\"_visitTiming\",value:function(e,t){if(e.dynamic){var n=e.strValue;return Wv(t.params?Xv(n,t.params,t.errors):n,t.errors)}return{duration:e.duration,delay:e.delay,easing:e.easing}}},{key:\"visitAnimate\",value:function(e,t){var n=t.currentAnimateTimings=this._visitTiming(e.timings,t),r=t.currentTimeline;n.delay&&(t.incrementTime(n.delay),r.snapshotCurrentStyles());var i=e.style;5==i.type?this.visitKeyframes(i,t):(t.incrementTime(n.duration),this.visitStyle(i,t),r.applyStylesToKeyframe()),t.currentAnimateTimings=null,t.previousNode=e}},{key:\"visitStyle\",value:function(e,t){var n=t.currentTimeline,r=t.currentAnimateTimings;!r&&n.getCurrentStyleProperties().length&&n.forwardFrame();var i=r&&r.easing||e.easing;e.isEmptyStep?n.applyEmptyStep(i):n.setStyles(e.styles,i,t.errors,t.options),t.previousNode=e}},{key:\"visitKeyframes\",value:function(e,t){var n=t.currentAnimateTimings,r=t.currentTimeline.duration,i=n.duration,a=t.createSubContext().currentTimeline;a.easing=n.easing,e.styles.forEach((function(e){a.forwardTime((e.offset||0)*i),a.setStyles(e.styles,e.easing,t.errors,t.options),a.applyStylesToKeyframe()})),t.currentTimeline.mergeTimelineCollectedStyles(a),t.transformIntoNewTimeline(r+i),t.previousNode=e}},{key:\"visitQuery\",value:function(e,t){var n=this,r=t.currentTimeline.currentTime,i=e.options||{},a=i.delay?zv(i.delay):0;a&&(6===t.previousNode.type||0==r&&t.currentTimeline.getCurrentStyleProperties().length)&&(t.currentTimeline.snapshotCurrentStyles(),t.previousNode=Cg);var o=r,s=t.invokeQuery(e.selector,e.originalSelector,e.limit,e.includeSelf,!!i.optional,t.errors);t.currentQueryTotal=s.length;var l=null;s.forEach((function(r,i){t.currentQueryIndex=i;var s=t.createSubContext(e.options,r);a&&s.delayNextStep(a),r===t.element&&(l=s.currentTimeline),ag(n,e.animation,s),s.currentTimeline.applyStylesToKeyframe(),o=Math.max(o,s.currentTimeline.currentTime)})),t.currentQueryIndex=0,t.currentQueryTotal=0,t.transformIntoNewTimeline(o),l&&(t.currentTimeline.mergeTimelineCollectedStyles(l),t.currentTimeline.snapshotCurrentStyles()),t.previousNode=e}},{key:\"visitStagger\",value:function(e,t){var n=t.parentContext,r=t.currentTimeline,i=e.timings,a=Math.abs(i.duration),o=a*(t.currentQueryTotal-1),s=a*t.currentQueryIndex;switch(i.duration<0?\"reverse\":i.easing){case\"reverse\":s=o-s;break;case\"full\":s=n.currentStaggerTime}var l=t.currentTimeline;s&&l.delayNextStep(s);var u=l.currentTime;ag(this,e.animation,t),t.previousNode=e,n.currentStaggerTime=r.currentTime-u+(r.startTime-n.currentTimeline.startTime)}}]),e}(),Cg={},Mg=function(){function e(t,n,r,i,a,o,s,l){_classCallCheck(this,e),this._driver=t,this.element=n,this.subInstructions=r,this._enterClassName=i,this._leaveClassName=a,this.errors=o,this.timelines=s,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=Cg,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=l||new Sg(this._driver,n,0),s.push(this.currentTimeline)}return _createClass(e,[{key:\"updateOptions\",value:function(e,t){var n=this;if(e){var r=e,i=this.options;null!=r.duration&&(i.duration=zv(r.duration)),null!=r.delay&&(i.delay=zv(r.delay));var a=r.params;if(a){var o=i.params;o||(o=this.options.params={}),Object.keys(a).forEach((function(e){t&&o.hasOwnProperty(e)||(o[e]=Xv(a[e],o,n.errors))}))}}}},{key:\"_copyOptions\",value:function(){var e={};if(this.options){var t=this.options.params;if(t){var n=e.params={};Object.keys(t).forEach((function(e){n[e]=t[e]}))}}return e}},{key:\"createSubContext\",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,n=arguments.length>1?arguments[1]:void 0,r=arguments.length>2?arguments[2]:void 0,i=n||this.element,a=new e(this._driver,i,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(i,r||0));return a.previousNode=this.previousNode,a.currentAnimateTimings=this.currentAnimateTimings,a.options=this._copyOptions(),a.updateOptions(t),a.currentQueryIndex=this.currentQueryIndex,a.currentQueryTotal=this.currentQueryTotal,a.parentContext=this,this.subContextCount++,a}},{key:\"transformIntoNewTimeline\",value:function(e){return this.previousNode=Cg,this.currentTimeline=this.currentTimeline.fork(this.element,e),this.timelines.push(this.currentTimeline),this.currentTimeline}},{key:\"appendInstructionToTimeline\",value:function(e,t,n){var r={duration:null!=t?t:e.duration,delay:this.currentTimeline.currentTime+(null!=n?n:0)+e.delay,easing:\"\"},i=new Lg(this._driver,e.element,e.keyframes,e.preStyleProps,e.postStyleProps,r,e.stretchStartingKeyframe);return this.timelines.push(i),r}},{key:\"incrementTime\",value:function(e){this.currentTimeline.forwardTime(this.currentTimeline.duration+e)}},{key:\"delayNextStep\",value:function(e){e>0&&this.currentTimeline.delayNextStep(e)}},{key:\"invokeQuery\",value:function(e,t,n,r,i,a){var o=[];if(r&&o.push(this.element),e.length>0){e=(e=e.replace(yg,\".\"+this._enterClassName)).replace(bg,\".\"+this._leaveClassName);var s=this._driver.query(this.element,e,1!=n);0!==n&&(s=n<0?s.slice(s.length+n,s.length):s.slice(0,n)),o.push.apply(o,_toConsumableArray(s))}return i||0!=o.length||a.push('`query(\"'.concat(t,'\")` returned zero elements. (Use `query(\"').concat(t,'\", { optional: true })` if you wish to allow this.)')),o}},{key:\"params\",get:function(){return this.options.params}}]),e}(),Sg=function(){function e(t,n,r,i){_classCallCheck(this,e),this._driver=t,this.element=n,this.startTime=r,this._elementTimelineStylesLookup=i,this.duration=0,this._previousKeyframe={},this._currentKeyframe={},this._keyframes=new Map,this._styleSummary={},this._pendingStyles={},this._backFill={},this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._localTimelineStyles=Object.create(this._backFill,{}),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(n),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(n,this._localTimelineStyles)),this._loadKeyframe()}return _createClass(e,[{key:\"containsAnimation\",value:function(){switch(this._keyframes.size){case 0:return!1;case 1:return this.getCurrentStyleProperties().length>0;default:return!0}}},{key:\"getCurrentStyleProperties\",value:function(){return Object.keys(this._currentKeyframe)}},{key:\"delayNextStep\",value:function(e){var t=1==this._keyframes.size&&Object.keys(this._pendingStyles).length;this.duration||t?(this.forwardTime(this.currentTime+e),t&&this.snapshotCurrentStyles()):this.startTime+=e}},{key:\"fork\",value:function(t,n){return this.applyStylesToKeyframe(),new e(this._driver,t,n||this.currentTime,this._elementTimelineStylesLookup)}},{key:\"_loadKeyframe\",value:function(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=Object.create(this._backFill,{}),this._keyframes.set(this.duration,this._currentKeyframe))}},{key:\"forwardFrame\",value:function(){this.duration+=1,this._loadKeyframe()}},{key:\"forwardTime\",value:function(e){this.applyStylesToKeyframe(),this.duration=e,this._loadKeyframe()}},{key:\"_updateStyle\",value:function(e,t){this._localTimelineStyles[e]=t,this._globalTimelineStyles[e]=t,this._styleSummary[e]={time:this.currentTime,value:t}}},{key:\"allowOnlyTimelineStyles\",value:function(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}},{key:\"applyEmptyStep\",value:function(e){var t=this;e&&(this._previousKeyframe.easing=e),Object.keys(this._globalTimelineStyles).forEach((function(e){t._backFill[e]=t._globalTimelineStyles[e]||\"*\",t._currentKeyframe[e]=\"*\"})),this._currentEmptyStepKeyframe=this._currentKeyframe}},{key:\"setStyles\",value:function(e,t,n,r){var i=this;t&&(this._previousKeyframe.easing=t);var a=r&&r.params||{},o=function(e,t){var n,r={};return e.forEach((function(e){\"*\"===e?(n=n||Object.keys(t)).forEach((function(e){r[e]=\"*\"})):Bv(e,!1,r)})),r}(e,this._globalTimelineStyles);Object.keys(o).forEach((function(e){var t=Xv(o[e],a,n);i._pendingStyles[e]=t,i._localTimelineStyles.hasOwnProperty(e)||(i._backFill[e]=i._globalTimelineStyles.hasOwnProperty(e)?i._globalTimelineStyles[e]:\"*\"),i._updateStyle(e,t)}))}},{key:\"applyStylesToKeyframe\",value:function(){var e=this,t=this._pendingStyles,n=Object.keys(t);0!=n.length&&(this._pendingStyles={},n.forEach((function(n){e._currentKeyframe[n]=t[n]})),Object.keys(this._localTimelineStyles).forEach((function(t){e._currentKeyframe.hasOwnProperty(t)||(e._currentKeyframe[t]=e._localTimelineStyles[t])})))}},{key:\"snapshotCurrentStyles\",value:function(){var e=this;Object.keys(this._localTimelineStyles).forEach((function(t){var n=e._localTimelineStyles[t];e._pendingStyles[t]=n,e._updateStyle(t,n)}))}},{key:\"getFinalKeyframe\",value:function(){return this._keyframes.get(this.duration)}},{key:\"mergeTimelineCollectedStyles\",value:function(e){var t=this;Object.keys(e._styleSummary).forEach((function(n){var r=t._styleSummary[n],i=e._styleSummary[n];(!r||i.time>r.time)&&t._updateStyle(n,i.value)}))}},{key:\"buildKeyframes\",value:function(){var e=this;this.applyStylesToKeyframe();var t=new Set,n=new Set,r=1===this._keyframes.size&&0===this.duration,i=[];this._keyframes.forEach((function(a,o){var s=Bv(a,!0);Object.keys(s).forEach((function(e){var r=s[e];\"!\"==r?t.add(e):\"*\"==r&&n.add(e)})),r||(s.offset=o/e.duration),i.push(s)}));var a=t.size?eg(t.values()):[],o=n.size?eg(n.values()):[];if(r){var s=i[0],l=Uv(s);s.offset=0,l.offset=1,i=[s,l]}return vg(this.element,i,a,o,this.duration,this.startTime,this.easing,!1)}},{key:\"currentTime\",get:function(){return this.startTime+this.duration}},{key:\"properties\",get:function(){var e=[];for(var t in this._currentKeyframe)e.push(t);return e}}]),e}(),Lg=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s){var l,u=arguments.length>6&&void 0!==arguments[6]&&arguments[6];return _classCallCheck(this,n),(l=t.call(this,e,r,s.delay)).element=r,l.keyframes=i,l.preStyleProps=a,l.postStyleProps=o,l._stretchStartingKeyframe=u,l.timings={duration:s.duration,delay:s.delay,easing:s.easing},l}return _createClass(n,[{key:\"containsAnimation\",value:function(){return this.keyframes.length>1}},{key:\"buildKeyframes\",value:function(){var e=this.keyframes,t=this.timings,n=t.delay,r=t.duration,i=t.easing;if(this._stretchStartingKeyframe&&n){var a=[],o=r+n,s=n/o,l=Bv(e[0],!1);l.offset=0,a.push(l);var u=Bv(e[0],!1);u.offset=Tg(s),a.push(u);for(var c=e.length-1,d=1;d<=c;d++){var h=Bv(e[d],!1);h.offset=Tg((n+h.offset*r)/o),a.push(h)}r=o,n=0,i=\"\",e=a}return vg(this.element,e,this.preStyleProps,this.postStyleProps,r,n,i,!0)}}]),n}(Sg);function Tg(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:3,n=Math.pow(10,t-1);return Math.round(e*n)/n}var xg=function e(){_classCallCheck(this,e)},Dg=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"normalizePropertyName\",value:function(e,t){return ng(e)}},{key:\"normalizeStyleValue\",value:function(e,t,n,r){var i=\"\",a=n.toString().trim();if(Og[t]&&0!==n&&\"0\"!==n)if(\"number\"==typeof n)i=\"px\";else{var o=n.match(/^[+-]?[\\d\\.]+([a-z]*)$/);o&&0==o[1].length&&r.push(\"Please provide a CSS unit value for \".concat(e,\":\").concat(n))}return a+i}}]),n}(xg),Og=function(e){var t={};return e.forEach((function(e){return t[e]=!0})),t}(\"width,height,minWidth,minHeight,maxWidth,maxHeight,left,top,bottom,right,fontSize,outlineWidth,outlineOffset,paddingTop,paddingLeft,paddingBottom,paddingRight,marginTop,marginLeft,marginBottom,marginRight,borderRadius,borderWidth,borderTopWidth,borderLeftWidth,borderRightWidth,borderBottomWidth,textIndent,perspective\".split(\",\"));function Yg(e,t,n,r,i,a,o,s,l,u,c,d,h){return{type:0,element:e,triggerName:t,isRemovalTransition:i,fromState:n,fromStyles:a,toState:r,toStyles:o,timelines:s,queriedElements:l,preStyleProps:u,postStyleProps:c,totalTime:d,errors:h}}var Eg={},Ig=function(){function e(t,n,r){_classCallCheck(this,e),this._triggerName=t,this.ast=n,this._stateStyles=r}return _createClass(e,[{key:\"match\",value:function(e,t,n,r){return function(e,t,n,r,i){return e.some((function(e){return e(t,n,r,i)}))}(this.ast.matchers,e,t,n,r)}},{key:\"buildStyles\",value:function(e,t,n){var r=this._stateStyles[\"*\"],i=this._stateStyles[e],a=r?r.buildStyles(t,n):{};return i?i.buildStyles(t,n):a}},{key:\"build\",value:function(e,t,n,r,i,a,o,s,l,u){var c=[],d=this.ast.options&&this.ast.options.params||Eg,h=this.buildStyles(n,o&&o.params||Eg,c),f=s&&s.params||Eg,m=this.buildStyles(r,f,c),p=new Set,_=new Map,v=new Map,g=\"void\"===r,y={params:Object.assign(Object.assign({},d),f)},b=u?[]:kg(e,t,this.ast.animation,i,a,h,m,y,l,c),k=0;if(b.forEach((function(e){k=Math.max(e.duration+e.delay,k)})),c.length)return Yg(t,this._triggerName,n,r,g,h,m,[],[],_,v,k,c);b.forEach((function(e){var n=e.element,r=Sv(_,n,{});e.preStyleProps.forEach((function(e){return r[e]=!0}));var i=Sv(v,n,{});e.postStyleProps.forEach((function(e){return i[e]=!0})),n!==t&&p.add(n)}));var w=eg(p.values());return Yg(t,this._triggerName,n,r,g,h,m,b,w,_,v,k)}}]),e}(),Ag=function(){function e(t,n){_classCallCheck(this,e),this.styles=t,this.defaultParams=n}return _createClass(e,[{key:\"buildStyles\",value:function(e,t){var n={},r=Uv(this.defaultParams);return Object.keys(e).forEach((function(t){var n=e[t];null!=n&&(r[t]=n)})),this.styles.styles.forEach((function(e){if(\"string\"!=typeof e){var i=e;Object.keys(i).forEach((function(e){var a=i[e];a.length>1&&(a=Xv(a,r,t)),n[e]=a}))}})),n}}]),e}(),Pg=function(){function e(t,n){var r=this;_classCallCheck(this,e),this.name=t,this.ast=n,this.transitionFactories=[],this.states={},n.states.forEach((function(e){r.states[e.name]=new Ag(e.style,e.options&&e.options.params||{})})),jg(this.states,\"true\",\"1\"),jg(this.states,\"false\",\"0\"),n.transitions.forEach((function(e){r.transitionFactories.push(new Ig(t,e,r.states))})),this.fallbackTransition=new Ig(t,{type:1,animation:{type:2,steps:[],options:null},matchers:[function(e,t){return!0}],options:null,queryCount:0,depCount:0},this.states)}return _createClass(e,[{key:\"matchTransition\",value:function(e,t,n,r){return this.transitionFactories.find((function(i){return i.match(e,t,n,r)}))||null}},{key:\"matchStyles\",value:function(e,t,n){return this.fallbackTransition.buildStyles(e,t,n)}},{key:\"containsQueries\",get:function(){return this.ast.queryCount>0}}]),e}();function jg(e,t,n){e.hasOwnProperty(t)?e.hasOwnProperty(n)||(e[n]=e[t]):e.hasOwnProperty(n)&&(e[t]=e[n])}var Rg=new gg,Hg=function(){function e(t,n,r){_classCallCheck(this,e),this.bodyNode=t,this._driver=n,this._normalizer=r,this._animations={},this._playersById={},this.players=[]}return _createClass(e,[{key:\"register\",value:function(e,t){var n=[],r=dg(this._driver,t,n);if(n.length)throw new Error(\"Unable to build the animation due to the following errors: \".concat(n.join(\"\\n\")));this._animations[e]=r}},{key:\"_buildPlayer\",value:function(e,t,n){var r=e.element,i=kv(0,this._normalizer,0,e.keyframes,t,n);return this._driver.animate(r,i,e.duration,e.delay,e.easing,[],!0)}},{key:\"create\",value:function(e,t){var n,r=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=[],o=this._animations[e],s=new Map;if(o?(n=kg(this._driver,t,o,\"ng-enter\",\"ng-leave\",{},{},i,Rg,a)).forEach((function(e){var t=Sv(s,e.element,{});e.postStyleProps.forEach((function(e){return t[e]=null}))})):(a.push(\"The requested animation doesn't exist or has already been destroyed\"),n=[]),a.length)throw new Error(\"Unable to create the animation due to the following errors: \".concat(a.join(\"\\n\")));s.forEach((function(e,t){Object.keys(e).forEach((function(n){e[n]=r._driver.computeStyle(t,n,\"*\")}))}));var l=bv(n.map((function(e){var t=s.get(e.element);return r._buildPlayer(e,{},t)})));return this._playersById[e]=l,l.onDestroy((function(){return r.destroy(e)})),this.players.push(l),l}},{key:\"destroy\",value:function(e){var t=this._getPlayer(e);t.destroy(),delete this._playersById[e];var n=this.players.indexOf(t);n>=0&&this.players.splice(n,1)}},{key:\"_getPlayer\",value:function(e){var t=this._playersById[e];if(!t)throw new Error(\"Unable to find the timeline player referenced by \".concat(e));return t}},{key:\"listen\",value:function(e,t,n,r){var i=Mv(t,\"\",\"\",\"\");return wv(this._getPlayer(e),n,i,r),function(){}}},{key:\"command\",value:function(e,t,n,r){if(\"register\"!=n)if(\"create\"!=n){var i=this._getPlayer(e);switch(n){case\"play\":i.play();break;case\"pause\":i.pause();break;case\"reset\":i.reset();break;case\"restart\":i.restart();break;case\"finish\":i.finish();break;case\"init\":i.init();break;case\"setPosition\":i.setPosition(parseFloat(r[0]));break;case\"destroy\":this.destroy(e)}}else this.create(e,t,r[0]||{});else this.register(e,r[0])}}]),e}(),Fg=[],Ng={namespaceId:\"\",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},zg={namespaceId:\"\",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},Vg=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\";_classCallCheck(this,e),this.namespaceId=n;var r,i=t&&t.hasOwnProperty(\"value\");if(this.value=null!=(r=i?t.value:t)?r:null,i){var a=Uv(t);delete a.value,this.options=a}else this.options={};this.options.params||(this.options.params={})}return _createClass(e,[{key:\"absorbOptions\",value:function(e){var t=e.params;if(t){var n=this.options.params;Object.keys(t).forEach((function(e){null==n[e]&&(n[e]=t[e])}))}}},{key:\"params\",get:function(){return this.options.params}}]),e}(),Wg=new Vg(\"void\"),Ug=function(){function e(t,n,r){_classCallCheck(this,e),this.id=t,this.hostElement=n,this._engine=r,this.players=[],this._triggers={},this._queue=[],this._elementListeners=new Map,this._hostClassName=\"ng-tns-\"+t,Zg(n,this._hostClassName)}return _createClass(e,[{key:\"listen\",value:function(e,t,n,r){var i,a=this;if(!this._triggers.hasOwnProperty(t))throw new Error('Unable to listen on the animation trigger event \"'.concat(n,'\" because the animation trigger \"').concat(t,\"\\\" doesn't exist!\"));if(null==n||0==n.length)throw new Error('Unable to listen on the animation trigger \"'.concat(t,'\" because the provided event is undefined!'));if(\"start\"!=(i=n)&&\"done\"!=i)throw new Error('The provided animation trigger event \"'.concat(n,'\" for the animation trigger \"').concat(t,'\" is not supported!'));var o=Sv(this._elementListeners,e,[]),s={name:t,phase:n,callback:r};o.push(s);var l=Sv(this._engine.statesByElement,e,{});return l.hasOwnProperty(t)||(Zg(e,\"ng-trigger\"),Zg(e,\"ng-trigger-\"+t),l[t]=Wg),function(){a._engine.afterFlush((function(){var e=o.indexOf(s);e>=0&&o.splice(e,1),a._triggers[t]||delete l[t]}))}}},{key:\"register\",value:function(e,t){return!this._triggers[e]&&(this._triggers[e]=t,!0)}},{key:\"_getTrigger\",value:function(e){var t=this._triggers[e];if(!t)throw new Error('The provided animation trigger \"'.concat(e,'\" has not been registered!'));return t}},{key:\"trigger\",value:function(e,t,n){var r=this,i=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],a=this._getTrigger(t),o=new qg(this.id,t,e),s=this._engine.statesByElement.get(e);s||(Zg(e,\"ng-trigger\"),Zg(e,\"ng-trigger-\"+t),this._engine.statesByElement.set(e,s={}));var l=s[t],u=new Vg(n,this.id);if(!(n&&n.hasOwnProperty(\"value\"))&&l&&u.absorbOptions(l.options),s[t]=u,l||(l=Wg),\"void\"===u.value||l.value!==u.value){var c=Sv(this._engine.playersByElement,e,[]);c.forEach((function(e){e.namespaceId==r.id&&e.triggerName==t&&e.queued&&e.destroy()}));var d=a.matchTransition(l.value,u.value,e,u.params),h=!1;if(!d){if(!i)return;d=a.fallbackTransition,h=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:e,triggerName:t,transition:d,fromState:l,toState:u,player:o,isFallbackTransition:h}),h||(Zg(e,\"ng-animate-queued\"),o.onStart((function(){Qg(e,\"ng-animate-queued\")}))),o.onDone((function(){var t=r.players.indexOf(o);t>=0&&r.players.splice(t,1);var n=r._engine.playersByElement.get(e);if(n){var i=n.indexOf(o);i>=0&&n.splice(i,1)}})),this.players.push(o),c.push(o),o}if(!function(e,t){var n=Object.keys(e),r=Object.keys(t);if(n.length!=r.length)return!1;for(var i=0;i=0){for(var r=!1,i=n;i>=0;i--)if(this.driver.containsElement(this._namespaceList[i].hostElement,t)){this._namespaceList.splice(i+1,0,e),r=!0;break}r||this._namespaceList.splice(0,0,e)}else this._namespaceList.push(e);return this.namespacesByHostElement.set(t,e),e}},{key:\"register\",value:function(e,t){var n=this._namespaceLookup[e];return n||(n=this.createNamespace(e,t)),n}},{key:\"registerTrigger\",value:function(e,t,n){var r=this._namespaceLookup[e];r&&r.register(t,n)&&this.totalAnimations++}},{key:\"destroy\",value:function(e,t){var n=this;if(e){var r=this._fetchNamespace(e);this.afterFlush((function(){n.namespacesByHostElement.delete(r.hostElement),delete n._namespaceLookup[e];var t=n._namespaceList.indexOf(r);t>=0&&n._namespaceList.splice(t,1)})),this.afterFlushAnimationsDone((function(){return r.destroy(t)}))}}},{key:\"_fetchNamespace\",value:function(e){return this._namespaceLookup[e]}},{key:\"fetchNamespacesByElement\",value:function(e){var t=new Set,n=this.statesByElement.get(e);if(n)for(var r=Object.keys(n),i=0;i=0&&this.collectedLeaveElements.splice(a,1)}if(e){var o=this._fetchNamespace(e);o&&o.insertNode(t,n)}r&&this.collectEnterElement(t)}}},{key:\"collectEnterElement\",value:function(e){this.collectedEnterElements.push(e)}},{key:\"markElementAsDisabled\",value:function(e,t){t?this.disabledNodes.has(e)||(this.disabledNodes.add(e),Zg(e,\"ng-animate-disabled\")):this.disabledNodes.has(e)&&(this.disabledNodes.delete(e),Qg(e,\"ng-animate-disabled\"))}},{key:\"removeNode\",value:function(e,t,n,r){if(Gg(t)){var i=e?this._fetchNamespace(e):null;if(i?i.removeNode(t,r):this.markElementAsRemoved(e,t,!1,r),n){var a=this.namespacesByHostElement.get(t);a&&a.id!==e&&a.removeNode(t,r)}}else this._onRemovalComplete(t,r)}},{key:\"markElementAsRemoved\",value:function(e,t,n,r){this.collectedLeaveElements.push(t),t.__ng_removed={namespaceId:e,setForRemoval:r,hasAnimation:n,removedBeforeQueried:!1}}},{key:\"listen\",value:function(e,t,n,r,i){return Gg(t)?this._fetchNamespace(e).listen(t,n,r,i):function(){}}},{key:\"_buildInstruction\",value:function(e,t,n,r,i){return e.transition.build(this.driver,e.element,e.fromState.value,e.toState.value,n,r,e.fromState.options,e.toState.options,t,i)}},{key:\"destroyInnerAnimations\",value:function(e){var t=this,n=this.driver.query(e,\".ng-trigger\",!0);n.forEach((function(e){return t.destroyActiveAnimationsForElement(e)})),0!=this.playersByQueriedElement.size&&(n=this.driver.query(e,\".ng-animating\",!0)).forEach((function(e){return t.finishActiveQueriedAnimationOnElement(e)}))}},{key:\"destroyActiveAnimationsForElement\",value:function(e){var t=this.playersByElement.get(e);t&&t.forEach((function(e){e.queued?e.markedForDestroy=!0:e.destroy()}))}},{key:\"finishActiveQueriedAnimationOnElement\",value:function(e){var t=this.playersByQueriedElement.get(e);t&&t.forEach((function(e){return e.finish()}))}},{key:\"whenRenderingDone\",value:function(){var e=this;return new Promise((function(t){if(e.players.length)return bv(e.players).onDone((function(){return t()}));t()}))}},{key:\"processLeaveNode\",value:function(e){var t=this,n=e.__ng_removed;if(n&&n.setForRemoval){if(e.__ng_removed=Ng,n.namespaceId){this.destroyInnerAnimations(e);var r=this._fetchNamespace(n.namespaceId);r&&r.clearElementCache(e)}this._onRemovalComplete(e,n.setForRemoval)}this.driver.matchesElement(e,\".ng-animate-disabled\")&&this.markElementAsDisabled(e,!1),this.driver.query(e,\".ng-animate-disabled\",!0).forEach((function(e){t.markElementAsDisabled(e,!1)}))}},{key:\"flush\",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:-1,n=[];if(this.newHostElements.size&&(this.newHostElements.forEach((function(t,n){return e._balanceNamespaceList(t,n)})),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(var r=0;r=0;L--)this._namespaceList[L].drainQueuedTransitions(t).forEach((function(e){var t=e.player,a=e.element;if(M.push(t),n.collectedEnterElements.length){var c=a.__ng_removed;if(c&&c.setForMove)return void t.destroy()}var h=!d||!n.driver.containsElement(d,a),f=w.get(a),p=m.get(a),_=n._buildInstruction(e,r,p,f,h);if(!_.errors||!_.errors.length)return h||e.isFallbackTransition?(t.onStart((function(){return Jv(a,_.fromStyles)})),t.onDestroy((function(){return $v(a,_.toStyles)})),void i.push(t)):(_.timelines.forEach((function(e){return e.stretchStartingKeyframe=!0})),r.append(a,_.timelines),o.push({instruction:_,player:t,element:a}),_.queriedElements.forEach((function(e){return Sv(s,e,[]).push(t)})),_.preStyleProps.forEach((function(e,t){var n=Object.keys(e);if(n.length){var r=l.get(t);r||l.set(t,r=new Set),n.forEach((function(e){return r.add(e)}))}})),void _.postStyleProps.forEach((function(e,t){var n=Object.keys(e),r=u.get(t);r||u.set(t,r=new Set),n.forEach((function(e){return r.add(e)}))})));S.push(_)}));if(S.length){var T=[];S.forEach((function(e){T.push(\"@\".concat(e.triggerName,\" has failed due to:\\n\")),e.errors.forEach((function(e){return T.push(\"- \".concat(e,\"\\n\"))}))})),M.forEach((function(e){return e.destroy()})),this.reportError(T)}var x=new Map,D=new Map;o.forEach((function(e){var t=e.element;r.has(t)&&(D.set(t,t),n._beforeAnimationBuild(e.player.namespaceId,e.instruction,x))})),i.forEach((function(e){var t=e.element;n._getPreviousPlayers(t,!1,e.namespaceId,e.triggerName,null).forEach((function(e){Sv(x,t,[]).push(e),e.destroy()}))}));var O=_.filter((function(e){return ey(e,l,u)})),Y=new Map;Jg(Y,this.driver,g,u,\"*\").forEach((function(e){ey(e,l,u)&&O.push(e)}));var E=new Map;f.forEach((function(e,t){Jg(E,n.driver,new Set(e),l,\"!\")})),O.forEach((function(e){var t=Y.get(e),n=E.get(e);Y.set(e,Object.assign(Object.assign({},t),n))}));var I=[],A=[],P={};o.forEach((function(e){var t=e.element,o=e.player,s=e.instruction;if(r.has(t)){if(c.has(t))return o.onDestroy((function(){return $v(t,s.toStyles)})),o.disabled=!0,o.overrideTotalTime(s.totalTime),void i.push(o);var l=P;if(D.size>1){for(var u=t,d=[];u=u.parentNode;){var h=D.get(u);if(h){l=h;break}d.push(u)}d.forEach((function(e){return D.set(e,l)}))}var f=n._buildAnimation(o.namespaceId,s,x,a,E,Y);if(o.setRealPlayer(f),l===P)I.push(o);else{var m=n.playersByElement.get(l);m&&m.length&&(o.parentPlayer=bv(m)),i.push(o)}}else Jv(t,s.fromStyles),o.onDestroy((function(){return $v(t,s.toStyles)})),A.push(o),c.has(t)&&i.push(o)})),A.forEach((function(e){var t=a.get(e.element);if(t&&t.length){var n=bv(t);e.setRealPlayer(n)}})),i.forEach((function(e){e.parentPlayer?e.syncPlayerEvents(e.parentPlayer):e.destroy()}));for(var j=0;j<_.length;j++){var R=_[j],H=R.__ng_removed;if(Qg(R,\"ng-leave\"),!H||!H.hasAnimation){var F=[];if(s.size){var N=s.get(R);N&&N.length&&F.push.apply(F,_toConsumableArray(N));for(var z=this.driver.query(R,\".ng-animating\",!0),V=0;V0?this.driver.animate(e.element,t,e.duration,e.delay,e.easing,n):new vv(e.duration,e.delay)}},{key:\"queuedPlayers\",get:function(){var e=[];return this._namespaceList.forEach((function(t){t.players.forEach((function(t){t.queued&&e.push(t)}))})),e}}]),e}(),qg=function(){function e(t,n,r){_classCallCheck(this,e),this.namespaceId=t,this.triggerName=n,this.element=r,this._player=new vv,this._containsRealPlayer=!1,this._queuedCallbacks={},this.destroyed=!1,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}return _createClass(e,[{key:\"setRealPlayer\",value:function(e){var t=this;this._containsRealPlayer||(this._player=e,Object.keys(this._queuedCallbacks).forEach((function(n){t._queuedCallbacks[n].forEach((function(t){return wv(e,n,void 0,t)}))})),this._queuedCallbacks={},this._containsRealPlayer=!0,this.overrideTotalTime(e.totalTime),this.queued=!1)}},{key:\"getRealPlayer\",value:function(){return this._player}},{key:\"overrideTotalTime\",value:function(e){this.totalTime=e}},{key:\"syncPlayerEvents\",value:function(e){var t=this,n=this._player;n.triggerCallback&&e.onStart((function(){return n.triggerCallback(\"start\")})),e.onDone((function(){return t.finish()})),e.onDestroy((function(){return t.destroy()}))}},{key:\"_queueEvent\",value:function(e,t){Sv(this._queuedCallbacks,e,[]).push(t)}},{key:\"onDone\",value:function(e){this.queued&&this._queueEvent(\"done\",e),this._player.onDone(e)}},{key:\"onStart\",value:function(e){this.queued&&this._queueEvent(\"start\",e),this._player.onStart(e)}},{key:\"onDestroy\",value:function(e){this.queued&&this._queueEvent(\"destroy\",e),this._player.onDestroy(e)}},{key:\"init\",value:function(){this._player.init()}},{key:\"hasStarted\",value:function(){return!this.queued&&this._player.hasStarted()}},{key:\"play\",value:function(){!this.queued&&this._player.play()}},{key:\"pause\",value:function(){!this.queued&&this._player.pause()}},{key:\"restart\",value:function(){!this.queued&&this._player.restart()}},{key:\"finish\",value:function(){this._player.finish()}},{key:\"destroy\",value:function(){this.destroyed=!0,this._player.destroy()}},{key:\"reset\",value:function(){!this.queued&&this._player.reset()}},{key:\"setPosition\",value:function(e){this.queued||this._player.setPosition(e)}},{key:\"getPosition\",value:function(){return this.queued?0:this._player.getPosition()}},{key:\"triggerCallback\",value:function(e){var t=this._player;t.triggerCallback&&t.triggerCallback(e)}}]),e}();function Gg(e){return e&&1===e.nodeType}function $g(e,t){var n=e.style.display;return e.style.display=null!=t?t:\"none\",n}function Jg(e,t,n,r,i){var a=[];n.forEach((function(e){return a.push($g(e))}));var o=[];r.forEach((function(n,r){var a={};n.forEach((function(e){var n=a[e]=t.computeStyle(r,e,i);n&&0!=n.length||(r.__ng_removed=zg,o.push(r))})),e.set(r,a)}));var s=0;return n.forEach((function(e){return $g(e,a[s++])})),o}function Kg(e,t){var n=new Map;if(e.forEach((function(e){return n.set(e,[])})),0==t.length)return n;var r=new Set(t),i=new Map;return t.forEach((function(e){var t=function e(t){if(!t)return 1;var a=i.get(t);if(a)return a;var o=t.parentNode;return a=n.has(o)?o:r.has(o)?1:e(o),i.set(t,a),a}(e);1!==t&&n.get(t).push(e)})),n}function Zg(e,t){if(e.classList)e.classList.add(t);else{var n=e.$$classes;n||(n=e.$$classes={}),n[t]=!0}}function Qg(e,t){if(e.classList)e.classList.remove(t);else{var n=e.$$classes;n&&delete n[t]}}function Xg(e,t,n){bv(n).onDone((function(){return e.processLeaveNode(t)}))}function ey(e,t,n){var r=n.get(e);if(!r)return!1;var i=t.get(e);return i?r.forEach((function(e){return i.add(e)})):t.set(e,r),n.delete(e),!0}var ty=function(){function e(t,n,r){var i=this;_classCallCheck(this,e),this.bodyNode=t,this._driver=n,this._triggerCache={},this.onRemovalComplete=function(e,t){},this._transitionEngine=new Bg(t,n,r),this._timelineEngine=new Hg(t,n,r),this._transitionEngine.onRemovalComplete=function(e,t){return i.onRemovalComplete(e,t)}}return _createClass(e,[{key:\"registerTrigger\",value:function(e,t,n,r,i){var a=e+\"-\"+r,o=this._triggerCache[a];if(!o){var s=[],l=dg(this._driver,i,s);if(s.length)throw new Error('The animation trigger \"'.concat(r,'\" has failed to build due to the following errors:\\n - ').concat(s.join(\"\\n - \")));o=function(e,t){return new Pg(e,t)}(r,l),this._triggerCache[a]=o}this._transitionEngine.registerTrigger(t,r,o)}},{key:\"register\",value:function(e,t){this._transitionEngine.register(e,t)}},{key:\"destroy\",value:function(e,t){this._transitionEngine.destroy(e,t)}},{key:\"onInsert\",value:function(e,t,n,r){this._transitionEngine.insertNode(e,t,n,r)}},{key:\"onRemove\",value:function(e,t,n,r){this._transitionEngine.removeNode(e,t,r||!1,n)}},{key:\"disableAnimations\",value:function(e,t){this._transitionEngine.markElementAsDisabled(e,t)}},{key:\"process\",value:function(e,t,n,r){if(\"@\"==n.charAt(0)){var i=_slicedToArray(Lv(n),2),a=i[0],o=i[1];this._timelineEngine.command(a,t,o,r)}else this._transitionEngine.trigger(e,t,n,r)}},{key:\"listen\",value:function(e,t,n,r,i){if(\"@\"==n.charAt(0)){var a=_slicedToArray(Lv(n),2),o=a[0],s=a[1];return this._timelineEngine.listen(o,t,s,i)}return this._transitionEngine.listen(e,t,n,r,i)}},{key:\"flush\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:-1;this._transitionEngine.flush(e)}},{key:\"whenRenderingDone\",value:function(){return this._transitionEngine.whenRenderingDone()}},{key:\"players\",get:function(){return this._transitionEngine.players.concat(this._timelineEngine.players)}}]),e}();function ny(e,t){var n=null,r=null;return Array.isArray(t)&&t.length?(n=iy(t[0]),t.length>1&&(r=iy(t[t.length-1]))):t&&(n=iy(t)),n||r?new ry(e,n,r):null}var ry=function(){var e=function(){function e(t,n,r){_classCallCheck(this,e),this._element=t,this._startStyles=n,this._endStyles=r,this._state=0;var i=e.initialStylesByElement.get(t);i||e.initialStylesByElement.set(t,i={}),this._initialStyles=i}return _createClass(e,[{key:\"start\",value:function(){this._state<1&&(this._startStyles&&$v(this._element,this._startStyles,this._initialStyles),this._state=1)}},{key:\"finish\",value:function(){this.start(),this._state<2&&($v(this._element,this._initialStyles),this._endStyles&&($v(this._element,this._endStyles),this._endStyles=null),this._state=1)}},{key:\"destroy\",value:function(){this.finish(),this._state<3&&(e.initialStylesByElement.delete(this._element),this._startStyles&&(Jv(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(Jv(this._element,this._endStyles),this._endStyles=null),$v(this._element,this._initialStyles),this._state=3)}}]),e}();return e.initialStylesByElement=new WeakMap,e}();function iy(e){for(var t=null,n=Object.keys(e),r=0;r=this._delay&&n>=this._duration&&this.finish()}},{key:\"finish\",value:function(){this._finished||(this._finished=!0,this._onDoneFn(),cy(this._element,this._eventFn,!0))}},{key:\"destroy\",value:function(){var e,t,n,r;this._destroyed||(this._destroyed=!0,this.finish(),e=this._element,t=this._name,n=hy(e,\"\").split(\",\"),(r=uy(n,t))>=0&&(n.splice(r,1),dy(e,\"\",n.join(\",\"))))}}]),e}();function sy(e,t,n){dy(e,\"PlayState\",n,ly(e,t))}function ly(e,t){var n=hy(e,\"\");return n.indexOf(\",\")>0?uy(n.split(\",\"),t):uy([n],t)}function uy(e,t){for(var n=0;n=0)return n;return-1}function cy(e,t,n){n?e.removeEventListener(\"animationend\",t):e.addEventListener(\"animationend\",t)}function dy(e,t,n,r){var i=\"animation\"+t;if(null!=r){var a=e.style[i];if(a.length){var o=a.split(\",\");o[r]=n,n=o.join(\",\")}}e.style[i]=n}function hy(e,t){return e.style[\"animation\"+t]}var fy=function(){function e(t,n,r,i,a,o,s,l){_classCallCheck(this,e),this.element=t,this.keyframes=n,this.animationName=r,this._duration=i,this._delay=a,this._finalStyles=s,this._specialStyles=l,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this.currentSnapshot={},this._state=0,this.easing=o||\"linear\",this.totalTime=i+a,this._buildStyler()}return _createClass(e,[{key:\"onStart\",value:function(e){this._onStartFns.push(e)}},{key:\"onDone\",value:function(e){this._onDoneFns.push(e)}},{key:\"onDestroy\",value:function(e){this._onDestroyFns.push(e)}},{key:\"destroy\",value:function(){this.init(),this._state>=4||(this._state=4,this._styler.destroy(),this._flushStartFns(),this._flushDoneFns(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach((function(e){return e()})),this._onDestroyFns=[])}},{key:\"_flushDoneFns\",value:function(){this._onDoneFns.forEach((function(e){return e()})),this._onDoneFns=[]}},{key:\"_flushStartFns\",value:function(){this._onStartFns.forEach((function(e){return e()})),this._onStartFns=[]}},{key:\"finish\",value:function(){this.init(),this._state>=3||(this._state=3,this._styler.finish(),this._flushStartFns(),this._specialStyles&&this._specialStyles.finish(),this._flushDoneFns())}},{key:\"setPosition\",value:function(e){this._styler.setPosition(e)}},{key:\"getPosition\",value:function(){return this._styler.getPosition()}},{key:\"hasStarted\",value:function(){return this._state>=2}},{key:\"init\",value:function(){this._state>=1||(this._state=1,this._styler.apply(),this._delay&&this._styler.pause())}},{key:\"play\",value:function(){this.init(),this.hasStarted()||(this._flushStartFns(),this._state=2,this._specialStyles&&this._specialStyles.start()),this._styler.resume()}},{key:\"pause\",value:function(){this.init(),this._styler.pause()}},{key:\"restart\",value:function(){this.reset(),this.play()}},{key:\"reset\",value:function(){this._styler.destroy(),this._buildStyler(),this._styler.apply()}},{key:\"_buildStyler\",value:function(){var e=this;this._styler=new oy(this.element,this.animationName,this._duration,this._delay,this.easing,\"forwards\",(function(){return e.finish()}))}},{key:\"triggerCallback\",value:function(e){var t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach((function(e){return e()})),t.length=0}},{key:\"beforeDestroy\",value:function(){var e=this;this.init();var t={};if(this.hasStarted()){var n=this._state>=3;Object.keys(this._finalStyles).forEach((function(r){\"offset\"!=r&&(t[r]=n?e._finalStyles[r]:og(e.element,r))}))}this.currentSnapshot=t}}]),e}(),my=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this)).element=e,i._startingStyles={},i.__initialized=!1,i._styles=Rv(r),i}return _createClass(n,[{key:\"init\",value:function(){var e=this;!this.__initialized&&this._startingStyles&&(this.__initialized=!0,Object.keys(this._styles).forEach((function(t){e._startingStyles[t]=e.element.style[t]})),_get(_getPrototypeOf(n.prototype),\"init\",this).call(this))}},{key:\"play\",value:function(){var e=this;this._startingStyles&&(this.init(),Object.keys(this._styles).forEach((function(t){return e.element.style.setProperty(t,e._styles[t])})),_get(_getPrototypeOf(n.prototype),\"play\",this).call(this))}},{key:\"destroy\",value:function(){var e=this;this._startingStyles&&(Object.keys(this._startingStyles).forEach((function(t){var n=e._startingStyles[t];n?e.element.style.setProperty(t,n):e.element.style.removeProperty(t)})),this._startingStyles=null,_get(_getPrototypeOf(n.prototype),\"destroy\",this).call(this))}}]),n}(vv),py=function(){function e(){_classCallCheck(this,e),this._count=0,this._head=document.querySelector(\"head\"),this._warningIssued=!1}return _createClass(e,[{key:\"validateStyleProperty\",value:function(e){return Iv(e)}},{key:\"matchesElement\",value:function(e,t){return Av(e,t)}},{key:\"containsElement\",value:function(e,t){return Pv(e,t)}},{key:\"query\",value:function(e,t,n){return jv(e,t,n)}},{key:\"computeStyle\",value:function(e,t,n){return window.getComputedStyle(e)[t]}},{key:\"buildKeyframeElement\",value:function(e,t,n){n=n.map((function(e){return Rv(e)}));var r=\"@keyframes \".concat(t,\" {\\n\"),i=\"\";n.forEach((function(e){i=\" \";var t=parseFloat(e.offset);r+=\"\".concat(i).concat(100*t,\"% {\\n\"),i+=\" \",Object.keys(e).forEach((function(t){var n=e[t];switch(t){case\"offset\":return;case\"easing\":return void(n&&(r+=\"\".concat(i,\"animation-timing-function: \").concat(n,\";\\n\")));default:return void(r+=\"\".concat(i).concat(t,\": \").concat(n,\";\\n\"))}})),r+=\"\".concat(i,\"}\\n\")})),r+=\"}\\n\";var a=document.createElement(\"style\");return a.innerHTML=r,a}},{key:\"animate\",value:function(e,t,n,r,i){var a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:[],o=arguments.length>6?arguments[6]:void 0;o&&this._notifyFaultyScrubber();var s=a.filter((function(e){return e instanceof fy})),l={};rg(n,r)&&s.forEach((function(e){var t=e.currentSnapshot;Object.keys(t).forEach((function(e){return l[e]=t[e]}))}));var u=function(e){var t={};return e&&(Array.isArray(e)?e:[e]).forEach((function(e){Object.keys(e).forEach((function(n){\"offset\"!=n&&\"easing\"!=n&&(t[n]=e[n])}))})),t}(t=ig(e,t,l));if(0==n)return new my(e,u);var c=\"gen_css_kf_\".concat(this._count++),d=this.buildKeyframeElement(e,c,t);document.querySelector(\"head\").appendChild(d);var h=ny(e,t),f=new fy(e,t,c,n,r,i,u,h);return f.onDestroy((function(){var e;(e=d).parentNode.removeChild(e)})),f}},{key:\"_notifyFaultyScrubber\",value:function(){this._warningIssued||(console.warn(\"@angular/animations: please load the web-animations.js polyfill to allow programmatic access...\\n\",\" visit http://bit.ly/IWukam to learn more about using the web-animation-js polyfill.\"),this._warningIssued=!0)}}]),e}(),_y=function(){function e(t,n,r,i){_classCallCheck(this,e),this.element=t,this.keyframes=n,this.options=r,this._specialStyles=i,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._initialized=!1,this._finished=!1,this._started=!1,this._destroyed=!1,this.time=0,this.parentPlayer=null,this.currentSnapshot={},this._duration=r.duration,this._delay=r.delay||0,this.time=this._duration+this._delay}return _createClass(e,[{key:\"_onFinish\",value:function(){this._finished||(this._finished=!0,this._onDoneFns.forEach((function(e){return e()})),this._onDoneFns=[])}},{key:\"init\",value:function(){this._buildPlayer(),this._preparePlayerBeforeStart()}},{key:\"_buildPlayer\",value:function(){var e=this;if(!this._initialized){this._initialized=!0;var t=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,t,this.options),this._finalKeyframe=t.length?t[t.length-1]:{},this.domPlayer.addEventListener(\"finish\",(function(){return e._onFinish()}))}}},{key:\"_preparePlayerBeforeStart\",value:function(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}},{key:\"_triggerWebAnimation\",value:function(e,t,n){return e.animate(t,n)}},{key:\"onStart\",value:function(e){this._onStartFns.push(e)}},{key:\"onDone\",value:function(e){this._onDoneFns.push(e)}},{key:\"onDestroy\",value:function(e){this._onDestroyFns.push(e)}},{key:\"play\",value:function(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach((function(e){return e()})),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),this.domPlayer.play()}},{key:\"pause\",value:function(){this.init(),this.domPlayer.pause()}},{key:\"finish\",value:function(){this.init(),this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish()}},{key:\"reset\",value:function(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1}},{key:\"_resetDomPlayerState\",value:function(){this.domPlayer&&this.domPlayer.cancel()}},{key:\"restart\",value:function(){this.reset(),this.play()}},{key:\"hasStarted\",value:function(){return this._started}},{key:\"destroy\",value:function(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach((function(e){return e()})),this._onDestroyFns=[])}},{key:\"setPosition\",value:function(e){this.domPlayer.currentTime=e*this.time}},{key:\"getPosition\",value:function(){return this.domPlayer.currentTime/this.time}},{key:\"beforeDestroy\",value:function(){var e=this,t={};this.hasStarted()&&Object.keys(this._finalKeyframe).forEach((function(n){\"offset\"!=n&&(t[n]=e._finished?e._finalKeyframe[n]:og(e.element,n))})),this.currentSnapshot=t}},{key:\"triggerCallback\",value:function(e){var t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach((function(e){return e()})),t.length=0}},{key:\"totalTime\",get:function(){return this._delay+this._duration}}]),e}(),vy=function(){function e(){_classCallCheck(this,e),this._isNativeImpl=/\\{\\s*\\[native\\s+code\\]\\s*\\}/.test(gy().toString()),this._cssKeyframesDriver=new py}return _createClass(e,[{key:\"validateStyleProperty\",value:function(e){return Iv(e)}},{key:\"matchesElement\",value:function(e,t){return Av(e,t)}},{key:\"containsElement\",value:function(e,t){return Pv(e,t)}},{key:\"query\",value:function(e,t,n){return jv(e,t,n)}},{key:\"computeStyle\",value:function(e,t,n){return window.getComputedStyle(e)[t]}},{key:\"overrideWebAnimationsSupport\",value:function(e){this._isNativeImpl=e}},{key:\"animate\",value:function(e,t,n,r,i){var a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:[],o=arguments.length>6?arguments[6]:void 0;if(!o&&!this._isNativeImpl)return this._cssKeyframesDriver.animate(e,t,n,r,i,a);var s={duration:n,delay:r,fill:0==r?\"both\":\"forwards\"};i&&(s.easing=i);var l={},u=a.filter((function(e){return e instanceof _y}));rg(n,r)&&u.forEach((function(e){var t=e.currentSnapshot;Object.keys(t).forEach((function(e){return l[e]=t[e]}))}));var c=ny(e,t=ig(e,t=t.map((function(e){return Bv(e,!1)})),l));return new _y(e,t,s,c)}}]),e}();function gy(){return\"undefined\"!=typeof window&&void 0!==window.document&&Element.prototype.animate||{}}var yy,by=((yy=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this))._nextAnimationId=0,i._renderer=e.createRenderer(r.body,{id:\"0\",encapsulation:_t.None,styles:[],data:{animation:[]}}),i}return _createClass(n,[{key:\"build\",value:function(e){var t=this._nextAnimationId.toString();this._nextAnimationId++;var n=Array.isArray(e)?dv(e):e;return Cy(this._renderer,null,t,\"register\",[n]),new ky(t,this._renderer)}}]),n}(lv)).\\u0275fac=function(e){return new(e||yy)(et(el),et(Wc))},yy.\\u0275prov=_e({token:yy,factory:yy.\\u0275fac}),yy),ky=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this))._id=e,i._renderer=r,i}return _createClass(n,[{key:\"create\",value:function(e,t){return new wy(this._id,e,t||{},this._renderer)}}]),n}(function(){return function e(){_classCallCheck(this,e)}}()),wy=function(){function e(t,n,r,i){_classCallCheck(this,e),this.id=t,this.element=n,this._renderer=i,this.parentPlayer=null,this._started=!1,this.totalTime=0,this._command(\"create\",r)}return _createClass(e,[{key:\"_listen\",value:function(e,t){return this._renderer.listen(this.element,\"@@\".concat(this.id,\":\").concat(e),t)}},{key:\"_command\",value:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r=0&&e1&&void 0!==arguments[1]?arguments[1]:0;return(function(e){_inherits(r,e);var n=_createSuper(r);function r(){var e;_classCallCheck(this,r);for(var i=arguments.length,a=new Array(i),o=0;o2&&void 0!==arguments[2]?arguments[2]:{},i=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),a=Object.assign(Object.assign({},rb),r.animation);r.centered&&(e=i.left+i.width/2,t=i.top+i.height/2);var o=r.radius||function(e,t,n){var r=Math.max(Math.abs(e-n.left),Math.abs(e-n.right)),i=Math.max(Math.abs(t-n.top),Math.abs(t-n.bottom));return Math.sqrt(r*r+i*i)}(e,t,i),s=e-i.left,l=t-i.top,u=a.enterDuration,c=document.createElement(\"div\");c.classList.add(\"mat-ripple-element\"),c.style.left=\"\".concat(s-o,\"px\"),c.style.top=\"\".concat(l-o,\"px\"),c.style.height=\"\".concat(2*o,\"px\"),c.style.width=\"\".concat(2*o,\"px\"),null!=r.color&&(c.style.backgroundColor=r.color),c.style.transitionDuration=\"\".concat(u,\"ms\"),this._containerElement.appendChild(c),window.getComputedStyle(c).getPropertyValue(\"opacity\"),c.style.transform=\"scale(1)\";var d=new nb(this,c,r);return d.state=0,this._activeRipples.add(d),r.persistent||(this._mostRecentTransientRipple=d),this._runTimeoutOutsideZone((function(){var e=d===n._mostRecentTransientRipple;d.state=1,r.persistent||e&&n._isPointerDown||d.fadeOut()}),u),d}},{key:\"fadeOutRipple\",value:function(e){var t=this._activeRipples.delete(e);if(e===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),this._activeRipples.size||(this._containerRect=null),t){var n=e.element,r=Object.assign(Object.assign({},rb),e.config.animation);n.style.transitionDuration=\"\".concat(r.exitDuration,\"ms\"),n.style.opacity=\"0\",e.state=2,this._runTimeoutOutsideZone((function(){e.state=3,n.parentNode.removeChild(n)}),r.exitDuration)}}},{key:\"fadeOutAll\",value:function(){this._activeRipples.forEach((function(e){return e.fadeOut()}))}},{key:\"setupTriggerEvents\",value:function(e){var t=this,n=gp(e);n&&n!==this._triggerElement&&(this._removeTriggerEvents(),this._ngZone.runOutsideAngular((function(){t._triggerEvents.forEach((function(e,t){n.addEventListener(t,e,ib)}))})),this._triggerElement=n)}},{key:\"_runTimeoutOutsideZone\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;this._ngZone.runOutsideAngular((function(){return setTimeout(e,t)}))}},{key:\"_removeTriggerEvents\",value:function(){var e=this;this._triggerElement&&this._triggerEvents.forEach((function(t,n){e._triggerElement.removeEventListener(n,t,ib)}))}}]),e}(),ob=new Be(\"mat-ripple-global-options\"),sb=((Zy=function(){function e(t,n,r,i,a){_classCallCheck(this,e),this._elementRef=t,this.radius=0,this._disabled=!1,this._isInitialized=!1,this._globalOptions=i||{},this._rippleRenderer=new ab(this,n,t,r),\"NoopAnimations\"===a&&(this._globalOptions.animation={enterDuration:0,exitDuration:0})}return _createClass(e,[{key:\"ngOnInit\",value:function(){this._isInitialized=!0,this._setupTriggerEventsIfEnabled()}},{key:\"ngOnDestroy\",value:function(){this._rippleRenderer._removeTriggerEvents()}},{key:\"fadeOutAll\",value:function(){this._rippleRenderer.fadeOutAll()}},{key:\"_setupTriggerEventsIfEnabled\",value:function(){!this.disabled&&this._isInitialized&&this._rippleRenderer.setupTriggerEvents(this.trigger)}},{key:\"launch\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2?arguments[2]:void 0;return\"number\"==typeof e?this._rippleRenderer.fadeInRipple(e,t,Object.assign(Object.assign({},this.rippleConfig),n)):this._rippleRenderer.fadeInRipple(0,0,Object.assign(Object.assign({},this.rippleConfig),e))}},{key:\"disabled\",get:function(){return this._disabled},set:function(e){this._disabled=e,this._setupTriggerEventsIfEnabled()}},{key:\"trigger\",get:function(){return this._trigger||this._elementRef.nativeElement},set:function(e){this._trigger=e,this._setupTriggerEventsIfEnabled()}},{key:\"rippleConfig\",get:function(){return{centered:this.centered,radius:this.radius,color:this.color,animation:Object.assign(Object.assign({},this._globalOptions.animation),this.animation),terminateOnPointerUp:this._globalOptions.terminateOnPointerUp}}},{key:\"rippleDisabled\",get:function(){return this.disabled||!!this._globalOptions.disabled}}]),e}()).\\u0275fac=function(e){return new(e||Zy)(Io(Qs),Io(cc),Io(Cp),Io(ob,8),Io(Yy,8))},Zy.\\u0275dir=Lt({type:Zy,selectors:[[\"\",\"mat-ripple\",\"\"],[\"\",\"matRipple\",\"\"]],hostAttrs:[1,\"mat-ripple\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"mat-ripple-unbounded\",t.unbounded)},inputs:{radius:[\"matRippleRadius\",\"radius\"],disabled:[\"matRippleDisabled\",\"disabled\"],trigger:[\"matRippleTrigger\",\"trigger\"],color:[\"matRippleColor\",\"color\"],unbounded:[\"matRippleUnbounded\",\"unbounded\"],centered:[\"matRippleCentered\",\"centered\"],animation:[\"matRippleAnimation\",\"animation\"]},exportAs:[\"matRipple\"]}),Zy),lb=((Ky=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Ky}),Ky.\\u0275inj=ve({factory:function(e){return new(e||Ky)},imports:[[zy,Mp],zy]}),Ky),ub=((Jy=function e(t){_classCallCheck(this,e),this._animationMode=t,this.state=\"unchecked\",this.disabled=!1}).\\u0275fac=function(e){return new(e||Jy)(Io(Yy,8))},Jy.\\u0275cmp=bt({type:Jy,selectors:[[\"mat-pseudo-checkbox\"]],hostAttrs:[1,\"mat-pseudo-checkbox\"],hostVars:8,hostBindings:function(e,t){2&e&&fs(\"mat-pseudo-checkbox-indeterminate\",\"indeterminate\"===t.state)(\"mat-pseudo-checkbox-checked\",\"checked\"===t.state)(\"mat-pseudo-checkbox-disabled\",t.disabled)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode)},inputs:{state:\"state\",disabled:\"disabled\"},decls:0,vars:0,template:function(e,t){},styles:['.mat-pseudo-checkbox{width:16px;height:16px;border:2px solid;border-radius:2px;cursor:pointer;display:inline-block;vertical-align:middle;box-sizing:border-box;position:relative;flex-shrink:0;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1),background-color 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox::after{position:absolute;opacity:0;content:\"\";border-bottom:2px solid currentColor;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox.mat-pseudo-checkbox-indeterminate{border-color:transparent}._mat-animation-noopable.mat-pseudo-checkbox{transition:none;animation:none}._mat-animation-noopable.mat-pseudo-checkbox::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{top:5px;left:1px;width:10px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{top:2.4px;left:1px;width:8px;height:3px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}\\n'],encapsulation:2,changeDetection:0}),Jy),cb=(($y=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:$y}),$y.\\u0275inj=ve({factory:function(e){return new(e||$y)}}),$y),db=Vy((function e(){_classCallCheck(this,e)})),hb=0,fb=((Qy=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e;return _classCallCheck(this,n),(e=t.apply(this,arguments))._labelId=\"mat-optgroup-label-\".concat(hb++),e}return n}(db)).\\u0275fac=function(e){return mb(e||Qy)},Qy.\\u0275cmp=bt({type:Qy,selectors:[[\"mat-optgroup\"]],hostAttrs:[\"role\",\"group\",1,\"mat-optgroup\"],hostVars:4,hostBindings:function(e,t){2&e&&(Do(\"aria-disabled\",t.disabled.toString())(\"aria-labelledby\",t._labelId),fs(\"mat-optgroup-disabled\",t.disabled))},inputs:{disabled:\"disabled\",label:\"label\"},exportAs:[\"matOptgroup\"],features:[Es],ngContentSelectors:Py,decls:4,vars:2,consts:[[1,\"mat-optgroup-label\",3,\"id\"]],template:function(e,t){1&e&&(Xo(Ay),Ho(0,\"label\",0),Ls(1),ns(2),Fo(),ns(3,1)),2&e&&(jo(\"id\",t._labelId),bi(1),xs(\"\",t.label,\" \"))},styles:[\".mat-optgroup-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup-label[disabled]{cursor:default}[dir=rtl] .mat-optgroup-label{text-align:right}.mat-optgroup-label .mat-icon{margin-right:16px;vertical-align:middle}.mat-optgroup-label .mat-icon svg{vertical-align:top}[dir=rtl] .mat-optgroup-label .mat-icon{margin-left:16px;margin-right:0}\\n\"],encapsulation:2,changeDetection:0}),Qy),mb=cr(fb),pb=0,_b=function e(t){var n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];_classCallCheck(this,e),this.source=t,this.isUserInput=n},vb=new Be(\"MAT_OPTION_PARENT_COMPONENT\"),gb=((Xy=function(){function e(t,n,r,i){_classCallCheck(this,e),this._element=t,this._changeDetectorRef=n,this._parent=r,this.group=i,this._selected=!1,this._active=!1,this._disabled=!1,this._mostRecentViewValue=\"\",this.id=\"mat-option-\".concat(pb++),this.onSelectionChange=new bu,this._stateChanges=new x}return _createClass(e,[{key:\"select\",value:function(){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}},{key:\"deselect\",value:function(){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}},{key:\"focus\",value:function(e,t){var n=this._getHostElement();\"function\"==typeof n.focus&&n.focus(t)}},{key:\"setActiveStyles\",value:function(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}},{key:\"setInactiveStyles\",value:function(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}},{key:\"getLabel\",value:function(){return this.viewValue}},{key:\"_handleKeydown\",value:function(e){13!==e.keyCode&&32!==e.keyCode||Jm(e)||(this._selectViaInteraction(),e.preventDefault())}},{key:\"_selectViaInteraction\",value:function(){this.disabled||(this._selected=!this.multiple||!this._selected,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent(!0))}},{key:\"_getAriaSelected\",value:function(){return this.selected||!this.multiple&&null}},{key:\"_getTabIndex\",value:function(){return this.disabled?\"-1\":\"0\"}},{key:\"_getHostElement\",value:function(){return this._element.nativeElement}},{key:\"ngAfterViewChecked\",value:function(){if(this._selected){var e=this.viewValue;e!==this._mostRecentViewValue&&(this._mostRecentViewValue=e,this._stateChanges.next())}}},{key:\"ngOnDestroy\",value:function(){this._stateChanges.complete()}},{key:\"_emitSelectionChangeEvent\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.onSelectionChange.emit(new _b(this,e))}},{key:\"multiple\",get:function(){return this._parent&&this._parent.multiple}},{key:\"selected\",get:function(){return this._selected}},{key:\"disabled\",get:function(){return this.group&&this.group.disabled||this._disabled},set:function(e){this._disabled=mp(e)}},{key:\"disableRipple\",get:function(){return this._parent&&this._parent.disableRipple}},{key:\"active\",get:function(){return this._active}},{key:\"viewValue\",get:function(){return(this._getHostElement().textContent||\"\").trim()}}]),e}()).\\u0275fac=function(e){return new(e||Xy)(Io(Qs),Io(eo),Io(vb,8),Io(fb,8))},Xy.\\u0275cmp=bt({type:Xy,selectors:[[\"mat-option\"]],hostAttrs:[\"role\",\"option\",1,\"mat-option\",\"mat-focus-indicator\"],hostVars:12,hostBindings:function(e,t){1&e&&qo(\"click\",(function(){return t._selectViaInteraction()}))(\"keydown\",(function(e){return t._handleKeydown(e)})),2&e&&(Ds(\"id\",t.id),Do(\"tabindex\",t._getTabIndex())(\"aria-selected\",t._getAriaSelected())(\"aria-disabled\",t.disabled.toString()),fs(\"mat-selected\",t.selected)(\"mat-option-multiple\",t.multiple)(\"mat-active\",t.active)(\"mat-option-disabled\",t.disabled))},inputs:{id:\"id\",disabled:\"disabled\",value:\"value\"},outputs:{onSelectionChange:\"onSelectionChange\"},exportAs:[\"matOption\"],ngContentSelectors:Hy,decls:4,vars:3,consts:[[\"class\",\"mat-option-pseudo-checkbox\",3,\"state\",\"disabled\",4,\"ngIf\"],[1,\"mat-option-text\"],[\"mat-ripple\",\"\",1,\"mat-option-ripple\",3,\"matRippleTrigger\",\"matRippleDisabled\"],[1,\"mat-option-pseudo-checkbox\",3,\"state\",\"disabled\"]],template:function(e,t){1&e&&(Xo(),Yo(0,jy,1,2,\"mat-pseudo-checkbox\",0),Ho(1,\"span\",1),ns(2),Fo(),No(3,\"div\",2)),2&e&&(jo(\"ngIf\",t.multiple),bi(3),jo(\"matRippleTrigger\",t._getHostElement())(\"matRippleDisabled\",t.disabled||t.disableRipple))},directives:[Sd,sb,ub],styles:[\".mat-option{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative;cursor:pointer;outline:none;display:flex;flex-direction:row;max-width:100%;box-sizing:border-box;align-items:center;-webkit-tap-highlight-color:transparent}.mat-option[disabled]{cursor:default}[dir=rtl] .mat-option{text-align:right}.mat-option .mat-icon{margin-right:16px;vertical-align:middle}.mat-option .mat-icon svg{vertical-align:top}[dir=rtl] .mat-option .mat-icon{margin-left:16px;margin-right:0}.mat-option[aria-disabled=true]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:32px}[dir=rtl] .mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:16px;padding-right:32px}.cdk-high-contrast-active .mat-option{margin:0 1px}.cdk-high-contrast-active .mat-option.mat-active{border:solid 1px currentColor;margin:0}.mat-option-text{display:inline-block;flex-grow:1;overflow:hidden;text-overflow:ellipsis}.mat-option .mat-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.cdk-high-contrast-active .mat-option .mat-option-ripple{opacity:.5}.mat-option-pseudo-checkbox{margin-right:8px}[dir=rtl] .mat-option-pseudo-checkbox{margin-left:8px;margin-right:0}\\n\"],encapsulation:2,changeDetection:0}),Xy);function yb(e,t,n){if(n.length){for(var r=t.toArray(),i=n.toArray(),a=0,o=0;o0&&void 0!==arguments[0]?arguments[0]:\"program\",t=arguments.length>1?arguments[1]:void 0;this._focusMonitor.focusVia(this._getHostElement(),e,t)}},{key:\"_getHostElement\",value:function(){return this._elementRef.nativeElement}},{key:\"_isRippleDisabled\",value:function(){return this.disableRipple||this.disabled}},{key:\"_hasHostAttributes\",value:function(){for(var e=this,t=arguments.length,n=new Array(t),r=0;r*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}\\n\"],encapsulation:2,changeDetection:0}),Cb),Vb=((wb=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){return _classCallCheck(this,n),t.call(this,r,e,i)}return _createClass(n,[{key:\"_haltDisabledEvents\",value:function(e){this.disabled&&(e.preventDefault(),e.stopImmediatePropagation())}}]),n}(zb)).\\u0275fac=function(e){return new(e||wb)(Io(t_),Io(Qs),Io(Yy,8))},wb.\\u0275cmp=bt({type:wb,selectors:[[\"a\",\"mat-button\",\"\"],[\"a\",\"mat-raised-button\",\"\"],[\"a\",\"mat-icon-button\",\"\"],[\"a\",\"mat-fab\",\"\"],[\"a\",\"mat-mini-fab\",\"\"],[\"a\",\"mat-stroked-button\",\"\"],[\"a\",\"mat-flat-button\",\"\"]],hostAttrs:[1,\"mat-focus-indicator\"],hostVars:5,hostBindings:function(e,t){1&e&&qo(\"click\",(function(e){return t._haltDisabledEvents(e)})),2&e&&(Do(\"tabindex\",t.disabled?-1:t.tabIndex||0)(\"disabled\",t.disabled||null)(\"aria-disabled\",t.disabled.toString()),fs(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\"},exportAs:[\"matButton\",\"matAnchor\"],features:[Es],attrs:Rb,ngContentSelectors:Hb,decls:4,vars:5,consts:[[1,\"mat-button-wrapper\"],[\"matRipple\",\"\",1,\"mat-button-ripple\",3,\"matRippleDisabled\",\"matRippleCentered\",\"matRippleTrigger\"],[1,\"mat-button-focus-overlay\"]],template:function(e,t){1&e&&(Xo(),Ho(0,\"span\",0),ns(1),Fo(),No(2,\"div\",1),No(3,\"div\",2)),2&e&&(bi(2),fs(\"mat-button-ripple-round\",t.isRoundButton||t.isIconButton),jo(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleCentered\",t.isIconButton)(\"matRippleTrigger\",t._getHostElement()))},directives:[sb],styles:[\".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:.04}@media(hover: none){.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-button[disabled],.mat-icon-button[disabled],.mat-stroked-button[disabled],.mat-flat-button[disabled]{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button[disabled]{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}._mat-animation-noopable.mat-raised-button{transition:none;animation:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-ripple.mat-ripple,.mat-stroked-button .mat-button-focus-overlay{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab[disabled]{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-fab{transition:none;animation:none}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab[disabled]{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-mini-fab{transition:none;animation:none}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button i,.mat-icon-button .mat-icon{line-height:24px}.mat-button-ripple.mat-ripple,.mat-button-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-ripple.mat-ripple:not(:empty){transform:translateZ(0)}.mat-button-focus-overlay{opacity:0;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1),background-color 200ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}.cdk-high-contrast-active .mat-button-focus-overlay{background-color:#fff}.cdk-high-contrast-black-on-white .mat-button-focus-overlay{background-color:#000}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}\\n\"],encapsulation:2,changeDetection:0}),wb),Wb=((kb=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:kb}),kb.\\u0275inj=ve({factory:function(e){return new(e||kb)},imports:[[lb,zy],zy]}),kb),Ub=[\"*\",[[\"mat-card-footer\"]]],Bb=[\"*\",\"mat-card-footer\"],qb=[[[\"\",\"mat-card-avatar\",\"\"],[\"\",\"matCardAvatar\",\"\"]],[[\"mat-card-title\"],[\"mat-card-subtitle\"],[\"\",\"mat-card-title\",\"\"],[\"\",\"mat-card-subtitle\",\"\"],[\"\",\"matCardTitle\",\"\"],[\"\",\"matCardSubtitle\",\"\"]],\"*\"],Gb=[\"[mat-card-avatar], [matCardAvatar]\",\"mat-card-title, mat-card-subtitle,\\n [mat-card-title], [mat-card-subtitle],\\n [matCardTitle], [matCardSubtitle]\",\"*\"],$b=((Yb=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Yb)},Yb.\\u0275dir=Lt({type:Yb,selectors:[[\"mat-card-content\"],[\"\",\"mat-card-content\",\"\"],[\"\",\"matCardContent\",\"\"]],hostAttrs:[1,\"mat-card-content\"]}),Yb),Jb=((Ob=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Ob)},Ob.\\u0275dir=Lt({type:Ob,selectors:[[\"mat-card-title\"],[\"\",\"mat-card-title\",\"\"],[\"\",\"matCardTitle\",\"\"]],hostAttrs:[1,\"mat-card-title\"]}),Ob),Kb=((Db=function e(){_classCallCheck(this,e),this.align=\"start\"}).\\u0275fac=function(e){return new(e||Db)},Db.\\u0275dir=Lt({type:Db,selectors:[[\"mat-card-actions\"]],hostAttrs:[1,\"mat-card-actions\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"mat-card-actions-align-end\",\"end\"===t.align)},inputs:{align:\"align\"},exportAs:[\"matCardActions\"]}),Db),Zb=((xb=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||xb)},xb.\\u0275dir=Lt({type:xb,selectors:[[\"\",\"mat-card-image\",\"\"],[\"\",\"matCardImage\",\"\"]],hostAttrs:[1,\"mat-card-image\"]}),xb),Qb=((Tb=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Tb)},Tb.\\u0275dir=Lt({type:Tb,selectors:[[\"\",\"mat-card-avatar\",\"\"],[\"\",\"matCardAvatar\",\"\"]],hostAttrs:[1,\"mat-card-avatar\"]}),Tb),Xb=((Lb=function e(t){_classCallCheck(this,e),this._animationMode=t}).\\u0275fac=function(e){return new(e||Lb)(Io(Yy,8))},Lb.\\u0275cmp=bt({type:Lb,selectors:[[\"mat-card\"]],hostAttrs:[1,\"mat-card\",\"mat-focus-indicator\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode)},exportAs:[\"matCard\"],ngContentSelectors:Bb,decls:2,vars:0,template:function(e,t){1&e&&(Xo(Ub),ns(0),ns(1,1))},styles:[\".mat-card{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);display:block;position:relative;padding:16px;border-radius:4px}._mat-animation-noopable.mat-card{transition:none;animation:none}.mat-card .mat-divider-horizontal{position:absolute;left:0;width:100%}[dir=rtl] .mat-card .mat-divider-horizontal{left:auto;right:0}.mat-card .mat-divider-horizontal.mat-divider-inset{position:static;margin:0}[dir=rtl] .mat-card .mat-divider-horizontal.mat-divider-inset{margin-right:0}.cdk-high-contrast-active .mat-card{outline:solid 1px}.mat-card-actions,.mat-card-subtitle,.mat-card-content{display:block;margin-bottom:16px}.mat-card-title{display:block;margin-bottom:8px}.mat-card-actions{margin-left:-8px;margin-right:-8px;padding:8px 0}.mat-card-actions-align-end{display:flex;justify-content:flex-end}.mat-card-image{width:calc(100% + 32px);margin:0 -16px 16px -16px}.mat-card-footer{display:block;margin:0 -16px -16px -16px}.mat-card-actions .mat-button,.mat-card-actions .mat-raised-button,.mat-card-actions .mat-stroked-button{margin:0 8px}.mat-card-header{display:flex;flex-direction:row}.mat-card-header .mat-card-title{margin-bottom:12px}.mat-card-header-text{margin:0 16px}.mat-card-avatar{height:40px;width:40px;border-radius:50%;flex-shrink:0;object-fit:cover}.mat-card-title-group{display:flex;justify-content:space-between}.mat-card-sm-image{width:80px;height:80px}.mat-card-md-image{width:112px;height:112px}.mat-card-lg-image{width:152px;height:152px}.mat-card-xl-image{width:240px;height:240px;margin:-8px}.mat-card-title-group>.mat-card-xl-image{margin:-8px 0 8px}@media(max-width: 599px){.mat-card-title-group{margin:0}.mat-card-xl-image{margin-left:0;margin-right:0}}.mat-card>:first-child,.mat-card-content>:first-child{margin-top:0}.mat-card>:last-child:not(.mat-card-footer),.mat-card-content>:last-child:not(.mat-card-footer){margin-bottom:0}.mat-card-image:first-child{margin-top:-16px;border-top-left-radius:inherit;border-top-right-radius:inherit}.mat-card>.mat-card-actions:last-child{margin-bottom:-8px;padding-bottom:0}.mat-card-actions .mat-button:first-child,.mat-card-actions .mat-raised-button:first-child,.mat-card-actions .mat-stroked-button:first-child{margin-left:0;margin-right:0}.mat-card-title:not(:first-child),.mat-card-subtitle:not(:first-child){margin-top:-4px}.mat-card-header .mat-card-subtitle:not(:first-child){margin-top:-8px}.mat-card>.mat-card-xl-image:first-child{margin-top:-8px}.mat-card>.mat-card-xl-image:last-child{margin-bottom:-8px}\\n\"],encapsulation:2,changeDetection:0}),Lb),ek=((Sb=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Sb)},Sb.\\u0275cmp=bt({type:Sb,selectors:[[\"mat-card-header\"]],hostAttrs:[1,\"mat-card-header\"],ngContentSelectors:Gb,decls:4,vars:0,consts:[[1,\"mat-card-header-text\"]],template:function(e,t){1&e&&(Xo(qb),ns(0),Ho(1,\"div\",0),ns(2,1),Fo(),ns(3,2))},encapsulation:2,changeDetection:0}),Sb),tk=((Mb=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Mb}),Mb.\\u0275inj=ve({factory:function(e){return new(e||Mb)},imports:[[zy],zy]}),Mb),nk=[\"input\"],rk=function(){return{enterDuration:150}},ik=[\"*\"],ak=new Be(\"mat-checkbox-default-options\",{providedIn:\"root\",factory:function(){return{color:\"accent\",clickAction:\"check-indeterminate\"}}}),ok=new Be(\"mat-checkbox-click-action\"),sk=0,lk={provide:Wh,useExisting:De((function(){return dk})),multi:!0},uk=function e(){_classCallCheck(this,e)},ck=By(Wy(Uy(Vy((function e(t){_classCallCheck(this,e),this._elementRef=t}))))),dk=((Ab=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s,l,u){var c;return _classCallCheck(this,n),(c=t.call(this,e))._changeDetectorRef=r,c._focusMonitor=i,c._ngZone=a,c._clickAction=s,c._animationMode=l,c._options=u,c.ariaLabel=\"\",c.ariaLabelledby=null,c._uniqueId=\"mat-checkbox-\".concat(++sk),c.id=c._uniqueId,c.labelPosition=\"after\",c.name=null,c.change=new bu,c.indeterminateChange=new bu,c._onTouched=function(){},c._currentAnimationClass=\"\",c._currentCheckState=0,c._controlValueAccessorChangeFn=function(){},c._checked=!1,c._disabled=!1,c._indeterminate=!1,c._options=c._options||{},c._options.color&&(c.color=c._options.color),c.tabIndex=parseInt(o)||0,c._focusMonitor.monitor(e,!0).subscribe((function(e){e||Promise.resolve().then((function(){c._onTouched(),r.markForCheck()}))})),c._clickAction=c._clickAction||c._options.clickAction,c}return _createClass(n,[{key:\"ngAfterViewInit\",value:function(){this._syncIndeterminate(this._indeterminate)}},{key:\"ngAfterViewChecked\",value:function(){}},{key:\"ngOnDestroy\",value:function(){this._focusMonitor.stopMonitoring(this._elementRef)}},{key:\"_isRippleDisabled\",value:function(){return this.disableRipple||this.disabled}},{key:\"_onLabelTextChange\",value:function(){this._changeDetectorRef.detectChanges()}},{key:\"writeValue\",value:function(e){this.checked=!!e}},{key:\"registerOnChange\",value:function(e){this._controlValueAccessorChangeFn=e}},{key:\"registerOnTouched\",value:function(e){this._onTouched=e}},{key:\"setDisabledState\",value:function(e){this.disabled=e}},{key:\"_getAriaChecked\",value:function(){return this.checked?\"true\":this.indeterminate?\"mixed\":\"false\"}},{key:\"_transitionCheckState\",value:function(e){var t=this._currentCheckState,n=this._elementRef.nativeElement;if(t!==e&&(this._currentAnimationClass.length>0&&n.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(t,e),this._currentCheckState=e,this._currentAnimationClass.length>0)){n.classList.add(this._currentAnimationClass);var r=this._currentAnimationClass;this._ngZone.runOutsideAngular((function(){setTimeout((function(){n.classList.remove(r)}),1e3)}))}}},{key:\"_emitChangeEvent\",value:function(){var e=new uk;e.source=this,e.checked=this.checked,this._controlValueAccessorChangeFn(this.checked),this.change.emit(e)}},{key:\"toggle\",value:function(){this.checked=!this.checked}},{key:\"_onInputClick\",value:function(e){var t=this;e.stopPropagation(),this.disabled||\"noop\"===this._clickAction?this.disabled||\"noop\"!==this._clickAction||(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&\"check\"!==this._clickAction&&Promise.resolve().then((function(){t._indeterminate=!1,t.indeterminateChange.emit(t._indeterminate)})),this.toggle(),this._transitionCheckState(this._checked?1:2),this._emitChangeEvent())}},{key:\"focus\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"keyboard\",t=arguments.length>1?arguments[1]:void 0;this._focusMonitor.focusVia(this._inputElement,e,t)}},{key:\"_onInteractionEvent\",value:function(e){e.stopPropagation()}},{key:\"_getAnimationClassForCheckStateTransition\",value:function(e,t){if(\"NoopAnimations\"===this._animationMode)return\"\";var n=\"\";switch(e){case 0:if(1===t)n=\"unchecked-checked\";else{if(3!=t)return\"\";n=\"unchecked-indeterminate\"}break;case 2:n=1===t?\"unchecked-checked\":\"unchecked-indeterminate\";break;case 1:n=2===t?\"checked-unchecked\":\"checked-indeterminate\";break;case 3:n=1===t?\"indeterminate-checked\":\"indeterminate-unchecked\"}return\"mat-checkbox-anim-\".concat(n)}},{key:\"_syncIndeterminate\",value:function(e){var t=this._inputElement;t&&(t.nativeElement.indeterminate=e)}},{key:\"inputId\",get:function(){return\"\".concat(this.id||this._uniqueId,\"-input\")}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=mp(e)}},{key:\"checked\",get:function(){return this._checked},set:function(e){e!=this.checked&&(this._checked=e,this._changeDetectorRef.markForCheck())}},{key:\"disabled\",get:function(){return this._disabled},set:function(e){var t=mp(e);t!==this.disabled&&(this._disabled=t,this._changeDetectorRef.markForCheck())}},{key:\"indeterminate\",get:function(){return this._indeterminate},set:function(e){var t=e!=this._indeterminate;this._indeterminate=mp(e),t&&(this._transitionCheckState(this._indeterminate?3:this.checked?1:2),this.indeterminateChange.emit(this._indeterminate)),this._syncIndeterminate(this._indeterminate)}}]),n}(ck)).\\u0275fac=function(e){return new(e||Ab)(Io(Qs),Io(eo),Io(t_),Io(cc),Ao(\"tabindex\"),Io(ok,8),Io(Yy,8),Io(ak,8))},Ab.\\u0275cmp=bt({type:Ab,selectors:[[\"mat-checkbox\"]],viewQuery:function(e,t){var n;1&e&&(Iu(nk,!0),Iu(sb,!0)),2&e&&(Yu(n=Hu())&&(t._inputElement=n.first),Yu(n=Hu())&&(t.ripple=n.first))},hostAttrs:[1,\"mat-checkbox\"],hostVars:12,hostBindings:function(e,t){2&e&&(Ds(\"id\",t.id),Do(\"tabindex\",null),fs(\"mat-checkbox-indeterminate\",t.indeterminate)(\"mat-checkbox-checked\",t.checked)(\"mat-checkbox-disabled\",t.disabled)(\"mat-checkbox-label-before\",\"before\"==t.labelPosition)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],id:\"id\",labelPosition:\"labelPosition\",name:\"name\",required:\"required\",checked:\"checked\",disabled:\"disabled\",indeterminate:\"indeterminate\",value:\"value\"},outputs:{change:\"change\",indeterminateChange:\"indeterminateChange\"},exportAs:[\"matCheckbox\"],features:[$s([lk]),Es],ngContentSelectors:ik,decls:17,vars:19,consts:[[1,\"mat-checkbox-layout\"],[\"label\",\"\"],[1,\"mat-checkbox-inner-container\"],[\"type\",\"checkbox\",1,\"mat-checkbox-input\",\"cdk-visually-hidden\",3,\"id\",\"required\",\"checked\",\"disabled\",\"tabIndex\",\"change\",\"click\"],[\"input\",\"\"],[\"matRipple\",\"\",1,\"mat-checkbox-ripple\",\"mat-focus-indicator\",3,\"matRippleTrigger\",\"matRippleDisabled\",\"matRippleRadius\",\"matRippleCentered\",\"matRippleAnimation\"],[1,\"mat-ripple-element\",\"mat-checkbox-persistent-ripple\"],[1,\"mat-checkbox-frame\"],[1,\"mat-checkbox-background\"],[\"version\",\"1.1\",\"focusable\",\"false\",\"viewBox\",\"0 0 24 24\",0,\"xml\",\"space\",\"preserve\",1,\"mat-checkbox-checkmark\"],[\"fill\",\"none\",\"stroke\",\"white\",\"d\",\"M4.1,12.7 9,17.6 20.3,6.3\",1,\"mat-checkbox-checkmark-path\"],[1,\"mat-checkbox-mixedmark\"],[1,\"mat-checkbox-label\",3,\"cdkObserveContent\"],[\"checkboxLabel\",\"\"],[2,\"display\",\"none\"]],template:function(e,t){if(1&e&&(Xo(),Ho(0,\"label\",0,1),Ho(2,\"div\",2),Ho(3,\"input\",3,4),qo(\"change\",(function(e){return t._onInteractionEvent(e)}))(\"click\",(function(e){return t._onInputClick(e)})),Fo(),Ho(5,\"div\",5),No(6,\"div\",6),Fo(),No(7,\"div\",7),Ho(8,\"div\",8),Sn(),Ho(9,\"svg\",9),No(10,\"path\",10),Fo(),Ln(),No(11,\"div\",11),Fo(),Fo(),Ho(12,\"span\",12,13),qo(\"cdkObserveContent\",(function(){return t._onLabelTextChange()})),Ho(14,\"span\",14),Ls(15,\"\\xa0\"),Fo(),ns(16),Fo(),Fo()),2&e){var n=Eo(1),r=Eo(13);Do(\"for\",t.inputId),bi(2),fs(\"mat-checkbox-inner-container-no-side-margin\",!r.textContent||!r.textContent.trim()),bi(1),jo(\"id\",t.inputId)(\"required\",t.required)(\"checked\",t.checked)(\"disabled\",t.disabled)(\"tabIndex\",t.tabIndex),Do(\"value\",t.value)(\"name\",t.name)(\"aria-label\",t.ariaLabel||null)(\"aria-labelledby\",t.ariaLabelledby)(\"aria-checked\",t._getAriaChecked()),bi(2),jo(\"matRippleTrigger\",n)(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleRadius\",20)(\"matRippleCentered\",!0)(\"matRippleAnimation\",yu(18,rk))}},directives:[sb,Hp],styles:[\"@keyframes mat-checkbox-fade-in-background{0%{opacity:0}50%{opacity:1}}@keyframes mat-checkbox-fade-out-background{0%,50%{opacity:1}100%{opacity:0}}@keyframes mat-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:22.910259}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1)}100%{stroke-dashoffset:0}}@keyframes mat-checkbox-unchecked-indeterminate-mixedmark{0%,68.2%{transform:scaleX(0)}68.2%{animation-timing-function:cubic-bezier(0, 0, 0, 1)}100%{transform:scaleX(1)}}@keyframes mat-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);stroke-dashoffset:0}to{stroke-dashoffset:-22.910259}}@keyframes mat-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(45deg)}}@keyframes mat-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:0;transform:rotate(45deg)}to{opacity:1;transform:rotate(360deg)}}@keyframes mat-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:0;transform:rotate(-45deg)}to{opacity:1;transform:rotate(0deg)}}@keyframes mat-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(315deg)}}@keyframes mat-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;opacity:1;transform:scaleX(1)}32.8%,100%{opacity:0;transform:scaleX(0)}}.mat-checkbox-background,.mat-checkbox-frame{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:2px;box-sizing:border-box;pointer-events:none}.mat-checkbox{transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);cursor:pointer;-webkit-tap-highlight-color:transparent}._mat-animation-noopable.mat-checkbox{transition:none;animation:none}.mat-checkbox .mat-ripple-element:not(.mat-checkbox-persistent-ripple){opacity:.16}.mat-checkbox-layout{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:inherit;align-items:baseline;vertical-align:middle;display:inline-flex;white-space:nowrap}.mat-checkbox-label{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.mat-checkbox-inner-container{display:inline-block;height:16px;line-height:0;margin:auto;margin-right:8px;order:0;position:relative;vertical-align:middle;white-space:nowrap;width:16px;flex-shrink:0}[dir=rtl] .mat-checkbox-inner-container{margin-left:8px;margin-right:auto}.mat-checkbox-inner-container-no-side-margin{margin-left:0;margin-right:0}.mat-checkbox-frame{background-color:transparent;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1);border-width:2px;border-style:solid}._mat-animation-noopable .mat-checkbox-frame{transition:none}.mat-checkbox.cdk-keyboard-focused .cdk-high-contrast-active .mat-checkbox-frame{border-style:dotted}.mat-checkbox-background{align-items:center;display:inline-flex;justify-content:center;transition:background-color 90ms cubic-bezier(0, 0, 0.2, 0.1),opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}._mat-animation-noopable .mat-checkbox-background{transition:none}.cdk-high-contrast-active .mat-checkbox .mat-checkbox-background{background:none}.mat-checkbox-persistent-ripple{width:100%;height:100%;transform:none}.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:.04}.mat-checkbox.cdk-keyboard-focused .mat-checkbox-persistent-ripple{opacity:.12}.mat-checkbox-persistent-ripple,.mat-checkbox.mat-checkbox-disabled .mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:0}@media(hover: none){.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{display:none}}.mat-checkbox-checkmark{top:0;left:0;right:0;bottom:0;position:absolute;width:100%}.mat-checkbox-checkmark-path{stroke-dashoffset:22.910259;stroke-dasharray:22.910259;stroke-width:2.1333333333px}.cdk-high-contrast-black-on-white .mat-checkbox-checkmark-path{stroke:#000 !important}.mat-checkbox-mixedmark{width:calc(100% - 6px);height:2px;opacity:0;transform:scaleX(0) rotate(0deg);border-radius:2px}.cdk-high-contrast-active .mat-checkbox-mixedmark{height:0;border-top:solid 2px;margin-top:2px}.mat-checkbox-label-before .mat-checkbox-inner-container{order:1;margin-left:8px;margin-right:auto}[dir=rtl] .mat-checkbox-label-before .mat-checkbox-inner-container{margin-left:auto;margin-right:8px}.mat-checkbox-checked .mat-checkbox-checkmark{opacity:1}.mat-checkbox-checked .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-checked .mat-checkbox-mixedmark{transform:scaleX(1) rotate(-45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark{opacity:0;transform:rotate(45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-indeterminate .mat-checkbox-mixedmark{opacity:1;transform:scaleX(1) rotate(0deg)}.mat-checkbox-unchecked .mat-checkbox-background{background-color:transparent}.mat-checkbox-disabled{cursor:default}.cdk-high-contrast-active .mat-checkbox-disabled{opacity:.5}.mat-checkbox-anim-unchecked-checked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-checked .mat-checkbox-checkmark-path{animation:180ms linear 0ms mat-checkbox-unchecked-checked-checkmark-path}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-unchecked-indeterminate-mixedmark}.mat-checkbox-anim-checked-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-checked-unchecked .mat-checkbox-checkmark-path{animation:90ms linear 0ms mat-checkbox-checked-unchecked-checkmark-path}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-checkmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-checkmark}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-mixedmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-checkmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-checkmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-mixedmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-mixedmark}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-mixedmark{animation:300ms linear 0ms mat-checkbox-indeterminate-unchecked-mixedmark}.mat-checkbox-input{bottom:0;left:50%}.mat-checkbox .mat-checkbox-ripple{position:absolute;left:calc(50% - 20px);top:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}\\n\"],encapsulation:2,changeDetection:0}),Ab),hk=((Ib=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Ib}),Ib.\\u0275inj=ve({factory:function(e){return new(e||Ib)}}),Ib),fk=((Eb=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Eb}),Eb.\\u0275inj=ve({factory:function(e){return new(e||Eb)},imports:[[lb,zy,Fp,hk],zy,hk]}),Eb);function mk(e,t,n,i){return r(n)&&(i=n,n=void 0),i?mk(e,t,n).pipe(F((function(e){return l(e)?i.apply(void 0,_toConsumableArray(e)):i(e)}))):new w((function(r){!function e(t,n,r,i,a){var o;if(function(e){return e&&\"function\"==typeof e.addEventListener&&\"function\"==typeof e.removeEventListener}(t)){var s=t;t.addEventListener(n,r,a),o=function(){return s.removeEventListener(n,r,a)}}else if(function(e){return e&&\"function\"==typeof e.on&&\"function\"==typeof e.off}(t)){var l=t;t.on(n,r),o=function(){return l.off(n,r)}}else if(function(e){return e&&\"function\"==typeof e.addListener&&\"function\"==typeof e.removeListener}(t)){var u=t;t.addListener(n,r),o=function(){return u.removeListener(n,r)}}else{if(!t||!t.length)throw new TypeError(\"Invalid event target\");for(var c=0,d=t.length;c1?Array.prototype.slice.call(arguments):e)}),r,n)}))}var pk=1,_k=Promise.resolve(),vk={};function gk(e){return e in vk&&(delete vk[e],!0)}var yk=function(e){var t=pk++;return vk[t]=!0,_k.then((function(){return gk(t)&&e()})),t},bk=function(e){gk(e)},kk=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e,r)).scheduler=e,i.work=r,i}return _createClass(n,[{key:\"requestAsyncId\",value:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return null!==r&&r>0?_get(_getPrototypeOf(n.prototype),\"requestAsyncId\",this).call(this,e,t,r):(e.actions.push(this),e.scheduled||(e.scheduled=yk(e.flush.bind(e,null))))}},{key:\"recycleAsyncId\",value:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;if(null!==r&&r>0||null===r&&this.delay>0)return _get(_getPrototypeOf(n.prototype),\"recycleAsyncId\",this).call(this,e,t,r);0===e.actions.length&&(bk(t),e.scheduled=void 0)}}]),n}(Xm),wk=new(function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"flush\",value:function(e){this.active=!0,this.scheduled=void 0;var t,n=this.actions,r=-1,i=n.length;e=e||n.shift();do{if(t=e.execute(e.state,e.delay))break}while(++r=0}function Dk(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0,r=-1;return xk(t)?r=Number(t)<1?1:Number(t):O(t)&&(n=t),O(n)||(n=np),new w((function(t){var i=xk(e)?e:+e-n.now();return n.schedule(Ok,i,{index:0,period:r,subscriber:t})}))}function Ok(e){var t=e.index,n=e.period,r=e.subscriber;if(r.next(t),!r.closed){if(-1===n)return r.complete();e.index=t+1,this.schedule(e,n)}}function Yk(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:np;return t=function(){return Dk(e,n)},function(e){return e.lift(new Lk(t))}}function Ek(e){return function(t){return t.lift(new Ik(e))}}var Ik=function(){function e(t){_classCallCheck(this,e),this.notifier=t}return _createClass(e,[{key:\"call\",value:function(e,t){var n=new Ak(e),r=R(n,this.notifier);return r&&!n.seenValue?(n.add(r),t.subscribe(n)):n}}]),e}(),Ak=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this,e)).seenValue=!1,r}return _createClass(n,[{key:\"notifyNext\",value:function(e,t,n,r,i){this.seenValue=!0,this.complete()}},{key:\"notifyComplete\",value:function(){}}]),n}(H);function Pk(e,t){return\"function\"==typeof t?function(n){return n.pipe(Pk((function(n,r){return W(e(n,r)).pipe(F((function(e,i){return t(n,e,r,i)})))})))}:function(t){return t.lift(new jk(e))}}var jk=function(){function e(t){_classCallCheck(this,e),this.project=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new Rk(e,this.project))}}]),e}(),Rk=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).project=r,i.index=0,i}return _createClass(n,[{key:\"_next\",value:function(e){var t,n=this.index++;try{t=this.project(e,n)}catch(r){return void this.destination.error(r)}this._innerSub(t,e,n)}},{key:\"_innerSub\",value:function(e,t,n){var r=this.innerSubscription;r&&r.unsubscribe();var i=new Y(this,t,n),a=this.destination;a.add(i),this.innerSubscription=R(this,e,void 0,void 0,i),this.innerSubscription!==i&&a.add(this.innerSubscription)}},{key:\"_complete\",value:function(){var e=this.innerSubscription;e&&!e.closed||_get(_getPrototypeOf(n.prototype),\"_complete\",this).call(this),this.unsubscribe()}},{key:\"_unsubscribe\",value:function(){this.innerSubscription=null}},{key:\"notifyComplete\",value:function(e){this.destination.remove(e),this.innerSubscription=null,this.isStopped&&_get(_getPrototypeOf(n.prototype),\"_complete\",this).call(this)}},{key:\"notifyNext\",value:function(e,t,n,r,i){this.destination.next(t)}}]),n}(H),Hk=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e,r)).scheduler=e,i.work=r,i}return _createClass(n,[{key:\"schedule\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return t>0?_get(_getPrototypeOf(n.prototype),\"schedule\",this).call(this,e,t):(this.delay=t,this.state=e,this.scheduler.flush(this),this)}},{key:\"execute\",value:function(e,t){return t>0||this.closed?_get(_getPrototypeOf(n.prototype),\"execute\",this).call(this,e,t):this._execute(e,t)}},{key:\"requestAsyncId\",value:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return null!==r&&r>0||null===r&&this.delay>0?_get(_getPrototypeOf(n.prototype),\"requestAsyncId\",this).call(this,e,t,r):e.flush(this)}}]),n}(Xm),Fk=new(function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return n}(tp))(Hk);function Nk(e,t){return new w(t?function(n){return t.schedule(zk,0,{error:e,subscriber:n})}:function(t){return t.error(e)})}function zk(e){var t=e.error;e.subscriber.error(t)}var Vk=function(){var e=function(){function e(t,n,r){_classCallCheck(this,e),this.kind=t,this.value=n,this.error=r,this.hasValue=\"N\"===t}return _createClass(e,[{key:\"observe\",value:function(e){switch(this.kind){case\"N\":return e.next&&e.next(this.value);case\"E\":return e.error&&e.error(this.error);case\"C\":return e.complete&&e.complete()}}},{key:\"do\",value:function(e,t,n){switch(this.kind){case\"N\":return e&&e(this.value);case\"E\":return t&&t(this.error);case\"C\":return n&&n()}}},{key:\"accept\",value:function(e,t,n){return e&&\"function\"==typeof e.next?this.observe(e):this.do(e,t,n)}},{key:\"toObservable\",value:function(){switch(this.kind){case\"N\":return Bd(this.value);case\"E\":return Nk(this.error);case\"C\":return up()}throw new Error(\"unexpected notification kind value\")}}],[{key:\"createNext\",value:function(t){return void 0!==t?new e(\"N\",t):e.undefinedValueNotification}},{key:\"createError\",value:function(t){return new e(\"E\",void 0,t)}},{key:\"createComplete\",value:function(){return e.completeNotification}}]),e}();return e.completeNotification=new e(\"C\"),e.undefinedValueNotification=new e(\"N\",void 0),e}(),Wk=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return _classCallCheck(this,n),(i=t.call(this,e)).scheduler=r,i.delay=a,i}return _createClass(n,[{key:\"scheduleMessage\",value:function(e){this.destination.add(this.scheduler.schedule(n.dispatch,this.delay,new Uk(e,this.destination)))}},{key:\"_next\",value:function(e){this.scheduleMessage(Vk.createNext(e))}},{key:\"_error\",value:function(e){this.scheduleMessage(Vk.createError(e)),this.unsubscribe()}},{key:\"_complete\",value:function(){this.scheduleMessage(Vk.createComplete()),this.unsubscribe()}}],[{key:\"dispatch\",value:function(e){var t=e.notification,n=e.destination;t.observe(n),this.unsubscribe()}}]),n}(p),Uk=function e(t,n){_classCallCheck(this,e),this.notification=t,this.destination=n},Bk=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Number.POSITIVE_INFINITY,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.POSITIVE_INFINITY,a=arguments.length>2?arguments[2]:void 0;return _classCallCheck(this,n),(e=t.call(this)).scheduler=a,e._events=[],e._infiniteTimeWindow=!1,e._bufferSize=r<1?1:r,e._windowTime=i<1?1:i,i===Number.POSITIVE_INFINITY?(e._infiniteTimeWindow=!0,e.next=e.nextInfiniteTimeWindow):e.next=e.nextTimeWindow,e}return _createClass(n,[{key:\"nextInfiniteTimeWindow\",value:function(e){var t=this._events;t.push(e),t.length>this._bufferSize&&t.shift(),_get(_getPrototypeOf(n.prototype),\"next\",this).call(this,e)}},{key:\"nextTimeWindow\",value:function(e){this._events.push(new qk(this._getNow(),e)),this._trimBufferThenGetEvents(),_get(_getPrototypeOf(n.prototype),\"next\",this).call(this,e)}},{key:\"_subscribe\",value:function(e){var t,n=this._infiniteTimeWindow,r=n?this._events:this._trimBufferThenGetEvents(),i=this.scheduler,a=r.length;if(this.closed)throw new S;if(this.isStopped||this.hasError?t=h.EMPTY:(this.observers.push(e),t=new L(this,e)),i&&e.add(e=new Wk(e,i)),n)for(var o=0;ot&&(a=Math.max(a,i-t)),a>0&&r.splice(0,a),r}}]),n}(x),qk=function e(t,n){_classCallCheck(this,e),this.time=t,this.value=n};function Gk(e,t,n){var r;return r=e&&\"object\"==typeof e?e:{bufferSize:e,windowTime:t,refCount:!1,scheduler:n},function(e){return e.lift(function(e){var t,n,r=e.bufferSize,i=void 0===r?Number.POSITIVE_INFINITY:r,a=e.windowTime,o=void 0===a?Number.POSITIVE_INFINITY:a,s=e.refCount,l=e.scheduler,u=0,c=!1,d=!1;return function(e){u++,t&&!c||(c=!1,t=new Bk(i,o,l),n=e.subscribe({next:function(e){t.next(e)},error:function(e){c=!0,t.error(e)},complete:function(){d=!0,n=void 0,t.complete()}}));var r=t.subscribe(this);this.add((function(){u--,r.unsubscribe(),n&&!d&&s&&0===u&&(n.unsubscribe(),n=void 0,t=void 0)}))}}(r))}}var $k,Jk,Kk,Zk,Qk=function(){function e(){var t=this,n=arguments.length>0&&void 0!==arguments[0]&&arguments[0],r=arguments.length>1?arguments[1]:void 0,i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];_classCallCheck(this,e),this._multiple=n,this._emitChanges=i,this._selection=new Set,this._deselectedToEmit=[],this._selectedToEmit=[],this.changed=new x,r&&r.length&&(n?r.forEach((function(e){return t._markSelected(e)})):this._markSelected(r[0]),this._selectedToEmit.length=0)}return _createClass(e,[{key:\"select\",value:function(){for(var e=this,t=arguments.length,n=new Array(t),r=0;r1&&!this._multiple)throw Error(\"Cannot pass multiple values into SelectionModel with single-value mode.\")}},{key:\"selected\",get:function(){return this._selected||(this._selected=Array.from(this._selection.values())),this._selected}}]),e}(),Xk=((Zk=function(){function e(t,n){_classCallCheck(this,e),this._ngZone=t,this._platform=n,this._scrolled=new x,this._globalSubscription=null,this._scrolledCount=0,this.scrollContainers=new Map}return _createClass(e,[{key:\"register\",value:function(e){var t=this;this.scrollContainers.has(e)||this.scrollContainers.set(e,e.elementScrolled().subscribe((function(){return t._scrolled.next(e)})))}},{key:\"deregister\",value:function(e){var t=this.scrollContainers.get(e);t&&(t.unsubscribe(),this.scrollContainers.delete(e))}},{key:\"scrolled\",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:20;return this._platform.isBrowser?new w((function(n){e._globalSubscription||e._addGlobalListener();var r=t>0?e._scrolled.pipe(Yk(t)).subscribe(n):e._scrolled.subscribe(n);return e._scrolledCount++,function(){r.unsubscribe(),e._scrolledCount--,e._scrolledCount||e._removeGlobalListener()}})):Bd()}},{key:\"ngOnDestroy\",value:function(){var e=this;this._removeGlobalListener(),this.scrollContainers.forEach((function(t,n){return e.deregister(n)})),this._scrolled.complete()}},{key:\"ancestorScrolled\",value:function(e,t){var n=this.getAncestorScrollContainers(e);return this.scrolled(t).pipe(Gd((function(e){return!e||n.indexOf(e)>-1})))}},{key:\"getAncestorScrollContainers\",value:function(e){var t=this,n=[];return this.scrollContainers.forEach((function(r,i){t._scrollableContainsElement(i,e)&&n.push(i)})),n}},{key:\"_scrollableContainsElement\",value:function(e,t){var n=t.nativeElement,r=e.getElementRef().nativeElement;do{if(n==r)return!0}while(n=n.parentElement);return!1}},{key:\"_addGlobalListener\",value:function(){var e=this;this._globalSubscription=this._ngZone.runOutsideAngular((function(){return mk(window.document,\"scroll\").subscribe((function(){return e._scrolled.next()}))}))}},{key:\"_removeGlobalListener\",value:function(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)}}]),e}()).\\u0275fac=function(e){return new(e||Zk)(et(cc),et(Cp))},Zk.\\u0275prov=_e({factory:function(){return new Zk(et(cc),et(Cp))},token:Zk,providedIn:\"root\"}),Zk),ew=((Kk=function(){function e(t,n,r,i){var a=this;_classCallCheck(this,e),this.elementRef=t,this.scrollDispatcher=n,this.ngZone=r,this.dir=i,this._destroyed=new x,this._elementScrolled=new w((function(e){return a.ngZone.runOutsideAngular((function(){return mk(a.elementRef.nativeElement,\"scroll\").pipe(Ek(a._destroyed)).subscribe(e)}))}))}return _createClass(e,[{key:\"ngOnInit\",value:function(){this.scrollDispatcher.register(this)}},{key:\"ngOnDestroy\",value:function(){this.scrollDispatcher.deregister(this),this._destroyed.next(),this._destroyed.complete()}},{key:\"elementScrolled\",value:function(){return this._elementScrolled}},{key:\"getElementRef\",value:function(){return this.elementRef}},{key:\"scrollTo\",value:function(e){var t=this.elementRef.nativeElement,n=this.dir&&\"rtl\"==this.dir.value;e.left=null==e.left?n?e.end:e.start:e.left,e.right=null==e.right?n?e.start:e.end:e.right,null!=e.bottom&&(e.top=t.scrollHeight-t.clientHeight-e.bottom),n&&Op()!=Dp.NORMAL?(null!=e.left&&(e.right=t.scrollWidth-t.clientWidth-e.left),Op()==Dp.INVERTED?e.left=e.right:Op()==Dp.NEGATED&&(e.left=e.right?-e.right:e.right)):null!=e.right&&(e.left=t.scrollWidth-t.clientWidth-e.right),this._applyScrollToOptions(e)}},{key:\"_applyScrollToOptions\",value:function(e){var t=this.elementRef.nativeElement;\"object\"==typeof document&&\"scrollBehavior\"in document.documentElement.style?t.scrollTo(e):(null!=e.top&&(t.scrollTop=e.top),null!=e.left&&(t.scrollLeft=e.left))}},{key:\"measureScrollOffset\",value:function(e){var t=this.elementRef.nativeElement;if(\"top\"==e)return t.scrollTop;if(\"bottom\"==e)return t.scrollHeight-t.clientHeight-t.scrollTop;var n=this.dir&&\"rtl\"==this.dir.value;return\"start\"==e?e=n?\"right\":\"left\":\"end\"==e&&(e=n?\"left\":\"right\"),n&&Op()==Dp.INVERTED?\"left\"==e?t.scrollWidth-t.clientWidth-t.scrollLeft:t.scrollLeft:n&&Op()==Dp.NEGATED?\"left\"==e?t.scrollLeft+t.scrollWidth-t.clientWidth:-t.scrollLeft:\"left\"==e?t.scrollLeft:t.scrollWidth-t.clientWidth-t.scrollLeft}}]),e}()).\\u0275fac=function(e){return new(e||Kk)(Io(Qs),Io(Xk),Io(cc),Io(h_,8))},Kk.\\u0275dir=Lt({type:Kk,selectors:[[\"\",\"cdk-scrollable\",\"\"],[\"\",\"cdkScrollable\",\"\"]]}),Kk),tw=((Jk=function(){function e(t,n){var r=this;_classCallCheck(this,e),this._platform=t,n.runOutsideAngular((function(){r._change=t.isBrowser?K(mk(window,\"resize\"),mk(window,\"orientationchange\")):Bd(),r._invalidateCache=r.change().subscribe((function(){return r._updateViewportSize()}))}))}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){this._invalidateCache.unsubscribe()}},{key:\"getViewportSize\",value:function(){this._viewportSize||this._updateViewportSize();var e={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),e}},{key:\"getViewportRect\",value:function(){var e=this.getViewportScrollPosition(),t=this.getViewportSize(),n=t.width,r=t.height;return{top:e.top,left:e.left,bottom:e.top+r,right:e.left+n,height:r,width:n}}},{key:\"getViewportScrollPosition\",value:function(){if(!this._platform.isBrowser)return{top:0,left:0};var e=document.documentElement,t=e.getBoundingClientRect();return{top:-t.top||document.body.scrollTop||window.scrollY||e.scrollTop||0,left:-t.left||document.body.scrollLeft||window.scrollX||e.scrollLeft||0}}},{key:\"change\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:20;return e>0?this._change.pipe(Yk(e)):this._change}},{key:\"_updateViewportSize\",value:function(){this._viewportSize=this._platform.isBrowser?{width:window.innerWidth,height:window.innerHeight}:{width:0,height:0}}}]),e}()).\\u0275fac=function(e){return new(e||Jk)(et(Cp),et(cc))},Jk.\\u0275prov=_e({factory:function(){return new Jk(et(Cp),et(cc))},token:Jk,providedIn:\"root\"}),Jk),nw=(($k=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:$k}),$k.\\u0275inj=ve({factory:function(e){return new(e||$k)},imports:[[f_,Mp],f_]}),$k);function rw(){throw Error(\"Host already has a portal attached\")}var iw,aw,ow=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"attach\",value:function(e){return null==e&&function(){throw Error(\"Attempting to attach a portal to a null PortalOutlet\")}(),e.hasAttached()&&rw(),this._attachedHost=e,e.attach(this)}},{key:\"detach\",value:function(){var e=this._attachedHost;null==e?function(){throw Error(\"Attempting to detach a portal that is not attached to a host\")}():(this._attachedHost=null,e.detach())}},{key:\"setAttachedHost\",value:function(e){this._attachedHost=e}},{key:\"isAttached\",get:function(){return null!=this._attachedHost}}]),e}(),sw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this)).component=e,o.viewContainerRef=r,o.injector=i,o.componentFactoryResolver=a,o}return n}(ow),lw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this)).templateRef=e,a.viewContainerRef=r,a.context=i,a}return _createClass(n,[{key:\"attach\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.context;return this.context=t,_get(_getPrototypeOf(n.prototype),\"attach\",this).call(this,e)}},{key:\"detach\",value:function(){return this.context=void 0,_get(_getPrototypeOf(n.prototype),\"detach\",this).call(this)}},{key:\"origin\",get:function(){return this.templateRef.elementRef}}]),n}(ow),uw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this)).element=e instanceof Qs?e.nativeElement:e,r}return n}(ow),cw=function(){function e(){_classCallCheck(this,e),this._isDisposed=!1,this.attachDomPortal=null}return _createClass(e,[{key:\"hasAttached\",value:function(){return!!this._attachedPortal}},{key:\"attach\",value:function(e){return e||function(){throw Error(\"Must provide a portal to attach\")}(),this.hasAttached()&&rw(),this._isDisposed&&function(){throw Error(\"This PortalOutlet has already been disposed\")}(),e instanceof sw?(this._attachedPortal=e,this.attachComponentPortal(e)):e instanceof lw?(this._attachedPortal=e,this.attachTemplatePortal(e)):this.attachDomPortal&&e instanceof uw?(this._attachedPortal=e,this.attachDomPortal(e)):void function(){throw Error(\"Attempting to attach an unknown Portal type. BasePortalOutlet accepts either a ComponentPortal or a TemplatePortal.\")}()}},{key:\"detach\",value:function(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()}},{key:\"dispose\",value:function(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0}},{key:\"setDisposeFn\",value:function(e){this._disposeFn=e}},{key:\"_invokeDisposeFn\",value:function(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}]),e}(),dw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this)).outletElement=e,s._componentFactoryResolver=r,s._appRef=i,s._defaultInjector=a,s.attachDomPortal=function(e){if(!s._document)throw Error(\"Cannot attach DOM portal without _document constructor parameter\");var t=e.element;if(!t.parentNode)throw Error(\"DOM portal content must be attached to a parent node.\");var r=s._document.createComment(\"dom-portal\");t.parentNode.insertBefore(r,t),s.outletElement.appendChild(t),_get(_getPrototypeOf(n.prototype),\"setDisposeFn\",_assertThisInitialized(s)).call(_assertThisInitialized(s),(function(){r.parentNode&&r.parentNode.replaceChild(t,r)}))},s._document=o,s}return _createClass(n,[{key:\"attachComponentPortal\",value:function(e){var t,n=this,r=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component);return e.viewContainerRef?(t=e.viewContainerRef.createComponent(r,e.viewContainerRef.length,e.injector||e.viewContainerRef.injector),this.setDisposeFn((function(){return t.destroy()}))):(t=r.create(e.injector||this._defaultInjector),this._appRef.attachView(t.hostView),this.setDisposeFn((function(){n._appRef.detachView(t.hostView),t.destroy()}))),this.outletElement.appendChild(this._getComponentRootNode(t)),t}},{key:\"attachTemplatePortal\",value:function(e){var t=this,n=e.viewContainerRef,r=n.createEmbeddedView(e.templateRef,e.context);return r.detectChanges(),r.rootNodes.forEach((function(e){return t.outletElement.appendChild(e)})),this.setDisposeFn((function(){var e=n.indexOf(r);-1!==e&&n.remove(e)})),r}},{key:\"dispose\",value:function(){_get(_getPrototypeOf(n.prototype),\"dispose\",this).call(this),null!=this.outletElement.parentNode&&this.outletElement.parentNode.removeChild(this.outletElement)}},{key:\"_getComponentRootNode\",value:function(e){return e.hostView.rootNodes[0]}}]),n}(cw),hw=((aw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this))._componentFactoryResolver=e,a._viewContainerRef=r,a._isInitialized=!1,a.attached=new bu,a.attachDomPortal=function(e){if(!a._document)throw Error(\"Cannot attach DOM portal without _document constructor parameter\");var t=e.element;if(!t.parentNode)throw Error(\"DOM portal content must be attached to a parent node.\");var r=a._document.createComment(\"dom-portal\");e.setAttachedHost(_assertThisInitialized(a)),t.parentNode.insertBefore(r,t),a._getRootNode().appendChild(t),_get(_getPrototypeOf(n.prototype),\"setDisposeFn\",_assertThisInitialized(a)).call(_assertThisInitialized(a),(function(){r.parentNode&&r.parentNode.replaceChild(t,r)}))},a._document=i,a}return _createClass(n,[{key:\"ngOnInit\",value:function(){this._isInitialized=!0}},{key:\"ngOnDestroy\",value:function(){_get(_getPrototypeOf(n.prototype),\"dispose\",this).call(this),this._attachedPortal=null,this._attachedRef=null}},{key:\"attachComponentPortal\",value:function(e){e.setAttachedHost(this);var t=null!=e.viewContainerRef?e.viewContainerRef:this._viewContainerRef,r=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component),i=t.createComponent(r,t.length,e.injector||t.injector);return t!==this._viewContainerRef&&this._getRootNode().appendChild(i.hostView.rootNodes[0]),_get(_getPrototypeOf(n.prototype),\"setDisposeFn\",this).call(this,(function(){return i.destroy()})),this._attachedPortal=e,this._attachedRef=i,this.attached.emit(i),i}},{key:\"attachTemplatePortal\",value:function(e){var t=this;e.setAttachedHost(this);var r=this._viewContainerRef.createEmbeddedView(e.templateRef,e.context);return _get(_getPrototypeOf(n.prototype),\"setDisposeFn\",this).call(this,(function(){return t._viewContainerRef.clear()})),this._attachedPortal=e,this._attachedRef=r,this.attached.emit(r),r}},{key:\"_getRootNode\",value:function(){var e=this._viewContainerRef.element.nativeElement;return e.nodeType===e.ELEMENT_NODE?e:e.parentNode}},{key:\"portal\",get:function(){return this._attachedPortal},set:function(e){(!this.hasAttached()||e||this._isInitialized)&&(this.hasAttached()&&_get(_getPrototypeOf(n.prototype),\"detach\",this).call(this),e&&_get(_getPrototypeOf(n.prototype),\"attach\",this).call(this,e),this._attachedPortal=e)}},{key:\"attachedRef\",get:function(){return this._attachedRef}}]),n}(cw)).\\u0275fac=function(e){return new(e||aw)(Io(Zs),Io(Ml),Io(Wc))},aw.\\u0275dir=Lt({type:aw,selectors:[[\"\",\"cdkPortalOutlet\",\"\"]],inputs:{portal:[\"cdkPortalOutlet\",\"portal\"]},outputs:{attached:\"attached\"},exportAs:[\"cdkPortalOutlet\"],features:[Es]}),aw),fw=((iw=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:iw}),iw.\\u0275inj=ve({factory:function(e){return new(e||iw)}}),iw),mw=function(){function e(t,n){_classCallCheck(this,e),this._viewportRuler=t,this._previousHTMLStyles={top:\"\",left:\"\"},this._isEnabled=!1,this._document=n}return _createClass(e,[{key:\"attach\",value:function(){}},{key:\"enable\",value:function(){if(this._canBeEnabled()){var e=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=e.style.left||\"\",this._previousHTMLStyles.top=e.style.top||\"\",e.style.left=vp(-this._previousScrollPosition.left),e.style.top=vp(-this._previousScrollPosition.top),e.classList.add(\"cdk-global-scrollblock\"),this._isEnabled=!0}}},{key:\"disable\",value:function(){if(this._isEnabled){var e=this._document.documentElement,t=e.style,n=this._document.body.style,r=t.scrollBehavior||\"\",i=n.scrollBehavior||\"\";this._isEnabled=!1,t.left=this._previousHTMLStyles.left,t.top=this._previousHTMLStyles.top,e.classList.remove(\"cdk-global-scrollblock\"),t.scrollBehavior=n.scrollBehavior=\"auto\",window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),t.scrollBehavior=r,n.scrollBehavior=i}}},{key:\"_canBeEnabled\",value:function(){if(this._document.documentElement.classList.contains(\"cdk-global-scrollblock\")||this._isEnabled)return!1;var e=this._document.body,t=this._viewportRuler.getViewportSize();return e.scrollHeight>t.height||e.scrollWidth>t.width}}]),e}();function pw(){return Error(\"Scroll strategy has already been attached.\")}var _w=function(){function e(t,n,r,i){var a=this;_classCallCheck(this,e),this._scrollDispatcher=t,this._ngZone=n,this._viewportRuler=r,this._config=i,this._scrollSubscription=null,this._detach=function(){a.disable(),a._overlayRef.hasAttached()&&a._ngZone.run((function(){return a._overlayRef.detach()}))}}return _createClass(e,[{key:\"attach\",value:function(e){if(this._overlayRef)throw pw();this._overlayRef=e}},{key:\"enable\",value:function(){var e=this;if(!this._scrollSubscription){var t=this._scrollDispatcher.scrolled(0);this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=t.subscribe((function(){var t=e._viewportRuler.getViewportScrollPosition().top;Math.abs(t-e._initialScrollPosition)>e._config.threshold?e._detach():e._overlayRef.updatePosition()}))):this._scrollSubscription=t.subscribe(this._detach)}}},{key:\"disable\",value:function(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}},{key:\"detach\",value:function(){this.disable(),this._overlayRef=null}}]),e}(),vw=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"enable\",value:function(){}},{key:\"disable\",value:function(){}},{key:\"attach\",value:function(){}}]),e}();function gw(e,t){return t.some((function(t){return e.bottomt.bottom||e.rightt.right}))}function yw(e,t){return t.some((function(t){return e.topt.bottom||e.leftt.right}))}var bw,kw=function(){function e(t,n,r,i){_classCallCheck(this,e),this._scrollDispatcher=t,this._viewportRuler=n,this._ngZone=r,this._config=i,this._scrollSubscription=null}return _createClass(e,[{key:\"attach\",value:function(e){if(this._overlayRef)throw pw();this._overlayRef=e}},{key:\"enable\",value:function(){var e=this;this._scrollSubscription||(this._scrollSubscription=this._scrollDispatcher.scrolled(this._config?this._config.scrollThrottle:0).subscribe((function(){if(e._overlayRef.updatePosition(),e._config&&e._config.autoClose){var t=e._overlayRef.overlayElement.getBoundingClientRect(),n=e._viewportRuler.getViewportSize(),r=n.width,i=n.height;gw(t,[{width:r,height:i,bottom:i,right:r,top:0,left:0}])&&(e.disable(),e._ngZone.run((function(){return e._overlayRef.detach()})))}})))}},{key:\"disable\",value:function(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}},{key:\"detach\",value:function(){this.disable(),this._overlayRef=null}}]),e}(),ww=((bw=function e(t,n,r,i){var a=this;_classCallCheck(this,e),this._scrollDispatcher=t,this._viewportRuler=n,this._ngZone=r,this.noop=function(){return new vw},this.close=function(e){return new _w(a._scrollDispatcher,a._ngZone,a._viewportRuler,e)},this.block=function(){return new mw(a._viewportRuler,a._document)},this.reposition=function(e){return new kw(a._scrollDispatcher,a._viewportRuler,a._ngZone,e)},this._document=i}).\\u0275fac=function(e){return new(e||bw)(et(Xk),et(tw),et(cc),et(Wc))},bw.\\u0275prov=_e({factory:function(){return new bw(et(Xk),et(tw),et(cc),et(Wc))},token:bw,providedIn:\"root\"}),bw),Cw=function e(t){if(_classCallCheck(this,e),this.scrollStrategy=new vw,this.panelClass=\"\",this.hasBackdrop=!1,this.backdropClass=\"cdk-overlay-dark-backdrop\",this.disposeOnNavigation=!1,t)for(var n=0,r=Object.keys(t);n-1;r--)if(t[r]._keydownEventSubscriptions>0){t[r]._keydownEvents.next(e);break}},this._document=t}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){this._detach()}},{key:\"add\",value:function(e){this.remove(e),this._isAttached||(this._document.body.addEventListener(\"keydown\",this._keydownListener),this._isAttached=!0),this._attachedOverlays.push(e)}},{key:\"remove\",value:function(e){var t=this._attachedOverlays.indexOf(e);t>-1&&this._attachedOverlays.splice(t,1),0===this._attachedOverlays.length&&this._detach()}},{key:\"_detach\",value:function(){this._isAttached&&(this._document.body.removeEventListener(\"keydown\",this._keydownListener),this._isAttached=!1)}}]),e}()).\\u0275fac=function(e){return new(e||xw)(et(Wc))},xw.\\u0275prov=_e({factory:function(){return new xw(et(Wc))},token:xw,providedIn:\"root\"}),xw),Yw=!(\"undefined\"==typeof window||!window||!window.__karma__&&!window.jasmine),Ew=((Dw=function(){function e(t,n){_classCallCheck(this,e),this._platform=n,this._document=t}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){var e=this._containerElement;e&&e.parentNode&&e.parentNode.removeChild(e)}},{key:\"getContainerElement\",value:function(){return this._containerElement||this._createContainer(),this._containerElement}},{key:\"_createContainer\",value:function(){var e=this._platform?this._platform.isBrowser:\"undefined\"!=typeof window;if(e||Yw)for(var t=this._document.querySelectorAll('.cdk-overlay-container[platform=\"server\"], .cdk-overlay-container[platform=\"test\"]'),n=0;nf&&(f=_,h=p)}}catch(v){m.e(v)}finally{m.f()}return this._isPushed=!1,void this._applyPosition(h.position,h.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(e.position,e.originPoint);this._applyPosition(e.position,e.originPoint)}}},{key:\"detach\",value:function(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}},{key:\"dispose\",value:function(){this._isDisposed||(this._boundingBox&&Pw(this._boundingBox.style,{top:\"\",left:\"\",right:\"\",bottom:\"\",height:\"\",width:\"\",alignItems:\"\",justifyContent:\"\"}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(\"cdk-overlay-connected-position-bounding-box\"),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}},{key:\"reapplyLastPosition\",value:function(){if(!this._isDisposed&&(!this._platform||this._platform.isBrowser)){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect();var e=this._lastPosition||this._preferredPositions[0],t=this._getOriginPoint(this._originRect,e);this._applyPosition(e,t)}}},{key:\"withScrollableContainers\",value:function(e){return this._scrollables=e,this}},{key:\"withPositions\",value:function(e){return this._preferredPositions=e,-1===e.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}},{key:\"withViewportMargin\",value:function(e){return this._viewportMargin=e,this}},{key:\"withFlexibleDimensions\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._hasFlexibleDimensions=e,this}},{key:\"withGrowAfterOpen\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._growAfterOpen=e,this}},{key:\"withPush\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._canPush=e,this}},{key:\"withLockedPosition\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._positionLocked=e,this}},{key:\"setOrigin\",value:function(e){return this._origin=e,this}},{key:\"withDefaultOffsetX\",value:function(e){return this._offsetX=e,this}},{key:\"withDefaultOffsetY\",value:function(e){return this._offsetY=e,this}},{key:\"withTransformOriginOn\",value:function(e){return this._transformOriginSelector=e,this}},{key:\"_getOriginPoint\",value:function(e,t){var n;if(\"center\"==t.originX)n=e.left+e.width/2;else{var r=this._isRtl()?e.right:e.left,i=this._isRtl()?e.left:e.right;n=\"start\"==t.originX?r:i}return{x:n,y:\"center\"==t.originY?e.top+e.height/2:\"top\"==t.originY?e.top:e.bottom}}},{key:\"_getOverlayPoint\",value:function(e,t,n){var r,i;return r=\"center\"==n.overlayX?-t.width/2:\"start\"===n.overlayX?this._isRtl()?-t.width:0:this._isRtl()?0:-t.width,i=\"center\"==n.overlayY?-t.height/2:\"top\"==n.overlayY?0:-t.height,{x:e.x+r,y:e.y+i}}},{key:\"_getOverlayFit\",value:function(e,t,n,r){var i=e.x,a=e.y,o=this._getOffset(r,\"x\"),s=this._getOffset(r,\"y\");o&&(i+=o),s&&(a+=s);var l=0-a,u=a+t.height-n.height,c=this._subtractOverflows(t.width,0-i,i+t.width-n.width),d=this._subtractOverflows(t.height,l,u),h=c*d;return{visibleArea:h,isCompletelyWithinViewport:t.width*t.height===h,fitsInViewportVertically:d===t.height,fitsInViewportHorizontally:c==t.width}}},{key:\"_canFitWithFlexibleDimensions\",value:function(e,t,n){if(this._hasFlexibleDimensions){var r=n.bottom-t.y,i=n.right-t.x,a=this._overlayRef.getConfig().minHeight,o=this._overlayRef.getConfig().minWidth,s=e.fitsInViewportHorizontally||null!=o&&o<=i;return(e.fitsInViewportVertically||null!=a&&a<=r)&&s}return!1}},{key:\"_pushOverlayOnScreen\",value:function(e,t,n){if(this._previousPushAmount&&this._positionLocked)return{x:e.x+this._previousPushAmount.x,y:e.y+this._previousPushAmount.y};var r,i,a=this._viewportRect,o=Math.max(e.x+t.width-a.right,0),s=Math.max(e.y+t.height-a.bottom,0),l=Math.max(a.top-n.top-e.y,0),u=Math.max(a.left-n.left-e.x,0);return r=t.width<=a.width?u||-o:e.xd&&!this._isInitialRender&&!this._growAfterOpen&&(r=e.y-d/2)}if(\"end\"===t.overlayX&&!u||\"start\"===t.overlayX&&u)s=l.width-e.x+this._viewportMargin,a=e.x-this._viewportMargin;else if(\"start\"===t.overlayX&&!u||\"end\"===t.overlayX&&u)o=e.x,a=l.right-e.x;else{var h=Math.min(l.right-e.x+l.left,e.x),f=this._lastBoundingBoxSize.width;a=2*h,o=e.x-h,a>f&&!this._isInitialRender&&!this._growAfterOpen&&(o=e.x-f/2)}return{top:r,left:o,bottom:i,right:s,width:a,height:n}}},{key:\"_setBoundingBoxStyles\",value:function(e,t){var n=this._calculateBoundingBoxRect(e,t);this._isInitialRender||this._growAfterOpen||(n.height=Math.min(n.height,this._lastBoundingBoxSize.height),n.width=Math.min(n.width,this._lastBoundingBoxSize.width));var r={};if(this._hasExactPosition())r.top=r.left=\"0\",r.bottom=r.right=r.maxHeight=r.maxWidth=\"\",r.width=r.height=\"100%\";else{var i=this._overlayRef.getConfig().maxHeight,a=this._overlayRef.getConfig().maxWidth;r.height=vp(n.height),r.top=vp(n.top),r.bottom=vp(n.bottom),r.width=vp(n.width),r.left=vp(n.left),r.right=vp(n.right),r.alignItems=\"center\"===t.overlayX?\"center\":\"end\"===t.overlayX?\"flex-end\":\"flex-start\",r.justifyContent=\"center\"===t.overlayY?\"center\":\"bottom\"===t.overlayY?\"flex-end\":\"flex-start\",i&&(r.maxHeight=vp(i)),a&&(r.maxWidth=vp(a))}this._lastBoundingBoxSize=n,Pw(this._boundingBox.style,r)}},{key:\"_resetBoundingBoxStyles\",value:function(){Pw(this._boundingBox.style,{top:\"0\",left:\"0\",right:\"0\",bottom:\"0\",height:\"\",width:\"\",alignItems:\"\",justifyContent:\"\"})}},{key:\"_resetOverlayElementStyles\",value:function(){Pw(this._pane.style,{top:\"\",left:\"\",bottom:\"\",right:\"\",position:\"\",transform:\"\"})}},{key:\"_setOverlayElementStyles\",value:function(e,t){var n={},r=this._hasExactPosition(),i=this._hasFlexibleDimensions,a=this._overlayRef.getConfig();if(r){var o=this._viewportRuler.getViewportScrollPosition();Pw(n,this._getExactOverlayY(t,e,o)),Pw(n,this._getExactOverlayX(t,e,o))}else n.position=\"static\";var s=\"\",l=this._getOffset(t,\"x\"),u=this._getOffset(t,\"y\");l&&(s+=\"translateX(\".concat(l,\"px) \")),u&&(s+=\"translateY(\".concat(u,\"px)\")),n.transform=s.trim(),a.maxHeight&&(r?n.maxHeight=vp(a.maxHeight):i&&(n.maxHeight=\"\")),a.maxWidth&&(r?n.maxWidth=vp(a.maxWidth):i&&(n.maxWidth=\"\")),Pw(this._pane.style,n)}},{key:\"_getExactOverlayY\",value:function(e,t,n){var r={top:\"\",bottom:\"\"},i=this._getOverlayPoint(t,this._overlayRect,e);this._isPushed&&(i=this._pushOverlayOnScreen(i,this._overlayRect,n));var a=this._overlayContainer.getContainerElement().getBoundingClientRect().top;return i.y-=a,\"bottom\"===e.overlayY?r.bottom=\"\".concat(this._document.documentElement.clientHeight-(i.y+this._overlayRect.height),\"px\"):r.top=vp(i.y),r}},{key:\"_getExactOverlayX\",value:function(e,t,n){var r={left:\"\",right:\"\"},i=this._getOverlayPoint(t,this._overlayRect,e);return this._isPushed&&(i=this._pushOverlayOnScreen(i,this._overlayRect,n)),\"right\"===(this._isRtl()?\"end\"===e.overlayX?\"left\":\"right\":\"end\"===e.overlayX?\"right\":\"left\")?r.right=\"\".concat(this._document.documentElement.clientWidth-(i.x+this._overlayRect.width),\"px\"):r.left=vp(i.x),r}},{key:\"_getScrollVisibility\",value:function(){var e=this._getOriginRect(),t=this._pane.getBoundingClientRect(),n=this._scrollables.map((function(e){return e.getElementRef().nativeElement.getBoundingClientRect()}));return{isOriginClipped:yw(e,n),isOriginOutsideView:gw(e,n),isOverlayClipped:yw(t,n),isOverlayOutsideView:gw(t,n)}}},{key:\"_subtractOverflows\",value:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r0&&void 0!==arguments[0]?arguments[0]:\"\";return this._bottomOffset=\"\",this._topOffset=e,this._alignItems=\"flex-start\",this}},{key:\"left\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._rightOffset=\"\",this._leftOffset=e,this._justifyContent=\"flex-start\",this}},{key:\"bottom\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._topOffset=\"\",this._bottomOffset=e,this._alignItems=\"flex-end\",this}},{key:\"right\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._leftOffset=\"\",this._rightOffset=e,this._justifyContent=\"flex-end\",this}},{key:\"width\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._overlayRef?this._overlayRef.updateSize({width:e}):this._width=e,this}},{key:\"height\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._overlayRef?this._overlayRef.updateSize({height:e}):this._height=e,this}},{key:\"centerHorizontally\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this.left(e),this._justifyContent=\"center\",this}},{key:\"centerVertically\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this.top(e),this._alignItems=\"center\",this}},{key:\"apply\",value:function(){if(this._overlayRef&&this._overlayRef.hasAttached()){var e=this._overlayRef.overlayElement.style,t=this._overlayRef.hostElement.style,n=this._overlayRef.getConfig(),r=n.width,i=n.height,a=n.maxWidth,o=n.maxHeight,s=!(\"100%\"!==r&&\"100vw\"!==r||a&&\"100%\"!==a&&\"100vw\"!==a),l=!(\"100%\"!==i&&\"100vh\"!==i||o&&\"100%\"!==o&&\"100vh\"!==o);e.position=this._cssPosition,e.marginLeft=s?\"0\":this._leftOffset,e.marginTop=l?\"0\":this._topOffset,e.marginBottom=this._bottomOffset,e.marginRight=this._rightOffset,s?t.justifyContent=\"flex-start\":\"center\"===this._justifyContent?t.justifyContent=\"center\":\"rtl\"===this._overlayRef.getConfig().direction?\"flex-start\"===this._justifyContent?t.justifyContent=\"flex-end\":\"flex-end\"===this._justifyContent&&(t.justifyContent=\"flex-start\"):t.justifyContent=this._justifyContent,t.alignItems=l?\"flex-start\":this._alignItems}}},{key:\"dispose\",value:function(){if(!this._isDisposed&&this._overlayRef){var e=this._overlayRef.overlayElement.style,t=this._overlayRef.hostElement,n=t.style;t.classList.remove(\"cdk-global-overlay-wrapper\"),n.justifyContent=n.alignItems=e.marginTop=e.marginBottom=e.marginLeft=e.marginRight=e.position=\"\",this._overlayRef=null,this._isDisposed=!0}}}]),e}(),Ww=((Rw=function(){function e(t,n,r,i){_classCallCheck(this,e),this._viewportRuler=t,this._document=n,this._platform=r,this._overlayContainer=i}return _createClass(e,[{key:\"global\",value:function(){return new Vw}},{key:\"connectedTo\",value:function(e,t,n){return new zw(t,n,e,this._viewportRuler,this._document,this._platform,this._overlayContainer)}},{key:\"flexibleConnectedTo\",value:function(e){return new Aw(e,this._viewportRuler,this._document,this._platform,this._overlayContainer)}}]),e}()).\\u0275fac=function(e){return new(e||Rw)(et(tw),et(Wc),et(Cp),et(Ew))},Rw.\\u0275prov=_e({factory:function(){return new Rw(et(tw),et(Wc),et(Cp),et(Ew))},token:Rw,providedIn:\"root\"}),Rw),Uw=0,Bw=((jw=function(){function e(t,n,r,i,a,o,s,l,u,c){_classCallCheck(this,e),this.scrollStrategies=t,this._overlayContainer=n,this._componentFactoryResolver=r,this._positionBuilder=i,this._keyboardDispatcher=a,this._injector=o,this._ngZone=s,this._document=l,this._directionality=u,this._location=c}return _createClass(e,[{key:\"create\",value:function(e){var t=this._createHostElement(),n=this._createPaneElement(t),r=this._createPortalOutlet(n),i=new Cw(e);return i.direction=i.direction||this._directionality.value,new Iw(r,t,n,i,this._ngZone,this._keyboardDispatcher,this._document,this._location)}},{key:\"position\",value:function(){return this._positionBuilder}},{key:\"_createPaneElement\",value:function(e){var t=this._document.createElement(\"div\");return t.id=\"cdk-overlay-\".concat(Uw++),t.classList.add(\"cdk-overlay-pane\"),e.appendChild(t),t}},{key:\"_createHostElement\",value:function(){var e=this._document.createElement(\"div\");return this._overlayContainer.getContainerElement().appendChild(e),e}},{key:\"_createPortalOutlet\",value:function(e){return this._appRef||(this._appRef=this._injector.get(Oc)),new dw(e,this._componentFactoryResolver,this._appRef,this._injector,this._document)}}]),e}()).\\u0275fac=function(e){return new(e||jw)(et(ww),et(Ew),et(Zs),et(Ww),et(Ow),et(vo),et(cc),et(Wc),et(h_),et(ud,8))},jw.\\u0275prov=_e({token:jw,factory:jw.\\u0275fac}),jw),qw=[{originX:\"start\",originY:\"bottom\",overlayX:\"start\",overlayY:\"top\"},{originX:\"start\",originY:\"top\",overlayX:\"start\",overlayY:\"bottom\"},{originX:\"end\",originY:\"top\",overlayX:\"end\",overlayY:\"bottom\"},{originX:\"end\",originY:\"bottom\",overlayX:\"end\",overlayY:\"top\"}],Gw=new Be(\"cdk-connected-overlay-scroll-strategy\"),$w=((Fw=function e(t){_classCallCheck(this,e),this.elementRef=t}).\\u0275fac=function(e){return new(e||Fw)(Io(Qs))},Fw.\\u0275dir=Lt({type:Fw,selectors:[[\"\",\"cdk-overlay-origin\",\"\"],[\"\",\"overlay-origin\",\"\"],[\"\",\"cdkOverlayOrigin\",\"\"]],exportAs:[\"cdkOverlayOrigin\"]}),Fw),Jw=((Hw=function(){function e(t,n,r,i,a){_classCallCheck(this,e),this._overlay=t,this._dir=a,this._hasBackdrop=!1,this._lockPosition=!1,this._growAfterOpen=!1,this._flexibleDimensions=!1,this._push=!1,this._backdropSubscription=h.EMPTY,this.viewportMargin=0,this.open=!1,this.backdropClick=new bu,this.positionChange=new bu,this.attach=new bu,this.detach=new bu,this.overlayKeydown=new bu,this._templatePortal=new lw(n,r),this._scrollStrategyFactory=i,this.scrollStrategy=this._scrollStrategyFactory()}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){this._overlayRef&&this._overlayRef.dispose(),this._backdropSubscription.unsubscribe()}},{key:\"ngOnChanges\",value:function(e){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),e.origin&&this.open&&this._position.apply()),e.open&&(this.open?this._attachOverlay():this._detachOverlay())}},{key:\"_createOverlay\",value:function(){var e=this;this.positions&&this.positions.length||(this.positions=qw),this._overlayRef=this._overlay.create(this._buildConfig()),this._overlayRef.keydownEvents().subscribe((function(t){e.overlayKeydown.next(t),27!==t.keyCode||Jm(t)||(t.preventDefault(),e._detachOverlay())}))}},{key:\"_buildConfig\",value:function(){var e=this._position=this.positionStrategy||this._createPositionStrategy(),t=new Cw({direction:this._dir,positionStrategy:e,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop});return(this.width||0===this.width)&&(t.width=this.width),(this.height||0===this.height)&&(t.height=this.height),(this.minWidth||0===this.minWidth)&&(t.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(t.minHeight=this.minHeight),this.backdropClass&&(t.backdropClass=this.backdropClass),this.panelClass&&(t.panelClass=this.panelClass),t}},{key:\"_updatePositionStrategy\",value:function(e){var t=this,n=this.positions.map((function(e){return{originX:e.originX,originY:e.originY,overlayX:e.overlayX,overlayY:e.overlayY,offsetX:e.offsetX||t.offsetX,offsetY:e.offsetY||t.offsetY,panelClass:e.panelClass||void 0}}));return e.setOrigin(this.origin.elementRef).withPositions(n).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}},{key:\"_createPositionStrategy\",value:function(){var e=this,t=this._overlay.position().flexibleConnectedTo(this.origin.elementRef);return this._updatePositionStrategy(t),t.positionChanges.subscribe((function(t){return e.positionChange.emit(t)})),t}},{key:\"_attachOverlay\",value:function(){var e=this;this._overlayRef?this._overlayRef.getConfig().hasBackdrop=this.hasBackdrop:this._createOverlay(),this._overlayRef.hasAttached()||(this._overlayRef.attach(this._templatePortal),this.attach.emit()),this.hasBackdrop?this._backdropSubscription=this._overlayRef.backdropClick().subscribe((function(t){e.backdropClick.emit(t)})):this._backdropSubscription.unsubscribe()}},{key:\"_detachOverlay\",value:function(){this._overlayRef&&(this._overlayRef.detach(),this.detach.emit()),this._backdropSubscription.unsubscribe()}},{key:\"offsetX\",get:function(){return this._offsetX},set:function(e){this._offsetX=e,this._position&&this._updatePositionStrategy(this._position)}},{key:\"offsetY\",get:function(){return this._offsetY},set:function(e){this._offsetY=e,this._position&&this._updatePositionStrategy(this._position)}},{key:\"hasBackdrop\",get:function(){return this._hasBackdrop},set:function(e){this._hasBackdrop=mp(e)}},{key:\"lockPosition\",get:function(){return this._lockPosition},set:function(e){this._lockPosition=mp(e)}},{key:\"flexibleDimensions\",get:function(){return this._flexibleDimensions},set:function(e){this._flexibleDimensions=mp(e)}},{key:\"growAfterOpen\",get:function(){return this._growAfterOpen},set:function(e){this._growAfterOpen=mp(e)}},{key:\"push\",get:function(){return this._push},set:function(e){this._push=mp(e)}},{key:\"overlayRef\",get:function(){return this._overlayRef}},{key:\"dir\",get:function(){return this._dir?this._dir.value:\"ltr\"}}]),e}()).\\u0275fac=function(e){return new(e||Hw)(Io(Bw),Io(wl),Io(Ml),Io(Gw),Io(h_,8))},Hw.\\u0275dir=Lt({type:Hw,selectors:[[\"\",\"cdk-connected-overlay\",\"\"],[\"\",\"connected-overlay\",\"\"],[\"\",\"cdkConnectedOverlay\",\"\"]],inputs:{viewportMargin:[\"cdkConnectedOverlayViewportMargin\",\"viewportMargin\"],open:[\"cdkConnectedOverlayOpen\",\"open\"],scrollStrategy:[\"cdkConnectedOverlayScrollStrategy\",\"scrollStrategy\"],offsetX:[\"cdkConnectedOverlayOffsetX\",\"offsetX\"],offsetY:[\"cdkConnectedOverlayOffsetY\",\"offsetY\"],hasBackdrop:[\"cdkConnectedOverlayHasBackdrop\",\"hasBackdrop\"],lockPosition:[\"cdkConnectedOverlayLockPosition\",\"lockPosition\"],flexibleDimensions:[\"cdkConnectedOverlayFlexibleDimensions\",\"flexibleDimensions\"],growAfterOpen:[\"cdkConnectedOverlayGrowAfterOpen\",\"growAfterOpen\"],push:[\"cdkConnectedOverlayPush\",\"push\"],positions:[\"cdkConnectedOverlayPositions\",\"positions\"],origin:[\"cdkConnectedOverlayOrigin\",\"origin\"],positionStrategy:[\"cdkConnectedOverlayPositionStrategy\",\"positionStrategy\"],width:[\"cdkConnectedOverlayWidth\",\"width\"],height:[\"cdkConnectedOverlayHeight\",\"height\"],minWidth:[\"cdkConnectedOverlayMinWidth\",\"minWidth\"],minHeight:[\"cdkConnectedOverlayMinHeight\",\"minHeight\"],backdropClass:[\"cdkConnectedOverlayBackdropClass\",\"backdropClass\"],panelClass:[\"cdkConnectedOverlayPanelClass\",\"panelClass\"],transformOriginSelector:[\"cdkConnectedOverlayTransformOriginOn\",\"transformOriginSelector\"]},outputs:{backdropClick:\"backdropClick\",positionChange:\"positionChange\",attach:\"attach\",detach:\"detach\",overlayKeydown:\"overlayKeydown\"},exportAs:[\"cdkConnectedOverlay\"],features:[Hs]}),Hw),Kw={provide:Gw,deps:[Bw],useFactory:function(e){return function(){return e.scrollStrategies.reposition()}}},Zw=((Nw=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Nw}),Nw.\\u0275inj=ve({factory:function(e){return new(e||Nw)},providers:[Bw,Kw],imports:[[f_,fw,nw],nw]}),Nw);function Qw(e){return new w((function(t){var n;try{n=e()}catch(r){return void t.error(r)}return(n?W(n):up()).subscribe(t)}))}function Xw(e,t){}var eC=function e(){_classCallCheck(this,e),this.role=\"dialog\",this.panelClass=\"\",this.hasBackdrop=!0,this.backdropClass=\"\",this.disableClose=!1,this.width=\"\",this.height=\"\",this.maxWidth=\"80vw\",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.autoFocus=!0,this.restoreFocus=!0,this.closeOnNavigation=!0},tC={dialogContainer:uv(\"dialogContainer\",[fv(\"void, exit\",hv({opacity:0,transform:\"scale(0.7)\"})),fv(\"enter\",hv({transform:\"none\"})),mv(\"* => enter\",cv(\"150ms cubic-bezier(0, 0, 0.2, 1)\",hv({transform:\"none\",opacity:1}))),mv(\"* => void, * => exit\",cv(\"75ms cubic-bezier(0.4, 0.0, 0.2, 1)\",hv({opacity:0})))])};function nC(){throw Error(\"Attempting to attach dialog content after content is already attached\")}var rC,iC,aC,oC=((rC=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this))._elementRef=e,s._focusTrapFactory=r,s._changeDetectorRef=i,s._config=o,s._elementFocusedBeforeDialogWasOpened=null,s._state=\"enter\",s._animationStateChanged=new bu,s.attachDomPortal=function(e){return s._portalOutlet.hasAttached()&&nC(),s._savePreviouslyFocusedElement(),s._portalOutlet.attachDomPortal(e)},s._ariaLabelledBy=o.ariaLabelledBy||null,s._document=a,s}return _createClass(n,[{key:\"attachComponentPortal\",value:function(e){return this._portalOutlet.hasAttached()&&nC(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachComponentPortal(e)}},{key:\"attachTemplatePortal\",value:function(e){return this._portalOutlet.hasAttached()&&nC(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachTemplatePortal(e)}},{key:\"_trapFocus\",value:function(){var e=this._elementRef.nativeElement;if(this._focusTrap||(this._focusTrap=this._focusTrapFactory.create(e)),this._config.autoFocus)this._focusTrap.focusInitialElementWhenReady();else{var t=this._document.activeElement;t===e||e.contains(t)||e.focus()}}},{key:\"_restoreFocus\",value:function(){var e=this._elementFocusedBeforeDialogWasOpened;if(this._config.restoreFocus&&e&&\"function\"==typeof e.focus){var t=this._document.activeElement,n=this._elementRef.nativeElement;t&&t!==this._document.body&&t!==n&&!n.contains(t)||e.focus()}this._focusTrap&&this._focusTrap.destroy()}},{key:\"_savePreviouslyFocusedElement\",value:function(){var e=this;this._document&&(this._elementFocusedBeforeDialogWasOpened=this._document.activeElement,this._elementRef.nativeElement.focus&&Promise.resolve().then((function(){return e._elementRef.nativeElement.focus()})))}},{key:\"_onAnimationDone\",value:function(e){\"enter\"===e.toState?this._trapFocus():\"exit\"===e.toState&&this._restoreFocus(),this._animationStateChanged.emit(e)}},{key:\"_onAnimationStart\",value:function(e){this._animationStateChanged.emit(e)}},{key:\"_startExitAnimation\",value:function(){this._state=\"exit\",this._changeDetectorRef.markForCheck()}}]),n}(cw)).\\u0275fac=function(e){return new(e||rC)(Io(Qs),Io(Kp),Io(eo),Io(Wc,8),Io(eC))},rC.\\u0275cmp=bt({type:rC,selectors:[[\"mat-dialog-container\"]],viewQuery:function(e,t){var n;1&e&&Eu(hw,!0),2&e&&Yu(n=Hu())&&(t._portalOutlet=n.first)},hostAttrs:[\"tabindex\",\"-1\",\"aria-modal\",\"true\",1,\"mat-dialog-container\"],hostVars:6,hostBindings:function(e,t){1&e&&Go(\"@dialogContainer.start\",(function(e){return t._onAnimationStart(e)}))(\"@dialogContainer.done\",(function(e){return t._onAnimationDone(e)})),2&e&&(Do(\"id\",t._id)(\"role\",t._config.role)(\"aria-labelledby\",t._config.ariaLabel?null:t._ariaLabelledBy)(\"aria-label\",t._config.ariaLabel)(\"aria-describedby\",t._config.ariaDescribedBy||null),Os(\"@dialogContainer\",t._state))},features:[Es],decls:1,vars:0,consts:[[\"cdkPortalOutlet\",\"\"]],template:function(e,t){1&e&&Yo(0,Xw,0,0,\"ng-template\",0)},directives:[hw],styles:[\".mat-dialog-container{display:block;padding:24px;border-radius:4px;box-sizing:border-box;overflow:auto;outline:0;width:100%;height:100%;min-height:inherit;max-height:inherit}.cdk-high-contrast-active .mat-dialog-container{outline:solid 1px}.mat-dialog-content{display:block;margin:0 -24px;padding:0 24px;max-height:65vh;overflow:auto;-webkit-overflow-scrolling:touch}.mat-dialog-title{margin:0 0 20px;display:block}.mat-dialog-actions{padding:8px 0;display:flex;flex-wrap:wrap;min-height:52px;align-items:center;margin-bottom:-24px}.mat-dialog-actions[align=end]{justify-content:flex-end}.mat-dialog-actions[align=center]{justify-content:center}.mat-dialog-actions .mat-button-base+.mat-button-base,.mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}\\n\"],encapsulation:2,data:{animation:[tC.dialogContainer]}}),rC),sC=0,lC=function(){function e(t,n){var r=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:\"mat-dialog-\".concat(sC++);_classCallCheck(this,e),this._overlayRef=t,this._containerInstance=n,this.id=i,this.disableClose=this._containerInstance._config.disableClose,this._afterOpened=new x,this._afterClosed=new x,this._beforeClosed=new x,this._state=0,n._id=i,n._animationStateChanged.pipe(Gd((function(e){return\"done\"===e.phaseName&&\"enter\"===e.toState})),cp(1)).subscribe((function(){r._afterOpened.next(),r._afterOpened.complete()})),n._animationStateChanged.pipe(Gd((function(e){return\"done\"===e.phaseName&&\"exit\"===e.toState})),cp(1)).subscribe((function(){clearTimeout(r._closeFallbackTimeout),r._overlayRef.dispose()})),t.detachments().subscribe((function(){r._beforeClosed.next(r._result),r._beforeClosed.complete(),r._afterClosed.next(r._result),r._afterClosed.complete(),r.componentInstance=null,r._overlayRef.dispose()})),t.keydownEvents().pipe(Gd((function(e){return 27===e.keyCode&&!r.disableClose&&!Jm(e)}))).subscribe((function(e){e.preventDefault(),r.close()}))}return _createClass(e,[{key:\"close\",value:function(e){var t=this;this._result=e,this._containerInstance._animationStateChanged.pipe(Gd((function(e){return\"start\"===e.phaseName})),cp(1)).subscribe((function(n){t._beforeClosed.next(e),t._beforeClosed.complete(),t._state=2,t._overlayRef.detachBackdrop(),t._closeFallbackTimeout=setTimeout((function(){t._overlayRef.dispose()}),n.totalTime+100)})),this._containerInstance._startExitAnimation(),this._state=1}},{key:\"afterOpened\",value:function(){return this._afterOpened.asObservable()}},{key:\"afterClosed\",value:function(){return this._afterClosed.asObservable()}},{key:\"beforeClosed\",value:function(){return this._beforeClosed.asObservable()}},{key:\"backdropClick\",value:function(){return this._overlayRef.backdropClick()}},{key:\"keydownEvents\",value:function(){return this._overlayRef.keydownEvents()}},{key:\"updatePosition\",value:function(e){var t=this._getPositionStrategy();return e&&(e.left||e.right)?e.left?t.left(e.left):t.right(e.right):t.centerHorizontally(),e&&(e.top||e.bottom)?e.top?t.top(e.top):t.bottom(e.bottom):t.centerVertically(),this._overlayRef.updatePosition(),this}},{key:\"updateSize\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\";return this._getPositionStrategy().width(e).height(t),this._overlayRef.updatePosition(),this}},{key:\"addPanelClass\",value:function(e){return this._overlayRef.addPanelClass(e),this}},{key:\"removePanelClass\",value:function(e){return this._overlayRef.removePanelClass(e),this}},{key:\"getState\",value:function(){return this._state}},{key:\"_getPositionStrategy\",value:function(){return this._overlayRef.getConfig().positionStrategy}}]),e}(),uC=new Be(\"MatDialogData\"),cC=new Be(\"mat-dialog-default-options\"),dC=new Be(\"mat-dialog-scroll-strategy\"),hC={provide:dC,deps:[Bw],useFactory:function(e){return function(){return e.scrollStrategies.block()}}},fC=((aC=function(){function e(t,n,r,i,a,o,s){var l=this;_classCallCheck(this,e),this._overlay=t,this._injector=n,this._defaultOptions=i,this._parentDialog=o,this._overlayContainer=s,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new x,this._afterOpenedAtThisLevel=new x,this._ariaHiddenElements=new Map,this.afterAllClosed=Qw((function(){return l.openDialogs.length?l._afterAllClosed:l._afterAllClosed.pipe(sv(void 0))})),this._scrollStrategy=a}return _createClass(e,[{key:\"open\",value:function(e,t){var n=this;if((t=function(e,t){return Object.assign(Object.assign({},t),e)}(t,this._defaultOptions||new eC)).id&&this.getDialogById(t.id))throw Error('Dialog with id \"'.concat(t.id,'\" exists already. The dialog id must be unique.'));var r=this._createOverlay(t),i=this._attachDialogContainer(r,t),a=this._attachDialogContent(e,i,r,t);return this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(a),a.afterClosed().subscribe((function(){return n._removeOpenDialog(a)})),this.afterOpened.next(a),a}},{key:\"closeAll\",value:function(){this._closeDialogs(this.openDialogs)}},{key:\"getDialogById\",value:function(e){return this.openDialogs.find((function(t){return t.id===e}))}},{key:\"ngOnDestroy\",value:function(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}},{key:\"_createOverlay\",value:function(e){var t=this._getOverlayConfig(e);return this._overlay.create(t)}},{key:\"_getOverlayConfig\",value:function(e){var t=new Cw({positionStrategy:this._overlay.position().global(),scrollStrategy:e.scrollStrategy||this._scrollStrategy(),panelClass:e.panelClass,hasBackdrop:e.hasBackdrop,direction:e.direction,minWidth:e.minWidth,minHeight:e.minHeight,maxWidth:e.maxWidth,maxHeight:e.maxHeight,disposeOnNavigation:e.closeOnNavigation});return e.backdropClass&&(t.backdropClass=e.backdropClass),t}},{key:\"_attachDialogContainer\",value:function(e,t){var n=vo.create({parent:t&&t.viewContainerRef&&t.viewContainerRef.injector||this._injector,providers:[{provide:eC,useValue:t}]}),r=new sw(oC,t.viewContainerRef,n,t.componentFactoryResolver);return e.attach(r).instance}},{key:\"_attachDialogContent\",value:function(e,t,n,r){var i=new lC(n,t,r.id);if(r.hasBackdrop&&n.backdropClick().subscribe((function(){i.disableClose||i.close()})),e instanceof wl)t.attachTemplatePortal(new lw(e,null,{$implicit:r.data,dialogRef:i}));else{var a=this._createInjector(r,i,t),o=t.attachComponentPortal(new sw(e,r.viewContainerRef,a));i.componentInstance=o.instance}return i.updateSize(r.width,r.height).updatePosition(r.position),i}},{key:\"_createInjector\",value:function(e,t,n){var r=e&&e.viewContainerRef&&e.viewContainerRef.injector,i=[{provide:oC,useValue:n},{provide:uC,useValue:e.data},{provide:lC,useValue:t}];return!e.direction||r&&r.get(h_,null)||i.push({provide:h_,useValue:{value:e.direction,change:Bd()}}),vo.create({parent:r||this._injector,providers:i})}},{key:\"_removeOpenDialog\",value:function(e){var t=this.openDialogs.indexOf(e);t>-1&&(this.openDialogs.splice(t,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((function(e,t){e?t.setAttribute(\"aria-hidden\",e):t.removeAttribute(\"aria-hidden\")})),this._ariaHiddenElements.clear(),this._afterAllClosed.next()))}},{key:\"_hideNonDialogContentFromAssistiveTechnology\",value:function(){var e=this._overlayContainer.getContainerElement();if(e.parentElement)for(var t=e.parentElement.children,n=t.length-1;n>-1;n--){var r=t[n];r===e||\"SCRIPT\"===r.nodeName||\"STYLE\"===r.nodeName||r.hasAttribute(\"aria-live\")||(this._ariaHiddenElements.set(r,r.getAttribute(\"aria-hidden\")),r.setAttribute(\"aria-hidden\",\"true\"))}}},{key:\"_closeDialogs\",value:function(e){for(var t=e.length;t--;)e[t].close()}},{key:\"openDialogs\",get:function(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}},{key:\"afterOpened\",get:function(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}},{key:\"_afterAllClosed\",get:function(){var e=this._parentDialog;return e?e._afterAllClosed:this._afterAllClosedAtThisLevel}}]),e}()).\\u0275fac=function(e){return new(e||aC)(et(Bw),et(vo),et(ud,8),et(cC,8),et(dC),et(aC,12),et(Ew))},aC.\\u0275prov=_e({token:aC,factory:aC.\\u0275fac}),aC),mC=((iC=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:iC}),iC.\\u0275inj=ve({factory:function(e){return new(e||iC)},providers:[fC,hC],imports:[[Zw,fw,zy],zy]}),iC);function pC(e){return function(t){var n=new _C(e),r=t.lift(n);return n.caught=r}}var _C=function(){function e(t){_classCallCheck(this,e),this.selector=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new vC(e,this.selector,this.caught))}}]),e}(),vC=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).selector=r,a.caught=i,a}return _createClass(n,[{key:\"error\",value:function(e){if(!this.isStopped){var t;try{t=this.selector(e,this.caught)}catch(a){return void _get(_getPrototypeOf(n.prototype),\"error\",this).call(this,a)}this._unsubscribeAndRecycle();var r=new Y(this,void 0,void 0);this.add(r);var i=R(this,t,void 0,void 0,r);i!==r&&this.add(i)}}}]),n}(H);function gC(e){return function(t){return t.lift(new yC(e))}}var yC=function(){function e(t){_classCallCheck(this,e),this.callback=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new bC(e,this.callback))}}]),e}(),bC=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).add(new h(r)),i}return n}(p),kC=[\"*\"];function wC(e){return Error('Unable to find icon with the name \"'.concat(e,'\"'))}function CC(e){return Error(\"The URL provided to MatIconRegistry was not trusted as a resource URL \"+\"via Angular's DomSanitizer. Attempted URL was \\\"\".concat(e,'\".'))}function MC(e){return Error(\"The literal provided to MatIconRegistry was not trusted as safe HTML by \"+\"Angular's DomSanitizer. Attempted literal was \\\"\".concat(e,'\".'))}var SC,LC=function e(t,n){_classCallCheck(this,e),this.options=n,t.nodeName?this.svgElement=t:this.url=t},TC=((SC=function(){function e(t,n,r,i){_classCallCheck(this,e),this._httpClient=t,this._sanitizer=n,this._errorHandler=i,this._svgIconConfigs=new Map,this._iconSetConfigs=new Map,this._cachedIconsByUrl=new Map,this._inProgressUrlFetches=new Map,this._fontCssClassesByAlias=new Map,this._defaultFontSetClass=\"material-icons\",this._document=r}return _createClass(e,[{key:\"addSvgIcon\",value:function(e,t,n){return this.addSvgIconInNamespace(\"\",e,t,n)}},{key:\"addSvgIconLiteral\",value:function(e,t,n){return this.addSvgIconLiteralInNamespace(\"\",e,t,n)}},{key:\"addSvgIconInNamespace\",value:function(e,t,n,r){return this._addSvgIconConfig(e,t,new LC(n,r))}},{key:\"addSvgIconLiteralInNamespace\",value:function(e,t,n,r){var i=this._sanitizer.sanitize(Kr.HTML,n);if(!i)throw MC(n);var a=this._createSvgElementForSingleIcon(i,r);return this._addSvgIconConfig(e,t,new LC(a,r))}},{key:\"addSvgIconSet\",value:function(e,t){return this.addSvgIconSetInNamespace(\"\",e,t)}},{key:\"addSvgIconSetLiteral\",value:function(e,t){return this.addSvgIconSetLiteralInNamespace(\"\",e,t)}},{key:\"addSvgIconSetInNamespace\",value:function(e,t,n){return this._addSvgIconSetConfig(e,new LC(t,n))}},{key:\"addSvgIconSetLiteralInNamespace\",value:function(e,t,n){var r=this._sanitizer.sanitize(Kr.HTML,t);if(!r)throw MC(t);var i=this._svgElementFromString(r);return this._addSvgIconSetConfig(e,new LC(i,n))}},{key:\"registerFontClassAlias\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;return this._fontCssClassesByAlias.set(e,t),this}},{key:\"classNameForFontAlias\",value:function(e){return this._fontCssClassesByAlias.get(e)||e}},{key:\"setDefaultFontSetClass\",value:function(e){return this._defaultFontSetClass=e,this}},{key:\"getDefaultFontSetClass\",value:function(){return this._defaultFontSetClass}},{key:\"getSvgIconFromUrl\",value:function(e){var t=this,n=this._sanitizer.sanitize(Kr.RESOURCE_URL,e);if(!n)throw CC(e);var r=this._cachedIconsByUrl.get(n);return r?Bd(xC(r)):this._loadSvgIconFromConfig(new LC(e)).pipe(Km((function(e){return t._cachedIconsByUrl.set(n,e)})),F((function(e){return xC(e)})))}},{key:\"getNamedSvgIcon\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\",n=DC(t,e),r=this._svgIconConfigs.get(n);if(r)return this._getSvgFromConfig(r);var i=this._iconSetConfigs.get(t);return i?this._getSvgFromIconSetConfigs(e,i):Nk(wC(n))}},{key:\"ngOnDestroy\",value:function(){this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}},{key:\"_getSvgFromConfig\",value:function(e){return e.svgElement?Bd(xC(e.svgElement)):this._loadSvgIconFromConfig(e).pipe(Km((function(t){return e.svgElement=t})),F((function(e){return xC(e)})))}},{key:\"_getSvgFromIconSetConfigs\",value:function(e,t){var n=this,r=this._extractIconWithNameFromAnySet(e,t);return r?Bd(r):Rh(t.filter((function(e){return!e.svgElement})).map((function(e){return n._loadSvgIconSetFromConfig(e).pipe(pC((function(t){var r=\"Loading icon set URL: \".concat(n._sanitizer.sanitize(Kr.RESOURCE_URL,e.url),\" failed: \").concat(t.message);return n._errorHandler?n._errorHandler.handleError(new Error(r)):console.error(r),Bd(null)})))}))).pipe(F((function(){var r=n._extractIconWithNameFromAnySet(e,t);if(!r)throw wC(e);return r})))}},{key:\"_extractIconWithNameFromAnySet\",value:function(e,t){for(var n=t.length-1;n>=0;n--){var r=t[n];if(r.svgElement){var i=this._extractSvgIconFromSet(r.svgElement,e,r.options);if(i)return i}}return null}},{key:\"_loadSvgIconFromConfig\",value:function(e){var t=this;return this._fetchUrl(e.url).pipe(F((function(n){return t._createSvgElementForSingleIcon(n,e.options)})))}},{key:\"_loadSvgIconSetFromConfig\",value:function(e){var t=this;return e.svgElement?Bd(e.svgElement):this._fetchUrl(e.url).pipe(F((function(n){return e.svgElement||(e.svgElement=t._svgElementFromString(n)),e.svgElement})))}},{key:\"_createSvgElementForSingleIcon\",value:function(e,t){var n=this._svgElementFromString(e);return this._setSvgAttributes(n,t),n}},{key:\"_extractSvgIconFromSet\",value:function(e,t,n){var r=e.querySelector('[id=\"'.concat(t,'\"]'));if(!r)return null;var i=r.cloneNode(!0);if(i.removeAttribute(\"id\"),\"svg\"===i.nodeName.toLowerCase())return this._setSvgAttributes(i,n);if(\"symbol\"===i.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(i),n);var a=this._svgElementFromString(\"\");return a.appendChild(i),this._setSvgAttributes(a,n)}},{key:\"_svgElementFromString\",value:function(e){var t=this._document.createElement(\"DIV\");t.innerHTML=e;var n=t.querySelector(\"svg\");if(!n)throw Error(\" tag not found\");return n}},{key:\"_toSvgElement\",value:function(e){for(var t=this._svgElementFromString(\"\"),n=e.attributes,r=0;r enter\",[hv({opacity:0,transform:\"translateY(-100%)\"}),cv(\"300ms cubic-bezier(0.55, 0, 0.55, 0.2)\")])])},hM=((oM=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||oM)},oM.\\u0275dir=Lt({type:oM}),oM);function fM(e){return Error(\"A hint was already declared for 'align=\\\"\".concat(e,\"\\\"'.\"))}var mM,pM,_M,vM,gM,yM,bM,kM,wM,CM=0,MM=((gM=function e(){_classCallCheck(this,e),this.align=\"start\",this.id=\"mat-hint-\".concat(CM++)}).\\u0275fac=function(e){return new(e||gM)},gM.\\u0275dir=Lt({type:gM,selectors:[[\"mat-hint\"]],hostAttrs:[1,\"mat-hint\"],hostVars:4,hostBindings:function(e,t){2&e&&(Do(\"id\",t.id)(\"align\",null),fs(\"mat-right\",\"end\"==t.align))},inputs:{align:\"align\",id:\"id\"}}),gM),SM=((vM=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||vM)},vM.\\u0275dir=Lt({type:vM,selectors:[[\"mat-label\"]]}),vM),LM=((_M=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||_M)},_M.\\u0275dir=Lt({type:_M,selectors:[[\"mat-placeholder\"]]}),_M),TM=((pM=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||pM)},pM.\\u0275dir=Lt({type:pM,selectors:[[\"\",\"matPrefix\",\"\"]]}),pM),xM=((mM=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||mM)},mM.\\u0275dir=Lt({type:mM,selectors:[[\"\",\"matSuffix\",\"\"]]}),mM),DM=0,OM=Wy((function e(t){_classCallCheck(this,e),this._elementRef=t}),\"primary\"),YM=new Be(\"MAT_FORM_FIELD_DEFAULT_OPTIONS\"),EM=((bM=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s,l,u){var c;return _classCallCheck(this,n),(c=t.call(this,e))._elementRef=e,c._changeDetectorRef=r,c._dir=a,c._defaults=o,c._platform=s,c._ngZone=l,c._outlineGapCalculationNeededImmediately=!1,c._outlineGapCalculationNeededOnStable=!1,c._destroyed=new x,c._showAlwaysAnimate=!1,c._subscriptAnimationState=\"\",c._hintLabel=\"\",c._hintLabelId=\"mat-hint-\".concat(DM++),c._labelId=\"mat-form-field-label-\".concat(DM++),c._labelOptions=i||{},c.floatLabel=c._getDefaultFloatLabelState(),c._animationsEnabled=\"NoopAnimations\"!==u,c.appearance=o&&o.appearance?o.appearance:\"legacy\",c._hideRequiredMarker=!(!o||null==o.hideRequiredMarker)&&o.hideRequiredMarker,c}return _createClass(n,[{key:\"getConnectedOverlayOrigin\",value:function(){return this._connectionContainerRef||this._elementRef}},{key:\"ngAfterContentInit\",value:function(){var e=this;this._validateControlChild();var t=this._control;t.controlType&&this._elementRef.nativeElement.classList.add(\"mat-form-field-type-\".concat(t.controlType)),t.stateChanges.pipe(sv(null)).subscribe((function(){e._validatePlaceholders(),e._syncDescribedByIds(),e._changeDetectorRef.markForCheck()})),t.ngControl&&t.ngControl.valueChanges&&t.ngControl.valueChanges.pipe(Ek(this._destroyed)).subscribe((function(){return e._changeDetectorRef.markForCheck()})),this._ngZone.runOutsideAngular((function(){e._ngZone.onStable.asObservable().pipe(Ek(e._destroyed)).subscribe((function(){e._outlineGapCalculationNeededOnStable&&e.updateOutlineGap()}))})),K(this._prefixChildren.changes,this._suffixChildren.changes).subscribe((function(){e._outlineGapCalculationNeededOnStable=!0,e._changeDetectorRef.markForCheck()})),this._hintChildren.changes.pipe(sv(null)).subscribe((function(){e._processHints(),e._changeDetectorRef.markForCheck()})),this._errorChildren.changes.pipe(sv(null)).subscribe((function(){e._syncDescribedByIds(),e._changeDetectorRef.markForCheck()})),this._dir&&this._dir.change.pipe(Ek(this._destroyed)).subscribe((function(){\"function\"==typeof requestAnimationFrame?e._ngZone.runOutsideAngular((function(){requestAnimationFrame((function(){return e.updateOutlineGap()}))})):e.updateOutlineGap()}))}},{key:\"ngAfterContentChecked\",value:function(){this._validateControlChild(),this._outlineGapCalculationNeededImmediately&&this.updateOutlineGap()}},{key:\"ngAfterViewInit\",value:function(){this._subscriptAnimationState=\"enter\",this._changeDetectorRef.detectChanges()}},{key:\"ngOnDestroy\",value:function(){this._destroyed.next(),this._destroyed.complete()}},{key:\"_shouldForward\",value:function(e){var t=this._control?this._control.ngControl:null;return t&&t[e]}},{key:\"_hasPlaceholder\",value:function(){return!!(this._control&&this._control.placeholder||this._placeholderChild)}},{key:\"_hasLabel\",value:function(){return!!this._labelChild}},{key:\"_shouldLabelFloat\",value:function(){return this._canLabelFloat&&(this._control.shouldLabelFloat||this._shouldAlwaysFloat)}},{key:\"_hideControlPlaceholder\",value:function(){return\"legacy\"===this.appearance&&!this._hasLabel()||this._hasLabel()&&!this._shouldLabelFloat()}},{key:\"_hasFloatingLabel\",value:function(){return this._hasLabel()||\"legacy\"===this.appearance&&this._hasPlaceholder()}},{key:\"_getDisplayedMessages\",value:function(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?\"error\":\"hint\"}},{key:\"_animateAndLockLabel\",value:function(){var e=this;this._hasFloatingLabel()&&this._canLabelFloat&&(this._animationsEnabled&&this._label&&(this._showAlwaysAnimate=!0,mk(this._label.nativeElement,\"transitionend\").pipe(cp(1)).subscribe((function(){e._showAlwaysAnimate=!1}))),this.floatLabel=\"always\",this._changeDetectorRef.markForCheck())}},{key:\"_validatePlaceholders\",value:function(){if(this._control.placeholder&&this._placeholderChild)throw Error(\"Placeholder attribute and child element were both specified.\")}},{key:\"_processHints\",value:function(){this._validateHints(),this._syncDescribedByIds()}},{key:\"_validateHints\",value:function(){var e,t,n=this;this._hintChildren&&this._hintChildren.forEach((function(r){if(\"start\"===r.align){if(e||n.hintLabel)throw fM(\"start\");e=r}else if(\"end\"===r.align){if(t)throw fM(\"end\");t=r}}))}},{key:\"_getDefaultFloatLabelState\",value:function(){return this._defaults&&this._defaults.floatLabel||this._labelOptions.float||\"auto\"}},{key:\"_syncDescribedByIds\",value:function(){if(this._control){var e=[];if(\"hint\"===this._getDisplayedMessages()){var t=this._hintChildren?this._hintChildren.find((function(e){return\"start\"===e.align})):null,n=this._hintChildren?this._hintChildren.find((function(e){return\"end\"===e.align})):null;t?e.push(t.id):this._hintLabel&&e.push(this._hintLabelId),n&&e.push(n.id)}else this._errorChildren&&(e=this._errorChildren.map((function(e){return e.id})));this._control.setDescribedByIds(e)}}},{key:\"_validateControlChild\",value:function(){if(!this._control)throw Error(\"mat-form-field must contain a MatFormFieldControl.\")}},{key:\"updateOutlineGap\",value:function(){var e=this._label?this._label.nativeElement:null;if(\"outline\"===this.appearance&&e&&e.children.length&&e.textContent.trim()&&this._platform.isBrowser)if(this._isAttachedToDOM()){var t=0,n=0,r=this._connectionContainerRef.nativeElement,i=r.querySelectorAll(\".mat-form-field-outline-start\"),a=r.querySelectorAll(\".mat-form-field-outline-gap\");if(this._label&&this._label.nativeElement.children.length){var o=r.getBoundingClientRect();if(0===o.width&&0===o.height)return this._outlineGapCalculationNeededOnStable=!0,void(this._outlineGapCalculationNeededImmediately=!1);var s,l=this._getStartEnd(o),u=this._getStartEnd(e.children[0].getBoundingClientRect()),c=0,d=_createForOfIteratorHelper(e.children);try{for(d.s();!(s=d.n()).done;)c+=s.value.offsetWidth}catch(m){d.e(m)}finally{d.f()}t=u-l-5,n=c>0?.75*c+10:0}for(var h=0;h-1)throw Error('Input type \"'.concat(this._type,\"\\\" isn't supported by matInput.\"))}},{key:\"_isNeverEmpty\",value:function(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}},{key:\"_isBadInput\",value:function(){var e=this._elementRef.nativeElement.validity;return e&&e.badInput}},{key:\"setDescribedByIds\",value:function(e){this._ariaDescribedby=e.join(\" \")}},{key:\"onContainerClick\",value:function(){this.focused||this.focus()}},{key:\"disabled\",get:function(){return this.ngControl&&null!==this.ngControl.disabled?this.ngControl.disabled:this._disabled},set:function(e){this._disabled=mp(e),this.focused&&(this.focused=!1,this.stateChanges.next())}},{key:\"id\",get:function(){return this._id},set:function(e){this._id=e||this._uid}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=mp(e)}},{key:\"type\",get:function(){return this._type},set:function(e){this._type=e||\"text\",this._validateType(),!this._isTextarea()&&Lp().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}},{key:\"value\",get:function(){return this._inputValueAccessor.value},set:function(e){e!==this.value&&(this._inputValueAccessor.value=e,this.stateChanges.next())}},{key:\"readonly\",get:function(){return this._readonly},set:function(e){this._readonly=mp(e)}},{key:\"empty\",get:function(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}},{key:\"shouldLabelFloat\",get:function(){if(this._isNativeSelect){var e=this._elementRef.nativeElement,t=e.options[0];return this.focused||e.multiple||!this.empty||!!(e.selectedIndex>-1&&t&&t.label)}return this.focused||!this.empty}}]),n}(RM)).\\u0275fac=function(e){return new(e||wM)(Io(Qs),Io(Cp),Io(tf,10),Io(pm,8),Io(Dm,8),Io(eb),Io(AM,10),Io(VC),Io(cc))},wM.\\u0275dir=Lt({type:wM,selectors:[[\"input\",\"matInput\",\"\"],[\"textarea\",\"matInput\",\"\"],[\"select\",\"matNativeControl\",\"\"],[\"input\",\"matNativeControl\",\"\"],[\"textarea\",\"matNativeControl\",\"\"]],hostAttrs:[1,\"mat-input-element\",\"mat-form-field-autofill-control\"],hostVars:10,hostBindings:function(e,t){1&e&&qo(\"blur\",(function(){return t._focusChanged(!1)}))(\"focus\",(function(){return t._focusChanged(!0)}))(\"input\",(function(){return t._onInput()})),2&e&&(Ds(\"disabled\",t.disabled)(\"required\",t.required),Do(\"id\",t.id)(\"placeholder\",t.placeholder)(\"readonly\",t.readonly&&!t._isNativeSelect||null)(\"aria-describedby\",t._ariaDescribedby||null)(\"aria-invalid\",t.errorState)(\"aria-required\",t.required.toString()),fs(\"mat-input-server\",t._isServer))},inputs:{id:\"id\",disabled:\"disabled\",required:\"required\",type:\"type\",value:\"value\",readonly:\"readonly\",placeholder:\"placeholder\",errorStateMatcher:\"errorStateMatcher\"},exportAs:[\"matInput\"],features:[$s([{provide:hM,useExisting:wM}]),Es,Hs]}),wM),FM=((kM=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:kM}),kM.\\u0275inj=ve({factory:function(e){return new(e||kM)},providers:[eb],imports:[[WC,IM],WC,IM]}),kM);function NM(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:np,r=(t=e)instanceof Date&&!isNaN(+t)?+e-n.now():Math.abs(e);return function(e){return e.lift(new zM(r,n))}}var zM=function(){function e(t,n){_classCallCheck(this,e),this.delay=t,this.scheduler=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new VM(e,this.delay,this.scheduler))}}]),e}(),VM=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).delay=r,a.scheduler=i,a.queue=[],a.active=!1,a.errored=!1,a}return _createClass(n,[{key:\"_schedule\",value:function(e){this.active=!0,this.destination.add(e.schedule(n.dispatch,this.delay,{source:this,destination:this.destination,scheduler:e}))}},{key:\"scheduleNotification\",value:function(e){if(!0!==this.errored){var t=this.scheduler,n=new WM(t.now()+this.delay,e);this.queue.push(n),!1===this.active&&this._schedule(t)}}},{key:\"_next\",value:function(e){this.scheduleNotification(Vk.createNext(e))}},{key:\"_error\",value:function(e){this.errored=!0,this.queue=[],this.destination.error(e),this.unsubscribe()}},{key:\"_complete\",value:function(){this.scheduleNotification(Vk.createComplete()),this.unsubscribe()}}],[{key:\"dispatch\",value:function(e){for(var t=e.source,n=t.queue,r=e.scheduler,i=e.destination;n.length>0&&n[0].time-r.now()<=0;)n.shift().notification.observe(i);if(n.length>0){var a=Math.max(0,n[0].time-r.now());this.schedule(e,a)}else this.unsubscribe(),t.active=!1}}]),n}(p),WM=function e(t,n){_classCallCheck(this,e),this.time=t,this.notification=n},UM=[\"mat-menu-item\",\"\"],BM=[\"*\"];function qM(e,t){if(1&e){var n=Wo();Ho(0,\"div\",0),qo(\"keydown\",(function(e){return nn(n),Zo()._handleKeydown(e)}))(\"click\",(function(){return nn(n),Zo().closed.emit(\"click\")}))(\"@transformMenu.start\",(function(e){return nn(n),Zo()._onAnimationStart(e)}))(\"@transformMenu.done\",(function(e){return nn(n),Zo()._onAnimationDone(e)})),Ho(1,\"div\",1),ns(2),Fo(),Fo()}if(2&e){var r=Zo();jo(\"id\",r.panelId)(\"ngClass\",r._classList)(\"@transformMenu\",r._panelAnimationState),Do(\"aria-label\",r.ariaLabel||null)(\"aria-labelledby\",r.ariaLabelledby||null)(\"aria-describedby\",r.ariaDescribedby||null)}}var GM,$M,JM,KM,ZM,QM,XM,eS,tS,nS={transformMenu:uv(\"transformMenu\",[fv(\"void\",hv({opacity:0,transform:\"scale(0.8)\"})),mv(\"void => enter\",function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return{type:3,steps:e,options:t}}([pv(\".mat-menu-content, .mat-mdc-menu-content\",cv(\"100ms linear\",hv({opacity:1}))),cv(\"120ms cubic-bezier(0, 0, 0.2, 1)\",hv({transform:\"scale(1)\"}))])),mv(\"* => void\",cv(\"100ms 25ms linear\",hv({opacity:0})))]),fadeInItems:uv(\"fadeInItems\",[fv(\"showing\",hv({opacity:1})),mv(\"void => *\",[hv({opacity:0}),cv(\"400ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)\")])])},rS=((GM=function(){function e(t,n,r,i,a,o,s){_classCallCheck(this,e),this._template=t,this._componentFactoryResolver=n,this._appRef=r,this._injector=i,this._viewContainerRef=a,this._document=o,this._changeDetectorRef=s,this._attached=new x}return _createClass(e,[{key:\"attach\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this._portal||(this._portal=new lw(this._template,this._viewContainerRef)),this.detach(),this._outlet||(this._outlet=new dw(this._document.createElement(\"div\"),this._componentFactoryResolver,this._appRef,this._injector));var t=this._template.elementRef.nativeElement;t.parentNode.insertBefore(this._outlet.outletElement,t),this._changeDetectorRef&&this._changeDetectorRef.markForCheck(),this._portal.attach(this._outlet,e),this._attached.next()}},{key:\"detach\",value:function(){this._portal.isAttached&&this._portal.detach()}},{key:\"ngOnDestroy\",value:function(){this._outlet&&this._outlet.dispose()}}]),e}()).\\u0275fac=function(e){return new(e||GM)(Io(wl),Io(Zs),Io(Oc),Io(vo),Io(Ml),Io(Wc),Io(eo))},GM.\\u0275dir=Lt({type:GM,selectors:[[\"ng-template\",\"matMenuContent\",\"\"]]}),GM),iS=new Be(\"MAT_MENU_PANEL\"),aS=Uy(Vy((function e(){_classCallCheck(this,e)}))),oS=(($M=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this))._elementRef=e,o._focusMonitor=i,o._parentMenu=a,o.role=\"menuitem\",o._hovered=new x,o._focused=new x,o._highlighted=!1,o._triggersSubmenu=!1,i&&i.monitor(o._elementRef,!1),a&&a.addItem&&a.addItem(_assertThisInitialized(o)),o._document=r,o}return _createClass(n,[{key:\"focus\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"program\",t=arguments.length>1?arguments[1]:void 0;this._focusMonitor?this._focusMonitor.focusVia(this._getHostElement(),e,t):this._getHostElement().focus(t),this._focused.next(this)}},{key:\"ngOnDestroy\",value:function(){this._focusMonitor&&this._focusMonitor.stopMonitoring(this._elementRef),this._parentMenu&&this._parentMenu.removeItem&&this._parentMenu.removeItem(this),this._hovered.complete(),this._focused.complete()}},{key:\"_getTabIndex\",value:function(){return this.disabled?\"-1\":\"0\"}},{key:\"_getHostElement\",value:function(){return this._elementRef.nativeElement}},{key:\"_checkDisabled\",value:function(e){this.disabled&&(e.preventDefault(),e.stopPropagation())}},{key:\"_handleMouseEnter\",value:function(){this._hovered.next(this)}},{key:\"getLabel\",value:function(){var e=this._elementRef.nativeElement,t=this._document?this._document.TEXT_NODE:3,n=\"\";if(e.childNodes)for(var r=e.childNodes.length,i=0;i0&&void 0!==arguments[0]?arguments[0]:\"program\";this.lazyContent?this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe((function(){return e._focusFirstItem(t)})):this._focusFirstItem(t)}},{key:\"_focusFirstItem\",value:function(e){var t=this._keyManager;if(t.setFocusOrigin(e).setFirstItemActive(),!t.activeItem&&this._directDescendantItems.length)for(var n=this._directDescendantItems.first._getHostElement().parentElement;n;){if(\"menu\"===n.getAttribute(\"role\")){n.focus();break}n=n.parentElement}}},{key:\"resetActiveItem\",value:function(){this._keyManager.setActiveItem(-1)}},{key:\"setElevation\",value:function(e){var t=\"mat-elevation-z\".concat(Math.min(4+e,24)),n=Object.keys(this._classList).find((function(e){return e.startsWith(\"mat-elevation-z\")}));n&&n!==this._previousElevation||(this._previousElevation&&(this._classList[this._previousElevation]=!1),this._classList[t]=!0,this._previousElevation=t)}},{key:\"setPositionClasses\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.xPosition,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.yPosition,n=this._classList;n[\"mat-menu-before\"]=\"before\"===e,n[\"mat-menu-after\"]=\"after\"===e,n[\"mat-menu-above\"]=\"above\"===t,n[\"mat-menu-below\"]=\"below\"===t}},{key:\"_startAnimation\",value:function(){this._panelAnimationState=\"enter\"}},{key:\"_resetAnimation\",value:function(){this._panelAnimationState=\"void\"}},{key:\"_onAnimationDone\",value:function(e){this._animationDone.next(e),this._isAnimating=!1}},{key:\"_onAnimationStart\",value:function(e){this._isAnimating=!0,\"enter\"===e.toState&&0===this._keyManager.activeItemIndex&&(e.element.scrollTop=0)}},{key:\"_updateDirectDescendants\",value:function(){var e=this;this._allItems.changes.pipe(sv(this._allItems)).subscribe((function(t){e._directDescendantItems.reset(t.filter((function(t){return t._parentMenu===e}))),e._directDescendantItems.notifyOnChanges()}))}},{key:\"xPosition\",get:function(){return this._xPosition},set:function(e){\"before\"!==e&&\"after\"!==e&&function(){throw Error('xPosition value must be either \\'before\\' or after\\'.\\n Example: ')}(),this._xPosition=e,this.setPositionClasses()}},{key:\"yPosition\",get:function(){return this._yPosition},set:function(e){\"above\"!==e&&\"below\"!==e&&function(){throw Error('yPosition value must be either \\'above\\' or below\\'.\\n Example: ')}(),this._yPosition=e,this.setPositionClasses()}},{key:\"overlapTrigger\",get:function(){return this._overlapTrigger},set:function(e){this._overlapTrigger=mp(e)}},{key:\"hasBackdrop\",get:function(){return this._hasBackdrop},set:function(e){this._hasBackdrop=mp(e)}},{key:\"panelClass\",set:function(e){var t=this,n=this._previousPanelClass;n&&n.length&&n.split(\" \").forEach((function(e){t._classList[e]=!1})),this._previousPanelClass=e,e&&e.length&&(e.split(\" \").forEach((function(e){t._classList[e]=!0})),this._elementRef.nativeElement.className=\"\")}},{key:\"classList\",get:function(){return this.panelClass},set:function(e){this.panelClass=e}}]),e}()).\\u0275fac=function(e){return new(e||KM)(Io(Qs),Io(cc),Io(sS))},KM.\\u0275dir=Lt({type:KM,contentQueries:function(e,t,n){var r;1&e&&(Pu(n,rS,!0),Pu(n,oS,!0),Pu(n,oS,!1)),2&e&&(Yu(r=Hu())&&(t.lazyContent=r.first),Yu(r=Hu())&&(t._allItems=r),Yu(r=Hu())&&(t.items=r))},viewQuery:function(e,t){var n;1&e&&Iu(wl,!0),2&e&&Yu(n=Hu())&&(t.templateRef=n.first)},inputs:{backdropClass:\"backdropClass\",xPosition:\"xPosition\",yPosition:\"yPosition\",overlapTrigger:\"overlapTrigger\",hasBackdrop:\"hasBackdrop\",panelClass:[\"class\",\"panelClass\"],classList:\"classList\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],ariaDescribedby:[\"aria-describedby\",\"ariaDescribedby\"]},outputs:{closed:\"closed\",close:\"close\"}}),KM),cS=((JM=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return n}(uS)).\\u0275fac=function(e){return dS(e||JM)},JM.\\u0275dir=Lt({type:JM,features:[Es]}),JM),dS=cr(cS),hS=((ZM=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){return _classCallCheck(this,n),t.call(this,e,r,i)}return n}(cS)).\\u0275fac=function(e){return new(e||ZM)(Io(Qs),Io(cc),Io(sS))},ZM.\\u0275cmp=bt({type:ZM,selectors:[[\"mat-menu\"]],exportAs:[\"matMenu\"],features:[$s([{provide:iS,useExisting:cS},{provide:cS,useExisting:ZM}]),Es],ngContentSelectors:BM,decls:1,vars:0,consts:[[\"tabindex\",\"-1\",\"role\",\"menu\",1,\"mat-menu-panel\",3,\"id\",\"ngClass\",\"keydown\",\"click\"],[1,\"mat-menu-content\"]],template:function(e,t){1&e&&(Xo(),Yo(0,qM,3,6,\"ng-template\"))},directives:[kd],styles:['.mat-menu-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;max-height:calc(100vh - 48px);border-radius:4px;outline:0;min-height:64px}.mat-menu-panel.ng-animating{pointer-events:none}.cdk-high-contrast-active .mat-menu-panel{outline:solid 1px}.mat-menu-content:not(:empty){padding-top:8px;padding-bottom:8px}.mat-menu-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative}.mat-menu-item::-moz-focus-inner{border:0}.mat-menu-item[disabled]{cursor:default}[dir=rtl] .mat-menu-item{text-align:right}.mat-menu-item .mat-icon{margin-right:16px;vertical-align:middle}.mat-menu-item .mat-icon svg{vertical-align:top}[dir=rtl] .mat-menu-item .mat-icon{margin-left:16px;margin-right:0}.mat-menu-item[disabled]{pointer-events:none}.cdk-high-contrast-active .mat-menu-item.cdk-program-focused,.cdk-high-contrast-active .mat-menu-item.cdk-keyboard-focused,.cdk-high-contrast-active .mat-menu-item-highlighted{outline:dotted 1px}.mat-menu-item-submenu-trigger{padding-right:32px}.mat-menu-item-submenu-trigger::after{width:0;height:0;border-style:solid;border-width:5px 0 5px 5px;border-color:transparent transparent transparent currentColor;content:\"\";display:inline-block;position:absolute;top:50%;right:16px;transform:translateY(-50%)}[dir=rtl] .mat-menu-item-submenu-trigger{padding-right:16px;padding-left:32px}[dir=rtl] .mat-menu-item-submenu-trigger::after{right:auto;left:16px;transform:rotateY(180deg) translateY(-50%)}button.mat-menu-item{width:100%}.mat-menu-item .mat-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}\\n'],encapsulation:2,data:{animation:[nS.transformMenu,nS.fadeInItems]},changeDetection:0}),ZM),fS=new Be(\"mat-menu-scroll-strategy\"),mS={provide:fS,deps:[Bw],useFactory:function(e){return function(){return e.scrollStrategies.reposition()}}},pS=Tp({passive:!0}),_S=((eS=function(){function e(t,n,r,i,a,o,s,l){var u=this;_classCallCheck(this,e),this._overlay=t,this._element=n,this._viewContainerRef=r,this._parentMenu=a,this._menuItemInstance=o,this._dir=s,this._focusMonitor=l,this._overlayRef=null,this._menuOpen=!1,this._closingActionsSubscription=h.EMPTY,this._hoverSubscription=h.EMPTY,this._menuCloseSubscription=h.EMPTY,this._handleTouchStart=function(){return u._openedBy=\"touch\"},this._openedBy=null,this.restoreFocus=!0,this.menuOpened=new bu,this.onMenuOpen=this.menuOpened,this.menuClosed=new bu,this.onMenuClose=this.menuClosed,n.nativeElement.addEventListener(\"touchstart\",this._handleTouchStart,pS),o&&(o._triggersSubmenu=this.triggersSubmenu()),this._scrollStrategy=i}return _createClass(e,[{key:\"ngAfterContentInit\",value:function(){this._checkMenu(),this._handleHover()}},{key:\"ngOnDestroy\",value:function(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null),this._element.nativeElement.removeEventListener(\"touchstart\",this._handleTouchStart,pS),this._menuCloseSubscription.unsubscribe(),this._closingActionsSubscription.unsubscribe(),this._hoverSubscription.unsubscribe()}},{key:\"triggersSubmenu\",value:function(){return!(!this._menuItemInstance||!this._parentMenu)}},{key:\"toggleMenu\",value:function(){return this._menuOpen?this.closeMenu():this.openMenu()}},{key:\"openMenu\",value:function(){var e=this;if(!this._menuOpen){this._checkMenu();var t=this._createOverlay(),n=t.getConfig();this._setPosition(n.positionStrategy),n.hasBackdrop=null==this.menu.hasBackdrop?!this.triggersSubmenu():this.menu.hasBackdrop,t.attach(this._getPortal()),this.menu.lazyContent&&this.menu.lazyContent.attach(this.menuData),this._closingActionsSubscription=this._menuClosingActions().subscribe((function(){return e.closeMenu()})),this._initMenu(),this.menu instanceof cS&&this.menu._startAnimation()}}},{key:\"closeMenu\",value:function(){this.menu.close.emit()}},{key:\"focus\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"program\",t=arguments.length>1?arguments[1]:void 0;this._focusMonitor?this._focusMonitor.focusVia(this._element,e,t):this._element.nativeElement.focus(t)}},{key:\"_destroyMenu\",value:function(){var e=this;if(this._overlayRef&&this.menuOpen){var t=this.menu;this._closingActionsSubscription.unsubscribe(),this._overlayRef.detach(),this._restoreFocus(),t instanceof cS?(t._resetAnimation(),t.lazyContent?t._animationDone.pipe(Gd((function(e){return\"void\"===e.toState})),cp(1),Ek(t.lazyContent._attached)).subscribe({next:function(){return t.lazyContent.detach()},complete:function(){return e._setIsMenuOpen(!1)}}):this._setIsMenuOpen(!1)):(this._setIsMenuOpen(!1),t.lazyContent&&t.lazyContent.detach())}}},{key:\"_initMenu\",value:function(){this.menu.parentMenu=this.triggersSubmenu()?this._parentMenu:void 0,this.menu.direction=this.dir,this._setMenuElevation(),this._setIsMenuOpen(!0),this.menu.focusFirstItem(this._openedBy||\"program\")}},{key:\"_setMenuElevation\",value:function(){if(this.menu.setElevation){for(var e=0,t=this.menu.parentMenu;t;)e++,t=t.parentMenu;this.menu.setElevation(e)}}},{key:\"_restoreFocus\",value:function(){this.restoreFocus&&(this._openedBy?this.triggersSubmenu()||this.focus(this._openedBy):this.focus()),this._openedBy=null}},{key:\"_setIsMenuOpen\",value:function(e){this._menuOpen=e,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this.triggersSubmenu()&&(this._menuItemInstance._highlighted=e)}},{key:\"_checkMenu\",value:function(){this.menu||function(){throw Error('matMenuTriggerFor: must pass in an mat-menu instance.\\n\\n Example:\\n \\n ')}()}},{key:\"_createOverlay\",value:function(){if(!this._overlayRef){var e=this._getOverlayConfig();this._subscribeToPositions(e.positionStrategy),this._overlayRef=this._overlay.create(e),this._overlayRef.keydownEvents().subscribe()}return this._overlayRef}},{key:\"_getOverlayConfig\",value:function(){return new Cw({positionStrategy:this._overlay.position().flexibleConnectedTo(this._element).withLockedPosition().withTransformOriginOn(\".mat-menu-panel, .mat-mdc-menu-panel\"),backdropClass:this.menu.backdropClass||\"cdk-overlay-transparent-backdrop\",scrollStrategy:this._scrollStrategy(),direction:this._dir})}},{key:\"_subscribeToPositions\",value:function(e){var t=this;this.menu.setPositionClasses&&e.positionChanges.subscribe((function(e){t.menu.setPositionClasses(\"start\"===e.connectionPair.overlayX?\"after\":\"before\",\"top\"===e.connectionPair.overlayY?\"below\":\"above\")}))}},{key:\"_setPosition\",value:function(e){var t=_slicedToArray(\"before\"===this.menu.xPosition?[\"end\",\"start\"]:[\"start\",\"end\"],2),n=t[0],r=t[1],i=_slicedToArray(\"above\"===this.menu.yPosition?[\"bottom\",\"top\"]:[\"top\",\"bottom\"],2),a=i[0],o=i[1],s=a,l=o,u=n,c=r,d=0;this.triggersSubmenu()?(c=n=\"before\"===this.menu.xPosition?\"start\":\"end\",r=u=\"end\"===n?\"start\":\"end\",d=\"bottom\"===a?8:-8):this.menu.overlapTrigger||(s=\"top\"===a?\"bottom\":\"top\",l=\"top\"===o?\"bottom\":\"top\"),e.withPositions([{originX:n,originY:s,overlayX:u,overlayY:a,offsetY:d},{originX:r,originY:s,overlayX:c,overlayY:a,offsetY:d},{originX:n,originY:l,overlayX:u,overlayY:o,offsetY:-d},{originX:r,originY:l,overlayX:c,overlayY:o,offsetY:-d}])}},{key:\"_menuClosingActions\",value:function(){var e=this,t=this._overlayRef.backdropClick(),n=this._overlayRef.detachments();return K(t,this._parentMenu?this._parentMenu.closed:Bd(),this._parentMenu?this._parentMenu._hovered().pipe(Gd((function(t){return t!==e._menuItemInstance})),Gd((function(){return e._menuOpen}))):Bd(),n)}},{key:\"_handleMousedown\",value:function(e){n_(e)||(this._openedBy=0===e.button?\"mouse\":null,this.triggersSubmenu()&&e.preventDefault())}},{key:\"_handleKeydown\",value:function(e){var t=e.keyCode;this.triggersSubmenu()&&(39===t&&\"ltr\"===this.dir||37===t&&\"rtl\"===this.dir)&&this.openMenu()}},{key:\"_handleClick\",value:function(e){this.triggersSubmenu()?(e.stopPropagation(),this.openMenu()):this.toggleMenu()}},{key:\"_handleHover\",value:function(){var e=this;this.triggersSubmenu()&&(this._hoverSubscription=this._parentMenu._hovered().pipe(Gd((function(t){return t===e._menuItemInstance&&!t.disabled})),NM(0,wk)).subscribe((function(){e._openedBy=\"mouse\",e.menu instanceof cS&&e.menu._isAnimating?e.menu._animationDone.pipe(cp(1),NM(0,wk),Ek(e._parentMenu._hovered())).subscribe((function(){return e.openMenu()})):e.openMenu()})))}},{key:\"_getPortal\",value:function(){return this._portal&&this._portal.templateRef===this.menu.templateRef||(this._portal=new lw(this.menu.templateRef,this._viewContainerRef)),this._portal}},{key:\"_deprecatedMatMenuTriggerFor\",get:function(){return this.menu},set:function(e){this.menu=e}},{key:\"menu\",get:function(){return this._menu},set:function(e){var t=this;e!==this._menu&&(this._menu=e,this._menuCloseSubscription.unsubscribe(),e&&(this._menuCloseSubscription=e.close.asObservable().subscribe((function(e){t._destroyMenu(),\"click\"!==e&&\"tab\"!==e||!t._parentMenu||t._parentMenu.closed.emit(e)}))))}},{key:\"menuOpen\",get:function(){return this._menuOpen}},{key:\"dir\",get:function(){return this._dir&&\"rtl\"===this._dir.value?\"rtl\":\"ltr\"}}]),e}()).\\u0275fac=function(e){return new(e||eS)(Io(Bw),Io(Qs),Io(Ml),Io(fS),Io(cS,8),Io(oS,10),Io(h_,8),Io(t_))},eS.\\u0275dir=Lt({type:eS,selectors:[[\"\",\"mat-menu-trigger-for\",\"\"],[\"\",\"matMenuTriggerFor\",\"\"]],hostAttrs:[\"aria-haspopup\",\"true\",1,\"mat-menu-trigger\"],hostVars:2,hostBindings:function(e,t){1&e&&qo(\"mousedown\",(function(e){return t._handleMousedown(e)}))(\"keydown\",(function(e){return t._handleKeydown(e)}))(\"click\",(function(e){return t._handleClick(e)})),2&e&&Do(\"aria-expanded\",t.menuOpen||null)(\"aria-controls\",t.menuOpen?t.menu.panelId:null)},inputs:{restoreFocus:[\"matMenuTriggerRestoreFocus\",\"restoreFocus\"],_deprecatedMatMenuTriggerFor:[\"mat-menu-trigger-for\",\"_deprecatedMatMenuTriggerFor\"],menu:[\"matMenuTriggerFor\",\"menu\"],menuData:[\"matMenuTriggerData\",\"menuData\"]},outputs:{menuOpened:\"menuOpened\",onMenuOpen:\"onMenuOpen\",menuClosed:\"menuClosed\",onMenuClose:\"onMenuClose\"},exportAs:[\"matMenuTrigger\"]}),eS),vS=((XM=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:XM}),XM.\\u0275inj=ve({factory:function(e){return new(e||XM)},providers:[mS],imports:[zy]}),XM),gS=((QM=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:QM}),QM.\\u0275inj=ve({factory:function(e){return new(e||QM)},providers:[mS],imports:[[Nd,zy,lb,Zw,vS],vS]}),QM),yS=[\"primaryValueBar\"],bS=Wy((function e(t){_classCallCheck(this,e),this._elementRef=t}),\"primary\"),kS=new Be(\"mat-progress-bar-location\",{providedIn:\"root\",factory:function(){var e=tt(Wc),t=e?e.location:null;return{getPathname:function(){return t?t.pathname+t.search:\"\"}}}}),wS=0,CS=((tS=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;_classCallCheck(this,n),(o=t.call(this,e))._elementRef=e,o._ngZone=r,o._animationMode=i,o._isNoopAnimation=!1,o._value=0,o._bufferValue=0,o.animationEnd=new bu,o._animationEndSubscription=h.EMPTY,o.mode=\"determinate\",o.progressbarId=\"mat-progress-bar-\".concat(wS++);var s=a?a.getPathname().split(\"#\")[0]:\"\";return o._rectangleFillValue=\"url('\".concat(s,\"#\").concat(o.progressbarId,\"')\"),o._isNoopAnimation=\"NoopAnimations\"===i,o}return _createClass(n,[{key:\"_primaryTransform\",value:function(){return{transform:\"scaleX(\".concat(this.value/100,\")\")}}},{key:\"_bufferTransform\",value:function(){return\"buffer\"===this.mode?{transform:\"scaleX(\".concat(this.bufferValue/100,\")\")}:null}},{key:\"ngAfterViewInit\",value:function(){var e=this;this._ngZone.runOutsideAngular((function(){var t=e._primaryValueBar.nativeElement;e._animationEndSubscription=mk(t,\"transitionend\").pipe(Gd((function(e){return e.target===t}))).subscribe((function(){\"determinate\"!==e.mode&&\"buffer\"!==e.mode||e._ngZone.run((function(){return e.animationEnd.next({value:e.value})}))}))}))}},{key:\"ngOnDestroy\",value:function(){this._animationEndSubscription.unsubscribe()}},{key:\"value\",get:function(){return this._value},set:function(e){this._value=MS(pp(e)||0)}},{key:\"bufferValue\",get:function(){return this._bufferValue},set:function(e){this._bufferValue=MS(e||0)}}]),n}(bS)).\\u0275fac=function(e){return new(e||tS)(Io(Qs),Io(cc),Io(Yy,8),Io(kS,8))},tS.\\u0275cmp=bt({type:tS,selectors:[[\"mat-progress-bar\"]],viewQuery:function(e,t){var n;1&e&&Iu(yS,!0),2&e&&Yu(n=Hu())&&(t._primaryValueBar=n.first)},hostAttrs:[\"role\",\"progressbar\",\"aria-valuemin\",\"0\",\"aria-valuemax\",\"100\",1,\"mat-progress-bar\"],hostVars:4,hostBindings:function(e,t){2&e&&(Do(\"aria-valuenow\",\"indeterminate\"===t.mode||\"query\"===t.mode?null:t.value)(\"mode\",t.mode),fs(\"_mat-animation-noopable\",t._isNoopAnimation))},inputs:{color:\"color\",mode:\"mode\",value:\"value\",bufferValue:\"bufferValue\"},outputs:{animationEnd:\"animationEnd\"},exportAs:[\"matProgressBar\"],features:[Es],decls:9,vars:4,consts:[[\"width\",\"100%\",\"height\",\"4\",\"focusable\",\"false\",1,\"mat-progress-bar-background\",\"mat-progress-bar-element\"],[\"x\",\"4\",\"y\",\"0\",\"width\",\"8\",\"height\",\"4\",\"patternUnits\",\"userSpaceOnUse\",3,\"id\"],[\"cx\",\"2\",\"cy\",\"2\",\"r\",\"2\"],[\"width\",\"100%\",\"height\",\"100%\"],[1,\"mat-progress-bar-buffer\",\"mat-progress-bar-element\",3,\"ngStyle\"],[1,\"mat-progress-bar-primary\",\"mat-progress-bar-fill\",\"mat-progress-bar-element\",3,\"ngStyle\"],[\"primaryValueBar\",\"\"],[1,\"mat-progress-bar-secondary\",\"mat-progress-bar-fill\",\"mat-progress-bar-element\"]],template:function(e,t){1&e&&(Sn(),Ho(0,\"svg\",0),Ho(1,\"defs\"),Ho(2,\"pattern\",1),No(3,\"circle\",2),Fo(),Fo(),No(4,\"rect\",3),Fo(),Ln(),No(5,\"div\",4),No(6,\"div\",5,6),No(8,\"div\",7)),2&e&&(bi(2),jo(\"id\",t.progressbarId),bi(2),Do(\"fill\",t._rectangleFillValue),bi(1),jo(\"ngStyle\",t._bufferTransform()),bi(1),jo(\"ngStyle\",t._primaryTransform()))},directives:[Hd],styles:['.mat-progress-bar{display:block;height:4px;overflow:hidden;position:relative;transition:opacity 250ms linear;width:100%}._mat-animation-noopable.mat-progress-bar{transition:none;animation:none}.mat-progress-bar .mat-progress-bar-element,.mat-progress-bar .mat-progress-bar-fill::after{height:100%;position:absolute;width:100%}.mat-progress-bar .mat-progress-bar-background{width:calc(100% + 10px)}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-background{display:none}.mat-progress-bar .mat-progress-bar-buffer{transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-buffer{border-top:solid 5px;opacity:.5}.mat-progress-bar .mat-progress-bar-secondary{display:none}.mat-progress-bar .mat-progress-bar-fill{animation:none;transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-fill{border-top:solid 4px}.mat-progress-bar .mat-progress-bar-fill::after{animation:none;content:\"\";display:inline-block;left:0}.mat-progress-bar[dir=rtl],[dir=rtl] .mat-progress-bar{transform:rotateY(180deg)}.mat-progress-bar[mode=query]{transform:rotateZ(180deg)}.mat-progress-bar[mode=query][dir=rtl],[dir=rtl] .mat-progress-bar[mode=query]{transform:rotateZ(180deg) rotateY(180deg)}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-fill,.mat-progress-bar[mode=query] .mat-progress-bar-fill{transition:none}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary,.mat-progress-bar[mode=query] .mat-progress-bar-primary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-translate 2000ms infinite linear;left:-145.166611%}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-primary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary,.mat-progress-bar[mode=query] .mat-progress-bar-secondary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-translate 2000ms infinite linear;left:-54.888891%;display:block}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-secondary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=buffer] .mat-progress-bar-background{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-background-scroll 250ms infinite linear;display:block}.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-buffer,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-background{animation:none;transition-duration:1ms}@keyframes mat-progress-bar-primary-indeterminate-translate{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(83.67142%)}100%{transform:translateX(200.611057%)}}@keyframes mat-progress-bar-primary-indeterminate-scale{0%{transform:scaleX(0.08)}36.65%{animation-timing-function:cubic-bezier(0.334731, 0.12482, 0.785844, 1);transform:scaleX(0.08)}69.15%{animation-timing-function:cubic-bezier(0.06, 0.11, 0.6, 1);transform:scaleX(0.661479)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-secondary-indeterminate-translate{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(37.651913%)}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(84.386165%)}100%{transform:translateX(160.277782%)}}@keyframes mat-progress-bar-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-background-scroll{to{transform:translateX(-8px)}}\\n'],encapsulation:2,changeDetection:0}),tS);function MS(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:100;return Math.max(t,Math.min(n,e))}var SS,LS=((SS=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:SS}),SS.\\u0275inj=ve({factory:function(e){return new(e||SS)},imports:[[Nd,zy],zy]}),SS),TS=[\"trigger\"],xS=[\"panel\"];function DS(e,t){if(1&e&&(Ho(0,\"span\",8),Ls(1),Fo()),2&e){var n=Zo();bi(1),Ts(n.placeholder||\"\\xa0\")}}function OS(e,t){if(1&e&&(Ho(0,\"span\"),Ls(1),Fo()),2&e){var n=Zo(2);bi(1),Ts(n.triggerValue||\"\\xa0\")}}function YS(e,t){1&e&&ns(0,0,[\"*ngSwitchCase\",\"true\"])}function ES(e,t){1&e&&(Ho(0,\"span\",9),Yo(1,OS,2,1,\"span\",10),Yo(2,YS,1,0,void 0,11),Fo()),2&e&&(jo(\"ngSwitch\",!!Zo().customTrigger),bi(2),jo(\"ngSwitchCase\",!0))}function IS(e,t){if(1&e){var n=Wo();Ho(0,\"div\",12),Ho(1,\"div\",13,14),qo(\"@transformPanel.done\",(function(e){return nn(n),Zo()._panelDoneAnimatingStream.next(e.toState)}))(\"keydown\",(function(e){return nn(n),Zo()._handleKeydown(e)})),ns(3,1),Fo(),Fo()}if(2&e){var r=Zo();jo(\"@transformPanelWrap\",void 0),bi(1),i=r._getPanelTheme(),vs(ht,ps,Oo(en(),\"mat-select-panel \",i,\"\"),!0),hs(\"transform-origin\",r._transformOrigin)(\"font-size\",r._triggerFontSize,\"px\"),jo(\"ngClass\",r.panelClass)(\"@transformPanel\",r.multiple?\"showing-multiple\":\"showing\")}var i}var AS,PS,jS,RS=[[[\"mat-select-trigger\"]],\"*\"],HS=[\"mat-select-trigger\",\"*\"],FS={transformPanelWrap:uv(\"transformPanelWrap\",[mv(\"* => void\",pv(\"@transformPanel\",[function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return{type:9,options:e}}()],{optional:!0}))]),transformPanel:uv(\"transformPanel\",[fv(\"void\",hv({transform:\"scaleY(0.8)\",minWidth:\"100%\",opacity:0})),fv(\"showing\",hv({opacity:1,minWidth:\"calc(100% + 32px)\",transform:\"scaleY(1)\"})),fv(\"showing-multiple\",hv({opacity:1,minWidth:\"calc(100% + 64px)\",transform:\"scaleY(1)\"})),mv(\"void => *\",cv(\"120ms cubic-bezier(0, 0, 0.2, 1)\")),mv(\"* => void\",cv(\"100ms 25ms linear\",hv({opacity:0})))])},NS=0,zS=new Be(\"mat-select-scroll-strategy\"),VS=new Be(\"MAT_SELECT_CONFIG\"),WS={provide:zS,deps:[Bw],useFactory:function(e){return function(){return e.scrollStrategies.reposition()}}},US=function e(t,n){_classCallCheck(this,e),this.source=t,this.value=n},BS=Uy(By(Vy(qy((function e(t,n,r,i,a){_classCallCheck(this,e),this._elementRef=t,this._defaultErrorStateMatcher=n,this._parentForm=r,this._parentFormGroup=i,this.ngControl=a}))))),qS=((jS=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||jS)},jS.\\u0275dir=Lt({type:jS,selectors:[[\"mat-select-trigger\"]]}),jS),GS=((PS=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s,l,u,c,d,h,f,m,p){var _;return _classCallCheck(this,n),(_=t.call(this,o,a,l,u,d))._viewportRuler=e,_._changeDetectorRef=r,_._ngZone=i,_._dir=s,_._parentFormField=c,_.ngControl=d,_._liveAnnouncer=m,_._panelOpen=!1,_._required=!1,_._scrollTop=0,_._multiple=!1,_._compareWith=function(e,t){return e===t},_._uid=\"mat-select-\".concat(NS++),_._destroy=new x,_._triggerFontSize=0,_._onChange=function(){},_._onTouched=function(){},_._optionIds=\"\",_._transformOrigin=\"top\",_._panelDoneAnimatingStream=new x,_._offsetY=0,_._positions=[{originX:\"start\",originY:\"top\",overlayX:\"start\",overlayY:\"top\"},{originX:\"start\",originY:\"bottom\",overlayX:\"start\",overlayY:\"bottom\"}],_._disableOptionCentering=!1,_._focused=!1,_.controlType=\"mat-select\",_.ariaLabel=\"\",_.optionSelectionChanges=Qw((function(){var e=_.options;return e?e.changes.pipe(sv(e),Pk((function(){return K.apply(void 0,_toConsumableArray(e.map((function(e){return e.onSelectionChange}))))}))):_._ngZone.onStable.asObservable().pipe(cp(1),Pk((function(){return _.optionSelectionChanges})))})),_.openedChange=new bu,_._openedStream=_.openedChange.pipe(Gd((function(e){return e})),F((function(){}))),_._closedStream=_.openedChange.pipe(Gd((function(e){return!e})),F((function(){}))),_.selectionChange=new bu,_.valueChange=new bu,_.ngControl&&(_.ngControl.valueAccessor=_assertThisInitialized(_)),_._scrollStrategyFactory=f,_._scrollStrategy=_._scrollStrategyFactory(),_.tabIndex=parseInt(h)||0,_.id=_.id,p&&(null!=p.disableOptionCentering&&(_.disableOptionCentering=p.disableOptionCentering),null!=p.typeaheadDebounceInterval&&(_.typeaheadDebounceInterval=p.typeaheadDebounceInterval)),_}return _createClass(n,[{key:\"ngOnInit\",value:function(){var e=this;this._selectionModel=new Qk(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe(Ck(),Ek(this._destroy)).subscribe((function(){e.panelOpen?(e._scrollTop=0,e.openedChange.emit(!0)):(e.openedChange.emit(!1),e.overlayDir.offsetX=0,e._changeDetectorRef.markForCheck())})),this._viewportRuler.change().pipe(Ek(this._destroy)).subscribe((function(){e._panelOpen&&(e._triggerRect=e.trigger.nativeElement.getBoundingClientRect(),e._changeDetectorRef.markForCheck())}))}},{key:\"ngAfterContentInit\",value:function(){var e=this;this._initKeyManager(),this._selectionModel.changed.pipe(Ek(this._destroy)).subscribe((function(e){e.added.forEach((function(e){return e.select()})),e.removed.forEach((function(e){return e.deselect()}))})),this.options.changes.pipe(sv(null),Ek(this._destroy)).subscribe((function(){e._resetOptions(),e._initializeSelection()}))}},{key:\"ngDoCheck\",value:function(){this.ngControl&&this.updateErrorState()}},{key:\"ngOnChanges\",value:function(e){e.disabled&&this.stateChanges.next(),e.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this._typeaheadDebounceInterval)}},{key:\"ngOnDestroy\",value:function(){this._destroy.next(),this._destroy.complete(),this.stateChanges.complete()}},{key:\"toggle\",value:function(){this.panelOpen?this.close():this.open()}},{key:\"open\",value:function(){var e=this;!this.disabled&&this.options&&this.options.length&&!this._panelOpen&&(this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._triggerFontSize=parseInt(getComputedStyle(this.trigger.nativeElement).fontSize||\"0\"),this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._calculateOverlayPosition(),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck(),this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe((function(){e._triggerFontSize&&e.overlayDir.overlayRef&&e.overlayDir.overlayRef.overlayElement&&(e.overlayDir.overlayRef.overlayElement.style.fontSize=\"\".concat(e._triggerFontSize,\"px\"))})))}},{key:\"close\",value:function(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?\"rtl\":\"ltr\"),this._changeDetectorRef.markForCheck(),this._onTouched())}},{key:\"writeValue\",value:function(e){this.options&&this._setSelectionByValue(e)}},{key:\"registerOnChange\",value:function(e){this._onChange=e}},{key:\"registerOnTouched\",value:function(e){this._onTouched=e}},{key:\"setDisabledState\",value:function(e){this.disabled=e,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}},{key:\"_isRtl\",value:function(){return!!this._dir&&\"rtl\"===this._dir.value}},{key:\"_handleKeydown\",value:function(e){this.disabled||(this.panelOpen?this._handleOpenKeydown(e):this._handleClosedKeydown(e))}},{key:\"_handleClosedKeydown\",value:function(e){var t=e.keyCode,n=40===t||38===t||37===t||39===t,r=13===t||32===t,i=this._keyManager;if(!i.isTyping()&&r&&!Jm(e)||(this.multiple||e.altKey)&&n)e.preventDefault(),this.open();else if(!this.multiple){var a=this.selected;36===t||35===t?(36===t?i.setFirstItemActive():i.setLastItemActive(),e.preventDefault()):i.onKeydown(e);var o=this.selected;o&&a!==o&&this._liveAnnouncer.announce(o.viewValue,1e4)}}},{key:\"_handleOpenKeydown\",value:function(e){var t=this._keyManager,n=e.keyCode,r=40===n||38===n,i=t.isTyping();if(36===n||35===n)e.preventDefault(),36===n?t.setFirstItemActive():t.setLastItemActive();else if(r&&e.altKey)e.preventDefault(),this.close();else if(i||13!==n&&32!==n||!t.activeItem||Jm(e))if(!i&&this._multiple&&65===n&&e.ctrlKey){e.preventDefault();var a=this.options.some((function(e){return!e.disabled&&!e.selected}));this.options.forEach((function(e){e.disabled||(a?e.select():e.deselect())}))}else{var o=t.activeItemIndex;t.onKeydown(e),this._multiple&&r&&e.shiftKey&&t.activeItem&&t.activeItemIndex!==o&&t.activeItem._selectViaInteraction()}else e.preventDefault(),t.activeItem._selectViaInteraction()}},{key:\"_onFocus\",value:function(){this.disabled||(this._focused=!0,this.stateChanges.next())}},{key:\"_onBlur\",value:function(){this._focused=!1,this.disabled||this.panelOpen||(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}},{key:\"_onAttached\",value:function(){var e=this;this.overlayDir.positionChange.pipe(cp(1)).subscribe((function(){e._changeDetectorRef.detectChanges(),e._calculateOverlayOffsetX(),e.panel.nativeElement.scrollTop=e._scrollTop}))}},{key:\"_getPanelTheme\",value:function(){return this._parentFormField?\"mat-\".concat(this._parentFormField.color):\"\"}},{key:\"_initializeSelection\",value:function(){var e=this;Promise.resolve().then((function(){e._setSelectionByValue(e.ngControl?e.ngControl.value:e._value),e.stateChanges.next()}))}},{key:\"_setSelectionByValue\",value:function(e){var t=this;if(this.multiple&&e){if(!Array.isArray(e))throw Error(\"Value must be an array in multiple-selection mode.\");this._selectionModel.clear(),e.forEach((function(e){return t._selectValue(e)})),this._sortValues()}else{this._selectionModel.clear();var n=this._selectValue(e);n?this._keyManager.setActiveItem(n):this.panelOpen||this._keyManager.setActiveItem(-1)}this._changeDetectorRef.markForCheck()}},{key:\"_selectValue\",value:function(e){var t=this,n=this.options.find((function(n){try{return null!=n.value&&t._compareWith(n.value,e)}catch(r){return Lr()&&console.warn(r),!1}}));return n&&this._selectionModel.select(n),n}},{key:\"_initKeyManager\",value:function(){var e=this;this._keyManager=new zp(this.options).withTypeAhead(this._typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?\"rtl\":\"ltr\").withAllowedModifierKeys([\"shiftKey\"]),this._keyManager.tabOut.pipe(Ek(this._destroy)).subscribe((function(){!e.multiple&&e._keyManager.activeItem&&e._keyManager.activeItem._selectViaInteraction(),e.focus(),e.close()})),this._keyManager.change.pipe(Ek(this._destroy)).subscribe((function(){e._panelOpen&&e.panel?e._scrollActiveOptionIntoView():e._panelOpen||e.multiple||!e._keyManager.activeItem||e._keyManager.activeItem._selectViaInteraction()}))}},{key:\"_resetOptions\",value:function(){var e=this,t=K(this.options.changes,this._destroy);this.optionSelectionChanges.pipe(Ek(t)).subscribe((function(t){e._onSelect(t.source,t.isUserInput),t.isUserInput&&!e.multiple&&e._panelOpen&&(e.close(),e.focus())})),K.apply(void 0,_toConsumableArray(this.options.map((function(e){return e._stateChanges})))).pipe(Ek(t)).subscribe((function(){e._changeDetectorRef.markForCheck(),e.stateChanges.next()})),this._setOptionIds()}},{key:\"_onSelect\",value:function(e,t){var n=this._selectionModel.isSelected(e);null!=e.value||this._multiple?(n!==e.selected&&(e.selected?this._selectionModel.select(e):this._selectionModel.deselect(e)),t&&this._keyManager.setActiveItem(e),this.multiple&&(this._sortValues(),t&&this.focus())):(e.deselect(),this._selectionModel.clear(),this._propagateChanges(e.value)),n!==this._selectionModel.isSelected(e)&&this._propagateChanges(),this.stateChanges.next()}},{key:\"_sortValues\",value:function(){var e=this;if(this.multiple){var t=this.options.toArray();this._selectionModel.sort((function(n,r){return e.sortComparator?e.sortComparator(n,r,t):t.indexOf(n)-t.indexOf(r)})),this.stateChanges.next()}}},{key:\"_propagateChanges\",value:function(e){var t;t=this.multiple?this.selected.map((function(e){return e.value})):this.selected?this.selected.value:e,this._value=t,this.valueChange.emit(t),this._onChange(t),this.selectionChange.emit(new US(this,t)),this._changeDetectorRef.markForCheck()}},{key:\"_setOptionIds\",value:function(){this._optionIds=this.options.map((function(e){return e.id})).join(\" \")}},{key:\"_highlightCorrectOption\",value:function(){this._keyManager&&(this.empty?this._keyManager.setFirstItemActive():this._keyManager.setActiveItem(this._selectionModel.selected[0]))}},{key:\"_scrollActiveOptionIntoView\",value:function(){var e,t,n,r,i=this._keyManager.activeItemIndex||0,a=yb(i,this.options,this.optionGroups);this.panel.nativeElement.scrollTop=(e=i+a,t=this._getItemHeight(),n=this.panel.nativeElement.scrollTop,(r=e*t)n+256?Math.max(0,r-256+t):n)}},{key:\"focus\",value:function(e){this._elementRef.nativeElement.focus(e)}},{key:\"_getOptionIndex\",value:function(e){return this.options.reduce((function(t,n,r){return void 0!==t?t:e===n?r:void 0}),void 0)}},{key:\"_calculateOverlayPosition\",value:function(){var e=this._getItemHeight(),t=this._getItemCount(),n=Math.min(t*e,256),r=t*e-n,i=this.empty?0:this._getOptionIndex(this._selectionModel.selected[0]);i+=yb(i,this.options,this.optionGroups);var a=n/2;this._scrollTop=this._calculateOverlayScroll(i,a,r),this._offsetY=this._calculateOverlayOffsetY(i,a,r),this._checkOverlayWithinViewport(r)}},{key:\"_calculateOverlayScroll\",value:function(e,t,n){var r=this._getItemHeight();return Math.min(Math.max(0,r*e-t+r/2),n)}},{key:\"_getAriaLabel\",value:function(){return this.ariaLabelledby?null:this.ariaLabel||this.placeholder}},{key:\"_getAriaLabelledby\",value:function(){return this.ariaLabelledby?this.ariaLabelledby:this._parentFormField&&this._parentFormField._hasFloatingLabel()&&!this._getAriaLabel()&&this._parentFormField._labelId||null}},{key:\"_getAriaActiveDescendant\",value:function(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}},{key:\"_calculateOverlayOffsetX\",value:function(){var e,t=this.overlayDir.overlayRef.overlayElement.getBoundingClientRect(),n=this._viewportRuler.getViewportSize(),r=this._isRtl(),i=this.multiple?56:32;if(this.multiple)e=40;else{var a=this._selectionModel.selected[0]||this.options.first;e=a&&a.group?32:16}r||(e*=-1);var o=0-(t.left+e-(r?i:0)),s=t.right+e-n.width+(r?0:i);o>0?e+=o+8:s>0&&(e-=s+8),this.overlayDir.offsetX=Math.round(e),this.overlayDir.overlayRef.updatePosition()}},{key:\"_calculateOverlayOffsetY\",value:function(e,t,n){var r,i=this._getItemHeight(),a=(i-this._triggerRect.height)/2,o=Math.floor(256/i);return this._disableOptionCentering?0:(r=0===this._scrollTop?e*i:this._scrollTop===n?(e-(this._getItemCount()-o))*i+(i-(this._getItemCount()*i-256)%i):t-i/2,Math.round(-1*r-a))}},{key:\"_checkOverlayWithinViewport\",value:function(e){var t=this._getItemHeight(),n=this._viewportRuler.getViewportSize(),r=this._triggerRect.top-8,i=n.height-this._triggerRect.bottom-8,a=Math.abs(this._offsetY),o=Math.min(this._getItemCount()*t,256)-a-this._triggerRect.height;o>i?this._adjustPanelUp(o,i):a>r?this._adjustPanelDown(a,r,e):this._transformOrigin=this._getOriginBasedOnOption()}},{key:\"_adjustPanelUp\",value:function(e,t){var n=Math.round(e-t);this._scrollTop-=n,this._offsetY-=n,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop<=0&&(this._scrollTop=0,this._offsetY=0,this._transformOrigin=\"50% bottom 0px\")}},{key:\"_adjustPanelDown\",value:function(e,t,n){var r=Math.round(e-t);if(this._scrollTop+=r,this._offsetY+=r,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop>=n)return this._scrollTop=n,this._offsetY=0,void(this._transformOrigin=\"50% top 0px\")}},{key:\"_getOriginBasedOnOption\",value:function(){var e=this._getItemHeight(),t=(e-this._triggerRect.height)/2;return\"50% \".concat(Math.abs(this._offsetY)-t+e/2,\"px 0px\")}},{key:\"_getItemCount\",value:function(){return this.options.length+this.optionGroups.length}},{key:\"_getItemHeight\",value:function(){return 3*this._triggerFontSize}},{key:\"setDescribedByIds\",value:function(e){this._ariaDescribedby=e.join(\" \")}},{key:\"onContainerClick\",value:function(){this.focus(),this.open()}},{key:\"focused\",get:function(){return this._focused||this._panelOpen}},{key:\"placeholder\",get:function(){return this._placeholder},set:function(e){this._placeholder=e,this.stateChanges.next()}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=mp(e),this.stateChanges.next()}},{key:\"multiple\",get:function(){return this._multiple},set:function(e){if(this._selectionModel)throw Error(\"Cannot change `multiple` mode of select after initialization.\");this._multiple=mp(e)}},{key:\"disableOptionCentering\",get:function(){return this._disableOptionCentering},set:function(e){this._disableOptionCentering=mp(e)}},{key:\"compareWith\",get:function(){return this._compareWith},set:function(e){if(\"function\"!=typeof e)throw Error(\"`compareWith` must be a function.\");this._compareWith=e,this._selectionModel&&this._initializeSelection()}},{key:\"value\",get:function(){return this._value},set:function(e){e!==this._value&&(this.writeValue(e),this._value=e)}},{key:\"typeaheadDebounceInterval\",get:function(){return this._typeaheadDebounceInterval},set:function(e){this._typeaheadDebounceInterval=pp(e)}},{key:\"id\",get:function(){return this._id},set:function(e){this._id=e||this._uid,this.stateChanges.next()}},{key:\"panelOpen\",get:function(){return this._panelOpen}},{key:\"selected\",get:function(){return this.multiple?this._selectionModel.selected:this._selectionModel.selected[0]}},{key:\"triggerValue\",get:function(){if(this.empty)return\"\";if(this._multiple){var e=this._selectionModel.selected.map((function(e){return e.viewValue}));return this._isRtl()&&e.reverse(),e.join(\", \")}return this._selectionModel.selected[0].viewValue}},{key:\"empty\",get:function(){return!this._selectionModel||this._selectionModel.isEmpty()}},{key:\"shouldLabelFloat\",get:function(){return this._panelOpen||!this.empty}}]),n}(BS)).\\u0275fac=function(e){return new(e||PS)(Io(tw),Io(eo),Io(cc),Io(eb),Io(Qs),Io(h_,8),Io(pm,8),Io(Dm,8),Io(EM,8),Io(tf,10),Ao(\"tabindex\"),Io(zS),Io(Xp),Io(VS,8))},PS.\\u0275cmp=bt({type:PS,selectors:[[\"mat-select\"]],contentQueries:function(e,t,n){var r;1&e&&(Pu(n,qS,!0),Pu(n,gb,!0),Pu(n,fb,!0)),2&e&&(Yu(r=Hu())&&(t.customTrigger=r.first),Yu(r=Hu())&&(t.options=r),Yu(r=Hu())&&(t.optionGroups=r))},viewQuery:function(e,t){var n;1&e&&(Iu(TS,!0),Iu(xS,!0),Iu(Jw,!0)),2&e&&(Yu(n=Hu())&&(t.trigger=n.first),Yu(n=Hu())&&(t.panel=n.first),Yu(n=Hu())&&(t.overlayDir=n.first))},hostAttrs:[\"role\",\"listbox\",1,\"mat-select\"],hostVars:19,hostBindings:function(e,t){1&e&&qo(\"keydown\",(function(e){return t._handleKeydown(e)}))(\"focus\",(function(){return t._onFocus()}))(\"blur\",(function(){return t._onBlur()})),2&e&&(Do(\"id\",t.id)(\"tabindex\",t.tabIndex)(\"aria-label\",t._getAriaLabel())(\"aria-labelledby\",t._getAriaLabelledby())(\"aria-required\",t.required.toString())(\"aria-disabled\",t.disabled.toString())(\"aria-invalid\",t.errorState)(\"aria-owns\",t.panelOpen?t._optionIds:null)(\"aria-multiselectable\",t.multiple)(\"aria-describedby\",t._ariaDescribedby||null)(\"aria-activedescendant\",t._getAriaActiveDescendant()),fs(\"mat-select-disabled\",t.disabled)(\"mat-select-invalid\",t.errorState)(\"mat-select-required\",t.required)(\"mat-select-empty\",t.empty))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",tabIndex:\"tabIndex\",ariaLabel:[\"aria-label\",\"ariaLabel\"],id:\"id\",disableOptionCentering:\"disableOptionCentering\",typeaheadDebounceInterval:\"typeaheadDebounceInterval\",placeholder:\"placeholder\",required:\"required\",multiple:\"multiple\",compareWith:\"compareWith\",value:\"value\",panelClass:\"panelClass\",ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],errorStateMatcher:\"errorStateMatcher\",sortComparator:\"sortComparator\"},outputs:{openedChange:\"openedChange\",_openedStream:\"opened\",_closedStream:\"closed\",selectionChange:\"selectionChange\",valueChange:\"valueChange\"},exportAs:[\"matSelect\"],features:[$s([{provide:hM,useExisting:PS},{provide:vb,useExisting:PS}]),Es,Hs],ngContentSelectors:HS,decls:9,vars:9,consts:[[\"cdk-overlay-origin\",\"\",\"aria-hidden\",\"true\",1,\"mat-select-trigger\",3,\"click\"],[\"origin\",\"cdkOverlayOrigin\",\"trigger\",\"\"],[1,\"mat-select-value\",3,\"ngSwitch\"],[\"class\",\"mat-select-placeholder\",4,\"ngSwitchCase\"],[\"class\",\"mat-select-value-text\",3,\"ngSwitch\",4,\"ngSwitchCase\"],[1,\"mat-select-arrow-wrapper\"],[1,\"mat-select-arrow\"],[\"cdk-connected-overlay\",\"\",\"cdkConnectedOverlayLockPosition\",\"\",\"cdkConnectedOverlayHasBackdrop\",\"\",\"cdkConnectedOverlayBackdropClass\",\"cdk-overlay-transparent-backdrop\",3,\"cdkConnectedOverlayScrollStrategy\",\"cdkConnectedOverlayOrigin\",\"cdkConnectedOverlayOpen\",\"cdkConnectedOverlayPositions\",\"cdkConnectedOverlayMinWidth\",\"cdkConnectedOverlayOffsetY\",\"backdropClick\",\"attach\",\"detach\"],[1,\"mat-select-placeholder\"],[1,\"mat-select-value-text\",3,\"ngSwitch\"],[4,\"ngSwitchDefault\"],[4,\"ngSwitchCase\"],[1,\"mat-select-panel-wrap\"],[3,\"ngClass\",\"keydown\"],[\"panel\",\"\"]],template:function(e,t){if(1&e&&(Xo(RS),Ho(0,\"div\",0,1),qo(\"click\",(function(){return t.toggle()})),Ho(3,\"div\",2),Yo(4,DS,2,1,\"span\",3),Yo(5,ES,3,2,\"span\",4),Fo(),Ho(6,\"div\",5),No(7,\"div\",6),Fo(),Fo(),Yo(8,IS,4,10,\"ng-template\",7),qo(\"backdropClick\",(function(){return t.close()}))(\"attach\",(function(){return t._onAttached()}))(\"detach\",(function(){return t.close()}))),2&e){var n=Eo(1);bi(3),jo(\"ngSwitch\",t.empty),bi(1),jo(\"ngSwitchCase\",!0),bi(1),jo(\"ngSwitchCase\",!1),bi(3),jo(\"cdkConnectedOverlayScrollStrategy\",t._scrollStrategy)(\"cdkConnectedOverlayOrigin\",n)(\"cdkConnectedOverlayOpen\",t.panelOpen)(\"cdkConnectedOverlayPositions\",t._positions)(\"cdkConnectedOverlayMinWidth\",null==t._triggerRect?null:t._triggerRect.width)(\"cdkConnectedOverlayOffsetY\",t._offsetY)}},directives:[$w,Pd,jd,Jw,Rd,kd],styles:[\".mat-select{display:inline-block;width:100%;outline:none}.mat-select-trigger{display:inline-table;cursor:pointer;position:relative;box-sizing:border-box}.mat-select-disabled .mat-select-trigger{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-select-value{display:table-cell;max-width:0;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-select-arrow-wrapper{display:table-cell;vertical-align:middle}.mat-form-field-appearance-fill .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-outline .mat-select-arrow-wrapper{transform:translateY(-25%)}.mat-form-field-appearance-standard.mat-form-field-has-label .mat-select:not(.mat-select-empty) .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:none}.mat-select-arrow{width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;margin:0 4px}.mat-select-panel-wrap{flex-basis:100%}.mat-select-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;padding-top:0;padding-bottom:0;max-height:256px;min-width:100%;border-radius:4px}.cdk-high-contrast-active .mat-select-panel{outline:solid 1px}.mat-select-panel .mat-optgroup-label,.mat-select-panel .mat-option{font-size:inherit;line-height:3em;height:3em}.mat-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-form-field-flex{cursor:pointer}.mat-form-field-type-mat-select .mat-form-field-label{width:calc(100% - 18px)}.mat-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable .mat-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-select-placeholder{color:transparent;-webkit-text-fill-color:transparent;transition:none;display:block}\\n\"],encapsulation:2,data:{animation:[FS.transformPanelWrap,FS.transformPanel]},changeDetection:0}),PS),$S=((AS=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:AS}),AS.\\u0275inj=ve({factory:function(e){return new(e||AS)},providers:[WS],imports:[[Nd,Zw,Pb,zy],IM,Pb,zy]}),AS),JS=[\"*\"];function KS(e,t){if(1&e){var n=Wo();Ho(0,\"div\",2),qo(\"click\",(function(){return nn(n),Zo()._onBackdropClicked()})),Fo()}2&e&&fs(\"mat-drawer-shown\",Zo()._isShowingBackdrop())}function ZS(e,t){1&e&&(Ho(0,\"mat-drawer-content\"),ns(1,2),Fo())}var QS=[[[\"mat-drawer\"]],[[\"mat-drawer-content\"]],\"*\"],XS=[\"mat-drawer\",\"mat-drawer-content\",\"*\"];function eL(e,t){if(1&e){var n=Wo();Ho(0,\"div\",2),qo(\"click\",(function(){return nn(n),Zo()._onBackdropClicked()})),Fo()}2&e&&fs(\"mat-drawer-shown\",Zo()._isShowingBackdrop())}function tL(e,t){1&e&&(Ho(0,\"mat-sidenav-content\",3),ns(1,2),Fo())}var nL=[[[\"mat-sidenav\"]],[[\"mat-sidenav-content\"]],\"*\"],rL=[\"mat-sidenav\",\"mat-sidenav-content\",\"*\"],iL={transformDrawer:uv(\"transform\",[fv(\"open, open-instant\",hv({transform:\"none\",visibility:\"visible\"})),fv(\"void\",hv({\"box-shadow\":\"none\",visibility:\"hidden\"})),mv(\"void => open-instant\",cv(\"0ms\")),mv(\"void <=> open, open-instant => void\",cv(\"400ms cubic-bezier(0.25, 0.8, 0.25, 1)\"))])};function aL(e){throw Error(\"A drawer was already declared for 'position=\\\"\".concat(e,\"\\\"'\"))}var oL,sL,lL,uL,cL,dL,hL,fL,mL,pL,_L=new Be(\"MAT_DRAWER_DEFAULT_AUTOSIZE\",{providedIn:\"root\",factory:function(){return!1}}),vL=new Be(\"MAT_DRAWER_CONTAINER\"),gL=((cL=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this,i,a,o))._changeDetectorRef=e,s._container=r,s}return _createClass(n,[{key:\"ngAfterContentInit\",value:function(){var e=this;this._container._contentMarginChanges.subscribe((function(){e._changeDetectorRef.markForCheck()}))}}]),n}(ew)).\\u0275fac=function(e){return new(e||cL)(Io(eo),Io(De((function(){return bL}))),Io(Qs),Io(Xk),Io(cc))},cL.\\u0275cmp=bt({type:cL,selectors:[[\"mat-drawer-content\"]],hostAttrs:[1,\"mat-drawer-content\"],hostVars:4,hostBindings:function(e,t){2&e&&hs(\"margin-left\",t._container._contentMargins.left,\"px\")(\"margin-right\",t._container._contentMargins.right,\"px\")},features:[Es],ngContentSelectors:JS,decls:1,vars:0,template:function(e,t){1&e&&(Xo(),ns(0))},encapsulation:2,changeDetection:0}),cL),yL=((uL=function(){function e(t,n,r,i,a,o,s){var l=this;_classCallCheck(this,e),this._elementRef=t,this._focusTrapFactory=n,this._focusMonitor=r,this._platform=i,this._ngZone=a,this._doc=o,this._container=s,this._elementFocusedBeforeDrawerWasOpened=null,this._enableAnimations=!1,this._position=\"start\",this._mode=\"over\",this._disableClose=!1,this._opened=!1,this._animationStarted=new x,this._animationEnd=new x,this._animationState=\"void\",this.openedChange=new bu(!0),this._destroyed=new x,this.onPositionChanged=new bu,this._modeChanged=new x,this.openedChange.subscribe((function(e){e?(l._doc&&(l._elementFocusedBeforeDrawerWasOpened=l._doc.activeElement),l._takeFocus()):l._restoreFocus()})),this._ngZone.runOutsideAngular((function(){mk(l._elementRef.nativeElement,\"keydown\").pipe(Gd((function(e){return 27===e.keyCode&&!l.disableClose&&!Jm(e)})),Ek(l._destroyed)).subscribe((function(e){return l._ngZone.run((function(){l.close(),e.stopPropagation(),e.preventDefault()}))}))})),this._animationEnd.pipe(Ck((function(e,t){return e.fromState===t.fromState&&e.toState===t.toState}))).subscribe((function(e){var t=e.fromState,n=e.toState;(0===n.indexOf(\"open\")&&\"void\"===t||\"void\"===n&&0===t.indexOf(\"open\"))&&l.openedChange.emit(l._opened)}))}return _createClass(e,[{key:\"_takeFocus\",value:function(){var e=this;this.autoFocus&&this._focusTrap&&this._focusTrap.focusInitialElementWhenReady().then((function(t){t||\"function\"!=typeof e._elementRef.nativeElement.focus||e._elementRef.nativeElement.focus()}))}},{key:\"_restoreFocus\",value:function(){if(this.autoFocus){var e=this._doc&&this._doc.activeElement;e&&this._elementRef.nativeElement.contains(e)&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,this._openedVia):this._elementRef.nativeElement.blur()),this._elementFocusedBeforeDrawerWasOpened=null,this._openedVia=null}}},{key:\"ngAfterContentInit\",value:function(){this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState()}},{key:\"ngAfterContentChecked\",value:function(){this._platform.isBrowser&&(this._enableAnimations=!0)}},{key:\"ngOnDestroy\",value:function(){this._focusTrap&&this._focusTrap.destroy(),this._animationStarted.complete(),this._animationEnd.complete(),this._modeChanged.complete(),this._destroyed.next(),this._destroyed.complete()}},{key:\"open\",value:function(e){return this.toggle(!0,e)}},{key:\"close\",value:function(){return this.toggle(!1)}},{key:\"toggle\",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:!this.opened,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"program\";return this._opened=t,t?(this._animationState=this._enableAnimations?\"open\":\"open-instant\",this._openedVia=n):(this._animationState=\"void\",this._restoreFocus()),this._updateFocusTrapState(),new Promise((function(t){e.openedChange.pipe(cp(1)).subscribe((function(e){return t(e?\"open\":\"close\")}))}))}},{key:\"_updateFocusTrapState\",value:function(){this._focusTrap&&(this._focusTrap.enabled=this.opened&&\"side\"!==this.mode)}},{key:\"_animationStartListener\",value:function(e){this._animationStarted.next(e)}},{key:\"_animationDoneListener\",value:function(e){this._animationEnd.next(e)}},{key:\"position\",get:function(){return this._position},set:function(e){(e=\"end\"===e?\"end\":\"start\")!=this._position&&(this._position=e,this.onPositionChanged.emit())}},{key:\"mode\",get:function(){return this._mode},set:function(e){this._mode=e,this._updateFocusTrapState(),this._modeChanged.next()}},{key:\"disableClose\",get:function(){return this._disableClose},set:function(e){this._disableClose=mp(e)}},{key:\"autoFocus\",get:function(){var e=this._autoFocus;return null==e?\"side\"!==this.mode:e},set:function(e){this._autoFocus=mp(e)}},{key:\"opened\",get:function(){return this._opened},set:function(e){this.toggle(mp(e))}},{key:\"_openedStream\",get:function(){return this.openedChange.pipe(Gd((function(e){return e})),F((function(){})))}},{key:\"openedStart\",get:function(){return this._animationStarted.pipe(Gd((function(e){return e.fromState!==e.toState&&0===e.toState.indexOf(\"open\")})),F((function(){})))}},{key:\"_closedStream\",get:function(){return this.openedChange.pipe(Gd((function(e){return!e})),F((function(){})))}},{key:\"closedStart\",get:function(){return this._animationStarted.pipe(Gd((function(e){return e.fromState!==e.toState&&\"void\"===e.toState})),F((function(){})))}},{key:\"_width\",get:function(){return this._elementRef.nativeElement&&this._elementRef.nativeElement.offsetWidth||0}}]),e}()).\\u0275fac=function(e){return new(e||uL)(Io(Qs),Io(Kp),Io(t_),Io(Cp),Io(cc),Io(Wc,8),Io(vL,8))},uL.\\u0275cmp=bt({type:uL,selectors:[[\"mat-drawer\"]],hostAttrs:[\"tabIndex\",\"-1\",1,\"mat-drawer\"],hostVars:12,hostBindings:function(e,t){1&e&&Go(\"@transform.start\",(function(e){return t._animationStartListener(e)}))(\"@transform.done\",(function(e){return t._animationDoneListener(e)})),2&e&&(Do(\"align\",null),Os(\"@transform\",t._animationState),fs(\"mat-drawer-end\",\"end\"===t.position)(\"mat-drawer-over\",\"over\"===t.mode)(\"mat-drawer-push\",\"push\"===t.mode)(\"mat-drawer-side\",\"side\"===t.mode)(\"mat-drawer-opened\",t.opened))},inputs:{position:\"position\",mode:\"mode\",disableClose:\"disableClose\",autoFocus:\"autoFocus\",opened:\"opened\"},outputs:{openedChange:\"openedChange\",onPositionChanged:\"positionChanged\",_openedStream:\"opened\",openedStart:\"openedStart\",_closedStream:\"closed\",closedStart:\"closedStart\"},exportAs:[\"matDrawer\"],ngContentSelectors:JS,decls:2,vars:0,consts:[[1,\"mat-drawer-inner-container\"]],template:function(e,t){1&e&&(Xo(),Ho(0,\"div\",0),ns(1),Fo())},encapsulation:2,data:{animation:[iL.transformDrawer]},changeDetection:0}),uL),bL=((lL=function(){function e(t,n,r,i,a){var o=this,s=arguments.length>5&&void 0!==arguments[5]&&arguments[5],l=arguments.length>6?arguments[6]:void 0;_classCallCheck(this,e),this._dir=t,this._element=n,this._ngZone=r,this._changeDetectorRef=i,this._animationMode=l,this._drawers=new wu,this.backdropClick=new bu,this._destroyed=new x,this._doCheckSubject=new x,this._contentMargins={left:null,right:null},this._contentMarginChanges=new x,t&&t.change.pipe(Ek(this._destroyed)).subscribe((function(){o._validateDrawers(),o.updateContentMargins()})),a.change().pipe(Ek(this._destroyed)).subscribe((function(){return o.updateContentMargins()})),this._autosize=s}return _createClass(e,[{key:\"ngAfterContentInit\",value:function(){var e=this;this._allDrawers.changes.pipe(sv(this._allDrawers),Ek(this._destroyed)).subscribe((function(t){e._drawers.reset(t.filter((function(t){return!t._container||t._container===e}))),e._drawers.notifyOnChanges()})),this._drawers.changes.pipe(sv(null)).subscribe((function(){e._validateDrawers(),e._drawers.forEach((function(t){e._watchDrawerToggle(t),e._watchDrawerPosition(t),e._watchDrawerMode(t)})),(!e._drawers.length||e._isDrawerOpen(e._start)||e._isDrawerOpen(e._end))&&e.updateContentMargins(),e._changeDetectorRef.markForCheck()})),this._doCheckSubject.pipe(rp(10),Ek(this._destroyed)).subscribe((function(){return e.updateContentMargins()}))}},{key:\"ngOnDestroy\",value:function(){this._contentMarginChanges.complete(),this._doCheckSubject.complete(),this._drawers.destroy(),this._destroyed.next(),this._destroyed.complete()}},{key:\"open\",value:function(){this._drawers.forEach((function(e){return e.open()}))}},{key:\"close\",value:function(){this._drawers.forEach((function(e){return e.close()}))}},{key:\"updateContentMargins\",value:function(){var e=this,t=0,n=0;if(this._left&&this._left.opened)if(\"side\"==this._left.mode)t+=this._left._width;else if(\"push\"==this._left.mode){var r=this._left._width;t+=r,n-=r}if(this._right&&this._right.opened)if(\"side\"==this._right.mode)n+=this._right._width;else if(\"push\"==this._right.mode){var i=this._right._width;n+=i,t-=i}n=n||null,(t=t||null)===this._contentMargins.left&&n===this._contentMargins.right||(this._contentMargins={left:t,right:n},this._ngZone.run((function(){return e._contentMarginChanges.next(e._contentMargins)})))}},{key:\"ngDoCheck\",value:function(){var e=this;this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular((function(){return e._doCheckSubject.next()}))}},{key:\"_watchDrawerToggle\",value:function(e){var t=this;e._animationStarted.pipe(Gd((function(e){return e.fromState!==e.toState})),Ek(this._drawers.changes)).subscribe((function(e){\"open-instant\"!==e.toState&&\"NoopAnimations\"!==t._animationMode&&t._element.nativeElement.classList.add(\"mat-drawer-transition\"),t.updateContentMargins(),t._changeDetectorRef.markForCheck()})),\"side\"!==e.mode&&e.openedChange.pipe(Ek(this._drawers.changes)).subscribe((function(){return t._setContainerClass(e.opened)}))}},{key:\"_watchDrawerPosition\",value:function(e){var t=this;e&&e.onPositionChanged.pipe(Ek(this._drawers.changes)).subscribe((function(){t._ngZone.onMicrotaskEmpty.asObservable().pipe(cp(1)).subscribe((function(){t._validateDrawers()}))}))}},{key:\"_watchDrawerMode\",value:function(e){var t=this;e&&e._modeChanged.pipe(Ek(K(this._drawers.changes,this._destroyed))).subscribe((function(){t.updateContentMargins(),t._changeDetectorRef.markForCheck()}))}},{key:\"_setContainerClass\",value:function(e){var t=this._element.nativeElement.classList,n=\"mat-drawer-container-has-open\";e?t.add(n):t.remove(n)}},{key:\"_validateDrawers\",value:function(){var e=this;this._start=this._end=null,this._drawers.forEach((function(t){\"end\"==t.position?(null!=e._end&&aL(\"end\"),e._end=t):(null!=e._start&&aL(\"start\"),e._start=t)})),this._right=this._left=null,this._dir&&\"rtl\"===this._dir.value?(this._left=this._end,this._right=this._start):(this._left=this._start,this._right=this._end)}},{key:\"_isPushed\",value:function(){return this._isDrawerOpen(this._start)&&\"over\"!=this._start.mode||this._isDrawerOpen(this._end)&&\"over\"!=this._end.mode}},{key:\"_onBackdropClicked\",value:function(){this.backdropClick.emit(),this._closeModalDrawer()}},{key:\"_closeModalDrawer\",value:function(){var e=this;[this._start,this._end].filter((function(t){return t&&!t.disableClose&&e._canHaveBackdrop(t)})).forEach((function(e){return e.close()}))}},{key:\"_isShowingBackdrop\",value:function(){return this._isDrawerOpen(this._start)&&this._canHaveBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._canHaveBackdrop(this._end)}},{key:\"_canHaveBackdrop\",value:function(e){return\"side\"!==e.mode||!!this._backdropOverride}},{key:\"_isDrawerOpen\",value:function(e){return null!=e&&e.opened}},{key:\"start\",get:function(){return this._start}},{key:\"end\",get:function(){return this._end}},{key:\"autosize\",get:function(){return this._autosize},set:function(e){this._autosize=mp(e)}},{key:\"hasBackdrop\",get:function(){return null==this._backdropOverride?!this._start||\"side\"!==this._start.mode||!this._end||\"side\"!==this._end.mode:this._backdropOverride},set:function(e){this._backdropOverride=null==e?null:mp(e)}},{key:\"scrollable\",get:function(){return this._userContent||this._content}}]),e}()).\\u0275fac=function(e){return new(e||lL)(Io(h_,8),Io(Qs),Io(cc),Io(eo),Io(tw),Io(_L),Io(Yy,8))},lL.\\u0275cmp=bt({type:lL,selectors:[[\"mat-drawer-container\"]],contentQueries:function(e,t,n){var r;1&e&&(Pu(n,gL,!0),Pu(n,yL,!0)),2&e&&(Yu(r=Hu())&&(t._content=r.first),Yu(r=Hu())&&(t._allDrawers=r))},viewQuery:function(e,t){var n;1&e&&Iu(gL,!0),2&e&&Yu(n=Hu())&&(t._userContent=n.first)},hostAttrs:[1,\"mat-drawer-container\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"mat-drawer-container-explicit-backdrop\",t._backdropOverride)},inputs:{autosize:\"autosize\",hasBackdrop:\"hasBackdrop\"},outputs:{backdropClick:\"backdropClick\"},exportAs:[\"matDrawerContainer\"],features:[$s([{provide:vL,useExisting:lL}])],ngContentSelectors:XS,decls:4,vars:2,consts:[[\"class\",\"mat-drawer-backdrop\",3,\"mat-drawer-shown\",\"click\",4,\"ngIf\"],[4,\"ngIf\"],[1,\"mat-drawer-backdrop\",3,\"click\"]],template:function(e,t){1&e&&(Xo(QS),Yo(0,KS,1,2,\"div\",0),ns(1),ns(2,1),Yo(3,ZS,2,0,\"mat-drawer-content\",1)),2&e&&(jo(\"ngIf\",t.hasBackdrop),bi(3),jo(\"ngIf\",!t._content))},directives:[Sd,gL],styles:[\".mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\\n\"],encapsulation:2,changeDetection:0}),lL),kL=((sL=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){return _classCallCheck(this,n),t.call(this,e,r,i,a,o)}return n}(gL)).\\u0275fac=function(e){return new(e||sL)(Io(eo),Io(De((function(){return ML}))),Io(Qs),Io(Xk),Io(cc))},sL.\\u0275cmp=bt({type:sL,selectors:[[\"mat-sidenav-content\"]],hostAttrs:[1,\"mat-drawer-content\",\"mat-sidenav-content\"],hostVars:4,hostBindings:function(e,t){2&e&&hs(\"margin-left\",t._container._contentMargins.left,\"px\")(\"margin-right\",t._container._contentMargins.right,\"px\")},features:[Es],ngContentSelectors:JS,decls:1,vars:0,template:function(e,t){1&e&&(Xo(),ns(0))},encapsulation:2,changeDetection:0}),sL),wL=((oL=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e;return _classCallCheck(this,n),(e=t.apply(this,arguments))._fixedInViewport=!1,e._fixedTopGap=0,e._fixedBottomGap=0,e}return _createClass(n,[{key:\"fixedInViewport\",get:function(){return this._fixedInViewport},set:function(e){this._fixedInViewport=mp(e)}},{key:\"fixedTopGap\",get:function(){return this._fixedTopGap},set:function(e){this._fixedTopGap=pp(e)}},{key:\"fixedBottomGap\",get:function(){return this._fixedBottomGap},set:function(e){this._fixedBottomGap=pp(e)}}]),n}(yL)).\\u0275fac=function(e){return CL(e||oL)},oL.\\u0275cmp=bt({type:oL,selectors:[[\"mat-sidenav\"]],hostAttrs:[\"tabIndex\",\"-1\",1,\"mat-drawer\",\"mat-sidenav\"],hostVars:17,hostBindings:function(e,t){2&e&&(Do(\"align\",null),hs(\"top\",t.fixedInViewport?t.fixedTopGap:null,\"px\")(\"bottom\",t.fixedInViewport?t.fixedBottomGap:null,\"px\"),fs(\"mat-drawer-end\",\"end\"===t.position)(\"mat-drawer-over\",\"over\"===t.mode)(\"mat-drawer-push\",\"push\"===t.mode)(\"mat-drawer-side\",\"side\"===t.mode)(\"mat-drawer-opened\",t.opened)(\"mat-sidenav-fixed\",t.fixedInViewport))},inputs:{fixedInViewport:\"fixedInViewport\",fixedTopGap:\"fixedTopGap\",fixedBottomGap:\"fixedBottomGap\"},exportAs:[\"matSidenav\"],features:[Es],ngContentSelectors:JS,decls:2,vars:0,consts:[[1,\"mat-drawer-inner-container\"]],template:function(e,t){1&e&&(Xo(),Ho(0,\"div\",0),ns(1),Fo())},encapsulation:2,data:{animation:[iL.transformDrawer]},changeDetection:0}),oL),CL=cr(wL),ML=((dL=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return n}(bL)).\\u0275fac=function(e){return SL(e||dL)},dL.\\u0275cmp=bt({type:dL,selectors:[[\"mat-sidenav-container\"]],contentQueries:function(e,t,n){var r;1&e&&(Pu(n,kL,!0),Pu(n,wL,!0)),2&e&&(Yu(r=Hu())&&(t._content=r.first),Yu(r=Hu())&&(t._allDrawers=r))},hostAttrs:[1,\"mat-drawer-container\",\"mat-sidenav-container\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"mat-drawer-container-explicit-backdrop\",t._backdropOverride)},exportAs:[\"matSidenavContainer\"],features:[$s([{provide:vL,useExisting:dL}]),Es],ngContentSelectors:rL,decls:4,vars:2,consts:[[\"class\",\"mat-drawer-backdrop\",3,\"mat-drawer-shown\",\"click\",4,\"ngIf\"],[\"cdkScrollable\",\"\",4,\"ngIf\"],[1,\"mat-drawer-backdrop\",3,\"click\"],[\"cdkScrollable\",\"\"]],template:function(e,t){1&e&&(Xo(nL),Yo(0,eL,1,2,\"div\",0),ns(1),ns(2,1),Yo(3,tL,2,0,\"mat-sidenav-content\",1)),2&e&&(jo(\"ngIf\",t.hasBackdrop),bi(3),jo(\"ngIf\",!t._content))},directives:[Sd,kL,ew],styles:[\".mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\\n\"],encapsulation:2,changeDetection:0}),dL),SL=cr(ML),LL=((hL=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:hL}),hL.\\u0275inj=ve({factory:function(e){return new(e||hL)},imports:[[Nd,zy,nw,Mp],zy]}),hL),TL=[\"thumbContainer\"],xL=[\"toggleBar\"],DL=[\"input\"],OL=function(){return{enterDuration:150}},YL=[\"*\"],EL=new Be(\"mat-slide-toggle-default-options\",{providedIn:\"root\",factory:function(){return{disableToggleValue:!1}}}),IL=0,AL={provide:Wh,useExisting:De((function(){return RL})),multi:!0},PL=function e(t,n){_classCallCheck(this,e),this.source=t,this.checked=n},jL=By(Wy(Uy(Vy((function e(t){_classCallCheck(this,e),this._elementRef=t}))),\"accent\")),RL=((pL=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s,l,u){var c;return _classCallCheck(this,n),(c=t.call(this,e))._focusMonitor=r,c._changeDetectorRef=i,c.defaults=s,c._animationMode=l,c._onChange=function(e){},c._onTouched=function(){},c._uniqueId=\"mat-slide-toggle-\".concat(++IL),c._required=!1,c._checked=!1,c.name=null,c.id=c._uniqueId,c.labelPosition=\"after\",c.ariaLabel=null,c.ariaLabelledby=null,c.change=new bu,c.toggleChange=new bu,c.dragChange=new bu,c.tabIndex=parseInt(a)||0,c}return _createClass(n,[{key:\"ngAfterContentInit\",value:function(){var e=this;this._focusMonitor.monitor(this._elementRef,!0).subscribe((function(t){\"keyboard\"===t||\"program\"===t?e._inputElement.nativeElement.focus():t||Promise.resolve().then((function(){return e._onTouched()}))}))}},{key:\"ngOnDestroy\",value:function(){this._focusMonitor.stopMonitoring(this._elementRef)}},{key:\"_onChangeEvent\",value:function(e){e.stopPropagation(),this.toggleChange.emit(),this.defaults.disableToggleValue?this._inputElement.nativeElement.checked=this.checked:(this.checked=this._inputElement.nativeElement.checked,this._emitChangeEvent())}},{key:\"_onInputClick\",value:function(e){e.stopPropagation()}},{key:\"writeValue\",value:function(e){this.checked=!!e}},{key:\"registerOnChange\",value:function(e){this._onChange=e}},{key:\"registerOnTouched\",value:function(e){this._onTouched=e}},{key:\"setDisabledState\",value:function(e){this.disabled=e,this._changeDetectorRef.markForCheck()}},{key:\"focus\",value:function(e){this._focusMonitor.focusVia(this._inputElement,\"keyboard\",e)}},{key:\"toggle\",value:function(){this.checked=!this.checked,this._onChange(this.checked)}},{key:\"_emitChangeEvent\",value:function(){this._onChange(this.checked),this.change.emit(new PL(this,this.checked))}},{key:\"_onLabelTextChange\",value:function(){this._changeDetectorRef.detectChanges()}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=mp(e)}},{key:\"checked\",get:function(){return this._checked},set:function(e){this._checked=mp(e),this._changeDetectorRef.markForCheck()}},{key:\"inputId\",get:function(){return\"\".concat(this.id||this._uniqueId,\"-input\")}}]),n}(jL)).\\u0275fac=function(e){return new(e||pL)(Io(Qs),Io(t_),Io(eo),Ao(\"tabindex\"),Io(cc),Io(EL),Io(Yy,8),Io(h_,8))},pL.\\u0275cmp=bt({type:pL,selectors:[[\"mat-slide-toggle\"]],viewQuery:function(e,t){var n;1&e&&(Iu(TL,!0),Iu(xL,!0),Iu(DL,!0)),2&e&&(Yu(n=Hu())&&(t._thumbEl=n.first),Yu(n=Hu())&&(t._thumbBarEl=n.first),Yu(n=Hu())&&(t._inputElement=n.first))},hostAttrs:[1,\"mat-slide-toggle\"],hostVars:12,hostBindings:function(e,t){2&e&&(Ds(\"id\",t.id),Do(\"tabindex\",t.disabled?null:-1)(\"aria-label\",null)(\"aria-labelledby\",null),fs(\"mat-checked\",t.checked)(\"mat-disabled\",t.disabled)(\"mat-slide-toggle-label-before\",\"before\"==t.labelPosition)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\",name:\"name\",id:\"id\",labelPosition:\"labelPosition\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],required:\"required\",checked:\"checked\"},outputs:{change:\"change\",toggleChange:\"toggleChange\",dragChange:\"dragChange\"},exportAs:[\"matSlideToggle\"],features:[$s([AL]),Es],ngContentSelectors:YL,decls:16,vars:18,consts:[[1,\"mat-slide-toggle-label\"],[\"label\",\"\"],[1,\"mat-slide-toggle-bar\"],[\"toggleBar\",\"\"],[\"type\",\"checkbox\",\"role\",\"switch\",1,\"mat-slide-toggle-input\",\"cdk-visually-hidden\",3,\"id\",\"required\",\"tabIndex\",\"checked\",\"disabled\",\"change\",\"click\"],[\"input\",\"\"],[1,\"mat-slide-toggle-thumb-container\"],[\"thumbContainer\",\"\"],[1,\"mat-slide-toggle-thumb\"],[\"mat-ripple\",\"\",1,\"mat-slide-toggle-ripple\",\"mat-focus-indicator\",3,\"matRippleTrigger\",\"matRippleDisabled\",\"matRippleCentered\",\"matRippleRadius\",\"matRippleAnimation\"],[1,\"mat-ripple-element\",\"mat-slide-toggle-persistent-ripple\"],[1,\"mat-slide-toggle-content\",3,\"cdkObserveContent\"],[\"labelContent\",\"\"],[2,\"display\",\"none\"]],template:function(e,t){if(1&e&&(Xo(),Ho(0,\"label\",0,1),Ho(2,\"div\",2,3),Ho(4,\"input\",4,5),qo(\"change\",(function(e){return t._onChangeEvent(e)}))(\"click\",(function(e){return t._onInputClick(e)})),Fo(),Ho(6,\"div\",6,7),No(8,\"div\",8),Ho(9,\"div\",9),No(10,\"div\",10),Fo(),Fo(),Fo(),Ho(11,\"span\",11,12),qo(\"cdkObserveContent\",(function(){return t._onLabelTextChange()})),Ho(13,\"span\",13),Ls(14,\"\\xa0\"),Fo(),ns(15),Fo(),Fo()),2&e){var n=Eo(1),r=Eo(12);Do(\"for\",t.inputId),bi(2),fs(\"mat-slide-toggle-bar-no-side-margin\",!r.textContent||!r.textContent.trim()),bi(2),jo(\"id\",t.inputId)(\"required\",t.required)(\"tabIndex\",t.tabIndex)(\"checked\",t.checked)(\"disabled\",t.disabled),Do(\"name\",t.name)(\"aria-checked\",t.checked.toString())(\"aria-label\",t.ariaLabel)(\"aria-labelledby\",t.ariaLabelledby),bi(5),jo(\"matRippleTrigger\",n)(\"matRippleDisabled\",t.disableRipple||t.disabled)(\"matRippleCentered\",!0)(\"matRippleRadius\",20)(\"matRippleAnimation\",yu(17,OL))}},directives:[sb,Hp],styles:[\".mat-slide-toggle{display:inline-block;height:24px;max-width:100%;line-height:24px;white-space:nowrap;outline:none;-webkit-tap-highlight-color:transparent}.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(16px, 0, 0)}[dir=rtl] .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(-16px, 0, 0)}.mat-slide-toggle.mat-disabled{opacity:.38}.mat-slide-toggle.mat-disabled .mat-slide-toggle-label,.mat-slide-toggle.mat-disabled .mat-slide-toggle-thumb-container{cursor:default}.mat-slide-toggle-label{display:flex;flex:1;flex-direction:row;align-items:center;height:inherit;cursor:pointer}.mat-slide-toggle-content{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-slide-toggle-label-before .mat-slide-toggle-label{order:1}.mat-slide-toggle-label-before .mat-slide-toggle-bar{order:2}[dir=rtl] .mat-slide-toggle-label-before .mat-slide-toggle-bar,.mat-slide-toggle-bar{margin-right:8px;margin-left:0}[dir=rtl] .mat-slide-toggle-bar,.mat-slide-toggle-label-before .mat-slide-toggle-bar{margin-left:8px;margin-right:0}.mat-slide-toggle-bar-no-side-margin{margin-left:0;margin-right:0}.mat-slide-toggle-thumb-container{position:absolute;z-index:1;width:20px;height:20px;top:-3px;left:0;transform:translate3d(0, 0, 0);transition:all 80ms linear;transition-property:transform}._mat-animation-noopable .mat-slide-toggle-thumb-container{transition:none}[dir=rtl] .mat-slide-toggle-thumb-container{left:auto;right:0}.mat-slide-toggle-thumb{height:20px;width:20px;border-radius:50%}.mat-slide-toggle-bar{position:relative;width:36px;height:14px;flex-shrink:0;border-radius:8px}.mat-slide-toggle-input{bottom:0;left:10px}[dir=rtl] .mat-slide-toggle-input{left:auto;right:10px}.mat-slide-toggle-bar,.mat-slide-toggle-thumb{transition:all 80ms linear;transition-property:background-color;transition-delay:50ms}._mat-animation-noopable .mat-slide-toggle-bar,._mat-animation-noopable .mat-slide-toggle-thumb{transition:none}.mat-slide-toggle .mat-slide-toggle-ripple{position:absolute;top:calc(50% - 20px);left:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}.mat-slide-toggle .mat-slide-toggle-ripple .mat-ripple-element:not(.mat-slide-toggle-persistent-ripple){opacity:.12}.mat-slide-toggle-persistent-ripple{width:100%;height:100%;transform:none}.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:.04}.mat-slide-toggle:not(.mat-disabled).cdk-keyboard-focused .mat-slide-toggle-persistent-ripple{opacity:.12}.mat-slide-toggle-persistent-ripple,.mat-slide-toggle.mat-disabled .mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:0}@media(hover: none){.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{display:none}}.cdk-high-contrast-active .mat-slide-toggle-thumb,.cdk-high-contrast-active .mat-slide-toggle-bar{border:1px solid}.cdk-high-contrast-active .mat-slide-toggle.cdk-keyboard-focused .mat-slide-toggle-bar{outline:2px dotted;outline-offset:5px}\\n\"],encapsulation:2,changeDetection:0}),pL),HL=((mL=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:mL}),mL.\\u0275inj=ve({factory:function(e){return new(e||mL)}}),mL),FL=((fL=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:fL}),fL.\\u0275inj=ve({factory:function(e){return new(e||fL)},imports:[[HL,lb,zy,Fp],HL,zy]}),fL),NL={};function zL(){for(var e=arguments.length,t=new Array(e),n=0;n` elements explicitly or just place content inside of a `` for a single row.\")}()}}]),n}(ZL)).\\u0275fac=function(e){return new(e||UL)(Io(Qs),Io(Cp),Io(Wc))},UL.\\u0275cmp=bt({type:UL,selectors:[[\"mat-toolbar\"]],contentQueries:function(e,t,n){var r;1&e&&Pu(n,QL,!0),2&e&&Yu(r=Hu())&&(t._toolbarRows=r)},hostAttrs:[1,\"mat-toolbar\"],hostVars:4,hostBindings:function(e,t){2&e&&fs(\"mat-toolbar-multiple-rows\",t._toolbarRows.length>0)(\"mat-toolbar-single-row\",0===t._toolbarRows.length)},inputs:{color:\"color\"},exportAs:[\"matToolbar\"],features:[Es],ngContentSelectors:KL,decls:2,vars:0,template:function(e,t){1&e&&(Xo(JL),ns(0),ns(1,1))},styles:[\".cdk-high-contrast-active .mat-toolbar{outline:solid 1px}.mat-toolbar-row,.mat-toolbar-single-row{display:flex;box-sizing:border-box;padding:0 16px;width:100%;flex-direction:row;align-items:center;white-space:nowrap}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}\\n\"],encapsulation:2,changeDetection:0}),UL),eT=((WL=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:WL}),WL.\\u0275inj=ve({factory:function(e){return new(e||WL)},imports:[[zy],zy]}),WL),tT=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this))._value=e,r}return _createClass(n,[{key:\"_subscribe\",value:function(e){var t=_get(_getPrototypeOf(n.prototype),\"_subscribe\",this).call(this,e);return t&&!t.closed&&e.next(this._value),t}},{key:\"getValue\",value:function(){if(this.hasError)throw this.thrownError;if(this.closed)throw new S;return this._value}},{key:\"next\",value:function(e){_get(_getPrototypeOf(n.prototype),\"next\",this).call(this,this._value=e)}},{key:\"value\",get:function(){return this.getValue()}}]),n}(x),nT=new w(g);function rT(){return nT}function iT(){for(var e=arguments.length,t=new Array(e),n=0;n0){var o=a.indexOf(n);-1!==o&&a.splice(o,1)}}},{key:\"notifyComplete\",value:function(){}},{key:\"_next\",value:function(e){if(0===this.toRespond.length){var t=[e].concat(_toConsumableArray(this.values));this.project?this._tryProject(t):this.destination.next(t)}}},{key:\"_tryProject\",value:function(e){var t;try{t=this.project.apply(this,e)}catch(n){return void this.destination.error(n)}this.destination.next(t)}}]),n}(H),sT=[\"aria-label\",\"\\u0417\\u0430\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\"];function lT(e,t){if(1&e){var n=Wo();Ho(0,\"button\",1),iu(1,sT),qo(\"click\",(function(){return nn(n),Zo().closeHandler()})),Ho(2,\"span\",2),Ls(3,\"\\xd7\"),Fo(),Fo()}}var uT,cT,dT=[\"*\"];function hT(e,t){if(1&e){var n=Wo();Ho(0,\"li\",7),qo(\"click\",(function(){nn(n);var e=t.$implicit,r=Zo(2);return r.select(e.id,r.NgbSlideEventSource.INDICATOR)})),Fo()}if(2&e){var r=t.$implicit,i=Zo(2);fs(\"active\",r.id===i.activeId),jo(\"id\",r.id)}}function fT(e,t){if(1&e&&(Ho(0,\"ol\",5),Yo(1,hT,1,3,\"li\",6),Fo()),2&e){var n=Zo();bi(1),jo(\"ngForOf\",n.slides)}}function mT(e,t){}function pT(e,t){if(1&e&&(Ho(0,\"div\",8),Yo(1,mT,0,0,\"ng-template\",9),Fo()),2&e){var n=t.$implicit,r=Zo();fs(\"active\",n.id===r.activeId),bi(1),jo(\"ngTemplateOutlet\",n.tplRef)}}function _T(e,t){if(1&e){var n=Wo();Ho(0,\"a\",10),qo(\"click\",(function(){nn(n);var e=Zo();return e.prev(e.NgbSlideEventSource.ARROW_LEFT)})),No(1,\"span\",11),Ho(2,\"span\",12),ru(3,uT),Fo(),Fo()}}function vT(e,t){if(1&e){var n=Wo();Ho(0,\"a\",13),qo(\"click\",(function(){nn(n);var e=Zo();return e.next(e.NgbSlideEventSource.ARROW_RIGHT)})),No(1,\"span\",14),Ho(2,\"span\",12),ru(3,cT),Fo(),Fo()}}function gT(e){return null!=e}uT=\"Previous\",cT=\"Next\",\"Previous month\",\"Previous month\",\"Next month\",\"Next month\",\"Select month\",\"Select month\",\"Select year\",\"Select year\",\"\\xAB\\xAB\",\"\\xAB\",\"\\xBB\",\"\\xBB\\xBB\",\"First\",\"Previous\",\"Next\",\"Last\",\"\" + \"\\ufffd0\\ufffd\" + \"%\",\"HH\",\"Hours\",\"MM\",\"Minutes\",\"Increment hours\",\"Decrement hours\",\"Increment minutes\",\"Decrement minutes\",\"SS\",\"Seconds\",\"Increment seconds\",\"Decrement seconds\",\"\" + \"\\ufffd0\\ufffd\" + \"\",\"\" + \"\\ufffd0\\ufffd\" + \"\",\"\\u0417\\u0430\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\",\"undefined\"==typeof Element||Element.prototype.closest||(Element.prototype.matches||(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector),Element.prototype.closest=function(e){var t=this;if(!document.documentElement.contains(t))return null;do{if(t.matches(e))return t;t=t.parentElement||t.parentNode}while(null!==t&&1===t.nodeType);return null});var yT,bT,kT,wT,CT,MT,ST,LT,TT,xT,DT,OT=((LT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:LT}),LT.\\u0275inj=ve({factory:function(e){return new(e||LT)},imports:[[Nd]]}),LT),YT=((ST=function e(){_classCallCheck(this,e),this.dismissible=!0,this.type=\"warning\"}).\\u0275prov=_e({token:ST,factory:ST.\\u0275fac=function(e){return new(e||ST)},providedIn:\"root\"}),ST.ngInjectableDef=_e({factory:function(){return new ST},token:ST,providedIn:\"root\"}),ST),ET=((MT=function(){function e(t,n,r){_classCallCheck(this,e),this._renderer=n,this._element=r,this.close=new bu,this.dismissible=t.dismissible,this.type=t.type}return _createClass(e,[{key:\"closeHandler\",value:function(){this.close.emit(null)}},{key:\"ngOnChanges\",value:function(e){var t=e.type;t&&!t.firstChange&&(this._renderer.removeClass(this._element.nativeElement,\"alert-\".concat(t.previousValue)),this._renderer.addClass(this._element.nativeElement,\"alert-\".concat(t.currentValue)))}},{key:\"ngOnInit\",value:function(){this._renderer.addClass(this._element.nativeElement,\"alert-\".concat(this.type))}}]),e}()).\\u0275fac=function(e){return new(e||MT)(Io(YT),Io(nl),Io(Qs))},MT.\\u0275cmp=bt({type:MT,selectors:[[\"ngb-alert\"]],hostAttrs:[\"role\",\"alert\",1,\"alert\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"alert-dismissible\",t.dismissible)},inputs:{dismissible:\"dismissible\",type:\"type\"},outputs:{close:\"close\"},features:[Hs],ngContentSelectors:dT,decls:2,vars:1,consts:[[\"type\",\"button\",\"class\",\"close\",\"aria-label\",\"Close\",3,\"click\",4,\"ngIf\"],[\"type\",\"button\",1,\"close\",3,\"click\",6,\"aria-label\"],[\"aria-hidden\",\"true\"]],template:function(e,t){1&e&&(Xo(),ns(0),Yo(1,lT,4,0,\"button\",0)),2&e&&(bi(1),jo(\"ngIf\",t.dismissible))},directives:[Sd],styles:[\"ngb-alert{display:block}\"],encapsulation:2,changeDetection:0}),MT),IT=((CT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:CT}),CT.\\u0275inj=ve({factory:function(e){return new(e||CT)},imports:[[Nd]]}),CT),AT=((wT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:wT}),wT.\\u0275inj=ve({factory:function(e){return new(e||wT)}}),wT),PT=((kT=function e(){_classCallCheck(this,e),this.interval=5e3,this.wrap=!0,this.keyboard=!0,this.pauseOnHover=!0,this.showNavigationArrows=!0,this.showNavigationIndicators=!0}).\\u0275prov=_e({token:kT,factory:kT.\\u0275fac=function(e){return new(e||kT)},providedIn:\"root\"}),kT.ngInjectableDef=_e({factory:function(){return new kT},token:kT,providedIn:\"root\"}),kT),jT=0,RT=((bT=function e(t){_classCallCheck(this,e),this.tplRef=t,this.id=\"ngb-slide-\".concat(jT++)}).\\u0275fac=function(e){return new(e||bT)(Io(wl))},bT.\\u0275dir=Lt({type:bT,selectors:[[\"ng-template\",\"ngbSlide\",\"\"]],inputs:{id:\"id\"}}),bT),HT=((yT=function(){function e(t,n,r,i){_classCallCheck(this,e),this._platformId=n,this._ngZone=r,this._cd=i,this.NgbSlideEventSource=NT,this._destroy$=new x,this._interval$=new tT(0),this._mouseHover$=new tT(!1),this._pauseOnHover$=new tT(!1),this._pause$=new tT(!1),this._wrap$=new tT(!1),this.slide=new bu,this.interval=t.interval,this.wrap=t.wrap,this.keyboard=t.keyboard,this.pauseOnHover=t.pauseOnHover,this.showNavigationArrows=t.showNavigationArrows,this.showNavigationIndicators=t.showNavigationIndicators}return _createClass(e,[{key:\"mouseEnter\",value:function(){this._mouseHover$.next(!0)}},{key:\"mouseLeave\",value:function(){this._mouseHover$.next(!1)}},{key:\"ngAfterContentInit\",value:function(){var e=this;zd(this._platformId)&&this._ngZone.runOutsideAngular((function(){var t=zL(e.slide.pipe(F((function(e){return e.current})),sv(e.activeId)),e._wrap$,e.slides.changes.pipe(sv(null))).pipe(F((function(t){var n=_slicedToArray(t,2),r=n[0],i=n[1],a=e.slides.toArray(),o=e._getSlideIdxById(r);return i?a.length>1:o0?Dk(e,e):nT})),Ek(e._destroy$)).subscribe((function(){return e._ngZone.run((function(){return e.next(NT.TIMER)}))}))})),this.slides.changes.pipe(Ek(this._destroy$)).subscribe((function(){return e._cd.markForCheck()}))}},{key:\"ngAfterContentChecked\",value:function(){var e=this._getSlideById(this.activeId);this.activeId=e?e.id:this.slides.length?this.slides.first.id:null}},{key:\"ngOnDestroy\",value:function(){this._destroy$.next()}},{key:\"select\",value:function(e,t){this._cycleToSelected(e,this._getSlideEventDirection(this.activeId,e),t)}},{key:\"prev\",value:function(e){this._cycleToSelected(this._getPrevSlide(this.activeId),FT.RIGHT,e)}},{key:\"next\",value:function(e){this._cycleToSelected(this._getNextSlide(this.activeId),FT.LEFT,e)}},{key:\"pause\",value:function(){this._pause$.next(!0)}},{key:\"cycle\",value:function(){this._pause$.next(!1)}},{key:\"_cycleToSelected\",value:function(e,t,n){var r=this._getSlideById(e);r&&r.id!==this.activeId&&(this.slide.emit({prev:this.activeId,current:r.id,direction:t,paused:this._pause$.value,source:n}),this.activeId=r.id),this._cd.markForCheck()}},{key:\"_getSlideEventDirection\",value:function(e,t){return this._getSlideIdxById(e)>this._getSlideIdxById(t)?FT.RIGHT:FT.LEFT}},{key:\"_getSlideById\",value:function(e){return this.slides.find((function(t){return t.id===e}))}},{key:\"_getSlideIdxById\",value:function(e){return this.slides.toArray().indexOf(this._getSlideById(e))}},{key:\"_getNextSlide\",value:function(e){var t=this.slides.toArray(),n=this._getSlideIdxById(e);return n===t.length-1?this.wrap?t[0].id:t[t.length-1].id:t[n+1].id}},{key:\"_getPrevSlide\",value:function(e){var t=this.slides.toArray(),n=this._getSlideIdxById(e);return 0===n?this.wrap?t[t.length-1].id:t[0].id:t[n-1].id}},{key:\"interval\",set:function(e){this._interval$.next(e)},get:function(){return this._interval$.value}},{key:\"wrap\",set:function(e){this._wrap$.next(e)},get:function(){return this._wrap$.value}},{key:\"pauseOnHover\",set:function(e){this._pauseOnHover$.next(e)},get:function(){return this._pauseOnHover$.value}}]),e}()).\\u0275fac=function(e){return new(e||yT)(Io(PT),Io($u),Io(cc),Io(eo))},yT.\\u0275cmp=bt({type:yT,selectors:[[\"ngb-carousel\"]],contentQueries:function(e,t,n){var r;1&e&&Pu(n,RT,!1),2&e&&Yu(r=Hu())&&(t.slides=r)},hostAttrs:[\"tabIndex\",\"0\",1,\"carousel\",\"slide\"],hostVars:2,hostBindings:function(e,t){1&e&&qo(\"keydown.arrowLeft\",(function(){return t.keyboard&&t.prev(t.NgbSlideEventSource.ARROW_LEFT)}))(\"keydown.arrowRight\",(function(){return t.keyboard&&t.next(t.NgbSlideEventSource.ARROW_RIGHT)}))(\"mouseenter\",(function(){return t.mouseEnter()}))(\"mouseleave\",(function(){return t.mouseLeave()})),2&e&&hs(\"display\",\"block\")},inputs:{interval:\"interval\",wrap:\"wrap\",keyboard:\"keyboard\",pauseOnHover:\"pauseOnHover\",showNavigationArrows:\"showNavigationArrows\",showNavigationIndicators:\"showNavigationIndicators\",activeId:\"activeId\"},outputs:{slide:\"slide\"},exportAs:[\"ngbCarousel\"],decls:5,vars:4,consts:[[\"class\",\"carousel-indicators\",4,\"ngIf\"],[1,\"carousel-inner\"],[\"class\",\"carousel-item\",3,\"active\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"carousel-control-prev\",\"role\",\"button\",3,\"click\",4,\"ngIf\"],[\"class\",\"carousel-control-next\",\"role\",\"button\",3,\"click\",4,\"ngIf\"],[1,\"carousel-indicators\"],[3,\"id\",\"active\",\"click\",4,\"ngFor\",\"ngForOf\"],[3,\"id\",\"click\"],[1,\"carousel-item\"],[3,\"ngTemplateOutlet\"],[\"role\",\"button\",1,\"carousel-control-prev\",3,\"click\"],[\"aria-hidden\",\"true\",1,\"carousel-control-prev-icon\"],[1,\"sr-only\"],[\"role\",\"button\",1,\"carousel-control-next\",3,\"click\"],[\"aria-hidden\",\"true\",1,\"carousel-control-next-icon\"]],template:function(e,t){1&e&&(Yo(0,fT,2,1,\"ol\",0),Ho(1,\"div\",1),Yo(2,pT,2,3,\"div\",2),Fo(),Yo(3,_T,4,0,\"a\",3),Yo(4,vT,4,0,\"a\",4)),2&e&&(jo(\"ngIf\",t.showNavigationIndicators),bi(2),jo(\"ngForOf\",t.slides),bi(1),jo(\"ngIf\",t.showNavigationArrows),bi(1),jo(\"ngIf\",t.showNavigationArrows))},directives:[Sd,Cd,Fd],encapsulation:2,changeDetection:0}),yT),FT={LEFT:\"left\",RIGHT:\"right\"},NT={TIMER:\"timer\",ARROW_LEFT:\"arrowLeft\",ARROW_RIGHT:\"arrowRight\",INDICATOR:\"indicator\"},zT=((DT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:DT}),DT.\\u0275inj=ve({factory:function(e){return new(e||DT)},imports:[[Nd]]}),DT),VT=((xT=function e(){_classCallCheck(this,e),this.collapsed=!1}).\\u0275fac=function(e){return new(e||xT)},xT.\\u0275dir=Lt({type:xT,selectors:[[\"\",\"ngbCollapse\",\"\"]],hostVars:4,hostBindings:function(e,t){2&e&&fs(\"collapse\",!0)(\"show\",!t.collapsed)},inputs:{collapsed:[\"ngbCollapse\",\"collapsed\"]},exportAs:[\"ngbCollapse\"]}),xT),WT=((TT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:TT}),TT.\\u0275inj=ve({factory:function(e){return new(e||TT)}}),TT),UT=function(){var e={Tab:9,Enter:13,Escape:27,Space:32,PageUp:33,PageDown:34,End:35,Home:36,ArrowLeft:37,ArrowUp:38,ArrowRight:39,ArrowDown:40};return e[e.Tab]=\"Tab\",e[e.Enter]=\"Enter\",e[e.Escape]=\"Escape\",e[e.Space]=\"Space\",e[e.PageUp]=\"PageUp\",e[e.PageDown]=\"PageDown\",e[e.End]=\"End\",e[e.Home]=\"Home\",e[e.ArrowLeft]=\"ArrowLeft\",e[e.ArrowUp]=\"ArrowUp\",e[e.ArrowRight]=\"ArrowRight\",e[e.ArrowDown]=\"ArrowDown\",e}();\"undefined\"!=typeof navigator&&navigator.userAgent&&navigator;var BT=[\"a[href]\",\"button:not([disabled])\",'input:not([disabled]):not([type=\"hidden\"])',\"select:not([disabled])\",\"textarea:not([disabled])\",\"[contenteditable]\",'[tabindex]:not([tabindex=\"-1\"])'].join(\", \");function qT(e){var t=Array.from(e.querySelectorAll(BT)).filter((function(e){return-1!==e.tabIndex}));return[t[0],t[t.length-1]]}var GT,$T,JT,KT,ZT,QT,XT,ex,tx,nx,rx,ix,ax,ox,sx,lx,ux,cx,dx,hx=((JT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:JT}),JT.\\u0275inj=ve({factory:function(e){return new(e||JT)},imports:[[Nd,Gm]]}),JT),fx=(($T=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:$T}),$T.\\u0275inj=ve({factory:function(e){return new(e||$T)}}),$T),mx=((GT=function e(){_classCallCheck(this,e),this.backdrop=!0,this.keyboard=!0}).\\u0275prov=_e({token:GT,factory:GT.\\u0275fac=function(e){return new(e||GT)},providedIn:\"root\"}),GT.ngInjectableDef=_e({factory:function(){return new GT},token:GT,providedIn:\"root\"}),GT),px=function e(t,n,r){_classCallCheck(this,e),this.nodes=t,this.viewRef=n,this.componentRef=r},_x=function(){},vx=((ZT=function(){function e(t){_classCallCheck(this,e),this._document=t}return _createClass(e,[{key:\"compensate\",value:function(){return this._isPresent()?this._adjustBody(this._getWidth()):_x}},{key:\"_adjustBody\",value:function(e){var t=this._document.body,n=t.style.paddingRight,r=parseFloat(window.getComputedStyle(t)[\"padding-right\"]);return t.style[\"padding-right\"]=\"\".concat(r+e,\"px\"),function(){return t.style[\"padding-right\"]=n}}},{key:\"_isPresent\",value:function(){var e=this._document.body.getBoundingClientRect();return e.left+e.right3&&void 0!==arguments[3]&&arguments[3];s._ngZone.runOutsideAngular((function(){var e=mk(t,\"focusin\").pipe(Ek(n),F((function(e){return e.target})));mk(t,\"keydown\").pipe(Ek(n),Gd((function(e){return e.which===UT.Tab})),iT(e)).subscribe((function(e){var n=_slicedToArray(e,2),r=n[0],i=n[1],a=_slicedToArray(qT(t),2),o=a[0],s=a[1];i!==o&&i!==t||!r.shiftKey||(s.focus(),r.preventDefault()),i!==s||r.shiftKey||(o.focus(),r.preventDefault())})),r&&mk(t,\"click\").pipe(Ek(n),iT(e),F((function(e){return e[1]}))).subscribe((function(e){return e.focus()}))}))})(0,e.location.nativeElement,s._activeWindowCmptHasChanged),s._revertAriaHidden(),s._setAriaHidden(e.location.nativeElement)}}))}return _createClass(e,[{key:\"open\",value:function(e,t,n,r){var i=this,a=gT(r.container)?this._document.querySelector(r.container):this._document.body,o=this._rendererFactory.createRenderer(null,null),s=this._scrollBar.compensate(),l=function(){i._modalRefs.length||(o.removeClass(i._document.body,\"modal-open\"),i._revertAriaHidden())};if(!a)throw new Error('The specified modal container \"'.concat(r.container||\"body\",'\" was not found in the DOM.'));var u=new yx,c=this._getContentRef(e,r.injector||t,n,u,r),d=!1!==r.backdrop?this._attachBackdrop(e,a):null,h=this._attachWindowComponent(e,a,c),f=new bx(h,c,d,r.beforeDismiss);return this._registerModalRef(f),this._registerWindowCmpt(h),f.result.then(s,s),f.result.then(l,l),u.close=function(e){f.close(e)},u.dismiss=function(e){f.dismiss(e)},this._applyWindowOptions(h.instance,r),1===this._modalRefs.length&&o.addClass(this._document.body,\"modal-open\"),d&&d.instance&&this._applyBackdropOptions(d.instance,r),f}},{key:\"dismissAll\",value:function(e){this._modalRefs.forEach((function(t){return t.dismiss(e)}))}},{key:\"hasOpenModals\",value:function(){return this._modalRefs.length>0}},{key:\"_attachBackdrop\",value:function(e,t){var n=e.resolveComponentFactory(gx).create(this._injector);return this._applicationRef.attachView(n.hostView),t.appendChild(n.location.nativeElement),n}},{key:\"_attachWindowComponent\",value:function(e,t,n){var r=e.resolveComponentFactory(wx).create(this._injector,n.nodes);return this._applicationRef.attachView(r.hostView),t.appendChild(r.location.nativeElement),r}},{key:\"_applyWindowOptions\",value:function(e,t){this._windowAttributes.forEach((function(n){gT(t[n])&&(e[n]=t[n])}))}},{key:\"_applyBackdropOptions\",value:function(e,t){this._backdropAttributes.forEach((function(n){gT(t[n])&&(e[n]=t[n])}))}},{key:\"_getContentRef\",value:function(e,t,n,r,i){return n?n instanceof wl?this._createFromTemplateRef(n,r):\"string\"==typeof n?this._createFromString(n):this._createFromComponent(e,t,n,r,i):new px([])}},{key:\"_createFromTemplateRef\",value:function(e,t){var n=e.createEmbeddedView({$implicit:t,close:function(e){t.close(e)},dismiss:function(e){t.dismiss(e)}});return this._applicationRef.attachView(n),new px([n.rootNodes],n)}},{key:\"_createFromString\",value:function(e){var t=this._document.createTextNode(\"\".concat(e));return new px([[t]])}},{key:\"_createFromComponent\",value:function(e,t,n,r,i){var a=e.resolveComponentFactory(n),o=vo.create({providers:[{provide:yx,useValue:r}],parent:t}),s=a.create(o),l=s.location.nativeElement;return i.scrollable&&l.classList.add(\"component-host-scrollable\"),this._applicationRef.attachView(s.hostView),new px([[l]],s.hostView,s)}},{key:\"_setAriaHidden\",value:function(e){var t=this,n=e.parentElement;n&&e!==this._document.body&&(Array.from(n.children).forEach((function(n){n!==e&&\"SCRIPT\"!==n.nodeName&&(t._ariaHiddenValues.set(n,n.getAttribute(\"aria-hidden\")),n.setAttribute(\"aria-hidden\",\"true\"))})),this._setAriaHidden(n))}},{key:\"_revertAriaHidden\",value:function(){this._ariaHiddenValues.forEach((function(e,t){e?t.setAttribute(\"aria-hidden\",e):t.removeAttribute(\"aria-hidden\")})),this._ariaHiddenValues.clear()}},{key:\"_registerModalRef\",value:function(e){var t=this,n=function(){var n=t._modalRefs.indexOf(e);n>-1&&t._modalRefs.splice(n,1)};this._modalRefs.push(e),e.result.then(n,n)}},{key:\"_registerWindowCmpt\",value:function(e){var t=this;this._windowCmpts.push(e),this._activeWindowCmptHasChanged.next(),e.onDestroy((function(){var n=t._windowCmpts.indexOf(e);n>-1&&(t._windowCmpts.splice(n,1),t._activeWindowCmptHasChanged.next())}))}}]),e}()).\\u0275fac=function(e){return new(e||ux)(et(Oc),et(vo),et(Wc),et(vx),et(el),et(cc))},ux.\\u0275prov=_e({token:ux,factory:ux.\\u0275fac,providedIn:\"root\"}),ux.ngInjectableDef=_e({factory:function(){return new ux(et(Oc),et(qe),et(Wc),et(vx),et(el),et(cc))},token:ux,providedIn:\"root\"}),ux),Mx=((lx=function(){function e(t,n,r,i){_classCallCheck(this,e),this._moduleCFR=t,this._injector=n,this._modalStack=r,this._config=i}return _createClass(e,[{key:\"open\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=Object.assign({},this._config,t);return this._modalStack.open(this._moduleCFR,this._injector,e,n)}},{key:\"dismissAll\",value:function(e){this._modalStack.dismissAll(e)}},{key:\"hasOpenModals\",value:function(){return this._modalStack.hasOpenModals()}}]),e}()).\\u0275fac=function(e){return new(e||lx)(et(Zs),et(vo),et(Cx),et(mx))},lx.\\u0275prov=_e({token:lx,factory:lx.\\u0275fac,providedIn:\"root\"}),lx.ngInjectableDef=_e({factory:function(){return new lx(et(Zs),et(qe),et(Cx),et(mx))},token:lx,providedIn:\"root\"}),lx),Sx=((sx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:sx}),sx.\\u0275inj=ve({factory:function(e){return new(e||sx)},providers:[Mx]}),sx),Lx=((ox=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:ox}),ox.\\u0275inj=ve({factory:function(e){return new(e||ox)},imports:[[Nd]]}),ox),Tx=((ax=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:ax}),ax.\\u0275inj=ve({factory:function(e){return new(e||ax)},imports:[[Nd]]}),ax),xx=((ix=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:ix}),ix.\\u0275inj=ve({factory:function(e){return new(e||ix)},imports:[[Nd]]}),ix),Dx=((rx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:rx}),rx.\\u0275inj=ve({factory:function(e){return new(e||rx)},imports:[[Nd]]}),rx),Ox=((nx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:nx}),nx.\\u0275inj=ve({factory:function(e){return new(e||nx)},imports:[[Nd]]}),nx),Yx=((tx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:tx}),tx.\\u0275inj=ve({factory:function(e){return new(e||tx)},imports:[[Nd]]}),tx),Ex=((ex=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:ex}),ex.\\u0275inj=ve({factory:function(e){return new(e||ex)},imports:[[Nd]]}),ex),Ix=((XT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:XT}),XT.\\u0275inj=ve({factory:function(e){return new(e||XT)}}),XT),Ax=((QT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:QT}),QT.\\u0275inj=ve({factory:function(e){return new(e||QT)},imports:[[Nd]]}),QT),Px=[OT,IT,AT,zT,WT,hx,fx,Sx,Lx,Tx,xx,Dx,Ox,Yx,Ex,Ix,Ax],jx=((dx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:dx}),dx.\\u0275inj=ve({factory:function(e){return new(e||dx)},imports:[Px,OT,IT,AT,zT,WT,hx,fx,Sx,Lx,Tx,xx,Dx,Ox,Yx,Ex,Ix,Ax]}),dx),Rx=n(\"aCrv\"),Hx=[\"header\"],Fx=[\"container\"],Nx=[\"content\"],zx=[\"invisiblePadding\"],Vx=[\"*\"];function Wx(){return{scrollThrottlingTime:0,scrollDebounceTime:0,scrollAnimationTime:750,checkResizeInterval:1e3,resizeBypassRefreshThreshold:5,modifyOverflowStyleOfParentScroll:!0,stripedTable:!1}}var Ux,Bx,qx,Gx=((Bx=function(){function e(t,n,r,i,a,o){_classCallCheck(this,e),this.element=t,this.renderer=n,this.zone=r,this.changeDetectorRef=i,this.window=window,this.executeRefreshOutsideAngularZone=!1,this._enableUnequalChildrenSizes=!1,this.useMarginInsteadOfTranslate=!1,this.ssrViewportWidth=1920,this.ssrViewportHeight=1080,this._bufferAmount=0,this._items=[],this.compareItems=function(e,t){return e===t},this.vsUpdate=new bu,this.vsChange=new bu,this.vsStart=new bu,this.vsEnd=new bu,this.calculatedScrollbarWidth=0,this.calculatedScrollbarHeight=0,this.padding=0,this.previousViewPort={},this.cachedPageSize=0,this.previousScrollNumberElements=0,this.isAngularUniversalSSR=function(e){return\"server\"===e}(a),this.scrollThrottlingTime=o.scrollThrottlingTime,this.scrollDebounceTime=o.scrollDebounceTime,this.scrollAnimationTime=o.scrollAnimationTime,this.scrollbarWidth=o.scrollbarWidth,this.scrollbarHeight=o.scrollbarHeight,this.checkResizeInterval=o.checkResizeInterval,this.resizeBypassRefreshThreshold=o.resizeBypassRefreshThreshold,this.modifyOverflowStyleOfParentScroll=o.modifyOverflowStyleOfParentScroll,this.stripedTable=o.stripedTable,this.horizontal=!1,this.resetWrapGroupDimensions()}return _createClass(e,[{key:\"updateOnScrollFunction\",value:function(){var e=this;this.onScroll=this.scrollDebounceTime?this.debounce((function(){e.refresh_internal(!1)}),this.scrollDebounceTime):this.scrollThrottlingTime?this.throttleTrailing((function(){e.refresh_internal(!1)}),this.scrollThrottlingTime):function(){e.refresh_internal(!1)}}},{key:\"revertParentOverscroll\",value:function(){var e=this.getScrollElement();e&&this.oldParentScrollOverflow&&(e.style[\"overflow-y\"]=this.oldParentScrollOverflow.y,e.style[\"overflow-x\"]=this.oldParentScrollOverflow.x),this.oldParentScrollOverflow=void 0}},{key:\"ngOnInit\",value:function(){this.addScrollEventHandlers()}},{key:\"ngOnDestroy\",value:function(){this.removeScrollEventHandlers(),this.revertParentOverscroll()}},{key:\"ngOnChanges\",value:function(e){var t=this.cachedItemsLength!==this.items.length;this.cachedItemsLength=this.items.length,this.refresh_internal(t||!e.items||!e.items.previousValue||0===e.items.previousValue.length)}},{key:\"ngDoCheck\",value:function(){if(this.cachedItemsLength!==this.items.length)return this.cachedItemsLength=this.items.length,void this.refresh_internal(!0);if(this.previousViewPort&&this.viewPortItems&&this.viewPortItems.length>0){for(var e=!1,t=0;t=0&&this.invalidateCachedMeasurementAtIndex(t)}else this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0;this.refresh_internal(!1)}},{key:\"invalidateCachedMeasurementAtIndex\",value:function(e){if(this.enableUnequalChildrenSizes){var t=this.wrapGroupDimensions.maxChildSizePerWrapGroup[e];t&&(this.wrapGroupDimensions.maxChildSizePerWrapGroup[e]=void 0,--this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes,this.wrapGroupDimensions.sumOfKnownWrapGroupChildWidths-=t.childWidth||0,this.wrapGroupDimensions.sumOfKnownWrapGroupChildHeights-=t.childHeight||0)}else this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0;this.refresh_internal(!1)}},{key:\"scrollInto\",value:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=arguments.length>3?arguments[3]:void 0,i=arguments.length>4?arguments[4]:void 0,a=this.items.indexOf(e);-1!==a&&this.scrollToIndex(a,t,n,r,i)}},{key:\"scrollToIndex\",value:function(e){var t=this,n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,i=arguments.length>3?arguments[3]:void 0,a=arguments.length>4?arguments[4]:void 0,o=5,s=function i(){if(--o<=0)a&&a();else{var s=t.calculateDimensions(),l=Math.min(Math.max(e,0),s.itemCount-1);t.previousViewPort.startIndex!==l?t.scrollToIndex_internal(e,n,r,0,i):a&&a()}};this.scrollToIndex_internal(e,n,r,i,s)}},{key:\"scrollToIndex_internal\",value:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=arguments.length>3?arguments[3]:void 0,i=arguments.length>4?arguments[4]:void 0;r=void 0===r?this.scrollAnimationTime:r;var a=this.calculateDimensions(),o=this.calculatePadding(e,a)+n;t||(o-=a.wrapGroupsPerPage*a[this._childScrollDim]),this.scrollToPosition(o,r,i)}},{key:\"scrollToPosition\",value:function(e,t,n){var r=this;e+=this.getElementsOffset(),t=void 0===t?this.scrollAnimationTime:t;var i,a=this.getScrollElement();if(this.currentTween&&(this.currentTween.stop(),this.currentTween=void 0),!t)return this.renderer.setProperty(a,this._scrollType,e),void this.refresh_internal(!1,n);var o={scrollPosition:a[this._scrollType]},s=new Rx.Tween(o).to({scrollPosition:e},t).easing(Rx.Easing.Quadratic.Out).onUpdate((function(e){isNaN(e.scrollPosition)||(r.renderer.setProperty(a,r._scrollType,e.scrollPosition),r.refresh_internal(!1))})).onStop((function(){cancelAnimationFrame(i)})).start();(function t(a){s.isPlaying()&&(s.update(a),o.scrollPosition!==e?r.zone.runOutsideAngular((function(){i=requestAnimationFrame(t)})):r.refresh_internal(!1,n))})(),this.currentTween=s}},{key:\"getElementSize\",value:function(e){var t=e.getBoundingClientRect(),n=getComputedStyle(e),r=parseInt(n[\"margin-top\"],10)||0,i=parseInt(n[\"margin-bottom\"],10)||0,a=parseInt(n[\"margin-left\"],10)||0,o=parseInt(n[\"margin-right\"],10)||0;return{top:t.top+r,bottom:t.bottom+i,left:t.left+a,right:t.right+o,width:t.width+a+o,height:t.height+r+i}}},{key:\"checkScrollElementResized\",value:function(){var e,t=this.getElementSize(this.getScrollElement());if(this.previousScrollBoundingRect){var n=Math.abs(t.width-this.previousScrollBoundingRect.width),r=Math.abs(t.height-this.previousScrollBoundingRect.height);e=n>this.resizeBypassRefreshThreshold||r>this.resizeBypassRefreshThreshold}else e=!0;e&&(this.previousScrollBoundingRect=t,t.width>0&&t.height>0&&this.refresh_internal(!1))}},{key:\"updateDirection\",value:function(){this.horizontal?(this._invisiblePaddingProperty=\"width\",this._offsetType=\"offsetLeft\",this._pageOffsetType=\"pageXOffset\",this._childScrollDim=\"childWidth\",this._marginDir=\"margin-left\",this._translateDir=\"translateX\",this._scrollType=\"scrollLeft\"):(this._invisiblePaddingProperty=\"height\",this._offsetType=\"offsetTop\",this._pageOffsetType=\"pageYOffset\",this._childScrollDim=\"childHeight\",this._marginDir=\"margin-top\",this._translateDir=\"translateY\",this._scrollType=\"scrollTop\")}},{key:\"debounce\",value:function(e,t){var n=this.throttleTrailing(e,t),r=function(){n.cancel(),n.apply(this,arguments)};return r.cancel=function(){n.cancel()},r}},{key:\"throttleTrailing\",value:function(e,t){var n=void 0,r=arguments,i=function(){var i=this;r=arguments,n||(t<=0?e.apply(i,r):n=setTimeout((function(){n=void 0,e.apply(i,r)}),t))};return i.cancel=function(){n&&(clearTimeout(n),n=void 0)},i}},{key:\"refresh_internal\",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:2;if(e&&this.previousViewPort&&this.previousViewPort.scrollStartPosition>0){var i=this.previousViewPort,a=this.viewPortItems,o=t;t=function(){var e=n.previousViewPort.scrollLength-i.scrollLength;if(e>0&&n.viewPortItems){var t=a[0],r=n.items.findIndex((function(e){return n.compareItems(t,e)}));if(r>n.previousViewPort.startIndexWithBuffer){for(var s=!1,l=1;l=0&&i.endIndexWithBuffer>=0?n.items.slice(i.startIndexWithBuffer,i.endIndexWithBuffer+1):[],n.vsUpdate.emit(n.viewPortItems),a&&n.vsStart.emit(f),o&&n.vsEnd.emit(f),(a||o)&&(n.changeDetectorRef.markForCheck(),n.vsChange.emit(f)),r>0?n.refresh_internal(!1,t,r-1):t&&t()};n.executeRefreshOutsideAngularZone?m():n.zone.run(m)}else{if(r>0&&(s||l))return void n.refresh_internal(!1,t,r-1);t&&t()}}))}))}},{key:\"getScrollElement\",value:function(){return this.parentScroll instanceof Window?document.scrollingElement||document.documentElement||document.body:this.parentScroll||this.element.nativeElement}},{key:\"addScrollEventHandlers\",value:function(){var e=this;if(!this.isAngularUniversalSSR){var t=this.getScrollElement();this.removeScrollEventHandlers(),this.zone.runOutsideAngular((function(){e.parentScroll instanceof Window?(e.disposeScrollHandler=e.renderer.listen(\"window\",\"scroll\",e.onScroll),e.disposeResizeHandler=e.renderer.listen(\"window\",\"resize\",e.onScroll)):(e.disposeScrollHandler=e.renderer.listen(t,\"scroll\",e.onScroll),e._checkResizeInterval>0&&(e.checkScrollElementResizedTimer=setInterval((function(){e.checkScrollElementResized()}),e._checkResizeInterval)))}))}}},{key:\"removeScrollEventHandlers\",value:function(){this.checkScrollElementResizedTimer&&clearInterval(this.checkScrollElementResizedTimer),this.disposeScrollHandler&&(this.disposeScrollHandler(),this.disposeScrollHandler=void 0),this.disposeResizeHandler&&(this.disposeResizeHandler(),this.disposeResizeHandler=void 0)}},{key:\"getElementsOffset\",value:function(){if(this.isAngularUniversalSSR)return 0;var e=0;if(this.containerElementRef&&this.containerElementRef.nativeElement&&(e+=this.containerElementRef.nativeElement[this._offsetType]),this.parentScroll){var t=this.getScrollElement(),n=this.getElementSize(this.element.nativeElement),r=this.getElementSize(t);e+=this.horizontal?n.left-r.left:n.top-r.top,this.parentScroll instanceof Window||(e+=t[this._scrollType])}return e}},{key:\"countItemsPerWrapGroup\",value:function(){if(this.isAngularUniversalSSR)return Math.round(this.horizontal?this.ssrViewportHeight/this.ssrChildHeight:this.ssrViewportWidth/this.ssrChildWidth);var e=this.horizontal?\"offsetLeft\":\"offsetTop\",t=(this.containerElementRef&&this.containerElementRef.nativeElement||this.contentElementRef.nativeElement).children,n=t?t.length:0;if(0===n)return 1;for(var r=t[0][e],i=1;i0){var w=Math.min(c,k);k-=w,c-=w}p+=k,k>0&&i>=p&&++t}else{var C=Math.min(m,Math.max(a-_,0));if(c>0){var M=Math.min(c,C);C-=M,c-=M}_+=C,C>0&&a>=_&&++t}++h,f=0,m=0}}var S=this.wrapGroupDimensions.sumOfKnownWrapGroupChildWidths/this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes,L=this.wrapGroupDimensions.sumOfKnownWrapGroupChildHeights/this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes;n=this.childWidth||S||i,r=this.childHeight||L||a,this.horizontal?i>p&&(t+=Math.ceil((i-p)/n)):a>_&&(t+=Math.ceil((a-_)/r))}else{if(o.children.length>0){this.childWidth&&this.childHeight||(!this.minMeasuredChildWidth&&i>0&&(this.minMeasuredChildWidth=i),!this.minMeasuredChildHeight&&a>0&&(this.minMeasuredChildHeight=a));var T=this.getElementSize(o.children[0]);this.minMeasuredChildWidth=Math.min(this.minMeasuredChildWidth,T.width),this.minMeasuredChildHeight=Math.min(this.minMeasuredChildHeight,T.height)}n=this.childWidth||this.minMeasuredChildWidth||i,r=this.childHeight||this.minMeasuredChildHeight||a;var x=Math.max(Math.ceil(i/n),1),D=Math.max(Math.ceil(a/r),1);t=this.horizontal?x:D}var O=this.items.length,Y=s*t,E=O/Y,I=Math.ceil(O/s),A=0,P=this.horizontal?n:r;if(this.enableUnequalChildrenSizes){for(var j=0,R=0;R0&&(d+=t.itemsPerWrapGroup-h),isNaN(u)&&(u=0),isNaN(d)&&(d=0),u=Math.min(Math.max(u,0),t.itemCount-1),d=Math.min(Math.max(d,0),t.itemCount-1);var f=this.bufferAmount*t.itemsPerWrapGroup;return{startIndex:u,endIndex:d,startIndexWithBuffer:Math.min(Math.max(u-f,0),t.itemCount-1),endIndexWithBuffer:Math.min(Math.max(d+f,0),t.itemCount-1),scrollStartPosition:e,scrollEndPosition:e+t.viewportLength,maxScrollPosition:t.maxScrollPosition}}},{key:\"calculateViewport\",value:function(){var e=this.calculateDimensions(),t=this.getElementsOffset(),n=this.getScrollStartPosition();n>e.scrollLength+t&&!(this.parentScroll instanceof Window)?n=e.scrollLength:n-=t,n=Math.max(0,n);var r=this.calculatePageInfo(n,e),i=this.calculatePadding(r.startIndexWithBuffer,e),a=e.scrollLength;return{startIndex:r.startIndex,endIndex:r.endIndex,startIndexWithBuffer:r.startIndexWithBuffer,endIndexWithBuffer:r.endIndexWithBuffer,padding:Math.round(i),scrollLength:Math.round(a),scrollStartPosition:r.scrollStartPosition,scrollEndPosition:r.scrollEndPosition,maxScrollPosition:r.maxScrollPosition}}},{key:\"viewPortInfo\",get:function(){var e=this.previousViewPort||{};return{startIndex:e.startIndex||0,endIndex:e.endIndex||0,scrollStartPosition:e.scrollStartPosition||0,scrollEndPosition:e.scrollEndPosition||0,maxScrollPosition:e.maxScrollPosition||0,startIndexWithBuffer:e.startIndexWithBuffer||0,endIndexWithBuffer:e.endIndexWithBuffer||0}}},{key:\"enableUnequalChildrenSizes\",get:function(){return this._enableUnequalChildrenSizes},set:function(e){this._enableUnequalChildrenSizes!==e&&(this._enableUnequalChildrenSizes=e,this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0)}},{key:\"bufferAmount\",get:function(){return\"number\"==typeof this._bufferAmount&&this._bufferAmount>=0?this._bufferAmount:this.enableUnequalChildrenSizes?5:0},set:function(e){this._bufferAmount=e}},{key:\"scrollThrottlingTime\",get:function(){return this._scrollThrottlingTime},set:function(e){this._scrollThrottlingTime=e,this.updateOnScrollFunction()}},{key:\"scrollDebounceTime\",get:function(){return this._scrollDebounceTime},set:function(e){this._scrollDebounceTime=e,this.updateOnScrollFunction()}},{key:\"checkResizeInterval\",get:function(){return this._checkResizeInterval},set:function(e){this._checkResizeInterval!==e&&(this._checkResizeInterval=e,this.addScrollEventHandlers())}},{key:\"items\",get:function(){return this._items},set:function(e){e!==this._items&&(this._items=e||[],this.refresh_internal(!0))}},{key:\"horizontal\",get:function(){return this._horizontal},set:function(e){this._horizontal=e,this.updateDirection()}},{key:\"parentScroll\",get:function(){return this._parentScroll},set:function(e){if(this._parentScroll!==e){this.revertParentOverscroll(),this._parentScroll=e,this.addScrollEventHandlers();var t=this.getScrollElement();this.modifyOverflowStyleOfParentScroll&&t!==this.element.nativeElement&&(this.oldParentScrollOverflow={x:t.style[\"overflow-x\"],y:t.style[\"overflow-y\"]},t.style[\"overflow-y\"]=this.horizontal?\"visible\":\"auto\",t.style[\"overflow-x\"]=this.horizontal?\"auto\":\"visible\")}}}]),e}()).\\u0275fac=function(e){return new(e||Bx)(Io(Qs),Io(nl),Io(cc),Io(eo),Io($u),Io(\"virtual-scroller-default-options\",8))},Bx.\\u0275cmp=bt({type:Bx,selectors:[[\"virtual-scroller\"],[\"\",\"virtualScroller\",\"\"]],contentQueries:function(e,t,n){var r;1&e&&(Pu(n,Hx,!0,Qs),Pu(n,Fx,!0,Qs)),2&e&&(Yu(r=Hu())&&(t.headerElementRef=r.first),Yu(r=Hu())&&(t.containerElementRef=r.first))},viewQuery:function(e,t){var n;1&e&&(Iu(Nx,!0,Qs),Iu(zx,!0,Qs)),2&e&&(Yu(n=Hu())&&(t.contentElementRef=n.first),Yu(n=Hu())&&(t.invisiblePaddingElementRef=n.first))},hostVars:6,hostBindings:function(e,t){2&e&&fs(\"horizontal\",t.horizontal)(\"vertical\",!t.horizontal)(\"selfScroll\",!t.parentScroll)},inputs:{executeRefreshOutsideAngularZone:\"executeRefreshOutsideAngularZone\",useMarginInsteadOfTranslate:\"useMarginInsteadOfTranslate\",ssrViewportWidth:\"ssrViewportWidth\",ssrViewportHeight:\"ssrViewportHeight\",compareItems:\"compareItems\",scrollThrottlingTime:\"scrollThrottlingTime\",scrollDebounceTime:\"scrollDebounceTime\",scrollAnimationTime:\"scrollAnimationTime\",scrollbarWidth:\"scrollbarWidth\",scrollbarHeight:\"scrollbarHeight\",checkResizeInterval:\"checkResizeInterval\",resizeBypassRefreshThreshold:\"resizeBypassRefreshThreshold\",modifyOverflowStyleOfParentScroll:\"modifyOverflowStyleOfParentScroll\",stripedTable:\"stripedTable\",horizontal:\"horizontal\",enableUnequalChildrenSizes:\"enableUnequalChildrenSizes\",bufferAmount:\"bufferAmount\",items:\"items\",parentScroll:\"parentScroll\",childWidth:\"childWidth\",childHeight:\"childHeight\",ssrChildWidth:\"ssrChildWidth\",ssrChildHeight:\"ssrChildHeight\"},outputs:{vsUpdate:\"vsUpdate\",vsChange:\"vsChange\",vsStart:\"vsStart\",vsEnd:\"vsEnd\"},exportAs:[\"virtualScroller\"],features:[Hs],ngContentSelectors:Vx,decls:5,vars:0,consts:[[1,\"total-padding\"],[\"invisiblePadding\",\"\"],[1,\"scrollable-content\"],[\"content\",\"\"]],template:function(e,t){1&e&&(Xo(),No(0,\"div\",0,1),Ho(2,\"div\",2,3),ns(4),Fo())},styles:[\"[_nghost-%COMP%] {\\n position: relative;\\n\\t display: block;\\n -webkit-overflow-scrolling: touch;\\n }\\n\\t\\n\\t.horizontal.selfScroll[_nghost-%COMP%] {\\n overflow-y: visible;\\n overflow-x: auto;\\n\\t}\\n\\t.vertical.selfScroll[_nghost-%COMP%] {\\n overflow-y: auto;\\n overflow-x: visible;\\n\\t}\\n\\t\\n .scrollable-content[_ngcontent-%COMP%] {\\n top: 0;\\n left: 0;\\n width: 100%;\\n height: 100%;\\n max-width: 100vw;\\n max-height: 100vh;\\n position: absolute;\\n }\\n\\n\\t.scrollable-content[_ngcontent-%COMP%] > * {\\n\\t\\tbox-sizing: border-box;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] {\\n\\t\\twhite-space: nowrap;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] .scrollable-content[_ngcontent-%COMP%] {\\n\\t\\tdisplay: flex;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] .scrollable-content[_ngcontent-%COMP%] > * {\\n\\t\\tflex-shrink: 0;\\n\\t\\tflex-grow: 0;\\n\\t\\twhite-space: initial;\\n\\t}\\n\\t\\n .total-padding[_ngcontent-%COMP%] {\\n width: 1px;\\n opacity: 0;\\n }\\n \\n .horizontal[_nghost-%COMP%] .total-padding[_ngcontent-%COMP%] {\\n height: 100%;\\n }\"]}),Bx),$x=((Ux=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Ux}),Ux.\\u0275inj=ve({factory:function(e){return new(e||Ux)},providers:[{provide:\"virtual-scroller-default-options\",useFactory:Wx}],imports:[[Nd]]}),Ux),Jx={on:function(){},off:function(){}},Kx=((qx=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this)).hammerOptions=e,r.events=[\"longpress\",\"slide\",\"slidestart\",\"slideend\",\"slideright\",\"slideleft\"],r}return _createClass(n,[{key:\"buildHammer\",value:function(e){var t=\"undefined\"!=typeof window?window.Hammer:null;if(!t)return Jx;var n=new t(e,this.hammerOptions||void 0),r=new t.Pan,i=new t.Swipe,a=new t.Press,o=this._createRecognizer(r,{event:\"slide\",threshold:0},i),s=this._createRecognizer(a,{event:\"longpress\",time:500});return r.recognizeWith(i),s.recognizeWith(o),n.add([i,a,r,o,s]),n}},{key:\"_createRecognizer\",value:function(e,t){for(var n=new e.constructor(t),r=arguments.length,i=new Array(r>2?r-2:0),a=2;a0)for(var n=this.count>=this.total?this.total:this.count,r=this.ring,i=0;i0&&void 0!==arguments[0]?arguments[0]:iD;return function(t){return t.lift(new nD(e))}}var nD=function(){function e(t){_classCallCheck(this,e),this.errorFactory=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new rD(e,this.errorFactory))}}]),e}(),rD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).errorFactory=r,i.hasValue=!1,i}return _createClass(n,[{key:\"_next\",value:function(e){this.hasValue=!0,this.destination.next(e)}},{key:\"_complete\",value:function(){if(this.hasValue)return this.destination.complete();var e;try{e=this.errorFactory()}catch(t){e=t}this.destination.error(e)}}]),n}(p);function iD(){return new Zx}function aD(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return function(t){return t.lift(new oD(e))}}var oD=function(){function e(t){_classCallCheck(this,e),this.defaultValue=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new sD(e,this.defaultValue))}}]),e}(),sD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).defaultValue=r,i.isEmpty=!0,i}return _createClass(n,[{key:\"_next\",value:function(e){this.isEmpty=!1,this.destination.next(e)}},{key:\"_complete\",value:function(){this.isEmpty&&this.destination.next(this.defaultValue),this.destination.complete()}}]),n}(p);function lD(e,t){var n=arguments.length>=2;return function(r){return r.pipe(e?Gd((function(t,n){return e(t,n,r)})):G,Qx(1),n?aD(t):tD((function(){return new Zx})))}}function uD(e,t){var n=arguments.length>=2;return function(r){return r.pipe(e?Gd((function(t,n){return e(t,n,r)})):G,cp(1),n?aD(t):tD((function(){return new Zx})))}}var cD=function(){function e(t,n,r){_classCallCheck(this,e),this.predicate=t,this.thisArg=n,this.source=r}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new dD(e,this.predicate,this.thisArg,this.source))}}]),e}(),dD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e)).predicate=r,o.thisArg=i,o.source=a,o.index=0,o.thisArg=i||_assertThisInitialized(o),o}return _createClass(n,[{key:\"notifyComplete\",value:function(e){this.destination.next(e),this.destination.complete()}},{key:\"_next\",value:function(e){var t=!1;try{t=this.predicate.call(this.thisArg,e,this.index++,this.source)}catch(n){return void this.destination.error(n)}t||this.notifyComplete(!1)}},{key:\"_complete\",value:function(){this.notifyComplete(!0)}}]),n}(p);function hD(e,t){var n=!1;return arguments.length>=2&&(n=!0),function(r){return r.lift(new mD(e,t,n))}}var fD,mD=function(){function e(t,n){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];_classCallCheck(this,e),this.accumulator=t,this.seed=n,this.hasSeed=r}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new pD(e,this.accumulator,this.seed,this.hasSeed))}}]),e}(),pD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e)).accumulator=r,o._seed=i,o.hasSeed=a,o.index=0,o}return _createClass(n,[{key:\"_next\",value:function(e){if(this.hasSeed)return this._tryNext(e);this.seed=e,this.destination.next(e)}},{key:\"_tryNext\",value:function(e){var t,n=this.index++;try{t=this.accumulator(this.seed,e,n)}catch(r){this.destination.error(r)}this.seed=t,this.destination.next(t)}},{key:\"seed\",get:function(){return this._seed},set:function(e){this.hasSeed=!0,this._seed=e}}]),n}(p),_D=function e(t,n){_classCallCheck(this,e),this.id=t,this.url=n},vD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:\"imperative\",o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;return _classCallCheck(this,n),(i=t.call(this,e,r)).navigationTrigger=a,i.restoredState=o,i}return _createClass(n,[{key:\"toString\",value:function(){return\"NavigationStart(id: \".concat(this.id,\", url: '\").concat(this.url,\"')\")}}]),n}(_D),gD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e,r)).urlAfterRedirects=i,a}return _createClass(n,[{key:\"toString\",value:function(){return\"NavigationEnd(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"')\")}}]),n}(_D),yD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e,r)).reason=i,a}return _createClass(n,[{key:\"toString\",value:function(){return\"NavigationCancel(id: \".concat(this.id,\", url: '\").concat(this.url,\"')\")}}]),n}(_D),bD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e,r)).error=i,a}return _createClass(n,[{key:\"toString\",value:function(){return\"NavigationError(id: \".concat(this.id,\", url: '\").concat(this.url,\"', error: \").concat(this.error,\")\")}}]),n}(_D),kD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e,r)).urlAfterRedirects=i,o.state=a,o}return _createClass(n,[{key:\"toString\",value:function(){return\"RoutesRecognized(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\")\")}}]),n}(_D),wD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e,r)).urlAfterRedirects=i,o.state=a,o}return _createClass(n,[{key:\"toString\",value:function(){return\"GuardsCheckStart(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\")\")}}]),n}(_D),CD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this,e,r)).urlAfterRedirects=i,s.state=a,s.shouldActivate=o,s}return _createClass(n,[{key:\"toString\",value:function(){return\"GuardsCheckEnd(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\", shouldActivate: \").concat(this.shouldActivate,\")\")}}]),n}(_D),MD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e,r)).urlAfterRedirects=i,o.state=a,o}return _createClass(n,[{key:\"toString\",value:function(){return\"ResolveStart(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\")\")}}]),n}(_D),SD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e,r)).urlAfterRedirects=i,o.state=a,o}return _createClass(n,[{key:\"toString\",value:function(){return\"ResolveEnd(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\")\")}}]),n}(_D),LD=function(){function e(t){_classCallCheck(this,e),this.route=t}return _createClass(e,[{key:\"toString\",value:function(){return\"RouteConfigLoadStart(path: \".concat(this.route.path,\")\")}}]),e}(),TD=function(){function e(t){_classCallCheck(this,e),this.route=t}return _createClass(e,[{key:\"toString\",value:function(){return\"RouteConfigLoadEnd(path: \".concat(this.route.path,\")\")}}]),e}(),xD=function(){function e(t){_classCallCheck(this,e),this.snapshot=t}return _createClass(e,[{key:\"toString\",value:function(){return\"ChildActivationStart(path: '\".concat(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\",\"')\")}}]),e}(),DD=function(){function e(t){_classCallCheck(this,e),this.snapshot=t}return _createClass(e,[{key:\"toString\",value:function(){return\"ChildActivationEnd(path: '\".concat(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\",\"')\")}}]),e}(),OD=function(){function e(t){_classCallCheck(this,e),this.snapshot=t}return _createClass(e,[{key:\"toString\",value:function(){return\"ActivationStart(path: '\".concat(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\",\"')\")}}]),e}(),YD=function(){function e(t){_classCallCheck(this,e),this.snapshot=t}return _createClass(e,[{key:\"toString\",value:function(){return\"ActivationEnd(path: '\".concat(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\",\"')\")}}]),e}(),ED=function(){function e(t,n,r){_classCallCheck(this,e),this.routerEvent=t,this.position=n,this.anchor=r}return _createClass(e,[{key:\"toString\",value:function(){return\"Scroll(anchor: '\".concat(this.anchor,\"', position: '\").concat(this.position?\"\".concat(this.position[0],\", \").concat(this.position[1]):null,\"')\")}}]),e}(),ID=((fD=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||fD)},fD.\\u0275cmp=bt({type:fD,selectors:[[\"ng-component\"]],decls:1,vars:0,template:function(e,t){1&e&&No(0,\"router-outlet\")},directives:function(){return[NY]},encapsulation:2}),fD),AD=function(){function e(t){_classCallCheck(this,e),this.params=t||{}}return _createClass(e,[{key:\"has\",value:function(e){return this.params.hasOwnProperty(e)}},{key:\"get\",value:function(e){if(this.has(e)){var t=this.params[e];return Array.isArray(t)?t[0]:t}return null}},{key:\"getAll\",value:function(e){if(this.has(e)){var t=this.params[e];return Array.isArray(t)?t:[t]}return[]}},{key:\"keys\",get:function(){return Object.keys(this.params)}}]),e}();function PD(e){return new AD(e)}function jD(e){var t=Error(\"NavigationCancelingError: \"+e);return t.ngNavigationCancelingError=!0,t}function RD(e,t,n){var r=n.path.split(\"/\");if(r.length>e.length)return null;if(\"full\"===n.pathMatch&&(t.hasChildren()||r.length1&&void 0!==arguments[1]?arguments[1]:\"\",n=0;n-1})):e===t}function BD(e){return Array.prototype.concat.apply([],e)}function qD(e){return e.length>0?e[e.length-1]:null}function GD(e,t){for(var n in e)e.hasOwnProperty(n)&&t(e[n],n)}function $D(e){return Bo(e)?e:Uo(e)?W(Promise.resolve(e)):Bd(e)}function JD(e,t,n){return n?function(e,t){return WD(e,t)}(e.queryParams,t.queryParams)&&function e(t,n){if(!XD(t.segments,n.segments))return!1;if(t.numberOfChildren!==n.numberOfChildren)return!1;for(var r in n.children){if(!t.children[r])return!1;if(!e(t.children[r],n.children[r]))return!1}return!0}(e.root,t.root):function(e,t){return Object.keys(t).length<=Object.keys(e).length&&Object.keys(t).every((function(n){return UD(e[n],t[n])}))}(e.queryParams,t.queryParams)&&function e(t,n){return function t(n,r,i){if(n.segments.length>i.length)return!!XD(n.segments.slice(0,i.length),i)&&!r.hasChildren();if(n.segments.length===i.length){if(!XD(n.segments,i))return!1;for(var a in r.children){if(!n.children[a])return!1;if(!e(n.children[a],r.children[a]))return!1}return!0}var o=i.slice(0,n.segments.length),s=i.slice(n.segments.length);return!!XD(n.segments,o)&&!!n.children.primary&&t(n.children.primary,r,s)}(t,n,n.segments)}(e.root,t.root)}var KD=function(){function e(t,n,r){_classCallCheck(this,e),this.root=t,this.queryParams=n,this.fragment=r}return _createClass(e,[{key:\"toString\",value:function(){return rO.serialize(this)}},{key:\"queryParamMap\",get:function(){return this._queryParamMap||(this._queryParamMap=PD(this.queryParams)),this._queryParamMap}}]),e}(),ZD=function(){function e(t,n){var r=this;_classCallCheck(this,e),this.segments=t,this.children=n,this.parent=null,GD(n,(function(e,t){return e.parent=r}))}return _createClass(e,[{key:\"hasChildren\",value:function(){return this.numberOfChildren>0}},{key:\"toString\",value:function(){return iO(this)}},{key:\"numberOfChildren\",get:function(){return Object.keys(this.children).length}}]),e}(),QD=function(){function e(t,n){_classCallCheck(this,e),this.path=t,this.parameters=n}return _createClass(e,[{key:\"toString\",value:function(){return cO(this)}},{key:\"parameterMap\",get:function(){return this._parameterMap||(this._parameterMap=PD(this.parameters)),this._parameterMap}}]),e}();function XD(e,t){return e.length===t.length&&e.every((function(e,n){return e.path===t[n].path}))}function eO(e,t){var n=[];return GD(e.children,(function(e,r){\"primary\"===r&&(n=n.concat(t(e,r)))})),GD(e.children,(function(e,r){\"primary\"!==r&&(n=n.concat(t(e,r)))})),n}var tO=function e(){_classCallCheck(this,e)},nO=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"parse\",value:function(e){var t=new pO(e);return new KD(t.parseRootSegment(),t.parseQueryParams(),t.parseFragment())}},{key:\"serialize\",value:function(e){var t,n,r;return\"\".concat(\"/\".concat(function e(t,n){if(!t.hasChildren())return iO(t);if(n){var r=t.children.primary?e(t.children.primary,!1):\"\",i=[];return GD(t.children,(function(t,n){\"primary\"!==n&&i.push(\"\".concat(n,\":\").concat(e(t,!1)))})),i.length>0?\"\".concat(r,\"(\").concat(i.join(\"//\"),\")\"):r}var a=eO(t,(function(n,r){return\"primary\"===r?[e(t.children.primary,!1)]:[\"\".concat(r,\":\").concat(e(n,!1))]}));return\"\".concat(iO(t),\"/(\").concat(a.join(\"//\"),\")\")}(e.root,!0)),(n=e.queryParams,r=Object.keys(n).map((function(e){var t=n[e];return Array.isArray(t)?t.map((function(t){return\"\".concat(oO(e),\"=\").concat(oO(t))})).join(\"&\"):\"\".concat(oO(e),\"=\").concat(oO(t))})),r.length?\"?\".concat(r.join(\"&\")):\"\")).concat(\"string\"==typeof e.fragment?\"#\".concat((t=e.fragment,encodeURI(t))):\"\")}}]),e}(),rO=new nO;function iO(e){return e.segments.map((function(e){return cO(e)})).join(\"/\")}function aO(e){return encodeURIComponent(e).replace(/%40/g,\"@\").replace(/%3A/gi,\":\").replace(/%24/g,\"$\").replace(/%2C/gi,\",\")}function oO(e){return aO(e).replace(/%3B/gi,\";\")}function sO(e){return aO(e).replace(/\\(/g,\"%28\").replace(/\\)/g,\"%29\").replace(/%26/gi,\"&\")}function lO(e){return decodeURIComponent(e)}function uO(e){return lO(e.replace(/\\+/g,\"%20\"))}function cO(e){return\"\".concat(sO(e.path)).concat((t=e.parameters,Object.keys(t).map((function(e){return\";\".concat(sO(e),\"=\").concat(sO(t[e]))})).join(\"\")));var t}var dO=/^[^\\/()?;=#]+/;function hO(e){var t=e.match(dO);return t?t[0]:\"\"}var fO=/^[^=?&#]+/,mO=/^[^?&#]+/,pO=function(){function e(t){_classCallCheck(this,e),this.url=t,this.remaining=t}return _createClass(e,[{key:\"parseRootSegment\",value:function(){return this.consumeOptional(\"/\"),\"\"===this.remaining||this.peekStartsWith(\"?\")||this.peekStartsWith(\"#\")?new ZD([],{}):new ZD([],this.parseChildren())}},{key:\"parseQueryParams\",value:function(){var e={};if(this.consumeOptional(\"?\"))do{this.parseQueryParam(e)}while(this.consumeOptional(\"&\"));return e}},{key:\"parseFragment\",value:function(){return this.consumeOptional(\"#\")?decodeURIComponent(this.remaining):null}},{key:\"parseChildren\",value:function(){if(\"\"===this.remaining)return{};this.consumeOptional(\"/\");var e=[];for(this.peekStartsWith(\"(\")||e.push(this.parseSegment());this.peekStartsWith(\"/\")&&!this.peekStartsWith(\"//\")&&!this.peekStartsWith(\"/(\");)this.capture(\"/\"),e.push(this.parseSegment());var t={};this.peekStartsWith(\"/(\")&&(this.capture(\"/\"),t=this.parseParens(!0));var n={};return this.peekStartsWith(\"(\")&&(n=this.parseParens(!1)),(e.length>0||Object.keys(t).length>0)&&(n.primary=new ZD(e,t)),n}},{key:\"parseSegment\",value:function(){var e=hO(this.remaining);if(\"\"===e&&this.peekStartsWith(\";\"))throw new Error(\"Empty path url segment cannot have parameters: '\".concat(this.remaining,\"'.\"));return this.capture(e),new QD(lO(e),this.parseMatrixParams())}},{key:\"parseMatrixParams\",value:function(){for(var e={};this.consumeOptional(\";\");)this.parseParam(e);return e}},{key:\"parseParam\",value:function(e){var t=hO(this.remaining);if(t){this.capture(t);var n=\"\";if(this.consumeOptional(\"=\")){var r=hO(this.remaining);r&&(n=r,this.capture(n))}e[lO(t)]=lO(n)}}},{key:\"parseQueryParam\",value:function(e){var t=function(e){var t=e.match(fO);return t?t[0]:\"\"}(this.remaining);if(t){this.capture(t);var n=\"\";if(this.consumeOptional(\"=\")){var r=function(e){var t=e.match(mO);return t?t[0]:\"\"}(this.remaining);r&&(n=r,this.capture(n))}var i=uO(t),a=uO(n);if(e.hasOwnProperty(i)){var o=e[i];Array.isArray(o)||(o=[o],e[i]=o),o.push(a)}else e[i]=a}}},{key:\"parseParens\",value:function(e){var t={};for(this.capture(\"(\");!this.consumeOptional(\")\")&&this.remaining.length>0;){var n=hO(this.remaining),r=this.remaining[n.length];if(\"/\"!==r&&\")\"!==r&&\";\"!==r)throw new Error(\"Cannot parse url '\".concat(this.url,\"'\"));var i=void 0;n.indexOf(\":\")>-1?(i=n.substr(0,n.indexOf(\":\")),this.capture(i),this.capture(\":\")):e&&(i=\"primary\");var a=this.parseChildren();t[i]=1===Object.keys(a).length?a.primary:new ZD([],a),this.consumeOptional(\"//\")}return t}},{key:\"peekStartsWith\",value:function(e){return this.remaining.startsWith(e)}},{key:\"consumeOptional\",value:function(e){return!!this.peekStartsWith(e)&&(this.remaining=this.remaining.substring(e.length),!0)}},{key:\"capture\",value:function(e){if(!this.consumeOptional(e))throw new Error('Expected \"'.concat(e,'\".'))}}]),e}(),_O=function(){function e(t){_classCallCheck(this,e),this._root=t}return _createClass(e,[{key:\"parent\",value:function(e){var t=this.pathFromRoot(e);return t.length>1?t[t.length-2]:null}},{key:\"children\",value:function(e){var t=vO(e,this._root);return t?t.children.map((function(e){return e.value})):[]}},{key:\"firstChild\",value:function(e){var t=vO(e,this._root);return t&&t.children.length>0?t.children[0].value:null}},{key:\"siblings\",value:function(e){var t=gO(e,this._root);return t.length<2?[]:t[t.length-2].children.map((function(e){return e.value})).filter((function(t){return t!==e}))}},{key:\"pathFromRoot\",value:function(e){return gO(e,this._root).map((function(e){return e.value}))}},{key:\"root\",get:function(){return this._root.value}}]),e}();function vO(e,t){if(e===t.value)return t;var n,r=_createForOfIteratorHelper(t.children);try{for(r.s();!(n=r.n()).done;){var i=vO(e,n.value);if(i)return i}}catch(a){r.e(a)}finally{r.f()}return null}function gO(e,t){if(e===t.value)return[t];var n,r=_createForOfIteratorHelper(t.children);try{for(r.s();!(n=r.n()).done;){var i=gO(e,n.value);if(i.length)return i.unshift(t),i}}catch(a){r.e(a)}finally{r.f()}return[]}var yO=function(){function e(t,n){_classCallCheck(this,e),this.value=t,this.children=n}return _createClass(e,[{key:\"toString\",value:function(){return\"TreeNode(\".concat(this.value,\")\")}}]),e}();function bO(e){var t={};return e&&e.children.forEach((function(e){return t[e.value.outlet]=e})),t}var kO=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).snapshot=r,TO(_assertThisInitialized(i),e),i}return _createClass(n,[{key:\"toString\",value:function(){return this.snapshot.toString()}}]),n}(_O);function wO(e,t){var n=function(e,t){var n=new SO([],{},{},\"\",{},\"primary\",t,null,e.root,-1,{});return new LO(\"\",new yO(n,[]))}(e,t),r=new tT([new QD(\"\",{})]),i=new tT({}),a=new tT({}),o=new tT({}),s=new tT(\"\"),l=new CO(r,i,o,s,a,\"primary\",t,n.root);return l.snapshot=n.root,new kO(new yO(l,[]),n)}var CO=function(){function e(t,n,r,i,a,o,s,l){_classCallCheck(this,e),this.url=t,this.params=n,this.queryParams=r,this.fragment=i,this.data=a,this.outlet=o,this.component=s,this._futureSnapshot=l}return _createClass(e,[{key:\"toString\",value:function(){return this.snapshot?this.snapshot.toString():\"Future(\".concat(this._futureSnapshot,\")\")}},{key:\"routeConfig\",get:function(){return this._futureSnapshot.routeConfig}},{key:\"root\",get:function(){return this._routerState.root}},{key:\"parent\",get:function(){return this._routerState.parent(this)}},{key:\"firstChild\",get:function(){return this._routerState.firstChild(this)}},{key:\"children\",get:function(){return this._routerState.children(this)}},{key:\"pathFromRoot\",get:function(){return this._routerState.pathFromRoot(this)}},{key:\"paramMap\",get:function(){return this._paramMap||(this._paramMap=this.params.pipe(F((function(e){return PD(e)})))),this._paramMap}},{key:\"queryParamMap\",get:function(){return this._queryParamMap||(this._queryParamMap=this.queryParams.pipe(F((function(e){return PD(e)})))),this._queryParamMap}}]),e}();function MO(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"emptyOnly\",n=e.pathFromRoot,r=0;if(\"always\"!==t)for(r=n.length-1;r>=1;){var i=n[r],a=n[r-1];if(i.routeConfig&&\"\"===i.routeConfig.path)r--;else{if(a.component)break;r--}}return function(e){return e.reduce((function(e,t){return{params:Object.assign(Object.assign({},e.params),t.params),data:Object.assign(Object.assign({},e.data),t.data),resolve:Object.assign(Object.assign({},e.resolve),t._resolvedData)}}),{params:{},data:{},resolve:{}})}(n.slice(r))}var SO=function(){function e(t,n,r,i,a,o,s,l,u,c,d){_classCallCheck(this,e),this.url=t,this.params=n,this.queryParams=r,this.fragment=i,this.data=a,this.outlet=o,this.component=s,this.routeConfig=l,this._urlSegment=u,this._lastPathIndex=c,this._resolve=d}return _createClass(e,[{key:\"toString\",value:function(){return\"Route(url:'\".concat(this.url.map((function(e){return e.toString()})).join(\"/\"),\"', path:'\").concat(this.routeConfig?this.routeConfig.path:\"\",\"')\")}},{key:\"root\",get:function(){return this._routerState.root}},{key:\"parent\",get:function(){return this._routerState.parent(this)}},{key:\"firstChild\",get:function(){return this._routerState.firstChild(this)}},{key:\"children\",get:function(){return this._routerState.children(this)}},{key:\"pathFromRoot\",get:function(){return this._routerState.pathFromRoot(this)}},{key:\"paramMap\",get:function(){return this._paramMap||(this._paramMap=PD(this.params)),this._paramMap}},{key:\"queryParamMap\",get:function(){return this._queryParamMap||(this._queryParamMap=PD(this.queryParams)),this._queryParamMap}}]),e}(),LO=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,r)).url=e,TO(_assertThisInitialized(i),r),i}return _createClass(n,[{key:\"toString\",value:function(){return xO(this._root)}}]),n}(_O);function TO(e,t){t.value._routerState=e,t.children.forEach((function(t){return TO(e,t)}))}function xO(e){var t=e.children.length>0?\" { \".concat(e.children.map(xO).join(\", \"),\" } \"):\"\";return\"\".concat(e.value).concat(t)}function DO(e){if(e.snapshot){var t=e.snapshot,n=e._futureSnapshot;e.snapshot=n,WD(t.queryParams,n.queryParams)||e.queryParams.next(n.queryParams),t.fragment!==n.fragment&&e.fragment.next(n.fragment),WD(t.params,n.params)||e.params.next(n.params),function(e,t){if(e.length!==t.length)return!1;for(var n=0;n0&&YO(r[0]))throw new Error(\"Root segment cannot have matrix parameters\");var i=r.find((function(e){return\"object\"==typeof e&&null!=e&&e.outlets}));if(i&&i!==qD(r))throw new Error(\"{outlets:{}} has to be the last command\")}return _createClass(e,[{key:\"toRoot\",value:function(){return this.isAbsolute&&1===this.commands.length&&\"/\"==this.commands[0]}}]),e}(),AO=function e(t,n,r){_classCallCheck(this,e),this.segmentGroup=t,this.processChildren=n,this.index=r};function PO(e){return\"object\"==typeof e&&null!=e&&e.outlets?e.outlets.primary:\"\".concat(e)}function jO(e,t,n){if(e||(e=new ZD([],{})),0===e.segments.length&&e.hasChildren())return RO(e,t,n);var r=function(e,t,n){for(var r=0,i=t,a={match:!1,pathIndex:0,commandIndex:0};i=n.length)return a;var o=e.segments[i],s=PO(n[r]),l=r0&&void 0===s)break;if(s&&l&&\"object\"==typeof l&&void 0===l.outlets){if(!zO(s,l,o))return a;r+=2}else{if(!zO(s,{},o))return a;r++}i++}return{match:!0,pathIndex:i,commandIndex:r}}(e,t,n),i=n.slice(r.commandIndex);if(r.match&&r.pathIndex0?new ZD([],{primary:e}):e;return new KD(r,t,n)}},{key:\"expandSegmentGroup\",value:function(e,t,n,r){return 0===n.segments.length&&n.hasChildren()?this.expandChildren(e,t,n).pipe(F((function(e){return new ZD([],e)}))):this.expandSegment(e,n,t,n.segments,r,!0)}},{key:\"expandChildren\",value:function(e,t,n){var r=this;return function(n,i){if(0===Object.keys(n).length)return Bd({});var a=[],o=[],s={};return GD(n,(function(n,i){var l,u,c=(l=i,u=n,r.expandSegmentGroup(e,t,u,l)).pipe(F((function(e){return s[i]=e})));\"primary\"===i?a.push(c):o.push(c)})),Bd.apply(null,a.concat(o)).pipe(av(),lD(),F((function(){return s})))}(n.children)}},{key:\"expandSegment\",value:function(e,t,n,r,i,a){var o=this;return Bd.apply(void 0,_toConsumableArray(n)).pipe(F((function(s){return o.expandSegmentAgainstRoute(e,t,n,s,r,i,a).pipe(pC((function(e){if(e instanceof qO)return Bd(null);throw e})))})),av(),uD((function(e){return!!e})),pC((function(e,n){if(e instanceof Zx||\"EmptyError\"===e.name){if(o.noLeftoversInUrl(t,r,i))return Bd(new ZD([],{}));throw new qO(t)}throw e})))}},{key:\"noLeftoversInUrl\",value:function(e,t,n){return 0===t.length&&!e.children[n]}},{key:\"expandSegmentAgainstRoute\",value:function(e,t,n,r,i,a,o){return tY(r)!==a?$O(t):void 0===r.redirectTo?this.matchSegmentAgainstRoute(e,t,r,i):o&&this.allowRedirects?this.expandSegmentAgainstRouteUsingRedirect(e,t,n,r,i,a):$O(t)}},{key:\"expandSegmentAgainstRouteUsingRedirect\",value:function(e,t,n,r,i,a){return\"**\"===r.path?this.expandWildCardWithParamsAgainstRouteUsingRedirect(e,n,r,a):this.expandRegularSegmentAgainstRouteUsingRedirect(e,t,n,r,i,a)}},{key:\"expandWildCardWithParamsAgainstRouteUsingRedirect\",value:function(e,t,n,r){var i=this,a=this.applyRedirectCommands([],n.redirectTo,{});return n.redirectTo.startsWith(\"/\")?JO(a):this.lineralizeSegments(n,a).pipe(U((function(n){var a=new ZD(n,{});return i.expandSegment(e,a,t,n,r,!1)})))}},{key:\"expandRegularSegmentAgainstRouteUsingRedirect\",value:function(e,t,n,r,i,a){var o=this,s=QO(t,r,i),l=s.matched,u=s.consumedSegments,c=s.lastChild,d=s.positionalParamSegments;if(!l)return $O(t);var h=this.applyRedirectCommands(u,r.redirectTo,d);return r.redirectTo.startsWith(\"/\")?JO(h):this.lineralizeSegments(r,h).pipe(U((function(r){return o.expandSegment(e,t,n,r.concat(i.slice(c)),a,!1)})))}},{key:\"matchSegmentAgainstRoute\",value:function(e,t,n,r){var i=this;if(\"**\"===n.path)return n.loadChildren?this.configLoader.load(e.injector,n).pipe(F((function(e){return n._loadedConfig=e,new ZD(r,{})}))):Bd(new ZD(r,{}));var a=QO(t,n,r),o=a.matched,s=a.consumedSegments,l=a.lastChild;if(!o)return $O(t);var u=r.slice(l);return this.getChildConfig(e,n,r).pipe(U((function(e){var n=e.module,r=e.routes,a=function(e,t,n,r){return n.length>0&&function(e,t,n){return n.some((function(n){return eY(e,t,n)&&\"primary\"!==tY(n)}))}(e,n,r)?{segmentGroup:XO(new ZD(t,function(e,t){var n={};n.primary=t;var r,i=_createForOfIteratorHelper(e);try{for(i.s();!(r=i.n()).done;){var a=r.value;\"\"===a.path&&\"primary\"!==tY(a)&&(n[tY(a)]=new ZD([],{}))}}catch(o){i.e(o)}finally{i.f()}return n}(r,new ZD(n,e.children)))),slicedSegments:[]}:0===n.length&&function(e,t,n){return n.some((function(n){return eY(e,t,n)}))}(e,n,r)?{segmentGroup:XO(new ZD(e.segments,function(e,t,n,r){var i,a={},o=_createForOfIteratorHelper(n);try{for(o.s();!(i=o.n()).done;){var s=i.value;eY(e,t,s)&&!r[tY(s)]&&(a[tY(s)]=new ZD([],{}))}}catch(l){o.e(l)}finally{o.f()}return Object.assign(Object.assign({},r),a)}(e,n,r,e.children))),slicedSegments:n}:{segmentGroup:e,slicedSegments:n}}(t,s,u,r),o=a.segmentGroup,l=a.slicedSegments;return 0===l.length&&o.hasChildren()?i.expandChildren(n,r,o).pipe(F((function(e){return new ZD(s,e)}))):0===r.length&&0===l.length?Bd(new ZD(s,{})):i.expandSegment(n,o,r,l,\"primary\",!0).pipe(F((function(e){return new ZD(s.concat(e.segments),e.children)})))})))}},{key:\"getChildConfig\",value:function(e,t,n){var r=this;return t.children?Bd(new HD(t.children,e)):t.loadChildren?void 0!==t._loadedConfig?Bd(t._loadedConfig):function(e,t,n){var r,i=t.canLoad;return i&&0!==i.length?W(i).pipe(F((function(r){var i,a=e.get(r);if(function(e){return e&&UO(e.canLoad)}(a))i=a.canLoad(t,n);else{if(!UO(a))throw new Error(\"Invalid CanLoad guard\");i=a(t,n)}return $D(i)}))).pipe(av(),(r=function(e){return!0===e},function(e){return e.lift(new cD(r,void 0,e))})):Bd(!0)}(e.injector,t,n).pipe(U((function(n){return n?r.configLoader.load(e.injector,t).pipe(F((function(e){return t._loadedConfig=e,e}))):function(e){return new w((function(t){return t.error(jD(\"Cannot load children because the guard of the route \\\"path: '\".concat(e.path,\"'\\\" returned false\")))}))}(t)}))):Bd(new HD([],e))}},{key:\"lineralizeSegments\",value:function(e,t){for(var n=[],r=t.root;;){if(n=n.concat(r.segments),0===r.numberOfChildren)return Bd(n);if(r.numberOfChildren>1||!r.children.primary)return KO(e.redirectTo);r=r.children.primary}}},{key:\"applyRedirectCommands\",value:function(e,t,n){return this.applyRedirectCreatreUrlTree(t,this.urlSerializer.parse(t),e,n)}},{key:\"applyRedirectCreatreUrlTree\",value:function(e,t,n,r){var i=this.createSegmentGroup(e,t.root,n,r);return new KD(i,this.createQueryParams(t.queryParams,this.urlTree.queryParams),t.fragment)}},{key:\"createQueryParams\",value:function(e,t){var n={};return GD(e,(function(e,r){if(\"string\"==typeof e&&e.startsWith(\":\")){var i=e.substring(1);n[r]=t[i]}else n[r]=e})),n}},{key:\"createSegmentGroup\",value:function(e,t,n,r){var i=this,a=this.createSegments(e,t.segments,n,r),o={};return GD(t.children,(function(t,a){o[a]=i.createSegmentGroup(e,t,n,r)})),new ZD(a,o)}},{key:\"createSegments\",value:function(e,t,n,r){var i=this;return t.map((function(t){return t.path.startsWith(\":\")?i.findPosParam(e,t,r):i.findOrReturn(t,n)}))}},{key:\"findPosParam\",value:function(e,t,n){var r=n[t.path.substring(1)];if(!r)throw new Error(\"Cannot redirect to '\".concat(e,\"'. Cannot find '\").concat(t.path,\"'.\"));return r}},{key:\"findOrReturn\",value:function(e,t){var n,r=0,i=_createForOfIteratorHelper(t);try{for(i.s();!(n=i.n()).done;){var a=n.value;if(a.path===e.path)return t.splice(r),a;r++}}catch(o){i.e(o)}finally{i.f()}return e}}]),e}();function QO(e,t,n){if(\"\"===t.path)return\"full\"===t.pathMatch&&(e.hasChildren()||n.length>0)?{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}:{matched:!0,consumedSegments:[],lastChild:0,positionalParamSegments:{}};var r=(t.matcher||RD)(n,e,t);return r?{matched:!0,consumedSegments:r.consumed,lastChild:r.consumed.length,positionalParamSegments:r.posParams}:{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}}function XO(e){if(1===e.numberOfChildren&&e.children.primary){var t=e.children.primary;return new ZD(e.segments.concat(t.segments),t.children)}return e}function eY(e,t,n){return(!(e.hasChildren()||t.length>0)||\"full\"!==n.pathMatch)&&\"\"===n.path&&void 0!==n.redirectTo}function tY(e){return e.outlet||\"primary\"}var nY=function e(t){_classCallCheck(this,e),this.path=t,this.route=this.path[this.path.length-1]},rY=function e(t,n){_classCallCheck(this,e),this.component=t,this.route=n};function iY(e,t,n){var r=function(e){if(!e)return null;for(var t=e.parent;t;t=t.parent){var n=t.routeConfig;if(n&&n._loadedConfig)return n._loadedConfig}return null}(t);return(r?r.module.injector:n).get(e)}function aY(e,t,n){var r=bO(e),i=e.value;GD(r,(function(e,r){aY(e,i.component?t?t.children.getContext(r):null:t,n)})),n.canDeactivateChecks.push(new rY(i.component&&t&&t.outlet&&t.outlet.isActivated?t.outlet.component:null,i))}var oY=Symbol(\"INITIAL_VALUE\");function sY(){return Pk((function(e){return zL.apply(void 0,_toConsumableArray(e.map((function(e){return e.pipe(cp(1),sv(oY))})))).pipe(hD((function(e,t){var n=!1;return t.reduce((function(e,r,i){if(e!==oY)return e;if(r===oY&&(n=!0),!n){if(!1===r)return r;if(i===t.length-1||BO(r))return r}return e}),e)}),oY),Gd((function(e){return e!==oY})),F((function(e){return BO(e)?e:!0===e})),cp(1))}))}function lY(e,t){return null!==e&&t&&t(new OD(e)),Bd(!0)}function uY(e,t){return null!==e&&t&&t(new xD(e)),Bd(!0)}function cY(e,t,n){var r=t.routeConfig?t.routeConfig.canActivate:null;return r&&0!==r.length?Bd(r.map((function(r){return Qw((function(){var i,a=iY(r,t,n);if(function(e){return e&&UO(e.canActivate)}(a))i=$D(a.canActivate(t,e));else{if(!UO(a))throw new Error(\"Invalid CanActivate guard\");i=$D(a(t,e))}return i.pipe(uD())}))}))).pipe(sY()):Bd(!0)}function dY(e,t,n){var r=t[t.length-1],i=t.slice(0,t.length-1).reverse().map((function(e){return function(e){var t=e.routeConfig?e.routeConfig.canActivateChild:null;return t&&0!==t.length?{node:e,guards:t}:null}(e)})).filter((function(e){return null!==e})).map((function(t){return Qw((function(){return Bd(t.guards.map((function(i){var a,o=iY(i,t.node,n);if(function(e){return e&&UO(e.canActivateChild)}(o))a=$D(o.canActivateChild(r,e));else{if(!UO(o))throw new Error(\"Invalid CanActivateChild guard\");a=$D(o(r,e))}return a.pipe(uD())}))).pipe(sY())}))}));return Bd(i).pipe(sY())}var hY=function e(){_classCallCheck(this,e)},fY=function(){function e(t,n,r,i,a,o){_classCallCheck(this,e),this.rootComponentType=t,this.config=n,this.urlTree=r,this.url=i,this.paramsInheritanceStrategy=a,this.relativeLinkResolution=o}return _createClass(e,[{key:\"recognize\",value:function(){try{var e=_Y(this.urlTree.root,[],[],this.config,this.relativeLinkResolution).segmentGroup,t=this.processSegmentGroup(this.config,e,\"primary\"),n=new SO([],Object.freeze({}),Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,{},\"primary\",this.rootComponentType,null,this.urlTree.root,-1,{}),r=new yO(n,t),i=new LO(this.url,r);return this.inheritParamsAndData(i._root),Bd(i)}catch(a){return new w((function(e){return e.error(a)}))}}},{key:\"inheritParamsAndData\",value:function(e){var t=this,n=e.value,r=MO(n,this.paramsInheritanceStrategy);n.params=Object.freeze(r.params),n.data=Object.freeze(r.data),e.children.forEach((function(e){return t.inheritParamsAndData(e)}))}},{key:\"processSegmentGroup\",value:function(e,t,n){return 0===t.segments.length&&t.hasChildren()?this.processChildren(e,t):this.processSegment(e,t,t.segments,n)}},{key:\"processChildren\",value:function(e,t){var n,r=this,i=eO(t,(function(t,n){return r.processSegmentGroup(e,t,n)}));return n={},i.forEach((function(e){var t=n[e.value.outlet];if(t){var r=t.url.map((function(e){return e.toString()})).join(\"/\"),i=e.value.url.map((function(e){return e.toString()})).join(\"/\");throw new Error(\"Two segments cannot have the same outlet name: '\".concat(r,\"' and '\").concat(i,\"'.\"))}n[e.value.outlet]=e.value})),i.sort((function(e,t){return\"primary\"===e.value.outlet?-1:\"primary\"===t.value.outlet?1:e.value.outlet.localeCompare(t.value.outlet)})),i}},{key:\"processSegment\",value:function(e,t,n,r){var i,a=_createForOfIteratorHelper(e);try{for(a.s();!(i=a.n()).done;){var o=i.value;try{return this.processSegmentAgainstRoute(o,t,n,r)}catch(s){if(!(s instanceof hY))throw s}}}catch(l){a.e(l)}finally{a.f()}if(this.noLeftoversInUrl(t,n,r))return[];throw new hY}},{key:\"noLeftoversInUrl\",value:function(e,t,n){return 0===t.length&&!e.children[n]}},{key:\"processSegmentAgainstRoute\",value:function(e,t,n,r){if(e.redirectTo)throw new hY;if((e.outlet||\"primary\")!==r)throw new hY;var i,a=[],o=[];if(\"**\"===e.path){var s=n.length>0?qD(n).parameters:{};i=new SO(n,s,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,yY(e),r,e.component,e,mY(t),pY(t)+n.length,bY(e))}else{var l=function(e,t,n){if(\"\"===t.path){if(\"full\"===t.pathMatch&&(e.hasChildren()||n.length>0))throw new hY;return{consumedSegments:[],lastChild:0,parameters:{}}}var r=(t.matcher||RD)(n,e,t);if(!r)throw new hY;var i={};GD(r.posParams,(function(e,t){i[t]=e.path}));var a=r.consumed.length>0?Object.assign(Object.assign({},i),r.consumed[r.consumed.length-1].parameters):i;return{consumedSegments:r.consumed,lastChild:r.consumed.length,parameters:a}}(t,e,n);a=l.consumedSegments,o=n.slice(l.lastChild),i=new SO(a,l.parameters,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,yY(e),r,e.component,e,mY(t),pY(t)+a.length,bY(e))}var u=function(e){return e.children?e.children:e.loadChildren?e._loadedConfig.routes:[]}(e),c=_Y(t,a,o,u,this.relativeLinkResolution),d=c.segmentGroup,h=c.slicedSegments;if(0===h.length&&d.hasChildren()){var f=this.processChildren(u,d);return[new yO(i,f)]}if(0===u.length&&0===h.length)return[new yO(i,[])];var m=this.processSegment(u,d,h,\"primary\");return[new yO(i,m)]}}]),e}();function mY(e){for(var t=e;t._sourceSegment;)t=t._sourceSegment;return t}function pY(e){for(var t=e,n=t._segmentIndexShift?t._segmentIndexShift:0;t._sourceSegment;)n+=(t=t._sourceSegment)._segmentIndexShift?t._segmentIndexShift:0;return n-1}function _Y(e,t,n,r,i){if(n.length>0&&function(e,t,n){return n.some((function(n){return vY(e,t,n)&&\"primary\"!==gY(n)}))}(e,n,r)){var a=new ZD(t,function(e,t,n,r){var i={};i.primary=r,r._sourceSegment=e,r._segmentIndexShift=t.length;var a,o=_createForOfIteratorHelper(n);try{for(o.s();!(a=o.n()).done;){var s=a.value;if(\"\"===s.path&&\"primary\"!==gY(s)){var l=new ZD([],{});l._sourceSegment=e,l._segmentIndexShift=t.length,i[gY(s)]=l}}}catch(u){o.e(u)}finally{o.f()}return i}(e,t,r,new ZD(n,e.children)));return a._sourceSegment=e,a._segmentIndexShift=t.length,{segmentGroup:a,slicedSegments:[]}}if(0===n.length&&function(e,t,n){return n.some((function(n){return vY(e,t,n)}))}(e,n,r)){var o=new ZD(e.segments,function(e,t,n,r,i,a){var o,s={},l=_createForOfIteratorHelper(r);try{for(l.s();!(o=l.n()).done;){var u=o.value;if(vY(e,n,u)&&!i[gY(u)]){var c=new ZD([],{});c._sourceSegment=e,c._segmentIndexShift=\"legacy\"===a?e.segments.length:t.length,s[gY(u)]=c}}}catch(d){l.e(d)}finally{l.f()}return Object.assign(Object.assign({},i),s)}(e,t,n,r,e.children,i));return o._sourceSegment=e,o._segmentIndexShift=t.length,{segmentGroup:o,slicedSegments:n}}var s=new ZD(e.segments,e.children);return s._sourceSegment=e,s._segmentIndexShift=t.length,{segmentGroup:s,slicedSegments:n}}function vY(e,t,n){return(!(e.hasChildren()||t.length>0)||\"full\"!==n.pathMatch)&&\"\"===n.path&&void 0===n.redirectTo}function gY(e){return e.outlet||\"primary\"}function yY(e){return e.data||{}}function bY(e){return e.resolve||{}}function kY(e,t,n,r){var i=iY(e,t,r);return $D(i.resolve?i.resolve(t,n):i(t,n))}function wY(e){return function(t){return t.pipe(Pk((function(t){var n=e(t);return n?W(n).pipe(F((function(){return t}))):W([t])})))}}var CY=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"shouldDetach\",value:function(e){return!1}},{key:\"store\",value:function(e,t){}},{key:\"shouldAttach\",value:function(e){return!1}},{key:\"retrieve\",value:function(e){return null}},{key:\"shouldReuseRoute\",value:function(e,t){return e.routeConfig===t.routeConfig}}]),e}(),MY=new Be(\"ROUTES\"),SY=function(){function e(t,n,r,i){_classCallCheck(this,e),this.loader=t,this.compiler=n,this.onLoadStartListener=r,this.onLoadEndListener=i}return _createClass(e,[{key:\"load\",value:function(e,t){var n=this;return this.onLoadStartListener&&this.onLoadStartListener(t),this.loadModuleFactory(t.loadChildren).pipe(F((function(r){n.onLoadEndListener&&n.onLoadEndListener(t);var i=r.create(e);return new HD(BD(i.injector.get(MY)).map(VD),i)})))}},{key:\"loadModuleFactory\",value:function(e){var t=this;return\"string\"==typeof e?W(this.loader.load(e)):$D(e()).pipe(U((function(e){return e instanceof ot?Bd(e):W(t.compiler.compileModuleAsync(e))})))}}]),e}(),LY=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"shouldProcessUrl\",value:function(e){return!0}},{key:\"extract\",value:function(e){return e}},{key:\"merge\",value:function(e,t){return e}}]),e}();function TY(e){throw e}function xY(e,t,n){return t.parse(\"/\")}function DY(e,t){return Bd(null)}var OY,YY,EY=((YY=function(){function e(t,n,r,i,a,o,s,l){var u=this;_classCallCheck(this,e),this.rootComponentType=t,this.urlSerializer=n,this.rootContexts=r,this.location=i,this.config=l,this.lastSuccessfulNavigation=null,this.currentNavigation=null,this.navigationId=0,this.isNgZoneEnabled=!1,this.events=new x,this.errorHandler=TY,this.malformedUriErrorHandler=xY,this.navigated=!1,this.lastSuccessfulId=-1,this.hooks={beforePreactivation:DY,afterPreactivation:DY},this.urlHandlingStrategy=new LY,this.routeReuseStrategy=new CY,this.onSameUrlNavigation=\"ignore\",this.paramsInheritanceStrategy=\"emptyOnly\",this.urlUpdateStrategy=\"deferred\",this.relativeLinkResolution=\"legacy\",this.ngModule=a.get(at),this.console=a.get(Ku);var c=a.get(cc);this.isNgZoneEnabled=c instanceof cc,this.resetConfig(l),this.currentUrlTree=new KD(new ZD([],{}),{},null),this.rawUrlTree=this.currentUrlTree,this.browserUrlTree=this.currentUrlTree,this.configLoader=new SY(o,s,(function(e){return u.triggerEvent(new LD(e))}),(function(e){return u.triggerEvent(new TD(e))})),this.routerState=wO(this.currentUrlTree,this.rootComponentType),this.transitions=new tT({id:0,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,extractedUrl:this.urlHandlingStrategy.extract(this.currentUrlTree),urlAfterRedirects:this.urlHandlingStrategy.extract(this.currentUrlTree),rawUrl:this.currentUrlTree,extras:{},resolve:null,reject:null,promise:Promise.resolve(!0),source:\"imperative\",restoredState:null,currentSnapshot:this.routerState.snapshot,targetSnapshot:null,currentRouterState:this.routerState,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.navigations=this.setupNavigations(this.transitions),this.processNavigations()}return _createClass(e,[{key:\"setupNavigations\",value:function(e){var t=this,n=this.events;return e.pipe(Gd((function(e){return 0!==e.id})),F((function(e){return Object.assign(Object.assign({},e),{extractedUrl:t.urlHandlingStrategy.extract(e.rawUrl)})})),Pk((function(e){var r,i,a,o=!1,s=!1;return Bd(e).pipe(Km((function(e){t.currentNavigation={id:e.id,initialUrl:e.currentRawUrl,extractedUrl:e.extractedUrl,trigger:e.source,extras:e.extras,previousNavigation:t.lastSuccessfulNavigation?Object.assign(Object.assign({},t.lastSuccessfulNavigation),{previousNavigation:null}):null}})),Pk((function(e){var r,i,a,o,s=!t.navigated||e.extractedUrl.toString()!==t.browserUrlTree.toString();if((\"reload\"===t.onSameUrlNavigation||s)&&t.urlHandlingStrategy.shouldProcessUrl(e.rawUrl))return Bd(e).pipe(Pk((function(e){var r=t.transitions.getValue();return n.next(new vD(e.id,t.serializeUrl(e.extractedUrl),e.source,e.restoredState)),r!==t.transitions.getValue()?lp:[e]})),Pk((function(e){return Promise.resolve(e)})),(r=t.ngModule.injector,i=t.configLoader,a=t.urlSerializer,o=t.config,function(e){return e.pipe(Pk((function(e){return function(e,t,n,r,i){return new ZO(e,t,n,r,i).apply()}(r,i,a,e.extractedUrl,o).pipe(F((function(t){return Object.assign(Object.assign({},e),{urlAfterRedirects:t})})))})))}),Km((function(e){t.currentNavigation=Object.assign(Object.assign({},t.currentNavigation),{finalUrl:e.urlAfterRedirects})})),function(e,n,r,i,a){return function(r){return r.pipe(U((function(r){return function(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:\"emptyOnly\",a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:\"legacy\";return new fY(e,t,n,r,i,a).recognize()}(e,n,r.urlAfterRedirects,(o=r.urlAfterRedirects,t.serializeUrl(o)),i,a).pipe(F((function(e){return Object.assign(Object.assign({},r),{targetSnapshot:e})})));var o})))}}(t.rootComponentType,t.config,0,t.paramsInheritanceStrategy,t.relativeLinkResolution),Km((function(e){\"eager\"===t.urlUpdateStrategy&&(e.extras.skipLocationChange||t.setBrowserUrl(e.urlAfterRedirects,!!e.extras.replaceUrl,e.id,e.extras.state),t.browserUrlTree=e.urlAfterRedirects)})),Km((function(e){var r=new kD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);n.next(r)})));if(s&&t.rawUrlTree&&t.urlHandlingStrategy.shouldProcessUrl(t.rawUrlTree)){var l=e.id,u=e.extractedUrl,c=e.source,d=e.restoredState,h=e.extras,f=new vD(l,t.serializeUrl(u),c,d);n.next(f);var m=wO(u,t.rootComponentType).snapshot;return Bd(Object.assign(Object.assign({},e),{targetSnapshot:m,urlAfterRedirects:u,extras:Object.assign(Object.assign({},h),{skipLocationChange:!1,replaceUrl:!1})}))}return t.rawUrlTree=e.rawUrl,t.browserUrlTree=e.urlAfterRedirects,e.resolve(null),lp})),wY((function(e){var n=e.targetSnapshot,r=e.id,i=e.extractedUrl,a=e.rawUrl,o=e.extras,s=o.skipLocationChange,l=o.replaceUrl;return t.hooks.beforePreactivation(n,{navigationId:r,appliedUrlTree:i,rawUrlTree:a,skipLocationChange:!!s,replaceUrl:!!l})})),Km((function(e){var n=new wD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);t.triggerEvent(n)})),F((function(e){return Object.assign(Object.assign({},e),{guards:(n=e.targetSnapshot,r=e.currentSnapshot,i=t.rootContexts,a=n._root,function e(t,n,r,i){var a=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{canDeactivateChecks:[],canActivateChecks:[]},o=bO(n);return t.children.forEach((function(t){!function(t,n,r,i){var a=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{canDeactivateChecks:[],canActivateChecks:[]},o=t.value,s=n?n.value:null,l=r?r.getContext(t.value.outlet):null;if(s&&o.routeConfig===s.routeConfig){var u=function(e,t,n){if(\"function\"==typeof n)return n(e,t);switch(n){case\"pathParamsChange\":return!XD(e.url,t.url);case\"pathParamsOrQueryParamsChange\":return!XD(e.url,t.url)||!WD(e.queryParams,t.queryParams);case\"always\":return!0;case\"paramsOrQueryParamsChange\":return!OO(e,t)||!WD(e.queryParams,t.queryParams);case\"paramsChange\":default:return!OO(e,t)}}(s,o,o.routeConfig.runGuardsAndResolvers);u?a.canActivateChecks.push(new nY(i)):(o.data=s.data,o._resolvedData=s._resolvedData),e(t,n,o.component?l?l.children:null:r,i,a),u&&a.canDeactivateChecks.push(new rY(l&&l.outlet&&l.outlet.component||null,s))}else s&&aY(n,l,a),a.canActivateChecks.push(new nY(i)),e(t,null,o.component?l?l.children:null:r,i,a)}(t,o[t.value.outlet],r,i.concat([t.value]),a),delete o[t.value.outlet]})),GD(o,(function(e,t){return aY(e,r.getContext(t),a)})),a}(a,r?r._root:null,i,[a.value]))});var n,r,i,a})),function(e,t){return function(n){return n.pipe(U((function(n){var r=n.targetSnapshot,i=n.currentSnapshot,a=n.guards,o=a.canActivateChecks,s=a.canDeactivateChecks;return 0===s.length&&0===o.length?Bd(Object.assign(Object.assign({},n),{guardsResult:!0})):function(e,t,n,r){return W(e).pipe(U((function(e){return function(e,t,n,r,i){var a=t&&t.routeConfig?t.routeConfig.canDeactivate:null;return a&&0!==a.length?Bd(a.map((function(a){var o,s=iY(a,t,i);if(function(e){return e&&UO(e.canDeactivate)}(s))o=$D(s.canDeactivate(e,t,n,r));else{if(!UO(s))throw new Error(\"Invalid CanDeactivate guard\");o=$D(s(e,t,n,r))}return o.pipe(uD())}))).pipe(sY()):Bd(!0)}(e.component,e.route,n,t,r)})),uD((function(e){return!0!==e}),!0))}(s,r,i,e).pipe(U((function(n){return n&&\"boolean\"==typeof n?function(e,t,n,r){return W(t).pipe(qd((function(t){return W([uY(t.route.parent,r),lY(t.route,r),dY(e,t.path,n),cY(e,t.route,n)]).pipe(av(),uD((function(e){return!0!==e}),!0))})),uD((function(e){return!0!==e}),!0))}(r,o,e,t):Bd(n)})),F((function(e){return Object.assign(Object.assign({},n),{guardsResult:e})})))})))}}(t.ngModule.injector,(function(e){return t.triggerEvent(e)})),Km((function(e){if(BO(e.guardsResult)){var n=jD('Redirecting to \"'.concat(t.serializeUrl(e.guardsResult),'\"'));throw n.url=e.guardsResult,n}})),Km((function(e){var n=new CD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot,!!e.guardsResult);t.triggerEvent(n)})),Gd((function(e){if(!e.guardsResult){t.resetUrlToCurrentUrlTree();var r=new yD(e.id,t.serializeUrl(e.extractedUrl),\"\");return n.next(r),e.resolve(!1),!1}return!0})),wY((function(e){if(e.guards.canActivateChecks.length)return Bd(e).pipe(Km((function(e){var n=new MD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);t.triggerEvent(n)})),(n=t.paramsInheritanceStrategy,r=t.ngModule.injector,function(e){return e.pipe(U((function(e){var t=e.targetSnapshot,i=e.guards.canActivateChecks;return i.length?W(i).pipe(qd((function(e){return function(e,t,n,r){return function(e,t,n,r){var i=Object.keys(e);if(0===i.length)return Bd({});if(1===i.length){var a=i[0];return kY(e[a],t,n,r).pipe(F((function(e){return _defineProperty({},a,e)})))}var o={};return W(i).pipe(U((function(i){return kY(e[i],t,n,r).pipe(F((function(e){return o[i]=e,e})))}))).pipe(lD(),F((function(){return o})))}(e._resolve,e,t,r).pipe(F((function(t){return e._resolvedData=t,e.data=Object.assign(Object.assign({},e.data),MO(e,n).resolve),null})))}(e.route,t,n,r)})),function(e,t){return arguments.length>=2?function(n){return y(hD(e,t),Qx(1),aD(t))(n)}:function(t){return y(hD((function(t,n,r){return e(t,n,r+1)})),Qx(1))(t)}}((function(e,t){return e})),F((function(t){return e}))):Bd(e)})))}),Km((function(e){var n=new SD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);t.triggerEvent(n)})));var n,r})),wY((function(e){var n=e.targetSnapshot,r=e.id,i=e.extractedUrl,a=e.rawUrl,o=e.extras,s=o.skipLocationChange,l=o.replaceUrl;return t.hooks.afterPreactivation(n,{navigationId:r,appliedUrlTree:i,rawUrlTree:a,skipLocationChange:!!s,replaceUrl:!!l})})),F((function(e){var n=function(e,t,n){var r=function e(t,n,r){if(r&&t.shouldReuseRoute(n.value,r.value.snapshot)){var i=r.value;i._futureSnapshot=n.value;var a=function(t,n,r){return n.children.map((function(n){var i,a=_createForOfIteratorHelper(r.children);try{for(a.s();!(i=a.n()).done;){var o=i.value;if(t.shouldReuseRoute(o.value.snapshot,n.value))return e(t,n,o)}}catch(s){a.e(s)}finally{a.f()}return e(t,n)}))}(t,n,r);return new yO(i,a)}var o=t.retrieve(n.value);if(o){var s=o.route;return function e(t,n){if(t.value.routeConfig!==n.value.routeConfig)throw new Error(\"Cannot reattach ActivatedRouteSnapshot created from a different route\");if(t.children.length!==n.children.length)throw new Error(\"Cannot reattach ActivatedRouteSnapshot with a different number of children\");n.value._futureSnapshot=t.value;for(var r=0;r1&&void 0!==arguments[1]?arguments[1]:{},n=t.relativeTo,r=t.queryParams,i=t.fragment,a=t.preserveQueryParams,o=t.queryParamsHandling,s=t.preserveFragment;Lr()&&a&&console&&console.warn&&console.warn(\"preserveQueryParams is deprecated, use queryParamsHandling instead.\");var l=n||this.routerState.root,u=s?this.currentUrlTree.fragment:i,c=null;if(o)switch(o){case\"merge\":c=Object.assign(Object.assign({},this.currentUrlTree.queryParams),r);break;case\"preserve\":c=this.currentUrlTree.queryParams;break;default:c=r||null}else c=a?this.currentUrlTree.queryParams:r||null;return null!==c&&(c=this.removeEmptyProps(c)),function(e,t,n,r,i){if(0===n.length)return EO(t.root,t.root,t,r,i);var a=function(e){if(\"string\"==typeof e[0]&&1===e.length&&\"/\"===e[0])return new IO(!0,0,e);var t=0,n=!1,r=e.reduce((function(e,r,i){if(\"object\"==typeof r&&null!=r){if(r.outlets){var a={};return GD(r.outlets,(function(e,t){a[t]=\"string\"==typeof e?e.split(\"/\"):e})),[].concat(_toConsumableArray(e),[{outlets:a}])}if(r.segmentPath)return[].concat(_toConsumableArray(e),[r.segmentPath])}return\"string\"!=typeof r?[].concat(_toConsumableArray(e),[r]):0===i?(r.split(\"/\").forEach((function(r,i){0==i&&\".\"===r||(0==i&&\"\"===r?n=!0:\"..\"===r?t++:\"\"!=r&&e.push(r))})),e):[].concat(_toConsumableArray(e),[r])}),[]);return new IO(n,t,r)}(n);if(a.toRoot())return EO(t.root,new ZD([],{}),t,r,i);var o=function(e,t,n){if(e.isAbsolute)return new AO(t.root,!0,0);if(-1===n.snapshot._lastPathIndex)return new AO(n.snapshot._urlSegment,!0,0);var r=YO(e.commands[0])?0:1;return function(e,t,n){for(var r=e,i=t,a=n;a>i;){if(a-=i,!(r=r.parent))throw new Error(\"Invalid number of '../'\");i=r.segments.length}return new AO(r,!1,i-a)}(n.snapshot._urlSegment,n.snapshot._lastPathIndex+r,e.numberOfDoubleDots)}(a,t,e),s=o.processChildren?RO(o.segmentGroup,o.index,a.commands):jO(o.segmentGroup,o.index,a.commands);return EO(o.segmentGroup,s,t,r,i)}(l,this.currentUrlTree,e,c,u)}},{key:\"navigateByUrl\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{skipLocationChange:!1};Lr()&&this.isNgZoneEnabled&&!cc.isInAngularZone()&&this.console.warn(\"Navigation triggered outside Angular zone, did you forget to call 'ngZone.run()'?\");var n=BO(e)?e:this.parseUrl(e),r=this.urlHandlingStrategy.merge(n,this.rawUrlTree);return this.scheduleNavigation(r,\"imperative\",null,t)}},{key:\"navigate\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{skipLocationChange:!1};return function(e){for(var t=0;t2&&void 0!==arguments[2]?arguments[2]:{};_classCallCheck(this,e),this.router=t,this.viewportScroller=n,this.options=r,this.lastId=0,this.lastSource=\"imperative\",this.restoredId=0,this.store={},r.scrollPositionRestoration=r.scrollPositionRestoration||\"disabled\",r.anchorScrolling=r.anchorScrolling||\"disabled\"}return _createClass(e,[{key:\"init\",value:function(){\"disabled\"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration(\"manual\"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}},{key:\"createScrollEvents\",value:function(){var e=this;return this.router.events.subscribe((function(t){t instanceof vD?(e.store[e.lastId]=e.viewportScroller.getScrollPosition(),e.lastSource=t.navigationTrigger,e.restoredId=t.restoredState?t.restoredState.navigationId:0):t instanceof gD&&(e.lastId=t.id,e.scheduleScrollEvent(t,e.router.parseUrl(t.urlAfterRedirects).fragment))}))}},{key:\"consumeScrollEvents\",value:function(){var e=this;return this.router.events.subscribe((function(t){t instanceof ED&&(t.position?\"top\"===e.options.scrollPositionRestoration?e.viewportScroller.scrollToPosition([0,0]):\"enabled\"===e.options.scrollPositionRestoration&&e.viewportScroller.scrollToPosition(t.position):t.anchor&&\"enabled\"===e.options.anchorScrolling?e.viewportScroller.scrollToAnchor(t.anchor):\"disabled\"!==e.options.scrollPositionRestoration&&e.viewportScroller.scrollToPosition([0,0]))}))}},{key:\"scheduleScrollEvent\",value:function(e,t){this.router.triggerEvent(new ED(e,\"popstate\"===this.lastSource?this.store[this.restoredId]:null,t))}},{key:\"ngOnDestroy\",value:function(){this.routerEventsSubscription&&this.routerEventsSubscription.unsubscribe(),this.scrollEventsSubscription&&this.scrollEventsSubscription.unsubscribe()}}]),e}()).\\u0275fac=function(e){Po()},jY.\\u0275dir=Lt({type:jY}),jY),qY=new Be(\"ROUTER_CONFIGURATION\"),GY=new Be(\"ROUTER_FORROOT_GUARD\"),$Y=[ud,{provide:tO,useClass:nO},{provide:EY,useFactory:function(e,t,n,r,i,a,o){var s=arguments.length>7&&void 0!==arguments[7]?arguments[7]:{},l=arguments.length>8?arguments[8]:void 0,u=arguments.length>9?arguments[9]:void 0,c=new EY(null,e,t,n,r,i,a,BD(o));if(l&&(c.urlHandlingStrategy=l),u&&(c.routeReuseStrategy=u),s.errorHandler&&(c.errorHandler=s.errorHandler),s.malformedUriErrorHandler&&(c.malformedUriErrorHandler=s.malformedUriErrorHandler),s.enableTracing){var d=zc();c.events.subscribe((function(e){d.logGroup(\"Router Event: \".concat(e.constructor.name)),d.log(e.toString()),d.log(e),d.logGroupEnd()}))}return s.onSameUrlNavigation&&(c.onSameUrlNavigation=s.onSameUrlNavigation),s.paramsInheritanceStrategy&&(c.paramsInheritanceStrategy=s.paramsInheritanceStrategy),s.urlUpdateStrategy&&(c.urlUpdateStrategy=s.urlUpdateStrategy),s.relativeLinkResolution&&(c.relativeLinkResolution=s.relativeLinkResolution),c},deps:[tO,FY,ud,vo,Ec,oc,MY,qY,[function(){return function e(){_classCallCheck(this,e)}}(),new ce],[function(){return function e(){_classCallCheck(this,e)}}(),new ce]]},FY,{provide:CO,useFactory:function(e){return e.routerState.root},deps:[EY]},{provide:Ec,useClass:Pc},UY,WY,function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"preload\",value:function(e,t){return t().pipe(pC((function(){return Bd(null)})))}}]),e}(),{provide:qY,useValue:{enableTracing:!1}}];function JY(){return new Mc(\"Router\",EY)}var KY,ZY=((KY=function(){function e(t,n){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"forRoot\",value:function(t,n){return{ngModule:e,providers:[$Y,tE(t),{provide:GY,useFactory:eE,deps:[[EY,new ce,new he]]},{provide:qY,useValue:n||{}},{provide:td,useFactory:XY,deps:[Uc,[new ue(od),new ce],qY]},{provide:BY,useFactory:QY,deps:[EY,Wd,qY]},{provide:VY,useExisting:n&&n.preloadingStrategy?n.preloadingStrategy:WY},{provide:Mc,multi:!0,useFactory:JY},[rE,{provide:Vu,multi:!0,useFactory:iE,deps:[rE]},{provide:oE,useFactory:aE,deps:[rE]},{provide:Ju,multi:!0,useExisting:oE}]]}}},{key:\"forChild\",value:function(t){return{ngModule:e,providers:[tE(t)]}}}]),e}()).\\u0275mod=Mt({type:KY}),KY.\\u0275inj=ve({factory:function(e){return new(e||KY)(et(GY,8),et(EY,8))}}),KY);function QY(e,t,n){return n.scrollOffset&&t.setOffset(n.scrollOffset),new BY(e,t,n)}function XY(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return n.useHash?new ld(e,t):new sd(e,t)}function eE(e){if(e)throw new Error(\"RouterModule.forRoot() called twice. Lazy loaded modules should use RouterModule.forChild() instead.\");return\"guarded\"}function tE(e){return[{provide:go,multi:!0,useValue:e},{provide:MY,multi:!0,useValue:e}]}var nE,rE=((nE=function(){function e(t){_classCallCheck(this,e),this.injector=t,this.initNavigation=!1,this.resultOfPreactivationDone=new x}return _createClass(e,[{key:\"appInitializer\",value:function(){var e=this;return this.injector.get(Gc,Promise.resolve(null)).then((function(){var t=null,n=new Promise((function(e){return t=e})),r=e.injector.get(EY),i=e.injector.get(qY);if(e.isLegacyDisabled(i)||e.isLegacyEnabled(i))t(!0);else if(\"disabled\"===i.initialNavigation)r.setUpLocationChangeListener(),t(!0);else{if(\"enabled\"!==i.initialNavigation)throw new Error(\"Invalid initialNavigation options: '\".concat(i.initialNavigation,\"'\"));r.hooks.afterPreactivation=function(){return e.initNavigation?Bd(null):(e.initNavigation=!0,t(!0),e.resultOfPreactivationDone)},r.initialNavigation()}return n}))}},{key:\"bootstrapListener\",value:function(e){var t=this.injector.get(qY),n=this.injector.get(UY),r=this.injector.get(BY),i=this.injector.get(EY),a=this.injector.get(Oc);e===a.components[0]&&(this.isLegacyEnabled(t)?i.initialNavigation():this.isLegacyDisabled(t)&&i.setUpLocationChangeListener(),n.setUpPreloading(),r.init(),i.resetRootComponentType(a.componentTypes[0]),this.resultOfPreactivationDone.next(null),this.resultOfPreactivationDone.complete())}},{key:\"isLegacyEnabled\",value:function(e){return\"legacy_enabled\"===e.initialNavigation||!0===e.initialNavigation||void 0===e.initialNavigation}},{key:\"isLegacyDisabled\",value:function(e){return\"legacy_disabled\"===e.initialNavigation||!1===e.initialNavigation}}]),e}()).\\u0275fac=function(e){return new(e||nE)(et(vo))},nE.\\u0275prov=_e({token:nE,factory:nE.\\u0275fac}),nE);function iE(e){return e.appInitializer.bind(e)}function aE(e){return e.bootstrapListener.bind(e)}var oE=new Be(\"Router Initializer\");function sE(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:np;return(!xk(e)||e<0)&&(e=0),t&&\"function\"==typeof t.schedule||(t=np),new w((function(n){return n.add(t.schedule(lE,e,{subscriber:n,counter:0,period:e})),n}))}function lE(e){var t=e.subscriber,n=e.counter,r=e.period;t.next(n),this.schedule({subscriber:t,counter:n+1,period:r},r)}var uE={leading:!0,trailing:!1},cE=function(){function e(t,n,r){_classCallCheck(this,e),this.durationSelector=t,this.leading=n,this.trailing=r}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new dE(e,this.durationSelector,this.leading,this.trailing))}}]),e}(),dE=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e)).destination=e,o.durationSelector=r,o._leading=i,o._trailing=a,o._hasValue=!1,o}return _createClass(n,[{key:\"_next\",value:function(e){this._hasValue=!0,this._sendValue=e,this._throttled||(this._leading?this.send():this.throttle(e))}},{key:\"send\",value:function(){var e=this._hasValue,t=this._sendValue;e&&(this.destination.next(t),this.throttle(t)),this._hasValue=!1,this._sendValue=null}},{key:\"throttle\",value:function(e){var t=this.tryDurationSelector(e);t&&this.add(this._throttled=R(this,t))}},{key:\"tryDurationSelector\",value:function(e){try{return this.durationSelector(e)}catch(t){return this.destination.error(t),null}}},{key:\"throttlingDone\",value:function(){var e=this._throttled,t=this._trailing;e&&e.unsubscribe(),this._throttled=null,t&&this.send()}},{key:\"notifyNext\",value:function(e,t,n,r,i){this.throttlingDone()}},{key:\"notifyComplete\",value:function(){this.throttlingDone()}}]),n}(H);function hE(e){var t=e.start,n=e.index,r=e.count,i=e.subscriber;n>=r?i.complete():(i.next(t),i.closed||(e.index=n+1,e.start=t+1,this.schedule(e)))}function fE(e){return function(t){return t.lift(new pE(e,t))}}var mE,pE=function(){function e(t,n){_classCallCheck(this,e),this.notifier=t,this.source=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new _E(e,this.notifier,this.source))}}]),e}(),_E=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).notifier=r,a.source=i,a}return _createClass(n,[{key:\"error\",value:function(e){if(!this.isStopped){var t=this.errors,r=this.retries,i=this.retriesSubscription;if(r)this.errors=null,this.retriesSubscription=null;else{t=new x;try{r=(0,this.notifier)(t)}catch(a){return _get(_getPrototypeOf(n.prototype),\"error\",this).call(this,a)}i=R(this,r)}this._unsubscribeAndRecycle(),this.errors=t,this.retries=r,this.retriesSubscription=i,t.next(e)}}},{key:\"_unsubscribe\",value:function(){var e=this.errors,t=this.retriesSubscription;e&&(e.unsubscribe(),this.errors=null),t&&(t.unsubscribe(),this.retriesSubscription=null),this.retries=null}},{key:\"notifyNext\",value:function(e,t,n,r,i){var a=this._unsubscribe;this._unsubscribe=null,this._unsubscribeAndRecycle(),this._unsubscribe=a,this.source.subscribe(this)}}]),n}(H),vE=function(){function e(t){_classCallCheck(this,e),this.resultSelector=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new gE(e,this.resultSelector))}}]),e}(),gE=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Object.create(null);return _classCallCheck(this,n),(i=t.call(this,e)).iterators=[],i.active=0,i.resultSelector=\"function\"==typeof r?r:null,i.values=a,i}return _createClass(n,[{key:\"_next\",value:function(e){var t=this.iterators;l(e)?t.push(new bE(e)):t.push(\"function\"==typeof e[I]?new yE(e[I]()):new kE(this.destination,this,e))}},{key:\"_complete\",value:function(){var e=this.iterators,t=e.length;if(this.unsubscribe(),0!==t){this.active=t;for(var n=0;nthis.index}},{key:\"hasCompleted\",value:function(){return this.array.length===this.index}}]),e}(),kE=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).parent=r,a.observable=i,a.stillUnsubscribed=!0,a.buffer=[],a.isComplete=!1,a}return _createClass(n,[{key:I,value:function(){return this}},{key:\"next\",value:function(){var e=this.buffer;return 0===e.length&&this.isComplete?{value:null,done:!0}:{value:e.shift(),done:!1}}},{key:\"hasValue\",value:function(){return this.buffer.length>0}},{key:\"hasCompleted\",value:function(){return 0===this.buffer.length&&this.isComplete}},{key:\"notifyComplete\",value:function(){this.buffer.length>0?(this.isComplete=!0,this.parent.notifyInactive()):this.destination.complete()}},{key:\"notifyNext\",value:function(e,t,n,r,i){this.buffer.push(t),this.parent.checkIterators()}},{key:\"subscribe\",value:function(e,t){return R(this,this.observable,this,t)}}]),n}(H),wE=((mE=function(){function e(t,n){_classCallCheck(this,e),this.http=t,this.router=n}return _createClass(e,[{key:\"get\",value:function(e,t){return this.http.get(TE(e),{headers:xE(t)}).pipe(pC(CE(this.router)),fE(ME()))}},{key:\"post\",value:function(e,t,n){return this.http.post(TE(e),t,{headers:xE(n)}).pipe(pC(CE(this.router)),fE(ME()))}},{key:\"rawPost\",value:function(e,t,n){return this.http.post(TE(e),t,{headers:xE(n),observe:\"response\",responseType:\"text\"}).pipe(pC(CE(this.router)),fE(ME()))}},{key:\"delete\",value:function(e,t){return this.http.delete(TE(e),{headers:xE(t)}).pipe(pC(CE(this.router)),fE(ME()))}},{key:\"put\",value:function(e,t,n){return this.http.put(TE(e),t,{headers:xE(n)}).pipe(pC(CE(this.router)),fE(ME()))}}]),e}()).\\u0275fac=function(e){return new(e||mE)(et(kh),et(EY))},mE.\\u0275prov=_e({token:mE,factory:mE.\\u0275fac,providedIn:\"root\"}),mE);function CE(e){return function(t,n){return Bd(t).pipe(U((function(t){if(403==t.status||401==t.status)return e.routerState.snapshot.url.startsWith(\"/login\")||e.navigate([\"/login\"],{queryParams:{returnUrl:e.url}}),up();throw t})))}}function ME(){return function(e){return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0;return new w((function(r){void 0===t&&(t=e,e=0);var i=0,a=e;if(n)return n.schedule(hE,0,{index:i,count:t,start:e,subscriber:r});for(;;){if(i++>=t){r.complete();break}if(r.next(a++),r.closed)break}}))}(1,10).pipe(function(){for(var e=arguments.length,t=new Array(e),n=0;n144e6})),Pk((function(e){return console.log(\"Renewing user token\"),r.api.rawPost(\"user/token\").pipe(F((function(e){return e.headers.get(\"Authorization\")})),Gd((function(e){return\"\"!=e})),pC((function(e){return console.log(\"Error generating new user token: \",e),rT()})))}))).subscribe((function(e){return r.tokenSubject.next(e)}))}return _createClass(e,[{key:\"create\",value:function(e,t){var n=this,r=new FormData;return r.append(\"user\",e),r.append(\"password\",t),this.http.post(\"/api/v2/token\",r,{observe:\"response\",responseType:\"text\"}).pipe(F((function(e){return e.headers.get(\"Authorization\")})),F((function(e){if(e)return n.tokenSubject.next(e),e;throw new OE(\"test\")})))}},{key:\"delete\",value:function(){this.tokenSubject.next(\"\")}},{key:\"tokenObservable\",value:function(){return this.tokenSubject.pipe(F((function(e){return(e||\"\").replace(\"Bearer \",\"\")})),function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:uE;return function(n){return n.lift(new cE(e,t.leading,t.trailing))}}((function(e){return sE(2e3)})))}},{key:\"tokenUser\",value:function(e){return e?JSON.parse(atob(e.split(\".\")[1])).sub:\"\"}}]),e}()).\\u0275fac=function(e){return new(e||SE)(et(kh),et(wE))},SE.\\u0275prov=_e({token:SE,factory:SE.\\u0275fac,providedIn:\"root\"}),SE),OE=function(e){_inherits(n,_wrapNativeSuper(Error));var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return n}(),YE=[\"placeholder\",\"\\u041F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0441\\u043A\\u043E \\u0438\\u043C\\u0435\"],EE=[\"placeholder\",\"\\u041F\\u0430\\u0440\\u043E\\u043B\\u0430\"];function IE(e,t){1&e&&(Ho(0,\"ngb-alert\",7),Ls(1,\"Invalid username or password\"),Fo()),2&e&&jo(\"dismissible\",!1)(\"type\",\"danger\")}LE=\"\\u0412\\u043B\\u0435\\u0437\";var AE,PE,jE=((AE=function(){function e(t,n,r){_classCallCheck(this,e),this.router=t,this.route=n,this.tokenService=r,this.loading=!1,this.invalidLogin=!1}return _createClass(e,[{key:\"ngOnInit\",value:function(){this.tokenService.delete(),this.returnURL=this.route.snapshot.queryParams.returnURL||\"/\"}},{key:\"login\",value:function(){var e=this;this.loading=!0,this.tokenService.create(this.user,this.password).subscribe((function(t){e.invalidLogin=!1,e.router.navigate([e.returnURL])}),(function(t){401==t.status&&(e.invalidLogin=!0),e.loading=!1}))}}]),e}()).\\u0275fac=function(e){return new(e||AE)(Io(EY),Io(CO),Io(DE))},AE.\\u0275cmp=bt({type:AE,selectors:[[\"ng-component\"]],decls:13,vars:4,consts:[[1,\"content\"],[\"novalidate\",\"\",1,\"login-form\",3,\"ngSubmit\"],[\"f\",\"ngForm\"],[\"matInput\",\"\",\"name\",\"user\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"password\",\"name\",\"password\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[\"mat-raised-button\",\"\",\"type\",\"submit\",3,\"disabled\"],[3,\"dismissible\",\"type\",4,\"ngIf\"],[3,\"dismissible\",\"type\"]],template:function(e,t){if(1&e&&(Ho(0,\"div\",0),Ho(1,\"form\",1,2),qo(\"ngSubmit\",(function(){return t.login()})),Ho(3,\"mat-form-field\"),Ho(4,\"input\",3),iu(5,YE),qo(\"ngModelChange\",(function(e){return t.user=e})),Fo(),Fo(),Ho(6,\"mat-form-field\"),Ho(7,\"input\",4),iu(8,EE),qo(\"ngModelChange\",(function(e){return t.password=e})),Fo(),Fo(),No(9,\"br\"),Ho(10,\"button\",5),ru(11,LE),Fo(),Yo(12,IE,2,2,\"ngb-alert\",6),Fo(),Fo()),2&e){var n=Eo(2);bi(4),jo(\"ngModel\",t.user),bi(3),jo(\"ngModel\",t.password),bi(3),jo(\"disabled\",t.loading||!n.valid),bi(2),jo(\"ngIf\",t.invalidLogin)}},directives:[Mm,af,pm,EM,HM,$h,Um,rf,Cm,zb,Sd,ET],styles:[\".content[_ngcontent-%COMP%]{display:flex;height:100vh;align-items:center;justify-content:center}button[_ngcontent-%COMP%]{margin-bottom:1rem}\"]}),AE),RE=n(\"BOF4\"),HE=((PE=function(){function e(t){_classCallCheck(this,e),this.router=t}return _createClass(e,[{key:\"canActivate\",value:function(e,t){var n=localStorage.getItem(\"token\");if(n){var r=RE(n);if((!r.exp||r.exp>=(new Date).getTime()/1e3)&&(!r.nbf||r.nbf<(new Date).getTime()/1e3))return!0}return this.router.navigate([\"/login\"],{queryParams:{returnUrl:t.url}}),!1}}]),e}()).\\u0275fac=function(e){return new(e||PE)(et(EY))},PE.\\u0275prov=_e({token:PE,factory:PE.\\u0275fac,providedIn:\"root\"}),PE);function FE(e){return e.events.pipe(Gd((function(e){return e instanceof gD})),F((function(t){return NE([e.routerState.snapshot.root])})),sv(NE([e.routerState.snapshot.root])),Ck(),Gk(1))}function NE(e){var t,n=_createForOfIteratorHelper(e);try{for(n.s();!(t=n.n()).done;){var r=t.value;if(\"primary\"in r.data)return r;var i=NE(r.children);if(null!=i)return i}}catch(a){n.e(a)}finally{n.f()}return null}function zE(e){return e.events.pipe(Gd((function(e){return e instanceof gD})),F((function(t){return VE([e.routerState.snapshot.root])})),sv(VE([e.routerState.snapshot.root])),Ck(),Gk(1))}function VE(e){var t,n=_createForOfIteratorHelper(e);try{for(n.s();!(t=n.n()).done;){var r=t.value;if(\"articleID\"in r.params)return r;var i=VE(r.children);if(null!=i)return i}}catch(a){n.e(a)}finally{n.f()}return null}function WE(){for(var e=arguments.length,t=new Array(e),n=0;n0&&(t.title=t.hits.fragments.title.join(\" \")),t.hits.fragments.description.length>0&&(t.stripped=t.hits.fragments.description.join(\" \"))),t.stripped||(t.stripped=t.description.replace(/<[^>]+>/g,\"\")),t.feed=e[0][t.feedID],t})),t})),hD((function(e,t){if(t.unreadIDs)for(var r=0;r=t.unreadIDRange[0]&&i<=t.unreadIDRange[1]&&(e.articles[r].read=!t.unreadIDs.has(i))}if(t.fromEvent){var a,o=new Array,s=_createForOfIteratorHelper(t.articles);try{for(s.s();!(a=s.n()).done;){var u=a.value;if(u.id in e.indexMap)o.push(u);else if(n.olderFirst){for(var c=e.articles.length-1;c>=0;c--)if(l.shouldInsert(u,e.articles[c],n)){e.articles.splice(c,0,u);break}}else for(var d=0;d0})),F((function(e){return e.map((function(e){return e.id}))})),F((function(e){return[Math.min.apply(Math,e),Math.max.apply(Math,e)]})),F((function(e){return l.preferences.olderFirst?[{afterID:e[1]},e[0]]:[{olderFirst:!0,afterID:e[1]},e[0]]}))).subscribe((function(e){return l.updateSubject.next(e)}),(function(e){return console.log(\"Error refreshing article list after reconnect: \",e)})),this.eventService.articleState.subscribe((function(e){return l.stateChange.next({options:e.options,name:e.state,value:e.value})}));var d=(new Date).getTime();Notification.requestPermission((function(e){\"granted\"==e&&c.pipe(WE(l.source,(function(e,t){return[e[0],e[1],t]})),Pk((function(e){return l.eventService.feedUpdate.pipe(Gd((function(t){return l.shouldUpdate(t,e[2],e[1])})),F((function(t){var n=e[0].get(t.feedID);return n?[\"readeef: updates\",\"Feed \".concat(n,\" has been updated\")]:null})),Gd((function(e){return null!=e})),NM(3e4))}))).subscribe((function(e){document.hasFocus()||(new Date).getTime()-d>3e4&&(new Notification(e[0],{body:e[1],icon:\"/en/readeef.png\",tag:\"readeef\"}),d=(new Date).getTime())}))}))}return _createClass(e,[{key:\"articleObservable\",value:function(){return this.articles}},{key:\"requestNextPage\",value:function(){this.paging.next(null)}},{key:\"ids\",value:function(e,t){return this.api.get(this.buildURL(\"article\".concat(e.url,\"/ids\"),t)).pipe(F((function(e){return e.ids})))}},{key:\"formatArticle\",value:function(e){return this.api.get(\"article/\".concat(e,\"/format\"))}},{key:\"refreshArticles\",value:function(){this.refresh.next(null)}},{key:\"favor\",value:function(e,t){return this.articleStateChange(e,\"favorite\",t)}},{key:\"read\",value:function(e,t){return this.articleStateChange(e,\"read\",t)}},{key:\"readAll\",value:function(){var e=this;this.source.pipe(cp(1),Gd((function(e){return e.updatable})),F((function(e){return\"article\"+e.url+\"/read\"})),U((function(t){return e.api.post(t)})),F((function(e){return e.success}))).subscribe((function(e){}),(function(e){return console.log(e)}))}},{key:\"articleStateChange\",value:function(e,t,n){var r=this,i=\"article/\".concat(e,\"/\").concat(t);return(n?this.api.post(i):this.api.delete(i)).pipe(F((function(e){return e.success})),F((function(i){return i&&r.stateChange.next({options:{ids:[e]},name:t,value:n}),i})))}},{key:\"getArticlesFor\",value:function(e,t,n,r){var i=this,a=Object.assign({},t,{limit:n}),o=Object.assign({},a),s=-1,l=0;r.unreadTime?(s=r.unreadTime,l=r.unreadScore,o.unreadOnly=!0):r.time&&(s=r.time,l=r.score),-1!=s&&(t.olderFirst?(o.afterTime=s,l&&(o.afterScore=l)):(o.beforeTime=s,l&&(o.beforeScore=l)));var u=this.api.get(this.buildURL(\"article\"+e.url,o)).pipe(F((function(e){return yI(e.articles)})));if(r.unreadTime&&((o=Object.assign({},a)).readOnly=!0,r.time&&(t.olderFirst?(o.afterTime=r.time,r.score&&(o.afterScore=r.score)):(o.beforeTime=r.time,r.score&&(o.beforeScore=r.score))),u=u.pipe(U((function(t){return t.length==n?Bd(t):(o.limit=n-t.length,i.api.get(i.buildURL(\"article\"+e.url,o)).pipe(F((function(e){return yI(e.articles)})),F((function(e){return t.concat(e)}))))})))),o.afterID&&(u=u.pipe(U((function(t){if(!t||!t.length)return Bd(t);var a=Math.max.apply(Math,t.map((function(e){return e.id}))),s=Object.assign({},o,{afterID:a});return i.getArticlesFor(e,s,n,r).pipe(F((function(e){return e&&e.length?e.concat(t):t})))})))),!this.initialFetched){this.initialFetched=!0;var c=VE([this.router.routerState.snapshot.root]);if(null!=c&&+c.params.articleID>-1){var d=+c.params.articleID;return this.api.get(this.buildURL(\"article\"+(new kI).url,{ids:[d]})).pipe(F((function(e){return yI(e.articles)[0]})),cp(1),U((function(e){return u.pipe(F((function(t){for(var n=0;n0?e+(-1==e.indexOf(\"?\")?\"?\":\"&\")+n.join(\"&\"):e}},{key:\"nameToSource\",value:function(e,t){var n,r;switch(\"string\"==typeof e?n=e:(n=e.primary,r=e.secondary),n){case\"user\":return new kI;case\"favorite\":return new wI;case\"popular\":return new CI(this.nameToSource(r,t));case\"search\":return new LI(decodeURIComponent(t.query),this.nameToSource(r,t));case\"feed\":return new MI(t.id);case\"tag\":return new SI(t.id)}}},{key:\"datePaging\",value:function(e,t){return this.articles.pipe(cp(1),F((function(n){if(0==n.length)return t?{unreadTime:-1}:{};var r=n[n.length-1],i={time:r.date.getTime()/1e3};if(e instanceof CI&&(i.score=r.score),t&&!(e instanceof LI)){if(!r.read)return i.unreadTime=i.time,e instanceof CI&&(i.unreadScore=i.score),i;for(var a=1;at.date)return!0;return!1}},{key:\"shouldSet\",value:function(e,t,n){return!(t.feedIDs&&-1==t.feedIDs.indexOf(e.feedID)||t.readOnly&&!e.read||t.unreadOnly&&e.read||t.favoriteOnly&&!e.favorite||t.untaggedOnly&&!n.has(e.feedID)||t.beforeID&&e.id>=t.beforeID||t.afterID&&e.id<=t.afterID||t.beforeDate&&e.date>=t.beforeDate||t.afterDate&&e.date<=t.afterDate)}}]),e}()).\\u0275fac=function(e){return new(e||bI)(et(wE),et(DE),et(pI),et(_I),et(vI),et(EY),et(gI))},bI.\\u0275prov=_e({token:bI,factory:bI.\\u0275fac,providedIn:\"root\"}),bI);function DI(e,t){1&e&&No(0,\"div\",9),2&e&&hs(\"background-image\",\"url(\"+Zo().item.thumbnail+\")\",ri)}function OI(e,t){1&e&&No(0,\"div\",9),2&e&&hs(\"background-image\",\"url(\"+Zo().item.thumbnailLink+\")\",ri)}function YI(e,t){if(1&e&&(Ho(0,\"div\",10),Ls(1),Fo()),2&e){var n=Zo();bi(1),xs(\" \",n.item.feed,\" \")}}var EI,II,AI=((EI=function(){function e(t,n,r){_classCallCheck(this,e),this.articleService=t,this.router=n,this.route=r}return _createClass(e,[{key:\"openArticle\",value:function(e){this.router.navigate([\"article\",e.id],{relativeTo:this.route})}},{key:\"favor\",value:function(e,t){this.articleService.favor(e,t).subscribe((function(e){}),(function(e){return console.log(e)}))}}]),e}()).\\u0275fac=function(e){return new(e||EI)(Io(xI),Io(EY),Io(CO))},EI.\\u0275cmp=bt({type:EI,selectors:[[\"list-item\"]],inputs:{item:\"item\"},decls:16,vars:12,consts:[[3,\"id\",\"click\"],[1,\"row\",\"align-items-center\"],[1,\"col\",\"title\"],[\"mat-card-avatar\",\"\",\"mat-icon-button\",\"\",3,\"click\"],[3,\"innerHTML\"],[\"mat-card-image\",\"\",3,\"backgroundImage\",4,\"ngIf\"],[1,\"row\",\"align-items-center\",\"info\"],[\"class\",\"col-mat-auto feed\",4,\"ngIf\"],[1,\"col\",\"time\"],[\"mat-card-image\",\"\"],[1,\"col-mat-auto\",\"feed\"]],template:function(e,t){1&e&&(Ho(0,\"mat-card\",0),qo(\"click\",(function(){return t.openArticle(t.item)})),Ho(1,\"mat-card-header\",1),Ho(2,\"mat-card-title\",2),Ho(3,\"button\",3),qo(\"click\",(function(e){return e.stopPropagation(),t.favor(t.item.id,!t.item.favorite)})),Ho(4,\"mat-icon\"),Ls(5),Fo(),Fo(),No(6,\"span\",4),Fo(),Fo(),Yo(7,DI,1,2,\"div\",5),Yo(8,OI,1,2,\"div\",5),Ho(9,\"mat-card-content\"),No(10,\"div\",4),Fo(),Ho(11,\"mat-card-actions\"),Ho(12,\"div\",6),Yo(13,YI,2,1,\"div\",7),Ho(14,\"div\",8),Ls(15),Fo(),Fo(),Fo(),Fo()),2&e&&(fs(\"read\",t.item.read),rs(\"id\",t.item.id),bi(5),xs(\" \",t.item.favorite?\"bookmark\":\"bookmark_border\",\" \"),bi(1),jo(\"innerHTML\",t.item.title,ei),bi(1),jo(\"ngIf\",t.item.thumbnail),bi(1),jo(\"ngIf\",t.item.thumbnailLink&&!t.item.thumbnail),bi(2),jo(\"innerHTML\",t.item.stripped,ei),bi(2),fs(\"read\",t.item.read),bi(1),jo(\"ngIf\",t.item.feed),bi(2),xs(\" \",t.item.time,\" \"))},directives:[Xb,ek,Jb,zb,Qb,FC,Sd,$b,Kb,Zb],styles:[\"[_nghost-%COMP%]{height:500px}mat-card[_ngcontent-%COMP%]{display:flex;flex-direction:column;max-height:calc(100% - 12px);cursor:pointer}mat-card-header[_ngcontent-%COMP%]{overflow:hidden;flex:0 0 auto}[mat-card-image][_ngcontent-%COMP%]{height:240px;flex:1 0 auto;background-position:50%;background-repeat:no-repeat;background-size:contain}mat-card-content[_ngcontent-%COMP%]{flex:0 1 auto;overflow:hidden;text-overflow:ellipsis-lastline;font-size:12px}mat-card-actions[_ngcontent-%COMP%]{flex:0 0 auto}.read[_ngcontent-%COMP%]{font-weight:100;color:#666}.read[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{font-weight:300}.title[_ngcontent-%COMP%]{font-weight:700;font-size:14px;overflow:hidden;text-overflow:ellipsis;line-height:1;height:3.85em}.info[_ngcontent-%COMP%]{margin:0}.feed[_ngcontent-%COMP%]{font-weight:200;font-size:10px;text-align:start}.time[_ngcontent-%COMP%]{font-size:11px;text-align:end}button[_ngcontent-%COMP%]:focus, button[_ngcontent-%COMP%]:hover{outline:none;text-decoration:none}\"]}),EI);function PI(e,t){1&e&&No(0,\"list-item\",4),2&e&&jo(\"item\",t.$implicit)}function jI(e,t){1&e&&(Ho(0,\"div\",5),ru(1,II),Fo())}II=\"\\u0417\\u0430\\u0440\\u0435\\u0436\\u0434\\u0430\\u043D\\u0435...\";var RI,HI,FI,NI,zI,VI=function e(t,n){_classCallCheck(this,e),this.iteration=t,this.articles=n},WI=((RI=function(){function e(t,n,r){_classCallCheck(this,e),this.articleService=t,this.router=n,this.route=r,this.items=[],this.finished=!1,this.limit=200}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.loading=!0,this.subscription=this.articleService.articleObservable().pipe(hD((function(t,n,r){return t.iteration>0&&t.articles.length==n.length&&(e.finished=!0),t.articles=[].concat(n),t.iteration++,t}),new VI(0,[])),F((function(e){return e.articles})),Pk((function(e){return sE(6e4).pipe(sv(0),F((function(t){return e.map((function(e){return e.time=uI(e.date).fromNow(),e}))})))}))).subscribe((function(t){e.loading=!1,e.items=t}),(function(t){e.loading=!1,console.log(t)}))}},{key:\"ngOnDestroy\",value:function(){this.subscription.unsubscribe()}},{key:\"fetchMore\",value:function(e){e.endIndex!==this.items.length-1||this.loading||this.finished||(this.loading=!0,this.articleService.requestNextPage())}},{key:\"firstUnread\",value:function(){if(!document.activeElement.matches(\"input\")){var e=this.items.find((function(e){return!e.read}));e&&this.router.navigate([\"article\",e.id],{relativeTo:this.route})}}},{key:\"lastUnread\",value:function(){if(!document.activeElement.matches(\"input\"))for(var e=this.items.length-1;e>-1;e--){var t=this.items[e];if(!t.read)return void this.router.navigate([\"article\",t.id],{relativeTo:this.route})}}},{key:\"refresh\",value:function(){document.activeElement.matches(\"input\")||this.articleService.refreshArticles()}}]),e}()).\\u0275fac=function(e){return new(e||RI)(Io(xI),Io(EY),Io(CO))},RI.\\u0275cmp=bt({type:RI,selectors:[[\"article-list\"]],hostBindings:function(e,t){1&e&&qo(\"keydown.arrowLeft\",(function(){return t.firstUnread()}),!1,qn)(\"keydown.shift.j\",(function(){return t.firstUnread()}),!1,qn)(\"keydown.arrowRight\",(function(){return t.lastUnread()}),!1,qn)(\"keydown.shift.k\",(function(){return t.lastUnread()}),!1,qn)(\"keydown.r\",(function(){return t.refresh()}),!1,qn)},decls:4,vars:3,consts:[[3,\"items\",\"vsEnd\"],[\"scroll\",\"\"],[3,\"item\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"loader\",4,\"ngIf\"],[3,\"item\"],[1,\"loader\"]],template:function(e,t){if(1&e&&(Ho(0,\"virtual-scroller\",0,1),qo(\"vsEnd\",(function(e){return t.fetchMore(e)})),Yo(2,PI,1,1,\"list-item\",2),Yo(3,jI,2,0,\"div\",3),Fo()),2&e){var n=Eo(1);jo(\"items\",t.items),bi(2),jo(\"ngForOf\",n.viewPortItems),bi(1),jo(\"ngIf\",t.loading)}},directives:[Gx,Cd,Sd,AI],styles:['[_nghost-%COMP%]{flex-grow:1;display:flex;height:calc(100% - 64px)}virtual-scroller[_ngcontent-%COMP%]{overflow:hidden;overflow-y:auto;display:block;flex-grow:1;background:#eee}list-item[_ngcontent-%COMP%]{display:inline-block;overflow:hidden;vertical-align:top;border:0;width:calc(25% - 16px);margin:8px}@media (max-width:1350px){list-item[_ngcontent-%COMP%]{width:calc(33% - 16px)}}@media (max-width:900px){list-item[_ngcontent-%COMP%]{width:calc(50% - 16px)}}@media (max-width:600px){list-item[_ngcontent-%COMP%]{width:calc(100% - 16px)}}.loader[_ngcontent-%COMP%]{height:4em;display:block;line-height:4em;text-align:center;position:relative}.loader[_ngcontent-%COMP%]:before{content:\" \";position:absolute;top:0;left:0;width:20%;height:2px;background:red;-webkit-animation:loader-animation 2s ease-out infinite;animation:loader-animation 2s ease-out infinite}@-webkit-keyframes loader-animation{0%{transform:translate(0)}to{transform:translate(500%)}}@keyframes loader-animation{0%{transform:translate(0)}to{transform:translate(500%)}}']}),RI),UI=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new BI(e))}}]),e}(),BI=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"_next\",value:function(e){}}]),n}(p),qI=((HI=function(){function e(t,n){var r=this;_classCallCheck(this,e),this.api=t,this.tokenService=n;var i=this.tokenService.tokenObservable().pipe(Pk((function(e){return r.api.get(\"features\").pipe(F((function(e){return e.features})))})),cI(1));i.connect(),this.features=i}return _createClass(e,[{key:\"getFeatures\",value:function(){return this.features}}]),e}()).\\u0275fac=function(e){return new(e||HI)(et(wE),et(DE))},HI.\\u0275prov=_e({token:HI,factory:HI.\\u0275fac,providedIn:\"root\"}),HI),GI=[\"carousel\"];function $I(e,t){if(1&e&&(Ho(0,\"div\",17),Ls(1),Fo()),2&e){var n=Zo(2).$implicit;bi(1),xs(\" \",n.feed,\" \")}}function JI(e,t){if(1&e){var n=Wo();Ho(0,\"div\",18),Ho(1,\"button\",19),qo(\"click\",(function(){nn(n);var e=Zo(2).$implicit;return Zo().formatArticle(e)})),ru(2,NI),Fo(),Fo()}}function KI(e,t){if(1&e){var n=Wo();Ho(0,\"div\",18),Ho(1,\"button\",19),qo(\"click\",(function(){nn(n);var e=Zo(2).$implicit;return Zo().summarizeArticle(e)})),ru(2,zI),Fo(),Fo()}}function ZI(e,t){if(1&e){var n=Wo();Ho(0,\"div\",4),Ho(1,\"h3\",5),Ho(2,\"button\",6),qo(\"click\",(function(){nn(n);var e=Zo().$implicit;return Zo().favorArticle(e)})),Ho(3,\"mat-icon\"),Ls(4),Fo(),Fo(),Ho(5,\"a\",7),qo(\"click\",(function(){return nn(n),Zo(2).viewActive()})),Fo(),Fo(),Ho(6,\"div\",8),Yo(7,$I,2,1,\"div\",9),Ho(8,\"div\",10),Ls(9),Fo(),Ho(10,\"div\",11),Ls(11),Fo(),Fo(),No(12,\"p\",12),Ho(13,\"div\",13),Ho(14,\"div\",14),Ho(15,\"a\",15),qo(\"click\",(function(){return nn(n),Zo(2).viewActive()})),ru(16,FI),Fo(),Fo(),Yo(17,JI,3,0,\"div\",16),Yo(18,KI,3,0,\"div\",16),Fo(),Fo()}if(2&e){var r=Zo().$implicit,i=Zo();bi(4),xs(\" \",r.favorite?\"bookmark\":\"bookmark_border\",\" \"),bi(1),rs(\"href\",r.link,ni),jo(\"innerHTML\",r.title,ei),bi(1),fs(\"read\",r.read),bi(1),jo(\"ngIf\",r.feed),bi(2),xs(\" \",i.index,\" \"),bi(2),xs(\" \",r.time,\" \"),bi(1),jo(\"innerHTML\",r.formatted,ei),bi(3),rs(\"href\",r.link,ni),bi(2),jo(\"ngIf\",i.canExtract),bi(1),jo(\"ngIf\",i.canExtract)}}function QI(e,t){1&e&&Yo(0,ZI,19,12,\"ng-template\",3),2&e&&jo(\"id\",t.$implicit.id.toString())}FI=\"\\u041E\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\",NI=\"\\u0424\\u043E\\u0440\\u043C\\u0430\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435\",zI=\"\\u041E\\u0431\\u043E\\u0431\\u0449\\u0430\\u0432\\u0430\\u043D\\u0435\";var XI,eA,tA,nA,rA,iA,aA,oA,sA=function(e){return e[e.DESCRIPTION=0]=\"DESCRIPTION\",e[e.FORMAT=1]=\"FORMAT\",e[e.SUMMARY=2]=\"SUMMARY\",e}({}),lA=((eA=function(){function e(t,n,r,i,a,o){_classCallCheck(this,e),this.route=n,this.router=r,this.articleService=i,this.featuresService=a,this.sanitizer=o,this.slides=[],this.offset=new x,this.stateChange=new tT([-1,sA.DESCRIPTION]),this.states=new Map,this.subscriptions=new Array,t.interval=0,t.wrap=!1,t.keyboard=!1}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.subscriptions.push(this.articleService.articleObservable().pipe(Pk((function(t){return e.stateChange.pipe(Pk((function(t){return e.offset.pipe(sv(0),F((function(e){return[e,t]})))})),F((function(n){var r=_slicedToArray(n,2),i=r[0],a=r[1],o=e.route.snapshot.params.articleID,s=[],l=t.findIndex((function(e){return e.id==o}));return-1==l?null:(0!=i&&(l+i!=-1&&l+i0&&s.push(t[l-1]),s.push(t[l]),l+10&&e[--n].read;);return e[n].read?t:e[n].id})),cp(1),Gd((function(e){return e!=t})),U((function(t){return W(e.router.navigate([\"../\",t],{relativeTo:e.route})).pipe(F((function(e){return t})))}))).subscribe((function(t){e.stateChange.next([t,sA.DESCRIPTION])}))}},{key:\"nextUnread\",value:function(){var e=this,t=this.route.snapshot.params.articleID;this.articleService.articleObservable().pipe(F((function(e){for(var n=e.findIndex((function(e){return e.id==t}));n
  • ')+e.keyPoints.join(\"
  • \")+\"
\"}},{key:\"getState\",value:function(e){return this.states.has(e)?this.states.get(e):sA.DESCRIPTION}},{key:\"setFormat\",value:function(e,t){var n=this,r=this.active;t!=sA.DESCRIPTION?(e.format?Bd(e.format):this.articleService.formatArticle(r.id)).subscribe((function(e){r.format=e,n.stateChange.next([r.id,t])}),(function(e){return console.log(e)})):this.stateChange.next([r.id,t])}},{key:\"formatSource\",value:function(e){return e.replace(\"0){var i=new Map;n.forEach((function(e){i.set(e.id,e)})),e.tags=r.map((function(e){return new bA(e.tag.id,\"/tag/\"+e.tag.id,e.tag.value,e.ids.map((function(e){return new kA(e,\"\".concat(e),i.get(e).title,i.get(e).link)})))})),e.tags.forEach((function(t){return e.collapses.set(t.id,!1)}))}}),(function(e){return console.log(e)}))}},{key:\"favicon\",value:function(e){return this.faviconService.iconURL(e)}}]),e}()).\\u0275fac=function(e){return new(e||_A)(Io(_I),Io(pI),Io(qI),Io(uA))},_A.\\u0275cmp=bt({type:_A,selectors:[[\"side-bar\"]],decls:22,vars:5,consts:[[\"color\",\"primary\"],[1,\"content\"],[\"mat-button\",\"\",\"routerLink\",\"/feed/favorite\"],[\"class\",\"group\",4,\"ngIf\"],[1,\"group\"],[1,\"category\"],[\"mat-button\",\"\",1,\"expander\",3,\"click\"],[\"mat-button\",\"\",\"routerLink\",\"/feed\"],[1,\"items\",3,\"ngbCollapse\"],[\"mat-button\",\"\",3,\"routerLink\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"group\",4,\"ngFor\",\"ngForOf\"],[\"mat-button\",\"\",\"routerLink\",\"/settings\"],[\"mat-button\",\"\",\"routerLink\",\"/login\"],[\"mat-button\",\"\",\"routerLink\",\"/feed/popular\"],[\"mat-button\",\"\",3,\"routerLink\"],[1,\"favicon\",3,\"src\"]],template:function(e,t){1&e&&(Ho(0,\"mat-toolbar\",0),ru(1,tA),Fo(),Ho(2,\"div\",1),Ho(3,\"a\",2),ru(4,nA),Fo(),Yo(5,hA,10,4,\"div\",3),No(6,\"hr\"),Ho(7,\"div\",4),Ho(8,\"div\",5),Ho(9,\"button\",6),qo(\"click\",(function(){return t.collapses.__all=!t.collapses.__all})),Ho(10,\"mat-icon\"),Ls(11),Fo(),Fo(),Ho(12,\"a\",7),ru(13,rA),Fo(),Fo(),Ho(14,\"div\",8),Yo(15,fA,3,3,\"a\",9),Fo(),Fo(),Yo(16,pA,9,5,\"div\",10),No(17,\"hr\"),Ho(18,\"a\",11),ru(19,iA),Fo(),Ho(20,\"a\",12),ru(21,aA),Fo(),Fo()),2&e&&(bi(5),jo(\"ngIf\",t.popularity),bi(6),Ts(t.collapses.__all?\"expand_less\":\"expand_more\"),bi(3),jo(\"ngbCollapse\",!t.collapses.__all),bi(1),jo(\"ngForOf\",t.allItems),bi(1),jo(\"ngForOf\",t.tags))},directives:[XL,Vb,IY,Sd,zb,FC,VT,Cd],styles:[\".content[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{margin-bottom:4px}.content[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex;font-size:16px}.items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:13px}.category[_ngcontent-%COMP%], .items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex}.category[_ngcontent-%COMP%] > .expander[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;min-width:24px;flex-shrink:1}.category[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{flex-grow:1;text-align:start}.category[_ngcontent-%COMP%] > .items[_ngcontent-%COMP%]{flex:0 1 100%}.content[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{margin:0}.favicon[_ngcontent-%COMP%]{padding-right:4px}\"]}),_A),bA=function e(t,n,r,i){_classCallCheck(this,e),this.id=t,this.link=n,this.title=r,this.items=i},kA=function e(t,n,r,i){_classCallCheck(this,e),this.id=t,this.link=n,this.title=r,this.url=i},wA=function(){function e(t){_classCallCheck(this,e),this.delayDurationSelector=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new CA(e,this.delayDurationSelector))}}]),e}(),CA=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).delayDurationSelector=r,i.completed=!1,i.delayNotifierSubscriptions=[],i.index=0,i}return _createClass(n,[{key:\"notifyNext\",value:function(e,t,n,r,i){this.destination.next(e),this.removeSubscription(i),this.tryComplete()}},{key:\"notifyError\",value:function(e,t){this._error(e)}},{key:\"notifyComplete\",value:function(e){var t=this.removeSubscription(e);t&&this.destination.next(t),this.tryComplete()}},{key:\"_next\",value:function(e){var t=this.index++;try{var n=this.delayDurationSelector(e,t);n&&this.tryDelay(n,e)}catch(r){this.destination.error(r)}}},{key:\"_complete\",value:function(){this.completed=!0,this.tryComplete(),this.unsubscribe()}},{key:\"removeSubscription\",value:function(e){e.unsubscribe();var t=this.delayNotifierSubscriptions.indexOf(e);return-1!==t&&this.delayNotifierSubscriptions.splice(t,1),e.outerValue}},{key:\"tryDelay\",value:function(e,t){var n=R(this,e,t);n&&!n.closed&&(this.destination.add(n),this.delayNotifierSubscriptions.push(n))}},{key:\"tryComplete\",value:function(){this.completed&&0===this.delayNotifierSubscriptions.length&&this.destination.complete()}}]),n}(H),MA=[\"search\"];function SA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){return nn(n),Zo().up()})),Ho(1,\"mat-icon\"),Ls(2,\"keyboard_backspace\"),Fo(),Fo()}}function LA(e,t){1&e&&(Ho(0,\"span\"),ru(1,vA),Fo())}function TA(e,t){1&e&&No(0,\"span\",12)}function xA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){nn(n),Zo();var e=Eo(3);return Zo().searchQuery=\"\",e.focus()})),Ho(1,\"mat-icon\"),Ls(2,\"clear\"),Fo(),Fo()}}function DA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){nn(n);var e=Zo(2);return e.performSearch(e.searchQuery)})),Ho(1,\"mat-icon\"),Ls(2,\"keyboard_return\"),Fo(),Fo()}}function OA(e,t){if(1&e){var n=Wo();Ho(0,\"div\",13),Yo(1,xA,3,0,\"button\",0),Ho(2,\"input\",14,15),qo(\"ngModelChange\",(function(e){return nn(n),Zo().searchQuery=e})),Fo(),Yo(4,DA,3,0,\"button\",0),Fo()}if(2&e){var r=Zo();bi(1),jo(\"ngIf\",r.searchQuery),bi(1),jo(\"ngModel\",r.searchQuery),bi(2),jo(\"ngIf\",r.searchQuery)}}function YA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){nn(n);var e=Zo();return e.searchEntry=!e.searchEntry})),Ho(1,\"mat-icon\"),Ls(2,\"search\"),Fo(),Fo()}}function EA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){return nn(n),Zo().refresh()})),Ho(1,\"mat-icon\"),Ls(2,\"refresh\"),Fo(),Fo()}}function IA(e,t){if(1&e){var n=Wo();Ho(0,\"mat-checkbox\",16),qo(\"ngModelChange\",(function(e){return nn(n),Zo().articleRead=e}))(\"click\",(function(){return nn(n),Zo().toggleRead()})),ru(1,gA),Fo()}2&e&&jo(\"ngModel\",Zo().articleRead)}function AA(e,t){1&e&&(Ho(0,\"button\",17),Ho(1,\"mat-icon\"),Ls(2,\"share\"),Fo(),Fo()),2&e&&(Zo(),jo(\"matMenuTriggerFor\",Eo(9)))}function PA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",10),qo(\"click\",(function(){nn(n);var e=t.$implicit;return Zo().shareArticleTo(e)})),Ls(1),Fo()}if(2&e){var r=t.$implicit;bi(1),xs(\" \",r.description,\" \")}}function jA(e,t){1&e&&(Ho(0,\"button\",17),Ho(1,\"mat-icon\"),Ls(2,\"more_vert\"),Fo(),Fo()),2&e&&(Zo(),jo(\"matMenuTriggerFor\",Eo(13)))}function RA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",10),qo(\"click\",(function(){return nn(n),Zo().toggleOlderFirst()})),Ho(1,\"span\"),Ls(2,\"Older first\"),Fo(),Fo()}}function HA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",10),qo(\"click\",(function(){return nn(n),Zo().toggleOlderFirst()})),Ho(1,\"span\"),Ls(2,\"Newer first\"),Fo(),Fo()}}function FA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",10),qo(\"click\",(function(){return nn(n),Zo().markAsRead()})),Ho(1,\"span\"),Ls(2,\"Mark all as read\"),Fo(),Fo()}}vA=\"\\u0421\\u0442\\u0430\\u0442\\u0438\\u0438\",gA=\"\\u041F\\u0440\\u043E\\u0447\\u0435\\u0442\\u0435\\u043D\\u0430\";var NA,zA,VA,WA,UA=((VA=function(){function e(t,n,r,i,a,o){_classCallCheck(this,e),this.articleService=t,this.featuresServices=n,this.preferences=r,this.router=i,this.location=a,this.sharingService=o,this.olderFirst=!1,this.showsArticle=!1,this.articleRead=!1,this.searchButton=!1,this.markAllRead=!1,this.inSearch=!1,this.enabledShares=!1,this.shareServices=new Array,this._searchQuery=\"\",this._searchEntry=!1,this.subscriptions=new Array,this.searchQuery=localStorage.getItem(e.key)||\"\"}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this,t=zE(this.router);this.subscriptions.push(t.pipe(F((function(e){return null!=e}))).subscribe((function(t){return e.showsArticle=t}))),this.articleID=t.pipe(F((function(e){return null==e?-1:+e.params.articleID})),Ck(),Gk(1)),this.subscriptions.push(this.articleID.pipe(Pk((function(t){if(-1==t)return Bd(!1);var n,r=!0;return e.articleService.articleObservable().pipe(F((function(e){var n,r=_createForOfIteratorHelper(e);try{for(r.s();!(n=r.n()).done;){var i=n.value;if(i.id==t)return i.read}}catch(a){r.e(a)}finally{r.f()}return!1})),(n=function(e){return e&&!r?Dk(1e3):(r=!1,Dk(0))},function(e){return e.lift(new wA(n))}))}))).subscribe((function(t){return e.articleRead=t}),(function(e){return console.log(e)}))),this.subscriptions.push(FE(this.router).pipe(F((function(e){return null!=e&&\"search\"==e.data.primary}))).subscribe((function(t){return e.inSearch=t}),(function(e){return console.log(e)}))),this.subscriptions.push(this.featuresServices.getFeatures().pipe(Gd((function(e){return e.search})),Pk((function(n){return t.pipe(F((function(e){return null==e})),Ck(),WE(FE(e.router),(function(t,n){var r=!1,i=!1,a=!1;if(t)switch(NE([e.router.routerState.snapshot.root]).data.primary){case\"favorite\":a=!0;case\"popular\":break;case\"search\":i=!0;default:r=!0,a=!0}return[r,i,a]})))}))).subscribe((function(t){e.searchButton=t[0],e.searchEntry=t[1],e.markAllRead=t[2]}),(function(e){return console.log(e)}))),this.subscriptions.push(this.sharingService.enabledServices().subscribe((function(t){e.enabledShares=t.length>0,e.shareServices=t}),(function(e){return console.log(e)})))}},{key:\"ngOnDestroy\",value:function(){this.subscriptions.forEach((function(e){return e.unsubscribe()}))}},{key:\"toggleOlderFirst\",value:function(){this.preferences.olderFirst=!this.preferences.olderFirst,this.olderFirst=this.preferences.olderFirst}},{key:\"toggleUnreadOnly\",value:function(){this.preferences.unreadOnly=!this.preferences.unreadOnly}},{key:\"markAsRead\",value:function(){this.articleService.readAll()}},{key:\"up\",value:function(){var e=this.location.path(),t=e.indexOf(\"/article/\");-1!=t?this.router.navigateByUrl(e.substring(0,t)):this.inSearch&&this.router.navigateByUrl(e.substring(0,e.indexOf(\"/search/\")))}},{key:\"toggleRead\",value:function(){var e=this;this.articleID.pipe(cp(1),Pk((function(t){return-1==t&&up(),e.articleService.articleObservable().pipe(F((function(e){var n,r=_createForOfIteratorHelper(e);try{for(r.s();!(n=r.n()).done;){var i=n.value;if(i.id==t)return i}}catch(a){r.e(a)}finally{r.f()}return null})),cp(1))})),U((function(t){return e.articleService.read(t.id,!t.read)}))).subscribe((function(e){}),(function(e){return console.log(e)}))}},{key:\"keyEnter\",value:function(){this.searchEntry&&this.searchQuery&&this.performSearch(this.searchQuery)}},{key:\"performSearch\",value:function(e){if(\"search\"==NE([this.router.routerState.snapshot.root]).data.primary){var t=this.location.path().indexOf(\"/search/\")+8;this.router.navigateByUrl(this.location.path().substring(0,t)+encodeURIComponent(e))}else this.router.navigateByUrl(this.location.path()+\"/search/\"+encodeURIComponent(e))}},{key:\"refresh\",value:function(){this.articleService.refreshArticles()}},{key:\"shareArticleTo\",value:function(e){var t=this;this.articleID.pipe(cp(1),Gd((function(e){return-1!=e})),Pk((function(e){return t.articleService.articleObservable().pipe(F((function(t){return t.filter((function(t){return t.id==e}))})),Gd((function(e){return e.length>0})),F((function(e){return e[0]})))})),cp(1)).subscribe((function(n){return t.sharingService.submit(e.id,n)}))}},{key:\"searchEntry\",get:function(){return this._searchEntry},set:function(e){var t=this;this._searchEntry=e,e&&setTimeout((function(){t.searchInput.nativeElement.focus()}),10)}},{key:\"searchQuery\",get:function(){return this._searchQuery},set:function(t){this._searchQuery=t,localStorage.setItem(e.key,t)}}]),e}()).key=\"searchQuery\",VA.\\u0275fac=function(e){return new(e||VA)(Io(xI),Io(qI),Io(gI),Io(EY),Io(ud),Io(qE))},VA.\\u0275cmp=bt({type:VA,selectors:[[\"ng-component\"]],viewQuery:function(e,t){var n;1&e&&Iu(MA,!0),2&e&&Yu(n=Hu())&&(t.searchInput=n.first)},hostBindings:function(e,t){1&e&&qo(\"keydown.enter\",(function(){return t.keyEnter()}))},decls:20,vars:13,consts:[[\"mat-icon-button\",\"\",3,\"click\",4,\"ngIf\"],[4,\"ngIf\"],[\"class\",\"spacer\",4,\"ngIf\"],[\"class\",\"input-group\",4,\"ngIf\"],[3,\"ngModel\",\"ngModelChange\",\"click\",4,\"ngIf\"],[\"mat-icon-button\",\"\",3,\"matMenuTriggerFor\",4,\"ngIf\"],[\"shares\",\"matMenu\"],[\"mat-menu-item\",\"\",3,\"click\",4,\"ngFor\",\"ngForOf\"],[\"other\",\"matMenu\"],[\"mat-menu-item\",\"\",3,\"click\",4,\"ngIf\"],[\"mat-menu-item\",\"\",3,\"click\"],[\"mat-icon-button\",\"\",3,\"click\"],[1,\"spacer\"],[1,\"input-group\"],[\"matInput\",\"\",\"focused\",\"\",1,\"spacer\",\"search\",\"mat-toolbar\",\"mat-primary\",\"form-control\",3,\"ngModel\",\"ngModelChange\"],[\"search\",\"\"],[3,\"ngModel\",\"ngModelChange\",\"click\"],[\"mat-icon-button\",\"\",3,\"matMenuTriggerFor\"]],template:function(e,t){1&e&&(Yo(0,SA,3,0,\"button\",0),Yo(1,LA,2,0,\"span\",1),Yo(2,TA,1,0,\"span\",2),Yo(3,OA,5,3,\"div\",3),Yo(4,YA,3,0,\"button\",0),Yo(5,EA,3,0,\"button\",0),Yo(6,IA,2,1,\"mat-checkbox\",4),Yo(7,AA,3,1,\"button\",5),Ho(8,\"mat-menu\",null,6),Yo(10,PA,2,1,\"button\",7),Fo(),Yo(11,jA,3,1,\"button\",5),Ho(12,\"mat-menu\",null,8),Yo(14,RA,3,0,\"button\",9),Yo(15,HA,3,0,\"button\",9),Ho(16,\"button\",10),qo(\"click\",(function(){return t.toggleUnreadOnly()})),Ho(17,\"span\"),Ls(18,\"Unread only\"),Fo(),Fo(),Yo(19,FA,3,0,\"button\",9),Fo()),2&e&&(jo(\"ngIf\",t.showsArticle||t.inSearch),bi(1),jo(\"ngIf\",!t.searchEntry),bi(1),jo(\"ngIf\",!t.searchEntry),bi(1),jo(\"ngIf\",t.searchEntry),bi(1),jo(\"ngIf\",t.searchButton),bi(1),jo(\"ngIf\",!t.showsArticle),bi(1),jo(\"ngIf\",t.showsArticle),bi(1),jo(\"ngIf\",t.showsArticle&&t.enabledShares),bi(3),jo(\"ngForOf\",t.shareServices),bi(1),jo(\"ngIf\",!t.showsArticle),bi(3),jo(\"ngIf\",!t.olderFirst),bi(1),jo(\"ngIf\",t.olderFirst),bi(4),jo(\"ngIf\",!t.inSearch&&t.markAllRead))},directives:[Sd,hS,Cd,oS,zb,FC,HM,$h,rf,Cm,dk,_S],styles:[\"[_nghost-%COMP%]{display:flex;align-items:center}.spacer[_ngcontent-%COMP%], [_nghost-%COMP%]{flex:1 1 auto}.search[_ngcontent-%COMP%]{min-height:0;border:none;background:transparent} label{margin-bottom:0}\"]}),VA),BA=((zA=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"ngOnInit\",value:function(){}}]),e}()).\\u0275fac=function(e){return new(e||zA)},zA.\\u0275cmp=bt({type:zA,selectors:[[\"settings-container\"]],decls:2,vars:0,consts:[[1,\"container\"]],template:function(e,t){1&e&&(Ho(0,\"div\",0),No(1,\"router-outlet\"),Fo())},directives:[NY],styles:[\"[_nghost-%COMP%]{overflow:auto}\"]}),zA),qA=((NA=function(){function e(t){_classCallCheck(this,e),this.api=t,this.user=this.api.get(\"user/current\").pipe(F((function(e){return e.user})),Gk(1))}return _createClass(e,[{key:\"getCurrentUser\",value:function(){return this.user}},{key:\"changeUserPassword\",value:function(e,t){return this.setUserSetting(\"password\",e,{current:t})}},{key:\"setUserSetting\",value:function(e,t,n){var r=\"value=\".concat(encodeURIComponent(t));if(n)for(var i in n)r+=\"&\".concat(i,\"=\").concat(encodeURIComponent(n[i]));return this.api.put(\"user/settings/\".concat(e),r,new Qd({\"Content-Type\":\"application/x-www-form-urlencoded\"})).pipe(F((function(e){return e.success})))}},{key:\"list\",value:function(){return this.api.get(\"user\").pipe(F((function(e){return e.users})))}},{key:\"addUser\",value:function(e,t){var n=new FormData;return n.append(\"login\",e),n.append(\"password\",t),this.api.post(\"user\",n).pipe(F((function(e){return e.success})))}},{key:\"deleteUser\",value:function(e){return this.api.delete(\"user/\".concat(e)).pipe(F((function(e){return e.success})))}},{key:\"toggleActive\",value:function(e,t){return this.api.put(\"user/\".concat(e,\"/settings/is-active\"),\"value=\".concat(t),new Qd({\"Content-Type\":\"application/x-www-form-urlencoded\"})).pipe(F((function(e){return e.success})))}}]),e}()).\\u0275fac=function(e){return new(e||NA)(et(wE))},NA.\\u0275prov=_e({token:NA,factory:NA.\\u0275fac,providedIn:\"root\"}),NA);WA=\"\\u041F\\u0435\\u0440\\u0441\\u043E\\u043D\\u0430\\u043B\\u0438\\u0437\\u0438\\u0440\\u0430\\u043D\\u0435\";var GA,$A,JA,KA=[\"placeholder\",\"\\u041F\\u044A\\u0440\\u0432\\u043E \\u0438\\u043C\\u0435\"],ZA=[\"placeholder\",\"\\u041F\\u043E\\u0441\\u043B\\u0435\\u0434\\u043D\\u043E \\u0438\\u043C\\u0435\"],QA=[\"placeholder\",\"\\u041F\\u043E\\u0449\\u0430\"],XA=[\"placeholder\",\"\\u0415\\u0437\\u0438\\u043A\"];function eP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,$A),Fo())}GA=\"\\u041F\\u0440\\u043E\\u043C\\u044F\\u043D\\u0430 \\u043D\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\",$A=\"\\u041C\\u043E\\u043B\\u044F \\u0432\\u044A\\u0432\\u0435\\u0434\\u0435\\u0442\\u0435 \\u043F\\u0440\\u0430\\u0432\\u0438\\u043B\\u0435\\u043D \\u0430\\u0434\\u0440\\u0435\\u0441 \\u043D\\u0430 \\u043F\\u043E\\u0449\\u0430\",JA=\"\\u041F\\u0440\\u043E\\u043C\\u0435\\u043D\\u0435\\u0442\\u0435 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\\u0442\\u0430\";var tP,nP,rP,iP=[\"placeholder\",\"\\u041D\\u043E\\u0432\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\"],aP=[\"placeholder\",\"\\u041F\\u043E\\u0442\\u0432\\u044A\\u0440\\u0436\\u0434\\u0430\\u0432\\u0430\\u043D\\u0435 \\u043D\\u043E\\u0432\\u0430\\u0442\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\"];function oP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,nP),Fo())}function sP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,rP),Fo())}tP=\"\\u0417\\u0430\\u043F\\u0438\\u0441\\u0432\\u0430\\u043D\\u0435\",nP=\"\\u041D\\u0435\\u0432\\u0430\\u043B\\u0438\\u0434\\u043D\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\",rP=\"\\u041F\\u0430\\u0440\\u043E\\u043B\\u0438\\u0442\\u0435 \\u043D\\u0435 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\\u0442\";var lP,uP,cP,dP,hP=((uP=function(){function e(t,n){_classCallCheck(this,e),this.userService=t,this.dialog=n,this.emailFormControl=new cm(\"\",[cf.email]),this.language=localStorage.getItem(\"locale\")||\"en\"}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.userService.getCurrentUser().subscribe((function(t){e.firstName=t.firstName,e.lastName=t.lastName,e.emailFormControl.setValue(t.email)}),(function(e){return console.log(e)}))}},{key:\"firstNameChange\",value:function(){this.userService.setUserSetting(\"first-name\",this.firstName).subscribe((function(){}),(function(e){return console.log(e)}))}},{key:\"lastNameChange\",value:function(){this.userService.setUserSetting(\"last-name\",this.lastName).subscribe((function(){}),(function(e){return console.log(e)}))}},{key:\"emailChange\",value:function(){var e=this;this.emailFormControl.updateValueAndValidity(),this.emailFormControl.valid&&this.userService.setUserSetting(\"email\",this.emailFormControl.value).subscribe((function(t){t||e.emailFormControl.setErrors({email:!0})}),(function(e){return console.log(e)}))}},{key:\"languageChange\",value:function(e){location.href=\"/\"+e+\"/\"}},{key:\"changePassword\",value:function(){this.dialog.open(fP,{width:\"250px\"})}}]),e}()).\\u0275fac=function(e){return new(e||uP)(Io(qA),Io(fC))},uP.\\u0275cmp=bt({type:uP,selectors:[[\"settings-general\"]],decls:26,vars:7,consts:[[1,\"title\"],[\"matInput\",\"\",3,\"ngModel\",\"ngModelChange\",\"change\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"email\",3,\"formControl\",\"change\",6,\"placeholder\"],[4,\"ngIf\"],[3,\"ngModel\",\"change\",\"ngModelChange\",6,\"placeholder\"],[3,\"value\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,WA),Fo(),Ho(2,\"mat-form-field\"),Ho(3,\"input\",1),iu(4,KA),qo(\"ngModelChange\",(function(e){return t.firstName=e}))(\"change\",(function(){return t.firstNameChange()})),Fo(),Fo(),No(5,\"br\"),Ho(6,\"mat-form-field\"),Ho(7,\"input\",1),iu(8,ZA),qo(\"ngModelChange\",(function(e){return t.lastName=e}))(\"change\",(function(){return t.lastNameChange()})),Fo(),Fo(),No(9,\"br\"),Ho(10,\"mat-form-field\"),Ho(11,\"input\",2),iu(12,QA),qo(\"change\",(function(){return t.emailChange()})),Fo(),Yo(13,eP,2,0,\"mat-error\",3),Fo(),No(14,\"br\"),Ho(15,\"mat-form-field\"),Ho(16,\"mat-select\",4),iu(17,XA),qo(\"change\",(function(e){return t.languageChange(e.value)}))(\"ngModelChange\",(function(e){return t.language=e})),Ho(18,\"mat-option\",5),Ls(19,\"English\"),Fo(),Ho(20,\"mat-option\",5),Ls(21,\"\\u0411\\u044a\\u043b\\u0433\\u0430\\u0440\\u0441\\u043a\\u0438\"),Fo(),Fo(),Fo(),No(22,\"br\"),Ho(23,\"div\",6),Ho(24,\"button\",7),qo(\"click\",(function(){return t.changePassword()})),ru(25,GA),Fo(),Fo()),2&e&&(bi(3),jo(\"ngModel\",t.firstName),bi(4),jo(\"ngModel\",t.lastName),bi(4),jo(\"formControl\",t.emailFormControl),bi(2),jo(\"ngIf\",t.emailFormControl.hasError(\"email\")),bi(3),jo(\"ngModel\",t.language),bi(2),jo(\"value\",\"en\"),bi(2),jo(\"value\",\"bg\"))},directives:[EM,HM,$h,rf,Cm,Tm,Sd,GS,gb,zb,cM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),uP),fP=((lP=function(){function e(t,n){_classCallCheck(this,e),this.dialogRef=t,this.userService=n,this.currentFormControl=new cm(\"\",[cf.required]),this.passwordFormControl=new cm(\"\",[cf.required])}return _createClass(e,[{key:\"save\",value:function(){var e=this;this.passwordFormControl.value==this.passwordConfirm?(this.currentFormControl.updateValueAndValidity(),this.currentFormControl.valid&&this.userService.changeUserPassword(this.passwordFormControl.value,this.currentFormControl.value).subscribe((function(t){t?e.close():e.currentFormControl.setErrors({auth:!0})}),(function(t){400!=t.status?console.log(t):e.currentFormControl.setErrors({auth:!0})}))):this.passwordFormControl.setErrors({mismatch:!0})}},{key:\"close\",value:function(){this.dialogRef.close()}}]),e}()).\\u0275fac=function(e){return new(e||lP)(Io(lC),Io(qA))},lP.\\u0275cmp=bt({type:lP,selectors:[[\"ng-component\"]],decls:18,vars:5,consts:[[1,\"title\"],[\"matInput\",\"\",\"type\",\"password\",\"placeholder\",\"Current password\",\"required\",\"\",3,\"formControl\"],[4,\"ngIf\"],[\"matInput\",\"\",\"type\",\"password\",\"required\",\"\",3,\"formControl\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"password\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h6\",0),ru(1,JA),Fo(),Ho(2,\"mat-form-field\"),No(3,\"input\",1),Yo(4,oP,2,0,\"mat-error\",2),Fo(),No(5,\"br\"),Ho(6,\"mat-form-field\"),Ho(7,\"input\",3),iu(8,iP),Fo(),Yo(9,sP,2,0,\"mat-error\",2),Fo(),No(10,\"br\"),Ho(11,\"mat-form-field\"),Ho(12,\"input\",4),iu(13,aP),qo(\"ngModelChange\",(function(e){return t.passwordConfirm=e})),Fo(),Fo(),No(14,\"br\"),Ho(15,\"div\",5),Ho(16,\"button\",6),qo(\"click\",(function(){return t.save()})),ru(17,tP),Fo(),Fo()),2&e&&(bi(3),jo(\"formControl\",t.currentFormControl),bi(1),jo(\"ngIf\",t.currentFormControl.hasError(\"auth\")),bi(3),jo(\"formControl\",t.passwordFormControl),bi(2),jo(\"ngIf\",t.passwordFormControl.hasError(\"mismatch\")),bi(3),jo(\"ngModel\",t.passwordConfirm))},directives:[EM,HM,$h,Um,rf,Tm,Sd,Cm,zb,cM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),lP),mP=[\"opmlInput\"];cP=\"\\u041E\\u0442\\u043A\\u0440\\u0438\\u0432\\u0430\\u043D\\u0435/\\u0438\\u043C\\u043F\\u043E\\u0440\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435 \\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",dP=\" You can enter the url of a feed directly, as well as a url of a site that may contain one or more feeds, or a search query. \";var pP,_P=[\"placeholder\",\"\\u0410\\u0434\\u0440\\u0435\\u0441/\\u043A\\u043B\\u044E\\u0447\\u043E\\u0432\\u0438 \\u0434\\u0443\\u043C\\u0438\"];pP=\"\\u041C\\u043E\\u0436\\u0435 \\u0434\\u0430 \\u0441\\u0435 \\u043A\\u0430\\u0447\\u0438 \\u0438 OPML \\u0444\\u0430\\u0439\\u043B.\";var vP,gP,yP,bP,kP,wP,CP,MP,SP,LP,TP=[\"placeholder\",\"\\u0418\\u043C\\u043F\\u043E\\u0440\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435 \\u043D\\u0430 OPML\"];function xP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,gP),Fo())}function DP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,yP),Fo())}function OP(e,t){1&e&&No(0,\"mat-progress-bar\",7)}function YP(e,t){if(1&e){var n=Wo();Ho(0,\"div\"),Ho(1,\"p\"),ru(2,dP),Fo(),Ho(3,\"mat-form-field\"),Ho(4,\"input\",2),iu(5,_P),qo(\"ngModelChange\",(function(e){return nn(n),Zo().query=e}))(\"keydown.Enter\",(function(){return nn(n),Zo().search()})),Fo(),Yo(6,xP,2,0,\"mat-error\",1),Yo(7,DP,2,0,\"mat-error\",1),Fo(),No(8,\"br\"),Ho(9,\"p\"),ru(10,pP),Fo(),Ho(11,\"input\",3,4),iu(13,TP),qo(\"keydown.Enter\",(function(){return nn(n),Zo().search()})),Fo(),No(14,\"br\"),Ho(15,\"button\",5),qo(\"click\",(function(){return nn(n),Zo().search()})),ru(16,vP),Fo(),No(17,\"br\"),Yo(18,OP,1,0,\"mat-progress-bar\",6),Fo()}if(2&e){var r=Zo();bi(4),jo(\"ngModel\",r.query),bi(2),jo(\"ngIf\",r.queryFormControl.hasError(\"empty\")),bi(1),jo(\"ngIf\",r.queryFormControl.hasError(\"search\")),bi(8),jo(\"disabled\",r.loading),bi(3),jo(\"ngIf\",r.loading)}}function EP(e,t){1&e&&(Ho(0,\"p\"),ru(1,bP),Fo())}function IP(e,t){if(1&e&&(Ho(0,\"div\"),Ho(1,\"mat-checkbox\"),Ls(2),Fo(),No(3,\"br\"),Ho(4,\"a\",11),Ls(5),Fo(),No(6,\"hr\"),Fo()),2&e){var n=t.$implicit,r=Zo(2);bi(2),Ts(n.title),bi(2),rs(\"href\",r.baseURL(n.link),ni),bi(1),Ts(n.description||n.title)}}function AP(e,t){1&e&&(Ho(0,\"p\"),Ls(1,\" No feeds selected \"),Fo())}function PP(e,t){if(1&e){var n=Wo();Ho(0,\"button\",5),qo(\"click\",(function(){return nn(n),Zo(2).add()})),ru(1,kP),Fo()}2&e&&jo(\"disabled\",Zo(2).loading)}function jP(e,t){if(1&e){var n=Wo();Ho(0,\"button\",12),qo(\"click\",(function(){return nn(n),Zo(2).phase=\"query\"})),ru(1,wP),Fo()}}function RP(e,t){if(1&e&&(Ho(0,\"div\"),Yo(1,EP,2,0,\"p\",1),Yo(2,IP,7,3,\"div\",8),Yo(3,AP,2,0,\"p\",1),Yo(4,PP,2,1,\"button\",9),Yo(5,jP,2,0,\"button\",10),Fo()),2&e){var n=Zo();bi(1),jo(\"ngIf\",0==n.feeds.length),bi(1),jo(\"ngForOf\",n.feeds),bi(1),jo(\"ngIf\",n.emptySelection),bi(1),jo(\"ngIf\",n.feeds.length>0),bi(1),jo(\"ngIf\",0==n.feeds.length)}}function HP(e,t){1&e&&(Ho(0,\"p\"),ru(1,MP),Fo())}function FP(e,t){1&e&&(Ho(0,\"p\"),ru(1,SP),Fo())}function NP(e,t){if(1&e&&(Ho(0,\"div\"),Ho(1,\"p\"),ru(2,LP),Fo(),Fo()),2&e){var n=t.$implicit;bi(2),su(n.title)(n.error),lu(2)}}function zP(e,t){if(1&e){var n=Wo();Ho(0,\"div\"),Yo(1,HP,2,0,\"p\",1),Yo(2,FP,2,0,\"p\",1),Yo(3,NP,3,2,\"div\",8),Ho(4,\"button\",12),qo(\"click\",(function(){return nn(n),Zo().phase=\"query\"})),ru(5,CP),Fo(),Fo()}if(2&e){var r=Zo();bi(1),jo(\"ngIf\",!r.addFeedResult.success),bi(1),jo(\"ngIf\",r.addFeedResult.success),bi(1),jo(\"ngForOf\",r.addFeedResult.errors)}}vP=\"\\u0422\\u044A\\u0440\\u0441\\u0435\\u043D\\u0435\",gP=\"\\u041D\\u0435 \\u0441\\u0430 \\u0437\\u0430\\u0434\\u0430\\u0434\\u0435\\u043D\\u0438 \\u043A\\u043B\\u044E\\u0447\\u043E\\u0432\\u0438 \\u0434\\u0443\\u043C\\u0438 \\u0438\\u043B\\u0438 \\u0444\\u0430\\u0439\\u043B\",yP=\"\\u0413\\u0440\\u0435\\u0448\\u043A\\u0430 \\u043F\\u0440\\u0438 \\u0442\\u044A\\u0440\\u0441\\u0435\\u043D\\u0435\",bP=\"\\u041D\\u044F\\u043C\\u0430 \\u043D\\u0430\\u043C\\u0435\\u0440\\u0435\\u043D\\u0438 \\u043D\\u043E\\u0432\\u0438 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",kP=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435\",wP=\"\\u041E\\u0442\\u043A\\u0440\\u0438\\u0432\\u0430\\u043D\\u0435 \\u043D\\u0430 \\u043E\\u0449\\u0435 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",CP=\"\\u041E\\u0442\\u043A\\u0440\\u0438\\u0432\\u0430\\u043D\\u0435 \\u043D\\u0430 \\u043E\\u0449\\u0435 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",MP=\"\\u041D\\u044F\\u043C\\u0430 \\u0434\\u043E\\u0431\\u0430\\u0432\\u0435\\u043D\\u0438 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",SP=\"\\u0415\\u043C\\u0438\\u0441\\u0438\\u0438\\u0442\\u0435 \\u0441\\u0430 \\u0434\\u043E\\u0431\\u0430\\u0432\\u0435\\u043D\\u0438 \\u0443\\u0441\\u043F\\u0435\\u0448\\u043D\\u043E.\",LP=\"\\n \\u0413\\u0440\\u0435\\u0448\\u043A\\u0430 \\u043F\\u0440\\u0438 \\u0434\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435 \\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u044F \" + \"\\ufffd0\\ufffd\" + \": \" + \"\\ufffd1\\ufffd\" + \"\\n \";var VP,WP,UP,BP=((VP=function(){function e(t){_classCallCheck(this,e),this.feedService=t,this.query=\"\",this.phase=\"query\",this.loading=!1,this.feeds=new Array,this.emptySelection=!1,this.queryFormControl=new cm(\"\")}return _createClass(e,[{key:\"search\",value:function(){var e=this;if(!this.loading)if(\"\"!=this.query||this.opml.nativeElement.files.length){var t;if(this.loading=!0,this.opml.nativeElement.files.length){var n=this.opml.nativeElement.files[0];t=w.create((function(e){var t=new FileReader;t.onload=function(t){e.next({opml:t.target.result,dryRun:!0}),e.complete()},t.onerror=function(t){e.error(t)},t.readAsText(n)})).pipe(U((function(t){return e.feedService.importOPML(t)})))}else t=this.feedService.discover(this.query);t.subscribe((function(t){e.loading=!1,e.phase=\"search-result\",e.feeds=t}),(function(t){e.loading=!1,e.queryFormControl.setErrors({search:!0}),console.log(t)}))}else this.queryFormControl.setErrors({empty:!0})}},{key:\"add\",value:function(){var e=this;if(!this.loading){var t=new Array;this.feedChecks.forEach((function(n,r){n.checked&&t.push(e.feeds[r].link)})),0!=t.length?(this.loading=!0,this.feedService.addFeeds(t).subscribe((function(t){e.loading=!1,e.addFeedResult=t,e.phase=\"add-result\"}),(function(t){e.loading=!1,console.log(t)}))):this.emptySelection=!0}}},{key:\"baseURL\",value:function(e){var t=document.createElement(\"a\");return t.href=e,t.pathname=\"\",t.href}}]),e}()).\\u0275fac=function(e){return new(e||VP)(Io(pI))},VP.\\u0275cmp=bt({type:VP,selectors:[[\"settings-discovery\"]],viewQuery:function(e,t){var n;1&e&&(Iu(mP,!0),Iu(dk,!0)),2&e&&(Yu(n=Hu())&&(t.opml=n.first),Yu(n=Hu())&&(t.feedChecks=n))},decls:5,vars:3,consts:[[1,\"title\"],[4,\"ngIf\"],[\"matInput\",\"\",3,\"ngModel\",\"ngModelChange\",\"keydown.Enter\",6,\"placeholder\"],[\"type\",\"file\",\"accept\",\".opml\",3,\"keydown.Enter\",6,\"placeholder\"],[\"opmlInput\",\"\"],[\"mat-raised-button\",\"\",3,\"disabled\",\"click\"],[\"mode\",\"indeterminate\",4,\"ngIf\"],[\"mode\",\"indeterminate\"],[4,\"ngFor\",\"ngForOf\"],[\"mat-raised-button\",\"\",3,\"disabled\",\"click\",4,\"ngIf\"],[\"mat-raised-button\",\"\",3,\"click\",4,\"ngIf\"],[1,\"discovery-link\",3,\"href\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,cP),Fo(),Yo(2,YP,19,5,\"div\",1),Yo(3,RP,6,5,\"div\",1),Yo(4,zP,6,3,\"div\",1)),2&e&&(bi(2),jo(\"ngIf\",\"query\"==t.phase),bi(1),jo(\"ngIf\",\"search-result\"==t.phase),bi(1),jo(\"ngIf\",\"add-result\"==t.phase))},directives:[Sd,EM,HM,$h,rf,Cm,zb,cM,CS,Cd,dk],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}input[type=file][_ngcontent-%COMP%]{width:100%;border-bottom:1px solid grey;padding-bottom:4px;margin-bottom:1em}mat-progress-bar[_ngcontent-%COMP%]{margin-top:1em}.discovery-link[_ngcontent-%COMP%]{display:block;text-align:end}\"]}),VP),qP=[\"downloader\"];function GP(e,t){1&e&&(Ho(0,\"p\",7),Ls(1,\" No feeds have been added\\n\"),Fo())}WP=\"\\u0423\\u043F\\u0440\\u0430\\u0432\\u043B\\u0435\\u043D\\u0438\\u0435 \\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",UP=\"\\u0415\\u043A\\u0441\\u043F\\u043E\\u0440\\u0442 \\u0432 OPML \\u0444\\u043E\\u0440\\u043C\\u0430\\u0442\";var $P,JP=[\"placeholder\",\"\\u0422\\u0430\\u0433\\u043E\\u0432\\u0435\"];function KP(e,t){if(1&e){var n=Wo();Ho(0,\"div\",8),No(1,\"img\",9),Ho(2,\"a\",10),Ls(3),Fo(),Ho(4,\"button\",11),qo(\"click\",(function(){nn(n);var e=t.$implicit;return Zo().showError(e[0].updateError)})),Ho(5,\"mat-icon\"),Ls(6,\"warning\"),Fo(),Fo(),Ho(7,\"mat-form-field\",12),Ho(8,\"input\",13),iu(9,JP),qo(\"change\",(function(e){nn(n);var r=t.$implicit;return Zo().tagsChange(e,r[0].id)})),Fo(),Fo(),Ho(10,\"button\",14),qo(\"click\",(function(e){nn(n);var r=t.$implicit;return Zo().deleteFeed(e,r[0].id)})),Ho(11,\"mat-icon\"),Ls(12,\"delete\"),Fo(),Fo(),Fo()}if(2&e){var r=t.$implicit,i=Zo();bi(1),rs(\"src\",i.favicon(r[0].link),ni),bi(1),rs(\"href\",r[0].link,ni),bi(1),Ts(r[0].title),bi(1),fs(\"visible\",r[0].updateError),bi(4),rs(\"value\",r[1].join(\", \"))}}function ZP(e,t){if(1&e&&(Ho(0,\"li\"),Ls(1),Fo()),2&e){var n=t.$implicit;bi(1),Ts(n)}}$P=\"\\u0417\\u0430\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\";var QP,XP,ej,tj,nj,rj,ij,aj,oj,sj,lj,uj,cj,dj,hj,fj,mj=((XP=function(){function e(t,n,r,i){_classCallCheck(this,e),this.feedService=t,this.tagService=n,this.faviconService=r,this.errorDialog=i,this.feeds=new Array}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.feedService.getFeeds().pipe(WE(this.tagService.getTagsFeedIDs(),(function(e,t){var n,r=new Map,i=_createForOfIteratorHelper(t);try{for(i.s();!(n=i.n()).done;){var a,o=n.value,s=_createForOfIteratorHelper(o.ids);try{for(s.s();!(a=s.n()).done;){var l=a.value;r.has(l)?r.get(l).push(o.tag.value):r.set(l,[o.tag.value])}}catch(u){s.e(u)}finally{s.f()}}}catch(u){i.e(u)}finally{i.f()}return e.map((function(e){return[e,r.get(e.id)||[]]}))}))).subscribe((function(t){return e.feeds=t||[]}),(function(e){return console.log(e)}))}},{key:\"favicon\",value:function(e){return this.faviconService.iconURL(e)}},{key:\"tagsChange\",value:function(e,t){this.feedService.updateTags(t,e.target.value.split(\",\").map((function(e){return e.trim()}))).subscribe((function(e){}),(function(e){return console.log(e)}))}},{key:\"showError\",value:function(e){this.errorDialog.open(pj,{width:\"300px\",data:e.split(\"\\n\").filter((function(e){return e}))})}},{key:\"deleteFeed\",value:function(e,t){this.feedService.deleteFeed(t).subscribe((function(t){if(t){for(var n=e.target.parentNode;(n=n.parentElement)&&!n.classList.contains(\"feed\"););n.parentNode.removeChild(n)}}),(function(e){return console.log(e)}))}},{key:\"exportOPML\",value:function(){var e=this;this.feedService.exportOPML().subscribe((function(t){e.downloader.nativeElement.href=\"data:text/x-opml+xml,\"+encodeURIComponent(t),e.downloader.nativeElement.click()}),(function(e){return console.log(e)}))}}]),e}()).\\u0275fac=function(e){return new(e||XP)(Io(pI),Io(_I),Io(uA),Io(fC))},XP.\\u0275cmp=bt({type:XP,selectors:[[\"settings-management\"]],viewQuery:function(e,t){var n;1&e&&Iu(qP,!0,Qs),2&e&&Yu(n=Hu())&&(t.downloader=n.first)},decls:9,vars:2,consts:[[1,\"title\"],[\"u18n\",\"\",4,\"ngIf\"],[\"class\",\"feed\",4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"hidden\",\"\",\"download\",\"feeds.opml\"],[\"downloader\",\"\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"u18n\",\"\"],[1,\"feed\"],[1,\"favicon\",3,\"src\"],[1,\"name\",3,\"href\"],[\"mat-icon-button\",\"\",1,\"error\",3,\"click\"],[1,\"tags\"],[\"matInput\",\"\",3,\"value\",\"change\",6,\"placeholder\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,WP),Fo(),Yo(2,GP,2,0,\"p\",1),Yo(3,KP,13,6,\"div\",2),Ho(4,\"div\",3),No(5,\"a\",4,5),Ho(7,\"button\",6),qo(\"click\",(function(){return t.exportOPML()})),ru(8,UP),Fo(),Fo()),2&e&&(bi(2),jo(\"ngIf\",0==t.feeds.length),bi(1),jo(\"ngForOf\",t.feeds))},directives:[Sd,Cd,zb,FC,EM,HM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".feed[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.favicon[_ngcontent-%COMP%]{width:16px;height:16px;margin-right:5px;flex-shrink:1}.name[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{flex:1 0 0;min-width:250px}.tags[_ngcontent-%COMP%]{width:auto}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}\"]}),XP),pj=((QP=function(){function e(t,n){_classCallCheck(this,e),this.dialogRef=t,this.errors=n}return _createClass(e,[{key:\"close\",value:function(){this.dialogRef.close()}}]),e}()).\\u0275fac=function(e){return new(e||QP)(Io(lC),Io(uC))},QP.\\u0275cmp=bt({type:QP,selectors:[[\"error-dialog\"]],decls:5,vars:1,consts:[[2,\"max-height\",\"85vh\",\"overflow\",\"auto\"],[4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"ul\",0),Yo(1,ZP,2,1,\"li\",1),Fo(),Ho(2,\"div\",2),Ho(3,\"button\",3),qo(\"click\",(function(){return t.close()})),ru(4,$P),Fo(),Fo()),2&e&&(bi(1),jo(\"ngForOf\",t.errors))},directives:[Cd,zb],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".feed[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.favicon[_ngcontent-%COMP%]{width:16px;height:16px;margin-right:5px;flex-shrink:1}.name[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{flex:1 0 0;min-width:250px}.tags[_ngcontent-%COMP%]{width:auto}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}\"]}),QP);function _j(e,t){1&e&&(Ho(0,\"p\"),ru(1,nj),Fo())}function vj(e,t){1&e&&(Ho(0,\"span\"),ru(1,ij),Fo())}function gj(e,t){1&e&&(Ho(0,\"span\"),ru(1,aj),Fo())}function yj(e,t){if(1&e&&(Ho(0,\"span\"),Yo(1,vj,2,0,\"span\",1),Yo(2,gj,2,0,\"span\",1),Ho(3,\"span\",13),Ls(4),Fo(),Ho(5,\"span\",14),ru(6,rj),Fo(),Fo()),2&e){var n=Zo().$implicit;bi(1),jo(\"ngIf\",!n.inverseURL),bi(1),jo(\"ngIf\",n.inverseURL),bi(2),Ts(n.urlTerm)}}function bj(e,t){1&e&&(Ho(0,\"span\",15),Ls(1,\" and \"),Fo())}function kj(e,t){1&e&&(Ho(0,\"span\"),ru(1,sj),Fo())}function wj(e,t){1&e&&(Ho(0,\"span\"),ru(1,lj),Fo())}function Cj(e,t){if(1&e&&(Ho(0,\"span\"),Yo(1,kj,2,0,\"span\",1),Yo(2,wj,2,0,\"span\",1),Ho(3,\"span\",13),Ls(4),Fo(),Ho(5,\"span\",16),ru(6,oj),Fo(),Fo()),2&e){var n=Zo().$implicit;bi(1),jo(\"ngIf\",!n.inverseTitle),bi(1),jo(\"ngIf\",n.inverseTitle),bi(2),Ts(n.titleTerm)}}function Mj(e,t){1&e&&(Ho(0,\"span\",17),ru(1,uj),Fo())}function Sj(e,t){1&e&&(Ho(0,\"span\",18),ru(1,cj),Fo())}function Lj(e,t){1&e&&(Ho(0,\"span\",17),ru(1,dj),Fo())}function Tj(e,t){1&e&&(Ho(0,\"span\",18),ru(1,hj),Fo())}function xj(e,t){if(1&e&&(Ho(0,\"span\",19),Ls(1),Fo()),2&e){var n=Zo().$implicit,r=Zo();bi(1),Ts(r.tagLabel(n.tagID))}}function Dj(e,t){if(1&e&&(Ho(0,\"span\",20),Ls(1),Fo()),2&e){var n=Zo().$implicit,r=Zo();bi(1),Ts(r.feedsLabel(n.feedIDs))}}function Oj(e,t){if(1&e){var n=Wo();Ho(0,\"div\",5),Ho(1,\"div\",6),Yo(2,yj,7,3,\"span\",1),Yo(3,bj,2,0,\"span\",7),Yo(4,Cj,7,3,\"span\",1),Yo(5,Mj,2,0,\"span\",8),Yo(6,Sj,2,0,\"span\",9),Yo(7,Lj,2,0,\"span\",8),Yo(8,Tj,2,0,\"span\",9),Yo(9,xj,2,1,\"span\",10),Yo(10,Dj,2,1,\"span\",11),Fo(),Ho(11,\"button\",12),qo(\"click\",(function(e){nn(n);var r=t.$implicit;return Zo().deleteFilter(e,r)})),Ho(12,\"mat-icon\"),Ls(13,\"delete\"),Fo(),Fo(),Fo()}if(2&e){var r=t.$implicit;bi(2),jo(\"ngIf\",r.urlTerm),bi(1),jo(\"ngIf\",r.urlTerm&&r.titleTerm),bi(1),jo(\"ngIf\",r.titleTerm),bi(1),jo(\"ngIf\",r.inverseFeeds&&r.tagID),bi(1),jo(\"ngIf\",r.inverseFeeds&&r.feedIDs&&!r.tagID),bi(1),jo(\"ngIf\",r.tagID),bi(1),jo(\"ngIf\",r.feedIDs&&!r.tagID),bi(1),jo(\"ngIf\",r.tagID),bi(1),jo(\"ngIf\",r.feedIDs)}}ej=\"\\u0423\\u043F\\u0440\\u0430\\u0432\\u043B\\u0435\\u043D\\u0438\\u0435 \\u043D\\u0430 \\u0444\\u0438\\u043B\\u0442\\u0440\\u0438\",tj=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435 \\u043D\\u0430 \\u0444\\u0438\\u043B\\u0442\\u044A\\u0440\",nj=\"\\u041D\\u044F\\u043C\\u0430 \\u0434\\u0435\\u0444\\u0438\\u043D\\u0438\\u0440\\u0430\\u043D\\u0438 \\u0444\\u0438\\u043B\\u0442\\u0440\\u0438\",rj=\"\\u043F\\u043E URL\",ij=\"\\u0421\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\",aj=\"\\u041D\\u0435 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\",oj=\"\\u043F\\u043E \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\",sj=\"\\u0421\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\",lj=\"\\u041D\\u0435 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430\",uj=\"\\u0431\\u0435\\u0437 \\u0442\\u0430\\u0433:\",cj=\"\\u0431\\u0435\\u0437 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438:\",dj=\"\\u043D\\u0430 \\u0442\\u0430\\u0433:\",hj=\"\\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438:\",fj=\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u0440\\u0438\\u0442\\u0435 \\u043C\\u043E\\u0433\\u0430\\u0442 \\u0434\\u0430 \\u0431\\u044A\\u0434\\u0430\\u0442 \\u043F\\u0440\\u0438\\u043B\\u043E\\u0436\\u0435\\u043D\\u0438 \\u043A\\u044A\\u043C \\u0430\\u0434\\u0440\\u0435\\u0441\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u044F\\u0442\\u0430 \\u043D\\u0430 \\u0441\\u0442\\u0430\\u0442\\u0438\\u0438\\u0442\\u0435. \\u041F\\u043E\\u043D\\u0435 \\u0435\\u0434\\u043D\\u0430 \\u0446\\u0435\\u043B \\u0442\\u0440\\u044F\\u0431\\u0432\\u0430 \\u0434\\u0430 \\u0431\\u044A\\u0434\\u0435 \\u0437\\u0430\\u0434\\u0430\\u0434\\u0435\\u043D\\u0430:\\n\\t\\t\";var Yj,Ej=[\"placeholder\",\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u0440\\u0438\\u0440\\u0430\\u043D\\u0435 \\u043F\\u043E \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\\n\\t\\t\"];Yj=\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u044A\\u0440\\u044A\\u0442 \\u0435 \\u0430\\u043A\\u0442\\u0438\\u0432\\u0435\\u043D \\u0430\\u043A\\u043E \\u0442\\u0435\\u043A\\u0441\\u0442\\u0430 \\u043D\\u0435 \\u0435 \\u0447\\u0430\\u0441\\u0442 \\u043E\\u0442 \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\\u0442\\u043E.\\n \";var Ij,Aj,Pj,jj,Rj,Hj,Fj,Nj,zj=[\"placeholder\",\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u0440\\u0438\\u0440\\u0430\\u043D\\u0435 \\u043F\\u043E \\u0430\\u0434\\u0440\\u0435\\u0441\\n\\t\\t\"];function Vj(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,Hj),Fo())}function Wj(e,t){1&e&&(Ho(0,\"span\"),ru(1,Fj),Fo())}function Uj(e,t){1&e&&(Ho(0,\"span\"),ru(1,Nj),Fo())}Ij=\"\\n\\t\\t\\t\\u0424\\u0438\\u043B\\u0442\\u044A\\u0440\\u044A\\u0442 \\u0435 \\u0430\\u043A\\u0442\\u0438\\u0432\\u0435\\u043D \\u0430\\u043A\\u043E \\u0442\\u0435\\u043A\\u0441\\u0442\\u0430 \\u043D\\u0435 \\u0435 \\u0447\\u0430\\u0441\\u0442 \\u043E\\u0442 \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\\u0442\\u043E.\\n \",Aj=\"\\u041D\\u0435\\u0437\\u0430\\u0434\\u044A\\u043B\\u0436\\u0438\\u0442\\u0435\\u043B\\u043D\\u0438 \\u043F\\u0430\\u0440\\u0430\\u043C\\u0435\\u0442\\u0440\\u0438\",Pj=\"\\u0424\\u0438\\u043B\\u0442\\u044A\\u0440\\u044A\\u0442 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430 \\u0430\\u043A\\u043E \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\\u0442\\u043E \\u043D\\u0435 \\u0435 \\u043E\\u0442 \\u0438\\u0437\\u0431\\u0440\\u0430\\u043D\\u0438\\u0442\\u0435 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438/\\u0442\\u0430\\u0433.\",jj=\"\\u0417\\u0430\\u043F\\u0438\\u0441\\u0432\\u0430\\u043D\\u0435\",Rj=\"\\u0417\\u0430\\u0442\\u0432\\u0430\\u0440\\u044F\\u043D\\u0435\",Hj=\"\\u0424\\u0438\\u043B\\u0442\\u044A\\u0440\\u044A\\u0442 \\u0442\\u0440\\u044F\\u0431\\u0432\\u0430 \\u0434\\u0430 \\u0441\\u044A\\u0432\\u043F\\u0430\\u0434\\u0430 \\u043F\\u043E\\u043D\\u0435 \\u0441 URL \\u0438\\u043B\\u0438 \\u0437\\u0430\\u0433\\u043B\\u0430\\u0432\\u0438\\u0435\",Fj=\"\\u041B\\u0438\\u043C\\u0438\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435 \\u0434\\u043E \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",Nj=\"\\u041B\\u0438\\u043C\\u0438\\u0442\\u0438\\u0440\\u0430\\u043D\\u0435 \\u0434\\u043E \\u0442\\u0430\\u0433\";var Bj=[\"placeholder\",\"\\u0415\\u043C\\u0438\\u0441\\u0438\\u0438\"];function qj(e,t){if(1&e&&(Ho(0,\"mat-option\",12),Ls(1),Fo()),2&e){var n=t.$implicit;jo(\"value\",n.id),bi(1),xs(\" \",n.title,\" \")}}function Gj(e,t){if(1&e&&(Ho(0,\"mat-form-field\"),Ho(1,\"mat-select\",10),iu(2,Bj),Yo(3,qj,2,2,\"mat-option\",11),Fo(),Fo()),2&e){var n=Zo();bi(3),jo(\"ngForOf\",n.feeds)}}var $j=[\"placeholder\",\"\\u0422\\u0430\\u0433\"];function Jj(e,t){if(1&e&&(Ho(0,\"mat-option\",12),Ls(1),Fo()),2&e){var n=t.$implicit;jo(\"value\",n.id),bi(1),xs(\" \",n.value,\" \")}}function Kj(e,t){if(1&e&&(Ho(0,\"mat-form-field\"),Ho(1,\"mat-select\",13),iu(2,$j),Yo(3,Jj,2,2,\"mat-option\",11),Fo(),Fo()),2&e){var n=Zo();bi(3),jo(\"ngForOf\",n.tags)}}var Zj,Qj,Xj,eR=((Qj=function(){function e(t,n,r,i){_classCallCheck(this,e),this.userService=t,this.feedService=n,this.tagService=r,this.dialog=i,this.filters=new Array}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.feedService.getFeeds().pipe(WE(this.tagService.getTags(),this.userService.getCurrentUser(),(function(e,t,n){return[e,t,n]}))).subscribe((function(t){e.feeds=t[0],e.tags=t[1],e.filters=t[2].profileData.filters||[]}),(function(e){return console.log(e)}))}},{key:\"addFilter\",value:function(){var e=this;this.dialog.open(tR,{width:\"350px\",data:{feeds:this.feeds,tags:this.tags}}).afterClosed().subscribe((function(t){return e.ngOnInit()}))}},{key:\"feedsLabel\",value:function(e){var t=this.feeds.filter((function(t){return-1!=e.indexOf(t.id)})).map((function(e){return e.title}));return t.length?t.join(\", \"):\"\".concat(e)}},{key:\"tagLabel\",value:function(e){var t=this.tags.filter((function(t){return t.id==e})).map((function(e){return e.value}));return t.length?t[0]:\"\".concat(e)}},{key:\"deleteFilter\",value:function(e,t){var n=this;this.userService.getCurrentUser().pipe(U((function(e){var r=e.profileData||new Map,i=r.filters||[],a=i.filter((function(e){return e.urlTerm!=t.urlTerm||e.inverseURL!=t.inverseURL||e.titleTerm!=t.titleTerm||e.inverseTitle!=t.inverseTitle||e.tagID!=t.tagID||e.feedIDs!=t.feedIDs||e.inverseFeeds!=t.inverseFeeds}));return a.length==i.length?Bd(!0):(r.filters=a,n.userService.setUserSetting(\"profile\",JSON.stringify(r)))}))).subscribe((function(t){if(t){for(var n=e.target.parentNode;(n=n.parentElement)&&!n.classList.contains(\"filter\"););n.parentNode.removeChild(n)}}),(function(e){return console.log(e)}))}}]),e}()).\\u0275fac=function(e){return new(e||Qj)(Io(qA),Io(pI),Io(_I),Io(fC))},Qj.\\u0275cmp=bt({type:Qj,selectors:[[\"settings-filters\"]],decls:7,vars:2,consts:[[1,\"title\"],[4,\"ngIf\"],[\"class\",\"filter\",4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[1,\"filter\"],[1,\"info\"],[\"class\",\"url-and-title\",4,\"ngIf\"],[\"class\",\"match-tag\",4,\"ngIf\"],[\"class\",\"match-feeds\",4,\"ngIf\"],[\"class\",\"tag\",4,\"ngIf\"],[\"class\",\"feeds\",4,\"ngIf\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"],[1,\"term\"],[1,\"match-url\"],[1,\"url-and-title\"],[1,\"match-title\"],[1,\"match-tag\"],[1,\"match-feeds\"],[1,\"tag\"],[1,\"feeds\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,ej),Fo(),Yo(2,_j,2,0,\"p\",1),Yo(3,Oj,14,9,\"div\",2),Ho(4,\"div\",3),Ho(5,\"button\",4),qo(\"click\",(function(){return t.addFilter()})),ru(6,tj),Fo(),Fo()),2&e&&(bi(2),jo(\"ngIf\",0==t.filters.length),bi(1),jo(\"ngForOf\",t.filters))},directives:[Sd,Cd,zb,FC],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".filter[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.filter[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{flex:1 0 0}.filter[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{padding-left:4px;padding-right:4px}.filter[_ngcontent-%COMP%] .feeds[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .tag[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .term[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;font-weight:700}.filter[_ngcontent-%COMP%] .url-and-title[_ngcontent-%COMP%]{font-style:italic}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}form[_ngcontent-%COMP%]{display:flex;flex-direction:column;margin-bottom:20px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{flex:1 0 auto}form[_ngcontent-%COMP%] mat-slide-toggle[_ngcontent-%COMP%]{align-self:center;flex:1 0 auto}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{font-size:14px}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%] .mat-checkbox-layout{white-space:normal}form[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{border-bottom:1px solid #ddd;margin-top:12px;margin-bottom:24px;font-size:13px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{width:100%}\"]}),Qj),tR=((Zj=function(){function e(t,n,r,i,a){_classCallCheck(this,e),this.dialogRef=t,this.userService=n,this.tagService=r,this.data=i,this.form=a.group({urlTerm:[\"\"],titleTerm:[\"\"],inverseURL:[!1],inverseTitle:[!1],useFeeds:[!0],feeds:[[]],tag:[],inverseFeeds:[!1]},{validator:function(e){return e.controls.urlTerm.value||e.controls.titleTerm.value?null:{nomatch:!0}}}),this.feeds=i.feeds,this.tags=i.tags}return _createClass(e,[{key:\"save\",value:function(){var e=this;if(this.form.valid){var t=this.form.value;this.userService.getCurrentUser().pipe(U((function(n){var r={urlTerm:t.urlTerm,inverseURL:t.inverseURL,titleTerm:t.titleTerm,inverseTitle:t.inverseTitle,inverseFeeds:t.inverseFeeds};return t.useFeeds?t.feeds&&t.feeds.length>0&&(r.feedIDs=t.feeds):t.tag&&(r.tagID=t.tag),(r.tagID>0?e.tagService.getFeedIDs({id:r.tagID}).pipe(F((function(e){return r.feedIDs=e,r}))):Bd(r)).pipe(U((function(t){var r=n.profileData||new Map,i=r.filters||[];return i.push(t),r.filters=i,e.userService.setUserSetting(\"profile\",JSON.stringify(r))})))}))).subscribe((function(t){return e.close()}),(function(e){return console.log(e)}))}}},{key:\"close\",value:function(){this.dialogRef.close()}}]),e}()).\\u0275fac=function(e){return new(e||Zj)(Io(lC),Io(qA),Io(_I),Io(uC),Io(qm))},Zj.\\u0275cmp=bt({type:Zj,selectors:[[\"new-filter-dialog\"]],decls:32,vars:6,consts:[[\"novalidate\",\"\",\"autocomplete\",\"off\",3,\"formGroup\",\"ngSubmit\"],[\"matInput\",\"\",\"formControlName\",\"titleTerm\",6,\"placeholder\"],[\"formControlName\",\"inverseTitle\"],[\"matInput\",\"\",\"formControlName\",\"urlTerm\",6,\"placeholder\"],[\"formControlName\",\"inverseURL\"],[4,\"ngIf\"],[\"formControlName\",\"useFeeds\"],[\"formControlName\",\"inverseFeeds\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"multiple\",\"\",\"formControlName\",\"feeds\",6,\"placeholder\"],[3,\"value\",4,\"ngFor\",\"ngForOf\"],[3,\"value\"],[\"formControlName\",\"tag\",6,\"placeholder\"]],template:function(e,t){1&e&&(Ho(0,\"div\"),Ho(1,\"form\",0),qo(\"ngSubmit\",(function(){return t.save()})),Ho(2,\"p\"),ru(3,fj),Fo(),Ho(4,\"mat-form-field\"),Ho(5,\"input\",1),iu(6,Ej),Fo(),Fo(),No(7,\"br\"),Ho(8,\"mat-checkbox\",2),ru(9,Yj),Fo(),Ho(10,\"mat-form-field\"),Ho(11,\"input\",3),iu(12,zj),Fo(),Fo(),No(13,\"br\"),Ho(14,\"mat-checkbox\",4),ru(15,Ij),Fo(),Yo(16,Vj,2,0,\"mat-error\",5),No(17,\"br\"),Ho(18,\"p\"),ru(19,Aj),Fo(),Ho(20,\"mat-slide-toggle\",6),Yo(21,Wj,2,0,\"span\",5),Yo(22,Uj,2,0,\"span\",5),Fo(),Yo(23,Gj,4,1,\"mat-form-field\",5),Yo(24,Kj,4,1,\"mat-form-field\",5),Ho(25,\"mat-checkbox\",7),ru(26,Pj),Fo(),Fo(),Fo(),Ho(27,\"div\",8),Ho(28,\"button\",9),qo(\"click\",(function(){return t.save()})),ru(29,jj),Fo(),Ho(30,\"button\",9),qo(\"click\",(function(){return t.close()})),ru(31,Rj),Fo(),Fo()),2&e&&(bi(1),jo(\"formGroup\",t.form),bi(15),jo(\"ngIf\",t.form.hasError(\"nomatch\")),bi(5),jo(\"ngIf\",t.form.value.useFeeds),bi(1),jo(\"ngIf\",!t.form.value.useFeeds),bi(1),jo(\"ngIf\",t.form.value.useFeeds),bi(1),jo(\"ngIf\",!t.form.value.useFeeds))},directives:[Mm,af,Dm,EM,HM,$h,rf,Vm,dk,Sd,RL,zb,cM,GS,Cd,gb],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".filter[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.filter[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{flex:1 0 0}.filter[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{padding-left:4px;padding-right:4px}.filter[_ngcontent-%COMP%] .feeds[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .tag[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .term[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;font-weight:700}.filter[_ngcontent-%COMP%] .url-and-title[_ngcontent-%COMP%]{font-style:italic}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}form[_ngcontent-%COMP%]{display:flex;flex-direction:column;margin-bottom:20px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{flex:1 0 auto}form[_ngcontent-%COMP%] mat-slide-toggle[_ngcontent-%COMP%]{align-self:center;flex:1 0 auto}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{font-size:14px}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%] .mat-checkbox-layout{white-space:normal}form[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{border-bottom:1px solid #ddd;margin-top:12px;margin-bottom:24px;font-size:13px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{width:100%}\"]}),Zj);function nR(e,t){if(1&e){var n=Wo();Ho(0,\"div\",5),Ho(1,\"mat-slide-toggle\",6,7),qo(\"change\",(function(){nn(n);var e=t.$implicit,r=Eo(2);return Zo(2).toggleService(e[0].id,r.checked)})),Ls(3),Fo(),Fo()}if(2&e){var r=t.$implicit;bi(1),jo(\"checked\",r[1]),bi(2),Ts(r[0].description)}}function rR(e,t){if(1&e&&(Ho(0,\"mat-card\"),Ho(1,\"mat-card-header\"),Ho(2,\"mat-card-title\",3),Ho(3,\"h6\"),Ls(4),Fo(),Fo(),Fo(),Ho(5,\"mat-card-content\"),Yo(6,nR,4,2,\"div\",4),Fo(),Fo()),2&e){var n=t.$implicit;bi(4),xs(\" \",n[0][0].category,\" \"),bi(2),jo(\"ngForOf\",n)}}Xj=\"\\u041A\\u0430\\u043D\\u0430\\u043B\\u0438 \\u0437\\u0430 \\u0441\\u043F\\u043E\\u0434\\u0435\\u043B\\u044F\\u043D\\u0435\";var iR,aR,oR,sR,lR,uR,cR=((iR=function(){function e(t){_classCallCheck(this,e),this.sharingService=t}return _createClass(e,[{key:\"ngOnInit\",value:function(){this.services=this.sharingService.groupedList()}},{key:\"toggleService\",value:function(e,t){this.sharingService.toggle(e,t)}}]),e}()).\\u0275fac=function(e){return new(e||iR)(Io(qE))},iR.\\u0275cmp=bt({type:iR,selectors:[[\"settings-share-services\"]],decls:4,vars:1,consts:[[1,\"title\"],[1,\"cards-container\"],[4,\"ngFor\",\"ngForOf\"],[1,\"col\",\"title\"],[\"class\",\"service\",4,\"ngFor\",\"ngForOf\"],[1,\"service\"],[3,\"checked\",\"change\"],[\"toggle\",\"\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,Xj),Fo(),Ho(2,\"div\",1),Yo(3,rR,7,2,\"mat-card\",2),Fo()),2&e&&(bi(3),jo(\"ngForOf\",t.services))},directives:[Cd,Xb,ek,Jb,$b,RL],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".cards-container[_ngcontent-%COMP%]{display:flex;flex-direction:row;flex-wrap:wrap}mat-card[_ngcontent-%COMP%]{flex:1 0 0;margin:8px;min-width:250px}.service[_ngcontent-%COMP%]{margin-bottom:16px}\"]}),iR);function dR(e,t){if(1&e&&(Ho(0,\"p\"),ru(1,sR),Fo()),2&e){var n=Zo();bi(1),su(n.current.login),lu(1)}}function hR(e,t){if(1&e){var n=Wo();Ho(0,\"div\",5),Ho(1,\"mat-checkbox\",6,7),qo(\"change\",(function(){nn(n);var e=t.$implicit,r=Eo(2);return Zo(2).toggleActive(e.login,r.checked)}))(\"ngModelChange\",(function(e){return nn(n),t.$implicit.active=e})),Ls(3),Fo(),Ho(4,\"button\",8),qo(\"click\",(function(e){nn(n);var r=t.$implicit;return Zo(2).deleteUser(e,r.login)})),Ho(5,\"mat-icon\"),Ls(6,\"delete\"),Fo(),Fo(),Fo()}if(2&e){var r=t.$implicit;bi(1),jo(\"ngModel\",r.active),bi(2),Ts(r.login)}}function fR(e,t){if(1&e&&(Ho(0,\"div\"),Ho(1,\"h6\"),ru(2,lR),Fo(),Yo(3,hR,7,2,\"div\",4),Fo()),2&e){var n=Zo();bi(3),jo(\"ngForOf\",n.users)}}aR=\"\\u0423\\u043F\\u0440\\u0430\\u0432\\u043B\\u0435\\u043D\\u0438\\u0435 \\u043D\\u0430 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0438\",oR=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435 \\u043D\\u0430 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\",sR=\"\\n \\u0422\\u0435\\u043A\\u0443\\u0449 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B: \" + \"\\ufffd0\\ufffd\" + \"\\n\",lR=\"\\u0421\\u043F\\u0438\\u0441\\u044A\\u043A \\u0441 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0438:\",uR=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u044F\\u043D\\u0435 \\u043D\\u0430 \\u043D\\u043E\\u0432 \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\";var mR,pR,_R,vR=[\"placeholder\",\"\\u041F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0441\\u043A\\u043E \\u0438\\u043C\\u0435\"],gR=[\"placeholder\",\"\\u041F\\u0430\\u0440\\u043E\\u043B\\u0430\"];function yR(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,pR),Fo())}function bR(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,_R),Fo())}mR=\"\\u0417\\u0430\\u043F\\u0438\\u0441\\u0432\\u0430\\u043D\\u0435\",pR=\"\\n \\u041F\\u0440\\u0430\\u0437\\u043D\\u043E \\u043F\\u043E\\u0442\\u0440\\u0435\\u0431\\u0438\\u0442\\u0435\\u043B\\u0441\\u043A\\u043E \\u0438\\u043C\\u0435\\n \",_R=\"\\n \\u041F\\u0440\\u0430\\u0437\\u043D\\u0430 \\u043F\\u0430\\u0440\\u043E\\u043B\\u0430\\n \";var kR,wR,CR,MR,SR,LR,TR,xR,DR,OR,YR,ER=function(){return[\"login\"]},IR=function(){return[\"password\"]},AR=((wR=function(){function e(t,n){_classCallCheck(this,e),this.userService=t,this.dialog=n,this.users=new Array,this.refresher=new x}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.refresher.pipe(sv(null),Pk((function(t){return e.userService.list()})),WE(this.userService.getCurrentUser(),(function(e,t){return e.filter((function(e){return e.login!=t.login}))}))).subscribe((function(t){return e.users=t}),(function(e){return console.log(e)})),this.userService.getCurrentUser().subscribe((function(t){return e.current=t}),(function(e){return console.log(e)}))}},{key:\"toggleActive\",value:function(e,t){this.userService.toggleActive(e,t).subscribe((function(e){}),(function(e){return console.log(e)}))}},{key:\"deleteUser\",value:function(e,t){confirm(\"Are you sure you want to delete user \"+t)&&this.userService.deleteUser(t).subscribe((function(t){if(t){for(var n=e.target.parentNode;(n=n.parentElement)&&!n.classList.contains(\"user\"););n.parentNode.removeChild(n)}}),(function(e){return console.log(e)}))}},{key:\"newUser\",value:function(){var e=this;this.dialog.open(PR,{width:\"250px\"}).afterClosed().subscribe((function(t){return e.refresher.next(null)}))}}]),e}()).\\u0275fac=function(e){return new(e||wR)(Io(qA),Io(fC))},wR.\\u0275cmp=bt({type:wR,selectors:[[\"settings-admin\"]],decls:7,vars:2,consts:[[1,\"title\"],[4,\"ngIf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"class\",\"user\",4,\"ngFor\",\"ngForOf\"],[1,\"user\"],[3,\"ngModel\",\"change\",\"ngModelChange\"],[\"check\",\"\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,aR),Fo(),Yo(2,dR,2,1,\"p\",1),Yo(3,fR,4,1,\"div\",1),Ho(4,\"div\",2),Ho(5,\"button\",3),qo(\"click\",(function(){return t.newUser()})),ru(6,oR),Fo(),Fo()),2&e&&(bi(2),jo(\"ngIf\",t.current),bi(1),jo(\"ngIf\",t.users.length))},directives:[Sd,zb,Cd,dk,rf,Cm,FC],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".user[_ngcontent-%COMP%]{display:flex;align-items:center;border-bottom:1px solid #ccc;padding-bottom:4px;margin-bottom:4px}.user[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{flex:1 0 0}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),wR),PR=((kR=function(){function e(t,n,r){_classCallCheck(this,e),this.dialogRef=t,this.userService=n,this.form=r.group({login:[\"\",cf.required],password:[\"\",cf.required]})}return _createClass(e,[{key:\"save\",value:function(){var e=this;if(this.form.valid){var t=this.form.value;this.userService.addUser(t.login,t.password).subscribe((function(t){t&&e.close()}),(function(e){return console.log(e)}))}}},{key:\"close\",value:function(){this.dialogRef.close()}}]),e}()).\\u0275fac=function(e){return new(e||kR)(Io(lC),Io(qA),Io(qm))},kR.\\u0275cmp=bt({type:kR,selectors:[[\"ng-component\"]],decls:16,vars:6,consts:[[1,\"title\"],[\"novalidate\",\"\",\"autocomplete\",\"off\",3,\"formGroup\",\"ngSubmit\"],[\"matInput\",\"\",\"formControlName\",\"login\",\"required\",\"\",6,\"placeholder\"],[4,\"ngIf\"],[\"matInput\",\"\",\"type\",\"password\",\"formControlName\",\"password\",\"required\",\"\",6,\"placeholder\"],[1,\"footer\"],[\"mat-raised-button\",\"\",\"type\",\"submit\",3,\"disabled\"]],template:function(e,t){1&e&&(Ho(0,\"h6\",0),ru(1,uR),Fo(),Ho(2,\"form\",1),qo(\"ngSubmit\",(function(){return t.save()})),Ho(3,\"mat-form-field\"),Ho(4,\"input\",2),iu(5,vR),Fo(),Yo(6,yR,2,0,\"mat-error\",3),Fo(),No(7,\"br\"),Ho(8,\"mat-form-field\"),Ho(9,\"input\",4),iu(10,gR),Fo(),Yo(11,bR,2,0,\"mat-error\",3),Fo(),No(12,\"br\"),Ho(13,\"div\",5),Ho(14,\"button\",6),ru(15,mR),Fo(),Fo(),Fo()),2&e&&(bi(2),jo(\"formGroup\",t.form),bi(4),jo(\"ngIf\",t.form.hasError(\"required\",yu(4,ER))),bi(5),jo(\"ngIf\",t.form.hasError(\"required\",yu(5,IR))),bi(3),jo(\"disabled\",t.form.pristine))},directives:[Mm,af,Dm,EM,HM,$h,rf,Vm,Um,Sd,zb,cM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".user[_ngcontent-%COMP%]{display:flex;align-items:center;border-bottom:1px solid #ccc;padding-bottom:4px;margin-bottom:4px}.user[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{flex:1 0 0}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),kR);CR=\"\\u041D\\u0430\\u0441\\u0442\\u0440\\u043E\\u0439\\u043A\\u0438\",MR=\"\\u041E\\u0431\\u0449\\u0438\",SR=\"\\u0414\\u043E\\u0431\\u0430\\u0432\\u0438\",LR=\"\\u0423\\u043F\\u0440\\u0430\\u0432\\u043B\\u0435\\u043D\\u0438\\u0435 \\u043D\\u0430 \\u0435\\u043C\\u0438\\u0441\\u0438\\u0438\",TR=\"\\u0424\\u0438\\u043B\\u0442\\u0440\\u0438\",xR=\"\\u041A\\u0430\\u043D\\u0430\\u043B\\u0438 \\u0437\\u0430 \\u0441\\u043F\\u043E\\u0434\\u0435\\u043B\\u044F\\u043D\\u0435\",DR=\"\\u0415\\u043C\\u0438\\u0441\\u0438\\u0438\",OR=\"\\u0418\\u0437\\u0445\\u043E\\u0434\",YR=\"\\u0410\\u0434\\u043C\\u0438\\u043D\\u0438\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044F\";var jR=function(){return[\"admin\"]};function RR(e,t){1&e&&(Ho(0,\"a\",2),ru(1,YR),Fo()),2&e&&jo(\"routerLink\",yu(1,jR))}var HR,FR=function(){return[\"general\"]},NR=function(){return[\"discovery\"]},zR=function(){return[\"management\"]},VR=function(){return[\"filters\"]},WR=function(){return[\"share-services\"]};HR=\"\\u041D\\u0430\\u0441\\u0442\\u0440\\u043E\\u0439\\u043A\\u0438\";var UR,BR,qR,GR,$R=ZY.forRoot([{path:\"\",canActivate:[HE],children:[{path:\"\",component:lI,children:[{path:\"feed\",children:[{path:\"\",children:[{path:\"\",data:{primary:\"user\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\"search/:query\",data:{primary:\"search\",secondary:\"user\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\"favorite\",data:{primary:\"favorite\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\"popular/tag/:id\",data:{primary:\"popular\",secondary:\"tag\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\"popular/:id\",data:{primary:\"popular\",secondary:\"feed\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\"popular\",data:{primary:\"popular\",secondary:\"user\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\"tag/:id\",data:{primary:\"tag\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\"tag/:id/search/:query\",data:{primary:\"search\",secondary:\"tag\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\":id\",data:{primary:\"feed\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\":id/search/:query\",data:{primary:\"search\",secondary:\"feed\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]}]},{path:\"\",component:yA,outlet:\"sidebar\"},{path:\"\",component:UA,outlet:\"toolbar\"}]},{path:\"settings\",children:[{path:\"\",component:BA,children:[{path:\"general\",component:hP},{path:\"discovery\",component:BP},{path:\"management\",component:mj},{path:\"filters\",component:eR},{path:\"share-services\",component:cR},{path:\"admin\",component:AR},{path:\"\",redirectTo:\"general\",pathMatch:\"full\"}]},{path:\"\",component:(BR=function(){function e(t){_classCallCheck(this,e),this.userService=t,this.subscriptions=new Array}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.subscriptions.push(this.userService.getCurrentUser().pipe(F((function(e){return e.admin}))).subscribe((function(t){return e.admin=t}),(function(e){return console.log(e)})))}},{key:\"ngOnDestroy\",value:function(){var e,t=_createForOfIteratorHelper(this.subscriptions);try{for(t.s();!(e=t.n()).done;)e.value.unsubscribe()}catch(n){t.e(n)}finally{t.f()}}}]),e}(),BR.\\u0275fac=function(e){return new(e||BR)(Io(qA))},BR.\\u0275cmp=bt({type:BR,selectors:[[\"side-bar\"]],decls:19,vars:11,consts:[[\"color\",\"primary\"],[1,\"content\"],[\"mat-button\",\"\",3,\"routerLink\"],[\"mat-button\",\"\",3,\"routerLink\",4,\"ngIf\"],[\"mat-button\",\"\",\"routerLink\",\"/feed\"],[\"mat-button\",\"\",\"routerLink\",\"/login\"]],template:function(e,t){1&e&&(Ho(0,\"mat-toolbar\",0),ru(1,CR),Fo(),Ho(2,\"div\",1),Ho(3,\"a\",2),ru(4,MR),Fo(),Ho(5,\"a\",2),ru(6,SR),Fo(),Ho(7,\"a\",2),ru(8,LR),Fo(),Ho(9,\"a\",2),ru(10,TR),Fo(),Ho(11,\"a\",2),ru(12,xR),Fo(),Yo(13,RR,2,2,\"a\",3),No(14,\"hr\"),Ho(15,\"a\",4),ru(16,DR),Fo(),Ho(17,\"a\",5),ru(18,OR),Fo(),Fo()),2&e&&(bi(3),jo(\"routerLink\",yu(6,FR)),bi(2),jo(\"routerLink\",yu(7,NR)),bi(2),jo(\"routerLink\",yu(8,zR)),bi(2),jo(\"routerLink\",yu(9,VR)),bi(2),jo(\"routerLink\",yu(10,WR)),bi(2),jo(\"ngIf\",t.admin))},directives:[XL,Vb,IY,Sd],styles:[\".content[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{margin-bottom:4px}.content[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex;font-size:16px}.items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:13px}.category[_ngcontent-%COMP%], .items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex}.category[_ngcontent-%COMP%] > .expander[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;min-width:24px;flex-shrink:1}.category[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{flex-grow:1;text-align:start}.category[_ngcontent-%COMP%] > .items[_ngcontent-%COMP%]{flex:0 1 100%}.content[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{margin:0}.favicon[_ngcontent-%COMP%]{padding-right:4px}\"]}),BR),outlet:\"sidebar\"},{path:\"\",component:(UR=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"ngOnInit\",value:function(){}}]),e}(),UR.\\u0275fac=function(e){return new(e||UR)},UR.\\u0275cmp=bt({type:UR,selectors:[[\"ng-component\"]],decls:2,vars:0,template:function(e,t){1&e&&(Ho(0,\"span\"),ru(1,HR),Fo())},styles:[\"[_nghost-%COMP%]{display:flex;align-items:center}.spacer[_ngcontent-%COMP%], [_nghost-%COMP%]{flex:1 1 auto}.search[_ngcontent-%COMP%]{min-height:0;border:none;background:transparent} label{margin-bottom:0}\"]}),UR),outlet:\"toolbar\"}]},{path:\"\",redirectTo:\"feed\",pathMatch:\"full\"}]}]},{path:\"login\",component:jE}],{enableTracing:!1}),JR=((GR=function e(){_classCallCheck(this,e),this.title=\"app\"}).\\u0275fac=function(e){return new(e||GR)},GR.\\u0275cmp=bt({type:GR,selectors:[[\"app-root\"]],decls:2,vars:0,consts:[[1,\"page\"]],template:function(e,t){1&e&&(Ho(0,\"div\",0),No(1,\"router-outlet\"),Fo())},directives:[NY],styles:[\"\"]}),GR),KR=((qR=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:qR,bootstrap:[JR]}),qR.\\u0275inj=ve({factory:function(e){return new(e||qR)},providers:[{provide:U_,useClass:Kx}],imports:[[iv,Iy,jh,$R,Nd,Gm,$m,Wb,tk,fk,mC,NC,FM,gS,LS,$S,$L,LL,FL,eT,jx,$x,$_]]}),qR);(function(){if(Sr)throw new Error(\"Cannot enable prod mode after platform setup.\");Mr=!1})(),nv().bootstrapModule(KR)},zavE:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-SG\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},zn8P:function(e,t){function n(e){return Promise.resolve().then((function(){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}))}n.keys=function(){return[]},n.resolve=n,e.exports=n,n.id=\"zn8P\"},zx6S:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekunda\",\"sekunde\",\"sekundi\"],m:[\"jedan minut\",\"jedne minute\"],mm:[\"minut\",\"minute\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mesec\",\"meseca\",\"meseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,r){var i=t.words[r];return 1===r.length?n?i[0]:i[1]:e+\" \"+t.correctGrammaticalCase(e,i)}};e.defineLocale(\"sr\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljak_utorak_sreda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sre._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedelju] [u] LT\";case 3:return\"[u] [sredu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010de u] LT\",lastWeek:function(){return[\"[pro\\u0161le] [nedelje] [u] LT\",\"[pro\\u0161log] [ponedeljka] [u] LT\",\"[pro\\u0161log] [utorka] [u] LT\",\"[pro\\u0161le] [srede] [u] LT\",\"[pro\\u0161log] [\\u010detvrtka] [u] LT\",\"[pro\\u0161log] [petka] [u] LT\",\"[pro\\u0161le] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pre %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))}},[[0,0]]]);"); err != nil { + return nil, errors.Wrap(err, fmt.Sprintf("packing file rf-ng/ui/bg/main-es5.cffe4d6ae44ec8c370c8.js")) } - if err := fs.Add("rf-ng/ui/bg/polyfills-es2015.5f7b2da059bba952c322.js", 37024, os.FileMode(420), time.Unix(1584880249, 0), "(window.webpackJsonp=window.webpackJsonp||[]).push([[2],{2:function(e,t,n){e.exports=n(\"hN/g\")},Enxc:function(e,t){},\"hN/g\":function(e,t,n){\"use strict\";n.r(t),n(\"Enxc\"),n(\"pDpN\")},pDpN:function(e,t,n){var o,r;void 0===(r=\"function\"==typeof(o=function(){\"use strict\";!function(e){const t=e.performance;function n(e){t&&t.mark&&t.mark(e)}function o(e,n){t&&t.measure&&t.measure(e,n)}n(\"Zone\");const r=e.__Zone_symbol_prefix||\"__zone_symbol__\";function s(e){return r+e}const a=!0===e[s(\"forceDuplicateZoneCheck\")];if(e.Zone){if(a||\"function\"!=typeof e.Zone.__symbol__)throw new Error(\"Zone already loaded.\");return e.Zone}class i{constructor(e,t){this._parent=e,this._name=t?t.name||\"unnamed\":\"\",this._properties=t&&t.properties||{},this._zoneDelegate=new l(this,this._parent&&this._parent._zoneDelegate,t)}static assertZonePatched(){if(e.Promise!==C.ZoneAwarePromise)throw new Error(\"Zone.js has detected that ZoneAwarePromise `(window|global).Promise` has been overwritten.\\nMost likely cause is that a Promise polyfill has been loaded after Zone.js (Polyfilling Promise api is not necessary when zone.js is loaded. If you must load one, do so before loading zone.js.)\")}static get root(){let e=i.current;for(;e.parent;)e=e.parent;return e}static get current(){return z.zone}static get currentTask(){return j}static __load_patch(t,r){if(C.hasOwnProperty(t)){if(a)throw Error(\"Already loaded patch: \"+t)}else if(!e[\"__Zone_disable_\"+t]){const s=\"Zone:\"+t;n(s),C[t]=r(e,i,O),o(s,s)}}get parent(){return this._parent}get name(){return this._name}get(e){const t=this.getZoneWith(e);if(t)return t._properties[e]}getZoneWith(e){let t=this;for(;t;){if(t._properties.hasOwnProperty(e))return t;t=t._parent}return null}fork(e){if(!e)throw new Error(\"ZoneSpec required!\");return this._zoneDelegate.fork(this,e)}wrap(e,t){if(\"function\"!=typeof e)throw new Error(\"Expecting function got: \"+e);const n=this._zoneDelegate.intercept(this,e,t),o=this;return function(){return o.runGuarded(n,this,arguments,t)}}run(e,t,n,o){z={parent:z,zone:this};try{return this._zoneDelegate.invoke(this,e,t,n,o)}finally{z=z.parent}}runGuarded(e,t=null,n,o){z={parent:z,zone:this};try{try{return this._zoneDelegate.invoke(this,e,t,n,o)}catch(r){if(this._zoneDelegate.handleError(this,r))throw r}}finally{z=z.parent}}runTask(e,t,n){if(e.zone!=this)throw new Error(\"A task can only be run in the zone of creation! (Creation: \"+(e.zone||y).name+\"; Execution: \"+this.name+\")\");if(e.state===v&&(e.type===P||e.type===D))return;const o=e.state!=E;o&&e._transitionTo(E,T),e.runCount++;const r=j;j=e,z={parent:z,zone:this};try{e.type==D&&e.data&&!e.data.isPeriodic&&(e.cancelFn=void 0);try{return this._zoneDelegate.invokeTask(this,e,t,n)}catch(s){if(this._zoneDelegate.handleError(this,s))throw s}}finally{e.state!==v&&e.state!==Z&&(e.type==P||e.data&&e.data.isPeriodic?o&&e._transitionTo(T,E):(e.runCount=0,this._updateTaskCount(e,-1),o&&e._transitionTo(v,E,v))),z=z.parent,j=r}}scheduleTask(e){if(e.zone&&e.zone!==this){let t=this;for(;t;){if(t===e.zone)throw Error(`can not reschedule task to ${this.name} which is descendants of the original zone ${e.zone.name}`);t=t.parent}}e._transitionTo(b,v);const t=[];e._zoneDelegates=t,e._zone=this;try{e=this._zoneDelegate.scheduleTask(this,e)}catch(n){throw e._transitionTo(Z,b,v),this._zoneDelegate.handleError(this,n),n}return e._zoneDelegates===t&&this._updateTaskCount(e,1),e.state==b&&e._transitionTo(T,b),e}scheduleMicroTask(e,t,n,o){return this.scheduleTask(new u(S,e,t,n,o,void 0))}scheduleMacroTask(e,t,n,o,r){return this.scheduleTask(new u(D,e,t,n,o,r))}scheduleEventTask(e,t,n,o,r){return this.scheduleTask(new u(P,e,t,n,o,r))}cancelTask(e){if(e.zone!=this)throw new Error(\"A task can only be cancelled in the zone of creation! (Creation: \"+(e.zone||y).name+\"; Execution: \"+this.name+\")\");e._transitionTo(w,T,E);try{this._zoneDelegate.cancelTask(this,e)}catch(t){throw e._transitionTo(Z,w),this._zoneDelegate.handleError(this,t),t}return this._updateTaskCount(e,-1),e._transitionTo(v,w),e.runCount=0,e}_updateTaskCount(e,t){const n=e._zoneDelegates;-1==t&&(e._zoneDelegates=null);for(let o=0;oe.hasTask(n,o),onScheduleTask:(e,t,n,o)=>e.scheduleTask(n,o),onInvokeTask:(e,t,n,o,r,s)=>e.invokeTask(n,o,r,s),onCancelTask:(e,t,n,o)=>e.cancelTask(n,o)};class l{constructor(e,t,n){this._taskCounts={microTask:0,macroTask:0,eventTask:0},this.zone=e,this._parentDelegate=t,this._forkZS=n&&(n&&n.onFork?n:t._forkZS),this._forkDlgt=n&&(n.onFork?t:t._forkDlgt),this._forkCurrZone=n&&(n.onFork?this.zone:t._forkCurrZone),this._interceptZS=n&&(n.onIntercept?n:t._interceptZS),this._interceptDlgt=n&&(n.onIntercept?t:t._interceptDlgt),this._interceptCurrZone=n&&(n.onIntercept?this.zone:t._interceptCurrZone),this._invokeZS=n&&(n.onInvoke?n:t._invokeZS),this._invokeDlgt=n&&(n.onInvoke?t:t._invokeDlgt),this._invokeCurrZone=n&&(n.onInvoke?this.zone:t._invokeCurrZone),this._handleErrorZS=n&&(n.onHandleError?n:t._handleErrorZS),this._handleErrorDlgt=n&&(n.onHandleError?t:t._handleErrorDlgt),this._handleErrorCurrZone=n&&(n.onHandleError?this.zone:t._handleErrorCurrZone),this._scheduleTaskZS=n&&(n.onScheduleTask?n:t._scheduleTaskZS),this._scheduleTaskDlgt=n&&(n.onScheduleTask?t:t._scheduleTaskDlgt),this._scheduleTaskCurrZone=n&&(n.onScheduleTask?this.zone:t._scheduleTaskCurrZone),this._invokeTaskZS=n&&(n.onInvokeTask?n:t._invokeTaskZS),this._invokeTaskDlgt=n&&(n.onInvokeTask?t:t._invokeTaskDlgt),this._invokeTaskCurrZone=n&&(n.onInvokeTask?this.zone:t._invokeTaskCurrZone),this._cancelTaskZS=n&&(n.onCancelTask?n:t._cancelTaskZS),this._cancelTaskDlgt=n&&(n.onCancelTask?t:t._cancelTaskDlgt),this._cancelTaskCurrZone=n&&(n.onCancelTask?this.zone:t._cancelTaskCurrZone),this._hasTaskZS=null,this._hasTaskDlgt=null,this._hasTaskDlgtOwner=null,this._hasTaskCurrZone=null;const o=n&&n.onHasTask;(o||t&&t._hasTaskZS)&&(this._hasTaskZS=o?n:c,this._hasTaskDlgt=t,this._hasTaskDlgtOwner=this,this._hasTaskCurrZone=e,n.onScheduleTask||(this._scheduleTaskZS=c,this._scheduleTaskDlgt=t,this._scheduleTaskCurrZone=this.zone),n.onInvokeTask||(this._invokeTaskZS=c,this._invokeTaskDlgt=t,this._invokeTaskCurrZone=this.zone),n.onCancelTask||(this._cancelTaskZS=c,this._cancelTaskDlgt=t,this._cancelTaskCurrZone=this.zone))}fork(e,t){return this._forkZS?this._forkZS.onFork(this._forkDlgt,this.zone,e,t):new i(e,t)}intercept(e,t,n){return this._interceptZS?this._interceptZS.onIntercept(this._interceptDlgt,this._interceptCurrZone,e,t,n):t}invoke(e,t,n,o,r){return this._invokeZS?this._invokeZS.onInvoke(this._invokeDlgt,this._invokeCurrZone,e,t,n,o,r):t.apply(n,o)}handleError(e,t){return!this._handleErrorZS||this._handleErrorZS.onHandleError(this._handleErrorDlgt,this._handleErrorCurrZone,e,t)}scheduleTask(e,t){let n=t;if(this._scheduleTaskZS)this._hasTaskZS&&n._zoneDelegates.push(this._hasTaskDlgtOwner),n=this._scheduleTaskZS.onScheduleTask(this._scheduleTaskDlgt,this._scheduleTaskCurrZone,e,t),n||(n=t);else if(t.scheduleFn)t.scheduleFn(t);else{if(t.type!=S)throw new Error(\"Task is missing scheduleFn.\");k(t)}return n}invokeTask(e,t,n,o){return this._invokeTaskZS?this._invokeTaskZS.onInvokeTask(this._invokeTaskDlgt,this._invokeTaskCurrZone,e,t,n,o):t.callback.apply(n,o)}cancelTask(e,t){let n;if(this._cancelTaskZS)n=this._cancelTaskZS.onCancelTask(this._cancelTaskDlgt,this._cancelTaskCurrZone,e,t);else{if(!t.cancelFn)throw Error(\"Task is not cancelable\");n=t.cancelFn(t)}return n}hasTask(e,t){try{this._hasTaskZS&&this._hasTaskZS.onHasTask(this._hasTaskDlgt,this._hasTaskCurrZone,e,t)}catch(n){this.handleError(e,n)}}_updateTaskCount(e,t){const n=this._taskCounts,o=n[e],r=n[e]=o+t;if(r<0)throw new Error(\"More tasks executed then were scheduled.\");0!=o&&0!=r||this.hasTask(this.zone,{microTask:n.microTask>0,macroTask:n.macroTask>0,eventTask:n.eventTask>0,change:e})}}class u{constructor(t,n,o,r,s,a){if(this._zone=null,this.runCount=0,this._zoneDelegates=null,this._state=\"notScheduled\",this.type=t,this.source=n,this.data=r,this.scheduleFn=s,this.cancelFn=a,!o)throw new Error(\"callback is not defined\");this.callback=o;const i=this;this.invoke=t===P&&r&&r.useG?u.invokeTask:function(){return u.invokeTask.call(e,i,this,arguments)}}static invokeTask(e,t,n){e||(e=this),I++;try{return e.runCount++,e.zone.runTask(e,t,n)}finally{1==I&&m(),I--}}get zone(){return this._zone}get state(){return this._state}cancelScheduleRequest(){this._transitionTo(v,b)}_transitionTo(e,t,n){if(this._state!==t&&this._state!==n)throw new Error(`${this.type} '${this.source}': can not transition to '${e}', expecting state '${t}'${n?\" or '\"+n+\"'\":\"\"}, was '${this._state}'.`);this._state=e,e==v&&(this._zoneDelegates=null)}toString(){return this.data&&void 0!==this.data.handleId?this.data.handleId.toString():Object.prototype.toString.call(this)}toJSON(){return{type:this.type,state:this.state,source:this.source,zone:this.zone.name,runCount:this.runCount}}}const h=s(\"setTimeout\"),p=s(\"Promise\"),f=s(\"then\");let d,g=[],_=!1;function k(t){if(0===I&&0===g.length)if(d||e[p]&&(d=e[p].resolve(0)),d){let e=d[f];e||(e=d.then),e.call(d,m)}else e[h](m,0);t&&g.push(t)}function m(){if(!_){for(_=!0;g.length;){const t=g;g=[];for(let n=0;nz,onUnhandledError:N,microtaskDrainDone:N,scheduleMicroTask:k,showUncaughtError:()=>!i[s(\"ignoreConsoleErrorUncaughtError\")],patchEventTarget:()=>[],patchOnProperties:N,patchMethod:()=>N,bindArguments:()=>[],patchThen:()=>N,patchMacroTask:()=>N,setNativePromise:e=>{e&&\"function\"==typeof e.resolve&&(d=e.resolve(0))},patchEventPrototype:()=>N,isIEOrEdge:()=>!1,getGlobalObjects:()=>{},ObjectDefineProperty:()=>N,ObjectGetOwnPropertyDescriptor:()=>{},ObjectCreate:()=>{},ArraySlice:()=>[],patchClass:()=>N,wrapWithCurrentZone:()=>N,filterProperties:()=>[],attachOriginToPatched:()=>N,_redefineProperty:()=>N,patchCallbacks:()=>N};let z={parent:null,zone:new i(null,null)},j=null,I=0;function N(){}o(\"Zone\",\"Zone\"),e.Zone=i}(\"undefined\"!=typeof window&&window||\"undefined\"!=typeof self&&self||global),Zone.__load_patch(\"ZoneAwarePromise\",(e,t,n)=>{const o=Object.getOwnPropertyDescriptor,r=Object.defineProperty,s=n.symbol,a=[],i=!0===e[s(\"DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION\")],c=s(\"Promise\"),l=s(\"then\");n.onUnhandledError=e=>{if(n.showUncaughtError()){const t=e&&e.rejection;t?console.error(\"Unhandled Promise rejection:\",t instanceof Error?t.message:t,\"; Zone:\",e.zone.name,\"; Task:\",e.task&&e.task.source,\"; Value:\",t,t instanceof Error?t.stack:void 0):console.error(e)}},n.microtaskDrainDone=()=>{for(;a.length;){const t=a.shift();try{t.zone.runGuarded(()=>{throw t})}catch(e){h(e)}}};const u=s(\"unhandledPromiseRejectionHandler\");function h(e){n.onUnhandledError(e);try{const n=t[u];\"function\"==typeof n&&n.call(this,e)}catch(o){}}function p(e){return e&&e.then}function f(e){return e}function d(e){return D.reject(e)}const g=s(\"state\"),_=s(\"value\"),k=s(\"finally\"),m=s(\"parentPromiseValue\"),y=s(\"parentPromiseState\");function v(e,t){return n=>{try{T(e,t,n)}catch(o){T(e,!1,o)}}}const b=s(\"currentTaskTrace\");function T(e,o,s){const c=function(){let e=!1;return function(t){return function(){e||(e=!0,t.apply(null,arguments))}}}();if(e===s)throw new TypeError(\"Promise resolved with itself\");if(null===e[g]){let h=null;try{\"object\"!=typeof s&&\"function\"!=typeof s||(h=s&&s.then)}catch(u){return c(()=>{T(e,!1,u)})(),e}if(!1!==o&&s instanceof D&&s.hasOwnProperty(g)&&s.hasOwnProperty(_)&&null!==s[g])w(s),T(e,s[g],s[_]);else if(!1!==o&&\"function\"==typeof h)try{h.call(s,c(v(e,o)),c(v(e,!1)))}catch(u){c(()=>{T(e,!1,u)})()}else{e[g]=o;const c=e[_];if(e[_]=s,e[k]===k&&!0===o&&(e[g]=e[y],e[_]=e[m]),!1===o&&s instanceof Error){const e=t.currentTask&&t.currentTask.data&&t.currentTask.data.__creationTrace__;e&&r(s,b,{configurable:!0,enumerable:!1,writable:!0,value:e})}for(let t=0;t{try{const o=e[_],r=!!n&&k===n[k];r&&(n[m]=o,n[y]=s);const i=t.run(a,void 0,r&&a!==d&&a!==f?[]:[o]);T(n,!0,i)}catch(o){T(n,!1,o)}},n)}const S=function(){};class D{static toString(){return\"function ZoneAwarePromise() { [native code] }\"}static resolve(e){return T(new this(null),!0,e)}static reject(e){return T(new this(null),!1,e)}static race(e){let t,n,o=new this((e,o)=>{t=e,n=o});function r(e){t(e)}function s(e){n(e)}for(let a of e)p(a)||(a=this.resolve(a)),a.then(r,s);return o}static all(e){return D.allWithCallback(e)}static allSettled(e){return(this&&this.prototype instanceof D?this:D).allWithCallback(e,{thenCallback:e=>({status:\"fulfilled\",value:e}),errorCallback:e=>({status:\"rejected\",reason:e})})}static allWithCallback(e,t){let n,o,r=new this((e,t)=>{n=e,o=t}),s=2,a=0;const i=[];for(let l of e){p(l)||(l=this.resolve(l));const e=a;try{l.then(o=>{i[e]=t?t.thenCallback(o):o,s--,0===s&&n(i)},r=>{t?(i[e]=t.errorCallback(r),s--,0===s&&n(i)):o(r)})}catch(c){o(c)}s++,a++}return s-=2,0===s&&n(i),r}constructor(e){const t=this;if(!(t instanceof D))throw new Error(\"Must be an instanceof Promise.\");t[g]=null,t[_]=[];try{e&&e(v(t,!0),v(t,!1))}catch(n){T(t,!1,n)}}get[Symbol.toStringTag](){return\"Promise\"}get[Symbol.species](){return D}then(e,n){let o=this.constructor[Symbol.species];o&&\"function\"==typeof o||(o=this.constructor||D);const r=new o(S),s=t.current;return null==this[g]?this[_].push(s,r,e,n):Z(this,s,r,e,n),r}catch(e){return this.then(null,e)}finally(e){let n=this.constructor[Symbol.species];n&&\"function\"==typeof n||(n=D);const o=new n(S);o[k]=k;const r=t.current;return null==this[g]?this[_].push(r,o,e,e):Z(this,r,o,e,e),o}}D.resolve=D.resolve,D.reject=D.reject,D.race=D.race,D.all=D.all;const P=e[c]=e.Promise,C=t.__symbol__(\"ZoneAwarePromise\");let O=o(e,\"Promise\");O&&!O.configurable||(O&&delete O.writable,O&&delete O.value,O||(O={configurable:!0,enumerable:!0}),O.get=function(){return e[C]?e[C]:e[c]},O.set=function(t){t===D?e[C]=t:(e[c]=t,t.prototype[l]||j(t),n.setNativePromise(t))},r(e,\"Promise\",O)),e.Promise=D;const z=s(\"thenPatched\");function j(e){const t=e.prototype,n=o(t,\"then\");if(n&&(!1===n.writable||!n.configurable))return;const r=t.then;t[l]=r,e.prototype.then=function(e,t){return new D((e,t)=>{r.call(this,e,t)}).then(e,t)},e[z]=!0}if(n.patchThen=j,P){j(P);const t=e.fetch;\"function\"==typeof t&&(e[n.symbol(\"fetch\")]=t,e.fetch=(I=t,function(){let e=I.apply(this,arguments);if(e instanceof D)return e;let t=e.constructor;return t[z]||j(t),e}))}var I;return Promise[t.__symbol__(\"uncaughtPromiseErrors\")]=a,D});const e=Object.getOwnPropertyDescriptor,t=Object.defineProperty,n=Object.getPrototypeOf,o=Object.create,r=Array.prototype.slice,s=Zone.__symbol__(\"addEventListener\"),a=Zone.__symbol__(\"removeEventListener\"),i=Zone.__symbol__(\"\");function c(e,t){return Zone.current.wrap(e,t)}function l(e,t,n,o,r){return Zone.current.scheduleMacroTask(e,t,n,o,r)}const u=Zone.__symbol__,h=\"undefined\"!=typeof window,p=h?window:void 0,f=h&&p||\"object\"==typeof self&&self||global,d=[null];function g(e,t){for(let n=e.length-1;n>=0;n--)\"function\"==typeof e[n]&&(e[n]=c(e[n],t+\"_\"+n));return e}function _(e){return!e||!1!==e.writable&&!(\"function\"==typeof e.get&&void 0===e.set)}const k=\"undefined\"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope,m=!(\"nw\"in f)&&void 0!==f.process&&\"[object process]\"==={}.toString.call(f.process),y=!m&&!k&&!(!h||!p.HTMLElement),v=void 0!==f.process&&\"[object process]\"==={}.toString.call(f.process)&&!k&&!(!h||!p.HTMLElement),b={},T=function(e){if(!(e=e||f.event))return;let t=b[e.type];t||(t=b[e.type]=u(\"ON_PROPERTY\"+e.type));const n=this||e.target||f,o=n[t];let r;if(y&&n===p&&\"error\"===e.type){const t=e;r=o&&o.call(this,t.message,t.filename,t.lineno,t.colno,t.error),!0===r&&e.preventDefault()}else r=o&&o.apply(this,arguments),null==r||r||e.preventDefault();return r};function E(n,o,r){let s=e(n,o);if(!s&&r&&e(r,o)&&(s={enumerable:!0,configurable:!0}),!s||!s.configurable)return;const a=u(\"on\"+o+\"patched\");if(n.hasOwnProperty(a)&&n[a])return;delete s.writable,delete s.value;const i=s.get,c=s.set,l=o.substr(2);let h=b[l];h||(h=b[l]=u(\"ON_PROPERTY\"+l)),s.set=function(e){let t=this;t||n!==f||(t=f),t&&(t[h]&&t.removeEventListener(l,T),c&&c.apply(t,d),\"function\"==typeof e?(t[h]=e,t.addEventListener(l,T,!1)):t[h]=null)},s.get=function(){let e=this;if(e||n!==f||(e=f),!e)return null;const t=e[h];if(t)return t;if(i){let t=i&&i.call(this);if(t)return s.set.call(this,t),\"function\"==typeof e.removeAttribute&&e.removeAttribute(o),t}return null},t(n,o,s),n[a]=!0}function w(e,t,n){if(t)for(let o=0;ofunction(t,o){const s=n(t,o);return s.cbIdx>=0&&\"function\"==typeof o[s.cbIdx]?l(s.name,o[s.cbIdx],s,r):e.apply(t,o)})}function C(e,t){e[u(\"OriginalDelegate\")]=t}let O=!1,z=!1;function j(){try{const e=p.navigator.userAgent;if(-1!==e.indexOf(\"MSIE \")||-1!==e.indexOf(\"Trident/\"))return!0}catch(e){}return!1}function I(){if(O)return z;O=!0;try{const e=p.navigator.userAgent;-1===e.indexOf(\"MSIE \")&&-1===e.indexOf(\"Trident/\")&&-1===e.indexOf(\"Edge/\")||(z=!0)}catch(e){}return z}Zone.__load_patch(\"toString\",e=>{const t=Function.prototype.toString,n=u(\"OriginalDelegate\"),o=u(\"Promise\"),r=u(\"Error\"),s=function(){if(\"function\"==typeof this){const s=this[n];if(s)return\"function\"==typeof s?t.call(s):Object.prototype.toString.call(s);if(this===Promise){const n=e[o];if(n)return t.call(n)}if(this===Error){const n=e[r];if(n)return t.call(n)}}return t.call(this)};s[n]=t,Function.prototype.toString=s;const a=Object.prototype.toString;Object.prototype.toString=function(){return this instanceof Promise?\"[object Promise]\":a.call(this)}});let N=!1;if(\"undefined\"!=typeof window)try{const e=Object.defineProperty({},\"passive\",{get:function(){N=!0}});window.addEventListener(\"test\",e,e),window.removeEventListener(\"test\",e,e)}catch(ie){N=!1}const R={useG:!0},x={},L={},M=new RegExp(\"^\"+i+\"(\\\\w+)(true|false)$\"),A=u(\"propagationStopped\");function H(e,t){const n=(t?t(e):e)+\"false\",o=(t?t(e):e)+\"true\",r=i+n,s=i+o;x[e]={},x[e].false=r,x[e].true=s}function F(e,t,o){const r=o&&o.add||\"addEventListener\",s=o&&o.rm||\"removeEventListener\",a=o&&o.listeners||\"eventListeners\",c=o&&o.rmAll||\"removeAllListeners\",l=u(r),h=\".\"+r+\":\",p=function(e,t,n){if(e.isRemoved)return;const o=e.callback;\"object\"==typeof o&&o.handleEvent&&(e.callback=e=>o.handleEvent(e),e.originalDelegate=o),e.invoke(e,t,[n]);const r=e.options;r&&\"object\"==typeof r&&r.once&&t[s].call(t,n.type,e.originalDelegate?e.originalDelegate:e.callback,r)},f=function(t){if(!(t=t||e.event))return;const n=this||t.target||e,o=n[x[t.type].false];if(o)if(1===o.length)p(o[0],n,t);else{const e=o.slice();for(let o=0;ofunction(t,n){t[A]=!0,e&&e.apply(t,n)})}function q(e,t,n,o,r){const s=Zone.__symbol__(o);if(t[s])return;const a=t[s]=t[o];t[o]=function(s,i,c){return i&&i.prototype&&r.forEach((function(t){const r=`${n}.${o}::`+t,s=i.prototype;if(s.hasOwnProperty(t)){const n=e.ObjectGetOwnPropertyDescriptor(s,t);n&&n.value?(n.value=e.wrapWithCurrentZone(n.value,r),e._redefineProperty(i.prototype,t,n)):s[t]&&(s[t]=e.wrapWithCurrentZone(s[t],r))}else s[t]&&(s[t]=e.wrapWithCurrentZone(s[t],r))})),a.call(t,s,i,c)},e.attachOriginToPatched(t[o],a)}const W=[\"absolutedeviceorientation\",\"afterinput\",\"afterprint\",\"appinstalled\",\"beforeinstallprompt\",\"beforeprint\",\"beforeunload\",\"devicelight\",\"devicemotion\",\"deviceorientation\",\"deviceorientationabsolute\",\"deviceproximity\",\"hashchange\",\"languagechange\",\"message\",\"mozbeforepaint\",\"offline\",\"online\",\"paint\",\"pageshow\",\"pagehide\",\"popstate\",\"rejectionhandled\",\"storage\",\"unhandledrejection\",\"unload\",\"userproximity\",\"vrdisplayconnected\",\"vrdisplaydisconnected\",\"vrdisplaypresentchange\"],U=[\"encrypted\",\"waitingforkey\",\"msneedkey\",\"mozinterruptbegin\",\"mozinterruptend\"],V=[\"load\"],$=[\"blur\",\"error\",\"focus\",\"load\",\"resize\",\"scroll\",\"messageerror\"],X=[\"bounce\",\"finish\",\"start\"],J=[\"loadstart\",\"progress\",\"abort\",\"error\",\"load\",\"progress\",\"timeout\",\"loadend\",\"readystatechange\"],Y=[\"upgradeneeded\",\"complete\",\"abort\",\"success\",\"error\",\"blocked\",\"versionchange\",\"close\"],K=[\"close\",\"error\",\"open\",\"message\"],Q=[\"error\",\"message\"],ee=[\"abort\",\"animationcancel\",\"animationend\",\"animationiteration\",\"auxclick\",\"beforeinput\",\"blur\",\"cancel\",\"canplay\",\"canplaythrough\",\"change\",\"compositionstart\",\"compositionupdate\",\"compositionend\",\"cuechange\",\"click\",\"close\",\"contextmenu\",\"curechange\",\"dblclick\",\"drag\",\"dragend\",\"dragenter\",\"dragexit\",\"dragleave\",\"dragover\",\"drop\",\"durationchange\",\"emptied\",\"ended\",\"error\",\"focus\",\"focusin\",\"focusout\",\"gotpointercapture\",\"input\",\"invalid\",\"keydown\",\"keypress\",\"keyup\",\"load\",\"loadstart\",\"loadeddata\",\"loadedmetadata\",\"lostpointercapture\",\"mousedown\",\"mouseenter\",\"mouseleave\",\"mousemove\",\"mouseout\",\"mouseover\",\"mouseup\",\"mousewheel\",\"orientationchange\",\"pause\",\"play\",\"playing\",\"pointercancel\",\"pointerdown\",\"pointerenter\",\"pointerleave\",\"pointerlockchange\",\"mozpointerlockchange\",\"webkitpointerlockerchange\",\"pointerlockerror\",\"mozpointerlockerror\",\"webkitpointerlockerror\",\"pointermove\",\"pointout\",\"pointerover\",\"pointerup\",\"progress\",\"ratechange\",\"reset\",\"resize\",\"scroll\",\"seeked\",\"seeking\",\"select\",\"selectionchange\",\"selectstart\",\"show\",\"sort\",\"stalled\",\"submit\",\"suspend\",\"timeupdate\",\"volumechange\",\"touchcancel\",\"touchmove\",\"touchstart\",\"touchend\",\"transitioncancel\",\"transitionend\",\"waiting\",\"wheel\"].concat([\"webglcontextrestored\",\"webglcontextlost\",\"webglcontextcreationerror\"],[\"autocomplete\",\"autocompleteerror\"],[\"toggle\"],[\"afterscriptexecute\",\"beforescriptexecute\",\"DOMContentLoaded\",\"freeze\",\"fullscreenchange\",\"mozfullscreenchange\",\"webkitfullscreenchange\",\"msfullscreenchange\",\"fullscreenerror\",\"mozfullscreenerror\",\"webkitfullscreenerror\",\"msfullscreenerror\",\"readystatechange\",\"visibilitychange\",\"resume\"],W,[\"beforecopy\",\"beforecut\",\"beforepaste\",\"copy\",\"cut\",\"paste\",\"dragstart\",\"loadend\",\"animationstart\",\"search\",\"transitionrun\",\"transitionstart\",\"webkitanimationend\",\"webkitanimationiteration\",\"webkitanimationstart\",\"webkittransitionend\"],[\"activate\",\"afterupdate\",\"ariarequest\",\"beforeactivate\",\"beforedeactivate\",\"beforeeditfocus\",\"beforeupdate\",\"cellchange\",\"controlselect\",\"dataavailable\",\"datasetchanged\",\"datasetcomplete\",\"errorupdate\",\"filterchange\",\"layoutcomplete\",\"losecapture\",\"move\",\"moveend\",\"movestart\",\"propertychange\",\"resizeend\",\"resizestart\",\"rowenter\",\"rowexit\",\"rowsdelete\",\"rowsinserted\",\"command\",\"compassneedscalibration\",\"deactivate\",\"help\",\"mscontentzoom\",\"msmanipulationstatechanged\",\"msgesturechange\",\"msgesturedoubletap\",\"msgestureend\",\"msgesturehold\",\"msgesturestart\",\"msgesturetap\",\"msgotpointercapture\",\"msinertiastart\",\"mslostpointercapture\",\"mspointercancel\",\"mspointerdown\",\"mspointerenter\",\"mspointerhover\",\"mspointerleave\",\"mspointermove\",\"mspointerout\",\"mspointerover\",\"mspointerup\",\"pointerout\",\"mssitemodejumplistitemremoved\",\"msthumbnailclick\",\"stop\",\"storagecommit\"]);function te(e,t,n){if(!n||0===n.length)return t;const o=n.filter(t=>t.target===e);if(!o||0===o.length)return t;const r=o[0].ignoreProperties;return t.filter(e=>-1===r.indexOf(e))}function ne(e,t,n,o){e&&w(e,te(e,t,n),o)}function oe(e,t){if(m&&!v)return;if(Zone[e.symbol(\"patchEvents\")])return;const o=\"undefined\"!=typeof WebSocket,r=t.__Zone_ignore_on_properties;if(y){const e=window,t=j?[{target:e,ignoreProperties:[\"error\"]}]:[];ne(e,ee.concat([\"messageerror\"]),r?r.concat(t):r,n(e)),ne(Document.prototype,ee,r),void 0!==e.SVGElement&&ne(e.SVGElement.prototype,ee,r),ne(Element.prototype,ee,r),ne(HTMLElement.prototype,ee,r),ne(HTMLMediaElement.prototype,U,r),ne(HTMLFrameSetElement.prototype,W.concat($),r),ne(HTMLBodyElement.prototype,W.concat($),r),ne(HTMLFrameElement.prototype,V,r),ne(HTMLIFrameElement.prototype,V,r);const o=e.HTMLMarqueeElement;o&&ne(o.prototype,X,r);const s=e.Worker;s&&ne(s.prototype,Q,r)}const s=t.XMLHttpRequest;s&&ne(s.prototype,J,r);const a=t.XMLHttpRequestEventTarget;a&&ne(a&&a.prototype,J,r),\"undefined\"!=typeof IDBIndex&&(ne(IDBIndex.prototype,Y,r),ne(IDBRequest.prototype,Y,r),ne(IDBOpenDBRequest.prototype,Y,r),ne(IDBDatabase.prototype,Y,r),ne(IDBTransaction.prototype,Y,r),ne(IDBCursor.prototype,Y,r)),o&&ne(WebSocket.prototype,K,r)}Zone.__load_patch(\"util\",(n,s,a)=>{a.patchOnProperties=w,a.patchMethod=D,a.bindArguments=g,a.patchMacroTask=P;const l=s.__symbol__(\"BLACK_LISTED_EVENTS\"),u=s.__symbol__(\"UNPATCHED_EVENTS\");n[u]&&(n[l]=n[u]),n[l]&&(s[l]=s[u]=n[l]),a.patchEventPrototype=B,a.patchEventTarget=F,a.isIEOrEdge=I,a.ObjectDefineProperty=t,a.ObjectGetOwnPropertyDescriptor=e,a.ObjectCreate=o,a.ArraySlice=r,a.patchClass=S,a.wrapWithCurrentZone=c,a.filterProperties=te,a.attachOriginToPatched=C,a._redefineProperty=Object.defineProperty,a.patchCallbacks=q,a.getGlobalObjects=()=>({globalSources:L,zoneSymbolEventNames:x,eventNames:ee,isBrowser:y,isMix:v,isNode:m,TRUE_STR:\"true\",FALSE_STR:\"false\",ZONE_SYMBOL_PREFIX:i,ADD_EVENT_LISTENER_STR:\"addEventListener\",REMOVE_EVENT_LISTENER_STR:\"removeEventListener\"})});const re=u(\"zoneTask\");function se(e,t,n,o){let r=null,s=null;n+=o;const a={};function i(t){const n=t.data;return n.args[0]=function(){try{t.invoke.apply(this,arguments)}finally{t.data&&t.data.isPeriodic||(\"number\"==typeof n.handleId?delete a[n.handleId]:n.handleId&&(n.handleId[re]=null))}},n.handleId=r.apply(e,n.args),t}function c(e){return s(e.data.handleId)}r=D(e,t+=o,n=>function(r,s){if(\"function\"==typeof s[0]){const e=l(t,s[0],{isPeriodic:\"Interval\"===o,delay:\"Timeout\"===o||\"Interval\"===o?s[1]||0:void 0,args:s},i,c);if(!e)return e;const n=e.data.handleId;return\"number\"==typeof n?a[n]=e:n&&(n[re]=e),n&&n.ref&&n.unref&&\"function\"==typeof n.ref&&\"function\"==typeof n.unref&&(e.ref=n.ref.bind(n),e.unref=n.unref.bind(n)),\"number\"==typeof n||n?n:e}return n.apply(e,s)}),s=D(e,n,t=>function(n,o){const r=o[0];let s;\"number\"==typeof r?s=a[r]:(s=r&&r[re],s||(s=r)),s&&\"string\"==typeof s.type?\"notScheduled\"!==s.state&&(s.cancelFn&&s.data.isPeriodic||0===s.runCount)&&(\"number\"==typeof r?delete a[r]:r&&(r[re]=null),s.zone.cancelTask(s)):t.apply(e,o)})}function ae(e,t){if(Zone[t.symbol(\"patchEventTarget\")])return;const{eventNames:n,zoneSymbolEventNames:o,TRUE_STR:r,FALSE_STR:s,ZONE_SYMBOL_PREFIX:a}=t.getGlobalObjects();for(let c=0;c{const t=e[Zone.__symbol__(\"legacyPatch\")];t&&t()}),Zone.__load_patch(\"timers\",e=>{se(e,\"set\",\"clear\",\"Timeout\"),se(e,\"set\",\"clear\",\"Interval\"),se(e,\"set\",\"clear\",\"Immediate\")}),Zone.__load_patch(\"requestAnimationFrame\",e=>{se(e,\"request\",\"cancel\",\"AnimationFrame\"),se(e,\"mozRequest\",\"mozCancel\",\"AnimationFrame\"),se(e,\"webkitRequest\",\"webkitCancel\",\"AnimationFrame\")}),Zone.__load_patch(\"blocking\",(e,t)=>{const n=[\"alert\",\"prompt\",\"confirm\"];for(let o=0;ofunction(o,s){return t.current.run(n,e,s,r)})}),Zone.__load_patch(\"EventTarget\",(e,t,n)=>{!function(e,t){t.patchEventPrototype(e,t)}(e,n),ae(e,n);const o=e.XMLHttpRequestEventTarget;o&&o.prototype&&n.patchEventTarget(e,[o.prototype]),S(\"MutationObserver\"),S(\"WebKitMutationObserver\"),S(\"IntersectionObserver\"),S(\"FileReader\")}),Zone.__load_patch(\"on_property\",(e,t,n)=>{oe(n,e)}),Zone.__load_patch(\"customElements\",(e,t,n)=>{!function(e,t){const{isBrowser:n,isMix:o}=t.getGlobalObjects();(n||o)&&e.customElements&&\"customElements\"in e&&t.patchCallbacks(t,e.customElements,\"customElements\",\"define\",[\"connectedCallback\",\"disconnectedCallback\",\"adoptedCallback\",\"attributeChangedCallback\"])}(e,n)}),Zone.__load_patch(\"XHR\",(e,t)=>{!function(e){const p=e.XMLHttpRequest;if(!p)return;const f=p.prototype;let d=f[s],g=f[a];if(!d){const t=e.XMLHttpRequestEventTarget;if(t){const e=t.prototype;d=e[s],g=e[a]}}function _(e){const o=e.data,c=o.target;c[i]=!1,c[h]=!1;const l=c[r];d||(d=c[s],g=c[a]),l&&g.call(c,\"readystatechange\",l);const u=c[r]=()=>{if(c.readyState===c.DONE)if(!o.aborted&&c[i]&&\"scheduled\"===e.state){const n=c[t.__symbol__(\"loadfalse\")];if(n&&n.length>0){const r=e.invoke;e.invoke=function(){const n=c[t.__symbol__(\"loadfalse\")];for(let t=0;tfunction(e,t){return e[o]=0==t[2],e[c]=t[1],y.apply(e,t)}),v=u(\"fetchTaskAborting\"),b=u(\"fetchTaskScheduling\"),T=D(f,\"send\",()=>function(e,n){if(!0===t.current[b])return T.apply(e,n);if(e[o])return T.apply(e,n);{const t={target:e,url:e[c],isPeriodic:!1,args:n,aborted:!1},o=l(\"XMLHttpRequest.send\",k,t,_,m);e&&!0===e[h]&&!t.aborted&&\"scheduled\"===o.state&&o.invoke()}}),E=D(f,\"abort\",()=>function(e,o){const r=e[n];if(r&&\"string\"==typeof r.type){if(null==r.cancelFn||r.data&&r.data.aborted)return;r.zone.cancelTask(r)}else if(!0===t.current[v])return E.apply(e,o)})}(e);const n=u(\"xhrTask\"),o=u(\"xhrSync\"),r=u(\"xhrListener\"),i=u(\"xhrScheduled\"),c=u(\"xhrURL\"),h=u(\"xhrErrorBeforeScheduled\")}),Zone.__load_patch(\"geolocation\",t=>{t.navigator&&t.navigator.geolocation&&function(t,n){const o=t.constructor.name;for(let r=0;r{const t=function(){return e.apply(this,g(arguments,o+\".\"+s))};return C(t,e),t})(a)}}}(t.navigator.geolocation,[\"getCurrentPosition\",\"watchPosition\"])}),Zone.__load_patch(\"PromiseRejectionEvent\",(e,t)=>{function n(t){return function(n){G(e,t).forEach(o=>{const r=e.PromiseRejectionEvent;if(r){const e=new r(t,{promise:n.promise,reason:n.rejection});o.invoke(e)}})}}e.PromiseRejectionEvent&&(t[u(\"unhandledPromiseRejectionHandler\")]=n(\"unhandledrejection\"),t[u(\"rejectionHandledHandler\")]=n(\"rejectionhandled\"))})})?o.call(t,n,t,e):o)||(e.exports=r)}},[[2,0]]]);"); err != nil { + if err := fs.Add("rf-ng/ui/bg/polyfills-es2015.5f7b2da059bba952c322.js", 37024, os.FileMode(420), time.Unix(1587937636, 0), "(window.webpackJsonp=window.webpackJsonp||[]).push([[2],{2:function(e,t,n){e.exports=n(\"hN/g\")},Enxc:function(e,t){},\"hN/g\":function(e,t,n){\"use strict\";n.r(t),n(\"Enxc\"),n(\"pDpN\")},pDpN:function(e,t,n){var o,r;void 0===(r=\"function\"==typeof(o=function(){\"use strict\";!function(e){const t=e.performance;function n(e){t&&t.mark&&t.mark(e)}function o(e,n){t&&t.measure&&t.measure(e,n)}n(\"Zone\");const r=e.__Zone_symbol_prefix||\"__zone_symbol__\";function s(e){return r+e}const a=!0===e[s(\"forceDuplicateZoneCheck\")];if(e.Zone){if(a||\"function\"!=typeof e.Zone.__symbol__)throw new Error(\"Zone already loaded.\");return e.Zone}class i{constructor(e,t){this._parent=e,this._name=t?t.name||\"unnamed\":\"\",this._properties=t&&t.properties||{},this._zoneDelegate=new l(this,this._parent&&this._parent._zoneDelegate,t)}static assertZonePatched(){if(e.Promise!==C.ZoneAwarePromise)throw new Error(\"Zone.js has detected that ZoneAwarePromise `(window|global).Promise` has been overwritten.\\nMost likely cause is that a Promise polyfill has been loaded after Zone.js (Polyfilling Promise api is not necessary when zone.js is loaded. If you must load one, do so before loading zone.js.)\")}static get root(){let e=i.current;for(;e.parent;)e=e.parent;return e}static get current(){return z.zone}static get currentTask(){return j}static __load_patch(t,r){if(C.hasOwnProperty(t)){if(a)throw Error(\"Already loaded patch: \"+t)}else if(!e[\"__Zone_disable_\"+t]){const s=\"Zone:\"+t;n(s),C[t]=r(e,i,O),o(s,s)}}get parent(){return this._parent}get name(){return this._name}get(e){const t=this.getZoneWith(e);if(t)return t._properties[e]}getZoneWith(e){let t=this;for(;t;){if(t._properties.hasOwnProperty(e))return t;t=t._parent}return null}fork(e){if(!e)throw new Error(\"ZoneSpec required!\");return this._zoneDelegate.fork(this,e)}wrap(e,t){if(\"function\"!=typeof e)throw new Error(\"Expecting function got: \"+e);const n=this._zoneDelegate.intercept(this,e,t),o=this;return function(){return o.runGuarded(n,this,arguments,t)}}run(e,t,n,o){z={parent:z,zone:this};try{return this._zoneDelegate.invoke(this,e,t,n,o)}finally{z=z.parent}}runGuarded(e,t=null,n,o){z={parent:z,zone:this};try{try{return this._zoneDelegate.invoke(this,e,t,n,o)}catch(r){if(this._zoneDelegate.handleError(this,r))throw r}}finally{z=z.parent}}runTask(e,t,n){if(e.zone!=this)throw new Error(\"A task can only be run in the zone of creation! (Creation: \"+(e.zone||y).name+\"; Execution: \"+this.name+\")\");if(e.state===v&&(e.type===P||e.type===D))return;const o=e.state!=E;o&&e._transitionTo(E,T),e.runCount++;const r=j;j=e,z={parent:z,zone:this};try{e.type==D&&e.data&&!e.data.isPeriodic&&(e.cancelFn=void 0);try{return this._zoneDelegate.invokeTask(this,e,t,n)}catch(s){if(this._zoneDelegate.handleError(this,s))throw s}}finally{e.state!==v&&e.state!==Z&&(e.type==P||e.data&&e.data.isPeriodic?o&&e._transitionTo(T,E):(e.runCount=0,this._updateTaskCount(e,-1),o&&e._transitionTo(v,E,v))),z=z.parent,j=r}}scheduleTask(e){if(e.zone&&e.zone!==this){let t=this;for(;t;){if(t===e.zone)throw Error(`can not reschedule task to ${this.name} which is descendants of the original zone ${e.zone.name}`);t=t.parent}}e._transitionTo(b,v);const t=[];e._zoneDelegates=t,e._zone=this;try{e=this._zoneDelegate.scheduleTask(this,e)}catch(n){throw e._transitionTo(Z,b,v),this._zoneDelegate.handleError(this,n),n}return e._zoneDelegates===t&&this._updateTaskCount(e,1),e.state==b&&e._transitionTo(T,b),e}scheduleMicroTask(e,t,n,o){return this.scheduleTask(new u(S,e,t,n,o,void 0))}scheduleMacroTask(e,t,n,o,r){return this.scheduleTask(new u(D,e,t,n,o,r))}scheduleEventTask(e,t,n,o,r){return this.scheduleTask(new u(P,e,t,n,o,r))}cancelTask(e){if(e.zone!=this)throw new Error(\"A task can only be cancelled in the zone of creation! (Creation: \"+(e.zone||y).name+\"; Execution: \"+this.name+\")\");e._transitionTo(w,T,E);try{this._zoneDelegate.cancelTask(this,e)}catch(t){throw e._transitionTo(Z,w),this._zoneDelegate.handleError(this,t),t}return this._updateTaskCount(e,-1),e._transitionTo(v,w),e.runCount=0,e}_updateTaskCount(e,t){const n=e._zoneDelegates;-1==t&&(e._zoneDelegates=null);for(let o=0;oe.hasTask(n,o),onScheduleTask:(e,t,n,o)=>e.scheduleTask(n,o),onInvokeTask:(e,t,n,o,r,s)=>e.invokeTask(n,o,r,s),onCancelTask:(e,t,n,o)=>e.cancelTask(n,o)};class l{constructor(e,t,n){this._taskCounts={microTask:0,macroTask:0,eventTask:0},this.zone=e,this._parentDelegate=t,this._forkZS=n&&(n&&n.onFork?n:t._forkZS),this._forkDlgt=n&&(n.onFork?t:t._forkDlgt),this._forkCurrZone=n&&(n.onFork?this.zone:t._forkCurrZone),this._interceptZS=n&&(n.onIntercept?n:t._interceptZS),this._interceptDlgt=n&&(n.onIntercept?t:t._interceptDlgt),this._interceptCurrZone=n&&(n.onIntercept?this.zone:t._interceptCurrZone),this._invokeZS=n&&(n.onInvoke?n:t._invokeZS),this._invokeDlgt=n&&(n.onInvoke?t:t._invokeDlgt),this._invokeCurrZone=n&&(n.onInvoke?this.zone:t._invokeCurrZone),this._handleErrorZS=n&&(n.onHandleError?n:t._handleErrorZS),this._handleErrorDlgt=n&&(n.onHandleError?t:t._handleErrorDlgt),this._handleErrorCurrZone=n&&(n.onHandleError?this.zone:t._handleErrorCurrZone),this._scheduleTaskZS=n&&(n.onScheduleTask?n:t._scheduleTaskZS),this._scheduleTaskDlgt=n&&(n.onScheduleTask?t:t._scheduleTaskDlgt),this._scheduleTaskCurrZone=n&&(n.onScheduleTask?this.zone:t._scheduleTaskCurrZone),this._invokeTaskZS=n&&(n.onInvokeTask?n:t._invokeTaskZS),this._invokeTaskDlgt=n&&(n.onInvokeTask?t:t._invokeTaskDlgt),this._invokeTaskCurrZone=n&&(n.onInvokeTask?this.zone:t._invokeTaskCurrZone),this._cancelTaskZS=n&&(n.onCancelTask?n:t._cancelTaskZS),this._cancelTaskDlgt=n&&(n.onCancelTask?t:t._cancelTaskDlgt),this._cancelTaskCurrZone=n&&(n.onCancelTask?this.zone:t._cancelTaskCurrZone),this._hasTaskZS=null,this._hasTaskDlgt=null,this._hasTaskDlgtOwner=null,this._hasTaskCurrZone=null;const o=n&&n.onHasTask;(o||t&&t._hasTaskZS)&&(this._hasTaskZS=o?n:c,this._hasTaskDlgt=t,this._hasTaskDlgtOwner=this,this._hasTaskCurrZone=e,n.onScheduleTask||(this._scheduleTaskZS=c,this._scheduleTaskDlgt=t,this._scheduleTaskCurrZone=this.zone),n.onInvokeTask||(this._invokeTaskZS=c,this._invokeTaskDlgt=t,this._invokeTaskCurrZone=this.zone),n.onCancelTask||(this._cancelTaskZS=c,this._cancelTaskDlgt=t,this._cancelTaskCurrZone=this.zone))}fork(e,t){return this._forkZS?this._forkZS.onFork(this._forkDlgt,this.zone,e,t):new i(e,t)}intercept(e,t,n){return this._interceptZS?this._interceptZS.onIntercept(this._interceptDlgt,this._interceptCurrZone,e,t,n):t}invoke(e,t,n,o,r){return this._invokeZS?this._invokeZS.onInvoke(this._invokeDlgt,this._invokeCurrZone,e,t,n,o,r):t.apply(n,o)}handleError(e,t){return!this._handleErrorZS||this._handleErrorZS.onHandleError(this._handleErrorDlgt,this._handleErrorCurrZone,e,t)}scheduleTask(e,t){let n=t;if(this._scheduleTaskZS)this._hasTaskZS&&n._zoneDelegates.push(this._hasTaskDlgtOwner),n=this._scheduleTaskZS.onScheduleTask(this._scheduleTaskDlgt,this._scheduleTaskCurrZone,e,t),n||(n=t);else if(t.scheduleFn)t.scheduleFn(t);else{if(t.type!=S)throw new Error(\"Task is missing scheduleFn.\");k(t)}return n}invokeTask(e,t,n,o){return this._invokeTaskZS?this._invokeTaskZS.onInvokeTask(this._invokeTaskDlgt,this._invokeTaskCurrZone,e,t,n,o):t.callback.apply(n,o)}cancelTask(e,t){let n;if(this._cancelTaskZS)n=this._cancelTaskZS.onCancelTask(this._cancelTaskDlgt,this._cancelTaskCurrZone,e,t);else{if(!t.cancelFn)throw Error(\"Task is not cancelable\");n=t.cancelFn(t)}return n}hasTask(e,t){try{this._hasTaskZS&&this._hasTaskZS.onHasTask(this._hasTaskDlgt,this._hasTaskCurrZone,e,t)}catch(n){this.handleError(e,n)}}_updateTaskCount(e,t){const n=this._taskCounts,o=n[e],r=n[e]=o+t;if(r<0)throw new Error(\"More tasks executed then were scheduled.\");0!=o&&0!=r||this.hasTask(this.zone,{microTask:n.microTask>0,macroTask:n.macroTask>0,eventTask:n.eventTask>0,change:e})}}class u{constructor(t,n,o,r,s,a){if(this._zone=null,this.runCount=0,this._zoneDelegates=null,this._state=\"notScheduled\",this.type=t,this.source=n,this.data=r,this.scheduleFn=s,this.cancelFn=a,!o)throw new Error(\"callback is not defined\");this.callback=o;const i=this;this.invoke=t===P&&r&&r.useG?u.invokeTask:function(){return u.invokeTask.call(e,i,this,arguments)}}static invokeTask(e,t,n){e||(e=this),I++;try{return e.runCount++,e.zone.runTask(e,t,n)}finally{1==I&&m(),I--}}get zone(){return this._zone}get state(){return this._state}cancelScheduleRequest(){this._transitionTo(v,b)}_transitionTo(e,t,n){if(this._state!==t&&this._state!==n)throw new Error(`${this.type} '${this.source}': can not transition to '${e}', expecting state '${t}'${n?\" or '\"+n+\"'\":\"\"}, was '${this._state}'.`);this._state=e,e==v&&(this._zoneDelegates=null)}toString(){return this.data&&void 0!==this.data.handleId?this.data.handleId.toString():Object.prototype.toString.call(this)}toJSON(){return{type:this.type,state:this.state,source:this.source,zone:this.zone.name,runCount:this.runCount}}}const h=s(\"setTimeout\"),p=s(\"Promise\"),f=s(\"then\");let d,g=[],_=!1;function k(t){if(0===I&&0===g.length)if(d||e[p]&&(d=e[p].resolve(0)),d){let e=d[f];e||(e=d.then),e.call(d,m)}else e[h](m,0);t&&g.push(t)}function m(){if(!_){for(_=!0;g.length;){const t=g;g=[];for(let n=0;nz,onUnhandledError:N,microtaskDrainDone:N,scheduleMicroTask:k,showUncaughtError:()=>!i[s(\"ignoreConsoleErrorUncaughtError\")],patchEventTarget:()=>[],patchOnProperties:N,patchMethod:()=>N,bindArguments:()=>[],patchThen:()=>N,patchMacroTask:()=>N,setNativePromise:e=>{e&&\"function\"==typeof e.resolve&&(d=e.resolve(0))},patchEventPrototype:()=>N,isIEOrEdge:()=>!1,getGlobalObjects:()=>{},ObjectDefineProperty:()=>N,ObjectGetOwnPropertyDescriptor:()=>{},ObjectCreate:()=>{},ArraySlice:()=>[],patchClass:()=>N,wrapWithCurrentZone:()=>N,filterProperties:()=>[],attachOriginToPatched:()=>N,_redefineProperty:()=>N,patchCallbacks:()=>N};let z={parent:null,zone:new i(null,null)},j=null,I=0;function N(){}o(\"Zone\",\"Zone\"),e.Zone=i}(\"undefined\"!=typeof window&&window||\"undefined\"!=typeof self&&self||global),Zone.__load_patch(\"ZoneAwarePromise\",(e,t,n)=>{const o=Object.getOwnPropertyDescriptor,r=Object.defineProperty,s=n.symbol,a=[],i=!0===e[s(\"DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION\")],c=s(\"Promise\"),l=s(\"then\");n.onUnhandledError=e=>{if(n.showUncaughtError()){const t=e&&e.rejection;t?console.error(\"Unhandled Promise rejection:\",t instanceof Error?t.message:t,\"; Zone:\",e.zone.name,\"; Task:\",e.task&&e.task.source,\"; Value:\",t,t instanceof Error?t.stack:void 0):console.error(e)}},n.microtaskDrainDone=()=>{for(;a.length;){const t=a.shift();try{t.zone.runGuarded(()=>{throw t})}catch(e){h(e)}}};const u=s(\"unhandledPromiseRejectionHandler\");function h(e){n.onUnhandledError(e);try{const n=t[u];\"function\"==typeof n&&n.call(this,e)}catch(o){}}function p(e){return e&&e.then}function f(e){return e}function d(e){return D.reject(e)}const g=s(\"state\"),_=s(\"value\"),k=s(\"finally\"),m=s(\"parentPromiseValue\"),y=s(\"parentPromiseState\");function v(e,t){return n=>{try{T(e,t,n)}catch(o){T(e,!1,o)}}}const b=s(\"currentTaskTrace\");function T(e,o,s){const c=function(){let e=!1;return function(t){return function(){e||(e=!0,t.apply(null,arguments))}}}();if(e===s)throw new TypeError(\"Promise resolved with itself\");if(null===e[g]){let h=null;try{\"object\"!=typeof s&&\"function\"!=typeof s||(h=s&&s.then)}catch(u){return c(()=>{T(e,!1,u)})(),e}if(!1!==o&&s instanceof D&&s.hasOwnProperty(g)&&s.hasOwnProperty(_)&&null!==s[g])w(s),T(e,s[g],s[_]);else if(!1!==o&&\"function\"==typeof h)try{h.call(s,c(v(e,o)),c(v(e,!1)))}catch(u){c(()=>{T(e,!1,u)})()}else{e[g]=o;const c=e[_];if(e[_]=s,e[k]===k&&!0===o&&(e[g]=e[y],e[_]=e[m]),!1===o&&s instanceof Error){const e=t.currentTask&&t.currentTask.data&&t.currentTask.data.__creationTrace__;e&&r(s,b,{configurable:!0,enumerable:!1,writable:!0,value:e})}for(let t=0;t{try{const o=e[_],r=!!n&&k===n[k];r&&(n[m]=o,n[y]=s);const i=t.run(a,void 0,r&&a!==d&&a!==f?[]:[o]);T(n,!0,i)}catch(o){T(n,!1,o)}},n)}const S=function(){};class D{static toString(){return\"function ZoneAwarePromise() { [native code] }\"}static resolve(e){return T(new this(null),!0,e)}static reject(e){return T(new this(null),!1,e)}static race(e){let t,n,o=new this((e,o)=>{t=e,n=o});function r(e){t(e)}function s(e){n(e)}for(let a of e)p(a)||(a=this.resolve(a)),a.then(r,s);return o}static all(e){return D.allWithCallback(e)}static allSettled(e){return(this&&this.prototype instanceof D?this:D).allWithCallback(e,{thenCallback:e=>({status:\"fulfilled\",value:e}),errorCallback:e=>({status:\"rejected\",reason:e})})}static allWithCallback(e,t){let n,o,r=new this((e,t)=>{n=e,o=t}),s=2,a=0;const i=[];for(let l of e){p(l)||(l=this.resolve(l));const e=a;try{l.then(o=>{i[e]=t?t.thenCallback(o):o,s--,0===s&&n(i)},r=>{t?(i[e]=t.errorCallback(r),s--,0===s&&n(i)):o(r)})}catch(c){o(c)}s++,a++}return s-=2,0===s&&n(i),r}constructor(e){const t=this;if(!(t instanceof D))throw new Error(\"Must be an instanceof Promise.\");t[g]=null,t[_]=[];try{e&&e(v(t,!0),v(t,!1))}catch(n){T(t,!1,n)}}get[Symbol.toStringTag](){return\"Promise\"}get[Symbol.species](){return D}then(e,n){let o=this.constructor[Symbol.species];o&&\"function\"==typeof o||(o=this.constructor||D);const r=new o(S),s=t.current;return null==this[g]?this[_].push(s,r,e,n):Z(this,s,r,e,n),r}catch(e){return this.then(null,e)}finally(e){let n=this.constructor[Symbol.species];n&&\"function\"==typeof n||(n=D);const o=new n(S);o[k]=k;const r=t.current;return null==this[g]?this[_].push(r,o,e,e):Z(this,r,o,e,e),o}}D.resolve=D.resolve,D.reject=D.reject,D.race=D.race,D.all=D.all;const P=e[c]=e.Promise,C=t.__symbol__(\"ZoneAwarePromise\");let O=o(e,\"Promise\");O&&!O.configurable||(O&&delete O.writable,O&&delete O.value,O||(O={configurable:!0,enumerable:!0}),O.get=function(){return e[C]?e[C]:e[c]},O.set=function(t){t===D?e[C]=t:(e[c]=t,t.prototype[l]||j(t),n.setNativePromise(t))},r(e,\"Promise\",O)),e.Promise=D;const z=s(\"thenPatched\");function j(e){const t=e.prototype,n=o(t,\"then\");if(n&&(!1===n.writable||!n.configurable))return;const r=t.then;t[l]=r,e.prototype.then=function(e,t){return new D((e,t)=>{r.call(this,e,t)}).then(e,t)},e[z]=!0}if(n.patchThen=j,P){j(P);const t=e.fetch;\"function\"==typeof t&&(e[n.symbol(\"fetch\")]=t,e.fetch=(I=t,function(){let e=I.apply(this,arguments);if(e instanceof D)return e;let t=e.constructor;return t[z]||j(t),e}))}var I;return Promise[t.__symbol__(\"uncaughtPromiseErrors\")]=a,D});const e=Object.getOwnPropertyDescriptor,t=Object.defineProperty,n=Object.getPrototypeOf,o=Object.create,r=Array.prototype.slice,s=Zone.__symbol__(\"addEventListener\"),a=Zone.__symbol__(\"removeEventListener\"),i=Zone.__symbol__(\"\");function c(e,t){return Zone.current.wrap(e,t)}function l(e,t,n,o,r){return Zone.current.scheduleMacroTask(e,t,n,o,r)}const u=Zone.__symbol__,h=\"undefined\"!=typeof window,p=h?window:void 0,f=h&&p||\"object\"==typeof self&&self||global,d=[null];function g(e,t){for(let n=e.length-1;n>=0;n--)\"function\"==typeof e[n]&&(e[n]=c(e[n],t+\"_\"+n));return e}function _(e){return!e||!1!==e.writable&&!(\"function\"==typeof e.get&&void 0===e.set)}const k=\"undefined\"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope,m=!(\"nw\"in f)&&void 0!==f.process&&\"[object process]\"==={}.toString.call(f.process),y=!m&&!k&&!(!h||!p.HTMLElement),v=void 0!==f.process&&\"[object process]\"==={}.toString.call(f.process)&&!k&&!(!h||!p.HTMLElement),b={},T=function(e){if(!(e=e||f.event))return;let t=b[e.type];t||(t=b[e.type]=u(\"ON_PROPERTY\"+e.type));const n=this||e.target||f,o=n[t];let r;if(y&&n===p&&\"error\"===e.type){const t=e;r=o&&o.call(this,t.message,t.filename,t.lineno,t.colno,t.error),!0===r&&e.preventDefault()}else r=o&&o.apply(this,arguments),null==r||r||e.preventDefault();return r};function E(n,o,r){let s=e(n,o);if(!s&&r&&e(r,o)&&(s={enumerable:!0,configurable:!0}),!s||!s.configurable)return;const a=u(\"on\"+o+\"patched\");if(n.hasOwnProperty(a)&&n[a])return;delete s.writable,delete s.value;const i=s.get,c=s.set,l=o.substr(2);let h=b[l];h||(h=b[l]=u(\"ON_PROPERTY\"+l)),s.set=function(e){let t=this;t||n!==f||(t=f),t&&(t[h]&&t.removeEventListener(l,T),c&&c.apply(t,d),\"function\"==typeof e?(t[h]=e,t.addEventListener(l,T,!1)):t[h]=null)},s.get=function(){let e=this;if(e||n!==f||(e=f),!e)return null;const t=e[h];if(t)return t;if(i){let t=i&&i.call(this);if(t)return s.set.call(this,t),\"function\"==typeof e.removeAttribute&&e.removeAttribute(o),t}return null},t(n,o,s),n[a]=!0}function w(e,t,n){if(t)for(let o=0;ofunction(t,o){const s=n(t,o);return s.cbIdx>=0&&\"function\"==typeof o[s.cbIdx]?l(s.name,o[s.cbIdx],s,r):e.apply(t,o)})}function C(e,t){e[u(\"OriginalDelegate\")]=t}let O=!1,z=!1;function j(){try{const e=p.navigator.userAgent;if(-1!==e.indexOf(\"MSIE \")||-1!==e.indexOf(\"Trident/\"))return!0}catch(e){}return!1}function I(){if(O)return z;O=!0;try{const e=p.navigator.userAgent;-1===e.indexOf(\"MSIE \")&&-1===e.indexOf(\"Trident/\")&&-1===e.indexOf(\"Edge/\")||(z=!0)}catch(e){}return z}Zone.__load_patch(\"toString\",e=>{const t=Function.prototype.toString,n=u(\"OriginalDelegate\"),o=u(\"Promise\"),r=u(\"Error\"),s=function(){if(\"function\"==typeof this){const s=this[n];if(s)return\"function\"==typeof s?t.call(s):Object.prototype.toString.call(s);if(this===Promise){const n=e[o];if(n)return t.call(n)}if(this===Error){const n=e[r];if(n)return t.call(n)}}return t.call(this)};s[n]=t,Function.prototype.toString=s;const a=Object.prototype.toString;Object.prototype.toString=function(){return this instanceof Promise?\"[object Promise]\":a.call(this)}});let N=!1;if(\"undefined\"!=typeof window)try{const e=Object.defineProperty({},\"passive\",{get:function(){N=!0}});window.addEventListener(\"test\",e,e),window.removeEventListener(\"test\",e,e)}catch(ie){N=!1}const R={useG:!0},x={},L={},M=new RegExp(\"^\"+i+\"(\\\\w+)(true|false)$\"),A=u(\"propagationStopped\");function H(e,t){const n=(t?t(e):e)+\"false\",o=(t?t(e):e)+\"true\",r=i+n,s=i+o;x[e]={},x[e].false=r,x[e].true=s}function F(e,t,o){const r=o&&o.add||\"addEventListener\",s=o&&o.rm||\"removeEventListener\",a=o&&o.listeners||\"eventListeners\",c=o&&o.rmAll||\"removeAllListeners\",l=u(r),h=\".\"+r+\":\",p=function(e,t,n){if(e.isRemoved)return;const o=e.callback;\"object\"==typeof o&&o.handleEvent&&(e.callback=e=>o.handleEvent(e),e.originalDelegate=o),e.invoke(e,t,[n]);const r=e.options;r&&\"object\"==typeof r&&r.once&&t[s].call(t,n.type,e.originalDelegate?e.originalDelegate:e.callback,r)},f=function(t){if(!(t=t||e.event))return;const n=this||t.target||e,o=n[x[t.type].false];if(o)if(1===o.length)p(o[0],n,t);else{const e=o.slice();for(let o=0;ofunction(t,n){t[A]=!0,e&&e.apply(t,n)})}function q(e,t,n,o,r){const s=Zone.__symbol__(o);if(t[s])return;const a=t[s]=t[o];t[o]=function(s,i,c){return i&&i.prototype&&r.forEach((function(t){const r=`${n}.${o}::`+t,s=i.prototype;if(s.hasOwnProperty(t)){const n=e.ObjectGetOwnPropertyDescriptor(s,t);n&&n.value?(n.value=e.wrapWithCurrentZone(n.value,r),e._redefineProperty(i.prototype,t,n)):s[t]&&(s[t]=e.wrapWithCurrentZone(s[t],r))}else s[t]&&(s[t]=e.wrapWithCurrentZone(s[t],r))})),a.call(t,s,i,c)},e.attachOriginToPatched(t[o],a)}const W=[\"absolutedeviceorientation\",\"afterinput\",\"afterprint\",\"appinstalled\",\"beforeinstallprompt\",\"beforeprint\",\"beforeunload\",\"devicelight\",\"devicemotion\",\"deviceorientation\",\"deviceorientationabsolute\",\"deviceproximity\",\"hashchange\",\"languagechange\",\"message\",\"mozbeforepaint\",\"offline\",\"online\",\"paint\",\"pageshow\",\"pagehide\",\"popstate\",\"rejectionhandled\",\"storage\",\"unhandledrejection\",\"unload\",\"userproximity\",\"vrdisplayconnected\",\"vrdisplaydisconnected\",\"vrdisplaypresentchange\"],U=[\"encrypted\",\"waitingforkey\",\"msneedkey\",\"mozinterruptbegin\",\"mozinterruptend\"],V=[\"load\"],$=[\"blur\",\"error\",\"focus\",\"load\",\"resize\",\"scroll\",\"messageerror\"],X=[\"bounce\",\"finish\",\"start\"],J=[\"loadstart\",\"progress\",\"abort\",\"error\",\"load\",\"progress\",\"timeout\",\"loadend\",\"readystatechange\"],Y=[\"upgradeneeded\",\"complete\",\"abort\",\"success\",\"error\",\"blocked\",\"versionchange\",\"close\"],K=[\"close\",\"error\",\"open\",\"message\"],Q=[\"error\",\"message\"],ee=[\"abort\",\"animationcancel\",\"animationend\",\"animationiteration\",\"auxclick\",\"beforeinput\",\"blur\",\"cancel\",\"canplay\",\"canplaythrough\",\"change\",\"compositionstart\",\"compositionupdate\",\"compositionend\",\"cuechange\",\"click\",\"close\",\"contextmenu\",\"curechange\",\"dblclick\",\"drag\",\"dragend\",\"dragenter\",\"dragexit\",\"dragleave\",\"dragover\",\"drop\",\"durationchange\",\"emptied\",\"ended\",\"error\",\"focus\",\"focusin\",\"focusout\",\"gotpointercapture\",\"input\",\"invalid\",\"keydown\",\"keypress\",\"keyup\",\"load\",\"loadstart\",\"loadeddata\",\"loadedmetadata\",\"lostpointercapture\",\"mousedown\",\"mouseenter\",\"mouseleave\",\"mousemove\",\"mouseout\",\"mouseover\",\"mouseup\",\"mousewheel\",\"orientationchange\",\"pause\",\"play\",\"playing\",\"pointercancel\",\"pointerdown\",\"pointerenter\",\"pointerleave\",\"pointerlockchange\",\"mozpointerlockchange\",\"webkitpointerlockerchange\",\"pointerlockerror\",\"mozpointerlockerror\",\"webkitpointerlockerror\",\"pointermove\",\"pointout\",\"pointerover\",\"pointerup\",\"progress\",\"ratechange\",\"reset\",\"resize\",\"scroll\",\"seeked\",\"seeking\",\"select\",\"selectionchange\",\"selectstart\",\"show\",\"sort\",\"stalled\",\"submit\",\"suspend\",\"timeupdate\",\"volumechange\",\"touchcancel\",\"touchmove\",\"touchstart\",\"touchend\",\"transitioncancel\",\"transitionend\",\"waiting\",\"wheel\"].concat([\"webglcontextrestored\",\"webglcontextlost\",\"webglcontextcreationerror\"],[\"autocomplete\",\"autocompleteerror\"],[\"toggle\"],[\"afterscriptexecute\",\"beforescriptexecute\",\"DOMContentLoaded\",\"freeze\",\"fullscreenchange\",\"mozfullscreenchange\",\"webkitfullscreenchange\",\"msfullscreenchange\",\"fullscreenerror\",\"mozfullscreenerror\",\"webkitfullscreenerror\",\"msfullscreenerror\",\"readystatechange\",\"visibilitychange\",\"resume\"],W,[\"beforecopy\",\"beforecut\",\"beforepaste\",\"copy\",\"cut\",\"paste\",\"dragstart\",\"loadend\",\"animationstart\",\"search\",\"transitionrun\",\"transitionstart\",\"webkitanimationend\",\"webkitanimationiteration\",\"webkitanimationstart\",\"webkittransitionend\"],[\"activate\",\"afterupdate\",\"ariarequest\",\"beforeactivate\",\"beforedeactivate\",\"beforeeditfocus\",\"beforeupdate\",\"cellchange\",\"controlselect\",\"dataavailable\",\"datasetchanged\",\"datasetcomplete\",\"errorupdate\",\"filterchange\",\"layoutcomplete\",\"losecapture\",\"move\",\"moveend\",\"movestart\",\"propertychange\",\"resizeend\",\"resizestart\",\"rowenter\",\"rowexit\",\"rowsdelete\",\"rowsinserted\",\"command\",\"compassneedscalibration\",\"deactivate\",\"help\",\"mscontentzoom\",\"msmanipulationstatechanged\",\"msgesturechange\",\"msgesturedoubletap\",\"msgestureend\",\"msgesturehold\",\"msgesturestart\",\"msgesturetap\",\"msgotpointercapture\",\"msinertiastart\",\"mslostpointercapture\",\"mspointercancel\",\"mspointerdown\",\"mspointerenter\",\"mspointerhover\",\"mspointerleave\",\"mspointermove\",\"mspointerout\",\"mspointerover\",\"mspointerup\",\"pointerout\",\"mssitemodejumplistitemremoved\",\"msthumbnailclick\",\"stop\",\"storagecommit\"]);function te(e,t,n){if(!n||0===n.length)return t;const o=n.filter(t=>t.target===e);if(!o||0===o.length)return t;const r=o[0].ignoreProperties;return t.filter(e=>-1===r.indexOf(e))}function ne(e,t,n,o){e&&w(e,te(e,t,n),o)}function oe(e,t){if(m&&!v)return;if(Zone[e.symbol(\"patchEvents\")])return;const o=\"undefined\"!=typeof WebSocket,r=t.__Zone_ignore_on_properties;if(y){const e=window,t=j?[{target:e,ignoreProperties:[\"error\"]}]:[];ne(e,ee.concat([\"messageerror\"]),r?r.concat(t):r,n(e)),ne(Document.prototype,ee,r),void 0!==e.SVGElement&&ne(e.SVGElement.prototype,ee,r),ne(Element.prototype,ee,r),ne(HTMLElement.prototype,ee,r),ne(HTMLMediaElement.prototype,U,r),ne(HTMLFrameSetElement.prototype,W.concat($),r),ne(HTMLBodyElement.prototype,W.concat($),r),ne(HTMLFrameElement.prototype,V,r),ne(HTMLIFrameElement.prototype,V,r);const o=e.HTMLMarqueeElement;o&&ne(o.prototype,X,r);const s=e.Worker;s&&ne(s.prototype,Q,r)}const s=t.XMLHttpRequest;s&&ne(s.prototype,J,r);const a=t.XMLHttpRequestEventTarget;a&&ne(a&&a.prototype,J,r),\"undefined\"!=typeof IDBIndex&&(ne(IDBIndex.prototype,Y,r),ne(IDBRequest.prototype,Y,r),ne(IDBOpenDBRequest.prototype,Y,r),ne(IDBDatabase.prototype,Y,r),ne(IDBTransaction.prototype,Y,r),ne(IDBCursor.prototype,Y,r)),o&&ne(WebSocket.prototype,K,r)}Zone.__load_patch(\"util\",(n,s,a)=>{a.patchOnProperties=w,a.patchMethod=D,a.bindArguments=g,a.patchMacroTask=P;const l=s.__symbol__(\"BLACK_LISTED_EVENTS\"),u=s.__symbol__(\"UNPATCHED_EVENTS\");n[u]&&(n[l]=n[u]),n[l]&&(s[l]=s[u]=n[l]),a.patchEventPrototype=B,a.patchEventTarget=F,a.isIEOrEdge=I,a.ObjectDefineProperty=t,a.ObjectGetOwnPropertyDescriptor=e,a.ObjectCreate=o,a.ArraySlice=r,a.patchClass=S,a.wrapWithCurrentZone=c,a.filterProperties=te,a.attachOriginToPatched=C,a._redefineProperty=Object.defineProperty,a.patchCallbacks=q,a.getGlobalObjects=()=>({globalSources:L,zoneSymbolEventNames:x,eventNames:ee,isBrowser:y,isMix:v,isNode:m,TRUE_STR:\"true\",FALSE_STR:\"false\",ZONE_SYMBOL_PREFIX:i,ADD_EVENT_LISTENER_STR:\"addEventListener\",REMOVE_EVENT_LISTENER_STR:\"removeEventListener\"})});const re=u(\"zoneTask\");function se(e,t,n,o){let r=null,s=null;n+=o;const a={};function i(t){const n=t.data;return n.args[0]=function(){try{t.invoke.apply(this,arguments)}finally{t.data&&t.data.isPeriodic||(\"number\"==typeof n.handleId?delete a[n.handleId]:n.handleId&&(n.handleId[re]=null))}},n.handleId=r.apply(e,n.args),t}function c(e){return s(e.data.handleId)}r=D(e,t+=o,n=>function(r,s){if(\"function\"==typeof s[0]){const e=l(t,s[0],{isPeriodic:\"Interval\"===o,delay:\"Timeout\"===o||\"Interval\"===o?s[1]||0:void 0,args:s},i,c);if(!e)return e;const n=e.data.handleId;return\"number\"==typeof n?a[n]=e:n&&(n[re]=e),n&&n.ref&&n.unref&&\"function\"==typeof n.ref&&\"function\"==typeof n.unref&&(e.ref=n.ref.bind(n),e.unref=n.unref.bind(n)),\"number\"==typeof n||n?n:e}return n.apply(e,s)}),s=D(e,n,t=>function(n,o){const r=o[0];let s;\"number\"==typeof r?s=a[r]:(s=r&&r[re],s||(s=r)),s&&\"string\"==typeof s.type?\"notScheduled\"!==s.state&&(s.cancelFn&&s.data.isPeriodic||0===s.runCount)&&(\"number\"==typeof r?delete a[r]:r&&(r[re]=null),s.zone.cancelTask(s)):t.apply(e,o)})}function ae(e,t){if(Zone[t.symbol(\"patchEventTarget\")])return;const{eventNames:n,zoneSymbolEventNames:o,TRUE_STR:r,FALSE_STR:s,ZONE_SYMBOL_PREFIX:a}=t.getGlobalObjects();for(let c=0;c{const t=e[Zone.__symbol__(\"legacyPatch\")];t&&t()}),Zone.__load_patch(\"timers\",e=>{se(e,\"set\",\"clear\",\"Timeout\"),se(e,\"set\",\"clear\",\"Interval\"),se(e,\"set\",\"clear\",\"Immediate\")}),Zone.__load_patch(\"requestAnimationFrame\",e=>{se(e,\"request\",\"cancel\",\"AnimationFrame\"),se(e,\"mozRequest\",\"mozCancel\",\"AnimationFrame\"),se(e,\"webkitRequest\",\"webkitCancel\",\"AnimationFrame\")}),Zone.__load_patch(\"blocking\",(e,t)=>{const n=[\"alert\",\"prompt\",\"confirm\"];for(let o=0;ofunction(o,s){return t.current.run(n,e,s,r)})}),Zone.__load_patch(\"EventTarget\",(e,t,n)=>{!function(e,t){t.patchEventPrototype(e,t)}(e,n),ae(e,n);const o=e.XMLHttpRequestEventTarget;o&&o.prototype&&n.patchEventTarget(e,[o.prototype]),S(\"MutationObserver\"),S(\"WebKitMutationObserver\"),S(\"IntersectionObserver\"),S(\"FileReader\")}),Zone.__load_patch(\"on_property\",(e,t,n)=>{oe(n,e)}),Zone.__load_patch(\"customElements\",(e,t,n)=>{!function(e,t){const{isBrowser:n,isMix:o}=t.getGlobalObjects();(n||o)&&e.customElements&&\"customElements\"in e&&t.patchCallbacks(t,e.customElements,\"customElements\",\"define\",[\"connectedCallback\",\"disconnectedCallback\",\"adoptedCallback\",\"attributeChangedCallback\"])}(e,n)}),Zone.__load_patch(\"XHR\",(e,t)=>{!function(e){const p=e.XMLHttpRequest;if(!p)return;const f=p.prototype;let d=f[s],g=f[a];if(!d){const t=e.XMLHttpRequestEventTarget;if(t){const e=t.prototype;d=e[s],g=e[a]}}function _(e){const o=e.data,c=o.target;c[i]=!1,c[h]=!1;const l=c[r];d||(d=c[s],g=c[a]),l&&g.call(c,\"readystatechange\",l);const u=c[r]=()=>{if(c.readyState===c.DONE)if(!o.aborted&&c[i]&&\"scheduled\"===e.state){const n=c[t.__symbol__(\"loadfalse\")];if(n&&n.length>0){const r=e.invoke;e.invoke=function(){const n=c[t.__symbol__(\"loadfalse\")];for(let t=0;tfunction(e,t){return e[o]=0==t[2],e[c]=t[1],y.apply(e,t)}),v=u(\"fetchTaskAborting\"),b=u(\"fetchTaskScheduling\"),T=D(f,\"send\",()=>function(e,n){if(!0===t.current[b])return T.apply(e,n);if(e[o])return T.apply(e,n);{const t={target:e,url:e[c],isPeriodic:!1,args:n,aborted:!1},o=l(\"XMLHttpRequest.send\",k,t,_,m);e&&!0===e[h]&&!t.aborted&&\"scheduled\"===o.state&&o.invoke()}}),E=D(f,\"abort\",()=>function(e,o){const r=e[n];if(r&&\"string\"==typeof r.type){if(null==r.cancelFn||r.data&&r.data.aborted)return;r.zone.cancelTask(r)}else if(!0===t.current[v])return E.apply(e,o)})}(e);const n=u(\"xhrTask\"),o=u(\"xhrSync\"),r=u(\"xhrListener\"),i=u(\"xhrScheduled\"),c=u(\"xhrURL\"),h=u(\"xhrErrorBeforeScheduled\")}),Zone.__load_patch(\"geolocation\",t=>{t.navigator&&t.navigator.geolocation&&function(t,n){const o=t.constructor.name;for(let r=0;r{const t=function(){return e.apply(this,g(arguments,o+\".\"+s))};return C(t,e),t})(a)}}}(t.navigator.geolocation,[\"getCurrentPosition\",\"watchPosition\"])}),Zone.__load_patch(\"PromiseRejectionEvent\",(e,t)=>{function n(t){return function(n){G(e,t).forEach(o=>{const r=e.PromiseRejectionEvent;if(r){const e=new r(t,{promise:n.promise,reason:n.rejection});o.invoke(e)}})}}e.PromiseRejectionEvent&&(t[u(\"unhandledPromiseRejectionHandler\")]=n(\"unhandledrejection\"),t[u(\"rejectionHandledHandler\")]=n(\"rejectionhandled\"))})})?o.call(t,n,t,e):o)||(e.exports=r)}},[[2,0]]]);"); err != nil { return nil, errors.Wrap(err, fmt.Sprintf("packing file rf-ng/ui/bg/polyfills-es2015.5f7b2da059bba952c322.js")) } - if err := fs.Add("rf-ng/ui/bg/polyfills-es5.6ef5f88fcf07edc4ee11.js", 132231, os.FileMode(420), time.Unix(1584880249, 0), "function _createForOfIteratorHelper(t){if(\"undefined\"==typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=_unsupportedIterableToArray(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}var r,o,i=!0,a=!1;return{s:function(){r=t[Symbol.iterator]()},n:function(){var t=r.next();return i=t.done,t},e:function(t){a=!0,o=t},f:function(){try{i||null==r.return||r.return()}finally{if(a)throw o}}}}function _unsupportedIterableToArray(t,e){if(t){if(\"string\"==typeof t)return _arrayLikeToArray(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return\"Object\"===n&&t.constructor&&(n=t.constructor.name),\"Map\"===n||\"Set\"===n?Array.from(n):\"Arguments\"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?_arrayLikeToArray(t,e):void 0}}function _arrayLikeToArray(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n\")})),f=\"$0\"===\"a\".replace(/./,\"$0\"),l=i(\"replace\"),p=!!/./[l]&&\"\"===/./[l](\"a\",\"$0\"),h=!o((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n=\"ab\".split(t);return 2!==n.length||\"a\"!==n[0]||\"b\"!==n[1]}));t.exports=function(t,e,n,l){var v=i(t),d=!o((function(){var e={};return e[v]=function(){return 7},7!=\"\"[t](e)})),g=d&&!o((function(){var e=!1,n=/a/;return\"split\"===t&&((n={}).constructor={},n.constructor[u]=function(){return n},n.flags=\"\",n[v]=/./[v]),n.exec=function(){return e=!0,null},n[v](\"\"),!e}));if(!d||!g||\"replace\"===t&&(!s||!f||p)||\"split\"===t&&!h){var y=/./[v],b=n(v,\"\"[t],(function(t,e,n,r,o){return e.exec===a?d&&!o?{done:!0,value:y.call(e,n,r)}:{done:!0,value:t.call(n,e,r)}:{done:!1}}),{REPLACE_KEEPS_$0:f,REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE:p}),m=b[1];r(String.prototype,t,b[0]),r(RegExp.prototype,v,2==e?function(t,e){return m.call(t,this,e)}:function(t){return m.call(t,this)})}l&&c(RegExp.prototype[v],\"sham\",!0)}},\"1E5z\":function(t,e,n){var r=n(\"m/L8\").f,o=n(\"UTVS\"),i=n(\"tiKp\")(\"toStringTag\");t.exports=function(t,e,n){t&&!o(t=n?t:t.prototype,i)&&r(t,i,{configurable:!0,value:e})}},\"1Y/n\":function(t,e,n){var r=n(\"HAuM\"),o=n(\"ewvW\"),i=n(\"RK3t\"),a=n(\"UMSQ\"),c=function(t){return function(e,n,c,u){r(n);var s=o(e),f=i(s),l=a(s.length),p=t?l-1:0,h=t?-1:1;if(c<2)for(;;){if(p in f){u=f[p],p+=h;break}if(p+=h,t?p<0:l<=p)throw TypeError(\"Reduce of empty array with no initial value\")}for(;t?p>=0:l>p;p+=h)p in f&&(u=n(u,f[p],p,s));return u}};t.exports={left:c(!1),right:c(!0)}},\"2A+d\":function(t,e,n){var r=n(\"I+eb\"),o=n(\"/GqU\"),i=n(\"UMSQ\");r({target:\"String\",stat:!0},{raw:function(t){for(var e=o(t.raw),n=i(e.length),r=arguments.length,a=[],c=0;n>c;)a.push(String(e[c++])),c1?arguments[1]:void 0)}})},\"2oRo\":function(t,e){var n=function(t){return t&&t.Math==Math&&t};t.exports=n(\"object\"==typeof globalThis&&globalThis)||n(\"object\"==typeof window&&window)||n(\"object\"==typeof self&&self)||n(\"object\"==typeof global&&global)||Function(\"return this\")()},\"33Wh\":function(t,e,n){var r=n(\"yoRg\"),o=n(\"eDl+\");t.exports=Object.keys||function(t){return r(t,o)}},\"3I1R\":function(t,e,n){n(\"dG/n\")(\"hasInstance\")},\"3KgV\":function(t,e,n){var r=n(\"I+eb\"),o=n(\"uy83\"),i=n(\"0Dky\"),a=n(\"hh1v\"),c=n(\"8YOa\").onFreeze,u=Object.freeze;r({target:\"Object\",stat:!0,forced:i((function(){u(1)})),sham:!o},{freeze:function(t){return u&&a(t)?u(c(t)):t}})},\"3bBZ\":function(t,e,n){var r=n(\"2oRo\"),o=n(\"/byt\"),i=n(\"4mDm\"),a=n(\"kRJp\"),c=n(\"tiKp\"),u=c(\"iterator\"),s=c(\"toStringTag\"),f=i.values;for(var l in o){var p=r[l],h=p&&p.prototype;if(h){if(h[u]!==f)try{a(h,u,f)}catch(d){h[u]=f}if(h[s]||a(h,s,l),o[l])for(var v in i)if(h[v]!==i[v])try{a(h,v,i[v])}catch(d){h[v]=i[v]}}}},\"4Brf\":function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"g6v/\"),i=n(\"2oRo\"),a=n(\"UTVS\"),c=n(\"hh1v\"),u=n(\"m/L8\").f,s=n(\"6JNq\"),f=i.Symbol;if(o&&\"function\"==typeof f&&(!(\"description\"in f.prototype)||void 0!==f().description)){var l={},p=function t(){var e=arguments.length<1||void 0===arguments[0]?void 0:String(arguments[0]),n=this instanceof t?new f(e):void 0===e?f():f(e);return\"\"===e&&(l[n]=!0),n};s(p,f);var h=p.prototype=f.prototype;h.constructor=p;var v=h.toString,d=\"Symbol(test)\"==String(f(\"test\")),g=/^Symbol\\((.*)\\)[^)]+$/;u(h,\"description\",{configurable:!0,get:function(){var t=c(this)?this.valueOf():this,e=v.call(t);if(a(l,t))return\"\";var n=d?e.slice(7,-1):e.replace(g,\"$1\");return\"\"===n?void 0:n}}),r({global:!0,forced:!0},{Symbol:p})}},\"4WOD\":function(t,e,n){var r=n(\"UTVS\"),o=n(\"ewvW\"),i=n(\"93I0\"),a=n(\"4Xet\"),c=i(\"IE_PROTO\"),u=Object.prototype;t.exports=a?Object.getPrototypeOf:function(t){return t=o(t),r(t,c)?t[c]:\"function\"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?u:null}},\"4Xet\":function(t,e,n){var r=n(\"0Dky\");t.exports=!r((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},\"4h0Y\":function(t,e,n){var r=n(\"I+eb\"),o=n(\"0Dky\"),i=n(\"hh1v\"),a=Object.isFrozen;r({target:\"Object\",stat:!0,forced:o((function(){a(1)}))},{isFrozen:function(t){return!i(t)||!!a&&a(t)}})},\"4l63\":function(t,e,n){var r=n(\"I+eb\"),o=n(\"wg0c\");r({global:!0,forced:parseInt!=o},{parseInt:o})},\"4mDm\":function(t,e,n){\"use strict\";var r=n(\"/GqU\"),o=n(\"RNIs\"),i=n(\"P4y1\"),a=n(\"afO8\"),c=n(\"fdAy\"),u=a.set,s=a.getterFor(\"Array Iterator\");t.exports=c(Array,\"Array\",(function(t,e){u(this,{type:\"Array Iterator\",target:r(t),index:0,kind:e})}),(function(){var t=s(this),e=t.target,n=t.kind,r=t.index++;return!e||r>=e.length?(t.target=void 0,{value:void 0,done:!0}):\"keys\"==n?{value:r,done:!1}:\"values\"==n?{value:e[r],done:!1}:{value:[r,e[r]],done:!1}}),\"values\"),i.Arguments=i.Array,o(\"keys\"),o(\"values\"),o(\"entries\")},\"4oU/\":function(t,e,n){var r=n(\"2oRo\").isFinite;t.exports=Number.isFinite||function(t){return\"number\"==typeof t&&r(t)}},\"4syw\":function(t,e,n){var r=n(\"busE\");t.exports=function(t,e,n){for(var o in e)r(t,o,e[o],n);return t}},\"5D5o\":function(t,e,n){var r=n(\"I+eb\"),o=n(\"0Dky\"),i=n(\"hh1v\"),a=Object.isSealed;r({target:\"Object\",stat:!0,forced:o((function(){a(1)}))},{isSealed:function(t){return!i(t)||!!a&&a(t)}})},\"5DmW\":function(t,e,n){var r=n(\"I+eb\"),o=n(\"0Dky\"),i=n(\"/GqU\"),a=n(\"Bs8V\").f,c=n(\"g6v/\"),u=o((function(){a(1)}));r({target:\"Object\",stat:!0,forced:!c||u,sham:!c},{getOwnPropertyDescriptor:function(t,e){return a(i(t),e)}})},\"5Tg+\":function(t,e,n){var r=n(\"tiKp\");e.f=r},\"5Yz+\":function(t,e,n){\"use strict\";var r=n(\"/GqU\"),o=n(\"ppGB\"),i=n(\"UMSQ\"),a=n(\"pkCn\"),c=n(\"rkAj\"),u=Math.min,s=[].lastIndexOf,f=!!s&&1/[1].lastIndexOf(1,-0)<0,l=a(\"lastIndexOf\"),p=c(\"indexOf\",{ACCESSORS:!0,1:0});t.exports=!f&&l&&p?s:function(t){if(f)return s.apply(this,arguments)||0;var e=r(this),n=i(e.length),a=n-1;for(arguments.length>1&&(a=u(a,o(arguments[1]))),a<0&&(a=n+a);a>=0;a--)if(a in e&&e[a]===t)return a||0;return-1}},\"5mdu\":function(t,e){t.exports=function(t){try{return{error:!1,value:t()}}catch(e){return{error:!0,value:e}}}},\"5s+n\":function(t,e,n){\"use strict\";var r,o,i,a,c=n(\"I+eb\"),u=n(\"xDBR\"),s=n(\"2oRo\"),f=n(\"0GbY\"),l=n(\"/qmn\"),p=n(\"busE\"),h=n(\"4syw\"),v=n(\"1E5z\"),d=n(\"JiZb\"),g=n(\"hh1v\"),y=n(\"HAuM\"),b=n(\"GarU\"),m=n(\"xrYK\"),k=n(\"iSVu\"),E=n(\"ImZN\"),S=n(\"HH4o\"),x=n(\"SEBh\"),_=n(\"LPSS\").set,w=n(\"tXUg\"),T=n(\"zfnd\"),O=n(\"RN6c\"),I=n(\"8GlL\"),j=n(\"5mdu\"),P=n(\"afO8\"),R=n(\"lMq5\"),D=n(\"tiKp\"),M=n(\"LQDL\"),A=D(\"species\"),N=\"Promise\",C=P.get,L=P.set,Z=P.getterFor(N),F=l,z=s.TypeError,W=s.document,U=s.process,G=f(\"fetch\"),B=I.f,H=B,K=\"process\"==m(U),V=!!(W&&W.createEvent&&s.dispatchEvent),Y=R(N,(function(){if(k(F)===String(F)){if(66===M)return!0;if(!K&&\"function\"!=typeof PromiseRejectionEvent)return!0}if(u&&!F.prototype.finally)return!0;if(M>=51&&/native code/.test(F))return!1;var t=F.resolve(1),e=function(t){t((function(){}),(function(){}))};return(t.constructor={})[A]=e,!(t.then((function(){}))instanceof e)})),q=Y||!S((function(t){F.all(t).catch((function(){}))})),X=function(t){var e;return!(!g(t)||\"function\"!=typeof(e=t.then))&&e},J=function(t,e,n){if(!e.notified){e.notified=!0;var r=e.reactions;w((function(){for(var o=e.value,i=1==e.state,a=0;r.length>a;){var c,u,s,f=r[a++],l=i?f.ok:f.fail,p=f.resolve,h=f.reject,v=f.domain;try{l?(i||(2===e.rejection&&et(t,e),e.rejection=1),!0===l?c=o:(v&&v.enter(),c=l(o),v&&(v.exit(),s=!0)),c===f.promise?h(z(\"Promise-chain cycle\")):(u=X(c))?u.call(c,p,h):p(c)):h(o)}catch(d){v&&!s&&v.exit(),h(d)}}e.reactions=[],e.notified=!1,n&&!e.rejection&&$(t,e)}))}},Q=function(t,e,n){var r,o;V?((r=W.createEvent(\"Event\")).promise=e,r.reason=n,r.initEvent(t,!1,!0),s.dispatchEvent(r)):r={promise:e,reason:n},(o=s[\"on\"+t])?o(r):\"unhandledrejection\"===t&&O(\"Unhandled promise rejection\",n)},$=function(t,e){_.call(s,(function(){var n,r=e.value;if(tt(e)&&(n=j((function(){K?U.emit(\"unhandledRejection\",r,t):Q(\"unhandledrejection\",t,r)})),e.rejection=K||tt(e)?2:1,n.error))throw n.value}))},tt=function(t){return 1!==t.rejection&&!t.parent},et=function(t,e){_.call(s,(function(){K?U.emit(\"rejectionHandled\",t):Q(\"rejectionhandled\",t,e.value)}))},nt=function(t,e,n,r){return function(o){t(e,n,o,r)}},rt=function(t,e,n,r){e.done||(e.done=!0,r&&(e=r),e.value=n,e.state=2,J(t,e,!0))},ot=function t(e,n,r,o){if(!n.done){n.done=!0,o&&(n=o);try{if(e===r)throw z(\"Promise can't be resolved itself\");var i=X(r);i?w((function(){var o={done:!1};try{i.call(r,nt(t,e,o,n),nt(rt,e,o,n))}catch(a){rt(e,o,a,n)}})):(n.value=r,n.state=1,J(e,n,!1))}catch(a){rt(e,{done:!1},a,n)}}};Y&&(F=function(t){b(this,F,N),y(t),r.call(this);var e=C(this);try{t(nt(ot,this,e),nt(rt,this,e))}catch(n){rt(this,e,n)}},(r=function(t){L(this,{type:N,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=h(F.prototype,{then:function(t,e){var n=Z(this),r=B(x(this,F));return r.ok=\"function\"!=typeof t||t,r.fail=\"function\"==typeof e&&e,r.domain=K?U.domain:void 0,n.parent=!0,n.reactions.push(r),0!=n.state&&J(this,n,!1),r.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new r,e=C(t);this.promise=t,this.resolve=nt(ot,t,e),this.reject=nt(rt,t,e)},I.f=B=function(t){return t===F||t===i?new o(t):H(t)},u||\"function\"!=typeof l||(a=l.prototype.then,p(l.prototype,\"then\",(function(t,e){var n=this;return new F((function(t,e){a.call(n,t,e)})).then(t,e)}),{unsafe:!0}),\"function\"==typeof G&&c({global:!0,enumerable:!0,forced:!0},{fetch:function(t){return T(F,G.apply(s,arguments))}}))),c({global:!0,wrap:!0,forced:Y},{Promise:F}),v(F,N,!1,!0),d(N),i=f(N),c({target:N,stat:!0,forced:Y},{reject:function(t){var e=B(this);return e.reject.call(void 0,t),e.promise}}),c({target:N,stat:!0,forced:u||Y},{resolve:function(t){return T(u&&this===i?F:this,t)}}),c({target:N,stat:!0,forced:q},{all:function(t){var e=this,n=B(e),r=n.resolve,o=n.reject,i=j((function(){var n=y(e.resolve),i=[],a=0,c=1;E(t,(function(t){var u=a++,s=!1;i.push(void 0),c++,n.call(e,t).then((function(t){s||(s=!0,i[u]=t,--c||r(i))}),o)})),--c||r(i)}));return i.error&&o(i.value),n.promise},race:function(t){var e=this,n=B(e),r=n.reject,o=j((function(){var o=y(e.resolve);E(t,(function(t){o.call(e,t).then(n.resolve,r)}))}));return o.error&&r(o.value),n.promise}})},\"5uH8\":function(t,e,n){n(\"I+eb\")({target:\"Number\",stat:!0},{MIN_SAFE_INTEGER:-9007199254740991})},\"6JNq\":function(t,e,n){var r=n(\"UTVS\"),o=n(\"Vu81\"),i=n(\"Bs8V\"),a=n(\"m/L8\");t.exports=function(t,e){for(var n=o(e),c=a.f,u=i.f,s=0;s1?arguments[1]:void 0)}})},\"9bJ7\":function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"ZUd8\").codeAt;r({target:\"String\",proto:!0},{codePointAt:function(t){return o(this,t)}})},\"9d/t\":function(t,e,n){var r=n(\"AO7/\"),o=n(\"xrYK\"),i=n(\"tiKp\")(\"toStringTag\"),a=\"Arguments\"==o(function(){return arguments}());t.exports=r?o:function(t){var e,n,r;return void 0===t?\"Undefined\":null===t?\"Null\":\"string\"==typeof(n=function(t,e){try{return t[e]}catch(n){}}(e=Object(t),i))?n:a?o(e):\"Object\"==(r=o(e))&&\"function\"==typeof e.callee?\"Arguments\":r}},\"9mRW\":function(t,e,n){n(\"I+eb\")({target:\"Math\",stat:!0},{fround:n(\"vo4V\")})},\"9tb/\":function(t,e,n){var r=n(\"I+eb\"),o=n(\"I8vh\"),i=String.fromCharCode,a=String.fromCodePoint;r({target:\"String\",stat:!0,forced:!!a&&1!=a.length},{fromCodePoint:function(t){for(var e,n=[],r=arguments.length,a=0;r>a;){if(e=+arguments[a++],o(e,1114111)!==e)throw RangeError(e+\" is not a valid code point\");n.push(e<65536?i(e):i(55296+((e-=65536)>>10),e%1024+56320))}return n.join(\"\")}})},A2ZE:function(t,e,n){var r=n(\"HAuM\");t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 0:return function(){return t.call(e)};case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,o){return t.call(e,n,r,o)}}return function(){return t.apply(e,arguments)}}},\"AO7/\":function(t,e,n){var r={};r[n(\"tiKp\")(\"toStringTag\")]=\"z\",t.exports=\"[object z]\"===String(r)},AmFO:function(t,e,n){var r=n(\"I+eb\"),o=n(\"0Dky\"),i=n(\"jrUv\"),a=Math.abs,c=Math.exp,u=Math.E;r({target:\"Math\",stat:!0,forced:o((function(){return-2e-17!=Math.sinh(-2e-17)}))},{sinh:function(t){return a(t=+t)<1?(i(t)-i(-t))/2:(c(t-1)-c(-t-1))*(u/2)}})},BNMt:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"hXpO\");r({target:\"String\",proto:!0,forced:n(\"rwPt\")(\"blink\")},{blink:function(){return o(this,\"blink\",\"\",\"\")}})},BTho:function(t,e,n){\"use strict\";var r=n(\"HAuM\"),o=n(\"hh1v\"),i=[].slice,a={},c=function(t,e,n){if(!(e in a)){for(var r=[],o=0;ou&&(s=s.slice(0,u)),t?f+s:s+f)}};t.exports={start:c(!1),end:c(!0)}},DPsx:function(t,e,n){var r=n(\"g6v/\"),o=n(\"0Dky\"),i=n(\"zBJ4\");t.exports=!r&&!o((function(){return 7!=Object.defineProperty(i(\"div\"),\"a\",{get:function(){return 7}}).a}))},DQNa:function(t,e,n){var r=n(\"busE\"),o=Date.prototype,i=o.toString,a=o.getTime;new Date(NaN)+\"\"!=\"Invalid Date\"&&r(o,\"toString\",(function(){var t=a.call(this);return t==t?i.call(this):\"Invalid Date\"}))},E5NM:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"hXpO\");r({target:\"String\",proto:!0,forced:n(\"rwPt\")(\"big\")},{big:function(){return o(this,\"big\",\"\",\"\")}})},E9XD:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"1Y/n\").left,i=n(\"pkCn\"),a=n(\"rkAj\"),c=i(\"reduce\"),u=a(\"reduce\",{1:0});r({target:\"Array\",proto:!0,forced:!c||!u},{reduce:function(t){return o(this,t,arguments.length,arguments.length>1?arguments[1]:void 0)}})},ENF9:function(t,e,n){\"use strict\";var r,o=n(\"2oRo\"),i=n(\"4syw\"),a=n(\"8YOa\"),c=n(\"bWFh\"),u=n(\"rKzb\"),s=n(\"hh1v\"),f=n(\"afO8\").enforce,l=n(\"f5p1\"),p=!o.ActiveXObject&&\"ActiveXObject\"in o,h=Object.isExtensible,v=function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},d=t.exports=c(\"WeakMap\",v,u);if(l&&p){r=u.getConstructor(v,\"WeakMap\",!0),a.REQUIRED=!0;var g=d.prototype,y=g.delete,b=g.has,m=g.get,k=g.set;i(g,{delete:function(t){if(s(t)&&!h(t)){var e=f(this);return e.frozen||(e.frozen=new r),y.call(this,t)||e.frozen.delete(t)}return y.call(this,t)},has:function(t){if(s(t)&&!h(t)){var e=f(this);return e.frozen||(e.frozen=new r),b.call(this,t)||e.frozen.has(t)}return b.call(this,t)},get:function(t){if(s(t)&&!h(t)){var e=f(this);return e.frozen||(e.frozen=new r),b.call(this,t)?m.call(this,t):e.frozen.get(t)}return m.call(this,t)},set:function(t,e){if(s(t)&&!h(t)){var n=f(this);n.frozen||(n.frozen=new r),b.call(this,t)?k.call(this,t,e):n.frozen.set(t,e)}else k.call(this,t,e);return this}})}},EUja:function(t,e,n){\"use strict\";var r=n(\"ppGB\"),o=n(\"HYAF\");t.exports=\"\".repeat||function(t){var e=String(o(this)),n=\"\",i=r(t);if(i<0||i==1/0)throw RangeError(\"Wrong number of repetitions\");for(;i>0;(i>>>=1)&&(e+=e))1&i&&(n+=e);return n}},EnZy:function(t,e,n){\"use strict\";var r=n(\"14Sl\"),o=n(\"ROdP\"),i=n(\"glrk\"),a=n(\"HYAF\"),c=n(\"SEBh\"),u=n(\"iqWW\"),s=n(\"UMSQ\"),f=n(\"FMNM\"),l=n(\"kmMV\"),p=n(\"0Dky\"),h=[].push,v=Math.min,d=!p((function(){return!RegExp(4294967295,\"y\")}));r(\"split\",2,(function(t,e,n){var r;return r=\"c\"==\"abbc\".split(/(b)*/)[1]||4!=\"test\".split(/(?:)/,-1).length||2!=\"ab\".split(/(?:ab)*/).length||4!=\".\".split(/(.?)(.?)/).length||\".\".split(/()()/).length>1||\"\".split(/.?/).length?function(t,n){var r=String(a(this)),i=void 0===n?4294967295:n>>>0;if(0===i)return[];if(void 0===t)return[r];if(!o(t))return e.call(r,t,i);for(var c,u,s,f=[],p=0,v=new RegExp(t.source,(t.ignoreCase?\"i\":\"\")+(t.multiline?\"m\":\"\")+(t.unicode?\"u\":\"\")+(t.sticky?\"y\":\"\")+\"g\");(c=l.call(v,r))&&!((u=v.lastIndex)>p&&(f.push(r.slice(p,c.index)),c.length>1&&c.index=i));)v.lastIndex===c.index&&v.lastIndex++;return p===r.length?!s&&v.test(\"\")||f.push(\"\"):f.push(r.slice(p)),f.length>i?f.slice(0,i):f}:\"0\".split(void 0,0).length?function(t,n){return void 0===t&&0===n?[]:e.call(this,t,n)}:e,[function(e,n){var o=a(this),i=null==e?void 0:e[t];return void 0!==i?i.call(e,o,n):r.call(String(o),e,n)},function(t,o){var a=n(r,t,this,o,r!==e);if(a.done)return a.value;var l=i(t),p=String(this),h=c(l,RegExp),g=l.unicode,y=new h(d?l:\"^(?:\"+l.source+\")\",(l.ignoreCase?\"i\":\"\")+(l.multiline?\"m\":\"\")+(l.unicode?\"u\":\"\")+(d?\"y\":\"g\")),b=void 0===o?4294967295:o>>>0;if(0===b)return[];if(0===p.length)return null===f(y,p)?[p]:[];for(var m=0,k=0,E=[];k1?arguments[1]:void 0)}},FF6l:function(t,e,n){\"use strict\";var r=n(\"ewvW\"),o=n(\"I8vh\"),i=n(\"UMSQ\"),a=Math.min;t.exports=[].copyWithin||function(t,e){var n=r(this),c=i(n.length),u=o(t,c),s=o(e,c),f=arguments.length>2?arguments[2]:void 0,l=a((void 0===f?c:o(f,c))-s,c-u),p=1;for(s0;)s in n?n[u]=n[s]:delete n[u],u+=p,s+=p;return n}},FMNM:function(t,e,n){var r=n(\"xrYK\"),o=n(\"kmMV\");t.exports=function(t,e){var n=t.exec;if(\"function\"==typeof n){var i=n.call(t,e);if(\"object\"!=typeof i)throw TypeError(\"RegExp exec method returned something other than an Object or null\");return i}if(\"RegExp\"!==r(t))throw TypeError(\"RegExp#exec called on incompatible receiver\");return o.call(t,e)}},FZtP:function(t,e,n){var r=n(\"2oRo\"),o=n(\"/byt\"),i=n(\"F8JR\"),a=n(\"kRJp\");for(var c in o){var u=r[c],s=u&&u.prototype;if(s&&s.forEach!==i)try{a(s,\"forEach\",i)}catch(f){s.forEach=i}}},\"G+Rx\":function(t,e,n){var r=n(\"0GbY\");t.exports=r(\"document\",\"documentElement\")},GKVU:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"hXpO\");r({target:\"String\",proto:!0,forced:n(\"rwPt\")(\"anchor\")},{anchor:function(t){return o(this,\"a\",\"name\",t)}})},GRPF:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"hXpO\");r({target:\"String\",proto:!0,forced:n(\"rwPt\")(\"fontsize\")},{fontsize:function(t){return o(this,\"font\",\"size\",t)}})},GXvd:function(t,e,n){n(\"dG/n\")(\"species\")},GarU:function(t,e){t.exports=function(t,e,n){if(!(t instanceof e))throw TypeError(\"Incorrect \"+(n?n+\" \":\"\")+\"invocation\");return t}},H0pb:function(t,e,n){n(\"ma9I\"),n(\"07d7\"),n(\"pNMO\"),n(\"tjZM\"),n(\"4Brf\"),n(\"3I1R\"),n(\"7+kd\"),n(\"0oug\"),n(\"KhsS\"),n(\"jt2F\"),n(\"gOCb\"),n(\"a57n\"),n(\"GXvd\"),n(\"I1Gw\"),n(\"gXIK\"),n(\"lEou\"),n(\"gbiT\"),n(\"I9xj\"),n(\"DEfu\");var r=n(\"Qo9l\");t.exports=r.Symbol},HAuM:function(t,e){t.exports=function(t){if(\"function\"!=typeof t)throw TypeError(String(t)+\" is not a function\");return t}},HH4o:function(t,e,n){var r=n(\"tiKp\")(\"iterator\"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(c){}t.exports=function(t,e){if(!e&&!o)return!1;var n=!1;try{var i={};i[r]=function(){return{next:function(){return{done:n=!0}}}},t(i)}catch(c){}return n}},HNyW:function(t,e,n){var r=n(\"NC/Y\");t.exports=/(iphone|ipod|ipad).*applewebkit/i.test(r)},HRxU:function(t,e,n){var r=n(\"I+eb\"),o=n(\"g6v/\");r({target:\"Object\",stat:!0,forced:!o,sham:!o},{defineProperties:n(\"N+g0\")})},HYAF:function(t,e){t.exports=function(t){if(null==t)throw TypeError(\"Can't call method on \"+t);return t}},Hd5f:function(t,e,n){var r=n(\"0Dky\"),o=n(\"tiKp\"),i=n(\"LQDL\"),a=o(\"species\");t.exports=function(t){return i>=51||!r((function(){var e=[];return(e.constructor={})[a]=function(){return{foo:1}},1!==e[t](Boolean).foo}))}},HsHA:function(t,e){var n=Math.log;t.exports=Math.log1p||function(t){return(t=+t)>-1e-8&&t<1e-8?t-t*t/2:n(1+t)}},\"I+eb\":function(t,e,n){var r=n(\"2oRo\"),o=n(\"Bs8V\").f,i=n(\"kRJp\"),a=n(\"busE\"),c=n(\"zk60\"),u=n(\"6JNq\"),s=n(\"lMq5\");t.exports=function(t,e){var n,f,l,p,h,v=t.target,d=t.global,g=t.stat;if(n=d?r:g?r[v]||c(v,{}):(r[v]||{}).prototype)for(f in e){if(p=e[f],l=t.noTargetGet?(h=o(n,f))&&h.value:n[f],!s(d?f:v+(g?\".\":\"#\")+f,t.forced)&&void 0!==l){if(typeof p==typeof l)continue;u(p,l)}(t.sham||l&&l.sham)&&i(p,\"sham\",!0),a(n,f,p,t)}}},I1Gw:function(t,e,n){n(\"dG/n\")(\"split\")},I8vh:function(t,e,n){var r=n(\"ppGB\"),o=Math.max,i=Math.min;t.exports=function(t,e){var n=r(t);return n<0?o(n+e,0):i(n,e)}},I9xj:function(t,e,n){n(\"1E5z\")(Math,\"Math\",!0)},ImZN:function(t,e,n){var r=n(\"glrk\"),o=n(\"6VoE\"),i=n(\"UMSQ\"),a=n(\"A2ZE\"),c=n(\"NaFW\"),u=n(\"m92n\"),s=function(t,e){this.stopped=t,this.result=e};(t.exports=function(t,e,n,f,l){var p,h,v,d,g,y,b,m=a(e,n,f?2:1);if(l)p=t;else{if(\"function\"!=typeof(h=c(t)))throw TypeError(\"Target is not iterable\");if(o(h)){for(v=0,d=i(t.length);d>v;v++)if((g=f?m(r(b=t[v])[0],b[1]):m(t[v]))&&g instanceof s)return g;return new s(!1)}p=h.call(t)}for(y=p.next;!(b=y.call(p)).done;)if(\"object\"==typeof(g=u(p,m,b.value,f))&&g&&g instanceof s)return g;return new s(!1)}).stop=function(t){return new s(!0,t)}},IxXR:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"hXpO\");r({target:\"String\",proto:!0,forced:n(\"rwPt\")(\"strike\")},{strike:function(){return o(this,\"strike\",\"\",\"\")}})},J30X:function(t,e,n){n(\"I+eb\")({target:\"Array\",stat:!0},{isArray:n(\"6LWA\")})},JBy8:function(t,e,n){var r=n(\"yoRg\"),o=n(\"eDl+\").concat(\"length\",\"prototype\");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},JTJg:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"WjRb\"),i=n(\"HYAF\");r({target:\"String\",proto:!0,forced:!n(\"qxPZ\")(\"includes\")},{includes:function(t){return!!~String(i(this)).indexOf(o(t),arguments.length>1?arguments[1]:void 0)}})},JevA:function(t,e,n){var r=n(\"I+eb\"),o=n(\"wg0c\");r({target:\"Number\",stat:!0,forced:Number.parseInt!=o},{parseInt:o})},JfAA:function(t,e,n){\"use strict\";var r=n(\"busE\"),o=n(\"glrk\"),i=n(\"0Dky\"),a=n(\"rW0t\"),c=RegExp.prototype,u=c.toString;(i((function(){return\"/a/b\"!=u.call({source:\"a\",flags:\"b\"})}))||\"toString\"!=u.name)&&r(RegExp.prototype,\"toString\",(function(){var t=o(this),e=String(t.source),n=t.flags;return\"/\"+e+\"/\"+String(void 0===n&&t instanceof RegExp&&!(\"flags\"in c)?a.call(t):n)}),{unsafe:!0})},JiZb:function(t,e,n){\"use strict\";var r=n(\"0GbY\"),o=n(\"m/L8\"),i=n(\"tiKp\"),a=n(\"g6v/\"),c=i(\"species\");t.exports=function(t){var e=r(t);a&&e&&!e[c]&&(0,o.f)(e,c,{configurable:!0,get:function(){return this}})}},KhsS:function(t,e,n){n(\"dG/n\")(\"match\")},KvGi:function(t,e,n){n(\"I+eb\")({target:\"Math\",stat:!0},{sign:n(\"90hW\")})},Kxld:function(t,e,n){n(\"I+eb\")({target:\"Object\",stat:!0},{is:n(\"Ep9I\")})},LKBx:function(t,e,n){\"use strict\";var r,o=n(\"I+eb\"),i=n(\"Bs8V\").f,a=n(\"UMSQ\"),c=n(\"WjRb\"),u=n(\"HYAF\"),s=n(\"qxPZ\"),f=n(\"xDBR\"),l=\"\".startsWith,p=Math.min,h=s(\"startsWith\");o({target:\"String\",proto:!0,forced:!(!f&&!h&&(r=i(String.prototype,\"startsWith\"),r&&!r.writable)||h)},{startsWith:function(t){var e=String(u(this));c(t);var n=a(p(arguments.length>1?arguments[1]:void 0,e.length)),r=String(t);return l?l.call(e,r,n):e.slice(n,n+r.length)===r}})},LPSS:function(t,e,n){var r,o,i,a=n(\"2oRo\"),c=n(\"0Dky\"),u=n(\"xrYK\"),s=n(\"A2ZE\"),f=n(\"G+Rx\"),l=n(\"zBJ4\"),p=n(\"HNyW\"),h=a.location,v=a.setImmediate,d=a.clearImmediate,g=a.process,y=a.MessageChannel,b=a.Dispatch,m=0,k={},E=function(t){if(k.hasOwnProperty(t)){var e=k[t];delete k[t],e()}},S=function(t){return function(){E(t)}},x=function(t){E(t.data)},_=function(t){a.postMessage(t+\"\",h.protocol+\"//\"+h.host)};v&&d||(v=function(t){for(var e=[],n=1;arguments.length>n;)e.push(arguments[n++]);return k[++m]=function(){(\"function\"==typeof t?t:Function(t)).apply(void 0,e)},r(m),m},d=function(t){delete k[t]},\"process\"==u(g)?r=function(t){g.nextTick(S(t))}:b&&b.now?r=function(t){b.now(S(t))}:y&&!p?(i=(o=new y).port2,o.port1.onmessage=x,r=s(i.postMessage,i,1)):!a.addEventListener||\"function\"!=typeof postMessage||a.importScripts||c(_)?r=\"onreadystatechange\"in l(\"script\")?function(t){f.appendChild(l(\"script\")).onreadystatechange=function(){f.removeChild(this),E(t)}}:function(t){setTimeout(S(t),0)}:(r=_,a.addEventListener(\"message\",x,!1))),t.exports={set:v,clear:d}},LQDL:function(t,e,n){var r,o,i=n(\"2oRo\"),a=n(\"NC/Y\"),c=i.process,u=c&&c.versions,s=u&&u.v8;s?o=(r=s.split(\".\"))[0]+r[1]:a&&(!(r=a.match(/Edge\\/(\\d+)/))||r[1]>=74)&&(r=a.match(/Chrome\\/(\\d+)/))&&(o=r[1]),t.exports=o&&+o},\"N+g0\":function(t,e,n){var r=n(\"g6v/\"),o=n(\"m/L8\"),i=n(\"glrk\"),a=n(\"33Wh\");t.exports=r?Object.defineProperties:function(t,e){i(t);for(var n,r=a(e),c=r.length,u=0;c>u;)o.f(t,n=r[u++],e[n]);return t}},NBAS:function(t,e,n){var r=n(\"I+eb\"),o=n(\"0Dky\"),i=n(\"ewvW\"),a=n(\"4WOD\"),c=n(\"4Xet\");r({target:\"Object\",stat:!0,forced:o((function(){a(1)})),sham:!c},{getPrototypeOf:function(t){return a(i(t))}})},\"NC/Y\":function(t,e,n){var r=n(\"0GbY\");t.exports=r(\"navigator\",\"userAgent\")||\"\"},NaFW:function(t,e,n){var r=n(\"9d/t\"),o=n(\"P4y1\"),i=n(\"tiKp\")(\"iterator\");t.exports=function(t){if(null!=t)return t[i]||t[\"@@iterator\"]||o[r(t)]}},\"NbN+\":function(t,e,n){n(\"I+eb\")({target:\"Number\",stat:!0},{EPSILON:Math.pow(2,-52)})},O741:function(t,e,n){var r=n(\"hh1v\");t.exports=function(t){if(!r(t)&&null!==t)throw TypeError(\"Can't set \"+String(t)+\" as a prototype\");return t}},OM9Z:function(t,e,n){n(\"I+eb\")({target:\"String\",proto:!0},{repeat:n(\"EUja\")})},P4y1:function(t,e){t.exports={}},PKPk:function(t,e,n){\"use strict\";var r=n(\"ZUd8\").charAt,o=n(\"afO8\"),i=n(\"fdAy\"),a=o.set,c=o.getterFor(\"String Iterator\");i(String,\"String\",(function(t){a(this,{type:\"String Iterator\",string:String(t),index:0})}),(function(){var t,e=c(this),n=e.string,o=e.index;return o>=n.length?{value:void 0,done:!0}:(t=r(n,o),e.index+=t.length,{value:t,done:!1})}))},PqOI:function(t,e,n){var r=n(\"I+eb\"),o=n(\"90hW\"),i=Math.abs,a=Math.pow;r({target:\"Math\",stat:!0},{cbrt:function(t){return o(t=+t)*a(i(t),1/3)}})},QFcT:function(t,e,n){var r=n(\"I+eb\"),o=Math.hypot,i=Math.abs,a=Math.sqrt;r({target:\"Math\",stat:!0,forced:!!o&&o(1/0,NaN)!==1/0},{hypot:function(t,e){for(var n,r,o=0,c=0,u=arguments.length,s=0;c0?(r=n/s)*r:n;return s===1/0?1/0:s*a(o)}})},QIpd:function(t,e,n){var r=n(\"xrYK\");t.exports=function(t){if(\"number\"!=typeof t&&\"Number\"!=r(t))throw TypeError(\"Incorrect invocation\");return+t}},QNnp:function(t,e,n){var r=n(\"I+eb\"),o=Math.floor,i=Math.log,a=Math.LOG2E;r({target:\"Math\",stat:!0},{clz32:function(t){return(t>>>=0)?31-o(i(t+.5)*a):32}})},QWBl:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"F8JR\");r({target:\"Array\",proto:!0,forced:[].forEach!=o},{forEach:o})},Qo9l:function(t,e,n){var r=n(\"2oRo\");t.exports=r},R0gw:function(t,e,n){var r,o;void 0===(o=\"function\"==typeof(r=function(){\"use strict\";var t,e,n,r,o,i;function a(){t=Zone.__symbol__,e=Object[t(\"defineProperty\")]=Object.defineProperty,n=Object[t(\"getOwnPropertyDescriptor\")]=Object.getOwnPropertyDescriptor,r=Object.create,o=t(\"unconfigurables\"),Object.defineProperty=function(t,e,n){if(u(t,e))throw new TypeError(\"Cannot assign to read only property '\"+e+\"' of \"+t);var r=n.configurable;return\"prototype\"!==e&&(n=s(t,e,n)),f(t,e,n,r)},Object.defineProperties=function(t,e){return Object.keys(e).forEach((function(n){Object.defineProperty(t,n,e[n])})),t},Object.create=function(t,e){return\"object\"!=typeof e||Object.isFrozen(e)||Object.keys(e).forEach((function(n){e[n]=s(t,n,e[n])})),r(t,e)},Object.getOwnPropertyDescriptor=function(t,e){var r=n(t,e);return r&&u(t,e)&&(r.configurable=!1),r}}function c(t,e,n){var r=n.configurable;return f(t,e,n=s(t,e,n),r)}function u(t,e){return t&&t[o]&&t[o][e]}function s(t,n,r){return Object.isFrozen(r)||(r.configurable=!0),r.configurable||(t[o]||Object.isFrozen(t)||e(t,o,{writable:!0,value:{}}),t[o]&&(t[o][n]=!0)),r}function f(t,n,r,o){try{return e(t,n,r)}catch(a){if(!r.configurable)throw a;void 0===o?delete r.configurable:r.configurable=o;try{return e(t,n,r)}catch(a){var i=null;try{i=JSON.stringify(r)}catch(a){i=r.toString()}console.log(\"Attempting to configure '\"+n+\"' with descriptor '\"+i+\"' on object '\"+t+\"' and got error, giving up: \"+a)}}}function l(t,e){var n=e.getGlobalObjects(),r=n.eventNames,o=n.globalSources,i=n.zoneSymbolEventNames,a=n.TRUE_STR,c=n.FALSE_STR,u=n.ZONE_SYMBOL_PREFIX,s=\"ApplicationCache,EventSource,FileReader,InputMethodContext,MediaController,MessagePort,Node,Performance,SVGElementInstance,SharedWorker,TextTrack,TextTrackCue,TextTrackList,WebKitNamedFlow,Window,Worker,WorkerGlobalScope,XMLHttpRequest,XMLHttpRequestEventTarget,XMLHttpRequestUpload,IDBRequest,IDBOpenDBRequest,IDBDatabase,IDBTransaction,IDBCursor,DBIndex,WebSocket\".split(\",\"),f=[],l=t.wtf,p=\"Anchor,Area,Audio,BR,Base,BaseFont,Body,Button,Canvas,Content,DList,Directory,Div,Embed,FieldSet,Font,Form,Frame,FrameSet,HR,Head,Heading,Html,IFrame,Image,Input,Keygen,LI,Label,Legend,Link,Map,Marquee,Media,Menu,Meta,Meter,Mod,OList,Object,OptGroup,Option,Output,Paragraph,Pre,Progress,Quote,Script,Select,Source,Span,Style,TableCaption,TableCell,TableCol,Table,TableRow,TableSection,TextArea,Title,Track,UList,Unknown,Video\".split(\",\");l?f=p.map((function(t){return\"HTML\"+t+\"Element\"})).concat(s):t.EventTarget?f.push(\"EventTarget\"):f=s;for(var h=t.__Zone_disable_IE_check||!1,v=t.__Zone_enable_cross_context_check||!1,d=e.isIEOrEdge(),g=\"function __BROWSERTOOLS_CONSOLE_SAFEFUNC() { [native code] }\",y={MSPointerCancel:\"pointercancel\",MSPointerDown:\"pointerdown\",MSPointerEnter:\"pointerenter\",MSPointerHover:\"pointerhover\",MSPointerLeave:\"pointerleave\",MSPointerMove:\"pointermove\",MSPointerOut:\"pointerout\",MSPointerOver:\"pointerover\",MSPointerUp:\"pointerup\"},b=0;b1?new i(e,n):new i(e),s=t.ObjectGetOwnPropertyDescriptor(u,\"onmessage\");return s&&!1===s.configurable?(a=t.ObjectCreate(u),c=u,[r,o,\"send\",\"close\"].forEach((function(e){a[e]=function(){var n=t.ArraySlice.call(arguments);if(e===r||e===o){var i=n.length>0?n[0]:void 0;if(i){var c=Zone.__symbol__(\"ON_PROPERTY\"+i);u[c]=a[c]}}return u[e].apply(u,n)}}))):a=u,t.patchOnProperties(a,[\"close\",\"error\",\"message\",\"open\"],c),a};var a=e.WebSocket;for(var c in i)a[c]=i[c]}(t,e),Zone[t.symbol(\"patchEvents\")]=!0}}(i=\"undefined\"!=typeof window?window:\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:{})[(i.__Zone_symbol_prefix||\"__zone_symbol__\")+\"legacyPatch\"]=function(){var t=i.Zone;t.__load_patch(\"defineProperty\",(function(t,e,n){n._redefineProperty=c,a()})),t.__load_patch(\"registerElement\",(function(t,e,n){!function(t,e){var n=e.getGlobalObjects();(n.isBrowser||n.isMix)&&\"registerElement\"in t.document&&e.patchCallbacks(e,document,\"Document\",\"registerElement\",[\"createdCallback\",\"attachedCallback\",\"detachedCallback\",\"attributeChangedCallback\"])}(t,n)})),t.__load_patch(\"EventTargetLegacy\",(function(t,e,n){l(t,n),p(n,t)}))}})?r.call(e,n,e,t):r)||(t.exports=o)},RK3t:function(t,e,n){var r=n(\"0Dky\"),o=n(\"xrYK\"),i=\"\".split;t.exports=r((function(){return!Object(\"z\").propertyIsEnumerable(0)}))?function(t){return\"String\"==o(t)?i.call(t,\"\"):Object(t)}:Object},RN6c:function(t,e,n){var r=n(\"2oRo\");t.exports=function(t,e){var n=r.console;n&&n.error&&(1===arguments.length?n.error(t):n.error(t,e))}},RNIs:function(t,e,n){var r=n(\"tiKp\"),o=n(\"fHMY\"),i=n(\"m/L8\"),a=r(\"unscopables\"),c=Array.prototype;null==c[a]&&i.f(c,a,{configurable:!0,value:o(null)}),t.exports=function(t){c[a][t]=!0}},ROdP:function(t,e,n){var r=n(\"hh1v\"),o=n(\"xrYK\"),i=n(\"tiKp\")(\"match\");t.exports=function(t){var e;return r(t)&&(void 0!==(e=t[i])?!!e:\"RegExp\"==o(t))}},Rfxz:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"tycR\").some,i=n(\"pkCn\"),a=n(\"rkAj\"),c=i(\"some\"),u=a(\"some\");r({target:\"Array\",proto:!0,forced:!c||!u},{some:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},Rm1S:function(t,e,n){\"use strict\";var r=n(\"14Sl\"),o=n(\"glrk\"),i=n(\"UMSQ\"),a=n(\"HYAF\"),c=n(\"iqWW\"),u=n(\"FMNM\");r(\"match\",1,(function(t,e,n){return[function(e){var n=a(this),r=null==e?void 0:e[t];return void 0!==r?r.call(e,n):new RegExp(e)[t](String(n))},function(t){var r=n(e,t,this);if(r.done)return r.value;var a=o(t),s=String(this);if(!a.global)return u(a,s);var f=a.unicode;a.lastIndex=0;for(var l,p=[],h=0;null!==(l=u(a,s));){var v=String(l[0]);p[h]=v,\"\"===v&&(a.lastIndex=c(s,i(a.lastIndex),f)),h++}return 0===h?null:p}]}))},SEBh:function(t,e,n){var r=n(\"glrk\"),o=n(\"HAuM\"),i=n(\"tiKp\")(\"species\");t.exports=function(t,e){var n,a=r(t).constructor;return void 0===a||null==(n=r(a)[i])?e:o(n)}},STAE:function(t,e,n){var r=n(\"0Dky\");t.exports=!!Object.getOwnPropertySymbols&&!r((function(){return!String(Symbol())}))},SYor:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"WKiH\").trim;r({target:\"String\",proto:!0,forced:n(\"yNLB\")(\"trim\")},{trim:function(){return o(this)}})},TFPT:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"hXpO\");r({target:\"String\",proto:!0,forced:n(\"rwPt\")(\"sub\")},{sub:function(){return o(this,\"sub\",\"\",\"\")}})},TWNs:function(t,e,n){var r=n(\"g6v/\"),o=n(\"2oRo\"),i=n(\"lMq5\"),a=n(\"cVYH\"),c=n(\"m/L8\").f,u=n(\"JBy8\").f,s=n(\"ROdP\"),f=n(\"rW0t\"),l=n(\"n3/R\"),p=n(\"busE\"),h=n(\"0Dky\"),v=n(\"afO8\").set,d=n(\"JiZb\"),g=n(\"tiKp\")(\"match\"),y=o.RegExp,b=y.prototype,m=/a/g,k=/a/g,E=new y(m)!==m,S=l.UNSUPPORTED_Y;if(r&&i(\"RegExp\",!E||S||h((function(){return k[g]=!1,y(m)!=m||y(k)==k||\"/a/i\"!=y(m,\"i\")})))){for(var x=function t(e,n){var r,o=this instanceof t,i=s(e),c=void 0===n;if(!o&&i&&e.constructor===t&&c)return e;E?i&&!c&&(e=e.source):e instanceof t&&(c&&(n=f.call(e)),e=e.source),S&&(r=!!n&&n.indexOf(\"y\")>-1)&&(n=n.replace(/y/g,\"\"));var u=a(E?new y(e,n):y(e,n),o?this:b,t);return S&&r&&v(u,{sticky:r}),u},_=function(t){t in x||c(x,t,{configurable:!0,get:function(){return y[t]},set:function(e){y[t]=e}})},w=u(y),T=0;w.length>T;)_(w[T++]);b.constructor=x,x.prototype=b,p(o,\"RegExp\",x)}d(\"RegExp\")},TWQb:function(t,e,n){var r=n(\"/GqU\"),o=n(\"UMSQ\"),i=n(\"I8vh\"),a=function(t){return function(e,n,a){var c,u=r(e),s=o(u.length),f=i(a,s);if(t&&n!=n){for(;s>f;)if((c=u[f++])!=c)return!0}else for(;s>f;f++)if((t||f in u)&&u[f]===n)return t||f||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},TeQF:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"tycR\").filter,i=n(\"Hd5f\"),a=n(\"rkAj\"),c=i(\"filter\"),u=a(\"filter\");r({target:\"Array\",proto:!0,forced:!c||!u},{filter:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},TfTi:function(t,e,n){\"use strict\";var r=n(\"A2ZE\"),o=n(\"ewvW\"),i=n(\"m92n\"),a=n(\"6VoE\"),c=n(\"UMSQ\"),u=n(\"hBjN\"),s=n(\"NaFW\");t.exports=function(t){var e,n,f,l,p,h,v=o(t),d=\"function\"==typeof this?this:Array,g=arguments.length,y=g>1?arguments[1]:void 0,b=void 0!==y,m=s(v),k=0;if(b&&(y=r(y,g>2?arguments[2]:void 0,2)),null==m||d==Array&&a(m))for(n=new d(e=c(v.length));e>k;k++)h=b?y(v[k],k):v[k],u(n,k,h);else for(p=(l=m.call(v)).next,n=new d;!(f=p.call(l)).done;k++)h=b?i(l,y,[f.value,k],!0):f.value,u(n,k,h);return n.length=k,n}},ToJy:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"HAuM\"),i=n(\"ewvW\"),a=n(\"0Dky\"),c=n(\"pkCn\"),u=[],s=u.sort,f=a((function(){u.sort(void 0)})),l=a((function(){u.sort(null)})),p=c(\"sort\");r({target:\"Array\",proto:!0,forced:f||!l||!p},{sort:function(t){return void 0===t?s.call(i(this)):s.call(i(this),o(t))}})},Tskq:function(t,e,n){\"use strict\";var r=n(\"bWFh\"),o=n(\"ZWaQ\");t.exports=r(\"Map\",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),o)},U3f4:function(t,e,n){var r=n(\"g6v/\"),o=n(\"m/L8\"),i=n(\"rW0t\"),a=n(\"n3/R\").UNSUPPORTED_Y;r&&(\"g\"!=/./g.flags||a)&&o.f(RegExp.prototype,\"flags\",{configurable:!0,get:i})},UMSQ:function(t,e,n){var r=n(\"ppGB\"),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},UTVS:function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},UesL:function(t,e,n){\"use strict\";var r=n(\"glrk\"),o=n(\"wE6v\");t.exports=function(t){if(\"string\"!==t&&\"number\"!==t&&\"default\"!==t)throw TypeError(\"Incorrect hint\");return o(r(this),\"number\"!==t)}},UxlC:function(t,e,n){\"use strict\";var r=n(\"14Sl\"),o=n(\"glrk\"),i=n(\"ewvW\"),a=n(\"UMSQ\"),c=n(\"ppGB\"),u=n(\"HYAF\"),s=n(\"iqWW\"),f=n(\"FMNM\"),l=Math.max,p=Math.min,h=Math.floor,v=/\\$([$&'`]|\\d\\d?|<[^>]*>)/g,d=/\\$([$&'`]|\\d\\d?)/g;r(\"replace\",2,(function(t,e,n,r){var g=r.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE,y=r.REPLACE_KEEPS_$0,b=g?\"$\":\"$0\";return[function(n,r){var o=u(this),i=null==n?void 0:n[t];return void 0!==i?i.call(n,o,r):e.call(String(o),n,r)},function(t,r){if(!g&&y||\"string\"==typeof r&&-1===r.indexOf(b)){var i=n(e,t,this,r);if(i.done)return i.value}var u=o(t),h=String(this),v=\"function\"==typeof r;v||(r=String(r));var d=u.global;if(d){var k=u.unicode;u.lastIndex=0}for(var E=[];;){var S=f(u,h);if(null===S)break;if(E.push(S),!d)break;\"\"===String(S[0])&&(u.lastIndex=s(h,a(u.lastIndex),k))}for(var x,_=\"\",w=0,T=0;T=w&&(_+=h.slice(w,I)+M,w=I+O.length)}return _+h.slice(w)}];function m(t,n,r,o,a,c){var u=r+t.length,s=o.length,f=d;return void 0!==a&&(a=i(a),f=v),e.call(c,f,(function(e,i){var c;switch(i.charAt(0)){case\"$\":return\"$\";case\"&\":return t;case\"`\":return n.slice(0,r);case\"'\":return n.slice(u);case\"<\":c=a[i.slice(1,-1)];break;default:var f=+i;if(0===f)return e;if(f>s){var l=h(f/10);return 0===l?e:l<=s?void 0===o[l-1]?i.charAt(1):o[l-1]+i.charAt(1):e}c=o[f-1]}return void 0===c?\"\":c}))}}))},Uydy:function(t,e,n){var r=n(\"I+eb\"),o=n(\"HsHA\"),i=Math.acosh,a=Math.log,c=Math.sqrt,u=Math.LN2;r({target:\"Math\",stat:!0,forced:!i||710!=Math.floor(i(Number.MAX_VALUE))||i(1/0)!=1/0},{acosh:function(t){return(t=+t)<1?NaN:t>94906265.62425156?a(t)+u:o(t-1+c(t-1)*c(t+1))}})},VC3L:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"0Dky\"),i=n(\"QIpd\"),a=1..toPrecision;r({target:\"Number\",proto:!0,forced:o((function(){return\"1\"!==a.call(1,void 0)}))||!o((function(){a.call({})}))},{toPrecision:function(t){return void 0===t?a.call(i(this)):a.call(i(this),t)}})},VpIT:function(t,e,n){var r=n(\"xDBR\"),o=n(\"xs3f\");(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})(\"versions\",[]).push({version:\"3.6.4\",mode:r?\"pure\":\"global\",copyright:\"\\xa9 2020 Denis Pushkarev (zloirock.ru)\"})},Vu81:function(t,e,n){var r=n(\"0GbY\"),o=n(\"JBy8\"),i=n(\"dBg+\"),a=n(\"glrk\");t.exports=r(\"Reflect\",\"ownKeys\")||function(t){var e=o.f(a(t)),n=i.f;return n?e.concat(n(t)):e}},WDsR:function(t,e,n){var r=n(\"I+eb\"),o=n(\"Xol8\"),i=Math.abs;r({target:\"Number\",stat:!0},{isSafeInteger:function(t){return o(t)&&i(t)<=9007199254740991}})},WJkJ:function(t,e){t.exports=\"\\t\\n\\v\\f\\r \\xa0\\u1680\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\u2028\\u2029\\ufeff\"},WKiH:function(t,e,n){var r=n(\"HYAF\"),o=\"[\"+n(\"WJkJ\")+\"]\",i=RegExp(\"^\"+o+o+\"*\"),a=RegExp(o+o+\"*$\"),c=function(t){return function(e){var n=String(r(e));return 1&t&&(n=n.replace(i,\"\")),2&t&&(n=n.replace(a,\"\")),n}};t.exports={start:c(1),end:c(2),trim:c(3)}},WjRb:function(t,e,n){var r=n(\"ROdP\");t.exports=function(t){if(r(t))throw TypeError(\"The method doesn't accept regular expressions\");return t}},XGwC:function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},Xe3L:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"0Dky\"),i=n(\"hBjN\");r({target:\"Array\",stat:!0,forced:o((function(){function t(){}return!(Array.of.call(t)instanceof t)}))},{of:function(){for(var t=0,e=arguments.length,n=new(\"function\"==typeof this?this:Array)(e);e>t;)i(n,t,arguments[t++]);return n.length=e,n}})},Xol8:function(t,e,n){var r=n(\"hh1v\"),o=Math.floor;t.exports=function(t){return!r(t)&&isFinite(t)&&o(t)===t}},YGK4:function(t,e,n){\"use strict\";var r=n(\"bWFh\"),o=n(\"ZWaQ\");t.exports=r(\"Set\",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),o)},YNrV:function(t,e,n){\"use strict\";var r=n(\"g6v/\"),o=n(\"0Dky\"),i=n(\"33Wh\"),a=n(\"dBg+\"),c=n(\"0eef\"),u=n(\"ewvW\"),s=n(\"RK3t\"),f=Object.assign,l=Object.defineProperty;t.exports=!f||o((function(){if(r&&1!==f({b:1},f(l({},\"a\",{enumerable:!0,get:function(){l(this,\"b\",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol();return t[n]=7,\"abcdefghijklmnopqrst\".split(\"\").forEach((function(t){e[t]=t})),7!=f({},t)[n]||\"abcdefghijklmnopqrst\"!=i(f({},e)).join(\"\")}))?function(t,e){for(var n=u(t),o=arguments.length,f=1,l=a.f,p=c.f;o>f;)for(var h,v=s(arguments[f++]),d=l?i(v).concat(l(v)):i(v),g=d.length,y=0;g>y;)h=d[y++],r&&!p.call(v,h)||(n[h]=v[h]);return n}:f},ZOXb:function(t,e,n){\"use strict\";var r=n(\"0Dky\"),o=n(\"DMt2\").start,i=Math.abs,a=Date.prototype,c=a.getTime,u=a.toISOString;t.exports=r((function(){return\"0385-07-25T07:06:39.999Z\"!=u.call(new Date(-50000000000001))}))||!r((function(){u.call(new Date(NaN))}))?function(){if(!isFinite(c.call(this)))throw RangeError(\"Invalid time value\");var t=this.getUTCFullYear(),e=this.getUTCMilliseconds(),n=t<0?\"-\":t>9999?\"+\":\"\";return n+o(i(t),n?6:4,0)+\"-\"+o(this.getUTCMonth()+1,2,0)+\"-\"+o(this.getUTCDate(),2,0)+\"T\"+o(this.getUTCHours(),2,0)+\":\"+o(this.getUTCMinutes(),2,0)+\":\"+o(this.getUTCSeconds(),2,0)+\".\"+o(e,3,0)+\"Z\"}:u},ZUd8:function(t,e,n){var r=n(\"ppGB\"),o=n(\"HYAF\"),i=function(t){return function(e,n){var i,a,c=String(o(e)),u=r(n),s=c.length;return u<0||u>=s?t?\"\":void 0:(i=c.charCodeAt(u))<55296||i>56319||u+1===s||(a=c.charCodeAt(u+1))<56320||a>57343?t?c.charAt(u):i:t?c.slice(u,u+2):a-56320+(i-55296<<10)+65536}};t.exports={codeAt:i(!1),charAt:i(!0)}},ZWaQ:function(t,e,n){\"use strict\";var r=n(\"m/L8\").f,o=n(\"fHMY\"),i=n(\"4syw\"),a=n(\"A2ZE\"),c=n(\"GarU\"),u=n(\"ImZN\"),s=n(\"fdAy\"),f=n(\"JiZb\"),l=n(\"g6v/\"),p=n(\"8YOa\").fastKey,h=n(\"afO8\"),v=h.set,d=h.getterFor;t.exports={getConstructor:function(t,e,n,s){var f=t((function(t,r){c(t,f,e),v(t,{type:e,index:o(null),first:void 0,last:void 0,size:0}),l||(t.size=0),null!=r&&u(r,t[s],t,n)})),h=d(e),g=function(t,e,n){var r,o,i=h(t),a=y(t,e);return a?a.value=n:(i.last=a={index:o=p(e,!0),key:e,value:n,previous:r=i.last,next:void 0,removed:!1},i.first||(i.first=a),r&&(r.next=a),l?i.size++:t.size++,\"F\"!==o&&(i.index[o]=a)),t},y=function(t,e){var n,r=h(t),o=p(e);if(\"F\"!==o)return r.index[o];for(n=r.first;n;n=n.next)if(n.key==e)return n};return i(f.prototype,{clear:function(){for(var t=h(this),e=t.index,n=t.first;n;)n.removed=!0,n.previous&&(n.previous=n.previous.next=void 0),delete e[n.index],n=n.next;t.first=t.last=void 0,l?t.size=0:this.size=0},delete:function(t){var e=h(this),n=y(this,t);if(n){var r=n.next,o=n.previous;delete e.index[n.index],n.removed=!0,o&&(o.next=r),r&&(r.previous=o),e.first==n&&(e.first=r),e.last==n&&(e.last=o),l?e.size--:this.size--}return!!n},forEach:function(t){for(var e,n=h(this),r=a(t,arguments.length>1?arguments[1]:void 0,3);e=e?e.next:n.first;)for(r(e.value,e.key,this);e&&e.removed;)e=e.previous},has:function(t){return!!y(this,t)}}),i(f.prototype,n?{get:function(t){var e=y(this,t);return e&&e.value},set:function(t,e){return g(this,0===t?0:t,e)}}:{add:function(t){return g(this,t=0===t?0:t,t)}}),l&&r(f.prototype,\"size\",{get:function(){return h(this).size}}),f},setStrong:function(t,e,n){var r=e+\" Iterator\",o=d(e),i=d(r);s(t,e,(function(t,e){v(this,{type:r,target:t,state:o(t),kind:e,last:void 0})}),(function(){for(var t=i(this),e=t.kind,n=t.last;n&&n.removed;)n=n.previous;return t.target&&(t.last=n=n?n.next:t.state.first)?\"keys\"==e?{value:n.key,done:!1}:\"values\"==e?{value:n.value,done:!1}:{value:[n.key,n.value],done:!1}:(t.target=void 0,{value:void 0,done:!0})}),n?\"entries\":\"values\",!n,!0),f(e)}}},ZfDv:function(t,e,n){var r=n(\"hh1v\"),o=n(\"6LWA\"),i=n(\"tiKp\")(\"species\");t.exports=function(t,e){var n;return o(t)&&(\"function\"!=typeof(n=t.constructor)||n!==Array&&!o(n.prototype)?r(n)&&null===(n=n[i])&&(n=void 0):n=void 0),new(void 0===n?Array:n)(0===e?0:e)}},Zk8X:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"hXpO\");r({target:\"String\",proto:!0,forced:n(\"rwPt\")(\"sup\")},{sup:function(){return o(this,\"sup\",\"\",\"\")}})},a57n:function(t,e,n){n(\"dG/n\")(\"search\")},a5NK:function(t,e,n){var r=n(\"I+eb\"),o=Math.log,i=Math.LOG10E;r({target:\"Math\",stat:!0},{log10:function(t){return o(t)*i}})},afO8:function(t,e,n){var r,o,i,a=n(\"f5p1\"),c=n(\"2oRo\"),u=n(\"hh1v\"),s=n(\"kRJp\"),f=n(\"UTVS\"),l=n(\"93I0\"),p=n(\"0BK2\");if(a){var h=new(0,c.WeakMap),v=h.get,d=h.has,g=h.set;r=function(t,e){return g.call(h,t,e),e},o=function(t){return v.call(h,t)||{}},i=function(t){return d.call(h,t)}}else{var y=l(\"state\");p[y]=!0,r=function(t,e){return s(t,y,e),e},o=function(t){return f(t,y)?t[y]:{}},i=function(t){return f(t,y)}}t.exports={set:r,get:o,has:i,enforce:function(t){return i(t)?o(t):r(t,{})},getterFor:function(t){return function(e){var n;if(!u(e)||(n=o(e)).type!==t)throw TypeError(\"Incompatible receiver, \"+t+\" required\");return n}}}},bWFh:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"2oRo\"),i=n(\"lMq5\"),a=n(\"busE\"),c=n(\"8YOa\"),u=n(\"ImZN\"),s=n(\"GarU\"),f=n(\"hh1v\"),l=n(\"0Dky\"),p=n(\"HH4o\"),h=n(\"1E5z\"),v=n(\"cVYH\");t.exports=function(t,e,n){var d=-1!==t.indexOf(\"Map\"),g=-1!==t.indexOf(\"Weak\"),y=d?\"set\":\"add\",b=o[t],m=b&&b.prototype,k=b,E={},S=function(t){var e=m[t];a(m,t,\"add\"==t?function(t){return e.call(this,0===t?0:t),this}:\"delete\"==t?function(t){return!(g&&!f(t))&&e.call(this,0===t?0:t)}:\"get\"==t?function(t){return g&&!f(t)?void 0:e.call(this,0===t?0:t)}:\"has\"==t?function(t){return!(g&&!f(t))&&e.call(this,0===t?0:t)}:function(t,n){return e.call(this,0===t?0:t,n),this})};if(i(t,\"function\"!=typeof b||!(g||m.forEach&&!l((function(){(new b).entries().next()})))))k=n.getConstructor(e,t,d,y),c.REQUIRED=!0;else if(i(t,!0)){var x=new k,_=x[y](g?{}:-0,1)!=x,w=l((function(){x.has(1)})),T=p((function(t){new b(t)})),O=!g&&l((function(){for(var t=new b,e=5;e--;)t[y](e,e);return!t.has(-0)}));T||((k=e((function(e,n){s(e,k,t);var r=v(new b,e,k);return null!=n&&u(n,r[y],r,d),r}))).prototype=m,m.constructor=k),(w||O)&&(S(\"delete\"),S(\"has\"),d&&S(\"get\")),(O||_)&&S(y),g&&m.clear&&delete m.clear}return E[t]=k,r({global:!0,forced:k!=b},E),h(k,t),g||n.setStrong(k,t,d),k}},brp2:function(t,e,n){n(\"I+eb\")({target:\"Date\",stat:!0},{now:function(){return(new Date).getTime()}})},busE:function(t,e,n){var r=n(\"2oRo\"),o=n(\"kRJp\"),i=n(\"UTVS\"),a=n(\"zk60\"),c=n(\"iSVu\"),u=n(\"afO8\"),s=u.get,f=u.enforce,l=String(String).split(\"String\");(t.exports=function(t,e,n,c){var u=!!c&&!!c.unsafe,s=!!c&&!!c.enumerable,p=!!c&&!!c.noTargetGet;\"function\"==typeof n&&(\"string\"!=typeof e||i(n,\"name\")||o(n,\"name\",e),f(n).source=l.join(\"string\"==typeof e?e:\"\")),t!==r?(u?!p&&t[e]&&(s=!0):delete t[e],s?t[e]=n:o(t,e,n)):s?t[e]=n:a(e,n)})(Function.prototype,\"toString\",(function(){return\"function\"==typeof this&&s(this).source||c(this)}))},cDke:function(t,e,n){var r=n(\"I+eb\"),o=n(\"0Dky\"),i=n(\"BX/b\").f;r({target:\"Object\",stat:!0,forced:o((function(){return!Object.getOwnPropertyNames(1)}))},{getOwnPropertyNames:i})},cVYH:function(t,e,n){var r=n(\"hh1v\"),o=n(\"0rvr\");t.exports=function(t,e,n){var i,a;return o&&\"function\"==typeof(i=e.constructor)&&i!==n&&r(a=i.prototype)&&a!==n.prototype&&o(t,a),t}},\"dBg+\":function(t,e){e.f=Object.getOwnPropertySymbols},\"dG/n\":function(t,e,n){var r=n(\"Qo9l\"),o=n(\"UTVS\"),i=n(\"5Tg+\"),a=n(\"m/L8\").f;t.exports=function(t){var e=r.Symbol||(r.Symbol={});o(e,t)||a(e,t,{value:i.f(t)})}},\"eDl+\":function(t,e){t.exports=[\"constructor\",\"hasOwnProperty\",\"isPrototypeOf\",\"propertyIsEnumerable\",\"toLocaleString\",\"toString\",\"valueOf\"]},eJiR:function(t,e,n){var r=n(\"I+eb\"),o=n(\"jrUv\"),i=Math.exp;r({target:\"Math\",stat:!0},{tanh:function(t){var e=o(t=+t),n=o(-t);return e==1/0?1:n==1/0?-1:(e-n)/(i(t)+i(-t))}})},eajv:function(t,e,n){var r=n(\"I+eb\"),o=Math.asinh,i=Math.log,a=Math.sqrt;r({target:\"Math\",stat:!0,forced:!(o&&1/o(0)>0)},{asinh:function t(e){return isFinite(e=+e)&&0!=e?e<0?-t(-e):i(e+a(e*e+1)):e}})},eoL8:function(t,e,n){var r=n(\"I+eb\"),o=n(\"g6v/\");r({target:\"Object\",stat:!0,forced:!o,sham:!o},{defineProperty:n(\"m/L8\").f})},ewvW:function(t,e,n){var r=n(\"HYAF\");t.exports=function(t){return Object(r(t))}},f5p1:function(t,e,n){var r=n(\"2oRo\"),o=n(\"iSVu\"),i=r.WeakMap;t.exports=\"function\"==typeof i&&/native code/.test(o(i))},fHMY:function(t,e,n){var r,o=n(\"glrk\"),i=n(\"N+g0\"),a=n(\"eDl+\"),c=n(\"0BK2\"),u=n(\"G+Rx\"),s=n(\"zBJ4\"),f=n(\"93I0\")(\"IE_PROTO\"),l=function(){},p=function(t){return\"\n\n\n \n\n\n"); err != nil { + if err := fs.Add("rf-ng/ui/en/index.html", 1618, os.FileMode(420), time.Unix(1587937607, 0), "\n\n\n \n readeef: feed aggregator\n \n \n \n\n \n \n\n \n \n \n \n\n \n \n\n\n \n\n\n"); err != nil { return nil, errors.Wrap(err, fmt.Sprintf("packing file rf-ng/ui/en/index.html")) } - if err := fs.Add("rf-ng/ui/en/main-es2015.de4780925792b25f4c29.js", 1175966, os.FileMode(420), time.Unix(1584880199, 0), "(window.webpackJsonp=window.webpackJsonp||[]).push([[1],{\"+s0g\":function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),n=\"jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),i=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],s=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\\.?|feb\\.?|mrt\\.?|apr\\.?|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i;e.defineLocale(\"nl\",{months:\"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\\.?|feb\\.?|mrt\\.?|apr\\.?|mei|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag\".split(\"_\"),weekdaysShort:\"zo._ma._di._wo._do._vr._za.\".split(\"_\"),weekdaysMin:\"zo_ma_di_wo_do_vr_za\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[vandaag om] LT\",nextDay:\"[morgen om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[gisteren om] LT\",lastWeek:\"[afgelopen] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"over %s\",past:\"%s geleden\",s:\"een paar seconden\",ss:\"%d seconden\",m:\"\\xe9\\xe9n minuut\",mm:\"%d minuten\",h:\"\\xe9\\xe9n uur\",hh:\"%d uur\",d:\"\\xe9\\xe9n dag\",dd:\"%d dagen\",M:\"\\xe9\\xe9n maand\",MM:\"%d maanden\",y:\"\\xe9\\xe9n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"//9w\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"se\",{months:\"o\\u0111\\u0111ajagem\\xe1nnu_guovvam\\xe1nnu_njuk\\u010dam\\xe1nnu_cuo\\u014bom\\xe1nnu_miessem\\xe1nnu_geassem\\xe1nnu_suoidnem\\xe1nnu_borgem\\xe1nnu_\\u010dak\\u010dam\\xe1nnu_golggotm\\xe1nnu_sk\\xe1bmam\\xe1nnu_juovlam\\xe1nnu\".split(\"_\"),monthsShort:\"o\\u0111\\u0111j_guov_njuk_cuo_mies_geas_suoi_borg_\\u010dak\\u010d_golg_sk\\xe1b_juov\".split(\"_\"),weekdays:\"sotnabeaivi_vuoss\\xe1rga_ma\\u014b\\u014beb\\xe1rga_gaskavahkku_duorastat_bearjadat_l\\xe1vvardat\".split(\"_\"),weekdaysShort:\"sotn_vuos_ma\\u014b_gask_duor_bear_l\\xe1v\".split(\"_\"),weekdaysMin:\"s_v_m_g_d_b_L\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"MMMM D. [b.] YYYY\",LLL:\"MMMM D. [b.] YYYY [ti.] HH:mm\",LLLL:\"dddd, MMMM D. [b.] YYYY [ti.] HH:mm\"},calendar:{sameDay:\"[otne ti] LT\",nextDay:\"[ihttin ti] LT\",nextWeek:\"dddd [ti] LT\",lastDay:\"[ikte ti] LT\",lastWeek:\"[ovddit] dddd [ti] LT\",sameElse:\"L\"},relativeTime:{future:\"%s gea\\u017ees\",past:\"ma\\u014bit %s\",s:\"moadde sekunddat\",ss:\"%d sekunddat\",m:\"okta minuhta\",mm:\"%d minuhtat\",h:\"okta diimmu\",hh:\"%d diimmut\",d:\"okta beaivi\",dd:\"%d beaivvit\",M:\"okta m\\xe1nnu\",MM:\"%d m\\xe1nut\",y:\"okta jahki\",yy:\"%d jagit\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"/X5v\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"x-pseudo\",{months:\"J~\\xe1\\xf1\\xfa\\xe1~r\\xfd_F~\\xe9br\\xfa~\\xe1r\\xfd_~M\\xe1rc~h_\\xc1p~r\\xedl_~M\\xe1\\xfd_~J\\xfa\\xf1\\xe9~_J\\xfal~\\xfd_\\xc1\\xfa~g\\xfast~_S\\xe9p~t\\xe9mb~\\xe9r_\\xd3~ct\\xf3b~\\xe9r_\\xd1~\\xf3v\\xe9m~b\\xe9r_~D\\xe9c\\xe9~mb\\xe9r\".split(\"_\"),monthsShort:\"J~\\xe1\\xf1_~F\\xe9b_~M\\xe1r_~\\xc1pr_~M\\xe1\\xfd_~J\\xfa\\xf1_~J\\xfal_~\\xc1\\xfag_~S\\xe9p_~\\xd3ct_~\\xd1\\xf3v_~D\\xe9c\".split(\"_\"),monthsParseExact:!0,weekdays:\"S~\\xfa\\xf1d\\xe1~\\xfd_M\\xf3~\\xf1d\\xe1\\xfd~_T\\xfa\\xe9~sd\\xe1\\xfd~_W\\xe9d~\\xf1\\xe9sd~\\xe1\\xfd_T~h\\xfars~d\\xe1\\xfd_~Fr\\xedd~\\xe1\\xfd_S~\\xe1t\\xfar~d\\xe1\\xfd\".split(\"_\"),weekdaysShort:\"S~\\xfa\\xf1_~M\\xf3\\xf1_~T\\xfa\\xe9_~W\\xe9d_~Th\\xfa_~Fr\\xed_~S\\xe1t\".split(\"_\"),weekdaysMin:\"S~\\xfa_M\\xf3~_T\\xfa_~W\\xe9_T~h_Fr~_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[T~\\xf3d\\xe1~\\xfd \\xe1t] LT\",nextDay:\"[T~\\xf3m\\xf3~rr\\xf3~w \\xe1t] LT\",nextWeek:\"dddd [\\xe1t] LT\",lastDay:\"[\\xdd~\\xe9st~\\xe9rd\\xe1~\\xfd \\xe1t] LT\",lastWeek:\"[L~\\xe1st] dddd [\\xe1t] LT\",sameElse:\"L\"},relativeTime:{future:\"\\xed~\\xf1 %s\",past:\"%s \\xe1~g\\xf3\",s:\"\\xe1 ~f\\xe9w ~s\\xe9c\\xf3~\\xf1ds\",ss:\"%d s~\\xe9c\\xf3\\xf1~ds\",m:\"\\xe1 ~m\\xed\\xf1~\\xfat\\xe9\",mm:\"%d m~\\xed\\xf1\\xfa~t\\xe9s\",h:\"\\xe1~\\xf1 h\\xf3~\\xfar\",hh:\"%d h~\\xf3\\xfars\",d:\"\\xe1 ~d\\xe1\\xfd\",dd:\"%d d~\\xe1\\xfds\",M:\"\\xe1 ~m\\xf3\\xf1~th\",MM:\"%d m~\\xf3\\xf1t~hs\",y:\"\\xe1 ~\\xfd\\xe9\\xe1r\",yy:\"%d \\xfd~\\xe9\\xe1rs\"},dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},0:function(e,t,n){e.exports=n(\"zUnb\")},\"0mo+\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0f21\",2:\"\\u0f22\",3:\"\\u0f23\",4:\"\\u0f24\",5:\"\\u0f25\",6:\"\\u0f26\",7:\"\\u0f27\",8:\"\\u0f28\",9:\"\\u0f29\",0:\"\\u0f20\"},n={\"\\u0f21\":\"1\",\"\\u0f22\":\"2\",\"\\u0f23\":\"3\",\"\\u0f24\":\"4\",\"\\u0f25\":\"5\",\"\\u0f26\":\"6\",\"\\u0f27\":\"7\",\"\\u0f28\":\"8\",\"\\u0f29\":\"9\",\"\\u0f20\":\"0\"};e.defineLocale(\"bo\",{months:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f44\\u0f0b\\u0f54\\u0f7c_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f66\\u0f74\\u0f58\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f5e\\u0f72\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f63\\u0f94\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0fb2\\u0f74\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f62\\u0f92\\u0fb1\\u0f51\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f42\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54\".split(\"_\"),monthsShort:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f44\\u0f0b\\u0f54\\u0f7c_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f66\\u0f74\\u0f58\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f5e\\u0f72\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f63\\u0f94\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0fb2\\u0f74\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f62\\u0f92\\u0fb1\\u0f51\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f42\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54\".split(\"_\"),weekdays:\"\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),weekdaysShort:\"\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),weekdaysMin:\"\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0f51\\u0f72\\u0f0b\\u0f62\\u0f72\\u0f44] LT\",nextDay:\"[\\u0f66\\u0f44\\u0f0b\\u0f49\\u0f72\\u0f53] LT\",nextWeek:\"[\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f55\\u0fb2\\u0f42\\u0f0b\\u0f62\\u0f97\\u0f7a\\u0f66\\u0f0b\\u0f58], LT\",lastDay:\"[\\u0f41\\u0f0b\\u0f66\\u0f44] LT\",lastWeek:\"[\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f55\\u0fb2\\u0f42\\u0f0b\\u0f58\\u0f50\\u0f60\\u0f0b\\u0f58] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0f63\\u0f0b\",past:\"%s \\u0f66\\u0f94\\u0f53\\u0f0b\\u0f63\",s:\"\\u0f63\\u0f58\\u0f0b\\u0f66\\u0f44\",ss:\"%d \\u0f66\\u0f90\\u0f62\\u0f0b\\u0f46\\u0f0d\",m:\"\\u0f66\\u0f90\\u0f62\\u0f0b\\u0f58\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",mm:\"%d \\u0f66\\u0f90\\u0f62\\u0f0b\\u0f58\",h:\"\\u0f46\\u0f74\\u0f0b\\u0f5a\\u0f7c\\u0f51\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",hh:\"%d \\u0f46\\u0f74\\u0f0b\\u0f5a\\u0f7c\\u0f51\",d:\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",dd:\"%d \\u0f49\\u0f72\\u0f53\\u0f0b\",M:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",MM:\"%d \\u0f5f\\u0fb3\\u0f0b\\u0f56\",y:\"\\u0f63\\u0f7c\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",yy:\"%d \\u0f63\\u0f7c\"},preparse:function(e){return e.replace(/[\\u0f21\\u0f22\\u0f23\\u0f24\\u0f25\\u0f26\\u0f27\\u0f28\\u0f29\\u0f20]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c|\\u0f5e\\u0f7c\\u0f42\\u0f66\\u0f0b\\u0f40\\u0f66|\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44|\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42|\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\"===t&&e>=4||\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44\"===t&&e<5||\"\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\":e<10?\"\\u0f5e\\u0f7c\\u0f42\\u0f66\\u0f0b\\u0f40\\u0f66\":e<17?\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44\":e<20?\"\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42\":\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"0tRk\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt-br\",{months:\"Janeiro_Fevereiro_Mar\\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingo_Segunda-feira_Ter\\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\\xe1bado\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ter_Qua_Qui_Sex_S\\xe1b\".split(\"_\"),weekdaysMin:\"Do_2\\xaa_3\\xaa_4\\xaa_5\\xaa_6\\xaa_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY [\\xe0s] HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY [\\xe0s] HH:mm\"},calendar:{sameDay:\"[Hoje \\xe0s] LT\",nextDay:\"[Amanh\\xe3 \\xe0s] LT\",nextWeek:\"dddd [\\xe0s] LT\",lastDay:\"[Ontem \\xe0s] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[\\xdaltimo] dddd [\\xe0s] LT\":\"[\\xdaltima] dddd [\\xe0s] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"h\\xe1 %s\",s:\"poucos segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",M:\"um m\\xeas\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\"})}(n(\"wd/R\"))},\"1rYy\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"hy-am\",{months:{format:\"\\u0570\\u0578\\u0582\\u0576\\u057e\\u0561\\u0580\\u056b_\\u0583\\u0565\\u057f\\u0580\\u057e\\u0561\\u0580\\u056b_\\u0574\\u0561\\u0580\\u057f\\u056b_\\u0561\\u057a\\u0580\\u056b\\u056c\\u056b_\\u0574\\u0561\\u0575\\u056b\\u057d\\u056b_\\u0570\\u0578\\u0582\\u0576\\u056b\\u057d\\u056b_\\u0570\\u0578\\u0582\\u056c\\u056b\\u057d\\u056b_\\u0585\\u0563\\u0578\\u057d\\u057f\\u0578\\u057d\\u056b_\\u057d\\u0565\\u057a\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0570\\u0578\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0576\\u0578\\u0575\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0564\\u0565\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b\".split(\"_\"),standalone:\"\\u0570\\u0578\\u0582\\u0576\\u057e\\u0561\\u0580_\\u0583\\u0565\\u057f\\u0580\\u057e\\u0561\\u0580_\\u0574\\u0561\\u0580\\u057f_\\u0561\\u057a\\u0580\\u056b\\u056c_\\u0574\\u0561\\u0575\\u056b\\u057d_\\u0570\\u0578\\u0582\\u0576\\u056b\\u057d_\\u0570\\u0578\\u0582\\u056c\\u056b\\u057d_\\u0585\\u0563\\u0578\\u057d\\u057f\\u0578\\u057d_\\u057d\\u0565\\u057a\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0570\\u0578\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0576\\u0578\\u0575\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0564\\u0565\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\".split(\"_\")},monthsShort:\"\\u0570\\u0576\\u057e_\\u0583\\u057f\\u0580_\\u0574\\u0580\\u057f_\\u0561\\u057a\\u0580_\\u0574\\u0575\\u057d_\\u0570\\u0576\\u057d_\\u0570\\u056c\\u057d_\\u0585\\u0563\\u057d_\\u057d\\u057a\\u057f_\\u0570\\u056f\\u057f_\\u0576\\u0574\\u0562_\\u0564\\u056f\\u057f\".split(\"_\"),weekdays:\"\\u056f\\u056b\\u0580\\u0561\\u056f\\u056b_\\u0565\\u0580\\u056f\\u0578\\u0582\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0565\\u0580\\u0565\\u0584\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0579\\u0578\\u0580\\u0565\\u0584\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0570\\u056b\\u0576\\u0563\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0578\\u0582\\u0580\\u0562\\u0561\\u0569_\\u0577\\u0561\\u0562\\u0561\\u0569\".split(\"_\"),weekdaysShort:\"\\u056f\\u0580\\u056f_\\u0565\\u0580\\u056f_\\u0565\\u0580\\u0584_\\u0579\\u0580\\u0584_\\u0570\\u0576\\u0563_\\u0578\\u0582\\u0580\\u0562_\\u0577\\u0562\\u0569\".split(\"_\"),weekdaysMin:\"\\u056f\\u0580\\u056f_\\u0565\\u0580\\u056f_\\u0565\\u0580\\u0584_\\u0579\\u0580\\u0584_\\u0570\\u0576\\u0563_\\u0578\\u0582\\u0580\\u0562_\\u0577\\u0562\\u0569\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0569.\",LLL:\"D MMMM YYYY \\u0569., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0569., HH:mm\"},calendar:{sameDay:\"[\\u0561\\u0575\\u057d\\u0585\\u0580] LT\",nextDay:\"[\\u057e\\u0561\\u0572\\u0568] LT\",lastDay:\"[\\u0565\\u0580\\u0565\\u056f] LT\",nextWeek:function(){return\"dddd [\\u0585\\u0580\\u0568 \\u056a\\u0561\\u0574\\u0568] LT\"},lastWeek:function(){return\"[\\u0561\\u0576\\u0581\\u0561\\u056e] dddd [\\u0585\\u0580\\u0568 \\u056a\\u0561\\u0574\\u0568] LT\"},sameElse:\"L\"},relativeTime:{future:\"%s \\u0570\\u0565\\u057f\\u0578\",past:\"%s \\u0561\\u057c\\u0561\\u057b\",s:\"\\u0574\\u056b \\u0584\\u0561\\u0576\\u056b \\u057e\\u0561\\u0575\\u0580\\u056f\\u0575\\u0561\\u0576\",ss:\"%d \\u057e\\u0561\\u0575\\u0580\\u056f\\u0575\\u0561\\u0576\",m:\"\\u0580\\u0578\\u057a\\u0565\",mm:\"%d \\u0580\\u0578\\u057a\\u0565\",h:\"\\u056a\\u0561\\u0574\",hh:\"%d \\u056a\\u0561\\u0574\",d:\"\\u0585\\u0580\",dd:\"%d \\u0585\\u0580\",M:\"\\u0561\\u0574\\u056b\\u057d\",MM:\"%d \\u0561\\u0574\\u056b\\u057d\",y:\"\\u057f\\u0561\\u0580\\u056b\",yy:\"%d \\u057f\\u0561\\u0580\\u056b\"},meridiemParse:/\\u0563\\u056b\\u0577\\u0565\\u0580\\u057e\\u0561|\\u0561\\u057c\\u0561\\u057e\\u0578\\u057f\\u057e\\u0561|\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561|\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576/,isPM:function(e){return/^(\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561|\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576)$/.test(e)},meridiem:function(e){return e<4?\"\\u0563\\u056b\\u0577\\u0565\\u0580\\u057e\\u0561\":e<12?\"\\u0561\\u057c\\u0561\\u057e\\u0578\\u057f\\u057e\\u0561\":e<17?\"\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561\":\"\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576\"},dayOfMonthOrdinalParse:/\\d{1,2}|\\d{1,2}-(\\u056b\\u0576|\\u0580\\u0564)/,ordinal:function(e,t){switch(t){case\"DDD\":case\"w\":case\"W\":case\"DDDo\":return 1===e?e+\"-\\u056b\\u0576\":e+\"-\\u0580\\u0564\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"1xZ4\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ca\",{months:{standalone:\"gener_febrer_mar\\xe7_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre\".split(\"_\"),format:\"de gener_de febrer_de mar\\xe7_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre\".split(\"_\"),isFormat:/D[oD]?(\\s)+MMMM/},monthsShort:\"gen._febr._mar\\xe7_abr._maig_juny_jul._ag._set._oct._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte\".split(\"_\"),weekdaysShort:\"dg._dl._dt._dc._dj._dv._ds.\".split(\"_\"),weekdaysMin:\"dg_dl_dt_dc_dj_dv_ds\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [de] YYYY\",ll:\"D MMM YYYY\",LLL:\"D MMMM [de] YYYY [a les] H:mm\",lll:\"D MMM YYYY, H:mm\",LLLL:\"dddd D MMMM [de] YYYY [a les] H:mm\",llll:\"ddd D MMM YYYY, H:mm\"},calendar:{sameDay:function(){return\"[avui a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextDay:function(){return\"[dem\\xe0 a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextWeek:function(){return\"dddd [a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastDay:function(){return\"[ahir a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [passat a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"d'aqu\\xed %s\",past:\"fa %s\",s:\"uns segons\",ss:\"%d segons\",m:\"un minut\",mm:\"%d minuts\",h:\"una hora\",hh:\"%d hores\",d:\"un dia\",dd:\"%d dies\",M:\"un mes\",MM:\"%d mesos\",y:\"un any\",yy:\"%d anys\"},dayOfMonthOrdinalParse:/\\d{1,2}(r|n|t|\\xe8|a)/,ordinal:function(e,t){var n=1===e?\"r\":2===e?\"n\":3===e?\"r\":4===e?\"t\":\"\\xe8\";return\"w\"!==t&&\"W\"!==t||(n=\"a\"),e+n},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"2fjn\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ca\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}}})}(n(\"wd/R\"))},\"2ykv\":function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),n=\"jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),i=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],s=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\\.?|feb\\.?|mrt\\.?|apr\\.?|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i;e.defineLocale(\"nl-be\",{months:\"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\\.?|feb\\.?|mrt\\.?|apr\\.?|mei|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag\".split(\"_\"),weekdaysShort:\"zo._ma._di._wo._do._vr._za.\".split(\"_\"),weekdaysMin:\"zo_ma_di_wo_do_vr_za\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[vandaag om] LT\",nextDay:\"[morgen om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[gisteren om] LT\",lastWeek:\"[afgelopen] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"over %s\",past:\"%s geleden\",s:\"een paar seconden\",ss:\"%d seconden\",m:\"\\xe9\\xe9n minuut\",mm:\"%d minuten\",h:\"\\xe9\\xe9n uur\",hh:\"%d uur\",d:\"\\xe9\\xe9n dag\",dd:\"%d dagen\",M:\"\\xe9\\xe9n maand\",MM:\"%d maanden\",y:\"\\xe9\\xe9n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"3E1r\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};e.defineLocale(\"hi\",{months:\"\\u091c\\u0928\\u0935\\u0930\\u0940_\\u092b\\u093c\\u0930\\u0935\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u0948\\u0932_\\u092e\\u0908_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908_\\u0905\\u0917\\u0938\\u094d\\u0924_\\u0938\\u093f\\u0924\\u092e\\u094d\\u092c\\u0930_\\u0905\\u0915\\u094d\\u091f\\u0942\\u092c\\u0930_\\u0928\\u0935\\u092e\\u094d\\u092c\\u0930_\\u0926\\u093f\\u0938\\u092e\\u094d\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u0928._\\u092b\\u093c\\u0930._\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u0948._\\u092e\\u0908_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932._\\u0905\\u0917._\\u0938\\u093f\\u0924._\\u0905\\u0915\\u094d\\u091f\\u0942._\\u0928\\u0935._\\u0926\\u093f\\u0938.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0930\\u0935\\u093f\\u0935\\u093e\\u0930_\\u0938\\u094b\\u092e\\u0935\\u093e\\u0930_\\u092e\\u0902\\u0917\\u0932\\u0935\\u093e\\u0930_\\u092c\\u0941\\u0927\\u0935\\u093e\\u0930_\\u0917\\u0941\\u0930\\u0942\\u0935\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u0935\\u093e\\u0930_\\u0936\\u0928\\u093f\\u0935\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0930\\u0935\\u093f_\\u0938\\u094b\\u092e_\\u092e\\u0902\\u0917\\u0932_\\u092c\\u0941\\u0927_\\u0917\\u0941\\u0930\\u0942_\\u0936\\u0941\\u0915\\u094d\\u0930_\\u0936\\u0928\\u093f\".split(\"_\"),weekdaysMin:\"\\u0930_\\u0938\\u094b_\\u092e\\u0902_\\u092c\\u0941_\\u0917\\u0941_\\u0936\\u0941_\\u0936\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u092c\\u091c\\u0947\",LTS:\"A h:mm:ss \\u092c\\u091c\\u0947\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u092c\\u091c\\u0947\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u092c\\u091c\\u0947\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u0915\\u0932] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0915\\u0932] LT\",lastWeek:\"[\\u092a\\u093f\\u091b\\u0932\\u0947] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u092e\\u0947\\u0902\",past:\"%s \\u092a\\u0939\\u0932\\u0947\",s:\"\\u0915\\u0941\\u091b \\u0939\\u0940 \\u0915\\u094d\\u0937\\u0923\",ss:\"%d \\u0938\\u0947\\u0915\\u0902\\u0921\",m:\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u091f\",mm:\"%d \\u092e\\u093f\\u0928\\u091f\",h:\"\\u090f\\u0915 \\u0918\\u0902\\u091f\\u093e\",hh:\"%d \\u0918\\u0902\\u091f\\u0947\",d:\"\\u090f\\u0915 \\u0926\\u093f\\u0928\",dd:\"%d \\u0926\\u093f\\u0928\",M:\"\\u090f\\u0915 \\u092e\\u0939\\u0940\\u0928\\u0947\",MM:\"%d \\u092e\\u0939\\u0940\\u0928\\u0947\",y:\"\\u090f\\u0915 \\u0935\\u0930\\u094d\\u0937\",yy:\"%d \\u0935\\u0930\\u094d\\u0937\"},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924|\\u0938\\u0941\\u092c\\u0939|\\u0926\\u094b\\u092a\\u0939\\u0930|\\u0936\\u093e\\u092e/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\"===t?e<4?e:e+12:\"\\u0938\\u0941\\u092c\\u0939\"===t?e:\"\\u0926\\u094b\\u092a\\u0939\\u0930\"===t?e>=10?e:e+12:\"\\u0936\\u093e\\u092e\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0930\\u093e\\u0924\":e<10?\"\\u0938\\u0941\\u092c\\u0939\":e<17?\"\\u0926\\u094b\\u092a\\u0939\\u0930\":e<20?\"\\u0936\\u093e\\u092e\":\"\\u0930\\u093e\\u0924\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"4MV3\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0ae7\",2:\"\\u0ae8\",3:\"\\u0ae9\",4:\"\\u0aea\",5:\"\\u0aeb\",6:\"\\u0aec\",7:\"\\u0aed\",8:\"\\u0aee\",9:\"\\u0aef\",0:\"\\u0ae6\"},n={\"\\u0ae7\":\"1\",\"\\u0ae8\":\"2\",\"\\u0ae9\":\"3\",\"\\u0aea\":\"4\",\"\\u0aeb\":\"5\",\"\\u0aec\":\"6\",\"\\u0aed\":\"7\",\"\\u0aee\":\"8\",\"\\u0aef\":\"9\",\"\\u0ae6\":\"0\"};e.defineLocale(\"gu\",{months:\"\\u0a9c\\u0abe\\u0aa8\\u0acd\\u0aaf\\u0ac1\\u0a86\\u0ab0\\u0ac0_\\u0aab\\u0ac7\\u0aac\\u0acd\\u0ab0\\u0ac1\\u0a86\\u0ab0\\u0ac0_\\u0aae\\u0abe\\u0ab0\\u0acd\\u0a9a_\\u0a8f\\u0aaa\\u0acd\\u0ab0\\u0abf\\u0ab2_\\u0aae\\u0ac7_\\u0a9c\\u0ac2\\u0aa8_\\u0a9c\\u0ac1\\u0ab2\\u0abe\\u0a88_\\u0a91\\u0a97\\u0ab8\\u0acd\\u0a9f_\\u0ab8\\u0aaa\\u0acd\\u0a9f\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0_\\u0a91\\u0a95\\u0acd\\u0a9f\\u0acd\\u0aac\\u0ab0_\\u0aa8\\u0ab5\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0_\\u0aa1\\u0abf\\u0ab8\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0\".split(\"_\"),monthsShort:\"\\u0a9c\\u0abe\\u0aa8\\u0acd\\u0aaf\\u0ac1._\\u0aab\\u0ac7\\u0aac\\u0acd\\u0ab0\\u0ac1._\\u0aae\\u0abe\\u0ab0\\u0acd\\u0a9a_\\u0a8f\\u0aaa\\u0acd\\u0ab0\\u0abf._\\u0aae\\u0ac7_\\u0a9c\\u0ac2\\u0aa8_\\u0a9c\\u0ac1\\u0ab2\\u0abe._\\u0a91\\u0a97._\\u0ab8\\u0aaa\\u0acd\\u0a9f\\u0ac7._\\u0a91\\u0a95\\u0acd\\u0a9f\\u0acd._\\u0aa8\\u0ab5\\u0ac7._\\u0aa1\\u0abf\\u0ab8\\u0ac7.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0ab0\\u0ab5\\u0abf\\u0ab5\\u0abe\\u0ab0_\\u0ab8\\u0acb\\u0aae\\u0ab5\\u0abe\\u0ab0_\\u0aae\\u0a82\\u0a97\\u0ab3\\u0ab5\\u0abe\\u0ab0_\\u0aac\\u0ac1\\u0aa7\\u0acd\\u0ab5\\u0abe\\u0ab0_\\u0a97\\u0ac1\\u0ab0\\u0ac1\\u0ab5\\u0abe\\u0ab0_\\u0ab6\\u0ac1\\u0a95\\u0acd\\u0ab0\\u0ab5\\u0abe\\u0ab0_\\u0ab6\\u0aa8\\u0abf\\u0ab5\\u0abe\\u0ab0\".split(\"_\"),weekdaysShort:\"\\u0ab0\\u0ab5\\u0abf_\\u0ab8\\u0acb\\u0aae_\\u0aae\\u0a82\\u0a97\\u0ab3_\\u0aac\\u0ac1\\u0aa7\\u0acd_\\u0a97\\u0ac1\\u0ab0\\u0ac1_\\u0ab6\\u0ac1\\u0a95\\u0acd\\u0ab0_\\u0ab6\\u0aa8\\u0abf\".split(\"_\"),weekdaysMin:\"\\u0ab0_\\u0ab8\\u0acb_\\u0aae\\u0a82_\\u0aac\\u0ac1_\\u0a97\\u0ac1_\\u0ab6\\u0ac1_\\u0ab6\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",LTS:\"A h:mm:ss \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\"},calendar:{sameDay:\"[\\u0a86\\u0a9c] LT\",nextDay:\"[\\u0a95\\u0abe\\u0ab2\\u0ac7] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0a97\\u0a87\\u0a95\\u0abe\\u0ab2\\u0ac7] LT\",lastWeek:\"[\\u0aaa\\u0abe\\u0a9b\\u0ab2\\u0abe] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0aae\\u0abe\",past:\"%s \\u0aaa\\u0ac7\\u0ab9\\u0ab2\\u0abe\",s:\"\\u0a85\\u0aae\\u0ac1\\u0a95 \\u0aaa\\u0ab3\\u0acb\",ss:\"%d \\u0ab8\\u0ac7\\u0a95\\u0a82\\u0aa1\",m:\"\\u0a8f\\u0a95 \\u0aae\\u0abf\\u0aa8\\u0abf\\u0a9f\",mm:\"%d \\u0aae\\u0abf\\u0aa8\\u0abf\\u0a9f\",h:\"\\u0a8f\\u0a95 \\u0a95\\u0ab2\\u0abe\\u0a95\",hh:\"%d \\u0a95\\u0ab2\\u0abe\\u0a95\",d:\"\\u0a8f\\u0a95 \\u0aa6\\u0abf\\u0ab5\\u0ab8\",dd:\"%d \\u0aa6\\u0abf\\u0ab5\\u0ab8\",M:\"\\u0a8f\\u0a95 \\u0aae\\u0ab9\\u0abf\\u0aa8\\u0acb\",MM:\"%d \\u0aae\\u0ab9\\u0abf\\u0aa8\\u0acb\",y:\"\\u0a8f\\u0a95 \\u0ab5\\u0ab0\\u0acd\\u0ab7\",yy:\"%d \\u0ab5\\u0ab0\\u0acd\\u0ab7\"},preparse:function(e){return e.replace(/[\\u0ae7\\u0ae8\\u0ae9\\u0aea\\u0aeb\\u0aec\\u0aed\\u0aee\\u0aef\\u0ae6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0ab0\\u0abe\\u0aa4|\\u0aac\\u0aaa\\u0acb\\u0ab0|\\u0ab8\\u0ab5\\u0abe\\u0ab0|\\u0ab8\\u0abe\\u0a82\\u0a9c/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0ab0\\u0abe\\u0aa4\"===t?e<4?e:e+12:\"\\u0ab8\\u0ab5\\u0abe\\u0ab0\"===t?e:\"\\u0aac\\u0aaa\\u0acb\\u0ab0\"===t?e>=10?e:e+12:\"\\u0ab8\\u0abe\\u0a82\\u0a9c\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0ab0\\u0abe\\u0aa4\":e<10?\"\\u0ab8\\u0ab5\\u0abe\\u0ab0\":e<17?\"\\u0aac\\u0aaa\\u0acb\\u0ab0\":e<20?\"\\u0ab8\\u0abe\\u0a82\\u0a9c\":\"\\u0ab0\\u0abe\\u0aa4\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"4dOw\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ie\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"6+QB\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"6B0Y\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u17e1\",2:\"\\u17e2\",3:\"\\u17e3\",4:\"\\u17e4\",5:\"\\u17e5\",6:\"\\u17e6\",7:\"\\u17e7\",8:\"\\u17e8\",9:\"\\u17e9\",0:\"\\u17e0\"},n={\"\\u17e1\":\"1\",\"\\u17e2\":\"2\",\"\\u17e3\":\"3\",\"\\u17e4\":\"4\",\"\\u17e5\":\"5\",\"\\u17e6\":\"6\",\"\\u17e7\":\"7\",\"\\u17e8\":\"8\",\"\\u17e9\":\"9\",\"\\u17e0\":\"0\"};e.defineLocale(\"km\",{months:\"\\u1798\\u1780\\u179a\\u17b6_\\u1780\\u17bb\\u1798\\u17d2\\u1797\\u17c8_\\u1798\\u17b8\\u1793\\u17b6_\\u1798\\u17c1\\u179f\\u17b6_\\u17a7\\u179f\\u1797\\u17b6_\\u1798\\u17b7\\u1790\\u17bb\\u1793\\u17b6_\\u1780\\u1780\\u17d2\\u1780\\u178a\\u17b6_\\u179f\\u17b8\\u17a0\\u17b6_\\u1780\\u1789\\u17d2\\u1789\\u17b6_\\u178f\\u17bb\\u179b\\u17b6_\\u179c\\u17b7\\u1785\\u17d2\\u1786\\u17b7\\u1780\\u17b6_\\u1792\\u17d2\\u1793\\u17bc\".split(\"_\"),monthsShort:\"\\u1798\\u1780\\u179a\\u17b6_\\u1780\\u17bb\\u1798\\u17d2\\u1797\\u17c8_\\u1798\\u17b8\\u1793\\u17b6_\\u1798\\u17c1\\u179f\\u17b6_\\u17a7\\u179f\\u1797\\u17b6_\\u1798\\u17b7\\u1790\\u17bb\\u1793\\u17b6_\\u1780\\u1780\\u17d2\\u1780\\u178a\\u17b6_\\u179f\\u17b8\\u17a0\\u17b6_\\u1780\\u1789\\u17d2\\u1789\\u17b6_\\u178f\\u17bb\\u179b\\u17b6_\\u179c\\u17b7\\u1785\\u17d2\\u1786\\u17b7\\u1780\\u17b6_\\u1792\\u17d2\\u1793\\u17bc\".split(\"_\"),weekdays:\"\\u17a2\\u17b6\\u1791\\u17b7\\u178f\\u17d2\\u1799_\\u1785\\u17d0\\u1793\\u17d2\\u1791_\\u17a2\\u1784\\u17d2\\u1782\\u17b6\\u179a_\\u1796\\u17bb\\u1792_\\u1796\\u17d2\\u179a\\u17a0\\u179f\\u17d2\\u1794\\u178f\\u17b7\\u17cd_\\u179f\\u17bb\\u1780\\u17d2\\u179a_\\u179f\\u17c5\\u179a\\u17cd\".split(\"_\"),weekdaysShort:\"\\u17a2\\u17b6_\\u1785_\\u17a2_\\u1796_\\u1796\\u17d2\\u179a_\\u179f\\u17bb_\\u179f\".split(\"_\"),weekdaysMin:\"\\u17a2\\u17b6_\\u1785_\\u17a2_\\u1796_\\u1796\\u17d2\\u179a_\\u179f\\u17bb_\\u179f\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u1796\\u17d2\\u179a\\u17b9\\u1780|\\u179b\\u17d2\\u1784\\u17b6\\u1785/,isPM:function(e){return\"\\u179b\\u17d2\\u1784\\u17b6\\u1785\"===e},meridiem:function(e,t,n){return e<12?\"\\u1796\\u17d2\\u179a\\u17b9\\u1780\":\"\\u179b\\u17d2\\u1784\\u17b6\\u1785\"},calendar:{sameDay:\"[\\u1790\\u17d2\\u1784\\u17c3\\u1793\\u17c1\\u17c7 \\u1798\\u17c9\\u17c4\\u1784] LT\",nextDay:\"[\\u179f\\u17d2\\u17a2\\u17c2\\u1780 \\u1798\\u17c9\\u17c4\\u1784] LT\",nextWeek:\"dddd [\\u1798\\u17c9\\u17c4\\u1784] LT\",lastDay:\"[\\u1798\\u17d2\\u179f\\u17b7\\u179b\\u1798\\u17b7\\u1789 \\u1798\\u17c9\\u17c4\\u1784] LT\",lastWeek:\"dddd [\\u179f\\u1794\\u17d2\\u178f\\u17b6\\u17a0\\u17cd\\u1798\\u17bb\\u1793] [\\u1798\\u17c9\\u17c4\\u1784] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u1791\\u17c0\\u178f\",past:\"%s\\u1798\\u17bb\\u1793\",s:\"\\u1794\\u17c9\\u17bb\\u1793\\u17d2\\u1798\\u17b6\\u1793\\u179c\\u17b7\\u1793\\u17b6\\u1791\\u17b8\",ss:\"%d \\u179c\\u17b7\\u1793\\u17b6\\u1791\\u17b8\",m:\"\\u1798\\u17bd\\u1799\\u1793\\u17b6\\u1791\\u17b8\",mm:\"%d \\u1793\\u17b6\\u1791\\u17b8\",h:\"\\u1798\\u17bd\\u1799\\u1798\\u17c9\\u17c4\\u1784\",hh:\"%d \\u1798\\u17c9\\u17c4\\u1784\",d:\"\\u1798\\u17bd\\u1799\\u1790\\u17d2\\u1784\\u17c3\",dd:\"%d \\u1790\\u17d2\\u1784\\u17c3\",M:\"\\u1798\\u17bd\\u1799\\u1781\\u17c2\",MM:\"%d \\u1781\\u17c2\",y:\"\\u1798\\u17bd\\u1799\\u1786\\u17d2\\u1793\\u17b6\\u17c6\",yy:\"%d \\u1786\\u17d2\\u1793\\u17b6\\u17c6\"},dayOfMonthOrdinalParse:/\\u1791\\u17b8\\d{1,2}/,ordinal:\"\\u1791\\u17b8%d\",preparse:function(e){return e.replace(/[\\u17e1\\u17e2\\u17e3\\u17e4\\u17e5\\u17e6\\u17e7\\u17e8\\u17e9\\u17e0]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"7BjC\":function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={s:[\"m\\xf5ne sekundi\",\"m\\xf5ni sekund\",\"paar sekundit\"],ss:[e+\"sekundi\",e+\"sekundit\"],m:[\"\\xfche minuti\",\"\\xfcks minut\"],mm:[e+\" minuti\",e+\" minutit\"],h:[\"\\xfche tunni\",\"tund aega\",\"\\xfcks tund\"],hh:[e+\" tunni\",e+\" tundi\"],d:[\"\\xfche p\\xe4eva\",\"\\xfcks p\\xe4ev\"],M:[\"kuu aja\",\"kuu aega\",\"\\xfcks kuu\"],MM:[e+\" kuu\",e+\" kuud\"],y:[\"\\xfche aasta\",\"aasta\",\"\\xfcks aasta\"],yy:[e+\" aasta\",e+\" aastat\"]};return t?s[n][2]?s[n][2]:s[n][1]:i?s[n][0]:s[n][1]}e.defineLocale(\"et\",{months:\"jaanuar_veebruar_m\\xe4rts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember\".split(\"_\"),monthsShort:\"jaan_veebr_m\\xe4rts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets\".split(\"_\"),weekdays:\"p\\xfchap\\xe4ev_esmasp\\xe4ev_teisip\\xe4ev_kolmap\\xe4ev_neljap\\xe4ev_reede_laup\\xe4ev\".split(\"_\"),weekdaysShort:\"P_E_T_K_N_R_L\".split(\"_\"),weekdaysMin:\"P_E_T_K_N_R_L\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[T\\xe4na,] LT\",nextDay:\"[Homme,] LT\",nextWeek:\"[J\\xe4rgmine] dddd LT\",lastDay:\"[Eile,] LT\",lastWeek:\"[Eelmine] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s p\\xe4rast\",past:\"%s tagasi\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:\"%d p\\xe4eva\",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"7aV9\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"si\",{months:\"\\u0da2\\u0db1\\u0dc0\\u0dcf\\u0dbb\\u0dd2_\\u0db4\\u0dd9\\u0db6\\u0dbb\\u0dc0\\u0dcf\\u0dbb\\u0dd2_\\u0db8\\u0dcf\\u0dbb\\u0dca\\u0dad\\u0dd4_\\u0d85\\u0db4\\u0dca\\u200d\\u0dbb\\u0dda\\u0dbd\\u0dca_\\u0db8\\u0dd0\\u0dba\\u0dd2_\\u0da2\\u0dd6\\u0db1\\u0dd2_\\u0da2\\u0dd6\\u0dbd\\u0dd2_\\u0d85\\u0d9c\\u0ddd\\u0dc3\\u0dca\\u0dad\\u0dd4_\\u0dc3\\u0dd0\\u0db4\\u0dca\\u0dad\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca_\\u0d94\\u0d9a\\u0dca\\u0dad\\u0ddd\\u0db6\\u0dbb\\u0dca_\\u0db1\\u0ddc\\u0dc0\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca_\\u0daf\\u0dd9\\u0dc3\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca\".split(\"_\"),monthsShort:\"\\u0da2\\u0db1_\\u0db4\\u0dd9\\u0db6_\\u0db8\\u0dcf\\u0dbb\\u0dca_\\u0d85\\u0db4\\u0dca_\\u0db8\\u0dd0\\u0dba\\u0dd2_\\u0da2\\u0dd6\\u0db1\\u0dd2_\\u0da2\\u0dd6\\u0dbd\\u0dd2_\\u0d85\\u0d9c\\u0ddd_\\u0dc3\\u0dd0\\u0db4\\u0dca_\\u0d94\\u0d9a\\u0dca_\\u0db1\\u0ddc\\u0dc0\\u0dd0_\\u0daf\\u0dd9\\u0dc3\\u0dd0\".split(\"_\"),weekdays:\"\\u0d89\\u0dbb\\u0dd2\\u0daf\\u0dcf_\\u0dc3\\u0db3\\u0dd4\\u0daf\\u0dcf_\\u0d85\\u0d9f\\u0dc4\\u0dbb\\u0dd4\\u0dc0\\u0dcf\\u0daf\\u0dcf_\\u0db6\\u0daf\\u0dcf\\u0daf\\u0dcf_\\u0db6\\u0dca\\u200d\\u0dbb\\u0dc4\\u0dc3\\u0dca\\u0db4\\u0dad\\u0dd2\\u0db1\\u0dca\\u0daf\\u0dcf_\\u0dc3\\u0dd2\\u0d9a\\u0dd4\\u0dbb\\u0dcf\\u0daf\\u0dcf_\\u0dc3\\u0dd9\\u0db1\\u0dc3\\u0dd4\\u0dbb\\u0dcf\\u0daf\\u0dcf\".split(\"_\"),weekdaysShort:\"\\u0d89\\u0dbb\\u0dd2_\\u0dc3\\u0db3\\u0dd4_\\u0d85\\u0d9f_\\u0db6\\u0daf\\u0dcf_\\u0db6\\u0dca\\u200d\\u0dbb\\u0dc4_\\u0dc3\\u0dd2\\u0d9a\\u0dd4_\\u0dc3\\u0dd9\\u0db1\".split(\"_\"),weekdaysMin:\"\\u0d89_\\u0dc3_\\u0d85_\\u0db6_\\u0db6\\u0dca\\u200d\\u0dbb_\\u0dc3\\u0dd2_\\u0dc3\\u0dd9\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"a h:mm\",LTS:\"a h:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY MMMM D\",LLL:\"YYYY MMMM D, a h:mm\",LLLL:\"YYYY MMMM D [\\u0dc0\\u0dd0\\u0db1\\u0dd2] dddd, a h:mm:ss\"},calendar:{sameDay:\"[\\u0d85\\u0daf] LT[\\u0da7]\",nextDay:\"[\\u0dc4\\u0dd9\\u0da7] LT[\\u0da7]\",nextWeek:\"dddd LT[\\u0da7]\",lastDay:\"[\\u0d8a\\u0dba\\u0dda] LT[\\u0da7]\",lastWeek:\"[\\u0db4\\u0dc3\\u0dd4\\u0d9c\\u0dd2\\u0dba] dddd LT[\\u0da7]\",sameElse:\"L\"},relativeTime:{future:\"%s\\u0d9a\\u0dd2\\u0db1\\u0dca\",past:\"%s\\u0d9a\\u0da7 \\u0db4\\u0dd9\\u0dbb\",s:\"\\u0dad\\u0dad\\u0dca\\u0db4\\u0dbb \\u0d9a\\u0dd2\\u0dc4\\u0dd2\\u0db4\\u0dba\",ss:\"\\u0dad\\u0dad\\u0dca\\u0db4\\u0dbb %d\",m:\"\\u0db8\\u0dd2\\u0db1\\u0dd2\\u0dad\\u0dca\\u0dad\\u0dd4\\u0dc0\",mm:\"\\u0db8\\u0dd2\\u0db1\\u0dd2\\u0dad\\u0dca\\u0dad\\u0dd4 %d\",h:\"\\u0db4\\u0dd0\\u0dba\",hh:\"\\u0db4\\u0dd0\\u0dba %d\",d:\"\\u0daf\\u0dd2\\u0db1\\u0dba\",dd:\"\\u0daf\\u0dd2\\u0db1 %d\",M:\"\\u0db8\\u0dcf\\u0dc3\\u0dba\",MM:\"\\u0db8\\u0dcf\\u0dc3 %d\",y:\"\\u0dc0\\u0dc3\\u0dbb\",yy:\"\\u0dc0\\u0dc3\\u0dbb %d\"},dayOfMonthOrdinalParse:/\\d{1,2} \\u0dc0\\u0dd0\\u0db1\\u0dd2/,ordinal:function(e){return e+\" \\u0dc0\\u0dd0\\u0db1\\u0dd2\"},meridiemParse:/\\u0db4\\u0dd9\\u0dbb \\u0dc0\\u0dbb\\u0dd4|\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4|\\u0db4\\u0dd9.\\u0dc0|\\u0db4.\\u0dc0./,isPM:function(e){return\"\\u0db4.\\u0dc0.\"===e||\"\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4\"===e},meridiem:function(e,t,n){return e>11?n?\"\\u0db4.\\u0dc0.\":\"\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4\":n?\"\\u0db4\\u0dd9.\\u0dc0.\":\"\\u0db4\\u0dd9\\u0dbb \\u0dc0\\u0dbb\\u0dd4\"}})}(n(\"wd/R\"))},\"8/+R\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0a67\",2:\"\\u0a68\",3:\"\\u0a69\",4:\"\\u0a6a\",5:\"\\u0a6b\",6:\"\\u0a6c\",7:\"\\u0a6d\",8:\"\\u0a6e\",9:\"\\u0a6f\",0:\"\\u0a66\"},n={\"\\u0a67\":\"1\",\"\\u0a68\":\"2\",\"\\u0a69\":\"3\",\"\\u0a6a\":\"4\",\"\\u0a6b\":\"5\",\"\\u0a6c\":\"6\",\"\\u0a6d\":\"7\",\"\\u0a6e\":\"8\",\"\\u0a6f\":\"9\",\"\\u0a66\":\"0\"};e.defineLocale(\"pa-in\",{months:\"\\u0a1c\\u0a28\\u0a35\\u0a30\\u0a40_\\u0a2b\\u0a3c\\u0a30\\u0a35\\u0a30\\u0a40_\\u0a2e\\u0a3e\\u0a30\\u0a1a_\\u0a05\\u0a2a\\u0a4d\\u0a30\\u0a48\\u0a32_\\u0a2e\\u0a08_\\u0a1c\\u0a42\\u0a28_\\u0a1c\\u0a41\\u0a32\\u0a3e\\u0a08_\\u0a05\\u0a17\\u0a38\\u0a24_\\u0a38\\u0a24\\u0a70\\u0a2c\\u0a30_\\u0a05\\u0a15\\u0a24\\u0a42\\u0a2c\\u0a30_\\u0a28\\u0a35\\u0a70\\u0a2c\\u0a30_\\u0a26\\u0a38\\u0a70\\u0a2c\\u0a30\".split(\"_\"),monthsShort:\"\\u0a1c\\u0a28\\u0a35\\u0a30\\u0a40_\\u0a2b\\u0a3c\\u0a30\\u0a35\\u0a30\\u0a40_\\u0a2e\\u0a3e\\u0a30\\u0a1a_\\u0a05\\u0a2a\\u0a4d\\u0a30\\u0a48\\u0a32_\\u0a2e\\u0a08_\\u0a1c\\u0a42\\u0a28_\\u0a1c\\u0a41\\u0a32\\u0a3e\\u0a08_\\u0a05\\u0a17\\u0a38\\u0a24_\\u0a38\\u0a24\\u0a70\\u0a2c\\u0a30_\\u0a05\\u0a15\\u0a24\\u0a42\\u0a2c\\u0a30_\\u0a28\\u0a35\\u0a70\\u0a2c\\u0a30_\\u0a26\\u0a38\\u0a70\\u0a2c\\u0a30\".split(\"_\"),weekdays:\"\\u0a10\\u0a24\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a4b\\u0a2e\\u0a35\\u0a3e\\u0a30_\\u0a2e\\u0a70\\u0a17\\u0a32\\u0a35\\u0a3e\\u0a30_\\u0a2c\\u0a41\\u0a27\\u0a35\\u0a3e\\u0a30_\\u0a35\\u0a40\\u0a30\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a71\\u0a15\\u0a30\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\\u0a1a\\u0a30\\u0a35\\u0a3e\\u0a30\".split(\"_\"),weekdaysShort:\"\\u0a10\\u0a24_\\u0a38\\u0a4b\\u0a2e_\\u0a2e\\u0a70\\u0a17\\u0a32_\\u0a2c\\u0a41\\u0a27_\\u0a35\\u0a40\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a15\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\".split(\"_\"),weekdaysMin:\"\\u0a10\\u0a24_\\u0a38\\u0a4b\\u0a2e_\\u0a2e\\u0a70\\u0a17\\u0a32_\\u0a2c\\u0a41\\u0a27_\\u0a35\\u0a40\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a15\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0a35\\u0a1c\\u0a47\",LTS:\"A h:mm:ss \\u0a35\\u0a1c\\u0a47\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0a35\\u0a1c\\u0a47\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0a35\\u0a1c\\u0a47\"},calendar:{sameDay:\"[\\u0a05\\u0a1c] LT\",nextDay:\"[\\u0a15\\u0a32] LT\",nextWeek:\"[\\u0a05\\u0a17\\u0a32\\u0a3e] dddd, LT\",lastDay:\"[\\u0a15\\u0a32] LT\",lastWeek:\"[\\u0a2a\\u0a3f\\u0a1b\\u0a32\\u0a47] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0a35\\u0a3f\\u0a71\\u0a1a\",past:\"%s \\u0a2a\\u0a3f\\u0a1b\\u0a32\\u0a47\",s:\"\\u0a15\\u0a41\\u0a1d \\u0a38\\u0a15\\u0a3f\\u0a70\\u0a1f\",ss:\"%d \\u0a38\\u0a15\\u0a3f\\u0a70\\u0a1f\",m:\"\\u0a07\\u0a15 \\u0a2e\\u0a3f\\u0a70\\u0a1f\",mm:\"%d \\u0a2e\\u0a3f\\u0a70\\u0a1f\",h:\"\\u0a07\\u0a71\\u0a15 \\u0a18\\u0a70\\u0a1f\\u0a3e\",hh:\"%d \\u0a18\\u0a70\\u0a1f\\u0a47\",d:\"\\u0a07\\u0a71\\u0a15 \\u0a26\\u0a3f\\u0a28\",dd:\"%d \\u0a26\\u0a3f\\u0a28\",M:\"\\u0a07\\u0a71\\u0a15 \\u0a2e\\u0a39\\u0a40\\u0a28\\u0a3e\",MM:\"%d \\u0a2e\\u0a39\\u0a40\\u0a28\\u0a47\",y:\"\\u0a07\\u0a71\\u0a15 \\u0a38\\u0a3e\\u0a32\",yy:\"%d \\u0a38\\u0a3e\\u0a32\"},preparse:function(e){return e.replace(/[\\u0a67\\u0a68\\u0a69\\u0a6a\\u0a6b\\u0a6c\\u0a6d\\u0a6e\\u0a6f\\u0a66]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0a30\\u0a3e\\u0a24|\\u0a38\\u0a35\\u0a47\\u0a30|\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30|\\u0a38\\u0a3c\\u0a3e\\u0a2e/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0a30\\u0a3e\\u0a24\"===t?e<4?e:e+12:\"\\u0a38\\u0a35\\u0a47\\u0a30\"===t?e:\"\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30\"===t?e>=10?e:e+12:\"\\u0a38\\u0a3c\\u0a3e\\u0a2e\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0a30\\u0a3e\\u0a24\":e<10?\"\\u0a38\\u0a35\\u0a47\\u0a30\":e<17?\"\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30\":e<20?\"\\u0a38\\u0a3c\\u0a3e\\u0a2e\":\"\\u0a30\\u0a3e\\u0a24\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"8mBD\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt\",{months:\"Janeiro_Fevereiro_Mar\\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingo_Segunda-feira_Ter\\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\\xe1bado\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ter_Qua_Qui_Sex_S\\xe1b\".split(\"_\"),weekdaysMin:\"Do_2\\xaa_3\\xaa_4\\xaa_5\\xaa_6\\xaa_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY HH:mm\"},calendar:{sameDay:\"[Hoje \\xe0s] LT\",nextDay:\"[Amanh\\xe3 \\xe0s] LT\",nextWeek:\"dddd [\\xe0s] LT\",lastDay:\"[Ontem \\xe0s] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[\\xdaltimo] dddd [\\xe0s] LT\":\"[\\xdaltima] dddd [\\xe0s] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"h\\xe1 %s\",s:\"segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",M:\"um m\\xeas\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"9rRi\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"gd\",{months:[\"Am Faoilleach\",\"An Gearran\",\"Am M\\xe0rt\",\"An Giblean\",\"An C\\xe8itean\",\"An t-\\xd2gmhios\",\"An t-Iuchar\",\"An L\\xf9nastal\",\"An t-Sultain\",\"An D\\xe0mhair\",\"An t-Samhain\",\"An D\\xf9bhlachd\"],monthsShort:[\"Faoi\",\"Gear\",\"M\\xe0rt\",\"Gibl\",\"C\\xe8it\",\"\\xd2gmh\",\"Iuch\",\"L\\xf9n\",\"Sult\",\"D\\xe0mh\",\"Samh\",\"D\\xf9bh\"],monthsParseExact:!0,weekdays:[\"Did\\xf2mhnaich\",\"Diluain\",\"Dim\\xe0irt\",\"Diciadain\",\"Diardaoin\",\"Dihaoine\",\"Disathairne\"],weekdaysShort:[\"Did\",\"Dil\",\"Dim\",\"Dic\",\"Dia\",\"Dih\",\"Dis\"],weekdaysMin:[\"D\\xf2\",\"Lu\",\"M\\xe0\",\"Ci\",\"Ar\",\"Ha\",\"Sa\"],longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[An-diugh aig] LT\",nextDay:\"[A-m\\xe0ireach aig] LT\",nextWeek:\"dddd [aig] LT\",lastDay:\"[An-d\\xe8 aig] LT\",lastWeek:\"dddd [seo chaidh] [aig] LT\",sameElse:\"L\"},relativeTime:{future:\"ann an %s\",past:\"bho chionn %s\",s:\"beagan diogan\",ss:\"%d diogan\",m:\"mionaid\",mm:\"%d mionaidean\",h:\"uair\",hh:\"%d uairean\",d:\"latha\",dd:\"%d latha\",M:\"m\\xecos\",MM:\"%d m\\xecosan\",y:\"bliadhna\",yy:\"%d bliadhna\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"A+xa\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cv\",{months:\"\\u043a\\u04d1\\u0440\\u043b\\u0430\\u0447_\\u043d\\u0430\\u0440\\u04d1\\u0441_\\u043f\\u0443\\u0448_\\u0430\\u043a\\u0430_\\u043c\\u0430\\u0439_\\u04ab\\u04d7\\u0440\\u0442\\u043c\\u0435_\\u0443\\u0442\\u04d1_\\u04ab\\u0443\\u0440\\u043b\\u0430_\\u0430\\u0432\\u04d1\\u043d_\\u044e\\u043f\\u0430_\\u0447\\u04f3\\u043a_\\u0440\\u0430\\u0448\\u0442\\u0430\\u0432\".split(\"_\"),monthsShort:\"\\u043a\\u04d1\\u0440_\\u043d\\u0430\\u0440_\\u043f\\u0443\\u0448_\\u0430\\u043a\\u0430_\\u043c\\u0430\\u0439_\\u04ab\\u04d7\\u0440_\\u0443\\u0442\\u04d1_\\u04ab\\u0443\\u0440_\\u0430\\u0432\\u043d_\\u044e\\u043f\\u0430_\\u0447\\u04f3\\u043a_\\u0440\\u0430\\u0448\".split(\"_\"),weekdays:\"\\u0432\\u044b\\u0440\\u0441\\u0430\\u0440\\u043d\\u0438\\u043a\\u0443\\u043d_\\u0442\\u0443\\u043d\\u0442\\u0438\\u043a\\u0443\\u043d_\\u044b\\u0442\\u043b\\u0430\\u0440\\u0438\\u043a\\u0443\\u043d_\\u044e\\u043d\\u043a\\u0443\\u043d_\\u043a\\u04d7\\u04ab\\u043d\\u0435\\u0440\\u043d\\u0438\\u043a\\u0443\\u043d_\\u044d\\u0440\\u043d\\u0435\\u043a\\u0443\\u043d_\\u0448\\u04d1\\u043c\\u0430\\u0442\\u043a\\u0443\\u043d\".split(\"_\"),weekdaysShort:\"\\u0432\\u044b\\u0440_\\u0442\\u0443\\u043d_\\u044b\\u0442\\u043b_\\u044e\\u043d_\\u043a\\u04d7\\u04ab_\\u044d\\u0440\\u043d_\\u0448\\u04d1\\u043c\".split(\"_\"),weekdaysMin:\"\\u0432\\u0440_\\u0442\\u043d_\\u044b\\u0442_\\u044e\\u043d_\\u043a\\u04ab_\\u044d\\u0440_\\u0448\\u043c\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7]\",LLL:\"YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7], HH:mm\",LLLL:\"dddd, YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7], HH:mm\"},calendar:{sameDay:\"[\\u041f\\u0430\\u044f\\u043d] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",nextDay:\"[\\u042b\\u0440\\u0430\\u043d] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",lastDay:\"[\\u04d6\\u043d\\u0435\\u0440] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",nextWeek:\"[\\u04aa\\u0438\\u0442\\u0435\\u0441] dddd LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",lastWeek:\"[\\u0418\\u0440\\u0442\\u043d\\u04d7] dddd LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",sameElse:\"L\"},relativeTime:{future:function(e){return e+(/\\u0441\\u0435\\u0445\\u0435\\u0442$/i.exec(e)?\"\\u0440\\u0435\\u043d\":/\\u04ab\\u0443\\u043b$/i.exec(e)?\"\\u0442\\u0430\\u043d\":\"\\u0440\\u0430\\u043d\")},past:\"%s \\u043a\\u0430\\u044f\\u043b\\u043b\\u0430\",s:\"\\u043f\\u04d7\\u0440-\\u0438\\u043a \\u04ab\\u0435\\u043a\\u043a\\u0443\\u043d\\u0442\",ss:\"%d \\u04ab\\u0435\\u043a\\u043a\\u0443\\u043d\\u0442\",m:\"\\u043f\\u04d7\\u0440 \\u043c\\u0438\\u043d\\u0443\\u0442\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\",h:\"\\u043f\\u04d7\\u0440 \\u0441\\u0435\\u0445\\u0435\\u0442\",hh:\"%d \\u0441\\u0435\\u0445\\u0435\\u0442\",d:\"\\u043f\\u04d7\\u0440 \\u043a\\u0443\\u043d\",dd:\"%d \\u043a\\u0443\\u043d\",M:\"\\u043f\\u04d7\\u0440 \\u0443\\u0439\\u04d1\\u0445\",MM:\"%d \\u0443\\u0439\\u04d1\\u0445\",y:\"\\u043f\\u04d7\\u0440 \\u04ab\\u0443\\u043b\",yy:\"%d \\u04ab\\u0443\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-\\u043c\\u04d7\\u0448/,ordinal:\"%d-\\u043c\\u04d7\\u0448\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},AQ68:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz-latn\",{months:\"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr\".split(\"_\"),monthsShort:\"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek\".split(\"_\"),weekdays:\"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba\".split(\"_\"),weekdaysShort:\"Yak_Dush_Sesh_Chor_Pay_Jum_Shan\".split(\"_\"),weekdaysMin:\"Ya_Du_Se_Cho_Pa_Ju_Sha\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[Bugun soat] LT [da]\",nextDay:\"[Ertaga] LT [da]\",nextWeek:\"dddd [kuni soat] LT [da]\",lastDay:\"[Kecha soat] LT [da]\",lastWeek:\"[O'tgan] dddd [kuni soat] LT [da]\",sameElse:\"L\"},relativeTime:{future:\"Yaqin %s ichida\",past:\"Bir necha %s oldin\",s:\"soniya\",ss:\"%d soniya\",m:\"bir daqiqa\",mm:\"%d daqiqa\",h:\"bir soat\",hh:\"%d soat\",d:\"bir kun\",dd:\"%d kun\",M:\"bir oy\",MM:\"%d oy\",y:\"bir yil\",yy:\"%d yil\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},AvvY:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ml\",{months:\"\\u0d1c\\u0d28\\u0d41\\u0d35\\u0d30\\u0d3f_\\u0d2b\\u0d46\\u0d2c\\u0d4d\\u0d30\\u0d41\\u0d35\\u0d30\\u0d3f_\\u0d2e\\u0d3e\\u0d7c\\u0d1a\\u0d4d\\u0d1a\\u0d4d_\\u0d0f\\u0d2a\\u0d4d\\u0d30\\u0d3f\\u0d7d_\\u0d2e\\u0d47\\u0d2f\\u0d4d_\\u0d1c\\u0d42\\u0d7a_\\u0d1c\\u0d42\\u0d32\\u0d48_\\u0d13\\u0d17\\u0d38\\u0d4d\\u0d31\\u0d4d\\u0d31\\u0d4d_\\u0d38\\u0d46\\u0d2a\\u0d4d\\u0d31\\u0d4d\\u0d31\\u0d02\\u0d2c\\u0d7c_\\u0d12\\u0d15\\u0d4d\\u0d1f\\u0d4b\\u0d2c\\u0d7c_\\u0d28\\u0d35\\u0d02\\u0d2c\\u0d7c_\\u0d21\\u0d3f\\u0d38\\u0d02\\u0d2c\\u0d7c\".split(\"_\"),monthsShort:\"\\u0d1c\\u0d28\\u0d41._\\u0d2b\\u0d46\\u0d2c\\u0d4d\\u0d30\\u0d41._\\u0d2e\\u0d3e\\u0d7c._\\u0d0f\\u0d2a\\u0d4d\\u0d30\\u0d3f._\\u0d2e\\u0d47\\u0d2f\\u0d4d_\\u0d1c\\u0d42\\u0d7a_\\u0d1c\\u0d42\\u0d32\\u0d48._\\u0d13\\u0d17._\\u0d38\\u0d46\\u0d2a\\u0d4d\\u0d31\\u0d4d\\u0d31._\\u0d12\\u0d15\\u0d4d\\u0d1f\\u0d4b._\\u0d28\\u0d35\\u0d02._\\u0d21\\u0d3f\\u0d38\\u0d02.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0d1e\\u0d3e\\u0d2f\\u0d31\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d24\\u0d3f\\u0d19\\u0d4d\\u0d15\\u0d33\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d1a\\u0d4a\\u0d35\\u0d4d\\u0d35\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d2c\\u0d41\\u0d27\\u0d28\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d35\\u0d4d\\u0d2f\\u0d3e\\u0d34\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d35\\u0d46\\u0d33\\u0d4d\\u0d33\\u0d3f\\u0d2f\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d36\\u0d28\\u0d3f\\u0d2f\\u0d3e\\u0d34\\u0d4d\\u0d1a\".split(\"_\"),weekdaysShort:\"\\u0d1e\\u0d3e\\u0d2f\\u0d7c_\\u0d24\\u0d3f\\u0d19\\u0d4d\\u0d15\\u0d7e_\\u0d1a\\u0d4a\\u0d35\\u0d4d\\u0d35_\\u0d2c\\u0d41\\u0d27\\u0d7b_\\u0d35\\u0d4d\\u0d2f\\u0d3e\\u0d34\\u0d02_\\u0d35\\u0d46\\u0d33\\u0d4d\\u0d33\\u0d3f_\\u0d36\\u0d28\\u0d3f\".split(\"_\"),weekdaysMin:\"\\u0d1e\\u0d3e_\\u0d24\\u0d3f_\\u0d1a\\u0d4a_\\u0d2c\\u0d41_\\u0d35\\u0d4d\\u0d2f\\u0d3e_\\u0d35\\u0d46_\\u0d36\".split(\"_\"),longDateFormat:{LT:\"A h:mm -\\u0d28\\u0d41\",LTS:\"A h:mm:ss -\\u0d28\\u0d41\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm -\\u0d28\\u0d41\",LLLL:\"dddd, D MMMM YYYY, A h:mm -\\u0d28\\u0d41\"},calendar:{sameDay:\"[\\u0d07\\u0d28\\u0d4d\\u0d28\\u0d4d] LT\",nextDay:\"[\\u0d28\\u0d3e\\u0d33\\u0d46] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0d07\\u0d28\\u0d4d\\u0d28\\u0d32\\u0d46] LT\",lastWeek:\"[\\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\",past:\"%s \\u0d2e\\u0d41\\u0d7b\\u0d2a\\u0d4d\",s:\"\\u0d05\\u0d7d\\u0d2a \\u0d28\\u0d3f\\u0d2e\\u0d3f\\u0d37\\u0d19\\u0d4d\\u0d19\\u0d7e\",ss:\"%d \\u0d38\\u0d46\\u0d15\\u0d4d\\u0d15\\u0d7b\\u0d21\\u0d4d\",m:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d3f\\u0d28\\u0d3f\\u0d31\\u0d4d\\u0d31\\u0d4d\",mm:\"%d \\u0d2e\\u0d3f\\u0d28\\u0d3f\\u0d31\\u0d4d\\u0d31\\u0d4d\",h:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d23\\u0d3f\\u0d15\\u0d4d\\u0d15\\u0d42\\u0d7c\",hh:\"%d \\u0d2e\\u0d23\\u0d3f\\u0d15\\u0d4d\\u0d15\\u0d42\\u0d7c\",d:\"\\u0d12\\u0d30\\u0d41 \\u0d26\\u0d3f\\u0d35\\u0d38\\u0d02\",dd:\"%d \\u0d26\\u0d3f\\u0d35\\u0d38\\u0d02\",M:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d3e\\u0d38\\u0d02\",MM:\"%d \\u0d2e\\u0d3e\\u0d38\\u0d02\",y:\"\\u0d12\\u0d30\\u0d41 \\u0d35\\u0d7c\\u0d37\\u0d02\",yy:\"%d \\u0d35\\u0d7c\\u0d37\\u0d02\"},meridiemParse:/\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f|\\u0d30\\u0d3e\\u0d35\\u0d3f\\u0d32\\u0d46|\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d|\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02|\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f/i,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\"===t&&e>=4||\"\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\"===t||\"\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\":e<12?\"\\u0d30\\u0d3e\\u0d35\\u0d3f\\u0d32\\u0d46\":e<17?\"\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\":e<20?\"\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02\":\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\"}})}(n(\"wd/R\"))},B55N:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ja\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u65e5\\u66dc\\u65e5_\\u6708\\u66dc\\u65e5_\\u706b\\u66dc\\u65e5_\\u6c34\\u66dc\\u65e5_\\u6728\\u66dc\\u65e5_\\u91d1\\u66dc\\u65e5_\\u571f\\u66dc\\u65e5\".split(\"_\"),weekdaysShort:\"\\u65e5_\\u6708_\\u706b_\\u6c34_\\u6728_\\u91d1_\\u571f\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u6708_\\u706b_\\u6c34_\\u6728_\\u91d1_\\u571f\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5 dddd HH:mm\",l:\"YYYY/MM/DD\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5(ddd) HH:mm\"},meridiemParse:/\\u5348\\u524d|\\u5348\\u5f8c/i,isPM:function(e){return\"\\u5348\\u5f8c\"===e},meridiem:function(e,t,n){return e<12?\"\\u5348\\u524d\":\"\\u5348\\u5f8c\"},calendar:{sameDay:\"[\\u4eca\\u65e5] LT\",nextDay:\"[\\u660e\\u65e5] LT\",nextWeek:function(e){return e.week()12?e:e+12:\"sanje\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"rati\":e<12?\"sokalli\":e<16?\"donparam\":e<20?\"sanje\":\"rati\"}})}(n(\"wd/R\"))},Dkky:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ch\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Dmvi:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-au\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},DoHr:function(e,t,n){!function(e){\"use strict\";var t={1:\"'inci\",5:\"'inci\",8:\"'inci\",70:\"'inci\",80:\"'inci\",2:\"'nci\",7:\"'nci\",20:\"'nci\",50:\"'nci\",3:\"'\\xfcnc\\xfc\",4:\"'\\xfcnc\\xfc\",100:\"'\\xfcnc\\xfc\",6:\"'nc\\u0131\",9:\"'uncu\",10:\"'uncu\",30:\"'uncu\",60:\"'\\u0131nc\\u0131\",90:\"'\\u0131nc\\u0131\"};e.defineLocale(\"tr\",{months:\"Ocak_\\u015eubat_Mart_Nisan_May\\u0131s_Haziran_Temmuz_A\\u011fustos_Eyl\\xfcl_Ekim_Kas\\u0131m_Aral\\u0131k\".split(\"_\"),monthsShort:\"Oca_\\u015eub_Mar_Nis_May_Haz_Tem_A\\u011fu_Eyl_Eki_Kas_Ara\".split(\"_\"),weekdays:\"Pazar_Pazartesi_Sal\\u0131_\\xc7ar\\u015famba_Per\\u015fembe_Cuma_Cumartesi\".split(\"_\"),weekdaysShort:\"Paz_Pts_Sal_\\xc7ar_Per_Cum_Cts\".split(\"_\"),weekdaysMin:\"Pz_Pt_Sa_\\xc7a_Pe_Cu_Ct\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bug\\xfcn saat] LT\",nextDay:\"[yar\\u0131n saat] LT\",nextWeek:\"[gelecek] dddd [saat] LT\",lastDay:\"[d\\xfcn] LT\",lastWeek:\"[ge\\xe7en] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s \\xf6nce\",s:\"birka\\xe7 saniye\",ss:\"%d saniye\",m:\"bir dakika\",mm:\"%d dakika\",h:\"bir saat\",hh:\"%d saat\",d:\"bir g\\xfcn\",dd:\"%d g\\xfcn\",M:\"bir ay\",MM:\"%d ay\",y:\"bir y\\u0131l\",yy:\"%d y\\u0131l\"},ordinal:function(e,n){switch(n){case\"d\":case\"D\":case\"Do\":case\"DD\":return e;default:if(0===e)return e+\"'\\u0131nc\\u0131\";var i=e%10;return e+(t[i]||t[e%100-i]||t[e>=100?100:null])}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},DxQv:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"da\",{months:\"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"s\\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\\xf8rdag\".split(\"_\"),weekdaysShort:\"s\\xf8n_man_tir_ons_tor_fre_l\\xf8r\".split(\"_\"),weekdaysMin:\"s\\xf8_ma_ti_on_to_fr_l\\xf8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd [d.] D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"p\\xe5 dddd [kl.] LT\",lastDay:\"[i g\\xe5r kl.] LT\",lastWeek:\"[i] dddd[s kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"f\\xe5 sekunder\",ss:\"%d sekunder\",m:\"et minut\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dage\",M:\"en m\\xe5ned\",MM:\"%d m\\xe5neder\",y:\"et \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},Dzi0:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tl-ph\",{months:\"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre\".split(\"_\"),monthsShort:\"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis\".split(\"_\"),weekdays:\"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado\".split(\"_\"),weekdaysShort:\"Lin_Lun_Mar_Miy_Huw_Biy_Sab\".split(\"_\"),weekdaysMin:\"Li_Lu_Ma_Mi_Hu_Bi_Sab\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"MM/D/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY HH:mm\",LLLL:\"dddd, MMMM DD, YYYY HH:mm\"},calendar:{sameDay:\"LT [ngayong araw]\",nextDay:\"[Bukas ng] LT\",nextWeek:\"LT [sa susunod na] dddd\",lastDay:\"LT [kahapon]\",lastWeek:\"LT [noong nakaraang] dddd\",sameElse:\"L\"},relativeTime:{future:\"sa loob ng %s\",past:\"%s ang nakalipas\",s:\"ilang segundo\",ss:\"%d segundo\",m:\"isang minuto\",mm:\"%d minuto\",h:\"isang oras\",hh:\"%d oras\",d:\"isang araw\",dd:\"%d araw\",M:\"isang buwan\",MM:\"%d buwan\",y:\"isang taon\",yy:\"%d taon\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"E+lV\":function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430\",\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0435\",\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\"],m:[\"\\u0458\\u0435\\u0434\\u0430\\u043d \\u043c\\u0438\\u043d\\u0443\\u0442\",\"\\u0458\\u0435\\u0434\\u043d\\u0435 \\u043c\\u0438\\u043d\\u0443\\u0442\\u0435\"],mm:[\"\\u043c\\u0438\\u043d\\u0443\\u0442\",\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0435\",\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\"],h:[\"\\u0458\\u0435\\u0434\\u0430\\u043d \\u0441\\u0430\\u0442\",\"\\u0458\\u0435\\u0434\\u043d\\u043e\\u0433 \\u0441\\u0430\\u0442\\u0430\"],hh:[\"\\u0441\\u0430\\u0442\",\"\\u0441\\u0430\\u0442\\u0430\",\"\\u0441\\u0430\\u0442\\u0438\"],dd:[\"\\u0434\\u0430\\u043d\",\"\\u0434\\u0430\\u043d\\u0430\",\"\\u0434\\u0430\\u043d\\u0430\"],MM:[\"\\u043c\\u0435\\u0441\\u0435\\u0446\",\"\\u043c\\u0435\\u0441\\u0435\\u0446\\u0430\",\"\\u043c\\u0435\\u0441\\u0435\\u0446\\u0438\"],yy:[\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0435\",\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var s=t.words[i];return 1===i.length?n?s[0]:s[1]:e+\" \"+t.correctGrammaticalCase(e,s)}};e.defineLocale(\"sr-cyrl\",{months:\"\\u0458\\u0430\\u043d\\u0443\\u0430\\u0440_\\u0444\\u0435\\u0431\\u0440\\u0443\\u0430\\u0440_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0431\\u0430\\u0440_\\u043e\\u043a\\u0442\\u043e\\u0431\\u0430\\u0440_\\u043d\\u043e\\u0432\\u0435\\u043c\\u0431\\u0430\\u0440_\\u0434\\u0435\\u0446\\u0435\\u043c\\u0431\\u0430\\u0440\".split(\"_\"),monthsShort:\"\\u0458\\u0430\\u043d._\\u0444\\u0435\\u0431._\\u043c\\u0430\\u0440._\\u0430\\u043f\\u0440._\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043f._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u0432._\\u0434\\u0435\\u0446.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u0459\\u0430_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u0459\\u0430\\u043a_\\u0443\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u0430\\u043a_\\u043f\\u0435\\u0442\\u0430\\u043a_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434._\\u043f\\u043e\\u043d._\\u0443\\u0442\\u043e._\\u0441\\u0440\\u0435._\\u0447\\u0435\\u0442._\\u043f\\u0435\\u0442._\\u0441\\u0443\\u0431.\".split(\"_\"),weekdaysMin:\"\\u043d\\u0435_\\u043f\\u043e_\\u0443\\u0442_\\u0441\\u0440_\\u0447\\u0435_\\u043f\\u0435_\\u0441\\u0443\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0434\\u0430\\u043d\\u0430\\u0441 \\u0443] LT\",nextDay:\"[\\u0441\\u0443\\u0442\\u0440\\u0430 \\u0443] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[\\u0443] [\\u043d\\u0435\\u0434\\u0435\\u0459\\u0443] [\\u0443] LT\";case 3:return\"[\\u0443] [\\u0441\\u0440\\u0435\\u0434\\u0443] [\\u0443] LT\";case 6:return\"[\\u0443] [\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443] [\\u0443] LT\";case 1:case 2:case 4:case 5:return\"[\\u0443] dddd [\\u0443] LT\"}},lastDay:\"[\\u0458\\u0443\\u0447\\u0435 \\u0443] LT\",lastWeek:function(){return[\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u043d\\u0435\\u0434\\u0435\\u0459\\u0435] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u0459\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u0443\\u0442\\u043e\\u0440\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u0441\\u0440\\u0435\\u0434\\u0435] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u043f\\u0435\\u0442\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u0441\\u0443\\u0431\\u043e\\u0442\\u0435] [\\u0443] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"\\u0437\\u0430 %s\",past:\"\\u043f\\u0440\\u0435 %s\",s:\"\\u043d\\u0435\\u043a\\u043e\\u043b\\u0438\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"\\u0434\\u0430\\u043d\",dd:t.translate,M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:t.translate,y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},EOgW:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"th\",{months:\"\\u0e21\\u0e01\\u0e23\\u0e32\\u0e04\\u0e21_\\u0e01\\u0e38\\u0e21\\u0e20\\u0e32\\u0e1e\\u0e31\\u0e19\\u0e18\\u0e4c_\\u0e21\\u0e35\\u0e19\\u0e32\\u0e04\\u0e21_\\u0e40\\u0e21\\u0e29\\u0e32\\u0e22\\u0e19_\\u0e1e\\u0e24\\u0e29\\u0e20\\u0e32\\u0e04\\u0e21_\\u0e21\\u0e34\\u0e16\\u0e38\\u0e19\\u0e32\\u0e22\\u0e19_\\u0e01\\u0e23\\u0e01\\u0e0e\\u0e32\\u0e04\\u0e21_\\u0e2a\\u0e34\\u0e07\\u0e2b\\u0e32\\u0e04\\u0e21_\\u0e01\\u0e31\\u0e19\\u0e22\\u0e32\\u0e22\\u0e19_\\u0e15\\u0e38\\u0e25\\u0e32\\u0e04\\u0e21_\\u0e1e\\u0e24\\u0e28\\u0e08\\u0e34\\u0e01\\u0e32\\u0e22\\u0e19_\\u0e18\\u0e31\\u0e19\\u0e27\\u0e32\\u0e04\\u0e21\".split(\"_\"),monthsShort:\"\\u0e21.\\u0e04._\\u0e01.\\u0e1e._\\u0e21\\u0e35.\\u0e04._\\u0e40\\u0e21.\\u0e22._\\u0e1e.\\u0e04._\\u0e21\\u0e34.\\u0e22._\\u0e01.\\u0e04._\\u0e2a.\\u0e04._\\u0e01.\\u0e22._\\u0e15.\\u0e04._\\u0e1e.\\u0e22._\\u0e18.\\u0e04.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0e2d\\u0e32\\u0e17\\u0e34\\u0e15\\u0e22\\u0e4c_\\u0e08\\u0e31\\u0e19\\u0e17\\u0e23\\u0e4c_\\u0e2d\\u0e31\\u0e07\\u0e04\\u0e32\\u0e23_\\u0e1e\\u0e38\\u0e18_\\u0e1e\\u0e24\\u0e2b\\u0e31\\u0e2a\\u0e1a\\u0e14\\u0e35_\\u0e28\\u0e38\\u0e01\\u0e23\\u0e4c_\\u0e40\\u0e2a\\u0e32\\u0e23\\u0e4c\".split(\"_\"),weekdaysShort:\"\\u0e2d\\u0e32\\u0e17\\u0e34\\u0e15\\u0e22\\u0e4c_\\u0e08\\u0e31\\u0e19\\u0e17\\u0e23\\u0e4c_\\u0e2d\\u0e31\\u0e07\\u0e04\\u0e32\\u0e23_\\u0e1e\\u0e38\\u0e18_\\u0e1e\\u0e24\\u0e2b\\u0e31\\u0e2a_\\u0e28\\u0e38\\u0e01\\u0e23\\u0e4c_\\u0e40\\u0e2a\\u0e32\\u0e23\\u0e4c\".split(\"_\"),weekdaysMin:\"\\u0e2d\\u0e32._\\u0e08._\\u0e2d._\\u0e1e._\\u0e1e\\u0e24._\\u0e28._\\u0e2a.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY \\u0e40\\u0e27\\u0e25\\u0e32 H:mm\",LLLL:\"\\u0e27\\u0e31\\u0e19dddd\\u0e17\\u0e35\\u0e48 D MMMM YYYY \\u0e40\\u0e27\\u0e25\\u0e32 H:mm\"},meridiemParse:/\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07|\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07/,isPM:function(e){return\"\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\"===e},meridiem:function(e,t,n){return e<12?\"\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\":\"\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\"},calendar:{sameDay:\"[\\u0e27\\u0e31\\u0e19\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",nextDay:\"[\\u0e1e\\u0e23\\u0e38\\u0e48\\u0e07\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",nextWeek:\"dddd[\\u0e2b\\u0e19\\u0e49\\u0e32 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",lastDay:\"[\\u0e40\\u0e21\\u0e37\\u0e48\\u0e2d\\u0e27\\u0e32\\u0e19\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",lastWeek:\"[\\u0e27\\u0e31\\u0e19]dddd[\\u0e17\\u0e35\\u0e48\\u0e41\\u0e25\\u0e49\\u0e27 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0e2d\\u0e35\\u0e01 %s\",past:\"%s\\u0e17\\u0e35\\u0e48\\u0e41\\u0e25\\u0e49\\u0e27\",s:\"\\u0e44\\u0e21\\u0e48\\u0e01\\u0e35\\u0e48\\u0e27\\u0e34\\u0e19\\u0e32\\u0e17\\u0e35\",ss:\"%d \\u0e27\\u0e34\\u0e19\\u0e32\\u0e17\\u0e35\",m:\"1 \\u0e19\\u0e32\\u0e17\\u0e35\",mm:\"%d \\u0e19\\u0e32\\u0e17\\u0e35\",h:\"1 \\u0e0a\\u0e31\\u0e48\\u0e27\\u0e42\\u0e21\\u0e07\",hh:\"%d \\u0e0a\\u0e31\\u0e48\\u0e27\\u0e42\\u0e21\\u0e07\",d:\"1 \\u0e27\\u0e31\\u0e19\",dd:\"%d \\u0e27\\u0e31\\u0e19\",M:\"1 \\u0e40\\u0e14\\u0e37\\u0e2d\\u0e19\",MM:\"%d \\u0e40\\u0e14\\u0e37\\u0e2d\\u0e19\",y:\"1 \\u0e1b\\u0e35\",yy:\"%d \\u0e1b\\u0e35\"}})}(n(\"wd/R\"))},G0Uy:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mt\",{months:\"Jannar_Frar_Marzu_April_Mejju_\\u0120unju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Di\\u010bembru\".split(\"_\"),monthsShort:\"Jan_Fra_Mar_Apr_Mej_\\u0120un_Lul_Aww_Set_Ott_Nov_Di\\u010b\".split(\"_\"),weekdays:\"Il-\\u0126add_It-Tnejn_It-Tlieta_L-Erbg\\u0127a_Il-\\u0126amis_Il-\\u0120img\\u0127a_Is-Sibt\".split(\"_\"),weekdaysShort:\"\\u0126ad_Tne_Tli_Erb_\\u0126am_\\u0120im_Sib\".split(\"_\"),weekdaysMin:\"\\u0126a_Tn_Tl_Er_\\u0126a_\\u0120i_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Illum fil-]LT\",nextDay:\"[G\\u0127ada fil-]LT\",nextWeek:\"dddd [fil-]LT\",lastDay:\"[Il-biera\\u0127 fil-]LT\",lastWeek:\"dddd [li g\\u0127adda] [fil-]LT\",sameElse:\"L\"},relativeTime:{future:\"f\\u2019 %s\",past:\"%s ilu\",s:\"ftit sekondi\",ss:\"%d sekondi\",m:\"minuta\",mm:\"%d minuti\",h:\"sieg\\u0127a\",hh:\"%d sieg\\u0127at\",d:\"\\u0121urnata\",dd:\"%d \\u0121ranet\",M:\"xahar\",MM:\"%d xhur\",y:\"sena\",yy:\"%d sni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},H8ED:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i,s;return\"m\"===n?t?\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0430\":\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0443\":\"h\"===n?t?\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0430\":\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0443\":e+\" \"+(i=+e,s={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0430_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u044b_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\":\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0443_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u044b_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\",hh:t?\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0430_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u044b_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\":\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0443_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u044b_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\",dd:\"\\u0434\\u0437\\u0435\\u043d\\u044c_\\u0434\\u043d\\u0456_\\u0434\\u0437\\u0451\\u043d\",MM:\"\\u043c\\u0435\\u0441\\u044f\\u0446_\\u043c\\u0435\\u0441\\u044f\\u0446\\u044b_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0430\\u045e\",yy:\"\\u0433\\u043e\\u0434_\\u0433\\u0430\\u0434\\u044b_\\u0433\\u0430\\u0434\\u043e\\u045e\"}[n].split(\"_\"),i%10==1&&i%100!=11?s[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?s[1]:s[2])}e.defineLocale(\"be\",{months:{format:\"\\u0441\\u0442\\u0443\\u0434\\u0437\\u0435\\u043d\\u044f_\\u043b\\u044e\\u0442\\u0430\\u0433\\u0430_\\u0441\\u0430\\u043a\\u0430\\u0432\\u0456\\u043a\\u0430_\\u043a\\u0440\\u0430\\u0441\\u0430\\u0432\\u0456\\u043a\\u0430_\\u0442\\u0440\\u0430\\u045e\\u043d\\u044f_\\u0447\\u044d\\u0440\\u0432\\u0435\\u043d\\u044f_\\u043b\\u0456\\u043f\\u0435\\u043d\\u044f_\\u0436\\u043d\\u0456\\u045e\\u043d\\u044f_\\u0432\\u0435\\u0440\\u0430\\u0441\\u043d\\u044f_\\u043a\\u0430\\u0441\\u0442\\u0440\\u044b\\u0447\\u043d\\u0456\\u043a\\u0430_\\u043b\\u0456\\u0441\\u0442\\u0430\\u043f\\u0430\\u0434\\u0430_\\u0441\\u043d\\u0435\\u0436\\u043d\\u044f\".split(\"_\"),standalone:\"\\u0441\\u0442\\u0443\\u0434\\u0437\\u0435\\u043d\\u044c_\\u043b\\u044e\\u0442\\u044b_\\u0441\\u0430\\u043a\\u0430\\u0432\\u0456\\u043a_\\u043a\\u0440\\u0430\\u0441\\u0430\\u0432\\u0456\\u043a_\\u0442\\u0440\\u0430\\u0432\\u0435\\u043d\\u044c_\\u0447\\u044d\\u0440\\u0432\\u0435\\u043d\\u044c_\\u043b\\u0456\\u043f\\u0435\\u043d\\u044c_\\u0436\\u043d\\u0456\\u0432\\u0435\\u043d\\u044c_\\u0432\\u0435\\u0440\\u0430\\u0441\\u0435\\u043d\\u044c_\\u043a\\u0430\\u0441\\u0442\\u0440\\u044b\\u0447\\u043d\\u0456\\u043a_\\u043b\\u0456\\u0441\\u0442\\u0430\\u043f\\u0430\\u0434_\\u0441\\u043d\\u0435\\u0436\\u0430\\u043d\\u044c\".split(\"_\")},monthsShort:\"\\u0441\\u0442\\u0443\\u0434_\\u043b\\u044e\\u0442_\\u0441\\u0430\\u043a_\\u043a\\u0440\\u0430\\u0441_\\u0442\\u0440\\u0430\\u0432_\\u0447\\u044d\\u0440\\u0432_\\u043b\\u0456\\u043f_\\u0436\\u043d\\u0456\\u0432_\\u0432\\u0435\\u0440_\\u043a\\u0430\\u0441\\u0442_\\u043b\\u0456\\u0441\\u0442_\\u0441\\u043d\\u0435\\u0436\".split(\"_\"),weekdays:{format:\"\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u044e_\\u043f\\u0430\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u0430\\u043a_\\u0430\\u045e\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0435\\u0440\\u0430\\u0434\\u0443_\\u0447\\u0430\\u0446\\u0432\\u0435\\u0440_\\u043f\\u044f\\u0442\\u043d\\u0456\\u0446\\u0443_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),standalone:\"\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u044f_\\u043f\\u0430\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u0430\\u043a_\\u0430\\u045e\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0435\\u0440\\u0430\\u0434\\u0430_\\u0447\\u0430\\u0446\\u0432\\u0435\\u0440_\\u043f\\u044f\\u0442\\u043d\\u0456\\u0446\\u0430_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),isFormat:/\\[ ?[\\u0423\\u0443\\u045e] ?(?:\\u043c\\u0456\\u043d\\u0443\\u043b\\u0443\\u044e|\\u043d\\u0430\\u0441\\u0442\\u0443\\u043f\\u043d\\u0443\\u044e)? ?\\] ?dddd/},weekdaysShort:\"\\u043d\\u0434_\\u043f\\u043d_\\u0430\\u0442_\\u0441\\u0440_\\u0447\\u0446_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0430\\u0442_\\u0441\\u0440_\\u0447\\u0446_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0433.\",LLL:\"D MMMM YYYY \\u0433., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0433., HH:mm\"},calendar:{sameDay:\"[\\u0421\\u0451\\u043d\\u043d\\u044f \\u045e] LT\",nextDay:\"[\\u0417\\u0430\\u045e\\u0442\\u0440\\u0430 \\u045e] LT\",lastDay:\"[\\u0423\\u0447\\u043e\\u0440\\u0430 \\u045e] LT\",nextWeek:function(){return\"[\\u0423] dddd [\\u045e] LT\"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return\"[\\u0423 \\u043c\\u0456\\u043d\\u0443\\u043b\\u0443\\u044e] dddd [\\u045e] LT\";case 1:case 2:case 4:return\"[\\u0423 \\u043c\\u0456\\u043d\\u0443\\u043b\\u044b] dddd [\\u045e] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u043f\\u0440\\u0430\\u0437 %s\",past:\"%s \\u0442\\u0430\\u043c\\u0443\",s:\"\\u043d\\u0435\\u043a\\u0430\\u043b\\u044c\\u043a\\u0456 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:t,mm:t,h:t,hh:t,d:\"\\u0434\\u0437\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0435\\u0441\\u044f\\u0446\",MM:t,y:\"\\u0433\\u043e\\u0434\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u044b|\\u0440\\u0430\\u043d\\u0456\\u0446\\u044b|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430/,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u044b\":e<12?\"\\u0440\\u0430\\u043d\\u0456\\u0446\\u044b\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0456|\\u044b|\\u0433\\u0430)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e%10!=2&&e%10!=3||e%100==12||e%100==13?e+\"-\\u044b\":e+\"-\\u0456\";case\"D\":return e+\"-\\u0433\\u0430\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},HP3h:function(e,t,n){!function(e){\"use strict\";var t={1:\"1\",2:\"2\",3:\"3\",4:\"4\",5:\"5\",6:\"6\",7:\"7\",8:\"8\",9:\"9\",0:\"0\"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},i={s:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062b\\u0627\\u0646\\u064a\\u0629\",\"\\u062b\\u0627\\u0646\\u064a\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u0627\\u0646\",\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u064a\\u0646\"],\"%d \\u062b\\u0648\\u0627\\u0646\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\"],m:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062f\\u0642\\u064a\\u0642\\u0629\",\"\\u062f\\u0642\\u064a\\u0642\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u0627\\u0646\",\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u064a\\u0646\"],\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\"],h:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0633\\u0627\\u0639\\u0629\",\"\\u0633\\u0627\\u0639\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u0633\\u0627\\u0639\\u062a\\u0627\\u0646\",\"\\u0633\\u0627\\u0639\\u062a\\u064a\\u0646\"],\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",\"%d \\u0633\\u0627\\u0639\\u0629\",\"%d \\u0633\\u0627\\u0639\\u0629\"],d:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u064a\\u0648\\u0645\",\"\\u064a\\u0648\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u064a\\u0648\\u0645\\u0627\\u0646\",\"\\u064a\\u0648\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u064a\\u0627\\u0645\",\"%d \\u064a\\u0648\\u0645\\u064b\\u0627\",\"%d \\u064a\\u0648\\u0645\"],M:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0634\\u0647\\u0631\",\"\\u0634\\u0647\\u0631 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0634\\u0647\\u0631\\u0627\\u0646\",\"\\u0634\\u0647\\u0631\\u064a\\u0646\"],\"%d \\u0623\\u0634\\u0647\\u0631\",\"%d \\u0634\\u0647\\u0631\\u0627\",\"%d \\u0634\\u0647\\u0631\"],y:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0639\\u0627\\u0645\",\"\\u0639\\u0627\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0639\\u0627\\u0645\\u0627\\u0646\",\"\\u0639\\u0627\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u0639\\u0648\\u0627\\u0645\",\"%d \\u0639\\u0627\\u0645\\u064b\\u0627\",\"%d \\u0639\\u0627\\u0645\"]},s=function(e){return function(t,s,r,o){var a=n(t),l=i[e][n(t)];return 2===a&&(l=l[s?0:1]),l.replace(/%d/i,t)}},r=[\"\\u064a\\u0646\\u0627\\u064a\\u0631\",\"\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631\",\"\\u0645\\u0627\\u0631\\u0633\",\"\\u0623\\u0628\\u0631\\u064a\\u0644\",\"\\u0645\\u0627\\u064a\\u0648\",\"\\u064a\\u0648\\u0646\\u064a\\u0648\",\"\\u064a\\u0648\\u0644\\u064a\\u0648\",\"\\u0623\\u063a\\u0633\\u0637\\u0633\",\"\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631\",\"\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631\",\"\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\"];e.defineLocale(\"ar-ly\",{months:r,monthsShort:r,weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/\\u200fM/\\u200fYYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u064b\\u0627 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0628\\u0639\\u062f %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:s(\"s\"),ss:s(\"s\"),m:s(\"m\"),mm:s(\"m\"),h:s(\"h\"),hh:s(\"h\"),d:s(\"d\"),dd:s(\"d\"),M:s(\"M\"),MM:s(\"M\"),y:s(\"y\"),yy:s(\"y\")},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},IBtZ:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ka\",{months:{standalone:\"\\u10d8\\u10d0\\u10dc\\u10d5\\u10d0\\u10e0\\u10d8_\\u10d7\\u10d4\\u10d1\\u10d4\\u10e0\\u10d5\\u10d0\\u10da\\u10d8_\\u10db\\u10d0\\u10e0\\u10e2\\u10d8_\\u10d0\\u10de\\u10e0\\u10d8\\u10da\\u10d8_\\u10db\\u10d0\\u10d8\\u10e1\\u10d8_\\u10d8\\u10d5\\u10dc\\u10d8\\u10e1\\u10d8_\\u10d8\\u10d5\\u10da\\u10d8\\u10e1\\u10d8_\\u10d0\\u10d2\\u10d5\\u10d8\\u10e1\\u10e2\\u10dd_\\u10e1\\u10d4\\u10e5\\u10e2\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10dd\\u10e5\\u10e2\\u10dd\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10dc\\u10dd\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10d3\\u10d4\\u10d9\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8\".split(\"_\"),format:\"\\u10d8\\u10d0\\u10dc\\u10d5\\u10d0\\u10e0\\u10e1_\\u10d7\\u10d4\\u10d1\\u10d4\\u10e0\\u10d5\\u10d0\\u10da\\u10e1_\\u10db\\u10d0\\u10e0\\u10e2\\u10e1_\\u10d0\\u10de\\u10e0\\u10d8\\u10da\\u10d8\\u10e1_\\u10db\\u10d0\\u10d8\\u10e1\\u10e1_\\u10d8\\u10d5\\u10dc\\u10d8\\u10e1\\u10e1_\\u10d8\\u10d5\\u10da\\u10d8\\u10e1\\u10e1_\\u10d0\\u10d2\\u10d5\\u10d8\\u10e1\\u10e2\\u10e1_\\u10e1\\u10d4\\u10e5\\u10e2\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10dd\\u10e5\\u10e2\\u10dd\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10dc\\u10dd\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10d3\\u10d4\\u10d9\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1\".split(\"_\")},monthsShort:\"\\u10d8\\u10d0\\u10dc_\\u10d7\\u10d4\\u10d1_\\u10db\\u10d0\\u10e0_\\u10d0\\u10de\\u10e0_\\u10db\\u10d0\\u10d8_\\u10d8\\u10d5\\u10dc_\\u10d8\\u10d5\\u10da_\\u10d0\\u10d2\\u10d5_\\u10e1\\u10d4\\u10e5_\\u10dd\\u10e5\\u10e2_\\u10dc\\u10dd\\u10d4_\\u10d3\\u10d4\\u10d9\".split(\"_\"),weekdays:{standalone:\"\\u10d9\\u10d5\\u10d8\\u10e0\\u10d0_\\u10dd\\u10e0\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10e1\\u10d0\\u10db\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10dd\\u10d7\\u10ee\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10ee\\u10e3\\u10d7\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10de\\u10d0\\u10e0\\u10d0\\u10e1\\u10d9\\u10d4\\u10d5\\u10d8_\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8\".split(\"_\"),format:\"\\u10d9\\u10d5\\u10d8\\u10e0\\u10d0\\u10e1_\\u10dd\\u10e0\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10e1\\u10d0\\u10db\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10dd\\u10d7\\u10ee\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10ee\\u10e3\\u10d7\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10de\\u10d0\\u10e0\\u10d0\\u10e1\\u10d9\\u10d4\\u10d5\\u10e1_\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1\".split(\"_\"),isFormat:/(\\u10ec\\u10d8\\u10dc\\u10d0|\\u10e8\\u10d4\\u10db\\u10d3\\u10d4\\u10d2)/},weekdaysShort:\"\\u10d9\\u10d5\\u10d8_\\u10dd\\u10e0\\u10e8_\\u10e1\\u10d0\\u10db_\\u10dd\\u10d7\\u10ee_\\u10ee\\u10e3\\u10d7_\\u10de\\u10d0\\u10e0_\\u10e8\\u10d0\\u10d1\".split(\"_\"),weekdaysMin:\"\\u10d9\\u10d5_\\u10dd\\u10e0_\\u10e1\\u10d0_\\u10dd\\u10d7_\\u10ee\\u10e3_\\u10de\\u10d0_\\u10e8\\u10d0\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[\\u10d3\\u10e6\\u10d4\\u10e1] LT[-\\u10d6\\u10d4]\",nextDay:\"[\\u10ee\\u10d5\\u10d0\\u10da] LT[-\\u10d6\\u10d4]\",lastDay:\"[\\u10d2\\u10e3\\u10e8\\u10d8\\u10dc] LT[-\\u10d6\\u10d4]\",nextWeek:\"[\\u10e8\\u10d4\\u10db\\u10d3\\u10d4\\u10d2] dddd LT[-\\u10d6\\u10d4]\",lastWeek:\"[\\u10ec\\u10d8\\u10dc\\u10d0] dddd LT-\\u10d6\\u10d4\",sameElse:\"L\"},relativeTime:{future:function(e){return/(\\u10ec\\u10d0\\u10db\\u10d8|\\u10ec\\u10e3\\u10d7\\u10d8|\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8|\\u10ec\\u10d4\\u10da\\u10d8)/.test(e)?e.replace(/\\u10d8$/,\"\\u10e8\\u10d8\"):e+\"\\u10e8\\u10d8\"},past:function(e){return/(\\u10ec\\u10d0\\u10db\\u10d8|\\u10ec\\u10e3\\u10d7\\u10d8|\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8|\\u10d3\\u10e6\\u10d4|\\u10d7\\u10d5\\u10d4)/.test(e)?e.replace(/(\\u10d8|\\u10d4)$/,\"\\u10d8\\u10e1 \\u10ec\\u10d8\\u10dc\"):/\\u10ec\\u10d4\\u10da\\u10d8/.test(e)?e.replace(/\\u10ec\\u10d4\\u10da\\u10d8$/,\"\\u10ec\\u10da\\u10d8\\u10e1 \\u10ec\\u10d8\\u10dc\"):void 0},s:\"\\u10e0\\u10d0\\u10db\\u10d3\\u10d4\\u10dc\\u10d8\\u10db\\u10d4 \\u10ec\\u10d0\\u10db\\u10d8\",ss:\"%d \\u10ec\\u10d0\\u10db\\u10d8\",m:\"\\u10ec\\u10e3\\u10d7\\u10d8\",mm:\"%d \\u10ec\\u10e3\\u10d7\\u10d8\",h:\"\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8\",hh:\"%d \\u10e1\\u10d0\\u10d0\\u10d7\\u10d8\",d:\"\\u10d3\\u10e6\\u10d4\",dd:\"%d \\u10d3\\u10e6\\u10d4\",M:\"\\u10d7\\u10d5\\u10d4\",MM:\"%d \\u10d7\\u10d5\\u10d4\",y:\"\\u10ec\\u10d4\\u10da\\u10d8\",yy:\"%d \\u10ec\\u10d4\\u10da\\u10d8\"},dayOfMonthOrdinalParse:/0|1-\\u10da\\u10d8|\\u10db\\u10d4-\\d{1,2}|\\d{1,2}-\\u10d4/,ordinal:function(e){return 0===e?e:1===e?e+\"-\\u10da\\u10d8\":e<20||e<=100&&e%20==0||e%100==0?\"\\u10db\\u10d4-\"+e:e+\"-\\u10d4\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"Ivi+\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ko\",{months:\"1\\uc6d4_2\\uc6d4_3\\uc6d4_4\\uc6d4_5\\uc6d4_6\\uc6d4_7\\uc6d4_8\\uc6d4_9\\uc6d4_10\\uc6d4_11\\uc6d4_12\\uc6d4\".split(\"_\"),monthsShort:\"1\\uc6d4_2\\uc6d4_3\\uc6d4_4\\uc6d4_5\\uc6d4_6\\uc6d4_7\\uc6d4_8\\uc6d4_9\\uc6d4_10\\uc6d4_11\\uc6d4_12\\uc6d4\".split(\"_\"),weekdays:\"\\uc77c\\uc694\\uc77c_\\uc6d4\\uc694\\uc77c_\\ud654\\uc694\\uc77c_\\uc218\\uc694\\uc77c_\\ubaa9\\uc694\\uc77c_\\uae08\\uc694\\uc77c_\\ud1a0\\uc694\\uc77c\".split(\"_\"),weekdaysShort:\"\\uc77c_\\uc6d4_\\ud654_\\uc218_\\ubaa9_\\uae08_\\ud1a0\".split(\"_\"),weekdaysMin:\"\\uc77c_\\uc6d4_\\ud654_\\uc218_\\ubaa9_\\uae08_\\ud1a0\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY\\ub144 MMMM D\\uc77c\",LLL:\"YYYY\\ub144 MMMM D\\uc77c A h:mm\",LLLL:\"YYYY\\ub144 MMMM D\\uc77c dddd A h:mm\",l:\"YYYY.MM.DD.\",ll:\"YYYY\\ub144 MMMM D\\uc77c\",lll:\"YYYY\\ub144 MMMM D\\uc77c A h:mm\",llll:\"YYYY\\ub144 MMMM D\\uc77c dddd A h:mm\"},calendar:{sameDay:\"\\uc624\\ub298 LT\",nextDay:\"\\ub0b4\\uc77c LT\",nextWeek:\"dddd LT\",lastDay:\"\\uc5b4\\uc81c LT\",lastWeek:\"\\uc9c0\\ub09c\\uc8fc dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\ud6c4\",past:\"%s \\uc804\",s:\"\\uba87 \\ucd08\",ss:\"%d\\ucd08\",m:\"1\\ubd84\",mm:\"%d\\ubd84\",h:\"\\ud55c \\uc2dc\\uac04\",hh:\"%d\\uc2dc\\uac04\",d:\"\\ud558\\ub8e8\",dd:\"%d\\uc77c\",M:\"\\ud55c \\ub2ec\",MM:\"%d\\ub2ec\",y:\"\\uc77c \\ub144\",yy:\"%d\\ub144\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\uc77c|\\uc6d4|\\uc8fc)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\uc77c\";case\"M\":return e+\"\\uc6d4\";case\"w\":case\"W\":return e+\"\\uc8fc\";default:return e}},meridiemParse:/\\uc624\\uc804|\\uc624\\ud6c4/,isPM:function(e){return\"\\uc624\\ud6c4\"===e},meridiem:function(e,t,n){return e<12?\"\\uc624\\uc804\":\"\\uc624\\ud6c4\"}})}(n(\"wd/R\"))},\"JCF/\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"},i=[\"\\u06a9\\u0627\\u0646\\u0648\\u0646\\u06cc \\u062f\\u0648\\u0648\\u06d5\\u0645\",\"\\u0634\\u0648\\u0628\\u0627\\u062a\",\"\\u0626\\u0627\\u0632\\u0627\\u0631\",\"\\u0646\\u06cc\\u0633\\u0627\\u0646\",\"\\u0626\\u0627\\u06cc\\u0627\\u0631\",\"\\u062d\\u0648\\u0632\\u06d5\\u06cc\\u0631\\u0627\\u0646\",\"\\u062a\\u06d5\\u0645\\u0645\\u0648\\u0632\",\"\\u0626\\u0627\\u0628\",\"\\u0626\\u06d5\\u06cc\\u0644\\u0648\\u0648\\u0644\",\"\\u062a\\u0634\\u0631\\u06cc\\u0646\\u06cc \\u06cc\\u06d5\\u0643\\u06d5\\u0645\",\"\\u062a\\u0634\\u0631\\u06cc\\u0646\\u06cc \\u062f\\u0648\\u0648\\u06d5\\u0645\",\"\\u0643\\u0627\\u0646\\u0648\\u0646\\u06cc \\u06cc\\u06d5\\u06a9\\u06d5\\u0645\"];e.defineLocale(\"ku\",{months:i,monthsShort:i,weekdays:\"\\u06cc\\u0647\\u200c\\u0643\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u062f\\u0648\\u0648\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0633\\u06ce\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0686\\u0648\\u0627\\u0631\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u067e\\u06ce\\u0646\\u062c\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0647\\u0647\\u200c\\u06cc\\u0646\\u06cc_\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c\".split(\"_\"),weekdaysShort:\"\\u06cc\\u0647\\u200c\\u0643\\u0634\\u0647\\u200c\\u0645_\\u062f\\u0648\\u0648\\u0634\\u0647\\u200c\\u0645_\\u0633\\u06ce\\u0634\\u0647\\u200c\\u0645_\\u0686\\u0648\\u0627\\u0631\\u0634\\u0647\\u200c\\u0645_\\u067e\\u06ce\\u0646\\u062c\\u0634\\u0647\\u200c\\u0645_\\u0647\\u0647\\u200c\\u06cc\\u0646\\u06cc_\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c\".split(\"_\"),weekdaysMin:\"\\u06cc_\\u062f_\\u0633_\\u0686_\\u067e_\\u0647_\\u0634\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c|\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc/,isPM:function(e){return/\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c/.test(e)},meridiem:function(e,t,n){return e<12?\"\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc\":\"\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c\"},calendar:{sameDay:\"[\\u0626\\u0647\\u200c\\u0645\\u0631\\u06c6 \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",nextDay:\"[\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",nextWeek:\"dddd [\\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",lastDay:\"[\\u062f\\u0648\\u06ce\\u0646\\u06ce \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",lastWeek:\"dddd [\\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0644\\u0647\\u200c %s\",past:\"%s\",s:\"\\u0686\\u0647\\u200c\\u0646\\u062f \\u0686\\u0631\\u0643\\u0647\\u200c\\u06cc\\u0647\\u200c\\u0643\",ss:\"\\u0686\\u0631\\u0643\\u0647\\u200c %d\",m:\"\\u06cc\\u0647\\u200c\\u0643 \\u062e\\u0648\\u0644\\u0647\\u200c\\u0643\",mm:\"%d \\u062e\\u0648\\u0644\\u0647\\u200c\\u0643\",h:\"\\u06cc\\u0647\\u200c\\u0643 \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631\",hh:\"%d \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631\",d:\"\\u06cc\\u0647\\u200c\\u0643 \\u0695\\u06c6\\u0698\",dd:\"%d \\u0695\\u06c6\\u0698\",M:\"\\u06cc\\u0647\\u200c\\u0643 \\u0645\\u0627\\u0646\\u06af\",MM:\"%d \\u0645\\u0627\\u0646\\u06af\",y:\"\\u06cc\\u0647\\u200c\\u0643 \\u0633\\u0627\\u06b5\",yy:\"%d \\u0633\\u0627\\u06b5\"},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},JVSJ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i=e+\" \";switch(n){case\"ss\":return i+(1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\");case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return i+(1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\");case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return i+(1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\");case\"dd\":return i+(1===e?\"dan\":\"dana\");case\"MM\":return i+(1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\");case\"yy\":return i+(1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\")}}e.defineLocale(\"bs\",{months:\"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010der u] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:return\"[pro\\u0161lu] dddd [u] LT\";case 6:return\"[pro\\u0161le] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[pro\\u0161li] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},JvlW:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekund\\u0117_sekund\\u017ei\\u0173_sekundes\",m:\"minut\\u0117_minut\\u0117s_minut\\u0119\",mm:\"minut\\u0117s_minu\\u010di\\u0173_minutes\",h:\"valanda_valandos_valand\\u0105\",hh:\"valandos_valand\\u0173_valandas\",d:\"diena_dienos_dien\\u0105\",dd:\"dienos_dien\\u0173_dienas\",M:\"m\\u0117nuo_m\\u0117nesio_m\\u0117nes\\u012f\",MM:\"m\\u0117nesiai_m\\u0117nesi\\u0173_m\\u0117nesius\",y:\"metai_met\\u0173_metus\",yy:\"metai_met\\u0173_metus\"};function n(e,t,n,i){return t?s(n)[0]:i?s(n)[1]:s(n)[2]}function i(e){return e%10==0||e>10&&e<20}function s(e){return t[e].split(\"_\")}function r(e,t,r,o){var a=e+\" \";return 1===e?a+n(0,t,r[0],o):t?a+(i(e)?s(r)[1]:s(r)[0]):o?a+s(r)[1]:a+(i(e)?s(r)[1]:s(r)[2])}e.defineLocale(\"lt\",{months:{format:\"sausio_vasario_kovo_baland\\u017eio_gegu\\u017e\\u0117s_bir\\u017eelio_liepos_rugpj\\u016b\\u010dio_rugs\\u0117jo_spalio_lapkri\\u010dio_gruod\\u017eio\".split(\"_\"),standalone:\"sausis_vasaris_kovas_balandis_gegu\\u017e\\u0117_bir\\u017eelis_liepa_rugpj\\u016btis_rugs\\u0117jis_spalis_lapkritis_gruodis\".split(\"_\"),isFormat:/D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|MMMM?(\\[[^\\[\\]]*\\]|\\s)+D[oD]?/},monthsShort:\"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd\".split(\"_\"),weekdays:{format:\"sekmadien\\u012f_pirmadien\\u012f_antradien\\u012f_tre\\u010diadien\\u012f_ketvirtadien\\u012f_penktadien\\u012f_\\u0161e\\u0161tadien\\u012f\".split(\"_\"),standalone:\"sekmadienis_pirmadienis_antradienis_tre\\u010diadienis_ketvirtadienis_penktadienis_\\u0161e\\u0161tadienis\".split(\"_\"),isFormat:/dddd HH:mm/},weekdaysShort:\"Sek_Pir_Ant_Tre_Ket_Pen_\\u0160e\\u0161\".split(\"_\"),weekdaysMin:\"S_P_A_T_K_Pn_\\u0160\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY [m.] MMMM D [d.]\",LLL:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",LLLL:\"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]\",l:\"YYYY-MM-DD\",ll:\"YYYY [m.] MMMM D [d.]\",lll:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",llll:\"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]\"},calendar:{sameDay:\"[\\u0160iandien] LT\",nextDay:\"[Rytoj] LT\",nextWeek:\"dddd LT\",lastDay:\"[Vakar] LT\",lastWeek:\"[Pra\\u0117jus\\u012f] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"po %s\",past:\"prie\\u0161 %s\",s:function(e,t,n,i){return t?\"kelios sekund\\u0117s\":i?\"keli\\u0173 sekund\\u017ei\\u0173\":\"kelias sekundes\"},ss:r,m:n,mm:r,h:n,hh:r,d:n,dd:r,M:n,MM:r,y:n,yy:r},dayOfMonthOrdinalParse:/\\d{1,2}-oji/,ordinal:function(e){return e+\"-oji\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"K/tc\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"af\",{months:\"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag\".split(\"_\"),weekdaysShort:\"Son_Maa_Din_Woe_Don_Vry_Sat\".split(\"_\"),weekdaysMin:\"So_Ma_Di_Wo_Do_Vr_Sa\".split(\"_\"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"vm\":\"VM\":n?\"nm\":\"NM\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Vandag om] LT\",nextDay:\"[M\\xf4re om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[Gister om] LT\",lastWeek:\"[Laas] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oor %s\",past:\"%s gelede\",s:\"'n paar sekondes\",ss:\"%d sekondes\",m:\"'n minuut\",mm:\"%d minute\",h:\"'n uur\",hh:\"%d ure\",d:\"'n dag\",dd:\"%d dae\",M:\"'n maand\",MM:\"%d maande\",y:\"'n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},KSF8:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"vi\",{months:\"th\\xe1ng 1_th\\xe1ng 2_th\\xe1ng 3_th\\xe1ng 4_th\\xe1ng 5_th\\xe1ng 6_th\\xe1ng 7_th\\xe1ng 8_th\\xe1ng 9_th\\xe1ng 10_th\\xe1ng 11_th\\xe1ng 12\".split(\"_\"),monthsShort:\"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12\".split(\"_\"),monthsParseExact:!0,weekdays:\"ch\\u1ee7 nh\\u1eadt_th\\u1ee9 hai_th\\u1ee9 ba_th\\u1ee9 t\\u01b0_th\\u1ee9 n\\u0103m_th\\u1ee9 s\\xe1u_th\\u1ee9 b\\u1ea3y\".split(\"_\"),weekdaysShort:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysMin:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"sa\":\"SA\":n?\"ch\":\"CH\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [n\\u0103m] YYYY\",LLL:\"D MMMM [n\\u0103m] YYYY HH:mm\",LLLL:\"dddd, D MMMM [n\\u0103m] YYYY HH:mm\",l:\"DD/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[H\\xf4m nay l\\xfac] LT\",nextDay:\"[Ng\\xe0y mai l\\xfac] LT\",nextWeek:\"dddd [tu\\u1ea7n t\\u1edbi l\\xfac] LT\",lastDay:\"[H\\xf4m qua l\\xfac] LT\",lastWeek:\"dddd [tu\\u1ea7n r\\u1ed3i l\\xfac] LT\",sameElse:\"L\"},relativeTime:{future:\"%s t\\u1edbi\",past:\"%s tr\\u01b0\\u1edbc\",s:\"v\\xe0i gi\\xe2y\",ss:\"%d gi\\xe2y\",m:\"m\\u1ed9t ph\\xfat\",mm:\"%d ph\\xfat\",h:\"m\\u1ed9t gi\\u1edd\",hh:\"%d gi\\u1edd\",d:\"m\\u1ed9t ng\\xe0y\",dd:\"%d ng\\xe0y\",M:\"m\\u1ed9t th\\xe1ng\",MM:\"%d th\\xe1ng\",y:\"m\\u1ed9t n\\u0103m\",yy:\"%d n\\u0103m\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(\"wd/R\"))},KTz0:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekund\",\"sekunda\",\"sekundi\"],m:[\"jedan minut\",\"jednog minuta\"],mm:[\"minut\",\"minuta\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mjesec\",\"mjeseca\",\"mjeseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var s=t.words[i];return 1===i.length?n?s[0]:s[1]:e+\" \"+t.correctGrammaticalCase(e,s)}};e.defineLocale(\"me\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sjutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010de u] LT\",lastWeek:function(){return[\"[pro\\u0161le] [nedjelje] [u] LT\",\"[pro\\u0161log] [ponedjeljka] [u] LT\",\"[pro\\u0161log] [utorka] [u] LT\",\"[pro\\u0161le] [srijede] [u] LT\",\"[pro\\u0161log] [\\u010detvrtka] [u] LT\",\"[pro\\u0161log] [petka] [u] LT\",\"[pro\\u0161le] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mjesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},Loxo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440_\\u043d\\u043e\\u044f\\u0431\\u0440_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u042f\\u043a\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0414\\u0443\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0421\\u0435\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0427\\u043e\\u0440\\u0448\\u0430\\u043d\\u0431\\u0430_\\u041f\\u0430\\u0439\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0416\\u0443\\u043c\\u0430_\\u0428\\u0430\\u043d\\u0431\\u0430\".split(\"_\"),weekdaysShort:\"\\u042f\\u043a\\u0448_\\u0414\\u0443\\u0448_\\u0421\\u0435\\u0448_\\u0427\\u043e\\u0440_\\u041f\\u0430\\u0439_\\u0416\\u0443\\u043c_\\u0428\\u0430\\u043d\".split(\"_\"),weekdaysMin:\"\\u042f\\u043a_\\u0414\\u0443_\\u0421\\u0435_\\u0427\\u043e_\\u041f\\u0430_\\u0416\\u0443_\\u0428\\u0430\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[\\u0411\\u0443\\u0433\\u0443\\u043d \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",nextDay:\"[\\u042d\\u0440\\u0442\\u0430\\u0433\\u0430] LT [\\u0434\\u0430]\",nextWeek:\"dddd [\\u043a\\u0443\\u043d\\u0438 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",lastDay:\"[\\u041a\\u0435\\u0447\\u0430 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",lastWeek:\"[\\u0423\\u0442\\u0433\\u0430\\u043d] dddd [\\u043a\\u0443\\u043d\\u0438 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",sameElse:\"L\"},relativeTime:{future:\"\\u042f\\u043a\\u0438\\u043d %s \\u0438\\u0447\\u0438\\u0434\\u0430\",past:\"\\u0411\\u0438\\u0440 \\u043d\\u0435\\u0447\\u0430 %s \\u043e\\u043b\\u0434\\u0438\\u043d\",s:\"\\u0444\\u0443\\u0440\\u0441\\u0430\\u0442\",ss:\"%d \\u0444\\u0443\\u0440\\u0441\\u0430\\u0442\",m:\"\\u0431\\u0438\\u0440 \\u0434\\u0430\\u043a\\u0438\\u043a\\u0430\",mm:\"%d \\u0434\\u0430\\u043a\\u0438\\u043a\\u0430\",h:\"\\u0431\\u0438\\u0440 \\u0441\\u043e\\u0430\\u0442\",hh:\"%d \\u0441\\u043e\\u0430\\u0442\",d:\"\\u0431\\u0438\\u0440 \\u043a\\u0443\\u043d\",dd:\"%d \\u043a\\u0443\\u043d\",M:\"\\u0431\\u0438\\u0440 \\u043e\\u0439\",MM:\"%d \\u043e\\u0439\",y:\"\\u0431\\u0438\\u0440 \\u0439\\u0438\\u043b\",yy:\"%d \\u0439\\u0438\\u043b\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},OIYi:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ca\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"YYYY-MM-DD\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(\"wd/R\"))},Oaa7:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-gb\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Ob0Z:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};function i(e,t,n,i){var s=\"\";if(t)switch(n){case\"s\":s=\"\\u0915\\u093e\\u0939\\u0940 \\u0938\\u0947\\u0915\\u0902\\u0926\";break;case\"ss\":s=\"%d \\u0938\\u0947\\u0915\\u0902\\u0926\";break;case\"m\":s=\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u093f\\u091f\";break;case\"mm\":s=\"%d \\u092e\\u093f\\u0928\\u093f\\u091f\\u0947\";break;case\"h\":s=\"\\u090f\\u0915 \\u0924\\u093e\\u0938\";break;case\"hh\":s=\"%d \\u0924\\u093e\\u0938\";break;case\"d\":s=\"\\u090f\\u0915 \\u0926\\u093f\\u0935\\u0938\";break;case\"dd\":s=\"%d \\u0926\\u093f\\u0935\\u0938\";break;case\"M\":s=\"\\u090f\\u0915 \\u092e\\u0939\\u093f\\u0928\\u093e\";break;case\"MM\":s=\"%d \\u092e\\u0939\\u093f\\u0928\\u0947\";break;case\"y\":s=\"\\u090f\\u0915 \\u0935\\u0930\\u094d\\u0937\";break;case\"yy\":s=\"%d \\u0935\\u0930\\u094d\\u0937\\u0947\"}else switch(n){case\"s\":s=\"\\u0915\\u093e\\u0939\\u0940 \\u0938\\u0947\\u0915\\u0902\\u0926\\u093e\\u0902\";break;case\"ss\":s=\"%d \\u0938\\u0947\\u0915\\u0902\\u0926\\u093e\\u0902\";break;case\"m\":s=\"\\u090f\\u0915\\u093e \\u092e\\u093f\\u0928\\u093f\\u091f\\u093e\";break;case\"mm\":s=\"%d \\u092e\\u093f\\u0928\\u093f\\u091f\\u093e\\u0902\";break;case\"h\":s=\"\\u090f\\u0915\\u093e \\u0924\\u093e\\u0938\\u093e\";break;case\"hh\":s=\"%d \\u0924\\u093e\\u0938\\u093e\\u0902\";break;case\"d\":s=\"\\u090f\\u0915\\u093e \\u0926\\u093f\\u0935\\u0938\\u093e\";break;case\"dd\":s=\"%d \\u0926\\u093f\\u0935\\u0938\\u093e\\u0902\";break;case\"M\":s=\"\\u090f\\u0915\\u093e \\u092e\\u0939\\u093f\\u0928\\u094d\\u092f\\u093e\";break;case\"MM\":s=\"%d \\u092e\\u0939\\u093f\\u0928\\u094d\\u092f\\u093e\\u0902\";break;case\"y\":s=\"\\u090f\\u0915\\u093e \\u0935\\u0930\\u094d\\u0937\\u093e\";break;case\"yy\":s=\"%d \\u0935\\u0930\\u094d\\u0937\\u093e\\u0902\"}return s.replace(/%d/i,e)}e.defineLocale(\"mr\",{months:\"\\u091c\\u093e\\u0928\\u0947\\u0935\\u093e\\u0930\\u0940_\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941\\u0935\\u093e\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u090f\\u092a\\u094d\\u0930\\u093f\\u0932_\\u092e\\u0947_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932\\u0948_\\u0911\\u0917\\u0938\\u094d\\u091f_\\u0938\\u092a\\u094d\\u091f\\u0947\\u0902\\u092c\\u0930_\\u0911\\u0915\\u094d\\u091f\\u094b\\u092c\\u0930_\\u0928\\u094b\\u0935\\u094d\\u0939\\u0947\\u0902\\u092c\\u0930_\\u0921\\u093f\\u0938\\u0947\\u0902\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u093e\\u0928\\u0947._\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941._\\u092e\\u093e\\u0930\\u094d\\u091a._\\u090f\\u092a\\u094d\\u0930\\u093f._\\u092e\\u0947._\\u091c\\u0942\\u0928._\\u091c\\u0941\\u0932\\u0948._\\u0911\\u0917._\\u0938\\u092a\\u094d\\u091f\\u0947\\u0902._\\u0911\\u0915\\u094d\\u091f\\u094b._\\u0928\\u094b\\u0935\\u094d\\u0939\\u0947\\u0902._\\u0921\\u093f\\u0938\\u0947\\u0902.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0930\\u0935\\u093f\\u0935\\u093e\\u0930_\\u0938\\u094b\\u092e\\u0935\\u093e\\u0930_\\u092e\\u0902\\u0917\\u0933\\u0935\\u093e\\u0930_\\u092c\\u0941\\u0927\\u0935\\u093e\\u0930_\\u0917\\u0941\\u0930\\u0942\\u0935\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u0935\\u093e\\u0930_\\u0936\\u0928\\u093f\\u0935\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0930\\u0935\\u093f_\\u0938\\u094b\\u092e_\\u092e\\u0902\\u0917\\u0933_\\u092c\\u0941\\u0927_\\u0917\\u0941\\u0930\\u0942_\\u0936\\u0941\\u0915\\u094d\\u0930_\\u0936\\u0928\\u093f\".split(\"_\"),weekdaysMin:\"\\u0930_\\u0938\\u094b_\\u092e\\u0902_\\u092c\\u0941_\\u0917\\u0941_\\u0936\\u0941_\\u0936\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\",LTS:\"A h:mm:ss \\u0935\\u093e\\u091c\\u0924\\u093e\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u0909\\u0926\\u094d\\u092f\\u093e] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0915\\u093e\\u0932] LT\",lastWeek:\"[\\u092e\\u093e\\u0917\\u0940\\u0932] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u092e\\u0927\\u094d\\u092f\\u0947\",past:\"%s\\u092a\\u0942\\u0930\\u094d\\u0935\\u0940\",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940|\\u0938\\u0915\\u093e\\u0933\\u0940|\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940|\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\"===t?e<4?e:e+12:\"\\u0938\\u0915\\u093e\\u0933\\u0940\"===t?e:\"\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940\"===t?e>=10?e:e+12:\"\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\":e<10?\"\\u0938\\u0915\\u093e\\u0933\\u0940\":e<17?\"\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940\":e<20?\"\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940\":\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},OjkT:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};e.defineLocale(\"ne\",{months:\"\\u091c\\u0928\\u0935\\u0930\\u0940_\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941\\u0935\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u093f\\u0932_\\u092e\\u0908_\\u091c\\u0941\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908_\\u0905\\u0917\\u0937\\u094d\\u091f_\\u0938\\u0947\\u092a\\u094d\\u091f\\u0947\\u092e\\u094d\\u092c\\u0930_\\u0905\\u0915\\u094d\\u091f\\u094b\\u092c\\u0930_\\u0928\\u094b\\u092d\\u0947\\u092e\\u094d\\u092c\\u0930_\\u0921\\u093f\\u0938\\u0947\\u092e\\u094d\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u0928._\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941._\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u093f._\\u092e\\u0908_\\u091c\\u0941\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908._\\u0905\\u0917._\\u0938\\u0947\\u092a\\u094d\\u091f._\\u0905\\u0915\\u094d\\u091f\\u094b._\\u0928\\u094b\\u092d\\u0947._\\u0921\\u093f\\u0938\\u0947.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0906\\u0907\\u0924\\u092c\\u093e\\u0930_\\u0938\\u094b\\u092e\\u092c\\u093e\\u0930_\\u092e\\u0919\\u094d\\u0917\\u0932\\u092c\\u093e\\u0930_\\u092c\\u0941\\u0927\\u092c\\u093e\\u0930_\\u092c\\u093f\\u0939\\u093f\\u092c\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u092c\\u093e\\u0930_\\u0936\\u0928\\u093f\\u092c\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0906\\u0907\\u0924._\\u0938\\u094b\\u092e._\\u092e\\u0919\\u094d\\u0917\\u0932._\\u092c\\u0941\\u0927._\\u092c\\u093f\\u0939\\u093f._\\u0936\\u0941\\u0915\\u094d\\u0930._\\u0936\\u0928\\u093f.\".split(\"_\"),weekdaysMin:\"\\u0906._\\u0938\\u094b._\\u092e\\u0902._\\u092c\\u0941._\\u092c\\u093f._\\u0936\\u0941._\\u0936.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\",LTS:\"A\\u0915\\u094b h:mm:ss \\u092c\\u091c\\u0947\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\",LLLL:\"dddd, D MMMM YYYY, A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\"},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924\\u093f|\\u092c\\u093f\\u0939\\u093e\\u0928|\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b|\\u0938\\u093e\\u0901\\u091d/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\\u093f\"===t?e<4?e:e+12:\"\\u092c\\u093f\\u0939\\u093e\\u0928\"===t?e:\"\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b\"===t?e>=10?e:e+12:\"\\u0938\\u093e\\u0901\\u091d\"===t?e+12:void 0},meridiem:function(e,t,n){return e<3?\"\\u0930\\u093e\\u0924\\u093f\":e<12?\"\\u092c\\u093f\\u0939\\u093e\\u0928\":e<16?\"\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b\":e<20?\"\\u0938\\u093e\\u0901\\u091d\":\"\\u0930\\u093e\\u0924\\u093f\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u092d\\u094b\\u0932\\u093f] LT\",nextWeek:\"[\\u0906\\u0909\\u0901\\u0926\\u094b] dddd[,] LT\",lastDay:\"[\\u0939\\u093f\\u091c\\u094b] LT\",lastWeek:\"[\\u0917\\u090f\\u0915\\u094b] dddd[,] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u092e\\u093e\",past:\"%s \\u0905\\u0917\\u093e\\u0921\\u093f\",s:\"\\u0915\\u0947\\u0939\\u0940 \\u0915\\u094d\\u0937\\u0923\",ss:\"%d \\u0938\\u0947\\u0915\\u0947\\u0923\\u094d\\u0921\",m:\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u0947\\u091f\",mm:\"%d \\u092e\\u093f\\u0928\\u0947\\u091f\",h:\"\\u090f\\u0915 \\u0918\\u0923\\u094d\\u091f\\u093e\",hh:\"%d \\u0918\\u0923\\u094d\\u091f\\u093e\",d:\"\\u090f\\u0915 \\u0926\\u093f\\u0928\",dd:\"%d \\u0926\\u093f\\u0928\",M:\"\\u090f\\u0915 \\u092e\\u0939\\u093f\\u0928\\u093e\",MM:\"%d \\u092e\\u0939\\u093f\\u0928\\u093e\",y:\"\\u090f\\u0915 \\u092c\\u0930\\u094d\\u0937\",yy:\"%d \\u092c\\u0930\\u094d\\u0937\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},Oxv6:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0443\\u043c\",1:\"-\\u0443\\u043c\",2:\"-\\u044e\\u043c\",3:\"-\\u044e\\u043c\",4:\"-\\u0443\\u043c\",5:\"-\\u0443\\u043c\",6:\"-\\u0443\\u043c\",7:\"-\\u0443\\u043c\",8:\"-\\u0443\\u043c\",9:\"-\\u0443\\u043c\",10:\"-\\u0443\\u043c\",12:\"-\\u0443\\u043c\",13:\"-\\u0443\\u043c\",20:\"-\\u0443\\u043c\",30:\"-\\u044e\\u043c\",40:\"-\\u0443\\u043c\",50:\"-\\u0443\\u043c\",60:\"-\\u0443\\u043c\",70:\"-\\u0443\\u043c\",80:\"-\\u0443\\u043c\",90:\"-\\u0443\\u043c\",100:\"-\\u0443\\u043c\"};e.defineLocale(\"tg\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440_\\u043d\\u043e\\u044f\\u0431\\u0440_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u044f\\u043a\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0434\\u0443\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0441\\u0435\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0447\\u043e\\u0440\\u0448\\u0430\\u043d\\u0431\\u0435_\\u043f\\u0430\\u043d\\u04b7\\u0448\\u0430\\u043d\\u0431\\u0435_\\u04b7\\u0443\\u043c\\u044a\\u0430_\\u0448\\u0430\\u043d\\u0431\\u0435\".split(\"_\"),weekdaysShort:\"\\u044f\\u0448\\u0431_\\u0434\\u0448\\u0431_\\u0441\\u0448\\u0431_\\u0447\\u0448\\u0431_\\u043f\\u0448\\u0431_\\u04b7\\u0443\\u043c_\\u0448\\u043d\\u0431\".split(\"_\"),weekdaysMin:\"\\u044f\\u0448_\\u0434\\u0448_\\u0441\\u0448_\\u0447\\u0448_\\u043f\\u0448_\\u04b7\\u043c_\\u0448\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0418\\u043c\\u0440\\u04ef\\u0437 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",nextDay:\"[\\u041f\\u0430\\u0433\\u043e\\u04b3 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",lastDay:\"[\\u0414\\u0438\\u0440\\u04ef\\u0437 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",nextWeek:\"dddd[\\u0438] [\\u04b3\\u0430\\u0444\\u0442\\u0430\\u0438 \\u043e\\u044f\\u043d\\u0434\\u0430 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",lastWeek:\"dddd[\\u0438] [\\u04b3\\u0430\\u0444\\u0442\\u0430\\u0438 \\u0433\\u0443\\u0437\\u0430\\u0448\\u0442\\u0430 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0431\\u0430\\u044a\\u0434\\u0438 %s\",past:\"%s \\u043f\\u0435\\u0448\",s:\"\\u044f\\u043a\\u0447\\u0430\\u043d\\u0434 \\u0441\\u043e\\u043d\\u0438\\u044f\",m:\"\\u044f\\u043a \\u0434\\u0430\\u049b\\u0438\\u049b\\u0430\",mm:\"%d \\u0434\\u0430\\u049b\\u0438\\u049b\\u0430\",h:\"\\u044f\\u043a \\u0441\\u043e\\u0430\\u0442\",hh:\"%d \\u0441\\u043e\\u0430\\u0442\",d:\"\\u044f\\u043a \\u0440\\u04ef\\u0437\",dd:\"%d \\u0440\\u04ef\\u0437\",M:\"\\u044f\\u043a \\u043c\\u043e\\u04b3\",MM:\"%d \\u043c\\u043e\\u04b3\",y:\"\\u044f\\u043a \\u0441\\u043e\\u043b\",yy:\"%d \\u0441\\u043e\\u043b\"},meridiemParse:/\\u0448\\u0430\\u0431|\\u0441\\u0443\\u0431\\u04b3|\\u0440\\u04ef\\u0437|\\u0431\\u0435\\u0433\\u043e\\u04b3/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0448\\u0430\\u0431\"===t?e<4?e:e+12:\"\\u0441\\u0443\\u0431\\u04b3\"===t?e:\"\\u0440\\u04ef\\u0437\"===t?e>=11?e:e+12:\"\\u0431\\u0435\\u0433\\u043e\\u04b3\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0448\\u0430\\u0431\":e<11?\"\\u0441\\u0443\\u0431\\u04b3\":e<16?\"\\u0440\\u04ef\\u0437\":e<19?\"\\u0431\\u0435\\u0433\\u043e\\u04b3\":\"\\u0448\\u0430\\u0431\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0443\\u043c|\\u044e\\u043c)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},PA2r:function(e,t,n){!function(e){\"use strict\";var t=\"leden_\\xfanor_b\\u0159ezen_duben_kv\\u011bten_\\u010derven_\\u010dervenec_srpen_z\\xe1\\u0159\\xed_\\u0159\\xedjen_listopad_prosinec\".split(\"_\"),n=\"led_\\xfano_b\\u0159e_dub_kv\\u011b_\\u010dvn_\\u010dvc_srp_z\\xe1\\u0159_\\u0159\\xedj_lis_pro\".split(\"_\"),i=[/^led/i,/^\\xfano/i,/^b\\u0159e/i,/^dub/i,/^kv\\u011b/i,/^(\\u010dvn|\\u010derven$|\\u010dervna)/i,/^(\\u010dvc|\\u010dervenec|\\u010dervence)/i,/^srp/i,/^z\\xe1\\u0159/i,/^\\u0159\\xedj/i,/^lis/i,/^pro/i],s=/^(leden|\\xfanor|b\\u0159ezen|duben|kv\\u011bten|\\u010dervenec|\\u010dervence|\\u010derven|\\u010dervna|srpen|z\\xe1\\u0159\\xed|\\u0159\\xedjen|listopad|prosinec|led|\\xfano|b\\u0159e|dub|kv\\u011b|\\u010dvn|\\u010dvc|srp|z\\xe1\\u0159|\\u0159\\xedj|lis|pro)/i;function r(e){return e>1&&e<5&&1!=~~(e/10)}function o(e,t,n,i){var s=e+\" \";switch(n){case\"s\":return t||i?\"p\\xe1r sekund\":\"p\\xe1r sekundami\";case\"ss\":return t||i?s+(r(e)?\"sekundy\":\"sekund\"):s+\"sekundami\";case\"m\":return t?\"minuta\":i?\"minutu\":\"minutou\";case\"mm\":return t||i?s+(r(e)?\"minuty\":\"minut\"):s+\"minutami\";case\"h\":return t?\"hodina\":i?\"hodinu\":\"hodinou\";case\"hh\":return t||i?s+(r(e)?\"hodiny\":\"hodin\"):s+\"hodinami\";case\"d\":return t||i?\"den\":\"dnem\";case\"dd\":return t||i?s+(r(e)?\"dny\":\"dn\\xed\"):s+\"dny\";case\"M\":return t||i?\"m\\u011bs\\xedc\":\"m\\u011bs\\xedcem\";case\"MM\":return t||i?s+(r(e)?\"m\\u011bs\\xedce\":\"m\\u011bs\\xedc\\u016f\"):s+\"m\\u011bs\\xedci\";case\"y\":return t||i?\"rok\":\"rokem\";case\"yy\":return t||i?s+(r(e)?\"roky\":\"let\"):s+\"lety\"}}e.defineLocale(\"cs\",{months:t,monthsShort:n,monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(leden|ledna|\\xfanora|\\xfanor|b\\u0159ezen|b\\u0159ezna|duben|dubna|kv\\u011bten|kv\\u011btna|\\u010dervenec|\\u010dervence|\\u010derven|\\u010dervna|srpen|srpna|z\\xe1\\u0159\\xed|\\u0159\\xedjen|\\u0159\\xedjna|listopadu|listopad|prosinec|prosince)/i,monthsShortStrictRegex:/^(led|\\xfano|b\\u0159e|dub|kv\\u011b|\\u010dvn|\\u010dvc|srp|z\\xe1\\u0159|\\u0159\\xedj|lis|pro)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"ned\\u011ble_pond\\u011bl\\xed_\\xfater\\xfd_st\\u0159eda_\\u010dtvrtek_p\\xe1tek_sobota\".split(\"_\"),weekdaysShort:\"ne_po_\\xfat_st_\\u010dt_p\\xe1_so\".split(\"_\"),weekdaysMin:\"ne_po_\\xfat_st_\\u010dt_p\\xe1_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\",l:\"D. M. YYYY\"},calendar:{sameDay:\"[dnes v] LT\",nextDay:\"[z\\xedtra v] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v ned\\u011bli v] LT\";case 1:case 2:return\"[v] dddd [v] LT\";case 3:return\"[ve st\\u0159edu v] LT\";case 4:return\"[ve \\u010dtvrtek v] LT\";case 5:return\"[v p\\xe1tek v] LT\";case 6:return\"[v sobotu v] LT\"}},lastDay:\"[v\\u010dera v] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minulou ned\\u011bli v] LT\";case 1:case 2:return\"[minul\\xe9] dddd [v] LT\";case 3:return\"[minulou st\\u0159edu v] LT\";case 4:case 5:return\"[minul\\xfd] dddd [v] LT\";case 6:return\"[minulou sobotu v] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"p\\u0159ed %s\",s:o,ss:o,m:o,mm:o,h:o,hh:o,d:o,dd:o,M:o,MM:o,y:o,yy:o},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},PeUW:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0be7\",2:\"\\u0be8\",3:\"\\u0be9\",4:\"\\u0bea\",5:\"\\u0beb\",6:\"\\u0bec\",7:\"\\u0bed\",8:\"\\u0bee\",9:\"\\u0bef\",0:\"\\u0be6\"},n={\"\\u0be7\":\"1\",\"\\u0be8\":\"2\",\"\\u0be9\":\"3\",\"\\u0bea\":\"4\",\"\\u0beb\":\"5\",\"\\u0bec\":\"6\",\"\\u0bed\":\"7\",\"\\u0bee\":\"8\",\"\\u0bef\":\"9\",\"\\u0be6\":\"0\"};e.defineLocale(\"ta\",{months:\"\\u0b9c\\u0ba9\\u0bb5\\u0bb0\\u0bbf_\\u0baa\\u0bbf\\u0baa\\u0bcd\\u0bb0\\u0bb5\\u0bb0\\u0bbf_\\u0bae\\u0bbe\\u0bb0\\u0bcd\\u0b9a\\u0bcd_\\u0b8f\\u0baa\\u0bcd\\u0bb0\\u0bb2\\u0bcd_\\u0bae\\u0bc7_\\u0b9c\\u0bc2\\u0ba9\\u0bcd_\\u0b9c\\u0bc2\\u0bb2\\u0bc8_\\u0b86\\u0b95\\u0bb8\\u0bcd\\u0b9f\\u0bcd_\\u0b9a\\u0bc6\\u0baa\\u0bcd\\u0b9f\\u0bc6\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b85\\u0b95\\u0bcd\\u0b9f\\u0bc7\\u0bbe\\u0baa\\u0bb0\\u0bcd_\\u0ba8\\u0bb5\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b9f\\u0bbf\\u0b9a\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd\".split(\"_\"),monthsShort:\"\\u0b9c\\u0ba9\\u0bb5\\u0bb0\\u0bbf_\\u0baa\\u0bbf\\u0baa\\u0bcd\\u0bb0\\u0bb5\\u0bb0\\u0bbf_\\u0bae\\u0bbe\\u0bb0\\u0bcd\\u0b9a\\u0bcd_\\u0b8f\\u0baa\\u0bcd\\u0bb0\\u0bb2\\u0bcd_\\u0bae\\u0bc7_\\u0b9c\\u0bc2\\u0ba9\\u0bcd_\\u0b9c\\u0bc2\\u0bb2\\u0bc8_\\u0b86\\u0b95\\u0bb8\\u0bcd\\u0b9f\\u0bcd_\\u0b9a\\u0bc6\\u0baa\\u0bcd\\u0b9f\\u0bc6\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b85\\u0b95\\u0bcd\\u0b9f\\u0bc7\\u0bbe\\u0baa\\u0bb0\\u0bcd_\\u0ba8\\u0bb5\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b9f\\u0bbf\\u0b9a\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd\".split(\"_\"),weekdays:\"\\u0b9e\\u0bbe\\u0baf\\u0bbf\\u0bb1\\u0bcd\\u0bb1\\u0bc1\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0ba4\\u0bbf\\u0b99\\u0bcd\\u0b95\\u0b9f\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0b9a\\u0bc6\\u0bb5\\u0bcd\\u0bb5\\u0bbe\\u0baf\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0baa\\u0bc1\\u0ba4\\u0ba9\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0bb5\\u0bbf\\u0baf\\u0bbe\\u0bb4\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0bb5\\u0bc6\\u0bb3\\u0bcd\\u0bb3\\u0bbf\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0b9a\\u0ba9\\u0bbf\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8\".split(\"_\"),weekdaysShort:\"\\u0b9e\\u0bbe\\u0baf\\u0bbf\\u0bb1\\u0bc1_\\u0ba4\\u0bbf\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd_\\u0b9a\\u0bc6\\u0bb5\\u0bcd\\u0bb5\\u0bbe\\u0baf\\u0bcd_\\u0baa\\u0bc1\\u0ba4\\u0ba9\\u0bcd_\\u0bb5\\u0bbf\\u0baf\\u0bbe\\u0bb4\\u0ba9\\u0bcd_\\u0bb5\\u0bc6\\u0bb3\\u0bcd\\u0bb3\\u0bbf_\\u0b9a\\u0ba9\\u0bbf\".split(\"_\"),weekdaysMin:\"\\u0b9e\\u0bbe_\\u0ba4\\u0bbf_\\u0b9a\\u0bc6_\\u0baa\\u0bc1_\\u0bb5\\u0bbf_\\u0bb5\\u0bc6_\\u0b9a\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, HH:mm\",LLLL:\"dddd, D MMMM YYYY, HH:mm\"},calendar:{sameDay:\"[\\u0b87\\u0ba9\\u0bcd\\u0bb1\\u0bc1] LT\",nextDay:\"[\\u0ba8\\u0bbe\\u0bb3\\u0bc8] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0ba8\\u0bc7\\u0bb1\\u0bcd\\u0bb1\\u0bc1] LT\",lastWeek:\"[\\u0b95\\u0b9f\\u0ba8\\u0bcd\\u0ba4 \\u0bb5\\u0bbe\\u0bb0\\u0bae\\u0bcd] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0b87\\u0bb2\\u0bcd\",past:\"%s \\u0bae\\u0bc1\\u0ba9\\u0bcd\",s:\"\\u0b92\\u0bb0\\u0bc1 \\u0b9a\\u0bbf\\u0bb2 \\u0bb5\\u0bbf\\u0ba8\\u0bbe\\u0b9f\\u0bbf\\u0b95\\u0bb3\\u0bcd\",ss:\"%d \\u0bb5\\u0bbf\\u0ba8\\u0bbe\\u0b9f\\u0bbf\\u0b95\\u0bb3\\u0bcd\",m:\"\\u0b92\\u0bb0\\u0bc1 \\u0ba8\\u0bbf\\u0bae\\u0bbf\\u0b9f\\u0bae\\u0bcd\",mm:\"%d \\u0ba8\\u0bbf\\u0bae\\u0bbf\\u0b9f\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd\",h:\"\\u0b92\\u0bb0\\u0bc1 \\u0bae\\u0ba3\\u0bbf \\u0ba8\\u0bc7\\u0bb0\\u0bae\\u0bcd\",hh:\"%d \\u0bae\\u0ba3\\u0bbf \\u0ba8\\u0bc7\\u0bb0\\u0bae\\u0bcd\",d:\"\\u0b92\\u0bb0\\u0bc1 \\u0ba8\\u0bbe\\u0bb3\\u0bcd\",dd:\"%d \\u0ba8\\u0bbe\\u0b9f\\u0bcd\\u0b95\\u0bb3\\u0bcd\",M:\"\\u0b92\\u0bb0\\u0bc1 \\u0bae\\u0bbe\\u0ba4\\u0bae\\u0bcd\",MM:\"%d \\u0bae\\u0bbe\\u0ba4\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd\",y:\"\\u0b92\\u0bb0\\u0bc1 \\u0bb5\\u0bb0\\u0bc1\\u0b9f\\u0bae\\u0bcd\",yy:\"%d \\u0b86\\u0ba3\\u0bcd\\u0b9f\\u0bc1\\u0b95\\u0bb3\\u0bcd\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u0bb5\\u0ba4\\u0bc1/,ordinal:function(e){return e+\"\\u0bb5\\u0ba4\\u0bc1\"},preparse:function(e){return e.replace(/[\\u0be7\\u0be8\\u0be9\\u0bea\\u0beb\\u0bec\\u0bed\\u0bee\\u0bef\\u0be6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd|\\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8|\\u0b95\\u0bbe\\u0bb2\\u0bc8|\\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd|\\u0b8e\\u0bb1\\u0bcd\\u0baa\\u0bbe\\u0b9f\\u0bc1|\\u0bae\\u0bbe\\u0bb2\\u0bc8/,meridiem:function(e,t,n){return e<2?\" \\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\":e<6?\" \\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8\":e<10?\" \\u0b95\\u0bbe\\u0bb2\\u0bc8\":e<14?\" \\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd\":e<18?\" \\u0b8e\\u0bb1\\u0bcd\\u0baa\\u0bbe\\u0b9f\\u0bc1\":e<22?\" \\u0bae\\u0bbe\\u0bb2\\u0bc8\":\" \\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\"===t?e<2?e:e+12:\"\\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8\"===t||\"\\u0b95\\u0bbe\\u0bb2\\u0bc8\"===t||\"\\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd\"===t&&e>=10?e:e+12},week:{dow:0,doy:6}})}(n(\"wd/R\"))},PpIw:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0ce7\",2:\"\\u0ce8\",3:\"\\u0ce9\",4:\"\\u0cea\",5:\"\\u0ceb\",6:\"\\u0cec\",7:\"\\u0ced\",8:\"\\u0cee\",9:\"\\u0cef\",0:\"\\u0ce6\"},n={\"\\u0ce7\":\"1\",\"\\u0ce8\":\"2\",\"\\u0ce9\":\"3\",\"\\u0cea\":\"4\",\"\\u0ceb\":\"5\",\"\\u0cec\":\"6\",\"\\u0ced\":\"7\",\"\\u0cee\":\"8\",\"\\u0cef\":\"9\",\"\\u0ce6\":\"0\"};e.defineLocale(\"kn\",{months:\"\\u0c9c\\u0ca8\\u0cb5\\u0cb0\\u0cbf_\\u0cab\\u0cc6\\u0cac\\u0ccd\\u0cb0\\u0cb5\\u0cb0\\u0cbf_\\u0cae\\u0cbe\\u0cb0\\u0ccd\\u0c9a\\u0ccd_\\u0c8f\\u0caa\\u0ccd\\u0cb0\\u0cbf\\u0cb2\\u0ccd_\\u0cae\\u0cc6\\u0cd5_\\u0c9c\\u0cc2\\u0ca8\\u0ccd_\\u0c9c\\u0cc1\\u0cb2\\u0cc6\\u0cd6_\\u0c86\\u0c97\\u0cb8\\u0ccd\\u0c9f\\u0ccd_\\u0cb8\\u0cc6\\u0caa\\u0ccd\\u0c9f\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd_\\u0c85\\u0c95\\u0ccd\\u0c9f\\u0cc6\\u0cc2\\u0cd5\\u0cac\\u0cb0\\u0ccd_\\u0ca8\\u0cb5\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd_\\u0ca1\\u0cbf\\u0cb8\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd\".split(\"_\"),monthsShort:\"\\u0c9c\\u0ca8_\\u0cab\\u0cc6\\u0cac\\u0ccd\\u0cb0_\\u0cae\\u0cbe\\u0cb0\\u0ccd\\u0c9a\\u0ccd_\\u0c8f\\u0caa\\u0ccd\\u0cb0\\u0cbf\\u0cb2\\u0ccd_\\u0cae\\u0cc6\\u0cd5_\\u0c9c\\u0cc2\\u0ca8\\u0ccd_\\u0c9c\\u0cc1\\u0cb2\\u0cc6\\u0cd6_\\u0c86\\u0c97\\u0cb8\\u0ccd\\u0c9f\\u0ccd_\\u0cb8\\u0cc6\\u0caa\\u0ccd\\u0c9f\\u0cc6\\u0c82_\\u0c85\\u0c95\\u0ccd\\u0c9f\\u0cc6\\u0cc2\\u0cd5_\\u0ca8\\u0cb5\\u0cc6\\u0c82_\\u0ca1\\u0cbf\\u0cb8\\u0cc6\\u0c82\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0cad\\u0cbe\\u0ca8\\u0cc1\\u0cb5\\u0cbe\\u0cb0_\\u0cb8\\u0cc6\\u0cc2\\u0cd5\\u0cae\\u0cb5\\u0cbe\\u0cb0_\\u0cae\\u0c82\\u0c97\\u0cb3\\u0cb5\\u0cbe\\u0cb0_\\u0cac\\u0cc1\\u0ca7\\u0cb5\\u0cbe\\u0cb0_\\u0c97\\u0cc1\\u0cb0\\u0cc1\\u0cb5\\u0cbe\\u0cb0_\\u0cb6\\u0cc1\\u0c95\\u0ccd\\u0cb0\\u0cb5\\u0cbe\\u0cb0_\\u0cb6\\u0ca8\\u0cbf\\u0cb5\\u0cbe\\u0cb0\".split(\"_\"),weekdaysShort:\"\\u0cad\\u0cbe\\u0ca8\\u0cc1_\\u0cb8\\u0cc6\\u0cc2\\u0cd5\\u0cae_\\u0cae\\u0c82\\u0c97\\u0cb3_\\u0cac\\u0cc1\\u0ca7_\\u0c97\\u0cc1\\u0cb0\\u0cc1_\\u0cb6\\u0cc1\\u0c95\\u0ccd\\u0cb0_\\u0cb6\\u0ca8\\u0cbf\".split(\"_\"),weekdaysMin:\"\\u0cad\\u0cbe_\\u0cb8\\u0cc6\\u0cc2\\u0cd5_\\u0cae\\u0c82_\\u0cac\\u0cc1_\\u0c97\\u0cc1_\\u0cb6\\u0cc1_\\u0cb6\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0c87\\u0c82\\u0ca6\\u0cc1] LT\",nextDay:\"[\\u0ca8\\u0cbe\\u0cb3\\u0cc6] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0ca8\\u0cbf\\u0ca8\\u0ccd\\u0ca8\\u0cc6] LT\",lastWeek:\"[\\u0c95\\u0cc6\\u0cc2\\u0ca8\\u0cc6\\u0caf] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0ca8\\u0c82\\u0ca4\\u0cb0\",past:\"%s \\u0cb9\\u0cbf\\u0c82\\u0ca6\\u0cc6\",s:\"\\u0c95\\u0cc6\\u0cb2\\u0cb5\\u0cc1 \\u0c95\\u0ccd\\u0cb7\\u0ca3\\u0c97\\u0cb3\\u0cc1\",ss:\"%d \\u0cb8\\u0cc6\\u0c95\\u0cc6\\u0c82\\u0ca1\\u0cc1\\u0c97\\u0cb3\\u0cc1\",m:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca8\\u0cbf\\u0cae\\u0cbf\\u0cb7\",mm:\"%d \\u0ca8\\u0cbf\\u0cae\\u0cbf\\u0cb7\",h:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0c97\\u0c82\\u0c9f\\u0cc6\",hh:\"%d \\u0c97\\u0c82\\u0c9f\\u0cc6\",d:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca6\\u0cbf\\u0ca8\",dd:\"%d \\u0ca6\\u0cbf\\u0ca8\",M:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca4\\u0cbf\\u0c82\\u0c97\\u0cb3\\u0cc1\",MM:\"%d \\u0ca4\\u0cbf\\u0c82\\u0c97\\u0cb3\\u0cc1\",y:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0cb5\\u0cb0\\u0ccd\\u0cb7\",yy:\"%d \\u0cb5\\u0cb0\\u0ccd\\u0cb7\"},preparse:function(e){return e.replace(/[\\u0ce7\\u0ce8\\u0ce9\\u0cea\\u0ceb\\u0cec\\u0ced\\u0cee\\u0cef\\u0ce6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf|\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6|\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8|\\u0cb8\\u0c82\\u0c9c\\u0cc6/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\"===t?e<4?e:e+12:\"\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6\"===t?e:\"\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8\"===t?e>=10?e:e+12:\"\\u0cb8\\u0c82\\u0c9c\\u0cc6\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\":e<10?\"\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6\":e<17?\"\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8\":e<20?\"\\u0cb8\\u0c82\\u0c9c\\u0cc6\":\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u0ca8\\u0cc6\\u0cd5)/,ordinal:function(e){return e+\"\\u0ca8\\u0cc6\\u0cd5\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},Qj4J:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-kw\",{months:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648\\u0632_\\u063a\\u0634\\u062a_\\u0634\\u062a\\u0646\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0646\\u0628\\u0631_\\u062f\\u062c\\u0646\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648\\u0632_\\u063a\\u0634\\u062a_\\u0634\\u062a\\u0646\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0646\\u0628\\u0631_\\u062f\\u062c\\u0646\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062a\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0627\\u062d\\u062f_\\u0627\\u062a\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:0,doy:12}})}(n(\"wd/R\"))},RAwQ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eng Minutt\",\"enger Minutt\"],h:[\"eng Stonn\",\"enger Stonn\"],d:[\"een Dag\",\"engem Dag\"],M:[\"ee Mount\",\"engem Mount\"],y:[\"ee Joer\",\"engem Joer\"]};return t?s[n][0]:s[n][1]}function n(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var t=e%10;return n(0===t?e/10:t)}if(e<1e4){for(;e>=10;)e/=10;return n(e)}return n(e/=1e3)}e.defineLocale(\"lb\",{months:\"Januar_Februar_M\\xe4erz_Abr\\xebll_Mee_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonndeg_M\\xe9indeg_D\\xebnschdeg_M\\xebttwoch_Donneschdeg_Freideg_Samschdeg\".split(\"_\"),weekdaysShort:\"So._M\\xe9._D\\xeb._M\\xeb._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_M\\xe9_D\\xeb_M\\xeb_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm [Auer]\",LTS:\"H:mm:ss [Auer]\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm [Auer]\",LLLL:\"dddd, D. MMMM YYYY H:mm [Auer]\"},calendar:{sameDay:\"[Haut um] LT\",sameElse:\"L\",nextDay:\"[Muer um] LT\",nextWeek:\"dddd [um] LT\",lastDay:\"[G\\xebschter um] LT\",lastWeek:function(){switch(this.day()){case 2:case 4:return\"[Leschten] dddd [um] LT\";default:return\"[Leschte] dddd [um] LT\"}}},relativeTime:{future:function(e){return n(e.substr(0,e.indexOf(\" \")))?\"a \"+e:\"an \"+e},past:function(e){return n(e.substr(0,e.indexOf(\" \")))?\"viru \"+e:\"virun \"+e},s:\"e puer Sekonnen\",ss:\"%d Sekonnen\",m:t,mm:\"%d Minutten\",h:t,hh:\"%d Stonnen\",d:t,dd:\"%d Deeg\",M:t,MM:\"%d M\\xe9int\",y:t,yy:\"%d Joer\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},RnhZ:function(e,t,n){var i={\"./af\":\"K/tc\",\"./af.js\":\"K/tc\",\"./ar\":\"jnO4\",\"./ar-dz\":\"o1bE\",\"./ar-dz.js\":\"o1bE\",\"./ar-kw\":\"Qj4J\",\"./ar-kw.js\":\"Qj4J\",\"./ar-ly\":\"HP3h\",\"./ar-ly.js\":\"HP3h\",\"./ar-ma\":\"CoRJ\",\"./ar-ma.js\":\"CoRJ\",\"./ar-sa\":\"gjCT\",\"./ar-sa.js\":\"gjCT\",\"./ar-tn\":\"bYM6\",\"./ar-tn.js\":\"bYM6\",\"./ar.js\":\"jnO4\",\"./az\":\"SFxW\",\"./az.js\":\"SFxW\",\"./be\":\"H8ED\",\"./be.js\":\"H8ED\",\"./bg\":\"hKrs\",\"./bg.js\":\"hKrs\",\"./bm\":\"p/rL\",\"./bm.js\":\"p/rL\",\"./bn\":\"kEOa\",\"./bn.js\":\"kEOa\",\"./bo\":\"0mo+\",\"./bo.js\":\"0mo+\",\"./br\":\"aIdf\",\"./br.js\":\"aIdf\",\"./bs\":\"JVSJ\",\"./bs.js\":\"JVSJ\",\"./ca\":\"1xZ4\",\"./ca.js\":\"1xZ4\",\"./cs\":\"PA2r\",\"./cs.js\":\"PA2r\",\"./cv\":\"A+xa\",\"./cv.js\":\"A+xa\",\"./cy\":\"l5ep\",\"./cy.js\":\"l5ep\",\"./da\":\"DxQv\",\"./da.js\":\"DxQv\",\"./de\":\"tGlX\",\"./de-at\":\"s+uk\",\"./de-at.js\":\"s+uk\",\"./de-ch\":\"u3GI\",\"./de-ch.js\":\"u3GI\",\"./de.js\":\"tGlX\",\"./dv\":\"WYrj\",\"./dv.js\":\"WYrj\",\"./el\":\"jUeY\",\"./el.js\":\"jUeY\",\"./en-SG\":\"zavE\",\"./en-SG.js\":\"zavE\",\"./en-au\":\"Dmvi\",\"./en-au.js\":\"Dmvi\",\"./en-ca\":\"OIYi\",\"./en-ca.js\":\"OIYi\",\"./en-gb\":\"Oaa7\",\"./en-gb.js\":\"Oaa7\",\"./en-ie\":\"4dOw\",\"./en-ie.js\":\"4dOw\",\"./en-il\":\"czMo\",\"./en-il.js\":\"czMo\",\"./en-nz\":\"b1Dy\",\"./en-nz.js\":\"b1Dy\",\"./eo\":\"Zduo\",\"./eo.js\":\"Zduo\",\"./es\":\"iYuL\",\"./es-do\":\"CjzT\",\"./es-do.js\":\"CjzT\",\"./es-us\":\"Vclq\",\"./es-us.js\":\"Vclq\",\"./es.js\":\"iYuL\",\"./et\":\"7BjC\",\"./et.js\":\"7BjC\",\"./eu\":\"D/JM\",\"./eu.js\":\"D/JM\",\"./fa\":\"jfSC\",\"./fa.js\":\"jfSC\",\"./fi\":\"gekB\",\"./fi.js\":\"gekB\",\"./fo\":\"ByF4\",\"./fo.js\":\"ByF4\",\"./fr\":\"nyYc\",\"./fr-ca\":\"2fjn\",\"./fr-ca.js\":\"2fjn\",\"./fr-ch\":\"Dkky\",\"./fr-ch.js\":\"Dkky\",\"./fr.js\":\"nyYc\",\"./fy\":\"cRix\",\"./fy.js\":\"cRix\",\"./ga\":\"USCx\",\"./ga.js\":\"USCx\",\"./gd\":\"9rRi\",\"./gd.js\":\"9rRi\",\"./gl\":\"iEDd\",\"./gl.js\":\"iEDd\",\"./gom-latn\":\"DKr+\",\"./gom-latn.js\":\"DKr+\",\"./gu\":\"4MV3\",\"./gu.js\":\"4MV3\",\"./he\":\"x6pH\",\"./he.js\":\"x6pH\",\"./hi\":\"3E1r\",\"./hi.js\":\"3E1r\",\"./hr\":\"S6ln\",\"./hr.js\":\"S6ln\",\"./hu\":\"WxRl\",\"./hu.js\":\"WxRl\",\"./hy-am\":\"1rYy\",\"./hy-am.js\":\"1rYy\",\"./id\":\"UDhR\",\"./id.js\":\"UDhR\",\"./is\":\"BVg3\",\"./is.js\":\"BVg3\",\"./it\":\"bpih\",\"./it-ch\":\"bxKX\",\"./it-ch.js\":\"bxKX\",\"./it.js\":\"bpih\",\"./ja\":\"B55N\",\"./ja.js\":\"B55N\",\"./jv\":\"tUCv\",\"./jv.js\":\"tUCv\",\"./ka\":\"IBtZ\",\"./ka.js\":\"IBtZ\",\"./kk\":\"bXm7\",\"./kk.js\":\"bXm7\",\"./km\":\"6B0Y\",\"./km.js\":\"6B0Y\",\"./kn\":\"PpIw\",\"./kn.js\":\"PpIw\",\"./ko\":\"Ivi+\",\"./ko.js\":\"Ivi+\",\"./ku\":\"JCF/\",\"./ku.js\":\"JCF/\",\"./ky\":\"lgnt\",\"./ky.js\":\"lgnt\",\"./lb\":\"RAwQ\",\"./lb.js\":\"RAwQ\",\"./lo\":\"sp3z\",\"./lo.js\":\"sp3z\",\"./lt\":\"JvlW\",\"./lt.js\":\"JvlW\",\"./lv\":\"uXwI\",\"./lv.js\":\"uXwI\",\"./me\":\"KTz0\",\"./me.js\":\"KTz0\",\"./mi\":\"aIsn\",\"./mi.js\":\"aIsn\",\"./mk\":\"aQkU\",\"./mk.js\":\"aQkU\",\"./ml\":\"AvvY\",\"./ml.js\":\"AvvY\",\"./mn\":\"lYtQ\",\"./mn.js\":\"lYtQ\",\"./mr\":\"Ob0Z\",\"./mr.js\":\"Ob0Z\",\"./ms\":\"6+QB\",\"./ms-my\":\"ZAMP\",\"./ms-my.js\":\"ZAMP\",\"./ms.js\":\"6+QB\",\"./mt\":\"G0Uy\",\"./mt.js\":\"G0Uy\",\"./my\":\"honF\",\"./my.js\":\"honF\",\"./nb\":\"bOMt\",\"./nb.js\":\"bOMt\",\"./ne\":\"OjkT\",\"./ne.js\":\"OjkT\",\"./nl\":\"+s0g\",\"./nl-be\":\"2ykv\",\"./nl-be.js\":\"2ykv\",\"./nl.js\":\"+s0g\",\"./nn\":\"uEye\",\"./nn.js\":\"uEye\",\"./pa-in\":\"8/+R\",\"./pa-in.js\":\"8/+R\",\"./pl\":\"jVdC\",\"./pl.js\":\"jVdC\",\"./pt\":\"8mBD\",\"./pt-br\":\"0tRk\",\"./pt-br.js\":\"0tRk\",\"./pt.js\":\"8mBD\",\"./ro\":\"lyxo\",\"./ro.js\":\"lyxo\",\"./ru\":\"lXzo\",\"./ru.js\":\"lXzo\",\"./sd\":\"Z4QM\",\"./sd.js\":\"Z4QM\",\"./se\":\"//9w\",\"./se.js\":\"//9w\",\"./si\":\"7aV9\",\"./si.js\":\"7aV9\",\"./sk\":\"e+ae\",\"./sk.js\":\"e+ae\",\"./sl\":\"gVVK\",\"./sl.js\":\"gVVK\",\"./sq\":\"yPMs\",\"./sq.js\":\"yPMs\",\"./sr\":\"zx6S\",\"./sr-cyrl\":\"E+lV\",\"./sr-cyrl.js\":\"E+lV\",\"./sr.js\":\"zx6S\",\"./ss\":\"Ur1D\",\"./ss.js\":\"Ur1D\",\"./sv\":\"X709\",\"./sv.js\":\"X709\",\"./sw\":\"dNwA\",\"./sw.js\":\"dNwA\",\"./ta\":\"PeUW\",\"./ta.js\":\"PeUW\",\"./te\":\"XLvN\",\"./te.js\":\"XLvN\",\"./tet\":\"V2x9\",\"./tet.js\":\"V2x9\",\"./tg\":\"Oxv6\",\"./tg.js\":\"Oxv6\",\"./th\":\"EOgW\",\"./th.js\":\"EOgW\",\"./tl-ph\":\"Dzi0\",\"./tl-ph.js\":\"Dzi0\",\"./tlh\":\"z3Vd\",\"./tlh.js\":\"z3Vd\",\"./tr\":\"DoHr\",\"./tr.js\":\"DoHr\",\"./tzl\":\"z1FC\",\"./tzl.js\":\"z1FC\",\"./tzm\":\"wQk9\",\"./tzm-latn\":\"tT3J\",\"./tzm-latn.js\":\"tT3J\",\"./tzm.js\":\"wQk9\",\"./ug-cn\":\"YRex\",\"./ug-cn.js\":\"YRex\",\"./uk\":\"raLr\",\"./uk.js\":\"raLr\",\"./ur\":\"UpQW\",\"./ur.js\":\"UpQW\",\"./uz\":\"Loxo\",\"./uz-latn\":\"AQ68\",\"./uz-latn.js\":\"AQ68\",\"./uz.js\":\"Loxo\",\"./vi\":\"KSF8\",\"./vi.js\":\"KSF8\",\"./x-pseudo\":\"/X5v\",\"./x-pseudo.js\":\"/X5v\",\"./yo\":\"fzPg\",\"./yo.js\":\"fzPg\",\"./zh-cn\":\"XDpg\",\"./zh-cn.js\":\"XDpg\",\"./zh-hk\":\"SatO\",\"./zh-hk.js\":\"SatO\",\"./zh-tw\":\"kOpN\",\"./zh-tw.js\":\"kOpN\"};function s(e){var t=r(e);return n(t)}function r(e){if(!n.o(i,e)){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}return i[e]}s.keys=function(){return Object.keys(i)},s.resolve=r,e.exports=s,s.id=\"RnhZ\"},S6ln:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i=e+\" \";switch(n){case\"ss\":return i+(1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\");case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return i+(1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\");case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return i+(1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\");case\"dd\":return i+(1===e?\"dan\":\"dana\");case\"MM\":return i+(1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\");case\"yy\":return i+(1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\")}}e.defineLocale(\"hr\",{months:{format:\"sije\\u010dnja_velja\\u010de_o\\u017eujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca\".split(\"_\"),standalone:\"sije\\u010danj_velja\\u010da_o\\u017eujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac\".split(\"_\")},monthsShort:\"sij._velj._o\\u017eu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010der u] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:return\"[pro\\u0161lu] dddd [u] LT\";case 6:return\"[pro\\u0161le] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[pro\\u0161li] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},SFxW:function(e,t,n){!function(e){\"use strict\";var t={1:\"-inci\",5:\"-inci\",8:\"-inci\",70:\"-inci\",80:\"-inci\",2:\"-nci\",7:\"-nci\",20:\"-nci\",50:\"-nci\",3:\"-\\xfcnc\\xfc\",4:\"-\\xfcnc\\xfc\",100:\"-\\xfcnc\\xfc\",6:\"-nc\\u0131\",9:\"-uncu\",10:\"-uncu\",30:\"-uncu\",60:\"-\\u0131nc\\u0131\",90:\"-\\u0131nc\\u0131\"};e.defineLocale(\"az\",{months:\"yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr\".split(\"_\"),monthsShort:\"yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek\".split(\"_\"),weekdays:\"Bazar_Bazar ert\\u0259si_\\xc7\\u0259r\\u015f\\u0259nb\\u0259 ax\\u015fam\\u0131_\\xc7\\u0259r\\u015f\\u0259nb\\u0259_C\\xfcm\\u0259 ax\\u015fam\\u0131_C\\xfcm\\u0259_\\u015e\\u0259nb\\u0259\".split(\"_\"),weekdaysShort:\"Baz_BzE_\\xc7Ax_\\xc7\\u0259r_CAx_C\\xfcm_\\u015e\\u0259n\".split(\"_\"),weekdaysMin:\"Bz_BE_\\xc7A_\\xc7\\u0259_CA_C\\xfc_\\u015e\\u0259\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bug\\xfcn saat] LT\",nextDay:\"[sabah saat] LT\",nextWeek:\"[g\\u0259l\\u0259n h\\u0259ft\\u0259] dddd [saat] LT\",lastDay:\"[d\\xfcn\\u0259n] LT\",lastWeek:\"[ke\\xe7\\u0259n h\\u0259ft\\u0259] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s \\u0259vv\\u0259l\",s:\"birne\\xe7\\u0259 saniy\\u0259\",ss:\"%d saniy\\u0259\",m:\"bir d\\u0259qiq\\u0259\",mm:\"%d d\\u0259qiq\\u0259\",h:\"bir saat\",hh:\"%d saat\",d:\"bir g\\xfcn\",dd:\"%d g\\xfcn\",M:\"bir ay\",MM:\"%d ay\",y:\"bir il\",yy:\"%d il\"},meridiemParse:/gec\\u0259|s\\u0259h\\u0259r|g\\xfcnd\\xfcz|ax\\u015fam/,isPM:function(e){return/^(g\\xfcnd\\xfcz|ax\\u015fam)$/.test(e)},meridiem:function(e,t,n){return e<4?\"gec\\u0259\":e<12?\"s\\u0259h\\u0259r\":e<17?\"g\\xfcnd\\xfcz\":\"ax\\u015fam\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0131nc\\u0131|inci|nci|\\xfcnc\\xfc|nc\\u0131|uncu)/,ordinal:function(e){if(0===e)return e+\"-\\u0131nc\\u0131\";var n=e%10;return e+(t[n]||t[e%100-n]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},SatO:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-hk\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u9031\\u65e5_\\u9031\\u4e00_\\u9031\\u4e8c_\\u9031\\u4e09_\\u9031\\u56db_\\u9031\\u4e94_\\u9031\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e2d\\u5348\"===t?e>=11?e:e+12:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:void 0},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"\\u51cc\\u6668\":i<900?\"\\u65e9\\u4e0a\":i<1130?\"\\u4e0a\\u5348\":i<1230?\"\\u4e2d\\u5348\":i<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929]LT\",nextDay:\"[\\u660e\\u5929]LT\",nextWeek:\"[\\u4e0b]ddddLT\",lastDay:\"[\\u6628\\u5929]LT\",lastWeek:\"[\\u4e0a]ddddLT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u9031)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u9031\";default:return e}},relativeTime:{future:\"%s\\u5167\",past:\"%s\\u524d\",s:\"\\u5e7e\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u9418\",mm:\"%d \\u5206\\u9418\",h:\"1 \\u5c0f\\u6642\",hh:\"%d \\u5c0f\\u6642\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u500b\\u6708\",MM:\"%d \\u500b\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"}})}(n(\"wd/R\"))},UDhR:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"id\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Rab_Kam_Jum_Sab\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"siang\"===t?e>=11?e:e+12:\"sore\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"siang\":e<19?\"sore\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Besok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kemarin pukul] LT\",lastWeek:\"dddd [lalu pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lalu\",s:\"beberapa detik\",ss:\"%d detik\",m:\"semenit\",mm:\"%d menit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},USCx:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ga\",{months:[\"Ean\\xe1ir\",\"Feabhra\",\"M\\xe1rta\",\"Aibre\\xe1n\",\"Bealtaine\",\"M\\xe9itheamh\",\"I\\xfail\",\"L\\xfanasa\",\"Me\\xe1n F\\xf3mhair\",\"Deaireadh F\\xf3mhair\",\"Samhain\",\"Nollaig\"],monthsShort:[\"Ean\\xe1\",\"Feab\",\"M\\xe1rt\",\"Aibr\",\"Beal\",\"M\\xe9it\",\"I\\xfail\",\"L\\xfana\",\"Me\\xe1n\",\"Deai\",\"Samh\",\"Noll\"],monthsParseExact:!0,weekdays:[\"D\\xe9 Domhnaigh\",\"D\\xe9 Luain\",\"D\\xe9 M\\xe1irt\",\"D\\xe9 C\\xe9adaoin\",\"D\\xe9ardaoin\",\"D\\xe9 hAoine\",\"D\\xe9 Satharn\"],weekdaysShort:[\"Dom\",\"Lua\",\"M\\xe1i\",\"C\\xe9a\",\"D\\xe9a\",\"hAo\",\"Sat\"],weekdaysMin:[\"Do\",\"Lu\",\"M\\xe1\",\"Ce\",\"D\\xe9\",\"hA\",\"Sa\"],longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Inniu ag] LT\",nextDay:\"[Am\\xe1rach ag] LT\",nextWeek:\"dddd [ag] LT\",lastDay:\"[Inn\\xe9 aig] LT\",lastWeek:\"dddd [seo caite] [ag] LT\",sameElse:\"L\"},relativeTime:{future:\"i %s\",past:\"%s \\xf3 shin\",s:\"c\\xfapla soicind\",ss:\"%d soicind\",m:\"n\\xf3im\\xe9ad\",mm:\"%d n\\xf3im\\xe9ad\",h:\"uair an chloig\",hh:\"%d uair an chloig\",d:\"l\\xe1\",dd:\"%d l\\xe1\",M:\"m\\xed\",MM:\"%d m\\xed\",y:\"bliain\",yy:\"%d bliain\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},UpQW:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u062c\\u0646\\u0648\\u0631\\u06cc\",\"\\u0641\\u0631\\u0648\\u0631\\u06cc\",\"\\u0645\\u0627\\u0631\\u0686\",\"\\u0627\\u067e\\u0631\\u06cc\\u0644\",\"\\u0645\\u0626\\u06cc\",\"\\u062c\\u0648\\u0646\",\"\\u062c\\u0648\\u0644\\u0627\\u0626\\u06cc\",\"\\u0627\\u06af\\u0633\\u062a\",\"\\u0633\\u062a\\u0645\\u0628\\u0631\",\"\\u0627\\u06a9\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0645\\u0628\\u0631\",\"\\u062f\\u0633\\u0645\\u0628\\u0631\"],n=[\"\\u0627\\u062a\\u0648\\u0627\\u0631\",\"\\u067e\\u06cc\\u0631\",\"\\u0645\\u0646\\u06af\\u0644\",\"\\u0628\\u062f\\u06be\",\"\\u062c\\u0645\\u0639\\u0631\\u0627\\u062a\",\"\\u062c\\u0645\\u0639\\u06c1\",\"\\u06c1\\u0641\\u062a\\u06c1\"];e.defineLocale(\"ur\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd\\u060c D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635\\u0628\\u062d|\\u0634\\u0627\\u0645/,isPM:function(e){return\"\\u0634\\u0627\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\\u0628\\u062d\":\"\\u0634\\u0627\\u0645\"},calendar:{sameDay:\"[\\u0622\\u062c \\u0628\\u0648\\u0642\\u062a] LT\",nextDay:\"[\\u06a9\\u0644 \\u0628\\u0648\\u0642\\u062a] LT\",nextWeek:\"dddd [\\u0628\\u0648\\u0642\\u062a] LT\",lastDay:\"[\\u06af\\u0630\\u0634\\u062a\\u06c1 \\u0631\\u0648\\u0632 \\u0628\\u0648\\u0642\\u062a] LT\",lastWeek:\"[\\u06af\\u0630\\u0634\\u062a\\u06c1] dddd [\\u0628\\u0648\\u0642\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0628\\u0639\\u062f\",past:\"%s \\u0642\\u0628\\u0644\",s:\"\\u0686\\u0646\\u062f \\u0633\\u06cc\\u06a9\\u0646\\u0688\",ss:\"%d \\u0633\\u06cc\\u06a9\\u0646\\u0688\",m:\"\\u0627\\u06cc\\u06a9 \\u0645\\u0646\\u0679\",mm:\"%d \\u0645\\u0646\\u0679\",h:\"\\u0627\\u06cc\\u06a9 \\u06af\\u06be\\u0646\\u0679\\u06c1\",hh:\"%d \\u06af\\u06be\\u0646\\u0679\\u06d2\",d:\"\\u0627\\u06cc\\u06a9 \\u062f\\u0646\",dd:\"%d \\u062f\\u0646\",M:\"\\u0627\\u06cc\\u06a9 \\u0645\\u0627\\u06c1\",MM:\"%d \\u0645\\u0627\\u06c1\",y:\"\\u0627\\u06cc\\u06a9 \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Ur1D:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ss\",{months:\"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni\".split(\"_\"),monthsShort:\"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo\".split(\"_\"),weekdays:\"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo\".split(\"_\"),weekdaysShort:\"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg\".split(\"_\"),weekdaysMin:\"Li_Us_Lb_Lt_Ls_Lh_Ug\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Namuhla nga] LT\",nextDay:\"[Kusasa nga] LT\",nextWeek:\"dddd [nga] LT\",lastDay:\"[Itolo nga] LT\",lastWeek:\"dddd [leliphelile] [nga] LT\",sameElse:\"L\"},relativeTime:{future:\"nga %s\",past:\"wenteka nga %s\",s:\"emizuzwana lomcane\",ss:\"%d mzuzwana\",m:\"umzuzu\",mm:\"%d emizuzu\",h:\"lihora\",hh:\"%d emahora\",d:\"lilanga\",dd:\"%d emalanga\",M:\"inyanga\",MM:\"%d tinyanga\",y:\"umnyaka\",yy:\"%d iminyaka\"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(e,t,n){return e<11?\"ekuseni\":e<15?\"emini\":e<19?\"entsambama\":\"ebusuku\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"ekuseni\"===t?e:\"emini\"===t?e>=11?e:e+12:\"entsambama\"===t||\"ebusuku\"===t?0===e?0:e+12:void 0},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:\"%d\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},V2x9:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tet\",{months:\"Janeiru_Fevereiru_Marsu_Abril_Maiu_Ju\\xf1u_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ters_Kua_Kint_Sest_Sab\".split(\"_\"),weekdaysMin:\"Do_Seg_Te_Ku_Ki_Ses_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Ohin iha] LT\",nextDay:\"[Aban iha] LT\",nextWeek:\"dddd [iha] LT\",lastDay:\"[Horiseik iha] LT\",lastWeek:\"dddd [semana kotuk] [iha] LT\",sameElse:\"L\"},relativeTime:{future:\"iha %s\",past:\"%s liuba\",s:\"minutu balun\",ss:\"minutu %d\",m:\"minutu ida\",mm:\"minutu %d\",h:\"oras ida\",hh:\"oras %d\",d:\"loron ida\",dd:\"loron %d\",M:\"fulan ida\",MM:\"fulan %d\",y:\"tinan ida\",yy:\"tinan %d\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Vclq:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],s=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es-us\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"domingo_lunes_martes_mi\\xe9rcoles_jueves_viernes_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mi\\xe9._jue._vie._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"MM/DD/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY h:mm A\",LLLL:\"dddd, D [de] MMMM [de] YYYY h:mm A\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1ana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un a\\xf1o\",yy:\"%d a\\xf1os\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:0,doy:6}})}(n(\"wd/R\"))},WYrj:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u0796\\u07ac\\u0782\\u07aa\\u0787\\u07a6\\u0783\\u07a9\",\"\\u078a\\u07ac\\u0784\\u07b0\\u0783\\u07aa\\u0787\\u07a6\\u0783\\u07a9\",\"\\u0789\\u07a7\\u0783\\u07a8\\u0797\\u07aa\",\"\\u0787\\u07ad\\u0795\\u07b0\\u0783\\u07a9\\u078d\\u07aa\",\"\\u0789\\u07ad\",\"\\u0796\\u07ab\\u0782\\u07b0\",\"\\u0796\\u07aa\\u078d\\u07a6\\u0787\\u07a8\",\"\\u0787\\u07af\\u078e\\u07a6\\u0790\\u07b0\\u0793\\u07aa\",\"\\u0790\\u07ac\\u0795\\u07b0\\u0793\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0787\\u07ae\\u0786\\u07b0\\u0793\\u07af\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0782\\u07ae\\u0788\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0791\\u07a8\\u0790\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\"],n=[\"\\u0787\\u07a7\\u078b\\u07a8\\u0787\\u07b0\\u078c\\u07a6\",\"\\u0780\\u07af\\u0789\\u07a6\",\"\\u0787\\u07a6\\u0782\\u07b0\\u078e\\u07a7\\u0783\\u07a6\",\"\\u0784\\u07aa\\u078b\\u07a6\",\"\\u0784\\u07aa\\u0783\\u07a7\\u0790\\u07b0\\u078a\\u07a6\\u078c\\u07a8\",\"\\u0780\\u07aa\\u0786\\u07aa\\u0783\\u07aa\",\"\\u0780\\u07ae\\u0782\\u07a8\\u0780\\u07a8\\u0783\\u07aa\"];e.defineLocale(\"dv\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:\"\\u0787\\u07a7\\u078b\\u07a8_\\u0780\\u07af\\u0789\\u07a6_\\u0787\\u07a6\\u0782\\u07b0_\\u0784\\u07aa\\u078b\\u07a6_\\u0784\\u07aa\\u0783\\u07a7_\\u0780\\u07aa\\u0786\\u07aa_\\u0780\\u07ae\\u0782\\u07a8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/M/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0789\\u0786|\\u0789\\u078a/,isPM:function(e){return\"\\u0789\\u078a\"===e},meridiem:function(e,t,n){return e<12?\"\\u0789\\u0786\":\"\\u0789\\u078a\"},calendar:{sameDay:\"[\\u0789\\u07a8\\u0787\\u07a6\\u078b\\u07aa] LT\",nextDay:\"[\\u0789\\u07a7\\u078b\\u07a6\\u0789\\u07a7] LT\",nextWeek:\"dddd LT\",lastDay:\"[\\u0787\\u07a8\\u0787\\u07b0\\u0794\\u07ac] LT\",lastWeek:\"[\\u078a\\u07a7\\u0787\\u07a8\\u078c\\u07aa\\u0788\\u07a8] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"\\u078c\\u07ac\\u0783\\u07ad\\u078e\\u07a6\\u0787\\u07a8 %s\",past:\"\\u0786\\u07aa\\u0783\\u07a8\\u0782\\u07b0 %s\",s:\"\\u0790\\u07a8\\u0786\\u07aa\\u0782\\u07b0\\u078c\\u07aa\\u0786\\u07ae\\u0785\\u07ac\\u0787\\u07b0\",ss:\"d% \\u0790\\u07a8\\u0786\\u07aa\\u0782\\u07b0\\u078c\\u07aa\",m:\"\\u0789\\u07a8\\u0782\\u07a8\\u0793\\u07ac\\u0787\\u07b0\",mm:\"\\u0789\\u07a8\\u0782\\u07a8\\u0793\\u07aa %d\",h:\"\\u078e\\u07a6\\u0791\\u07a8\\u0787\\u07a8\\u0783\\u07ac\\u0787\\u07b0\",hh:\"\\u078e\\u07a6\\u0791\\u07a8\\u0787\\u07a8\\u0783\\u07aa %d\",d:\"\\u078b\\u07aa\\u0788\\u07a6\\u0780\\u07ac\\u0787\\u07b0\",dd:\"\\u078b\\u07aa\\u0788\\u07a6\\u0790\\u07b0 %d\",M:\"\\u0789\\u07a6\\u0780\\u07ac\\u0787\\u07b0\",MM:\"\\u0789\\u07a6\\u0790\\u07b0 %d\",y:\"\\u0787\\u07a6\\u0780\\u07a6\\u0783\\u07ac\\u0787\\u07b0\",yy:\"\\u0787\\u07a6\\u0780\\u07a6\\u0783\\u07aa %d\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:7,doy:12}})}(n(\"wd/R\"))},WxRl:function(e,t,n){!function(e){\"use strict\";var t=\"vas\\xe1rnap h\\xe9tf\\u0151n kedden szerd\\xe1n cs\\xfct\\xf6rt\\xf6k\\xf6n p\\xe9nteken szombaton\".split(\" \");function n(e,t,n,i){var s=e;switch(n){case\"s\":return i||t?\"n\\xe9h\\xe1ny m\\xe1sodperc\":\"n\\xe9h\\xe1ny m\\xe1sodperce\";case\"ss\":return s+(i||t)?\" m\\xe1sodperc\":\" m\\xe1sodperce\";case\"m\":return\"egy\"+(i||t?\" perc\":\" perce\");case\"mm\":return s+(i||t?\" perc\":\" perce\");case\"h\":return\"egy\"+(i||t?\" \\xf3ra\":\" \\xf3r\\xe1ja\");case\"hh\":return s+(i||t?\" \\xf3ra\":\" \\xf3r\\xe1ja\");case\"d\":return\"egy\"+(i||t?\" nap\":\" napja\");case\"dd\":return s+(i||t?\" nap\":\" napja\");case\"M\":return\"egy\"+(i||t?\" h\\xf3nap\":\" h\\xf3napja\");case\"MM\":return s+(i||t?\" h\\xf3nap\":\" h\\xf3napja\");case\"y\":return\"egy\"+(i||t?\" \\xe9v\":\" \\xe9ve\");case\"yy\":return s+(i||t?\" \\xe9v\":\" \\xe9ve\")}return\"\"}function i(e){return(e?\"\":\"[m\\xfalt] \")+\"[\"+t[this.day()]+\"] LT[-kor]\"}e.defineLocale(\"hu\",{months:\"janu\\xe1r_febru\\xe1r_m\\xe1rcius_\\xe1prilis_m\\xe1jus_j\\xfanius_j\\xfalius_augusztus_szeptember_okt\\xf3ber_november_december\".split(\"_\"),monthsShort:\"jan_feb_m\\xe1rc_\\xe1pr_m\\xe1j_j\\xfan_j\\xfal_aug_szept_okt_nov_dec\".split(\"_\"),weekdays:\"vas\\xe1rnap_h\\xe9tf\\u0151_kedd_szerda_cs\\xfct\\xf6rt\\xf6k_p\\xe9ntek_szombat\".split(\"_\"),weekdaysShort:\"vas_h\\xe9t_kedd_sze_cs\\xfct_p\\xe9n_szo\".split(\"_\"),weekdaysMin:\"v_h_k_sze_cs_p_szo\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY. MMMM D.\",LLL:\"YYYY. MMMM D. H:mm\",LLLL:\"YYYY. MMMM D., dddd H:mm\"},meridiemParse:/de|du/i,isPM:function(e){return\"u\"===e.charAt(1).toLowerCase()},meridiem:function(e,t,n){return e<12?!0===n?\"de\":\"DE\":!0===n?\"du\":\"DU\"},calendar:{sameDay:\"[ma] LT[-kor]\",nextDay:\"[holnap] LT[-kor]\",nextWeek:function(){return i.call(this,!0)},lastDay:\"[tegnap] LT[-kor]\",lastWeek:function(){return i.call(this,!1)},sameElse:\"L\"},relativeTime:{future:\"%s m\\xfalva\",past:\"%s\",s:n,ss:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},X709:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sv\",{months:\"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"s\\xf6ndag_m\\xe5ndag_tisdag_onsdag_torsdag_fredag_l\\xf6rdag\".split(\"_\"),weekdaysShort:\"s\\xf6n_m\\xe5n_tis_ons_tor_fre_l\\xf6r\".split(\"_\"),weekdaysMin:\"s\\xf6_m\\xe5_ti_on_to_fr_l\\xf6\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D MMMM YYYY [kl.] HH:mm\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd D MMM YYYY HH:mm\"},calendar:{sameDay:\"[Idag] LT\",nextDay:\"[Imorgon] LT\",lastDay:\"[Ig\\xe5r] LT\",nextWeek:\"[P\\xe5] dddd LT\",lastWeek:\"[I] dddd[s] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"f\\xf6r %s sedan\",s:\"n\\xe5gra sekunder\",ss:\"%d sekunder\",m:\"en minut\",mm:\"%d minuter\",h:\"en timme\",hh:\"%d timmar\",d:\"en dag\",dd:\"%d dagar\",M:\"en m\\xe5nad\",MM:\"%d m\\xe5nader\",y:\"ett \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}(e|a)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"e\":1===t||2===t?\"a\":\"e\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},XDpg:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-cn\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u5468\\u65e5_\\u5468\\u4e00_\\u5468\\u4e8c_\\u5468\\u4e09_\\u5468\\u56db_\\u5468\\u4e94_\\u5468\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5Ah\\u70b9mm\\u5206\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5ddddAh\\u70b9mm\\u5206\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"\\u51cc\\u6668\":i<900?\"\\u65e9\\u4e0a\":i<1130?\"\\u4e0a\\u5348\":i<1230?\"\\u4e2d\\u5348\":i<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929]LT\",nextDay:\"[\\u660e\\u5929]LT\",nextWeek:\"[\\u4e0b]ddddLT\",lastDay:\"[\\u6628\\u5929]LT\",lastWeek:\"[\\u4e0a]ddddLT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u5468)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u5468\";default:return e}},relativeTime:{future:\"%s\\u5185\",past:\"%s\\u524d\",s:\"\\u51e0\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u949f\",mm:\"%d \\u5206\\u949f\",h:\"1 \\u5c0f\\u65f6\",hh:\"%d \\u5c0f\\u65f6\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u4e2a\\u6708\",MM:\"%d \\u4e2a\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},XLvN:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"te\",{months:\"\\u0c1c\\u0c28\\u0c35\\u0c30\\u0c3f_\\u0c2b\\u0c3f\\u0c2c\\u0c4d\\u0c30\\u0c35\\u0c30\\u0c3f_\\u0c2e\\u0c3e\\u0c30\\u0c4d\\u0c1a\\u0c3f_\\u0c0f\\u0c2a\\u0c4d\\u0c30\\u0c3f\\u0c32\\u0c4d_\\u0c2e\\u0c47_\\u0c1c\\u0c42\\u0c28\\u0c4d_\\u0c1c\\u0c41\\u0c32\\u0c48_\\u0c06\\u0c17\\u0c38\\u0c4d\\u0c1f\\u0c41_\\u0c38\\u0c46\\u0c2a\\u0c4d\\u0c1f\\u0c46\\u0c02\\u0c2c\\u0c30\\u0c4d_\\u0c05\\u0c15\\u0c4d\\u0c1f\\u0c4b\\u0c2c\\u0c30\\u0c4d_\\u0c28\\u0c35\\u0c02\\u0c2c\\u0c30\\u0c4d_\\u0c21\\u0c3f\\u0c38\\u0c46\\u0c02\\u0c2c\\u0c30\\u0c4d\".split(\"_\"),monthsShort:\"\\u0c1c\\u0c28._\\u0c2b\\u0c3f\\u0c2c\\u0c4d\\u0c30._\\u0c2e\\u0c3e\\u0c30\\u0c4d\\u0c1a\\u0c3f_\\u0c0f\\u0c2a\\u0c4d\\u0c30\\u0c3f._\\u0c2e\\u0c47_\\u0c1c\\u0c42\\u0c28\\u0c4d_\\u0c1c\\u0c41\\u0c32\\u0c48_\\u0c06\\u0c17._\\u0c38\\u0c46\\u0c2a\\u0c4d._\\u0c05\\u0c15\\u0c4d\\u0c1f\\u0c4b._\\u0c28\\u0c35._\\u0c21\\u0c3f\\u0c38\\u0c46.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0c06\\u0c26\\u0c3f\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c38\\u0c4b\\u0c2e\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c2e\\u0c02\\u0c17\\u0c33\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c2c\\u0c41\\u0c27\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c17\\u0c41\\u0c30\\u0c41\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c36\\u0c41\\u0c15\\u0c4d\\u0c30\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c36\\u0c28\\u0c3f\\u0c35\\u0c3e\\u0c30\\u0c02\".split(\"_\"),weekdaysShort:\"\\u0c06\\u0c26\\u0c3f_\\u0c38\\u0c4b\\u0c2e_\\u0c2e\\u0c02\\u0c17\\u0c33_\\u0c2c\\u0c41\\u0c27_\\u0c17\\u0c41\\u0c30\\u0c41_\\u0c36\\u0c41\\u0c15\\u0c4d\\u0c30_\\u0c36\\u0c28\\u0c3f\".split(\"_\"),weekdaysMin:\"\\u0c06_\\u0c38\\u0c4b_\\u0c2e\\u0c02_\\u0c2c\\u0c41_\\u0c17\\u0c41_\\u0c36\\u0c41_\\u0c36\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0c28\\u0c47\\u0c21\\u0c41] LT\",nextDay:\"[\\u0c30\\u0c47\\u0c2a\\u0c41] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0c28\\u0c3f\\u0c28\\u0c4d\\u0c28] LT\",lastWeek:\"[\\u0c17\\u0c24] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0c32\\u0c4b\",past:\"%s \\u0c15\\u0c4d\\u0c30\\u0c3f\\u0c24\\u0c02\",s:\"\\u0c15\\u0c4a\\u0c28\\u0c4d\\u0c28\\u0c3f \\u0c15\\u0c4d\\u0c37\\u0c23\\u0c3e\\u0c32\\u0c41\",ss:\"%d \\u0c38\\u0c46\\u0c15\\u0c28\\u0c4d\\u0c32\\u0c41\",m:\"\\u0c12\\u0c15 \\u0c28\\u0c3f\\u0c2e\\u0c3f\\u0c37\\u0c02\",mm:\"%d \\u0c28\\u0c3f\\u0c2e\\u0c3f\\u0c37\\u0c3e\\u0c32\\u0c41\",h:\"\\u0c12\\u0c15 \\u0c17\\u0c02\\u0c1f\",hh:\"%d \\u0c17\\u0c02\\u0c1f\\u0c32\\u0c41\",d:\"\\u0c12\\u0c15 \\u0c30\\u0c4b\\u0c1c\\u0c41\",dd:\"%d \\u0c30\\u0c4b\\u0c1c\\u0c41\\u0c32\\u0c41\",M:\"\\u0c12\\u0c15 \\u0c28\\u0c46\\u0c32\",MM:\"%d \\u0c28\\u0c46\\u0c32\\u0c32\\u0c41\",y:\"\\u0c12\\u0c15 \\u0c38\\u0c02\\u0c35\\u0c24\\u0c4d\\u0c38\\u0c30\\u0c02\",yy:\"%d \\u0c38\\u0c02\\u0c35\\u0c24\\u0c4d\\u0c38\\u0c30\\u0c3e\\u0c32\\u0c41\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u0c35/,ordinal:\"%d\\u0c35\",meridiemParse:/\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f|\\u0c09\\u0c26\\u0c2f\\u0c02|\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02|\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\"===t?e<4?e:e+12:\"\\u0c09\\u0c26\\u0c2f\\u0c02\"===t?e:\"\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02\"===t?e>=10?e:e+12:\"\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\":e<10?\"\\u0c09\\u0c26\\u0c2f\\u0c02\":e<17?\"\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02\":e<20?\"\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02\":\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},YRex:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ug-cn\",{months:\"\\u064a\\u0627\\u0646\\u06cb\\u0627\\u0631_\\u0641\\u06d0\\u06cb\\u0631\\u0627\\u0644_\\u0645\\u0627\\u0631\\u062a_\\u0626\\u0627\\u067e\\u0631\\u06d0\\u0644_\\u0645\\u0627\\u064a_\\u0626\\u0649\\u064a\\u06c7\\u0646_\\u0626\\u0649\\u064a\\u06c7\\u0644_\\u0626\\u0627\\u06cb\\u063a\\u06c7\\u0633\\u062a_\\u0633\\u06d0\\u0646\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0626\\u06c6\\u0643\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0646\\u0648\\u064a\\u0627\\u0628\\u0649\\u0631_\\u062f\\u06d0\\u0643\\u0627\\u0628\\u0649\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0627\\u0646\\u06cb\\u0627\\u0631_\\u0641\\u06d0\\u06cb\\u0631\\u0627\\u0644_\\u0645\\u0627\\u0631\\u062a_\\u0626\\u0627\\u067e\\u0631\\u06d0\\u0644_\\u0645\\u0627\\u064a_\\u0626\\u0649\\u064a\\u06c7\\u0646_\\u0626\\u0649\\u064a\\u06c7\\u0644_\\u0626\\u0627\\u06cb\\u063a\\u06c7\\u0633\\u062a_\\u0633\\u06d0\\u0646\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0626\\u06c6\\u0643\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0646\\u0648\\u064a\\u0627\\u0628\\u0649\\u0631_\\u062f\\u06d0\\u0643\\u0627\\u0628\\u0649\\u0631\".split(\"_\"),weekdays:\"\\u064a\\u06d5\\u0643\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u062f\\u06c8\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u0633\\u06d5\\u064a\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u0686\\u0627\\u0631\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u067e\\u06d5\\u064a\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u062c\\u06c8\\u0645\\u06d5_\\u0634\\u06d5\\u0646\\u0628\\u06d5\".split(\"_\"),weekdaysShort:\"\\u064a\\u06d5_\\u062f\\u06c8_\\u0633\\u06d5_\\u0686\\u0627_\\u067e\\u06d5_\\u062c\\u06c8_\\u0634\\u06d5\".split(\"_\"),weekdaysMin:\"\\u064a\\u06d5_\\u062f\\u06c8_\\u0633\\u06d5_\\u0686\\u0627_\\u067e\\u06d5_\\u062c\\u06c8_\\u0634\\u06d5\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\",LLL:\"YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\\u060c HH:mm\",LLLL:\"dddd\\u060c YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\\u060c HH:mm\"},meridiemParse:/\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5|\\u0633\\u06d5\\u06be\\u06d5\\u0631|\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646|\\u0686\\u06c8\\u0634|\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646|\\u0643\\u06d5\\u0686/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5\"===t||\"\\u0633\\u06d5\\u06be\\u06d5\\u0631\"===t||\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646\"===t?e:\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646\"===t||\"\\u0643\\u06d5\\u0686\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5\":i<900?\"\\u0633\\u06d5\\u06be\\u06d5\\u0631\":i<1130?\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646\":i<1230?\"\\u0686\\u06c8\\u0634\":i<1800?\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646\":\"\\u0643\\u06d5\\u0686\"},calendar:{sameDay:\"[\\u0628\\u06c8\\u06af\\u06c8\\u0646 \\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",nextDay:\"[\\u0626\\u06d5\\u062a\\u06d5 \\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",nextWeek:\"[\\u0643\\u06d0\\u0644\\u06d5\\u0631\\u0643\\u0649] dddd [\\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",lastDay:\"[\\u062a\\u06c6\\u0646\\u06c8\\u06af\\u06c8\\u0646] LT\",lastWeek:\"[\\u0626\\u0627\\u0644\\u062f\\u0649\\u0646\\u0642\\u0649] dddd [\\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0643\\u06d0\\u064a\\u0649\\u0646\",past:\"%s \\u0628\\u06c7\\u0631\\u06c7\\u0646\",s:\"\\u0646\\u06d5\\u0686\\u0686\\u06d5 \\u0633\\u06d0\\u0643\\u0648\\u0646\\u062a\",ss:\"%d \\u0633\\u06d0\\u0643\\u0648\\u0646\\u062a\",m:\"\\u0628\\u0649\\u0631 \\u0645\\u0649\\u0646\\u06c7\\u062a\",mm:\"%d \\u0645\\u0649\\u0646\\u06c7\\u062a\",h:\"\\u0628\\u0649\\u0631 \\u0633\\u0627\\u0626\\u06d5\\u062a\",hh:\"%d \\u0633\\u0627\\u0626\\u06d5\\u062a\",d:\"\\u0628\\u0649\\u0631 \\u0643\\u06c8\\u0646\",dd:\"%d \\u0643\\u06c8\\u0646\",M:\"\\u0628\\u0649\\u0631 \\u0626\\u0627\\u064a\",MM:\"%d \\u0626\\u0627\\u064a\",y:\"\\u0628\\u0649\\u0631 \\u064a\\u0649\\u0644\",yy:\"%d \\u064a\\u0649\\u0644\"},dayOfMonthOrdinalParse:/\\d{1,2}(-\\u0643\\u06c8\\u0646\\u0649|-\\u0626\\u0627\\u064a|-\\u06be\\u06d5\\u067e\\u062a\\u06d5)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"-\\u0643\\u06c8\\u0646\\u0649\";case\"w\":case\"W\":return e+\"-\\u06be\\u06d5\\u067e\\u062a\\u06d5\";default:return e}},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:7}})}(n(\"wd/R\"))},YuTi:function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,\"loaded\",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,\"id\",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},Z4QM:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u062c\\u0646\\u0648\\u0631\\u064a\",\"\\u0641\\u064a\\u0628\\u0631\\u0648\\u0631\\u064a\",\"\\u0645\\u0627\\u0631\\u0686\",\"\\u0627\\u067e\\u0631\\u064a\\u0644\",\"\\u0645\\u0626\\u064a\",\"\\u062c\\u0648\\u0646\",\"\\u062c\\u0648\\u0644\\u0627\\u0621\\u0650\",\"\\u0622\\u06af\\u0633\\u067d\",\"\\u0633\\u064a\\u067e\\u067d\\u0645\\u0628\\u0631\",\"\\u0622\\u06aa\\u067d\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0645\\u0628\\u0631\",\"\\u068a\\u0633\\u0645\\u0628\\u0631\"],n=[\"\\u0622\\u0686\\u0631\",\"\\u0633\\u0648\\u0645\\u0631\",\"\\u0627\\u06b1\\u0627\\u0631\\u0648\",\"\\u0627\\u0631\\u0628\\u0639\",\"\\u062e\\u0645\\u064a\\u0633\",\"\\u062c\\u0645\\u0639\",\"\\u0687\\u0646\\u0687\\u0631\"];e.defineLocale(\"sd\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd\\u060c D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635\\u0628\\u062d|\\u0634\\u0627\\u0645/,isPM:function(e){return\"\\u0634\\u0627\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\\u0628\\u062d\":\"\\u0634\\u0627\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0684] LT\",nextDay:\"[\\u0633\\u0680\\u0627\\u06bb\\u064a] LT\",nextWeek:\"dddd [\\u0627\\u06b3\\u064a\\u0646 \\u0647\\u0641\\u062a\\u064a \\u062a\\u064a] LT\",lastDay:\"[\\u06aa\\u0627\\u0644\\u0647\\u0647] LT\",lastWeek:\"[\\u06af\\u0632\\u0631\\u064a\\u0644 \\u0647\\u0641\\u062a\\u064a] dddd [\\u062a\\u064a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u067e\\u0648\\u0621\",past:\"%s \\u0627\\u06b3\",s:\"\\u0686\\u0646\\u062f \\u0633\\u064a\\u06aa\\u0646\\u068a\",ss:\"%d \\u0633\\u064a\\u06aa\\u0646\\u068a\",m:\"\\u0647\\u06aa \\u0645\\u0646\\u067d\",mm:\"%d \\u0645\\u0646\\u067d\",h:\"\\u0647\\u06aa \\u06aa\\u0644\\u0627\\u06aa\",hh:\"%d \\u06aa\\u0644\\u0627\\u06aa\",d:\"\\u0647\\u06aa \\u068f\\u064a\\u0646\\u0647\\u0646\",dd:\"%d \\u068f\\u064a\\u0646\\u0647\\u0646\",M:\"\\u0647\\u06aa \\u0645\\u0647\\u064a\\u0646\\u0648\",MM:\"%d \\u0645\\u0647\\u064a\\u0646\\u0627\",y:\"\\u0647\\u06aa \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},ZAMP:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms-my\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},Zduo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"eo\",{months:\"januaro_februaro_marto_aprilo_majo_junio_julio_a\\u016dgusto_septembro_oktobro_novembro_decembro\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_a\\u016dg_sep_okt_nov_dec\".split(\"_\"),weekdays:\"diman\\u0109o_lundo_mardo_merkredo_\\u0135a\\u016ddo_vendredo_sabato\".split(\"_\"),weekdaysShort:\"dim_lun_mard_merk_\\u0135a\\u016d_ven_sab\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_\\u0135a_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D[-a de] MMMM, YYYY\",LLL:\"D[-a de] MMMM, YYYY HH:mm\",LLLL:\"dddd, [la] D[-a de] MMMM, YYYY HH:mm\"},meridiemParse:/[ap]\\.t\\.m/i,isPM:function(e){return\"p\"===e.charAt(0).toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"p.t.m.\":\"P.T.M.\":n?\"a.t.m.\":\"A.T.M.\"},calendar:{sameDay:\"[Hodia\\u016d je] LT\",nextDay:\"[Morga\\u016d je] LT\",nextWeek:\"dddd [je] LT\",lastDay:\"[Hiera\\u016d je] LT\",lastWeek:\"[pasinta] dddd [je] LT\",sameElse:\"L\"},relativeTime:{future:\"post %s\",past:\"anta\\u016d %s\",s:\"sekundoj\",ss:\"%d sekundoj\",m:\"minuto\",mm:\"%d minutoj\",h:\"horo\",hh:\"%d horoj\",d:\"tago\",dd:\"%d tagoj\",M:\"monato\",MM:\"%d monatoj\",y:\"jaro\",yy:\"%d jaroj\"},dayOfMonthOrdinalParse:/\\d{1,2}a/,ordinal:\"%da\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},aCrv:function(e,t,n){var i,s=function(){this._tweens={},this._tweensAddedDuringUpdate={}};s.prototype={getAll:function(){return Object.keys(this._tweens).map((function(e){return this._tweens[e]}).bind(this))},removeAll:function(){this._tweens={}},add:function(e){this._tweens[e.getId()]=e,this._tweensAddedDuringUpdate[e.getId()]=e},remove:function(e){delete this._tweens[e.getId()],delete this._tweensAddedDuringUpdate[e.getId()]},update:function(e,t){var n=Object.keys(this._tweens);if(0===n.length)return!1;for(e=void 0!==e?e:o.now();n.length>0;){this._tweensAddedDuringUpdate={};for(var i=0;i1?1:n),this._valuesEnd)if(void 0!==this._valuesStart[t]){var s=this._valuesStart[t]||0,r=this._valuesEnd[t];r instanceof Array?this._object[t]=this._interpolationFunction(r,i):(\"string\"==typeof r&&(r=\"+\"===r.charAt(0)||\"-\"===r.charAt(0)?s+parseFloat(r):parseFloat(r)),\"number\"==typeof r&&(this._object[t]=s+(r-s)*i))}if(null!==this._onUpdateCallback&&this._onUpdateCallback(this._object,n),1===n){if(this._repeat>0){for(t in isFinite(this._repeat)&&this._repeat--,this._valuesStartRepeat){if(\"string\"==typeof this._valuesEnd[t]&&(this._valuesStartRepeat[t]=this._valuesStartRepeat[t]+parseFloat(this._valuesEnd[t])),this._yoyo){var o=this._valuesStartRepeat[t];this._valuesStartRepeat[t]=this._valuesEnd[t],this._valuesEnd[t]=o}this._valuesStart[t]=this._valuesStartRepeat[t]}return this._yoyo&&(this._reversed=!this._reversed),this._startTime=void 0!==this._repeatDelayTime?e+this._repeatDelayTime:e+this._delayTime,null!==this._onRepeatCallback&&this._onRepeatCallback(this._object),!0}null!==this._onCompleteCallback&&this._onCompleteCallback(this._object);for(var a=0,l=this._chainedTweens.length;a1?r(e[n],e[n-1],n-i):r(e[s],e[s+1>n?n:s+1],i-s)},Bezier:function(e,t){for(var n=0,i=e.length-1,s=Math.pow,r=o.Interpolation.Utils.Bernstein,a=0;a<=i;a++)n+=s(1-t,i-a)*s(t,a)*e[a]*r(i,a);return n},CatmullRom:function(e,t){var n=e.length-1,i=n*t,s=Math.floor(i),r=o.Interpolation.Utils.CatmullRom;return e[0]===e[n]?(t<0&&(s=Math.floor(i=n*(1+t))),r(e[(s-1+n)%n],e[s],e[(s+1)%n],e[(s+2)%n],i-s)):t<0?e[0]-(r(e[0],e[0],e[1],e[1],-i)-e[0]):t>1?e[n]-(r(e[n],e[n],e[n-1],e[n-1],i-n)-e[n]):r(e[s?s-1:0],e[s],e[n1;n--)t*=n;return r[e]=t,t}),CatmullRom:function(e,t,n,i,s){var r=.5*(n-e),o=.5*(i-t),a=s*s;return(2*t-2*n+r+o)*(s*a)+(-3*t+3*n-2*r-o)*a+r*s+t}}},void 0===(i=(function(){return o}).apply(t,[]))||(e.exports=i)},aIdf:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){return e+\" \"+function(e,t){return 2===t?function(e){var t={m:\"v\",b:\"v\",d:\"z\"};return void 0===t[e.charAt(0)]?e:t[e.charAt(0)]+e.substring(1)}(e):e}({mm:\"munutenn\",MM:\"miz\",dd:\"devezh\"}[n],e)}e.defineLocale(\"br\",{months:\"Genver_C'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu\".split(\"_\"),monthsShort:\"Gen_C'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker\".split(\"_\"),weekdays:\"Sul_Lun_Meurzh_Merc'her_Yaou_Gwener_Sadorn\".split(\"_\"),weekdaysShort:\"Sul_Lun_Meu_Mer_Yao_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Lu_Me_Mer_Ya_Gw_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h[e]mm A\",LTS:\"h[e]mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D [a viz] MMMM YYYY\",LLL:\"D [a viz] MMMM YYYY h[e]mm A\",LLLL:\"dddd, D [a viz] MMMM YYYY h[e]mm A\"},calendar:{sameDay:\"[Hiziv da] LT\",nextDay:\"[Warc'hoazh da] LT\",nextWeek:\"dddd [da] LT\",lastDay:\"[Dec'h da] LT\",lastWeek:\"dddd [paset da] LT\",sameElse:\"L\"},relativeTime:{future:\"a-benn %s\",past:\"%s 'zo\",s:\"un nebeud segondenno\\xf9\",ss:\"%d eilenn\",m:\"ur vunutenn\",mm:t,h:\"un eur\",hh:\"%d eur\",d:\"un devezh\",dd:t,M:\"ur miz\",MM:t,y:\"ur bloaz\",yy:function(e){switch(function e(t){return t>9?e(t%10):t}(e)){case 1:case 3:case 4:case 5:case 9:return e+\" bloaz\";default:return e+\" vloaz\"}}},dayOfMonthOrdinalParse:/\\d{1,2}(a\\xf1|vet)/,ordinal:function(e){return e+(1===e?\"a\\xf1\":\"vet\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},aIsn:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mi\",{months:\"Kohi-t\\u0101te_Hui-tanguru_Pout\\u016b-te-rangi_Paenga-wh\\u0101wh\\u0101_Haratua_Pipiri_H\\u014dngoingoi_Here-turi-k\\u014dk\\u0101_Mahuru_Whiringa-\\u0101-nuku_Whiringa-\\u0101-rangi_Hakihea\".split(\"_\"),monthsShort:\"Kohi_Hui_Pou_Pae_Hara_Pipi_H\\u014dngoi_Here_Mahu_Whi-nu_Whi-ra_Haki\".split(\"_\"),monthsRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,2}/i,weekdays:\"R\\u0101tapu_Mane_T\\u016brei_Wenerei_T\\u0101ite_Paraire_H\\u0101tarei\".split(\"_\"),weekdaysShort:\"Ta_Ma_T\\u016b_We_T\\u0101i_Pa_H\\u0101\".split(\"_\"),weekdaysMin:\"Ta_Ma_T\\u016b_We_T\\u0101i_Pa_H\\u0101\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [i] HH:mm\",LLLL:\"dddd, D MMMM YYYY [i] HH:mm\"},calendar:{sameDay:\"[i teie mahana, i] LT\",nextDay:\"[apopo i] LT\",nextWeek:\"dddd [i] LT\",lastDay:\"[inanahi i] LT\",lastWeek:\"dddd [whakamutunga i] LT\",sameElse:\"L\"},relativeTime:{future:\"i roto i %s\",past:\"%s i mua\",s:\"te h\\u0113kona ruarua\",ss:\"%d h\\u0113kona\",m:\"he meneti\",mm:\"%d meneti\",h:\"te haora\",hh:\"%d haora\",d:\"he ra\",dd:\"%d ra\",M:\"he marama\",MM:\"%d marama\",y:\"he tau\",yy:\"%d tau\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},aQkU:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mk\",{months:\"\\u0458\\u0430\\u043d\\u0443\\u0430\\u0440\\u0438_\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d\\u0438_\\u0458\\u0443\\u043b\\u0438_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438_\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438_\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438_\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\".split(\"_\"),monthsShort:\"\\u0458\\u0430\\u043d_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043f_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u0435_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u0430_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u043e\\u043a_\\u043f\\u0435\\u0442\\u043e\\u043a_\\u0441\\u0430\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434_\\u043f\\u043e\\u043d_\\u0432\\u0442\\u043e_\\u0441\\u0440\\u0435_\\u0447\\u0435\\u0442_\\u043f\\u0435\\u0442_\\u0441\\u0430\\u0431\".split(\"_\"),weekdaysMin:\"\\u043de_\\u043fo_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0435_\\u043f\\u0435_\\u0441a\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0414\\u0435\\u043d\\u0435\\u0441 \\u0432\\u043e] LT\",nextDay:\"[\\u0423\\u0442\\u0440\\u0435 \\u0432\\u043e] LT\",nextWeek:\"[\\u0412\\u043e] dddd [\\u0432\\u043e] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430 \\u0432\\u043e] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[\\u0418\\u0437\\u043c\\u0438\\u043d\\u0430\\u0442\\u0430\\u0442\\u0430] dddd [\\u0432\\u043e] LT\";case 1:case 2:case 4:case 5:return\"[\\u0418\\u0437\\u043c\\u0438\\u043d\\u0430\\u0442\\u0438\\u043e\\u0442] dddd [\\u0432\\u043e] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u043f\\u043e\\u0441\\u043b\\u0435 %s\",past:\"\\u043f\\u0440\\u0435\\u0434 %s\",s:\"\\u043d\\u0435\\u043a\\u043e\\u043b\\u043a\\u0443 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",m:\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\\u0438\",h:\"\\u0447\\u0430\\u0441\",hh:\"%d \\u0447\\u0430\\u0441\\u0430\",d:\"\\u0434\\u0435\\u043d\",dd:\"%d \\u0434\\u0435\\u043d\\u0430\",M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:\"%d \\u043c\\u0435\\u0441\\u0435\\u0446\\u0438\",y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",yy:\"%d \\u0433\\u043e\\u0434\\u0438\\u043d\\u0438\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0435\\u0432|\\u0435\\u043d|\\u0442\\u0438|\\u0432\\u0438|\\u0440\\u0438|\\u043c\\u0438)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-\\u0435\\u0432\":0===n?e+\"-\\u0435\\u043d\":n>10&&n<20?e+\"-\\u0442\\u0438\":1===t?e+\"-\\u0432\\u0438\":2===t?e+\"-\\u0440\\u0438\":7===t||8===t?e+\"-\\u043c\\u0438\":e+\"-\\u0442\\u0438\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},b1Dy:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-nz\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},bOMt:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nb\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"s\\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\\xf8rdag\".split(\"_\"),weekdaysShort:\"s\\xf8._ma._ti._on._to._fr._l\\xf8.\".split(\"_\"),weekdaysMin:\"s\\xf8_ma_ti_on_to_fr_l\\xf8\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"dddd [kl.] LT\",lastDay:\"[i g\\xe5r kl.] LT\",lastWeek:\"[forrige] dddd [kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"noen sekunder\",ss:\"%d sekunder\",m:\"ett minutt\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dager\",M:\"en m\\xe5ned\",MM:\"%d m\\xe5neder\",y:\"ett \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},bXm7:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0448\\u0456\",1:\"-\\u0448\\u0456\",2:\"-\\u0448\\u0456\",3:\"-\\u0448\\u0456\",4:\"-\\u0448\\u0456\",5:\"-\\u0448\\u0456\",6:\"-\\u0448\\u044b\",7:\"-\\u0448\\u0456\",8:\"-\\u0448\\u0456\",9:\"-\\u0448\\u044b\",10:\"-\\u0448\\u044b\",20:\"-\\u0448\\u044b\",30:\"-\\u0448\\u044b\",40:\"-\\u0448\\u044b\",50:\"-\\u0448\\u0456\",60:\"-\\u0448\\u044b\",70:\"-\\u0448\\u0456\",80:\"-\\u0448\\u0456\",90:\"-\\u0448\\u044b\",100:\"-\\u0448\\u0456\"};e.defineLocale(\"kk\",{months:\"\\u049b\\u0430\\u04a3\\u0442\\u0430\\u0440_\\u0430\\u049b\\u043f\\u0430\\u043d_\\u043d\\u0430\\u0443\\u0440\\u044b\\u0437_\\u0441\\u04d9\\u0443\\u0456\\u0440_\\u043c\\u0430\\u043c\\u044b\\u0440_\\u043c\\u0430\\u0443\\u0441\\u044b\\u043c_\\u0448\\u0456\\u043b\\u0434\\u0435_\\u0442\\u0430\\u043c\\u044b\\u0437_\\u049b\\u044b\\u0440\\u043a\\u04af\\u0439\\u0435\\u043a_\\u049b\\u0430\\u0437\\u0430\\u043d_\\u049b\\u0430\\u0440\\u0430\\u0448\\u0430_\\u0436\\u0435\\u043b\\u0442\\u043e\\u049b\\u0441\\u0430\\u043d\".split(\"_\"),monthsShort:\"\\u049b\\u0430\\u04a3_\\u0430\\u049b\\u043f_\\u043d\\u0430\\u0443_\\u0441\\u04d9\\u0443_\\u043c\\u0430\\u043c_\\u043c\\u0430\\u0443_\\u0448\\u0456\\u043b_\\u0442\\u0430\\u043c_\\u049b\\u044b\\u0440_\\u049b\\u0430\\u0437_\\u049b\\u0430\\u0440_\\u0436\\u0435\\u043b\".split(\"_\"),weekdays:\"\\u0436\\u0435\\u043a\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0434\\u04af\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0441\\u0435\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0441\\u04d9\\u0440\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0431\\u0435\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0436\\u04b1\\u043c\\u0430_\\u0441\\u0435\\u043d\\u0431\\u0456\".split(\"_\"),weekdaysShort:\"\\u0436\\u0435\\u043a_\\u0434\\u04af\\u0439_\\u0441\\u0435\\u0439_\\u0441\\u04d9\\u0440_\\u0431\\u0435\\u0439_\\u0436\\u04b1\\u043c_\\u0441\\u0435\\u043d\".split(\"_\"),weekdaysMin:\"\\u0436\\u043a_\\u0434\\u0439_\\u0441\\u0439_\\u0441\\u0440_\\u0431\\u0439_\\u0436\\u043c_\\u0441\\u043d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0411\\u04af\\u0433\\u0456\\u043d \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",nextDay:\"[\\u0415\\u0440\\u0442\\u0435\\u04a3 \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",nextWeek:\"dddd [\\u0441\\u0430\\u0493\\u0430\\u0442] LT\",lastDay:\"[\\u041a\\u0435\\u0448\\u0435 \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",lastWeek:\"[\\u04e8\\u0442\\u043a\\u0435\\u043d \\u0430\\u043f\\u0442\\u0430\\u043d\\u044b\\u04a3] dddd [\\u0441\\u0430\\u0493\\u0430\\u0442] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0456\\u0448\\u0456\\u043d\\u0434\\u0435\",past:\"%s \\u0431\\u04b1\\u0440\\u044b\\u043d\",s:\"\\u0431\\u0456\\u0440\\u043d\\u0435\\u0448\\u0435 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:\"\\u0431\\u0456\\u0440 \\u043c\\u0438\\u043d\\u0443\\u0442\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\",h:\"\\u0431\\u0456\\u0440 \\u0441\\u0430\\u0493\\u0430\\u0442\",hh:\"%d \\u0441\\u0430\\u0493\\u0430\\u0442\",d:\"\\u0431\\u0456\\u0440 \\u043a\\u04af\\u043d\",dd:\"%d \\u043a\\u04af\\u043d\",M:\"\\u0431\\u0456\\u0440 \\u0430\\u0439\",MM:\"%d \\u0430\\u0439\",y:\"\\u0431\\u0456\\u0440 \\u0436\\u044b\\u043b\",yy:\"%d \\u0436\\u044b\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0448\\u0456|\\u0448\\u044b)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},bYM6:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-tn\",{months:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},bpih:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_luned\\xec_marted\\xec_mercoled\\xec_gioved\\xec_venerd\\xec_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Oggi alle] LT\",nextDay:\"[Domani alle] LT\",nextWeek:\"dddd [alle] LT\",lastDay:\"[Ieri alle] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[la scorsa] dddd [alle] LT\";default:return\"[lo scorso] dddd [alle] LT\"}},sameElse:\"L\"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?\"tra\":\"in\")+\" \"+e},past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},bxKX:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it-ch\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_luned\\xec_marted\\xec_mercoled\\xec_gioved\\xec_venerd\\xec_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Oggi alle] LT\",nextDay:\"[Domani alle] LT\",nextWeek:\"dddd [alle] LT\",lastDay:\"[Ieri alle] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[la scorsa] dddd [alle] LT\";default:return\"[lo scorso] dddd [alle] LT\"}},sameElse:\"L\"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?\"tra\":\"in\")+\" \"+e},past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},cRix:function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.\".split(\"_\"),n=\"jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\");e.defineLocale(\"fy\",{months:\"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsParseExact:!0,weekdays:\"snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon\".split(\"_\"),weekdaysShort:\"si._mo._ti._wo._to._fr._so.\".split(\"_\"),weekdaysMin:\"Si_Mo_Ti_Wo_To_Fr_So\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[hjoed om] LT\",nextDay:\"[moarn om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[juster om] LT\",lastWeek:\"[\\xf4fr\\xfbne] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oer %s\",past:\"%s lyn\",s:\"in pear sekonden\",ss:\"%d sekonden\",m:\"ien min\\xfat\",mm:\"%d minuten\",h:\"ien oere\",hh:\"%d oeren\",d:\"ien dei\",dd:\"%d dagen\",M:\"ien moanne\",MM:\"%d moannen\",y:\"ien jier\",yy:\"%d jierren\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},czMo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-il\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(\"wd/R\"))},dNwA:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sw\",{months:\"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi\".split(\"_\"),weekdaysShort:\"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos\".split(\"_\"),weekdaysMin:\"J2_J3_J4_J5_Al_Ij_J1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[leo saa] LT\",nextDay:\"[kesho saa] LT\",nextWeek:\"[wiki ijayo] dddd [saat] LT\",lastDay:\"[jana] LT\",lastWeek:\"[wiki iliyopita] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s baadaye\",past:\"tokea %s\",s:\"hivi punde\",ss:\"sekunde %d\",m:\"dakika moja\",mm:\"dakika %d\",h:\"saa limoja\",hh:\"masaa %d\",d:\"siku moja\",dd:\"masiku %d\",M:\"mwezi mmoja\",MM:\"miezi %d\",y:\"mwaka mmoja\",yy:\"miaka %d\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"e+ae\":function(e,t,n){!function(e){\"use strict\";var t=\"janu\\xe1r_febru\\xe1r_marec_apr\\xedl_m\\xe1j_j\\xfan_j\\xfal_august_september_okt\\xf3ber_november_december\".split(\"_\"),n=\"jan_feb_mar_apr_m\\xe1j_j\\xfan_j\\xfal_aug_sep_okt_nov_dec\".split(\"_\");function i(e){return e>1&&e<5}function s(e,t,n,s){var r=e+\" \";switch(n){case\"s\":return t||s?\"p\\xe1r sek\\xfand\":\"p\\xe1r sekundami\";case\"ss\":return t||s?r+(i(e)?\"sekundy\":\"sek\\xfand\"):r+\"sekundami\";case\"m\":return t?\"min\\xfata\":s?\"min\\xfatu\":\"min\\xfatou\";case\"mm\":return t||s?r+(i(e)?\"min\\xfaty\":\"min\\xfat\"):r+\"min\\xfatami\";case\"h\":return t?\"hodina\":s?\"hodinu\":\"hodinou\";case\"hh\":return t||s?r+(i(e)?\"hodiny\":\"hod\\xedn\"):r+\"hodinami\";case\"d\":return t||s?\"de\\u0148\":\"d\\u0148om\";case\"dd\":return t||s?r+(i(e)?\"dni\":\"dn\\xed\"):r+\"d\\u0148ami\";case\"M\":return t||s?\"mesiac\":\"mesiacom\";case\"MM\":return t||s?r+(i(e)?\"mesiace\":\"mesiacov\"):r+\"mesiacmi\";case\"y\":return t||s?\"rok\":\"rokom\";case\"yy\":return t||s?r+(i(e)?\"roky\":\"rokov\"):r+\"rokmi\"}}e.defineLocale(\"sk\",{months:t,monthsShort:n,weekdays:\"nede\\u013ea_pondelok_utorok_streda_\\u0161tvrtok_piatok_sobota\".split(\"_\"),weekdaysShort:\"ne_po_ut_st_\\u0161t_pi_so\".split(\"_\"),weekdaysMin:\"ne_po_ut_st_\\u0161t_pi_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[dnes o] LT\",nextDay:\"[zajtra o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v nede\\u013eu o] LT\";case 1:case 2:return\"[v] dddd [o] LT\";case 3:return\"[v stredu o] LT\";case 4:return\"[vo \\u0161tvrtok o] LT\";case 5:return\"[v piatok o] LT\";case 6:return\"[v sobotu o] LT\"}},lastDay:\"[v\\u010dera o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minul\\xfa nede\\u013eu o] LT\";case 1:case 2:return\"[minul\\xfd] dddd [o] LT\";case 3:return\"[minul\\xfa stredu o] LT\";case 4:case 5:return\"[minul\\xfd] dddd [o] LT\";case 6:return\"[minul\\xfa sobotu o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pred %s\",s,ss:s,m:s,mm:s,h:s,hh:s,d:s,dd:s,M:s,MM:s,y:s,yy:s},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},evrj:function(e,t,n){var i=n(\"m4GZ\");e.exports=function(e){var t=e.replace(/-/g,\"+\").replace(/_/g,\"/\");switch(t.length%4){case 0:break;case 2:t+=\"==\";break;case 3:t+=\"=\";break;default:throw\"Illegal base64url string!\"}try{return function(e){return decodeURIComponent(i(e).replace(/(.)/g,(function(e,t){var n=t.charCodeAt(0).toString(16).toUpperCase();return n.length<2&&(n=\"0\"+n),\"%\"+n})))}(t)}catch(n){return i(t)}}},fzPg:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"yo\",{months:\"S\\u1eb9\\u0301r\\u1eb9\\u0301_E\\u0300re\\u0300le\\u0300_\\u1eb8r\\u1eb9\\u0300na\\u0300_I\\u0300gbe\\u0301_E\\u0300bibi_O\\u0300ku\\u0300du_Ag\\u1eb9mo_O\\u0300gu\\u0301n_Owewe_\\u1ecc\\u0300wa\\u0300ra\\u0300_Be\\u0301lu\\u0301_\\u1ecc\\u0300p\\u1eb9\\u0300\\u0300\".split(\"_\"),monthsShort:\"S\\u1eb9\\u0301r_E\\u0300rl_\\u1eb8rn_I\\u0300gb_E\\u0300bi_O\\u0300ku\\u0300_Ag\\u1eb9_O\\u0300gu\\u0301_Owe_\\u1ecc\\u0300wa\\u0300_Be\\u0301l_\\u1ecc\\u0300p\\u1eb9\\u0300\\u0300\".split(\"_\"),weekdays:\"A\\u0300i\\u0300ku\\u0301_Aje\\u0301_I\\u0300s\\u1eb9\\u0301gun_\\u1eccj\\u1ecd\\u0301ru\\u0301_\\u1eccj\\u1ecd\\u0301b\\u1ecd_\\u1eb8ti\\u0300_A\\u0300ba\\u0301m\\u1eb9\\u0301ta\".split(\"_\"),weekdaysShort:\"A\\u0300i\\u0300k_Aje\\u0301_I\\u0300s\\u1eb9\\u0301_\\u1eccjr_\\u1eccjb_\\u1eb8ti\\u0300_A\\u0300ba\\u0301\".split(\"_\"),weekdaysMin:\"A\\u0300i\\u0300_Aj_I\\u0300s_\\u1eccr_\\u1eccb_\\u1eb8t_A\\u0300b\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[O\\u0300ni\\u0300 ni] LT\",nextDay:\"[\\u1ecc\\u0300la ni] LT\",nextWeek:\"dddd [\\u1eccs\\u1eb9\\u0300 to\\u0301n'b\\u1ecd] [ni] LT\",lastDay:\"[A\\u0300na ni] LT\",lastWeek:\"dddd [\\u1eccs\\u1eb9\\u0300 to\\u0301l\\u1ecd\\u0301] [ni] LT\",sameElse:\"L\"},relativeTime:{future:\"ni\\u0301 %s\",past:\"%s k\\u1ecdja\\u0301\",s:\"i\\u0300s\\u1eb9ju\\u0301 aaya\\u0301 die\",ss:\"aaya\\u0301 %d\",m:\"i\\u0300s\\u1eb9ju\\u0301 kan\",mm:\"i\\u0300s\\u1eb9ju\\u0301 %d\",h:\"wa\\u0301kati kan\",hh:\"wa\\u0301kati %d\",d:\"\\u1ecdj\\u1ecd\\u0301 kan\",dd:\"\\u1ecdj\\u1ecd\\u0301 %d\",M:\"osu\\u0300 kan\",MM:\"osu\\u0300 %d\",y:\"\\u1ecddu\\u0301n kan\",yy:\"\\u1ecddu\\u0301n %d\"},dayOfMonthOrdinalParse:/\\u1ecdj\\u1ecd\\u0301\\s\\d{1,2}/,ordinal:\"\\u1ecdj\\u1ecd\\u0301 %d\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},gVVK:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s=e+\" \";switch(n){case\"s\":return t||i?\"nekaj sekund\":\"nekaj sekundami\";case\"ss\":return s+(1===e?t?\"sekundo\":\"sekundi\":2===e?t||i?\"sekundi\":\"sekundah\":e<5?t||i?\"sekunde\":\"sekundah\":\"sekund\");case\"m\":return t?\"ena minuta\":\"eno minuto\";case\"mm\":return s+(1===e?t?\"minuta\":\"minuto\":2===e?t||i?\"minuti\":\"minutama\":e<5?t||i?\"minute\":\"minutami\":t||i?\"minut\":\"minutami\");case\"h\":return t?\"ena ura\":\"eno uro\";case\"hh\":return s+(1===e?t?\"ura\":\"uro\":2===e?t||i?\"uri\":\"urama\":e<5?t||i?\"ure\":\"urami\":t||i?\"ur\":\"urami\");case\"d\":return t||i?\"en dan\":\"enim dnem\";case\"dd\":return s+(1===e?t||i?\"dan\":\"dnem\":2===e?t||i?\"dni\":\"dnevoma\":t||i?\"dni\":\"dnevi\");case\"M\":return t||i?\"en mesec\":\"enim mesecem\";case\"MM\":return s+(1===e?t||i?\"mesec\":\"mesecem\":2===e?t||i?\"meseca\":\"mesecema\":e<5?t||i?\"mesece\":\"meseci\":t||i?\"mesecev\":\"meseci\");case\"y\":return t||i?\"eno leto\":\"enim letom\";case\"yy\":return s+(1===e?t||i?\"leto\":\"letom\":2===e?t||i?\"leti\":\"letoma\":e<5?t||i?\"leta\":\"leti\":t||i?\"let\":\"leti\")}}e.defineLocale(\"sl\",{months:\"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljek_torek_sreda_\\u010detrtek_petek_sobota\".split(\"_\"),weekdaysShort:\"ned._pon._tor._sre._\\u010det._pet._sob.\".split(\"_\"),weekdaysMin:\"ne_po_to_sr_\\u010de_pe_so\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danes ob] LT\",nextDay:\"[jutri ob] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v] [nedeljo] [ob] LT\";case 3:return\"[v] [sredo] [ob] LT\";case 6:return\"[v] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[v] dddd [ob] LT\"}},lastDay:\"[v\\u010deraj ob] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[prej\\u0161njo] [nedeljo] [ob] LT\";case 3:return\"[prej\\u0161njo] [sredo] [ob] LT\";case 6:return\"[prej\\u0161njo] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[prej\\u0161nji] dddd [ob] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u010dez %s\",past:\"pred %s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},gekB:function(e,t,n){!function(e){\"use strict\";var t=\"nolla yksi kaksi kolme nelj\\xe4 viisi kuusi seitsem\\xe4n kahdeksan yhdeks\\xe4n\".split(\" \"),n=[\"nolla\",\"yhden\",\"kahden\",\"kolmen\",\"nelj\\xe4n\",\"viiden\",\"kuuden\",t[7],t[8],t[9]];function i(e,i,s,r){var o=\"\";switch(s){case\"s\":return r?\"muutaman sekunnin\":\"muutama sekunti\";case\"ss\":return r?\"sekunnin\":\"sekuntia\";case\"m\":return r?\"minuutin\":\"minuutti\";case\"mm\":o=r?\"minuutin\":\"minuuttia\";break;case\"h\":return r?\"tunnin\":\"tunti\";case\"hh\":o=r?\"tunnin\":\"tuntia\";break;case\"d\":return r?\"p\\xe4iv\\xe4n\":\"p\\xe4iv\\xe4\";case\"dd\":o=r?\"p\\xe4iv\\xe4n\":\"p\\xe4iv\\xe4\\xe4\";break;case\"M\":return r?\"kuukauden\":\"kuukausi\";case\"MM\":o=r?\"kuukauden\":\"kuukautta\";break;case\"y\":return r?\"vuoden\":\"vuosi\";case\"yy\":o=r?\"vuoden\":\"vuotta\"}return function(e,i){return e<10?i?n[e]:t[e]:e}(e,r)+\" \"+o}e.defineLocale(\"fi\",{months:\"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kes\\xe4kuu_hein\\xe4kuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu\".split(\"_\"),monthsShort:\"tammi_helmi_maalis_huhti_touko_kes\\xe4_hein\\xe4_elo_syys_loka_marras_joulu\".split(\"_\"),weekdays:\"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai\".split(\"_\"),weekdaysShort:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),weekdaysMin:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"Do MMMM[ta] YYYY\",LLL:\"Do MMMM[ta] YYYY, [klo] HH.mm\",LLLL:\"dddd, Do MMMM[ta] YYYY, [klo] HH.mm\",l:\"D.M.YYYY\",ll:\"Do MMM YYYY\",lll:\"Do MMM YYYY, [klo] HH.mm\",llll:\"ddd, Do MMM YYYY, [klo] HH.mm\"},calendar:{sameDay:\"[t\\xe4n\\xe4\\xe4n] [klo] LT\",nextDay:\"[huomenna] [klo] LT\",nextWeek:\"dddd [klo] LT\",lastDay:\"[eilen] [klo] LT\",lastWeek:\"[viime] dddd[na] [klo] LT\",sameElse:\"L\"},relativeTime:{future:\"%s p\\xe4\\xe4st\\xe4\",past:\"%s sitten\",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},gjCT:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"};e.defineLocale(\"ar-sa\",{months:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a\\u0648_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648_\\u0623\\u063a\\u0633\\u0637\\u0633_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a\\u0648_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648_\\u0623\\u063a\\u0633\\u0637\\u0633_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:0,doy:6}})}(n(\"wd/R\"))},hKrs:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bg\",{months:\"\\u044f\\u043d\\u0443\\u0430\\u0440\\u0438_\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0439_\\u044e\\u043d\\u0438_\\u044e\\u043b\\u0438_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438_\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438_\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438_\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0440_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u044e\\u043d\\u0438_\\u044e\\u043b\\u0438_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043f_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u0435_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u044f_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u044f\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u044a\\u0440\\u0442\\u044a\\u043a_\\u043f\\u0435\\u0442\\u044a\\u043a_\\u0441\\u044a\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434_\\u043f\\u043e\\u043d_\\u0432\\u0442\\u043e_\\u0441\\u0440\\u044f_\\u0447\\u0435\\u0442_\\u043f\\u0435\\u0442_\\u0441\\u044a\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0414\\u043d\\u0435\\u0441 \\u0432] LT\",nextDay:\"[\\u0423\\u0442\\u0440\\u0435 \\u0432] LT\",nextWeek:\"dddd [\\u0432] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430 \\u0432] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[\\u0412 \\u0438\\u0437\\u043c\\u0438\\u043d\\u0430\\u043b\\u0430\\u0442\\u0430] dddd [\\u0432] LT\";case 1:case 2:case 4:case 5:return\"[\\u0412 \\u0438\\u0437\\u043c\\u0438\\u043d\\u0430\\u043b\\u0438\\u044f] dddd [\\u0432] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u0441\\u043b\\u0435\\u0434 %s\",past:\"\\u043f\\u0440\\u0435\\u0434\\u0438 %s\",s:\"\\u043d\\u044f\\u043a\\u043e\\u043b\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",m:\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\\u0438\",h:\"\\u0447\\u0430\\u0441\",hh:\"%d \\u0447\\u0430\\u0441\\u0430\",d:\"\\u0434\\u0435\\u043d\",dd:\"%d \\u0434\\u043d\\u0438\",M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:\"%d \\u043c\\u0435\\u0441\\u0435\\u0446\\u0430\",y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",yy:\"%d \\u0433\\u043e\\u0434\\u0438\\u043d\\u0438\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0435\\u0432|\\u0435\\u043d|\\u0442\\u0438|\\u0432\\u0438|\\u0440\\u0438|\\u043c\\u0438)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-\\u0435\\u0432\":0===n?e+\"-\\u0435\\u043d\":n>10&&n<20?e+\"-\\u0442\\u0438\":1===t?e+\"-\\u0432\\u0438\":2===t?e+\"-\\u0440\\u0438\":7===t||8===t?e+\"-\\u043c\\u0438\":e+\"-\\u0442\\u0438\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},honF:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u1041\",2:\"\\u1042\",3:\"\\u1043\",4:\"\\u1044\",5:\"\\u1045\",6:\"\\u1046\",7:\"\\u1047\",8:\"\\u1048\",9:\"\\u1049\",0:\"\\u1040\"},n={\"\\u1041\":\"1\",\"\\u1042\":\"2\",\"\\u1043\":\"3\",\"\\u1044\":\"4\",\"\\u1045\":\"5\",\"\\u1046\":\"6\",\"\\u1047\":\"7\",\"\\u1048\":\"8\",\"\\u1049\":\"9\",\"\\u1040\":\"0\"};e.defineLocale(\"my\",{months:\"\\u1007\\u1014\\u103a\\u1014\\u101d\\u102b\\u101b\\u102e_\\u1016\\u1031\\u1016\\u1031\\u102c\\u103a\\u101d\\u102b\\u101b\\u102e_\\u1019\\u1010\\u103a_\\u1027\\u1015\\u103c\\u102e_\\u1019\\u1031_\\u1007\\u103d\\u1014\\u103a_\\u1007\\u1030\\u101c\\u102d\\u102f\\u1004\\u103a_\\u101e\\u103c\\u1002\\u102f\\u1010\\u103a_\\u1005\\u1000\\u103a\\u1010\\u1004\\u103a\\u1018\\u102c_\\u1021\\u1031\\u102c\\u1000\\u103a\\u1010\\u102d\\u102f\\u1018\\u102c_\\u1014\\u102d\\u102f\\u101d\\u1004\\u103a\\u1018\\u102c_\\u1012\\u102e\\u1007\\u1004\\u103a\\u1018\\u102c\".split(\"_\"),monthsShort:\"\\u1007\\u1014\\u103a_\\u1016\\u1031_\\u1019\\u1010\\u103a_\\u1015\\u103c\\u102e_\\u1019\\u1031_\\u1007\\u103d\\u1014\\u103a_\\u101c\\u102d\\u102f\\u1004\\u103a_\\u101e\\u103c_\\u1005\\u1000\\u103a_\\u1021\\u1031\\u102c\\u1000\\u103a_\\u1014\\u102d\\u102f_\\u1012\\u102e\".split(\"_\"),weekdays:\"\\u1010\\u1014\\u1004\\u103a\\u1039\\u1002\\u1014\\u103d\\u1031_\\u1010\\u1014\\u1004\\u103a\\u1039\\u101c\\u102c_\\u1021\\u1004\\u103a\\u1039\\u1002\\u102b_\\u1017\\u102f\\u1012\\u1039\\u1013\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c\\u101e\\u1015\\u1010\\u1031\\u1038_\\u101e\\u1031\\u102c\\u1000\\u103c\\u102c_\\u1005\\u1014\\u1031\".split(\"_\"),weekdaysShort:\"\\u1014\\u103d\\u1031_\\u101c\\u102c_\\u1002\\u102b_\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c_\\u101e\\u1031\\u102c_\\u1014\\u1031\".split(\"_\"),weekdaysMin:\"\\u1014\\u103d\\u1031_\\u101c\\u102c_\\u1002\\u102b_\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c_\\u101e\\u1031\\u102c_\\u1014\\u1031\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u101a\\u1014\\u1031.] LT [\\u1019\\u103e\\u102c]\",nextDay:\"[\\u1019\\u1014\\u1000\\u103a\\u1016\\u103c\\u1014\\u103a] LT [\\u1019\\u103e\\u102c]\",nextWeek:\"dddd LT [\\u1019\\u103e\\u102c]\",lastDay:\"[\\u1019\\u1014\\u1031.\\u1000] LT [\\u1019\\u103e\\u102c]\",lastWeek:\"[\\u1015\\u103c\\u102e\\u1038\\u1001\\u1032\\u1037\\u101e\\u1031\\u102c] dddd LT [\\u1019\\u103e\\u102c]\",sameElse:\"L\"},relativeTime:{future:\"\\u101c\\u102c\\u1019\\u100a\\u103a\\u1037 %s \\u1019\\u103e\\u102c\",past:\"\\u101c\\u103d\\u1014\\u103a\\u1001\\u1032\\u1037\\u101e\\u1031\\u102c %s \\u1000\",s:\"\\u1005\\u1000\\u1039\\u1000\\u1014\\u103a.\\u1021\\u1014\\u100a\\u103a\\u1038\\u1004\\u101a\\u103a\",ss:\"%d \\u1005\\u1000\\u1039\\u1000\\u1014\\u1037\\u103a\",m:\"\\u1010\\u1005\\u103a\\u1019\\u102d\\u1014\\u1005\\u103a\",mm:\"%d \\u1019\\u102d\\u1014\\u1005\\u103a\",h:\"\\u1010\\u1005\\u103a\\u1014\\u102c\\u101b\\u102e\",hh:\"%d \\u1014\\u102c\\u101b\\u102e\",d:\"\\u1010\\u1005\\u103a\\u101b\\u1000\\u103a\",dd:\"%d \\u101b\\u1000\\u103a\",M:\"\\u1010\\u1005\\u103a\\u101c\",MM:\"%d \\u101c\",y:\"\\u1010\\u1005\\u103a\\u1014\\u103e\\u1005\\u103a\",yy:\"%d \\u1014\\u103e\\u1005\\u103a\"},preparse:function(e){return e.replace(/[\\u1041\\u1042\\u1043\\u1044\\u1045\\u1046\\u1047\\u1048\\u1049\\u1040]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(\"wd/R\"))},iEDd:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"gl\",{months:\"xaneiro_febreiro_marzo_abril_maio_xu\\xf1o_xullo_agosto_setembro_outubro_novembro_decembro\".split(\"_\"),monthsShort:\"xan._feb._mar._abr._mai._xu\\xf1._xul._ago._set._out._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"domingo_luns_martes_m\\xe9rcores_xoves_venres_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._m\\xe9r._xov._ven._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_m\\xe9_xo_ve_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoxe \"+(1!==this.hours()?\"\\xe1s\":\"\\xe1\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1\\xe1 \"+(1!==this.hours()?\"\\xe1s\":\"\\xe1\")+\"] LT\"},nextWeek:function(){return\"dddd [\"+(1!==this.hours()?\"\\xe1s\":\"a\")+\"] LT\"},lastDay:function(){return\"[onte \"+(1!==this.hours()?\"\\xe1\":\"a\")+\"] LT\"},lastWeek:function(){return\"[o] dddd [pasado \"+(1!==this.hours()?\"\\xe1s\":\"a\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:function(e){return 0===e.indexOf(\"un\")?\"n\"+e:\"en \"+e},past:\"hai %s\",s:\"uns segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"unha hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},iYuL:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],s=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"domingo_lunes_martes_mi\\xe9rcoles_jueves_viernes_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mi\\xe9._jue._vie._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1ana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un a\\xf1o\",yy:\"%d a\\xf1os\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jUeY:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"el\",{monthsNominativeEl:\"\\u0399\\u03b1\\u03bd\\u03bf\\u03c5\\u03ac\\u03c1\\u03b9\\u03bf\\u03c2_\\u03a6\\u03b5\\u03b2\\u03c1\\u03bf\\u03c5\\u03ac\\u03c1\\u03b9\\u03bf\\u03c2_\\u039c\\u03ac\\u03c1\\u03c4\\u03b9\\u03bf\\u03c2_\\u0391\\u03c0\\u03c1\\u03af\\u03bb\\u03b9\\u03bf\\u03c2_\\u039c\\u03ac\\u03b9\\u03bf\\u03c2_\\u0399\\u03bf\\u03cd\\u03bd\\u03b9\\u03bf\\u03c2_\\u0399\\u03bf\\u03cd\\u03bb\\u03b9\\u03bf\\u03c2_\\u0391\\u03cd\\u03b3\\u03bf\\u03c5\\u03c3\\u03c4\\u03bf\\u03c2_\\u03a3\\u03b5\\u03c0\\u03c4\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u039f\\u03ba\\u03c4\\u03ce\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u039d\\u03bf\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u0394\\u03b5\\u03ba\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2\".split(\"_\"),monthsGenitiveEl:\"\\u0399\\u03b1\\u03bd\\u03bf\\u03c5\\u03b1\\u03c1\\u03af\\u03bf\\u03c5_\\u03a6\\u03b5\\u03b2\\u03c1\\u03bf\\u03c5\\u03b1\\u03c1\\u03af\\u03bf\\u03c5_\\u039c\\u03b1\\u03c1\\u03c4\\u03af\\u03bf\\u03c5_\\u0391\\u03c0\\u03c1\\u03b9\\u03bb\\u03af\\u03bf\\u03c5_\\u039c\\u03b1\\u0390\\u03bf\\u03c5_\\u0399\\u03bf\\u03c5\\u03bd\\u03af\\u03bf\\u03c5_\\u0399\\u03bf\\u03c5\\u03bb\\u03af\\u03bf\\u03c5_\\u0391\\u03c5\\u03b3\\u03bf\\u03cd\\u03c3\\u03c4\\u03bf\\u03c5_\\u03a3\\u03b5\\u03c0\\u03c4\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u039f\\u03ba\\u03c4\\u03c9\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u039d\\u03bf\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u0394\\u03b5\\u03ba\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5\".split(\"_\"),months:function(e,t){return e?\"string\"==typeof t&&/D/.test(t.substring(0,t.indexOf(\"MMMM\")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]:this._monthsNominativeEl},monthsShort:\"\\u0399\\u03b1\\u03bd_\\u03a6\\u03b5\\u03b2_\\u039c\\u03b1\\u03c1_\\u0391\\u03c0\\u03c1_\\u039c\\u03b1\\u03ca_\\u0399\\u03bf\\u03c5\\u03bd_\\u0399\\u03bf\\u03c5\\u03bb_\\u0391\\u03c5\\u03b3_\\u03a3\\u03b5\\u03c0_\\u039f\\u03ba\\u03c4_\\u039d\\u03bf\\u03b5_\\u0394\\u03b5\\u03ba\".split(\"_\"),weekdays:\"\\u039a\\u03c5\\u03c1\\u03b9\\u03b1\\u03ba\\u03ae_\\u0394\\u03b5\\u03c5\\u03c4\\u03ad\\u03c1\\u03b1_\\u03a4\\u03c1\\u03af\\u03c4\\u03b7_\\u03a4\\u03b5\\u03c4\\u03ac\\u03c1\\u03c4\\u03b7_\\u03a0\\u03ad\\u03bc\\u03c0\\u03c4\\u03b7_\\u03a0\\u03b1\\u03c1\\u03b1\\u03c3\\u03ba\\u03b5\\u03c5\\u03ae_\\u03a3\\u03ac\\u03b2\\u03b2\\u03b1\\u03c4\\u03bf\".split(\"_\"),weekdaysShort:\"\\u039a\\u03c5\\u03c1_\\u0394\\u03b5\\u03c5_\\u03a4\\u03c1\\u03b9_\\u03a4\\u03b5\\u03c4_\\u03a0\\u03b5\\u03bc_\\u03a0\\u03b1\\u03c1_\\u03a3\\u03b1\\u03b2\".split(\"_\"),weekdaysMin:\"\\u039a\\u03c5_\\u0394\\u03b5_\\u03a4\\u03c1_\\u03a4\\u03b5_\\u03a0\\u03b5_\\u03a0\\u03b1_\\u03a3\\u03b1\".split(\"_\"),meridiem:function(e,t,n){return e>11?n?\"\\u03bc\\u03bc\":\"\\u039c\\u039c\":n?\"\\u03c0\\u03bc\":\"\\u03a0\\u039c\"},isPM:function(e){return\"\\u03bc\"===(e+\"\").toLowerCase()[0]},meridiemParse:/[\\u03a0\\u039c]\\.?\\u039c?\\.?/i,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendarEl:{sameDay:\"[\\u03a3\\u03ae\\u03bc\\u03b5\\u03c1\\u03b1 {}] LT\",nextDay:\"[\\u0391\\u03cd\\u03c1\\u03b9\\u03bf {}] LT\",nextWeek:\"dddd [{}] LT\",lastDay:\"[\\u03a7\\u03b8\\u03b5\\u03c2 {}] LT\",lastWeek:function(){switch(this.day()){case 6:return\"[\\u03c4\\u03bf \\u03c0\\u03c1\\u03bf\\u03b7\\u03b3\\u03bf\\u03cd\\u03bc\\u03b5\\u03bd\\u03bf] dddd [{}] LT\";default:return\"[\\u03c4\\u03b7\\u03bd \\u03c0\\u03c1\\u03bf\\u03b7\\u03b3\\u03bf\\u03cd\\u03bc\\u03b5\\u03bd\\u03b7] dddd [{}] LT\"}},sameElse:\"L\"},calendar:function(e,t){var n,i=this._calendarEl[e],s=t&&t.hours();return((n=i)instanceof Function||\"[object Function]\"===Object.prototype.toString.call(n))&&(i=i.apply(t)),i.replace(\"{}\",s%12==1?\"\\u03c3\\u03c4\\u03b7\":\"\\u03c3\\u03c4\\u03b9\\u03c2\")},relativeTime:{future:\"\\u03c3\\u03b5 %s\",past:\"%s \\u03c0\\u03c1\\u03b9\\u03bd\",s:\"\\u03bb\\u03af\\u03b3\\u03b1 \\u03b4\\u03b5\\u03c5\\u03c4\\u03b5\\u03c1\\u03cc\\u03bb\\u03b5\\u03c0\\u03c4\\u03b1\",ss:\"%d \\u03b4\\u03b5\\u03c5\\u03c4\\u03b5\\u03c1\\u03cc\\u03bb\\u03b5\\u03c0\\u03c4\\u03b1\",m:\"\\u03ad\\u03bd\\u03b1 \\u03bb\\u03b5\\u03c0\\u03c4\\u03cc\",mm:\"%d \\u03bb\\u03b5\\u03c0\\u03c4\\u03ac\",h:\"\\u03bc\\u03af\\u03b1 \\u03ce\\u03c1\\u03b1\",hh:\"%d \\u03ce\\u03c1\\u03b5\\u03c2\",d:\"\\u03bc\\u03af\\u03b1 \\u03bc\\u03ad\\u03c1\\u03b1\",dd:\"%d \\u03bc\\u03ad\\u03c1\\u03b5\\u03c2\",M:\"\\u03ad\\u03bd\\u03b1\\u03c2 \\u03bc\\u03ae\\u03bd\\u03b1\\u03c2\",MM:\"%d \\u03bc\\u03ae\\u03bd\\u03b5\\u03c2\",y:\"\\u03ad\\u03bd\\u03b1\\u03c2 \\u03c7\\u03c1\\u03cc\\u03bd\\u03bf\\u03c2\",yy:\"%d \\u03c7\\u03c1\\u03cc\\u03bd\\u03b9\\u03b1\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u03b7/,ordinal:\"%d\\u03b7\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jVdC:function(e,t,n){!function(e){\"use strict\";var t=\"stycze\\u0144_luty_marzec_kwiecie\\u0144_maj_czerwiec_lipiec_sierpie\\u0144_wrzesie\\u0144_pa\\u017adziernik_listopad_grudzie\\u0144\".split(\"_\"),n=\"stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_wrze\\u015bnia_pa\\u017adziernika_listopada_grudnia\".split(\"_\");function i(e){return e%10<5&&e%10>1&&~~(e/10)%10!=1}function s(e,t,n){var s=e+\" \";switch(n){case\"ss\":return s+(i(e)?\"sekundy\":\"sekund\");case\"m\":return t?\"minuta\":\"minut\\u0119\";case\"mm\":return s+(i(e)?\"minuty\":\"minut\");case\"h\":return t?\"godzina\":\"godzin\\u0119\";case\"hh\":return s+(i(e)?\"godziny\":\"godzin\");case\"MM\":return s+(i(e)?\"miesi\\u0105ce\":\"miesi\\u0119cy\");case\"yy\":return s+(i(e)?\"lata\":\"lat\")}}e.defineLocale(\"pl\",{months:function(e,i){return e?\"\"===i?\"(\"+n[e.month()]+\"|\"+t[e.month()]+\")\":/D MMMM/.test(i)?n[e.month()]:t[e.month()]:t},monthsShort:\"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_pa\\u017a_lis_gru\".split(\"_\"),weekdays:\"niedziela_poniedzia\\u0142ek_wtorek_\\u015broda_czwartek_pi\\u0105tek_sobota\".split(\"_\"),weekdaysShort:\"ndz_pon_wt_\\u015br_czw_pt_sob\".split(\"_\"),weekdaysMin:\"Nd_Pn_Wt_\\u015ar_Cz_Pt_So\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Dzi\\u015b o] LT\",nextDay:\"[Jutro o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[W niedziel\\u0119 o] LT\";case 2:return\"[We wtorek o] LT\";case 3:return\"[W \\u015brod\\u0119 o] LT\";case 6:return\"[W sobot\\u0119 o] LT\";default:return\"[W] dddd [o] LT\"}},lastDay:\"[Wczoraj o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[W zesz\\u0142\\u0105 niedziel\\u0119 o] LT\";case 3:return\"[W zesz\\u0142\\u0105 \\u015brod\\u0119 o] LT\";case 6:return\"[W zesz\\u0142\\u0105 sobot\\u0119 o] LT\";default:return\"[W zesz\\u0142y] dddd [o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"%s temu\",s:\"kilka sekund\",ss:s,m:s,mm:s,h:s,hh:s,d:\"1 dzie\\u0144\",dd:\"%d dni\",M:\"miesi\\u0105c\",MM:s,y:\"rok\",yy:s},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jfSC:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u06f1\",2:\"\\u06f2\",3:\"\\u06f3\",4:\"\\u06f4\",5:\"\\u06f5\",6:\"\\u06f6\",7:\"\\u06f7\",8:\"\\u06f8\",9:\"\\u06f9\",0:\"\\u06f0\"},n={\"\\u06f1\":\"1\",\"\\u06f2\":\"2\",\"\\u06f3\":\"3\",\"\\u06f4\":\"4\",\"\\u06f5\":\"5\",\"\\u06f6\":\"6\",\"\\u06f7\":\"7\",\"\\u06f8\":\"8\",\"\\u06f9\":\"9\",\"\\u06f0\":\"0\"};e.defineLocale(\"fa\",{months:\"\\u0698\\u0627\\u0646\\u0648\\u06cc\\u0647_\\u0641\\u0648\\u0631\\u06cc\\u0647_\\u0645\\u0627\\u0631\\u0633_\\u0622\\u0648\\u0631\\u06cc\\u0644_\\u0645\\u0647_\\u0698\\u0648\\u0626\\u0646_\\u0698\\u0648\\u0626\\u06cc\\u0647_\\u0627\\u0648\\u062a_\\u0633\\u067e\\u062a\\u0627\\u0645\\u0628\\u0631_\\u0627\\u06a9\\u062a\\u0628\\u0631_\\u0646\\u0648\\u0627\\u0645\\u0628\\u0631_\\u062f\\u0633\\u0627\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u0698\\u0627\\u0646\\u0648\\u06cc\\u0647_\\u0641\\u0648\\u0631\\u06cc\\u0647_\\u0645\\u0627\\u0631\\u0633_\\u0622\\u0648\\u0631\\u06cc\\u0644_\\u0645\\u0647_\\u0698\\u0648\\u0626\\u0646_\\u0698\\u0648\\u0626\\u06cc\\u0647_\\u0627\\u0648\\u062a_\\u0633\\u067e\\u062a\\u0627\\u0645\\u0628\\u0631_\\u0627\\u06a9\\u062a\\u0628\\u0631_\\u0646\\u0648\\u0627\\u0645\\u0628\\u0631_\\u062f\\u0633\\u0627\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u06cc\\u06a9\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062f\\u0648\\u0634\\u0646\\u0628\\u0647_\\u0633\\u0647\\u200c\\u0634\\u0646\\u0628\\u0647_\\u0686\\u0647\\u0627\\u0631\\u0634\\u0646\\u0628\\u0647_\\u067e\\u0646\\u062c\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062c\\u0645\\u0639\\u0647_\\u0634\\u0646\\u0628\\u0647\".split(\"_\"),weekdaysShort:\"\\u06cc\\u06a9\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062f\\u0648\\u0634\\u0646\\u0628\\u0647_\\u0633\\u0647\\u200c\\u0634\\u0646\\u0628\\u0647_\\u0686\\u0647\\u0627\\u0631\\u0634\\u0646\\u0628\\u0647_\\u067e\\u0646\\u062c\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062c\\u0645\\u0639\\u0647_\\u0634\\u0646\\u0628\\u0647\".split(\"_\"),weekdaysMin:\"\\u06cc_\\u062f_\\u0633_\\u0686_\\u067e_\\u062c_\\u0634\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u0642\\u0628\\u0644 \\u0627\\u0632 \\u0638\\u0647\\u0631|\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631/,isPM:function(e){return/\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631/.test(e)},meridiem:function(e,t,n){return e<12?\"\\u0642\\u0628\\u0644 \\u0627\\u0632 \\u0638\\u0647\\u0631\":\"\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631\"},calendar:{sameDay:\"[\\u0627\\u0645\\u0631\\u0648\\u0632 \\u0633\\u0627\\u0639\\u062a] LT\",nextDay:\"[\\u0641\\u0631\\u062f\\u0627 \\u0633\\u0627\\u0639\\u062a] LT\",nextWeek:\"dddd [\\u0633\\u0627\\u0639\\u062a] LT\",lastDay:\"[\\u062f\\u06cc\\u0631\\u0648\\u0632 \\u0633\\u0627\\u0639\\u062a] LT\",lastWeek:\"dddd [\\u067e\\u06cc\\u0634] [\\u0633\\u0627\\u0639\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u062f\\u0631 %s\",past:\"%s \\u067e\\u06cc\\u0634\",s:\"\\u0686\\u0646\\u062f \\u062b\\u0627\\u0646\\u06cc\\u0647\",ss:\"\\u062b\\u0627\\u0646\\u06cc\\u0647 d%\",m:\"\\u06cc\\u06a9 \\u062f\\u0642\\u06cc\\u0642\\u0647\",mm:\"%d \\u062f\\u0642\\u06cc\\u0642\\u0647\",h:\"\\u06cc\\u06a9 \\u0633\\u0627\\u0639\\u062a\",hh:\"%d \\u0633\\u0627\\u0639\\u062a\",d:\"\\u06cc\\u06a9 \\u0631\\u0648\\u0632\",dd:\"%d \\u0631\\u0648\\u0632\",M:\"\\u06cc\\u06a9 \\u0645\\u0627\\u0647\",MM:\"%d \\u0645\\u0627\\u0647\",y:\"\\u06cc\\u06a9 \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/[\\u06f0-\\u06f9]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},dayOfMonthOrdinalParse:/\\d{1,2}\\u0645/,ordinal:\"%d\\u0645\",week:{dow:6,doy:12}})}(n(\"wd/R\"))},jnO4:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"},i=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},s={s:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062b\\u0627\\u0646\\u064a\\u0629\",\"\\u062b\\u0627\\u0646\\u064a\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u0627\\u0646\",\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u064a\\u0646\"],\"%d \\u062b\\u0648\\u0627\\u0646\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\"],m:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062f\\u0642\\u064a\\u0642\\u0629\",\"\\u062f\\u0642\\u064a\\u0642\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u0627\\u0646\",\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u064a\\u0646\"],\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\"],h:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0633\\u0627\\u0639\\u0629\",\"\\u0633\\u0627\\u0639\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u0633\\u0627\\u0639\\u062a\\u0627\\u0646\",\"\\u0633\\u0627\\u0639\\u062a\\u064a\\u0646\"],\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",\"%d \\u0633\\u0627\\u0639\\u0629\",\"%d \\u0633\\u0627\\u0639\\u0629\"],d:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u064a\\u0648\\u0645\",\"\\u064a\\u0648\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u064a\\u0648\\u0645\\u0627\\u0646\",\"\\u064a\\u0648\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u064a\\u0627\\u0645\",\"%d \\u064a\\u0648\\u0645\\u064b\\u0627\",\"%d \\u064a\\u0648\\u0645\"],M:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0634\\u0647\\u0631\",\"\\u0634\\u0647\\u0631 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0634\\u0647\\u0631\\u0627\\u0646\",\"\\u0634\\u0647\\u0631\\u064a\\u0646\"],\"%d \\u0623\\u0634\\u0647\\u0631\",\"%d \\u0634\\u0647\\u0631\\u0627\",\"%d \\u0634\\u0647\\u0631\"],y:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0639\\u0627\\u0645\",\"\\u0639\\u0627\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0639\\u0627\\u0645\\u0627\\u0646\",\"\\u0639\\u0627\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u0639\\u0648\\u0627\\u0645\",\"%d \\u0639\\u0627\\u0645\\u064b\\u0627\",\"%d \\u0639\\u0627\\u0645\"]},r=function(e){return function(t,n,r,o){var a=i(t),l=s[e][i(t)];return 2===a&&(l=l[n?0:1]),l.replace(/%d/i,t)}},o=[\"\\u064a\\u0646\\u0627\\u064a\\u0631\",\"\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631\",\"\\u0645\\u0627\\u0631\\u0633\",\"\\u0623\\u0628\\u0631\\u064a\\u0644\",\"\\u0645\\u0627\\u064a\\u0648\",\"\\u064a\\u0648\\u0646\\u064a\\u0648\",\"\\u064a\\u0648\\u0644\\u064a\\u0648\",\"\\u0623\\u063a\\u0633\\u0637\\u0633\",\"\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631\",\"\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631\",\"\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\"];e.defineLocale(\"ar\",{months:o,monthsShort:o,weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/\\u200fM/\\u200fYYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u064b\\u0627 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0628\\u0639\\u062f %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:r(\"s\"),ss:r(\"s\"),m:r(\"m\"),mm:r(\"m\"),h:r(\"h\"),hh:r(\"h\"),d:r(\"d\"),dd:r(\"d\"),M:r(\"M\"),MM:r(\"M\"),y:r(\"y\"),yy:r(\"y\")},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},kEOa:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u09e7\",2:\"\\u09e8\",3:\"\\u09e9\",4:\"\\u09ea\",5:\"\\u09eb\",6:\"\\u09ec\",7:\"\\u09ed\",8:\"\\u09ee\",9:\"\\u09ef\",0:\"\\u09e6\"},n={\"\\u09e7\":\"1\",\"\\u09e8\":\"2\",\"\\u09e9\":\"3\",\"\\u09ea\":\"4\",\"\\u09eb\":\"5\",\"\\u09ec\":\"6\",\"\\u09ed\":\"7\",\"\\u09ee\":\"8\",\"\\u09ef\":\"9\",\"\\u09e6\":\"0\"};e.defineLocale(\"bn\",{months:\"\\u099c\\u09be\\u09a8\\u09c1\\u09df\\u09be\\u09b0\\u09c0_\\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09c1\\u09df\\u09be\\u09b0\\u09bf_\\u09ae\\u09be\\u09b0\\u09cd\\u099a_\\u098f\\u09aa\\u09cd\\u09b0\\u09bf\\u09b2_\\u09ae\\u09c7_\\u099c\\u09c1\\u09a8_\\u099c\\u09c1\\u09b2\\u09be\\u0987_\\u0986\\u0997\\u09b8\\u09cd\\u099f_\\u09b8\\u09c7\\u09aa\\u09cd\\u099f\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0_\\u0985\\u0995\\u09cd\\u099f\\u09cb\\u09ac\\u09b0_\\u09a8\\u09ad\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0_\\u09a1\\u09bf\\u09b8\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0\".split(\"_\"),monthsShort:\"\\u099c\\u09be\\u09a8\\u09c1_\\u09ab\\u09c7\\u09ac_\\u09ae\\u09be\\u09b0\\u09cd\\u099a_\\u098f\\u09aa\\u09cd\\u09b0_\\u09ae\\u09c7_\\u099c\\u09c1\\u09a8_\\u099c\\u09c1\\u09b2_\\u0986\\u0997_\\u09b8\\u09c7\\u09aa\\u09cd\\u099f_\\u0985\\u0995\\u09cd\\u099f\\u09cb_\\u09a8\\u09ad\\u09c7_\\u09a1\\u09bf\\u09b8\\u09c7\".split(\"_\"),weekdays:\"\\u09b0\\u09ac\\u09bf\\u09ac\\u09be\\u09b0_\\u09b8\\u09cb\\u09ae\\u09ac\\u09be\\u09b0_\\u09ae\\u0999\\u09cd\\u0997\\u09b2\\u09ac\\u09be\\u09b0_\\u09ac\\u09c1\\u09a7\\u09ac\\u09be\\u09b0_\\u09ac\\u09c3\\u09b9\\u09b8\\u09cd\\u09aa\\u09a4\\u09bf\\u09ac\\u09be\\u09b0_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0\\u09ac\\u09be\\u09b0_\\u09b6\\u09a8\\u09bf\\u09ac\\u09be\\u09b0\".split(\"_\"),weekdaysShort:\"\\u09b0\\u09ac\\u09bf_\\u09b8\\u09cb\\u09ae_\\u09ae\\u0999\\u09cd\\u0997\\u09b2_\\u09ac\\u09c1\\u09a7_\\u09ac\\u09c3\\u09b9\\u09b8\\u09cd\\u09aa\\u09a4\\u09bf_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0_\\u09b6\\u09a8\\u09bf\".split(\"_\"),weekdaysMin:\"\\u09b0\\u09ac\\u09bf_\\u09b8\\u09cb\\u09ae_\\u09ae\\u0999\\u09cd\\u0997_\\u09ac\\u09c1\\u09a7_\\u09ac\\u09c3\\u09b9\\u0983_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0_\\u09b6\\u09a8\\u09bf\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u09b8\\u09ae\\u09df\",LTS:\"A h:mm:ss \\u09b8\\u09ae\\u09df\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u09b8\\u09ae\\u09df\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u09b8\\u09ae\\u09df\"},calendar:{sameDay:\"[\\u0986\\u099c] LT\",nextDay:\"[\\u0986\\u0997\\u09be\\u09ae\\u09c0\\u0995\\u09be\\u09b2] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0997\\u09a4\\u0995\\u09be\\u09b2] LT\",lastWeek:\"[\\u0997\\u09a4] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u09aa\\u09b0\\u09c7\",past:\"%s \\u0986\\u0997\\u09c7\",s:\"\\u0995\\u09df\\u09c7\\u0995 \\u09b8\\u09c7\\u0995\\u09c7\\u09a8\\u09cd\\u09a1\",ss:\"%d \\u09b8\\u09c7\\u0995\\u09c7\\u09a8\\u09cd\\u09a1\",m:\"\\u098f\\u0995 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f\",mm:\"%d \\u09ae\\u09bf\\u09a8\\u09bf\\u099f\",h:\"\\u098f\\u0995 \\u0998\\u09a8\\u09cd\\u099f\\u09be\",hh:\"%d \\u0998\\u09a8\\u09cd\\u099f\\u09be\",d:\"\\u098f\\u0995 \\u09a6\\u09bf\\u09a8\",dd:\"%d \\u09a6\\u09bf\\u09a8\",M:\"\\u098f\\u0995 \\u09ae\\u09be\\u09b8\",MM:\"%d \\u09ae\\u09be\\u09b8\",y:\"\\u098f\\u0995 \\u09ac\\u099b\\u09b0\",yy:\"%d \\u09ac\\u099b\\u09b0\"},preparse:function(e){return e.replace(/[\\u09e7\\u09e8\\u09e9\\u09ea\\u09eb\\u09ec\\u09ed\\u09ee\\u09ef\\u09e6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u09b0\\u09be\\u09a4|\\u09b8\\u0995\\u09be\\u09b2|\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0|\\u09ac\\u09bf\\u0995\\u09be\\u09b2|\\u09b0\\u09be\\u09a4/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u09b0\\u09be\\u09a4\"===t&&e>=4||\"\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0\"===t&&e<5||\"\\u09ac\\u09bf\\u0995\\u09be\\u09b2\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u09b0\\u09be\\u09a4\":e<10?\"\\u09b8\\u0995\\u09be\\u09b2\":e<17?\"\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0\":e<20?\"\\u09ac\\u09bf\\u0995\\u09be\\u09b2\":\"\\u09b0\\u09be\\u09a4\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},kOpN:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-tw\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u9031\\u65e5_\\u9031\\u4e00_\\u9031\\u4e8c_\\u9031\\u4e09_\\u9031\\u56db_\\u9031\\u4e94_\\u9031\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e2d\\u5348\"===t?e>=11?e:e+12:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:void 0},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"\\u51cc\\u6668\":i<900?\"\\u65e9\\u4e0a\":i<1130?\"\\u4e0a\\u5348\":i<1230?\"\\u4e2d\\u5348\":i<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929] LT\",nextDay:\"[\\u660e\\u5929] LT\",nextWeek:\"[\\u4e0b]dddd LT\",lastDay:\"[\\u6628\\u5929] LT\",lastWeek:\"[\\u4e0a]dddd LT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u9031)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u9031\";default:return e}},relativeTime:{future:\"%s\\u5167\",past:\"%s\\u524d\",s:\"\\u5e7e\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u9418\",mm:\"%d \\u5206\\u9418\",h:\"1 \\u5c0f\\u6642\",hh:\"%d \\u5c0f\\u6642\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u500b\\u6708\",MM:\"%d \\u500b\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"}})}(n(\"wd/R\"))},l5ep:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cy\",{months:\"Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr\".split(\"_\"),monthsShort:\"Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag\".split(\"_\"),weekdays:\"Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn\".split(\"_\"),weekdaysShort:\"Sul_Llun_Maw_Mer_Iau_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Ll_Ma_Me_Ia_Gw_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Heddiw am] LT\",nextDay:\"[Yfory am] LT\",nextWeek:\"dddd [am] LT\",lastDay:\"[Ddoe am] LT\",lastWeek:\"dddd [diwethaf am] LT\",sameElse:\"L\"},relativeTime:{future:\"mewn %s\",past:\"%s yn \\xf4l\",s:\"ychydig eiliadau\",ss:\"%d eiliad\",m:\"munud\",mm:\"%d munud\",h:\"awr\",hh:\"%d awr\",d:\"diwrnod\",dd:\"%d diwrnod\",M:\"mis\",MM:\"%d mis\",y:\"blwyddyn\",yy:\"%d flynedd\"},dayOfMonthOrdinalParse:/\\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,ordinal:function(e){var t=\"\";return e>20?t=40===e||50===e||60===e||80===e||100===e?\"fed\":\"ain\":e>0&&(t=[\"\",\"af\",\"il\",\"ydd\",\"ydd\",\"ed\",\"ed\",\"ed\",\"fed\",\"fed\",\"fed\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"fed\"][e]),e+t},week:{dow:1,doy:4}})}(n(\"wd/R\"))},lXzo:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i,s;return\"m\"===n?t?\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\":\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0443\":e+\" \"+(i=+e,s={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430_\\u043c\\u0438\\u043d\\u0443\\u0442\\u044b_\\u043c\\u0438\\u043d\\u0443\\u0442\":\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0443_\\u043c\\u0438\\u043d\\u0443\\u0442\\u044b_\\u043c\\u0438\\u043d\\u0443\\u0442\",hh:\"\\u0447\\u0430\\u0441_\\u0447\\u0430\\u0441\\u0430_\\u0447\\u0430\\u0441\\u043e\\u0432\",dd:\"\\u0434\\u0435\\u043d\\u044c_\\u0434\\u043d\\u044f_\\u0434\\u043d\\u0435\\u0439\",MM:\"\\u043c\\u0435\\u0441\\u044f\\u0446_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0430_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0435\\u0432\",yy:\"\\u0433\\u043e\\u0434_\\u0433\\u043e\\u0434\\u0430_\\u043b\\u0435\\u0442\"}[n].split(\"_\"),i%10==1&&i%100!=11?s[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?s[1]:s[2])}var n=[/^\\u044f\\u043d\\u0432/i,/^\\u0444\\u0435\\u0432/i,/^\\u043c\\u0430\\u0440/i,/^\\u0430\\u043f\\u0440/i,/^\\u043c\\u0430[\\u0439\\u044f]/i,/^\\u0438\\u044e\\u043d/i,/^\\u0438\\u044e\\u043b/i,/^\\u0430\\u0432\\u0433/i,/^\\u0441\\u0435\\u043d/i,/^\\u043e\\u043a\\u0442/i,/^\\u043d\\u043e\\u044f/i,/^\\u0434\\u0435\\u043a/i];e.defineLocale(\"ru\",{months:{format:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044f_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044f_\\u043c\\u0430\\u0440\\u0442\\u0430_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044f_\\u043c\\u0430\\u044f_\\u0438\\u044e\\u043d\\u044f_\\u0438\\u044e\\u043b\\u044f_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044f_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044f_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044f_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044f\".split(\"_\"),standalone:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044c_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044c_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044c_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044c_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044c\".split(\"_\")},monthsShort:{format:\"\\u044f\\u043d\\u0432._\\u0444\\u0435\\u0432\\u0440._\\u043c\\u0430\\u0440._\\u0430\\u043f\\u0440._\\u043c\\u0430\\u044f_\\u0438\\u044e\\u043d\\u044f_\\u0438\\u044e\\u043b\\u044f_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043d\\u0442._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u044f\\u0431._\\u0434\\u0435\\u043a.\".split(\"_\"),standalone:\"\\u044f\\u043d\\u0432._\\u0444\\u0435\\u0432\\u0440._\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440._\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043d\\u0442._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u044f\\u0431._\\u0434\\u0435\\u043a.\".split(\"_\")},weekdays:{standalone:\"\\u0432\\u043e\\u0441\\u043a\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c\\u0435_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u044c\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433_\\u043f\\u044f\\u0442\\u043d\\u0438\\u0446\\u0430_\\u0441\\u0443\\u0431\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),format:\"\\u0432\\u043e\\u0441\\u043a\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c\\u0435_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u044c\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0443_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433_\\u043f\\u044f\\u0442\\u043d\\u0438\\u0446\\u0443_\\u0441\\u0443\\u0431\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),isFormat:/\\[ ?[\\u0412\\u0432] ?(?:\\u043f\\u0440\\u043e\\u0448\\u043b\\u0443\\u044e|\\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0443\\u044e|\\u044d\\u0442\\u0443)? ?\\] ?dddd/},weekdaysShort:\"\\u0432\\u0441_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u0432\\u0441_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),monthsParse:n,longMonthsParse:n,shortMonthsParse:n,monthsRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044c\\u044f]|\\u044f\\u043d\\u0432\\.?|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044c\\u044f]|\\u0444\\u0435\\u0432\\u0440?\\.?|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u043c\\u0430\\u0440\\.?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044c\\u044f]|\\u0430\\u043f\\u0440\\.?|\\u043c\\u0430[\\u0439\\u044f]|\\u0438\\u044e\\u043d[\\u044c\\u044f]|\\u0438\\u044e\\u043d\\.?|\\u0438\\u044e\\u043b[\\u044c\\u044f]|\\u0438\\u044e\\u043b\\.?|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0430\\u0432\\u0433\\.?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u0441\\u0435\\u043d\\u0442?\\.?|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043e\\u043a\\u0442\\.?|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043d\\u043e\\u044f\\u0431?\\.?|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044c\\u044f]|\\u0434\\u0435\\u043a\\.?)/i,monthsShortRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044c\\u044f]|\\u044f\\u043d\\u0432\\.?|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044c\\u044f]|\\u0444\\u0435\\u0432\\u0440?\\.?|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u043c\\u0430\\u0440\\.?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044c\\u044f]|\\u0430\\u043f\\u0440\\.?|\\u043c\\u0430[\\u0439\\u044f]|\\u0438\\u044e\\u043d[\\u044c\\u044f]|\\u0438\\u044e\\u043d\\.?|\\u0438\\u044e\\u043b[\\u044c\\u044f]|\\u0438\\u044e\\u043b\\.?|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0430\\u0432\\u0433\\.?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u0441\\u0435\\u043d\\u0442?\\.?|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043e\\u043a\\u0442\\.?|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043d\\u043e\\u044f\\u0431?\\.?|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044c\\u044f]|\\u0434\\u0435\\u043a\\.?)/i,monthsStrictRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044f\\u044c]|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044f\\u044c]|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044f\\u044c]|\\u043c\\u0430[\\u044f\\u0439]|\\u0438\\u044e\\u043d[\\u044f\\u044c]|\\u0438\\u044e\\u043b[\\u044f\\u044c]|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044f\\u044c])/i,monthsShortStrictRegex:/^(\\u044f\\u043d\\u0432\\.|\\u0444\\u0435\\u0432\\u0440?\\.|\\u043c\\u0430\\u0440[\\u0442.]|\\u0430\\u043f\\u0440\\.|\\u043c\\u0430[\\u044f\\u0439]|\\u0438\\u044e\\u043d[\\u044c\\u044f.]|\\u0438\\u044e\\u043b[\\u044c\\u044f.]|\\u0430\\u0432\\u0433\\.|\\u0441\\u0435\\u043d\\u0442?\\.|\\u043e\\u043a\\u0442\\.|\\u043d\\u043e\\u044f\\u0431?\\.|\\u0434\\u0435\\u043a\\.)/i,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0433.\",LLL:\"D MMMM YYYY \\u0433., H:mm\",LLLL:\"dddd, D MMMM YYYY \\u0433., H:mm\"},calendar:{sameDay:\"[\\u0421\\u0435\\u0433\\u043e\\u0434\\u043d\\u044f, \\u0432] LT\",nextDay:\"[\\u0417\\u0430\\u0432\\u0442\\u0440\\u0430, \\u0432] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430, \\u0432] LT\",nextWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[\\u0412\\u043e] dddd, [\\u0432] LT\":\"[\\u0412] dddd, [\\u0432] LT\";switch(this.day()){case 0:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0435\\u0435] dddd, [\\u0432] LT\";case 1:case 2:case 4:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0438\\u0439] dddd, [\\u0432] LT\";case 3:case 5:case 6:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0443\\u044e] dddd, [\\u0432] LT\"}},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[\\u0412\\u043e] dddd, [\\u0432] LT\":\"[\\u0412] dddd, [\\u0432] LT\";switch(this.day()){case 0:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0435] dddd, [\\u0432] LT\";case 1:case 2:case 4:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u044b\\u0439] dddd, [\\u0432] LT\";case 3:case 5:case 6:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u0443\\u044e] dddd, [\\u0432] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u0447\\u0435\\u0440\\u0435\\u0437 %s\",past:\"%s \\u043d\\u0430\\u0437\\u0430\\u0434\",s:\"\\u043d\\u0435\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:t,m:t,mm:t,h:\"\\u0447\\u0430\\u0441\",hh:t,d:\"\\u0434\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0435\\u0441\\u044f\\u0446\",MM:t,y:\"\\u0433\\u043e\\u0434\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u0438|\\u0443\\u0442\\u0440\\u0430|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430/i,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u0438\":e<12?\"\\u0443\\u0442\\u0440\\u0430\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0439|\\u0433\\u043e|\\u044f)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":return e+\"-\\u0439\";case\"D\":return e+\"-\\u0433\\u043e\";case\"w\":case\"W\":return e+\"-\\u044f\";default:return e}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},lYtQ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){switch(n){case\"s\":return t?\"\\u0445\\u044d\\u0434\\u0445\\u044d\\u043d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0445\\u044d\\u0434\\u0445\\u044d\\u043d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b\\u043d\";case\"ss\":return e+(t?\" \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\" \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b\\u043d\");case\"m\":case\"mm\":return e+(t?\" \\u043c\\u0438\\u043d\\u0443\\u0442\":\" \\u043c\\u0438\\u043d\\u0443\\u0442\\u044b\\u043d\");case\"h\":case\"hh\":return e+(t?\" \\u0446\\u0430\\u0433\":\" \\u0446\\u0430\\u0433\\u0438\\u0439\\u043d\");case\"d\":case\"dd\":return e+(t?\" \\u04e9\\u0434\\u04e9\\u0440\":\" \\u04e9\\u0434\\u0440\\u0438\\u0439\\u043d\");case\"M\":case\"MM\":return e+(t?\" \\u0441\\u0430\\u0440\":\" \\u0441\\u0430\\u0440\\u044b\\u043d\");case\"y\":case\"yy\":return e+(t?\" \\u0436\\u0438\\u043b\":\" \\u0436\\u0438\\u043b\\u0438\\u0439\\u043d\");default:return e}}e.defineLocale(\"mn\",{months:\"\\u041d\\u044d\\u0433\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0425\\u043e\\u0451\\u0440\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0413\\u0443\\u0440\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0414\\u04e9\\u0440\\u04e9\\u0432\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0422\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0417\\u0443\\u0440\\u0433\\u0430\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0414\\u043e\\u043b\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u041d\\u0430\\u0439\\u043c\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0415\\u0441\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0432\\u0430\\u043d \\u043d\\u044d\\u0433\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0432\\u0430\\u043d \\u0445\\u043e\\u0451\\u0440\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440\".split(\"_\"),monthsShort:\"1 \\u0441\\u0430\\u0440_2 \\u0441\\u0430\\u0440_3 \\u0441\\u0430\\u0440_4 \\u0441\\u0430\\u0440_5 \\u0441\\u0430\\u0440_6 \\u0441\\u0430\\u0440_7 \\u0441\\u0430\\u0440_8 \\u0441\\u0430\\u0440_9 \\u0441\\u0430\\u0440_10 \\u0441\\u0430\\u0440_11 \\u0441\\u0430\\u0440_12 \\u0441\\u0430\\u0440\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u041d\\u044f\\u043c_\\u0414\\u0430\\u0432\\u0430\\u0430_\\u041c\\u044f\\u0433\\u043c\\u0430\\u0440_\\u041b\\u0445\\u0430\\u0433\\u0432\\u0430_\\u041f\\u04af\\u0440\\u044d\\u0432_\\u0411\\u0430\\u0430\\u0441\\u0430\\u043d_\\u0411\\u044f\\u043c\\u0431\\u0430\".split(\"_\"),weekdaysShort:\"\\u041d\\u044f\\u043c_\\u0414\\u0430\\u0432_\\u041c\\u044f\\u0433_\\u041b\\u0445\\u0430_\\u041f\\u04af\\u0440_\\u0411\\u0430\\u0430_\\u0411\\u044f\\u043c\".split(\"_\"),weekdaysMin:\"\\u041d\\u044f_\\u0414\\u0430_\\u041c\\u044f_\\u041b\\u0445_\\u041f\\u04af_\\u0411\\u0430_\\u0411\\u044f\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D\",LLL:\"YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D HH:mm\",LLLL:\"dddd, YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D HH:mm\"},meridiemParse:/\\u04ae\\u04e8|\\u04ae\\u0425/i,isPM:function(e){return\"\\u04ae\\u0425\"===e},meridiem:function(e,t,n){return e<12?\"\\u04ae\\u04e8\":\"\\u04ae\\u0425\"},calendar:{sameDay:\"[\\u04e8\\u043d\\u04e9\\u04e9\\u0434\\u04e9\\u0440] LT\",nextDay:\"[\\u041c\\u0430\\u0440\\u0433\\u0430\\u0430\\u0448] LT\",nextWeek:\"[\\u0418\\u0440\\u044d\\u0445] dddd LT\",lastDay:\"[\\u04e8\\u0447\\u0438\\u0433\\u0434\\u04e9\\u0440] LT\",lastWeek:\"[\\u04e8\\u043d\\u0433\\u04e9\\u0440\\u0441\\u04e9\\u043d] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0434\\u0430\\u0440\\u0430\\u0430\",past:\"%s \\u04e9\\u043c\\u043d\\u04e9\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2} \\u04e9\\u0434\\u04e9\\u0440/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\" \\u04e9\\u0434\\u04e9\\u0440\";default:return e}}})}(n(\"wd/R\"))},lgnt:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0447\\u04af\",1:\"-\\u0447\\u0438\",2:\"-\\u0447\\u0438\",3:\"-\\u0447\\u04af\",4:\"-\\u0447\\u04af\",5:\"-\\u0447\\u0438\",6:\"-\\u0447\\u044b\",7:\"-\\u0447\\u0438\",8:\"-\\u0447\\u0438\",9:\"-\\u0447\\u0443\",10:\"-\\u0447\\u0443\",20:\"-\\u0447\\u044b\",30:\"-\\u0447\\u0443\",40:\"-\\u0447\\u044b\",50:\"-\\u0447\\u04af\",60:\"-\\u0447\\u044b\",70:\"-\\u0447\\u0438\",80:\"-\\u0447\\u0438\",90:\"-\\u0447\\u0443\",100:\"-\\u0447\\u04af\"};e.defineLocale(\"ky\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044c_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044c_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044c_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044c_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044c\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u0416\\u0435\\u043a\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0414\\u04af\\u0439\\u0448\\u04e9\\u043c\\u0431\\u04af_\\u0428\\u0435\\u0439\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0428\\u0430\\u0440\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0411\\u0435\\u0439\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0416\\u0443\\u043c\\u0430_\\u0418\\u0448\\u0435\\u043c\\u0431\\u0438\".split(\"_\"),weekdaysShort:\"\\u0416\\u0435\\u043a_\\u0414\\u04af\\u0439_\\u0428\\u0435\\u0439_\\u0428\\u0430\\u0440_\\u0411\\u0435\\u0439_\\u0416\\u0443\\u043c_\\u0418\\u0448\\u0435\".split(\"_\"),weekdaysMin:\"\\u0416\\u043a_\\u0414\\u0439_\\u0428\\u0439_\\u0428\\u0440_\\u0411\\u0439_\\u0416\\u043c_\\u0418\\u0448\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0411\\u04af\\u0433\\u04af\\u043d \\u0441\\u0430\\u0430\\u0442] LT\",nextDay:\"[\\u042d\\u0440\\u0442\\u0435\\u04a3 \\u0441\\u0430\\u0430\\u0442] LT\",nextWeek:\"dddd [\\u0441\\u0430\\u0430\\u0442] LT\",lastDay:\"[\\u041a\\u0435\\u0447\\u044d\\u044d \\u0441\\u0430\\u0430\\u0442] LT\",lastWeek:\"[\\u04e8\\u0442\\u043a\\u04e9\\u043d \\u0430\\u043f\\u0442\\u0430\\u043d\\u044b\\u043d] dddd [\\u043a\\u04af\\u043d\\u04af] [\\u0441\\u0430\\u0430\\u0442] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0438\\u0447\\u0438\\u043d\\u0434\\u0435\",past:\"%s \\u043c\\u0443\\u0440\\u0443\\u043d\",s:\"\\u0431\\u0438\\u0440\\u043d\\u0435\\u0447\\u0435 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:\"\\u0431\\u0438\\u0440 \\u043c\\u04af\\u043d\\u04e9\\u0442\",mm:\"%d \\u043c\\u04af\\u043d\\u04e9\\u0442\",h:\"\\u0431\\u0438\\u0440 \\u0441\\u0430\\u0430\\u0442\",hh:\"%d \\u0441\\u0430\\u0430\\u0442\",d:\"\\u0431\\u0438\\u0440 \\u043a\\u04af\\u043d\",dd:\"%d \\u043a\\u04af\\u043d\",M:\"\\u0431\\u0438\\u0440 \\u0430\\u0439\",MM:\"%d \\u0430\\u0439\",y:\"\\u0431\\u0438\\u0440 \\u0436\\u044b\\u043b\",yy:\"%d \\u0436\\u044b\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0447\\u0438|\\u0447\\u044b|\\u0447\\u04af|\\u0447\\u0443)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},lyxo:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i=\" \";return(e%100>=20||e>=100&&e%100==0)&&(i=\" de \"),e+i+{ss:\"secunde\",mm:\"minute\",hh:\"ore\",dd:\"zile\",MM:\"luni\",yy:\"ani\"}[n]}e.defineLocale(\"ro\",{months:\"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie\".split(\"_\"),monthsShort:\"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"duminic\\u0103_luni_mar\\u021bi_miercuri_joi_vineri_s\\xe2mb\\u0103t\\u0103\".split(\"_\"),weekdaysShort:\"Dum_Lun_Mar_Mie_Joi_Vin_S\\xe2m\".split(\"_\"),weekdaysMin:\"Du_Lu_Ma_Mi_Jo_Vi_S\\xe2\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[azi la] LT\",nextDay:\"[m\\xe2ine la] LT\",nextWeek:\"dddd [la] LT\",lastDay:\"[ieri la] LT\",lastWeek:\"[fosta] dddd [la] LT\",sameElse:\"L\"},relativeTime:{future:\"peste %s\",past:\"%s \\xeen urm\\u0103\",s:\"c\\xe2teva secunde\",ss:t,m:\"un minut\",mm:t,h:\"o or\\u0103\",hh:t,d:\"o zi\",dd:t,M:\"o lun\\u0103\",MM:t,y:\"un an\",yy:t},week:{dow:1,doy:7}})}(n(\"wd/R\"))},m4GZ:function(e,t){function n(e){this.message=e}(n.prototype=new Error).name=\"InvalidCharacterError\",e.exports=\"undefined\"!=typeof window&&window.atob&&window.atob.bind(window)||function(e){var t=String(e).replace(/=+$/,\"\");if(t.length%4==1)throw new n(\"'atob' failed: The string to be decoded is not correctly encoded.\");for(var i,s,r=0,o=0,a=\"\";s=t.charAt(o++);~s&&(i=r%4?64*i+s:s,r++%4)?a+=String.fromCharCode(255&i>>(-2*r&6)):0)s=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\".indexOf(s);return a}},nyYc:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|)/,ordinal:function(e,t){switch(t){case\"D\":return e+(1===e?\"er\":\"\");default:case\"M\":case\"Q\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},o1bE:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-dz\",{months:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0627\\u062d\\u062f_\\u0627\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u0623\\u062d_\\u0625\\u062b_\\u062b\\u0644\\u0627_\\u0623\\u0631_\\u062e\\u0645_\\u062c\\u0645_\\u0633\\u0628\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:0,doy:4}})}(n(\"wd/R\"))},\"p/rL\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bm\",{months:\"Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_M\\u025bkalo_Zuw\\u025bnkalo_Zuluyekalo_Utikalo_S\\u025btanburukalo_\\u0254kut\\u0254burukalo_Nowanburukalo_Desanburukalo\".split(\"_\"),monthsShort:\"Zan_Few_Mar_Awi_M\\u025b_Zuw_Zul_Uti_S\\u025bt_\\u0254ku_Now_Des\".split(\"_\"),weekdays:\"Kari_Nt\\u025bn\\u025bn_Tarata_Araba_Alamisa_Juma_Sibiri\".split(\"_\"),weekdaysShort:\"Kar_Nt\\u025b_Tar_Ara_Ala_Jum_Sib\".split(\"_\"),weekdaysMin:\"Ka_Nt_Ta_Ar_Al_Ju_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"MMMM [tile] D [san] YYYY\",LLL:\"MMMM [tile] D [san] YYYY [l\\u025br\\u025b] HH:mm\",LLLL:\"dddd MMMM [tile] D [san] YYYY [l\\u025br\\u025b] HH:mm\"},calendar:{sameDay:\"[Bi l\\u025br\\u025b] LT\",nextDay:\"[Sini l\\u025br\\u025b] LT\",nextWeek:\"dddd [don l\\u025br\\u025b] LT\",lastDay:\"[Kunu l\\u025br\\u025b] LT\",lastWeek:\"dddd [t\\u025bm\\u025bnen l\\u025br\\u025b] LT\",sameElse:\"L\"},relativeTime:{future:\"%s k\\u0254n\\u0254\",past:\"a b\\u025b %s b\\u0254\",s:\"sanga dama dama\",ss:\"sekondi %d\",m:\"miniti kelen\",mm:\"miniti %d\",h:\"l\\u025br\\u025b kelen\",hh:\"l\\u025br\\u025b %d\",d:\"tile kelen\",dd:\"tile %d\",M:\"kalo kelen\",MM:\"kalo %d\",y:\"san kelen\",yy:\"san %d\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},raLr:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i,s;return\"m\"===n?t?\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0430\":\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0443\":\"h\"===n?t?\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\":\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\":e+\" \"+(i=+e,s={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0430_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0438_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\":\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0443_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0438_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\",hh:t?\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430_\\u0433\\u043e\\u0434\\u0438\\u043d\\u0438_\\u0433\\u043e\\u0434\\u0438\\u043d\":\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443_\\u0433\\u043e\\u0434\\u0438\\u043d\\u0438_\\u0433\\u043e\\u0434\\u0438\\u043d\",dd:\"\\u0434\\u0435\\u043d\\u044c_\\u0434\\u043d\\u0456_\\u0434\\u043d\\u0456\\u0432\",MM:\"\\u043c\\u0456\\u0441\\u044f\\u0446\\u044c_\\u043c\\u0456\\u0441\\u044f\\u0446\\u0456_\\u043c\\u0456\\u0441\\u044f\\u0446\\u0456\\u0432\",yy:\"\\u0440\\u0456\\u043a_\\u0440\\u043e\\u043a\\u0438_\\u0440\\u043e\\u043a\\u0456\\u0432\"}[n].split(\"_\"),i%10==1&&i%100!=11?s[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?s[1]:s[2])}function n(e){return function(){return e+\"\\u043e\"+(11===this.hours()?\"\\u0431\":\"\")+\"] LT\"}}e.defineLocale(\"uk\",{months:{format:\"\\u0441\\u0456\\u0447\\u043d\\u044f_\\u043b\\u044e\\u0442\\u043e\\u0433\\u043e_\\u0431\\u0435\\u0440\\u0435\\u0437\\u043d\\u044f_\\u043a\\u0432\\u0456\\u0442\\u043d\\u044f_\\u0442\\u0440\\u0430\\u0432\\u043d\\u044f_\\u0447\\u0435\\u0440\\u0432\\u043d\\u044f_\\u043b\\u0438\\u043f\\u043d\\u044f_\\u0441\\u0435\\u0440\\u043f\\u043d\\u044f_\\u0432\\u0435\\u0440\\u0435\\u0441\\u043d\\u044f_\\u0436\\u043e\\u0432\\u0442\\u043d\\u044f_\\u043b\\u0438\\u0441\\u0442\\u043e\\u043f\\u0430\\u0434\\u0430_\\u0433\\u0440\\u0443\\u0434\\u043d\\u044f\".split(\"_\"),standalone:\"\\u0441\\u0456\\u0447\\u0435\\u043d\\u044c_\\u043b\\u044e\\u0442\\u0438\\u0439_\\u0431\\u0435\\u0440\\u0435\\u0437\\u0435\\u043d\\u044c_\\u043a\\u0432\\u0456\\u0442\\u0435\\u043d\\u044c_\\u0442\\u0440\\u0430\\u0432\\u0435\\u043d\\u044c_\\u0447\\u0435\\u0440\\u0432\\u0435\\u043d\\u044c_\\u043b\\u0438\\u043f\\u0435\\u043d\\u044c_\\u0441\\u0435\\u0440\\u043f\\u0435\\u043d\\u044c_\\u0432\\u0435\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c_\\u0436\\u043e\\u0432\\u0442\\u0435\\u043d\\u044c_\\u043b\\u0438\\u0441\\u0442\\u043e\\u043f\\u0430\\u0434_\\u0433\\u0440\\u0443\\u0434\\u0435\\u043d\\u044c\".split(\"_\")},monthsShort:\"\\u0441\\u0456\\u0447_\\u043b\\u044e\\u0442_\\u0431\\u0435\\u0440_\\u043a\\u0432\\u0456\\u0442_\\u0442\\u0440\\u0430\\u0432_\\u0447\\u0435\\u0440\\u0432_\\u043b\\u0438\\u043f_\\u0441\\u0435\\u0440\\u043f_\\u0432\\u0435\\u0440_\\u0436\\u043e\\u0432\\u0442_\\u043b\\u0438\\u0441\\u0442_\\u0433\\u0440\\u0443\\u0434\".split(\"_\"),weekdays:function(e,t){var n={nominative:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u044f_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043e\\u043a_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043e\\u043a_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u044f_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),accusative:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u044e_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043e\\u043a_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043e\\u043a_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0443_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u044e_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),genitive:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u0456_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043a\\u0430_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043a\\u0430_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0438_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433\\u0430_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u0456_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0438\".split(\"_\")};return!0===e?n.nominative.slice(1,7).concat(n.nominative.slice(0,1)):e?n[/(\\[[\\u0412\\u0432\\u0423\\u0443]\\]) ?dddd/.test(t)?\"accusative\":/\\[?(?:\\u043c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0457|\\u043d\\u0430\\u0441\\u0442\\u0443\\u043f\\u043d\\u043e\\u0457)? ?\\] ?dddd/.test(t)?\"genitive\":\"nominative\"][e.day()]:n.nominative},weekdaysShort:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0440.\",LLL:\"D MMMM YYYY \\u0440., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0440., HH:mm\"},calendar:{sameDay:n(\"[\\u0421\\u044c\\u043e\\u0433\\u043e\\u0434\\u043d\\u0456 \"),nextDay:n(\"[\\u0417\\u0430\\u0432\\u0442\\u0440\\u0430 \"),lastDay:n(\"[\\u0412\\u0447\\u043e\\u0440\\u0430 \"),nextWeek:n(\"[\\u0423] dddd [\"),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return n(\"[\\u041c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0457] dddd [\").call(this);case 1:case 2:case 4:return n(\"[\\u041c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0433\\u043e] dddd [\").call(this)}},sameElse:\"L\"},relativeTime:{future:\"\\u0437\\u0430 %s\",past:\"%s \\u0442\\u043e\\u043c\\u0443\",s:\"\\u0434\\u0435\\u043a\\u0456\\u043b\\u044c\\u043a\\u0430 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:t,m:t,mm:t,h:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\",hh:t,d:\"\\u0434\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0456\\u0441\\u044f\\u0446\\u044c\",MM:t,y:\"\\u0440\\u0456\\u043a\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u0456|\\u0440\\u0430\\u043d\\u043a\\u0443|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430/,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u0456\":e<12?\"\\u0440\\u0430\\u043d\\u043a\\u0443\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0439|\\u0433\\u043e)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e+\"-\\u0439\";case\"D\":return e+\"-\\u0433\\u043e\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"s+uk\":function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?s[n][0]:s[n][1]}e.defineLocale(\"de-at\",{months:\"J\\xe4nner_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"J\\xe4n._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},sp3z:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"lo\",{months:\"\\u0ea1\\u0eb1\\u0e87\\u0e81\\u0ead\\u0e99_\\u0e81\\u0eb8\\u0ea1\\u0e9e\\u0eb2_\\u0ea1\\u0eb5\\u0e99\\u0eb2_\\u0ec0\\u0ea1\\u0eaa\\u0eb2_\\u0e9e\\u0eb6\\u0e94\\u0eaa\\u0eb0\\u0e9e\\u0eb2_\\u0ea1\\u0eb4\\u0e96\\u0eb8\\u0e99\\u0eb2_\\u0e81\\u0ecd\\u0ea5\\u0eb0\\u0e81\\u0ebb\\u0e94_\\u0eaa\\u0eb4\\u0e87\\u0eab\\u0eb2_\\u0e81\\u0eb1\\u0e99\\u0e8d\\u0eb2_\\u0e95\\u0eb8\\u0ea5\\u0eb2_\\u0e9e\\u0eb0\\u0e88\\u0eb4\\u0e81_\\u0e97\\u0eb1\\u0e99\\u0ea7\\u0eb2\".split(\"_\"),monthsShort:\"\\u0ea1\\u0eb1\\u0e87\\u0e81\\u0ead\\u0e99_\\u0e81\\u0eb8\\u0ea1\\u0e9e\\u0eb2_\\u0ea1\\u0eb5\\u0e99\\u0eb2_\\u0ec0\\u0ea1\\u0eaa\\u0eb2_\\u0e9e\\u0eb6\\u0e94\\u0eaa\\u0eb0\\u0e9e\\u0eb2_\\u0ea1\\u0eb4\\u0e96\\u0eb8\\u0e99\\u0eb2_\\u0e81\\u0ecd\\u0ea5\\u0eb0\\u0e81\\u0ebb\\u0e94_\\u0eaa\\u0eb4\\u0e87\\u0eab\\u0eb2_\\u0e81\\u0eb1\\u0e99\\u0e8d\\u0eb2_\\u0e95\\u0eb8\\u0ea5\\u0eb2_\\u0e9e\\u0eb0\\u0e88\\u0eb4\\u0e81_\\u0e97\\u0eb1\\u0e99\\u0ea7\\u0eb2\".split(\"_\"),weekdays:\"\\u0ead\\u0eb2\\u0e97\\u0eb4\\u0e94_\\u0e88\\u0eb1\\u0e99_\\u0ead\\u0eb1\\u0e87\\u0e84\\u0eb2\\u0e99_\\u0e9e\\u0eb8\\u0e94_\\u0e9e\\u0eb0\\u0eab\\u0eb1\\u0e94_\\u0eaa\\u0eb8\\u0e81_\\u0ec0\\u0eaa\\u0ebb\\u0eb2\".split(\"_\"),weekdaysShort:\"\\u0e97\\u0eb4\\u0e94_\\u0e88\\u0eb1\\u0e99_\\u0ead\\u0eb1\\u0e87\\u0e84\\u0eb2\\u0e99_\\u0e9e\\u0eb8\\u0e94_\\u0e9e\\u0eb0\\u0eab\\u0eb1\\u0e94_\\u0eaa\\u0eb8\\u0e81_\\u0ec0\\u0eaa\\u0ebb\\u0eb2\".split(\"_\"),weekdaysMin:\"\\u0e97_\\u0e88_\\u0ead\\u0e84_\\u0e9e_\\u0e9e\\u0eab_\\u0eaa\\u0e81_\\u0eaa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"\\u0ea7\\u0eb1\\u0e99dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0e95\\u0ead\\u0e99\\u0ec0\\u0e8a\\u0ebb\\u0ec9\\u0eb2|\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87/,isPM:function(e){return\"\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87\"===e},meridiem:function(e,t,n){return e<12?\"\\u0e95\\u0ead\\u0e99\\u0ec0\\u0e8a\\u0ebb\\u0ec9\\u0eb2\":\"\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87\"},calendar:{sameDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",nextDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0ead\\u0eb7\\u0ec8\\u0e99\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",nextWeek:\"[\\u0ea7\\u0eb1\\u0e99]dddd[\\u0edc\\u0ec9\\u0eb2\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",lastDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0ea7\\u0eb2\\u0e99\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",lastWeek:\"[\\u0ea7\\u0eb1\\u0e99]dddd[\\u0ec1\\u0ea5\\u0ec9\\u0ea7\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0ead\\u0eb5\\u0e81 %s\",past:\"%s\\u0e9c\\u0ec8\\u0eb2\\u0e99\\u0ea1\\u0eb2\",s:\"\\u0e9a\\u0ecd\\u0ec8\\u0ec0\\u0e97\\u0ebb\\u0ec8\\u0eb2\\u0ec3\\u0e94\\u0ea7\\u0eb4\\u0e99\\u0eb2\\u0e97\\u0eb5\",ss:\"%d \\u0ea7\\u0eb4\\u0e99\\u0eb2\\u0e97\\u0eb5\",m:\"1 \\u0e99\\u0eb2\\u0e97\\u0eb5\",mm:\"%d \\u0e99\\u0eb2\\u0e97\\u0eb5\",h:\"1 \\u0e8a\\u0ebb\\u0ec8\\u0ea7\\u0ec2\\u0ea1\\u0e87\",hh:\"%d \\u0e8a\\u0ebb\\u0ec8\\u0ea7\\u0ec2\\u0ea1\\u0e87\",d:\"1 \\u0ea1\\u0eb7\\u0ec9\",dd:\"%d \\u0ea1\\u0eb7\\u0ec9\",M:\"1 \\u0ec0\\u0e94\\u0eb7\\u0ead\\u0e99\",MM:\"%d \\u0ec0\\u0e94\\u0eb7\\u0ead\\u0e99\",y:\"1 \\u0e9b\\u0eb5\",yy:\"%d \\u0e9b\\u0eb5\"},dayOfMonthOrdinalParse:/(\\u0e97\\u0eb5\\u0ec8)\\d{1,2}/,ordinal:function(e){return\"\\u0e97\\u0eb5\\u0ec8\"+e}})}(n(\"wd/R\"))},tGlX:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?s[n][0]:s[n][1]}e.defineLocale(\"de\",{months:\"Januar_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},tT3J:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm-latn\",{months:\"innayr_br\\u02e4ayr\\u02e4_mar\\u02e4s\\u02e4_ibrir_mayyw_ywnyw_ywlywz_\\u0263w\\u0161t_\\u0161wtanbir_kt\\u02e4wbr\\u02e4_nwwanbir_dwjnbir\".split(\"_\"),monthsShort:\"innayr_br\\u02e4ayr\\u02e4_mar\\u02e4s\\u02e4_ibrir_mayyw_ywnyw_ywlywz_\\u0263w\\u0161t_\\u0161wtanbir_kt\\u02e4wbr\\u02e4_nwwanbir_dwjnbir\".split(\"_\"),weekdays:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),weekdaysShort:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),weekdaysMin:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[asdkh g] LT\",nextDay:\"[aska g] LT\",nextWeek:\"dddd [g] LT\",lastDay:\"[assant g] LT\",lastWeek:\"dddd [g] LT\",sameElse:\"L\"},relativeTime:{future:\"dadkh s yan %s\",past:\"yan %s\",s:\"imik\",ss:\"%d imik\",m:\"minu\\u1e0d\",mm:\"%d minu\\u1e0d\",h:\"sa\\u025ba\",hh:\"%d tassa\\u025bin\",d:\"ass\",dd:\"%d ossan\",M:\"ayowr\",MM:\"%d iyyirn\",y:\"asgas\",yy:\"%d isgasn\"},week:{dow:6,doy:12}})}(n(\"wd/R\"))},tUCv:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"jv\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des\".split(\"_\"),weekdays:\"Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Reb_Kem_Jem_Sep\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sp\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/enjing|siyang|sonten|ndalu/,meridiemHour:function(e,t){return 12===e&&(e=0),\"enjing\"===t?e:\"siyang\"===t?e>=11?e:e+12:\"sonten\"===t||\"ndalu\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"enjing\":e<15?\"siyang\":e<19?\"sonten\":\"ndalu\"},calendar:{sameDay:\"[Dinten puniko pukul] LT\",nextDay:\"[Mbenjang pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kala wingi pukul] LT\",lastWeek:\"dddd [kepengker pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"wonten ing %s\",past:\"%s ingkang kepengker\",s:\"sawetawis detik\",ss:\"%d detik\",m:\"setunggal menit\",mm:\"%d menit\",h:\"setunggal jam\",hh:\"%d jam\",d:\"sedinten\",dd:\"%d dinten\",M:\"sewulan\",MM:\"%d wulan\",y:\"setaun\",yy:\"%d taun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},u3GI:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?s[n][0]:s[n][1]}e.defineLocale(\"de-ch\",{months:\"Januar_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},uEye:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nn\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\"),weekdays:\"sundag_m\\xe5ndag_tysdag_onsdag_torsdag_fredag_laurdag\".split(\"_\"),weekdaysShort:\"sun_m\\xe5n_tys_ons_tor_fre_lau\".split(\"_\"),weekdaysMin:\"su_m\\xe5_ty_on_to_fr_l\\xf8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] H:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[I dag klokka] LT\",nextDay:\"[I morgon klokka] LT\",nextWeek:\"dddd [klokka] LT\",lastDay:\"[I g\\xe5r klokka] LT\",lastWeek:\"[F\\xf8reg\\xe5ande] dddd [klokka] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s sidan\",s:\"nokre sekund\",ss:\"%d sekund\",m:\"eit minutt\",mm:\"%d minutt\",h:\"ein time\",hh:\"%d timar\",d:\"ein dag\",dd:\"%d dagar\",M:\"ein m\\xe5nad\",MM:\"%d m\\xe5nader\",y:\"eit \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},uXwI:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekundes_sekund\\u0113m_sekunde_sekundes\".split(\"_\"),m:\"min\\u016btes_min\\u016bt\\u0113m_min\\u016bte_min\\u016btes\".split(\"_\"),mm:\"min\\u016btes_min\\u016bt\\u0113m_min\\u016bte_min\\u016btes\".split(\"_\"),h:\"stundas_stund\\u0101m_stunda_stundas\".split(\"_\"),hh:\"stundas_stund\\u0101m_stunda_stundas\".split(\"_\"),d:\"dienas_dien\\u0101m_diena_dienas\".split(\"_\"),dd:\"dienas_dien\\u0101m_diena_dienas\".split(\"_\"),M:\"m\\u0113ne\\u0161a_m\\u0113ne\\u0161iem_m\\u0113nesis_m\\u0113ne\\u0161i\".split(\"_\"),MM:\"m\\u0113ne\\u0161a_m\\u0113ne\\u0161iem_m\\u0113nesis_m\\u0113ne\\u0161i\".split(\"_\"),y:\"gada_gadiem_gads_gadi\".split(\"_\"),yy:\"gada_gadiem_gads_gadi\".split(\"_\")};function n(e,t,n){return n?t%10==1&&t%100!=11?e[2]:e[3]:t%10==1&&t%100!=11?e[0]:e[1]}function i(e,i,s){return e+\" \"+n(t[s],e,i)}function s(e,i,s){return n(t[s],e,i)}e.defineLocale(\"lv\",{months:\"janv\\u0101ris_febru\\u0101ris_marts_apr\\u012blis_maijs_j\\u016bnijs_j\\u016blijs_augusts_septembris_oktobris_novembris_decembris\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_j\\u016bn_j\\u016bl_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"sv\\u0113tdiena_pirmdiena_otrdiena_tre\\u0161diena_ceturtdiena_piektdiena_sestdiena\".split(\"_\"),weekdaysShort:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysMin:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY.\",LL:\"YYYY. [gada] D. MMMM\",LLL:\"YYYY. [gada] D. MMMM, HH:mm\",LLLL:\"YYYY. [gada] D. MMMM, dddd, HH:mm\"},calendar:{sameDay:\"[\\u0160odien pulksten] LT\",nextDay:\"[R\\u012bt pulksten] LT\",nextWeek:\"dddd [pulksten] LT\",lastDay:\"[Vakar pulksten] LT\",lastWeek:\"[Pag\\u0101ju\\u0161\\u0101] dddd [pulksten] LT\",sameElse:\"L\"},relativeTime:{future:\"p\\u0113c %s\",past:\"pirms %s\",s:function(e,t){return t?\"da\\u017eas sekundes\":\"da\\u017e\\u0101m sekund\\u0113m\"},ss:i,m:s,mm:i,h:s,hh:i,d:s,dd:i,M:s,MM:i,y:s,yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},wQk9:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm\",{months:\"\\u2d49\\u2d4f\\u2d4f\\u2d30\\u2d62\\u2d54_\\u2d31\\u2d55\\u2d30\\u2d62\\u2d55_\\u2d4e\\u2d30\\u2d55\\u2d5a_\\u2d49\\u2d31\\u2d54\\u2d49\\u2d54_\\u2d4e\\u2d30\\u2d62\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4f\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4d\\u2d62\\u2d53\\u2d63_\\u2d56\\u2d53\\u2d5b\\u2d5c_\\u2d5b\\u2d53\\u2d5c\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d3d\\u2d5f\\u2d53\\u2d31\\u2d55_\\u2d4f\\u2d53\\u2d61\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d37\\u2d53\\u2d4a\\u2d4f\\u2d31\\u2d49\\u2d54\".split(\"_\"),monthsShort:\"\\u2d49\\u2d4f\\u2d4f\\u2d30\\u2d62\\u2d54_\\u2d31\\u2d55\\u2d30\\u2d62\\u2d55_\\u2d4e\\u2d30\\u2d55\\u2d5a_\\u2d49\\u2d31\\u2d54\\u2d49\\u2d54_\\u2d4e\\u2d30\\u2d62\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4f\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4d\\u2d62\\u2d53\\u2d63_\\u2d56\\u2d53\\u2d5b\\u2d5c_\\u2d5b\\u2d53\\u2d5c\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d3d\\u2d5f\\u2d53\\u2d31\\u2d55_\\u2d4f\\u2d53\\u2d61\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d37\\u2d53\\u2d4a\\u2d4f\\u2d31\\u2d49\\u2d54\".split(\"_\"),weekdays:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),weekdaysShort:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),weekdaysMin:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u2d30\\u2d59\\u2d37\\u2d45 \\u2d34] LT\",nextDay:\"[\\u2d30\\u2d59\\u2d3d\\u2d30 \\u2d34] LT\",nextWeek:\"dddd [\\u2d34] LT\",lastDay:\"[\\u2d30\\u2d5a\\u2d30\\u2d4f\\u2d5c \\u2d34] LT\",lastWeek:\"dddd [\\u2d34] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u2d37\\u2d30\\u2d37\\u2d45 \\u2d59 \\u2d62\\u2d30\\u2d4f %s\",past:\"\\u2d62\\u2d30\\u2d4f %s\",s:\"\\u2d49\\u2d4e\\u2d49\\u2d3d\",ss:\"%d \\u2d49\\u2d4e\\u2d49\\u2d3d\",m:\"\\u2d4e\\u2d49\\u2d4f\\u2d53\\u2d3a\",mm:\"%d \\u2d4e\\u2d49\\u2d4f\\u2d53\\u2d3a\",h:\"\\u2d59\\u2d30\\u2d44\\u2d30\",hh:\"%d \\u2d5c\\u2d30\\u2d59\\u2d59\\u2d30\\u2d44\\u2d49\\u2d4f\",d:\"\\u2d30\\u2d59\\u2d59\",dd:\"%d o\\u2d59\\u2d59\\u2d30\\u2d4f\",M:\"\\u2d30\\u2d62o\\u2d53\\u2d54\",MM:\"%d \\u2d49\\u2d62\\u2d62\\u2d49\\u2d54\\u2d4f\",y:\"\\u2d30\\u2d59\\u2d33\\u2d30\\u2d59\",yy:\"%d \\u2d49\\u2d59\\u2d33\\u2d30\\u2d59\\u2d4f\"},week:{dow:6,doy:12}})}(n(\"wd/R\"))},\"wd/R\":function(e,t,n){(function(e){e.exports=function(){\"use strict\";var t,i;function s(){return t.apply(null,arguments)}function r(e){return e instanceof Array||\"[object Array]\"===Object.prototype.toString.call(e)}function o(e){return null!=e&&\"[object Object]\"===Object.prototype.toString.call(e)}function a(e){return void 0===e}function l(e){return\"number\"==typeof e||\"[object Number]\"===Object.prototype.toString.call(e)}function c(e){return e instanceof Date||\"[object Date]\"===Object.prototype.toString.call(e)}function d(e,t){var n,i=[];for(n=0;n>>0,i=0;i0)for(n=0;n=0?n?\"+\":\"\":\"-\")+Math.pow(10,Math.max(0,t-i.length)).toString().substr(1)+i}var N=/(\\[[^\\[]*\\])|(\\\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,z=/(\\[[^\\[]*\\])|(\\\\)?(LTS|LT|LL?L?L?|l{1,4})/g,V={},W={};function U(e,t,n,i){var s=i;\"string\"==typeof i&&(s=function(){return this[i]()}),e&&(W[e]=s),t&&(W[t[0]]=function(){return F(s.apply(this,arguments),t[1],t[2])}),n&&(W[n]=function(){return this.localeData().ordinal(s.apply(this,arguments),e)})}function $(e,t){return e.isValid()?(t=B(t,e.localeData()),V[t]=V[t]||function(e){var t,n,i,s=e.match(N);for(t=0,n=s.length;t=0&&z.test(e);)e=e.replace(z,i),z.lastIndex=0,n-=1;return e}var q=/\\d/,G=/\\d\\d/,J=/\\d{3}/,K=/\\d{4}/,Z=/[+-]?\\d{6}/,Q=/\\d\\d?/,X=/\\d\\d\\d\\d?/,ee=/\\d\\d\\d\\d\\d\\d?/,te=/\\d{1,3}/,ne=/\\d{1,4}/,ie=/[+-]?\\d{1,6}/,se=/\\d+/,re=/[+-]?\\d+/,oe=/Z|[+-]\\d\\d:?\\d\\d/gi,ae=/Z|[+-]\\d\\d(?::?\\d\\d)?/gi,le=/[0-9]{0,256}['a-z\\u00A0-\\u05FF\\u0700-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFF07\\uFF10-\\uFFEF]{1,256}|[\\u0600-\\u06FF\\/]{1,256}(\\s*?[\\u0600-\\u06FF]{1,256}){1,2}/i,ce={};function de(e,t,n){ce[e]=Y(t)?t:function(e,i){return e&&n?n:t}}function ue(e,t){return u(ce,e)?ce[e](t._strict,t._locale):new RegExp(he(e.replace(\"\\\\\",\"\").replace(/\\\\(\\[)|\\\\(\\])|\\[([^\\]\\[]*)\\]|\\\\(.)/g,(function(e,t,n,i,s){return t||n||i||s}))))}function he(e){return e.replace(/[-\\/\\\\^$*+?.()|[\\]{}]/g,\"\\\\$&\")}var me={};function pe(e,t){var n,i=t;for(\"string\"==typeof e&&(e=[e]),l(t)&&(i=function(e,n){n[t]=k(e)}),n=0;n68?1900:2e3)};var be,ve=we(\"FullYear\",!0);function we(e,t){return function(n){return null!=n?(ke(this,e,n),s.updateOffset(this,t),this):Me(this,e)}}function Me(e,t){return e.isValid()?e._d[\"get\"+(e._isUTC?\"UTC\":\"\")+t]():NaN}function ke(e,t,n){e.isValid()&&!isNaN(n)&&(\"FullYear\"===t&&ye(e.year())&&1===e.month()&&29===e.date()?e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n,e.month(),Se(n,e.month())):e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n))}function Se(e,t){if(isNaN(e)||isNaN(t))return NaN;var n=(t%12+12)%12;return e+=(t-n)/12,1===n?ye(e)?29:28:31-n%7%2}be=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t=0?(a=new Date(e+400,t,n,i,s,r,o),isFinite(a.getFullYear())&&a.setFullYear(e)):a=new Date(e,t,n,i,s,r,o),a}function Ae(e){var t;if(e<100&&e>=0){var n=Array.prototype.slice.call(arguments);n[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)}else t=new Date(Date.UTC.apply(null,arguments));return t}function Re(e,t,n){var i=7+t-n;return-(7+Ae(e,0,i).getUTCDay()-t)%7+i-1}function He(e,t,n,i,s){var r,o,a=1+7*(t-1)+(7+n-i)%7+Re(e,i,s);return a<=0?o=ge(r=e-1)+a:a>ge(e)?(r=e+1,o=a-ge(e)):(r=e,o=a),{year:r,dayOfYear:o}}function je(e,t,n){var i,s,r=Re(e.year(),t,n),o=Math.floor((e.dayOfYear()-r-1)/7)+1;return o<1?i=o+Fe(s=e.year()-1,t,n):o>Fe(e.year(),t,n)?(i=o-Fe(e.year(),t,n),s=e.year()+1):(s=e.year(),i=o),{week:i,year:s}}function Fe(e,t,n){var i=Re(e,t,n),s=Re(e+1,t,n);return(ge(e)-i+s)/7}function Ne(e,t){return e.slice(t,7).concat(e.slice(0,t))}U(\"w\",[\"ww\",2],\"wo\",\"week\"),U(\"W\",[\"WW\",2],\"Wo\",\"isoWeek\"),P(\"week\",\"w\"),P(\"isoWeek\",\"W\"),j(\"week\",5),j(\"isoWeek\",5),de(\"w\",Q),de(\"ww\",Q,G),de(\"W\",Q),de(\"WW\",Q,G),fe([\"w\",\"ww\",\"W\",\"WW\"],(function(e,t,n,i){t[i.substr(0,1)]=k(e)})),U(\"d\",0,\"do\",\"day\"),U(\"dd\",0,0,(function(e){return this.localeData().weekdaysMin(this,e)})),U(\"ddd\",0,0,(function(e){return this.localeData().weekdaysShort(this,e)})),U(\"dddd\",0,0,(function(e){return this.localeData().weekdays(this,e)})),U(\"e\",0,0,\"weekday\"),U(\"E\",0,0,\"isoWeekday\"),P(\"day\",\"d\"),P(\"weekday\",\"e\"),P(\"isoWeekday\",\"E\"),j(\"day\",11),j(\"weekday\",11),j(\"isoWeekday\",11),de(\"d\",Q),de(\"e\",Q),de(\"E\",Q),de(\"dd\",(function(e,t){return t.weekdaysMinRegex(e)})),de(\"ddd\",(function(e,t){return t.weekdaysShortRegex(e)})),de(\"dddd\",(function(e,t){return t.weekdaysRegex(e)})),fe([\"dd\",\"ddd\",\"dddd\"],(function(e,t,n,i){var s=n._locale.weekdaysParse(e,i,n._strict);null!=s?t.d=s:p(n).invalidWeekday=e})),fe([\"d\",\"e\",\"E\"],(function(e,t,n,i){t[i]=k(e)}));var ze=\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),Ve=\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),We=\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\");function Ue(e,t,n){var i,s,r,o=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],i=0;i<7;++i)r=m([2e3,1]).day(i),this._minWeekdaysParse[i]=this.weekdaysMin(r,\"\").toLocaleLowerCase(),this._shortWeekdaysParse[i]=this.weekdaysShort(r,\"\").toLocaleLowerCase(),this._weekdaysParse[i]=this.weekdays(r,\"\").toLocaleLowerCase();return n?\"dddd\"===t?-1!==(s=be.call(this._weekdaysParse,o))?s:null:\"ddd\"===t?-1!==(s=be.call(this._shortWeekdaysParse,o))?s:null:-1!==(s=be.call(this._minWeekdaysParse,o))?s:null:\"dddd\"===t?-1!==(s=be.call(this._weekdaysParse,o))||-1!==(s=be.call(this._shortWeekdaysParse,o))||-1!==(s=be.call(this._minWeekdaysParse,o))?s:null:\"ddd\"===t?-1!==(s=be.call(this._shortWeekdaysParse,o))||-1!==(s=be.call(this._weekdaysParse,o))||-1!==(s=be.call(this._minWeekdaysParse,o))?s:null:-1!==(s=be.call(this._minWeekdaysParse,o))||-1!==(s=be.call(this._weekdaysParse,o))||-1!==(s=be.call(this._shortWeekdaysParse,o))?s:null}var $e=le,Be=le,qe=le;function Ge(){function e(e,t){return t.length-e.length}var t,n,i,s,r,o=[],a=[],l=[],c=[];for(t=0;t<7;t++)n=m([2e3,1]).day(t),i=this.weekdaysMin(n,\"\"),s=this.weekdaysShort(n,\"\"),r=this.weekdays(n,\"\"),o.push(i),a.push(s),l.push(r),c.push(i),c.push(s),c.push(r);for(o.sort(e),a.sort(e),l.sort(e),c.sort(e),t=0;t<7;t++)a[t]=he(a[t]),l[t]=he(l[t]),c[t]=he(c[t]);this._weekdaysRegex=new RegExp(\"^(\"+c.join(\"|\")+\")\",\"i\"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp(\"^(\"+l.join(\"|\")+\")\",\"i\"),this._weekdaysShortStrictRegex=new RegExp(\"^(\"+a.join(\"|\")+\")\",\"i\"),this._weekdaysMinStrictRegex=new RegExp(\"^(\"+o.join(\"|\")+\")\",\"i\")}function Je(){return this.hours()%12||12}function Ke(e,t){U(e,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)}))}function Ze(e,t){return t._meridiemParse}U(\"H\",[\"HH\",2],0,\"hour\"),U(\"h\",[\"hh\",2],0,Je),U(\"k\",[\"kk\",2],0,(function(){return this.hours()||24})),U(\"hmm\",0,0,(function(){return\"\"+Je.apply(this)+F(this.minutes(),2)})),U(\"hmmss\",0,0,(function(){return\"\"+Je.apply(this)+F(this.minutes(),2)+F(this.seconds(),2)})),U(\"Hmm\",0,0,(function(){return\"\"+this.hours()+F(this.minutes(),2)})),U(\"Hmmss\",0,0,(function(){return\"\"+this.hours()+F(this.minutes(),2)+F(this.seconds(),2)})),Ke(\"a\",!0),Ke(\"A\",!1),P(\"hour\",\"h\"),j(\"hour\",13),de(\"a\",Ze),de(\"A\",Ze),de(\"H\",Q),de(\"h\",Q),de(\"k\",Q),de(\"HH\",Q,G),de(\"hh\",Q,G),de(\"kk\",Q,G),de(\"hmm\",X),de(\"hmmss\",ee),de(\"Hmm\",X),de(\"Hmmss\",ee),pe([\"H\",\"HH\"],3),pe([\"k\",\"kk\"],(function(e,t,n){var i=k(e);t[3]=24===i?0:i})),pe([\"a\",\"A\"],(function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e})),pe([\"h\",\"hh\"],(function(e,t,n){t[3]=k(e),p(n).bigHour=!0})),pe(\"hmm\",(function(e,t,n){var i=e.length-2;t[3]=k(e.substr(0,i)),t[4]=k(e.substr(i)),p(n).bigHour=!0})),pe(\"hmmss\",(function(e,t,n){var i=e.length-4,s=e.length-2;t[3]=k(e.substr(0,i)),t[4]=k(e.substr(i,2)),t[5]=k(e.substr(s)),p(n).bigHour=!0})),pe(\"Hmm\",(function(e,t,n){var i=e.length-2;t[3]=k(e.substr(0,i)),t[4]=k(e.substr(i))})),pe(\"Hmmss\",(function(e,t,n){var i=e.length-4,s=e.length-2;t[3]=k(e.substr(0,i)),t[4]=k(e.substr(i,2)),t[5]=k(e.substr(s))}));var Qe,Xe=we(\"Hours\",!0),et={calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},longDateFormat:{LTS:\"h:mm:ss A\",LT:\"h:mm A\",L:\"MM/DD/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"},invalidDate:\"Invalid date\",ordinal:\"%d\",dayOfMonthOrdinalParse:/\\d{1,2}/,relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},months:xe,monthsShort:Ce,week:{dow:0,doy:6},weekdays:ze,weekdaysMin:We,weekdaysShort:Ve,meridiemParse:/[ap]\\.?m?\\.?/i},tt={},nt={};function it(e){return e?e.toLowerCase().replace(\"_\",\"-\"):e}function st(t){var i=null;if(!tt[t]&&void 0!==e&&e&&e.exports)try{i=Qe._abbr,n(\"RnhZ\")(\"./\"+t),rt(i)}catch(s){}return tt[t]}function rt(e,t){var n;return e&&((n=a(t)?at(e):ot(e,t))?Qe=n:\"undefined\"!=typeof console&&console.warn&&console.warn(\"Locale \"+e+\" not found. Did you forget to load it?\")),Qe._abbr}function ot(e,t){if(null!==t){var n,i=et;if(t.abbr=e,null!=tt[e])D(\"defineLocaleOverride\",\"use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info.\"),i=tt[e]._config;else if(null!=t.parentLocale)if(null!=tt[t.parentLocale])i=tt[t.parentLocale]._config;else{if(null==(n=st(t.parentLocale)))return nt[t.parentLocale]||(nt[t.parentLocale]=[]),nt[t.parentLocale].push({name:e,config:t}),null;i=n._config}return tt[e]=new O(E(i,t)),nt[e]&&nt[e].forEach((function(e){ot(e.name,e.config)})),rt(e),tt[e]}return delete tt[e],null}function at(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return Qe;if(!r(e)){if(t=st(e))return t;e=[e]}return function(e){for(var t,n,i,s,r=0;r0;){if(i=st(s.slice(0,t).join(\"-\")))return i;if(n&&n.length>=t&&S(s,n,!0)>=t-1)break;t--}r++}return Qe}(e)}function lt(e){var t,n=e._a;return n&&-2===p(e).overflow&&(t=n[1]<0||n[1]>11?1:n[2]<1||n[2]>Se(n[0],n[1])?2:n[3]<0||n[3]>24||24===n[3]&&(0!==n[4]||0!==n[5]||0!==n[6])?3:n[4]<0||n[4]>59?4:n[5]<0||n[5]>59?5:n[6]<0||n[6]>999?6:-1,p(e)._overflowDayOfYear&&(t<0||t>2)&&(t=2),p(e)._overflowWeeks&&-1===t&&(t=7),p(e)._overflowWeekday&&-1===t&&(t=8),p(e).overflow=t),e}function ct(e,t,n){return null!=e?e:null!=t?t:n}function dt(e){var t,n,i,r,o,a=[];if(!e._d){for(i=function(e){var t=new Date(s.now());return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}(e),e._w&&null==e._a[2]&&null==e._a[1]&&function(e){var t,n,i,s,r,o,a,l;if(null!=(t=e._w).GG||null!=t.W||null!=t.E)r=1,o=4,n=ct(t.GG,e._a[0],je(St(),1,4).year),i=ct(t.W,1),((s=ct(t.E,1))<1||s>7)&&(l=!0);else{r=e._locale._week.dow,o=e._locale._week.doy;var c=je(St(),r,o);n=ct(t.gg,e._a[0],c.year),i=ct(t.w,c.week),null!=t.d?((s=t.d)<0||s>6)&&(l=!0):null!=t.e?(s=t.e+r,(t.e<0||t.e>6)&&(l=!0)):s=r}i<1||i>Fe(n,r,o)?p(e)._overflowWeeks=!0:null!=l?p(e)._overflowWeekday=!0:(a=He(n,i,s,r,o),e._a[0]=a.year,e._dayOfYear=a.dayOfYear)}(e),null!=e._dayOfYear&&(o=ct(e._a[0],i[0]),(e._dayOfYear>ge(o)||0===e._dayOfYear)&&(p(e)._overflowDayOfYear=!0),n=Ae(o,0,e._dayOfYear),e._a[1]=n.getUTCMonth(),e._a[2]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=a[t]=i[t];for(;t<7;t++)e._a[t]=a[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[3]&&0===e._a[4]&&0===e._a[5]&&0===e._a[6]&&(e._nextDay=!0,e._a[3]=0),e._d=(e._useUTC?Ae:Pe).apply(null,a),r=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[3]=24),e._w&&void 0!==e._w.d&&e._w.d!==r&&(p(e).weekdayMismatch=!0)}}var ut=/^\\s*((?:[+-]\\d{6}|\\d{4})-(?:\\d\\d-\\d\\d|W\\d\\d-\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?::\\d\\d(?::\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,ht=/^\\s*((?:[+-]\\d{6}|\\d{4})(?:\\d\\d\\d\\d|W\\d\\d\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?:\\d\\d(?:\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,mt=/Z|[+-]\\d\\d(?::?\\d\\d)?/,pt=[[\"YYYYYY-MM-DD\",/[+-]\\d{6}-\\d\\d-\\d\\d/],[\"YYYY-MM-DD\",/\\d{4}-\\d\\d-\\d\\d/],[\"GGGG-[W]WW-E\",/\\d{4}-W\\d\\d-\\d/],[\"GGGG-[W]WW\",/\\d{4}-W\\d\\d/,!1],[\"YYYY-DDD\",/\\d{4}-\\d{3}/],[\"YYYY-MM\",/\\d{4}-\\d\\d/,!1],[\"YYYYYYMMDD\",/[+-]\\d{10}/],[\"YYYYMMDD\",/\\d{8}/],[\"GGGG[W]WWE\",/\\d{4}W\\d{3}/],[\"GGGG[W]WW\",/\\d{4}W\\d{2}/,!1],[\"YYYYDDD\",/\\d{7}/]],ft=[[\"HH:mm:ss.SSSS\",/\\d\\d:\\d\\d:\\d\\d\\.\\d+/],[\"HH:mm:ss,SSSS\",/\\d\\d:\\d\\d:\\d\\d,\\d+/],[\"HH:mm:ss\",/\\d\\d:\\d\\d:\\d\\d/],[\"HH:mm\",/\\d\\d:\\d\\d/],[\"HHmmss.SSSS\",/\\d\\d\\d\\d\\d\\d\\.\\d+/],[\"HHmmss,SSSS\",/\\d\\d\\d\\d\\d\\d,\\d+/],[\"HHmmss\",/\\d\\d\\d\\d\\d\\d/],[\"HHmm\",/\\d\\d\\d\\d/],[\"HH\",/\\d\\d/]],_t=/^\\/?Date\\((\\-?\\d+)/i;function gt(e){var t,n,i,s,r,o,a=e._i,l=ut.exec(a)||ht.exec(a);if(l){for(p(e).iso=!0,t=0,n=pt.length;t0&&p(e).unusedInput.push(o),a=a.slice(a.indexOf(n)+n.length),c+=n.length),W[r]?(n?p(e).empty=!1:p(e).unusedTokens.push(r),_e(r,n,e)):e._strict&&!n&&p(e).unusedTokens.push(r);p(e).charsLeftOver=l-c,a.length>0&&p(e).unusedInput.push(a),e._a[3]<=12&&!0===p(e).bigHour&&e._a[3]>0&&(p(e).bigHour=void 0),p(e).parsedDateParts=e._a.slice(0),p(e).meridiem=e._meridiem,e._a[3]=function(e,t,n){var i;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((i=e.isPM(n))&&t<12&&(t+=12),i||12!==t||(t=0),t):t}(e._locale,e._a[3],e._meridiem),dt(e),lt(e)}else vt(e);else gt(e)}function Mt(e){var t=e._i,n=e._f;return e._locale=e._locale||at(e._l),null===t||void 0===n&&\"\"===t?_({nullInput:!0}):(\"string\"==typeof t&&(e._i=t=e._locale.preparse(t)),w(t)?new v(lt(t)):(c(t)?e._d=t:r(n)?function(e){var t,n,i,s,r;if(0===e._f.length)return p(e).invalidFormat=!0,void(e._d=new Date(NaN));for(s=0;sthis?this:e:_()}));function Ct(e,t){var n,i;if(1===t.length&&r(t[0])&&(t=t[0]),!t.length)return St();for(n=t[0],i=1;i=0?new Date(e+400,t,n)-126227808e5:new Date(e,t,n).valueOf()}function Xt(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-126227808e5:Date.UTC(e,t,n)}function en(e,t){U(0,[e,e.length],0,t)}function tn(e,t,n,i,s){var r;return null==e?je(this,i,s).year:(t>(r=Fe(e,i,s))&&(t=r),nn.call(this,e,t,n,i,s))}function nn(e,t,n,i,s){var r=He(e,t,n,i,s),o=Ae(r.year,0,r.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}U(0,[\"gg\",2],0,(function(){return this.weekYear()%100})),U(0,[\"GG\",2],0,(function(){return this.isoWeekYear()%100})),en(\"gggg\",\"weekYear\"),en(\"ggggg\",\"weekYear\"),en(\"GGGG\",\"isoWeekYear\"),en(\"GGGGG\",\"isoWeekYear\"),P(\"weekYear\",\"gg\"),P(\"isoWeekYear\",\"GG\"),j(\"weekYear\",1),j(\"isoWeekYear\",1),de(\"G\",re),de(\"g\",re),de(\"GG\",Q,G),de(\"gg\",Q,G),de(\"GGGG\",ne,K),de(\"gggg\",ne,K),de(\"GGGGG\",ie,Z),de(\"ggggg\",ie,Z),fe([\"gggg\",\"ggggg\",\"GGGG\",\"GGGGG\"],(function(e,t,n,i){t[i.substr(0,2)]=k(e)})),fe([\"gg\",\"GG\"],(function(e,t,n,i){t[i]=s.parseTwoDigitYear(e)})),U(\"Q\",0,\"Qo\",\"quarter\"),P(\"quarter\",\"Q\"),j(\"quarter\",7),de(\"Q\",q),pe(\"Q\",(function(e,t){t[1]=3*(k(e)-1)})),U(\"D\",[\"DD\",2],\"Do\",\"date\"),P(\"date\",\"D\"),j(\"date\",9),de(\"D\",Q),de(\"DD\",Q,G),de(\"Do\",(function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient})),pe([\"D\",\"DD\"],2),pe(\"Do\",(function(e,t){t[2]=k(e.match(Q)[0])}));var sn=we(\"Date\",!0);U(\"DDD\",[\"DDDD\",3],\"DDDo\",\"dayOfYear\"),P(\"dayOfYear\",\"DDD\"),j(\"dayOfYear\",4),de(\"DDD\",te),de(\"DDDD\",J),pe([\"DDD\",\"DDDD\"],(function(e,t,n){n._dayOfYear=k(e)})),U(\"m\",[\"mm\",2],0,\"minute\"),P(\"minute\",\"m\"),j(\"minute\",14),de(\"m\",Q),de(\"mm\",Q,G),pe([\"m\",\"mm\"],4);var rn=we(\"Minutes\",!1);U(\"s\",[\"ss\",2],0,\"second\"),P(\"second\",\"s\"),j(\"second\",15),de(\"s\",Q),de(\"ss\",Q,G),pe([\"s\",\"ss\"],5);var on,an=we(\"Seconds\",!1);for(U(\"S\",0,0,(function(){return~~(this.millisecond()/100)})),U(0,[\"SS\",2],0,(function(){return~~(this.millisecond()/10)})),U(0,[\"SSS\",3],0,\"millisecond\"),U(0,[\"SSSS\",4],0,(function(){return 10*this.millisecond()})),U(0,[\"SSSSS\",5],0,(function(){return 100*this.millisecond()})),U(0,[\"SSSSSS\",6],0,(function(){return 1e3*this.millisecond()})),U(0,[\"SSSSSSS\",7],0,(function(){return 1e4*this.millisecond()})),U(0,[\"SSSSSSSS\",8],0,(function(){return 1e5*this.millisecond()})),U(0,[\"SSSSSSSSS\",9],0,(function(){return 1e6*this.millisecond()})),P(\"millisecond\",\"ms\"),j(\"millisecond\",16),de(\"S\",te,q),de(\"SS\",te,G),de(\"SSS\",te,J),on=\"SSSS\";on.length<=9;on+=\"S\")de(on,se);function ln(e,t){t[6]=k(1e3*(\"0.\"+e))}for(on=\"S\";on.length<=9;on+=\"S\")pe(on,ln);var cn=we(\"Milliseconds\",!1);U(\"z\",0,0,\"zoneAbbr\"),U(\"zz\",0,0,\"zoneName\");var dn=v.prototype;function un(e){return e}dn.add=$t,dn.calendar=function(e,t){var n=e||St(),i=At(n,this).startOf(\"day\"),r=s.calendarFormat(this,i)||\"sameElse\",o=t&&(Y(t[r])?t[r].call(this,n):t[r]);return this.format(o||this.localeData().calendar(r,this,St(n)))},dn.clone=function(){return new v(this)},dn.diff=function(e,t,n){var i,s,r;if(!this.isValid())return NaN;if(!(i=At(e,this)).isValid())return NaN;switch(s=6e4*(i.utcOffset()-this.utcOffset()),t=A(t)){case\"year\":r=qt(this,i)/12;break;case\"month\":r=qt(this,i);break;case\"quarter\":r=qt(this,i)/3;break;case\"second\":r=(this-i)/1e3;break;case\"minute\":r=(this-i)/6e4;break;case\"hour\":r=(this-i)/36e5;break;case\"day\":r=(this-i-s)/864e5;break;case\"week\":r=(this-i-s)/6048e5;break;default:r=this-i}return n?r:M(r)},dn.endOf=function(e){var t;if(void 0===(e=A(e))||\"millisecond\"===e||!this.isValid())return this;var n=this._isUTC?Xt:Qt;switch(e){case\"year\":t=n(this.year()+1,0,1)-1;break;case\"quarter\":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case\"month\":t=n(this.year(),this.month()+1,1)-1;break;case\"week\":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case\"isoWeek\":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case\"day\":case\"date\":t=n(this.year(),this.month(),this.date()+1)-1;break;case\"hour\":t=this._d.valueOf(),t+=36e5-Zt(t+(this._isUTC?0:6e4*this.utcOffset()),36e5)-1;break;case\"minute\":t=this._d.valueOf(),t+=6e4-Zt(t,6e4)-1;break;case\"second\":t=this._d.valueOf(),t+=1e3-Zt(t,1e3)-1}return this._d.setTime(t),s.updateOffset(this,!0),this},dn.format=function(e){e||(e=this.isUtc()?s.defaultFormatUtc:s.defaultFormat);var t=$(this,e);return this.localeData().postformat(t)},dn.from=function(e,t){return this.isValid()&&(w(e)&&e.isValid()||St(e).isValid())?Nt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},dn.fromNow=function(e){return this.from(St(),e)},dn.to=function(e,t){return this.isValid()&&(w(e)&&e.isValid()||St(e).isValid())?Nt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},dn.toNow=function(e){return this.to(St(),e)},dn.get=function(e){return Y(this[e=A(e)])?this[e]():this},dn.invalidAt=function(){return p(this).overflow},dn.isAfter=function(e,t){var n=w(e)?e:St(e);return!(!this.isValid()||!n.isValid())&&(\"millisecond\"===(t=A(t)||\"millisecond\")?this.valueOf()>n.valueOf():n.valueOf()9999?$(n,t?\"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ\"):Y(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace(\"Z\",$(n,\"Z\")):$(n,t?\"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYY-MM-DD[T]HH:mm:ss.SSSZ\")},dn.inspect=function(){if(!this.isValid())return\"moment.invalid(/* \"+this._i+\" */)\";var e=\"moment\",t=\"\";this.isLocal()||(e=0===this.utcOffset()?\"moment.utc\":\"moment.parseZone\",t=\"Z\");var n=\"[\"+e+'(\"]',i=0<=this.year()&&this.year()<=9999?\"YYYY\":\"YYYYYY\";return this.format(n+i+\"-MM-DD[T]HH:mm:ss.SSS\"+t+'[\")]')},dn.toJSON=function(){return this.isValid()?this.toISOString():null},dn.toString=function(){return this.clone().locale(\"en\").format(\"ddd MMM DD YYYY HH:mm:ss [GMT]ZZ\")},dn.unix=function(){return Math.floor(this.valueOf()/1e3)},dn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},dn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},dn.year=ve,dn.isLeapYear=function(){return ye(this.year())},dn.weekYear=function(e){return tn.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},dn.isoWeekYear=function(e){return tn.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)},dn.quarter=dn.quarters=function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},dn.month=Ye,dn.daysInMonth=function(){return Se(this.year(),this.month())},dn.week=dn.weeks=function(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),\"d\")},dn.isoWeek=dn.isoWeeks=function(e){var t=je(this,1,4).week;return null==e?t:this.add(7*(e-t),\"d\")},dn.weeksInYear=function(){var e=this.localeData()._week;return Fe(this.year(),e.dow,e.doy)},dn.isoWeeksInYear=function(){return Fe(this.year(),1,4)},dn.date=sn,dn.day=dn.days=function(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=function(e,t){return\"string\"!=typeof e?e:isNaN(e)?\"number\"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}(e,this.localeData()),this.add(e-t,\"d\")):t},dn.weekday=function(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,\"d\")},dn.isoWeekday=function(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=function(e,t){return\"string\"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7},dn.dayOfYear=function(e){var t=Math.round((this.clone().startOf(\"day\")-this.clone().startOf(\"year\"))/864e5)+1;return null==e?t:this.add(e-t,\"d\")},dn.hour=dn.hours=Xe,dn.minute=dn.minutes=rn,dn.second=dn.seconds=an,dn.millisecond=dn.milliseconds=cn,dn.utcOffset=function(e,t,n){var i,r=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null!=e){if(\"string\"==typeof e){if(null===(e=Pt(ae,e)))return this}else Math.abs(e)<16&&!n&&(e*=60);return!this._isUTC&&t&&(i=Rt(this)),this._offset=e,this._isUTC=!0,null!=i&&this.add(i,\"m\"),r!==e&&(!t||this._changeInProgress?Ut(this,Nt(e-r,\"m\"),1,!1):this._changeInProgress||(this._changeInProgress=!0,s.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?r:Rt(this)},dn.utc=function(e){return this.utcOffset(0,e)},dn.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(Rt(this),\"m\")),this},dn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if(\"string\"==typeof this._i){var e=Pt(oe,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this},dn.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?St(e).utcOffset():0,(this.utcOffset()-e)%60==0)},dn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},dn.isLocal=function(){return!!this.isValid()&&!this._isUTC},dn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},dn.isUtc=Ht,dn.isUTC=Ht,dn.zoneAbbr=function(){return this._isUTC?\"UTC\":\"\"},dn.zoneName=function(){return this._isUTC?\"Coordinated Universal Time\":\"\"},dn.dates=x(\"dates accessor is deprecated. Use date instead.\",sn),dn.months=x(\"months accessor is deprecated. Use month instead\",Ye),dn.years=x(\"years accessor is deprecated. Use year instead\",ve),dn.zone=x(\"moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/\",(function(e,t){return null!=e?(\"string\"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()})),dn.isDSTShifted=x(\"isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information\",(function(){if(!a(this._isDSTShifted))return this._isDSTShifted;var e={};if(y(e,this),(e=Mt(e))._a){var t=e._isUTC?m(e._a):St(e._a);this._isDSTShifted=this.isValid()&&S(e._a,t.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}));var hn=O.prototype;function mn(e,t,n,i){var s=at(),r=m().set(i,t);return s[n](r,e)}function pn(e,t,n){if(l(e)&&(t=e,e=void 0),e=e||\"\",null!=t)return mn(e,t,n,\"month\");var i,s=[];for(i=0;i<12;i++)s[i]=mn(e,i,n,\"month\");return s}function fn(e,t,n,i){\"boolean\"==typeof e?(l(t)&&(n=t,t=void 0),t=t||\"\"):(n=t=e,e=!1,l(t)&&(n=t,t=void 0),t=t||\"\");var s,r=at(),o=e?r._week.dow:0;if(null!=n)return mn(t,(n+o)%7,i,\"day\");var a=[];for(s=0;s<7;s++)a[s]=mn(t,(s+o)%7,i,\"day\");return a}hn.calendar=function(e,t,n){var i=this._calendar[e]||this._calendar.sameElse;return Y(i)?i.call(t,n):i},hn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.replace(/MMMM|MM|DD|dddd/g,(function(e){return e.slice(1)})),this._longDateFormat[e])},hn.invalidDate=function(){return this._invalidDate},hn.ordinal=function(e){return this._ordinal.replace(\"%d\",e)},hn.preparse=un,hn.postformat=un,hn.relativeTime=function(e,t,n,i){var s=this._relativeTime[n];return Y(s)?s(e,t,n,i):s.replace(/%d/i,e)},hn.pastFuture=function(e,t){var n=this._relativeTime[e>0?\"future\":\"past\"];return Y(n)?n(t):n.replace(/%s/i,t)},hn.set=function(e){var t,n;for(n in e)Y(t=e[n])?this[n]=t:this[\"_\"+n]=t;this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+\"|\"+/\\d{1,2}/.source)},hn.months=function(e,t){return e?r(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||Le).test(t)?\"format\":\"standalone\"][e.month()]:r(this._months)?this._months:this._months.standalone},hn.monthsShort=function(e,t){return e?r(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[Le.test(t)?\"format\":\"standalone\"][e.month()]:r(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},hn.monthsParse=function(e,t,n){var i,s,r;if(this._monthsParseExact)return Te.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),i=0;i<12;i++){if(s=m([2e3,i]),n&&!this._longMonthsParse[i]&&(this._longMonthsParse[i]=new RegExp(\"^\"+this.months(s,\"\").replace(\".\",\"\")+\"$\",\"i\"),this._shortMonthsParse[i]=new RegExp(\"^\"+this.monthsShort(s,\"\").replace(\".\",\"\")+\"$\",\"i\")),n||this._monthsParse[i]||(r=\"^\"+this.months(s,\"\")+\"|^\"+this.monthsShort(s,\"\"),this._monthsParse[i]=new RegExp(r.replace(\".\",\"\"),\"i\")),n&&\"MMMM\"===t&&this._longMonthsParse[i].test(e))return i;if(n&&\"MMM\"===t&&this._shortMonthsParse[i].test(e))return i;if(!n&&this._monthsParse[i].test(e))return i}},hn.monthsRegex=function(e){return this._monthsParseExact?(u(this,\"_monthsRegex\")||Ie.call(this),e?this._monthsStrictRegex:this._monthsRegex):(u(this,\"_monthsRegex\")||(this._monthsRegex=Oe),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},hn.monthsShortRegex=function(e){return this._monthsParseExact?(u(this,\"_monthsRegex\")||Ie.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(u(this,\"_monthsShortRegex\")||(this._monthsShortRegex=Ee),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},hn.week=function(e){return je(e,this._week.dow,this._week.doy).week},hn.firstDayOfYear=function(){return this._week.doy},hn.firstDayOfWeek=function(){return this._week.dow},hn.weekdays=function(e,t){var n=r(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?\"format\":\"standalone\"];return!0===e?Ne(n,this._week.dow):e?n[e.day()]:n},hn.weekdaysMin=function(e){return!0===e?Ne(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin},hn.weekdaysShort=function(e){return!0===e?Ne(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort},hn.weekdaysParse=function(e,t,n){var i,s,r;if(this._weekdaysParseExact)return Ue.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),i=0;i<7;i++){if(s=m([2e3,1]).day(i),n&&!this._fullWeekdaysParse[i]&&(this._fullWeekdaysParse[i]=new RegExp(\"^\"+this.weekdays(s,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._shortWeekdaysParse[i]=new RegExp(\"^\"+this.weekdaysShort(s,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._minWeekdaysParse[i]=new RegExp(\"^\"+this.weekdaysMin(s,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\")),this._weekdaysParse[i]||(r=\"^\"+this.weekdays(s,\"\")+\"|^\"+this.weekdaysShort(s,\"\")+\"|^\"+this.weekdaysMin(s,\"\"),this._weekdaysParse[i]=new RegExp(r.replace(\".\",\"\"),\"i\")),n&&\"dddd\"===t&&this._fullWeekdaysParse[i].test(e))return i;if(n&&\"ddd\"===t&&this._shortWeekdaysParse[i].test(e))return i;if(n&&\"dd\"===t&&this._minWeekdaysParse[i].test(e))return i;if(!n&&this._weekdaysParse[i].test(e))return i}},hn.weekdaysRegex=function(e){return this._weekdaysParseExact?(u(this,\"_weekdaysRegex\")||Ge.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(u(this,\"_weekdaysRegex\")||(this._weekdaysRegex=$e),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},hn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(u(this,\"_weekdaysRegex\")||Ge.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(u(this,\"_weekdaysShortRegex\")||(this._weekdaysShortRegex=Be),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},hn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(u(this,\"_weekdaysRegex\")||Ge.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(u(this,\"_weekdaysMinRegex\")||(this._weekdaysMinRegex=qe),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},hn.isPM=function(e){return\"p\"===(e+\"\").toLowerCase().charAt(0)},hn.meridiem=function(e,t,n){return e>11?n?\"pm\":\"PM\":n?\"am\":\"AM\"},rt(\"en\",{dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===k(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}}),s.lang=x(\"moment.lang is deprecated. Use moment.locale instead.\",rt),s.langData=x(\"moment.langData is deprecated. Use moment.localeData instead.\",at);var _n=Math.abs;function gn(e,t,n,i){var s=Nt(t,n);return e._milliseconds+=i*s._milliseconds,e._days+=i*s._days,e._months+=i*s._months,e._bubble()}function yn(e){return e<0?Math.floor(e):Math.ceil(e)}function bn(e){return 4800*e/146097}function vn(e){return 146097*e/4800}function wn(e){return function(){return this.as(e)}}var Mn=wn(\"ms\"),kn=wn(\"s\"),Sn=wn(\"m\"),Ln=wn(\"h\"),xn=wn(\"d\"),Cn=wn(\"w\"),Tn=wn(\"M\"),Dn=wn(\"Q\"),Yn=wn(\"y\");function En(e){return function(){return this.isValid()?this._data[e]:NaN}}var On=En(\"milliseconds\"),In=En(\"seconds\"),Pn=En(\"minutes\"),An=En(\"hours\"),Rn=En(\"days\"),Hn=En(\"months\"),jn=En(\"years\"),Fn=Math.round,Nn={ss:44,s:45,m:45,h:22,d:26,M:11};function zn(e,t,n,i,s){return s.relativeTime(t||1,!!n,e,i)}var Vn=Math.abs;function Wn(e){return(e>0)-(e<0)||+e}function Un(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n=Vn(this._milliseconds)/1e3,i=Vn(this._days),s=Vn(this._months);e=M(n/60),t=M(e/60),n%=60,e%=60;var r=M(s/12),o=s%=12,a=i,l=t,c=e,d=n?n.toFixed(3).replace(/\\.?0+$/,\"\"):\"\",u=this.asSeconds();if(!u)return\"P0D\";var h=u<0?\"-\":\"\",m=Wn(this._months)!==Wn(u)?\"-\":\"\",p=Wn(this._days)!==Wn(u)?\"-\":\"\",f=Wn(this._milliseconds)!==Wn(u)?\"-\":\"\";return h+\"P\"+(r?m+r+\"Y\":\"\")+(o?m+o+\"M\":\"\")+(a?p+a+\"D\":\"\")+(l||c||d?\"T\":\"\")+(l?f+l+\"H\":\"\")+(c?f+c+\"M\":\"\")+(d?f+d+\"S\":\"\")}var $n=Dt.prototype;return $n.isValid=function(){return this._isValid},$n.abs=function(){var e=this._data;return this._milliseconds=_n(this._milliseconds),this._days=_n(this._days),this._months=_n(this._months),e.milliseconds=_n(e.milliseconds),e.seconds=_n(e.seconds),e.minutes=_n(e.minutes),e.hours=_n(e.hours),e.months=_n(e.months),e.years=_n(e.years),this},$n.add=function(e,t){return gn(this,e,t,1)},$n.subtract=function(e,t){return gn(this,e,t,-1)},$n.as=function(e){if(!this.isValid())return NaN;var t,n,i=this._milliseconds;if(\"month\"===(e=A(e))||\"quarter\"===e||\"year\"===e)switch(n=this._months+bn(t=this._days+i/864e5),e){case\"month\":return n;case\"quarter\":return n/3;case\"year\":return n/12}else switch(t=this._days+Math.round(vn(this._months)),e){case\"week\":return t/7+i/6048e5;case\"day\":return t+i/864e5;case\"hour\":return 24*t+i/36e5;case\"minute\":return 1440*t+i/6e4;case\"second\":return 86400*t+i/1e3;case\"millisecond\":return Math.floor(864e5*t)+i;default:throw new Error(\"Unknown unit \"+e)}},$n.asMilliseconds=Mn,$n.asSeconds=kn,$n.asMinutes=Sn,$n.asHours=Ln,$n.asDays=xn,$n.asWeeks=Cn,$n.asMonths=Tn,$n.asQuarters=Dn,$n.asYears=Yn,$n.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*k(this._months/12):NaN},$n._bubble=function(){var e,t,n,i,s,r=this._milliseconds,o=this._days,a=this._months,l=this._data;return r>=0&&o>=0&&a>=0||r<=0&&o<=0&&a<=0||(r+=864e5*yn(vn(a)+o),o=0,a=0),l.milliseconds=r%1e3,e=M(r/1e3),l.seconds=e%60,t=M(e/60),l.minutes=t%60,n=M(t/60),l.hours=n%24,o+=M(n/24),a+=s=M(bn(o)),o-=yn(vn(s)),i=M(a/12),a%=12,l.days=o,l.months=a,l.years=i,this},$n.clone=function(){return Nt(this)},$n.get=function(e){return e=A(e),this.isValid()?this[e+\"s\"]():NaN},$n.milliseconds=On,$n.seconds=In,$n.minutes=Pn,$n.hours=An,$n.days=Rn,$n.weeks=function(){return M(this.days()/7)},$n.months=Hn,$n.years=jn,$n.humanize=function(e){if(!this.isValid())return this.localeData().invalidDate();var t=this.localeData(),n=function(e,t,n){var i=Nt(e).abs(),s=Fn(i.as(\"s\")),r=Fn(i.as(\"m\")),o=Fn(i.as(\"h\")),a=Fn(i.as(\"d\")),l=Fn(i.as(\"M\")),c=Fn(i.as(\"y\")),d=s<=Nn.ss&&[\"s\",s]||s0,d[4]=n,zn.apply(null,d)}(this,!e,t);return e&&(n=t.pastFuture(+this,n)),t.postformat(n)},$n.toISOString=Un,$n.toString=Un,$n.toJSON=Un,$n.locale=Gt,$n.localeData=Kt,$n.toIsoString=x(\"toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)\",Un),$n.lang=Jt,U(\"X\",0,0,\"unix\"),U(\"x\",0,0,\"valueOf\"),de(\"x\",re),de(\"X\",/[+-]?\\d+(\\.\\d{1,3})?/),pe(\"X\",(function(e,t,n){n._d=new Date(1e3*parseFloat(e,10))})),pe(\"x\",(function(e,t,n){n._d=new Date(k(e))})),s.version=\"2.24.0\",t=St,s.fn=dn,s.min=function(){var e=[].slice.call(arguments,0);return Ct(\"isBefore\",e)},s.max=function(){var e=[].slice.call(arguments,0);return Ct(\"isAfter\",e)},s.now=function(){return Date.now?Date.now():+new Date},s.utc=m,s.unix=function(e){return St(1e3*e)},s.months=function(e,t){return pn(e,t,\"months\")},s.isDate=c,s.locale=rt,s.invalid=_,s.duration=Nt,s.isMoment=w,s.weekdays=function(e,t,n){return fn(e,t,n,\"weekdays\")},s.parseZone=function(){return St.apply(null,arguments).parseZone()},s.localeData=at,s.isDuration=Yt,s.monthsShort=function(e,t){return pn(e,t,\"monthsShort\")},s.weekdaysMin=function(e,t,n){return fn(e,t,n,\"weekdaysMin\")},s.defineLocale=ot,s.updateLocale=function(e,t){if(null!=t){var n,i,s=et;null!=(i=st(e))&&(s=i._config),(n=new O(t=E(s,t))).parentLocale=tt[e],tt[e]=n,rt(e)}else null!=tt[e]&&(null!=tt[e].parentLocale?tt[e]=tt[e].parentLocale:null!=tt[e]&&delete tt[e]);return tt[e]},s.locales=function(){return C(tt)},s.weekdaysShort=function(e,t,n){return fn(e,t,n,\"weekdaysShort\")},s.normalizeUnits=A,s.relativeTimeRounding=function(e){return void 0===e?Fn:\"function\"==typeof e&&(Fn=e,!0)},s.relativeTimeThreshold=function(e,t){return void 0!==Nn[e]&&(void 0===t?Nn[e]:(Nn[e]=t,\"s\"===e&&(Nn.ss=t-1),!0))},s.calendarFormat=function(e,t){var n=e.diff(t,\"days\",!0);return n<-6?\"sameElse\":n<-1?\"lastWeek\":n<0?\"lastDay\":n<1?\"sameDay\":n<2?\"nextDay\":n<7?\"nextWeek\":\"sameElse\"},s.prototype=dn,s.HTML5_FMT={DATETIME_LOCAL:\"YYYY-MM-DDTHH:mm\",DATETIME_LOCAL_SECONDS:\"YYYY-MM-DDTHH:mm:ss\",DATETIME_LOCAL_MS:\"YYYY-MM-DDTHH:mm:ss.SSS\",DATE:\"YYYY-MM-DD\",TIME:\"HH:mm\",TIME_SECONDS:\"HH:mm:ss\",TIME_MS:\"HH:mm:ss.SSS\",WEEK:\"GGGG-[W]WW\",MONTH:\"YYYY-MM\"},s}()}).call(this,n(\"YuTi\")(e))},x6pH:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"he\",{months:\"\\u05d9\\u05e0\\u05d5\\u05d0\\u05e8_\\u05e4\\u05d1\\u05e8\\u05d5\\u05d0\\u05e8_\\u05de\\u05e8\\u05e5_\\u05d0\\u05e4\\u05e8\\u05d9\\u05dc_\\u05de\\u05d0\\u05d9_\\u05d9\\u05d5\\u05e0\\u05d9_\\u05d9\\u05d5\\u05dc\\u05d9_\\u05d0\\u05d5\\u05d2\\u05d5\\u05e1\\u05d8_\\u05e1\\u05e4\\u05d8\\u05de\\u05d1\\u05e8_\\u05d0\\u05d5\\u05e7\\u05d8\\u05d5\\u05d1\\u05e8_\\u05e0\\u05d5\\u05d1\\u05de\\u05d1\\u05e8_\\u05d3\\u05e6\\u05de\\u05d1\\u05e8\".split(\"_\"),monthsShort:\"\\u05d9\\u05e0\\u05d5\\u05f3_\\u05e4\\u05d1\\u05e8\\u05f3_\\u05de\\u05e8\\u05e5_\\u05d0\\u05e4\\u05e8\\u05f3_\\u05de\\u05d0\\u05d9_\\u05d9\\u05d5\\u05e0\\u05d9_\\u05d9\\u05d5\\u05dc\\u05d9_\\u05d0\\u05d5\\u05d2\\u05f3_\\u05e1\\u05e4\\u05d8\\u05f3_\\u05d0\\u05d5\\u05e7\\u05f3_\\u05e0\\u05d5\\u05d1\\u05f3_\\u05d3\\u05e6\\u05de\\u05f3\".split(\"_\"),weekdays:\"\\u05e8\\u05d0\\u05e9\\u05d5\\u05df_\\u05e9\\u05e0\\u05d9_\\u05e9\\u05dc\\u05d9\\u05e9\\u05d9_\\u05e8\\u05d1\\u05d9\\u05e2\\u05d9_\\u05d7\\u05de\\u05d9\\u05e9\\u05d9_\\u05e9\\u05d9\\u05e9\\u05d9_\\u05e9\\u05d1\\u05ea\".split(\"_\"),weekdaysShort:\"\\u05d0\\u05f3_\\u05d1\\u05f3_\\u05d2\\u05f3_\\u05d3\\u05f3_\\u05d4\\u05f3_\\u05d5\\u05f3_\\u05e9\\u05f3\".split(\"_\"),weekdaysMin:\"\\u05d0_\\u05d1_\\u05d2_\\u05d3_\\u05d4_\\u05d5_\\u05e9\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [\\u05d1]MMMM YYYY\",LLL:\"D [\\u05d1]MMMM YYYY HH:mm\",LLLL:\"dddd, D [\\u05d1]MMMM YYYY HH:mm\",l:\"D/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u05d4\\u05d9\\u05d5\\u05dd \\u05d1\\u05be]LT\",nextDay:\"[\\u05de\\u05d7\\u05e8 \\u05d1\\u05be]LT\",nextWeek:\"dddd [\\u05d1\\u05e9\\u05e2\\u05d4] LT\",lastDay:\"[\\u05d0\\u05ea\\u05de\\u05d5\\u05dc \\u05d1\\u05be]LT\",lastWeek:\"[\\u05d1\\u05d9\\u05d5\\u05dd] dddd [\\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05df \\u05d1\\u05e9\\u05e2\\u05d4] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u05d1\\u05e2\\u05d5\\u05d3 %s\",past:\"\\u05dc\\u05e4\\u05e0\\u05d9 %s\",s:\"\\u05de\\u05e1\\u05e4\\u05e8 \\u05e9\\u05e0\\u05d9\\u05d5\\u05ea\",ss:\"%d \\u05e9\\u05e0\\u05d9\\u05d5\\u05ea\",m:\"\\u05d3\\u05e7\\u05d4\",mm:\"%d \\u05d3\\u05e7\\u05d5\\u05ea\",h:\"\\u05e9\\u05e2\\u05d4\",hh:function(e){return 2===e?\"\\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd\":e+\" \\u05e9\\u05e2\\u05d5\\u05ea\"},d:\"\\u05d9\\u05d5\\u05dd\",dd:function(e){return 2===e?\"\\u05d9\\u05d5\\u05de\\u05d9\\u05d9\\u05dd\":e+\" \\u05d9\\u05de\\u05d9\\u05dd\"},M:\"\\u05d7\\u05d5\\u05d3\\u05e9\",MM:function(e){return 2===e?\"\\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05d9\\u05dd\":e+\" \\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05dd\"},y:\"\\u05e9\\u05e0\\u05d4\",yy:function(e){return 2===e?\"\\u05e9\\u05e0\\u05ea\\u05d9\\u05d9\\u05dd\":e%10==0&&10!==e?e+\" \\u05e9\\u05e0\\u05d4\":e+\" \\u05e9\\u05e0\\u05d9\\u05dd\"}},meridiemParse:/\\u05d0\\u05d7\\u05d4\"\\u05e6|\\u05dc\\u05e4\\u05e0\\u05d4\"\\u05e6|\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05dc\\u05e4\\u05e0\\u05d5\\u05ea \\u05d1\\u05d5\\u05e7\\u05e8|\\u05d1\\u05d1\\u05d5\\u05e7\\u05e8|\\u05d1\\u05e2\\u05e8\\u05d1/i,isPM:function(e){return/^(\\u05d0\\u05d7\\u05d4\"\\u05e6|\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05d1\\u05e2\\u05e8\\u05d1)$/.test(e)},meridiem:function(e,t,n){return e<5?\"\\u05dc\\u05e4\\u05e0\\u05d5\\u05ea \\u05d1\\u05d5\\u05e7\\u05e8\":e<10?\"\\u05d1\\u05d1\\u05d5\\u05e7\\u05e8\":e<12?n?'\\u05dc\\u05e4\\u05e0\\u05d4\"\\u05e6':\"\\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd\":e<18?n?'\\u05d0\\u05d7\\u05d4\"\\u05e6':\"\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd\":\"\\u05d1\\u05e2\\u05e8\\u05d1\"}})}(n(\"wd/R\"))},yPMs:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sq\",{months:\"Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_N\\xebntor_Dhjetor\".split(\"_\"),monthsShort:\"Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_N\\xebn_Dhj\".split(\"_\"),weekdays:\"E Diel_E H\\xebn\\xeb_E Mart\\xeb_E M\\xebrkur\\xeb_E Enjte_E Premte_E Shtun\\xeb\".split(\"_\"),weekdaysShort:\"Die_H\\xebn_Mar_M\\xebr_Enj_Pre_Sht\".split(\"_\"),weekdaysMin:\"D_H_Ma_M\\xeb_E_P_Sh\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/PD|MD/,isPM:function(e){return\"M\"===e.charAt(0)},meridiem:function(e,t,n){return e<12?\"PD\":\"MD\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Sot n\\xeb] LT\",nextDay:\"[Nes\\xebr n\\xeb] LT\",nextWeek:\"dddd [n\\xeb] LT\",lastDay:\"[Dje n\\xeb] LT\",lastWeek:\"dddd [e kaluar n\\xeb] LT\",sameElse:\"L\"},relativeTime:{future:\"n\\xeb %s\",past:\"%s m\\xeb par\\xeb\",s:\"disa sekonda\",ss:\"%d sekonda\",m:\"nj\\xeb minut\\xeb\",mm:\"%d minuta\",h:\"nj\\xeb or\\xeb\",hh:\"%d or\\xeb\",d:\"nj\\xeb dit\\xeb\",dd:\"%d dit\\xeb\",M:\"nj\\xeb muaj\",MM:\"%d muaj\",y:\"nj\\xeb vit\",yy:\"%d vite\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},z1FC:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={s:[\"viensas secunds\",\"'iensas secunds\"],ss:[e+\" secunds\",e+\" secunds\"],m:[\"'n m\\xedut\",\"'iens m\\xedut\"],mm:[e+\" m\\xeduts\",e+\" m\\xeduts\"],h:[\"'n \\xfeora\",\"'iensa \\xfeora\"],hh:[e+\" \\xfeoras\",e+\" \\xfeoras\"],d:[\"'n ziua\",\"'iensa ziua\"],dd:[e+\" ziuas\",e+\" ziuas\"],M:[\"'n mes\",\"'iens mes\"],MM:[e+\" mesen\",e+\" mesen\"],y:[\"'n ar\",\"'iens ar\"],yy:[e+\" ars\",e+\" ars\"]};return i||t?s[n][0]:s[n][1]}e.defineLocale(\"tzl\",{months:\"Januar_Fevraglh_Mar\\xe7_Avr\\xefu_Mai_G\\xfcn_Julia_Guscht_Setemvar_Listop\\xe4ts_Noemvar_Zecemvar\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Avr_Mai_G\\xfcn_Jul_Gus_Set_Lis_Noe_Zec\".split(\"_\"),weekdays:\"S\\xfaladi_L\\xfane\\xe7i_Maitzi_M\\xe1rcuri_Xh\\xfaadi_Vi\\xe9ner\\xe7i_S\\xe1turi\".split(\"_\"),weekdaysShort:\"S\\xfal_L\\xfan_Mai_M\\xe1r_Xh\\xfa_Vi\\xe9_S\\xe1t\".split(\"_\"),weekdaysMin:\"S\\xfa_L\\xfa_Ma_M\\xe1_Xh_Vi_S\\xe1\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM [dallas] YYYY\",LLL:\"D. MMMM [dallas] YYYY HH.mm\",LLLL:\"dddd, [li] D. MMMM [dallas] YYYY HH.mm\"},meridiemParse:/d\\'o|d\\'a/i,isPM:function(e){return\"d'o\"===e.toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"d'o\":\"D'O\":n?\"d'a\":\"D'A\"},calendar:{sameDay:\"[oxhi \\xe0] LT\",nextDay:\"[dem\\xe0 \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[ieiri \\xe0] LT\",lastWeek:\"[s\\xfcr el] dddd [lasteu \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"osprei %s\",past:\"ja%s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},z3Vd:function(e,t,n){!function(e){\"use strict\";var t=\"pagh_wa\\u2019_cha\\u2019_wej_loS_vagh_jav_Soch_chorgh_Hut\".split(\"_\");function n(e,n,i,s){var r=function(e){var n=Math.floor(e%1e3/100),i=Math.floor(e%100/10),s=e%10,r=\"\";return n>0&&(r+=t[n]+\"vatlh\"),i>0&&(r+=(\"\"!==r?\" \":\"\")+t[i]+\"maH\"),s>0&&(r+=(\"\"!==r?\" \":\"\")+t[s]),\"\"===r?\"pagh\":r}(e);switch(i){case\"ss\":return r+\" lup\";case\"mm\":return r+\" tup\";case\"hh\":return r+\" rep\";case\"dd\":return r+\" jaj\";case\"MM\":return r+\" jar\";case\"yy\":return r+\" DIS\"}}e.defineLocale(\"tlh\",{months:\"tera\\u2019 jar wa\\u2019_tera\\u2019 jar cha\\u2019_tera\\u2019 jar wej_tera\\u2019 jar loS_tera\\u2019 jar vagh_tera\\u2019 jar jav_tera\\u2019 jar Soch_tera\\u2019 jar chorgh_tera\\u2019 jar Hut_tera\\u2019 jar wa\\u2019maH_tera\\u2019 jar wa\\u2019maH wa\\u2019_tera\\u2019 jar wa\\u2019maH cha\\u2019\".split(\"_\"),monthsShort:\"jar wa\\u2019_jar cha\\u2019_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa\\u2019maH_jar wa\\u2019maH wa\\u2019_jar wa\\u2019maH cha\\u2019\".split(\"_\"),monthsParseExact:!0,weekdays:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysShort:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysMin:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[DaHjaj] LT\",nextDay:\"[wa\\u2019leS] LT\",nextWeek:\"LLL\",lastDay:\"[wa\\u2019Hu\\u2019] LT\",lastWeek:\"LLL\",sameElse:\"L\"},relativeTime:{future:function(e){var t=e;return-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"leS\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"waQ\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"nem\":t+\" pIq\"},past:function(e){var t=e;return-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"Hu\\u2019\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"wen\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"ben\":t+\" ret\"},s:\"puS lup\",ss:n,m:\"wa\\u2019 tup\",mm:n,h:\"wa\\u2019 rep\",hh:n,d:\"wa\\u2019 jaj\",dd:n,M:\"wa\\u2019 jar\",MM:n,y:\"wa\\u2019 DIS\",yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},zUnb:function(e,t,n){\"use strict\";function i(e){return\"function\"==typeof e}n.r(t);let s=!1;const r={Promise:void 0,set useDeprecatedSynchronousErrorHandling(e){if(e){const e=new Error;console.warn(\"DEPRECATED! RxJS was set to use deprecated synchronous error handling behavior by code at: \\n\"+e.stack)}else s&&console.log(\"RxJS: Back to a better error behavior. Thank you. <3\");s=e},get useDeprecatedSynchronousErrorHandling(){return s}};function o(e){setTimeout(()=>{throw e},0)}const a={closed:!0,next(e){},error(e){if(r.useDeprecatedSynchronousErrorHandling)throw e;o(e)},complete(){}},l=(()=>Array.isArray||(e=>e&&\"number\"==typeof e.length))();function c(e){return null!==e&&\"object\"==typeof e}const d=(()=>{function e(e){return Error.call(this),this.message=e?`${e.length} errors occurred during unsubscription:\\n${e.map((e,t)=>`${t+1}) ${e.toString()}`).join(\"\\n \")}`:\"\",this.name=\"UnsubscriptionError\",this.errors=e,this}return e.prototype=Object.create(Error.prototype),e})();let u=(()=>{class e{constructor(e){this.closed=!1,this._parentOrParents=null,this._subscriptions=null,e&&(this._unsubscribe=e)}unsubscribe(){let t;if(this.closed)return;let{_parentOrParents:n,_unsubscribe:s,_subscriptions:r}=this;if(this.closed=!0,this._parentOrParents=null,this._subscriptions=null,n instanceof e)n.remove(this);else if(null!==n)for(let e=0;ee.concat(t instanceof d?t.errors:t),[])}const m=(()=>\"function\"==typeof Symbol?Symbol(\"rxSubscriber\"):\"@@rxSubscriber_\"+Math.random())();class p extends u{constructor(e,t,n){switch(super(),this.syncErrorValue=null,this.syncErrorThrown=!1,this.syncErrorThrowable=!1,this.isStopped=!1,arguments.length){case 0:this.destination=a;break;case 1:if(!e){this.destination=a;break}if(\"object\"==typeof e){e instanceof p?(this.syncErrorThrowable=e.syncErrorThrowable,this.destination=e,e.add(this)):(this.syncErrorThrowable=!0,this.destination=new f(this,e));break}default:this.syncErrorThrowable=!0,this.destination=new f(this,e,t,n)}}[m](){return this}static create(e,t,n){const i=new p(e,t,n);return i.syncErrorThrowable=!1,i}next(e){this.isStopped||this._next(e)}error(e){this.isStopped||(this.isStopped=!0,this._error(e))}complete(){this.isStopped||(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe())}_next(e){this.destination.next(e)}_error(e){this.destination.error(e),this.unsubscribe()}_complete(){this.destination.complete(),this.unsubscribe()}_unsubscribeAndRecycle(){const{_parentOrParents:e}=this;return this._parentOrParents=null,this.unsubscribe(),this.closed=!1,this.isStopped=!1,this._parentOrParents=e,this}}class f extends p{constructor(e,t,n,s){let r;super(),this._parentSubscriber=e;let o=this;i(t)?r=t:t&&(r=t.next,n=t.error,s=t.complete,t!==a&&(o=Object.create(t),i(o.unsubscribe)&&this.add(o.unsubscribe.bind(o)),o.unsubscribe=this.unsubscribe.bind(this))),this._context=o,this._next=r,this._error=n,this._complete=s}next(e){if(!this.isStopped&&this._next){const{_parentSubscriber:t}=this;r.useDeprecatedSynchronousErrorHandling&&t.syncErrorThrowable?this.__tryOrSetError(t,this._next,e)&&this.unsubscribe():this.__tryOrUnsub(this._next,e)}}error(e){if(!this.isStopped){const{_parentSubscriber:t}=this,{useDeprecatedSynchronousErrorHandling:n}=r;if(this._error)n&&t.syncErrorThrowable?(this.__tryOrSetError(t,this._error,e),this.unsubscribe()):(this.__tryOrUnsub(this._error,e),this.unsubscribe());else if(t.syncErrorThrowable)n?(t.syncErrorValue=e,t.syncErrorThrown=!0):o(e),this.unsubscribe();else{if(this.unsubscribe(),n)throw e;o(e)}}}complete(){if(!this.isStopped){const{_parentSubscriber:e}=this;if(this._complete){const t=()=>this._complete.call(this._context);r.useDeprecatedSynchronousErrorHandling&&e.syncErrorThrowable?(this.__tryOrSetError(e,t),this.unsubscribe()):(this.__tryOrUnsub(t),this.unsubscribe())}else this.unsubscribe()}}__tryOrUnsub(e,t){try{e.call(this._context,t)}catch(n){if(this.unsubscribe(),r.useDeprecatedSynchronousErrorHandling)throw n;o(n)}}__tryOrSetError(e,t,n){if(!r.useDeprecatedSynchronousErrorHandling)throw new Error(\"bad call\");try{t.call(this._context,n)}catch(i){return r.useDeprecatedSynchronousErrorHandling?(e.syncErrorValue=i,e.syncErrorThrown=!0,!0):(o(i),!0)}return!1}_unsubscribe(){const{_parentSubscriber:e}=this;this._context=null,this._parentSubscriber=null,e.unsubscribe()}}const _=(()=>\"function\"==typeof Symbol&&Symbol.observable||\"@@observable\")();function g(){}function y(...e){return b(e)}function b(e){return e?1===e.length?e[0]:function(t){return e.reduce((e,t)=>t(e),t)}:g}let v=(()=>{class e{constructor(e){this._isScalar=!1,e&&(this._subscribe=e)}lift(t){const n=new e;return n.source=this,n.operator=t,n}subscribe(e,t,n){const{operator:i}=this,s=function(e,t,n){if(e){if(e instanceof p)return e;if(e[m])return e[m]()}return e||t||n?new p(e,t,n):new p(a)}(e,t,n);if(s.add(i?i.call(s,this.source):this.source||r.useDeprecatedSynchronousErrorHandling&&!s.syncErrorThrowable?this._subscribe(s):this._trySubscribe(s)),r.useDeprecatedSynchronousErrorHandling&&s.syncErrorThrowable&&(s.syncErrorThrowable=!1,s.syncErrorThrown))throw s.syncErrorValue;return s}_trySubscribe(e){try{return this._subscribe(e)}catch(t){r.useDeprecatedSynchronousErrorHandling&&(e.syncErrorThrown=!0,e.syncErrorValue=t),function(e){for(;e;){const{closed:t,destination:n,isStopped:i}=e;if(t||i)return!1;e=n&&n instanceof p?n:null}return!0}(e)?e.error(t):console.warn(t)}}forEach(e,t){return new(t=w(t))((t,n)=>{let i;i=this.subscribe(t=>{try{e(t)}catch(s){n(s),i&&i.unsubscribe()}},n,t)})}_subscribe(e){const{source:t}=this;return t&&t.subscribe(e)}[_](){return this}pipe(...e){return 0===e.length?this:b(e)(this)}toPromise(e){return new(e=w(e))((e,t)=>{let n;this.subscribe(e=>n=e,e=>t(e),()=>e(n))})}}return e.create=t=>new e(t),e})();function w(e){if(e||(e=r.Promise||Promise),!e)throw new Error(\"no Promise impl found\");return e}const M=(()=>{function e(){return Error.call(this),this.message=\"object unsubscribed\",this.name=\"ObjectUnsubscribedError\",this}return e.prototype=Object.create(Error.prototype),e})();class k extends u{constructor(e,t){super(),this.subject=e,this.subscriber=t,this.closed=!1}unsubscribe(){if(this.closed)return;this.closed=!0;const e=this.subject,t=e.observers;if(this.subject=null,!t||0===t.length||e.isStopped||e.closed)return;const n=t.indexOf(this.subscriber);-1!==n&&t.splice(n,1)}}class S extends p{constructor(e){super(e),this.destination=e}}let L=(()=>{class e extends v{constructor(){super(),this.observers=[],this.closed=!1,this.isStopped=!1,this.hasError=!1,this.thrownError=null}[m](){return new S(this)}lift(e){const t=new x(this,this);return t.operator=e,t}next(e){if(this.closed)throw new M;if(!this.isStopped){const{observers:t}=this,n=t.length,i=t.slice();for(let s=0;snew x(e,t),e})();class x extends L{constructor(e,t){super(),this.destination=e,this.source=t}next(e){const{destination:t}=this;t&&t.next&&t.next(e)}error(e){const{destination:t}=this;t&&t.error&&this.destination.error(e)}complete(){const{destination:e}=this;e&&e.complete&&this.destination.complete()}_subscribe(e){const{source:t}=this;return t?this.source.subscribe(e):u.EMPTY}}function C(e){return e&&\"function\"==typeof e.schedule}class T extends p{constructor(e,t,n){super(),this.parent=e,this.outerValue=t,this.outerIndex=n,this.index=0}_next(e){this.parent.notifyNext(this.outerValue,e,this.outerIndex,this.index++,this)}_error(e){this.parent.notifyError(e,this),this.unsubscribe()}_complete(){this.parent.notifyComplete(this),this.unsubscribe()}}const D=e=>t=>{for(let n=0,i=e.length;ne&&\"number\"==typeof e.length&&\"function\"!=typeof e;function I(e){return!!e&&\"function\"!=typeof e.subscribe&&\"function\"==typeof e.then}const P=e=>{if(e&&\"function\"==typeof e[_])return i=e,e=>{const t=i[_]();if(\"function\"!=typeof t.subscribe)throw new TypeError(\"Provided object does not correctly implement Symbol.observable\");return t.subscribe(e)};if(O(e))return D(e);if(I(e))return n=e,e=>(n.then(t=>{e.closed||(e.next(t),e.complete())},t=>e.error(t)).then(null,o),e);if(e&&\"function\"==typeof e[E])return t=e,e=>{const n=t[E]();for(;;){const t=n.next();if(t.done){e.complete();break}if(e.next(t.value),e.closed)break}return\"function\"==typeof n.return&&e.add(()=>{n.return&&n.return()}),e};{const t=c(e)?\"an invalid object\":`'${e}'`;throw new TypeError(`You provided ${t} where a stream was expected.`+\" You can provide an Observable, Promise, Array, or Iterable.\")}var t,n,i};function A(e,t,n,i,s=new T(e,n,i)){if(!s.closed)return t instanceof v?t.subscribe(s):P(t)(s)}class R extends p{notifyNext(e,t,n,i,s){this.destination.next(t)}notifyError(e,t){this.destination.error(e)}notifyComplete(e){this.destination.complete()}}function H(e,t){return function(n){if(\"function\"!=typeof e)throw new TypeError(\"argument is not a function. Are you looking for `mapTo()`?\");return n.lift(new j(e,t))}}class j{constructor(e,t){this.project=e,this.thisArg=t}call(e,t){return t.subscribe(new F(e,this.project,this.thisArg))}}class F extends p{constructor(e,t,n){super(e),this.project=t,this.count=0,this.thisArg=n||this}_next(e){let t;try{t=this.project.call(this.thisArg,e,this.count++)}catch(n){return void this.destination.error(n)}this.destination.next(t)}}function N(e,t){return new v(n=>{const i=new u;let s=0;return i.add(t.schedule((function(){s!==e.length?(n.next(e[s++]),n.closed||i.add(this.schedule())):n.complete()}))),i})}function z(e,t){return t?function(e,t){if(null!=e){if(function(e){return e&&\"function\"==typeof e[_]}(e))return function(e,t){return new v(n=>{const i=new u;return i.add(t.schedule(()=>{const s=e[_]();i.add(s.subscribe({next(e){i.add(t.schedule(()=>n.next(e)))},error(e){i.add(t.schedule(()=>n.error(e)))},complete(){i.add(t.schedule(()=>n.complete()))}}))})),i})}(e,t);if(I(e))return function(e,t){return new v(n=>{const i=new u;return i.add(t.schedule(()=>e.then(e=>{i.add(t.schedule(()=>{n.next(e),i.add(t.schedule(()=>n.complete()))}))},e=>{i.add(t.schedule(()=>n.error(e)))}))),i})}(e,t);if(O(e))return N(e,t);if(function(e){return e&&\"function\"==typeof e[E]}(e)||\"string\"==typeof e)return function(e,t){if(!e)throw new Error(\"Iterable cannot be null\");return new v(n=>{const i=new u;let s;return i.add(()=>{s&&\"function\"==typeof s.return&&s.return()}),i.add(t.schedule(()=>{s=e[E](),i.add(t.schedule((function(){if(n.closed)return;let e,t;try{const n=s.next();e=n.value,t=n.done}catch(i){return void n.error(i)}t?n.complete():(n.next(e),this.schedule())})))})),i})}(e,t)}throw new TypeError((null!==e&&typeof e||e)+\" is not observable\")}(e,t):e instanceof v?e:new v(P(e))}function V(e,t,n=Number.POSITIVE_INFINITY){return\"function\"==typeof t?i=>i.pipe(V((n,i)=>z(e(n,i)).pipe(H((e,s)=>t(n,e,i,s))),n)):(\"number\"==typeof t&&(n=t),t=>t.lift(new W(e,n)))}class W{constructor(e,t=Number.POSITIVE_INFINITY){this.project=e,this.concurrent=t}call(e,t){return t.subscribe(new U(e,this.project,this.concurrent))}}class U extends R{constructor(e,t,n=Number.POSITIVE_INFINITY){super(e),this.project=t,this.concurrent=n,this.hasCompleted=!1,this.buffer=[],this.active=0,this.index=0}_next(e){this.active0?this._next(t.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()}}function $(e){return e}function B(e=Number.POSITIVE_INFINITY){return V($,e)}function q(e,t){return t?N(e,t):new v(D(e))}function G(...e){let t=Number.POSITIVE_INFINITY,n=null,i=e[e.length-1];return C(i)?(n=e.pop(),e.length>1&&\"number\"==typeof e[e.length-1]&&(t=e.pop())):\"number\"==typeof i&&(t=e.pop()),null===n&&1===e.length&&e[0]instanceof v?e[0]:B(t)(q(e,n))}function J(){return function(e){return e.lift(new K(e))}}class K{constructor(e){this.connectable=e}call(e,t){const{connectable:n}=this;n._refCount++;const i=new Z(e,n),s=t.subscribe(i);return i.closed||(i.connection=n.connect()),s}}class Z extends p{constructor(e,t){super(e),this.connectable=t}_unsubscribe(){const{connectable:e}=this;if(!e)return void(this.connection=null);this.connectable=null;const t=e._refCount;if(t<=0)return void(this.connection=null);if(e._refCount=t-1,t>1)return void(this.connection=null);const{connection:n}=this,i=e._connection;this.connection=null,!i||n&&i!==n||i.unsubscribe()}}class Q extends v{constructor(e,t){super(),this.source=e,this.subjectFactory=t,this._refCount=0,this._isComplete=!1}_subscribe(e){return this.getSubject().subscribe(e)}getSubject(){const e=this._subject;return e&&!e.isStopped||(this._subject=this.subjectFactory()),this._subject}connect(){let e=this._connection;return e||(this._isComplete=!1,e=this._connection=new u,e.add(this.source.subscribe(new ee(this.getSubject(),this))),e.closed&&(this._connection=null,e=u.EMPTY)),e}refCount(){return J()(this)}}const X=(()=>{const e=Q.prototype;return{operator:{value:null},_refCount:{value:0,writable:!0},_subject:{value:null,writable:!0},_connection:{value:null,writable:!0},_subscribe:{value:e._subscribe},_isComplete:{value:e._isComplete,writable:!0},getSubject:{value:e.getSubject},connect:{value:e.connect},refCount:{value:e.refCount}}})();class ee extends S{constructor(e,t){super(e),this.connectable=t}_error(e){this._unsubscribe(),super._error(e)}_complete(){this.connectable._isComplete=!0,this._unsubscribe(),super._complete()}_unsubscribe(){const e=this.connectable;if(e){this.connectable=null;const t=e._connection;e._refCount=0,e._subject=null,e._connection=null,t&&t.unsubscribe()}}}function te(e,t){return function(n){let i;if(i=\"function\"==typeof e?e:function(){return e},\"function\"==typeof t)return n.lift(new ne(i,t));const s=Object.create(n,X);return s.source=n,s.subjectFactory=i,s}}class ne{constructor(e,t){this.subjectFactory=e,this.selector=t}call(e,t){const{selector:n}=this,i=this.subjectFactory(),s=n(i).subscribe(e);return s.add(t.subscribe(i)),s}}function ie(){return new L}function se(){return e=>J()(te(ie)(e))}function re(e){return{toString:e}.toString()}function oe(e,t,n){return re(()=>{const i=function(e){return function(...t){if(e){const n=e(...t);for(const e in n)this[e]=n[e]}}}(t);function s(...e){if(this instanceof s)return i.apply(this,e),this;const t=new s(...e);return n.annotation=t,n;function n(e,n,i){const s=e.hasOwnProperty(\"__parameters__\")?e.__parameters__:Object.defineProperty(e,\"__parameters__\",{value:[]}).__parameters__;for(;s.length<=i;)s.push(null);return(s[i]=s[i]||[]).push(t),e}}return n&&(s.prototype=Object.create(n.prototype)),s.prototype.ngMetadataName=e,s.annotationCls=s,s})}const ae=oe(\"Inject\",e=>({token:e})),le=oe(\"Optional\"),ce=oe(\"Self\"),de=oe(\"SkipSelf\");var ue=function(e){return e[e.Default=0]=\"Default\",e[e.Host=1]=\"Host\",e[e.Self=2]=\"Self\",e[e.SkipSelf=4]=\"SkipSelf\",e[e.Optional=8]=\"Optional\",e}({});function he(e){for(let t in e)if(e[t]===he)return t;throw Error(\"Could not find renamed property on target object.\")}function me(e,t){for(const n in t)t.hasOwnProperty(n)&&!e.hasOwnProperty(n)&&(e[n]=t[n])}function pe(e){return{token:e.token,providedIn:e.providedIn||null,factory:e.factory,value:void 0}}function fe(e){return{factory:e.factory,providers:e.providers||[],imports:e.imports||[]}}function _e(e){return ge(e,e[be])||ge(e,e[Me])}function ge(e,t){return t&&t.token===e?t:null}function ye(e){return e&&(e.hasOwnProperty(ve)||e.hasOwnProperty(ke))?e[ve]:null}const be=he({\"\\u0275prov\":he}),ve=he({\"\\u0275inj\":he}),we=he({\"\\u0275provFallback\":he}),Me=he({ngInjectableDef:he}),ke=he({ngInjectorDef:he});function Se(e){if(\"string\"==typeof e)return e;if(Array.isArray(e))return\"[\"+e.map(Se).join(\", \")+\"]\";if(null==e)return\"\"+e;if(e.overriddenName)return`${e.overriddenName}`;if(e.name)return`${e.name}`;const t=e.toString();if(null==t)return\"\"+t;const n=t.indexOf(\"\\n\");return-1===n?t:t.substring(0,n)}function Le(e,t){return null==e||\"\"===e?null===t?\"\":t:null==t||\"\"===t?e:e+\" \"+t}const xe=he({__forward_ref__:he});function Ce(e){return e.__forward_ref__=Ce,e.toString=function(){return Se(this())},e}function Te(e){return De(e)?e():e}function De(e){return\"function\"==typeof e&&e.hasOwnProperty(xe)&&e.__forward_ref__===Ce}const Ye=\"undefined\"!=typeof globalThis&&globalThis,Ee=\"undefined\"!=typeof window&&window,Oe=\"undefined\"!=typeof self&&\"undefined\"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&self,Ie=\"undefined\"!=typeof global&&global,Pe=Ye||Ie||Ee||Oe,Ae=he({\"\\u0275cmp\":he}),Re=he({\"\\u0275dir\":he}),He=he({\"\\u0275pipe\":he}),je=he({\"\\u0275mod\":he}),Fe=he({\"\\u0275loc\":he}),Ne=he({\"\\u0275fac\":he}),ze=he({__NG_ELEMENT_ID__:he});class Ve{constructor(e,t){this._desc=e,this.ngMetadataName=\"InjectionToken\",this.\\u0275prov=void 0,\"number\"==typeof t?this.__NG_ELEMENT_ID__=t:void 0!==t&&(this.\\u0275prov=pe({token:this,providedIn:t.providedIn||\"root\",factory:t.factory}))}toString(){return`InjectionToken ${this._desc}`}}const We=new Ve(\"INJECTOR\",-1),Ue={},$e=/\\n/gm,Be=he({provide:String,useValue:he});let qe,Ge=void 0;function Je(e){const t=Ge;return Ge=e,t}function Ke(e){const t=qe;return qe=e,t}function Ze(e,t=ue.Default){if(void 0===Ge)throw new Error(\"inject() must be called from an injection context\");return null===Ge?et(e,void 0,t):Ge.get(e,t&ue.Optional?null:void 0,t)}function Qe(e,t=ue.Default){return(qe||Ze)(Te(e),t)}const Xe=Qe;function et(e,t,n){const i=_e(e);if(i&&\"root\"==i.providedIn)return void 0===i.value?i.value=i.factory():i.value;if(n&ue.Optional)return null;if(void 0!==t)return t;throw new Error(`Injector: NOT_FOUND [${Se(e)}]`)}function tt(e){const t=[];for(let n=0;nArray.isArray(e)?ot(e,t):t(e))}function at(e,t,n){t>=e.length?e.push(n):e.splice(t,0,n)}function lt(e,t){return t>=e.length-1?e.pop():e.splice(t,1)[0]}function ct(e,t){const n=[];for(let i=0;i=0?e[1|i]=n:(i=~i,function(e,t,n,i){let s=e.length;if(s==t)e.push(n,i);else if(1===s)e.push(i,e[0]),e[0]=n;else{for(s--,e.push(e[s-1],e[s]);s>t;)e[s]=e[s-2],s--;e[t]=n,e[t+1]=i}}(e,i,t,n)),i}function ut(e,t){const n=ht(e,t);if(n>=0)return e[1|n]}function ht(e,t){return function(e,t,n){let i=0,s=e.length>>1;for(;s!==i;){const n=i+(s-i>>1),r=e[n<<1];if(t===r)return n<<1;r>t?s=n:i=n+1}return~(s<<1)}(e,t)}const mt=function(){var e={OnPush:0,Default:1};return e[e.OnPush]=\"OnPush\",e[e.Default]=\"Default\",e}(),pt=function(){var e={Emulated:0,Native:1,None:2,ShadowDom:3};return e[e.Emulated]=\"Emulated\",e[e.Native]=\"Native\",e[e.None]=\"None\",e[e.ShadowDom]=\"ShadowDom\",e}(),ft={},_t=[];let gt=0;function yt(e){return re(()=>{const t=e.type,n=t.prototype,i={},s={type:t,providersResolver:null,decls:e.decls,vars:e.vars,factory:null,template:e.template||null,consts:e.consts||null,ngContentSelectors:e.ngContentSelectors,hostBindings:e.hostBindings||null,hostVars:e.hostVars||0,hostAttrs:e.hostAttrs||null,contentQueries:e.contentQueries||null,declaredInputs:i,inputs:null,outputs:null,exportAs:e.exportAs||null,onChanges:null,onInit:n.ngOnInit||null,doCheck:n.ngDoCheck||null,afterContentInit:n.ngAfterContentInit||null,afterContentChecked:n.ngAfterContentChecked||null,afterViewInit:n.ngAfterViewInit||null,afterViewChecked:n.ngAfterViewChecked||null,onDestroy:n.ngOnDestroy||null,onPush:e.changeDetection===mt.OnPush,directiveDefs:null,pipeDefs:null,selectors:e.selectors||_t,viewQuery:e.viewQuery||null,features:e.features||null,data:e.data||{},encapsulation:e.encapsulation||pt.Emulated,id:\"c\",styles:e.styles||_t,_:null,setInput:null,schemas:e.schemas||null,tView:null},r=e.directives,o=e.features,a=e.pipes;return s.id+=gt++,s.inputs=kt(e.inputs,i),s.outputs=kt(e.outputs),o&&o.forEach(e=>e(s)),s.directiveDefs=r?()=>(\"function\"==typeof r?r():r).map(bt):null,s.pipeDefs=a?()=>(\"function\"==typeof a?a():a).map(vt):null,s})}function bt(e){return Lt(e)||function(e){return e[Re]||null}(e)}function vt(e){return function(e){return e[He]||null}(e)}const wt={};function Mt(e){const t={type:e.type,bootstrap:e.bootstrap||_t,declarations:e.declarations||_t,imports:e.imports||_t,exports:e.exports||_t,transitiveCompileScopes:null,schemas:e.schemas||null,id:e.id||null};return null!=e.id&&re(()=>{wt[e.id]=e.type}),t}function kt(e,t){if(null==e)return ft;const n={};for(const i in e)if(e.hasOwnProperty(i)){let s=e[i],r=s;Array.isArray(s)&&(r=s[1],s=s[0]),n[s]=i,t&&(t[s]=r)}return n}const St=yt;function Lt(e){return e[Ae]||null}function xt(e,t){return e.hasOwnProperty(Ne)?e[Ne]:null}function Ct(e,t){const n=e[je]||null;if(!n&&!0===t)throw new Error(`Type ${Se(e)} does not have '\\u0275mod' property.`);return n}function Tt(e){return Array.isArray(e)&&\"object\"==typeof e[1]}function Dt(e){return Array.isArray(e)&&!0===e[1]}function Yt(e){return 0!=(8&e.flags)}function Et(e){return 2==(2&e.flags)}function Ot(e){return 1==(1&e.flags)}function It(e){return null!==e.template}function Pt(e){return 0!=(512&e[2])}let At=void 0;function Rt(){return void 0!==At?At:\"undefined\"!=typeof document?document:void 0}function Ht(e){return!!e.listen}const jt={createRenderer:(e,t)=>Rt()};function Ft(e){for(;Array.isArray(e);)e=e[0];return e}function Nt(e,t){return Ft(t[e+19])}function zt(e,t){return Ft(t[e.index])}function Vt(e,t){return e.data[t+19]}function Wt(e,t){return e[t+19]}function Ut(e,t){const n=t[e];return Tt(n)?n:n[0]}function $t(e){const t=function(e){return e.__ngContext__||null}(e);return t?Array.isArray(t)?t:t.lView:null}function Bt(e){return 4==(4&e[2])}function qt(e){return 128==(128&e[2])}function Gt(e,t){return null===e||null==t?null:e[t]}function Jt(e){e[18]=0}const Kt={lFrame:_n(null),bindingsEnabled:!0,checkNoChangesMode:!1};function Zt(){return Kt.bindingsEnabled}function Qt(){return Kt.lFrame.lView}function Xt(){return Kt.lFrame.tView}function en(e){Kt.lFrame.contextLView=e}function tn(){return Kt.lFrame.previousOrParentTNode}function nn(e,t){Kt.lFrame.previousOrParentTNode=e,Kt.lFrame.isParent=t}function sn(){return Kt.lFrame.isParent}function rn(){Kt.lFrame.isParent=!1}function on(){return Kt.checkNoChangesMode}function an(e){Kt.checkNoChangesMode=e}function ln(){return Kt.lFrame.bindingIndex++}function cn(e){const t=Kt.lFrame,n=t.bindingIndex;return t.bindingIndex=t.bindingIndex+e,n}function dn(e,t){const n=Kt.lFrame;n.bindingIndex=n.bindingRootIndex=e,n.currentDirectiveIndex=t}function un(){return Kt.lFrame.currentQueryIndex}function hn(e){Kt.lFrame.currentQueryIndex=e}function mn(e,t){const n=fn();Kt.lFrame=n,n.previousOrParentTNode=t,n.lView=e}function pn(e,t){const n=fn(),i=e[1];Kt.lFrame=n,n.previousOrParentTNode=t,n.lView=e,n.tView=i,n.contextLView=e,n.bindingIndex=i.bindingStartIndex}function fn(){const e=Kt.lFrame,t=null===e?null:e.child;return null===t?_n(e):t}function _n(e){const t={previousOrParentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:0,contextLView:null,elementDepthCount:0,currentNamespace:null,currentSanitizer:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:e,child:null};return null!==e&&(e.child=t),t}function gn(){const e=Kt.lFrame;return Kt.lFrame=e.parent,e.previousOrParentTNode=null,e.lView=null,e}const yn=gn;function bn(){const e=gn();e.isParent=!0,e.tView=null,e.selectedIndex=0,e.contextLView=null,e.elementDepthCount=0,e.currentDirectiveIndex=-1,e.currentNamespace=null,e.currentSanitizer=null,e.bindingRootIndex=-1,e.bindingIndex=-1,e.currentQueryIndex=0}function vn(){return Kt.lFrame.selectedIndex}function wn(e){Kt.lFrame.selectedIndex=e}function Mn(){const e=Kt.lFrame;return Vt(e.tView,e.selectedIndex)}function kn(){Kt.lFrame.currentNamespace=\"http://www.w3.org/2000/svg\"}function Sn(){Kt.lFrame.currentNamespace=null}function Ln(e,t){for(let n=t.directiveStart,i=t.directiveEnd;n=i)break}else t[o]<0&&(e[18]+=65536),(r>10>16&&(3&e[2])===t&&(e[2]+=1024,r.call(o)):r.call(o)}class En{constructor(e,t,n){this.factory=e,this.resolving=!1,this.canSeeViewProviders=t,this.injectImpl=n}}function On(e,t,n){const i=Ht(e);let s=0;for(;st){o=r-1;break}}}for(;r>16}function Nn(e,t){let n=Fn(e),i=t;for(;n>0;)i=i[15],n--;return i}function zn(e){return\"string\"==typeof e?e:null==e?\"\":\"\"+e}function Vn(e){return\"function\"==typeof e?e.name||e.toString():\"object\"==typeof e&&null!=e&&\"function\"==typeof e.type?e.type.name||e.type.toString():zn(e)}const Wn=(()=>(\"undefined\"!=typeof requestAnimationFrame&&requestAnimationFrame||setTimeout).bind(Pe))();function Un(e){return{name:\"window\",target:e.ownerDocument.defaultView}}function $n(e){return e instanceof Function?e():e}let Bn=!0;function qn(e){const t=Bn;return Bn=e,t}let Gn=0;function Jn(e,t){const n=Zn(e,t);if(-1!==n)return n;const i=t[1];i.firstCreatePass&&(e.injectorIndex=t.length,Kn(i.data,e),Kn(t,null),Kn(i.blueprint,null));const s=Qn(e,t),r=e.injectorIndex;if(Hn(s)){const e=jn(s),n=Nn(s,t),i=n[1].data;for(let s=0;s<8;s++)t[r+s]=n[e+s]|i[e+s]}return t[r+8]=s,r}function Kn(e,t){e.push(0,0,0,0,0,0,0,0,t)}function Zn(e,t){return-1===e.injectorIndex||e.parent&&e.parent.injectorIndex===e.injectorIndex||null==t[e.injectorIndex+8]?-1:e.injectorIndex}function Qn(e,t){if(e.parent&&-1!==e.parent.injectorIndex)return e.parent.injectorIndex;let n=t[6],i=1;for(;n&&-1===n.injectorIndex;)n=(t=t[15])?t[6]:null,i++;return n?n.injectorIndex|i<<16:-1}function Xn(e,t,n){!function(e,t,n){let i=\"string\"!=typeof n?n[ze]:n.charCodeAt(0)||0;null==i&&(i=n[ze]=Gn++);const s=255&i,r=1<0?255&t:t}(n);if(\"function\"==typeof s){mn(t,e);try{const e=s();if(null!=e||i&ue.Optional)return e;throw new Error(`No provider for ${Vn(n)}!`)}finally{yn()}}else if(\"number\"==typeof s){if(-1===s)return new ai(e,t);let r=null,o=Zn(e,t),a=-1,l=i&ue.Host?t[16][6]:null;for((-1===o||i&ue.SkipSelf)&&(a=-1===o?Qn(e,t):t[o+8],oi(i,!1)?(r=t[1],o=jn(a),t=Nn(a,t)):o=-1);-1!==o;){a=t[o+8];const e=t[1];if(ri(s,o,e.data)){const e=ni(o,t,n,r,i,l);if(e!==ti)return e}oi(i,t[1].data[o+8]===l)&&ri(s,o,t)?(r=e,o=jn(a),t=Nn(a,t)):o=-1}}}if(i&ue.Optional&&void 0===s&&(s=null),0==(i&(ue.Self|ue.Host))){const e=t[9],r=Ke(void 0);try{return e?e.get(n,s,i&ue.Optional):et(n,s,i&ue.Optional)}finally{Ke(r)}}if(i&ue.Optional)return s;throw new Error(`NodeInjector: NOT_FOUND [${Vn(n)}]`)}const ti={};function ni(e,t,n,i,s,r){const o=t[1],a=o.data[e+8],l=ii(a,o,n,null==i?Et(a)&&Bn:i!=o&&3===a.type,s&ue.Host&&r===a);return null!==l?si(t,o,l,a):ti}function ii(e,t,n,i,s){const r=e.providerIndexes,o=t.data,a=65535&r,l=e.directiveStart,c=r>>16,d=s?a+c:e.directiveEnd;for(let u=i?a:a+c;u=l&&e.type===n)return u}if(s){const e=o[l];if(e&&It(e)&&e.type===n)return l}return null}function si(e,t,n,i){let s=e[n];const r=t.data;if(s instanceof En){const o=s;if(o.resolving)throw new Error(`Circular dep for ${Vn(r[n])}`);const a=qn(o.canSeeViewProviders);let l;o.resolving=!0,o.injectImpl&&(l=Ke(o.injectImpl)),mn(e,i);try{s=e[n]=o.factory(void 0,r,e,i),t.firstCreatePass&&n>=i.directiveStart&&function(e,t,n){const{onChanges:i,onInit:s,doCheck:r}=t;i&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,i),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,i)),s&&(n.preOrderHooks||(n.preOrderHooks=[])).push(-e,s),r&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,r),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,r))}(n,r[n],t)}finally{o.injectImpl&&Ke(l),qn(a),o.resolving=!1,yn()}}return s}function ri(e,t,n){const i=64&e,s=32&e;let r;return r=128&e?i?s?n[t+7]:n[t+6]:s?n[t+5]:n[t+4]:i?s?n[t+3]:n[t+2]:s?n[t+1]:n[t],!!(r&1<{const t=Object.getPrototypeOf(e.prototype).constructor,n=t[Ne]||function e(t){const n=t;if(De(t))return()=>{const t=e(Te(n));return t?t():null};let i=xt(n);if(null===i){const e=ye(n);i=e&&e.factory}return i||null}(t);return null!==n?n:e=>new e})}function ci(e){return e.ngDebugContext}function di(e){return e.ngOriginalError}function ui(e,...t){e.error(...t)}class hi{constructor(){this._console=console}handleError(e){const t=this._findOriginalError(e),n=this._findContext(e),i=function(e){return e.ngErrorLogger||ui}(e);i(this._console,\"ERROR\",e),t&&i(this._console,\"ORIGINAL ERROR\",t),n&&i(this._console,\"ERROR CONTEXT\",n)}_findContext(e){return e?ci(e)?ci(e):this._findContext(di(e)):null}_findOriginalError(e){let t=di(e);for(;t&&di(t);)t=di(t);return t}}class mi{constructor(e){this.changingThisBreaksApplicationSecurity=e}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity}`+\" (see http://g.co/ng/security#xss)\"}}class pi extends mi{getTypeName(){return\"HTML\"}}class fi extends mi{getTypeName(){return\"Style\"}}class _i extends mi{getTypeName(){return\"Script\"}}class gi extends mi{getTypeName(){return\"URL\"}}class yi extends mi{getTypeName(){return\"ResourceURL\"}}function bi(e){return e instanceof mi?e.changingThisBreaksApplicationSecurity:e}function vi(e,t){const n=wi(e);if(null!=n&&n!==t){if(\"ResourceURL\"===n&&\"URL\"===t)return!0;throw new Error(`Required a safe ${t}, got a ${n} (see http://g.co/ng/security#xss)`)}return n===t}function wi(e){return e instanceof mi&&e.getTypeName()||null}let Mi=!0,ki=!1;function Si(){return ki=!0,Mi}class Li{constructor(e){this.defaultDoc=e,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument(\"sanitization-inert\");let t=this.inertDocument.body;if(null==t){const e=this.inertDocument.createElement(\"html\");this.inertDocument.appendChild(e),t=this.inertDocument.createElement(\"body\"),e.appendChild(t)}t.innerHTML='',!t.querySelector||t.querySelector(\"svg\")?(t.innerHTML='

',this.getInertBodyElement=t.querySelector&&t.querySelector(\"svg img\")&&function(){try{return!!window.DOMParser}catch(e){return!1}}()?this.getInertBodyElement_DOMParser:this.getInertBodyElement_InertDocument):this.getInertBodyElement=this.getInertBodyElement_XHR}getInertBodyElement_XHR(e){e=\"\"+e+\"\";try{e=encodeURI(e)}catch(i){return null}const t=new XMLHttpRequest;t.responseType=\"document\",t.open(\"GET\",\"data:text/html;charset=utf-8,\"+e,!1),t.send(void 0);const n=t.response.body;return n.removeChild(n.firstChild),n}getInertBodyElement_DOMParser(e){e=\"\"+e+\"\";try{const t=(new window.DOMParser).parseFromString(e,\"text/html\").body;return t.removeChild(t.firstChild),t}catch(t){return null}}getInertBodyElement_InertDocument(e){const t=this.inertDocument.createElement(\"template\");if(\"content\"in t)return t.innerHTML=e,t;const n=this.inertDocument.createElement(\"body\");return n.innerHTML=e,this.defaultDoc.documentMode&&this.stripCustomNsAttrs(n),n}stripCustomNsAttrs(e){const t=e.attributes;for(let i=t.length-1;0Ti(e.trim())).join(\", \")}function Yi(e){const t={};for(const n of e.split(\",\"))t[n]=!0;return t}function Ei(...e){const t={};for(const n of e)for(const e in n)n.hasOwnProperty(e)&&(t[e]=!0);return t}const Oi=Yi(\"area,br,col,hr,img,wbr\"),Ii=Yi(\"colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr\"),Pi=Yi(\"rp,rt\"),Ai=Ei(Pi,Ii),Ri=Ei(Oi,Ei(Ii,Yi(\"address,article,aside,blockquote,caption,center,del,details,dialog,dir,div,dl,figure,figcaption,footer,h1,h2,h3,h4,h5,h6,header,hgroup,hr,ins,main,map,menu,nav,ol,pre,section,summary,table,ul\")),Ei(Pi,Yi(\"a,abbr,acronym,audio,b,bdi,bdo,big,br,cite,code,del,dfn,em,font,i,img,ins,kbd,label,map,mark,picture,q,ruby,rp,rt,s,samp,small,source,span,strike,strong,sub,sup,time,track,tt,u,var,video\")),Ai),Hi=Yi(\"background,cite,href,itemtype,longdesc,poster,src,xlink:href\"),ji=Yi(\"srcset\"),Fi=Ei(Hi,ji,Yi(\"abbr,accesskey,align,alt,autoplay,axis,bgcolor,border,cellpadding,cellspacing,class,clear,color,cols,colspan,compact,controls,coords,datetime,default,dir,download,face,headers,height,hidden,hreflang,hspace,ismap,itemscope,itemprop,kind,label,lang,language,loop,media,muted,nohref,nowrap,open,preload,rel,rev,role,rows,rowspan,rules,scope,scrolling,shape,size,sizes,span,srclang,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width\"),Yi(\"aria-activedescendant,aria-atomic,aria-autocomplete,aria-busy,aria-checked,aria-colcount,aria-colindex,aria-colspan,aria-controls,aria-current,aria-describedby,aria-details,aria-disabled,aria-dropeffect,aria-errormessage,aria-expanded,aria-flowto,aria-grabbed,aria-haspopup,aria-hidden,aria-invalid,aria-keyshortcuts,aria-label,aria-labelledby,aria-level,aria-live,aria-modal,aria-multiline,aria-multiselectable,aria-orientation,aria-owns,aria-placeholder,aria-posinset,aria-pressed,aria-readonly,aria-relevant,aria-required,aria-roledescription,aria-rowcount,aria-rowindex,aria-rowspan,aria-selected,aria-setsize,aria-sort,aria-valuemax,aria-valuemin,aria-valuenow,aria-valuetext\")),Ni=Yi(\"script,style,template\");class zi{constructor(){this.sanitizedSomething=!1,this.buf=[]}sanitizeChildren(e){let t=e.firstChild,n=!0;for(;t;)if(t.nodeType===Node.ELEMENT_NODE?n=this.startElement(t):t.nodeType===Node.TEXT_NODE?this.chars(t.nodeValue):this.sanitizedSomething=!0,n&&t.firstChild)t=t.firstChild;else for(;t;){t.nodeType===Node.ELEMENT_NODE&&this.endElement(t);let e=this.checkClobberedElement(t,t.nextSibling);if(e){t=e;break}t=this.checkClobberedElement(t,t.parentNode)}return this.buf.join(\"\")}startElement(e){const t=e.nodeName.toLowerCase();if(!Ri.hasOwnProperty(t))return this.sanitizedSomething=!0,!Ni.hasOwnProperty(t);this.buf.push(\"<\"),this.buf.push(t);const n=e.attributes;for(let i=0;i\"),!0}endElement(e){const t=e.nodeName.toLowerCase();Ri.hasOwnProperty(t)&&!Oi.hasOwnProperty(t)&&(this.buf.push(\"\"))}chars(e){this.buf.push(Ui(e))}checkClobberedElement(e,t){if(t&&(e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error(`Failed to sanitize html because the element is clobbered: ${e.outerHTML}`);return t}}const Vi=/[\\uD800-\\uDBFF][\\uDC00-\\uDFFF]/g,Wi=/([^\\#-~ |!])/g;function Ui(e){return e.replace(/&/g,\"&\").replace(Vi,(function(e){return\"&#\"+(1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320)+65536)+\";\"})).replace(Wi,(function(e){return\"&#\"+e.charCodeAt(0)+\";\"})).replace(//g,\">\")}let $i;function Bi(e,t){let n=null;try{$i=$i||new Li(e);let i=t?String(t):\"\";n=$i.getInertBodyElement(i);let s=5,r=i;do{if(0===s)throw new Error(\"Failed to sanitize html because the input is unstable\");s--,i=r,r=n.innerHTML,n=$i.getInertBodyElement(i)}while(i!==r);const o=new zi,a=o.sanitizeChildren(qi(n)||n);return Si()&&o.sanitizedSomething&&console.warn(\"WARNING: sanitizing HTML stripped some content, see http://g.co/ng/security#xss\"),a}finally{if(n){const e=qi(n)||n;for(;e.firstChild;)e.removeChild(e.firstChild)}}}function qi(e){return\"content\"in e&&function(e){return e.nodeType===Node.ELEMENT_NODE&&\"TEMPLATE\"===e.nodeName}(e)?e.content:null}const Gi=function(){var e={NONE:0,HTML:1,STYLE:2,SCRIPT:3,URL:4,RESOURCE_URL:5};return e[e.NONE]=\"NONE\",e[e.HTML]=\"HTML\",e[e.STYLE]=\"STYLE\",e[e.SCRIPT]=\"SCRIPT\",e[e.URL]=\"URL\",e[e.RESOURCE_URL]=\"RESOURCE_URL\",e}(),Ji=new RegExp(\"^([-,.\\\"'%_!# a-zA-Z0-9]+|(?:(?:matrix|translate|scale|rotate|skew|perspective)(?:X|Y|Z|3d)?|(?:rgb|hsl)a?|(?:repeating-)?(?:linear|radial)-gradient|(?:attr|calc|var))\\\\([-0-9.%, #a-zA-Z]+\\\\))$\",\"g\"),Ki=/^url\\(([^)]+)\\)$/;function Zi(e){if(!(e=String(e).trim()))return\"\";const t=e.match(Ki);return t&&Ti(t[1])===t[1]||e.match(Ji)&&function(e){let t=!0,n=!0;for(let i=0;ir?\"\":s[d+1].toLowerCase();const t=8&i?e:null;if(t&&-1!==os(t,c,0)||2&i&&c!==e){if(ds(i))return!1;o=!0}}}}else{if(!o&&!ds(i)&&!ds(l))return!1;if(o&&ds(l))continue;o=!1,i=l|1&i}}return ds(i)||o}function ds(e){return 0==(1&e)}function us(e,t,n,i){if(null===t)return-1;let s=0;if(i||!n){let n=!1;for(;s-1)for(n++;n0?'=\"'+t+'\"':\"\")+\"]\"}else 8&i?s+=\".\"+o:4&i&&(s+=\" \"+o);else\"\"===s||ds(o)||(t+=ps(r,s),s=\"\"),i=o,r=r||!ds(i);n++}return\"\"!==s&&(t+=ps(r,s)),t}const _s={};function gs(e){const t=e[3];return Dt(t)?t[3]:t}function ys(e){bs(Xt(),Qt(),vn()+e,on())}function bs(e,t,n,i){if(!i)if(3==(3&t[2])){const i=e.preOrderCheckHooks;null!==i&&xn(t,i,n)}else{const i=e.preOrderHooks;null!==i&&Cn(t,i,0,n)}wn(n)}const vs={marker:\"element\"},ws={marker:\"comment\"};function Ms(e,t){return e<<17|t<<2}function ks(e){return e>>17&32767}function Ss(e){return 2|e}function Ls(e){return(131068&e)>>2}function xs(e,t){return-131069&e|t<<2}function Cs(e){return 1|e}function Ts(e,t){const n=e.contentQueries;if(null!==n)for(let i=0;i>1==-1){for(let e=9;e19&&bs(e,t,0,on()),n(i,s)}finally{wn(r)}}function Rs(e,t,n){if(Yt(t)){const i=t.directiveEnd;for(let s=t.directiveStart;sPromise.resolve(null))();function mr(e){return e[7]||(e[7]=[])}function pr(e){return e.cleanup||(e.cleanup=[])}function fr(e,t){return function(e){for(;Array.isArray(e);){if(\"object\"==typeof e[1])return e;e=e[0]}return null}(t[e.index])[11]}function _r(e,t){const n=e[9],i=n?n.get(hi,null):null;i&&i.handleError(t)}function gr(e,t,n,i,s){for(let r=0;r0&&(e[n-1][4]=i[4]);const r=lt(e,9+t);kr(i[1],i,!1,null);const o=r[5];null!==o&&o.detachView(r[1]),i[3]=null,i[4]=null,i[2]&=-129}return i}function xr(e,t){if(!(256&t[2])){const n=t[11];Ht(n)&&n.destroyNode&&Fr(e,t,n,3,null,null),function(e){let t=e[13];if(!t)return Tr(e[1],e);for(;t;){let n=null;if(Tt(t))n=t[13];else{const e=t[9];e&&(n=e)}if(!n){for(;t&&!t[4]&&t!==e;)Tt(t)&&Tr(t[1],t),t=Cr(t,e);null===t&&(t=e),Tt(t)&&Tr(t[1],t),n=t&&t[4]}t=n}}(t)}}function Cr(e,t){let n;return Tt(e)&&(n=e[6])&&2===n.type?br(n,e):e[3]===t?null:e[3]}function Tr(e,t){if(!(256&t[2])){t[2]&=-129,t[2]|=256,function(e,t){let n;if(null!=e&&null!=(n=e.destroyHooks))for(let i=0;i=0?e[a]():e[-a].unsubscribe(),i+=2}else n[i].call(e[n[i+1]]);t[7]=null}}(e,t);const n=t[6];n&&3===n.type&&Ht(t[11])&&t[11].destroy();const i=t[17];if(null!==i&&Dt(t[3])){i!==t[3]&&Sr(i,t);const n=t[5];null!==n&&n.detachView(e)}}}function Dr(e,t,n){let i=t.parent;for(;null!=i&&(4===i.type||5===i.type);)i=(t=i).parent;if(null==i){const e=n[6];return 2===e.type?vr(e,n):n[0]}if(t&&5===t.type&&4&t.flags)return zt(t,n).parentNode;if(2&i.flags){const t=e.data,n=t[t[i.index].directiveStart].encapsulation;if(n!==pt.ShadowDom&&n!==pt.Native)return null}return zt(i,n)}function Yr(e,t,n,i){Ht(e)?e.insertBefore(t,n,i):t.insertBefore(n,i,!0)}function Er(e,t,n){Ht(e)?e.appendChild(t,n):t.appendChild(n)}function Or(e,t,n,i){null!==i?Yr(e,t,n,i):Er(e,t,n)}function Ir(e,t){return Ht(e)?e.parentNode(t):t.parentNode}function Pr(e,t){if(2===e.type){const n=br(e,t);return null===n?null:Rr(n.indexOf(t,9)-9,n)}return 4===e.type||5===e.type?zt(e,t):null}function Ar(e,t,n,i){const s=Dr(e,i,t);if(null!=s){const e=t[11],r=Pr(i.parent||t[6],t);if(Array.isArray(n))for(let t=0;t-1&&this._viewContainerRef.detach(e),this._viewContainerRef=null}xr(this._lView[1],this._lView)}onDestroy(e){var t,n,i;t=this._lView[1],i=e,mr(n=this._lView).push(i),t.firstCreatePass&&pr(t).push(n[7].length-1,null)}markForCheck(){lr(this._cdRefInjectingView||this._lView)}detach(){this._lView[2]&=-129}reattach(){this._lView[2]|=128}detectChanges(){cr(this._lView[1],this._lView,this.context)}checkNoChanges(){!function(e,t,n){an(!0);try{cr(e,t,n)}finally{an(!1)}}(this._lView[1],this._lView,this.context)}attachToViewContainerRef(e){if(this._appRef)throw new Error(\"This view is already attached directly to the ApplicationRef!\");this._viewContainerRef=e}detachFromAppRef(){var e;this._appRef=null,Fr(this._lView[1],e=this._lView,e[11],2,null,null)}attachToAppRef(e){if(this._viewContainerRef)throw new Error(\"This view is already attached to a ViewContainer!\");this._appRef=e}}class $r extends Ur{constructor(e){super(e),this._view=e}detectChanges(){dr(this._view)}checkNoChanges(){!function(e){an(!0);try{dr(e)}finally{an(!1)}}(this._view)}get context(){return null}}let Br,qr,Gr;function Jr(e,t,n){return Br||(Br=class extends e{}),new Br(zt(t,n))}function Kr(e,t,n,i){return qr||(qr=class extends e{constructor(e,t,n){super(),this._declarationView=e,this._declarationTContainer=t,this.elementRef=n}createEmbeddedView(e){const t=this._declarationTContainer.tViews,n=Ys(this._declarationView,t,e,16,null,t.node);n[17]=this._declarationView[this._declarationTContainer.index];const i=this._declarationView[5];null!==i&&(n[5]=i.createEmbeddedView(t)),Os(t,n,e);const s=new Ur(n);return s._tViewNode=n[6],s}}),0===n.type?new qr(i,n,Jr(t,n,i)):null}function Zr(e,t,n,i){let s;Gr||(Gr=class extends e{constructor(e,t,n){super(),this._lContainer=e,this._hostTNode=t,this._hostView=n}get element(){return Jr(t,this._hostTNode,this._hostView)}get injector(){return new ai(this._hostTNode,this._hostView)}get parentInjector(){const e=Qn(this._hostTNode,this._hostView),t=Nn(e,this._hostView),n=function(e,t,n){if(n.parent&&-1!==n.parent.injectorIndex){const e=n.parent.injectorIndex;let t=n.parent;for(;null!=t.parent&&e==t.parent.injectorIndex;)t=t.parent;return t}let i=Fn(e),s=t,r=t[6];for(;i>1;)s=s[15],r=s[6],i--;return r}(e,this._hostView,this._hostTNode);return Hn(e)&&null!=n?new ai(n,t):new ai(null,this._hostView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(e){return null!==this._lContainer[8]&&this._lContainer[8][e]||null}get length(){return this._lContainer.length-9}createEmbeddedView(e,t,n){const i=e.createEmbeddedView(t||{});return this.insert(i,n),i}createComponent(e,t,n,i,s){const r=n||this.parentInjector;if(!s&&null==e.ngModule&&r){const e=r.get(it,null);e&&(s=e)}const o=e.create(r,i,void 0,s);return this.insert(o.hostView,t),o}insert(e,t){const n=e._lView,i=n[1];if(e.destroyed)throw new Error(\"Cannot insert a destroyed View in a ViewContainer!\");if(this.allocateContainerIfNeeded(),Dt(n[3])){const t=this.indexOf(e);if(-1!==t)this.detach(t);else{const t=n[3],i=new Gr(t,t[6],t[3]);i.detach(i.indexOf(e))}}const s=this._adjustIndex(t);return function(e,t,n,i){const s=9+i,r=n.length;i>0&&(n[s-1][4]=t),i{class e{}return e.__NG_ELEMENT_ID__=()=>Xr(),e})();const Xr=function(e=!1){return function(e,t,n){if(!n&&Et(e)){const n=Ut(e.index,t);return new Ur(n,n)}return 3===e.type||0===e.type||4===e.type||5===e.type?new Ur(t[16],t):null}(tn(),Qt(),e)},eo=new Ve(\"Set Injector scope.\"),to={},no={},io=[];let so=void 0;function ro(){return void 0===so&&(so=new nt),so}function oo(e,t=null,n=null,i){return new ao(e,n,t||ro(),i)}class ao{constructor(e,t,n,i=null){this.parent=n,this.records=new Map,this.injectorDefTypes=new Set,this.onDestroy=new Set,this._destroyed=!1;const s=[];t&&ot(t,n=>this.processProvider(n,e,t)),ot([e],e=>this.processInjectorType(e,[],s)),this.records.set(We,uo(void 0,this));const r=this.records.get(eo);this.scope=null!=r?r.value:null,this.source=i||(\"object\"==typeof e?null:Se(e))}get destroyed(){return this._destroyed}destroy(){this.assertNotDestroyed(),this._destroyed=!0;try{this.onDestroy.forEach(e=>e.ngOnDestroy())}finally{this.records.clear(),this.onDestroy.clear(),this.injectorDefTypes.clear()}}get(e,t=Ue,n=ue.Default){this.assertNotDestroyed();const i=Je(this);try{if(!(n&ue.SkipSelf)){let t=this.records.get(e);if(void 0===t){const n=(\"function\"==typeof(s=e)||\"object\"==typeof s&&s instanceof Ve)&&_e(e);t=n&&this.injectableDefInScope(n)?uo(lo(e),to):null,this.records.set(e,t)}if(null!=t)return this.hydrate(e,t)}return(n&ue.Self?ro():this.parent).get(e,t=n&ue.Optional&&t===Ue?null:t)}catch(r){if(\"NullInjectorError\"===r.name){if((r.ngTempTokenPath=r.ngTempTokenPath||[]).unshift(Se(e)),i)throw r;return function(e,t,n,i){const s=e.ngTempTokenPath;throw t.__source&&s.unshift(t.__source),e.message=function(e,t,n,i=null){e=e&&\"\\n\"===e.charAt(0)&&\"\\u0275\"==e.charAt(1)?e.substr(2):e;let s=Se(t);if(Array.isArray(t))s=t.map(Se).join(\" -> \");else if(\"object\"==typeof t){let e=[];for(let n in t)if(t.hasOwnProperty(n)){let i=t[n];e.push(n+\":\"+(\"string\"==typeof i?JSON.stringify(i):Se(i)))}s=`{${e.join(\", \")}}`}return`${n}${i?\"(\"+i+\")\":\"\"}[${s}]: ${e.replace($e,\"\\n \")}`}(\"\\n\"+e.message,s,n,i),e.ngTokenPath=s,e.ngTempTokenPath=null,e}(r,e,\"R3InjectorError\",this.source)}throw r}finally{Je(i)}var s}_resolveInjectorDefTypes(){this.injectorDefTypes.forEach(e=>this.get(e))}toString(){const e=[];return this.records.forEach((t,n)=>e.push(Se(n))),`R3Injector[${e.join(\", \")}]`}assertNotDestroyed(){if(this._destroyed)throw new Error(\"Injector has already been destroyed.\")}processInjectorType(e,t,n){if(!(e=Te(e)))return!1;let i=ye(e);const s=null==i&&e.ngModule||void 0,r=void 0===s?e:s,o=-1!==n.indexOf(r);if(void 0!==s&&(i=ye(s)),null==i)return!1;if(null!=i.imports&&!o){let e;n.push(r);try{ot(i.imports,i=>{this.processInjectorType(i,t,n)&&(void 0===e&&(e=[]),e.push(i))})}finally{}if(void 0!==e)for(let t=0;tthis.processProvider(e,n,i||io))}}this.injectorDefTypes.add(r),this.records.set(r,uo(i.factory,to));const a=i.providers;if(null!=a&&!o){const t=e;ot(a,e=>this.processProvider(e,t,a))}return void 0!==s&&void 0!==e.providers}processProvider(e,t,n){let i=mo(e=Te(e))?e:Te(e&&e.provide);const s=function(e,t,n){return ho(e)?uo(void 0,e.useValue):uo(co(e,t,n),to)}(e,t,n);if(mo(e)||!0!==e.multi){const e=this.records.get(i);e&&void 0!==e.multi&&rs()}else{let t=this.records.get(i);t?void 0===t.multi&&rs():(t=uo(void 0,to,!0),t.factory=()=>tt(t.multi),this.records.set(i,t)),i=e,t.multi.push(e)}this.records.set(i,s)}hydrate(e,t){var n;return t.value===no?function(e){throw new Error(`Cannot instantiate cyclic dependency! ${e}`)}(Se(e)):t.value===to&&(t.value=no,t.value=t.factory()),\"object\"==typeof t.value&&t.value&&null!==(n=t.value)&&\"object\"==typeof n&&\"function\"==typeof n.ngOnDestroy&&this.onDestroy.add(t.value),t.value}injectableDefInScope(e){return!!e.providedIn&&(\"string\"==typeof e.providedIn?\"any\"===e.providedIn||e.providedIn===this.scope:this.injectorDefTypes.has(e.providedIn))}}function lo(e){const t=_e(e),n=null!==t?t.factory:xt(e);if(null!==n)return n;const i=ye(e);if(null!==i)return i.factory;if(e instanceof Ve)throw new Error(`Token ${Se(e)} is missing a \\u0275prov definition.`);if(e instanceof Function)return function(e){const t=e.length;if(t>0){const n=ct(t,\"?\");throw new Error(`Can't resolve all parameters for ${Se(e)}: (${n.join(\", \")}).`)}const n=function(e){const t=e&&(e[be]||e[Me]||e[we]&&e[we]());if(t){const n=function(e){if(e.hasOwnProperty(\"name\"))return e.name;const t=(\"\"+e).match(/^function\\s*([^\\s(]+)/);return null===t?\"\":t[1]}(e);return console.warn(`DEPRECATED: DI is instantiating a token \"${n}\" that inherits its @Injectable decorator but does not provide one itself.\\n`+`This will become an error in v10. Please add @Injectable() to the \"${n}\" class.`),t}return null}(e);return null!==n?()=>n.factory(e):()=>new e}(e);throw new Error(\"unreachable\")}function co(e,t,n){let i=void 0;if(mo(e)){const t=Te(e);return xt(t)||lo(t)}if(ho(e))i=()=>Te(e.useValue);else if((s=e)&&s.useFactory)i=()=>e.useFactory(...tt(e.deps||[]));else if(function(e){return!(!e||!e.useExisting)}(e))i=()=>Qe(Te(e.useExisting));else{const s=Te(e&&(e.useClass||e.provide));if(s||function(e,t,n){let i=\"\";throw e&&t&&(i=` - only instances of Provider and Type are allowed, got: [${t.map(e=>e==n?\"?\"+n+\"?\":\"...\").join(\", \")}]`),new Error(`Invalid provider for the NgModule '${Se(e)}'`+i)}(t,n,e),!function(e){return!!e.deps}(e))return xt(s)||lo(s);i=()=>new s(...tt(e.deps))}var s;return i}function uo(e,t,n=!1){return{factory:e,value:t,multi:n?[]:void 0}}function ho(e){return null!==e&&\"object\"==typeof e&&Be in e}function mo(e){return\"function\"==typeof e}const po=function(e,t,n){return function(e,t=null,n=null,i){const s=oo(e,t,n,i);return s._resolveInjectorDefTypes(),s}({name:n},t,e,n)};let fo=(()=>{class e{static create(e,t){return Array.isArray(e)?po(e,t,\"\"):po(e.providers,e.parent,e.name||\"\")}}return e.THROW_IF_NOT_FOUND=Ue,e.NULL=new nt,e.\\u0275prov=pe({token:e,providedIn:\"any\",factory:()=>Qe(We)}),e.__NG_ELEMENT_ID__=-1,e})();const _o=new Ve(\"AnalyzeForEntryComponents\");let go=new Map;const yo=new Set;function bo(e){return\"string\"==typeof e?e:e.text()}function vo(e,t){let n=e.styles,i=e.classes,s=0;for(let r=0;ra(Ft(e[i.index])).target:i.index;if(Ht(n)){let o=null;if(!a&&l&&(o=function(e,t,n,i){const s=e.cleanup;if(null!=s)for(let r=0;rn?e[n]:null}\"string\"==typeof e&&(r+=2)}return null}(e,t,s,i.index)),null!==o)(o.__ngLastListenerFn__||o).__ngNextListenerFn__=r,o.__ngLastListenerFn__=r,u=!1;else{r=Go(i,t,r,!1);const e=n.listen(m.name||p,s,r);d.push(r,e),c&&c.push(s,_,f,f+1)}}else r=Go(i,t,r,!0),p.addEventListener(s,r,o),d.push(r),c&&c.push(s,_,f,o)}const h=i.outputs;let m;if(u&&null!==h&&(m=h[s])){const e=m.length;if(e)for(let n=0;n0;)t=t[15],e--;return t}(e,Kt.lFrame.contextLView))[8]}(e)}function Ko(e,t){let n=null;const i=function(e){const t=e.attrs;if(null!=t){const e=t.indexOf(5);if(0==(1&e))return t[e+1]}return null}(e);for(let s=0;s=0}const oa={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function aa(e){return e.substring(oa.key,oa.keyEnd)}function la(e,t){const n=oa.textEnd;return n===t?-1:(t=oa.keyEnd=function(e,t,n){for(;t32;)t++;return t}(e,oa.key=t,n),ca(e,t,n))}function ca(e,t,n){for(;t=0;n=la(t,n))dt(e,aa(t),!0)}function pa(e,t,n,i){const s=Qt(),r=Xt(),o=cn(2);if(r.firstUpdatePass&&ga(r,e,o,i),t!==_s&&xo(s,o,t)){let a;null==n&&(a=function(){const e=Kt.lFrame;return null===e?null:e.currentSanitizer}())&&(n=a),va(r,r.data[vn()+19],s,s[11],e,s[o+1]=function(e,t){return null==e||(\"function\"==typeof t?e=t(e):\"string\"==typeof t?e+=t:\"object\"==typeof e&&(e=Se(bi(e)))),e}(t,n),i,o)}}function fa(e,t,n,i){const s=Xt(),r=cn(2);s.firstUpdatePass&&ga(s,null,r,i);const o=Qt();if(n!==_s&&xo(o,r,n)){const a=s.data[vn()+19];if(ka(a,i)&&!_a(s,r)){let e=i?a.classes:a.styles;null!==e&&(n=Le(e,n||\"\")),Ao(s,a,o,n,i)}else!function(e,t,n,i,s,r,o,a){s===_s&&(s=ia);let l=0,c=0,d=0=e.expandoStartIndex}function ga(e,t,n,i){const s=e.data;if(null===s[n+1]){const r=s[vn()+19],o=_a(e,n);ka(r,i)&&null===t&&!o&&(t=!1),t=function(e,t,n,i){const s=function(e){const t=Kt.lFrame.currentDirectiveIndex;return-1===t?null:e[t]}(e);let r=i?t.residualClasses:t.residualStyles;if(null===s)0===(i?t.classBindings:t.styleBindings)&&(n=ba(n=ya(null,e,t,n,i),t.attrs,i),r=null);else{const o=t.directiveStylingLast;if(-1===o||e[o]!==s)if(n=ya(s,e,t,n,i),null===r){let n=function(e,t,n){const i=n?t.classBindings:t.styleBindings;if(0!==Ls(i))return e[ks(i)]}(e,t,i);void 0!==n&&Array.isArray(n)&&(n=ya(null,e,t,n[1],i),n=ba(n,t.attrs,i),function(e,t,n,i){e[ks(n?t.classBindings:t.styleBindings)]=i}(e,t,i,n))}else r=function(e,t,n){let i=void 0;const s=t.directiveEnd;for(let r=1+t.directiveStylingLast;r0)&&(d=!0)}else c=n;if(s)if(0!==l){const t=ks(e[a+1]);e[i+1]=Ms(t,a),0!==t&&(e[t+1]=xs(e[t+1],i)),e[a+1]=131071&e[a+1]|i<<17}else e[i+1]=Ms(a,0),0!==a&&(e[a+1]=xs(e[a+1],i)),a=i;else e[i+1]=Ms(l,0),0===a?a=i:e[l+1]=xs(e[l+1],i),l=i;d&&(e[i+1]=Ss(e[i+1])),sa(e,c,i,!0),sa(e,c,i,!1),function(e,t,n,i,s){const r=s?e.residualClasses:e.residualStyles;null!=r&&\"string\"==typeof t&&ht(r,t)>=0&&(n[i+1]=Cs(n[i+1]))}(t,c,e,i,r),o=Ms(a,l),r?t.classBindings=o:t.styleBindings=o}(s,r,t,n,o,i)}}function ya(e,t,n,i,s){let r=null;const o=n.directiveEnd;let a=n.directiveStylingLast;for(-1===a?a=n.directiveStart:a++;a0;){const t=e[s],r=Array.isArray(t),l=r?t[1]:t,c=null===l;let d=n[s+1];d===_s&&(d=c?ia:void 0);let u=c?ut(d,i):l===i?d:void 0;if(r&&!Ma(u)&&(u=ut(t,i)),Ma(u)&&(a=u,o))return a;const h=e[s+1];s=o?ks(h):Ls(h)}if(null!==t){let e=r?t.residualClasses:t.residualStyles;null!=e&&(a=ut(e,i))}return a}function Ma(e){return void 0!==e}function ka(e,t){return 0!=(e.flags&(t?16:32))}function Sa(e,t=\"\"){const n=Qt(),i=Xt(),s=e+19,r=i.firstCreatePass?Es(i,n[6],e,3,null,null):i.data[s],o=n[s]=Mr(t,n[11]);Ar(i,n,o,r),nn(r,!1)}function La(e){return xa(\"\",e,\"\"),La}function xa(e,t,n){const i=Qt(),s=To(i,e,t,n);return s!==_s&&yr(i,vn(),s),xa}function Ca(e,t,n){const i=Qt();return xo(i,ln(),t)&&Ws(Xt(),Mn(),i,e,t,i[11],n,!0),Ca}function Ta(e,t,n){const i=Qt();if(xo(i,ln(),t)){const s=Xt(),r=Mn();Ws(s,r,i,e,t,fr(r,i),n,!0)}return Ta}function Da(e,t){const n=$t(e)[1],i=n.data.length-1;Ln(n,{directiveStart:i,directiveEnd:i+1})}function Ya(e){let t=Object.getPrototypeOf(e.type.prototype).constructor,n=!0;const i=[e];for(;t;){let s=void 0;if(It(e))s=t.\\u0275cmp||t.\\u0275dir;else{if(t.\\u0275cmp)throw new Error(\"Directives cannot inherit Components\");s=t.\\u0275dir}if(s){if(n){i.push(s);const t=e;t.inputs=Ea(e.inputs),t.declaredInputs=Ea(e.declaredInputs),t.outputs=Ea(e.outputs);const n=s.hostBindings;n&&Pa(e,n);const r=s.viewQuery,o=s.contentQueries;if(r&&Oa(e,r),o&&Ia(e,o),me(e.inputs,s.inputs),me(e.declaredInputs,s.declaredInputs),me(e.outputs,s.outputs),It(s)&&s.data.animation){const t=e.data;t.animation=(t.animation||[]).concat(s.data.animation)}t.afterContentChecked=t.afterContentChecked||s.afterContentChecked,t.afterContentInit=e.afterContentInit||s.afterContentInit,t.afterViewChecked=e.afterViewChecked||s.afterViewChecked,t.afterViewInit=e.afterViewInit||s.afterViewInit,t.doCheck=e.doCheck||s.doCheck,t.onDestroy=e.onDestroy||s.onDestroy,t.onInit=e.onInit||s.onInit}const t=s.features;if(t)for(let i=0;i=0;i--){const s=e[i];s.hostVars=t+=s.hostVars,s.hostAttrs=An(s.hostAttrs,n=An(n,s.hostAttrs))}}(i)}function Ea(e){return e===ft?{}:e===_t?[]:e}function Oa(e,t){const n=e.viewQuery;e.viewQuery=n?(e,i)=>{t(e,i),n(e,i)}:t}function Ia(e,t){const n=e.contentQueries;e.contentQueries=n?(e,i,s)=>{t(e,i,s),n(e,i,s)}:t}function Pa(e,t){const n=e.hostBindings;e.hostBindings=n?(e,i)=>{t(e,i),n(e,i)}:t}class Aa{constructor(e,t,n){this.previousValue=e,this.currentValue=t,this.firstChange=n}isFirstChange(){return this.firstChange}}function Ra(e){e.type.prototype.ngOnChanges&&(e.setInput=Ha,e.onChanges=function(){const e=ja(this),t=e&&e.current;if(t){const n=e.previous;if(n===ft)e.previous=t;else for(let e in t)n[e]=t[e];e.current=null,this.ngOnChanges(t)}})}function Ha(e,t,n,i){const s=ja(e)||function(e,t){return e.__ngSimpleChanges__=t}(e,{previous:ft,current:null}),r=s.current||(s.current={}),o=s.previous,a=this.declaredInputs[n],l=o[a];r[a]=new Aa(l&&l.currentValue,t,o===ft),e[i]=t}function ja(e){return e.__ngSimpleChanges__||null}function Fa(e,t,n,i,s){if(e=Te(e),Array.isArray(e))for(let r=0;r>16;if(mo(e)||!e.multi){const i=new En(l,s,Eo),m=Va(a,t,s?d:d+h,u);-1===m?(Xn(Jn(c,o),r,a),Na(r,e,t.length),t.push(a),c.directiveStart++,c.directiveEnd++,s&&(c.providerIndexes+=65536),n.push(i),o.push(i)):(n[m]=i,o[m]=i)}else{const m=Va(a,t,d+h,u),p=Va(a,t,d,d+h),f=m>=0&&n[m],_=p>=0&&n[p];if(s&&!_||!s&&!f){Xn(Jn(c,o),r,a);const d=function(e,t,n,i,s){const r=new En(e,n,Eo);return r.multi=[],r.index=t,r.componentProviders=0,za(r,s,i&&!n),r}(s?Ua:Wa,n.length,s,i,l);!s&&_&&(n[p].providerFactory=d),Na(r,e,t.length),t.push(a),c.directiveStart++,c.directiveEnd++,s&&(c.providerIndexes+=65536),n.push(d),o.push(d)}else Na(r,e,m>-1?m:p),za(n[s?p:m],l,!s&&i);!s&&i&&_&&n[p].componentProviders++}}}function Na(e,t,n){if(mo(t)||t.useClass){const i=(t.useClass||t).prototype.ngOnDestroy;i&&(e.destroyHooks||(e.destroyHooks=[])).push(n,i)}}function za(e,t,n){e.multi.push(t),n&&e.componentProviders++}function Va(e,t,n,i){for(let s=n;s{n.providersResolver=(n,i)=>function(e,t,n){const i=Xt();if(i.firstCreatePass){const s=It(e);Fa(n,i.data,i.blueprint,s,!0),Fa(t,i.data,i.blueprint,s,!1)}}(n,i?i(e):e,t)}}Ra.ngInherit=!0;class qa{}class Ga{resolveComponentFactory(e){throw function(e){const t=Error(`No component factory found for ${Se(e)}. Did you add it to @NgModule.entryComponents?`);return t.ngComponent=e,t}(e)}}let Ja=(()=>{class e{}return e.NULL=new Ga,e})(),Ka=(()=>{class e{constructor(e){this.nativeElement=e}}return e.__NG_ELEMENT_ID__=()=>Za(e),e})();const Za=function(e){return Jr(e,tn(),Qt())};class Qa{}const Xa=function(){var e={Important:1,DashCase:2};return e[e.Important]=\"Important\",e[e.DashCase]=\"DashCase\",e}();let el=(()=>{class e{}return e.__NG_ELEMENT_ID__=()=>tl(),e})();const tl=function(){const e=Qt(),t=Ut(tn().index,e);return function(e){const t=e[11];if(Ht(t))return t;throw new Error(\"Cannot inject Renderer2 when the application uses Renderer3!\")}(Tt(t)?t:e)};let nl=(()=>{class e{}return e.\\u0275prov=pe({token:e,providedIn:\"root\",factory:()=>null}),e})();class il{constructor(e){this.full=e,this.major=e.split(\".\")[0],this.minor=e.split(\".\")[1],this.patch=e.split(\".\").slice(2).join(\".\")}}const sl=new il(\"9.0.7\");class rl{constructor(){}supports(e){return So(e)}create(e){return new al(e)}}const ol=(e,t)=>t;class al{constructor(e){this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=e||ol}forEachItem(e){let t;for(t=this._itHead;null!==t;t=t._next)e(t)}forEachOperation(e){let t=this._itHead,n=this._removalsHead,i=0,s=null;for(;t||n;){const r=!n||t&&t.currentIndex{i=this._trackByFn(t,e),null!==s&&ko(s.trackById,i)?(r&&(s=this._verifyReinsertion(s,e,i,t)),ko(s.item,e)||this._addIdentityChange(s,e)):(s=this._mismatch(s,e,i,t),r=!0),s=s._next,t++}),this.length=t;return this._truncate(s),this.collection=e,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let e,t;for(e=this._previousItHead=this._itHead;null!==e;e=e._next)e._nextPrevious=e._next;for(e=this._additionsHead;null!==e;e=e._nextAdded)e.previousIndex=e.currentIndex;for(this._additionsHead=this._additionsTail=null,e=this._movesHead;null!==e;e=t)e.previousIndex=e.currentIndex,t=e._nextMoved;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(e,t,n,i){let s;return null===e?s=this._itTail:(s=e._prev,this._remove(e)),null!==(e=null===this._linkedRecords?null:this._linkedRecords.get(n,i))?(ko(e.item,t)||this._addIdentityChange(e,t),this._moveAfter(e,s,i)):null!==(e=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null))?(ko(e.item,t)||this._addIdentityChange(e,t),this._reinsertAfter(e,s,i)):e=this._addAfter(new ll(t,n),s,i),e}_verifyReinsertion(e,t,n,i){let s=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null);return null!==s?e=this._reinsertAfter(s,e._prev,i):e.currentIndex!=i&&(e.currentIndex=i,this._addToMoves(e,i)),e}_truncate(e){for(;null!==e;){const t=e._next;this._addToRemovals(this._unlink(e)),e=t}null!==this._unlinkedRecords&&this._unlinkedRecords.clear(),null!==this._additionsTail&&(this._additionsTail._nextAdded=null),null!==this._movesTail&&(this._movesTail._nextMoved=null),null!==this._itTail&&(this._itTail._next=null),null!==this._removalsTail&&(this._removalsTail._nextRemoved=null),null!==this._identityChangesTail&&(this._identityChangesTail._nextIdentityChange=null)}_reinsertAfter(e,t,n){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(e);const i=e._prevRemoved,s=e._nextRemoved;return null===i?this._removalsHead=s:i._nextRemoved=s,null===s?this._removalsTail=i:s._prevRemoved=i,this._insertAfter(e,t,n),this._addToMoves(e,n),e}_moveAfter(e,t,n){return this._unlink(e),this._insertAfter(e,t,n),this._addToMoves(e,n),e}_addAfter(e,t,n){return this._insertAfter(e,t,n),this._additionsTail=null===this._additionsTail?this._additionsHead=e:this._additionsTail._nextAdded=e,e}_insertAfter(e,t,n){const i=null===t?this._itHead:t._next;return e._next=i,e._prev=t,null===i?this._itTail=e:i._prev=e,null===t?this._itHead=e:t._next=e,null===this._linkedRecords&&(this._linkedRecords=new dl),this._linkedRecords.put(e),e.currentIndex=n,e}_remove(e){return this._addToRemovals(this._unlink(e))}_unlink(e){null!==this._linkedRecords&&this._linkedRecords.remove(e);const t=e._prev,n=e._next;return null===t?this._itHead=n:t._next=n,null===n?this._itTail=t:n._prev=t,e}_addToMoves(e,t){return e.previousIndex===t||(this._movesTail=null===this._movesTail?this._movesHead=e:this._movesTail._nextMoved=e),e}_addToRemovals(e){return null===this._unlinkedRecords&&(this._unlinkedRecords=new dl),this._unlinkedRecords.put(e),e.currentIndex=null,e._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=e,e._prevRemoved=null):(e._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=e),e}_addIdentityChange(e,t){return e.item=t,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=e:this._identityChangesTail._nextIdentityChange=e,e}}class ll{constructor(e,t){this.item=e,this.trackById=t,this.currentIndex=null,this.previousIndex=null,this._nextPrevious=null,this._prev=null,this._next=null,this._prevDup=null,this._nextDup=null,this._prevRemoved=null,this._nextRemoved=null,this._nextAdded=null,this._nextMoved=null,this._nextIdentityChange=null}}class cl{constructor(){this._head=null,this._tail=null}add(e){null===this._head?(this._head=this._tail=e,e._nextDup=null,e._prevDup=null):(this._tail._nextDup=e,e._prevDup=this._tail,e._nextDup=null,this._tail=e)}get(e,t){let n;for(n=this._head;null!==n;n=n._nextDup)if((null===t||t<=n.currentIndex)&&ko(n.trackById,e))return n;return null}remove(e){const t=e._prevDup,n=e._nextDup;return null===t?this._head=n:t._nextDup=n,null===n?this._tail=t:n._prevDup=t,null===this._head}}class dl{constructor(){this.map=new Map}put(e){const t=e.trackById;let n=this.map.get(t);n||(n=new cl,this.map.set(t,n)),n.add(e)}get(e,t){const n=this.map.get(e);return n?n.get(e,t):null}remove(e){const t=e.trackById;return this.map.get(t).remove(e)&&this.map.delete(t),e}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function ul(e,t,n){const i=e.previousIndex;if(null===i)return i;let s=0;return n&&i{if(t&&t.key===n)this._maybeAddToChanges(t,e),this._appendAfter=t,t=t._next;else{const i=this._getOrCreateRecordForKey(n,e);t=this._insertBeforeOrAppend(t,i)}}),t){t._prev&&(t._prev._next=null),this._removalsHead=t;for(let e=t;null!==e;e=e._nextRemoved)e===this._mapHead&&(this._mapHead=null),this._records.delete(e.key),e._nextRemoved=e._next,e.previousValue=e.currentValue,e.currentValue=null,e._prev=null,e._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(e,t){if(e){const n=e._prev;return t._next=e,t._prev=n,e._prev=t,n&&(n._next=t),e===this._mapHead&&(this._mapHead=t),this._appendAfter=e,e}return this._appendAfter?(this._appendAfter._next=t,t._prev=this._appendAfter):this._mapHead=t,this._appendAfter=t,null}_getOrCreateRecordForKey(e,t){if(this._records.has(e)){const n=this._records.get(e);this._maybeAddToChanges(n,t);const i=n._prev,s=n._next;return i&&(i._next=s),s&&(s._prev=i),n._next=null,n._prev=null,n}const n=new pl(e);return this._records.set(e,n),n.currentValue=t,this._addToAdditions(n),n}_reset(){if(this.isDirty){let e;for(this._previousMapHead=this._mapHead,e=this._previousMapHead;null!==e;e=e._next)e._nextPrevious=e._next;for(e=this._changesHead;null!==e;e=e._nextChanged)e.previousValue=e.currentValue;for(e=this._additionsHead;null!=e;e=e._nextAdded)e.previousValue=e.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(e,t){ko(t,e.currentValue)||(e.previousValue=e.currentValue,e.currentValue=t,this._addToChanges(e))}_addToAdditions(e){null===this._additionsHead?this._additionsHead=this._additionsTail=e:(this._additionsTail._nextAdded=e,this._additionsTail=e)}_addToChanges(e){null===this._changesHead?this._changesHead=this._changesTail=e:(this._changesTail._nextChanged=e,this._changesTail=e)}_forEach(e,t){e instanceof Map?e.forEach(t):Object.keys(e).forEach(n=>t(e[n],n))}}class pl{constructor(e){this.key=e,this.previousValue=null,this.currentValue=null,this._nextPrevious=null,this._next=null,this._prev=null,this._nextAdded=null,this._nextRemoved=null,this._nextChanged=null}}let fl=(()=>{class e{constructor(e){this.factories=e}static create(t,n){if(null!=n){const e=n.factories.slice();t=t.concat(e)}return new e(t)}static extend(t){return{provide:e,useFactory:n=>{if(!n)throw new Error(\"Cannot extend IterableDiffers without a parent injector\");return e.create(t,n)},deps:[[e,new de,new le]]}}find(e){const t=this.factories.find(t=>t.supports(e));if(null!=t)return t;throw new Error(`Cannot find a differ supporting object '${e}' of type '${n=e,n.name||typeof n}'`);var n}}return e.\\u0275prov=pe({token:e,providedIn:\"root\",factory:()=>new e([new rl])}),e})(),_l=(()=>{class e{constructor(e){this.factories=e}static create(t,n){if(n){const e=n.factories.slice();t=t.concat(e)}return new e(t)}static extend(t){return{provide:e,useFactory:n=>{if(!n)throw new Error(\"Cannot extend KeyValueDiffers without a parent injector\");return e.create(t,n)},deps:[[e,new de,new le]]}}find(e){const t=this.factories.find(t=>t.supports(e));if(t)return t;throw new Error(`Cannot find a differ supporting object '${e}'`)}}return e.\\u0275prov=pe({token:e,providedIn:\"root\",factory:()=>new e([new hl])}),e})();const gl=[new hl],yl=new fl([new rl]),bl=new _l(gl);let vl=(()=>{class e{}return e.__NG_ELEMENT_ID__=()=>wl(e,Ka),e})();const wl=function(e,t){return Kr(e,t,tn(),Qt())};let Ml=(()=>{class e{}return e.__NG_ELEMENT_ID__=()=>kl(e,Ka),e})();const kl=function(e,t){return Zr(e,t,tn(),Qt())},Sl={};class Ll extends Ja{constructor(e){super(),this.ngModule=e}resolveComponentFactory(e){const t=Lt(e);return new Tl(t,this.ngModule)}}function xl(e){const t=[];for(let n in e)e.hasOwnProperty(n)&&t.push({propName:e[n],templateName:n});return t}const Cl=new Ve(\"SCHEDULER_TOKEN\",{providedIn:\"root\",factory:()=>Wn});class Tl extends qa{constructor(e,t){super(),this.componentDef=e,this.ngModule=t,this.componentType=e.type,this.selector=e.selectors.map(fs).join(\",\"),this.ngContentSelectors=e.ngContentSelectors?e.ngContentSelectors:[],this.isBoundToModule=!!t}get inputs(){return xl(this.componentDef.inputs)}get outputs(){return xl(this.componentDef.outputs)}create(e,t,n,i){const s=(i=i||this.ngModule)?function(e,t){return{get:(n,i,s)=>{const r=e.get(n,Sl,s);return r!==Sl||i===Sl?r:t.get(n,i,s)}}}(e,i.injector):e,r=s.get(Qa,jt),o=s.get(nl,null),a=r.createRenderer(null,this.componentDef),l=this.componentDef.selectors[0][0]||\"div\",c=n?function(e,t,n){if(Ht(e))return e.selectRootElement(t,n===pt.ShadowDom);let i=\"string\"==typeof t?e.querySelector(t):t;return i.textContent=\"\",i}(a,n,this.componentDef.encapsulation):Ds(l,r.createRenderer(null,this.componentDef),function(e){const t=e.toLowerCase();return\"svg\"===t?\"http://www.w3.org/2000/svg\":\"math\"===t?\"http://www.w3.org/1998/MathML/\":null}(l)),d=this.componentDef.onPush?576:528,u=\"string\"==typeof n&&/^#root-ng-internal-isolated-\\d+/.test(n),h={components:[],scheduler:Wn,clean:hr,playerHandler:null,flags:0},m=Ns(0,-1,null,1,0,null,null,null,null,null),p=Ys(null,m,h,d,null,null,r,a,o,s);let f,_;pn(p,null);try{const e=function(e,t,n,i,s,r){const o=n[1];n[19]=e;const a=Es(o,null,0,3,null,null),l=a.mergedAttrs=t.hostAttrs;null!==l&&(vo(a,l),null!==e&&(On(s,e,l),null!==a.classes&&Wr(s,e,a.classes),null!==a.styles&&Vr(s,e,a.styles)));const c=i.createRenderer(e,t),d=Ys(n,Fs(t),null,t.onPush?64:16,n[19],a,i,c,void 0);return o.firstCreatePass&&(Xn(Jn(a,n),o,t.type),Js(o,a),Zs(a,n.length,1)),ar(n,d),n[19]=d}(c,this.componentDef,p,r,a);if(c)if(n)On(a,c,[\"ng-version\",sl.full]);else{const{attrs:e,classes:t}=function(e){const t=[],n=[];let i=1,s=2;for(;i0&&Wr(a,c,t.join(\" \"))}_=Vt(p[1],0),t&&(_.projection=t.map(e=>Array.from(e))),f=function(e,t,n,i,s){const r=n[1],o=function(e,t,n){const i=tn();e.firstCreatePass&&(n.providersResolver&&n.providersResolver(n),Gs(e,i,1),Qs(e,t,n));const s=si(t,e,t.length-1,i);is(s,t);const r=zt(i,t);return r&&is(r,t),s}(r,n,t);i.components.push(o),e[8]=o,s&&s.forEach(e=>e(o,t)),t.contentQueries&&t.contentQueries(1,o,n.length-1);const a=tn();if(r.firstCreatePass&&(null!==t.hostBindings||null!==t.hostAttrs)){wn(a.index-19);const e=n[1];$s(e,t),Bs(e,n,t.hostVars),qs(t,o)}return o}(e,this.componentDef,p,h,[Da]),Os(m,p,null)}finally{bn()}const g=new Dl(this.componentType,f,Jr(Ka,_,p),p,_);return n&&!u||(g.hostView._tViewNode.child=_),g}}class Dl extends class{}{constructor(e,t,n,i,s){super(),this.location=n,this._rootLView=i,this._tNode=s,this.destroyCbs=[],this.instance=t,this.hostView=this.changeDetectorRef=new $r(i),this.hostView._tViewNode=function(e,t,n,i){let s=e.node;return null==s&&(e.node=s=zs(0,null,2,-1,null,null)),i[6]=s}(i[1],0,0,i),this.componentType=e}get injector(){return new ai(this._tNode,this._rootLView)}destroy(){this.destroyCbs&&(this.destroyCbs.forEach(e=>e()),this.destroyCbs=null,!this.hostView.destroyed&&this.hostView.destroy())}onDestroy(e){this.destroyCbs&&this.destroyCbs.push(e)}}const Yl=void 0;var El=[\"en\",[[\"a\",\"p\"],[\"AM\",\"PM\"],Yl],[[\"AM\",\"PM\"],Yl,Yl],[[\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"],[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"]],Yl,[[\"J\",\"F\",\"M\",\"A\",\"M\",\"J\",\"J\",\"A\",\"S\",\"O\",\"N\",\"D\"],[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"]],Yl,[[\"B\",\"A\"],[\"BC\",\"AD\"],[\"Before Christ\",\"Anno Domini\"]],0,[6,0],[\"M/d/yy\",\"MMM d, y\",\"MMMM d, y\",\"EEEE, MMMM d, y\"],[\"h:mm a\",\"h:mm:ss a\",\"h:mm:ss a z\",\"h:mm:ss a zzzz\"],[\"{1}, {0}\",Yl,\"{1} 'at' {0}\",Yl],[\".\",\",\",\";\",\"%\",\"+\",\"-\",\"E\",\"\\xd7\",\"\\u2030\",\"\\u221e\",\"NaN\",\":\"],[\"#,##0.###\",\"#,##0%\",\"\\xa4#,##0.00\",\"#E0\"],\"USD\",\"$\",\"US Dollar\",{},function(e){let t=Math.floor(Math.abs(e)),n=e.toString().replace(/^[^.]*\\.?/,\"\").length;return 1===t&&0===n?1:5}];let Ol={};function Il(e){return function(e){const t=function(e){return e.toLowerCase().replace(/_/g,\"-\")}(e);let n=Pl(t);if(n)return n;const i=t.split(\"-\")[0];if(n=Pl(i),n)return n;if(\"en\"===i)return El;throw new Error(`Missing locale data for the locale \"${e}\".`)}(e)[Al.PluralCase]}function Pl(e){return e in Ol||(Ol[e]=Pe.ng&&Pe.ng.common&&Pe.ng.common.locales&&Pe.ng.common.locales[e]),Ol[e]}const Al=function(){var e={LocaleId:0,DayPeriodsFormat:1,DayPeriodsStandalone:2,DaysFormat:3,DaysStandalone:4,MonthsFormat:5,MonthsStandalone:6,Eras:7,FirstDayOfWeek:8,WeekendRange:9,DateFormat:10,TimeFormat:11,DateTimeFormat:12,NumberSymbols:13,NumberFormats:14,CurrencyCode:15,CurrencySymbol:16,CurrencyName:17,Currencies:18,PluralCase:19,ExtraData:20};return e[e.LocaleId]=\"LocaleId\",e[e.DayPeriodsFormat]=\"DayPeriodsFormat\",e[e.DayPeriodsStandalone]=\"DayPeriodsStandalone\",e[e.DaysFormat]=\"DaysFormat\",e[e.DaysStandalone]=\"DaysStandalone\",e[e.MonthsFormat]=\"MonthsFormat\",e[e.MonthsStandalone]=\"MonthsStandalone\",e[e.Eras]=\"Eras\",e[e.FirstDayOfWeek]=\"FirstDayOfWeek\",e[e.WeekendRange]=\"WeekendRange\",e[e.DateFormat]=\"DateFormat\",e[e.TimeFormat]=\"TimeFormat\",e[e.DateTimeFormat]=\"DateTimeFormat\",e[e.NumberSymbols]=\"NumberSymbols\",e[e.NumberFormats]=\"NumberFormats\",e[e.CurrencyCode]=\"CurrencyCode\",e[e.CurrencySymbol]=\"CurrencySymbol\",e[e.CurrencyName]=\"CurrencyName\",e[e.Currencies]=\"Currencies\",e[e.PluralCase]=\"PluralCase\",e[e.ExtraData]=\"ExtraData\",e}(),Rl=/^\\s*(\\ufffd\\d+:?\\d*\\ufffd)\\s*,\\s*(select|plural)\\s*,/,Hl=/\\ufffd\\/?\\*(\\d+:\\d+)\\ufffd/gi,jl=/\\ufffd(\\/?[#*!]\\d+):?\\d*\\ufffd/gi,Fl=/\\ufffd(\\d+):?\\d*\\ufffd/gi,Nl=/({\\s*\\ufffd\\d+:?\\d*\\ufffd\\s*,\\s*\\S{6}\\s*,[\\s\\S]*})/gi;function zl(e){if(!e)return[];let t=0;const n=[],i=[],s=/[{}]/g;let r;for(s.lastIndex=0;r=s.exec(e);){const s=r.index;if(\"}\"==r[0]){if(n.pop(),0==n.length){const n=e.substring(t,s);Rl.test(n)?i.push(Vl(n)):i.push(n),t=s+1}}else{if(0==n.length){const n=e.substring(t,s);i.push(n),t=s+1}n.push(\"{\")}}const o=e.substring(t);return i.push(o),i}function Vl(e){const t=[],n=[];let i=1,s=0;const r=zl(e=e.replace(Rl,(function(e,t,n){return i=\"select\"===n?0:1,s=parseInt(t.substr(1),10),\"\"})));for(let o=0;on.length&&n.push(s)}return{type:i,mainBinding:s,cases:t,values:n}}function Wl(e){let t,n,i=\"\",s=0,r=!1;for(;null!==(t=Hl.exec(e));)r?t[0]===`\\ufffd/*${n}\\ufffd`&&(s=t.index,r=!1):(i+=e.substring(s,t.index+t[0].length),n=t[1],r=!0);return i+=e.substr(s),i}function Ul(e,t,n,i=null){const s=[null,null],r=e.split(Fl);let o=0;for(let a=0;a>>17;let d;d=s===e?i[6]:Vt(n,s),o=Zl(n,r,d,o,i);break;case 0:const u=c>=0,h=(u?c:~c)>>>3;a.push(h),o=r,r=Vt(n,h),r&&nn(r,u);break;case 5:o=r=Vt(n,c>>>3),nn(r,!1);break;case 4:const m=t[++l],p=t[++l];er(Vt(n,c>>>3),i,m,p,null,null);break;default:throw new Error(`Unable to determine the type of mutate operation for \"${c}\"`)}else switch(c){case ws:const e=t[++l],d=t[++l],u=s.createComment(e);o=r,r=Ql(n,i,d,5,u,null),a.push(d),is(u,i),r.activeCaseIndex=null,rn();break;case vs:const h=t[++l],m=t[++l];o=r,r=Ql(n,i,m,3,s.createElement(h),h),a.push(m);break;default:throw new Error(`Unable to determine the type of mutate operation for \"${c}\"`)}}return rn(),a}function ec(e,t,n,i){const s=Vt(e,n),r=Nt(n,t);r&&Hr(t[11],r);const o=Wt(t,n);if(Dt(o)){const e=o;0!==s.type&&Hr(t[11],e[7])}i&&(s.flags|=64)}function tc(e,t,n){(function(e,t,n){const i=Xt();Bl[++ql]=e,Xo(!0),i.firstCreatePass&&null===i.data[e+19]&&function(e,t,n,i,s){const r=t.blueprint.length-19;Kl=0;const o=tn(),a=sn()?o:o&&o.parent;let l=a&&a!==e[6]?a.index-19:n,c=0;Jl[c]=l;const d=[];if(n>0&&o!==a){let e=o.index-19;sn()||(e=~e),d.push(e<<3|0)}const u=[],h=[],m=function(e,t){if(\"number\"!=typeof t)return Wl(e);{const n=e.indexOf(`:${t}\\ufffd`)+2+t.toString().length,i=e.search(new RegExp(`\\ufffd\\\\/\\\\*\\\\d+:${t}\\ufffd`));return Wl(e.substring(n,i))}}(i,s),p=(f=m,f.replace(uc,\" \")).split(jl);var f;for(let _=0;_0&&function(e,t,n){if(n>0&&e.firstCreatePass){for(let i=0;i>1),o++}}(Xt(),e),Xo(!1)}()}function nc(e,t){!function(e,t,n,i){const s=tn().index-19,r=[];for(let o=0;o>>2;let h,m,p;switch(3&c){case 1:const c=t[++d],f=t[++d];Ws(r,Vt(r,u),o,c,a,o[11],f,!1);break;case 0:yr(o,u,a);break;case 2:if(h=t[++d],m=n[h],p=Vt(r,u),null!==p.activeCaseIndex){const e=m.remove[p.activeCaseIndex];for(let t=0;t>>3,!1);break;case 6:const s=Vt(r,e[t+1]>>>3).activeCaseIndex;null!==s&&rt(n[i>>>3].remove[s],e)}}}const _=ac(m,a);p.activeCaseIndex=-1!==_?_:null,_>-1&&(Xl(-1,m.create[_],r,o),l=!0);break;case 3:h=t[++d],m=n[h],p=Vt(r,u),null!==p.activeCaseIndex&&e(m.update[p.activeCaseIndex],n,i,s,r,o,l)}}}}c+=u}}(i,s,r,ic,t,o),ic=0,sc=0}}function ac(e,t){let n=e.cases.indexOf(t);if(-1===n)switch(e.type){case 1:{const i=function(e,t){switch(Il(t)(e)){case 0:return\"zero\";case 1:return\"one\";case 2:return\"two\";case 3:return\"few\";case 4:return\"many\";default:return\"other\"}}(t,hc);n=e.cases.indexOf(i),-1===n&&\"other\"!==i&&(n=e.cases.indexOf(\"other\"));break}case 0:n=e.cases.indexOf(\"other\")}return n}function lc(e,t,n,i){const s=[],r=[],o=[],a=[],l=[];for(let c=0;c null != ${t} <=Actual]`)}(n,t),\"string\"==typeof e&&(hc=e.toLowerCase().replace(/_/g,\"-\"))}const pc=new Map;class fc extends it{constructor(e,t){super(),this._parent=t,this._bootstrapComponents=[],this.injector=this,this.destroyCbs=[],this.componentFactoryResolver=new Ll(this);const n=Ct(e),i=e[Fe]||null;i&&mc(i),this._bootstrapComponents=$n(n.bootstrap),this._r3Injector=oo(e,t,[{provide:it,useValue:this},{provide:Ja,useValue:this.componentFactoryResolver}],Se(e)),this._r3Injector._resolveInjectorDefTypes(),this.instance=this.get(e)}get(e,t=fo.THROW_IF_NOT_FOUND,n=ue.Default){return e===fo||e===it||e===We?this:this._r3Injector.get(e,t,n)}destroy(){const e=this._r3Injector;!e.destroyed&&e.destroy(),this.destroyCbs.forEach(e=>e()),this.destroyCbs=null}onDestroy(e){this.destroyCbs.push(e)}}class _c extends st{constructor(e){super(),this.moduleType=e,null!==Ct(e)&&function e(t){if(null!==t.\\u0275mod.id){const e=t.\\u0275mod.id;(function(e,t,n){if(t&&t!==n)throw new Error(`Duplicate module registered for ${e} - ${Se(t)} vs ${Se(t.name)}`)})(e,pc.get(e),t),pc.set(e,t)}let n=t.\\u0275mod.imports;n instanceof Function&&(n=n()),n&&n.forEach(t=>e(t))}(e)}create(e){return new fc(this.moduleType,e)}}function gc(e,t,n){const i=function(){const e=Kt.lFrame;let t=e.bindingRootIndex;return-1===t&&(t=e.bindingRootIndex=e.tView.bindingStartIndex),t}()+e,s=Qt();return s[i]===_s?function(e,t,n){return e[t]=n}(s,i,n?t.call(n):t()):function(e,t){return e[t]}(s,i)}class yc extends L{constructor(e=!1){super(),this.__isAsync=e}emit(e){super.next(e)}subscribe(e,t,n){let i,s=e=>null,r=()=>null;e&&\"object\"==typeof e?(i=this.__isAsync?t=>{setTimeout(()=>e.next(t))}:t=>{e.next(t)},e.error&&(s=this.__isAsync?t=>{setTimeout(()=>e.error(t))}:t=>{e.error(t)}),e.complete&&(r=this.__isAsync?()=>{setTimeout(()=>e.complete())}:()=>{e.complete()})):(i=this.__isAsync?t=>{setTimeout(()=>e(t))}:t=>{e(t)},t&&(s=this.__isAsync?e=>{setTimeout(()=>t(e))}:e=>{t(e)}),n&&(r=this.__isAsync?()=>{setTimeout(()=>n())}:()=>{n()}));const o=super.subscribe(i,s,r);return e instanceof u&&e.add(o),o}}function bc(){return this._results[Mo()]()}class vc{constructor(){this.dirty=!0,this._results=[],this.changes=new yc,this.length=0;const e=Mo(),t=vc.prototype;t[e]||(t[e]=bc)}map(e){return this._results.map(e)}filter(e){return this._results.filter(e)}find(e){return this._results.find(e)}reduce(e,t){return this._results.reduce(e,t)}forEach(e){this._results.forEach(e)}some(e){return this._results.some(e)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(e){this._results=function e(t,n){void 0===n&&(n=t);for(let i=0;i0)s.push(a[t/2]);else{const r=o[t+1],a=n[-i];for(let t=9;t{class e{constructor(e){this.appInits=e,this.initialized=!1,this.done=!1,this.donePromise=new Promise((e,t)=>{this.resolve=e,this.reject=t})}runInitializers(){if(this.initialized)return;const e=[],t=()=>{this.done=!0,this.resolve()};if(this.appInits)for(let n=0;n{t()}).catch(e=>{this.reject(e)}),0===e.length&&t(),this.initialized=!0}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nc,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const Vc=new Ve(\"AppId\"),Wc={provide:Vc,useFactory:function(){return`${Uc()}${Uc()}${Uc()}`},deps:[]};function Uc(){return String.fromCharCode(97+Math.floor(25*Math.random()))}const $c=new Ve(\"Platform Initializer\"),Bc=new Ve(\"Platform ID\"),qc=new Ve(\"appBootstrapListener\");let Gc=(()=>{class e{log(e){console.log(e)}warn(e){console.warn(e)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const Jc=new Ve(\"LocaleId\"),Kc=new Ve(\"DefaultCurrencyCode\");class Zc{constructor(e,t){this.ngModuleFactory=e,this.componentFactories=t}}const Qc=function(e){return new _c(e)},Xc=Qc,ed=function(e){return Promise.resolve(Qc(e))},td=function(e){const t=Qc(e),n=$n(Ct(e).declarations).reduce((e,t)=>{const n=Lt(t);return n&&e.push(new Tl(n)),e},[]);return new Zc(t,n)},nd=td,id=function(e){return Promise.resolve(td(e))};let sd=(()=>{class e{constructor(){this.compileModuleSync=Xc,this.compileModuleAsync=ed,this.compileModuleAndAllComponentsSync=nd,this.compileModuleAndAllComponentsAsync=id}clearCache(){}clearCacheFor(e){}getModuleId(e){}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const rd=new Ve(\"compilerOptions\"),od=(()=>Promise.resolve(0))();function ad(e){\"undefined\"==typeof Zone?od.then(()=>{e&&e.apply(null,null)}):Zone.current.scheduleMicroTask(\"scheduleMicrotask\",e)}class ld{constructor({enableLongStackTrace:e=!1,shouldCoalesceEventChangeDetection:t=!1}){if(this.hasPendingMacrotasks=!1,this.hasPendingMicrotasks=!1,this.isStable=!0,this.onUnstable=new yc(!1),this.onMicrotaskEmpty=new yc(!1),this.onStable=new yc(!1),this.onError=new yc(!1),\"undefined\"==typeof Zone)throw new Error(\"In this configuration Angular requires Zone.js\");Zone.assertZonePatched(),this._nesting=0,this._outer=this._inner=Zone.current,Zone.wtfZoneSpec&&(this._inner=this._inner.fork(Zone.wtfZoneSpec)),Zone.TaskTrackingZoneSpec&&(this._inner=this._inner.fork(new Zone.TaskTrackingZoneSpec)),e&&Zone.longStackTraceZoneSpec&&(this._inner=this._inner.fork(Zone.longStackTraceZoneSpec)),this.shouldCoalesceEventChangeDetection=t,this.lastRequestAnimationFrameId=-1,this.nativeRequestAnimationFrame=function(){let e=Pe.requestAnimationFrame,t=Pe.cancelAnimationFrame;if(\"undefined\"!=typeof Zone&&e&&t){const n=e[Zone.__symbol__(\"OriginalDelegate\")];n&&(e=n);const i=t[Zone.__symbol__(\"OriginalDelegate\")];i&&(t=i)}return{nativeRequestAnimationFrame:e,nativeCancelAnimationFrame:t}}().nativeRequestAnimationFrame,function(e){const t=!!e.shouldCoalesceEventChangeDetection&&e.nativeRequestAnimationFrame&&(()=>{!function(e){-1===e.lastRequestAnimationFrameId&&(e.lastRequestAnimationFrameId=e.nativeRequestAnimationFrame.call(Pe,()=>{e.lastRequestAnimationFrameId=-1,hd(e),ud(e)}),hd(e))}(e)});e._inner=e._inner.fork({name:\"angular\",properties:{isAngularZone:!0,maybeDelayChangeDetection:t},onInvokeTask:(n,i,s,r,o,a)=>{try{return md(e),n.invokeTask(s,r,o,a)}finally{t&&\"eventTask\"===r.type&&t(),pd(e)}},onInvoke:(t,n,i,s,r,o,a)=>{try{return md(e),t.invoke(i,s,r,o,a)}finally{pd(e)}},onHasTask:(t,n,i,s)=>{t.hasTask(i,s),n===i&&(\"microTask\"==s.change?(e._hasPendingMicrotasks=s.microTask,hd(e),ud(e)):\"macroTask\"==s.change&&(e.hasPendingMacrotasks=s.macroTask))},onHandleError:(t,n,i,s)=>(t.handleError(i,s),e.runOutsideAngular(()=>e.onError.emit(s)),!1)})}(this)}static isInAngularZone(){return!0===Zone.current.get(\"isAngularZone\")}static assertInAngularZone(){if(!ld.isInAngularZone())throw new Error(\"Expected to be in Angular Zone, but it is not!\")}static assertNotInAngularZone(){if(ld.isInAngularZone())throw new Error(\"Expected to not be in Angular Zone, but it is!\")}run(e,t,n){return this._inner.run(e,t,n)}runTask(e,t,n,i){const s=this._inner,r=s.scheduleEventTask(\"NgZoneEvent: \"+i,e,dd,cd,cd);try{return s.runTask(r,t,n)}finally{s.cancelTask(r)}}runGuarded(e,t,n){return this._inner.runGuarded(e,t,n)}runOutsideAngular(e){return this._outer.run(e)}}function cd(){}const dd={};function ud(e){if(0==e._nesting&&!e.hasPendingMicrotasks&&!e.isStable)try{e._nesting++,e.onMicrotaskEmpty.emit(null)}finally{if(e._nesting--,!e.hasPendingMicrotasks)try{e.runOutsideAngular(()=>e.onStable.emit(null))}finally{e.isStable=!0}}}function hd(e){e.hasPendingMicrotasks=!!(e._hasPendingMicrotasks||e.shouldCoalesceEventChangeDetection&&-1!==e.lastRequestAnimationFrameId)}function md(e){e._nesting++,e.isStable&&(e.isStable=!1,e.onUnstable.emit(null))}function pd(e){e._nesting--,ud(e)}class fd{constructor(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new yc,this.onMicrotaskEmpty=new yc,this.onStable=new yc,this.onError=new yc}run(e,t,n){return e.apply(t,n)}runGuarded(e,t,n){return e.apply(t,n)}runOutsideAngular(e){return e()}runTask(e,t,n,i){return e.apply(t,n)}}let _d=(()=>{class e{constructor(e){this._ngZone=e,this._pendingCount=0,this._isZoneStable=!0,this._didWork=!1,this._callbacks=[],this.taskTrackingZone=null,this._watchAngularEvents(),e.run(()=>{this.taskTrackingZone=\"undefined\"==typeof Zone?null:Zone.current.get(\"TaskTrackingZone\")})}_watchAngularEvents(){this._ngZone.onUnstable.subscribe({next:()=>{this._didWork=!0,this._isZoneStable=!1}}),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.subscribe({next:()=>{ld.assertNotInAngularZone(),ad(()=>{this._isZoneStable=!0,this._runCallbacksIfReady()})}})})}increasePendingRequestCount(){return this._pendingCount+=1,this._didWork=!0,this._pendingCount}decreasePendingRequestCount(){if(this._pendingCount-=1,this._pendingCount<0)throw new Error(\"pending async requests below zero\");return this._runCallbacksIfReady(),this._pendingCount}isStable(){return this._isZoneStable&&0===this._pendingCount&&!this._ngZone.hasPendingMacrotasks}_runCallbacksIfReady(){if(this.isStable())ad(()=>{for(;0!==this._callbacks.length;){let e=this._callbacks.pop();clearTimeout(e.timeoutId),e.doneCb(this._didWork)}this._didWork=!1});else{let e=this.getPendingTasks();this._callbacks=this._callbacks.filter(t=>!t.updateCb||!t.updateCb(e)||(clearTimeout(t.timeoutId),!1)),this._didWork=!0}}getPendingTasks(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(e=>({source:e.source,creationLocation:e.creationLocation,data:e.data})):[]}addCallback(e,t,n){let i=-1;t&&t>0&&(i=setTimeout(()=>{this._callbacks=this._callbacks.filter(e=>e.timeoutId!==i),e(this._didWork,this.getPendingTasks())},t)),this._callbacks.push({doneCb:e,timeoutId:i,updateCb:n})}whenStable(e,t,n){if(n&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is \"zone.js/dist/task-tracking.js\" loaded?');this.addCallback(e,t,n),this._runCallbacksIfReady()}getPendingRequestCount(){return this._pendingCount}findProviders(e,t,n){return[]}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ld))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),gd=(()=>{class e{constructor(){this._applications=new Map,vd.addToWindow(this)}registerApplication(e,t){this._applications.set(e,t)}unregisterApplication(e){this._applications.delete(e)}unregisterAllApplications(){this._applications.clear()}getTestability(e){return this._applications.get(e)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(e,t=!0){return vd.findTestabilityInTree(this,e,t)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class yd{addToWindow(e){}findTestabilityInTree(e,t,n){return null}}let bd,vd=new yd,wd=function(e,t,n){const i=new _c(n);if(0===go.size)return Promise.resolve(i);const s=function(e){const t=[];return e.forEach(e=>e&&t.push(...e)),t}(e.get(rd,[]).concat(t).map(e=>e.providers));if(0===s.length)return Promise.resolve(i);const r=function(){const e=Pe.ng;if(!e||!e.\\u0275compilerFacade)throw new Error(\"Angular JIT compilation failed: '@angular/compiler' not loaded!\\n - JIT compilation is discouraged for production use-cases! Consider AOT mode instead.\\n - Did you bootstrap using '@angular/platform-browser-dynamic' or '@angular/platform-server'?\\n - Alternatively provide the compiler with 'import \\\"@angular/compiler\\\";' before bootstrapping.\");return e.\\u0275compilerFacade}(),o=fo.create({providers:s}).get(r.ResourceLoader);return function(e){const t=[],n=new Map;function i(e){let t=n.get(e);if(!t){const i=(e=>Promise.resolve(o.get(e)))(e);n.set(e,t=i.then(bo))}return t}return go.forEach((e,n)=>{const s=[];e.templateUrl&&s.push(i(e.templateUrl).then(t=>{e.template=t}));const r=e.styleUrls,o=e.styles||(e.styles=[]),a=e.styles.length;r&&r.forEach((t,n)=>{o.push(\"\"),s.push(i(t).then(i=>{o[a+n]=i,r.splice(r.indexOf(t),1),0==r.length&&(e.styleUrls=void 0)}))});const l=Promise.all(s).then(()=>function(e){yo.delete(e)}(n));t.push(l)}),go=new Map,Promise.all(t).then(()=>{})}().then(()=>i)};const Md=new Ve(\"AllowMultipleToken\");class kd{constructor(e,t){this.name=e,this.token=t}}function Sd(e,t,n=[]){const i=`Platform: ${t}`,s=new Ve(i);return(t=[])=>{let r=Ld();if(!r||r.injector.get(Md,!1))if(e)e(n.concat(t).concat({provide:s,useValue:!0}));else{const e=n.concat(t).concat({provide:s,useValue:!0},{provide:eo,useValue:\"platform\"});!function(e){if(bd&&!bd.destroyed&&!bd.injector.get(Md,!1))throw new Error(\"There can be only one platform. Destroy the previous one to create a new one.\");bd=e.get(xd);const t=e.get($c,null);t&&t.forEach(e=>e())}(fo.create({providers:e,name:i}))}return function(e){const t=Ld();if(!t)throw new Error(\"No platform exists!\");if(!t.injector.get(e,null))throw new Error(\"A platform with a different configuration has been created. Please destroy it first.\");return t}(s)}}function Ld(){return bd&&!bd.destroyed?bd:null}let xd=(()=>{class e{constructor(e){this._injector=e,this._modules=[],this._destroyListeners=[],this._destroyed=!1}bootstrapModuleFactory(e,t){const n=function(e,t){let n;return n=\"noop\"===e?new fd:(\"zone.js\"===e?void 0:e)||new ld({enableLongStackTrace:Si(),shouldCoalesceEventChangeDetection:t}),n}(t?t.ngZone:void 0,t&&t.ngZoneEventCoalescing||!1),i=[{provide:ld,useValue:n}];return n.run(()=>{const t=fo.create({providers:i,parent:this.injector,name:e.moduleType.name}),s=e.create(t),r=s.injector.get(hi,null);if(!r)throw new Error(\"No ErrorHandler. Is platform module (BrowserModule) included?\");return s.onDestroy(()=>Dd(this._modules,s)),n.runOutsideAngular(()=>n.onError.subscribe({next:e=>{r.handleError(e)}})),function(e,t,n){try{const i=n();return Vo(i)?i.catch(n=>{throw t.runOutsideAngular(()=>e.handleError(n)),n}):i}catch(i){throw t.runOutsideAngular(()=>e.handleError(i)),i}}(r,n,()=>{const e=s.injector.get(zc);return e.runInitializers(),e.donePromise.then(()=>(mc(s.injector.get(Jc,\"en-US\")||\"en-US\"),this._moduleDoBootstrap(s),s))})})}bootstrapModule(e,t=[]){const n=Cd({},t);return wd(this.injector,n,e).then(e=>this.bootstrapModuleFactory(e,n))}_moduleDoBootstrap(e){const t=e.injector.get(Td);if(e._bootstrapComponents.length>0)e._bootstrapComponents.forEach(e=>t.bootstrap(e));else{if(!e.instance.ngDoBootstrap)throw new Error(`The module ${Se(e.instance.constructor)} was bootstrapped, but it does not declare \"@NgModule.bootstrap\" components nor a \"ngDoBootstrap\" method. `+\"Please define one of these.\");e.instance.ngDoBootstrap(t)}this._modules.push(e)}onDestroy(e){this._destroyListeners.push(e)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new Error(\"The platform has already been destroyed!\");this._modules.slice().forEach(e=>e.destroy()),this._destroyListeners.forEach(e=>e()),this._destroyed=!0}get destroyed(){return this._destroyed}}return e.\\u0275fac=function(t){return new(t||e)(Qe(fo))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function Cd(e,t){return Array.isArray(t)?t.reduce(Cd,e):Object.assign(Object.assign({},e),t)}let Td=(()=>{class e{constructor(e,t,n,i,s,r){this._zone=e,this._console=t,this._injector=n,this._exceptionHandler=i,this._componentFactoryResolver=s,this._initStatus=r,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._enforceNoNewChanges=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._enforceNoNewChanges=Si(),this._zone.onMicrotaskEmpty.subscribe({next:()=>{this._zone.run(()=>{this.tick()})}});const o=new v(e=>{this._stable=this._zone.isStable&&!this._zone.hasPendingMacrotasks&&!this._zone.hasPendingMicrotasks,this._zone.runOutsideAngular(()=>{e.next(this._stable),e.complete()})}),a=new v(e=>{let t;this._zone.runOutsideAngular(()=>{t=this._zone.onStable.subscribe(()=>{ld.assertNotInAngularZone(),ad(()=>{this._stable||this._zone.hasPendingMacrotasks||this._zone.hasPendingMicrotasks||(this._stable=!0,e.next(!0))})})});const n=this._zone.onUnstable.subscribe(()=>{ld.assertInAngularZone(),this._stable&&(this._stable=!1,this._zone.runOutsideAngular(()=>{e.next(!1)}))});return()=>{t.unsubscribe(),n.unsubscribe()}});this.isStable=G(o,a.pipe(se()))}bootstrap(e,t){if(!this._initStatus.done)throw new Error(\"Cannot bootstrap as there are still asynchronous initializers running. Bootstrap components in the `ngDoBootstrap` method of the root module.\");let n;n=e instanceof qa?e:this._componentFactoryResolver.resolveComponentFactory(e),this.componentTypes.push(n.componentType);const i=n.isBoundToModule?void 0:this._injector.get(it),s=n.create(fo.NULL,[],t||n.selector,i);s.onDestroy(()=>{this._unloadComponent(s)});const r=s.injector.get(_d,null);return r&&s.injector.get(gd).registerApplication(s.location.nativeElement,r),this._loadComponent(s),Si()&&this._console.log(\"Angular is running in the development mode. Call enableProdMode() to enable the production mode.\"),s}tick(){if(this._runningTick)throw new Error(\"ApplicationRef.tick is called recursively\");try{this._runningTick=!0;for(let e of this._views)e.detectChanges();if(this._enforceNoNewChanges)for(let e of this._views)e.checkNoChanges()}catch(e){this._zone.runOutsideAngular(()=>this._exceptionHandler.handleError(e))}finally{this._runningTick=!1}}attachView(e){const t=e;this._views.push(t),t.attachToAppRef(this)}detachView(e){const t=e;Dd(this._views,t),t.detachFromAppRef()}_loadComponent(e){this.attachView(e.hostView),this.tick(),this.components.push(e),this._injector.get(qc,[]).concat(this._bootstrapListeners).forEach(t=>t(e))}_unloadComponent(e){this.detachView(e.hostView),Dd(this.components,e)}ngOnDestroy(){this._views.slice().forEach(e=>e.destroy())}get viewCount(){return this._views.length}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ld),Qe(Gc),Qe(fo),Qe(hi),Qe(Ja),Qe(zc))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function Dd(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}class Yd{}class Ed{}const Od={factoryPathPrefix:\"\",factoryPathSuffix:\".ngfactory\"};let Id=(()=>{class e{constructor(e,t){this._compiler=e,this._config=t||Od}load(e){return this.loadAndCompile(e)}loadAndCompile(e){let[t,i]=e.split(\"#\");return void 0===i&&(i=\"default\"),n(\"zn8P\")(t).then(e=>e[i]).then(e=>Pd(e,t,i)).then(e=>this._compiler.compileModuleAsync(e))}loadFactory(e){let[t,i]=e.split(\"#\"),s=\"NgFactory\";return void 0===i&&(i=\"default\",s=\"\"),n(\"zn8P\")(this._config.factoryPathPrefix+t+this._config.factoryPathSuffix).then(e=>e[i+s]).then(e=>Pd(e,t,i))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(sd),Qe(Ed,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function Pd(e,t,n){if(!e)throw new Error(`Cannot find '${n}' in '${t}'`);return e}const Ad=Sd(null,\"core\",[{provide:Bc,useValue:\"unknown\"},{provide:xd,deps:[fo]},{provide:gd,deps:[]},{provide:Gc,deps:[]}]),Rd=[{provide:Td,useClass:Td,deps:[ld,Gc,fo,hi,Ja,zc]},{provide:Cl,deps:[ld],useFactory:function(e){let t=[];return e.onStable.subscribe(()=>{for(;t.length;)t.pop()()}),function(e){t.push(e)}}},{provide:zc,useClass:zc,deps:[[new le,Nc]]},{provide:sd,useClass:sd,deps:[]},Wc,{provide:fl,useFactory:function(){return yl},deps:[]},{provide:_l,useFactory:function(){return bl},deps:[]},{provide:Jc,useFactory:function(e){return mc(e=e||\"undefined\"!=typeof $localize&&$localize.locale||\"en-US\"),e},deps:[[new ae(Jc),new le,new de]]},{provide:Kc,useValue:\"USD\"}];let Hd=(()=>{class e{constructor(e){}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)(Qe(Td))},providers:Rd}),e})(),jd=null;function Fd(){return jd}const Nd=new Ve(\"DocumentToken\");let zd=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:Vd,token:e,providedIn:\"platform\"}),e})();function Vd(){return Qe(Ud)}const Wd=new Ve(\"Location Initialized\");let Ud=(()=>{class e extends zd{constructor(e){super(),this._doc=e,this._init()}_init(){this.location=Fd().getLocation(),this._history=Fd().getHistory()}getBaseHrefFromDOM(){return Fd().getBaseHref(this._doc)}onPopState(e){Fd().getGlobalEventTarget(this._doc,\"window\").addEventListener(\"popstate\",e,!1)}onHashChange(e){Fd().getGlobalEventTarget(this._doc,\"window\").addEventListener(\"hashchange\",e,!1)}get href(){return this.location.href}get protocol(){return this.location.protocol}get hostname(){return this.location.hostname}get port(){return this.location.port}get pathname(){return this.location.pathname}get search(){return this.location.search}get hash(){return this.location.hash}set pathname(e){this.location.pathname=e}pushState(e,t,n){$d()?this._history.pushState(e,t,n):this.location.hash=n}replaceState(e,t,n){$d()?this._history.replaceState(e,t,n):this.location.hash=n}forward(){this._history.forward()}back(){this._history.back()}getState(){return this._history.state}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({factory:Bd,token:e,providedIn:\"platform\"}),e})();function $d(){return!!window.history.pushState}function Bd(){return new Ud(Qe(Nd))}function qd(e,t){if(0==e.length)return t;if(0==t.length)return e;let n=0;return e.endsWith(\"/\")&&n++,t.startsWith(\"/\")&&n++,2==n?e+t.substring(1):1==n?e+t:e+\"/\"+t}function Gd(e){const t=e.match(/#|\\?|$/),n=t&&t.index||e.length;return e.slice(0,n-(\"/\"===e[n-1]?1:0))+e.slice(n)}function Jd(e){return e&&\"?\"!==e[0]?\"?\"+e:e}let Kd=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:Zd,token:e,providedIn:\"root\"}),e})();function Zd(e){const t=Qe(Nd).location;return new Xd(Qe(zd),t&&t.origin||\"\")}const Qd=new Ve(\"appBaseHref\");let Xd=(()=>{class e extends Kd{constructor(e,t){if(super(),this._platformLocation=e,null==t&&(t=this._platformLocation.getBaseHrefFromDOM()),null==t)throw new Error(\"No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.\");this._baseHref=t}onPopState(e){this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e)}getBaseHref(){return this._baseHref}prepareExternalUrl(e){return qd(this._baseHref,e)}path(e=!1){const t=this._platformLocation.pathname+Jd(this._platformLocation.search),n=this._platformLocation.hash;return n&&e?`${t}${n}`:t}pushState(e,t,n,i){const s=this.prepareExternalUrl(n+Jd(i));this._platformLocation.pushState(e,t,s)}replaceState(e,t,n,i){const s=this.prepareExternalUrl(n+Jd(i));this._platformLocation.replaceState(e,t,s)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(zd),Qe(Qd,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),eu=(()=>{class e extends Kd{constructor(e,t){super(),this._platformLocation=e,this._baseHref=\"\",null!=t&&(this._baseHref=t)}onPopState(e){this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e)}getBaseHref(){return this._baseHref}path(e=!1){let t=this._platformLocation.hash;return null==t&&(t=\"#\"),t.length>0?t.substring(1):t}prepareExternalUrl(e){const t=qd(this._baseHref,e);return t.length>0?\"#\"+t:t}pushState(e,t,n,i){let s=this.prepareExternalUrl(n+Jd(i));0==s.length&&(s=this._platformLocation.pathname),this._platformLocation.pushState(e,t,s)}replaceState(e,t,n,i){let s=this.prepareExternalUrl(n+Jd(i));0==s.length&&(s=this._platformLocation.pathname),this._platformLocation.replaceState(e,t,s)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(zd),Qe(Qd,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),tu=(()=>{class e{constructor(e,t){this._subject=new yc,this._urlChangeListeners=[],this._platformStrategy=e;const n=this._platformStrategy.getBaseHref();this._platformLocation=t,this._baseHref=Gd(iu(n)),this._platformStrategy.onPopState(e=>{this._subject.emit({url:this.path(!0),pop:!0,state:e.state,type:e.type})})}path(e=!1){return this.normalize(this._platformStrategy.path(e))}getState(){return this._platformLocation.getState()}isCurrentPathEqualTo(e,t=\"\"){return this.path()==this.normalize(e+Jd(t))}normalize(t){return e.stripTrailingSlash(function(e,t){return e&&t.startsWith(e)?t.substring(e.length):t}(this._baseHref,iu(t)))}prepareExternalUrl(e){return e&&\"/\"!==e[0]&&(e=\"/\"+e),this._platformStrategy.prepareExternalUrl(e)}go(e,t=\"\",n=null){this._platformStrategy.pushState(n,\"\",e,t),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+Jd(t)),n)}replaceState(e,t=\"\",n=null){this._platformStrategy.replaceState(n,\"\",e,t),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+Jd(t)),n)}forward(){this._platformStrategy.forward()}back(){this._platformStrategy.back()}onUrlChange(e){this._urlChangeListeners.push(e),this.subscribe(e=>{this._notifyUrlChangeListeners(e.url,e.state)})}_notifyUrlChangeListeners(e=\"\",t){this._urlChangeListeners.forEach(n=>n(e,t))}subscribe(e,t,n){return this._subject.subscribe({next:e,error:t,complete:n})}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Kd),Qe(zd))},e.normalizeQueryParams=Jd,e.joinWithSlash=qd,e.stripTrailingSlash=Gd,e.\\u0275prov=pe({factory:nu,token:e,providedIn:\"root\"}),e})();function nu(){return new tu(Qe(Kd),Qe(zd))}function iu(e){return e.replace(/\\/index.html$/,\"\")}const su=function(){var e={Zero:0,One:1,Two:2,Few:3,Many:4,Other:5};return e[e.Zero]=\"Zero\",e[e.One]=\"One\",e[e.Two]=\"Two\",e[e.Few]=\"Few\",e[e.Many]=\"Many\",e[e.Other]=\"Other\",e}(),ru=Il;class ou{}let au=(()=>{class e extends ou{constructor(e){super(),this.locale=e}getPluralCategory(e,t){switch(ru(t||this.locale)(e)){case su.Zero:return\"zero\";case su.One:return\"one\";case su.Two:return\"two\";case su.Few:return\"few\";case su.Many:return\"many\";default:return\"other\"}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Jc))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function lu(e,t){t=encodeURIComponent(t);for(const n of e.split(\";\")){const e=n.indexOf(\"=\"),[i,s]=-1==e?[n,\"\"]:[n.slice(0,e),n.slice(e+1)];if(i.trim()===t)return decodeURIComponent(s)}return null}let cu=(()=>{class e{constructor(e,t,n,i){this._iterableDiffers=e,this._keyValueDiffers=t,this._ngEl=n,this._renderer=i,this._iterableDiffer=null,this._keyValueDiffer=null,this._initialClasses=[],this._rawClass=null}set klass(e){this._removeClasses(this._initialClasses),this._initialClasses=\"string\"==typeof e?e.split(/\\s+/):[],this._applyClasses(this._initialClasses),this._applyClasses(this._rawClass)}set ngClass(e){this._removeClasses(this._rawClass),this._applyClasses(this._initialClasses),this._iterableDiffer=null,this._keyValueDiffer=null,this._rawClass=\"string\"==typeof e?e.split(/\\s+/):e,this._rawClass&&(So(this._rawClass)?this._iterableDiffer=this._iterableDiffers.find(this._rawClass).create():this._keyValueDiffer=this._keyValueDiffers.find(this._rawClass).create())}ngDoCheck(){if(this._iterableDiffer){const e=this._iterableDiffer.diff(this._rawClass);e&&this._applyIterableChanges(e)}else if(this._keyValueDiffer){const e=this._keyValueDiffer.diff(this._rawClass);e&&this._applyKeyValueChanges(e)}}_applyKeyValueChanges(e){e.forEachAddedItem(e=>this._toggleClass(e.key,e.currentValue)),e.forEachChangedItem(e=>this._toggleClass(e.key,e.currentValue)),e.forEachRemovedItem(e=>{e.previousValue&&this._toggleClass(e.key,!1)})}_applyIterableChanges(e){e.forEachAddedItem(e=>{if(\"string\"!=typeof e.item)throw new Error(`NgClass can only toggle CSS classes expressed as strings, got ${Se(e.item)}`);this._toggleClass(e.item,!0)}),e.forEachRemovedItem(e=>this._toggleClass(e.item,!1))}_applyClasses(e){e&&(Array.isArray(e)||e instanceof Set?e.forEach(e=>this._toggleClass(e,!0)):Object.keys(e).forEach(t=>this._toggleClass(t,!!e[t])))}_removeClasses(e){e&&(Array.isArray(e)||e instanceof Set?e.forEach(e=>this._toggleClass(e,!1)):Object.keys(e).forEach(e=>this._toggleClass(e,!1)))}_toggleClass(e,t){(e=e.trim())&&e.split(/\\s+/g).forEach(e=>{t?this._renderer.addClass(this._ngEl.nativeElement,e):this._renderer.removeClass(this._ngEl.nativeElement,e)})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(fl),Eo(_l),Eo(Ka),Eo(el))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngClass\",\"\"]],inputs:{klass:[\"class\",\"klass\"],ngClass:\"ngClass\"}}),e})();class du{constructor(e,t,n,i){this.$implicit=e,this.ngForOf=t,this.index=n,this.count=i}get first(){return 0===this.index}get last(){return this.index===this.count-1}get even(){return this.index%2==0}get odd(){return!this.even}}let uu=(()=>{class e{constructor(e,t,n){this._viewContainer=e,this._template=t,this._differs=n,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}set ngForOf(e){this._ngForOf=e,this._ngForOfDirty=!0}set ngForTrackBy(e){Si()&&null!=e&&\"function\"!=typeof e&&console&&console.warn&&console.warn(`trackBy must be a function, but received ${JSON.stringify(e)}. `+\"See https://angular.io/api/common/NgForOf#change-propagation for more information.\"),this._trackByFn=e}get ngForTrackBy(){return this._trackByFn}set ngForTemplate(e){e&&(this._template=e)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const n=this._ngForOf;if(!this._differ&&n)try{this._differ=this._differs.find(n).create(this.ngForTrackBy)}catch(t){throw new Error(`Cannot find a differ supporting object '${n}' of type '${e=n,e.name||typeof e}'. NgFor only supports binding to Iterables such as Arrays.`)}}var e;if(this._differ){const e=this._differ.diff(this._ngForOf);e&&this._applyChanges(e)}}_applyChanges(e){const t=[];e.forEachOperation((e,n,i)=>{if(null==e.previousIndex){const n=this._viewContainer.createEmbeddedView(this._template,new du(null,this._ngForOf,-1,-1),null===i?void 0:i),s=new hu(e,n);t.push(s)}else if(null==i)this._viewContainer.remove(null===n?void 0:n);else if(null!==n){const s=this._viewContainer.get(n);this._viewContainer.move(s,i);const r=new hu(e,s);t.push(r)}});for(let n=0;n{this._viewContainer.get(e.currentIndex).context.$implicit=e.item})}_perViewChange(e,t){e.context.$implicit=t.item}static ngTemplateContextGuard(e,t){return!0}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml),Eo(vl),Eo(fl))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngFor\",\"\",\"ngForOf\",\"\"]],inputs:{ngForOf:\"ngForOf\",ngForTrackBy:\"ngForTrackBy\",ngForTemplate:\"ngForTemplate\"}}),e})();class hu{constructor(e,t){this.record=e,this.view=t}}let mu=(()=>{class e{constructor(e,t){this._viewContainer=e,this._context=new pu,this._thenTemplateRef=null,this._elseTemplateRef=null,this._thenViewRef=null,this._elseViewRef=null,this._thenTemplateRef=t}set ngIf(e){this._context.$implicit=this._context.ngIf=e,this._updateView()}set ngIfThen(e){fu(\"ngIfThen\",e),this._thenTemplateRef=e,this._thenViewRef=null,this._updateView()}set ngIfElse(e){fu(\"ngIfElse\",e),this._elseTemplateRef=e,this._elseViewRef=null,this._updateView()}_updateView(){this._context.$implicit?this._thenViewRef||(this._viewContainer.clear(),this._elseViewRef=null,this._thenTemplateRef&&(this._thenViewRef=this._viewContainer.createEmbeddedView(this._thenTemplateRef,this._context))):this._elseViewRef||(this._viewContainer.clear(),this._thenViewRef=null,this._elseTemplateRef&&(this._elseViewRef=this._viewContainer.createEmbeddedView(this._elseTemplateRef,this._context)))}static ngTemplateContextGuard(e,t){return!0}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml),Eo(vl))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngIf\",\"\"]],inputs:{ngIf:\"ngIf\",ngIfThen:\"ngIfThen\",ngIfElse:\"ngIfElse\"}}),e})();class pu{constructor(){this.$implicit=null,this.ngIf=null}}function fu(e,t){if(t&&!t.createEmbeddedView)throw new Error(`${e} must be a TemplateRef, but received '${Se(t)}'.`)}class _u{constructor(e,t){this._viewContainerRef=e,this._templateRef=t,this._created=!1}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(e){e&&!this._created?this.create():!e&&this._created&&this.destroy()}}let gu=(()=>{class e{constructor(){this._defaultUsed=!1,this._caseCount=0,this._lastCaseCheckIndex=0,this._lastCasesMatched=!1}set ngSwitch(e){this._ngSwitch=e,0===this._caseCount&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(e){this._defaultViews||(this._defaultViews=[]),this._defaultViews.push(e)}_matchCase(e){const t=e==this._ngSwitch;return this._lastCasesMatched=this._lastCasesMatched||t,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),t}_updateDefaultCases(e){if(this._defaultViews&&e!==this._defaultUsed){this._defaultUsed=e;for(let t=0;t{class e{constructor(e,t,n){this.ngSwitch=n,n._addCase(),this._view=new _u(e,t)}ngDoCheck(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml),Eo(vl),Eo(gu,1))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngSwitchCase\",\"\"]],inputs:{ngSwitchCase:\"ngSwitchCase\"}}),e})(),bu=(()=>{class e{constructor(e,t,n){n._addDefault(new _u(e,t))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml),Eo(vl),Eo(gu,1))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngSwitchDefault\",\"\"]]}),e})(),vu=(()=>{class e{constructor(e,t,n){this._ngEl=e,this._differs=t,this._renderer=n,this._ngStyle=null,this._differ=null}set ngStyle(e){this._ngStyle=e,!this._differ&&e&&(this._differ=this._differs.find(e).create())}ngDoCheck(){if(this._differ){const e=this._differ.diff(this._ngStyle);e&&this._applyChanges(e)}}_setStyle(e,t){const[n,i]=e.split(\".\");null!=(t=null!=t&&i?`${t}${i}`:t)?this._renderer.setStyle(this._ngEl.nativeElement,n,t):this._renderer.removeStyle(this._ngEl.nativeElement,n)}_applyChanges(e){e.forEachRemovedItem(e=>this._setStyle(e.key,null)),e.forEachAddedItem(e=>this._setStyle(e.key,e.currentValue)),e.forEachChangedItem(e=>this._setStyle(e.key,e.currentValue))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(_l),Eo(el))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngStyle\",\"\"]],inputs:{ngStyle:\"ngStyle\"}}),e})(),wu=(()=>{class e{constructor(e){this._viewContainerRef=e,this._viewRef=null,this.ngTemplateOutletContext=null,this.ngTemplateOutlet=null}ngOnChanges(e){if(this._shouldRecreateView(e)){const e=this._viewContainerRef;this._viewRef&&e.remove(e.indexOf(this._viewRef)),this._viewRef=this.ngTemplateOutlet?e.createEmbeddedView(this.ngTemplateOutlet,this.ngTemplateOutletContext):null}else this._viewRef&&this.ngTemplateOutletContext&&this._updateExistingContext(this.ngTemplateOutletContext)}_shouldRecreateView(e){const t=e.ngTemplateOutletContext;return!!e.ngTemplateOutlet||t&&this._hasContextShapeChanged(t)}_hasContextShapeChanged(e){const t=Object.keys(e.previousValue||{}),n=Object.keys(e.currentValue||{});if(t.length===n.length){for(let e of n)if(-1===t.indexOf(e))return!0;return!1}return!0}_updateExistingContext(e){for(let t of Object.keys(e))this._viewRef.context[t]=this.ngTemplateOutletContext[t]}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngTemplateOutlet\",\"\"]],inputs:{ngTemplateOutletContext:\"ngTemplateOutletContext\",ngTemplateOutlet:\"ngTemplateOutlet\"},features:[Ra]}),e})(),Mu=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[{provide:ou,useClass:au}]}),e})();function ku(e){return\"browser\"===e}let Su=(()=>{class e{}return e.\\u0275prov=pe({token:e,providedIn:\"root\",factory:()=>new Lu(Qe(Nd),window,Qe(hi))}),e})();class Lu{constructor(e,t,n){this.document=e,this.window=t,this.errorHandler=n,this.offset=()=>[0,0]}setOffset(e){this.offset=Array.isArray(e)?()=>e:e}getScrollPosition(){return this.supportScrollRestoration()?[this.window.scrollX,this.window.scrollY]:[0,0]}scrollToPosition(e){this.supportScrollRestoration()&&this.window.scrollTo(e[0],e[1])}scrollToAnchor(e){if(this.supportScrollRestoration()){e=this.window.CSS&&this.window.CSS.escape?this.window.CSS.escape(e):e.replace(/(\\\"|\\'\\ |:|\\.|\\[|\\]|,|=)/g,\"\\\\$1\");try{const t=this.document.querySelector(`#${e}`);if(t)return void this.scrollToElement(t);const n=this.document.querySelector(`[name='${e}']`);if(n)return void this.scrollToElement(n)}catch(t){this.errorHandler.handleError(t)}}}setHistoryScrollRestoration(e){if(this.supportScrollRestoration()){const t=this.window.history;t&&t.scrollRestoration&&(t.scrollRestoration=e)}}scrollToElement(e){const t=e.getBoundingClientRect(),n=t.left+this.window.pageXOffset,i=t.top+this.window.pageYOffset,s=this.offset();this.window.scrollTo(n-s[0],i-s[1])}supportScrollRestoration(){try{return!!this.window&&!!this.window.scrollTo}catch(e){return!1}}}function xu(...e){let t=e[e.length-1];return C(t)?(e.pop(),N(e,t)):q(e)}function Cu(e,t){return V(e,t,1)}function Tu(e,t){return function(n){return n.lift(new Du(e,t))}}class Du{constructor(e,t){this.predicate=e,this.thisArg=t}call(e,t){return t.subscribe(new Yu(e,this.predicate,this.thisArg))}}class Yu extends p{constructor(e,t,n){super(e),this.predicate=t,this.thisArg=n,this.count=0}_next(e){let t;try{t=this.predicate.call(this.thisArg,e,this.count++)}catch(n){return void this.destination.error(n)}t&&this.destination.next(e)}}class Eu{}class Ou{}class Iu{constructor(e){this.normalizedNames=new Map,this.lazyUpdate=null,e?this.lazyInit=\"string\"==typeof e?()=>{this.headers=new Map,e.split(\"\\n\").forEach(e=>{const t=e.indexOf(\":\");if(t>0){const n=e.slice(0,t),i=n.toLowerCase(),s=e.slice(t+1).trim();this.maybeSetNormalizedName(n,i),this.headers.has(i)?this.headers.get(i).push(s):this.headers.set(i,[s])}})}:()=>{this.headers=new Map,Object.keys(e).forEach(t=>{let n=e[t];const i=t.toLowerCase();\"string\"==typeof n&&(n=[n]),n.length>0&&(this.headers.set(i,n),this.maybeSetNormalizedName(t,i))})}:this.headers=new Map}has(e){return this.init(),this.headers.has(e.toLowerCase())}get(e){this.init();const t=this.headers.get(e.toLowerCase());return t&&t.length>0?t[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(e){return this.init(),this.headers.get(e.toLowerCase())||null}append(e,t){return this.clone({name:e,value:t,op:\"a\"})}set(e,t){return this.clone({name:e,value:t,op:\"s\"})}delete(e,t){return this.clone({name:e,value:t,op:\"d\"})}maybeSetNormalizedName(e,t){this.normalizedNames.has(t)||this.normalizedNames.set(t,e)}init(){this.lazyInit&&(this.lazyInit instanceof Iu?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(e=>this.applyUpdate(e)),this.lazyUpdate=null))}copyFrom(e){e.init(),Array.from(e.headers.keys()).forEach(t=>{this.headers.set(t,e.headers.get(t)),this.normalizedNames.set(t,e.normalizedNames.get(t))})}clone(e){const t=new Iu;return t.lazyInit=this.lazyInit&&this.lazyInit instanceof Iu?this.lazyInit:this,t.lazyUpdate=(this.lazyUpdate||[]).concat([e]),t}applyUpdate(e){const t=e.name.toLowerCase();switch(e.op){case\"a\":case\"s\":let n=e.value;if(\"string\"==typeof n&&(n=[n]),0===n.length)return;this.maybeSetNormalizedName(e.name,t);const i=(\"a\"===e.op?this.headers.get(t):void 0)||[];i.push(...n),this.headers.set(t,i);break;case\"d\":const s=e.value;if(s){let e=this.headers.get(t);if(!e)return;e=e.filter(e=>-1===s.indexOf(e)),0===e.length?(this.headers.delete(t),this.normalizedNames.delete(t)):this.headers.set(t,e)}else this.headers.delete(t),this.normalizedNames.delete(t)}}forEach(e){this.init(),Array.from(this.normalizedNames.keys()).forEach(t=>e(this.normalizedNames.get(t),this.headers.get(t)))}}class Pu{encodeKey(e){return Au(e)}encodeValue(e){return Au(e)}decodeKey(e){return decodeURIComponent(e)}decodeValue(e){return decodeURIComponent(e)}}function Au(e){return encodeURIComponent(e).replace(/%40/gi,\"@\").replace(/%3A/gi,\":\").replace(/%24/gi,\"$\").replace(/%2C/gi,\",\").replace(/%3B/gi,\";\").replace(/%2B/gi,\"+\").replace(/%3D/gi,\"=\").replace(/%3F/gi,\"?\").replace(/%2F/gi,\"/\")}class Ru{constructor(e={}){if(this.updates=null,this.cloneFrom=null,this.encoder=e.encoder||new Pu,e.fromString){if(e.fromObject)throw new Error(\"Cannot specify both fromString and fromObject.\");this.map=function(e,t){const n=new Map;return e.length>0&&e.split(\"&\").forEach(e=>{const i=e.indexOf(\"=\"),[s,r]=-1==i?[t.decodeKey(e),\"\"]:[t.decodeKey(e.slice(0,i)),t.decodeValue(e.slice(i+1))],o=n.get(s)||[];o.push(r),n.set(s,o)}),n}(e.fromString,this.encoder)}else e.fromObject?(this.map=new Map,Object.keys(e.fromObject).forEach(t=>{const n=e.fromObject[t];this.map.set(t,Array.isArray(n)?n:[n])})):this.map=null}has(e){return this.init(),this.map.has(e)}get(e){this.init();const t=this.map.get(e);return t?t[0]:null}getAll(e){return this.init(),this.map.get(e)||null}keys(){return this.init(),Array.from(this.map.keys())}append(e,t){return this.clone({param:e,value:t,op:\"a\"})}set(e,t){return this.clone({param:e,value:t,op:\"s\"})}delete(e,t){return this.clone({param:e,value:t,op:\"d\"})}toString(){return this.init(),this.keys().map(e=>{const t=this.encoder.encodeKey(e);return this.map.get(e).map(e=>t+\"=\"+this.encoder.encodeValue(e)).join(\"&\")}).filter(e=>\"\"!==e).join(\"&\")}clone(e){const t=new Ru({encoder:this.encoder});return t.cloneFrom=this.cloneFrom||this,t.updates=(this.updates||[]).concat([e]),t}init(){null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(e=>this.map.set(e,this.cloneFrom.map.get(e))),this.updates.forEach(e=>{switch(e.op){case\"a\":case\"s\":const t=(\"a\"===e.op?this.map.get(e.param):void 0)||[];t.push(e.value),this.map.set(e.param,t);break;case\"d\":if(void 0===e.value){this.map.delete(e.param);break}{let t=this.map.get(e.param)||[];const n=t.indexOf(e.value);-1!==n&&t.splice(n,1),t.length>0?this.map.set(e.param,t):this.map.delete(e.param)}}}),this.cloneFrom=this.updates=null)}}function Hu(e){return\"undefined\"!=typeof ArrayBuffer&&e instanceof ArrayBuffer}function ju(e){return\"undefined\"!=typeof Blob&&e instanceof Blob}function Fu(e){return\"undefined\"!=typeof FormData&&e instanceof FormData}class Nu{constructor(e,t,n,i){let s;if(this.url=t,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType=\"json\",this.method=e.toUpperCase(),function(e){switch(e){case\"DELETE\":case\"GET\":case\"HEAD\":case\"OPTIONS\":case\"JSONP\":return!1;default:return!0}}(this.method)||i?(this.body=void 0!==n?n:null,s=i):s=n,s&&(this.reportProgress=!!s.reportProgress,this.withCredentials=!!s.withCredentials,s.responseType&&(this.responseType=s.responseType),s.headers&&(this.headers=s.headers),s.params&&(this.params=s.params)),this.headers||(this.headers=new Iu),this.params){const e=this.params.toString();if(0===e.length)this.urlWithParams=t;else{const n=t.indexOf(\"?\");this.urlWithParams=t+(-1===n?\"?\":nt.set(n,e.setHeaders[n]),a)),e.setParams&&(l=Object.keys(e.setParams).reduce((t,n)=>t.set(n,e.setParams[n]),l)),new Nu(t,n,s,{params:l,headers:a,reportProgress:o,responseType:i,withCredentials:r})}}const zu=function(){var e={Sent:0,UploadProgress:1,ResponseHeader:2,DownloadProgress:3,Response:4,User:5};return e[e.Sent]=\"Sent\",e[e.UploadProgress]=\"UploadProgress\",e[e.ResponseHeader]=\"ResponseHeader\",e[e.DownloadProgress]=\"DownloadProgress\",e[e.Response]=\"Response\",e[e.User]=\"User\",e}();class Vu{constructor(e,t=200,n=\"OK\"){this.headers=e.headers||new Iu,this.status=void 0!==e.status?e.status:t,this.statusText=e.statusText||n,this.url=e.url||null,this.ok=this.status>=200&&this.status<300}}class Wu extends Vu{constructor(e={}){super(e),this.type=zu.ResponseHeader}clone(e={}){return new Wu({headers:e.headers||this.headers,status:void 0!==e.status?e.status:this.status,statusText:e.statusText||this.statusText,url:e.url||this.url||void 0})}}class Uu extends Vu{constructor(e={}){super(e),this.type=zu.Response,this.body=void 0!==e.body?e.body:null}clone(e={}){return new Uu({body:void 0!==e.body?e.body:this.body,headers:e.headers||this.headers,status:void 0!==e.status?e.status:this.status,statusText:e.statusText||this.statusText,url:e.url||this.url||void 0})}}class $u extends Vu{constructor(e){super(e,0,\"Unknown Error\"),this.name=\"HttpErrorResponse\",this.ok=!1,this.message=this.status>=200&&this.status<300?`Http failure during parsing for ${e.url||\"(unknown url)\"}`:`Http failure response for ${e.url||\"(unknown url)\"}: ${e.status} ${e.statusText}`,this.error=e.error||null}}function Bu(e,t){return{body:t,headers:e.headers,observe:e.observe,params:e.params,reportProgress:e.reportProgress,responseType:e.responseType,withCredentials:e.withCredentials}}let qu=(()=>{class e{constructor(e){this.handler=e}request(e,t,n={}){let i;if(e instanceof Nu)i=e;else{let s=void 0;s=n.headers instanceof Iu?n.headers:new Iu(n.headers);let r=void 0;n.params&&(r=n.params instanceof Ru?n.params:new Ru({fromObject:n.params})),i=new Nu(e,t,void 0!==n.body?n.body:null,{headers:s,params:r,reportProgress:n.reportProgress,responseType:n.responseType||\"json\",withCredentials:n.withCredentials})}const s=xu(i).pipe(Cu(e=>this.handler.handle(e)));if(e instanceof Nu||\"events\"===n.observe)return s;const r=s.pipe(Tu(e=>e instanceof Uu));switch(n.observe||\"body\"){case\"body\":switch(i.responseType){case\"arraybuffer\":return r.pipe(H(e=>{if(null!==e.body&&!(e.body instanceof ArrayBuffer))throw new Error(\"Response is not an ArrayBuffer.\");return e.body}));case\"blob\":return r.pipe(H(e=>{if(null!==e.body&&!(e.body instanceof Blob))throw new Error(\"Response is not a Blob.\");return e.body}));case\"text\":return r.pipe(H(e=>{if(null!==e.body&&\"string\"!=typeof e.body)throw new Error(\"Response is not a string.\");return e.body}));case\"json\":default:return r.pipe(H(e=>e.body))}case\"response\":return r;default:throw new Error(`Unreachable: unhandled observe type ${n.observe}}`)}}delete(e,t={}){return this.request(\"DELETE\",e,t)}get(e,t={}){return this.request(\"GET\",e,t)}head(e,t={}){return this.request(\"HEAD\",e,t)}jsonp(e,t){return this.request(\"JSONP\",e,{params:(new Ru).append(t,\"JSONP_CALLBACK\"),observe:\"body\",responseType:\"json\"})}options(e,t={}){return this.request(\"OPTIONS\",e,t)}patch(e,t,n={}){return this.request(\"PATCH\",e,Bu(n,t))}post(e,t,n={}){return this.request(\"POST\",e,Bu(n,t))}put(e,t,n={}){return this.request(\"PUT\",e,Bu(n,t))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Eu))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class Gu{constructor(e,t){this.next=e,this.interceptor=t}handle(e){return this.interceptor.intercept(e,this.next)}}const Ju=new Ve(\"HTTP_INTERCEPTORS\");let Ku=(()=>{class e{intercept(e,t){return t.handle(e)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const Zu=/^\\)\\]\\}',?\\n/;class Qu{}let Xu=(()=>{class e{constructor(){}build(){return new XMLHttpRequest}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),eh=(()=>{class e{constructor(e){this.xhrFactory=e}handle(e){if(\"JSONP\"===e.method)throw new Error(\"Attempted to construct Jsonp request without JsonpClientModule installed.\");return new v(t=>{const n=this.xhrFactory.build();if(n.open(e.method,e.urlWithParams),e.withCredentials&&(n.withCredentials=!0),e.headers.forEach((e,t)=>n.setRequestHeader(e,t.join(\",\"))),e.headers.has(\"Accept\")||n.setRequestHeader(\"Accept\",\"application/json, text/plain, */*\"),!e.headers.has(\"Content-Type\")){const t=e.detectContentTypeHeader();null!==t&&n.setRequestHeader(\"Content-Type\",t)}if(e.responseType){const t=e.responseType.toLowerCase();n.responseType=\"json\"!==t?t:\"text\"}const i=e.serializeBody();let s=null;const r=()=>{if(null!==s)return s;const t=1223===n.status?204:n.status,i=n.statusText||\"OK\",r=new Iu(n.getAllResponseHeaders()),o=function(e){return\"responseURL\"in e&&e.responseURL?e.responseURL:/^X-Request-URL:/m.test(e.getAllResponseHeaders())?e.getResponseHeader(\"X-Request-URL\"):null}(n)||e.url;return s=new Wu({headers:r,status:t,statusText:i,url:o}),s},o=()=>{let{headers:i,status:s,statusText:o,url:a}=r(),l=null;204!==s&&(l=void 0===n.response?n.responseText:n.response),0===s&&(s=l?200:0);let c=s>=200&&s<300;if(\"json\"===e.responseType&&\"string\"==typeof l){const e=l;l=l.replace(Zu,\"\");try{l=\"\"!==l?JSON.parse(l):null}catch(d){l=e,c&&(c=!1,l={error:d,text:l})}}c?(t.next(new Uu({body:l,headers:i,status:s,statusText:o,url:a||void 0})),t.complete()):t.error(new $u({error:l,headers:i,status:s,statusText:o,url:a||void 0}))},a=e=>{const{url:i}=r(),s=new $u({error:e,status:n.status||0,statusText:n.statusText||\"Unknown Error\",url:i||void 0});t.error(s)};let l=!1;const c=i=>{l||(t.next(r()),l=!0);let s={type:zu.DownloadProgress,loaded:i.loaded};i.lengthComputable&&(s.total=i.total),\"text\"===e.responseType&&n.responseText&&(s.partialText=n.responseText),t.next(s)},d=e=>{let n={type:zu.UploadProgress,loaded:e.loaded};e.lengthComputable&&(n.total=e.total),t.next(n)};return n.addEventListener(\"load\",o),n.addEventListener(\"error\",a),e.reportProgress&&(n.addEventListener(\"progress\",c),null!==i&&n.upload&&n.upload.addEventListener(\"progress\",d)),n.send(i),t.next({type:zu.Sent}),()=>{n.removeEventListener(\"error\",a),n.removeEventListener(\"load\",o),e.reportProgress&&(n.removeEventListener(\"progress\",c),null!==i&&n.upload&&n.upload.removeEventListener(\"progress\",d)),n.abort()}})}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Qu))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const th=new Ve(\"XSRF_COOKIE_NAME\"),nh=new Ve(\"XSRF_HEADER_NAME\");class ih{}let sh=(()=>{class e{constructor(e,t,n){this.doc=e,this.platform=t,this.cookieName=n,this.lastCookieString=\"\",this.lastToken=null,this.parseCount=0}getToken(){if(\"server\"===this.platform)return null;const e=this.doc.cookie||\"\";return e!==this.lastCookieString&&(this.parseCount++,this.lastToken=lu(e,this.cookieName),this.lastCookieString=e),this.lastToken}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd),Qe(Bc),Qe(th))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),rh=(()=>{class e{constructor(e,t){this.tokenService=e,this.headerName=t}intercept(e,t){const n=e.url.toLowerCase();if(\"GET\"===e.method||\"HEAD\"===e.method||n.startsWith(\"http://\")||n.startsWith(\"https://\"))return t.handle(e);const i=this.tokenService.getToken();return null===i||e.headers.has(this.headerName)||(e=e.clone({headers:e.headers.set(this.headerName,i)})),t.handle(e)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ih),Qe(nh))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),oh=(()=>{class e{constructor(e,t){this.backend=e,this.injector=t,this.chain=null}handle(e){if(null===this.chain){const e=this.injector.get(Ju,[]);this.chain=e.reduceRight((e,t)=>new Gu(e,t),this.backend)}return this.chain.handle(e)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Ou),Qe(fo))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),ah=(()=>{class e{static disable(){return{ngModule:e,providers:[{provide:rh,useClass:Ku}]}}static withOptions(t={}){return{ngModule:e,providers:[t.cookieName?{provide:th,useValue:t.cookieName}:[],t.headerName?{provide:nh,useValue:t.headerName}:[]]}}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[rh,{provide:Ju,useExisting:rh,multi:!0},{provide:ih,useClass:sh},{provide:th,useValue:\"XSRF-TOKEN\"},{provide:nh,useValue:\"X-XSRF-TOKEN\"}]}),e})(),lh=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[qu,{provide:Eu,useClass:oh},eh,{provide:Ou,useExisting:eh},Xu,{provide:Qu,useExisting:Xu}],imports:[[ah.withOptions({cookieName:\"XSRF-TOKEN\",headerName:\"X-XSRF-TOKEN\"})]]}),e})();function ch(...e){if(1===e.length){const t=e[0];if(l(t))return dh(t,null);if(c(t)&&Object.getPrototypeOf(t)===Object.prototype){const e=Object.keys(t);return dh(e.map(e=>t[e]),e)}}if(\"function\"==typeof e[e.length-1]){const t=e.pop();return dh(e=1===e.length&&l(e[0])?e[0]:e,null).pipe(H(e=>t(...e)))}return dh(e,null)}function dh(e,t){return new v(n=>{const i=e.length;if(0===i)return void n.complete();const s=new Array(i);let r=0,o=0;for(let a=0;a{c||(c=!0,o++),s[a]=e},error:e=>n.error(e),complete:()=>{r++,r!==i&&c||(o===i&&n.next(t?t.reduce((e,t,n)=>(e[t]=s[n],e),{}):s),n.complete())}}))}})}const uh=new Ve(\"NgValueAccessor\"),hh={provide:uh,useExisting:Ce(()=>mh),multi:!0};let mh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this.onChange=e=>{},this.onTouched=()=>{}}writeValue(e){this._renderer.setProperty(this._elementRef.nativeElement,\"checked\",e)}registerOnChange(e){this.onChange=e}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"type\",\"checkbox\",\"formControlName\",\"\"],[\"input\",\"type\",\"checkbox\",\"formControl\",\"\"],[\"input\",\"type\",\"checkbox\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(e){return t.onChange(e.target.checked)}))(\"blur\",(function(){return t.onTouched()}))},features:[Ba([hh])]}),e})();const ph={provide:uh,useExisting:Ce(()=>_h),multi:!0},fh=new Ve(\"CompositionEventMode\");let _h=(()=>{class e{constructor(e,t,n){this._renderer=e,this._elementRef=t,this._compositionMode=n,this.onChange=e=>{},this.onTouched=()=>{},this._composing=!1,null==this._compositionMode&&(this._compositionMode=!function(){const e=Fd()?Fd().getUserAgent():\"\";return/android (\\d+)/.test(e.toLowerCase())}())}writeValue(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",null==e?\"\":e)}registerOnChange(e){this.onChange=e}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}_handleInput(e){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(e)}_compositionStart(){this._composing=!0}_compositionEnd(e){this._composing=!1,this._compositionMode&&this.onChange(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka),Eo(fh,8))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"formControlName\",\"\",3,\"type\",\"checkbox\"],[\"textarea\",\"formControlName\",\"\"],[\"input\",\"formControl\",\"\",3,\"type\",\"checkbox\"],[\"textarea\",\"formControl\",\"\"],[\"input\",\"ngModel\",\"\",3,\"type\",\"checkbox\"],[\"textarea\",\"ngModel\",\"\"],[\"\",\"ngDefaultControl\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"input\",(function(e){return t._handleInput(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))(\"compositionstart\",(function(){return t._compositionStart()}))(\"compositionend\",(function(e){return t._compositionEnd(e.target.value)}))},features:[Ba([ph])]}),e})(),gh=(()=>{class e{get value(){return this.control?this.control.value:null}get valid(){return this.control?this.control.valid:null}get invalid(){return this.control?this.control.invalid:null}get pending(){return this.control?this.control.pending:null}get disabled(){return this.control?this.control.disabled:null}get enabled(){return this.control?this.control.enabled:null}get errors(){return this.control?this.control.errors:null}get pristine(){return this.control?this.control.pristine:null}get dirty(){return this.control?this.control.dirty:null}get touched(){return this.control?this.control.touched:null}get status(){return this.control?this.control.status:null}get untouched(){return this.control?this.control.untouched:null}get statusChanges(){return this.control?this.control.statusChanges:null}get valueChanges(){return this.control?this.control.valueChanges:null}get path(){return null}reset(e){this.control&&this.control.reset(e)}hasError(e,t){return!!this.control&&this.control.hasError(e,t)}getError(e,t){return this.control?this.control.getError(e,t):null}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e}),e})(),yh=(()=>{class e extends gh{get formDirective(){return null}get path(){return null}}return e.\\u0275fac=function(t){return bh(t||e)},e.\\u0275dir=St({type:e,features:[Ya]}),e})();const bh=li(yh);function vh(){throw new Error(\"unimplemented\")}class wh extends gh{constructor(){super(...arguments),this._parent=null,this.name=null,this.valueAccessor=null,this._rawValidators=[],this._rawAsyncValidators=[]}get validator(){return vh()}get asyncValidator(){return vh()}}class Mh{constructor(e){this._cd=e}get ngClassUntouched(){return!!this._cd.control&&this._cd.control.untouched}get ngClassTouched(){return!!this._cd.control&&this._cd.control.touched}get ngClassPristine(){return!!this._cd.control&&this._cd.control.pristine}get ngClassDirty(){return!!this._cd.control&&this._cd.control.dirty}get ngClassValid(){return!!this._cd.control&&this._cd.control.valid}get ngClassInvalid(){return!!this._cd.control&&this._cd.control.invalid}get ngClassPending(){return!!this._cd.control&&this._cd.control.pending}}let kh=(()=>{class e extends Mh{constructor(e){super(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(wh,2))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formControlName\",\"\"],[\"\",\"ngModel\",\"\"],[\"\",\"formControl\",\"\"]],hostVars:14,hostBindings:function(e,t){2&e&&ua(\"ng-untouched\",t.ngClassUntouched)(\"ng-touched\",t.ngClassTouched)(\"ng-pristine\",t.ngClassPristine)(\"ng-dirty\",t.ngClassDirty)(\"ng-valid\",t.ngClassValid)(\"ng-invalid\",t.ngClassInvalid)(\"ng-pending\",t.ngClassPending)},features:[Ya]}),e})(),Sh=(()=>{class e extends Mh{constructor(e){super(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,2))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formGroupName\",\"\"],[\"\",\"formArrayName\",\"\"],[\"\",\"ngModelGroup\",\"\"],[\"\",\"formGroup\",\"\"],[\"form\",3,\"ngNoForm\",\"\"],[\"\",\"ngForm\",\"\"]],hostVars:14,hostBindings:function(e,t){2&e&&ua(\"ng-untouched\",t.ngClassUntouched)(\"ng-touched\",t.ngClassTouched)(\"ng-pristine\",t.ngClassPristine)(\"ng-dirty\",t.ngClassDirty)(\"ng-valid\",t.ngClassValid)(\"ng-invalid\",t.ngClassInvalid)(\"ng-pending\",t.ngClassPending)},features:[Ya]}),e})();function Lh(e){return null==e||0===e.length}const xh=new Ve(\"NgValidators\"),Ch=new Ve(\"NgAsyncValidators\"),Th=/^(?=.{1,254}$)(?=.{1,64}@)[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;class Dh{static min(e){return t=>{if(Lh(t.value)||Lh(e))return null;const n=parseFloat(t.value);return!isNaN(n)&&n{if(Lh(t.value)||Lh(e))return null;const n=parseFloat(t.value);return!isNaN(n)&&n>e?{max:{max:e,actual:t.value}}:null}}static required(e){return Lh(e.value)?{required:!0}:null}static requiredTrue(e){return!0===e.value?null:{required:!0}}static email(e){return Lh(e.value)||Th.test(e.value)?null:{email:!0}}static minLength(e){return t=>{if(Lh(t.value))return null;const n=t.value?t.value.length:0;return n{const n=t.value?t.value.length:0;return n>e?{maxlength:{requiredLength:e,actualLength:n}}:null}}static pattern(e){if(!e)return Dh.nullValidator;let t,n;return\"string\"==typeof e?(n=\"\",\"^\"!==e.charAt(0)&&(n+=\"^\"),n+=e,\"$\"!==e.charAt(e.length-1)&&(n+=\"$\"),t=new RegExp(n)):(n=e.toString(),t=e),e=>{if(Lh(e.value))return null;const i=e.value;return t.test(i)?null:{pattern:{requiredPattern:n,actualValue:i}}}}static nullValidator(e){return null}static compose(e){if(!e)return null;const t=e.filter(Yh);return 0==t.length?null:function(e){return Oh(function(e,t){return t.map(t=>t(e))}(e,t))}}static composeAsync(e){if(!e)return null;const t=e.filter(Yh);return 0==t.length?null:function(e){return ch(function(e,t){return t.map(t=>t(e))}(e,t).map(Eh)).pipe(H(Oh))}}}function Yh(e){return null!=e}function Eh(e){const t=Vo(e)?z(e):e;if(!Wo(t))throw new Error(\"Expected validator to return Promise or Observable.\");return t}function Oh(e){let t={};return e.forEach(e=>{t=null!=e?Object.assign(Object.assign({},t),e):t}),0===Object.keys(t).length?null:t}function Ih(e){return e.validate?t=>e.validate(t):e}function Ph(e){return e.validate?t=>e.validate(t):e}const Ah={provide:uh,useExisting:Ce(()=>Rh),multi:!0};let Rh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this.onChange=e=>{},this.onTouched=()=>{}}writeValue(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",null==e?\"\":e)}registerOnChange(e){this.onChange=t=>{e(\"\"==t?null:parseFloat(t))}}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"type\",\"number\",\"formControlName\",\"\"],[\"input\",\"type\",\"number\",\"formControl\",\"\"],[\"input\",\"type\",\"number\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"input\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},features:[Ba([Ah])]}),e})();const Hh={provide:uh,useExisting:Ce(()=>Fh),multi:!0};let jh=(()=>{class e{constructor(){this._accessors=[]}add(e,t){this._accessors.push([e,t])}remove(e){for(let t=this._accessors.length-1;t>=0;--t)if(this._accessors[t][1]===e)return void this._accessors.splice(t,1)}select(e){this._accessors.forEach(t=>{this._isSameGroup(t,e)&&t[1]!==e&&t[1].fireUncheck(e.value)})}_isSameGroup(e,t){return!!e[0].control&&e[0]._parent===t._control._parent&&e[1].name===t.name}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),Fh=(()=>{class e{constructor(e,t,n,i){this._renderer=e,this._elementRef=t,this._registry=n,this._injector=i,this.onChange=()=>{},this.onTouched=()=>{}}ngOnInit(){this._control=this._injector.get(wh),this._checkName(),this._registry.add(this._control,this)}ngOnDestroy(){this._registry.remove(this)}writeValue(e){this._state=e===this.value,this._renderer.setProperty(this._elementRef.nativeElement,\"checked\",this._state)}registerOnChange(e){this._fn=e,this.onChange=()=>{e(this.value),this._registry.select(this)}}fireUncheck(e){this.writeValue(e)}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}_checkName(){this.name&&this.formControlName&&this.name!==this.formControlName&&this._throwNameError(),!this.name&&this.formControlName&&(this.name=this.formControlName)}_throwNameError(){throw new Error('\\n If you define both a name and a formControlName attribute on your radio button, their values\\n must match. Ex: \\n ')}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka),Eo(jh),Eo(fo))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"type\",\"radio\",\"formControlName\",\"\"],[\"input\",\"type\",\"radio\",\"formControl\",\"\"],[\"input\",\"type\",\"radio\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(){return t.onChange()}))(\"blur\",(function(){return t.onTouched()}))},inputs:{name:\"name\",formControlName:\"formControlName\",value:\"value\"},features:[Ba([Hh])]}),e})();const Nh={provide:uh,useExisting:Ce(()=>zh),multi:!0};let zh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this.onChange=e=>{},this.onTouched=()=>{}}writeValue(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",parseFloat(e))}registerOnChange(e){this.onChange=t=>{e(\"\"==t?null:parseFloat(t))}}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"type\",\"range\",\"formControlName\",\"\"],[\"input\",\"type\",\"range\",\"formControl\",\"\"],[\"input\",\"type\",\"range\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"input\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},features:[Ba([Nh])]}),e})();const Vh='\\n

\\n \\n
\\n\\n In your class:\\n\\n this.myGroup = new FormGroup({\\n firstName: new FormControl()\\n });',Wh='\\n
\\n
\\n \\n
\\n
\\n\\n In your class:\\n\\n this.myGroup = new FormGroup({\\n person: new FormGroup({ firstName: new FormControl() })\\n });',Uh='\\n
\\n
\\n \\n
\\n
';class $h{static controlParentException(){throw new Error(`formControlName must be used with a parent formGroup directive. You'll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n ${Vh}`)}static ngModelGroupException(){throw new Error(`formControlName cannot be used with an ngModelGroup parent. It is only compatible with parents\\n that also have a \"form\" prefix: formGroupName, formArrayName, or formGroup.\\n\\n Option 1: Update the parent to be formGroupName (reactive form strategy)\\n\\n ${Wh}\\n\\n Option 2: Use ngModel instead of formControlName (template-driven strategy)\\n\\n ${Uh}`)}static missingFormException(){throw new Error(`formGroup expects a FormGroup instance. Please pass one in.\\n\\n Example:\\n\\n ${Vh}`)}static groupParentException(){throw new Error(`formGroupName must be used with a parent formGroup directive. You'll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n ${Wh}`)}static arrayParentException(){throw new Error('formArrayName must be used with a parent formGroup directive. You\\'ll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n \\n
\\n
\\n
\\n \\n
\\n
\\n
\\n\\n In your class:\\n\\n this.cityArray = new FormArray([new FormControl(\\'SF\\')]);\\n this.myGroup = new FormGroup({\\n cities: this.cityArray\\n });')}static disabledAttrWarning(){console.warn(\"\\n It looks like you're using the disabled attribute with a reactive form directive. If you set disabled to true\\n when you set up this control in your component class, the disabled attribute will actually be set in the DOM for\\n you. We recommend using this approach to avoid 'changed after checked' errors.\\n \\n Example: \\n form = new FormGroup({\\n first: new FormControl({value: 'Nancy', disabled: true}, Validators.required),\\n last: new FormControl('Drew', Validators.required)\\n });\\n \")}static ngModelWarning(e){console.warn(`\\n It looks like you're using ngModel on the same form field as ${e}. \\n Support for using the ngModel input property and ngModelChange event with \\n reactive form directives has been deprecated in Angular v6 and will be removed \\n in Angular v7.\\n \\n For more information on this, see our API docs here:\\n https://angular.io/api/forms/${\"formControl\"===e?\"FormControlDirective\":\"FormControlName\"}#use-with-ngmodel\\n `)}}const Bh={provide:uh,useExisting:Ce(()=>qh),multi:!0};let qh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this._optionMap=new Map,this._idCounter=0,this.onChange=e=>{},this.onTouched=()=>{},this._compareWith=ko}set compareWith(e){if(\"function\"!=typeof e)throw new Error(`compareWith must be a function, but received ${JSON.stringify(e)}`);this._compareWith=e}writeValue(e){this.value=e;const t=this._getOptionId(e);null==t&&this._renderer.setProperty(this._elementRef.nativeElement,\"selectedIndex\",-1);const n=function(e,t){return null==e?`${t}`:(t&&\"object\"==typeof t&&(t=\"Object\"),`${e}: ${t}`.slice(0,50))}(t,e);this._renderer.setProperty(this._elementRef.nativeElement,\"value\",n)}registerOnChange(e){this.onChange=t=>{this.value=this._getOptionValue(t),e(this.value)}}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}_registerOption(){return(this._idCounter++).toString()}_getOptionId(e){for(const t of Array.from(this._optionMap.keys()))if(this._compareWith(this._optionMap.get(t),e))return t;return null}_getOptionValue(e){const t=function(e){return e.split(\":\")[0]}(e);return this._optionMap.has(t)?this._optionMap.get(t):e}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"select\",\"formControlName\",\"\",3,\"multiple\",\"\"],[\"select\",\"formControl\",\"\",3,\"multiple\",\"\"],[\"select\",\"ngModel\",\"\",3,\"multiple\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},inputs:{compareWith:\"compareWith\"},features:[Ba([Bh])]}),e})();const Gh={provide:uh,useExisting:Ce(()=>Jh),multi:!0};let Jh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this._optionMap=new Map,this._idCounter=0,this.onChange=e=>{},this.onTouched=()=>{},this._compareWith=ko}set compareWith(e){if(\"function\"!=typeof e)throw new Error(`compareWith must be a function, but received ${JSON.stringify(e)}`);this._compareWith=e}writeValue(e){let t;if(this.value=e,Array.isArray(e)){const n=e.map(e=>this._getOptionId(e));t=(e,t)=>{e._setSelected(n.indexOf(t.toString())>-1)}}else t=(e,t)=>{e._setSelected(!1)};this._optionMap.forEach(t)}registerOnChange(e){this.onChange=t=>{const n=[];if(t.hasOwnProperty(\"selectedOptions\")){const e=t.selectedOptions;for(let t=0;t{e._pendingValue=n,e._pendingChange=!0,e._pendingDirty=!0,\"change\"===e.updateOn&&Qh(e,t)})}(e,t),function(e,t){e.registerOnChange((e,n)=>{t.valueAccessor.writeValue(e),n&&t.viewToModelUpdate(e)})}(e,t),function(e,t){t.valueAccessor.registerOnTouched(()=>{e._pendingTouched=!0,\"blur\"===e.updateOn&&e._pendingChange&&Qh(e,t),\"submit\"!==e.updateOn&&e.markAsTouched()})}(e,t),t.valueAccessor.setDisabledState&&e.registerOnDisabledChange(e=>{t.valueAccessor.setDisabledState(e)}),t._rawValidators.forEach(t=>{t.registerOnValidatorChange&&t.registerOnValidatorChange(()=>e.updateValueAndValidity())}),t._rawAsyncValidators.forEach(t=>{t.registerOnValidatorChange&&t.registerOnValidatorChange(()=>e.updateValueAndValidity())})}function Qh(e,t){e._pendingDirty&&e.markAsDirty(),e.setValue(e._pendingValue,{emitModelToViewChange:!1}),t.viewToModelUpdate(e._pendingValue),e._pendingChange=!1}function Xh(e,t){null==e&&tm(t,\"Cannot find control with\"),e.validator=Dh.compose([e.validator,t.validator]),e.asyncValidator=Dh.composeAsync([e.asyncValidator,t.asyncValidator])}function em(e){return tm(e,\"There is no FormControl instance attached to form control element with\")}function tm(e,t){let n;throw n=e.path.length>1?`path: '${e.path.join(\" -> \")}'`:e.path[0]?`name: '${e.path}'`:\"unspecified name attribute\",new Error(`${t} ${n}`)}function nm(e){return null!=e?Dh.compose(e.map(Ih)):null}function im(e){return null!=e?Dh.composeAsync(e.map(Ph)):null}function sm(e,t){if(!e.hasOwnProperty(\"model\"))return!1;const n=e.model;return!!n.isFirstChange()||!ko(t,n.currentValue)}const rm=[mh,zh,Rh,qh,Jh,Fh];function om(e,t){e._syncPendingControls(),t.forEach(e=>{const t=e.control;\"submit\"===t.updateOn&&t._pendingChange&&(e.viewToModelUpdate(t._pendingValue),t._pendingChange=!1)})}function am(e,t){if(!t)return null;Array.isArray(t)||tm(e,\"Value accessor was not provided as an array for form control with\");let n=void 0,i=void 0,s=void 0;return t.forEach(t=>{var r;t.constructor===_h?n=t:(r=t,rm.some(e=>r.constructor===e)?(i&&tm(e,\"More than one built-in value accessor matches form control with\"),i=t):(s&&tm(e,\"More than one custom value accessor matches form control with\"),s=t))}),s||i||n||(tm(e,\"No valid value accessor for form control with\"),null)}function lm(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}function cm(e,t,n,i){Si()&&\"never\"!==i&&((null!==i&&\"once\"!==i||t._ngModelWarningSentOnce)&&(\"always\"!==i||n._ngModelWarningSent)||($h.ngModelWarning(e),t._ngModelWarningSentOnce=!0,n._ngModelWarningSent=!0))}function dm(e){const t=hm(e)?e.validators:e;return Array.isArray(t)?nm(t):t||null}function um(e,t){const n=hm(t)?t.asyncValidators:e;return Array.isArray(n)?im(n):n||null}function hm(e){return null!=e&&!Array.isArray(e)&&\"object\"==typeof e}class mm{constructor(e,t){this.validator=e,this.asyncValidator=t,this._onCollectionChange=()=>{},this.pristine=!0,this.touched=!1,this._onDisabledChange=[]}get parent(){return this._parent}get valid(){return\"VALID\"===this.status}get invalid(){return\"INVALID\"===this.status}get pending(){return\"PENDING\"==this.status}get disabled(){return\"DISABLED\"===this.status}get enabled(){return\"DISABLED\"!==this.status}get dirty(){return!this.pristine}get untouched(){return!this.touched}get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:\"change\"}setValidators(e){this.validator=dm(e)}setAsyncValidators(e){this.asyncValidator=um(e)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(e={}){this.touched=!0,this._parent&&!e.onlySelf&&this._parent.markAsTouched(e)}markAllAsTouched(){this.markAsTouched({onlySelf:!0}),this._forEachChild(e=>e.markAllAsTouched())}markAsUntouched(e={}){this.touched=!1,this._pendingTouched=!1,this._forEachChild(e=>{e.markAsUntouched({onlySelf:!0})}),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)}markAsDirty(e={}){this.pristine=!1,this._parent&&!e.onlySelf&&this._parent.markAsDirty(e)}markAsPristine(e={}){this.pristine=!0,this._pendingDirty=!1,this._forEachChild(e=>{e.markAsPristine({onlySelf:!0})}),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)}markAsPending(e={}){this.status=\"PENDING\",!1!==e.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!e.onlySelf&&this._parent.markAsPending(e)}disable(e={}){const t=this._parentMarkedDirty(e.onlySelf);this.status=\"DISABLED\",this.errors=null,this._forEachChild(t=>{t.disable(Object.assign(Object.assign({},e),{onlySelf:!0}))}),this._updateValue(),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(Object.assign(Object.assign({},e),{skipPristineCheck:t})),this._onDisabledChange.forEach(e=>e(!0))}enable(e={}){const t=this._parentMarkedDirty(e.onlySelf);this.status=\"VALID\",this._forEachChild(t=>{t.enable(Object.assign(Object.assign({},e),{onlySelf:!0}))}),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent}),this._updateAncestors(Object.assign(Object.assign({},e),{skipPristineCheck:t})),this._onDisabledChange.forEach(e=>e(!1))}_updateAncestors(e){this._parent&&!e.onlySelf&&(this._parent.updateValueAndValidity(e),e.skipPristineCheck||this._parent._updatePristine(),this._parent._updateTouched())}setParent(e){this._parent=e}updateValueAndValidity(e={}){this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),\"VALID\"!==this.status&&\"PENDING\"!==this.status||this._runAsyncValidator(e.emitEvent)),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!e.onlySelf&&this._parent.updateValueAndValidity(e)}_updateTreeValidity(e={emitEvent:!0}){this._forEachChild(t=>t._updateTreeValidity(e)),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?\"DISABLED\":\"VALID\"}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(e){if(this.asyncValidator){this.status=\"PENDING\";const t=Eh(this.asyncValidator(this));this._asyncValidationSubscription=t.subscribe(t=>this.setErrors(t,{emitEvent:e}))}}_cancelExistingSubscription(){this._asyncValidationSubscription&&this._asyncValidationSubscription.unsubscribe()}setErrors(e,t={}){this.errors=e,this._updateControlsErrors(!1!==t.emitEvent)}get(e){return function(e,t,n){if(null==t)return null;if(Array.isArray(t)||(t=t.split(\".\")),Array.isArray(t)&&0===t.length)return null;let i=e;return t.forEach(e=>{i=i instanceof fm?i.controls.hasOwnProperty(e)?i.controls[e]:null:i instanceof _m&&i.at(e)||null}),i}(this,e)}getError(e,t){const n=t?this.get(t):this;return n&&n.errors?n.errors[e]:null}hasError(e,t){return!!this.getError(e,t)}get root(){let e=this;for(;e._parent;)e=e._parent;return e}_updateControlsErrors(e){this.status=this._calculateStatus(),e&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(e)}_initObservables(){this.valueChanges=new yc,this.statusChanges=new yc}_calculateStatus(){return this._allControlsDisabled()?\"DISABLED\":this.errors?\"INVALID\":this._anyControlsHaveStatus(\"PENDING\")?\"PENDING\":this._anyControlsHaveStatus(\"INVALID\")?\"INVALID\":\"VALID\"}_anyControlsHaveStatus(e){return this._anyControls(t=>t.status===e)}_anyControlsDirty(){return this._anyControls(e=>e.dirty)}_anyControlsTouched(){return this._anyControls(e=>e.touched)}_updatePristine(e={}){this.pristine=!this._anyControlsDirty(),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)}_updateTouched(e={}){this.touched=this._anyControlsTouched(),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)}_isBoxedValue(e){return\"object\"==typeof e&&null!==e&&2===Object.keys(e).length&&\"value\"in e&&\"disabled\"in e}_registerOnCollectionChange(e){this._onCollectionChange=e}_setUpdateStrategy(e){hm(e)&&null!=e.updateOn&&(this._updateOn=e.updateOn)}_parentMarkedDirty(e){return!e&&this._parent&&this._parent.dirty&&!this._parent._anyControlsDirty()}}class pm extends mm{constructor(e=null,t,n){super(dm(t),um(n,t)),this._onChange=[],this._applyFormState(e),this._setUpdateStrategy(t),this.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),this._initObservables()}setValue(e,t={}){this.value=this._pendingValue=e,this._onChange.length&&!1!==t.emitModelToViewChange&&this._onChange.forEach(e=>e(this.value,!1!==t.emitViewToModelChange)),this.updateValueAndValidity(t)}patchValue(e,t={}){this.setValue(e,t)}reset(e=null,t={}){this._applyFormState(e),this.markAsPristine(t),this.markAsUntouched(t),this.setValue(this.value,t),this._pendingChange=!1}_updateValue(){}_anyControls(e){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(e){this._onChange.push(e)}_clearChangeFns(){this._onChange=[],this._onDisabledChange=[],this._onCollectionChange=()=>{}}registerOnDisabledChange(e){this._onDisabledChange.push(e)}_forEachChild(e){}_syncPendingControls(){return!(\"submit\"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))}_applyFormState(e){this._isBoxedValue(e)?(this.value=this._pendingValue=e.value,e.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=e}}class fm extends mm{constructor(e,t,n){super(dm(t),um(n,t)),this.controls=e,this._initObservables(),this._setUpdateStrategy(t),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!1})}registerControl(e,t){return this.controls[e]?this.controls[e]:(this.controls[e]=t,t.setParent(this),t._registerOnCollectionChange(this._onCollectionChange),t)}addControl(e,t){this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()}removeControl(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange(()=>{}),delete this.controls[e],this.updateValueAndValidity(),this._onCollectionChange()}setControl(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange(()=>{}),delete this.controls[e],t&&this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()}contains(e){return this.controls.hasOwnProperty(e)&&this.controls[e].enabled}setValue(e,t={}){this._checkAllValuesPresent(e),Object.keys(e).forEach(n=>{this._throwIfControlMissing(n),this.controls[n].setValue(e[n],{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}patchValue(e,t={}){Object.keys(e).forEach(n=>{this.controls[n]&&this.controls[n].patchValue(e[n],{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}reset(e={},t={}){this._forEachChild((n,i)=>{n.reset(e[i],{onlySelf:!0,emitEvent:t.emitEvent})}),this._updatePristine(t),this._updateTouched(t),this.updateValueAndValidity(t)}getRawValue(){return this._reduceChildren({},(e,t,n)=>(e[n]=t instanceof pm?t.value:t.getRawValue(),e))}_syncPendingControls(){let e=this._reduceChildren(!1,(e,t)=>!!t._syncPendingControls()||e);return e&&this.updateValueAndValidity({onlySelf:!0}),e}_throwIfControlMissing(e){if(!Object.keys(this.controls).length)throw new Error(\"\\n There are no form controls registered with this group yet. If you're using ngModel,\\n you may want to check next tick (e.g. use setTimeout).\\n \");if(!this.controls[e])throw new Error(`Cannot find form control with name: ${e}.`)}_forEachChild(e){Object.keys(this.controls).forEach(t=>e(this.controls[t],t))}_setUpControls(){this._forEachChild(e=>{e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(e){let t=!1;return this._forEachChild((n,i)=>{t=t||this.contains(i)&&e(n)}),t}_reduceValue(){return this._reduceChildren({},(e,t,n)=>((t.enabled||this.disabled)&&(e[n]=t.value),e))}_reduceChildren(e,t){let n=e;return this._forEachChild((e,i)=>{n=t(n,e,i)}),n}_allControlsDisabled(){for(const e of Object.keys(this.controls))if(this.controls[e].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}_checkAllValuesPresent(e){this._forEachChild((t,n)=>{if(void 0===e[n])throw new Error(`Must supply a value for form control with name: '${n}'.`)})}}class _m extends mm{constructor(e,t,n){super(dm(t),um(n,t)),this.controls=e,this._initObservables(),this._setUpdateStrategy(t),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!1})}at(e){return this.controls[e]}push(e){this.controls.push(e),this._registerControl(e),this.updateValueAndValidity(),this._onCollectionChange()}insert(e,t){this.controls.splice(e,0,t),this._registerControl(t),this.updateValueAndValidity()}removeAt(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange(()=>{}),this.controls.splice(e,1),this.updateValueAndValidity()}setControl(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange(()=>{}),this.controls.splice(e,1),t&&(this.controls.splice(e,0,t),this._registerControl(t)),this.updateValueAndValidity(),this._onCollectionChange()}get length(){return this.controls.length}setValue(e,t={}){this._checkAllValuesPresent(e),e.forEach((e,n)=>{this._throwIfControlMissing(n),this.at(n).setValue(e,{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}patchValue(e,t={}){e.forEach((e,n)=>{this.at(n)&&this.at(n).patchValue(e,{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}reset(e=[],t={}){this._forEachChild((n,i)=>{n.reset(e[i],{onlySelf:!0,emitEvent:t.emitEvent})}),this._updatePristine(t),this._updateTouched(t),this.updateValueAndValidity(t)}getRawValue(){return this.controls.map(e=>e instanceof pm?e.value:e.getRawValue())}clear(){this.controls.length<1||(this._forEachChild(e=>e._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity())}_syncPendingControls(){let e=this.controls.reduce((e,t)=>!!t._syncPendingControls()||e,!1);return e&&this.updateValueAndValidity({onlySelf:!0}),e}_throwIfControlMissing(e){if(!this.controls.length)throw new Error(\"\\n There are no form controls registered with this array yet. If you're using ngModel,\\n you may want to check next tick (e.g. use setTimeout).\\n \");if(!this.at(e))throw new Error(`Cannot find form control at index ${e}`)}_forEachChild(e){this.controls.forEach((t,n)=>{e(t,n)})}_updateValue(){this.value=this.controls.filter(e=>e.enabled||this.disabled).map(e=>e.value)}_anyControls(e){return this.controls.some(t=>t.enabled&&e(t))}_setUpControls(){this._forEachChild(e=>this._registerControl(e))}_checkAllValuesPresent(e){this._forEachChild((t,n)=>{if(void 0===e[n])throw new Error(`Must supply a value for form control at index: ${n}.`)})}_allControlsDisabled(){for(const e of this.controls)if(e.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(e){e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange)}}const gm={provide:yh,useExisting:Ce(()=>bm)},ym=(()=>Promise.resolve(null))();let bm=(()=>{class e extends yh{constructor(e,t){super(),this.submitted=!1,this._directives=[],this.ngSubmit=new yc,this.form=new fm({},nm(e),im(t))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(e){ym.then(()=>{const t=this._findContainer(e.path);e.control=t.registerControl(e.name,e.control),Zh(e.control,e),e.control.updateValueAndValidity({emitEvent:!1}),this._directives.push(e)})}getControl(e){return this.form.get(e.path)}removeControl(e){ym.then(()=>{const t=this._findContainer(e.path);t&&t.removeControl(e.name),lm(this._directives,e)})}addFormGroup(e){ym.then(()=>{const t=this._findContainer(e.path),n=new fm({});Xh(n,e),t.registerControl(e.name,n),n.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(e){ym.then(()=>{const t=this._findContainer(e.path);t&&t.removeControl(e.name)})}getFormGroup(e){return this.form.get(e.path)}updateModel(e,t){ym.then(()=>{this.form.get(e.path).setValue(t)})}setValue(e){this.control.setValue(e)}onSubmit(e){return this.submitted=!0,om(this.form,this._directives),this.ngSubmit.emit(e),!1}onReset(){this.resetForm()}resetForm(e){this.form.reset(e),this.submitted=!1}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}_findContainer(e){return e.pop(),e.length?this.form.get(e):this.form}}return e.\\u0275fac=function(t){return new(t||e)(Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"form\",3,\"ngNoForm\",\"\",3,\"formGroup\",\"\"],[\"ng-form\"],[\"\",\"ngForm\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"submit\",(function(e){return t.onSubmit(e)}))(\"reset\",(function(){return t.onReset()}))},inputs:{options:[\"ngFormOptions\",\"options\"]},outputs:{ngSubmit:\"ngSubmit\"},exportAs:[\"ngForm\"],features:[Ba([gm]),Ya]}),e})(),vm=(()=>{class e extends yh{ngOnInit(){this._checkParentType(),this.formDirective.addFormGroup(this)}ngOnDestroy(){this.formDirective&&this.formDirective.removeFormGroup(this)}get control(){return this.formDirective.getFormGroup(this)}get path(){return Kh(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}get validator(){return nm(this._validators)}get asyncValidator(){return im(this._asyncValidators)}_checkParentType(){}}return e.\\u0275fac=function(t){return wm(t||e)},e.\\u0275dir=St({type:e,features:[Ya]}),e})();const wm=li(vm);class Mm{static modelParentException(){throw new Error(`\\n ngModel cannot be used to register form controls with a parent formGroup directive. Try using\\n formGroup's partner directive \"formControlName\" instead. Example:\\n\\n ${Vh}\\n\\n Or, if you'd like to avoid registering this form control, indicate that it's standalone in ngModelOptions:\\n\\n Example:\\n\\n \\n
\\n \\n \\n
\\n `)}static formGroupNameException(){throw new Error(`\\n ngModel cannot be used to register form controls with a parent formGroupName or formArrayName directive.\\n\\n Option 1: Use formControlName instead of ngModel (reactive strategy):\\n\\n ${Wh}\\n\\n Option 2: Update ngModel's parent be ngModelGroup (template-driven strategy):\\n\\n ${Uh}`)}static missingNameException(){throw new Error('If ngModel is used within a form tag, either the name attribute must be set or the form\\n control must be defined as \\'standalone\\' in ngModelOptions.\\n\\n Example 1: \\n Example 2: ')}static modelGroupParentException(){throw new Error(`\\n ngModelGroup cannot be used with a parent formGroup directive.\\n\\n Option 1: Use formGroupName instead of ngModelGroup (reactive strategy):\\n\\n ${Wh}\\n\\n Option 2: Use a regular form tag instead of the formGroup directive (template-driven strategy):\\n\\n ${Uh}`)}}const km={provide:yh,useExisting:Ce(()=>Sm)};let Sm=(()=>{class e extends vm{constructor(e,t,n){super(),this._parent=e,this._validators=t,this._asyncValidators=n}_checkParentType(){this._parent instanceof e||this._parent instanceof bm||Mm.modelGroupParentException()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,5),Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngModelGroup\",\"\"]],inputs:{name:[\"ngModelGroup\",\"name\"]},exportAs:[\"ngModelGroup\"],features:[Ba([km]),Ya]}),e})();const Lm={provide:wh,useExisting:Ce(()=>Cm)},xm=(()=>Promise.resolve(null))();let Cm=(()=>{class e extends wh{constructor(e,t,n,i){super(),this.control=new pm,this._registered=!1,this.update=new yc,this._parent=e,this._rawValidators=t||[],this._rawAsyncValidators=n||[],this.valueAccessor=am(this,i)}ngOnChanges(e){this._checkForErrors(),this._registered||this._setUpControl(),\"isDisabled\"in e&&this._updateDisabled(e),sm(e,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}get path(){return this._parent?Kh(this.name,this._parent):[this.name]}get formDirective(){return this._parent?this._parent.formDirective:null}get validator(){return nm(this._rawValidators)}get asyncValidator(){return im(this._rawAsyncValidators)}viewToModelUpdate(e){this.viewModel=e,this.update.emit(e)}_setUpControl(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)}_isStandalone(){return!this._parent||!(!this.options||!this.options.standalone)}_setUpStandalone(){Zh(this.control,this),this.control.updateValueAndValidity({emitEvent:!1})}_checkForErrors(){this._isStandalone()||this._checkParentType(),this._checkName()}_checkParentType(){!(this._parent instanceof Sm)&&this._parent instanceof vm?Mm.formGroupNameException():this._parent instanceof Sm||this._parent instanceof bm||Mm.modelParentException()}_checkName(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()||this.name||Mm.missingNameException()}_updateValue(e){xm.then(()=>{this.control.setValue(e,{emitViewToModelChange:!1})})}_updateDisabled(e){const t=e.isDisabled.currentValue,n=\"\"===t||t&&\"false\"!==t;xm.then(()=>{n&&!this.control.disabled?this.control.disable():!n&&this.control.disabled&&this.control.enable()})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,9),Eo(xh,10),Eo(Ch,10),Eo(uh,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngModel\",\"\",3,\"formControlName\",\"\",3,\"formControl\",\"\"]],inputs:{name:\"name\",isDisabled:[\"disabled\",\"isDisabled\"],model:[\"ngModel\",\"model\"],options:[\"ngModelOptions\",\"options\"]},outputs:{update:\"ngModelChange\"},exportAs:[\"ngModel\"],features:[Ba([Lm]),Ya,Ra]}),e})(),Tm=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"form\",3,\"ngNoForm\",\"\",3,\"ngNativeValidate\",\"\"]],hostAttrs:[\"novalidate\",\"\"]}),e})();const Dm=new Ve(\"NgModelWithFormControlWarning\"),Ym={provide:wh,useExisting:Ce(()=>Em)};let Em=(()=>{class e extends wh{constructor(e,t,n,i){super(),this._ngModelWarningConfig=i,this.update=new yc,this._ngModelWarningSent=!1,this._rawValidators=e||[],this._rawAsyncValidators=t||[],this.valueAccessor=am(this,n)}set isDisabled(e){$h.disabledAttrWarning()}ngOnChanges(t){this._isControlChanged(t)&&(Zh(this.form,this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this.form.updateValueAndValidity({emitEvent:!1})),sm(t,this.viewModel)&&(cm(\"formControl\",e,this,this._ngModelWarningConfig),this.form.setValue(this.model),this.viewModel=this.model)}get path(){return[]}get validator(){return nm(this._rawValidators)}get asyncValidator(){return im(this._rawAsyncValidators)}get control(){return this.form}viewToModelUpdate(e){this.viewModel=e,this.update.emit(e)}_isControlChanged(e){return e.hasOwnProperty(\"form\")}}return e.\\u0275fac=function(t){return new(t||e)(Eo(xh,10),Eo(Ch,10),Eo(uh,10),Eo(Dm,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formControl\",\"\"]],inputs:{isDisabled:[\"disabled\",\"isDisabled\"],form:[\"formControl\",\"form\"],model:[\"ngModel\",\"model\"]},outputs:{update:\"ngModelChange\"},exportAs:[\"ngForm\"],features:[Ba([Ym]),Ya,Ra]}),e._ngModelWarningSentOnce=!1,e})();const Om={provide:yh,useExisting:Ce(()=>Im)};let Im=(()=>{class e extends yh{constructor(e,t){super(),this._validators=e,this._asyncValidators=t,this.submitted=!1,this.directives=[],this.form=null,this.ngSubmit=new yc}ngOnChanges(e){this._checkFormPresent(),e.hasOwnProperty(\"form\")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations())}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(e){const t=this.form.get(e.path);return Zh(t,e),t.updateValueAndValidity({emitEvent:!1}),this.directives.push(e),t}getControl(e){return this.form.get(e.path)}removeControl(e){lm(this.directives,e)}addFormGroup(e){const t=this.form.get(e.path);Xh(t,e),t.updateValueAndValidity({emitEvent:!1})}removeFormGroup(e){}getFormGroup(e){return this.form.get(e.path)}addFormArray(e){const t=this.form.get(e.path);Xh(t,e),t.updateValueAndValidity({emitEvent:!1})}removeFormArray(e){}getFormArray(e){return this.form.get(e.path)}updateModel(e,t){this.form.get(e.path).setValue(t)}onSubmit(e){return this.submitted=!0,om(this.form,this.directives),this.ngSubmit.emit(e),!1}onReset(){this.resetForm()}resetForm(e){this.form.reset(e),this.submitted=!1}_updateDomValue(){this.directives.forEach(e=>{const t=this.form.get(e.path);e.control!==t&&(function(e,t){t.valueAccessor.registerOnChange(()=>em(t)),t.valueAccessor.registerOnTouched(()=>em(t)),t._rawValidators.forEach(e=>{e.registerOnValidatorChange&&e.registerOnValidatorChange(null)}),t._rawAsyncValidators.forEach(e=>{e.registerOnValidatorChange&&e.registerOnValidatorChange(null)}),e&&e._clearChangeFns()}(e.control,e),t&&Zh(t,e),e.control=t)}),this.form._updateTreeValidity({emitEvent:!1})}_updateRegistrations(){this.form._registerOnCollectionChange(()=>this._updateDomValue()),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{}),this._oldForm=this.form}_updateValidators(){const e=nm(this._validators);this.form.validator=Dh.compose([this.form.validator,e]);const t=im(this._asyncValidators);this.form.asyncValidator=Dh.composeAsync([this.form.asyncValidator,t])}_checkFormPresent(){this.form||$h.missingFormException()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formGroup\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"submit\",(function(e){return t.onSubmit(e)}))(\"reset\",(function(){return t.onReset()}))},inputs:{form:[\"formGroup\",\"form\"]},outputs:{ngSubmit:\"ngSubmit\"},exportAs:[\"ngForm\"],features:[Ba([Om]),Ya,Ra]}),e})();const Pm={provide:yh,useExisting:Ce(()=>Am)};let Am=(()=>{class e extends vm{constructor(e,t,n){super(),this._parent=e,this._validators=t,this._asyncValidators=n}_checkParentType(){jm(this._parent)&&$h.groupParentException()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,13),Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formGroupName\",\"\"]],inputs:{name:[\"formGroupName\",\"name\"]},features:[Ba([Pm]),Ya]}),e})();const Rm={provide:yh,useExisting:Ce(()=>Hm)};let Hm=(()=>{class e extends yh{constructor(e,t,n){super(),this._parent=e,this._validators=t,this._asyncValidators=n}ngOnInit(){this._checkParentType(),this.formDirective.addFormArray(this)}ngOnDestroy(){this.formDirective&&this.formDirective.removeFormArray(this)}get control(){return this.formDirective.getFormArray(this)}get formDirective(){return this._parent?this._parent.formDirective:null}get path(){return Kh(null==this.name?this.name:this.name.toString(),this._parent)}get validator(){return nm(this._validators)}get asyncValidator(){return im(this._asyncValidators)}_checkParentType(){jm(this._parent)&&$h.arrayParentException()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,13),Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formArrayName\",\"\"]],inputs:{name:[\"formArrayName\",\"name\"]},features:[Ba([Rm]),Ya]}),e})();function jm(e){return!(e instanceof Am||e instanceof Im||e instanceof Hm)}const Fm={provide:wh,useExisting:Ce(()=>Nm)};let Nm=(()=>{class e extends wh{constructor(e,t,n,i,s){super(),this._ngModelWarningConfig=s,this._added=!1,this.update=new yc,this._ngModelWarningSent=!1,this._parent=e,this._rawValidators=t||[],this._rawAsyncValidators=n||[],this.valueAccessor=am(this,i)}set isDisabled(e){$h.disabledAttrWarning()}ngOnChanges(t){this._added||this._setUpControl(),sm(t,this.viewModel)&&(cm(\"formControlName\",e,this,this._ngModelWarningConfig),this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(e){this.viewModel=e,this.update.emit(e)}get path(){return Kh(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}get validator(){return nm(this._rawValidators)}get asyncValidator(){return im(this._rawAsyncValidators)}_checkParentType(){!(this._parent instanceof Am)&&this._parent instanceof vm?$h.ngModelGroupException():this._parent instanceof Am||this._parent instanceof Im||this._parent instanceof Hm||$h.controlParentException()}_setUpControl(){this._checkParentType(),this.control=this.formDirective.addControl(this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this._added=!0}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,13),Eo(xh,10),Eo(Ch,10),Eo(uh,10),Eo(Dm,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formControlName\",\"\"]],inputs:{isDisabled:[\"disabled\",\"isDisabled\"],name:[\"formControlName\",\"name\"],model:[\"ngModel\",\"model\"]},outputs:{update:\"ngModelChange\"},features:[Ba([Fm]),Ya,Ra]}),e._ngModelWarningSentOnce=!1,e})();const zm={provide:xh,useExisting:Ce(()=>Vm),multi:!0};let Vm=(()=>{class e{get required(){return this._required}set required(e){this._required=null!=e&&!1!==e&&\"false\"!==`${e}`,this._onChange&&this._onChange()}validate(e){return this.required?Dh.required(e):null}registerOnValidatorChange(e){this._onChange=e}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"required\",\"\",\"formControlName\",\"\",3,\"type\",\"checkbox\"],[\"\",\"required\",\"\",\"formControl\",\"\",3,\"type\",\"checkbox\"],[\"\",\"required\",\"\",\"ngModel\",\"\",3,\"type\",\"checkbox\"]],hostVars:1,hostBindings:function(e,t){2&e&&Co(\"required\",t.required?\"\":null)},inputs:{required:\"required\"},features:[Ba([zm])]}),e})(),Wm=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),Um=(()=>{class e{group(e,t=null){const n=this._reduceControls(e);let i=null,s=null,r=void 0;return null!=t&&(function(e){return void 0!==e.asyncValidators||void 0!==e.validators||void 0!==e.updateOn}(t)?(i=null!=t.validators?t.validators:null,s=null!=t.asyncValidators?t.asyncValidators:null,r=null!=t.updateOn?t.updateOn:void 0):(i=null!=t.validator?t.validator:null,s=null!=t.asyncValidator?t.asyncValidator:null)),new fm(n,{asyncValidators:s,updateOn:r,validators:i})}control(e,t,n){return new pm(e,t,n)}array(e,t,n){const i=e.map(e=>this._createControl(e));return new _m(i,t,n)}_reduceControls(e){const t={};return Object.keys(e).forEach(n=>{t[n]=this._createControl(e[n])}),t}_createControl(e){return e instanceof pm||e instanceof fm||e instanceof _m?e:Array.isArray(e)?this.control(e[0],e.length>1?e[1]:null,e.length>2?e[2]:null):this.control(e)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),$m=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[jh],imports:[Wm]}),e})(),Bm=(()=>{class e{static withConfig(t){return{ngModule:e,providers:[{provide:Dm,useValue:t.warnOnNgModelWithFormControl}]}}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[Um,jh],imports:[Wm]}),e})();function qm(e,...t){return t.length?t.some(t=>e[t]):e.altKey||e.shiftKey||e.ctrlKey||e.metaKey}function Gm(e,t,n){return function(i){return i.lift(new Jm(e,t,n))}}class Jm{constructor(e,t,n){this.nextOrObserver=e,this.error=t,this.complete=n}call(e,t){return t.subscribe(new Km(e,this.nextOrObserver,this.error,this.complete))}}class Km extends p{constructor(e,t,n,s){super(e),this._tapNext=g,this._tapError=g,this._tapComplete=g,this._tapError=n||g,this._tapComplete=s||g,i(t)?(this._context=this,this._tapNext=t):t&&(this._context=t,this._tapNext=t.next||g,this._tapError=t.error||g,this._tapComplete=t.complete||g)}_next(e){try{this._tapNext.call(this._context,e)}catch(t){return void this.destination.error(t)}this.destination.next(e)}_error(e){try{this._tapError.call(this._context,e)}catch(e){return void this.destination.error(e)}this.destination.error(e)}_complete(){try{this._tapComplete.call(this._context)}catch(e){return void this.destination.error(e)}return this.destination.complete()}}class Zm extends u{constructor(e,t){super()}schedule(e,t=0){return this}}class Qm extends Zm{constructor(e,t){super(e,t),this.scheduler=e,this.work=t,this.pending=!1}schedule(e,t=0){if(this.closed)return this;this.state=e;const n=this.id,i=this.scheduler;return null!=n&&(this.id=this.recycleAsyncId(i,n,t)),this.pending=!0,this.delay=t,this.id=this.id||this.requestAsyncId(i,this.id,t),this}requestAsyncId(e,t,n=0){return setInterval(e.flush.bind(e,this),n)}recycleAsyncId(e,t,n=0){if(null!==n&&this.delay===n&&!1===this.pending)return t;clearInterval(t)}execute(e,t){if(this.closed)return new Error(\"executing a cancelled action\");this.pending=!1;const n=this._execute(e,t);if(n)return n;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(e,t){let n=!1,i=void 0;try{this.work(e)}catch(s){n=!0,i=!!s&&s||new Error(s)}if(n)return this.unsubscribe(),i}_unsubscribe(){const e=this.id,t=this.scheduler,n=t.actions,i=n.indexOf(this);this.work=null,this.state=null,this.pending=!1,this.scheduler=null,-1!==i&&n.splice(i,1),null!=e&&(this.id=this.recycleAsyncId(t,e,null)),this.delay=null}}let Xm=(()=>{class e{constructor(t,n=e.now){this.SchedulerAction=t,this.now=n}schedule(e,t=0,n){return new this.SchedulerAction(this,e).schedule(n,t)}}return e.now=()=>Date.now(),e})();class ep extends Xm{constructor(e,t=Xm.now){super(e,()=>ep.delegate&&ep.delegate!==this?ep.delegate.now():t()),this.actions=[],this.active=!1,this.scheduled=void 0}schedule(e,t=0,n){return ep.delegate&&ep.delegate!==this?ep.delegate.schedule(e,t,n):super.schedule(e,t,n)}flush(e){const{actions:t}=this;if(this.active)return void t.push(e);let n;this.active=!0;do{if(n=e.execute(e.state,e.delay))break}while(e=t.shift());if(this.active=!1,n){for(;e=t.shift();)e.unsubscribe();throw n}}}const tp=new ep(Qm);function np(e,t=tp){return n=>n.lift(new ip(e,t))}class ip{constructor(e,t){this.dueTime=e,this.scheduler=t}call(e,t){return t.subscribe(new sp(e,this.dueTime,this.scheduler))}}class sp extends p{constructor(e,t,n){super(e),this.dueTime=t,this.scheduler=n,this.debouncedSubscription=null,this.lastValue=null,this.hasValue=!1}_next(e){this.clearDebounce(),this.lastValue=e,this.hasValue=!0,this.add(this.debouncedSubscription=this.scheduler.schedule(rp,this.dueTime,this))}_complete(){this.debouncedNext(),this.destination.complete()}debouncedNext(){if(this.clearDebounce(),this.hasValue){const{lastValue:e}=this;this.lastValue=null,this.hasValue=!1,this.destination.next(e)}}clearDebounce(){const e=this.debouncedSubscription;null!==e&&(this.remove(e),e.unsubscribe(),this.debouncedSubscription=null)}}function rp(e){e.debouncedNext()}const op=(()=>{function e(){return Error.call(this),this.message=\"argument out of range\",this.name=\"ArgumentOutOfRangeError\",this}return e.prototype=Object.create(Error.prototype),e})(),ap=new v(e=>e.complete());function lp(e){return e?function(e){return new v(t=>e.schedule(()=>t.complete()))}(e):ap}function cp(e){return t=>0===e?lp():t.lift(new dp(e))}class dp{constructor(e){if(this.total=e,this.total<0)throw new op}call(e,t){return t.subscribe(new up(e,this.total))}}class up extends p{constructor(e,t){super(e),this.total=t,this.count=0}_next(e){const t=this.total,n=++this.count;n<=t&&(this.destination.next(e),n===t&&(this.destination.complete(),this.unsubscribe()))}}function hp(e){return null!=e&&\"false\"!==`${e}`}function mp(e,t=0){return function(e){return!isNaN(parseFloat(e))&&!isNaN(Number(e))}(e)?Number(e):t}function pp(e){return Array.isArray(e)?e:[e]}function fp(e){return null==e?\"\":\"string\"==typeof e?e:`${e}px`}function _p(e){return e instanceof Ka?e.nativeElement:e}let gp;try{gp=\"undefined\"!=typeof Intl&&Intl.v8BreakIterator}catch(NI){gp=!1}let yp,bp=(()=>{class e{constructor(e){this._platformId=e,this.isBrowser=this._platformId?ku(this._platformId):\"object\"==typeof document&&!!document,this.EDGE=this.isBrowser&&/(edge)/i.test(navigator.userAgent),this.TRIDENT=this.isBrowser&&/(msie|trident)/i.test(navigator.userAgent),this.BLINK=this.isBrowser&&!(!window.chrome&&!gp)&&\"undefined\"!=typeof CSS&&!this.EDGE&&!this.TRIDENT,this.WEBKIT=this.isBrowser&&/AppleWebKit/i.test(navigator.userAgent)&&!this.BLINK&&!this.EDGE&&!this.TRIDENT,this.IOS=this.isBrowser&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!(\"MSStream\"in window),this.FIREFOX=this.isBrowser&&/(firefox|minefield)/i.test(navigator.userAgent),this.ANDROID=this.isBrowser&&/android/i.test(navigator.userAgent)&&!this.TRIDENT,this.SAFARI=this.isBrowser&&/safari/i.test(navigator.userAgent)&&this.WEBKIT}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Bc,8))},e.\\u0275prov=pe({factory:function(){return new e(Qe(Bc,8))},token:e,providedIn:\"root\"}),e})(),vp=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();const wp=[\"color\",\"button\",\"checkbox\",\"date\",\"datetime-local\",\"email\",\"file\",\"hidden\",\"image\",\"month\",\"number\",\"password\",\"radio\",\"range\",\"reset\",\"search\",\"submit\",\"tel\",\"text\",\"time\",\"url\",\"week\"];function Mp(){if(yp)return yp;if(\"object\"!=typeof document||!document)return yp=new Set(wp),yp;let e=document.createElement(\"input\");return yp=new Set(wp.filter(t=>(e.setAttribute(\"type\",t),e.type===t))),yp}let kp;function Sp(e){return function(){if(null==kp&&\"undefined\"!=typeof window)try{window.addEventListener(\"test\",null,Object.defineProperty({},\"passive\",{get:()=>kp=!0}))}finally{kp=kp||!1}return kp}()?e:!!e.capture}const Lp=function(){var e={NORMAL:0,NEGATED:1,INVERTED:2};return e[e.NORMAL]=\"NORMAL\",e[e.NEGATED]=\"NEGATED\",e[e.INVERTED]=\"INVERTED\",e}();let xp;function Cp(){if(\"object\"!=typeof document||!document)return Lp.NORMAL;if(!xp){const e=document.createElement(\"div\"),t=e.style;e.dir=\"rtl\",t.height=\"1px\",t.width=\"1px\",t.overflow=\"auto\",t.visibility=\"hidden\",t.pointerEvents=\"none\",t.position=\"absolute\";const n=document.createElement(\"div\"),i=n.style;i.width=\"2px\",i.height=\"1px\",e.appendChild(n),document.body.appendChild(e),xp=Lp.NORMAL,0===e.scrollLeft&&(e.scrollLeft=1,xp=0===e.scrollLeft?Lp.NEGATED:Lp.INVERTED),e.parentNode.removeChild(e)}return xp}let Tp=(()=>{class e{create(e){return\"undefined\"==typeof MutationObserver?null:new MutationObserver(e)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})(),Dp=(()=>{class e{constructor(e){this._mutationObserverFactory=e,this._observedElements=new Map}ngOnDestroy(){this._observedElements.forEach((e,t)=>this._cleanupObserver(t))}observe(e){const t=_p(e);return new v(e=>{const n=this._observeElement(t).subscribe(e);return()=>{n.unsubscribe(),this._unobserveElement(t)}})}_observeElement(e){if(this._observedElements.has(e))this._observedElements.get(e).count++;else{const t=new L,n=this._mutationObserverFactory.create(e=>t.next(e));n&&n.observe(e,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(e,{observer:n,stream:t,count:1})}return this._observedElements.get(e).stream}_unobserveElement(e){this._observedElements.has(e)&&(this._observedElements.get(e).count--,this._observedElements.get(e).count||this._cleanupObserver(e))}_cleanupObserver(e){if(this._observedElements.has(e)){const{observer:t,stream:n}=this._observedElements.get(e);t&&t.disconnect(),n.complete(),this._observedElements.delete(e)}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Tp))},e.\\u0275prov=pe({factory:function(){return new e(Qe(Tp))},token:e,providedIn:\"root\"}),e})(),Yp=(()=>{class e{constructor(e,t,n){this._contentObserver=e,this._elementRef=t,this._ngZone=n,this.event=new yc,this._disabled=!1,this._currentSubscription=null}get disabled(){return this._disabled}set disabled(e){this._disabled=hp(e),this._disabled?this._unsubscribe():this._subscribe()}get debounce(){return this._debounce}set debounce(e){this._debounce=mp(e),this._subscribe()}ngAfterContentInit(){this._currentSubscription||this.disabled||this._subscribe()}ngOnDestroy(){this._unsubscribe()}_subscribe(){this._unsubscribe();const e=this._contentObserver.observe(this._elementRef);this._ngZone.runOutsideAngular(()=>{this._currentSubscription=(this.debounce?e.pipe(np(this.debounce)):e).subscribe(this.event)})}_unsubscribe(){this._currentSubscription&&this._currentSubscription.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Dp),Eo(Ka),Eo(ld))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdkObserveContent\",\"\"]],inputs:{disabled:[\"cdkObserveContentDisabled\",\"disabled\"],debounce:\"debounce\"},outputs:{event:\"cdkObserveContent\"},exportAs:[\"cdkObserveContent\"]}),e})(),Ep=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[Tp]}),e})();class Op{constructor(e){this._items=e,this._activeItemIndex=-1,this._activeItem=null,this._wrap=!1,this._letterKeyStream=new L,this._typeaheadSubscription=u.EMPTY,this._vertical=!0,this._allowedModifierKeys=[],this._skipPredicateFn=e=>e.disabled,this._pressedLetters=[],this.tabOut=new L,this.change=new L,e instanceof vc&&e.changes.subscribe(e=>{if(this._activeItem){const t=e.toArray().indexOf(this._activeItem);t>-1&&t!==this._activeItemIndex&&(this._activeItemIndex=t)}})}skipPredicate(e){return this._skipPredicateFn=e,this}withWrap(e=!0){return this._wrap=e,this}withVerticalOrientation(e=!0){return this._vertical=e,this}withHorizontalOrientation(e){return this._horizontal=e,this}withAllowedModifierKeys(e){return this._allowedModifierKeys=e,this}withTypeAhead(e=200){if(this._items.length&&this._items.some(e=>\"function\"!=typeof e.getLabel))throw Error(\"ListKeyManager items in typeahead mode must implement the `getLabel` method.\");return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe(Gm(e=>this._pressedLetters.push(e)),np(e),Tu(()=>this._pressedLetters.length>0),H(()=>this._pressedLetters.join(\"\"))).subscribe(e=>{const t=this._getItemsArray();for(let n=1;n!e[t]||this._allowedModifierKeys.indexOf(t)>-1);switch(t){case 9:return void this.tabOut.next();case 40:if(this._vertical&&n){this.setNextItemActive();break}return;case 38:if(this._vertical&&n){this.setPreviousItemActive();break}return;case 39:if(this._horizontal&&n){\"rtl\"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case 37:if(this._horizontal&&n){\"rtl\"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;default:return void((n||qm(e,\"shiftKey\"))&&(e.key&&1===e.key.length?this._letterKeyStream.next(e.key.toLocaleUpperCase()):(t>=65&&t<=90||t>=48&&t<=57)&&this._letterKeyStream.next(String.fromCharCode(t))))}this._pressedLetters=[],e.preventDefault()}get activeItemIndex(){return this._activeItemIndex}get activeItem(){return this._activeItem}isTyping(){return this._pressedLetters.length>0}setFirstItemActive(){this._setActiveItemByIndex(0,1)}setLastItemActive(){this._setActiveItemByIndex(this._items.length-1,-1)}setNextItemActive(){this._activeItemIndex<0?this.setFirstItemActive():this._setActiveItemByDelta(1)}setPreviousItemActive(){this._activeItemIndex<0&&this._wrap?this.setLastItemActive():this._setActiveItemByDelta(-1)}updateActiveItem(e){const t=this._getItemsArray(),n=\"number\"==typeof e?e:t.indexOf(e),i=t[n];this._activeItem=null==i?null:i,this._activeItemIndex=n}_setActiveItemByDelta(e){this._wrap?this._setActiveInWrapMode(e):this._setActiveInDefaultMode(e)}_setActiveInWrapMode(e){const t=this._getItemsArray();for(let n=1;n<=t.length;n++){const i=(this._activeItemIndex+e*n+t.length)%t.length;if(!this._skipPredicateFn(t[i]))return void this.setActiveItem(i)}}_setActiveInDefaultMode(e){this._setActiveItemByIndex(this._activeItemIndex+e,e)}_setActiveItemByIndex(e,t){const n=this._getItemsArray();if(n[e]){for(;this._skipPredicateFn(n[e]);)if(!n[e+=t])return;this.setActiveItem(e)}}_getItemsArray(){return this._items instanceof vc?this._items.toArray():this._items}}class Ip extends Op{setActiveItem(e){this.activeItem&&this.activeItem.setInactiveStyles(),super.setActiveItem(e),this.activeItem&&this.activeItem.setActiveStyles()}}class Pp extends Op{constructor(){super(...arguments),this._origin=\"program\"}setFocusOrigin(e){return this._origin=e,this}setActiveItem(e){super.setActiveItem(e),this.activeItem&&this.activeItem.focus(this._origin)}}let Ap=(()=>{class e{constructor(e){this._platform=e}isDisabled(e){return e.hasAttribute(\"disabled\")}isVisible(e){return function(e){return!!(e.offsetWidth||e.offsetHeight||\"function\"==typeof e.getClientRects&&e.getClientRects().length)}(e)&&\"visible\"===getComputedStyle(e).visibility}isTabbable(e){if(!this._platform.isBrowser)return!1;const t=function(e){try{return e.frameElement}catch(NI){return null}}((n=e).ownerDocument&&n.ownerDocument.defaultView||window);var n;if(t){const e=t&&t.nodeName.toLowerCase();if(-1===Hp(t))return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&\"object\"===e)return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&!this.isVisible(t))return!1}let i=e.nodeName.toLowerCase(),s=Hp(e);if(e.hasAttribute(\"contenteditable\"))return-1!==s;if(\"iframe\"===i)return!1;if(\"audio\"===i){if(!e.hasAttribute(\"controls\"))return!1;if(this._platform.BLINK)return!0}if(\"video\"===i){if(!e.hasAttribute(\"controls\")&&this._platform.TRIDENT)return!1;if(this._platform.BLINK||this._platform.FIREFOX)return!0}return(\"object\"!==i||!this._platform.BLINK&&!this._platform.WEBKIT)&&!(this._platform.WEBKIT&&this._platform.IOS&&!function(e){let t=e.nodeName.toLowerCase(),n=\"input\"===t&&e.type;return\"text\"===n||\"password\"===n||\"select\"===t||\"textarea\"===t}(e))&&e.tabIndex>=0}isFocusable(e){return function(e){return!function(e){return function(e){return\"input\"==e.nodeName.toLowerCase()}(e)&&\"hidden\"==e.type}(e)&&(function(e){let t=e.nodeName.toLowerCase();return\"input\"===t||\"select\"===t||\"button\"===t||\"textarea\"===t}(e)||function(e){return function(e){return\"a\"==e.nodeName.toLowerCase()}(e)&&e.hasAttribute(\"href\")}(e)||e.hasAttribute(\"contenteditable\")||Rp(e))}(e)&&!this.isDisabled(e)&&this.isVisible(e)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(bp))},e.\\u0275prov=pe({factory:function(){return new e(Qe(bp))},token:e,providedIn:\"root\"}),e})();function Rp(e){if(!e.hasAttribute(\"tabindex\")||void 0===e.tabIndex)return!1;let t=e.getAttribute(\"tabindex\");return\"-32768\"!=t&&!(!t||isNaN(parseInt(t,10)))}function Hp(e){if(!Rp(e))return null;const t=parseInt(e.getAttribute(\"tabindex\")||\"\",10);return isNaN(t)?-1:t}class jp{constructor(e,t,n,i,s=!1){this._element=e,this._checker=t,this._ngZone=n,this._document=i,this._hasAttached=!1,this.startAnchorListener=()=>this.focusLastTabbableElement(),this.endAnchorListener=()=>this.focusFirstTabbableElement(),this._enabled=!0,s||this.attachAnchors()}get enabled(){return this._enabled}set enabled(e){this._enabled=e,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(e,this._startAnchor),this._toggleAnchorTabIndex(e,this._endAnchor))}destroy(){const e=this._startAnchor,t=this._endAnchor;e&&(e.removeEventListener(\"focus\",this.startAnchorListener),e.parentNode&&e.parentNode.removeChild(e)),t&&(t.removeEventListener(\"focus\",this.endAnchorListener),t.parentNode&&t.parentNode.removeChild(t)),this._startAnchor=this._endAnchor=null}attachAnchors(){return!!this._hasAttached||(this._ngZone.runOutsideAngular(()=>{this._startAnchor||(this._startAnchor=this._createAnchor(),this._startAnchor.addEventListener(\"focus\",this.startAnchorListener)),this._endAnchor||(this._endAnchor=this._createAnchor(),this._endAnchor.addEventListener(\"focus\",this.endAnchorListener))}),this._element.parentNode&&(this._element.parentNode.insertBefore(this._startAnchor,this._element),this._element.parentNode.insertBefore(this._endAnchor,this._element.nextSibling),this._hasAttached=!0),this._hasAttached)}focusInitialElementWhenReady(){return new Promise(e=>{this._executeOnStable(()=>e(this.focusInitialElement()))})}focusFirstTabbableElementWhenReady(){return new Promise(e=>{this._executeOnStable(()=>e(this.focusFirstTabbableElement()))})}focusLastTabbableElementWhenReady(){return new Promise(e=>{this._executeOnStable(()=>e(this.focusLastTabbableElement()))})}_getRegionBoundary(e){let t=this._element.querySelectorAll(`[cdk-focus-region-${e}], `+`[cdkFocusRegion${e}], `+`[cdk-focus-${e}]`);for(let n=0;n=0;n--){let e=t[n].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(t[n]):null;if(e)return e}return null}_createAnchor(){const e=this._document.createElement(\"div\");return this._toggleAnchorTabIndex(this._enabled,e),e.classList.add(\"cdk-visually-hidden\"),e.classList.add(\"cdk-focus-trap-anchor\"),e.setAttribute(\"aria-hidden\",\"true\"),e}_toggleAnchorTabIndex(e,t){e?t.setAttribute(\"tabindex\",\"0\"):t.removeAttribute(\"tabindex\")}_executeOnStable(e){this._ngZone.isStable?e():this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(e)}}let Fp=(()=>{class e{constructor(e,t,n){this._checker=e,this._ngZone=t,this._document=n}create(e,t=!1){return new jp(e,this._checker,this._ngZone,this._document,t)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Ap),Qe(ld),Qe(Nd))},e.\\u0275prov=pe({factory:function(){return new e(Qe(Ap),Qe(ld),Qe(Nd))},token:e,providedIn:\"root\"}),e})();const Np=new Ve(\"liveAnnouncerElement\",{providedIn:\"root\",factory:function(){return null}}),zp=new Ve(\"LIVE_ANNOUNCER_DEFAULT_OPTIONS\");let Vp=(()=>{class e{constructor(e,t,n,i){this._ngZone=t,this._defaultOptions=i,this._document=n,this._liveElement=e||this._createLiveElement()}announce(e,...t){const n=this._defaultOptions;let i,s;return 1===t.length&&\"number\"==typeof t[0]?s=t[0]:[i,s]=t,this.clear(),clearTimeout(this._previousTimeout),i||(i=n&&n.politeness?n.politeness:\"polite\"),null==s&&n&&(s=n.duration),this._liveElement.setAttribute(\"aria-live\",i),this._ngZone.runOutsideAngular(()=>new Promise(t=>{clearTimeout(this._previousTimeout),this._previousTimeout=setTimeout(()=>{this._liveElement.textContent=e,t(),\"number\"==typeof s&&(this._previousTimeout=setTimeout(()=>this.clear(),s))},100)}))}clear(){this._liveElement&&(this._liveElement.textContent=\"\")}ngOnDestroy(){clearTimeout(this._previousTimeout),this._liveElement&&this._liveElement.parentNode&&(this._liveElement.parentNode.removeChild(this._liveElement),this._liveElement=null)}_createLiveElement(){const e=this._document.getElementsByClassName(\"cdk-live-announcer-element\"),t=this._document.createElement(\"div\");for(let n=0;n{class e{constructor(e,t){this._ngZone=e,this._platform=t,this._origin=null,this._windowFocused=!1,this._elementInfo=new Map,this._monitoredElementCount=0,this._documentKeydownListener=()=>{this._lastTouchTarget=null,this._setOriginForCurrentEventQueue(\"keyboard\")},this._documentMousedownListener=()=>{this._lastTouchTarget||this._setOriginForCurrentEventQueue(\"mouse\")},this._documentTouchstartListener=e=>{null!=this._touchTimeoutId&&clearTimeout(this._touchTimeoutId),this._lastTouchTarget=e.composedPath?e.composedPath()[0]:e.target,this._touchTimeoutId=setTimeout(()=>this._lastTouchTarget=null,650)},this._windowFocusListener=()=>{this._windowFocused=!0,this._windowFocusTimeoutId=setTimeout(()=>this._windowFocused=!1)}}monitor(e,t=!1){if(!this._platform.isBrowser)return xu(null);const n=_p(e);if(this._elementInfo.has(n)){let e=this._elementInfo.get(n);return e.checkChildren=t,e.subject.asObservable()}let i={unlisten:()=>{},checkChildren:t,subject:new L};this._elementInfo.set(n,i),this._incrementMonitoredElementCount();let s=e=>this._onFocus(e,n),r=e=>this._onBlur(e,n);return this._ngZone.runOutsideAngular(()=>{n.addEventListener(\"focus\",s,!0),n.addEventListener(\"blur\",r,!0)}),i.unlisten=()=>{n.removeEventListener(\"focus\",s,!0),n.removeEventListener(\"blur\",r,!0)},i.subject.asObservable()}stopMonitoring(e){const t=_p(e),n=this._elementInfo.get(t);n&&(n.unlisten(),n.subject.complete(),this._setClasses(t),this._elementInfo.delete(t),this._decrementMonitoredElementCount())}focusVia(e,t,n){const i=_p(e);this._setOriginForCurrentEventQueue(t),\"function\"==typeof i.focus&&i.focus(n)}ngOnDestroy(){this._elementInfo.forEach((e,t)=>this.stopMonitoring(t))}_toggleClass(e,t,n){n?e.classList.add(t):e.classList.remove(t)}_setClasses(e,t){this._elementInfo.get(e)&&(this._toggleClass(e,\"cdk-focused\",!!t),this._toggleClass(e,\"cdk-touch-focused\",\"touch\"===t),this._toggleClass(e,\"cdk-keyboard-focused\",\"keyboard\"===t),this._toggleClass(e,\"cdk-mouse-focused\",\"mouse\"===t),this._toggleClass(e,\"cdk-program-focused\",\"program\"===t))}_setOriginForCurrentEventQueue(e){this._ngZone.runOutsideAngular(()=>{this._origin=e,this._originTimeoutId=setTimeout(()=>this._origin=null,1)})}_wasCausedByTouch(e){let t=e.target;return this._lastTouchTarget instanceof Node&&t instanceof Node&&(t===this._lastTouchTarget||t.contains(this._lastTouchTarget))}_onFocus(e,t){const n=this._elementInfo.get(t);if(!n||!n.checkChildren&&t!==e.target)return;let i=this._origin;i||(i=this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:this._wasCausedByTouch(e)?\"touch\":\"program\"),this._setClasses(t,i),this._emitOrigin(n.subject,i),this._lastFocusOrigin=i}_onBlur(e,t){const n=this._elementInfo.get(t);!n||n.checkChildren&&e.relatedTarget instanceof Node&&t.contains(e.relatedTarget)||(this._setClasses(t),this._emitOrigin(n.subject,null))}_emitOrigin(e,t){this._ngZone.run(()=>e.next(t))}_incrementMonitoredElementCount(){1==++this._monitoredElementCount&&this._platform.isBrowser&&this._ngZone.runOutsideAngular(()=>{document.addEventListener(\"keydown\",this._documentKeydownListener,Wp),document.addEventListener(\"mousedown\",this._documentMousedownListener,Wp),document.addEventListener(\"touchstart\",this._documentTouchstartListener,Wp),window.addEventListener(\"focus\",this._windowFocusListener)})}_decrementMonitoredElementCount(){--this._monitoredElementCount||(document.removeEventListener(\"keydown\",this._documentKeydownListener,Wp),document.removeEventListener(\"mousedown\",this._documentMousedownListener,Wp),document.removeEventListener(\"touchstart\",this._documentTouchstartListener,Wp),window.removeEventListener(\"focus\",this._windowFocusListener),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._touchTimeoutId),clearTimeout(this._originTimeoutId))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ld),Qe(bp))},e.\\u0275prov=pe({factory:function(){return new e(Qe(ld),Qe(bp))},token:e,providedIn:\"root\"}),e})();function $p(e){return 0===e.buttons}let Bp=(()=>{class e{constructor(e,t){this._platform=e,this._document=t}getHighContrastMode(){if(!this._platform.isBrowser)return 0;const e=this._document.createElement(\"div\");e.style.backgroundColor=\"rgb(1,2,3)\",e.style.position=\"absolute\",this._document.body.appendChild(e);const t=(this._document.defaultView.getComputedStyle(e).backgroundColor||\"\").replace(/ /g,\"\");switch(this._document.body.removeChild(e),t){case\"rgb(0,0,0)\":return 2;case\"rgb(255,255,255)\":return 1}return 0}_applyBodyHighContrastModeCssClasses(){if(this._platform.isBrowser&&this._document.body){const e=this._document.body.classList;e.remove(\"cdk-high-contrast-active\"),e.remove(\"cdk-high-contrast-black-on-white\"),e.remove(\"cdk-high-contrast-white-on-black\");const t=this.getHighContrastMode();1===t?(e.add(\"cdk-high-contrast-active\"),e.add(\"cdk-high-contrast-black-on-white\")):2===t&&(e.add(\"cdk-high-contrast-active\"),e.add(\"cdk-high-contrast-white-on-black\"))}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(bp),Qe(Nd))},e.\\u0275prov=pe({factory:function(){return new e(Qe(bp),Qe(Nd))},token:e,providedIn:\"root\"}),e})();const qp=new Ve(\"cdk-dir-doc\",{providedIn:\"root\",factory:function(){return Xe(Nd)}});let Gp=(()=>{class e{constructor(e){if(this.value=\"ltr\",this.change=new yc,e){const t=e.documentElement?e.documentElement.dir:null,n=(e.body?e.body.dir:null)||t;this.value=\"ltr\"===n||\"rtl\"===n?n:\"ltr\"}}ngOnDestroy(){this.change.complete()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(qp,8))},e.\\u0275prov=pe({factory:function(){return new e(Qe(qp,8))},token:e,providedIn:\"root\"}),e})(),Jp=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();const Kp=new il(\"9.0.1\");class Zp extends class extends class{}{constructor(){super()}supportsDOMEvents(){return!0}}{static makeCurrent(){var e;e=new Zp,jd||(jd=e)}getProperty(e,t){return e[t]}log(e){window.console&&window.console.log&&window.console.log(e)}logGroup(e){window.console&&window.console.group&&window.console.group(e)}logGroupEnd(){window.console&&window.console.groupEnd&&window.console.groupEnd()}onAndCancel(e,t,n){return e.addEventListener(t,n,!1),()=>{e.removeEventListener(t,n,!1)}}dispatchEvent(e,t){e.dispatchEvent(t)}remove(e){return e.parentNode&&e.parentNode.removeChild(e),e}getValue(e){return e.value}createElement(e,t){return(t=t||this.getDefaultDocument()).createElement(e)}createHtmlDocument(){return document.implementation.createHTMLDocument(\"fakeTitle\")}getDefaultDocument(){return document}isElementNode(e){return e.nodeType===Node.ELEMENT_NODE}isShadowRoot(e){return e instanceof DocumentFragment}getGlobalEventTarget(e,t){return\"window\"===t?window:\"document\"===t?e:\"body\"===t?e.body:null}getHistory(){return window.history}getLocation(){return window.location}getBaseHref(e){const t=Xp||(Xp=document.querySelector(\"base\"),Xp)?Xp.getAttribute(\"href\"):null;return null==t?null:(n=t,Qp||(Qp=document.createElement(\"a\")),Qp.setAttribute(\"href\",n),\"/\"===Qp.pathname.charAt(0)?Qp.pathname:\"/\"+Qp.pathname);var n}resetBaseElement(){Xp=null}getUserAgent(){return window.navigator.userAgent}performanceNow(){return window.performance&&window.performance.now?window.performance.now():(new Date).getTime()}supportsCookies(){return!0}getCookie(e){return lu(document.cookie,e)}}let Qp,Xp=null;const ef=new Ve(\"TRANSITION_ID\"),tf=[{provide:Nc,useFactory:function(e,t,n){return()=>{n.get(zc).donePromise.then(()=>{const n=Fd();Array.prototype.slice.apply(t.querySelectorAll(\"style[ng-transition]\")).filter(t=>t.getAttribute(\"ng-transition\")===e).forEach(e=>n.remove(e))})}},deps:[ef,Nd,fo],multi:!0}];class nf{static init(){var e;e=new nf,vd=e}addToWindow(e){Pe.getAngularTestability=(t,n=!0)=>{const i=e.findTestabilityInTree(t,n);if(null==i)throw new Error(\"Could not find testability for element.\");return i},Pe.getAllAngularTestabilities=()=>e.getAllTestabilities(),Pe.getAllAngularRootElements=()=>e.getAllRootElements(),Pe.frameworkStabilizers||(Pe.frameworkStabilizers=[]),Pe.frameworkStabilizers.push(e=>{const t=Pe.getAllAngularTestabilities();let n=t.length,i=!1;const s=function(t){i=i||t,n--,0==n&&e(i)};t.forEach((function(e){e.whenStable(s)}))})}findTestabilityInTree(e,t,n){if(null==t)return null;const i=e.getTestability(t);return null!=i?i:n?Fd().isShadowRoot(t)?this.findTestabilityInTree(e,t.host,!0):this.findTestabilityInTree(e,t.parentElement,!0):null}}const sf=new Ve(\"EventManagerPlugins\");let rf=(()=>{class e{constructor(e,t){this._zone=t,this._eventNameToPlugin=new Map,e.forEach(e=>e.manager=this),this._plugins=e.slice().reverse()}addEventListener(e,t,n){return this._findPluginFor(t).addEventListener(e,t,n)}addGlobalEventListener(e,t,n){return this._findPluginFor(t).addGlobalEventListener(e,t,n)}getZone(){return this._zone}_findPluginFor(e){const t=this._eventNameToPlugin.get(e);if(t)return t;const n=this._plugins;for(let i=0;i{class e{constructor(){this._stylesSet=new Set}addStyles(e){const t=new Set;e.forEach(e=>{this._stylesSet.has(e)||(this._stylesSet.add(e),t.add(e))}),this.onStylesAdded(t)}onStylesAdded(e){}getAllStyles(){return Array.from(this._stylesSet)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),lf=(()=>{class e extends af{constructor(e){super(),this._doc=e,this._hostNodes=new Set,this._styleNodes=new Set,this._hostNodes.add(e.head)}_addStylesToHost(e,t){e.forEach(e=>{const n=this._doc.createElement(\"style\");n.textContent=e,this._styleNodes.add(t.appendChild(n))})}addHost(e){this._addStylesToHost(this._stylesSet,e),this._hostNodes.add(e)}removeHost(e){this._hostNodes.delete(e)}onStylesAdded(e){this._hostNodes.forEach(t=>this._addStylesToHost(e,t))}ngOnDestroy(){this._styleNodes.forEach(e=>Fd().remove(e))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const cf={svg:\"http://www.w3.org/2000/svg\",xhtml:\"http://www.w3.org/1999/xhtml\",xlink:\"http://www.w3.org/1999/xlink\",xml:\"http://www.w3.org/XML/1998/namespace\",xmlns:\"http://www.w3.org/2000/xmlns/\"},df=/%COMP%/g;function uf(e,t,n){for(let i=0;i{if(\"__ngUnwrap__\"===t)return e;!1===e(t)&&(t.preventDefault(),t.returnValue=!1)}}let mf=(()=>{class e{constructor(e,t,n){this.eventManager=e,this.sharedStylesHost=t,this.appId=n,this.rendererByCompId=new Map,this.defaultRenderer=new pf(e)}createRenderer(e,t){if(!e||!t)return this.defaultRenderer;switch(t.encapsulation){case pt.Emulated:{let n=this.rendererByCompId.get(t.id);return n||(n=new ff(this.eventManager,this.sharedStylesHost,t,this.appId),this.rendererByCompId.set(t.id,n)),n.applyToHost(e),n}case pt.Native:case pt.ShadowDom:return new _f(this.eventManager,this.sharedStylesHost,e,t);default:if(!this.rendererByCompId.has(t.id)){const e=uf(t.id,t.styles,[]);this.sharedStylesHost.addStyles(e),this.rendererByCompId.set(t.id,this.defaultRenderer)}return this.defaultRenderer}}begin(){}end(){}}return e.\\u0275fac=function(t){return new(t||e)(Qe(rf),Qe(lf),Qe(Vc))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class pf{constructor(e){this.eventManager=e,this.data=Object.create(null)}destroy(){}createElement(e,t){return t?document.createElementNS(cf[t]||t,e):document.createElement(e)}createComment(e){return document.createComment(e)}createText(e){return document.createTextNode(e)}appendChild(e,t){e.appendChild(t)}insertBefore(e,t,n){e&&e.insertBefore(t,n)}removeChild(e,t){e&&e.removeChild(t)}selectRootElement(e,t){let n=\"string\"==typeof e?document.querySelector(e):e;if(!n)throw new Error(`The selector \"${e}\" did not match any elements`);return t||(n.textContent=\"\"),n}parentNode(e){return e.parentNode}nextSibling(e){return e.nextSibling}setAttribute(e,t,n,i){if(i){t=i+\":\"+t;const s=cf[i];s?e.setAttributeNS(s,t,n):e.setAttribute(t,n)}else e.setAttribute(t,n)}removeAttribute(e,t,n){if(n){const i=cf[n];i?e.removeAttributeNS(i,t):e.removeAttribute(`${n}:${t}`)}else e.removeAttribute(t)}addClass(e,t){e.classList.add(t)}removeClass(e,t){e.classList.remove(t)}setStyle(e,t,n,i){i&Xa.DashCase?e.style.setProperty(t,n,i&Xa.Important?\"important\":\"\"):e.style[t]=n}removeStyle(e,t,n){n&Xa.DashCase?e.style.removeProperty(t):e.style[t]=\"\"}setProperty(e,t,n){e[t]=n}setValue(e,t){e.nodeValue=t}listen(e,t,n){return\"string\"==typeof e?this.eventManager.addGlobalEventListener(e,t,hf(n)):this.eventManager.addEventListener(e,t,hf(n))}}class ff extends pf{constructor(e,t,n,i){super(e),this.component=n;const s=uf(i+\"-\"+n.id,n.styles,[]);t.addStyles(s),this.contentAttr=\"_ngcontent-%COMP%\".replace(df,i+\"-\"+n.id),this.hostAttr=function(e){return\"_nghost-%COMP%\".replace(df,e)}(i+\"-\"+n.id)}applyToHost(e){super.setAttribute(e,this.hostAttr,\"\")}createElement(e,t){const n=super.createElement(e,t);return super.setAttribute(n,this.contentAttr,\"\"),n}}class _f extends pf{constructor(e,t,n,i){super(e),this.sharedStylesHost=t,this.hostEl=n,this.component=i,this.shadowRoot=i.encapsulation===pt.ShadowDom?n.attachShadow({mode:\"open\"}):n.createShadowRoot(),this.sharedStylesHost.addHost(this.shadowRoot);const s=uf(i.id,i.styles,[]);for(let r=0;r{class e extends of{constructor(e){super(e)}supports(e){return!0}addEventListener(e,t,n){return e.addEventListener(t,n,!1),()=>this.removeEventListener(e,t,n)}removeEventListener(e,t,n){return e.removeEventListener(t,n)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const yf={pan:!0,panstart:!0,panmove:!0,panend:!0,pancancel:!0,panleft:!0,panright:!0,panup:!0,pandown:!0,pinch:!0,pinchstart:!0,pinchmove:!0,pinchend:!0,pinchcancel:!0,pinchin:!0,pinchout:!0,press:!0,pressup:!0,rotate:!0,rotatestart:!0,rotatemove:!0,rotateend:!0,rotatecancel:!0,swipe:!0,swipeleft:!0,swiperight:!0,swipeup:!0,swipedown:!0,tap:!0},bf=new Ve(\"HammerGestureConfig\"),vf=new Ve(\"HammerLoader\");let wf=(()=>{class e{constructor(){this.events=[],this.overrides={}}buildHammer(e){const t=new Hammer(e,this.options);t.get(\"pinch\").set({enable:!0}),t.get(\"rotate\").set({enable:!0});for(const n in this.overrides)t.get(n).set(this.overrides[n]);return t}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const Mf=[{provide:sf,useClass:(()=>{class e extends of{constructor(e,t,n,i){super(e),this._config=t,this.console=n,this.loader=i}supports(e){return!(!yf.hasOwnProperty(e.toLowerCase())&&!this.isCustomEvent(e)||!window.Hammer&&!this.loader&&(this.console.warn(`The \"${e}\" event cannot be bound because Hammer.JS is not `+\"loaded and no custom loader has been specified.\"),1))}addEventListener(e,t,n){const i=this.manager.getZone();if(t=t.toLowerCase(),!window.Hammer&&this.loader){let i=!1,s=()=>{i=!0};return this.loader().then(()=>{if(!window.Hammer)return this.console.warn(\"The custom HAMMER_LOADER completed, but Hammer.JS is not present.\"),void(s=()=>{});i||(s=this.addEventListener(e,t,n))}).catch(()=>{this.console.warn(`The \"${t}\" event cannot be bound because the custom `+\"Hammer.JS loader failed.\"),s=()=>{}}),()=>{s()}}return i.runOutsideAngular(()=>{const s=this._config.buildHammer(e),r=function(e){i.runGuarded((function(){n(e)}))};return s.on(t,r),()=>{s.off(t,r),\"function\"==typeof s.destroy&&s.destroy()}})}isCustomEvent(e){return this._config.events.indexOf(e)>-1}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd),Qe(bf),Qe(Gc),Qe(vf,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),multi:!0,deps:[Nd,bf,Gc,[new le,vf]]},{provide:bf,useClass:wf,deps:[]}];let kf=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:Mf}),e})();const Sf=[\"alt\",\"control\",\"meta\",\"shift\"],Lf={\"\\b\":\"Backspace\",\"\\t\":\"Tab\",\"\\x7f\":\"Delete\",\"\\x1b\":\"Escape\",Del:\"Delete\",Esc:\"Escape\",Left:\"ArrowLeft\",Right:\"ArrowRight\",Up:\"ArrowUp\",Down:\"ArrowDown\",Menu:\"ContextMenu\",Scroll:\"ScrollLock\",Win:\"OS\"},xf={A:\"1\",B:\"2\",C:\"3\",D:\"4\",E:\"5\",F:\"6\",G:\"7\",H:\"8\",I:\"9\",J:\"*\",K:\"+\",M:\"-\",N:\".\",O:\"/\",\"`\":\"0\",\"\\x90\":\"NumLock\"},Cf={alt:e=>e.altKey,control:e=>e.ctrlKey,meta:e=>e.metaKey,shift:e=>e.shiftKey};let Tf=(()=>{class e extends of{constructor(e){super(e)}supports(t){return null!=e.parseEventName(t)}addEventListener(t,n,i){const s=e.parseEventName(n),r=e.eventCallback(s.fullKey,i,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>Fd().onAndCancel(t,s.domEventName,r))}static parseEventName(t){const n=t.toLowerCase().split(\".\"),i=n.shift();if(0===n.length||\"keydown\"!==i&&\"keyup\"!==i)return null;const s=e._normalizeKey(n.pop());let r=\"\";if(Sf.forEach(e=>{const t=n.indexOf(e);t>-1&&(n.splice(t,1),r+=e+\".\")}),r+=s,0!=n.length||0===s.length)return null;const o={};return o.domEventName=i,o.fullKey=r,o}static getEventFullKey(e){let t=\"\",n=function(e){let t=e.key;if(null==t){if(t=e.keyIdentifier,null==t)return\"Unidentified\";t.startsWith(\"U+\")&&(t=String.fromCharCode(parseInt(t.substring(2),16)),3===e.location&&xf.hasOwnProperty(t)&&(t=xf[t]))}return Lf[t]||t}(e);return n=n.toLowerCase(),\" \"===n?n=\"space\":\".\"===n&&(n=\"dot\"),Sf.forEach(i=>{i!=n&&(0,Cf[i])(e)&&(t+=i+\".\")}),t+=n,t}static eventCallback(t,n,i){return s=>{e.getEventFullKey(s)===t&&i.runGuarded(()=>n(s))}}static _normalizeKey(e){switch(e){case\"esc\":return\"escape\";default:return e}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),Df=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:function(){return Qe(Yf)},token:e,providedIn:\"root\"}),e})(),Yf=(()=>{class e extends Df{constructor(e){super(),this._doc=e}sanitize(e,t){if(null==t)return null;switch(e){case Gi.NONE:return t;case Gi.HTML:return vi(t,\"HTML\")?bi(t):Bi(this._doc,String(t));case Gi.STYLE:return vi(t,\"Style\")?bi(t):Zi(t);case Gi.SCRIPT:if(vi(t,\"Script\"))return bi(t);throw new Error(\"unsafe value used in a script context\");case Gi.URL:return wi(t),vi(t,\"URL\")?bi(t):Ti(String(t));case Gi.RESOURCE_URL:if(vi(t,\"ResourceURL\"))return bi(t);throw new Error(\"unsafe value used in a resource URL context (see http://g.co/ng/security#xss)\");default:throw new Error(`Unexpected SecurityContext ${e} (see http://g.co/ng/security#xss)`)}}bypassSecurityTrustHtml(e){return new pi(e)}bypassSecurityTrustStyle(e){return new fi(e)}bypassSecurityTrustScript(e){return new _i(e)}bypassSecurityTrustUrl(e){return new gi(e)}bypassSecurityTrustResourceUrl(e){return new yi(e)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({factory:function(){return e=Qe(We),new Yf(e.get(Nd));var e},token:e,providedIn:\"root\"}),e})();const Ef=Sd(Ad,\"browser\",[{provide:Bc,useValue:\"browser\"},{provide:$c,useValue:function(){Zp.makeCurrent(),nf.init()},multi:!0},{provide:Nd,useFactory:function(){return function(e){At=e}(document),document},deps:[]}]),Of=[[],{provide:eo,useValue:\"root\"},{provide:hi,useFactory:function(){return new hi},deps:[]},{provide:sf,useClass:gf,multi:!0,deps:[Nd,ld,Bc]},{provide:sf,useClass:Tf,multi:!0,deps:[Nd]},[],{provide:mf,useClass:mf,deps:[rf,lf,Vc]},{provide:Qa,useExisting:mf},{provide:af,useExisting:lf},{provide:lf,useClass:lf,deps:[Nd]},{provide:_d,useClass:_d,deps:[ld]},{provide:rf,useClass:rf,deps:[sf,ld]},[]];let If=(()=>{class e{constructor(e){if(e)throw new Error(\"BrowserModule has already been loaded. If you need access to common directives such as NgIf and NgFor from a lazy loaded module, import CommonModule instead.\")}static withServerTransition(t){return{ngModule:e,providers:[{provide:Vc,useValue:t.appId},{provide:ef,useExisting:Vc},tf]}}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)(Qe(e,12))},providers:Of,imports:[Mu,Hd]}),e})();function Pf(){return B(1)}function Af(...e){return Pf()(xu(...e))}function Rf(...e){const t=e[e.length-1];return C(t)?(e.pop(),n=>Af(e,n,t)):t=>Af(e,t)}\"undefined\"!=typeof window&&window;class Hf{}function jf(e,t){return{type:7,name:e,definitions:t,options:{}}}function Ff(e,t=null){return{type:4,styles:t,timings:e}}function Nf(e,t=null){return{type:3,steps:e,options:t}}function zf(e,t=null){return{type:2,steps:e,options:t}}function Vf(e){return{type:6,styles:e,offset:null}}function Wf(e,t,n){return{type:0,name:e,styles:t,options:n}}function Uf(e,t,n=null){return{type:1,expr:e,animation:t,options:n}}function $f(e=null){return{type:9,options:e}}function Bf(e,t,n=null){return{type:11,selector:e,animation:t,options:n}}function qf(e){Promise.resolve(null).then(e)}class Gf{constructor(e=0,t=0){this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this.parentPlayer=null,this.totalTime=e+t}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(e=>e()),this._onDoneFns=[])}onStart(e){this._onStartFns.push(e)}onDone(e){this._onDoneFns.push(e)}onDestroy(e){this._onDestroyFns.push(e)}hasStarted(){return this._started}init(){}play(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}triggerMicrotask(){qf(()=>this._onFinish())}_onStart(){this._onStartFns.forEach(e=>e()),this._onStartFns=[]}pause(){}restart(){}finish(){this._onFinish()}destroy(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach(e=>e()),this._onDestroyFns=[])}reset(){}setPosition(e){}getPosition(){return 0}triggerCallback(e){const t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach(e=>e()),t.length=0}}class Jf{constructor(e){this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=e;let t=0,n=0,i=0;const s=this.players.length;0==s?qf(()=>this._onFinish()):this.players.forEach(e=>{e.onDone(()=>{++t==s&&this._onFinish()}),e.onDestroy(()=>{++n==s&&this._onDestroy()}),e.onStart(()=>{++i==s&&this._onStart()})}),this.totalTime=this.players.reduce((e,t)=>Math.max(e,t.totalTime),0)}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(e=>e()),this._onDoneFns=[])}init(){this.players.forEach(e=>e.init())}onStart(e){this._onStartFns.push(e)}_onStart(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach(e=>e()),this._onStartFns=[])}onDone(e){this._onDoneFns.push(e)}onDestroy(e){this._onDestroyFns.push(e)}hasStarted(){return this._started}play(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach(e=>e.play())}pause(){this.players.forEach(e=>e.pause())}restart(){this.players.forEach(e=>e.restart())}finish(){this._onFinish(),this.players.forEach(e=>e.finish())}destroy(){this._onDestroy()}_onDestroy(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach(e=>e.destroy()),this._onDestroyFns.forEach(e=>e()),this._onDestroyFns=[])}reset(){this.players.forEach(e=>e.reset()),this._destroyed=!1,this._finished=!1,this._started=!1}setPosition(e){const t=e*this.totalTime;this.players.forEach(e=>{const n=e.totalTime?Math.min(1,t/e.totalTime):1;e.setPosition(n)})}getPosition(){let e=0;return this.players.forEach(t=>{const n=t.getPosition();e=Math.min(n,e)}),e}beforeDestroy(){this.players.forEach(e=>{e.beforeDestroy&&e.beforeDestroy()})}triggerCallback(e){const t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach(e=>e()),t.length=0}}function Kf(){return\"undefined\"!=typeof process&&\"[object process]\"==={}.toString.call(process)}function Zf(e){switch(e.length){case 0:return new Gf;case 1:return e[0];default:return new Jf(e)}}function Qf(e,t,n,i,s={},r={}){const o=[],a=[];let l=-1,c=null;if(i.forEach(e=>{const n=e.offset,i=n==l,d=i&&c||{};Object.keys(e).forEach(n=>{let i=n,a=e[n];if(\"offset\"!==n)switch(i=t.normalizePropertyName(i,o),a){case\"!\":a=s[n];break;case\"*\":a=r[n];break;default:a=t.normalizeStyleValue(n,i,a,o)}d[i]=a}),i||a.push(d),c=d,l=n}),o.length){const e=\"\\n - \";throw new Error(`Unable to animate due to the following errors:${e}${o.join(e)}`)}return a}function Xf(e,t,n,i){switch(t){case\"start\":e.onStart(()=>i(n&&e_(n,\"start\",e)));break;case\"done\":e.onDone(()=>i(n&&e_(n,\"done\",e)));break;case\"destroy\":e.onDestroy(()=>i(n&&e_(n,\"destroy\",e)))}}function e_(e,t,n){const i=n.totalTime,s=t_(e.element,e.triggerName,e.fromState,e.toState,t||e.phaseName,null==i?e.totalTime:i,!!n.disabled),r=e._data;return null!=r&&(s._data=r),s}function t_(e,t,n,i,s=\"\",r=0,o){return{element:e,triggerName:t,fromState:n,toState:i,phaseName:s,totalTime:r,disabled:!!o}}function n_(e,t,n){let i;return e instanceof Map?(i=e.get(t),i||e.set(t,i=n)):(i=e[t],i||(i=e[t]=n)),i}function i_(e){const t=e.indexOf(\":\");return[e.substring(1,t),e.substr(t+1)]}let s_=(e,t)=>!1,r_=(e,t)=>!1,o_=(e,t,n)=>[];const a_=Kf();(a_||\"undefined\"!=typeof Element)&&(s_=(e,t)=>e.contains(t),r_=(()=>{if(a_||Element.prototype.matches)return(e,t)=>e.matches(t);{const e=Element.prototype,t=e.matchesSelector||e.mozMatchesSelector||e.msMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;return t?(e,n)=>t.apply(e,[n]):r_}})(),o_=(e,t,n)=>{let i=[];if(n)i.push(...e.querySelectorAll(t));else{const n=e.querySelector(t);n&&i.push(n)}return i});let l_=null,c_=!1;function d_(e){l_||(l_=(\"undefined\"!=typeof document?document.body:null)||{},c_=!!l_.style&&\"WebkitAppearance\"in l_.style);let t=!0;return l_.style&&!function(e){return\"ebkit\"==e.substring(1,6)}(e)&&(t=e in l_.style,!t&&c_)&&(t=\"Webkit\"+e.charAt(0).toUpperCase()+e.substr(1)in l_.style),t}const u_=r_,h_=s_,m_=o_;function p_(e){const t={};return Object.keys(e).forEach(n=>{const i=n.replace(/([a-z])([A-Z])/g,\"$1-$2\");t[i]=e[n]}),t}let f_=(()=>{class e{validateStyleProperty(e){return d_(e)}matchesElement(e,t){return u_(e,t)}containsElement(e,t){return h_(e,t)}query(e,t,n){return m_(e,t,n)}computeStyle(e,t,n){return n||\"\"}animate(e,t,n,i,s,r=[],o){return new Gf(n,i)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),__=(()=>{class e{}return e.NOOP=new f_,e})();function g_(e){if(\"number\"==typeof e)return e;const t=e.match(/^(-?[\\.\\d]+)(m?s)/);return!t||t.length<2?0:y_(parseFloat(t[1]),t[2])}function y_(e,t){switch(t){case\"s\":return 1e3*e;default:return e}}function b_(e,t,n){return e.hasOwnProperty(\"duration\")?e:function(e,t,n){let i,s=0,r=\"\";if(\"string\"==typeof e){const n=e.match(/^(-?[\\.\\d]+)(m?s)(?:\\s+(-?[\\.\\d]+)(m?s))?(?:\\s+([-a-z]+(?:\\(.+?\\))?))?$/i);if(null===n)return t.push(`The provided timing value \"${e}\" is invalid.`),{duration:0,delay:0,easing:\"\"};i=y_(parseFloat(n[1]),n[2]);const o=n[3];null!=o&&(s=y_(parseFloat(o),n[4]));const a=n[5];a&&(r=a)}else i=e;if(!n){let n=!1,r=t.length;i<0&&(t.push(\"Duration values below 0 are not allowed for this animation step.\"),n=!0),s<0&&(t.push(\"Delay values below 0 are not allowed for this animation step.\"),n=!0),n&&t.splice(r,0,`The provided timing value \"${e}\" is invalid.`)}return{duration:i,delay:s,easing:r}}(e,t,n)}function v_(e,t={}){return Object.keys(e).forEach(n=>{t[n]=e[n]}),t}function w_(e,t,n={}){if(t)for(let i in e)n[i]=e[i];else v_(e,n);return n}function M_(e,t,n){return n?t+\":\"+n+\";\":\"\"}function k_(e){let t=\"\";for(let n=0;n{const s=O_(i);n&&!n.hasOwnProperty(i)&&(n[i]=e.style[s]),e.style[s]=t[i]}),Kf()&&k_(e))}function L_(e,t){e.style&&(Object.keys(t).forEach(t=>{const n=O_(t);e.style[n]=\"\"}),Kf()&&k_(e))}function x_(e){return Array.isArray(e)?1==e.length?e[0]:zf(e):e}const C_=new RegExp(\"{{\\\\s*(.+?)\\\\s*}}\",\"g\");function T_(e){let t=[];if(\"string\"==typeof e){let n;for(;n=C_.exec(e);)t.push(n[1]);C_.lastIndex=0}return t}function D_(e,t,n){const i=e.toString(),s=i.replace(C_,(e,i)=>{let s=t[i];return t.hasOwnProperty(i)||(n.push(`Please provide a value for the animation param ${i}`),s=\"\"),s.toString()});return s==i?e:s}function Y_(e){const t=[];let n=e.next();for(;!n.done;)t.push(n.value),n=e.next();return t}const E_=/-+([a-z0-9])/g;function O_(e){return e.replace(E_,(...e)=>e[1].toUpperCase())}function I_(e,t){return 0===e||0===t}function P_(e,t,n){const i=Object.keys(n);if(i.length&&t.length){let r=t[0],o=[];if(i.forEach(e=>{r.hasOwnProperty(e)||o.push(e),r[e]=n[e]}),o.length)for(var s=1;sfunction(e,t,n){if(\":\"==e[0]){const i=function(e,t){switch(e){case\":enter\":return\"void => *\";case\":leave\":return\"* => void\";case\":increment\":return(e,t)=>parseFloat(t)>parseFloat(e);case\":decrement\":return(e,t)=>parseFloat(t) *\"}}(e,n);if(\"function\"==typeof i)return void t.push(i);e=i}const i=e.match(/^(\\*|[-\\w]+)\\s*()\\s*(\\*|[-\\w]+)$/);if(null==i||i.length<4)return n.push(`The provided transition expression \"${e}\" is not supported`),t;const s=i[1],r=i[2],o=i[3];t.push(N_(s,o)),\"<\"!=r[0]||\"*\"==s&&\"*\"==o||t.push(N_(o,s))}(e,n,t)):n.push(e),n}const j_=new Set([\"true\",\"1\"]),F_=new Set([\"false\",\"0\"]);function N_(e,t){const n=j_.has(e)||F_.has(e),i=j_.has(t)||F_.has(t);return(s,r)=>{let o=\"*\"==e||e==s,a=\"*\"==t||t==r;return!o&&n&&\"boolean\"==typeof s&&(o=s?j_.has(e):F_.has(e)),!a&&i&&\"boolean\"==typeof r&&(a=r?j_.has(t):F_.has(t)),o&&a}}const z_=new RegExp(\"s*:selfs*,?\",\"g\");function V_(e,t,n){return new W_(e).build(t,n)}class W_{constructor(e){this._driver=e}build(e,t){const n=new U_(t);return this._resetContextStyleTimingState(n),A_(this,x_(e),n)}_resetContextStyleTimingState(e){e.currentQuerySelector=\"\",e.collectedStyles={},e.collectedStyles[\"\"]={},e.currentTime=0}visitTrigger(e,t){let n=t.queryCount=0,i=t.depCount=0;const s=[],r=[];return\"@\"==e.name.charAt(0)&&t.errors.push(\"animation triggers cannot be prefixed with an `@` sign (e.g. trigger('@foo', [...]))\"),e.definitions.forEach(e=>{if(this._resetContextStyleTimingState(t),0==e.type){const n=e,i=n.name;i.toString().split(/\\s*,\\s*/).forEach(e=>{n.name=e,s.push(this.visitState(n,t))}),n.name=i}else if(1==e.type){const s=this.visitTransition(e,t);n+=s.queryCount,i+=s.depCount,r.push(s)}else t.errors.push(\"only state() and transition() definitions can sit inside of a trigger()\")}),{type:7,name:e.name,states:s,transitions:r,queryCount:n,depCount:i,options:null}}visitState(e,t){const n=this.visitStyle(e.styles,t),i=e.options&&e.options.params||null;if(n.containsDynamicStyles){const s=new Set,r=i||{};if(n.styles.forEach(e=>{if($_(e)){const t=e;Object.keys(t).forEach(e=>{T_(t[e]).forEach(e=>{r.hasOwnProperty(e)||s.add(e)})})}}),s.size){const n=Y_(s.values());t.errors.push(`state(\"${e.name}\", ...) must define default values for all the following style substitutions: ${n.join(\", \")}`)}}return{type:0,name:e.name,style:n,options:i?{params:i}:null}}visitTransition(e,t){t.queryCount=0,t.depCount=0;const n=A_(this,x_(e.animation),t);return{type:1,matchers:H_(e.expr,t.errors),animation:n,queryCount:t.queryCount,depCount:t.depCount,options:B_(e.options)}}visitSequence(e,t){return{type:2,steps:e.steps.map(e=>A_(this,e,t)),options:B_(e.options)}}visitGroup(e,t){const n=t.currentTime;let i=0;const s=e.steps.map(e=>{t.currentTime=n;const s=A_(this,e,t);return i=Math.max(i,t.currentTime),s});return t.currentTime=i,{type:3,steps:s,options:B_(e.options)}}visitAnimate(e,t){const n=function(e,t){let n=null;if(e.hasOwnProperty(\"duration\"))n=e;else if(\"number\"==typeof e)return q_(b_(e,t).duration,0,\"\");const i=e;if(i.split(/\\s+/).some(e=>\"{\"==e.charAt(0)&&\"{\"==e.charAt(1))){const e=q_(0,0,\"\");return e.dynamic=!0,e.strValue=i,e}return n=n||b_(i,t),q_(n.duration,n.delay,n.easing)}(e.timings,t.errors);let i;t.currentAnimateTimings=n;let s=e.styles?e.styles:Vf({});if(5==s.type)i=this.visitKeyframes(s,t);else{let s=e.styles,r=!1;if(!s){r=!0;const e={};n.easing&&(e.easing=n.easing),s=Vf(e)}t.currentTime+=n.duration+n.delay;const o=this.visitStyle(s,t);o.isEmptyStep=r,i=o}return t.currentAnimateTimings=null,{type:4,timings:n,style:i,options:null}}visitStyle(e,t){const n=this._makeStyleAst(e,t);return this._validateStyleAst(n,t),n}_makeStyleAst(e,t){const n=[];Array.isArray(e.styles)?e.styles.forEach(e=>{\"string\"==typeof e?\"*\"==e?n.push(e):t.errors.push(`The provided style string value ${e} is not allowed.`):n.push(e)}):n.push(e.styles);let i=!1,s=null;return n.forEach(e=>{if($_(e)){const t=e,n=t.easing;if(n&&(s=n,delete t.easing),!i)for(let e in t)if(t[e].toString().indexOf(\"{{\")>=0){i=!0;break}}}),{type:6,styles:n,easing:s,offset:e.offset,containsDynamicStyles:i,options:null}}_validateStyleAst(e,t){const n=t.currentAnimateTimings;let i=t.currentTime,s=t.currentTime;n&&s>0&&(s-=n.duration+n.delay),e.styles.forEach(e=>{\"string\"!=typeof e&&Object.keys(e).forEach(n=>{if(!this._driver.validateStyleProperty(n))return void t.errors.push(`The provided animation property \"${n}\" is not a supported CSS property for animations`);const r=t.collectedStyles[t.currentQuerySelector],o=r[n];let a=!0;o&&(s!=i&&s>=o.startTime&&i<=o.endTime&&(t.errors.push(`The CSS property \"${n}\" that exists between the times of \"${o.startTime}ms\" and \"${o.endTime}ms\" is also being animated in a parallel animation between the times of \"${s}ms\" and \"${i}ms\"`),a=!1),s=o.startTime),a&&(r[n]={startTime:s,endTime:i}),t.options&&function(e,t,n){const i=t.params||{},s=T_(e);s.length&&s.forEach(e=>{i.hasOwnProperty(e)||n.push(`Unable to resolve the local animation param ${e} in the given list of values`)})}(e[n],t.options,t.errors)})})}visitKeyframes(e,t){const n={type:5,styles:[],options:null};if(!t.currentAnimateTimings)return t.errors.push(\"keyframes() must be placed inside of a call to animate()\"),n;let i=0;const s=[];let r=!1,o=!1,a=0;const l=e.steps.map(e=>{const n=this._makeStyleAst(e,t);let l=null!=n.offset?n.offset:function(e){if(\"string\"==typeof e)return null;let t=null;if(Array.isArray(e))e.forEach(e=>{if($_(e)&&e.hasOwnProperty(\"offset\")){const n=e;t=parseFloat(n.offset),delete n.offset}});else if($_(e)&&e.hasOwnProperty(\"offset\")){const n=e;t=parseFloat(n.offset),delete n.offset}return t}(n.styles),c=0;return null!=l&&(i++,c=n.offset=l),o=o||c<0||c>1,r=r||c0&&i{const r=d>0?i==u?1:d*i:s[i],o=r*p;t.currentTime=h+m.delay+o,m.duration=o,this._validateStyleAst(e,t),e.offset=r,n.styles.push(e)}),n}visitReference(e,t){return{type:8,animation:A_(this,x_(e.animation),t),options:B_(e.options)}}visitAnimateChild(e,t){return t.depCount++,{type:9,options:B_(e.options)}}visitAnimateRef(e,t){return{type:10,animation:this.visitReference(e.animation,t),options:B_(e.options)}}visitQuery(e,t){const n=t.currentQuerySelector,i=e.options||{};t.queryCount++,t.currentQuery=e;const[s,r]=function(e){const t=!!e.split(/\\s*,\\s*/).find(e=>\":self\"==e);return t&&(e=e.replace(z_,\"\")),[e=e.replace(/@\\*/g,\".ng-trigger\").replace(/@\\w+/g,e=>\".ng-trigger-\"+e.substr(1)).replace(/:animating/g,\".ng-animating\"),t]}(e.selector);t.currentQuerySelector=n.length?n+\" \"+s:s,n_(t.collectedStyles,t.currentQuerySelector,{});const o=A_(this,x_(e.animation),t);return t.currentQuery=null,t.currentQuerySelector=n,{type:11,selector:s,limit:i.limit||0,optional:!!i.optional,includeSelf:r,animation:o,originalSelector:e.selector,options:B_(e.options)}}visitStagger(e,t){t.currentQuery||t.errors.push(\"stagger() can only be used inside of query()\");const n=\"full\"===e.timings?{duration:0,delay:0,easing:\"full\"}:b_(e.timings,t.errors,!0);return{type:12,animation:A_(this,x_(e.animation),t),timings:n,options:null}}}class U_{constructor(e){this.errors=e,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles={},this.options=null}}function $_(e){return!Array.isArray(e)&&\"object\"==typeof e}function B_(e){var t;return e?(e=v_(e)).params&&(e.params=(t=e.params)?v_(t):null):e={},e}function q_(e,t,n){return{duration:e,delay:t,easing:n}}function G_(e,t,n,i,s,r,o=null,a=!1){return{type:1,element:e,keyframes:t,preStyleProps:n,postStyleProps:i,duration:s,delay:r,totalTime:s+r,easing:o,subTimeline:a}}class J_{constructor(){this._map=new Map}consume(e){let t=this._map.get(e);return t?this._map.delete(e):t=[],t}append(e,t){let n=this._map.get(e);n||this._map.set(e,n=[]),n.push(...t)}has(e){return this._map.has(e)}clear(){this._map.clear()}}const K_=new RegExp(\":enter\",\"g\"),Z_=new RegExp(\":leave\",\"g\");function Q_(e,t,n,i,s,r={},o={},a,l,c=[]){return(new X_).buildKeyframes(e,t,n,i,s,r,o,a,l,c)}class X_{buildKeyframes(e,t,n,i,s,r,o,a,l,c=[]){l=l||new J_;const d=new tg(e,t,l,i,s,c,[]);d.options=a,d.currentTimeline.setStyles([r],null,d.errors,a),A_(this,n,d);const u=d.timelines.filter(e=>e.containsAnimation());if(u.length&&Object.keys(o).length){const e=u[u.length-1];e.allowOnlyTimelineStyles()||e.setStyles([o],null,d.errors,a)}return u.length?u.map(e=>e.buildKeyframes()):[G_(t,[],[],[],0,0,\"\",!1)]}visitTrigger(e,t){}visitState(e,t){}visitTransition(e,t){}visitAnimateChild(e,t){const n=t.subInstructions.consume(t.element);if(n){const i=t.createSubContext(e.options),s=t.currentTimeline.currentTime,r=this._visitSubInstructions(n,i,i.options);s!=r&&t.transformIntoNewTimeline(r)}t.previousNode=e}visitAnimateRef(e,t){const n=t.createSubContext(e.options);n.transformIntoNewTimeline(),this.visitReference(e.animation,n),t.transformIntoNewTimeline(n.currentTimeline.currentTime),t.previousNode=e}_visitSubInstructions(e,t,n){let i=t.currentTimeline.currentTime;const s=null!=n.duration?g_(n.duration):null,r=null!=n.delay?g_(n.delay):null;return 0!==s&&e.forEach(e=>{const n=t.appendInstructionToTimeline(e,s,r);i=Math.max(i,n.duration+n.delay)}),i}visitReference(e,t){t.updateOptions(e.options,!0),A_(this,e.animation,t),t.previousNode=e}visitSequence(e,t){const n=t.subContextCount;let i=t;const s=e.options;if(s&&(s.params||s.delay)&&(i=t.createSubContext(s),i.transformIntoNewTimeline(),null!=s.delay)){6==i.previousNode.type&&(i.currentTimeline.snapshotCurrentStyles(),i.previousNode=eg);const e=g_(s.delay);i.delayNextStep(e)}e.steps.length&&(e.steps.forEach(e=>A_(this,e,i)),i.currentTimeline.applyStylesToKeyframe(),i.subContextCount>n&&i.transformIntoNewTimeline()),t.previousNode=e}visitGroup(e,t){const n=[];let i=t.currentTimeline.currentTime;const s=e.options&&e.options.delay?g_(e.options.delay):0;e.steps.forEach(r=>{const o=t.createSubContext(e.options);s&&o.delayNextStep(s),A_(this,r,o),i=Math.max(i,o.currentTimeline.currentTime),n.push(o.currentTimeline)}),n.forEach(e=>t.currentTimeline.mergeTimelineCollectedStyles(e)),t.transformIntoNewTimeline(i),t.previousNode=e}_visitTiming(e,t){if(e.dynamic){const n=e.strValue;return b_(t.params?D_(n,t.params,t.errors):n,t.errors)}return{duration:e.duration,delay:e.delay,easing:e.easing}}visitAnimate(e,t){const n=t.currentAnimateTimings=this._visitTiming(e.timings,t),i=t.currentTimeline;n.delay&&(t.incrementTime(n.delay),i.snapshotCurrentStyles());const s=e.style;5==s.type?this.visitKeyframes(s,t):(t.incrementTime(n.duration),this.visitStyle(s,t),i.applyStylesToKeyframe()),t.currentAnimateTimings=null,t.previousNode=e}visitStyle(e,t){const n=t.currentTimeline,i=t.currentAnimateTimings;!i&&n.getCurrentStyleProperties().length&&n.forwardFrame();const s=i&&i.easing||e.easing;e.isEmptyStep?n.applyEmptyStep(s):n.setStyles(e.styles,s,t.errors,t.options),t.previousNode=e}visitKeyframes(e,t){const n=t.currentAnimateTimings,i=t.currentTimeline.duration,s=n.duration,r=t.createSubContext().currentTimeline;r.easing=n.easing,e.styles.forEach(e=>{r.forwardTime((e.offset||0)*s),r.setStyles(e.styles,e.easing,t.errors,t.options),r.applyStylesToKeyframe()}),t.currentTimeline.mergeTimelineCollectedStyles(r),t.transformIntoNewTimeline(i+s),t.previousNode=e}visitQuery(e,t){const n=t.currentTimeline.currentTime,i=e.options||{},s=i.delay?g_(i.delay):0;s&&(6===t.previousNode.type||0==n&&t.currentTimeline.getCurrentStyleProperties().length)&&(t.currentTimeline.snapshotCurrentStyles(),t.previousNode=eg);let r=n;const o=t.invokeQuery(e.selector,e.originalSelector,e.limit,e.includeSelf,!!i.optional,t.errors);t.currentQueryTotal=o.length;let a=null;o.forEach((n,i)=>{t.currentQueryIndex=i;const o=t.createSubContext(e.options,n);s&&o.delayNextStep(s),n===t.element&&(a=o.currentTimeline),A_(this,e.animation,o),o.currentTimeline.applyStylesToKeyframe(),r=Math.max(r,o.currentTimeline.currentTime)}),t.currentQueryIndex=0,t.currentQueryTotal=0,t.transformIntoNewTimeline(r),a&&(t.currentTimeline.mergeTimelineCollectedStyles(a),t.currentTimeline.snapshotCurrentStyles()),t.previousNode=e}visitStagger(e,t){const n=t.parentContext,i=t.currentTimeline,s=e.timings,r=Math.abs(s.duration),o=r*(t.currentQueryTotal-1);let a=r*t.currentQueryIndex;switch(s.duration<0?\"reverse\":s.easing){case\"reverse\":a=o-a;break;case\"full\":a=n.currentStaggerTime}const l=t.currentTimeline;a&&l.delayNextStep(a);const c=l.currentTime;A_(this,e.animation,t),t.previousNode=e,n.currentStaggerTime=i.currentTime-c+(i.startTime-n.currentTimeline.startTime)}}const eg={};class tg{constructor(e,t,n,i,s,r,o,a){this._driver=e,this.element=t,this.subInstructions=n,this._enterClassName=i,this._leaveClassName=s,this.errors=r,this.timelines=o,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=eg,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=a||new ng(this._driver,t,0),o.push(this.currentTimeline)}get params(){return this.options.params}updateOptions(e,t){if(!e)return;const n=e;let i=this.options;null!=n.duration&&(i.duration=g_(n.duration)),null!=n.delay&&(i.delay=g_(n.delay));const s=n.params;if(s){let e=i.params;e||(e=this.options.params={}),Object.keys(s).forEach(n=>{t&&e.hasOwnProperty(n)||(e[n]=D_(s[n],e,this.errors))})}}_copyOptions(){const e={};if(this.options){const t=this.options.params;if(t){const n=e.params={};Object.keys(t).forEach(e=>{n[e]=t[e]})}}return e}createSubContext(e=null,t,n){const i=t||this.element,s=new tg(this._driver,i,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(i,n||0));return s.previousNode=this.previousNode,s.currentAnimateTimings=this.currentAnimateTimings,s.options=this._copyOptions(),s.updateOptions(e),s.currentQueryIndex=this.currentQueryIndex,s.currentQueryTotal=this.currentQueryTotal,s.parentContext=this,this.subContextCount++,s}transformIntoNewTimeline(e){return this.previousNode=eg,this.currentTimeline=this.currentTimeline.fork(this.element,e),this.timelines.push(this.currentTimeline),this.currentTimeline}appendInstructionToTimeline(e,t,n){const i={duration:null!=t?t:e.duration,delay:this.currentTimeline.currentTime+(null!=n?n:0)+e.delay,easing:\"\"},s=new ig(this._driver,e.element,e.keyframes,e.preStyleProps,e.postStyleProps,i,e.stretchStartingKeyframe);return this.timelines.push(s),i}incrementTime(e){this.currentTimeline.forwardTime(this.currentTimeline.duration+e)}delayNextStep(e){e>0&&this.currentTimeline.delayNextStep(e)}invokeQuery(e,t,n,i,s,r){let o=[];if(i&&o.push(this.element),e.length>0){e=(e=e.replace(K_,\".\"+this._enterClassName)).replace(Z_,\".\"+this._leaveClassName);let t=this._driver.query(this.element,e,1!=n);0!==n&&(t=n<0?t.slice(t.length+n,t.length):t.slice(0,n)),o.push(...t)}return s||0!=o.length||r.push(`\\`query(\"${t}\")\\` returned zero elements. (Use \\`query(\"${t}\", { optional: true })\\` if you wish to allow this.)`),o}}class ng{constructor(e,t,n,i){this._driver=e,this.element=t,this.startTime=n,this._elementTimelineStylesLookup=i,this.duration=0,this._previousKeyframe={},this._currentKeyframe={},this._keyframes=new Map,this._styleSummary={},this._pendingStyles={},this._backFill={},this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._localTimelineStyles=Object.create(this._backFill,{}),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(t),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(t,this._localTimelineStyles)),this._loadKeyframe()}containsAnimation(){switch(this._keyframes.size){case 0:return!1;case 1:return this.getCurrentStyleProperties().length>0;default:return!0}}getCurrentStyleProperties(){return Object.keys(this._currentKeyframe)}get currentTime(){return this.startTime+this.duration}delayNextStep(e){const t=1==this._keyframes.size&&Object.keys(this._pendingStyles).length;this.duration||t?(this.forwardTime(this.currentTime+e),t&&this.snapshotCurrentStyles()):this.startTime+=e}fork(e,t){return this.applyStylesToKeyframe(),new ng(this._driver,e,t||this.currentTime,this._elementTimelineStylesLookup)}_loadKeyframe(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=Object.create(this._backFill,{}),this._keyframes.set(this.duration,this._currentKeyframe))}forwardFrame(){this.duration+=1,this._loadKeyframe()}forwardTime(e){this.applyStylesToKeyframe(),this.duration=e,this._loadKeyframe()}_updateStyle(e,t){this._localTimelineStyles[e]=t,this._globalTimelineStyles[e]=t,this._styleSummary[e]={time:this.currentTime,value:t}}allowOnlyTimelineStyles(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}applyEmptyStep(e){e&&(this._previousKeyframe.easing=e),Object.keys(this._globalTimelineStyles).forEach(e=>{this._backFill[e]=this._globalTimelineStyles[e]||\"*\",this._currentKeyframe[e]=\"*\"}),this._currentEmptyStepKeyframe=this._currentKeyframe}setStyles(e,t,n,i){t&&(this._previousKeyframe.easing=t);const s=i&&i.params||{},r=function(e,t){const n={};let i;return e.forEach(e=>{\"*\"===e?(i=i||Object.keys(t),i.forEach(e=>{n[e]=\"*\"})):w_(e,!1,n)}),n}(e,this._globalTimelineStyles);Object.keys(r).forEach(e=>{const t=D_(r[e],s,n);this._pendingStyles[e]=t,this._localTimelineStyles.hasOwnProperty(e)||(this._backFill[e]=this._globalTimelineStyles.hasOwnProperty(e)?this._globalTimelineStyles[e]:\"*\"),this._updateStyle(e,t)})}applyStylesToKeyframe(){const e=this._pendingStyles,t=Object.keys(e);0!=t.length&&(this._pendingStyles={},t.forEach(t=>{this._currentKeyframe[t]=e[t]}),Object.keys(this._localTimelineStyles).forEach(e=>{this._currentKeyframe.hasOwnProperty(e)||(this._currentKeyframe[e]=this._localTimelineStyles[e])}))}snapshotCurrentStyles(){Object.keys(this._localTimelineStyles).forEach(e=>{const t=this._localTimelineStyles[e];this._pendingStyles[e]=t,this._updateStyle(e,t)})}getFinalKeyframe(){return this._keyframes.get(this.duration)}get properties(){const e=[];for(let t in this._currentKeyframe)e.push(t);return e}mergeTimelineCollectedStyles(e){Object.keys(e._styleSummary).forEach(t=>{const n=this._styleSummary[t],i=e._styleSummary[t];(!n||i.time>n.time)&&this._updateStyle(t,i.value)})}buildKeyframes(){this.applyStylesToKeyframe();const e=new Set,t=new Set,n=1===this._keyframes.size&&0===this.duration;let i=[];this._keyframes.forEach((s,r)=>{const o=w_(s,!0);Object.keys(o).forEach(n=>{const i=o[n];\"!\"==i?e.add(n):\"*\"==i&&t.add(n)}),n||(o.offset=r/this.duration),i.push(o)});const s=e.size?Y_(e.values()):[],r=t.size?Y_(t.values()):[];if(n){const e=i[0],t=v_(e);e.offset=0,t.offset=1,i=[e,t]}return G_(this.element,i,s,r,this.duration,this.startTime,this.easing,!1)}}class ig extends ng{constructor(e,t,n,i,s,r,o=!1){super(e,t,r.delay),this.element=t,this.keyframes=n,this.preStyleProps=i,this.postStyleProps=s,this._stretchStartingKeyframe=o,this.timings={duration:r.duration,delay:r.delay,easing:r.easing}}containsAnimation(){return this.keyframes.length>1}buildKeyframes(){let e=this.keyframes,{delay:t,duration:n,easing:i}=this.timings;if(this._stretchStartingKeyframe&&t){const s=[],r=n+t,o=t/r,a=w_(e[0],!1);a.offset=0,s.push(a);const l=w_(e[0],!1);l.offset=sg(o),s.push(l);const c=e.length-1;for(let i=1;i<=c;i++){let o=w_(e[i],!1);o.offset=sg((t+o.offset*n)/r),s.push(o)}n=r,t=0,i=\"\",e=s}return G_(this.element,e,this.preStyleProps,this.postStyleProps,n,t,i,!0)}}function sg(e,t=3){const n=Math.pow(10,t-1);return Math.round(e*n)/n}class rg{}class og extends rg{normalizePropertyName(e,t){return O_(e)}normalizeStyleValue(e,t,n,i){let s=\"\";const r=n.toString().trim();if(ag[t]&&0!==n&&\"0\"!==n)if(\"number\"==typeof n)s=\"px\";else{const t=n.match(/^[+-]?[\\d\\.]+([a-z]*)$/);t&&0==t[1].length&&i.push(`Please provide a CSS unit value for ${e}:${n}`)}return r+s}}const ag=(()=>function(e){const t={};return e.forEach(e=>t[e]=!0),t}(\"width,height,minWidth,minHeight,maxWidth,maxHeight,left,top,bottom,right,fontSize,outlineWidth,outlineOffset,paddingTop,paddingLeft,paddingBottom,paddingRight,marginTop,marginLeft,marginBottom,marginRight,borderRadius,borderWidth,borderTopWidth,borderLeftWidth,borderRightWidth,borderBottomWidth,textIndent,perspective\".split(\",\")))();function lg(e,t,n,i,s,r,o,a,l,c,d,u,h){return{type:0,element:e,triggerName:t,isRemovalTransition:s,fromState:n,fromStyles:r,toState:i,toStyles:o,timelines:a,queriedElements:l,preStyleProps:c,postStyleProps:d,totalTime:u,errors:h}}const cg={};class dg{constructor(e,t,n){this._triggerName=e,this.ast=t,this._stateStyles=n}match(e,t,n,i){return function(e,t,n,i,s){return e.some(e=>e(t,n,i,s))}(this.ast.matchers,e,t,n,i)}buildStyles(e,t,n){const i=this._stateStyles[\"*\"],s=this._stateStyles[e],r=i?i.buildStyles(t,n):{};return s?s.buildStyles(t,n):r}build(e,t,n,i,s,r,o,a,l,c){const d=[],u=this.ast.options&&this.ast.options.params||cg,h=this.buildStyles(n,o&&o.params||cg,d),m=a&&a.params||cg,p=this.buildStyles(i,m,d),f=new Set,_=new Map,g=new Map,y=\"void\"===i,b={params:Object.assign(Object.assign({},u),m)},v=c?[]:Q_(e,t,this.ast.animation,s,r,h,p,b,l,d);let w=0;if(v.forEach(e=>{w=Math.max(e.duration+e.delay,w)}),d.length)return lg(t,this._triggerName,n,i,y,h,p,[],[],_,g,w,d);v.forEach(e=>{const n=e.element,i=n_(_,n,{});e.preStyleProps.forEach(e=>i[e]=!0);const s=n_(g,n,{});e.postStyleProps.forEach(e=>s[e]=!0),n!==t&&f.add(n)});const M=Y_(f.values());return lg(t,this._triggerName,n,i,y,h,p,v,M,_,g,w)}}class ug{constructor(e,t){this.styles=e,this.defaultParams=t}buildStyles(e,t){const n={},i=v_(this.defaultParams);return Object.keys(e).forEach(t=>{const n=e[t];null!=n&&(i[t]=n)}),this.styles.styles.forEach(e=>{if(\"string\"!=typeof e){const s=e;Object.keys(s).forEach(e=>{let r=s[e];r.length>1&&(r=D_(r,i,t)),n[e]=r})}}),n}}class hg{constructor(e,t){this.name=e,this.ast=t,this.transitionFactories=[],this.states={},t.states.forEach(e=>{this.states[e.name]=new ug(e.style,e.options&&e.options.params||{})}),mg(this.states,\"true\",\"1\"),mg(this.states,\"false\",\"0\"),t.transitions.forEach(t=>{this.transitionFactories.push(new dg(e,t,this.states))}),this.fallbackTransition=new dg(e,{type:1,animation:{type:2,steps:[],options:null},matchers:[(e,t)=>!0],options:null,queryCount:0,depCount:0},this.states)}get containsQueries(){return this.ast.queryCount>0}matchTransition(e,t,n,i){return this.transitionFactories.find(s=>s.match(e,t,n,i))||null}matchStyles(e,t,n){return this.fallbackTransition.buildStyles(e,t,n)}}function mg(e,t,n){e.hasOwnProperty(t)?e.hasOwnProperty(n)||(e[n]=e[t]):e.hasOwnProperty(n)&&(e[t]=e[n])}const pg=new J_;class fg{constructor(e,t,n){this.bodyNode=e,this._driver=t,this._normalizer=n,this._animations={},this._playersById={},this.players=[]}register(e,t){const n=[],i=V_(this._driver,t,n);if(n.length)throw new Error(`Unable to build the animation due to the following errors: ${n.join(\"\\n\")}`);this._animations[e]=i}_buildPlayer(e,t,n){const i=e.element,s=Qf(0,this._normalizer,0,e.keyframes,t,n);return this._driver.animate(i,s,e.duration,e.delay,e.easing,[],!0)}create(e,t,n={}){const i=[],s=this._animations[e];let r;const o=new Map;if(s?(r=Q_(this._driver,t,s,\"ng-enter\",\"ng-leave\",{},{},n,pg,i),r.forEach(e=>{const t=n_(o,e.element,{});e.postStyleProps.forEach(e=>t[e]=null)})):(i.push(\"The requested animation doesn't exist or has already been destroyed\"),r=[]),i.length)throw new Error(`Unable to create the animation due to the following errors: ${i.join(\"\\n\")}`);o.forEach((e,t)=>{Object.keys(e).forEach(n=>{e[n]=this._driver.computeStyle(t,n,\"*\")})});const a=Zf(r.map(e=>{const t=o.get(e.element);return this._buildPlayer(e,{},t)}));return this._playersById[e]=a,a.onDestroy(()=>this.destroy(e)),this.players.push(a),a}destroy(e){const t=this._getPlayer(e);t.destroy(),delete this._playersById[e];const n=this.players.indexOf(t);n>=0&&this.players.splice(n,1)}_getPlayer(e){const t=this._playersById[e];if(!t)throw new Error(`Unable to find the timeline player referenced by ${e}`);return t}listen(e,t,n,i){const s=t_(t,\"\",\"\",\"\");return Xf(this._getPlayer(e),n,s,i),()=>{}}command(e,t,n,i){if(\"register\"==n)return void this.register(e,i[0]);if(\"create\"==n)return void this.create(e,t,i[0]||{});const s=this._getPlayer(e);switch(n){case\"play\":s.play();break;case\"pause\":s.pause();break;case\"reset\":s.reset();break;case\"restart\":s.restart();break;case\"finish\":s.finish();break;case\"init\":s.init();break;case\"setPosition\":s.setPosition(parseFloat(i[0]));break;case\"destroy\":this.destroy(e)}}}const _g=[],gg={namespaceId:\"\",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},yg={namespaceId:\"\",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0};class bg{constructor(e,t=\"\"){this.namespaceId=t;const n=e&&e.hasOwnProperty(\"value\");if(this.value=null!=(i=n?e.value:e)?i:null,n){const t=v_(e);delete t.value,this.options=t}else this.options={};var i;this.options.params||(this.options.params={})}get params(){return this.options.params}absorbOptions(e){const t=e.params;if(t){const e=this.options.params;Object.keys(t).forEach(n=>{null==e[n]&&(e[n]=t[n])})}}}const vg=new bg(\"void\");class wg{constructor(e,t,n){this.id=e,this.hostElement=t,this._engine=n,this.players=[],this._triggers={},this._queue=[],this._elementListeners=new Map,this._hostClassName=\"ng-tns-\"+e,Tg(t,this._hostClassName)}listen(e,t,n,i){if(!this._triggers.hasOwnProperty(t))throw new Error(`Unable to listen on the animation trigger event \"${n}\" because the animation trigger \"${t}\" doesn't exist!`);if(null==n||0==n.length)throw new Error(`Unable to listen on the animation trigger \"${t}\" because the provided event is undefined!`);if(\"start\"!=(s=n)&&\"done\"!=s)throw new Error(`The provided animation trigger event \"${n}\" for the animation trigger \"${t}\" is not supported!`);var s;const r=n_(this._elementListeners,e,[]),o={name:t,phase:n,callback:i};r.push(o);const a=n_(this._engine.statesByElement,e,{});return a.hasOwnProperty(t)||(Tg(e,\"ng-trigger\"),Tg(e,\"ng-trigger-\"+t),a[t]=vg),()=>{this._engine.afterFlush(()=>{const e=r.indexOf(o);e>=0&&r.splice(e,1),this._triggers[t]||delete a[t]})}}register(e,t){return!this._triggers[e]&&(this._triggers[e]=t,!0)}_getTrigger(e){const t=this._triggers[e];if(!t)throw new Error(`The provided animation trigger \"${e}\" has not been registered!`);return t}trigger(e,t,n,i=!0){const s=this._getTrigger(t),r=new kg(this.id,t,e);let o=this._engine.statesByElement.get(e);o||(Tg(e,\"ng-trigger\"),Tg(e,\"ng-trigger-\"+t),this._engine.statesByElement.set(e,o={}));let a=o[t];const l=new bg(n,this.id);if(!(n&&n.hasOwnProperty(\"value\"))&&a&&l.absorbOptions(a.options),o[t]=l,a||(a=vg),\"void\"!==l.value&&a.value===l.value){if(!function(e,t){const n=Object.keys(e),i=Object.keys(t);if(n.length!=i.length)return!1;for(let s=0;s{L_(e,n),S_(e,i)})}return}const c=n_(this._engine.playersByElement,e,[]);c.forEach(e=>{e.namespaceId==this.id&&e.triggerName==t&&e.queued&&e.destroy()});let d=s.matchTransition(a.value,l.value,e,l.params),u=!1;if(!d){if(!i)return;d=s.fallbackTransition,u=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:e,triggerName:t,transition:d,fromState:a,toState:l,player:r,isFallbackTransition:u}),u||(Tg(e,\"ng-animate-queued\"),r.onStart(()=>{Dg(e,\"ng-animate-queued\")})),r.onDone(()=>{let t=this.players.indexOf(r);t>=0&&this.players.splice(t,1);const n=this._engine.playersByElement.get(e);if(n){let e=n.indexOf(r);e>=0&&n.splice(e,1)}}),this.players.push(r),c.push(r),r}deregister(e){delete this._triggers[e],this._engine.statesByElement.forEach((t,n)=>{delete t[e]}),this._elementListeners.forEach((t,n)=>{this._elementListeners.set(n,t.filter(t=>t.name!=e))})}clearElementCache(e){this._engine.statesByElement.delete(e),this._elementListeners.delete(e);const t=this._engine.playersByElement.get(e);t&&(t.forEach(e=>e.destroy()),this._engine.playersByElement.delete(e))}_signalRemovalForInnerTriggers(e,t){const n=this._engine.driver.query(e,\".ng-trigger\",!0);n.forEach(e=>{if(e.__ng_removed)return;const n=this._engine.fetchNamespacesByElement(e);n.size?n.forEach(n=>n.triggerLeaveAnimation(e,t,!1,!0)):this.clearElementCache(e)}),this._engine.afterFlushAnimationsDone(()=>n.forEach(e=>this.clearElementCache(e)))}triggerLeaveAnimation(e,t,n,i){const s=this._engine.statesByElement.get(e);if(s){const r=[];if(Object.keys(s).forEach(t=>{if(this._triggers[t]){const n=this.trigger(e,t,\"void\",i);n&&r.push(n)}}),r.length)return this._engine.markElementAsRemoved(this.id,e,!0,t),n&&Zf(r).onDone(()=>this._engine.processLeaveNode(e)),!0}return!1}prepareLeaveAnimationListeners(e){const t=this._elementListeners.get(e);if(t){const n=new Set;t.forEach(t=>{const i=t.name;if(n.has(i))return;n.add(i);const s=this._triggers[i].fallbackTransition,r=this._engine.statesByElement.get(e)[i]||vg,o=new bg(\"void\"),a=new kg(this.id,i,e);this._engine.totalQueuedPlayers++,this._queue.push({element:e,triggerName:i,transition:s,fromState:r,toState:o,player:a,isFallbackTransition:!0})})}}removeNode(e,t){const n=this._engine;if(e.childElementCount&&this._signalRemovalForInnerTriggers(e,t),this.triggerLeaveAnimation(e,t,!0))return;let i=!1;if(n.totalAnimations){const t=n.players.length?n.playersByQueriedElement.get(e):[];if(t&&t.length)i=!0;else{let t=e;for(;t=t.parentNode;)if(n.statesByElement.get(t)){i=!0;break}}}if(this.prepareLeaveAnimationListeners(e),i)n.markElementAsRemoved(this.id,e,!1,t);else{const i=e.__ng_removed;i&&i!==gg||(n.afterFlush(()=>this.clearElementCache(e)),n.destroyInnerAnimations(e),n._onRemovalComplete(e,t))}}insertNode(e,t){Tg(e,this._hostClassName)}drainQueuedTransitions(e){const t=[];return this._queue.forEach(n=>{const i=n.player;if(i.destroyed)return;const s=n.element,r=this._elementListeners.get(s);r&&r.forEach(t=>{if(t.name==n.triggerName){const i=t_(s,n.triggerName,n.fromState.value,n.toState.value);i._data=e,Xf(n.player,t.phase,i,t.callback)}}),i.markedForDestroy?this._engine.afterFlush(()=>{i.destroy()}):t.push(n)}),this._queue=[],t.sort((e,t)=>{const n=e.transition.ast.depCount,i=t.transition.ast.depCount;return 0==n||0==i?n-i:this._engine.driver.containsElement(e.element,t.element)?1:-1})}destroy(e){this.players.forEach(e=>e.destroy()),this._signalRemovalForInnerTriggers(this.hostElement,e)}elementContainsData(e){let t=!1;return this._elementListeners.has(e)&&(t=!0),t=!!this._queue.find(t=>t.element===e)||t,t}}class Mg{constructor(e,t,n){this.bodyNode=e,this.driver=t,this._normalizer=n,this.players=[],this.newHostElements=new Map,this.playersByElement=new Map,this.playersByQueriedElement=new Map,this.statesByElement=new Map,this.disabledNodes=new Set,this.totalAnimations=0,this.totalQueuedPlayers=0,this._namespaceLookup={},this._namespaceList=[],this._flushFns=[],this._whenQuietFns=[],this.namespacesByHostElement=new Map,this.collectedEnterElements=[],this.collectedLeaveElements=[],this.onRemovalComplete=(e,t)=>{}}_onRemovalComplete(e,t){this.onRemovalComplete(e,t)}get queuedPlayers(){const e=[];return this._namespaceList.forEach(t=>{t.players.forEach(t=>{t.queued&&e.push(t)})}),e}createNamespace(e,t){const n=new wg(e,t,this);return t.parentNode?this._balanceNamespaceList(n,t):(this.newHostElements.set(t,n),this.collectEnterElement(t)),this._namespaceLookup[e]=n}_balanceNamespaceList(e,t){const n=this._namespaceList.length-1;if(n>=0){let i=!1;for(let s=n;s>=0;s--)if(this.driver.containsElement(this._namespaceList[s].hostElement,t)){this._namespaceList.splice(s+1,0,e),i=!0;break}i||this._namespaceList.splice(0,0,e)}else this._namespaceList.push(e);return this.namespacesByHostElement.set(t,e),e}register(e,t){let n=this._namespaceLookup[e];return n||(n=this.createNamespace(e,t)),n}registerTrigger(e,t,n){let i=this._namespaceLookup[e];i&&i.register(t,n)&&this.totalAnimations++}destroy(e,t){if(!e)return;const n=this._fetchNamespace(e);this.afterFlush(()=>{this.namespacesByHostElement.delete(n.hostElement),delete this._namespaceLookup[e];const t=this._namespaceList.indexOf(n);t>=0&&this._namespaceList.splice(t,1)}),this.afterFlushAnimationsDone(()=>n.destroy(t))}_fetchNamespace(e){return this._namespaceLookup[e]}fetchNamespacesByElement(e){const t=new Set,n=this.statesByElement.get(e);if(n){const e=Object.keys(n);for(let i=0;i=0&&this.collectedLeaveElements.splice(e,1)}if(e){const i=this._fetchNamespace(e);i&&i.insertNode(t,n)}i&&this.collectEnterElement(t)}collectEnterElement(e){this.collectedEnterElements.push(e)}markElementAsDisabled(e,t){t?this.disabledNodes.has(e)||(this.disabledNodes.add(e),Tg(e,\"ng-animate-disabled\")):this.disabledNodes.has(e)&&(this.disabledNodes.delete(e),Dg(e,\"ng-animate-disabled\"))}removeNode(e,t,n,i){if(Sg(t)){const s=e?this._fetchNamespace(e):null;if(s?s.removeNode(t,i):this.markElementAsRemoved(e,t,!1,i),n){const n=this.namespacesByHostElement.get(t);n&&n.id!==e&&n.removeNode(t,i)}}else this._onRemovalComplete(t,i)}markElementAsRemoved(e,t,n,i){this.collectedLeaveElements.push(t),t.__ng_removed={namespaceId:e,setForRemoval:i,hasAnimation:n,removedBeforeQueried:!1}}listen(e,t,n,i,s){return Sg(t)?this._fetchNamespace(e).listen(t,n,i,s):()=>{}}_buildInstruction(e,t,n,i,s){return e.transition.build(this.driver,e.element,e.fromState.value,e.toState.value,n,i,e.fromState.options,e.toState.options,t,s)}destroyInnerAnimations(e){let t=this.driver.query(e,\".ng-trigger\",!0);t.forEach(e=>this.destroyActiveAnimationsForElement(e)),0!=this.playersByQueriedElement.size&&(t=this.driver.query(e,\".ng-animating\",!0),t.forEach(e=>this.finishActiveQueriedAnimationOnElement(e)))}destroyActiveAnimationsForElement(e){const t=this.playersByElement.get(e);t&&t.forEach(e=>{e.queued?e.markedForDestroy=!0:e.destroy()})}finishActiveQueriedAnimationOnElement(e){const t=this.playersByQueriedElement.get(e);t&&t.forEach(e=>e.finish())}whenRenderingDone(){return new Promise(e=>{if(this.players.length)return Zf(this.players).onDone(()=>e());e()})}processLeaveNode(e){const t=e.__ng_removed;if(t&&t.setForRemoval){if(e.__ng_removed=gg,t.namespaceId){this.destroyInnerAnimations(e);const n=this._fetchNamespace(t.namespaceId);n&&n.clearElementCache(e)}this._onRemovalComplete(e,t.setForRemoval)}this.driver.matchesElement(e,\".ng-animate-disabled\")&&this.markElementAsDisabled(e,!1),this.driver.query(e,\".ng-animate-disabled\",!0).forEach(e=>{this.markElementAsDisabled(e,!1)})}flush(e=-1){let t=[];if(this.newHostElements.size&&(this.newHostElements.forEach((e,t)=>this._balanceNamespaceList(e,t)),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(let n=0;ne()),this._flushFns=[],this._whenQuietFns.length){const e=this._whenQuietFns;this._whenQuietFns=[],t.length?Zf(t).onDone(()=>{e.forEach(e=>e())}):e.forEach(e=>e())}}reportError(e){throw new Error(`Unable to process animations due to the following failed trigger transitions\\n ${e.join(\"\\n\")}`)}_flushAnimations(e,t){const n=new J_,i=[],s=new Map,r=[],o=new Map,a=new Map,l=new Map,c=new Set;this.disabledNodes.forEach(e=>{c.add(e);const t=this.driver.query(e,\".ng-animate-queued\",!0);for(let n=0;n{const n=\"ng-enter\"+p++;m.set(t,n),e.forEach(e=>Tg(e,n))});const f=[],_=new Set,g=new Set;for(let Y=0;Y_.add(e)):g.add(e))}const y=new Map,b=Cg(u,Array.from(_));b.forEach((e,t)=>{const n=\"ng-leave\"+p++;y.set(t,n),e.forEach(e=>Tg(e,n))}),e.push(()=>{h.forEach((e,t)=>{const n=m.get(t);e.forEach(e=>Dg(e,n))}),b.forEach((e,t)=>{const n=y.get(t);e.forEach(e=>Dg(e,n))}),f.forEach(e=>{this.processLeaveNode(e)})});const v=[],w=[];for(let Y=this._namespaceList.length-1;Y>=0;Y--)this._namespaceList[Y].drainQueuedTransitions(t).forEach(e=>{const t=e.player,s=e.element;if(v.push(t),this.collectedEnterElements.length){const e=s.__ng_removed;if(e&&e.setForMove)return void t.destroy()}const c=!d||!this.driver.containsElement(d,s),u=y.get(s),h=m.get(s),p=this._buildInstruction(e,n,h,u,c);if(!p.errors||!p.errors.length)return c||e.isFallbackTransition?(t.onStart(()=>L_(s,p.fromStyles)),t.onDestroy(()=>S_(s,p.toStyles)),void i.push(t)):(p.timelines.forEach(e=>e.stretchStartingKeyframe=!0),n.append(s,p.timelines),r.push({instruction:p,player:t,element:s}),p.queriedElements.forEach(e=>n_(o,e,[]).push(t)),p.preStyleProps.forEach((e,t)=>{const n=Object.keys(e);if(n.length){let e=a.get(t);e||a.set(t,e=new Set),n.forEach(t=>e.add(t))}}),void p.postStyleProps.forEach((e,t)=>{const n=Object.keys(e);let i=l.get(t);i||l.set(t,i=new Set),n.forEach(e=>i.add(e))}));w.push(p)});if(w.length){const e=[];w.forEach(t=>{e.push(`@${t.triggerName} has failed due to:\\n`),t.errors.forEach(t=>e.push(`- ${t}\\n`))}),v.forEach(e=>e.destroy()),this.reportError(e)}const M=new Map,k=new Map;r.forEach(e=>{const t=e.element;n.has(t)&&(k.set(t,t),this._beforeAnimationBuild(e.player.namespaceId,e.instruction,M))}),i.forEach(e=>{const t=e.element;this._getPreviousPlayers(t,!1,e.namespaceId,e.triggerName,null).forEach(e=>{n_(M,t,[]).push(e),e.destroy()})});const S=f.filter(e=>Eg(e,a,l)),L=new Map;xg(L,this.driver,g,l,\"*\").forEach(e=>{Eg(e,a,l)&&S.push(e)});const x=new Map;h.forEach((e,t)=>{xg(x,this.driver,new Set(e),a,\"!\")}),S.forEach(e=>{const t=L.get(e),n=x.get(e);L.set(e,Object.assign(Object.assign({},t),n))});const C=[],T=[],D={};r.forEach(e=>{const{element:t,player:r,instruction:o}=e;if(n.has(t)){if(c.has(t))return r.onDestroy(()=>S_(t,o.toStyles)),r.disabled=!0,r.overrideTotalTime(o.totalTime),void i.push(r);let e=D;if(k.size>1){let n=t;const i=[];for(;n=n.parentNode;){const t=k.get(n);if(t){e=t;break}i.push(n)}i.forEach(t=>k.set(t,e))}const n=this._buildAnimation(r.namespaceId,o,M,s,x,L);if(r.setRealPlayer(n),e===D)C.push(r);else{const t=this.playersByElement.get(e);t&&t.length&&(r.parentPlayer=Zf(t)),i.push(r)}}else L_(t,o.fromStyles),r.onDestroy(()=>S_(t,o.toStyles)),T.push(r),c.has(t)&&i.push(r)}),T.forEach(e=>{const t=s.get(e.element);if(t&&t.length){const n=Zf(t);e.setRealPlayer(n)}}),i.forEach(e=>{e.parentPlayer?e.syncPlayerEvents(e.parentPlayer):e.destroy()});for(let Y=0;Y!e.destroyed);i.length?Yg(this,e,i):this.processLeaveNode(e)}return f.length=0,C.forEach(e=>{this.players.push(e),e.onDone(()=>{e.destroy();const t=this.players.indexOf(e);this.players.splice(t,1)}),e.play()}),C}elementContainsData(e,t){let n=!1;const i=t.__ng_removed;return i&&i.setForRemoval&&(n=!0),this.playersByElement.has(t)&&(n=!0),this.playersByQueriedElement.has(t)&&(n=!0),this.statesByElement.has(t)&&(n=!0),this._fetchNamespace(e).elementContainsData(t)||n}afterFlush(e){this._flushFns.push(e)}afterFlushAnimationsDone(e){this._whenQuietFns.push(e)}_getPreviousPlayers(e,t,n,i,s){let r=[];if(t){const t=this.playersByQueriedElement.get(e);t&&(r=t)}else{const t=this.playersByElement.get(e);if(t){const e=!s||\"void\"==s;t.forEach(t=>{t.queued||(e||t.triggerName==i)&&r.push(t)})}}return(n||i)&&(r=r.filter(e=>!(n&&n!=e.namespaceId||i&&i!=e.triggerName))),r}_beforeAnimationBuild(e,t,n){const i=t.element,s=t.isRemovalTransition?void 0:e,r=t.isRemovalTransition?void 0:t.triggerName;for(const o of t.timelines){const e=o.element,a=e!==i,l=n_(n,e,[]);this._getPreviousPlayers(e,a,s,r,t.toState).forEach(e=>{const t=e.getRealPlayer();t.beforeDestroy&&t.beforeDestroy(),e.destroy(),l.push(e)})}L_(i,t.fromStyles)}_buildAnimation(e,t,n,i,s,r){const o=t.triggerName,a=t.element,l=[],c=new Set,d=new Set,u=t.timelines.map(t=>{const u=t.element;c.add(u);const h=u.__ng_removed;if(h&&h.removedBeforeQueried)return new Gf(t.duration,t.delay);const m=u!==a,p=function(e){const t=[];return function e(t,n){for(let i=0;ie.getRealPlayer())).filter(e=>!!e.element&&e.element===u),f=s.get(u),_=r.get(u),g=Qf(0,this._normalizer,0,t.keyframes,f,_),y=this._buildPlayer(t,g,p);if(t.subTimeline&&i&&d.add(u),m){const t=new kg(e,o,u);t.setRealPlayer(y),l.push(t)}return y});l.forEach(e=>{n_(this.playersByQueriedElement,e.element,[]).push(e),e.onDone(()=>function(e,t,n){let i;if(e instanceof Map){if(i=e.get(t),i){if(i.length){const e=i.indexOf(n);i.splice(e,1)}0==i.length&&e.delete(t)}}else if(i=e[t],i){if(i.length){const e=i.indexOf(n);i.splice(e,1)}0==i.length&&delete e[t]}return i}(this.playersByQueriedElement,e.element,e))}),c.forEach(e=>Tg(e,\"ng-animating\"));const h=Zf(u);return h.onDestroy(()=>{c.forEach(e=>Dg(e,\"ng-animating\")),S_(a,t.toStyles)}),d.forEach(e=>{n_(i,e,[]).push(h)}),h}_buildPlayer(e,t,n){return t.length>0?this.driver.animate(e.element,t,e.duration,e.delay,e.easing,n):new Gf(e.duration,e.delay)}}class kg{constructor(e,t,n){this.namespaceId=e,this.triggerName=t,this.element=n,this._player=new Gf,this._containsRealPlayer=!1,this._queuedCallbacks={},this.destroyed=!1,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}setRealPlayer(e){this._containsRealPlayer||(this._player=e,Object.keys(this._queuedCallbacks).forEach(t=>{this._queuedCallbacks[t].forEach(n=>Xf(e,t,void 0,n))}),this._queuedCallbacks={},this._containsRealPlayer=!0,this.overrideTotalTime(e.totalTime),this.queued=!1)}getRealPlayer(){return this._player}overrideTotalTime(e){this.totalTime=e}syncPlayerEvents(e){const t=this._player;t.triggerCallback&&e.onStart(()=>t.triggerCallback(\"start\")),e.onDone(()=>this.finish()),e.onDestroy(()=>this.destroy())}_queueEvent(e,t){n_(this._queuedCallbacks,e,[]).push(t)}onDone(e){this.queued&&this._queueEvent(\"done\",e),this._player.onDone(e)}onStart(e){this.queued&&this._queueEvent(\"start\",e),this._player.onStart(e)}onDestroy(e){this.queued&&this._queueEvent(\"destroy\",e),this._player.onDestroy(e)}init(){this._player.init()}hasStarted(){return!this.queued&&this._player.hasStarted()}play(){!this.queued&&this._player.play()}pause(){!this.queued&&this._player.pause()}restart(){!this.queued&&this._player.restart()}finish(){this._player.finish()}destroy(){this.destroyed=!0,this._player.destroy()}reset(){!this.queued&&this._player.reset()}setPosition(e){this.queued||this._player.setPosition(e)}getPosition(){return this.queued?0:this._player.getPosition()}triggerCallback(e){const t=this._player;t.triggerCallback&&t.triggerCallback(e)}}function Sg(e){return e&&1===e.nodeType}function Lg(e,t){const n=e.style.display;return e.style.display=null!=t?t:\"none\",n}function xg(e,t,n,i,s){const r=[];n.forEach(e=>r.push(Lg(e)));const o=[];i.forEach((n,i)=>{const r={};n.forEach(e=>{const n=r[e]=t.computeStyle(i,e,s);n&&0!=n.length||(i.__ng_removed=yg,o.push(i))}),e.set(i,r)});let a=0;return n.forEach(e=>Lg(e,r[a++])),o}function Cg(e,t){const n=new Map;if(e.forEach(e=>n.set(e,[])),0==t.length)return n;const i=new Set(t),s=new Map;return t.forEach(e=>{const t=function e(t){if(!t)return 1;let r=s.get(t);if(r)return r;const o=t.parentNode;return r=n.has(o)?o:i.has(o)?1:e(o),s.set(t,r),r}(e);1!==t&&n.get(t).push(e)}),n}function Tg(e,t){if(e.classList)e.classList.add(t);else{let n=e.$$classes;n||(n=e.$$classes={}),n[t]=!0}}function Dg(e,t){if(e.classList)e.classList.remove(t);else{let n=e.$$classes;n&&delete n[t]}}function Yg(e,t,n){Zf(n).onDone(()=>e.processLeaveNode(t))}function Eg(e,t,n){const i=n.get(e);if(!i)return!1;let s=t.get(e);return s?i.forEach(e=>s.add(e)):t.set(e,i),n.delete(e),!0}class Og{constructor(e,t,n){this.bodyNode=e,this._driver=t,this._triggerCache={},this.onRemovalComplete=(e,t)=>{},this._transitionEngine=new Mg(e,t,n),this._timelineEngine=new fg(e,t,n),this._transitionEngine.onRemovalComplete=(e,t)=>this.onRemovalComplete(e,t)}registerTrigger(e,t,n,i,s){const r=e+\"-\"+i;let o=this._triggerCache[r];if(!o){const e=[],t=V_(this._driver,s,e);if(e.length)throw new Error(`The animation trigger \"${i}\" has failed to build due to the following errors:\\n - ${e.join(\"\\n - \")}`);o=function(e,t){return new hg(e,t)}(i,t),this._triggerCache[r]=o}this._transitionEngine.registerTrigger(t,i,o)}register(e,t){this._transitionEngine.register(e,t)}destroy(e,t){this._transitionEngine.destroy(e,t)}onInsert(e,t,n,i){this._transitionEngine.insertNode(e,t,n,i)}onRemove(e,t,n,i){this._transitionEngine.removeNode(e,t,i||!1,n)}disableAnimations(e,t){this._transitionEngine.markElementAsDisabled(e,t)}process(e,t,n,i){if(\"@\"==n.charAt(0)){const[e,s]=i_(n);this._timelineEngine.command(e,t,s,i)}else this._transitionEngine.trigger(e,t,n,i)}listen(e,t,n,i,s){if(\"@\"==n.charAt(0)){const[e,i]=i_(n);return this._timelineEngine.listen(e,t,i,s)}return this._transitionEngine.listen(e,t,n,i,s)}flush(e=-1){this._transitionEngine.flush(e)}get players(){return this._transitionEngine.players.concat(this._timelineEngine.players)}whenRenderingDone(){return this._transitionEngine.whenRenderingDone()}}function Ig(e,t){let n=null,i=null;return Array.isArray(t)&&t.length?(n=Ag(t[0]),t.length>1&&(i=Ag(t[t.length-1]))):t&&(n=Ag(t)),n||i?new Pg(e,n,i):null}let Pg=(()=>{class e{constructor(t,n,i){this._element=t,this._startStyles=n,this._endStyles=i,this._state=0;let s=e.initialStylesByElement.get(t);s||e.initialStylesByElement.set(t,s={}),this._initialStyles=s}start(){this._state<1&&(this._startStyles&&S_(this._element,this._startStyles,this._initialStyles),this._state=1)}finish(){this.start(),this._state<2&&(S_(this._element,this._initialStyles),this._endStyles&&(S_(this._element,this._endStyles),this._endStyles=null),this._state=1)}destroy(){this.finish(),this._state<3&&(e.initialStylesByElement.delete(this._element),this._startStyles&&(L_(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(L_(this._element,this._endStyles),this._endStyles=null),S_(this._element,this._initialStyles),this._state=3)}}return e.initialStylesByElement=new WeakMap,e})();function Ag(e){let t=null;const n=Object.keys(e);for(let i=0;ithis._handleCallback(e)}apply(){!function(e,t){const n=Wg(e,\"\").trim();n.length&&(function(e,t){let n=0;for(let i=0;i=this._delay&&n>=this._duration&&this.finish()}finish(){this._finished||(this._finished=!0,this._onDoneFn(),zg(this._element,this._eventFn,!0))}destroy(){this._destroyed||(this._destroyed=!0,this.finish(),function(e,t){const n=Wg(e,\"\").split(\",\"),i=Ng(n,t);i>=0&&(n.splice(i,1),Vg(e,\"\",n.join(\",\")))}(this._element,this._name))}}function jg(e,t,n){Vg(e,\"PlayState\",n,Fg(e,t))}function Fg(e,t){const n=Wg(e,\"\");return n.indexOf(\",\")>0?Ng(n.split(\",\"),t):Ng([n],t)}function Ng(e,t){for(let n=0;n=0)return n;return-1}function zg(e,t,n){n?e.removeEventListener(\"animationend\",t):e.addEventListener(\"animationend\",t)}function Vg(e,t,n,i){const s=\"animation\"+t;if(null!=i){const t=e.style[s];if(t.length){const e=t.split(\",\");e[i]=n,n=e.join(\",\")}}e.style[s]=n}function Wg(e,t){return e.style[\"animation\"+t]}class Ug{constructor(e,t,n,i,s,r,o,a){this.element=e,this.keyframes=t,this.animationName=n,this._duration=i,this._delay=s,this._finalStyles=o,this._specialStyles=a,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this.currentSnapshot={},this._state=0,this.easing=r||\"linear\",this.totalTime=i+s,this._buildStyler()}onStart(e){this._onStartFns.push(e)}onDone(e){this._onDoneFns.push(e)}onDestroy(e){this._onDestroyFns.push(e)}destroy(){this.init(),this._state>=4||(this._state=4,this._styler.destroy(),this._flushStartFns(),this._flushDoneFns(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(e=>e()),this._onDestroyFns=[])}_flushDoneFns(){this._onDoneFns.forEach(e=>e()),this._onDoneFns=[]}_flushStartFns(){this._onStartFns.forEach(e=>e()),this._onStartFns=[]}finish(){this.init(),this._state>=3||(this._state=3,this._styler.finish(),this._flushStartFns(),this._specialStyles&&this._specialStyles.finish(),this._flushDoneFns())}setPosition(e){this._styler.setPosition(e)}getPosition(){return this._styler.getPosition()}hasStarted(){return this._state>=2}init(){this._state>=1||(this._state=1,this._styler.apply(),this._delay&&this._styler.pause())}play(){this.init(),this.hasStarted()||(this._flushStartFns(),this._state=2,this._specialStyles&&this._specialStyles.start()),this._styler.resume()}pause(){this.init(),this._styler.pause()}restart(){this.reset(),this.play()}reset(){this._styler.destroy(),this._buildStyler(),this._styler.apply()}_buildStyler(){this._styler=new Hg(this.element,this.animationName,this._duration,this._delay,this.easing,\"forwards\",()=>this.finish())}triggerCallback(e){const t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach(e=>e()),t.length=0}beforeDestroy(){this.init();const e={};if(this.hasStarted()){const t=this._state>=3;Object.keys(this._finalStyles).forEach(n=>{\"offset\"!=n&&(e[n]=t?this._finalStyles[n]:R_(this.element,n))})}this.currentSnapshot=e}}class $g extends Gf{constructor(e,t){super(),this.element=e,this._startingStyles={},this.__initialized=!1,this._styles=p_(t)}init(){!this.__initialized&&this._startingStyles&&(this.__initialized=!0,Object.keys(this._styles).forEach(e=>{this._startingStyles[e]=this.element.style[e]}),super.init())}play(){this._startingStyles&&(this.init(),Object.keys(this._styles).forEach(e=>this.element.style.setProperty(e,this._styles[e])),super.play())}destroy(){this._startingStyles&&(Object.keys(this._startingStyles).forEach(e=>{const t=this._startingStyles[e];t?this.element.style.setProperty(e,t):this.element.style.removeProperty(e)}),this._startingStyles=null,super.destroy())}}class Bg{constructor(){this._count=0,this._head=document.querySelector(\"head\"),this._warningIssued=!1}validateStyleProperty(e){return d_(e)}matchesElement(e,t){return u_(e,t)}containsElement(e,t){return h_(e,t)}query(e,t,n){return m_(e,t,n)}computeStyle(e,t,n){return window.getComputedStyle(e)[t]}buildKeyframeElement(e,t,n){n=n.map(e=>p_(e));let i=`@keyframes ${t} {\\n`,s=\"\";n.forEach(e=>{s=\" \";const t=parseFloat(e.offset);i+=`${s}${100*t}% {\\n`,s+=\" \",Object.keys(e).forEach(t=>{const n=e[t];switch(t){case\"offset\":return;case\"easing\":return void(n&&(i+=`${s}animation-timing-function: ${n};\\n`));default:return void(i+=`${s}${t}: ${n};\\n`)}}),i+=`${s}}\\n`}),i+=\"}\\n\";const r=document.createElement(\"style\");return r.innerHTML=i,r}animate(e,t,n,i,s,r=[],o){o&&this._notifyFaultyScrubber();const a=r.filter(e=>e instanceof Ug),l={};I_(n,i)&&a.forEach(e=>{let t=e.currentSnapshot;Object.keys(t).forEach(e=>l[e]=t[e])});const c=function(e){let t={};return e&&(Array.isArray(e)?e:[e]).forEach(e=>{Object.keys(e).forEach(n=>{\"offset\"!=n&&\"easing\"!=n&&(t[n]=e[n])})}),t}(t=P_(e,t,l));if(0==n)return new $g(e,c);const d=`gen_css_kf_${this._count++}`,u=this.buildKeyframeElement(e,d,t);document.querySelector(\"head\").appendChild(u);const h=Ig(e,t),m=new Ug(e,t,d,n,i,s,c,h);return m.onDestroy(()=>{var e;(e=u).parentNode.removeChild(e)}),m}_notifyFaultyScrubber(){this._warningIssued||(console.warn(\"@angular/animations: please load the web-animations.js polyfill to allow programmatic access...\\n\",\" visit http://bit.ly/IWukam to learn more about using the web-animation-js polyfill.\"),this._warningIssued=!0)}}class qg{constructor(e,t,n,i){this.element=e,this.keyframes=t,this.options=n,this._specialStyles=i,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._initialized=!1,this._finished=!1,this._started=!1,this._destroyed=!1,this.time=0,this.parentPlayer=null,this.currentSnapshot={},this._duration=n.duration,this._delay=n.delay||0,this.time=this._duration+this._delay}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(e=>e()),this._onDoneFns=[])}init(){this._buildPlayer(),this._preparePlayerBeforeStart()}_buildPlayer(){if(this._initialized)return;this._initialized=!0;const e=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,e,this.options),this._finalKeyframe=e.length?e[e.length-1]:{},this.domPlayer.addEventListener(\"finish\",()=>this._onFinish())}_preparePlayerBeforeStart(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}_triggerWebAnimation(e,t,n){return e.animate(t,n)}onStart(e){this._onStartFns.push(e)}onDone(e){this._onDoneFns.push(e)}onDestroy(e){this._onDestroyFns.push(e)}play(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach(e=>e()),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),this.domPlayer.play()}pause(){this.init(),this.domPlayer.pause()}finish(){this.init(),this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish()}reset(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1}_resetDomPlayerState(){this.domPlayer&&this.domPlayer.cancel()}restart(){this.reset(),this.play()}hasStarted(){return this._started}destroy(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(e=>e()),this._onDestroyFns=[])}setPosition(e){this.domPlayer.currentTime=e*this.time}getPosition(){return this.domPlayer.currentTime/this.time}get totalTime(){return this._delay+this._duration}beforeDestroy(){const e={};this.hasStarted()&&Object.keys(this._finalKeyframe).forEach(t=>{\"offset\"!=t&&(e[t]=this._finished?this._finalKeyframe[t]:R_(this.element,t))}),this.currentSnapshot=e}triggerCallback(e){const t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach(e=>e()),t.length=0}}class Gg{constructor(){this._isNativeImpl=/\\{\\s*\\[native\\s+code\\]\\s*\\}/.test(Jg().toString()),this._cssKeyframesDriver=new Bg}validateStyleProperty(e){return d_(e)}matchesElement(e,t){return u_(e,t)}containsElement(e,t){return h_(e,t)}query(e,t,n){return m_(e,t,n)}computeStyle(e,t,n){return window.getComputedStyle(e)[t]}overrideWebAnimationsSupport(e){this._isNativeImpl=e}animate(e,t,n,i,s,r=[],o){if(!o&&!this._isNativeImpl)return this._cssKeyframesDriver.animate(e,t,n,i,s,r);const a={duration:n,delay:i,fill:0==i?\"both\":\"forwards\"};s&&(a.easing=s);const l={},c=r.filter(e=>e instanceof qg);I_(n,i)&&c.forEach(e=>{let t=e.currentSnapshot;Object.keys(t).forEach(e=>l[e]=t[e])});const d=Ig(e,t=P_(e,t=t.map(e=>w_(e,!1)),l));return new qg(e,t,a,d)}}function Jg(){return\"undefined\"!=typeof window&&void 0!==window.document&&Element.prototype.animate||{}}let Kg=(()=>{class e extends Hf{constructor(e,t){super(),this._nextAnimationId=0,this._renderer=e.createRenderer(t.body,{id:\"0\",encapsulation:pt.None,styles:[],data:{animation:[]}})}build(e){const t=this._nextAnimationId.toString();this._nextAnimationId++;const n=Array.isArray(e)?zf(e):e;return Xg(this._renderer,null,t,\"register\",[n]),new Zg(t,this._renderer)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Qa),Qe(Nd))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class Zg extends class{}{constructor(e,t){super(),this._id=e,this._renderer=t}create(e,t){return new Qg(this._id,e,t||{},this._renderer)}}class Qg{constructor(e,t,n,i){this.id=e,this.element=t,this._renderer=i,this.parentPlayer=null,this._started=!1,this.totalTime=0,this._command(\"create\",n)}_listen(e,t){return this._renderer.listen(this.element,`@@${this.id}:${e}`,t)}_command(e,...t){return Xg(this._renderer,this.element,this.id,e,t)}onDone(e){this._listen(\"done\",e)}onStart(e){this._listen(\"start\",e)}onDestroy(e){this._listen(\"destroy\",e)}init(){this._command(\"init\")}hasStarted(){return this._started}play(){this._command(\"play\"),this._started=!0}pause(){this._command(\"pause\")}restart(){this._command(\"restart\")}finish(){this._command(\"finish\")}destroy(){this._command(\"destroy\")}reset(){this._command(\"reset\")}setPosition(e){this._command(\"setPosition\",e)}getPosition(){return 0}}function Xg(e,t,n,i,s){return e.setProperty(t,`@@${n}:${i}`,s)}let ey=(()=>{class e{constructor(e,t,n){this.delegate=e,this.engine=t,this._zone=n,this._currentId=0,this._microtaskId=1,this._animationCallbacksBuffer=[],this._rendererCache=new Map,this._cdRecurDepth=0,this.promise=Promise.resolve(0),t.onRemovalComplete=(e,t)=>{t&&t.parentNode(e)&&t.removeChild(e.parentNode,e)}}createRenderer(e,t){const n=this.delegate.createRenderer(e,t);if(!(e&&t&&t.data&&t.data.animation)){let e=this._rendererCache.get(n);return e||(e=new ty(\"\",n,this.engine),this._rendererCache.set(n,e)),e}const i=t.id,s=t.id+\"-\"+this._currentId;this._currentId++,this.engine.register(s,e);const r=t=>{Array.isArray(t)?t.forEach(r):this.engine.registerTrigger(i,s,e,t.name,t)};return t.data.animation.forEach(r),new ny(this,s,n,this.engine)}begin(){this._cdRecurDepth++,this.delegate.begin&&this.delegate.begin()}_scheduleCountTask(){this.promise.then(()=>{this._microtaskId++})}scheduleListenerCallback(e,t,n){e>=0&&et(n)):(0==this._animationCallbacksBuffer.length&&Promise.resolve(null).then(()=>{this._zone.run(()=>{this._animationCallbacksBuffer.forEach(e=>{const[t,n]=e;t(n)}),this._animationCallbacksBuffer=[]})}),this._animationCallbacksBuffer.push([t,n]))}end(){this._cdRecurDepth--,0==this._cdRecurDepth&&this._zone.runOutsideAngular(()=>{this._scheduleCountTask(),this.engine.flush(this._microtaskId)}),this.delegate.end&&this.delegate.end()}whenRenderingDone(){return this.engine.whenRenderingDone()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Qa),Qe(Og),Qe(ld))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class ty{constructor(e,t,n){this.namespaceId=e,this.delegate=t,this.engine=n,this.destroyNode=this.delegate.destroyNode?e=>t.destroyNode(e):null}get data(){return this.delegate.data}destroy(){this.engine.destroy(this.namespaceId,this.delegate),this.delegate.destroy()}createElement(e,t){return this.delegate.createElement(e,t)}createComment(e){return this.delegate.createComment(e)}createText(e){return this.delegate.createText(e)}appendChild(e,t){this.delegate.appendChild(e,t),this.engine.onInsert(this.namespaceId,t,e,!1)}insertBefore(e,t,n){this.delegate.insertBefore(e,t,n),this.engine.onInsert(this.namespaceId,t,e,!0)}removeChild(e,t,n){this.engine.onRemove(this.namespaceId,t,this.delegate,n)}selectRootElement(e,t){return this.delegate.selectRootElement(e,t)}parentNode(e){return this.delegate.parentNode(e)}nextSibling(e){return this.delegate.nextSibling(e)}setAttribute(e,t,n,i){this.delegate.setAttribute(e,t,n,i)}removeAttribute(e,t,n){this.delegate.removeAttribute(e,t,n)}addClass(e,t){this.delegate.addClass(e,t)}removeClass(e,t){this.delegate.removeClass(e,t)}setStyle(e,t,n,i){this.delegate.setStyle(e,t,n,i)}removeStyle(e,t,n){this.delegate.removeStyle(e,t,n)}setProperty(e,t,n){\"@\"==t.charAt(0)&&\"@.disabled\"==t?this.disableAnimations(e,!!n):this.delegate.setProperty(e,t,n)}setValue(e,t){this.delegate.setValue(e,t)}listen(e,t,n){return this.delegate.listen(e,t,n)}disableAnimations(e,t){this.engine.disableAnimations(e,t)}}class ny extends ty{constructor(e,t,n,i){super(t,n,i),this.factory=e,this.namespaceId=t}setProperty(e,t,n){\"@\"==t.charAt(0)?\".\"==t.charAt(1)&&\"@.disabled\"==t?this.disableAnimations(e,n=void 0===n||!!n):this.engine.process(this.namespaceId,e,t.substr(1),n):this.delegate.setProperty(e,t,n)}listen(e,t,n){if(\"@\"==t.charAt(0)){const i=function(e){switch(e){case\"body\":return document.body;case\"document\":return document;case\"window\":return window;default:return e}}(e);let s=t.substr(1),r=\"\";return\"@\"!=s.charAt(0)&&([s,r]=function(e){const t=e.indexOf(\".\");return[e.substring(0,t),e.substr(t+1)]}(s)),this.engine.listen(this.namespaceId,i,s,r,e=>{this.factory.scheduleListenerCallback(e._data||-1,n,e)})}return this.delegate.listen(e,t,n)}}let iy=(()=>{class e extends Og{constructor(e,t,n){super(e.body,t,n)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd),Qe(__),Qe(rg))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const sy=new Ve(\"AnimationModuleType\"),ry=[{provide:__,useFactory:function(){return\"function\"==typeof Jg()?new Gg:new Bg}},{provide:sy,useValue:\"BrowserAnimations\"},{provide:Hf,useClass:Kg},{provide:rg,useFactory:function(){return new og}},{provide:Og,useClass:iy},{provide:Qa,useFactory:function(e,t,n){return new ey(e,t,n)},deps:[mf,Og,ld]}];let oy=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:ry,imports:[If]}),e})();const ay=[\"*\",[[\"mat-option\"],[\"ng-container\"]]],ly=[\"*\",\"mat-option, ng-container\"];function cy(e,t){if(1&e&&jo(0,\"mat-pseudo-checkbox\",3),2&e){const e=Jo();Po(\"state\",e.selected?\"checked\":\"unchecked\")(\"disabled\",e.disabled)}}const dy=[\"*\"],uy=new il(\"9.1.3\"),hy=new Ve(\"mat-sanity-checks\",{providedIn:\"root\",factory:function(){return!0}});let my,py=(()=>{class e{constructor(e,t,n){this._hasDoneGlobalChecks=!1,this._document=n,e._applyBodyHighContrastModeCssClasses(),this._sanityChecks=t,this._hasDoneGlobalChecks||(this._checkDoctypeIsDefined(),this._checkThemeIsPresent(),this._checkCdkVersionMatch(),this._hasDoneGlobalChecks=!0)}_getDocument(){const e=this._document||document;return\"object\"==typeof e&&e?e:null}_getWindow(){var e;const t=(null===(e=this._getDocument())||void 0===e?void 0:e.defaultView)||window;return\"object\"==typeof t&&t?t:null}_checksAreEnabled(){return Si()&&!this._isTestEnv()}_isTestEnv(){const e=this._getWindow();return e&&(e.__karma__||e.jasmine)}_checkDoctypeIsDefined(){const e=this._checksAreEnabled()&&(!0===this._sanityChecks||this._sanityChecks.doctype),t=this._getDocument();e&&t&&!t.doctype&&console.warn(\"Current document does not have a doctype. This may cause some Angular Material components not to behave as expected.\")}_checkThemeIsPresent(){const e=!this._checksAreEnabled()||!1===this._sanityChecks||!this._sanityChecks.theme,t=this._getDocument();if(e||!t||!t.body||\"function\"!=typeof getComputedStyle)return;const n=t.createElement(\"div\");n.classList.add(\"mat-theme-loaded-marker\"),t.body.appendChild(n);const i=getComputedStyle(n);i&&\"none\"!==i.display&&console.warn(\"Could not find Angular Material core theme. Most Material components may not work as expected. For more info refer to the theming guide: https://material.angular.io/guide/theming\"),t.body.removeChild(n)}_checkCdkVersionMatch(){this._checksAreEnabled()&&(!0===this._sanityChecks||this._sanityChecks.version)&&uy.full!==Kp.full&&console.warn(\"The Angular Material version (\"+uy.full+\") does not match the Angular CDK version (\"+Kp.full+\").\\nPlease ensure the versions of these two packages exactly match.\")}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)(Qe(Bp),Qe(hy,8),Qe(Nd,8))},imports:[[Jp],Jp]}),e})();function fy(e){return class extends e{constructor(...e){super(...e),this._disabled=!1}get disabled(){return this._disabled}set disabled(e){this._disabled=hp(e)}}}function _y(e,t){return class extends e{constructor(...e){super(...e),this.color=t}get color(){return this._color}set color(e){const n=e||t;n!==this._color&&(this._color&&this._elementRef.nativeElement.classList.remove(`mat-${this._color}`),n&&this._elementRef.nativeElement.classList.add(`mat-${n}`),this._color=n)}}}function gy(e){return class extends e{constructor(...e){super(...e),this._disableRipple=!1}get disableRipple(){return this._disableRipple}set disableRipple(e){this._disableRipple=hp(e)}}}function yy(e,t=0){return class extends e{constructor(...e){super(...e),this._tabIndex=t}get tabIndex(){return this.disabled?-1:this._tabIndex}set tabIndex(e){this._tabIndex=null!=e?e:t}}}function by(e){return class extends e{constructor(...e){super(...e),this.errorState=!1,this.stateChanges=new L}updateErrorState(){const e=this.errorState,t=(this.errorStateMatcher||this._defaultErrorStateMatcher).isErrorState(this.ngControl?this.ngControl.control:null,this._parentFormGroup||this._parentForm);t!==e&&(this.errorState=t,this.stateChanges.next())}}}try{my=\"undefined\"!=typeof Intl}catch(NI){my=!1}let vy=(()=>{class e{isErrorState(e,t){return!!(e&&e.invalid&&(e.touched||t&&t.submitted))}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})();const wy=new Ve(\"MAT_HAMMER_OPTIONS\");class My{constructor(e,t,n){this._renderer=e,this.element=t,this.config=n,this.state=3}fadeOut(){this._renderer.fadeOutRipple(this)}}const ky={enterDuration:450,exitDuration:400},Sy=Sp({passive:!0});class Ly{constructor(e,t,n,i){this._target=e,this._ngZone=t,this._isPointerDown=!1,this._triggerEvents=new Map,this._activeRipples=new Set,this._onMousedown=e=>{const t=$p(e),n=this._lastTouchStartEvent&&Date.now(){if(!this._target.rippleDisabled){this._lastTouchStartEvent=Date.now(),this._isPointerDown=!0;const t=e.changedTouches;for(let e=0;e{this._isPointerDown&&(this._isPointerDown=!1,this._activeRipples.forEach(e=>{!e.config.persistent&&(1===e.state||e.config.terminateOnPointerUp&&0===e.state)&&e.fadeOut()}))},i.isBrowser&&(this._containerElement=_p(n),this._triggerEvents.set(\"mousedown\",this._onMousedown).set(\"mouseup\",this._onPointerUp).set(\"mouseleave\",this._onPointerUp).set(\"touchstart\",this._onTouchStart).set(\"touchend\",this._onPointerUp).set(\"touchcancel\",this._onPointerUp))}fadeInRipple(e,t,n={}){const i=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),s=Object.assign(Object.assign({},ky),n.animation);n.centered&&(e=i.left+i.width/2,t=i.top+i.height/2);const r=n.radius||function(e,t,n){const i=Math.max(Math.abs(e-n.left),Math.abs(e-n.right)),s=Math.max(Math.abs(t-n.top),Math.abs(t-n.bottom));return Math.sqrt(i*i+s*s)}(e,t,i),o=e-i.left,a=t-i.top,l=s.enterDuration,c=document.createElement(\"div\");c.classList.add(\"mat-ripple-element\"),c.style.left=`${o-r}px`,c.style.top=`${a-r}px`,c.style.height=`${2*r}px`,c.style.width=`${2*r}px`,null!=n.color&&(c.style.backgroundColor=n.color),c.style.transitionDuration=`${l}ms`,this._containerElement.appendChild(c),window.getComputedStyle(c).getPropertyValue(\"opacity\"),c.style.transform=\"scale(1)\";const d=new My(this,c,n);return d.state=0,this._activeRipples.add(d),n.persistent||(this._mostRecentTransientRipple=d),this._runTimeoutOutsideZone(()=>{const e=d===this._mostRecentTransientRipple;d.state=1,n.persistent||e&&this._isPointerDown||d.fadeOut()},l),d}fadeOutRipple(e){const t=this._activeRipples.delete(e);if(e===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),this._activeRipples.size||(this._containerRect=null),!t)return;const n=e.element,i=Object.assign(Object.assign({},ky),e.config.animation);n.style.transitionDuration=`${i.exitDuration}ms`,n.style.opacity=\"0\",e.state=2,this._runTimeoutOutsideZone(()=>{e.state=3,n.parentNode.removeChild(n)},i.exitDuration)}fadeOutAll(){this._activeRipples.forEach(e=>e.fadeOut())}setupTriggerEvents(e){const t=_p(e);t&&t!==this._triggerElement&&(this._removeTriggerEvents(),this._ngZone.runOutsideAngular(()=>{this._triggerEvents.forEach((e,n)=>{t.addEventListener(n,e,Sy)})}),this._triggerElement=t)}_runTimeoutOutsideZone(e,t=0){this._ngZone.runOutsideAngular(()=>setTimeout(e,t))}_removeTriggerEvents(){this._triggerElement&&this._triggerEvents.forEach((e,t)=>{this._triggerElement.removeEventListener(t,e,Sy)})}}const xy=new Ve(\"mat-ripple-global-options\");let Cy=(()=>{class e{constructor(e,t,n,i,s){this._elementRef=e,this.radius=0,this._disabled=!1,this._isInitialized=!1,this._globalOptions=i||{},this._rippleRenderer=new Ly(this,t,e,n),\"NoopAnimations\"===s&&(this._globalOptions.animation={enterDuration:0,exitDuration:0})}get disabled(){return this._disabled}set disabled(e){this._disabled=e,this._setupTriggerEventsIfEnabled()}get trigger(){return this._trigger||this._elementRef.nativeElement}set trigger(e){this._trigger=e,this._setupTriggerEventsIfEnabled()}ngOnInit(){this._isInitialized=!0,this._setupTriggerEventsIfEnabled()}ngOnDestroy(){this._rippleRenderer._removeTriggerEvents()}fadeOutAll(){this._rippleRenderer.fadeOutAll()}get rippleConfig(){return{centered:this.centered,radius:this.radius,color:this.color,animation:Object.assign(Object.assign({},this._globalOptions.animation),this.animation),terminateOnPointerUp:this._globalOptions.terminateOnPointerUp}}get rippleDisabled(){return this.disabled||!!this._globalOptions.disabled}_setupTriggerEventsIfEnabled(){!this.disabled&&this._isInitialized&&this._rippleRenderer.setupTriggerEvents(this.trigger)}launch(e,t=0,n){return\"number\"==typeof e?this._rippleRenderer.fadeInRipple(e,t,Object.assign(Object.assign({},this.rippleConfig),n)):this._rippleRenderer.fadeInRipple(0,0,Object.assign(Object.assign({},this.rippleConfig),e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(ld),Eo(bp),Eo(xy,8),Eo(sy,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"mat-ripple\",\"\"],[\"\",\"matRipple\",\"\"]],hostAttrs:[1,\"mat-ripple\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"mat-ripple-unbounded\",t.unbounded)},inputs:{radius:[\"matRippleRadius\",\"radius\"],disabled:[\"matRippleDisabled\",\"disabled\"],trigger:[\"matRippleTrigger\",\"trigger\"],color:[\"matRippleColor\",\"color\"],unbounded:[\"matRippleUnbounded\",\"unbounded\"],centered:[\"matRippleCentered\",\"centered\"],animation:[\"matRippleAnimation\",\"animation\"]},exportAs:[\"matRipple\"]}),e})(),Ty=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[py,vp],py]}),e})(),Dy=(()=>{class e{constructor(e){this._animationMode=e,this.state=\"unchecked\",this.disabled=!1}}return e.\\u0275fac=function(t){return new(t||e)(Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-pseudo-checkbox\"]],hostAttrs:[1,\"mat-pseudo-checkbox\"],hostVars:8,hostBindings:function(e,t){2&e&&ua(\"mat-pseudo-checkbox-indeterminate\",\"indeterminate\"===t.state)(\"mat-pseudo-checkbox-checked\",\"checked\"===t.state)(\"mat-pseudo-checkbox-disabled\",t.disabled)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode)},inputs:{state:\"state\",disabled:\"disabled\"},decls:0,vars:0,template:function(e,t){},styles:['.mat-pseudo-checkbox{width:16px;height:16px;border:2px solid;border-radius:2px;cursor:pointer;display:inline-block;vertical-align:middle;box-sizing:border-box;position:relative;flex-shrink:0;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1),background-color 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox::after{position:absolute;opacity:0;content:\"\";border-bottom:2px solid currentColor;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox.mat-pseudo-checkbox-indeterminate{border-color:transparent}._mat-animation-noopable.mat-pseudo-checkbox{transition:none;animation:none}._mat-animation-noopable.mat-pseudo-checkbox::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{top:5px;left:1px;width:10px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{top:2.4px;left:1px;width:8px;height:3px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}\\n'],encapsulation:2,changeDetection:0}),e})(),Yy=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();class Ey{}const Oy=fy(Ey);let Iy=0,Py=(()=>{class e extends Oy{constructor(){super(...arguments),this._labelId=`mat-optgroup-label-${Iy++}`}}return e.\\u0275fac=function(t){return Ay(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-optgroup\"]],hostAttrs:[\"role\",\"group\",1,\"mat-optgroup\"],hostVars:4,hostBindings:function(e,t){2&e&&(Co(\"aria-disabled\",t.disabled.toString())(\"aria-labelledby\",t._labelId),ua(\"mat-optgroup-disabled\",t.disabled))},inputs:{disabled:\"disabled\",label:\"label\"},exportAs:[\"matOptgroup\"],features:[Ya],ngContentSelectors:ly,decls:4,vars:2,consts:[[1,\"mat-optgroup-label\",3,\"id\"]],template:function(e,t){1&e&&(Zo(ay),Ro(0,\"label\",0),Sa(1),ea(2),Ho(),ea(3,1)),2&e&&(Po(\"id\",t._labelId),ys(1),xa(\"\",t.label,\" \"))},styles:[\".mat-optgroup-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup-label[disabled]{cursor:default}[dir=rtl] .mat-optgroup-label{text-align:right}.mat-optgroup-label .mat-icon{margin-right:16px;vertical-align:middle}.mat-optgroup-label .mat-icon svg{vertical-align:top}[dir=rtl] .mat-optgroup-label .mat-icon{margin-left:16px;margin-right:0}\\n\"],encapsulation:2,changeDetection:0}),e})();const Ay=li(Py);let Ry=0;class Hy{constructor(e,t=!1){this.source=e,this.isUserInput=t}}const jy=new Ve(\"MAT_OPTION_PARENT_COMPONENT\");let Fy=(()=>{class e{constructor(e,t,n,i){this._element=e,this._changeDetectorRef=t,this._parent=n,this.group=i,this._selected=!1,this._active=!1,this._disabled=!1,this._mostRecentViewValue=\"\",this.id=`mat-option-${Ry++}`,this.onSelectionChange=new yc,this._stateChanges=new L}get multiple(){return this._parent&&this._parent.multiple}get selected(){return this._selected}get disabled(){return this.group&&this.group.disabled||this._disabled}set disabled(e){this._disabled=hp(e)}get disableRipple(){return this._parent&&this._parent.disableRipple}get active(){return this._active}get viewValue(){return(this._getHostElement().textContent||\"\").trim()}select(){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}deselect(){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}focus(e,t){const n=this._getHostElement();\"function\"==typeof n.focus&&n.focus(t)}setActiveStyles(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}setInactiveStyles(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}getLabel(){return this.viewValue}_handleKeydown(e){13!==e.keyCode&&32!==e.keyCode||qm(e)||(this._selectViaInteraction(),e.preventDefault())}_selectViaInteraction(){this.disabled||(this._selected=!this.multiple||!this._selected,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent(!0))}_getAriaSelected(){return this.selected||!this.multiple&&null}_getTabIndex(){return this.disabled?\"-1\":\"0\"}_getHostElement(){return this._element.nativeElement}ngAfterViewChecked(){if(this._selected){const e=this.viewValue;e!==this._mostRecentViewValue&&(this._mostRecentViewValue=e,this._stateChanges.next())}}ngOnDestroy(){this._stateChanges.complete()}_emitSelectionChangeEvent(e=!1){this.onSelectionChange.emit(new Hy(this,e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Qr),Eo(jy,8),Eo(Py,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-option\"]],hostAttrs:[\"role\",\"option\",1,\"mat-option\",\"mat-focus-indicator\"],hostVars:12,hostBindings:function(e,t){1&e&&Uo(\"click\",(function(){return t._selectViaInteraction()}))(\"keydown\",(function(e){return t._handleKeydown(e)})),2&e&&(Ca(\"id\",t.id),Co(\"tabindex\",t._getTabIndex())(\"aria-selected\",t._getAriaSelected())(\"aria-disabled\",t.disabled.toString()),ua(\"mat-selected\",t.selected)(\"mat-option-multiple\",t.multiple)(\"mat-active\",t.active)(\"mat-option-disabled\",t.disabled))},inputs:{id:\"id\",disabled:\"disabled\",value:\"value\"},outputs:{onSelectionChange:\"onSelectionChange\"},exportAs:[\"matOption\"],ngContentSelectors:dy,decls:4,vars:3,consts:[[\"class\",\"mat-option-pseudo-checkbox\",3,\"state\",\"disabled\",4,\"ngIf\"],[1,\"mat-option-text\"],[\"mat-ripple\",\"\",1,\"mat-option-ripple\",3,\"matRippleTrigger\",\"matRippleDisabled\"],[1,\"mat-option-pseudo-checkbox\",3,\"state\",\"disabled\"]],template:function(e,t){1&e&&(Zo(),Do(0,cy,1,2,\"mat-pseudo-checkbox\",0),Ro(1,\"span\",1),ea(2),Ho(),jo(3,\"div\",2)),2&e&&(Po(\"ngIf\",t.multiple),ys(3),Po(\"matRippleTrigger\",t._getHostElement())(\"matRippleDisabled\",t.disabled||t.disableRipple))},directives:[mu,Cy,Dy],styles:[\".mat-option{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative;cursor:pointer;outline:none;display:flex;flex-direction:row;max-width:100%;box-sizing:border-box;align-items:center;-webkit-tap-highlight-color:transparent}.mat-option[disabled]{cursor:default}[dir=rtl] .mat-option{text-align:right}.mat-option .mat-icon{margin-right:16px;vertical-align:middle}.mat-option .mat-icon svg{vertical-align:top}[dir=rtl] .mat-option .mat-icon{margin-left:16px;margin-right:0}.mat-option[aria-disabled=true]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:32px}[dir=rtl] .mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:16px;padding-right:32px}.cdk-high-contrast-active .mat-option{margin:0 1px}.cdk-high-contrast-active .mat-option.mat-active{border:solid 1px currentColor;margin:0}.mat-option-text{display:inline-block;flex-grow:1;overflow:hidden;text-overflow:ellipsis}.mat-option .mat-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.cdk-high-contrast-active .mat-option .mat-option-ripple{opacity:.5}.mat-option-pseudo-checkbox{margin-right:8px}[dir=rtl] .mat-option-pseudo-checkbox{margin-left:8px;margin-right:0}\\n\"],encapsulation:2,changeDetection:0}),e})();function Ny(e,t,n){if(n.length){let i=t.toArray(),s=n.toArray(),r=0;for(let t=0;t{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Ty,Mu,Yy]]}),e})();const Vy=new Ve(\"mat-label-global-options\"),Wy=[\"mat-button\",\"\"],Uy=[\"*\"],$y=[\"mat-button\",\"mat-flat-button\",\"mat-icon-button\",\"mat-raised-button\",\"mat-stroked-button\",\"mat-mini-fab\",\"mat-fab\"];class By{constructor(e){this._elementRef=e}}const qy=_y(fy(gy(By)));let Gy=(()=>{class e extends qy{constructor(e,t,n){super(e),this._focusMonitor=t,this._animationMode=n,this.isRoundButton=this._hasHostAttributes(\"mat-fab\",\"mat-mini-fab\"),this.isIconButton=this._hasHostAttributes(\"mat-icon-button\");for(const i of $y)this._hasHostAttributes(i)&&this._getHostElement().classList.add(i);e.nativeElement.classList.add(\"mat-button-base\"),this._focusMonitor.monitor(this._elementRef,!0),this.isRoundButton&&(this.color=\"accent\")}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}focus(e=\"program\",t){this._focusMonitor.focusVia(this._getHostElement(),e,t)}_getHostElement(){return this._elementRef.nativeElement}_isRippleDisabled(){return this.disableRipple||this.disabled}_hasHostAttributes(...e){return e.some(e=>this._getHostElement().hasAttribute(e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Up),Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"button\",\"mat-button\",\"\"],[\"button\",\"mat-raised-button\",\"\"],[\"button\",\"mat-icon-button\",\"\"],[\"button\",\"mat-fab\",\"\"],[\"button\",\"mat-mini-fab\",\"\"],[\"button\",\"mat-stroked-button\",\"\"],[\"button\",\"mat-flat-button\",\"\"]],viewQuery:function(e,t){var n;1&e&&Ec(Cy,!0),2&e&&Dc(n=Rc())&&(t.ripple=n.first)},hostAttrs:[1,\"mat-focus-indicator\"],hostVars:3,hostBindings:function(e,t){2&e&&(Co(\"disabled\",t.disabled||null),ua(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\"},exportAs:[\"matButton\"],features:[Ya],attrs:Wy,ngContentSelectors:Uy,decls:4,vars:5,consts:[[1,\"mat-button-wrapper\"],[\"matRipple\",\"\",1,\"mat-button-ripple\",3,\"matRippleDisabled\",\"matRippleCentered\",\"matRippleTrigger\"],[1,\"mat-button-focus-overlay\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"span\",0),ea(1),Ho(),jo(2,\"div\",1),jo(3,\"div\",2)),2&e&&(ys(2),ua(\"mat-button-ripple-round\",t.isRoundButton||t.isIconButton),Po(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleCentered\",t.isIconButton)(\"matRippleTrigger\",t._getHostElement()))},directives:[Cy],styles:[\".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:.04}@media(hover: none){.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-button[disabled],.mat-icon-button[disabled],.mat-stroked-button[disabled],.mat-flat-button[disabled]{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button[disabled]{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}._mat-animation-noopable.mat-raised-button{transition:none;animation:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-ripple.mat-ripple,.mat-stroked-button .mat-button-focus-overlay{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab[disabled]{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-fab{transition:none;animation:none}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab[disabled]{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-mini-fab{transition:none;animation:none}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button i,.mat-icon-button .mat-icon{line-height:24px}.mat-button-ripple.mat-ripple,.mat-button-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-ripple.mat-ripple:not(:empty){transform:translateZ(0)}.mat-button-focus-overlay{opacity:0;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1),background-color 200ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}.cdk-high-contrast-active .mat-button-focus-overlay{background-color:#fff}.cdk-high-contrast-black-on-white .mat-button-focus-overlay{background-color:#000}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}\\n\"],encapsulation:2,changeDetection:0}),e})(),Jy=(()=>{class e extends Gy{constructor(e,t,n){super(t,e,n)}_haltDisabledEvents(e){this.disabled&&(e.preventDefault(),e.stopImmediatePropagation())}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Up),Eo(Ka),Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"a\",\"mat-button\",\"\"],[\"a\",\"mat-raised-button\",\"\"],[\"a\",\"mat-icon-button\",\"\"],[\"a\",\"mat-fab\",\"\"],[\"a\",\"mat-mini-fab\",\"\"],[\"a\",\"mat-stroked-button\",\"\"],[\"a\",\"mat-flat-button\",\"\"]],hostAttrs:[1,\"mat-focus-indicator\"],hostVars:5,hostBindings:function(e,t){1&e&&Uo(\"click\",(function(e){return t._haltDisabledEvents(e)})),2&e&&(Co(\"tabindex\",t.disabled?-1:t.tabIndex||0)(\"disabled\",t.disabled||null)(\"aria-disabled\",t.disabled.toString()),ua(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\"},exportAs:[\"matButton\",\"matAnchor\"],features:[Ya],attrs:Wy,ngContentSelectors:Uy,decls:4,vars:5,consts:[[1,\"mat-button-wrapper\"],[\"matRipple\",\"\",1,\"mat-button-ripple\",3,\"matRippleDisabled\",\"matRippleCentered\",\"matRippleTrigger\"],[1,\"mat-button-focus-overlay\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"span\",0),ea(1),Ho(),jo(2,\"div\",1),jo(3,\"div\",2)),2&e&&(ys(2),ua(\"mat-button-ripple-round\",t.isRoundButton||t.isIconButton),Po(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleCentered\",t.isIconButton)(\"matRippleTrigger\",t._getHostElement()))},directives:[Cy],styles:[\".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:.04}@media(hover: none){.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-button[disabled],.mat-icon-button[disabled],.mat-stroked-button[disabled],.mat-flat-button[disabled]{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button[disabled]{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}._mat-animation-noopable.mat-raised-button{transition:none;animation:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-ripple.mat-ripple,.mat-stroked-button .mat-button-focus-overlay{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab[disabled]{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-fab{transition:none;animation:none}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab[disabled]{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-mini-fab{transition:none;animation:none}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button i,.mat-icon-button .mat-icon{line-height:24px}.mat-button-ripple.mat-ripple,.mat-button-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-ripple.mat-ripple:not(:empty){transform:translateZ(0)}.mat-button-focus-overlay{opacity:0;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1),background-color 200ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}.cdk-high-contrast-active .mat-button-focus-overlay{background-color:#fff}.cdk-high-contrast-black-on-white .mat-button-focus-overlay{background-color:#000}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}\\n\"],encapsulation:2,changeDetection:0}),e})(),Ky=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Ty,py],py]}),e})();const Zy=[\"*\",[[\"mat-card-footer\"]]],Qy=[\"*\",\"mat-card-footer\"],Xy=[[[\"\",\"mat-card-avatar\",\"\"],[\"\",\"matCardAvatar\",\"\"]],[[\"mat-card-title\"],[\"mat-card-subtitle\"],[\"\",\"mat-card-title\",\"\"],[\"\",\"mat-card-subtitle\",\"\"],[\"\",\"matCardTitle\",\"\"],[\"\",\"matCardSubtitle\",\"\"]],\"*\"],eb=[\"[mat-card-avatar], [matCardAvatar]\",\"mat-card-title, mat-card-subtitle,\\n [mat-card-title], [mat-card-subtitle],\\n [matCardTitle], [matCardSubtitle]\",\"*\"];let tb=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-card-content\"],[\"\",\"mat-card-content\",\"\"],[\"\",\"matCardContent\",\"\"]],hostAttrs:[1,\"mat-card-content\"]}),e})(),nb=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-card-title\"],[\"\",\"mat-card-title\",\"\"],[\"\",\"matCardTitle\",\"\"]],hostAttrs:[1,\"mat-card-title\"]}),e})(),ib=(()=>{class e{constructor(){this.align=\"start\"}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-card-actions\"]],hostAttrs:[1,\"mat-card-actions\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"mat-card-actions-align-end\",\"end\"===t.align)},inputs:{align:\"align\"},exportAs:[\"matCardActions\"]}),e})(),sb=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"mat-card-image\",\"\"],[\"\",\"matCardImage\",\"\"]],hostAttrs:[1,\"mat-card-image\"]}),e})(),rb=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"mat-card-avatar\",\"\"],[\"\",\"matCardAvatar\",\"\"]],hostAttrs:[1,\"mat-card-avatar\"]}),e})(),ob=(()=>{class e{constructor(e){this._animationMode=e}}return e.\\u0275fac=function(t){return new(t||e)(Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-card\"]],hostAttrs:[1,\"mat-card\",\"mat-focus-indicator\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode)},exportAs:[\"matCard\"],ngContentSelectors:Qy,decls:2,vars:0,template:function(e,t){1&e&&(Zo(Zy),ea(0),ea(1,1))},styles:[\".mat-card{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);display:block;position:relative;padding:16px;border-radius:4px}._mat-animation-noopable.mat-card{transition:none;animation:none}.mat-card .mat-divider-horizontal{position:absolute;left:0;width:100%}[dir=rtl] .mat-card .mat-divider-horizontal{left:auto;right:0}.mat-card .mat-divider-horizontal.mat-divider-inset{position:static;margin:0}[dir=rtl] .mat-card .mat-divider-horizontal.mat-divider-inset{margin-right:0}.cdk-high-contrast-active .mat-card{outline:solid 1px}.mat-card-actions,.mat-card-subtitle,.mat-card-content{display:block;margin-bottom:16px}.mat-card-title{display:block;margin-bottom:8px}.mat-card-actions{margin-left:-8px;margin-right:-8px;padding:8px 0}.mat-card-actions-align-end{display:flex;justify-content:flex-end}.mat-card-image{width:calc(100% + 32px);margin:0 -16px 16px -16px}.mat-card-footer{display:block;margin:0 -16px -16px -16px}.mat-card-actions .mat-button,.mat-card-actions .mat-raised-button,.mat-card-actions .mat-stroked-button{margin:0 8px}.mat-card-header{display:flex;flex-direction:row}.mat-card-header .mat-card-title{margin-bottom:12px}.mat-card-header-text{margin:0 16px}.mat-card-avatar{height:40px;width:40px;border-radius:50%;flex-shrink:0;object-fit:cover}.mat-card-title-group{display:flex;justify-content:space-between}.mat-card-sm-image{width:80px;height:80px}.mat-card-md-image{width:112px;height:112px}.mat-card-lg-image{width:152px;height:152px}.mat-card-xl-image{width:240px;height:240px;margin:-8px}.mat-card-title-group>.mat-card-xl-image{margin:-8px 0 8px}@media(max-width: 599px){.mat-card-title-group{margin:0}.mat-card-xl-image{margin-left:0;margin-right:0}}.mat-card>:first-child,.mat-card-content>:first-child{margin-top:0}.mat-card>:last-child:not(.mat-card-footer),.mat-card-content>:last-child:not(.mat-card-footer){margin-bottom:0}.mat-card-image:first-child{margin-top:-16px;border-top-left-radius:inherit;border-top-right-radius:inherit}.mat-card>.mat-card-actions:last-child{margin-bottom:-8px;padding-bottom:0}.mat-card-actions .mat-button:first-child,.mat-card-actions .mat-raised-button:first-child,.mat-card-actions .mat-stroked-button:first-child{margin-left:0;margin-right:0}.mat-card-title:not(:first-child),.mat-card-subtitle:not(:first-child){margin-top:-4px}.mat-card-header .mat-card-subtitle:not(:first-child){margin-top:-8px}.mat-card>.mat-card-xl-image:first-child{margin-top:-8px}.mat-card>.mat-card-xl-image:last-child{margin-bottom:-8px}\\n\"],encapsulation:2,changeDetection:0}),e})(),ab=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-card-header\"]],hostAttrs:[1,\"mat-card-header\"],ngContentSelectors:eb,decls:4,vars:0,consts:[[1,\"mat-card-header-text\"]],template:function(e,t){1&e&&(Zo(Xy),ea(0),Ro(1,\"div\",0),ea(2,1),Ho(),ea(3,2))},encapsulation:2,changeDetection:0}),e})(),lb=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[py],py]}),e})();const cb=[\"input\"],db=function(){return{enterDuration:150}},ub=[\"*\"],hb=new Ve(\"mat-checkbox-default-options\",{providedIn:\"root\",factory:function(){return{color:\"accent\",clickAction:\"check-indeterminate\"}}}),mb=new Ve(\"mat-checkbox-click-action\");let pb=0;const fb={provide:uh,useExisting:Ce(()=>bb),multi:!0};class _b{}class gb{constructor(e){this._elementRef=e}}const yb=yy(_y(gy(fy(gb))));let bb=(()=>{class e extends yb{constructor(e,t,n,i,s,r,o,a){super(e),this._changeDetectorRef=t,this._focusMonitor=n,this._ngZone=i,this._clickAction=r,this._animationMode=o,this._options=a,this.ariaLabel=\"\",this.ariaLabelledby=null,this._uniqueId=`mat-checkbox-${++pb}`,this.id=this._uniqueId,this.labelPosition=\"after\",this.name=null,this.change=new yc,this.indeterminateChange=new yc,this._onTouched=()=>{},this._currentAnimationClass=\"\",this._currentCheckState=0,this._controlValueAccessorChangeFn=()=>{},this._checked=!1,this._disabled=!1,this._indeterminate=!1,this._options=this._options||{},this._options.color&&(this.color=this._options.color),this.tabIndex=parseInt(s)||0,this._focusMonitor.monitor(e,!0).subscribe(e=>{e||Promise.resolve().then(()=>{this._onTouched(),t.markForCheck()})}),this._clickAction=this._clickAction||this._options.clickAction}get inputId(){return`${this.id||this._uniqueId}-input`}get required(){return this._required}set required(e){this._required=hp(e)}ngAfterViewInit(){this._syncIndeterminate(this._indeterminate)}ngAfterViewChecked(){}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}get checked(){return this._checked}set checked(e){e!=this.checked&&(this._checked=e,this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled}set disabled(e){const t=hp(e);t!==this.disabled&&(this._disabled=t,this._changeDetectorRef.markForCheck())}get indeterminate(){return this._indeterminate}set indeterminate(e){const t=e!=this._indeterminate;this._indeterminate=hp(e),t&&(this._transitionCheckState(this._indeterminate?3:this.checked?1:2),this.indeterminateChange.emit(this._indeterminate)),this._syncIndeterminate(this._indeterminate)}_isRippleDisabled(){return this.disableRipple||this.disabled}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}writeValue(e){this.checked=!!e}registerOnChange(e){this._controlValueAccessorChangeFn=e}registerOnTouched(e){this._onTouched=e}setDisabledState(e){this.disabled=e}_getAriaChecked(){return this.checked?\"true\":this.indeterminate?\"mixed\":\"false\"}_transitionCheckState(e){let t=this._currentCheckState,n=this._elementRef.nativeElement;if(t!==e&&(this._currentAnimationClass.length>0&&n.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(t,e),this._currentCheckState=e,this._currentAnimationClass.length>0)){n.classList.add(this._currentAnimationClass);const e=this._currentAnimationClass;this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{n.classList.remove(e)},1e3)})}}_emitChangeEvent(){const e=new _b;e.source=this,e.checked=this.checked,this._controlValueAccessorChangeFn(this.checked),this.change.emit(e)}toggle(){this.checked=!this.checked}_onInputClick(e){e.stopPropagation(),this.disabled||\"noop\"===this._clickAction?this.disabled||\"noop\"!==this._clickAction||(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&\"check\"!==this._clickAction&&Promise.resolve().then(()=>{this._indeterminate=!1,this.indeterminateChange.emit(this._indeterminate)}),this.toggle(),this._transitionCheckState(this._checked?1:2),this._emitChangeEvent())}focus(e=\"keyboard\",t){this._focusMonitor.focusVia(this._inputElement,e,t)}_onInteractionEvent(e){e.stopPropagation()}_getAnimationClassForCheckStateTransition(e,t){if(\"NoopAnimations\"===this._animationMode)return\"\";let n=\"\";switch(e){case 0:if(1===t)n=\"unchecked-checked\";else{if(3!=t)return\"\";n=\"unchecked-indeterminate\"}break;case 2:n=1===t?\"unchecked-checked\":\"unchecked-indeterminate\";break;case 1:n=2===t?\"checked-unchecked\":\"checked-indeterminate\";break;case 3:n=1===t?\"indeterminate-checked\":\"indeterminate-unchecked\"}return`mat-checkbox-anim-${n}`}_syncIndeterminate(e){const t=this._inputElement;t&&(t.nativeElement.indeterminate=e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Qr),Eo(Up),Eo(ld),Oo(\"tabindex\"),Eo(mb,8),Eo(sy,8),Eo(hb,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-checkbox\"]],viewQuery:function(e,t){var n;1&e&&(Ec(cb,!0),Ec(Cy,!0)),2&e&&(Dc(n=Rc())&&(t._inputElement=n.first),Dc(n=Rc())&&(t.ripple=n.first))},hostAttrs:[1,\"mat-checkbox\"],hostVars:12,hostBindings:function(e,t){2&e&&(Ca(\"id\",t.id),Co(\"tabindex\",null),ua(\"mat-checkbox-indeterminate\",t.indeterminate)(\"mat-checkbox-checked\",t.checked)(\"mat-checkbox-disabled\",t.disabled)(\"mat-checkbox-label-before\",\"before\"==t.labelPosition)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],id:\"id\",labelPosition:\"labelPosition\",name:\"name\",required:\"required\",checked:\"checked\",disabled:\"disabled\",indeterminate:\"indeterminate\",value:\"value\"},outputs:{change:\"change\",indeterminateChange:\"indeterminateChange\"},exportAs:[\"matCheckbox\"],features:[Ba([fb]),Ya],ngContentSelectors:ub,decls:17,vars:19,consts:[[1,\"mat-checkbox-layout\"],[\"label\",\"\"],[1,\"mat-checkbox-inner-container\"],[\"type\",\"checkbox\",1,\"mat-checkbox-input\",\"cdk-visually-hidden\",3,\"id\",\"required\",\"checked\",\"disabled\",\"tabIndex\",\"change\",\"click\"],[\"input\",\"\"],[\"matRipple\",\"\",1,\"mat-checkbox-ripple\",\"mat-focus-indicator\",3,\"matRippleTrigger\",\"matRippleDisabled\",\"matRippleRadius\",\"matRippleCentered\",\"matRippleAnimation\"],[1,\"mat-ripple-element\",\"mat-checkbox-persistent-ripple\"],[1,\"mat-checkbox-frame\"],[1,\"mat-checkbox-background\"],[\"version\",\"1.1\",\"focusable\",\"false\",\"viewBox\",\"0 0 24 24\",0,\"xml\",\"space\",\"preserve\",1,\"mat-checkbox-checkmark\"],[\"fill\",\"none\",\"stroke\",\"white\",\"d\",\"M4.1,12.7 9,17.6 20.3,6.3\",1,\"mat-checkbox-checkmark-path\"],[1,\"mat-checkbox-mixedmark\"],[1,\"mat-checkbox-label\",3,\"cdkObserveContent\"],[\"checkboxLabel\",\"\"],[2,\"display\",\"none\"]],template:function(e,t){if(1&e&&(Zo(),Ro(0,\"label\",0,1),Ro(2,\"div\",2),Ro(3,\"input\",3,4),Uo(\"change\",(function(e){return t._onInteractionEvent(e)}))(\"click\",(function(e){return t._onInputClick(e)})),Ho(),Ro(5,\"div\",5),jo(6,\"div\",6),Ho(),jo(7,\"div\",7),Ro(8,\"div\",8),kn(),Ro(9,\"svg\",9),jo(10,\"path\",10),Ho(),Sn(),jo(11,\"div\",11),Ho(),Ho(),Ro(12,\"span\",12,13),Uo(\"cdkObserveContent\",(function(){return t._onLabelTextChange()})),Ro(14,\"span\",14),Sa(15,\"\\xa0\"),Ho(),ea(16),Ho(),Ho()),2&e){const e=Yo(1),n=Yo(13);Co(\"for\",t.inputId),ys(2),ua(\"mat-checkbox-inner-container-no-side-margin\",!n.textContent||!n.textContent.trim()),ys(1),Po(\"id\",t.inputId)(\"required\",t.required)(\"checked\",t.checked)(\"disabled\",t.disabled)(\"tabIndex\",t.tabIndex),Co(\"value\",t.value)(\"name\",t.name)(\"aria-label\",t.ariaLabel||null)(\"aria-labelledby\",t.ariaLabelledby)(\"aria-checked\",t._getAriaChecked()),ys(2),Po(\"matRippleTrigger\",e)(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleRadius\",20)(\"matRippleCentered\",!0)(\"matRippleAnimation\",gc(18,db))}},directives:[Cy,Yp],styles:[\"@keyframes mat-checkbox-fade-in-background{0%{opacity:0}50%{opacity:1}}@keyframes mat-checkbox-fade-out-background{0%,50%{opacity:1}100%{opacity:0}}@keyframes mat-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:22.910259}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1)}100%{stroke-dashoffset:0}}@keyframes mat-checkbox-unchecked-indeterminate-mixedmark{0%,68.2%{transform:scaleX(0)}68.2%{animation-timing-function:cubic-bezier(0, 0, 0, 1)}100%{transform:scaleX(1)}}@keyframes mat-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);stroke-dashoffset:0}to{stroke-dashoffset:-22.910259}}@keyframes mat-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(45deg)}}@keyframes mat-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:0;transform:rotate(45deg)}to{opacity:1;transform:rotate(360deg)}}@keyframes mat-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:0;transform:rotate(-45deg)}to{opacity:1;transform:rotate(0deg)}}@keyframes mat-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(315deg)}}@keyframes mat-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;opacity:1;transform:scaleX(1)}32.8%,100%{opacity:0;transform:scaleX(0)}}.mat-checkbox-background,.mat-checkbox-frame{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:2px;box-sizing:border-box;pointer-events:none}.mat-checkbox{transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);cursor:pointer;-webkit-tap-highlight-color:transparent}._mat-animation-noopable.mat-checkbox{transition:none;animation:none}.mat-checkbox .mat-ripple-element:not(.mat-checkbox-persistent-ripple){opacity:.16}.mat-checkbox-layout{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:inherit;align-items:baseline;vertical-align:middle;display:inline-flex;white-space:nowrap}.mat-checkbox-label{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.mat-checkbox-inner-container{display:inline-block;height:16px;line-height:0;margin:auto;margin-right:8px;order:0;position:relative;vertical-align:middle;white-space:nowrap;width:16px;flex-shrink:0}[dir=rtl] .mat-checkbox-inner-container{margin-left:8px;margin-right:auto}.mat-checkbox-inner-container-no-side-margin{margin-left:0;margin-right:0}.mat-checkbox-frame{background-color:transparent;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1);border-width:2px;border-style:solid}._mat-animation-noopable .mat-checkbox-frame{transition:none}.mat-checkbox.cdk-keyboard-focused .cdk-high-contrast-active .mat-checkbox-frame{border-style:dotted}.mat-checkbox-background{align-items:center;display:inline-flex;justify-content:center;transition:background-color 90ms cubic-bezier(0, 0, 0.2, 0.1),opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}._mat-animation-noopable .mat-checkbox-background{transition:none}.cdk-high-contrast-active .mat-checkbox .mat-checkbox-background{background:none}.mat-checkbox-persistent-ripple{width:100%;height:100%;transform:none}.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:.04}.mat-checkbox.cdk-keyboard-focused .mat-checkbox-persistent-ripple{opacity:.12}.mat-checkbox-persistent-ripple,.mat-checkbox.mat-checkbox-disabled .mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:0}@media(hover: none){.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{display:none}}.mat-checkbox-checkmark{top:0;left:0;right:0;bottom:0;position:absolute;width:100%}.mat-checkbox-checkmark-path{stroke-dashoffset:22.910259;stroke-dasharray:22.910259;stroke-width:2.1333333333px}.cdk-high-contrast-black-on-white .mat-checkbox-checkmark-path{stroke:#000 !important}.mat-checkbox-mixedmark{width:calc(100% - 6px);height:2px;opacity:0;transform:scaleX(0) rotate(0deg);border-radius:2px}.cdk-high-contrast-active .mat-checkbox-mixedmark{height:0;border-top:solid 2px;margin-top:2px}.mat-checkbox-label-before .mat-checkbox-inner-container{order:1;margin-left:8px;margin-right:auto}[dir=rtl] .mat-checkbox-label-before .mat-checkbox-inner-container{margin-left:auto;margin-right:8px}.mat-checkbox-checked .mat-checkbox-checkmark{opacity:1}.mat-checkbox-checked .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-checked .mat-checkbox-mixedmark{transform:scaleX(1) rotate(-45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark{opacity:0;transform:rotate(45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-indeterminate .mat-checkbox-mixedmark{opacity:1;transform:scaleX(1) rotate(0deg)}.mat-checkbox-unchecked .mat-checkbox-background{background-color:transparent}.mat-checkbox-disabled{cursor:default}.cdk-high-contrast-active .mat-checkbox-disabled{opacity:.5}.mat-checkbox-anim-unchecked-checked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-checked .mat-checkbox-checkmark-path{animation:180ms linear 0ms mat-checkbox-unchecked-checked-checkmark-path}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-unchecked-indeterminate-mixedmark}.mat-checkbox-anim-checked-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-checked-unchecked .mat-checkbox-checkmark-path{animation:90ms linear 0ms mat-checkbox-checked-unchecked-checkmark-path}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-checkmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-checkmark}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-mixedmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-checkmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-checkmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-mixedmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-mixedmark}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-mixedmark{animation:300ms linear 0ms mat-checkbox-indeterminate-unchecked-mixedmark}.mat-checkbox-input{bottom:0;left:50%}.mat-checkbox .mat-checkbox-ripple{position:absolute;left:calc(50% - 20px);top:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}\\n\"],encapsulation:2,changeDetection:0}),e})(),vb=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),wb=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Ty,py,Ep,vb],py,vb]}),e})();function Mb(e,t,n,s){return i(n)&&(s=n,n=void 0),s?Mb(e,t,n).pipe(H(e=>l(e)?s(...e):s(e))):new v(i=>{!function e(t,n,i,s,r){let o;if(function(e){return e&&\"function\"==typeof e.addEventListener&&\"function\"==typeof e.removeEventListener}(t)){const e=t;t.addEventListener(n,i,r),o=()=>e.removeEventListener(n,i,r)}else if(function(e){return e&&\"function\"==typeof e.on&&\"function\"==typeof e.off}(t)){const e=t;t.on(n,i),o=()=>e.off(n,i)}else if(function(e){return e&&\"function\"==typeof e.addListener&&\"function\"==typeof e.removeListener}(t)){const e=t;t.addListener(n,i),o=()=>e.removeListener(n,i)}else{if(!t||!t.length)throw new TypeError(\"Invalid event target\");for(let o=0,a=t.length;o1?Array.prototype.slice.call(arguments):e)}),i,n)})}let kb=1;const Sb=(()=>Promise.resolve())(),Lb={};function xb(e){return e in Lb&&(delete Lb[e],!0)}const Cb={setImmediate(e){const t=kb++;return Lb[t]=!0,Sb.then(()=>xb(t)&&e()),t},clearImmediate(e){xb(e)}};class Tb extends Qm{constructor(e,t){super(e,t),this.scheduler=e,this.work=t}requestAsyncId(e,t,n=0){return null!==n&&n>0?super.requestAsyncId(e,t,n):(e.actions.push(this),e.scheduled||(e.scheduled=Cb.setImmediate(e.flush.bind(e,null))))}recycleAsyncId(e,t,n=0){if(null!==n&&n>0||null===n&&this.delay>0)return super.recycleAsyncId(e,t,n);0===e.actions.length&&(Cb.clearImmediate(t),e.scheduled=void 0)}}class Db extends ep{flush(e){this.active=!0,this.scheduled=void 0;const{actions:t}=this;let n,i=-1,s=t.length;e=e||t.shift();do{if(n=e.execute(e.state,e.delay))break}while(++in.lift(new Ob(e,t))}class Ob{constructor(e,t){this.compare=e,this.keySelector=t}call(e,t){return t.subscribe(new Ib(e,this.compare,this.keySelector))}}class Ib extends p{constructor(e,t,n){super(e),this.keySelector=n,this.hasKey=!1,\"function\"==typeof t&&(this.compare=t)}compare(e,t){return e===t}_next(e){let t;try{const{keySelector:n}=this;t=n?n(e):e}catch(i){return this.destination.error(i)}let n=!1;if(this.hasKey)try{const{compare:e}=this;n=e(this.key,t)}catch(i){return this.destination.error(i)}else this.hasKey=!0;n||(this.key=t,this.destination.next(e))}}class Pb{constructor(e){this.durationSelector=e}call(e,t){return t.subscribe(new Ab(e,this.durationSelector))}}class Ab extends R{constructor(e,t){super(e),this.durationSelector=t,this.hasValue=!1}_next(e){if(this.value=e,this.hasValue=!0,!this.throttled){let n;try{const{durationSelector:t}=this;n=t(e)}catch(t){return this.destination.error(t)}const i=A(this,n);!i||i.closed?this.clearThrottle():this.add(this.throttled=i)}}clearThrottle(){const{value:e,hasValue:t,throttled:n}=this;n&&(this.remove(n),this.throttled=null,n.unsubscribe()),t&&(this.value=null,this.hasValue=!1,this.destination.next(e))}notifyNext(e,t,n,i){this.clearThrottle()}notifyComplete(){this.clearThrottle()}}function Rb(e){return!l(e)&&e-parseFloat(e)+1>=0}function Hb(e=0,t,n){let i=-1;return Rb(t)?i=Number(t)<1?1:Number(t):C(t)&&(n=t),C(n)||(n=tp),new v(t=>{const s=Rb(e)?e:+e-n.now();return n.schedule(jb,s,{index:0,period:i,subscriber:t})})}function jb(e){const{index:t,period:n,subscriber:i}=e;if(i.next(t),!i.closed){if(-1===n)return i.complete();e.index=t+1,this.schedule(e,n)}}function Fb(e,t=tp){return n=()=>Hb(e,t),function(e){return e.lift(new Pb(n))};var n}function Nb(e){return t=>t.lift(new zb(e))}class zb{constructor(e){this.notifier=e}call(e,t){const n=new Vb(e),i=A(n,this.notifier);return i&&!n.seenValue?(n.add(i),t.subscribe(n)):n}}class Vb extends R{constructor(e){super(e),this.seenValue=!1}notifyNext(e,t,n,i,s){this.seenValue=!0,this.complete()}notifyComplete(){}}function Wb(e,t){return\"function\"==typeof t?n=>n.pipe(Wb((n,i)=>z(e(n,i)).pipe(H((e,s)=>t(n,e,i,s))))):t=>t.lift(new Ub(e))}class Ub{constructor(e){this.project=e}call(e,t){return t.subscribe(new $b(e,this.project))}}class $b extends R{constructor(e,t){super(e),this.project=t,this.index=0}_next(e){let t;const n=this.index++;try{t=this.project(e,n)}catch(i){return void this.destination.error(i)}this._innerSub(t,e,n)}_innerSub(e,t,n){const i=this.innerSubscription;i&&i.unsubscribe();const s=new T(this,t,n),r=this.destination;r.add(s),this.innerSubscription=A(this,e,void 0,void 0,s),this.innerSubscription!==s&&r.add(this.innerSubscription)}_complete(){const{innerSubscription:e}=this;e&&!e.closed||super._complete(),this.unsubscribe()}_unsubscribe(){this.innerSubscription=null}notifyComplete(e){this.destination.remove(e),this.innerSubscription=null,this.isStopped&&super._complete()}notifyNext(e,t,n,i,s){this.destination.next(t)}}class Bb extends Qm{constructor(e,t){super(e,t),this.scheduler=e,this.work=t}schedule(e,t=0){return t>0?super.schedule(e,t):(this.delay=t,this.state=e,this.scheduler.flush(this),this)}execute(e,t){return t>0||this.closed?super.execute(e,t):this._execute(e,t)}requestAsyncId(e,t,n=0){return null!==n&&n>0||null===n&&this.delay>0?super.requestAsyncId(e,t,n):e.flush(this)}}class qb extends ep{}const Gb=new qb(Bb);function Jb(e,t){return new v(t?n=>t.schedule(Kb,0,{error:e,subscriber:n}):t=>t.error(e))}function Kb({error:e,subscriber:t}){t.error(e)}let Zb=(()=>{class e{constructor(e,t,n){this.kind=e,this.value=t,this.error=n,this.hasValue=\"N\"===e}observe(e){switch(this.kind){case\"N\":return e.next&&e.next(this.value);case\"E\":return e.error&&e.error(this.error);case\"C\":return e.complete&&e.complete()}}do(e,t,n){switch(this.kind){case\"N\":return e&&e(this.value);case\"E\":return t&&t(this.error);case\"C\":return n&&n()}}accept(e,t,n){return e&&\"function\"==typeof e.next?this.observe(e):this.do(e,t,n)}toObservable(){switch(this.kind){case\"N\":return xu(this.value);case\"E\":return Jb(this.error);case\"C\":return lp()}throw new Error(\"unexpected notification kind value\")}static createNext(t){return void 0!==t?new e(\"N\",t):e.undefinedValueNotification}static createError(t){return new e(\"E\",void 0,t)}static createComplete(){return e.completeNotification}}return e.completeNotification=new e(\"C\"),e.undefinedValueNotification=new e(\"N\",void 0),e})();class Qb extends p{constructor(e,t,n=0){super(e),this.scheduler=t,this.delay=n}static dispatch(e){const{notification:t,destination:n}=e;t.observe(n),this.unsubscribe()}scheduleMessage(e){this.destination.add(this.scheduler.schedule(Qb.dispatch,this.delay,new Xb(e,this.destination)))}_next(e){this.scheduleMessage(Zb.createNext(e))}_error(e){this.scheduleMessage(Zb.createError(e)),this.unsubscribe()}_complete(){this.scheduleMessage(Zb.createComplete()),this.unsubscribe()}}class Xb{constructor(e,t){this.notification=e,this.destination=t}}class ev extends L{constructor(e=Number.POSITIVE_INFINITY,t=Number.POSITIVE_INFINITY,n){super(),this.scheduler=n,this._events=[],this._infiniteTimeWindow=!1,this._bufferSize=e<1?1:e,this._windowTime=t<1?1:t,t===Number.POSITIVE_INFINITY?(this._infiniteTimeWindow=!0,this.next=this.nextInfiniteTimeWindow):this.next=this.nextTimeWindow}nextInfiniteTimeWindow(e){const t=this._events;t.push(e),t.length>this._bufferSize&&t.shift(),super.next(e)}nextTimeWindow(e){this._events.push(new tv(this._getNow(),e)),this._trimBufferThenGetEvents(),super.next(e)}_subscribe(e){const t=this._infiniteTimeWindow,n=t?this._events:this._trimBufferThenGetEvents(),i=this.scheduler,s=n.length;let r;if(this.closed)throw new M;if(this.isStopped||this.hasError?r=u.EMPTY:(this.observers.push(e),r=new k(this,e)),i&&e.add(e=new Qb(e,i)),t)for(let o=0;ot&&(r=Math.max(r,s-t)),r>0&&i.splice(0,r),i}}class tv{constructor(e,t){this.time=e,this.value=t}}function nv(e,t,n){let i;return i=e&&\"object\"==typeof e?e:{bufferSize:e,windowTime:t,refCount:!1,scheduler:n},e=>e.lift(function({bufferSize:e=Number.POSITIVE_INFINITY,windowTime:t=Number.POSITIVE_INFINITY,refCount:n,scheduler:i}){let s,r,o=0,a=!1,l=!1;return function(c){o++,s&&!a||(a=!1,s=new ev(e,t,i),r=c.subscribe({next(e){s.next(e)},error(e){a=!0,s.error(e)},complete(){l=!0,r=void 0,s.complete()}}));const d=s.subscribe(this);this.add(()=>{o--,d.unsubscribe(),r&&!l&&n&&0===o&&(r.unsubscribe(),r=void 0,s=void 0)})}}(i))}class iv{constructor(e=!1,t,n=!0){this._multiple=e,this._emitChanges=n,this._selection=new Set,this._deselectedToEmit=[],this._selectedToEmit=[],this.changed=new L,t&&t.length&&(e?t.forEach(e=>this._markSelected(e)):this._markSelected(t[0]),this._selectedToEmit.length=0)}get selected(){return this._selected||(this._selected=Array.from(this._selection.values())),this._selected}select(...e){this._verifyValueAssignment(e),e.forEach(e=>this._markSelected(e)),this._emitChangeEvent()}deselect(...e){this._verifyValueAssignment(e),e.forEach(e=>this._unmarkSelected(e)),this._emitChangeEvent()}toggle(e){this.isSelected(e)?this.deselect(e):this.select(e)}clear(){this._unmarkAll(),this._emitChangeEvent()}isSelected(e){return this._selection.has(e)}isEmpty(){return 0===this._selection.size}hasValue(){return!this.isEmpty()}sort(e){this._multiple&&this.selected&&this._selected.sort(e)}isMultipleSelection(){return this._multiple}_emitChangeEvent(){this._selected=null,(this._selectedToEmit.length||this._deselectedToEmit.length)&&(this.changed.next({source:this,added:this._selectedToEmit,removed:this._deselectedToEmit}),this._deselectedToEmit=[],this._selectedToEmit=[])}_markSelected(e){this.isSelected(e)||(this._multiple||this._unmarkAll(),this._selection.add(e),this._emitChanges&&this._selectedToEmit.push(e))}_unmarkSelected(e){this.isSelected(e)&&(this._selection.delete(e),this._emitChanges&&this._deselectedToEmit.push(e))}_unmarkAll(){this.isEmpty()||this._selection.forEach(e=>this._unmarkSelected(e))}_verifyValueAssignment(e){if(e.length>1&&!this._multiple)throw Error(\"Cannot pass multiple values into SelectionModel with single-value mode.\")}}let sv=(()=>{class e{constructor(e,t){this._ngZone=e,this._platform=t,this._scrolled=new L,this._globalSubscription=null,this._scrolledCount=0,this.scrollContainers=new Map}register(e){this.scrollContainers.has(e)||this.scrollContainers.set(e,e.elementScrolled().subscribe(()=>this._scrolled.next(e)))}deregister(e){const t=this.scrollContainers.get(e);t&&(t.unsubscribe(),this.scrollContainers.delete(e))}scrolled(e=20){return this._platform.isBrowser?new v(t=>{this._globalSubscription||this._addGlobalListener();const n=e>0?this._scrolled.pipe(Fb(e)).subscribe(t):this._scrolled.subscribe(t);return this._scrolledCount++,()=>{n.unsubscribe(),this._scrolledCount--,this._scrolledCount||this._removeGlobalListener()}}):xu()}ngOnDestroy(){this._removeGlobalListener(),this.scrollContainers.forEach((e,t)=>this.deregister(t)),this._scrolled.complete()}ancestorScrolled(e,t){const n=this.getAncestorScrollContainers(e);return this.scrolled(t).pipe(Tu(e=>!e||n.indexOf(e)>-1))}getAncestorScrollContainers(e){const t=[];return this.scrollContainers.forEach((n,i)=>{this._scrollableContainsElement(i,e)&&t.push(i)}),t}_scrollableContainsElement(e,t){let n=t.nativeElement,i=e.getElementRef().nativeElement;do{if(n==i)return!0}while(n=n.parentElement);return!1}_addGlobalListener(){this._globalSubscription=this._ngZone.runOutsideAngular(()=>Mb(window.document,\"scroll\").subscribe(()=>this._scrolled.next()))}_removeGlobalListener(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ld),Qe(bp))},e.\\u0275prov=pe({factory:function(){return new e(Qe(ld),Qe(bp))},token:e,providedIn:\"root\"}),e})(),rv=(()=>{class e{constructor(e,t,n,i){this.elementRef=e,this.scrollDispatcher=t,this.ngZone=n,this.dir=i,this._destroyed=new L,this._elementScrolled=new v(e=>this.ngZone.runOutsideAngular(()=>Mb(this.elementRef.nativeElement,\"scroll\").pipe(Nb(this._destroyed)).subscribe(e)))}ngOnInit(){this.scrollDispatcher.register(this)}ngOnDestroy(){this.scrollDispatcher.deregister(this),this._destroyed.next(),this._destroyed.complete()}elementScrolled(){return this._elementScrolled}getElementRef(){return this.elementRef}scrollTo(e){const t=this.elementRef.nativeElement,n=this.dir&&\"rtl\"==this.dir.value;e.left=null==e.left?n?e.end:e.start:e.left,e.right=null==e.right?n?e.start:e.end:e.right,null!=e.bottom&&(e.top=t.scrollHeight-t.clientHeight-e.bottom),n&&Cp()!=Lp.NORMAL?(null!=e.left&&(e.right=t.scrollWidth-t.clientWidth-e.left),Cp()==Lp.INVERTED?e.left=e.right:Cp()==Lp.NEGATED&&(e.left=e.right?-e.right:e.right)):null!=e.right&&(e.left=t.scrollWidth-t.clientWidth-e.right),this._applyScrollToOptions(e)}_applyScrollToOptions(e){const t=this.elementRef.nativeElement;\"object\"==typeof document&&\"scrollBehavior\"in document.documentElement.style?t.scrollTo(e):(null!=e.top&&(t.scrollTop=e.top),null!=e.left&&(t.scrollLeft=e.left))}measureScrollOffset(e){const t=this.elementRef.nativeElement;if(\"top\"==e)return t.scrollTop;if(\"bottom\"==e)return t.scrollHeight-t.clientHeight-t.scrollTop;const n=this.dir&&\"rtl\"==this.dir.value;return\"start\"==e?e=n?\"right\":\"left\":\"end\"==e&&(e=n?\"left\":\"right\"),n&&Cp()==Lp.INVERTED?\"left\"==e?t.scrollWidth-t.clientWidth-t.scrollLeft:t.scrollLeft:n&&Cp()==Lp.NEGATED?\"left\"==e?t.scrollLeft+t.scrollWidth-t.clientWidth:-t.scrollLeft:\"left\"==e?t.scrollLeft:t.scrollWidth-t.clientWidth-t.scrollLeft}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(sv),Eo(ld),Eo(Gp,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdk-scrollable\",\"\"],[\"\",\"cdkScrollable\",\"\"]]}),e})(),ov=(()=>{class e{constructor(e,t){this._platform=e,t.runOutsideAngular(()=>{this._change=e.isBrowser?G(Mb(window,\"resize\"),Mb(window,\"orientationchange\")):xu(),this._invalidateCache=this.change().subscribe(()=>this._updateViewportSize())})}ngOnDestroy(){this._invalidateCache.unsubscribe()}getViewportSize(){this._viewportSize||this._updateViewportSize();const e={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),e}getViewportRect(){const e=this.getViewportScrollPosition(),{width:t,height:n}=this.getViewportSize();return{top:e.top,left:e.left,bottom:e.top+n,right:e.left+t,height:n,width:t}}getViewportScrollPosition(){if(!this._platform.isBrowser)return{top:0,left:0};const e=document.documentElement,t=e.getBoundingClientRect();return{top:-t.top||document.body.scrollTop||window.scrollY||e.scrollTop||0,left:-t.left||document.body.scrollLeft||window.scrollX||e.scrollLeft||0}}change(e=20){return e>0?this._change.pipe(Fb(e)):this._change}_updateViewportSize(){this._viewportSize=this._platform.isBrowser?{width:window.innerWidth,height:window.innerHeight}:{width:0,height:0}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(bp),Qe(ld))},e.\\u0275prov=pe({factory:function(){return new e(Qe(bp),Qe(ld))},token:e,providedIn:\"root\"}),e})(),av=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Jp,vp],Jp]}),e})();function lv(){throw Error(\"Host already has a portal attached\")}class cv{attach(e){return null==e&&function(){throw Error(\"Attempting to attach a portal to a null PortalOutlet\")}(),e.hasAttached()&&lv(),this._attachedHost=e,e.attach(this)}detach(){let e=this._attachedHost;null==e?function(){throw Error(\"Attempting to detach a portal that is not attached to a host\")}():(this._attachedHost=null,e.detach())}get isAttached(){return null!=this._attachedHost}setAttachedHost(e){this._attachedHost=e}}class dv extends cv{constructor(e,t,n,i){super(),this.component=e,this.viewContainerRef=t,this.injector=n,this.componentFactoryResolver=i}}class uv extends cv{constructor(e,t,n){super(),this.templateRef=e,this.viewContainerRef=t,this.context=n}get origin(){return this.templateRef.elementRef}attach(e,t=this.context){return this.context=t,super.attach(e)}detach(){return this.context=void 0,super.detach()}}class hv extends cv{constructor(e){super(),this.element=e instanceof Ka?e.nativeElement:e}}class mv{constructor(){this._isDisposed=!1,this.attachDomPortal=null}hasAttached(){return!!this._attachedPortal}attach(e){return e||function(){throw Error(\"Must provide a portal to attach\")}(),this.hasAttached()&&lv(),this._isDisposed&&function(){throw Error(\"This PortalOutlet has already been disposed\")}(),e instanceof dv?(this._attachedPortal=e,this.attachComponentPortal(e)):e instanceof uv?(this._attachedPortal=e,this.attachTemplatePortal(e)):this.attachDomPortal&&e instanceof hv?(this._attachedPortal=e,this.attachDomPortal(e)):void function(){throw Error(\"Attempting to attach an unknown Portal type. BasePortalOutlet accepts either a ComponentPortal or a TemplatePortal.\")}()}detach(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()}dispose(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0}setDisposeFn(e){this._disposeFn=e}_invokeDisposeFn(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}class pv extends mv{constructor(e,t,n,i,s){super(),this.outletElement=e,this._componentFactoryResolver=t,this._appRef=n,this._defaultInjector=i,this.attachDomPortal=e=>{if(!this._document)throw Error(\"Cannot attach DOM portal without _document constructor parameter\");const t=e.element;if(!t.parentNode)throw Error(\"DOM portal content must be attached to a parent node.\");const n=this._document.createComment(\"dom-portal\");t.parentNode.insertBefore(n,t),this.outletElement.appendChild(t),super.setDisposeFn(()=>{n.parentNode&&n.parentNode.replaceChild(t,n)})},this._document=s}attachComponentPortal(e){const t=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component);let n;return e.viewContainerRef?(n=e.viewContainerRef.createComponent(t,e.viewContainerRef.length,e.injector||e.viewContainerRef.injector),this.setDisposeFn(()=>n.destroy())):(n=t.create(e.injector||this._defaultInjector),this._appRef.attachView(n.hostView),this.setDisposeFn(()=>{this._appRef.detachView(n.hostView),n.destroy()})),this.outletElement.appendChild(this._getComponentRootNode(n)),n}attachTemplatePortal(e){let t=e.viewContainerRef,n=t.createEmbeddedView(e.templateRef,e.context);return n.detectChanges(),n.rootNodes.forEach(e=>this.outletElement.appendChild(e)),this.setDisposeFn(()=>{let e=t.indexOf(n);-1!==e&&t.remove(e)}),n}dispose(){super.dispose(),null!=this.outletElement.parentNode&&this.outletElement.parentNode.removeChild(this.outletElement)}_getComponentRootNode(e){return e.hostView.rootNodes[0]}}let fv=(()=>{class e extends mv{constructor(e,t,n){super(),this._componentFactoryResolver=e,this._viewContainerRef=t,this._isInitialized=!1,this.attached=new yc,this.attachDomPortal=e=>{if(!this._document)throw Error(\"Cannot attach DOM portal without _document constructor parameter\");const t=e.element;if(!t.parentNode)throw Error(\"DOM portal content must be attached to a parent node.\");const n=this._document.createComment(\"dom-portal\");e.setAttachedHost(this),t.parentNode.insertBefore(n,t),this._getRootNode().appendChild(t),super.setDisposeFn(()=>{n.parentNode&&n.parentNode.replaceChild(t,n)})},this._document=n}get portal(){return this._attachedPortal}set portal(e){(!this.hasAttached()||e||this._isInitialized)&&(this.hasAttached()&&super.detach(),e&&super.attach(e),this._attachedPortal=e)}get attachedRef(){return this._attachedRef}ngOnInit(){this._isInitialized=!0}ngOnDestroy(){super.dispose(),this._attachedPortal=null,this._attachedRef=null}attachComponentPortal(e){e.setAttachedHost(this);const t=null!=e.viewContainerRef?e.viewContainerRef:this._viewContainerRef,n=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component),i=t.createComponent(n,t.length,e.injector||t.injector);return t!==this._viewContainerRef&&this._getRootNode().appendChild(i.hostView.rootNodes[0]),super.setDisposeFn(()=>i.destroy()),this._attachedPortal=e,this._attachedRef=i,this.attached.emit(i),i}attachTemplatePortal(e){e.setAttachedHost(this);const t=this._viewContainerRef.createEmbeddedView(e.templateRef,e.context);return super.setDisposeFn(()=>this._viewContainerRef.clear()),this._attachedPortal=e,this._attachedRef=t,this.attached.emit(t),t}_getRootNode(){const e=this._viewContainerRef.element.nativeElement;return e.nodeType===e.ELEMENT_NODE?e:e.parentNode}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ja),Eo(Ml),Eo(Nd))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdkPortalOutlet\",\"\"]],inputs:{portal:[\"cdkPortalOutlet\",\"portal\"]},outputs:{attached:\"attached\"},exportAs:[\"cdkPortalOutlet\"],features:[Ya]}),e})(),_v=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();class gv{constructor(e,t){this._viewportRuler=e,this._previousHTMLStyles={top:\"\",left:\"\"},this._isEnabled=!1,this._document=t}attach(){}enable(){if(this._canBeEnabled()){const e=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=e.style.left||\"\",this._previousHTMLStyles.top=e.style.top||\"\",e.style.left=fp(-this._previousScrollPosition.left),e.style.top=fp(-this._previousScrollPosition.top),e.classList.add(\"cdk-global-scrollblock\"),this._isEnabled=!0}}disable(){if(this._isEnabled){const e=this._document.documentElement,t=e.style,n=this._document.body.style,i=t.scrollBehavior||\"\",s=n.scrollBehavior||\"\";this._isEnabled=!1,t.left=this._previousHTMLStyles.left,t.top=this._previousHTMLStyles.top,e.classList.remove(\"cdk-global-scrollblock\"),t.scrollBehavior=n.scrollBehavior=\"auto\",window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),t.scrollBehavior=i,n.scrollBehavior=s}}_canBeEnabled(){if(this._document.documentElement.classList.contains(\"cdk-global-scrollblock\")||this._isEnabled)return!1;const e=this._document.body,t=this._viewportRuler.getViewportSize();return e.scrollHeight>t.height||e.scrollWidth>t.width}}function yv(){return Error(\"Scroll strategy has already been attached.\")}class bv{constructor(e,t,n,i){this._scrollDispatcher=e,this._ngZone=t,this._viewportRuler=n,this._config=i,this._scrollSubscription=null,this._detach=()=>{this.disable(),this._overlayRef.hasAttached()&&this._ngZone.run(()=>this._overlayRef.detach())}}attach(e){if(this._overlayRef)throw yv();this._overlayRef=e}enable(){if(this._scrollSubscription)return;const e=this._scrollDispatcher.scrolled(0);this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=e.subscribe(()=>{const e=this._viewportRuler.getViewportScrollPosition().top;Math.abs(e-this._initialScrollPosition)>this._config.threshold?this._detach():this._overlayRef.updatePosition()})):this._scrollSubscription=e.subscribe(this._detach)}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}class vv{enable(){}disable(){}attach(){}}function wv(e,t){return t.some(t=>e.bottomt.bottom||e.rightt.right)}function Mv(e,t){return t.some(t=>e.topt.bottom||e.leftt.right)}class kv{constructor(e,t,n,i){this._scrollDispatcher=e,this._viewportRuler=t,this._ngZone=n,this._config=i,this._scrollSubscription=null}attach(e){if(this._overlayRef)throw yv();this._overlayRef=e}enable(){this._scrollSubscription||(this._scrollSubscription=this._scrollDispatcher.scrolled(this._config?this._config.scrollThrottle:0).subscribe(()=>{if(this._overlayRef.updatePosition(),this._config&&this._config.autoClose){const e=this._overlayRef.overlayElement.getBoundingClientRect(),{width:t,height:n}=this._viewportRuler.getViewportSize();wv(e,[{width:t,height:n,bottom:n,right:t,top:0,left:0}])&&(this.disable(),this._ngZone.run(()=>this._overlayRef.detach()))}}))}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}let Sv=(()=>{class e{constructor(e,t,n,i){this._scrollDispatcher=e,this._viewportRuler=t,this._ngZone=n,this.noop=()=>new vv,this.close=e=>new bv(this._scrollDispatcher,this._ngZone,this._viewportRuler,e),this.block=()=>new gv(this._viewportRuler,this._document),this.reposition=e=>new kv(this._scrollDispatcher,this._viewportRuler,this._ngZone,e),this._document=i}}return e.\\u0275fac=function(t){return new(t||e)(Qe(sv),Qe(ov),Qe(ld),Qe(Nd))},e.\\u0275prov=pe({factory:function(){return new e(Qe(sv),Qe(ov),Qe(ld),Qe(Nd))},token:e,providedIn:\"root\"}),e})();class Lv{constructor(e){if(this.scrollStrategy=new vv,this.panelClass=\"\",this.hasBackdrop=!1,this.backdropClass=\"cdk-overlay-dark-backdrop\",this.disposeOnNavigation=!1,e){const t=Object.keys(e);for(const n of t)void 0!==e[n]&&(this[n]=e[n])}}}class xv{constructor(e,t,n,i,s){this.offsetX=n,this.offsetY=i,this.panelClass=s,this.originX=e.originX,this.originY=e.originY,this.overlayX=t.overlayX,this.overlayY=t.overlayY}}class Cv{constructor(e,t){this.connectionPair=e,this.scrollableViewProperties=t}}function Tv(e,t){if(\"top\"!==t&&\"bottom\"!==t&&\"center\"!==t)throw Error(`ConnectedPosition: Invalid ${e} \"${t}\". `+'Expected \"top\", \"bottom\" or \"center\".')}function Dv(e,t){if(\"start\"!==t&&\"end\"!==t&&\"center\"!==t)throw Error(`ConnectedPosition: Invalid ${e} \"${t}\". `+'Expected \"start\", \"end\" or \"center\".')}let Yv=(()=>{class e{constructor(e){this._attachedOverlays=[],this._keydownListener=e=>{const t=this._attachedOverlays;for(let n=t.length-1;n>-1;n--)if(t[n]._keydownEventSubscriptions>0){t[n]._keydownEvents.next(e);break}},this._document=e}ngOnDestroy(){this._detach()}add(e){this.remove(e),this._isAttached||(this._document.body.addEventListener(\"keydown\",this._keydownListener),this._isAttached=!0),this._attachedOverlays.push(e)}remove(e){const t=this._attachedOverlays.indexOf(e);t>-1&&this._attachedOverlays.splice(t,1),0===this._attachedOverlays.length&&this._detach()}_detach(){this._isAttached&&(this._document.body.removeEventListener(\"keydown\",this._keydownListener),this._isAttached=!1)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({factory:function(){return new e(Qe(Nd))},token:e,providedIn:\"root\"}),e})();const Ev=!(\"undefined\"==typeof window||!window||!window.__karma__&&!window.jasmine);let Ov=(()=>{class e{constructor(e,t){this._platform=t,this._document=e}ngOnDestroy(){const e=this._containerElement;e&&e.parentNode&&e.parentNode.removeChild(e)}getContainerElement(){return this._containerElement||this._createContainer(),this._containerElement}_createContainer(){const e=this._platform?this._platform.isBrowser:\"undefined\"!=typeof window;if(e||Ev){const e=this._document.querySelectorAll('.cdk-overlay-container[platform=\"server\"], .cdk-overlay-container[platform=\"test\"]');for(let t=0;tthis._backdropClick.next(e),this._keydownEventsObservable=new v(e=>{const t=this._keydownEvents.subscribe(e);return this._keydownEventSubscriptions++,()=>{t.unsubscribe(),this._keydownEventSubscriptions--}}),this._keydownEvents=new L,this._keydownEventSubscriptions=0,i.scrollStrategy&&(this._scrollStrategy=i.scrollStrategy,this._scrollStrategy.attach(this)),this._positionStrategy=i.positionStrategy}get overlayElement(){return this._pane}get backdropElement(){return this._backdropElement}get hostElement(){return this._host}attach(e){let t=this._portalOutlet.attach(e);return this._positionStrategy&&this._positionStrategy.attach(this),!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._scrollStrategy&&this._scrollStrategy.enable(),this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(()=>{this.hasAttached()&&this.updatePosition()}),this._togglePointerEvents(!0),this._config.hasBackdrop&&this._attachBackdrop(),this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!0),this._attachments.next(),this._keyboardDispatcher.add(this),this._config.disposeOnNavigation&&this._location&&(this._locationChanges=this._location.subscribe(()=>this.dispose())),t}detach(){if(!this.hasAttached())return;this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._scrollStrategy&&this._scrollStrategy.disable();const e=this._portalOutlet.detach();return this._detachments.next(),this._keyboardDispatcher.remove(this),this._detachContentWhenStable(),this._locationChanges.unsubscribe(),e}dispose(){const e=this.hasAttached();this._positionStrategy&&this._positionStrategy.dispose(),this._disposeScrollStrategy(),this.detachBackdrop(),this._locationChanges.unsubscribe(),this._keyboardDispatcher.remove(this),this._portalOutlet.dispose(),this._attachments.complete(),this._backdropClick.complete(),this._keydownEvents.complete(),this._host&&this._host.parentNode&&(this._host.parentNode.removeChild(this._host),this._host=null),this._previousHostParent=this._pane=null,e&&this._detachments.next(),this._detachments.complete()}hasAttached(){return this._portalOutlet.hasAttached()}backdropClick(){return this._backdropClick.asObservable()}attachments(){return this._attachments.asObservable()}detachments(){return this._detachments.asObservable()}keydownEvents(){return this._keydownEventsObservable}getConfig(){return this._config}updatePosition(){this._positionStrategy&&this._positionStrategy.apply()}updatePositionStrategy(e){e!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=e,this.hasAttached()&&(e.attach(this),this.updatePosition()))}updateSize(e){this._config=Object.assign(Object.assign({},this._config),e),this._updateElementSize()}setDirection(e){this._config=Object.assign(Object.assign({},this._config),{direction:e}),this._updateElementDirection()}addPanelClass(e){this._pane&&this._toggleClasses(this._pane,e,!0)}removePanelClass(e){this._pane&&this._toggleClasses(this._pane,e,!1)}getDirection(){const e=this._config.direction;return e?\"string\"==typeof e?e:e.value:\"ltr\"}updateScrollStrategy(e){e!==this._scrollStrategy&&(this._disposeScrollStrategy(),this._scrollStrategy=e,this.hasAttached()&&(e.attach(this),e.enable()))}_updateElementDirection(){this._host.setAttribute(\"dir\",this.getDirection())}_updateElementSize(){if(!this._pane)return;const e=this._pane.style;e.width=fp(this._config.width),e.height=fp(this._config.height),e.minWidth=fp(this._config.minWidth),e.minHeight=fp(this._config.minHeight),e.maxWidth=fp(this._config.maxWidth),e.maxHeight=fp(this._config.maxHeight)}_togglePointerEvents(e){this._pane.style.pointerEvents=e?\"auto\":\"none\"}_attachBackdrop(){this._backdropElement=this._document.createElement(\"div\"),this._backdropElement.classList.add(\"cdk-overlay-backdrop\"),this._config.backdropClass&&this._toggleClasses(this._backdropElement,this._config.backdropClass,!0),this._host.parentElement.insertBefore(this._backdropElement,this._host),this._backdropElement.addEventListener(\"click\",this._backdropClickHandler),\"undefined\"!=typeof requestAnimationFrame?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{this._backdropElement&&this._backdropElement.classList.add(\"cdk-overlay-backdrop-showing\")})}):this._backdropElement.classList.add(\"cdk-overlay-backdrop-showing\")}_updateStackingOrder(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)}detachBackdrop(){let e,t=this._backdropElement;if(!t)return;let n=()=>{t&&(t.removeEventListener(\"click\",this._backdropClickHandler),t.removeEventListener(\"transitionend\",n),t.parentNode&&t.parentNode.removeChild(t)),this._backdropElement==t&&(this._backdropElement=null),this._config.backdropClass&&this._toggleClasses(t,this._config.backdropClass,!1),clearTimeout(e)};t.classList.remove(\"cdk-overlay-backdrop-showing\"),this._ngZone.runOutsideAngular(()=>{t.addEventListener(\"transitionend\",n)}),t.style.pointerEvents=\"none\",e=this._ngZone.runOutsideAngular(()=>setTimeout(n,500))}_toggleClasses(e,t,n){const i=e.classList;pp(t).forEach(e=>{e&&(n?i.add(e):i.remove(e))})}_detachContentWhenStable(){this._ngZone.runOutsideAngular(()=>{const e=this._ngZone.onStable.asObservable().pipe(Nb(G(this._attachments,this._detachments))).subscribe(()=>{this._pane&&this._host&&0!==this._pane.children.length||(this._pane&&this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!1),this._host&&this._host.parentElement&&(this._previousHostParent=this._host.parentElement,this._previousHostParent.removeChild(this._host)),e.unsubscribe())})})}_disposeScrollStrategy(){const e=this._scrollStrategy;e&&(e.disable(),e.detach&&e.detach())}}class Pv{constructor(e,t,n,i,s){this._viewportRuler=t,this._document=n,this._platform=i,this._overlayContainer=s,this._lastBoundingBoxSize={width:0,height:0},this._isPushed=!1,this._canPush=!0,this._growAfterOpen=!1,this._hasFlexibleDimensions=!0,this._positionLocked=!1,this._viewportMargin=0,this._scrollables=[],this._preferredPositions=[],this._positionChanges=new L,this._resizeSubscription=u.EMPTY,this._offsetX=0,this._offsetY=0,this._appliedPanelClasses=[],this.positionChanges=this._positionChanges.asObservable(),this.setOrigin(e)}get positions(){return this._preferredPositions}attach(e){if(this._overlayRef&&e!==this._overlayRef)throw Error(\"This position strategy is already attached to an overlay\");this._validatePositions(),e.hostElement.classList.add(\"cdk-overlay-connected-position-bounding-box\"),this._overlayRef=e,this._boundingBox=e.hostElement,this._pane=e.overlayElement,this._isDisposed=!1,this._isInitialRender=!0,this._lastPosition=null,this._resizeSubscription.unsubscribe(),this._resizeSubscription=this._viewportRuler.change().subscribe(()=>{this._isInitialRender=!0,this.apply()})}apply(){if(this._isDisposed||!this._platform.isBrowser)return;if(!this._isInitialRender&&this._positionLocked&&this._lastPosition)return void this.reapplyLastPosition();this._clearPanelClasses(),this._resetOverlayElementStyles(),this._resetBoundingBoxStyles(),this._viewportRect=this._getNarrowedViewportRect(),this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect();const e=this._originRect,t=this._overlayRect,n=this._viewportRect,i=[];let s;for(let r of this._preferredPositions){let o=this._getOriginPoint(e,r),a=this._getOverlayPoint(o,t,r),l=this._getOverlayFit(a,t,n,r);if(l.isCompletelyWithinViewport)return this._isPushed=!1,void this._applyPosition(r,o);this._canFitWithFlexibleDimensions(l,a,n)?i.push({position:r,origin:o,overlayRect:t,boundingBoxRect:this._calculateBoundingBoxRect(o,r)}):(!s||s.overlayFit.visibleAreat&&(t=i,e=n)}return this._isPushed=!1,void this._applyPosition(e.position,e.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(s.position,s.originPoint);this._applyPosition(s.position,s.originPoint)}detach(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}dispose(){this._isDisposed||(this._boundingBox&&Av(this._boundingBox.style,{top:\"\",left:\"\",right:\"\",bottom:\"\",height:\"\",width:\"\",alignItems:\"\",justifyContent:\"\"}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(\"cdk-overlay-connected-position-bounding-box\"),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}reapplyLastPosition(){if(!this._isDisposed&&(!this._platform||this._platform.isBrowser)){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect();const e=this._lastPosition||this._preferredPositions[0],t=this._getOriginPoint(this._originRect,e);this._applyPosition(e,t)}}withScrollableContainers(e){return this._scrollables=e,this}withPositions(e){return this._preferredPositions=e,-1===e.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}withViewportMargin(e){return this._viewportMargin=e,this}withFlexibleDimensions(e=!0){return this._hasFlexibleDimensions=e,this}withGrowAfterOpen(e=!0){return this._growAfterOpen=e,this}withPush(e=!0){return this._canPush=e,this}withLockedPosition(e=!0){return this._positionLocked=e,this}setOrigin(e){return this._origin=e,this}withDefaultOffsetX(e){return this._offsetX=e,this}withDefaultOffsetY(e){return this._offsetY=e,this}withTransformOriginOn(e){return this._transformOriginSelector=e,this}_getOriginPoint(e,t){let n,i;if(\"center\"==t.originX)n=e.left+e.width/2;else{const i=this._isRtl()?e.right:e.left,s=this._isRtl()?e.left:e.right;n=\"start\"==t.originX?i:s}return i=\"center\"==t.originY?e.top+e.height/2:\"top\"==t.originY?e.top:e.bottom,{x:n,y:i}}_getOverlayPoint(e,t,n){let i,s;return i=\"center\"==n.overlayX?-t.width/2:\"start\"===n.overlayX?this._isRtl()?-t.width:0:this._isRtl()?0:-t.width,s=\"center\"==n.overlayY?-t.height/2:\"top\"==n.overlayY?0:-t.height,{x:e.x+i,y:e.y+s}}_getOverlayFit(e,t,n,i){let{x:s,y:r}=e,o=this._getOffset(i,\"x\"),a=this._getOffset(i,\"y\");o&&(s+=o),a&&(r+=a);let l=0-r,c=r+t.height-n.height,d=this._subtractOverflows(t.width,0-s,s+t.width-n.width),u=this._subtractOverflows(t.height,l,c),h=d*u;return{visibleArea:h,isCompletelyWithinViewport:t.width*t.height===h,fitsInViewportVertically:u===t.height,fitsInViewportHorizontally:d==t.width}}_canFitWithFlexibleDimensions(e,t,n){if(this._hasFlexibleDimensions){const i=n.bottom-t.y,s=n.right-t.x,r=this._overlayRef.getConfig().minHeight,o=this._overlayRef.getConfig().minWidth,a=e.fitsInViewportHorizontally||null!=o&&o<=s;return(e.fitsInViewportVertically||null!=r&&r<=i)&&a}return!1}_pushOverlayOnScreen(e,t,n){if(this._previousPushAmount&&this._positionLocked)return{x:e.x+this._previousPushAmount.x,y:e.y+this._previousPushAmount.y};const i=this._viewportRect,s=Math.max(e.x+t.width-i.right,0),r=Math.max(e.y+t.height-i.bottom,0),o=Math.max(i.top-n.top-e.y,0),a=Math.max(i.left-n.left-e.x,0);let l=0,c=0;return l=t.width<=i.width?a||-s:e.xi&&!this._isInitialRender&&!this._growAfterOpen&&(r=e.y-i/2)}if(\"end\"===t.overlayX&&!i||\"start\"===t.overlayX&&i)c=n.width-e.x+this._viewportMargin,a=e.x-this._viewportMargin;else if(\"start\"===t.overlayX&&!i||\"end\"===t.overlayX&&i)l=e.x,a=n.right-e.x;else{const t=Math.min(n.right-e.x+n.left,e.x),i=this._lastBoundingBoxSize.width;a=2*t,l=e.x-t,a>i&&!this._isInitialRender&&!this._growAfterOpen&&(l=e.x-i/2)}return{top:r,left:l,bottom:o,right:c,width:a,height:s}}_setBoundingBoxStyles(e,t){const n=this._calculateBoundingBoxRect(e,t);this._isInitialRender||this._growAfterOpen||(n.height=Math.min(n.height,this._lastBoundingBoxSize.height),n.width=Math.min(n.width,this._lastBoundingBoxSize.width));const i={};if(this._hasExactPosition())i.top=i.left=\"0\",i.bottom=i.right=i.maxHeight=i.maxWidth=\"\",i.width=i.height=\"100%\";else{const e=this._overlayRef.getConfig().maxHeight,s=this._overlayRef.getConfig().maxWidth;i.height=fp(n.height),i.top=fp(n.top),i.bottom=fp(n.bottom),i.width=fp(n.width),i.left=fp(n.left),i.right=fp(n.right),i.alignItems=\"center\"===t.overlayX?\"center\":\"end\"===t.overlayX?\"flex-end\":\"flex-start\",i.justifyContent=\"center\"===t.overlayY?\"center\":\"bottom\"===t.overlayY?\"flex-end\":\"flex-start\",e&&(i.maxHeight=fp(e)),s&&(i.maxWidth=fp(s))}this._lastBoundingBoxSize=n,Av(this._boundingBox.style,i)}_resetBoundingBoxStyles(){Av(this._boundingBox.style,{top:\"0\",left:\"0\",right:\"0\",bottom:\"0\",height:\"\",width:\"\",alignItems:\"\",justifyContent:\"\"})}_resetOverlayElementStyles(){Av(this._pane.style,{top:\"\",left:\"\",bottom:\"\",right:\"\",position:\"\",transform:\"\"})}_setOverlayElementStyles(e,t){const n={},i=this._hasExactPosition(),s=this._hasFlexibleDimensions,r=this._overlayRef.getConfig();if(i){const i=this._viewportRuler.getViewportScrollPosition();Av(n,this._getExactOverlayY(t,e,i)),Av(n,this._getExactOverlayX(t,e,i))}else n.position=\"static\";let o=\"\",a=this._getOffset(t,\"x\"),l=this._getOffset(t,\"y\");a&&(o+=`translateX(${a}px) `),l&&(o+=`translateY(${l}px)`),n.transform=o.trim(),r.maxHeight&&(i?n.maxHeight=fp(r.maxHeight):s&&(n.maxHeight=\"\")),r.maxWidth&&(i?n.maxWidth=fp(r.maxWidth):s&&(n.maxWidth=\"\")),Av(this._pane.style,n)}_getExactOverlayY(e,t,n){let i={top:\"\",bottom:\"\"},s=this._getOverlayPoint(t,this._overlayRect,e);this._isPushed&&(s=this._pushOverlayOnScreen(s,this._overlayRect,n));let r=this._overlayContainer.getContainerElement().getBoundingClientRect().top;return s.y-=r,\"bottom\"===e.overlayY?i.bottom=`${this._document.documentElement.clientHeight-(s.y+this._overlayRect.height)}px`:i.top=fp(s.y),i}_getExactOverlayX(e,t,n){let i,s={left:\"\",right:\"\"},r=this._getOverlayPoint(t,this._overlayRect,e);return this._isPushed&&(r=this._pushOverlayOnScreen(r,this._overlayRect,n)),i=this._isRtl()?\"end\"===e.overlayX?\"left\":\"right\":\"end\"===e.overlayX?\"right\":\"left\",\"right\"===i?s.right=`${this._document.documentElement.clientWidth-(r.x+this._overlayRect.width)}px`:s.left=fp(r.x),s}_getScrollVisibility(){const e=this._getOriginRect(),t=this._pane.getBoundingClientRect(),n=this._scrollables.map(e=>e.getElementRef().nativeElement.getBoundingClientRect());return{isOriginClipped:Mv(e,n),isOriginOutsideView:wv(e,n),isOverlayClipped:Mv(t,n),isOverlayOutsideView:wv(t,n)}}_subtractOverflows(e,...t){return t.reduce((e,t)=>e-Math.max(t,0),e)}_getNarrowedViewportRect(){const e=this._document.documentElement.clientWidth,t=this._document.documentElement.clientHeight,n=this._viewportRuler.getViewportScrollPosition();return{top:n.top+this._viewportMargin,left:n.left+this._viewportMargin,right:n.left+e-this._viewportMargin,bottom:n.top+t-this._viewportMargin,width:e-2*this._viewportMargin,height:t-2*this._viewportMargin}}_isRtl(){return\"rtl\"===this._overlayRef.getDirection()}_hasExactPosition(){return!this._hasFlexibleDimensions||this._isPushed}_getOffset(e,t){return\"x\"===t?null==e.offsetX?this._offsetX:e.offsetX:null==e.offsetY?this._offsetY:e.offsetY}_validatePositions(){if(!this._preferredPositions.length)throw Error(\"FlexibleConnectedPositionStrategy: At least one position is required.\");this._preferredPositions.forEach(e=>{Dv(\"originX\",e.originX),Tv(\"originY\",e.originY),Dv(\"overlayX\",e.overlayX),Tv(\"overlayY\",e.overlayY)})}_addPanelClasses(e){this._pane&&pp(e).forEach(e=>{\"\"!==e&&-1===this._appliedPanelClasses.indexOf(e)&&(this._appliedPanelClasses.push(e),this._pane.classList.add(e))})}_clearPanelClasses(){this._pane&&(this._appliedPanelClasses.forEach(e=>{this._pane.classList.remove(e)}),this._appliedPanelClasses=[])}_getOriginRect(){const e=this._origin;if(e instanceof Ka)return e.nativeElement.getBoundingClientRect();if(e instanceof HTMLElement)return e.getBoundingClientRect();const t=e.width||0,n=e.height||0;return{top:e.y,bottom:e.y+n,left:e.x,right:e.x+t,height:n,width:t}}}function Av(e,t){for(let n in t)t.hasOwnProperty(n)&&(e[n]=t[n]);return e}class Rv{constructor(e,t,n,i,s,r,o){this._preferredPositions=[],this._positionStrategy=new Pv(n,i,s,r,o).withFlexibleDimensions(!1).withPush(!1).withViewportMargin(0),this.withFallbackPosition(e,t)}get _isRtl(){return\"rtl\"===this._overlayRef.getDirection()}get onPositionChange(){return this._positionStrategy.positionChanges}get positions(){return this._preferredPositions}attach(e){this._overlayRef=e,this._positionStrategy.attach(e),this._direction&&(e.setDirection(this._direction),this._direction=null)}dispose(){this._positionStrategy.dispose()}detach(){this._positionStrategy.detach()}apply(){this._positionStrategy.apply()}recalculateLastPosition(){this._positionStrategy.reapplyLastPosition()}withScrollableContainers(e){this._positionStrategy.withScrollableContainers(e)}withFallbackPosition(e,t,n,i){const s=new xv(e,t,n,i);return this._preferredPositions.push(s),this._positionStrategy.withPositions(this._preferredPositions),this}withDirection(e){return this._overlayRef?this._overlayRef.setDirection(e):this._direction=e,this}withOffsetX(e){return this._positionStrategy.withDefaultOffsetX(e),this}withOffsetY(e){return this._positionStrategy.withDefaultOffsetY(e),this}withLockedPosition(e){return this._positionStrategy.withLockedPosition(e),this}withPositions(e){return this._preferredPositions=e.slice(),this._positionStrategy.withPositions(this._preferredPositions),this}setOrigin(e){return this._positionStrategy.setOrigin(e),this}}class Hv{constructor(){this._cssPosition=\"static\",this._topOffset=\"\",this._bottomOffset=\"\",this._leftOffset=\"\",this._rightOffset=\"\",this._alignItems=\"\",this._justifyContent=\"\",this._width=\"\",this._height=\"\"}attach(e){const t=e.getConfig();this._overlayRef=e,this._width&&!t.width&&e.updateSize({width:this._width}),this._height&&!t.height&&e.updateSize({height:this._height}),e.hostElement.classList.add(\"cdk-global-overlay-wrapper\"),this._isDisposed=!1}top(e=\"\"){return this._bottomOffset=\"\",this._topOffset=e,this._alignItems=\"flex-start\",this}left(e=\"\"){return this._rightOffset=\"\",this._leftOffset=e,this._justifyContent=\"flex-start\",this}bottom(e=\"\"){return this._topOffset=\"\",this._bottomOffset=e,this._alignItems=\"flex-end\",this}right(e=\"\"){return this._leftOffset=\"\",this._rightOffset=e,this._justifyContent=\"flex-end\",this}width(e=\"\"){return this._overlayRef?this._overlayRef.updateSize({width:e}):this._width=e,this}height(e=\"\"){return this._overlayRef?this._overlayRef.updateSize({height:e}):this._height=e,this}centerHorizontally(e=\"\"){return this.left(e),this._justifyContent=\"center\",this}centerVertically(e=\"\"){return this.top(e),this._alignItems=\"center\",this}apply(){if(!this._overlayRef||!this._overlayRef.hasAttached())return;const e=this._overlayRef.overlayElement.style,t=this._overlayRef.hostElement.style,n=this._overlayRef.getConfig(),{width:i,height:s,maxWidth:r,maxHeight:o}=n,a=!(\"100%\"!==i&&\"100vw\"!==i||r&&\"100%\"!==r&&\"100vw\"!==r),l=!(\"100%\"!==s&&\"100vh\"!==s||o&&\"100%\"!==o&&\"100vh\"!==o);e.position=this._cssPosition,e.marginLeft=a?\"0\":this._leftOffset,e.marginTop=l?\"0\":this._topOffset,e.marginBottom=this._bottomOffset,e.marginRight=this._rightOffset,a?t.justifyContent=\"flex-start\":\"center\"===this._justifyContent?t.justifyContent=\"center\":\"rtl\"===this._overlayRef.getConfig().direction?\"flex-start\"===this._justifyContent?t.justifyContent=\"flex-end\":\"flex-end\"===this._justifyContent&&(t.justifyContent=\"flex-start\"):t.justifyContent=this._justifyContent,t.alignItems=l?\"flex-start\":this._alignItems}dispose(){if(this._isDisposed||!this._overlayRef)return;const e=this._overlayRef.overlayElement.style,t=this._overlayRef.hostElement,n=t.style;t.classList.remove(\"cdk-global-overlay-wrapper\"),n.justifyContent=n.alignItems=e.marginTop=e.marginBottom=e.marginLeft=e.marginRight=e.position=\"\",this._overlayRef=null,this._isDisposed=!0}}let jv=(()=>{class e{constructor(e,t,n,i){this._viewportRuler=e,this._document=t,this._platform=n,this._overlayContainer=i}global(){return new Hv}connectedTo(e,t,n){return new Rv(t,n,e,this._viewportRuler,this._document,this._platform,this._overlayContainer)}flexibleConnectedTo(e){return new Pv(e,this._viewportRuler,this._document,this._platform,this._overlayContainer)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ov),Qe(Nd),Qe(bp),Qe(Ov))},e.\\u0275prov=pe({factory:function(){return new e(Qe(ov),Qe(Nd),Qe(bp),Qe(Ov))},token:e,providedIn:\"root\"}),e})(),Fv=0,Nv=(()=>{class e{constructor(e,t,n,i,s,r,o,a,l,c){this.scrollStrategies=e,this._overlayContainer=t,this._componentFactoryResolver=n,this._positionBuilder=i,this._keyboardDispatcher=s,this._injector=r,this._ngZone=o,this._document=a,this._directionality=l,this._location=c}create(e){const t=this._createHostElement(),n=this._createPaneElement(t),i=this._createPortalOutlet(n),s=new Lv(e);return s.direction=s.direction||this._directionality.value,new Iv(i,t,n,s,this._ngZone,this._keyboardDispatcher,this._document,this._location)}position(){return this._positionBuilder}_createPaneElement(e){const t=this._document.createElement(\"div\");return t.id=`cdk-overlay-${Fv++}`,t.classList.add(\"cdk-overlay-pane\"),e.appendChild(t),t}_createHostElement(){const e=this._document.createElement(\"div\");return this._overlayContainer.getContainerElement().appendChild(e),e}_createPortalOutlet(e){return this._appRef||(this._appRef=this._injector.get(Td)),new pv(e,this._componentFactoryResolver,this._appRef,this._injector,this._document)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Sv),Qe(Ov),Qe(Ja),Qe(jv),Qe(Yv),Qe(fo),Qe(ld),Qe(Nd),Qe(Gp),Qe(tu,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const zv=[{originX:\"start\",originY:\"bottom\",overlayX:\"start\",overlayY:\"top\"},{originX:\"start\",originY:\"top\",overlayX:\"start\",overlayY:\"bottom\"},{originX:\"end\",originY:\"top\",overlayX:\"end\",overlayY:\"bottom\"},{originX:\"end\",originY:\"bottom\",overlayX:\"end\",overlayY:\"top\"}],Vv=new Ve(\"cdk-connected-overlay-scroll-strategy\");let Wv=(()=>{class e{constructor(e){this.elementRef=e}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdk-overlay-origin\",\"\"],[\"\",\"overlay-origin\",\"\"],[\"\",\"cdkOverlayOrigin\",\"\"]],exportAs:[\"cdkOverlayOrigin\"]}),e})(),Uv=(()=>{class e{constructor(e,t,n,i,s){this._overlay=e,this._dir=s,this._hasBackdrop=!1,this._lockPosition=!1,this._growAfterOpen=!1,this._flexibleDimensions=!1,this._push=!1,this._backdropSubscription=u.EMPTY,this.viewportMargin=0,this.open=!1,this.backdropClick=new yc,this.positionChange=new yc,this.attach=new yc,this.detach=new yc,this.overlayKeydown=new yc,this._templatePortal=new uv(t,n),this._scrollStrategyFactory=i,this.scrollStrategy=this._scrollStrategyFactory()}get offsetX(){return this._offsetX}set offsetX(e){this._offsetX=e,this._position&&this._updatePositionStrategy(this._position)}get offsetY(){return this._offsetY}set offsetY(e){this._offsetY=e,this._position&&this._updatePositionStrategy(this._position)}get hasBackdrop(){return this._hasBackdrop}set hasBackdrop(e){this._hasBackdrop=hp(e)}get lockPosition(){return this._lockPosition}set lockPosition(e){this._lockPosition=hp(e)}get flexibleDimensions(){return this._flexibleDimensions}set flexibleDimensions(e){this._flexibleDimensions=hp(e)}get growAfterOpen(){return this._growAfterOpen}set growAfterOpen(e){this._growAfterOpen=hp(e)}get push(){return this._push}set push(e){this._push=hp(e)}get overlayRef(){return this._overlayRef}get dir(){return this._dir?this._dir.value:\"ltr\"}ngOnDestroy(){this._overlayRef&&this._overlayRef.dispose(),this._backdropSubscription.unsubscribe()}ngOnChanges(e){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),e.origin&&this.open&&this._position.apply()),e.open&&(this.open?this._attachOverlay():this._detachOverlay())}_createOverlay(){this.positions&&this.positions.length||(this.positions=zv),this._overlayRef=this._overlay.create(this._buildConfig()),this._overlayRef.keydownEvents().subscribe(e=>{this.overlayKeydown.next(e),27!==e.keyCode||qm(e)||(e.preventDefault(),this._detachOverlay())})}_buildConfig(){const e=this._position=this.positionStrategy||this._createPositionStrategy(),t=new Lv({direction:this._dir,positionStrategy:e,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop});return(this.width||0===this.width)&&(t.width=this.width),(this.height||0===this.height)&&(t.height=this.height),(this.minWidth||0===this.minWidth)&&(t.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(t.minHeight=this.minHeight),this.backdropClass&&(t.backdropClass=this.backdropClass),this.panelClass&&(t.panelClass=this.panelClass),t}_updatePositionStrategy(e){const t=this.positions.map(e=>({originX:e.originX,originY:e.originY,overlayX:e.overlayX,overlayY:e.overlayY,offsetX:e.offsetX||this.offsetX,offsetY:e.offsetY||this.offsetY,panelClass:e.panelClass||void 0}));return e.setOrigin(this.origin.elementRef).withPositions(t).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}_createPositionStrategy(){const e=this._overlay.position().flexibleConnectedTo(this.origin.elementRef);return this._updatePositionStrategy(e),e.positionChanges.subscribe(e=>this.positionChange.emit(e)),e}_attachOverlay(){this._overlayRef?this._overlayRef.getConfig().hasBackdrop=this.hasBackdrop:this._createOverlay(),this._overlayRef.hasAttached()||(this._overlayRef.attach(this._templatePortal),this.attach.emit()),this.hasBackdrop?this._backdropSubscription=this._overlayRef.backdropClick().subscribe(e=>{this.backdropClick.emit(e)}):this._backdropSubscription.unsubscribe()}_detachOverlay(){this._overlayRef&&(this._overlayRef.detach(),this.detach.emit()),this._backdropSubscription.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Nv),Eo(vl),Eo(Ml),Eo(Vv),Eo(Gp,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdk-connected-overlay\",\"\"],[\"\",\"connected-overlay\",\"\"],[\"\",\"cdkConnectedOverlay\",\"\"]],inputs:{viewportMargin:[\"cdkConnectedOverlayViewportMargin\",\"viewportMargin\"],open:[\"cdkConnectedOverlayOpen\",\"open\"],scrollStrategy:[\"cdkConnectedOverlayScrollStrategy\",\"scrollStrategy\"],offsetX:[\"cdkConnectedOverlayOffsetX\",\"offsetX\"],offsetY:[\"cdkConnectedOverlayOffsetY\",\"offsetY\"],hasBackdrop:[\"cdkConnectedOverlayHasBackdrop\",\"hasBackdrop\"],lockPosition:[\"cdkConnectedOverlayLockPosition\",\"lockPosition\"],flexibleDimensions:[\"cdkConnectedOverlayFlexibleDimensions\",\"flexibleDimensions\"],growAfterOpen:[\"cdkConnectedOverlayGrowAfterOpen\",\"growAfterOpen\"],push:[\"cdkConnectedOverlayPush\",\"push\"],positions:[\"cdkConnectedOverlayPositions\",\"positions\"],origin:[\"cdkConnectedOverlayOrigin\",\"origin\"],positionStrategy:[\"cdkConnectedOverlayPositionStrategy\",\"positionStrategy\"],width:[\"cdkConnectedOverlayWidth\",\"width\"],height:[\"cdkConnectedOverlayHeight\",\"height\"],minWidth:[\"cdkConnectedOverlayMinWidth\",\"minWidth\"],minHeight:[\"cdkConnectedOverlayMinHeight\",\"minHeight\"],backdropClass:[\"cdkConnectedOverlayBackdropClass\",\"backdropClass\"],panelClass:[\"cdkConnectedOverlayPanelClass\",\"panelClass\"],transformOriginSelector:[\"cdkConnectedOverlayTransformOriginOn\",\"transformOriginSelector\"]},outputs:{backdropClick:\"backdropClick\",positionChange:\"positionChange\",attach:\"attach\",detach:\"detach\",overlayKeydown:\"overlayKeydown\"},exportAs:[\"cdkConnectedOverlay\"],features:[Ra]}),e})();const $v={provide:Vv,deps:[Nv],useFactory:function(e){return()=>e.scrollStrategies.reposition()}};let Bv=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[Nv,$v],imports:[[Jp,_v,av],av]}),e})();function qv(e){return new v(t=>{let n;try{n=e()}catch(i){return void t.error(i)}return(n?z(n):lp()).subscribe(t)})}function Gv(e,t){}class Jv{constructor(){this.role=\"dialog\",this.panelClass=\"\",this.hasBackdrop=!0,this.backdropClass=\"\",this.disableClose=!1,this.width=\"\",this.height=\"\",this.maxWidth=\"80vw\",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.autoFocus=!0,this.restoreFocus=!0,this.closeOnNavigation=!0}}const Kv={dialogContainer:jf(\"dialogContainer\",[Wf(\"void, exit\",Vf({opacity:0,transform:\"scale(0.7)\"})),Wf(\"enter\",Vf({transform:\"none\"})),Uf(\"* => enter\",Ff(\"150ms cubic-bezier(0, 0, 0.2, 1)\",Vf({transform:\"none\",opacity:1}))),Uf(\"* => void, * => exit\",Ff(\"75ms cubic-bezier(0.4, 0.0, 0.2, 1)\",Vf({opacity:0})))])};function Zv(){throw Error(\"Attempting to attach dialog content after content is already attached\")}let Qv=(()=>{class e extends mv{constructor(e,t,n,i,s){super(),this._elementRef=e,this._focusTrapFactory=t,this._changeDetectorRef=n,this._config=s,this._elementFocusedBeforeDialogWasOpened=null,this._state=\"enter\",this._animationStateChanged=new yc,this.attachDomPortal=e=>(this._portalOutlet.hasAttached()&&Zv(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachDomPortal(e)),this._ariaLabelledBy=s.ariaLabelledBy||null,this._document=i}attachComponentPortal(e){return this._portalOutlet.hasAttached()&&Zv(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachComponentPortal(e)}attachTemplatePortal(e){return this._portalOutlet.hasAttached()&&Zv(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachTemplatePortal(e)}_trapFocus(){const e=this._elementRef.nativeElement;if(this._focusTrap||(this._focusTrap=this._focusTrapFactory.create(e)),this._config.autoFocus)this._focusTrap.focusInitialElementWhenReady();else{const t=this._document.activeElement;t===e||e.contains(t)||e.focus()}}_restoreFocus(){const e=this._elementFocusedBeforeDialogWasOpened;if(this._config.restoreFocus&&e&&\"function\"==typeof e.focus){const t=this._document.activeElement,n=this._elementRef.nativeElement;t&&t!==this._document.body&&t!==n&&!n.contains(t)||e.focus()}this._focusTrap&&this._focusTrap.destroy()}_savePreviouslyFocusedElement(){this._document&&(this._elementFocusedBeforeDialogWasOpened=this._document.activeElement,this._elementRef.nativeElement.focus&&Promise.resolve().then(()=>this._elementRef.nativeElement.focus()))}_onAnimationDone(e){\"enter\"===e.toState?this._trapFocus():\"exit\"===e.toState&&this._restoreFocus(),this._animationStateChanged.emit(e)}_onAnimationStart(e){this._animationStateChanged.emit(e)}_startExitAnimation(){this._state=\"exit\",this._changeDetectorRef.markForCheck()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Fp),Eo(Qr),Eo(Nd,8),Eo(Jv))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-dialog-container\"]],viewQuery:function(e,t){var n;1&e&&Yc(fv,!0),2&e&&Dc(n=Rc())&&(t._portalOutlet=n.first)},hostAttrs:[\"tabindex\",\"-1\",\"aria-modal\",\"true\",1,\"mat-dialog-container\"],hostVars:6,hostBindings:function(e,t){1&e&&$o(\"@dialogContainer.start\",(function(e){return t._onAnimationStart(e)}))(\"@dialogContainer.done\",(function(e){return t._onAnimationDone(e)})),2&e&&(Co(\"id\",t._id)(\"role\",t._config.role)(\"aria-labelledby\",t._config.ariaLabel?null:t._ariaLabelledBy)(\"aria-label\",t._config.ariaLabel)(\"aria-describedby\",t._config.ariaDescribedBy||null),Ta(\"@dialogContainer\",t._state))},features:[Ya],decls:1,vars:0,consts:[[\"cdkPortalOutlet\",\"\"]],template:function(e,t){1&e&&Do(0,Gv,0,0,\"ng-template\",0)},directives:[fv],styles:[\".mat-dialog-container{display:block;padding:24px;border-radius:4px;box-sizing:border-box;overflow:auto;outline:0;width:100%;height:100%;min-height:inherit;max-height:inherit}.cdk-high-contrast-active .mat-dialog-container{outline:solid 1px}.mat-dialog-content{display:block;margin:0 -24px;padding:0 24px;max-height:65vh;overflow:auto;-webkit-overflow-scrolling:touch}.mat-dialog-title{margin:0 0 20px;display:block}.mat-dialog-actions{padding:8px 0;display:flex;flex-wrap:wrap;min-height:52px;align-items:center;margin-bottom:-24px}.mat-dialog-actions[align=end]{justify-content:flex-end}.mat-dialog-actions[align=center]{justify-content:center}.mat-dialog-actions .mat-button-base+.mat-button-base,.mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}\\n\"],encapsulation:2,data:{animation:[Kv.dialogContainer]}}),e})(),Xv=0;class ew{constructor(e,t,n=`mat-dialog-${Xv++}`){this._overlayRef=e,this._containerInstance=t,this.id=n,this.disableClose=this._containerInstance._config.disableClose,this._afterOpened=new L,this._afterClosed=new L,this._beforeClosed=new L,this._state=0,t._id=n,t._animationStateChanged.pipe(Tu(e=>\"done\"===e.phaseName&&\"enter\"===e.toState),cp(1)).subscribe(()=>{this._afterOpened.next(),this._afterOpened.complete()}),t._animationStateChanged.pipe(Tu(e=>\"done\"===e.phaseName&&\"exit\"===e.toState),cp(1)).subscribe(()=>{clearTimeout(this._closeFallbackTimeout),this._overlayRef.dispose()}),e.detachments().subscribe(()=>{this._beforeClosed.next(this._result),this._beforeClosed.complete(),this._afterClosed.next(this._result),this._afterClosed.complete(),this.componentInstance=null,this._overlayRef.dispose()}),e.keydownEvents().pipe(Tu(e=>27===e.keyCode&&!this.disableClose&&!qm(e))).subscribe(e=>{e.preventDefault(),this.close()})}close(e){this._result=e,this._containerInstance._animationStateChanged.pipe(Tu(e=>\"start\"===e.phaseName),cp(1)).subscribe(t=>{this._beforeClosed.next(e),this._beforeClosed.complete(),this._state=2,this._overlayRef.detachBackdrop(),this._closeFallbackTimeout=setTimeout(()=>{this._overlayRef.dispose()},t.totalTime+100)}),this._containerInstance._startExitAnimation(),this._state=1}afterOpened(){return this._afterOpened.asObservable()}afterClosed(){return this._afterClosed.asObservable()}beforeClosed(){return this._beforeClosed.asObservable()}backdropClick(){return this._overlayRef.backdropClick()}keydownEvents(){return this._overlayRef.keydownEvents()}updatePosition(e){let t=this._getPositionStrategy();return e&&(e.left||e.right)?e.left?t.left(e.left):t.right(e.right):t.centerHorizontally(),e&&(e.top||e.bottom)?e.top?t.top(e.top):t.bottom(e.bottom):t.centerVertically(),this._overlayRef.updatePosition(),this}updateSize(e=\"\",t=\"\"){return this._getPositionStrategy().width(e).height(t),this._overlayRef.updatePosition(),this}addPanelClass(e){return this._overlayRef.addPanelClass(e),this}removePanelClass(e){return this._overlayRef.removePanelClass(e),this}getState(){return this._state}_getPositionStrategy(){return this._overlayRef.getConfig().positionStrategy}}const tw=new Ve(\"MatDialogData\"),nw=new Ve(\"mat-dialog-default-options\"),iw=new Ve(\"mat-dialog-scroll-strategy\"),sw={provide:iw,deps:[Nv],useFactory:function(e){return()=>e.scrollStrategies.block()}};let rw=(()=>{class e{constructor(e,t,n,i,s,r,o){this._overlay=e,this._injector=t,this._defaultOptions=i,this._parentDialog=r,this._overlayContainer=o,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new L,this._afterOpenedAtThisLevel=new L,this._ariaHiddenElements=new Map,this.afterAllClosed=qv(()=>this.openDialogs.length?this._afterAllClosed:this._afterAllClosed.pipe(Rf(void 0))),this._scrollStrategy=s}get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}get _afterAllClosed(){const e=this._parentDialog;return e?e._afterAllClosed:this._afterAllClosedAtThisLevel}open(e,t){if((t=function(e,t){return Object.assign(Object.assign({},t),e)}(t,this._defaultOptions||new Jv)).id&&this.getDialogById(t.id))throw Error(`Dialog with id \"${t.id}\" exists already. The dialog id must be unique.`);const n=this._createOverlay(t),i=this._attachDialogContainer(n,t),s=this._attachDialogContent(e,i,n,t);return this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(s),s.afterClosed().subscribe(()=>this._removeOpenDialog(s)),this.afterOpened.next(s),s}closeAll(){this._closeDialogs(this.openDialogs)}getDialogById(e){return this.openDialogs.find(t=>t.id===e)}ngOnDestroy(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}_createOverlay(e){const t=this._getOverlayConfig(e);return this._overlay.create(t)}_getOverlayConfig(e){const t=new Lv({positionStrategy:this._overlay.position().global(),scrollStrategy:e.scrollStrategy||this._scrollStrategy(),panelClass:e.panelClass,hasBackdrop:e.hasBackdrop,direction:e.direction,minWidth:e.minWidth,minHeight:e.minHeight,maxWidth:e.maxWidth,maxHeight:e.maxHeight,disposeOnNavigation:e.closeOnNavigation});return e.backdropClass&&(t.backdropClass=e.backdropClass),t}_attachDialogContainer(e,t){const n=fo.create({parent:t&&t.viewContainerRef&&t.viewContainerRef.injector||this._injector,providers:[{provide:Jv,useValue:t}]}),i=new dv(Qv,t.viewContainerRef,n,t.componentFactoryResolver);return e.attach(i).instance}_attachDialogContent(e,t,n,i){const s=new ew(n,t,i.id);if(i.hasBackdrop&&n.backdropClick().subscribe(()=>{s.disableClose||s.close()}),e instanceof vl)t.attachTemplatePortal(new uv(e,null,{$implicit:i.data,dialogRef:s}));else{const n=this._createInjector(i,s,t),r=t.attachComponentPortal(new dv(e,i.viewContainerRef,n));s.componentInstance=r.instance}return s.updateSize(i.width,i.height).updatePosition(i.position),s}_createInjector(e,t,n){const i=e&&e.viewContainerRef&&e.viewContainerRef.injector,s=[{provide:Qv,useValue:n},{provide:tw,useValue:e.data},{provide:ew,useValue:t}];return!e.direction||i&&i.get(Gp,null)||s.push({provide:Gp,useValue:{value:e.direction,change:xu()}}),fo.create({parent:i||this._injector,providers:s})}_removeOpenDialog(e){const t=this.openDialogs.indexOf(e);t>-1&&(this.openDialogs.splice(t,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((e,t)=>{e?t.setAttribute(\"aria-hidden\",e):t.removeAttribute(\"aria-hidden\")}),this._ariaHiddenElements.clear(),this._afterAllClosed.next()))}_hideNonDialogContentFromAssistiveTechnology(){const e=this._overlayContainer.getContainerElement();if(e.parentElement){const t=e.parentElement.children;for(let n=t.length-1;n>-1;n--){let i=t[n];i===e||\"SCRIPT\"===i.nodeName||\"STYLE\"===i.nodeName||i.hasAttribute(\"aria-live\")||(this._ariaHiddenElements.set(i,i.getAttribute(\"aria-hidden\")),i.setAttribute(\"aria-hidden\",\"true\"))}}}_closeDialogs(e){let t=e.length;for(;t--;)e[t].close()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nv),Qe(fo),Qe(tu,8),Qe(nw,8),Qe(iw),Qe(e,12),Qe(Ov))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),ow=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[rw,sw],imports:[[Bv,_v,py],py]}),e})();function aw(e){return function(t){const n=new lw(e),i=t.lift(n);return n.caught=i}}class lw{constructor(e){this.selector=e}call(e,t){return t.subscribe(new cw(e,this.selector,this.caught))}}class cw extends R{constructor(e,t,n){super(e),this.selector=t,this.caught=n}error(e){if(!this.isStopped){let n;try{n=this.selector(e,this.caught)}catch(t){return void super.error(t)}this._unsubscribeAndRecycle();const i=new T(this,void 0,void 0);this.add(i);const s=A(this,n,void 0,void 0,i);s!==i&&this.add(s)}}}function dw(e){return t=>t.lift(new uw(e))}class uw{constructor(e){this.callback=e}call(e,t){return t.subscribe(new hw(e,this.callback))}}class hw extends p{constructor(e,t){super(e),this.add(new u(t))}}const mw=[\"*\"];function pw(e){return Error(`Unable to find icon with the name \"${e}\"`)}function fw(e){return Error(\"The URL provided to MatIconRegistry was not trusted as a resource URL \"+`via Angular's DomSanitizer. Attempted URL was \"${e}\".`)}function _w(e){return Error(\"The literal provided to MatIconRegistry was not trusted as safe HTML by \"+`Angular's DomSanitizer. Attempted literal was \"${e}\".`)}class gw{constructor(e,t){this.options=t,e.nodeName?this.svgElement=e:this.url=e}}let yw=(()=>{class e{constructor(e,t,n,i){this._httpClient=e,this._sanitizer=t,this._errorHandler=i,this._svgIconConfigs=new Map,this._iconSetConfigs=new Map,this._cachedIconsByUrl=new Map,this._inProgressUrlFetches=new Map,this._fontCssClassesByAlias=new Map,this._defaultFontSetClass=\"material-icons\",this._document=n}addSvgIcon(e,t,n){return this.addSvgIconInNamespace(\"\",e,t,n)}addSvgIconLiteral(e,t,n){return this.addSvgIconLiteralInNamespace(\"\",e,t,n)}addSvgIconInNamespace(e,t,n,i){return this._addSvgIconConfig(e,t,new gw(n,i))}addSvgIconLiteralInNamespace(e,t,n,i){const s=this._sanitizer.sanitize(Gi.HTML,n);if(!s)throw _w(n);const r=this._createSvgElementForSingleIcon(s,i);return this._addSvgIconConfig(e,t,new gw(r,i))}addSvgIconSet(e,t){return this.addSvgIconSetInNamespace(\"\",e,t)}addSvgIconSetLiteral(e,t){return this.addSvgIconSetLiteralInNamespace(\"\",e,t)}addSvgIconSetInNamespace(e,t,n){return this._addSvgIconSetConfig(e,new gw(t,n))}addSvgIconSetLiteralInNamespace(e,t,n){const i=this._sanitizer.sanitize(Gi.HTML,t);if(!i)throw _w(t);const s=this._svgElementFromString(i);return this._addSvgIconSetConfig(e,new gw(s,n))}registerFontClassAlias(e,t=e){return this._fontCssClassesByAlias.set(e,t),this}classNameForFontAlias(e){return this._fontCssClassesByAlias.get(e)||e}setDefaultFontSetClass(e){return this._defaultFontSetClass=e,this}getDefaultFontSetClass(){return this._defaultFontSetClass}getSvgIconFromUrl(e){const t=this._sanitizer.sanitize(Gi.RESOURCE_URL,e);if(!t)throw fw(e);const n=this._cachedIconsByUrl.get(t);return n?xu(bw(n)):this._loadSvgIconFromConfig(new gw(e)).pipe(Gm(e=>this._cachedIconsByUrl.set(t,e)),H(e=>bw(e)))}getNamedSvgIcon(e,t=\"\"){const n=vw(t,e),i=this._svgIconConfigs.get(n);if(i)return this._getSvgFromConfig(i);const s=this._iconSetConfigs.get(t);return s?this._getSvgFromIconSetConfigs(e,s):Jb(pw(n))}ngOnDestroy(){this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}_getSvgFromConfig(e){return e.svgElement?xu(bw(e.svgElement)):this._loadSvgIconFromConfig(e).pipe(Gm(t=>e.svgElement=t),H(e=>bw(e)))}_getSvgFromIconSetConfigs(e,t){const n=this._extractIconWithNameFromAnySet(e,t);return n?xu(n):ch(t.filter(e=>!e.svgElement).map(e=>this._loadSvgIconSetFromConfig(e).pipe(aw(t=>{const n=`Loading icon set URL: ${this._sanitizer.sanitize(Gi.RESOURCE_URL,e.url)} failed: ${t.message}`;return this._errorHandler?this._errorHandler.handleError(new Error(n)):console.error(n),xu(null)})))).pipe(H(()=>{const n=this._extractIconWithNameFromAnySet(e,t);if(!n)throw pw(e);return n}))}_extractIconWithNameFromAnySet(e,t){for(let n=t.length-1;n>=0;n--){const i=t[n];if(i.svgElement){const t=this._extractSvgIconFromSet(i.svgElement,e,i.options);if(t)return t}}return null}_loadSvgIconFromConfig(e){return this._fetchUrl(e.url).pipe(H(t=>this._createSvgElementForSingleIcon(t,e.options)))}_loadSvgIconSetFromConfig(e){return e.svgElement?xu(e.svgElement):this._fetchUrl(e.url).pipe(H(t=>(e.svgElement||(e.svgElement=this._svgElementFromString(t)),e.svgElement)))}_createSvgElementForSingleIcon(e,t){const n=this._svgElementFromString(e);return this._setSvgAttributes(n,t),n}_extractSvgIconFromSet(e,t,n){const i=e.querySelector(`[id=\"${t}\"]`);if(!i)return null;const s=i.cloneNode(!0);if(s.removeAttribute(\"id\"),\"svg\"===s.nodeName.toLowerCase())return this._setSvgAttributes(s,n);if(\"symbol\"===s.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(s),n);const r=this._svgElementFromString(\"\");return r.appendChild(s),this._setSvgAttributes(r,n)}_svgElementFromString(e){const t=this._document.createElement(\"DIV\");t.innerHTML=e;const n=t.querySelector(\"svg\");if(!n)throw Error(\" tag not found\");return n}_toSvgElement(e){const t=this._svgElementFromString(\"\"),n=e.attributes;for(let i=0;ithis._inProgressUrlFetches.delete(t)),se());return this._inProgressUrlFetches.set(t,i),i}_addSvgIconConfig(e,t,n){return this._svgIconConfigs.set(vw(e,t),n),this}_addSvgIconSetConfig(e,t){const n=this._iconSetConfigs.get(e);return n?n.push(t):this._iconSetConfigs.set(e,[t]),this}}return e.\\u0275fac=function(t){return new(t||e)(Qe(qu,8),Qe(Df),Qe(Nd,8),Qe(hi,8))},e.\\u0275prov=pe({factory:function(){return new e(Qe(qu,8),Qe(Df),Qe(Nd,8),Qe(hi,8))},token:e,providedIn:\"root\"}),e})();function bw(e){return e.cloneNode(!0)}function vw(e,t){return e+\":\"+t}class ww{constructor(e){this._elementRef=e}}const Mw=_y(ww),kw=new Ve(\"mat-icon-location\",{providedIn:\"root\",factory:function(){const e=Xe(Nd),t=e?e.location:null;return{getPathname:()=>t?t.pathname+t.search:\"\"}}}),Sw=[\"clip-path\",\"color-profile\",\"src\",\"cursor\",\"fill\",\"filter\",\"marker\",\"marker-start\",\"marker-mid\",\"marker-end\",\"mask\",\"stroke\"],Lw=Sw.map(e=>`[${e}]`).join(\", \"),xw=/^url\\(['\"]?#(.*?)['\"]?\\)$/;let Cw=(()=>{class e extends Mw{constructor(e,t,n,i,s){super(e),this._iconRegistry=t,this._location=i,this._errorHandler=s,this._inline=!1,n||e.nativeElement.setAttribute(\"aria-hidden\",\"true\")}get inline(){return this._inline}set inline(e){this._inline=hp(e)}get fontSet(){return this._fontSet}set fontSet(e){this._fontSet=this._cleanupFontValue(e)}get fontIcon(){return this._fontIcon}set fontIcon(e){this._fontIcon=this._cleanupFontValue(e)}_splitIconName(e){if(!e)return[\"\",\"\"];const t=e.split(\":\");switch(t.length){case 1:return[\"\",t[0]];case 2:return t;default:throw Error(`Invalid icon name: \"${e}\"`)}}ngOnChanges(e){const t=e.svgIcon;if(t)if(this.svgIcon){const[e,t]=this._splitIconName(this.svgIcon);this._iconRegistry.getNamedSvgIcon(t,e).pipe(cp(1)).subscribe(e=>this._setSvgElement(e),n=>{const i=`Error retrieving icon ${e}:${t}! ${n.message}`;this._errorHandler?this._errorHandler.handleError(new Error(i)):console.error(i)})}else t.previousValue&&this._clearSvgElement();this._usingFontIcon()&&this._updateFontIconClasses()}ngOnInit(){this._usingFontIcon()&&this._updateFontIconClasses()}ngAfterViewChecked(){const e=this._elementsWithExternalReferences;if(e&&this._location&&e.size){const e=this._location.getPathname();e!==this._previousPath&&(this._previousPath=e,this._prependPathToReferences(e))}}ngOnDestroy(){this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear()}_usingFontIcon(){return!this.svgIcon}_setSvgElement(e){this._clearSvgElement();const t=e.querySelectorAll(\"style\");for(let n=0;n{t.forEach(t=>{n.setAttribute(t.name,`url('${e}#${t.value}')`)})})}_cacheChildrenWithExternalReferences(e){const t=e.querySelectorAll(Lw),n=this._elementsWithExternalReferences=this._elementsWithExternalReferences||new Map;for(let i=0;i{const s=t[i],r=s.getAttribute(e),o=r?r.match(xw):null;if(o){let t=n.get(s);t||(t=[],n.set(s,t)),t.push({name:e,value:o[1]})}})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(yw),Oo(\"aria-hidden\"),Eo(kw,8),Eo(hi,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-icon\"]],hostAttrs:[\"role\",\"img\",1,\"mat-icon\",\"notranslate\"],hostVars:4,hostBindings:function(e,t){2&e&&ua(\"mat-icon-inline\",t.inline)(\"mat-icon-no-color\",\"primary\"!==t.color&&\"accent\"!==t.color&&\"warn\"!==t.color)},inputs:{color:\"color\",inline:\"inline\",fontSet:\"fontSet\",fontIcon:\"fontIcon\",svgIcon:\"svgIcon\"},exportAs:[\"matIcon\"],features:[Ya,Ra],ngContentSelectors:mw,decls:1,vars:0,template:function(e,t){1&e&&(Zo(),ea(0))},styles:[\".mat-icon{background-repeat:no-repeat;display:inline-block;fill:currentColor;height:24px;width:24px}.mat-icon.mat-icon-inline{font-size:inherit;height:inherit;line-height:inherit;width:inherit}[dir=rtl] .mat-icon-rtl-mirror{transform:scale(-1, 1)}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon{display:block}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button .mat-icon{margin:auto}\\n\"],encapsulation:2,changeDetection:0}),e})(),Tw=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[py],py]}),e})();const Dw=Sp({passive:!0});let Yw=(()=>{class e{constructor(e,t){this._platform=e,this._ngZone=t,this._monitoredElements=new Map}monitor(e){if(!this._platform.isBrowser)return ap;const t=_p(e),n=this._monitoredElements.get(t);if(n)return n.subject.asObservable();const i=new L,s=\"cdk-text-field-autofilled\",r=e=>{\"cdk-text-field-autofill-start\"!==e.animationName||t.classList.contains(s)?\"cdk-text-field-autofill-end\"===e.animationName&&t.classList.contains(s)&&(t.classList.remove(s),this._ngZone.run(()=>i.next({target:e.target,isAutofilled:!1}))):(t.classList.add(s),this._ngZone.run(()=>i.next({target:e.target,isAutofilled:!0})))};return this._ngZone.runOutsideAngular(()=>{t.addEventListener(\"animationstart\",r,Dw),t.classList.add(\"cdk-text-field-autofill-monitored\")}),this._monitoredElements.set(t,{subject:i,unlisten:()=>{t.removeEventListener(\"animationstart\",r,Dw)}}),i.asObservable()}stopMonitoring(e){const t=_p(e),n=this._monitoredElements.get(t);n&&(n.unlisten(),n.subject.complete(),t.classList.remove(\"cdk-text-field-autofill-monitored\"),t.classList.remove(\"cdk-text-field-autofilled\"),this._monitoredElements.delete(t))}ngOnDestroy(){this._monitoredElements.forEach((e,t)=>this.stopMonitoring(t))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(bp),Qe(ld))},e.\\u0275prov=pe({factory:function(){return new e(Qe(bp),Qe(ld))},token:e,providedIn:\"root\"}),e})(),Ew=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[vp]]}),e})();const Ow=[\"underline\"],Iw=[\"connectionContainer\"],Pw=[\"inputContainer\"],Aw=[\"label\"];function Rw(e,t){1&e&&(Fo(0),Ro(1,\"div\",14),jo(2,\"div\",15),jo(3,\"div\",16),jo(4,\"div\",17),Ho(),Ro(5,\"div\",18),jo(6,\"div\",15),jo(7,\"div\",16),jo(8,\"div\",17),Ho(),No())}function Hw(e,t){1&e&&(Ro(0,\"div\",19),ea(1,1),Ho())}function jw(e,t){if(1&e&&(Fo(0),ea(1,2),Ro(2,\"span\"),Sa(3),Ho(),No()),2&e){const e=Jo(2);ys(3),La(e._control.placeholder)}}function Fw(e,t){1&e&&ea(0,3,[\"*ngSwitchCase\",\"true\"])}function Nw(e,t){1&e&&(Ro(0,\"span\",23),Sa(1,\" *\"),Ho())}function zw(e,t){if(1&e){const e=zo();Ro(0,\"label\",20,21),Uo(\"cdkObserveContent\",(function(){return en(e),Jo().updateOutlineGap()})),Do(2,jw,4,1,\"ng-container\",12),Do(3,Fw,1,0,void 0,12),Do(4,Nw,2,0,\"span\",22),Ho()}if(2&e){const e=Jo();ua(\"mat-empty\",e._control.empty&&!e._shouldAlwaysFloat)(\"mat-form-field-empty\",e._control.empty&&!e._shouldAlwaysFloat)(\"mat-accent\",\"accent\"==e.color)(\"mat-warn\",\"warn\"==e.color),Po(\"cdkObserveContentDisabled\",\"outline\"!=e.appearance)(\"id\",e._labelId)(\"ngSwitch\",e._hasLabel()),Co(\"for\",e._control.id)(\"aria-owns\",e._control.id),ys(2),Po(\"ngSwitchCase\",!1),ys(1),Po(\"ngSwitchCase\",!0),ys(1),Po(\"ngIf\",!e.hideRequiredMarker&&e._control.required&&!e._control.disabled)}}function Vw(e,t){1&e&&(Ro(0,\"div\",24),ea(1,4),Ho())}function Ww(e,t){if(1&e&&(Ro(0,\"div\",25,26),jo(2,\"span\",27),Ho()),2&e){const e=Jo();ys(2),ua(\"mat-accent\",\"accent\"==e.color)(\"mat-warn\",\"warn\"==e.color)}}function Uw(e,t){1&e&&(Ro(0,\"div\"),ea(1,5),Ho()),2&e&&Po(\"@transitionMessages\",Jo()._subscriptAnimationState)}function $w(e,t){if(1&e&&(Ro(0,\"div\",31),Sa(1),Ho()),2&e){const e=Jo(2);Po(\"id\",e._hintLabelId),ys(1),La(e.hintLabel)}}function Bw(e,t){if(1&e&&(Ro(0,\"div\",28),Do(1,$w,2,2,\"div\",29),ea(2,6),jo(3,\"div\",30),ea(4,7),Ho()),2&e){const e=Jo();Po(\"@transitionMessages\",e._subscriptAnimationState),ys(1),Po(\"ngIf\",e.hintLabel)}}const qw=[\"*\",[[\"\",\"matPrefix\",\"\"]],[[\"mat-placeholder\"]],[[\"mat-label\"]],[[\"\",\"matSuffix\",\"\"]],[[\"mat-error\"]],[[\"mat-hint\",3,\"align\",\"end\"]],[[\"mat-hint\",\"align\",\"end\"]]],Gw=[\"*\",\"[matPrefix]\",\"mat-placeholder\",\"mat-label\",\"[matSuffix]\",\"mat-error\",\"mat-hint:not([align='end'])\",\"mat-hint[align='end']\"];let Jw=0,Kw=(()=>{class e{constructor(){this.id=`mat-error-${Jw++}`}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-error\"]],hostAttrs:[\"role\",\"alert\",1,\"mat-error\"],hostVars:1,hostBindings:function(e,t){2&e&&Co(\"id\",t.id)},inputs:{id:\"id\"}}),e})();const Zw={transitionMessages:jf(\"transitionMessages\",[Wf(\"enter\",Vf({opacity:1,transform:\"translateY(0%)\"})),Uf(\"void => enter\",[Vf({opacity:0,transform:\"translateY(-100%)\"}),Ff(\"300ms cubic-bezier(0.55, 0, 0.55, 0.2)\")])])};let Qw=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e}),e})();function Xw(e){return Error(`A hint was already declared for 'align=\"${e}\"'.`)}let eM=0,tM=(()=>{class e{constructor(){this.align=\"start\",this.id=`mat-hint-${eM++}`}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-hint\"]],hostAttrs:[1,\"mat-hint\"],hostVars:4,hostBindings:function(e,t){2&e&&(Co(\"id\",t.id)(\"align\",null),ua(\"mat-right\",\"end\"==t.align))},inputs:{align:\"align\",id:\"id\"}}),e})(),nM=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-label\"]]}),e})(),iM=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-placeholder\"]]}),e})(),sM=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"matPrefix\",\"\"]]}),e})(),rM=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"matSuffix\",\"\"]]}),e})(),oM=0;class aM{constructor(e){this._elementRef=e}}const lM=_y(aM,\"primary\"),cM=new Ve(\"MAT_FORM_FIELD_DEFAULT_OPTIONS\");let dM=(()=>{class e extends lM{constructor(e,t,n,i,s,r,o,a){super(e),this._elementRef=e,this._changeDetectorRef=t,this._dir=i,this._defaults=s,this._platform=r,this._ngZone=o,this._outlineGapCalculationNeededImmediately=!1,this._outlineGapCalculationNeededOnStable=!1,this._destroyed=new L,this._showAlwaysAnimate=!1,this._subscriptAnimationState=\"\",this._hintLabel=\"\",this._hintLabelId=`mat-hint-${oM++}`,this._labelId=`mat-form-field-label-${oM++}`,this._labelOptions=n||{},this.floatLabel=this._getDefaultFloatLabelState(),this._animationsEnabled=\"NoopAnimations\"!==a,this.appearance=s&&s.appearance?s.appearance:\"legacy\",this._hideRequiredMarker=!(!s||null==s.hideRequiredMarker)&&s.hideRequiredMarker}get appearance(){return this._appearance}set appearance(e){const t=this._appearance;this._appearance=e||this._defaults&&this._defaults.appearance||\"legacy\",\"outline\"===this._appearance&&t!==e&&(this._outlineGapCalculationNeededOnStable=!0)}get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(e){this._hideRequiredMarker=hp(e)}get _shouldAlwaysFloat(){return\"always\"===this.floatLabel&&!this._showAlwaysAnimate}get _canLabelFloat(){return\"never\"!==this.floatLabel}get hintLabel(){return this._hintLabel}set hintLabel(e){this._hintLabel=e,this._processHints()}get floatLabel(){return\"legacy\"!==this.appearance&&\"never\"===this._floatLabel?\"auto\":this._floatLabel}set floatLabel(e){e!==this._floatLabel&&(this._floatLabel=e||this._getDefaultFloatLabelState(),this._changeDetectorRef.markForCheck())}get _control(){return this._explicitFormFieldControl||this._controlNonStatic||this._controlStatic}set _control(e){this._explicitFormFieldControl=e}get _labelChild(){return this._labelChildNonStatic||this._labelChildStatic}getConnectedOverlayOrigin(){return this._connectionContainerRef||this._elementRef}ngAfterContentInit(){this._validateControlChild();const e=this._control;e.controlType&&this._elementRef.nativeElement.classList.add(`mat-form-field-type-${e.controlType}`),e.stateChanges.pipe(Rf(null)).subscribe(()=>{this._validatePlaceholders(),this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),e.ngControl&&e.ngControl.valueChanges&&e.ngControl.valueChanges.pipe(Nb(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck()),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.asObservable().pipe(Nb(this._destroyed)).subscribe(()=>{this._outlineGapCalculationNeededOnStable&&this.updateOutlineGap()})}),G(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(()=>{this._outlineGapCalculationNeededOnStable=!0,this._changeDetectorRef.markForCheck()}),this._hintChildren.changes.pipe(Rf(null)).subscribe(()=>{this._processHints(),this._changeDetectorRef.markForCheck()}),this._errorChildren.changes.pipe(Rf(null)).subscribe(()=>{this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),this._dir&&this._dir.change.pipe(Nb(this._destroyed)).subscribe(()=>{\"function\"==typeof requestAnimationFrame?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>this.updateOutlineGap())}):this.updateOutlineGap()})}ngAfterContentChecked(){this._validateControlChild(),this._outlineGapCalculationNeededImmediately&&this.updateOutlineGap()}ngAfterViewInit(){this._subscriptAnimationState=\"enter\",this._changeDetectorRef.detectChanges()}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_shouldForward(e){const t=this._control?this._control.ngControl:null;return t&&t[e]}_hasPlaceholder(){return!!(this._control&&this._control.placeholder||this._placeholderChild)}_hasLabel(){return!!this._labelChild}_shouldLabelFloat(){return this._canLabelFloat&&(this._control.shouldLabelFloat||this._shouldAlwaysFloat)}_hideControlPlaceholder(){return\"legacy\"===this.appearance&&!this._hasLabel()||this._hasLabel()&&!this._shouldLabelFloat()}_hasFloatingLabel(){return this._hasLabel()||\"legacy\"===this.appearance&&this._hasPlaceholder()}_getDisplayedMessages(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?\"error\":\"hint\"}_animateAndLockLabel(){this._hasFloatingLabel()&&this._canLabelFloat&&(this._animationsEnabled&&this._label&&(this._showAlwaysAnimate=!0,Mb(this._label.nativeElement,\"transitionend\").pipe(cp(1)).subscribe(()=>{this._showAlwaysAnimate=!1})),this.floatLabel=\"always\",this._changeDetectorRef.markForCheck())}_validatePlaceholders(){if(this._control.placeholder&&this._placeholderChild)throw Error(\"Placeholder attribute and child element were both specified.\")}_processHints(){this._validateHints(),this._syncDescribedByIds()}_validateHints(){if(this._hintChildren){let e,t;this._hintChildren.forEach(n=>{if(\"start\"===n.align){if(e||this.hintLabel)throw Xw(\"start\");e=n}else if(\"end\"===n.align){if(t)throw Xw(\"end\");t=n}})}}_getDefaultFloatLabelState(){return this._defaults&&this._defaults.floatLabel||this._labelOptions.float||\"auto\"}_syncDescribedByIds(){if(this._control){let e=[];if(\"hint\"===this._getDisplayedMessages()){const t=this._hintChildren?this._hintChildren.find(e=>\"start\"===e.align):null,n=this._hintChildren?this._hintChildren.find(e=>\"end\"===e.align):null;t?e.push(t.id):this._hintLabel&&e.push(this._hintLabelId),n&&e.push(n.id)}else this._errorChildren&&(e=this._errorChildren.map(e=>e.id));this._control.setDescribedByIds(e)}}_validateControlChild(){if(!this._control)throw Error(\"mat-form-field must contain a MatFormFieldControl.\")}updateOutlineGap(){const e=this._label?this._label.nativeElement:null;if(\"outline\"!==this.appearance||!e||!e.children.length||!e.textContent.trim())return;if(!this._platform.isBrowser)return;if(!this._isAttachedToDOM())return void(this._outlineGapCalculationNeededImmediately=!0);let t=0,n=0;const i=this._connectionContainerRef.nativeElement,s=i.querySelectorAll(\".mat-form-field-outline-start\"),r=i.querySelectorAll(\".mat-form-field-outline-gap\");if(this._label&&this._label.nativeElement.children.length){const s=i.getBoundingClientRect();if(0===s.width&&0===s.height)return this._outlineGapCalculationNeededOnStable=!0,void(this._outlineGapCalculationNeededImmediately=!1);const r=this._getStartEnd(s),o=this._getStartEnd(e.children[0].getBoundingClientRect());let a=0;for(const t of e.children)a+=t.offsetWidth;t=o-r-5,n=a>0?.75*a+10:0}for(let o=0;o{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu,Ep]]}),e})();const hM=new Ve(\"MAT_INPUT_VALUE_ACCESSOR\"),mM=[\"button\",\"checkbox\",\"file\",\"hidden\",\"image\",\"radio\",\"range\",\"reset\",\"submit\"];let pM=0;class fM{constructor(e,t,n,i){this._defaultErrorStateMatcher=e,this._parentForm=t,this._parentFormGroup=n,this.ngControl=i}}const _M=by(fM);let gM=(()=>{class e extends _M{constructor(e,t,n,i,s,r,o,a,l){super(r,i,s,n),this._elementRef=e,this._platform=t,this.ngControl=n,this._autofillMonitor=a,this._uid=`mat-input-${pM++}`,this._isServer=!1,this._isNativeSelect=!1,this.focused=!1,this.stateChanges=new L,this.controlType=\"mat-input\",this.autofilled=!1,this._disabled=!1,this._required=!1,this._type=\"text\",this._readonly=!1,this._neverEmptyInputTypes=[\"date\",\"datetime\",\"datetime-local\",\"month\",\"time\",\"week\"].filter(e=>Mp().has(e));const c=this._elementRef.nativeElement;this._inputValueAccessor=o||c,this._previousNativeValue=this.value,this.id=this.id,t.IOS&&l.runOutsideAngular(()=>{e.nativeElement.addEventListener(\"keyup\",e=>{let t=e.target;t.value||t.selectionStart||t.selectionEnd||(t.setSelectionRange(1,1),t.setSelectionRange(0,0))})}),this._isServer=!this._platform.isBrowser,this._isNativeSelect=\"select\"===c.nodeName.toLowerCase(),this._isNativeSelect&&(this.controlType=c.multiple?\"mat-native-select-multiple\":\"mat-native-select\")}get disabled(){return this.ngControl&&null!==this.ngControl.disabled?this.ngControl.disabled:this._disabled}set disabled(e){this._disabled=hp(e),this.focused&&(this.focused=!1,this.stateChanges.next())}get id(){return this._id}set id(e){this._id=e||this._uid}get required(){return this._required}set required(e){this._required=hp(e)}get type(){return this._type}set type(e){this._type=e||\"text\",this._validateType(),!this._isTextarea()&&Mp().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}get value(){return this._inputValueAccessor.value}set value(e){e!==this.value&&(this._inputValueAccessor.value=e,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(e){this._readonly=hp(e)}ngOnInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(e=>{this.autofilled=e.isAutofilled,this.stateChanges.next()})}ngOnChanges(){this.stateChanges.next()}ngOnDestroy(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement)}ngDoCheck(){this.ngControl&&this.updateErrorState(),this._dirtyCheckNativeValue()}focus(e){this._elementRef.nativeElement.focus(e)}_focusChanged(e){e===this.focused||this.readonly&&e||(this.focused=e,this.stateChanges.next())}_onInput(){}_isTextarea(){return\"textarea\"===this._elementRef.nativeElement.nodeName.toLowerCase()}_dirtyCheckNativeValue(){const e=this._elementRef.nativeElement.value;this._previousNativeValue!==e&&(this._previousNativeValue=e,this.stateChanges.next())}_validateType(){if(mM.indexOf(this._type)>-1)throw Error(`Input type \"${this._type}\" isn't supported by matInput.`)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let e=this._elementRef.nativeElement.validity;return e&&e.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const e=this._elementRef.nativeElement,t=e.options[0];return this.focused||e.multiple||!this.empty||!!(e.selectedIndex>-1&&t&&t.label)}return this.focused||!this.empty}setDescribedByIds(e){this._ariaDescribedby=e.join(\" \")}onContainerClick(){this.focused||this.focus()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(bp),Eo(wh,10),Eo(bm,8),Eo(Im,8),Eo(vy),Eo(hM,10),Eo(Yw),Eo(ld))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"matInput\",\"\"],[\"textarea\",\"matInput\",\"\"],[\"select\",\"matNativeControl\",\"\"],[\"input\",\"matNativeControl\",\"\"],[\"textarea\",\"matNativeControl\",\"\"]],hostAttrs:[1,\"mat-input-element\",\"mat-form-field-autofill-control\"],hostVars:10,hostBindings:function(e,t){1&e&&Uo(\"blur\",(function(){return t._focusChanged(!1)}))(\"focus\",(function(){return t._focusChanged(!0)}))(\"input\",(function(){return t._onInput()})),2&e&&(Ca(\"disabled\",t.disabled)(\"required\",t.required),Co(\"id\",t.id)(\"placeholder\",t.placeholder)(\"readonly\",t.readonly&&!t._isNativeSelect||null)(\"aria-describedby\",t._ariaDescribedby||null)(\"aria-invalid\",t.errorState)(\"aria-required\",t.required.toString()),ua(\"mat-input-server\",t._isServer))},inputs:{id:\"id\",disabled:\"disabled\",required:\"required\",type:\"type\",value:\"value\",readonly:\"readonly\",placeholder:\"placeholder\",errorStateMatcher:\"errorStateMatcher\"},exportAs:[\"matInput\"],features:[Ba([{provide:Qw,useExisting:e}]),Ya,Ra]}),e})(),yM=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[vy],imports:[[Ew,uM],Ew,uM]}),e})();function bM(e,t=tp){var n;const i=(n=e)instanceof Date&&!isNaN(+n)?+e-t.now():Math.abs(e);return e=>e.lift(new vM(i,t))}class vM{constructor(e,t){this.delay=e,this.scheduler=t}call(e,t){return t.subscribe(new wM(e,this.delay,this.scheduler))}}class wM extends p{constructor(e,t,n){super(e),this.delay=t,this.scheduler=n,this.queue=[],this.active=!1,this.errored=!1}static dispatch(e){const t=e.source,n=t.queue,i=e.scheduler,s=e.destination;for(;n.length>0&&n[0].time-i.now()<=0;)n.shift().notification.observe(s);if(n.length>0){const t=Math.max(0,n[0].time-i.now());this.schedule(e,t)}else this.unsubscribe(),t.active=!1}_schedule(e){this.active=!0,this.destination.add(e.schedule(wM.dispatch,this.delay,{source:this,destination:this.destination,scheduler:e}))}scheduleNotification(e){if(!0===this.errored)return;const t=this.scheduler,n=new MM(t.now()+this.delay,e);this.queue.push(n),!1===this.active&&this._schedule(t)}_next(e){this.scheduleNotification(Zb.createNext(e))}_error(e){this.errored=!0,this.queue=[],this.destination.error(e),this.unsubscribe()}_complete(){this.scheduleNotification(Zb.createComplete()),this.unsubscribe()}}class MM{constructor(e,t){this.time=e,this.notification=t}}const kM=[\"mat-menu-item\",\"\"],SM=[\"*\"];function LM(e,t){if(1&e){const e=zo();Ro(0,\"div\",0),Uo(\"keydown\",(function(t){return en(e),Jo()._handleKeydown(t)}))(\"click\",(function(){return en(e),Jo().closed.emit(\"click\")}))(\"@transformMenu.start\",(function(t){return en(e),Jo()._onAnimationStart(t)}))(\"@transformMenu.done\",(function(t){return en(e),Jo()._onAnimationDone(t)})),Ro(1,\"div\",1),ea(2),Ho(),Ho()}if(2&e){const e=Jo();Po(\"id\",e.panelId)(\"ngClass\",e._classList)(\"@transformMenu\",e._panelAnimationState),Co(\"aria-label\",e.ariaLabel||null)(\"aria-labelledby\",e.ariaLabelledby||null)(\"aria-describedby\",e.ariaDescribedby||null)}}const xM={transformMenu:jf(\"transformMenu\",[Wf(\"void\",Vf({opacity:0,transform:\"scale(0.8)\"})),Uf(\"void => enter\",Nf([Bf(\".mat-menu-content, .mat-mdc-menu-content\",Ff(\"100ms linear\",Vf({opacity:1}))),Ff(\"120ms cubic-bezier(0, 0, 0.2, 1)\",Vf({transform:\"scale(1)\"}))])),Uf(\"* => void\",Ff(\"100ms 25ms linear\",Vf({opacity:0})))]),fadeInItems:jf(\"fadeInItems\",[Wf(\"showing\",Vf({opacity:1})),Uf(\"void => *\",[Vf({opacity:0}),Ff(\"400ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)\")])])};let CM=(()=>{class e{constructor(e,t,n,i,s,r,o){this._template=e,this._componentFactoryResolver=t,this._appRef=n,this._injector=i,this._viewContainerRef=s,this._document=r,this._changeDetectorRef=o,this._attached=new L}attach(e={}){this._portal||(this._portal=new uv(this._template,this._viewContainerRef)),this.detach(),this._outlet||(this._outlet=new pv(this._document.createElement(\"div\"),this._componentFactoryResolver,this._appRef,this._injector));const t=this._template.elementRef.nativeElement;t.parentNode.insertBefore(this._outlet.outletElement,t),this._changeDetectorRef&&this._changeDetectorRef.markForCheck(),this._portal.attach(this._outlet,e),this._attached.next()}detach(){this._portal.isAttached&&this._portal.detach()}ngOnDestroy(){this._outlet&&this._outlet.dispose()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(vl),Eo(Ja),Eo(Td),Eo(fo),Eo(Ml),Eo(Nd),Eo(Qr))},e.\\u0275dir=St({type:e,selectors:[[\"ng-template\",\"matMenuContent\",\"\"]]}),e})();const TM=new Ve(\"MAT_MENU_PANEL\");class DM{}const YM=gy(fy(DM));let EM=(()=>{class e extends YM{constructor(e,t,n,i){super(),this._elementRef=e,this._focusMonitor=n,this._parentMenu=i,this.role=\"menuitem\",this._hovered=new L,this._focused=new L,this._highlighted=!1,this._triggersSubmenu=!1,n&&n.monitor(this._elementRef,!1),i&&i.addItem&&i.addItem(this),this._document=t}focus(e=\"program\",t){this._focusMonitor?this._focusMonitor.focusVia(this._getHostElement(),e,t):this._getHostElement().focus(t),this._focused.next(this)}ngOnDestroy(){this._focusMonitor&&this._focusMonitor.stopMonitoring(this._elementRef),this._parentMenu&&this._parentMenu.removeItem&&this._parentMenu.removeItem(this),this._hovered.complete(),this._focused.complete()}_getTabIndex(){return this.disabled?\"-1\":\"0\"}_getHostElement(){return this._elementRef.nativeElement}_checkDisabled(e){this.disabled&&(e.preventDefault(),e.stopPropagation())}_handleMouseEnter(){this._hovered.next(this)}getLabel(){const e=this._elementRef.nativeElement,t=this._document?this._document.TEXT_NODE:3;let n=\"\";if(e.childNodes){const i=e.childNodes.length;for(let s=0;s{class e{constructor(e,t,n){this._elementRef=e,this._ngZone=t,this._defaultOptions=n,this._xPosition=this._defaultOptions.xPosition,this._yPosition=this._defaultOptions.yPosition,this._directDescendantItems=new vc,this._tabSubscription=u.EMPTY,this._classList={},this._panelAnimationState=\"void\",this._animationDone=new L,this.backdropClass=this._defaultOptions.backdropClass,this._overlapTrigger=this._defaultOptions.overlapTrigger,this._hasBackdrop=this._defaultOptions.hasBackdrop,this.closed=new yc,this.close=this.closed,this.panelId=`mat-menu-panel-${IM++}`}get xPosition(){return this._xPosition}set xPosition(e){\"before\"!==e&&\"after\"!==e&&function(){throw Error('xPosition value must be either \\'before\\' or after\\'.\\n Example: ')}(),this._xPosition=e,this.setPositionClasses()}get yPosition(){return this._yPosition}set yPosition(e){\"above\"!==e&&\"below\"!==e&&function(){throw Error('yPosition value must be either \\'above\\' or below\\'.\\n Example: ')}(),this._yPosition=e,this.setPositionClasses()}get overlapTrigger(){return this._overlapTrigger}set overlapTrigger(e){this._overlapTrigger=hp(e)}get hasBackdrop(){return this._hasBackdrop}set hasBackdrop(e){this._hasBackdrop=hp(e)}set panelClass(e){const t=this._previousPanelClass;t&&t.length&&t.split(\" \").forEach(e=>{this._classList[e]=!1}),this._previousPanelClass=e,e&&e.length&&(e.split(\" \").forEach(e=>{this._classList[e]=!0}),this._elementRef.nativeElement.className=\"\")}get classList(){return this.panelClass}set classList(e){this.panelClass=e}ngOnInit(){this.setPositionClasses()}ngAfterContentInit(){this._updateDirectDescendants(),this._keyManager=new Pp(this._directDescendantItems).withWrap().withTypeAhead(),this._tabSubscription=this._keyManager.tabOut.subscribe(()=>this.closed.emit(\"tab\")),this._directDescendantItems.changes.pipe(Rf(this._directDescendantItems),Wb(e=>G(...e.map(e=>e._focused)))).subscribe(e=>this._keyManager.updateActiveItem(e))}ngOnDestroy(){this._directDescendantItems.destroy(),this._tabSubscription.unsubscribe(),this.closed.complete()}_hovered(){return this._directDescendantItems.changes.pipe(Rf(this._directDescendantItems),Wb(e=>G(...e.map(e=>e._hovered))))}addItem(e){}removeItem(e){}_handleKeydown(e){const t=e.keyCode,n=this._keyManager;switch(t){case 27:qm(e)||(e.preventDefault(),this.closed.emit(\"keydown\"));break;case 37:this.parentMenu&&\"ltr\"===this.direction&&this.closed.emit(\"keydown\");break;case 39:this.parentMenu&&\"rtl\"===this.direction&&this.closed.emit(\"keydown\");break;case 36:case 35:qm(e)||(36===t?n.setFirstItemActive():n.setLastItemActive(),e.preventDefault());break;default:38!==t&&40!==t||n.setFocusOrigin(\"keyboard\"),n.onKeydown(e)}}focusFirstItem(e=\"program\"){this.lazyContent?this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(()=>this._focusFirstItem(e)):this._focusFirstItem(e)}_focusFirstItem(e){const t=this._keyManager;if(t.setFocusOrigin(e).setFirstItemActive(),!t.activeItem&&this._directDescendantItems.length){let e=this._directDescendantItems.first._getHostElement().parentElement;for(;e;){if(\"menu\"===e.getAttribute(\"role\")){e.focus();break}e=e.parentElement}}}resetActiveItem(){this._keyManager.setActiveItem(-1)}setElevation(e){const t=`mat-elevation-z${Math.min(4+e,24)}`,n=Object.keys(this._classList).find(e=>e.startsWith(\"mat-elevation-z\"));n&&n!==this._previousElevation||(this._previousElevation&&(this._classList[this._previousElevation]=!1),this._classList[t]=!0,this._previousElevation=t)}setPositionClasses(e=this.xPosition,t=this.yPosition){const n=this._classList;n[\"mat-menu-before\"]=\"before\"===e,n[\"mat-menu-after\"]=\"after\"===e,n[\"mat-menu-above\"]=\"above\"===t,n[\"mat-menu-below\"]=\"below\"===t}_startAnimation(){this._panelAnimationState=\"enter\"}_resetAnimation(){this._panelAnimationState=\"void\"}_onAnimationDone(e){this._animationDone.next(e),this._isAnimating=!1}_onAnimationStart(e){this._isAnimating=!0,\"enter\"===e.toState&&0===this._keyManager.activeItemIndex&&(e.element.scrollTop=0)}_updateDirectDescendants(){this._allItems.changes.pipe(Rf(this._allItems)).subscribe(e=>{this._directDescendantItems.reset(e.filter(e=>e._parentMenu===this)),this._directDescendantItems.notifyOnChanges()})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(ld),Eo(OM))},e.\\u0275dir=St({type:e,contentQueries:function(e,t,n){var i;1&e&&(Ic(n,CM,!0),Ic(n,EM,!0),Ic(n,EM,!1)),2&e&&(Dc(i=Rc())&&(t.lazyContent=i.first),Dc(i=Rc())&&(t._allItems=i),Dc(i=Rc())&&(t.items=i))},viewQuery:function(e,t){var n;1&e&&Ec(vl,!0),2&e&&Dc(n=Rc())&&(t.templateRef=n.first)},inputs:{backdropClass:\"backdropClass\",xPosition:\"xPosition\",yPosition:\"yPosition\",overlapTrigger:\"overlapTrigger\",hasBackdrop:\"hasBackdrop\",panelClass:[\"class\",\"panelClass\"],classList:\"classList\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],ariaDescribedby:[\"aria-describedby\",\"ariaDescribedby\"]},outputs:{closed:\"closed\",close:\"close\"}}),e})(),AM=(()=>{class e extends PM{}return e.\\u0275fac=function(t){return RM(t||e)},e.\\u0275dir=St({type:e,features:[Ya]}),e})();const RM=li(AM);let HM=(()=>{class e extends AM{constructor(e,t,n){super(e,t,n)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(ld),Eo(OM))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-menu\"]],exportAs:[\"matMenu\"],features:[Ba([{provide:TM,useExisting:AM},{provide:AM,useExisting:e}]),Ya],ngContentSelectors:SM,decls:1,vars:0,consts:[[\"tabindex\",\"-1\",\"role\",\"menu\",1,\"mat-menu-panel\",3,\"id\",\"ngClass\",\"keydown\",\"click\"],[1,\"mat-menu-content\"]],template:function(e,t){1&e&&(Zo(),Do(0,LM,3,6,\"ng-template\"))},directives:[cu],styles:['.mat-menu-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;max-height:calc(100vh - 48px);border-radius:4px;outline:0;min-height:64px}.mat-menu-panel.ng-animating{pointer-events:none}.cdk-high-contrast-active .mat-menu-panel{outline:solid 1px}.mat-menu-content:not(:empty){padding-top:8px;padding-bottom:8px}.mat-menu-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative}.mat-menu-item::-moz-focus-inner{border:0}.mat-menu-item[disabled]{cursor:default}[dir=rtl] .mat-menu-item{text-align:right}.mat-menu-item .mat-icon{margin-right:16px;vertical-align:middle}.mat-menu-item .mat-icon svg{vertical-align:top}[dir=rtl] .mat-menu-item .mat-icon{margin-left:16px;margin-right:0}.mat-menu-item[disabled]{pointer-events:none}.cdk-high-contrast-active .mat-menu-item.cdk-program-focused,.cdk-high-contrast-active .mat-menu-item.cdk-keyboard-focused,.cdk-high-contrast-active .mat-menu-item-highlighted{outline:dotted 1px}.mat-menu-item-submenu-trigger{padding-right:32px}.mat-menu-item-submenu-trigger::after{width:0;height:0;border-style:solid;border-width:5px 0 5px 5px;border-color:transparent transparent transparent currentColor;content:\"\";display:inline-block;position:absolute;top:50%;right:16px;transform:translateY(-50%)}[dir=rtl] .mat-menu-item-submenu-trigger{padding-right:16px;padding-left:32px}[dir=rtl] .mat-menu-item-submenu-trigger::after{right:auto;left:16px;transform:rotateY(180deg) translateY(-50%)}button.mat-menu-item{width:100%}.mat-menu-item .mat-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}\\n'],encapsulation:2,data:{animation:[xM.transformMenu,xM.fadeInItems]},changeDetection:0}),e})();const jM=new Ve(\"mat-menu-scroll-strategy\"),FM={provide:jM,deps:[Nv],useFactory:function(e){return()=>e.scrollStrategies.reposition()}},NM=Sp({passive:!0});let zM=(()=>{class e{constructor(e,t,n,i,s,r,o,a){this._overlay=e,this._element=t,this._viewContainerRef=n,this._parentMenu=s,this._menuItemInstance=r,this._dir=o,this._focusMonitor=a,this._overlayRef=null,this._menuOpen=!1,this._closingActionsSubscription=u.EMPTY,this._hoverSubscription=u.EMPTY,this._menuCloseSubscription=u.EMPTY,this._handleTouchStart=()=>this._openedBy=\"touch\",this._openedBy=null,this.restoreFocus=!0,this.menuOpened=new yc,this.onMenuOpen=this.menuOpened,this.menuClosed=new yc,this.onMenuClose=this.menuClosed,t.nativeElement.addEventListener(\"touchstart\",this._handleTouchStart,NM),r&&(r._triggersSubmenu=this.triggersSubmenu()),this._scrollStrategy=i}get _deprecatedMatMenuTriggerFor(){return this.menu}set _deprecatedMatMenuTriggerFor(e){this.menu=e}get menu(){return this._menu}set menu(e){e!==this._menu&&(this._menu=e,this._menuCloseSubscription.unsubscribe(),e&&(this._menuCloseSubscription=e.close.asObservable().subscribe(e=>{this._destroyMenu(),\"click\"!==e&&\"tab\"!==e||!this._parentMenu||this._parentMenu.closed.emit(e)})))}ngAfterContentInit(){this._checkMenu(),this._handleHover()}ngOnDestroy(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null),this._element.nativeElement.removeEventListener(\"touchstart\",this._handleTouchStart,NM),this._menuCloseSubscription.unsubscribe(),this._closingActionsSubscription.unsubscribe(),this._hoverSubscription.unsubscribe()}get menuOpen(){return this._menuOpen}get dir(){return this._dir&&\"rtl\"===this._dir.value?\"rtl\":\"ltr\"}triggersSubmenu(){return!(!this._menuItemInstance||!this._parentMenu)}toggleMenu(){return this._menuOpen?this.closeMenu():this.openMenu()}openMenu(){if(this._menuOpen)return;this._checkMenu();const e=this._createOverlay(),t=e.getConfig();this._setPosition(t.positionStrategy),t.hasBackdrop=null==this.menu.hasBackdrop?!this.triggersSubmenu():this.menu.hasBackdrop,e.attach(this._getPortal()),this.menu.lazyContent&&this.menu.lazyContent.attach(this.menuData),this._closingActionsSubscription=this._menuClosingActions().subscribe(()=>this.closeMenu()),this._initMenu(),this.menu instanceof AM&&this.menu._startAnimation()}closeMenu(){this.menu.close.emit()}focus(e=\"program\",t){this._focusMonitor?this._focusMonitor.focusVia(this._element,e,t):this._element.nativeElement.focus(t)}_destroyMenu(){if(!this._overlayRef||!this.menuOpen)return;const e=this.menu;this._closingActionsSubscription.unsubscribe(),this._overlayRef.detach(),this._restoreFocus(),e instanceof AM?(e._resetAnimation(),e.lazyContent?e._animationDone.pipe(Tu(e=>\"void\"===e.toState),cp(1),Nb(e.lazyContent._attached)).subscribe({next:()=>e.lazyContent.detach(),complete:()=>this._setIsMenuOpen(!1)}):this._setIsMenuOpen(!1)):(this._setIsMenuOpen(!1),e.lazyContent&&e.lazyContent.detach())}_initMenu(){this.menu.parentMenu=this.triggersSubmenu()?this._parentMenu:void 0,this.menu.direction=this.dir,this._setMenuElevation(),this._setIsMenuOpen(!0),this.menu.focusFirstItem(this._openedBy||\"program\")}_setMenuElevation(){if(this.menu.setElevation){let e=0,t=this.menu.parentMenu;for(;t;)e++,t=t.parentMenu;this.menu.setElevation(e)}}_restoreFocus(){this.restoreFocus&&(this._openedBy?this.triggersSubmenu()||this.focus(this._openedBy):this.focus()),this._openedBy=null}_setIsMenuOpen(e){this._menuOpen=e,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this.triggersSubmenu()&&(this._menuItemInstance._highlighted=e)}_checkMenu(){this.menu||function(){throw Error('matMenuTriggerFor: must pass in an mat-menu instance.\\n\\n Example:\\n \\n ')}()}_createOverlay(){if(!this._overlayRef){const e=this._getOverlayConfig();this._subscribeToPositions(e.positionStrategy),this._overlayRef=this._overlay.create(e),this._overlayRef.keydownEvents().subscribe()}return this._overlayRef}_getOverlayConfig(){return new Lv({positionStrategy:this._overlay.position().flexibleConnectedTo(this._element).withLockedPosition().withTransformOriginOn(\".mat-menu-panel, .mat-mdc-menu-panel\"),backdropClass:this.menu.backdropClass||\"cdk-overlay-transparent-backdrop\",scrollStrategy:this._scrollStrategy(),direction:this._dir})}_subscribeToPositions(e){this.menu.setPositionClasses&&e.positionChanges.subscribe(e=>{this.menu.setPositionClasses(\"start\"===e.connectionPair.overlayX?\"after\":\"before\",\"top\"===e.connectionPair.overlayY?\"below\":\"above\")})}_setPosition(e){let[t,n]=\"before\"===this.menu.xPosition?[\"end\",\"start\"]:[\"start\",\"end\"],[i,s]=\"above\"===this.menu.yPosition?[\"bottom\",\"top\"]:[\"top\",\"bottom\"],[r,o]=[i,s],[a,l]=[t,n],c=0;this.triggersSubmenu()?(l=t=\"before\"===this.menu.xPosition?\"start\":\"end\",n=a=\"end\"===t?\"start\":\"end\",c=\"bottom\"===i?8:-8):this.menu.overlapTrigger||(r=\"top\"===i?\"bottom\":\"top\",o=\"top\"===s?\"bottom\":\"top\"),e.withPositions([{originX:t,originY:r,overlayX:a,overlayY:i,offsetY:c},{originX:n,originY:r,overlayX:l,overlayY:i,offsetY:c},{originX:t,originY:o,overlayX:a,overlayY:s,offsetY:-c},{originX:n,originY:o,overlayX:l,overlayY:s,offsetY:-c}])}_menuClosingActions(){const e=this._overlayRef.backdropClick(),t=this._overlayRef.detachments();return G(e,this._parentMenu?this._parentMenu.closed:xu(),this._parentMenu?this._parentMenu._hovered().pipe(Tu(e=>e!==this._menuItemInstance),Tu(()=>this._menuOpen)):xu(),t)}_handleMousedown(e){$p(e)||(this._openedBy=0===e.button?\"mouse\":null,this.triggersSubmenu()&&e.preventDefault())}_handleKeydown(e){const t=e.keyCode;this.triggersSubmenu()&&(39===t&&\"ltr\"===this.dir||37===t&&\"rtl\"===this.dir)&&this.openMenu()}_handleClick(e){this.triggersSubmenu()?(e.stopPropagation(),this.openMenu()):this.toggleMenu()}_handleHover(){this.triggersSubmenu()&&(this._hoverSubscription=this._parentMenu._hovered().pipe(Tu(e=>e===this._menuItemInstance&&!e.disabled),bM(0,Yb)).subscribe(()=>{this._openedBy=\"mouse\",this.menu instanceof AM&&this.menu._isAnimating?this.menu._animationDone.pipe(cp(1),bM(0,Yb),Nb(this._parentMenu._hovered())).subscribe(()=>this.openMenu()):this.openMenu()}))}_getPortal(){return this._portal&&this._portal.templateRef===this.menu.templateRef||(this._portal=new uv(this.menu.templateRef,this._viewContainerRef)),this._portal}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Nv),Eo(Ka),Eo(Ml),Eo(jM),Eo(AM,8),Eo(EM,10),Eo(Gp,8),Eo(Up))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"mat-menu-trigger-for\",\"\"],[\"\",\"matMenuTriggerFor\",\"\"]],hostAttrs:[\"aria-haspopup\",\"true\",1,\"mat-menu-trigger\"],hostVars:2,hostBindings:function(e,t){1&e&&Uo(\"mousedown\",(function(e){return t._handleMousedown(e)}))(\"keydown\",(function(e){return t._handleKeydown(e)}))(\"click\",(function(e){return t._handleClick(e)})),2&e&&Co(\"aria-expanded\",t.menuOpen||null)(\"aria-controls\",t.menuOpen?t.menu.panelId:null)},inputs:{restoreFocus:[\"matMenuTriggerRestoreFocus\",\"restoreFocus\"],_deprecatedMatMenuTriggerFor:[\"mat-menu-trigger-for\",\"_deprecatedMatMenuTriggerFor\"],menu:[\"matMenuTriggerFor\",\"menu\"],menuData:[\"matMenuTriggerData\",\"menuData\"]},outputs:{menuOpened:\"menuOpened\",onMenuOpen:\"onMenuOpen\",menuClosed:\"menuClosed\",onMenuClose:\"onMenuClose\"},exportAs:[\"matMenuTrigger\"]}),e})(),VM=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[FM],imports:[py]}),e})(),WM=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[FM],imports:[[Mu,py,Ty,Bv,VM],VM]}),e})();const UM=[\"primaryValueBar\"];class $M{constructor(e){this._elementRef=e}}const BM=_y($M,\"primary\"),qM=new Ve(\"mat-progress-bar-location\",{providedIn:\"root\",factory:function(){const e=Xe(Nd),t=e?e.location:null;return{getPathname:()=>t?t.pathname+t.search:\"\"}}});let GM=0,JM=(()=>{class e extends BM{constructor(e,t,n,i){super(e),this._elementRef=e,this._ngZone=t,this._animationMode=n,this._isNoopAnimation=!1,this._value=0,this._bufferValue=0,this.animationEnd=new yc,this._animationEndSubscription=u.EMPTY,this.mode=\"determinate\",this.progressbarId=`mat-progress-bar-${GM++}`;const s=i?i.getPathname().split(\"#\")[0]:\"\";this._rectangleFillValue=`url('${s}#${this.progressbarId}')`,this._isNoopAnimation=\"NoopAnimations\"===n}get value(){return this._value}set value(e){this._value=KM(mp(e)||0)}get bufferValue(){return this._bufferValue}set bufferValue(e){this._bufferValue=KM(e||0)}_primaryTransform(){return{transform:`scaleX(${this.value/100})`}}_bufferTransform(){return\"buffer\"===this.mode?{transform:`scaleX(${this.bufferValue/100})`}:null}ngAfterViewInit(){this._ngZone.runOutsideAngular(()=>{const e=this._primaryValueBar.nativeElement;this._animationEndSubscription=Mb(e,\"transitionend\").pipe(Tu(t=>t.target===e)).subscribe(()=>{\"determinate\"!==this.mode&&\"buffer\"!==this.mode||this._ngZone.run(()=>this.animationEnd.next({value:this.value}))})})}ngOnDestroy(){this._animationEndSubscription.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(ld),Eo(sy,8),Eo(qM,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-progress-bar\"]],viewQuery:function(e,t){var n;1&e&&Ec(UM,!0),2&e&&Dc(n=Rc())&&(t._primaryValueBar=n.first)},hostAttrs:[\"role\",\"progressbar\",\"aria-valuemin\",\"0\",\"aria-valuemax\",\"100\",1,\"mat-progress-bar\"],hostVars:4,hostBindings:function(e,t){2&e&&(Co(\"aria-valuenow\",\"indeterminate\"===t.mode||\"query\"===t.mode?null:t.value)(\"mode\",t.mode),ua(\"_mat-animation-noopable\",t._isNoopAnimation))},inputs:{color:\"color\",mode:\"mode\",value:\"value\",bufferValue:\"bufferValue\"},outputs:{animationEnd:\"animationEnd\"},exportAs:[\"matProgressBar\"],features:[Ya],decls:9,vars:4,consts:[[\"width\",\"100%\",\"height\",\"4\",\"focusable\",\"false\",1,\"mat-progress-bar-background\",\"mat-progress-bar-element\"],[\"x\",\"4\",\"y\",\"0\",\"width\",\"8\",\"height\",\"4\",\"patternUnits\",\"userSpaceOnUse\",3,\"id\"],[\"cx\",\"2\",\"cy\",\"2\",\"r\",\"2\"],[\"width\",\"100%\",\"height\",\"100%\"],[1,\"mat-progress-bar-buffer\",\"mat-progress-bar-element\",3,\"ngStyle\"],[1,\"mat-progress-bar-primary\",\"mat-progress-bar-fill\",\"mat-progress-bar-element\",3,\"ngStyle\"],[\"primaryValueBar\",\"\"],[1,\"mat-progress-bar-secondary\",\"mat-progress-bar-fill\",\"mat-progress-bar-element\"]],template:function(e,t){1&e&&(kn(),Ro(0,\"svg\",0),Ro(1,\"defs\"),Ro(2,\"pattern\",1),jo(3,\"circle\",2),Ho(),Ho(),jo(4,\"rect\",3),Ho(),Sn(),jo(5,\"div\",4),jo(6,\"div\",5,6),jo(8,\"div\",7)),2&e&&(ys(2),Po(\"id\",t.progressbarId),ys(2),Co(\"fill\",t._rectangleFillValue),ys(1),Po(\"ngStyle\",t._bufferTransform()),ys(1),Po(\"ngStyle\",t._primaryTransform()))},directives:[vu],styles:['.mat-progress-bar{display:block;height:4px;overflow:hidden;position:relative;transition:opacity 250ms linear;width:100%}._mat-animation-noopable.mat-progress-bar{transition:none;animation:none}.mat-progress-bar .mat-progress-bar-element,.mat-progress-bar .mat-progress-bar-fill::after{height:100%;position:absolute;width:100%}.mat-progress-bar .mat-progress-bar-background{width:calc(100% + 10px)}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-background{display:none}.mat-progress-bar .mat-progress-bar-buffer{transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-buffer{border-top:solid 5px;opacity:.5}.mat-progress-bar .mat-progress-bar-secondary{display:none}.mat-progress-bar .mat-progress-bar-fill{animation:none;transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-fill{border-top:solid 4px}.mat-progress-bar .mat-progress-bar-fill::after{animation:none;content:\"\";display:inline-block;left:0}.mat-progress-bar[dir=rtl],[dir=rtl] .mat-progress-bar{transform:rotateY(180deg)}.mat-progress-bar[mode=query]{transform:rotateZ(180deg)}.mat-progress-bar[mode=query][dir=rtl],[dir=rtl] .mat-progress-bar[mode=query]{transform:rotateZ(180deg) rotateY(180deg)}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-fill,.mat-progress-bar[mode=query] .mat-progress-bar-fill{transition:none}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary,.mat-progress-bar[mode=query] .mat-progress-bar-primary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-translate 2000ms infinite linear;left:-145.166611%}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-primary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary,.mat-progress-bar[mode=query] .mat-progress-bar-secondary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-translate 2000ms infinite linear;left:-54.888891%;display:block}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-secondary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=buffer] .mat-progress-bar-background{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-background-scroll 250ms infinite linear;display:block}.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-buffer,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-background{animation:none;transition-duration:1ms}@keyframes mat-progress-bar-primary-indeterminate-translate{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(83.67142%)}100%{transform:translateX(200.611057%)}}@keyframes mat-progress-bar-primary-indeterminate-scale{0%{transform:scaleX(0.08)}36.65%{animation-timing-function:cubic-bezier(0.334731, 0.12482, 0.785844, 1);transform:scaleX(0.08)}69.15%{animation-timing-function:cubic-bezier(0.06, 0.11, 0.6, 1);transform:scaleX(0.661479)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-secondary-indeterminate-translate{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(37.651913%)}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(84.386165%)}100%{transform:translateX(160.277782%)}}@keyframes mat-progress-bar-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-background-scroll{to{transform:translateX(-8px)}}\\n'],encapsulation:2,changeDetection:0}),e})();function KM(e,t=0,n=100){return Math.max(t,Math.min(n,e))}let ZM=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu,py],py]}),e})();const QM=[\"trigger\"],XM=[\"panel\"];function ek(e,t){if(1&e&&(Ro(0,\"span\",8),Sa(1),Ho()),2&e){const e=Jo();ys(1),La(e.placeholder||\"\\xa0\")}}function tk(e,t){if(1&e&&(Ro(0,\"span\"),Sa(1),Ho()),2&e){const e=Jo(2);ys(1),La(e.triggerValue||\"\\xa0\")}}function nk(e,t){1&e&&ea(0,0,[\"*ngSwitchCase\",\"true\"])}function ik(e,t){1&e&&(Ro(0,\"span\",9),Do(1,tk,2,1,\"span\",10),Do(2,nk,1,0,void 0,11),Ho()),2&e&&(Po(\"ngSwitch\",!!Jo().customTrigger),ys(2),Po(\"ngSwitchCase\",!0))}function sk(e,t){if(1&e){const e=zo();Ro(0,\"div\",12),Ro(1,\"div\",13,14),Uo(\"@transformPanel.done\",(function(t){return en(e),Jo()._panelDoneAnimatingStream.next(t.toState)}))(\"keydown\",(function(t){return en(e),Jo()._handleKeydown(t)})),ea(3,1),Ho(),Ho()}if(2&e){const e=Jo();Po(\"@transformPanelWrap\",void 0),ys(1),\"mat-select-panel \",n=e._getPanelTheme(),\"\",fa(dt,ma,To(Qt(),\"mat-select-panel \",n,\"\"),!0),da(\"transform-origin\",e._transformOrigin)(\"font-size\",e._triggerFontSize,\"px\"),Po(\"ngClass\",e.panelClass)(\"@transformPanel\",e.multiple?\"showing-multiple\":\"showing\")}var n}const rk=[[[\"mat-select-trigger\"]],\"*\"],ok=[\"mat-select-trigger\",\"*\"],ak={transformPanelWrap:jf(\"transformPanelWrap\",[Uf(\"* => void\",Bf(\"@transformPanel\",[$f()],{optional:!0}))]),transformPanel:jf(\"transformPanel\",[Wf(\"void\",Vf({transform:\"scaleY(0.8)\",minWidth:\"100%\",opacity:0})),Wf(\"showing\",Vf({opacity:1,minWidth:\"calc(100% + 32px)\",transform:\"scaleY(1)\"})),Wf(\"showing-multiple\",Vf({opacity:1,minWidth:\"calc(100% + 64px)\",transform:\"scaleY(1)\"})),Uf(\"void => *\",Ff(\"120ms cubic-bezier(0, 0, 0.2, 1)\")),Uf(\"* => void\",Ff(\"100ms 25ms linear\",Vf({opacity:0})))])};let lk=0;const ck=new Ve(\"mat-select-scroll-strategy\"),dk=new Ve(\"MAT_SELECT_CONFIG\"),uk={provide:ck,deps:[Nv],useFactory:function(e){return()=>e.scrollStrategies.reposition()}};class hk{constructor(e,t){this.source=e,this.value=t}}class mk{constructor(e,t,n,i,s){this._elementRef=e,this._defaultErrorStateMatcher=t,this._parentForm=n,this._parentFormGroup=i,this.ngControl=s}}const pk=gy(yy(fy(by(mk))));let fk=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-select-trigger\"]]}),e})(),_k=(()=>{class e extends pk{constructor(e,t,n,i,s,r,o,a,l,c,d,u,h,m){super(s,i,o,a,c),this._viewportRuler=e,this._changeDetectorRef=t,this._ngZone=n,this._dir=r,this._parentFormField=l,this.ngControl=c,this._liveAnnouncer=h,this._panelOpen=!1,this._required=!1,this._scrollTop=0,this._multiple=!1,this._compareWith=(e,t)=>e===t,this._uid=`mat-select-${lk++}`,this._destroy=new L,this._triggerFontSize=0,this._onChange=()=>{},this._onTouched=()=>{},this._optionIds=\"\",this._transformOrigin=\"top\",this._panelDoneAnimatingStream=new L,this._offsetY=0,this._positions=[{originX:\"start\",originY:\"top\",overlayX:\"start\",overlayY:\"top\"},{originX:\"start\",originY:\"bottom\",overlayX:\"start\",overlayY:\"bottom\"}],this._disableOptionCentering=!1,this._focused=!1,this.controlType=\"mat-select\",this.ariaLabel=\"\",this.optionSelectionChanges=qv(()=>{const e=this.options;return e?e.changes.pipe(Rf(e),Wb(()=>G(...e.map(e=>e.onSelectionChange)))):this._ngZone.onStable.asObservable().pipe(cp(1),Wb(()=>this.optionSelectionChanges))}),this.openedChange=new yc,this._openedStream=this.openedChange.pipe(Tu(e=>e),H(()=>{})),this._closedStream=this.openedChange.pipe(Tu(e=>!e),H(()=>{})),this.selectionChange=new yc,this.valueChange=new yc,this.ngControl&&(this.ngControl.valueAccessor=this),this._scrollStrategyFactory=u,this._scrollStrategy=this._scrollStrategyFactory(),this.tabIndex=parseInt(d)||0,this.id=this.id,m&&(null!=m.disableOptionCentering&&(this.disableOptionCentering=m.disableOptionCentering),null!=m.typeaheadDebounceInterval&&(this.typeaheadDebounceInterval=m.typeaheadDebounceInterval))}get focused(){return this._focused||this._panelOpen}get placeholder(){return this._placeholder}set placeholder(e){this._placeholder=e,this.stateChanges.next()}get required(){return this._required}set required(e){this._required=hp(e),this.stateChanges.next()}get multiple(){return this._multiple}set multiple(e){if(this._selectionModel)throw Error(\"Cannot change `multiple` mode of select after initialization.\");this._multiple=hp(e)}get disableOptionCentering(){return this._disableOptionCentering}set disableOptionCentering(e){this._disableOptionCentering=hp(e)}get compareWith(){return this._compareWith}set compareWith(e){if(\"function\"!=typeof e)throw Error(\"`compareWith` must be a function.\");this._compareWith=e,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(e){e!==this._value&&(this.writeValue(e),this._value=e)}get typeaheadDebounceInterval(){return this._typeaheadDebounceInterval}set typeaheadDebounceInterval(e){this._typeaheadDebounceInterval=mp(e)}get id(){return this._id}set id(e){this._id=e||this._uid,this.stateChanges.next()}ngOnInit(){this._selectionModel=new iv(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe(Eb(),Nb(this._destroy)).subscribe(()=>{this.panelOpen?(this._scrollTop=0,this.openedChange.emit(!0)):(this.openedChange.emit(!1),this.overlayDir.offsetX=0,this._changeDetectorRef.markForCheck())}),this._viewportRuler.change().pipe(Nb(this._destroy)).subscribe(()=>{this._panelOpen&&(this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._changeDetectorRef.markForCheck())})}ngAfterContentInit(){this._initKeyManager(),this._selectionModel.changed.pipe(Nb(this._destroy)).subscribe(e=>{e.added.forEach(e=>e.select()),e.removed.forEach(e=>e.deselect())}),this.options.changes.pipe(Rf(null),Nb(this._destroy)).subscribe(()=>{this._resetOptions(),this._initializeSelection()})}ngDoCheck(){this.ngControl&&this.updateErrorState()}ngOnChanges(e){e.disabled&&this.stateChanges.next(),e.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this._typeaheadDebounceInterval)}ngOnDestroy(){this._destroy.next(),this._destroy.complete(),this.stateChanges.complete()}toggle(){this.panelOpen?this.close():this.open()}open(){!this.disabled&&this.options&&this.options.length&&!this._panelOpen&&(this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._triggerFontSize=parseInt(getComputedStyle(this.trigger.nativeElement).fontSize||\"0\"),this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._calculateOverlayPosition(),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck(),this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(()=>{this._triggerFontSize&&this.overlayDir.overlayRef&&this.overlayDir.overlayRef.overlayElement&&(this.overlayDir.overlayRef.overlayElement.style.fontSize=`${this._triggerFontSize}px`)}))}close(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?\"rtl\":\"ltr\"),this._changeDetectorRef.markForCheck(),this._onTouched())}writeValue(e){this.options&&this._setSelectionByValue(e)}registerOnChange(e){this._onChange=e}registerOnTouched(e){this._onTouched=e}setDisabledState(e){this.disabled=e,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}get panelOpen(){return this._panelOpen}get selected(){return this.multiple?this._selectionModel.selected:this._selectionModel.selected[0]}get triggerValue(){if(this.empty)return\"\";if(this._multiple){const e=this._selectionModel.selected.map(e=>e.viewValue);return this._isRtl()&&e.reverse(),e.join(\", \")}return this._selectionModel.selected[0].viewValue}_isRtl(){return!!this._dir&&\"rtl\"===this._dir.value}_handleKeydown(e){this.disabled||(this.panelOpen?this._handleOpenKeydown(e):this._handleClosedKeydown(e))}_handleClosedKeydown(e){const t=e.keyCode,n=40===t||38===t||37===t||39===t,i=13===t||32===t,s=this._keyManager;if(!s.isTyping()&&i&&!qm(e)||(this.multiple||e.altKey)&&n)e.preventDefault(),this.open();else if(!this.multiple){const n=this.selected;36===t||35===t?(36===t?s.setFirstItemActive():s.setLastItemActive(),e.preventDefault()):s.onKeydown(e);const i=this.selected;i&&n!==i&&this._liveAnnouncer.announce(i.viewValue,1e4)}}_handleOpenKeydown(e){const t=this._keyManager,n=e.keyCode,i=40===n||38===n,s=t.isTyping();if(36===n||35===n)e.preventDefault(),36===n?t.setFirstItemActive():t.setLastItemActive();else if(i&&e.altKey)e.preventDefault(),this.close();else if(s||13!==n&&32!==n||!t.activeItem||qm(e))if(!s&&this._multiple&&65===n&&e.ctrlKey){e.preventDefault();const t=this.options.some(e=>!e.disabled&&!e.selected);this.options.forEach(e=>{e.disabled||(t?e.select():e.deselect())})}else{const n=t.activeItemIndex;t.onKeydown(e),this._multiple&&i&&e.shiftKey&&t.activeItem&&t.activeItemIndex!==n&&t.activeItem._selectViaInteraction()}else e.preventDefault(),t.activeItem._selectViaInteraction()}_onFocus(){this.disabled||(this._focused=!0,this.stateChanges.next())}_onBlur(){this._focused=!1,this.disabled||this.panelOpen||(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_onAttached(){this.overlayDir.positionChange.pipe(cp(1)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this._calculateOverlayOffsetX(),this.panel.nativeElement.scrollTop=this._scrollTop})}_getPanelTheme(){return this._parentFormField?`mat-${this._parentFormField.color}`:\"\"}get empty(){return!this._selectionModel||this._selectionModel.isEmpty()}_initializeSelection(){Promise.resolve().then(()=>{this._setSelectionByValue(this.ngControl?this.ngControl.value:this._value),this.stateChanges.next()})}_setSelectionByValue(e){if(this.multiple&&e){if(!Array.isArray(e))throw Error(\"Value must be an array in multiple-selection mode.\");this._selectionModel.clear(),e.forEach(e=>this._selectValue(e)),this._sortValues()}else{this._selectionModel.clear();const t=this._selectValue(e);t?this._keyManager.setActiveItem(t):this.panelOpen||this._keyManager.setActiveItem(-1)}this._changeDetectorRef.markForCheck()}_selectValue(e){const t=this.options.find(t=>{try{return null!=t.value&&this._compareWith(t.value,e)}catch(n){return Si()&&console.warn(n),!1}});return t&&this._selectionModel.select(t),t}_initKeyManager(){this._keyManager=new Ip(this.options).withTypeAhead(this._typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?\"rtl\":\"ltr\").withAllowedModifierKeys([\"shiftKey\"]),this._keyManager.tabOut.pipe(Nb(this._destroy)).subscribe(()=>{!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction(),this.focus(),this.close()}),this._keyManager.change.pipe(Nb(this._destroy)).subscribe(()=>{this._panelOpen&&this.panel?this._scrollActiveOptionIntoView():this._panelOpen||this.multiple||!this._keyManager.activeItem||this._keyManager.activeItem._selectViaInteraction()})}_resetOptions(){const e=G(this.options.changes,this._destroy);this.optionSelectionChanges.pipe(Nb(e)).subscribe(e=>{this._onSelect(e.source,e.isUserInput),e.isUserInput&&!this.multiple&&this._panelOpen&&(this.close(),this.focus())}),G(...this.options.map(e=>e._stateChanges)).pipe(Nb(e)).subscribe(()=>{this._changeDetectorRef.markForCheck(),this.stateChanges.next()}),this._setOptionIds()}_onSelect(e,t){const n=this._selectionModel.isSelected(e);null!=e.value||this._multiple?(n!==e.selected&&(e.selected?this._selectionModel.select(e):this._selectionModel.deselect(e)),t&&this._keyManager.setActiveItem(e),this.multiple&&(this._sortValues(),t&&this.focus())):(e.deselect(),this._selectionModel.clear(),this._propagateChanges(e.value)),n!==this._selectionModel.isSelected(e)&&this._propagateChanges(),this.stateChanges.next()}_sortValues(){if(this.multiple){const e=this.options.toArray();this._selectionModel.sort((t,n)=>this.sortComparator?this.sortComparator(t,n,e):e.indexOf(t)-e.indexOf(n)),this.stateChanges.next()}}_propagateChanges(e){let t=null;t=this.multiple?this.selected.map(e=>e.value):this.selected?this.selected.value:e,this._value=t,this.valueChange.emit(t),this._onChange(t),this.selectionChange.emit(new hk(this,t)),this._changeDetectorRef.markForCheck()}_setOptionIds(){this._optionIds=this.options.map(e=>e.id).join(\" \")}_highlightCorrectOption(){this._keyManager&&(this.empty?this._keyManager.setFirstItemActive():this._keyManager.setActiveItem(this._selectionModel.selected[0]))}_scrollActiveOptionIntoView(){const e=this._keyManager.activeItemIndex||0,t=Ny(e,this.options,this.optionGroups);this.panel.nativeElement.scrollTop=function(e,t,n,i){const s=e*t;return sn+256?Math.max(0,s-256+t):n}(e+t,this._getItemHeight(),this.panel.nativeElement.scrollTop)}focus(e){this._elementRef.nativeElement.focus(e)}_getOptionIndex(e){return this.options.reduce((t,n,i)=>void 0!==t?t:e===n?i:void 0,void 0)}_calculateOverlayPosition(){const e=this._getItemHeight(),t=this._getItemCount(),n=Math.min(t*e,256),i=t*e-n;let s=this.empty?0:this._getOptionIndex(this._selectionModel.selected[0]);s+=Ny(s,this.options,this.optionGroups);const r=n/2;this._scrollTop=this._calculateOverlayScroll(s,r,i),this._offsetY=this._calculateOverlayOffsetY(s,r,i),this._checkOverlayWithinViewport(i)}_calculateOverlayScroll(e,t,n){const i=this._getItemHeight();return Math.min(Math.max(0,i*e-t+i/2),n)}_getAriaLabel(){return this.ariaLabelledby?null:this.ariaLabel||this.placeholder}_getAriaLabelledby(){return this.ariaLabelledby?this.ariaLabelledby:this._parentFormField&&this._parentFormField._hasFloatingLabel()&&!this._getAriaLabel()&&this._parentFormField._labelId||null}_getAriaActiveDescendant(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}_calculateOverlayOffsetX(){const e=this.overlayDir.overlayRef.overlayElement.getBoundingClientRect(),t=this._viewportRuler.getViewportSize(),n=this._isRtl(),i=this.multiple?56:32;let s;if(this.multiple)s=40;else{let e=this._selectionModel.selected[0]||this.options.first;s=e&&e.group?32:16}n||(s*=-1);const r=0-(e.left+s-(n?i:0)),o=e.right+s-t.width+(n?0:i);r>0?s+=r+8:o>0&&(s-=o+8),this.overlayDir.offsetX=Math.round(s),this.overlayDir.overlayRef.updatePosition()}_calculateOverlayOffsetY(e,t,n){const i=this._getItemHeight(),s=(i-this._triggerRect.height)/2,r=Math.floor(256/i);let o;return this._disableOptionCentering?0:(o=0===this._scrollTop?e*i:this._scrollTop===n?(e-(this._getItemCount()-r))*i+(i-(this._getItemCount()*i-256)%i):t-i/2,Math.round(-1*o-s))}_checkOverlayWithinViewport(e){const t=this._getItemHeight(),n=this._viewportRuler.getViewportSize(),i=this._triggerRect.top-8,s=n.height-this._triggerRect.bottom-8,r=Math.abs(this._offsetY),o=Math.min(this._getItemCount()*t,256)-r-this._triggerRect.height;o>s?this._adjustPanelUp(o,s):r>i?this._adjustPanelDown(r,i,e):this._transformOrigin=this._getOriginBasedOnOption()}_adjustPanelUp(e,t){const n=Math.round(e-t);this._scrollTop-=n,this._offsetY-=n,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop<=0&&(this._scrollTop=0,this._offsetY=0,this._transformOrigin=\"50% bottom 0px\")}_adjustPanelDown(e,t,n){const i=Math.round(e-t);if(this._scrollTop+=i,this._offsetY+=i,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop>=n)return this._scrollTop=n,this._offsetY=0,void(this._transformOrigin=\"50% top 0px\")}_getOriginBasedOnOption(){const e=this._getItemHeight(),t=(e-this._triggerRect.height)/2;return`50% ${Math.abs(this._offsetY)-t+e/2}px 0px`}_getItemCount(){return this.options.length+this.optionGroups.length}_getItemHeight(){return 3*this._triggerFontSize}setDescribedByIds(e){this._ariaDescribedby=e.join(\" \")}onContainerClick(){this.focus(),this.open()}get shouldLabelFloat(){return this._panelOpen||!this.empty}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ov),Eo(Qr),Eo(ld),Eo(vy),Eo(Ka),Eo(Gp,8),Eo(bm,8),Eo(Im,8),Eo(dM,8),Eo(wh,10),Oo(\"tabindex\"),Eo(ck),Eo(Vp),Eo(dk,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-select\"]],contentQueries:function(e,t,n){var i;1&e&&(Ic(n,fk,!0),Ic(n,Fy,!0),Ic(n,Py,!0)),2&e&&(Dc(i=Rc())&&(t.customTrigger=i.first),Dc(i=Rc())&&(t.options=i),Dc(i=Rc())&&(t.optionGroups=i))},viewQuery:function(e,t){var n;1&e&&(Ec(QM,!0),Ec(XM,!0),Ec(Uv,!0)),2&e&&(Dc(n=Rc())&&(t.trigger=n.first),Dc(n=Rc())&&(t.panel=n.first),Dc(n=Rc())&&(t.overlayDir=n.first))},hostAttrs:[\"role\",\"listbox\",1,\"mat-select\"],hostVars:19,hostBindings:function(e,t){1&e&&Uo(\"keydown\",(function(e){return t._handleKeydown(e)}))(\"focus\",(function(){return t._onFocus()}))(\"blur\",(function(){return t._onBlur()})),2&e&&(Co(\"id\",t.id)(\"tabindex\",t.tabIndex)(\"aria-label\",t._getAriaLabel())(\"aria-labelledby\",t._getAriaLabelledby())(\"aria-required\",t.required.toString())(\"aria-disabled\",t.disabled.toString())(\"aria-invalid\",t.errorState)(\"aria-owns\",t.panelOpen?t._optionIds:null)(\"aria-multiselectable\",t.multiple)(\"aria-describedby\",t._ariaDescribedby||null)(\"aria-activedescendant\",t._getAriaActiveDescendant()),ua(\"mat-select-disabled\",t.disabled)(\"mat-select-invalid\",t.errorState)(\"mat-select-required\",t.required)(\"mat-select-empty\",t.empty))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",tabIndex:\"tabIndex\",ariaLabel:[\"aria-label\",\"ariaLabel\"],id:\"id\",disableOptionCentering:\"disableOptionCentering\",typeaheadDebounceInterval:\"typeaheadDebounceInterval\",placeholder:\"placeholder\",required:\"required\",multiple:\"multiple\",compareWith:\"compareWith\",value:\"value\",panelClass:\"panelClass\",ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],errorStateMatcher:\"errorStateMatcher\",sortComparator:\"sortComparator\"},outputs:{openedChange:\"openedChange\",_openedStream:\"opened\",_closedStream:\"closed\",selectionChange:\"selectionChange\",valueChange:\"valueChange\"},exportAs:[\"matSelect\"],features:[Ba([{provide:Qw,useExisting:e},{provide:jy,useExisting:e}]),Ya,Ra],ngContentSelectors:ok,decls:9,vars:9,consts:[[\"cdk-overlay-origin\",\"\",\"aria-hidden\",\"true\",1,\"mat-select-trigger\",3,\"click\"],[\"origin\",\"cdkOverlayOrigin\",\"trigger\",\"\"],[1,\"mat-select-value\",3,\"ngSwitch\"],[\"class\",\"mat-select-placeholder\",4,\"ngSwitchCase\"],[\"class\",\"mat-select-value-text\",3,\"ngSwitch\",4,\"ngSwitchCase\"],[1,\"mat-select-arrow-wrapper\"],[1,\"mat-select-arrow\"],[\"cdk-connected-overlay\",\"\",\"cdkConnectedOverlayLockPosition\",\"\",\"cdkConnectedOverlayHasBackdrop\",\"\",\"cdkConnectedOverlayBackdropClass\",\"cdk-overlay-transparent-backdrop\",3,\"cdkConnectedOverlayScrollStrategy\",\"cdkConnectedOverlayOrigin\",\"cdkConnectedOverlayOpen\",\"cdkConnectedOverlayPositions\",\"cdkConnectedOverlayMinWidth\",\"cdkConnectedOverlayOffsetY\",\"backdropClick\",\"attach\",\"detach\"],[1,\"mat-select-placeholder\"],[1,\"mat-select-value-text\",3,\"ngSwitch\"],[4,\"ngSwitchDefault\"],[4,\"ngSwitchCase\"],[1,\"mat-select-panel-wrap\"],[3,\"ngClass\",\"keydown\"],[\"panel\",\"\"]],template:function(e,t){if(1&e&&(Zo(rk),Ro(0,\"div\",0,1),Uo(\"click\",(function(){return t.toggle()})),Ro(3,\"div\",2),Do(4,ek,2,1,\"span\",3),Do(5,ik,3,2,\"span\",4),Ho(),Ro(6,\"div\",5),jo(7,\"div\",6),Ho(),Ho(),Do(8,sk,4,10,\"ng-template\",7),Uo(\"backdropClick\",(function(){return t.close()}))(\"attach\",(function(){return t._onAttached()}))(\"detach\",(function(){return t.close()}))),2&e){const e=Yo(1);ys(3),Po(\"ngSwitch\",t.empty),ys(1),Po(\"ngSwitchCase\",!0),ys(1),Po(\"ngSwitchCase\",!1),ys(3),Po(\"cdkConnectedOverlayScrollStrategy\",t._scrollStrategy)(\"cdkConnectedOverlayOrigin\",e)(\"cdkConnectedOverlayOpen\",t.panelOpen)(\"cdkConnectedOverlayPositions\",t._positions)(\"cdkConnectedOverlayMinWidth\",null==t._triggerRect?null:t._triggerRect.width)(\"cdkConnectedOverlayOffsetY\",t._offsetY)}},directives:[Wv,gu,yu,Uv,bu,cu],styles:[\".mat-select{display:inline-block;width:100%;outline:none}.mat-select-trigger{display:inline-table;cursor:pointer;position:relative;box-sizing:border-box}.mat-select-disabled .mat-select-trigger{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-select-value{display:table-cell;max-width:0;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-select-arrow-wrapper{display:table-cell;vertical-align:middle}.mat-form-field-appearance-fill .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-outline .mat-select-arrow-wrapper{transform:translateY(-25%)}.mat-form-field-appearance-standard.mat-form-field-has-label .mat-select:not(.mat-select-empty) .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:none}.mat-select-arrow{width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;margin:0 4px}.mat-select-panel-wrap{flex-basis:100%}.mat-select-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;padding-top:0;padding-bottom:0;max-height:256px;min-width:100%;border-radius:4px}.cdk-high-contrast-active .mat-select-panel{outline:solid 1px}.mat-select-panel .mat-optgroup-label,.mat-select-panel .mat-option{font-size:inherit;line-height:3em;height:3em}.mat-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-form-field-flex{cursor:pointer}.mat-form-field-type-mat-select .mat-form-field-label{width:calc(100% - 18px)}.mat-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable .mat-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-select-placeholder{color:transparent;-webkit-text-fill-color:transparent;transition:none;display:block}\\n\"],encapsulation:2,data:{animation:[ak.transformPanelWrap,ak.transformPanel]},changeDetection:0}),e})(),gk=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[uk],imports:[[Mu,Bv,zy,py],uM,zy,py]}),e})();const yk=[\"*\"];function bk(e,t){if(1&e){const e=zo();Ro(0,\"div\",2),Uo(\"click\",(function(){return en(e),Jo()._onBackdropClicked()})),Ho()}2&e&&ua(\"mat-drawer-shown\",Jo()._isShowingBackdrop())}function vk(e,t){1&e&&(Ro(0,\"mat-drawer-content\"),ea(1,2),Ho())}const wk=[[[\"mat-drawer\"]],[[\"mat-drawer-content\"]],\"*\"],Mk=[\"mat-drawer\",\"mat-drawer-content\",\"*\"];function kk(e,t){if(1&e){const e=zo();Ro(0,\"div\",2),Uo(\"click\",(function(){return en(e),Jo()._onBackdropClicked()})),Ho()}2&e&&ua(\"mat-drawer-shown\",Jo()._isShowingBackdrop())}function Sk(e,t){1&e&&(Ro(0,\"mat-sidenav-content\",3),ea(1,2),Ho())}const Lk=[[[\"mat-sidenav\"]],[[\"mat-sidenav-content\"]],\"*\"],xk=[\"mat-sidenav\",\"mat-sidenav-content\",\"*\"],Ck={transformDrawer:jf(\"transform\",[Wf(\"open, open-instant\",Vf({transform:\"none\",visibility:\"visible\"})),Wf(\"void\",Vf({\"box-shadow\":\"none\",visibility:\"hidden\"})),Uf(\"void => open-instant\",Ff(\"0ms\")),Uf(\"void <=> open, open-instant => void\",Ff(\"400ms cubic-bezier(0.25, 0.8, 0.25, 1)\"))])};function Tk(e){throw Error(`A drawer was already declared for 'position=\"${e}\"'`)}const Dk=new Ve(\"MAT_DRAWER_DEFAULT_AUTOSIZE\",{providedIn:\"root\",factory:function(){return!1}}),Yk=new Ve(\"MAT_DRAWER_CONTAINER\");let Ek=(()=>{class e extends rv{constructor(e,t,n,i,s){super(n,i,s),this._changeDetectorRef=e,this._container=t}ngAfterContentInit(){this._container._contentMarginChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Qr),Eo(Ce(()=>Ik)),Eo(Ka),Eo(sv),Eo(ld))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-drawer-content\"]],hostAttrs:[1,\"mat-drawer-content\"],hostVars:4,hostBindings:function(e,t){2&e&&da(\"margin-left\",t._container._contentMargins.left,\"px\")(\"margin-right\",t._container._contentMargins.right,\"px\")},features:[Ya],ngContentSelectors:yk,decls:1,vars:0,template:function(e,t){1&e&&(Zo(),ea(0))},encapsulation:2,changeDetection:0}),e})(),Ok=(()=>{class e{constructor(e,t,n,i,s,r,o){this._elementRef=e,this._focusTrapFactory=t,this._focusMonitor=n,this._platform=i,this._ngZone=s,this._doc=r,this._container=o,this._elementFocusedBeforeDrawerWasOpened=null,this._enableAnimations=!1,this._position=\"start\",this._mode=\"over\",this._disableClose=!1,this._opened=!1,this._animationStarted=new L,this._animationEnd=new L,this._animationState=\"void\",this.openedChange=new yc(!0),this._destroyed=new L,this.onPositionChanged=new yc,this._modeChanged=new L,this.openedChange.subscribe(e=>{e?(this._doc&&(this._elementFocusedBeforeDrawerWasOpened=this._doc.activeElement),this._takeFocus()):this._restoreFocus()}),this._ngZone.runOutsideAngular(()=>{Mb(this._elementRef.nativeElement,\"keydown\").pipe(Tu(e=>27===e.keyCode&&!this.disableClose&&!qm(e)),Nb(this._destroyed)).subscribe(e=>this._ngZone.run(()=>{this.close(),e.stopPropagation(),e.preventDefault()}))}),this._animationEnd.pipe(Eb((e,t)=>e.fromState===t.fromState&&e.toState===t.toState)).subscribe(e=>{const{fromState:t,toState:n}=e;(0===n.indexOf(\"open\")&&\"void\"===t||\"void\"===n&&0===t.indexOf(\"open\"))&&this.openedChange.emit(this._opened)})}get position(){return this._position}set position(e){(e=\"end\"===e?\"end\":\"start\")!=this._position&&(this._position=e,this.onPositionChanged.emit())}get mode(){return this._mode}set mode(e){this._mode=e,this._updateFocusTrapState(),this._modeChanged.next()}get disableClose(){return this._disableClose}set disableClose(e){this._disableClose=hp(e)}get autoFocus(){const e=this._autoFocus;return null==e?\"side\"!==this.mode:e}set autoFocus(e){this._autoFocus=hp(e)}get opened(){return this._opened}set opened(e){this.toggle(hp(e))}get _openedStream(){return this.openedChange.pipe(Tu(e=>e),H(()=>{}))}get openedStart(){return this._animationStarted.pipe(Tu(e=>e.fromState!==e.toState&&0===e.toState.indexOf(\"open\")),H(()=>{}))}get _closedStream(){return this.openedChange.pipe(Tu(e=>!e),H(()=>{}))}get closedStart(){return this._animationStarted.pipe(Tu(e=>e.fromState!==e.toState&&\"void\"===e.toState),H(()=>{}))}_takeFocus(){this.autoFocus&&this._focusTrap&&this._focusTrap.focusInitialElementWhenReady().then(e=>{e||\"function\"!=typeof this._elementRef.nativeElement.focus||this._elementRef.nativeElement.focus()})}_restoreFocus(){if(!this.autoFocus)return;const e=this._doc&&this._doc.activeElement;e&&this._elementRef.nativeElement.contains(e)&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,this._openedVia):this._elementRef.nativeElement.blur()),this._elementFocusedBeforeDrawerWasOpened=null,this._openedVia=null}ngAfterContentInit(){this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState()}ngAfterContentChecked(){this._platform.isBrowser&&(this._enableAnimations=!0)}ngOnDestroy(){this._focusTrap&&this._focusTrap.destroy(),this._animationStarted.complete(),this._animationEnd.complete(),this._modeChanged.complete(),this._destroyed.next(),this._destroyed.complete()}open(e){return this.toggle(!0,e)}close(){return this.toggle(!1)}toggle(e=!this.opened,t=\"program\"){return this._opened=e,e?(this._animationState=this._enableAnimations?\"open\":\"open-instant\",this._openedVia=t):(this._animationState=\"void\",this._restoreFocus()),this._updateFocusTrapState(),new Promise(e=>{this.openedChange.pipe(cp(1)).subscribe(t=>e(t?\"open\":\"close\"))})}get _width(){return this._elementRef.nativeElement&&this._elementRef.nativeElement.offsetWidth||0}_updateFocusTrapState(){this._focusTrap&&(this._focusTrap.enabled=this.opened&&\"side\"!==this.mode)}_animationStartListener(e){this._animationStarted.next(e)}_animationDoneListener(e){this._animationEnd.next(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Fp),Eo(Up),Eo(bp),Eo(ld),Eo(Nd,8),Eo(Yk,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-drawer\"]],hostAttrs:[\"tabIndex\",\"-1\",1,\"mat-drawer\"],hostVars:12,hostBindings:function(e,t){1&e&&$o(\"@transform.start\",(function(e){return t._animationStartListener(e)}))(\"@transform.done\",(function(e){return t._animationDoneListener(e)})),2&e&&(Co(\"align\",null),Ta(\"@transform\",t._animationState),ua(\"mat-drawer-end\",\"end\"===t.position)(\"mat-drawer-over\",\"over\"===t.mode)(\"mat-drawer-push\",\"push\"===t.mode)(\"mat-drawer-side\",\"side\"===t.mode)(\"mat-drawer-opened\",t.opened))},inputs:{position:\"position\",mode:\"mode\",disableClose:\"disableClose\",autoFocus:\"autoFocus\",opened:\"opened\"},outputs:{openedChange:\"openedChange\",onPositionChanged:\"positionChanged\",_openedStream:\"opened\",openedStart:\"openedStart\",_closedStream:\"closed\",closedStart:\"closedStart\"},exportAs:[\"matDrawer\"],ngContentSelectors:yk,decls:2,vars:0,consts:[[1,\"mat-drawer-inner-container\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"div\",0),ea(1),Ho())},encapsulation:2,data:{animation:[Ck.transformDrawer]},changeDetection:0}),e})(),Ik=(()=>{class e{constructor(e,t,n,i,s,r=!1,o){this._dir=e,this._element=t,this._ngZone=n,this._changeDetectorRef=i,this._animationMode=o,this._drawers=new vc,this.backdropClick=new yc,this._destroyed=new L,this._doCheckSubject=new L,this._contentMargins={left:null,right:null},this._contentMarginChanges=new L,e&&e.change.pipe(Nb(this._destroyed)).subscribe(()=>{this._validateDrawers(),this.updateContentMargins()}),s.change().pipe(Nb(this._destroyed)).subscribe(()=>this.updateContentMargins()),this._autosize=r}get start(){return this._start}get end(){return this._end}get autosize(){return this._autosize}set autosize(e){this._autosize=hp(e)}get hasBackdrop(){return null==this._backdropOverride?!this._start||\"side\"!==this._start.mode||!this._end||\"side\"!==this._end.mode:this._backdropOverride}set hasBackdrop(e){this._backdropOverride=null==e?null:hp(e)}get scrollable(){return this._userContent||this._content}ngAfterContentInit(){this._allDrawers.changes.pipe(Rf(this._allDrawers),Nb(this._destroyed)).subscribe(e=>{this._drawers.reset(e.filter(e=>!e._container||e._container===this)),this._drawers.notifyOnChanges()}),this._drawers.changes.pipe(Rf(null)).subscribe(()=>{this._validateDrawers(),this._drawers.forEach(e=>{this._watchDrawerToggle(e),this._watchDrawerPosition(e),this._watchDrawerMode(e)}),(!this._drawers.length||this._isDrawerOpen(this._start)||this._isDrawerOpen(this._end))&&this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),this._doCheckSubject.pipe(np(10),Nb(this._destroyed)).subscribe(()=>this.updateContentMargins())}ngOnDestroy(){this._contentMarginChanges.complete(),this._doCheckSubject.complete(),this._drawers.destroy(),this._destroyed.next(),this._destroyed.complete()}open(){this._drawers.forEach(e=>e.open())}close(){this._drawers.forEach(e=>e.close())}updateContentMargins(){let e=0,t=0;if(this._left&&this._left.opened)if(\"side\"==this._left.mode)e+=this._left._width;else if(\"push\"==this._left.mode){const n=this._left._width;e+=n,t-=n}if(this._right&&this._right.opened)if(\"side\"==this._right.mode)t+=this._right._width;else if(\"push\"==this._right.mode){const n=this._right._width;t+=n,e-=n}e=e||null,t=t||null,e===this._contentMargins.left&&t===this._contentMargins.right||(this._contentMargins={left:e,right:t},this._ngZone.run(()=>this._contentMarginChanges.next(this._contentMargins)))}ngDoCheck(){this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular(()=>this._doCheckSubject.next())}_watchDrawerToggle(e){e._animationStarted.pipe(Tu(e=>e.fromState!==e.toState),Nb(this._drawers.changes)).subscribe(e=>{\"open-instant\"!==e.toState&&\"NoopAnimations\"!==this._animationMode&&this._element.nativeElement.classList.add(\"mat-drawer-transition\"),this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),\"side\"!==e.mode&&e.openedChange.pipe(Nb(this._drawers.changes)).subscribe(()=>this._setContainerClass(e.opened))}_watchDrawerPosition(e){e&&e.onPositionChanged.pipe(Nb(this._drawers.changes)).subscribe(()=>{this._ngZone.onMicrotaskEmpty.asObservable().pipe(cp(1)).subscribe(()=>{this._validateDrawers()})})}_watchDrawerMode(e){e&&e._modeChanged.pipe(Nb(G(this._drawers.changes,this._destroyed))).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()})}_setContainerClass(e){const t=this._element.nativeElement.classList,n=\"mat-drawer-container-has-open\";e?t.add(n):t.remove(n)}_validateDrawers(){this._start=this._end=null,this._drawers.forEach(e=>{\"end\"==e.position?(null!=this._end&&Tk(\"end\"),this._end=e):(null!=this._start&&Tk(\"start\"),this._start=e)}),this._right=this._left=null,this._dir&&\"rtl\"===this._dir.value?(this._left=this._end,this._right=this._start):(this._left=this._start,this._right=this._end)}_isPushed(){return this._isDrawerOpen(this._start)&&\"over\"!=this._start.mode||this._isDrawerOpen(this._end)&&\"over\"!=this._end.mode}_onBackdropClicked(){this.backdropClick.emit(),this._closeModalDrawer()}_closeModalDrawer(){[this._start,this._end].filter(e=>e&&!e.disableClose&&this._canHaveBackdrop(e)).forEach(e=>e.close())}_isShowingBackdrop(){return this._isDrawerOpen(this._start)&&this._canHaveBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._canHaveBackdrop(this._end)}_canHaveBackdrop(e){return\"side\"!==e.mode||!!this._backdropOverride}_isDrawerOpen(e){return null!=e&&e.opened}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Gp,8),Eo(Ka),Eo(ld),Eo(Qr),Eo(ov),Eo(Dk),Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-drawer-container\"]],contentQueries:function(e,t,n){var i;1&e&&(Ic(n,Ek,!0),Ic(n,Ok,!0)),2&e&&(Dc(i=Rc())&&(t._content=i.first),Dc(i=Rc())&&(t._allDrawers=i))},viewQuery:function(e,t){var n;1&e&&Ec(Ek,!0),2&e&&Dc(n=Rc())&&(t._userContent=n.first)},hostAttrs:[1,\"mat-drawer-container\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"mat-drawer-container-explicit-backdrop\",t._backdropOverride)},inputs:{autosize:\"autosize\",hasBackdrop:\"hasBackdrop\"},outputs:{backdropClick:\"backdropClick\"},exportAs:[\"matDrawerContainer\"],features:[Ba([{provide:Yk,useExisting:e}])],ngContentSelectors:Mk,decls:4,vars:2,consts:[[\"class\",\"mat-drawer-backdrop\",3,\"mat-drawer-shown\",\"click\",4,\"ngIf\"],[4,\"ngIf\"],[1,\"mat-drawer-backdrop\",3,\"click\"]],template:function(e,t){1&e&&(Zo(wk),Do(0,bk,1,2,\"div\",0),ea(1),ea(2,1),Do(3,vk,2,0,\"mat-drawer-content\",1)),2&e&&(Po(\"ngIf\",t.hasBackdrop),ys(3),Po(\"ngIf\",!t._content))},directives:[mu,Ek],styles:[\".mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\\n\"],encapsulation:2,changeDetection:0}),e})(),Pk=(()=>{class e extends Ek{constructor(e,t,n,i,s){super(e,t,n,i,s)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Qr),Eo(Ce(()=>Hk)),Eo(Ka),Eo(sv),Eo(ld))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-sidenav-content\"]],hostAttrs:[1,\"mat-drawer-content\",\"mat-sidenav-content\"],hostVars:4,hostBindings:function(e,t){2&e&&da(\"margin-left\",t._container._contentMargins.left,\"px\")(\"margin-right\",t._container._contentMargins.right,\"px\")},features:[Ya],ngContentSelectors:yk,decls:1,vars:0,template:function(e,t){1&e&&(Zo(),ea(0))},encapsulation:2,changeDetection:0}),e})(),Ak=(()=>{class e extends Ok{constructor(){super(...arguments),this._fixedInViewport=!1,this._fixedTopGap=0,this._fixedBottomGap=0}get fixedInViewport(){return this._fixedInViewport}set fixedInViewport(e){this._fixedInViewport=hp(e)}get fixedTopGap(){return this._fixedTopGap}set fixedTopGap(e){this._fixedTopGap=mp(e)}get fixedBottomGap(){return this._fixedBottomGap}set fixedBottomGap(e){this._fixedBottomGap=mp(e)}}return e.\\u0275fac=function(t){return Rk(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-sidenav\"]],hostAttrs:[\"tabIndex\",\"-1\",1,\"mat-drawer\",\"mat-sidenav\"],hostVars:17,hostBindings:function(e,t){2&e&&(Co(\"align\",null),da(\"top\",t.fixedInViewport?t.fixedTopGap:null,\"px\")(\"bottom\",t.fixedInViewport?t.fixedBottomGap:null,\"px\"),ua(\"mat-drawer-end\",\"end\"===t.position)(\"mat-drawer-over\",\"over\"===t.mode)(\"mat-drawer-push\",\"push\"===t.mode)(\"mat-drawer-side\",\"side\"===t.mode)(\"mat-drawer-opened\",t.opened)(\"mat-sidenav-fixed\",t.fixedInViewport))},inputs:{fixedInViewport:\"fixedInViewport\",fixedTopGap:\"fixedTopGap\",fixedBottomGap:\"fixedBottomGap\"},exportAs:[\"matSidenav\"],features:[Ya],ngContentSelectors:yk,decls:2,vars:0,consts:[[1,\"mat-drawer-inner-container\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"div\",0),ea(1),Ho())},encapsulation:2,data:{animation:[Ck.transformDrawer]},changeDetection:0}),e})();const Rk=li(Ak);let Hk=(()=>{class e extends Ik{}return e.\\u0275fac=function(t){return jk(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-sidenav-container\"]],contentQueries:function(e,t,n){var i;1&e&&(Ic(n,Pk,!0),Ic(n,Ak,!0)),2&e&&(Dc(i=Rc())&&(t._content=i.first),Dc(i=Rc())&&(t._allDrawers=i))},hostAttrs:[1,\"mat-drawer-container\",\"mat-sidenav-container\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"mat-drawer-container-explicit-backdrop\",t._backdropOverride)},exportAs:[\"matSidenavContainer\"],features:[Ba([{provide:Yk,useExisting:e}]),Ya],ngContentSelectors:xk,decls:4,vars:2,consts:[[\"class\",\"mat-drawer-backdrop\",3,\"mat-drawer-shown\",\"click\",4,\"ngIf\"],[\"cdkScrollable\",\"\",4,\"ngIf\"],[1,\"mat-drawer-backdrop\",3,\"click\"],[\"cdkScrollable\",\"\"]],template:function(e,t){1&e&&(Zo(Lk),Do(0,kk,1,2,\"div\",0),ea(1),ea(2,1),Do(3,Sk,2,0,\"mat-sidenav-content\",1)),2&e&&(Po(\"ngIf\",t.hasBackdrop),ys(3),Po(\"ngIf\",!t._content))},directives:[mu,Pk,rv],styles:[\".mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\\n\"],encapsulation:2,changeDetection:0}),e})();const jk=li(Hk);let Fk=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu,py,av,vp],py]}),e})();const Nk=[\"thumbContainer\"],zk=[\"toggleBar\"],Vk=[\"input\"],Wk=function(){return{enterDuration:150}},Uk=[\"*\"],$k=new Ve(\"mat-slide-toggle-default-options\",{providedIn:\"root\",factory:()=>({disableToggleValue:!1})});let Bk=0;const qk={provide:uh,useExisting:Ce(()=>Zk),multi:!0};class Gk{constructor(e,t){this.source=e,this.checked=t}}class Jk{constructor(e){this._elementRef=e}}const Kk=yy(_y(gy(fy(Jk)),\"accent\"));let Zk=(()=>{class e extends Kk{constructor(e,t,n,i,s,r,o,a){super(e),this._focusMonitor=t,this._changeDetectorRef=n,this.defaults=r,this._animationMode=o,this._onChange=e=>{},this._onTouched=()=>{},this._uniqueId=`mat-slide-toggle-${++Bk}`,this._required=!1,this._checked=!1,this.name=null,this.id=this._uniqueId,this.labelPosition=\"after\",this.ariaLabel=null,this.ariaLabelledby=null,this.change=new yc,this.toggleChange=new yc,this.dragChange=new yc,this.tabIndex=parseInt(i)||0}get required(){return this._required}set required(e){this._required=hp(e)}get checked(){return this._checked}set checked(e){this._checked=hp(e),this._changeDetectorRef.markForCheck()}get inputId(){return`${this.id||this._uniqueId}-input`}ngAfterContentInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(e=>{\"keyboard\"===e||\"program\"===e?this._inputElement.nativeElement.focus():e||Promise.resolve().then(()=>this._onTouched())})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}_onChangeEvent(e){e.stopPropagation(),this.toggleChange.emit(),this.defaults.disableToggleValue?this._inputElement.nativeElement.checked=this.checked:(this.checked=this._inputElement.nativeElement.checked,this._emitChangeEvent())}_onInputClick(e){e.stopPropagation()}writeValue(e){this.checked=!!e}registerOnChange(e){this._onChange=e}registerOnTouched(e){this._onTouched=e}setDisabledState(e){this.disabled=e,this._changeDetectorRef.markForCheck()}focus(e){this._focusMonitor.focusVia(this._inputElement,\"keyboard\",e)}toggle(){this.checked=!this.checked,this._onChange(this.checked)}_emitChangeEvent(){this._onChange(this.checked),this.change.emit(new Gk(this,this.checked))}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Up),Eo(Qr),Oo(\"tabindex\"),Eo(ld),Eo($k),Eo(sy,8),Eo(Gp,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-slide-toggle\"]],viewQuery:function(e,t){var n;1&e&&(Ec(Nk,!0),Ec(zk,!0),Ec(Vk,!0)),2&e&&(Dc(n=Rc())&&(t._thumbEl=n.first),Dc(n=Rc())&&(t._thumbBarEl=n.first),Dc(n=Rc())&&(t._inputElement=n.first))},hostAttrs:[1,\"mat-slide-toggle\"],hostVars:12,hostBindings:function(e,t){2&e&&(Ca(\"id\",t.id),Co(\"tabindex\",t.disabled?null:-1)(\"aria-label\",null)(\"aria-labelledby\",null),ua(\"mat-checked\",t.checked)(\"mat-disabled\",t.disabled)(\"mat-slide-toggle-label-before\",\"before\"==t.labelPosition)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\",name:\"name\",id:\"id\",labelPosition:\"labelPosition\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],required:\"required\",checked:\"checked\"},outputs:{change:\"change\",toggleChange:\"toggleChange\",dragChange:\"dragChange\"},exportAs:[\"matSlideToggle\"],features:[Ba([qk]),Ya],ngContentSelectors:Uk,decls:16,vars:18,consts:[[1,\"mat-slide-toggle-label\"],[\"label\",\"\"],[1,\"mat-slide-toggle-bar\"],[\"toggleBar\",\"\"],[\"type\",\"checkbox\",\"role\",\"switch\",1,\"mat-slide-toggle-input\",\"cdk-visually-hidden\",3,\"id\",\"required\",\"tabIndex\",\"checked\",\"disabled\",\"change\",\"click\"],[\"input\",\"\"],[1,\"mat-slide-toggle-thumb-container\"],[\"thumbContainer\",\"\"],[1,\"mat-slide-toggle-thumb\"],[\"mat-ripple\",\"\",1,\"mat-slide-toggle-ripple\",\"mat-focus-indicator\",3,\"matRippleTrigger\",\"matRippleDisabled\",\"matRippleCentered\",\"matRippleRadius\",\"matRippleAnimation\"],[1,\"mat-ripple-element\",\"mat-slide-toggle-persistent-ripple\"],[1,\"mat-slide-toggle-content\",3,\"cdkObserveContent\"],[\"labelContent\",\"\"],[2,\"display\",\"none\"]],template:function(e,t){if(1&e&&(Zo(),Ro(0,\"label\",0,1),Ro(2,\"div\",2,3),Ro(4,\"input\",4,5),Uo(\"change\",(function(e){return t._onChangeEvent(e)}))(\"click\",(function(e){return t._onInputClick(e)})),Ho(),Ro(6,\"div\",6,7),jo(8,\"div\",8),Ro(9,\"div\",9),jo(10,\"div\",10),Ho(),Ho(),Ho(),Ro(11,\"span\",11,12),Uo(\"cdkObserveContent\",(function(){return t._onLabelTextChange()})),Ro(13,\"span\",13),Sa(14,\"\\xa0\"),Ho(),ea(15),Ho(),Ho()),2&e){const e=Yo(1),n=Yo(12);Co(\"for\",t.inputId),ys(2),ua(\"mat-slide-toggle-bar-no-side-margin\",!n.textContent||!n.textContent.trim()),ys(2),Po(\"id\",t.inputId)(\"required\",t.required)(\"tabIndex\",t.tabIndex)(\"checked\",t.checked)(\"disabled\",t.disabled),Co(\"name\",t.name)(\"aria-checked\",t.checked.toString())(\"aria-label\",t.ariaLabel)(\"aria-labelledby\",t.ariaLabelledby),ys(5),Po(\"matRippleTrigger\",e)(\"matRippleDisabled\",t.disableRipple||t.disabled)(\"matRippleCentered\",!0)(\"matRippleRadius\",20)(\"matRippleAnimation\",gc(17,Wk))}},directives:[Cy,Yp],styles:[\".mat-slide-toggle{display:inline-block;height:24px;max-width:100%;line-height:24px;white-space:nowrap;outline:none;-webkit-tap-highlight-color:transparent}.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(16px, 0, 0)}[dir=rtl] .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(-16px, 0, 0)}.mat-slide-toggle.mat-disabled{opacity:.38}.mat-slide-toggle.mat-disabled .mat-slide-toggle-label,.mat-slide-toggle.mat-disabled .mat-slide-toggle-thumb-container{cursor:default}.mat-slide-toggle-label{display:flex;flex:1;flex-direction:row;align-items:center;height:inherit;cursor:pointer}.mat-slide-toggle-content{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-slide-toggle-label-before .mat-slide-toggle-label{order:1}.mat-slide-toggle-label-before .mat-slide-toggle-bar{order:2}[dir=rtl] .mat-slide-toggle-label-before .mat-slide-toggle-bar,.mat-slide-toggle-bar{margin-right:8px;margin-left:0}[dir=rtl] .mat-slide-toggle-bar,.mat-slide-toggle-label-before .mat-slide-toggle-bar{margin-left:8px;margin-right:0}.mat-slide-toggle-bar-no-side-margin{margin-left:0;margin-right:0}.mat-slide-toggle-thumb-container{position:absolute;z-index:1;width:20px;height:20px;top:-3px;left:0;transform:translate3d(0, 0, 0);transition:all 80ms linear;transition-property:transform}._mat-animation-noopable .mat-slide-toggle-thumb-container{transition:none}[dir=rtl] .mat-slide-toggle-thumb-container{left:auto;right:0}.mat-slide-toggle-thumb{height:20px;width:20px;border-radius:50%}.mat-slide-toggle-bar{position:relative;width:36px;height:14px;flex-shrink:0;border-radius:8px}.mat-slide-toggle-input{bottom:0;left:10px}[dir=rtl] .mat-slide-toggle-input{left:auto;right:10px}.mat-slide-toggle-bar,.mat-slide-toggle-thumb{transition:all 80ms linear;transition-property:background-color;transition-delay:50ms}._mat-animation-noopable .mat-slide-toggle-bar,._mat-animation-noopable .mat-slide-toggle-thumb{transition:none}.mat-slide-toggle .mat-slide-toggle-ripple{position:absolute;top:calc(50% - 20px);left:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}.mat-slide-toggle .mat-slide-toggle-ripple .mat-ripple-element:not(.mat-slide-toggle-persistent-ripple){opacity:.12}.mat-slide-toggle-persistent-ripple{width:100%;height:100%;transform:none}.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:.04}.mat-slide-toggle:not(.mat-disabled).cdk-keyboard-focused .mat-slide-toggle-persistent-ripple{opacity:.12}.mat-slide-toggle-persistent-ripple,.mat-slide-toggle.mat-disabled .mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:0}@media(hover: none){.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{display:none}}.cdk-high-contrast-active .mat-slide-toggle-thumb,.cdk-high-contrast-active .mat-slide-toggle-bar{border:1px solid}.cdk-high-contrast-active .mat-slide-toggle.cdk-keyboard-focused .mat-slide-toggle-bar{outline:2px dotted;outline-offset:5px}\\n\"],encapsulation:2,changeDetection:0}),e})(),Qk=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),Xk=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Qk,Ty,py,Ep],Qk,py]}),e})();const eS={};function tS(...e){let t=null,n=null;return C(e[e.length-1])&&(n=e.pop()),\"function\"==typeof e[e.length-1]&&(t=e.pop()),1===e.length&&l(e[0])&&(e=e[0]),q(e,n).lift(new nS(t))}class nS{constructor(e){this.resultSelector=e}call(e,t){return t.subscribe(new iS(e,this.resultSelector))}}class iS extends R{constructor(e,t){super(e),this.resultSelector=t,this.active=0,this.values=[],this.observables=[]}_next(e){this.values.push(eS),this.observables.push(e)}_complete(){const e=this.observables,t=e.length;if(0===t)this.destination.complete();else{this.active=t,this.toRespond=t;for(let n=0;n{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Bv,_v,Mu,Ky,py],py]}),e})();const rS=[\"*\",[[\"mat-toolbar-row\"]]],oS=[\"*\",\"mat-toolbar-row\"];class aS{constructor(e){this._elementRef=e}}const lS=_y(aS);let cS=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-toolbar-row\"]],hostAttrs:[1,\"mat-toolbar-row\"],exportAs:[\"matToolbarRow\"]}),e})(),dS=(()=>{class e extends lS{constructor(e,t,n){super(e),this._platform=t,this._document=n}ngAfterViewInit(){Si()&&this._platform.isBrowser&&(this._checkToolbarMixedModes(),this._toolbarRows.changes.subscribe(()=>this._checkToolbarMixedModes()))}_checkToolbarMixedModes(){this._toolbarRows.length&&Array.from(this._elementRef.nativeElement.childNodes).filter(e=>!(e.classList&&e.classList.contains(\"mat-toolbar-row\"))).filter(e=>e.nodeType!==(this._document?this._document.COMMENT_NODE:8)).some(e=>!(!e.textContent||!e.textContent.trim()))&&function(){throw Error(\"MatToolbar: Attempting to combine different toolbar modes. Either specify multiple `` elements explicitly or just place content inside of a `` for a single row.\")}()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(bp),Eo(Nd))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-toolbar\"]],contentQueries:function(e,t,n){var i;1&e&&Ic(n,cS,!0),2&e&&Dc(i=Rc())&&(t._toolbarRows=i)},hostAttrs:[1,\"mat-toolbar\"],hostVars:4,hostBindings:function(e,t){2&e&&ua(\"mat-toolbar-multiple-rows\",t._toolbarRows.length>0)(\"mat-toolbar-single-row\",0===t._toolbarRows.length)},inputs:{color:\"color\"},exportAs:[\"matToolbar\"],features:[Ya],ngContentSelectors:oS,decls:2,vars:0,template:function(e,t){1&e&&(Zo(rS),ea(0),ea(1,1))},styles:[\".cdk-high-contrast-active .mat-toolbar{outline:solid 1px}.mat-toolbar-row,.mat-toolbar-single-row{display:flex;box-sizing:border-box;padding:0 16px;width:100%;flex-direction:row;align-items:center;white-space:nowrap}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}\\n\"],encapsulation:2,changeDetection:0}),e})(),uS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[py],py]}),e})();class hS extends L{constructor(e){super(),this._value=e}get value(){return this.getValue()}_subscribe(e){const t=super._subscribe(e);return t&&!t.closed&&e.next(this._value),t}getValue(){if(this.hasError)throw this.thrownError;if(this.closed)throw new M;return this._value}next(e){super.next(this._value=e)}}const mS=new v(g);function pS(){return mS}function fS(...e){return t=>{let n;return\"function\"==typeof e[e.length-1]&&(n=e.pop()),t.lift(new _S(e,n))}}class _S{constructor(e,t){this.observables=e,this.project=t}call(e,t){return t.subscribe(new gS(e,this.observables,this.project))}}class gS extends R{constructor(e,t,n){super(e),this.observables=t,this.project=n,this.toRespond=[];const i=t.length;this.values=new Array(i);for(let s=0;s0){const e=r.indexOf(n);-1!==e&&r.splice(e,1)}}notifyComplete(){}_next(e){if(0===this.toRespond.length){const t=[e,...this.values];this.project?this._tryProject(t):this.destination.next(t)}}_tryProject(e){let t;try{t=this.project.apply(this,e)}catch(n){return void this.destination.error(n)}this.destination.next(t)}}const yS=[\"aria-label\",$localize`:@@ngb.alert.close␟f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8␟7819314041543176992:Close`];function bS(e,t){if(1&e){const e=zo();Ro(0,\"button\",1),nc(1,yS),Uo(\"click\",(function(){return en(e),Jo().closeHandler()})),Ro(2,\"span\",2),Sa(3,\"\\xd7\"),Ho(),Ho()}}const vS=[\"*\"];function wS(e,t){if(1&e){const e=zo();Ro(0,\"li\",7),Uo(\"click\",(function(){en(e);const n=t.$implicit,i=Jo(2);return i.select(n.id,i.NgbSlideEventSource.INDICATOR)})),Ho()}if(2&e){const e=t.$implicit,n=Jo(2);ua(\"active\",e.id===n.activeId),Po(\"id\",e.id)}}function MS(e,t){if(1&e&&(Ro(0,\"ol\",5),Do(1,wS,1,3,\"li\",6),Ho()),2&e){const e=Jo();ys(1),Po(\"ngForOf\",e.slides)}}function kS(e,t){}function SS(e,t){if(1&e&&(Ro(0,\"div\",8),Do(1,kS,0,0,\"ng-template\",9),Ho()),2&e){const e=t.$implicit,n=Jo();ua(\"active\",e.id===n.activeId),ys(1),Po(\"ngTemplateOutlet\",e.tplRef)}}var LS,xS;function CS(e,t){if(1&e){const e=zo();Ro(0,\"a\",10),Uo(\"click\",(function(){en(e);const t=Jo();return t.prev(t.NgbSlideEventSource.ARROW_LEFT)})),jo(1,\"span\",11),Ro(2,\"span\",12),tc(3,LS),Ho(),Ho()}}function TS(e,t){if(1&e){const e=zo();Ro(0,\"a\",13),Uo(\"click\",(function(){en(e);const t=Jo();return t.next(t.NgbSlideEventSource.ARROW_RIGHT)})),jo(1,\"span\",14),Ro(2,\"span\",12),tc(3,xS),Ho(),Ho()}}function DS(e){return null!=e}LS=$localize`:@@ngb.carousel.previous␟680d5c75b7fd8d37961083608b9fcdc4167b4c43␟4452427314943113135:Previous`,xS=$localize`:@@ngb.carousel.next␟f732c304c7433e5a83ffcd862c3dce709a0f4982␟3885497195825665706:Next`,$localize`:@@ngb.datepicker.previous-month␟c3b08b07b5ab98e7cdcf18df39355690ab7d3884␟8586908745456864217:Previous month`,$localize`:@@ngb.datepicker.previous-month␟c3b08b07b5ab98e7cdcf18df39355690ab7d3884␟8586908745456864217:Previous month`,$localize`:@@ngb.datepicker.next-month␟4bd046985cfe13040d5ef0cd881edce0968a111a␟3628374603023447227:Next month`,$localize`:@@ngb.datepicker.next-month␟4bd046985cfe13040d5ef0cd881edce0968a111a␟3628374603023447227:Next month`,$localize`:@@ngb.datepicker.select-month␟1dbc84807f35518112f62e5775d1daebd3d8462b␟2253869508135064750:Select month`,$localize`:@@ngb.datepicker.select-month␟1dbc84807f35518112f62e5775d1daebd3d8462b␟2253869508135064750:Select month`,$localize`:@@ngb.datepicker.select-year␟8ceb09d002bf0c5d1cac171dfbffe1805d2b3962␟8852264961585484321:Select year`,$localize`:@@ngb.datepicker.select-year␟8ceb09d002bf0c5d1cac171dfbffe1805d2b3962␟8852264961585484321:Select year`,$localize`:@@ngb.pagination.first␟656506dfd46380956a655f919f1498d018f75ca0␟6867721956102594380:««`,$localize`:@@ngb.pagination.previous␟6e52b6ee77a4848d899dd21b591c6fd499e3aef3␟6479320895410098858:«`,$localize`:@@ngb.pagination.next␟ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d␟5458177150283468089:»`,$localize`:@@ngb.pagination.last␟49f27a460bc97e7e00be5b37098bfa79884fc7d9␟5277020320267646988:»»`,$localize`:@@ngb.pagination.first-aria␟f2f852318759c6396b5d3d17031d53817d7b38cc␟2241508602425256033:First`,$localize`:@@ngb.pagination.previous-aria␟680d5c75b7fd8d37961083608b9fcdc4167b4c43␟4452427314943113135:Previous`,$localize`:@@ngb.pagination.next-aria␟f732c304c7433e5a83ffcd862c3dce709a0f4982␟3885497195825665706:Next`,$localize`:@@ngb.pagination.last-aria␟5c729788ba138508aca1bec050b610f7bf81db3e␟4882268002141858767:Last`,$localize`:@@ngb.progressbar.value␟04d611d19c117c60c9e14d0a04399a027184bc77␟5214781723415385277:${\"\\ufffd0\\ufffd\"}:INTERPOLATION:%`,$localize`:@@ngb.timepicker.HH␟ce676ab1d6d98f85c836381cf100a4a91ef95a1f␟4043638465245303811:HH`,$localize`:@@ngb.timepicker.hours␟3bbce5fef7e1151da052a4e529453edb340e3912␟8070396816726827304:Hours`,$localize`:@@ngb.timepicker.MM␟72c8edf6a50068a05bde70991e36b1e881f4ca54␟1647282246509919852:MM`,$localize`:@@ngb.timepicker.minutes␟41e62daa962947c0d23ded0981975d1bddf0bf38␟5531237363767747080:Minutes`,$localize`:@@ngb.timepicker.increment-hours␟cb74bc1d625a6c1742f0d7d47306cf495780c218␟5939278348542933629:Increment hours`,$localize`:@@ngb.timepicker.decrement-hours␟147c7a19429da7d999e247d22e33fee370b1691b␟3651829882940481818:Decrement hours`,$localize`:@@ngb.timepicker.increment-minutes␟f5a4a3bc05e053f6732475d0e74875ec01c3a348␟180147720391025024:Increment minutes`,$localize`:@@ngb.timepicker.decrement-minutes␟c1a6899e529c096da5b660385d4e77fe1f7ad271␟7447789825403243588:Decrement minutes`,$localize`:@@ngb.timepicker.SS␟ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3␟3628127143071124194:SS`,$localize`:@@ngb.timepicker.seconds␟4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c␟8874012390997067175:Seconds`,$localize`:@@ngb.timepicker.increment-seconds␟912322ecee7d659d04dcf494a70e22e49d334b26␟5364772110539092174:Increment seconds`,$localize`:@@ngb.timepicker.decrement-seconds␟5db47ac104294243a70eb9124fbea9d0004ddf69␟753633511487974857:Decrement seconds`,$localize`:@@ngb.timepicker.PM␟8d6e691e10306c1b34c6b26805151aaea320ef7f␟3564199131264287502:${\"\\ufffd0\\ufffd\"}:INTERPOLATION:`,$localize`:@@ngb.timepicker.AM␟69a1f176a93998876952adac57c3bc3863b6105e␟4592818992509942761:${\"\\ufffd0\\ufffd\"}:INTERPOLATION:`,$localize`:@@ngb.toast.close-aria␟f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8␟7819314041543176992:Close`,\"undefined\"==typeof Element||Element.prototype.closest||(Element.prototype.matches||(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector),Element.prototype.closest=function(e){let t=this;if(!document.documentElement.contains(t))return null;do{if(t.matches(e))return t;t=t.parentElement||t.parentNode}while(null!==t&&1===t.nodeType);return null});let YS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),ES=(()=>{class e{constructor(){this.dismissible=!0,this.type=\"warning\"}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})(),OS=(()=>{class e{constructor(e,t,n){this._renderer=t,this._element=n,this.close=new yc,this.dismissible=e.dismissible,this.type=e.type}closeHandler(){this.close.emit(null)}ngOnChanges(e){const t=e.type;t&&!t.firstChange&&(this._renderer.removeClass(this._element.nativeElement,`alert-${t.previousValue}`),this._renderer.addClass(this._element.nativeElement,`alert-${t.currentValue}`))}ngOnInit(){this._renderer.addClass(this._element.nativeElement,`alert-${this.type}`)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ES),Eo(el),Eo(Ka))},e.\\u0275cmp=yt({type:e,selectors:[[\"ngb-alert\"]],hostAttrs:[\"role\",\"alert\",1,\"alert\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"alert-dismissible\",t.dismissible)},inputs:{dismissible:\"dismissible\",type:\"type\"},outputs:{close:\"close\"},features:[Ra],ngContentSelectors:vS,decls:2,vars:1,consts:[[\"type\",\"button\",\"class\",\"close\",\"aria-label\",\"Close\",3,\"click\",4,\"ngIf\"],[\"type\",\"button\",1,\"close\",3,\"click\",6,\"aria-label\"],[\"aria-hidden\",\"true\"]],template:function(e,t){1&e&&(Zo(),ea(0),Do(1,bS,4,0,\"button\",0)),2&e&&(ys(1),Po(\"ngIf\",t.dismissible))},directives:[mu],styles:[\"ngb-alert{display:block}\"],encapsulation:2,changeDetection:0}),e})(),IS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),PS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),AS=(()=>{class e{constructor(){this.interval=5e3,this.wrap=!0,this.keyboard=!0,this.pauseOnHover=!0,this.showNavigationArrows=!0,this.showNavigationIndicators=!0}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})(),RS=0,HS=(()=>{class e{constructor(e){this.tplRef=e,this.id=`ngb-slide-${RS++}`}}return e.\\u0275fac=function(t){return new(t||e)(Eo(vl))},e.\\u0275dir=St({type:e,selectors:[[\"ng-template\",\"ngbSlide\",\"\"]],inputs:{id:\"id\"}}),e})(),jS=(()=>{class e{constructor(e,t,n,i){this._platformId=t,this._ngZone=n,this._cd=i,this.NgbSlideEventSource=NS,this._destroy$=new L,this._interval$=new hS(0),this._mouseHover$=new hS(!1),this._pauseOnHover$=new hS(!1),this._pause$=new hS(!1),this._wrap$=new hS(!1),this.slide=new yc,this.interval=e.interval,this.wrap=e.wrap,this.keyboard=e.keyboard,this.pauseOnHover=e.pauseOnHover,this.showNavigationArrows=e.showNavigationArrows,this.showNavigationIndicators=e.showNavigationIndicators}set interval(e){this._interval$.next(e)}get interval(){return this._interval$.value}set wrap(e){this._wrap$.next(e)}get wrap(){return this._wrap$.value}set pauseOnHover(e){this._pauseOnHover$.next(e)}get pauseOnHover(){return this._pauseOnHover$.value}mouseEnter(){this._mouseHover$.next(!0)}mouseLeave(){this._mouseHover$.next(!1)}ngAfterContentInit(){ku(this._platformId)&&this._ngZone.runOutsideAngular(()=>{const e=tS(this.slide.pipe(H(e=>e.current),Rf(this.activeId)),this._wrap$,this.slides.changes.pipe(Rf(null))).pipe(H(([e,t])=>{const n=this.slides.toArray(),i=this._getSlideIdxById(e);return t?n.length>1:ie||t&&n||!s?0:i),Eb(),Wb(e=>e>0?Hb(e,e):mS),Nb(this._destroy$)).subscribe(()=>this._ngZone.run(()=>this.next(NS.TIMER)))}),this.slides.changes.pipe(Nb(this._destroy$)).subscribe(()=>this._cd.markForCheck())}ngAfterContentChecked(){let e=this._getSlideById(this.activeId);this.activeId=e?e.id:this.slides.length?this.slides.first.id:null}ngOnDestroy(){this._destroy$.next()}select(e,t){this._cycleToSelected(e,this._getSlideEventDirection(this.activeId,e),t)}prev(e){this._cycleToSelected(this._getPrevSlide(this.activeId),FS.RIGHT,e)}next(e){this._cycleToSelected(this._getNextSlide(this.activeId),FS.LEFT,e)}pause(){this._pause$.next(!0)}cycle(){this._pause$.next(!1)}_cycleToSelected(e,t,n){let i=this._getSlideById(e);i&&i.id!==this.activeId&&(this.slide.emit({prev:this.activeId,current:i.id,direction:t,paused:this._pause$.value,source:n}),this.activeId=i.id),this._cd.markForCheck()}_getSlideEventDirection(e,t){return this._getSlideIdxById(e)>this._getSlideIdxById(t)?FS.RIGHT:FS.LEFT}_getSlideById(e){return this.slides.find(t=>t.id===e)}_getSlideIdxById(e){return this.slides.toArray().indexOf(this._getSlideById(e))}_getNextSlide(e){const t=this.slides.toArray(),n=this._getSlideIdxById(e);return n===t.length-1?this.wrap?t[0].id:t[t.length-1].id:t[n+1].id}_getPrevSlide(e){const t=this.slides.toArray(),n=this._getSlideIdxById(e);return 0===n?this.wrap?t[t.length-1].id:t[0].id:t[n-1].id}}return e.\\u0275fac=function(t){return new(t||e)(Eo(AS),Eo(Bc),Eo(ld),Eo(Qr))},e.\\u0275cmp=yt({type:e,selectors:[[\"ngb-carousel\"]],contentQueries:function(e,t,n){var i;1&e&&Ic(n,HS,!1),2&e&&Dc(i=Rc())&&(t.slides=i)},hostAttrs:[\"tabIndex\",\"0\",1,\"carousel\",\"slide\"],hostVars:2,hostBindings:function(e,t){1&e&&Uo(\"keydown.arrowLeft\",(function(){return t.keyboard&&t.prev(t.NgbSlideEventSource.ARROW_LEFT)}))(\"keydown.arrowRight\",(function(){return t.keyboard&&t.next(t.NgbSlideEventSource.ARROW_RIGHT)}))(\"mouseenter\",(function(){return t.mouseEnter()}))(\"mouseleave\",(function(){return t.mouseLeave()})),2&e&&da(\"display\",\"block\")},inputs:{interval:\"interval\",wrap:\"wrap\",keyboard:\"keyboard\",pauseOnHover:\"pauseOnHover\",showNavigationArrows:\"showNavigationArrows\",showNavigationIndicators:\"showNavigationIndicators\",activeId:\"activeId\"},outputs:{slide:\"slide\"},exportAs:[\"ngbCarousel\"],decls:5,vars:4,consts:[[\"class\",\"carousel-indicators\",4,\"ngIf\"],[1,\"carousel-inner\"],[\"class\",\"carousel-item\",3,\"active\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"carousel-control-prev\",\"role\",\"button\",3,\"click\",4,\"ngIf\"],[\"class\",\"carousel-control-next\",\"role\",\"button\",3,\"click\",4,\"ngIf\"],[1,\"carousel-indicators\"],[3,\"id\",\"active\",\"click\",4,\"ngFor\",\"ngForOf\"],[3,\"id\",\"click\"],[1,\"carousel-item\"],[3,\"ngTemplateOutlet\"],[\"role\",\"button\",1,\"carousel-control-prev\",3,\"click\"],[\"aria-hidden\",\"true\",1,\"carousel-control-prev-icon\"],[1,\"sr-only\"],[\"role\",\"button\",1,\"carousel-control-next\",3,\"click\"],[\"aria-hidden\",\"true\",1,\"carousel-control-next-icon\"]],template:function(e,t){1&e&&(Do(0,MS,2,1,\"ol\",0),Ro(1,\"div\",1),Do(2,SS,2,3,\"div\",2),Ho(),Do(3,CS,4,0,\"a\",3),Do(4,TS,4,0,\"a\",4)),2&e&&(Po(\"ngIf\",t.showNavigationIndicators),ys(2),Po(\"ngForOf\",t.slides),ys(1),Po(\"ngIf\",t.showNavigationArrows),ys(1),Po(\"ngIf\",t.showNavigationArrows))},directives:[mu,uu,wu],encapsulation:2,changeDetection:0}),e})();const FS={LEFT:\"left\",RIGHT:\"right\"},NS={TIMER:\"timer\",ARROW_LEFT:\"arrowLeft\",ARROW_RIGHT:\"arrowRight\",INDICATOR:\"indicator\"};let zS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),VS=(()=>{class e{constructor(){this.collapsed=!1}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngbCollapse\",\"\"]],hostVars:4,hostBindings:function(e,t){2&e&&ua(\"collapse\",!0)(\"show\",!t.collapsed)},inputs:{collapsed:[\"ngbCollapse\",\"collapsed\"]},exportAs:[\"ngbCollapse\"]}),e})(),WS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();const US=function(){var e={Tab:9,Enter:13,Escape:27,Space:32,PageUp:33,PageDown:34,End:35,Home:36,ArrowLeft:37,ArrowUp:38,ArrowRight:39,ArrowDown:40};return e[e.Tab]=\"Tab\",e[e.Enter]=\"Enter\",e[e.Escape]=\"Escape\",e[e.Space]=\"Space\",e[e.PageUp]=\"PageUp\",e[e.PageDown]=\"PageDown\",e[e.End]=\"End\",e[e.Home]=\"Home\",e[e.ArrowLeft]=\"ArrowLeft\",e[e.ArrowUp]=\"ArrowUp\",e[e.ArrowRight]=\"ArrowRight\",e[e.ArrowDown]=\"ArrowDown\",e}();\"undefined\"!=typeof navigator&&navigator.userAgent&&navigator;const $S=[\"a[href]\",\"button:not([disabled])\",'input:not([disabled]):not([type=\"hidden\"])',\"select:not([disabled])\",\"textarea:not([disabled])\",\"[contenteditable]\",'[tabindex]:not([tabindex=\"-1\"])'].join(\", \");function BS(e){const t=Array.from(e.querySelectorAll($S)).filter(e=>-1!==e.tabIndex);return[t[0],t[t.length-1]]}let qS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu,$m]]}),e})(),GS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),JS=(()=>{class e{constructor(){this.backdrop=!0,this.keyboard=!0}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})();class KS{constructor(e,t,n){this.nodes=e,this.viewRef=t,this.componentRef=n}}const ZS=()=>{};let QS=(()=>{class e{constructor(e){this._document=e}compensate(){return this._isPresent()?this._adjustBody(this._getWidth()):ZS}_adjustBody(e){const t=this._document.body,n=t.style.paddingRight,i=parseFloat(window.getComputedStyle(t)[\"padding-right\"]);return t.style[\"padding-right\"]=`${i+e}px`,()=>t.style[\"padding-right\"]=n}_isPresent(){const e=this._document.body.getBoundingClientRect();return e.left+e.right{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"ngb-modal-backdrop\"]],hostAttrs:[2,\"z-index\",\"1050\"],hostVars:2,hostBindings:function(e,t){2&e&&ha(\"modal-backdrop fade show\"+(t.backdropClass?\" \"+t.backdropClass:\"\"))},inputs:{backdropClass:\"backdropClass\"},decls:0,vars:0,template:function(e,t){},encapsulation:2}),e})();class eL{close(e){}dismiss(e){}}class tL{constructor(e,t,n,i){this._windowCmptRef=e,this._contentRef=t,this._backdropCmptRef=n,this._beforeDismiss=i,e.instance.dismissEvent.subscribe(e=>{this.dismiss(e)}),this.result=new Promise((e,t)=>{this._resolve=e,this._reject=t}),this.result.then(null,()=>{})}get componentInstance(){if(this._contentRef&&this._contentRef.componentRef)return this._contentRef.componentRef.instance}close(e){this._windowCmptRef&&(this._resolve(e),this._removeModalElements())}_dismiss(e){this._reject(e),this._removeModalElements()}dismiss(e){if(this._windowCmptRef)if(this._beforeDismiss){const t=this._beforeDismiss();t&&t.then?t.then(t=>{!1!==t&&this._dismiss(e)},()=>{}):!1!==t&&this._dismiss(e)}else this._dismiss(e)}_removeModalElements(){const e=this._windowCmptRef.location.nativeElement;if(e.parentNode.removeChild(e),this._windowCmptRef.destroy(),this._backdropCmptRef){const e=this._backdropCmptRef.location.nativeElement;e.parentNode.removeChild(e),this._backdropCmptRef.destroy()}this._contentRef&&this._contentRef.viewRef&&this._contentRef.viewRef.destroy(),this._windowCmptRef=null,this._backdropCmptRef=null,this._contentRef=null}}const nL=function(){var e={BACKDROP_CLICK:0,ESC:1};return e[e.BACKDROP_CLICK]=\"BACKDROP_CLICK\",e[e.ESC]=\"ESC\",e}();let iL=(()=>{class e{constructor(e,t,n){this._document=e,this._elRef=t,this._zone=n,this.backdrop=!0,this.keyboard=!0,this.dismissEvent=new yc,n.runOutsideAngular(()=>{Mb(this._elRef.nativeElement,\"keydown\").pipe(Nb(this.dismissEvent),Tu(e=>e.which===US.Escape&&this.keyboard)).subscribe(e=>requestAnimationFrame(()=>{e.defaultPrevented||n.run(()=>this.dismiss(nL.ESC))}));const e=Mb(this._elRef.nativeElement,\"mousedown\").pipe(Nb(this.dismissEvent),H(e=>!0===this.backdrop&&this._elRef.nativeElement===e.target));Mb(this._elRef.nativeElement,\"mouseup\").pipe(Nb(this.dismissEvent),fS(e),Tu(([e,t])=>t)).subscribe(()=>this._zone.run(()=>this.dismiss(nL.BACKDROP_CLICK)))})}dismiss(e){this.dismissEvent.emit(e)}ngOnInit(){this._elWithFocus=this._document.activeElement}ngAfterViewInit(){if(!this._elRef.nativeElement.contains(document.activeElement)){const e=this._elRef.nativeElement.querySelector(\"[ngbAutofocus]\"),t=BS(this._elRef.nativeElement)[0];(e||t||this._elRef.nativeElement).focus()}}ngOnDestroy(){const e=this._document.body,t=this._elWithFocus;let n;n=t&&t.focus&&e.contains(t)?t:e,this._zone.runOutsideAngular(()=>{setTimeout(()=>n.focus()),this._elWithFocus=null})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Nd),Eo(Ka),Eo(ld))},e.\\u0275cmp=yt({type:e,selectors:[[\"ngb-modal-window\"]],hostAttrs:[\"role\",\"dialog\",\"tabindex\",\"-1\"],hostVars:4,hostBindings:function(e,t){2&e&&(Co(\"aria-modal\",!0)(\"aria-labelledby\",t.ariaLabelledBy),ha(\"modal fade show d-block\"+(t.windowClass?\" \"+t.windowClass:\"\")))},inputs:{backdrop:\"backdrop\",keyboard:\"keyboard\",ariaLabelledBy:\"ariaLabelledBy\",centered:\"centered\",scrollable:\"scrollable\",size:\"size\",windowClass:\"windowClass\"},outputs:{dismissEvent:\"dismiss\"},ngContentSelectors:vS,decls:3,vars:2,consts:[[\"role\",\"document\"],[1,\"modal-content\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"div\",0),Ro(1,\"div\",1),ea(2),Ho(),Ho()),2&e&&ha(\"modal-dialog\"+(t.size?\" modal-\"+t.size:\"\")+(t.centered?\" modal-dialog-centered\":\"\")+(t.scrollable?\" modal-dialog-scrollable\":\"\"))},styles:[\"ngb-modal-window .component-host-scrollable{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;overflow:hidden}\"],encapsulation:2}),e})(),sL=(()=>{class e{constructor(e,t,n,i,s,r){this._applicationRef=e,this._injector=t,this._document=n,this._scrollBar=i,this._rendererFactory=s,this._ngZone=r,this._activeWindowCmptHasChanged=new L,this._ariaHiddenValues=new Map,this._backdropAttributes=[\"backdropClass\"],this._modalRefs=[],this._windowAttributes=[\"ariaLabelledBy\",\"backdrop\",\"centered\",\"keyboard\",\"scrollable\",\"size\",\"windowClass\"],this._windowCmpts=[],this._activeWindowCmptHasChanged.subscribe(()=>{if(this._windowCmpts.length){const e=this._windowCmpts[this._windowCmpts.length-1];((e,t,n,i=!1)=>{this._ngZone.runOutsideAngular(()=>{const e=Mb(t,\"focusin\").pipe(Nb(n),H(e=>e.target));Mb(t,\"keydown\").pipe(Nb(n),Tu(e=>e.which===US.Tab),fS(e)).subscribe(([e,n])=>{const[i,s]=BS(t);n!==i&&n!==t||!e.shiftKey||(s.focus(),e.preventDefault()),n!==s||e.shiftKey||(i.focus(),e.preventDefault())}),i&&Mb(t,\"click\").pipe(Nb(n),fS(e),H(e=>e[1])).subscribe(e=>e.focus())})})(0,e.location.nativeElement,this._activeWindowCmptHasChanged),this._revertAriaHidden(),this._setAriaHidden(e.location.nativeElement)}})}open(e,t,n,i){const s=DS(i.container)?this._document.querySelector(i.container):this._document.body,r=this._rendererFactory.createRenderer(null,null),o=this._scrollBar.compensate(),a=()=>{this._modalRefs.length||(r.removeClass(this._document.body,\"modal-open\"),this._revertAriaHidden())};if(!s)throw new Error(`The specified modal container \"${i.container||\"body\"}\" was not found in the DOM.`);const l=new eL,c=this._getContentRef(e,i.injector||t,n,l,i);let d=!1!==i.backdrop?this._attachBackdrop(e,s):null,u=this._attachWindowComponent(e,s,c),h=new tL(u,c,d,i.beforeDismiss);return this._registerModalRef(h),this._registerWindowCmpt(u),h.result.then(o,o),h.result.then(a,a),l.close=e=>{h.close(e)},l.dismiss=e=>{h.dismiss(e)},this._applyWindowOptions(u.instance,i),1===this._modalRefs.length&&r.addClass(this._document.body,\"modal-open\"),d&&d.instance&&this._applyBackdropOptions(d.instance,i),h}dismissAll(e){this._modalRefs.forEach(t=>t.dismiss(e))}hasOpenModals(){return this._modalRefs.length>0}_attachBackdrop(e,t){let n=e.resolveComponentFactory(XS).create(this._injector);return this._applicationRef.attachView(n.hostView),t.appendChild(n.location.nativeElement),n}_attachWindowComponent(e,t,n){let i=e.resolveComponentFactory(iL).create(this._injector,n.nodes);return this._applicationRef.attachView(i.hostView),t.appendChild(i.location.nativeElement),i}_applyWindowOptions(e,t){this._windowAttributes.forEach(n=>{DS(t[n])&&(e[n]=t[n])})}_applyBackdropOptions(e,t){this._backdropAttributes.forEach(n=>{DS(t[n])&&(e[n]=t[n])})}_getContentRef(e,t,n,i,s){return n?n instanceof vl?this._createFromTemplateRef(n,i):\"string\"==typeof n?this._createFromString(n):this._createFromComponent(e,t,n,i,s):new KS([])}_createFromTemplateRef(e,t){const n=e.createEmbeddedView({$implicit:t,close(e){t.close(e)},dismiss(e){t.dismiss(e)}});return this._applicationRef.attachView(n),new KS([n.rootNodes],n)}_createFromString(e){const t=this._document.createTextNode(`${e}`);return new KS([[t]])}_createFromComponent(e,t,n,i,s){const r=e.resolveComponentFactory(n),o=fo.create({providers:[{provide:eL,useValue:i}],parent:t}),a=r.create(o),l=a.location.nativeElement;return s.scrollable&&l.classList.add(\"component-host-scrollable\"),this._applicationRef.attachView(a.hostView),new KS([[l]],a.hostView,a)}_setAriaHidden(e){const t=e.parentElement;t&&e!==this._document.body&&(Array.from(t.children).forEach(t=>{t!==e&&\"SCRIPT\"!==t.nodeName&&(this._ariaHiddenValues.set(t,t.getAttribute(\"aria-hidden\")),t.setAttribute(\"aria-hidden\",\"true\"))}),this._setAriaHidden(t))}_revertAriaHidden(){this._ariaHiddenValues.forEach((e,t)=>{e?t.setAttribute(\"aria-hidden\",e):t.removeAttribute(\"aria-hidden\")}),this._ariaHiddenValues.clear()}_registerModalRef(e){const t=()=>{const t=this._modalRefs.indexOf(e);t>-1&&this._modalRefs.splice(t,1)};this._modalRefs.push(e),e.result.then(t,t)}_registerWindowCmpt(e){this._windowCmpts.push(e),this._activeWindowCmptHasChanged.next(),e.onDestroy(()=>{const t=this._windowCmpts.indexOf(e);t>-1&&(this._windowCmpts.splice(t,1),this._activeWindowCmptHasChanged.next())})}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Td),Qe(fo),Qe(Nd),Qe(QS),Qe(Qa),Qe(ld))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e(Qe(Td),Qe(We),Qe(Nd),Qe(QS),Qe(Qa),Qe(ld))},token:e,providedIn:\"root\"}),e})(),rL=(()=>{class e{constructor(e,t,n,i){this._moduleCFR=e,this._injector=t,this._modalStack=n,this._config=i}open(e,t={}){const n=Object.assign({},this._config,t);return this._modalStack.open(this._moduleCFR,this._injector,e,n)}dismissAll(e){this._modalStack.dismissAll(e)}hasOpenModals(){return this._modalStack.hasOpenModals()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Ja),Qe(fo),Qe(sL),Qe(JS))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e(Qe(Ja),Qe(We),Qe(sL),Qe(JS))},token:e,providedIn:\"root\"}),e})(),oL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[rL]}),e})(),aL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),lL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),cL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),dL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),uL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),hL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),mL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),pL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),fL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})();const _L=[YS,IS,PS,zS,WS,qS,GS,oL,aL,lL,cL,dL,uL,hL,mL,pL,fL];let gL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[_L,YS,IS,PS,zS,WS,qS,GS,oL,aL,lL,cL,dL,uL,hL,mL,pL,fL]}),e})();var yL=n(\"aCrv\");const bL=[\"header\"],vL=[\"container\"],wL=[\"content\"],ML=[\"invisiblePadding\"],kL=[\"*\"];function SL(){return{scrollThrottlingTime:0,scrollDebounceTime:0,scrollAnimationTime:750,checkResizeInterval:1e3,resizeBypassRefreshThreshold:5,modifyOverflowStyleOfParentScroll:!0,stripedTable:!1}}let LL=(()=>{let e=class{constructor(e,t,n,i,s,r){this.element=e,this.renderer=t,this.zone=n,this.changeDetectorRef=i,this.window=window,this.executeRefreshOutsideAngularZone=!1,this._enableUnequalChildrenSizes=!1,this.useMarginInsteadOfTranslate=!1,this.ssrViewportWidth=1920,this.ssrViewportHeight=1080,this._bufferAmount=0,this._items=[],this.compareItems=(e,t)=>e===t,this.vsUpdate=new yc,this.vsChange=new yc,this.vsStart=new yc,this.vsEnd=new yc,this.calculatedScrollbarWidth=0,this.calculatedScrollbarHeight=0,this.padding=0,this.previousViewPort={},this.cachedPageSize=0,this.previousScrollNumberElements=0,this.isAngularUniversalSSR=function(e){return\"server\"===e}(s),this.scrollThrottlingTime=r.scrollThrottlingTime,this.scrollDebounceTime=r.scrollDebounceTime,this.scrollAnimationTime=r.scrollAnimationTime,this.scrollbarWidth=r.scrollbarWidth,this.scrollbarHeight=r.scrollbarHeight,this.checkResizeInterval=r.checkResizeInterval,this.resizeBypassRefreshThreshold=r.resizeBypassRefreshThreshold,this.modifyOverflowStyleOfParentScroll=r.modifyOverflowStyleOfParentScroll,this.stripedTable=r.stripedTable,this.horizontal=!1,this.resetWrapGroupDimensions()}get viewPortInfo(){let e=this.previousViewPort||{};return{startIndex:e.startIndex||0,endIndex:e.endIndex||0,scrollStartPosition:e.scrollStartPosition||0,scrollEndPosition:e.scrollEndPosition||0,maxScrollPosition:e.maxScrollPosition||0,startIndexWithBuffer:e.startIndexWithBuffer||0,endIndexWithBuffer:e.endIndexWithBuffer||0}}get enableUnequalChildrenSizes(){return this._enableUnequalChildrenSizes}set enableUnequalChildrenSizes(e){this._enableUnequalChildrenSizes!==e&&(this._enableUnequalChildrenSizes=e,this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0)}get bufferAmount(){return\"number\"==typeof this._bufferAmount&&this._bufferAmount>=0?this._bufferAmount:this.enableUnequalChildrenSizes?5:0}set bufferAmount(e){this._bufferAmount=e}get scrollThrottlingTime(){return this._scrollThrottlingTime}set scrollThrottlingTime(e){this._scrollThrottlingTime=e,this.updateOnScrollFunction()}get scrollDebounceTime(){return this._scrollDebounceTime}set scrollDebounceTime(e){this._scrollDebounceTime=e,this.updateOnScrollFunction()}updateOnScrollFunction(){this.onScroll=this.scrollDebounceTime?this.debounce(()=>{this.refresh_internal(!1)},this.scrollDebounceTime):this.scrollThrottlingTime?this.throttleTrailing(()=>{this.refresh_internal(!1)},this.scrollThrottlingTime):()=>{this.refresh_internal(!1)}}get checkResizeInterval(){return this._checkResizeInterval}set checkResizeInterval(e){this._checkResizeInterval!==e&&(this._checkResizeInterval=e,this.addScrollEventHandlers())}get items(){return this._items}set items(e){e!==this._items&&(this._items=e||[],this.refresh_internal(!0))}get horizontal(){return this._horizontal}set horizontal(e){this._horizontal=e,this.updateDirection()}revertParentOverscroll(){const e=this.getScrollElement();e&&this.oldParentScrollOverflow&&(e.style[\"overflow-y\"]=this.oldParentScrollOverflow.y,e.style[\"overflow-x\"]=this.oldParentScrollOverflow.x),this.oldParentScrollOverflow=void 0}get parentScroll(){return this._parentScroll}set parentScroll(e){if(this._parentScroll===e)return;this.revertParentOverscroll(),this._parentScroll=e,this.addScrollEventHandlers();const t=this.getScrollElement();this.modifyOverflowStyleOfParentScroll&&t!==this.element.nativeElement&&(this.oldParentScrollOverflow={x:t.style[\"overflow-x\"],y:t.style[\"overflow-y\"]},t.style[\"overflow-y\"]=this.horizontal?\"visible\":\"auto\",t.style[\"overflow-x\"]=this.horizontal?\"auto\":\"visible\")}ngOnInit(){this.addScrollEventHandlers()}ngOnDestroy(){this.removeScrollEventHandlers(),this.revertParentOverscroll()}ngOnChanges(e){let t=this.cachedItemsLength!==this.items.length;this.cachedItemsLength=this.items.length,this.refresh_internal(t||!e.items||!e.items.previousValue||0===e.items.previousValue.length)}ngDoCheck(){if(this.cachedItemsLength!==this.items.length)return this.cachedItemsLength=this.items.length,void this.refresh_internal(!0);if(this.previousViewPort&&this.viewPortItems&&this.viewPortItems.length>0){let e=!1;for(let t=0;t=0&&this.invalidateCachedMeasurementAtIndex(t)}else this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0;this.refresh_internal(!1)}invalidateCachedMeasurementAtIndex(e){if(this.enableUnequalChildrenSizes){let t=this.wrapGroupDimensions.maxChildSizePerWrapGroup[e];t&&(this.wrapGroupDimensions.maxChildSizePerWrapGroup[e]=void 0,--this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes,this.wrapGroupDimensions.sumOfKnownWrapGroupChildWidths-=t.childWidth||0,this.wrapGroupDimensions.sumOfKnownWrapGroupChildHeights-=t.childHeight||0)}else this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0;this.refresh_internal(!1)}scrollInto(e,t=!0,n=0,i,s){let r=this.items.indexOf(e);-1!==r&&this.scrollToIndex(r,t,n,i,s)}scrollToIndex(e,t=!0,n=0,i,s){let r=5,o=()=>{if(--r,r<=0)return void(s&&s());let i=this.calculateDimensions(),a=Math.min(Math.max(e,0),i.itemCount-1);this.previousViewPort.startIndex!==a?this.scrollToIndex_internal(e,t,n,0,o):s&&s()};this.scrollToIndex_internal(e,t,n,i,o)}scrollToIndex_internal(e,t=!0,n=0,i,s){i=void 0===i?this.scrollAnimationTime:i;let r=this.calculateDimensions(),o=this.calculatePadding(e,r)+n;t||(o-=r.wrapGroupsPerPage*r[this._childScrollDim]),this.scrollToPosition(o,i,s)}scrollToPosition(e,t,n){e+=this.getElementsOffset(),t=void 0===t?this.scrollAnimationTime:t;let i,s=this.getScrollElement();if(this.currentTween&&(this.currentTween.stop(),this.currentTween=void 0),!t)return this.renderer.setProperty(s,this._scrollType,e),void this.refresh_internal(!1,n);const r={scrollPosition:s[this._scrollType]};let o=new yL.Tween(r).to({scrollPosition:e},t).easing(yL.Easing.Quadratic.Out).onUpdate(e=>{isNaN(e.scrollPosition)||(this.renderer.setProperty(s,this._scrollType,e.scrollPosition),this.refresh_internal(!1))}).onStop(()=>{cancelAnimationFrame(i)}).start();const a=t=>{o.isPlaying()&&(o.update(t),r.scrollPosition!==e?this.zone.runOutsideAngular(()=>{i=requestAnimationFrame(a)}):this.refresh_internal(!1,n))};a(),this.currentTween=o}getElementSize(e){let t=e.getBoundingClientRect(),n=getComputedStyle(e),i=parseInt(n[\"margin-top\"],10)||0,s=parseInt(n[\"margin-bottom\"],10)||0,r=parseInt(n[\"margin-left\"],10)||0,o=parseInt(n[\"margin-right\"],10)||0;return{top:t.top+i,bottom:t.bottom+s,left:t.left+r,right:t.right+o,width:t.width+r+o,height:t.height+i+s}}checkScrollElementResized(){let e,t=this.getElementSize(this.getScrollElement());if(this.previousScrollBoundingRect){let n=Math.abs(t.width-this.previousScrollBoundingRect.width),i=Math.abs(t.height-this.previousScrollBoundingRect.height);e=n>this.resizeBypassRefreshThreshold||i>this.resizeBypassRefreshThreshold}else e=!0;e&&(this.previousScrollBoundingRect=t,t.width>0&&t.height>0&&this.refresh_internal(!1))}updateDirection(){this.horizontal?(this._invisiblePaddingProperty=\"width\",this._offsetType=\"offsetLeft\",this._pageOffsetType=\"pageXOffset\",this._childScrollDim=\"childWidth\",this._marginDir=\"margin-left\",this._translateDir=\"translateX\",this._scrollType=\"scrollLeft\"):(this._invisiblePaddingProperty=\"height\",this._offsetType=\"offsetTop\",this._pageOffsetType=\"pageYOffset\",this._childScrollDim=\"childHeight\",this._marginDir=\"margin-top\",this._translateDir=\"translateY\",this._scrollType=\"scrollTop\")}debounce(e,t){const n=this.throttleTrailing(e,t),i=function(){n.cancel(),n.apply(this,arguments)};return i.cancel=function(){n.cancel()},i}throttleTrailing(e,t){let n=void 0,i=arguments;const s=function(){const s=this;i=arguments,n||(t<=0?e.apply(s,i):n=setTimeout((function(){n=void 0,e.apply(s,i)}),t))};return s.cancel=function(){n&&(clearTimeout(n),n=void 0)},s}refresh_internal(e,t,n=2){if(e&&this.previousViewPort&&this.previousViewPort.scrollStartPosition>0){let e=this.previousViewPort,n=this.viewPortItems,i=t;t=()=>{let t=this.previousViewPort.scrollLength-e.scrollLength;if(t>0&&this.viewPortItems){let e=n[0],s=this.items.findIndex(t=>this.compareItems(e,t));if(s>this.previousViewPort.startIndexWithBuffer){let e=!1;for(let t=1;t{requestAnimationFrame(()=>{e&&this.resetWrapGroupDimensions();let i=this.calculateViewport(),s=e||i.startIndex!==this.previousViewPort.startIndex,r=e||i.endIndex!==this.previousViewPort.endIndex,o=i.scrollLength!==this.previousViewPort.scrollLength,a=i.padding!==this.previousViewPort.padding,l=i.scrollStartPosition!==this.previousViewPort.scrollStartPosition||i.scrollEndPosition!==this.previousViewPort.scrollEndPosition||i.maxScrollPosition!==this.previousViewPort.maxScrollPosition;if(this.previousViewPort=i,o&&this.renderer.setStyle(this.invisiblePaddingElementRef.nativeElement,this._invisiblePaddingProperty,`${i.scrollLength}px`),a&&(this.useMarginInsteadOfTranslate?this.renderer.setStyle(this.contentElementRef.nativeElement,this._marginDir,`${i.padding}px`):(this.renderer.setStyle(this.contentElementRef.nativeElement,\"transform\",`${this._translateDir}(${i.padding}px)`),this.renderer.setStyle(this.contentElementRef.nativeElement,\"webkitTransform\",`${this._translateDir}(${i.padding}px)`))),this.headerElementRef){let e=this.getScrollElement()[this._scrollType],t=this.getElementsOffset(),n=Math.max(e-i.padding-t+this.headerElementRef.nativeElement.clientHeight,0);this.renderer.setStyle(this.headerElementRef.nativeElement,\"transform\",`${this._translateDir}(${n}px)`),this.renderer.setStyle(this.headerElementRef.nativeElement,\"webkitTransform\",`${this._translateDir}(${n}px)`)}const c=s||r?{startIndex:i.startIndex,endIndex:i.endIndex,scrollStartPosition:i.scrollStartPosition,scrollEndPosition:i.scrollEndPosition,startIndexWithBuffer:i.startIndexWithBuffer,endIndexWithBuffer:i.endIndexWithBuffer,maxScrollPosition:i.maxScrollPosition}:void 0;if(s||r||l){const e=()=>{this.viewPortItems=i.startIndexWithBuffer>=0&&i.endIndexWithBuffer>=0?this.items.slice(i.startIndexWithBuffer,i.endIndexWithBuffer+1):[],this.vsUpdate.emit(this.viewPortItems),s&&this.vsStart.emit(c),r&&this.vsEnd.emit(c),(s||r)&&(this.changeDetectorRef.markForCheck(),this.vsChange.emit(c)),n>0?this.refresh_internal(!1,t,n-1):t&&t()};this.executeRefreshOutsideAngularZone?e():this.zone.run(e)}else{if(n>0&&(o||a))return void this.refresh_internal(!1,t,n-1);t&&t()}})})}getScrollElement(){return this.parentScroll instanceof Window?document.scrollingElement||document.documentElement||document.body:this.parentScroll||this.element.nativeElement}addScrollEventHandlers(){if(this.isAngularUniversalSSR)return;let e=this.getScrollElement();this.removeScrollEventHandlers(),this.zone.runOutsideAngular(()=>{this.parentScroll instanceof Window?(this.disposeScrollHandler=this.renderer.listen(\"window\",\"scroll\",this.onScroll),this.disposeResizeHandler=this.renderer.listen(\"window\",\"resize\",this.onScroll)):(this.disposeScrollHandler=this.renderer.listen(e,\"scroll\",this.onScroll),this._checkResizeInterval>0&&(this.checkScrollElementResizedTimer=setInterval(()=>{this.checkScrollElementResized()},this._checkResizeInterval)))})}removeScrollEventHandlers(){this.checkScrollElementResizedTimer&&clearInterval(this.checkScrollElementResizedTimer),this.disposeScrollHandler&&(this.disposeScrollHandler(),this.disposeScrollHandler=void 0),this.disposeResizeHandler&&(this.disposeResizeHandler(),this.disposeResizeHandler=void 0)}getElementsOffset(){if(this.isAngularUniversalSSR)return 0;let e=0;if(this.containerElementRef&&this.containerElementRef.nativeElement&&(e+=this.containerElementRef.nativeElement[this._offsetType]),this.parentScroll){let t=this.getScrollElement(),n=this.getElementSize(this.element.nativeElement),i=this.getElementSize(t);e+=this.horizontal?n.left-i.left:n.top-i.top,this.parentScroll instanceof Window||(e+=t[this._scrollType])}return e}countItemsPerWrapGroup(){if(this.isAngularUniversalSSR)return Math.round(this.horizontal?this.ssrViewportHeight/this.ssrChildHeight:this.ssrViewportWidth/this.ssrChildWidth);let e=this.horizontal?\"offsetLeft\":\"offsetTop\",t=(this.containerElementRef&&this.containerElementRef.nativeElement||this.contentElementRef.nativeElement).children,n=t?t.length:0;if(0===n)return 1;let i=t[0][e],s=1;for(;s0){let t=Math.min(l,e);e-=t,l-=t}m+=e,e>0&&s>=m&&++t}else{let e=Math.min(h,Math.max(r-p,0));if(l>0){let t=Math.min(l,e);e-=t,l-=t}p+=e,e>0&&r>=p&&++t}++d,u=0,h=0}}let f=this.wrapGroupDimensions.sumOfKnownWrapGroupChildWidths/this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes,_=this.wrapGroupDimensions.sumOfKnownWrapGroupChildHeights/this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes;n=this.childWidth||f||s,i=this.childHeight||_||r,this.horizontal?s>m&&(t+=Math.ceil((s-m)/n)):r>p&&(t+=Math.ceil((r-p)/i))}else{if(o.children.length>0){this.childWidth&&this.childHeight||(!this.minMeasuredChildWidth&&s>0&&(this.minMeasuredChildWidth=s),!this.minMeasuredChildHeight&&r>0&&(this.minMeasuredChildHeight=r));let e=this.getElementSize(o.children[0]);this.minMeasuredChildWidth=Math.min(this.minMeasuredChildWidth,e.width),this.minMeasuredChildHeight=Math.min(this.minMeasuredChildHeight,e.height)}n=this.childWidth||this.minMeasuredChildWidth||s,i=this.childHeight||this.minMeasuredChildHeight||r;let e=Math.max(Math.ceil(s/n),1),a=Math.max(Math.ceil(r/i),1);t=this.horizontal?e:a}let l=this.items.length,c=a*t,d=l/c,u=Math.ceil(l/a),h=0,m=this.horizontal?n:i;if(this.enableUnequalChildrenSizes){let e=0;for(let t=0;t0&&(o+=t.itemsPerWrapGroup-a),isNaN(r)&&(r=0),isNaN(o)&&(o=0),r=Math.min(Math.max(r,0),t.itemCount-1),o=Math.min(Math.max(o,0),t.itemCount-1);let l=this.bufferAmount*t.itemsPerWrapGroup;return{startIndex:r,endIndex:o,startIndexWithBuffer:Math.min(Math.max(r-l,0),t.itemCount-1),endIndexWithBuffer:Math.min(Math.max(o+l,0),t.itemCount-1),scrollStartPosition:e,scrollEndPosition:e+t.viewportLength,maxScrollPosition:t.maxScrollPosition}}calculateViewport(){let e=this.calculateDimensions(),t=this.getElementsOffset(),n=this.getScrollStartPosition();n>e.scrollLength+t&&!(this.parentScroll instanceof Window)?n=e.scrollLength:n-=t,n=Math.max(0,n);let i=this.calculatePageInfo(n,e),s=this.calculatePadding(i.startIndexWithBuffer,e),r=e.scrollLength;return{startIndex:i.startIndex,endIndex:i.endIndex,startIndexWithBuffer:i.startIndexWithBuffer,endIndexWithBuffer:i.endIndexWithBuffer,padding:Math.round(s),scrollLength:Math.round(r),scrollStartPosition:i.scrollStartPosition,scrollEndPosition:i.scrollEndPosition,maxScrollPosition:i.maxScrollPosition}}};return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(el),Eo(ld),Eo(Qr),Eo(Bc),Eo(\"virtual-scroller-default-options\",8))},e.\\u0275cmp=yt({type:e,selectors:[[\"virtual-scroller\"],[\"\",\"virtualScroller\",\"\"]],contentQueries:function(e,t,n){var i;1&e&&(Ic(n,bL,!0,Ka),Ic(n,vL,!0,Ka)),2&e&&(Dc(i=Rc())&&(t.headerElementRef=i.first),Dc(i=Rc())&&(t.containerElementRef=i.first))},viewQuery:function(e,t){var n;1&e&&(Ec(wL,!0,Ka),Ec(ML,!0,Ka)),2&e&&(Dc(n=Rc())&&(t.contentElementRef=n.first),Dc(n=Rc())&&(t.invisiblePaddingElementRef=n.first))},hostVars:6,hostBindings:function(e,t){2&e&&ua(\"horizontal\",t.horizontal)(\"vertical\",!t.horizontal)(\"selfScroll\",!t.parentScroll)},inputs:{executeRefreshOutsideAngularZone:\"executeRefreshOutsideAngularZone\",useMarginInsteadOfTranslate:\"useMarginInsteadOfTranslate\",ssrViewportWidth:\"ssrViewportWidth\",ssrViewportHeight:\"ssrViewportHeight\",compareItems:\"compareItems\",scrollThrottlingTime:\"scrollThrottlingTime\",scrollDebounceTime:\"scrollDebounceTime\",scrollAnimationTime:\"scrollAnimationTime\",scrollbarWidth:\"scrollbarWidth\",scrollbarHeight:\"scrollbarHeight\",checkResizeInterval:\"checkResizeInterval\",resizeBypassRefreshThreshold:\"resizeBypassRefreshThreshold\",modifyOverflowStyleOfParentScroll:\"modifyOverflowStyleOfParentScroll\",stripedTable:\"stripedTable\",horizontal:\"horizontal\",enableUnequalChildrenSizes:\"enableUnequalChildrenSizes\",bufferAmount:\"bufferAmount\",items:\"items\",parentScroll:\"parentScroll\",childWidth:\"childWidth\",childHeight:\"childHeight\",ssrChildWidth:\"ssrChildWidth\",ssrChildHeight:\"ssrChildHeight\"},outputs:{vsUpdate:\"vsUpdate\",vsChange:\"vsChange\",vsStart:\"vsStart\",vsEnd:\"vsEnd\"},exportAs:[\"virtualScroller\"],features:[Ra],ngContentSelectors:kL,decls:5,vars:0,consts:[[1,\"total-padding\"],[\"invisiblePadding\",\"\"],[1,\"scrollable-content\"],[\"content\",\"\"]],template:function(e,t){1&e&&(Zo(),jo(0,\"div\",0,1),Ro(2,\"div\",2,3),ea(4),Ho())},styles:[\"[_nghost-%COMP%] {\\n position: relative;\\n\\t display: block;\\n -webkit-overflow-scrolling: touch;\\n }\\n\\t\\n\\t.horizontal.selfScroll[_nghost-%COMP%] {\\n overflow-y: visible;\\n overflow-x: auto;\\n\\t}\\n\\t.vertical.selfScroll[_nghost-%COMP%] {\\n overflow-y: auto;\\n overflow-x: visible;\\n\\t}\\n\\t\\n .scrollable-content[_ngcontent-%COMP%] {\\n top: 0;\\n left: 0;\\n width: 100%;\\n height: 100%;\\n max-width: 100vw;\\n max-height: 100vh;\\n position: absolute;\\n }\\n\\n\\t.scrollable-content[_ngcontent-%COMP%] > * {\\n\\t\\tbox-sizing: border-box;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] {\\n\\t\\twhite-space: nowrap;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] .scrollable-content[_ngcontent-%COMP%] {\\n\\t\\tdisplay: flex;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] .scrollable-content[_ngcontent-%COMP%] > * {\\n\\t\\tflex-shrink: 0;\\n\\t\\tflex-grow: 0;\\n\\t\\twhite-space: initial;\\n\\t}\\n\\t\\n .total-padding[_ngcontent-%COMP%] {\\n width: 1px;\\n opacity: 0;\\n }\\n \\n .horizontal[_nghost-%COMP%] .total-padding[_ngcontent-%COMP%] {\\n height: 100%;\\n }\"]}),e})(),xL=(()=>{let e=class{};return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[{provide:\"virtual-scroller-default-options\",useFactory:SL}],imports:[[Mu]]}),e})();const CL={on:()=>{},off:()=>{}};let TL=(()=>{class e extends wf{constructor(e){super(),this.hammerOptions=e,this.events=[\"longpress\",\"slide\",\"slidestart\",\"slideend\",\"slideright\",\"slideleft\"]}buildHammer(e){const t=\"undefined\"!=typeof window?window.Hammer:null;if(!t)return CL;const n=new t(e,this.hammerOptions||void 0),i=new t.Pan,s=new t.Swipe,r=new t.Press,o=this._createRecognizer(i,{event:\"slide\",threshold:0},s),a=this._createRecognizer(r,{event:\"longpress\",time:500});return i.recognizeWith(s),a.recognizeWith(o),n.add([s,r,i,o,a]),n}_createRecognizer(e,t,...n){const i=new e.constructor(t);return n.push(e),n.forEach(e=>i.recognizeWith(e)),i}}return e.\\u0275fac=function(t){return new(t||e)(Qe(wy,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const DL=(()=>{function e(){return Error.call(this),this.message=\"no elements in sequence\",this.name=\"EmptyError\",this}return e.prototype=Object.create(Error.prototype),e})();function YL(e){return function(t){return 0===e?lp():t.lift(new EL(e))}}class EL{constructor(e){if(this.total=e,this.total<0)throw new op}call(e,t){return t.subscribe(new OL(e,this.total))}}class OL extends p{constructor(e,t){super(e),this.total=t,this.ring=new Array,this.count=0}_next(e){const t=this.ring,n=this.total,i=this.count++;t.length0){const n=this.count>=this.total?this.total:this.count,i=this.ring;for(let s=0;st.lift(new PL(e))}class PL{constructor(e){this.errorFactory=e}call(e,t){return t.subscribe(new AL(e,this.errorFactory))}}class AL extends p{constructor(e,t){super(e),this.errorFactory=t,this.hasValue=!1}_next(e){this.hasValue=!0,this.destination.next(e)}_complete(){if(this.hasValue)return this.destination.complete();{let t;try{t=this.errorFactory()}catch(e){t=e}this.destination.error(t)}}}function RL(){return new DL}function HL(e=null){return t=>t.lift(new jL(e))}class jL{constructor(e){this.defaultValue=e}call(e,t){return t.subscribe(new FL(e,this.defaultValue))}}class FL extends p{constructor(e,t){super(e),this.defaultValue=t,this.isEmpty=!0}_next(e){this.isEmpty=!1,this.destination.next(e)}_complete(){this.isEmpty&&this.destination.next(this.defaultValue),this.destination.complete()}}function NL(e,t){const n=arguments.length>=2;return i=>i.pipe(e?Tu((t,n)=>e(t,n,i)):$,YL(1),n?HL(t):IL(()=>new DL))}function zL(e,t){const n=arguments.length>=2;return i=>i.pipe(e?Tu((t,n)=>e(t,n,i)):$,cp(1),n?HL(t):IL(()=>new DL))}class VL{constructor(e,t,n){this.predicate=e,this.thisArg=t,this.source=n}call(e,t){return t.subscribe(new WL(e,this.predicate,this.thisArg,this.source))}}class WL extends p{constructor(e,t,n,i){super(e),this.predicate=t,this.thisArg=n,this.source=i,this.index=0,this.thisArg=n||this}notifyComplete(e){this.destination.next(e),this.destination.complete()}_next(e){let t=!1;try{t=this.predicate.call(this.thisArg,e,this.index++,this.source)}catch(n){return void this.destination.error(n)}t||this.notifyComplete(!1)}_complete(){this.notifyComplete(!0)}}function UL(e,t){let n=!1;return arguments.length>=2&&(n=!0),function(i){return i.lift(new $L(e,t,n))}}class $L{constructor(e,t,n=!1){this.accumulator=e,this.seed=t,this.hasSeed=n}call(e,t){return t.subscribe(new BL(e,this.accumulator,this.seed,this.hasSeed))}}class BL extends p{constructor(e,t,n,i){super(e),this.accumulator=t,this._seed=n,this.hasSeed=i,this.index=0}get seed(){return this._seed}set seed(e){this.hasSeed=!0,this._seed=e}_next(e){if(this.hasSeed)return this._tryNext(e);this.seed=e,this.destination.next(e)}_tryNext(e){const t=this.index++;let n;try{n=this.accumulator(this.seed,e,t)}catch(i){this.destination.error(i)}this.seed=n,this.destination.next(n)}}class qL{constructor(e,t){this.id=e,this.url=t}}class GL extends qL{constructor(e,t,n=\"imperative\",i=null){super(e,t),this.navigationTrigger=n,this.restoredState=i}toString(){return`NavigationStart(id: ${this.id}, url: '${this.url}')`}}class JL extends qL{constructor(e,t,n){super(e,t),this.urlAfterRedirects=n}toString(){return`NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`}}class KL extends qL{constructor(e,t,n){super(e,t),this.reason=n}toString(){return`NavigationCancel(id: ${this.id}, url: '${this.url}')`}}class ZL extends qL{constructor(e,t,n){super(e,t),this.error=n}toString(){return`NavigationError(id: ${this.id}, url: '${this.url}', error: ${this.error})`}}class QL extends qL{constructor(e,t,n,i){super(e,t),this.urlAfterRedirects=n,this.state=i}toString(){return`RoutesRecognized(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class XL extends qL{constructor(e,t,n,i){super(e,t),this.urlAfterRedirects=n,this.state=i}toString(){return`GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class ex extends qL{constructor(e,t,n,i,s){super(e,t),this.urlAfterRedirects=n,this.state=i,this.shouldActivate=s}toString(){return`GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`}}class tx extends qL{constructor(e,t,n,i){super(e,t),this.urlAfterRedirects=n,this.state=i}toString(){return`ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class nx extends qL{constructor(e,t,n,i){super(e,t),this.urlAfterRedirects=n,this.state=i}toString(){return`ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class ix{constructor(e){this.route=e}toString(){return`RouteConfigLoadStart(path: ${this.route.path})`}}class sx{constructor(e){this.route=e}toString(){return`RouteConfigLoadEnd(path: ${this.route.path})`}}class rx{constructor(e){this.snapshot=e}toString(){return`ChildActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\"}')`}}class ox{constructor(e){this.snapshot=e}toString(){return`ChildActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\"}')`}}class ax{constructor(e){this.snapshot=e}toString(){return`ActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\"}')`}}class lx{constructor(e){this.snapshot=e}toString(){return`ActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\"}')`}}class cx{constructor(e,t,n){this.routerEvent=e,this.position=t,this.anchor=n}toString(){return`Scroll(anchor: '${this.anchor}', position: '${this.position?`${this.position[0]}, ${this.position[1]}`:null}')`}}let dx=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:1,vars:0,template:function(e,t){1&e&&jo(0,\"router-outlet\")},directives:function(){return[mT]},encapsulation:2}),e})();class ux{constructor(e){this.params=e||{}}has(e){return this.params.hasOwnProperty(e)}get(e){if(this.has(e)){const t=this.params[e];return Array.isArray(t)?t[0]:t}return null}getAll(e){if(this.has(e)){const t=this.params[e];return Array.isArray(t)?t:[t]}return[]}get keys(){return Object.keys(this.params)}}function hx(e){return new ux(e)}function mx(e){const t=Error(\"NavigationCancelingError: \"+e);return t.ngNavigationCancelingError=!0,t}function px(e,t,n){const i=n.path.split(\"/\");if(i.length>e.length)return null;if(\"full\"===n.pathMatch&&(t.hasChildren()||i.lengtht.indexOf(e)>-1):e===t}function Mx(e){return Array.prototype.concat.apply([],e)}function kx(e){return e.length>0?e[e.length-1]:null}function Sx(e,t){for(const n in e)e.hasOwnProperty(n)&&t(e[n],n)}function Lx(e){return Wo(e)?e:Vo(e)?z(Promise.resolve(e)):xu(e)}function xx(e,t,n){return n?function(e,t){return vx(e,t)}(e.queryParams,t.queryParams)&&function e(t,n){if(!Yx(t.segments,n.segments))return!1;if(t.numberOfChildren!==n.numberOfChildren)return!1;for(const i in n.children){if(!t.children[i])return!1;if(!e(t.children[i],n.children[i]))return!1}return!0}(e.root,t.root):function(e,t){return Object.keys(t).length<=Object.keys(e).length&&Object.keys(t).every(n=>wx(e[n],t[n]))}(e.queryParams,t.queryParams)&&function e(t,n){return function t(n,i,s){if(n.segments.length>s.length)return!!Yx(n.segments.slice(0,s.length),s)&&!i.hasChildren();if(n.segments.length===s.length){if(!Yx(n.segments,s))return!1;for(const t in i.children){if(!n.children[t])return!1;if(!e(n.children[t],i.children[t]))return!1}return!0}{const e=s.slice(0,n.segments.length),r=s.slice(n.segments.length);return!!Yx(n.segments,e)&&!!n.children.primary&&t(n.children.primary,i,r)}}(t,n,n.segments)}(e.root,t.root)}class Cx{constructor(e,t,n){this.root=e,this.queryParams=t,this.fragment=n}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=hx(this.queryParams)),this._queryParamMap}toString(){return Px.serialize(this)}}class Tx{constructor(e,t){this.segments=e,this.children=t,this.parent=null,Sx(t,(e,t)=>e.parent=this)}hasChildren(){return this.numberOfChildren>0}get numberOfChildren(){return Object.keys(this.children).length}toString(){return Ax(this)}}class Dx{constructor(e,t){this.path=e,this.parameters=t}get parameterMap(){return this._parameterMap||(this._parameterMap=hx(this.parameters)),this._parameterMap}toString(){return zx(this)}}function Yx(e,t){return e.length===t.length&&e.every((e,n)=>e.path===t[n].path)}function Ex(e,t){let n=[];return Sx(e.children,(e,i)=>{\"primary\"===i&&(n=n.concat(t(e,i)))}),Sx(e.children,(e,i)=>{\"primary\"!==i&&(n=n.concat(t(e,i)))}),n}class Ox{}class Ix{parse(e){const t=new Bx(e);return new Cx(t.parseRootSegment(),t.parseQueryParams(),t.parseFragment())}serialize(e){var t;return`${`/${function e(t,n){if(!t.hasChildren())return Ax(t);if(n){const n=t.children.primary?e(t.children.primary,!1):\"\",i=[];return Sx(t.children,(t,n)=>{\"primary\"!==n&&i.push(`${n}:${e(t,!1)}`)}),i.length>0?`${n}(${i.join(\"//\")})`:n}{const n=Ex(t,(n,i)=>\"primary\"===i?[e(t.children.primary,!1)]:[`${i}:${e(n,!1)}`]);return`${Ax(t)}/(${n.join(\"//\")})`}}(e.root,!0)}`}${function(e){const t=Object.keys(e).map(t=>{const n=e[t];return Array.isArray(n)?n.map(e=>`${Hx(t)}=${Hx(e)}`).join(\"&\"):`${Hx(t)}=${Hx(n)}`});return t.length?`?${t.join(\"&\")}`:\"\"}(e.queryParams)}${\"string\"==typeof e.fragment?`#${t=e.fragment,encodeURI(t)}`:\"\"}`}}const Px=new Ix;function Ax(e){return e.segments.map(e=>zx(e)).join(\"/\")}function Rx(e){return encodeURIComponent(e).replace(/%40/g,\"@\").replace(/%3A/gi,\":\").replace(/%24/g,\"$\").replace(/%2C/gi,\",\")}function Hx(e){return Rx(e).replace(/%3B/gi,\";\")}function jx(e){return Rx(e).replace(/\\(/g,\"%28\").replace(/\\)/g,\"%29\").replace(/%26/gi,\"&\")}function Fx(e){return decodeURIComponent(e)}function Nx(e){return Fx(e.replace(/\\+/g,\"%20\"))}function zx(e){return`${jx(e.path)}${t=e.parameters,Object.keys(t).map(e=>`;${jx(e)}=${jx(t[e])}`).join(\"\")}`;var t}const Vx=/^[^\\/()?;=#]+/;function Wx(e){const t=e.match(Vx);return t?t[0]:\"\"}const Ux=/^[^=?&#]+/,$x=/^[^?&#]+/;class Bx{constructor(e){this.url=e,this.remaining=e}parseRootSegment(){return this.consumeOptional(\"/\"),\"\"===this.remaining||this.peekStartsWith(\"?\")||this.peekStartsWith(\"#\")?new Tx([],{}):new Tx([],this.parseChildren())}parseQueryParams(){const e={};if(this.consumeOptional(\"?\"))do{this.parseQueryParam(e)}while(this.consumeOptional(\"&\"));return e}parseFragment(){return this.consumeOptional(\"#\")?decodeURIComponent(this.remaining):null}parseChildren(){if(\"\"===this.remaining)return{};this.consumeOptional(\"/\");const e=[];for(this.peekStartsWith(\"(\")||e.push(this.parseSegment());this.peekStartsWith(\"/\")&&!this.peekStartsWith(\"//\")&&!this.peekStartsWith(\"/(\");)this.capture(\"/\"),e.push(this.parseSegment());let t={};this.peekStartsWith(\"/(\")&&(this.capture(\"/\"),t=this.parseParens(!0));let n={};return this.peekStartsWith(\"(\")&&(n=this.parseParens(!1)),(e.length>0||Object.keys(t).length>0)&&(n.primary=new Tx(e,t)),n}parseSegment(){const e=Wx(this.remaining);if(\"\"===e&&this.peekStartsWith(\";\"))throw new Error(`Empty path url segment cannot have parameters: '${this.remaining}'.`);return this.capture(e),new Dx(Fx(e),this.parseMatrixParams())}parseMatrixParams(){const e={};for(;this.consumeOptional(\";\");)this.parseParam(e);return e}parseParam(e){const t=Wx(this.remaining);if(!t)return;this.capture(t);let n=\"\";if(this.consumeOptional(\"=\")){const e=Wx(this.remaining);e&&(n=e,this.capture(n))}e[Fx(t)]=Fx(n)}parseQueryParam(e){const t=function(e){const t=e.match(Ux);return t?t[0]:\"\"}(this.remaining);if(!t)return;this.capture(t);let n=\"\";if(this.consumeOptional(\"=\")){const e=function(e){const t=e.match($x);return t?t[0]:\"\"}(this.remaining);e&&(n=e,this.capture(n))}const i=Nx(t),s=Nx(n);if(e.hasOwnProperty(i)){let t=e[i];Array.isArray(t)||(t=[t],e[i]=t),t.push(s)}else e[i]=s}parseParens(e){const t={};for(this.capture(\"(\");!this.consumeOptional(\")\")&&this.remaining.length>0;){const n=Wx(this.remaining),i=this.remaining[n.length];if(\"/\"!==i&&\")\"!==i&&\";\"!==i)throw new Error(`Cannot parse url '${this.url}'`);let s=void 0;n.indexOf(\":\")>-1?(s=n.substr(0,n.indexOf(\":\")),this.capture(s),this.capture(\":\")):e&&(s=\"primary\");const r=this.parseChildren();t[s]=1===Object.keys(r).length?r.primary:new Tx([],r),this.consumeOptional(\"//\")}return t}peekStartsWith(e){return this.remaining.startsWith(e)}consumeOptional(e){return!!this.peekStartsWith(e)&&(this.remaining=this.remaining.substring(e.length),!0)}capture(e){if(!this.consumeOptional(e))throw new Error(`Expected \"${e}\".`)}}class qx{constructor(e){this._root=e}get root(){return this._root.value}parent(e){const t=this.pathFromRoot(e);return t.length>1?t[t.length-2]:null}children(e){const t=Gx(e,this._root);return t?t.children.map(e=>e.value):[]}firstChild(e){const t=Gx(e,this._root);return t&&t.children.length>0?t.children[0].value:null}siblings(e){const t=Jx(e,this._root);return t.length<2?[]:t[t.length-2].children.map(e=>e.value).filter(t=>t!==e)}pathFromRoot(e){return Jx(e,this._root).map(e=>e.value)}}function Gx(e,t){if(e===t.value)return t;for(const n of t.children){const t=Gx(e,n);if(t)return t}return null}function Jx(e,t){if(e===t.value)return[t];for(const n of t.children){const i=Jx(e,n);if(i.length)return i.unshift(t),i}return[]}class Kx{constructor(e,t){this.value=e,this.children=t}toString(){return`TreeNode(${this.value})`}}function Zx(e){const t={};return e&&e.children.forEach(e=>t[e.value.outlet]=e),t}class Qx extends qx{constructor(e,t){super(e),this.snapshot=t,sC(this,e)}toString(){return this.snapshot.toString()}}function Xx(e,t){const n=function(e,t){const n=new nC([],{},{},\"\",{},\"primary\",t,null,e.root,-1,{});return new iC(\"\",new Kx(n,[]))}(e,t),i=new hS([new Dx(\"\",{})]),s=new hS({}),r=new hS({}),o=new hS({}),a=new hS(\"\"),l=new eC(i,s,o,a,r,\"primary\",t,n.root);return l.snapshot=n.root,new Qx(new Kx(l,[]),n)}class eC{constructor(e,t,n,i,s,r,o,a){this.url=e,this.params=t,this.queryParams=n,this.fragment=i,this.data=s,this.outlet=r,this.component=o,this._futureSnapshot=a}get routeConfig(){return this._futureSnapshot.routeConfig}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap||(this._paramMap=this.params.pipe(H(e=>hx(e)))),this._paramMap}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=this.queryParams.pipe(H(e=>hx(e)))),this._queryParamMap}toString(){return this.snapshot?this.snapshot.toString():`Future(${this._futureSnapshot})`}}function tC(e,t=\"emptyOnly\"){const n=e.pathFromRoot;let i=0;if(\"always\"!==t)for(i=n.length-1;i>=1;){const e=n[i],t=n[i-1];if(e.routeConfig&&\"\"===e.routeConfig.path)i--;else{if(t.component)break;i--}}return function(e){return e.reduce((e,t)=>({params:Object.assign(Object.assign({},e.params),t.params),data:Object.assign(Object.assign({},e.data),t.data),resolve:Object.assign(Object.assign({},e.resolve),t._resolvedData)}),{params:{},data:{},resolve:{}})}(n.slice(i))}class nC{constructor(e,t,n,i,s,r,o,a,l,c,d){this.url=e,this.params=t,this.queryParams=n,this.fragment=i,this.data=s,this.outlet=r,this.component=o,this.routeConfig=a,this._urlSegment=l,this._lastPathIndex=c,this._resolve=d}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap||(this._paramMap=hx(this.params)),this._paramMap}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=hx(this.queryParams)),this._queryParamMap}toString(){return`Route(url:'${this.url.map(e=>e.toString()).join(\"/\")}', path:'${this.routeConfig?this.routeConfig.path:\"\"}')`}}class iC extends qx{constructor(e,t){super(t),this.url=e,sC(this,t)}toString(){return rC(this._root)}}function sC(e,t){t.value._routerState=e,t.children.forEach(t=>sC(e,t))}function rC(e){const t=e.children.length>0?` { ${e.children.map(rC).join(\", \")} } `:\"\";return`${e.value}${t}`}function oC(e){if(e.snapshot){const t=e.snapshot,n=e._futureSnapshot;e.snapshot=n,vx(t.queryParams,n.queryParams)||e.queryParams.next(n.queryParams),t.fragment!==n.fragment&&e.fragment.next(n.fragment),vx(t.params,n.params)||e.params.next(n.params),function(e,t){if(e.length!==t.length)return!1;for(let n=0;nvx(e.parameters,i[t].parameters))&&!(!e.parent!=!t.parent)&&(!e.parent||aC(e.parent,t.parent))}function lC(e){return\"object\"==typeof e&&null!=e&&!e.outlets&&!e.segmentPath}function cC(e,t,n,i,s){let r={};return i&&Sx(i,(e,t)=>{r[t]=Array.isArray(e)?e.map(e=>`${e}`):`${e}`}),new Cx(n.root===e?t:function e(t,n,i){const s={};return Sx(t.children,(t,r)=>{s[r]=t===n?i:e(t,n,i)}),new Tx(t.segments,s)}(n.root,e,t),r,s)}class dC{constructor(e,t,n){if(this.isAbsolute=e,this.numberOfDoubleDots=t,this.commands=n,e&&n.length>0&&lC(n[0]))throw new Error(\"Root segment cannot have matrix parameters\");const i=n.find(e=>\"object\"==typeof e&&null!=e&&e.outlets);if(i&&i!==kx(n))throw new Error(\"{outlets:{}} has to be the last command\")}toRoot(){return this.isAbsolute&&1===this.commands.length&&\"/\"==this.commands[0]}}class uC{constructor(e,t,n){this.segmentGroup=e,this.processChildren=t,this.index=n}}function hC(e){return\"object\"==typeof e&&null!=e&&e.outlets?e.outlets.primary:`${e}`}function mC(e,t,n){if(e||(e=new Tx([],{})),0===e.segments.length&&e.hasChildren())return pC(e,t,n);const i=function(e,t,n){let i=0,s=t;const r={match:!1,pathIndex:0,commandIndex:0};for(;s=n.length)return r;const t=e.segments[s],o=hC(n[i]),a=i0&&void 0===o)break;if(o&&a&&\"object\"==typeof a&&void 0===a.outlets){if(!yC(o,a,t))return r;i+=2}else{if(!yC(o,{},t))return r;i++}s++}return{match:!0,pathIndex:s,commandIndex:i}}(e,t,n),s=n.slice(i.commandIndex);if(i.match&&i.pathIndex{null!==n&&(s[i]=mC(e.children[i],t,n))}),Sx(e.children,(e,t)=>{void 0===i[t]&&(s[t]=e)}),new Tx(e.segments,s)}}function fC(e,t,n){const i=e.segments.slice(0,t);let s=0;for(;s{null!==e&&(t[n]=fC(new Tx([],{}),0,e))}),t}function gC(e){const t={};return Sx(e,(e,n)=>t[n]=`${e}`),t}function yC(e,t,n){return e==n.path&&vx(t,n.parameters)}class bC{constructor(e,t,n,i){this.routeReuseStrategy=e,this.futureState=t,this.currState=n,this.forwardEvent=i}activate(e){const t=this.futureState._root,n=this.currState?this.currState._root:null;this.deactivateChildRoutes(t,n,e),oC(this.futureState.root),this.activateChildRoutes(t,n,e)}deactivateChildRoutes(e,t,n){const i=Zx(t);e.children.forEach(e=>{const t=e.value.outlet;this.deactivateRoutes(e,i[t],n),delete i[t]}),Sx(i,(e,t)=>{this.deactivateRouteAndItsChildren(e,n)})}deactivateRoutes(e,t,n){const i=e.value,s=t?t.value:null;if(i===s)if(i.component){const s=n.getContext(i.outlet);s&&this.deactivateChildRoutes(e,t,s.children)}else this.deactivateChildRoutes(e,t,n);else s&&this.deactivateRouteAndItsChildren(t,n)}deactivateRouteAndItsChildren(e,t){this.routeReuseStrategy.shouldDetach(e.value.snapshot)?this.detachAndStoreRouteSubtree(e,t):this.deactivateRouteAndOutlet(e,t)}detachAndStoreRouteSubtree(e,t){const n=t.getContext(e.value.outlet);if(n&&n.outlet){const t=n.outlet.detach(),i=n.children.onOutletDeactivated();this.routeReuseStrategy.store(e.value.snapshot,{componentRef:t,route:e,contexts:i})}}deactivateRouteAndOutlet(e,t){const n=t.getContext(e.value.outlet);if(n){const i=Zx(e),s=e.value.component?n.children:t;Sx(i,(e,t)=>this.deactivateRouteAndItsChildren(e,s)),n.outlet&&(n.outlet.deactivate(),n.children.onOutletDeactivated())}}activateChildRoutes(e,t,n){const i=Zx(t);e.children.forEach(e=>{this.activateRoutes(e,i[e.value.outlet],n),this.forwardEvent(new lx(e.value.snapshot))}),e.children.length&&this.forwardEvent(new ox(e.value.snapshot))}activateRoutes(e,t,n){const i=e.value,s=t?t.value:null;if(oC(i),i===s)if(i.component){const s=n.getOrCreateContext(i.outlet);this.activateChildRoutes(e,t,s.children)}else this.activateChildRoutes(e,t,n);else if(i.component){const t=n.getOrCreateContext(i.outlet);if(this.routeReuseStrategy.shouldAttach(i.snapshot)){const e=this.routeReuseStrategy.retrieve(i.snapshot);this.routeReuseStrategy.store(i.snapshot,null),t.children.onOutletReAttached(e.contexts),t.attachRef=e.componentRef,t.route=e.route.value,t.outlet&&t.outlet.attach(e.componentRef,e.route.value),vC(e.route)}else{const n=function(e){for(let t=e.parent;t;t=t.parent){const e=t.routeConfig;if(e&&e._loadedConfig)return e._loadedConfig;if(e&&e.component)return null}return null}(i.snapshot),s=n?n.module.componentFactoryResolver:null;t.attachRef=null,t.route=i,t.resolver=s,t.outlet&&t.outlet.activateWith(i,s),this.activateChildRoutes(e,null,t.children)}}else this.activateChildRoutes(e,null,n)}}function vC(e){oC(e.value),e.children.forEach(vC)}function wC(e){return\"function\"==typeof e}function MC(e){return e instanceof Cx}class kC{constructor(e){this.segmentGroup=e||null}}class SC{constructor(e){this.urlTree=e}}function LC(e){return new v(t=>t.error(new kC(e)))}function xC(e){return new v(t=>t.error(new SC(e)))}function CC(e){return new v(t=>t.error(new Error(`Only absolute redirects can have named outlets. redirectTo: '${e}'`)))}class TC{constructor(e,t,n,i,s){this.configLoader=t,this.urlSerializer=n,this.urlTree=i,this.config=s,this.allowRedirects=!0,this.ngModule=e.get(it)}apply(){return this.expandSegmentGroup(this.ngModule,this.config,this.urlTree.root,\"primary\").pipe(H(e=>this.createUrlTree(e,this.urlTree.queryParams,this.urlTree.fragment))).pipe(aw(e=>{if(e instanceof SC)return this.allowRedirects=!1,this.match(e.urlTree);if(e instanceof kC)throw this.noMatchError(e);throw e}))}match(e){return this.expandSegmentGroup(this.ngModule,this.config,e.root,\"primary\").pipe(H(t=>this.createUrlTree(t,e.queryParams,e.fragment))).pipe(aw(e=>{if(e instanceof kC)throw this.noMatchError(e);throw e}))}noMatchError(e){return new Error(`Cannot match any routes. URL Segment: '${e.segmentGroup}'`)}createUrlTree(e,t,n){const i=e.segments.length>0?new Tx([],{primary:e}):e;return new Cx(i,t,n)}expandSegmentGroup(e,t,n,i){return 0===n.segments.length&&n.hasChildren()?this.expandChildren(e,t,n).pipe(H(e=>new Tx([],e))):this.expandSegment(e,n,t,n.segments,i,!0)}expandChildren(e,t,n){return function(e,t){if(0===Object.keys(e).length)return xu({});const n=[],i=[],s={};return Sx(e,(e,r)=>{const o=t(r,e).pipe(H(e=>s[r]=e));\"primary\"===r?n.push(o):i.push(o)}),xu.apply(null,n.concat(i)).pipe(Pf(),NL(),H(()=>s))}(n.children,(n,i)=>this.expandSegmentGroup(e,t,i,n))}expandSegment(e,t,n,i,s,r){return xu(...n).pipe(H(o=>this.expandSegmentAgainstRoute(e,t,n,o,i,s,r).pipe(aw(e=>{if(e instanceof kC)return xu(null);throw e}))),Pf(),zL(e=>!!e),aw((e,n)=>{if(e instanceof DL||\"EmptyError\"===e.name){if(this.noLeftoversInUrl(t,i,s))return xu(new Tx([],{}));throw new kC(t)}throw e}))}noLeftoversInUrl(e,t,n){return 0===t.length&&!e.children[n]}expandSegmentAgainstRoute(e,t,n,i,s,r,o){return OC(i)!==r?LC(t):void 0===i.redirectTo?this.matchSegmentAgainstRoute(e,t,i,s):o&&this.allowRedirects?this.expandSegmentAgainstRouteUsingRedirect(e,t,n,i,s,r):LC(t)}expandSegmentAgainstRouteUsingRedirect(e,t,n,i,s,r){return\"**\"===i.path?this.expandWildCardWithParamsAgainstRouteUsingRedirect(e,n,i,r):this.expandRegularSegmentAgainstRouteUsingRedirect(e,t,n,i,s,r)}expandWildCardWithParamsAgainstRouteUsingRedirect(e,t,n,i){const s=this.applyRedirectCommands([],n.redirectTo,{});return n.redirectTo.startsWith(\"/\")?xC(s):this.lineralizeSegments(n,s).pipe(V(n=>{const s=new Tx(n,{});return this.expandSegment(e,s,t,n,i,!1)}))}expandRegularSegmentAgainstRouteUsingRedirect(e,t,n,i,s,r){const{matched:o,consumedSegments:a,lastChild:l,positionalParamSegments:c}=DC(t,i,s);if(!o)return LC(t);const d=this.applyRedirectCommands(a,i.redirectTo,c);return i.redirectTo.startsWith(\"/\")?xC(d):this.lineralizeSegments(i,d).pipe(V(i=>this.expandSegment(e,t,n,i.concat(s.slice(l)),r,!1)))}matchSegmentAgainstRoute(e,t,n,i){if(\"**\"===n.path)return n.loadChildren?this.configLoader.load(e.injector,n).pipe(H(e=>(n._loadedConfig=e,new Tx(i,{})))):xu(new Tx(i,{}));const{matched:s,consumedSegments:r,lastChild:o}=DC(t,n,i);if(!s)return LC(t);const a=i.slice(o);return this.getChildConfig(e,n,i).pipe(V(e=>{const n=e.module,i=e.routes,{segmentGroup:s,slicedSegments:o}=function(e,t,n,i){return n.length>0&&function(e,t,n){return n.some(n=>EC(e,t,n)&&\"primary\"!==OC(n))}(e,n,i)?{segmentGroup:YC(new Tx(t,function(e,t){const n={};n.primary=t;for(const i of e)\"\"===i.path&&\"primary\"!==OC(i)&&(n[OC(i)]=new Tx([],{}));return n}(i,new Tx(n,e.children)))),slicedSegments:[]}:0===n.length&&function(e,t,n){return n.some(n=>EC(e,t,n))}(e,n,i)?{segmentGroup:YC(new Tx(e.segments,function(e,t,n,i){const s={};for(const r of n)EC(e,t,r)&&!i[OC(r)]&&(s[OC(r)]=new Tx([],{}));return Object.assign(Object.assign({},i),s)}(e,n,i,e.children))),slicedSegments:n}:{segmentGroup:e,slicedSegments:n}}(t,r,a,i);return 0===o.length&&s.hasChildren()?this.expandChildren(n,i,s).pipe(H(e=>new Tx(r,e))):0===i.length&&0===o.length?xu(new Tx(r,{})):this.expandSegment(n,s,i,o,\"primary\",!0).pipe(H(e=>new Tx(r.concat(e.segments),e.children)))}))}getChildConfig(e,t,n){return t.children?xu(new fx(t.children,e)):t.loadChildren?void 0!==t._loadedConfig?xu(t._loadedConfig):function(e,t,n){const i=t.canLoad;return i&&0!==i.length?z(i).pipe(H(i=>{const s=e.get(i);let r;if(function(e){return e&&wC(e.canLoad)}(s))r=s.canLoad(t,n);else{if(!wC(s))throw new Error(\"Invalid CanLoad guard\");r=s(t,n)}return Lx(r)})).pipe(Pf(),(s=e=>!0===e,e=>e.lift(new VL(s,void 0,e)))):xu(!0);var s}(e.injector,t,n).pipe(V(n=>n?this.configLoader.load(e.injector,t).pipe(H(e=>(t._loadedConfig=e,e))):function(e){return new v(t=>t.error(mx(`Cannot load children because the guard of the route \"path: '${e.path}'\" returned false`)))}(t))):xu(new fx([],e))}lineralizeSegments(e,t){let n=[],i=t.root;for(;;){if(n=n.concat(i.segments),0===i.numberOfChildren)return xu(n);if(i.numberOfChildren>1||!i.children.primary)return CC(e.redirectTo);i=i.children.primary}}applyRedirectCommands(e,t,n){return this.applyRedirectCreatreUrlTree(t,this.urlSerializer.parse(t),e,n)}applyRedirectCreatreUrlTree(e,t,n,i){const s=this.createSegmentGroup(e,t.root,n,i);return new Cx(s,this.createQueryParams(t.queryParams,this.urlTree.queryParams),t.fragment)}createQueryParams(e,t){const n={};return Sx(e,(e,i)=>{if(\"string\"==typeof e&&e.startsWith(\":\")){const s=e.substring(1);n[i]=t[s]}else n[i]=e}),n}createSegmentGroup(e,t,n,i){const s=this.createSegments(e,t.segments,n,i);let r={};return Sx(t.children,(t,s)=>{r[s]=this.createSegmentGroup(e,t,n,i)}),new Tx(s,r)}createSegments(e,t,n,i){return t.map(t=>t.path.startsWith(\":\")?this.findPosParam(e,t,i):this.findOrReturn(t,n))}findPosParam(e,t,n){const i=n[t.path.substring(1)];if(!i)throw new Error(`Cannot redirect to '${e}'. Cannot find '${t.path}'.`);return i}findOrReturn(e,t){let n=0;for(const i of t){if(i.path===e.path)return t.splice(n),i;n++}return e}}function DC(e,t,n){if(\"\"===t.path)return\"full\"===t.pathMatch&&(e.hasChildren()||n.length>0)?{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}:{matched:!0,consumedSegments:[],lastChild:0,positionalParamSegments:{}};const i=(t.matcher||px)(n,e,t);return i?{matched:!0,consumedSegments:i.consumed,lastChild:i.consumed.length,positionalParamSegments:i.posParams}:{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}}function YC(e){if(1===e.numberOfChildren&&e.children.primary){const t=e.children.primary;return new Tx(e.segments.concat(t.segments),t.children)}return e}function EC(e,t,n){return(!(e.hasChildren()||t.length>0)||\"full\"!==n.pathMatch)&&\"\"===n.path&&void 0!==n.redirectTo}function OC(e){return e.outlet||\"primary\"}class IC{constructor(e){this.path=e,this.route=this.path[this.path.length-1]}}class PC{constructor(e,t){this.component=e,this.route=t}}function AC(e,t,n){const i=e._root;return function e(t,n,i,s,r={canDeactivateChecks:[],canActivateChecks:[]}){const o=Zx(n);return t.children.forEach(t=>{!function(t,n,i,s,r={canDeactivateChecks:[],canActivateChecks:[]}){const o=t.value,a=n?n.value:null,l=i?i.getContext(t.value.outlet):null;if(a&&o.routeConfig===a.routeConfig){const c=function(e,t,n){if(\"function\"==typeof n)return n(e,t);switch(n){case\"pathParamsChange\":return!Yx(e.url,t.url);case\"pathParamsOrQueryParamsChange\":return!Yx(e.url,t.url)||!vx(e.queryParams,t.queryParams);case\"always\":return!0;case\"paramsOrQueryParamsChange\":return!aC(e,t)||!vx(e.queryParams,t.queryParams);case\"paramsChange\":default:return!aC(e,t)}}(a,o,o.routeConfig.runGuardsAndResolvers);c?r.canActivateChecks.push(new IC(s)):(o.data=a.data,o._resolvedData=a._resolvedData),e(t,n,o.component?l?l.children:null:i,s,r),c&&r.canDeactivateChecks.push(new PC(l&&l.outlet&&l.outlet.component||null,a))}else a&&HC(n,l,r),r.canActivateChecks.push(new IC(s)),e(t,null,o.component?l?l.children:null:i,s,r)}(t,o[t.value.outlet],i,s.concat([t.value]),r),delete o[t.value.outlet]}),Sx(o,(e,t)=>HC(e,i.getContext(t),r)),r}(i,t?t._root:null,n,[i.value])}function RC(e,t,n){const i=function(e){if(!e)return null;for(let t=e.parent;t;t=t.parent){const e=t.routeConfig;if(e&&e._loadedConfig)return e._loadedConfig}return null}(t);return(i?i.module.injector:n).get(e)}function HC(e,t,n){const i=Zx(e),s=e.value;Sx(i,(e,i)=>{HC(e,s.component?t?t.children.getContext(i):null:t,n)}),n.canDeactivateChecks.push(new PC(s.component&&t&&t.outlet&&t.outlet.isActivated?t.outlet.component:null,s))}const jC=Symbol(\"INITIAL_VALUE\");function FC(){return Wb(e=>tS(...e.map(e=>e.pipe(cp(1),Rf(jC)))).pipe(UL((e,t)=>{let n=!1;return t.reduce((e,i,s)=>{if(e!==jC)return e;if(i===jC&&(n=!0),!n){if(!1===i)return i;if(s===t.length-1||MC(i))return i}return e},e)},jC),Tu(e=>e!==jC),H(e=>MC(e)?e:!0===e),cp(1)))}function NC(e,t){return null!==e&&t&&t(new ax(e)),xu(!0)}function zC(e,t){return null!==e&&t&&t(new rx(e)),xu(!0)}function VC(e,t,n){const i=t.routeConfig?t.routeConfig.canActivate:null;return i&&0!==i.length?xu(i.map(i=>qv(()=>{const s=RC(i,t,n);let r;if(function(e){return e&&wC(e.canActivate)}(s))r=Lx(s.canActivate(t,e));else{if(!wC(s))throw new Error(\"Invalid CanActivate guard\");r=Lx(s(t,e))}return r.pipe(zL())}))).pipe(FC()):xu(!0)}function WC(e,t,n){const i=t[t.length-1],s=t.slice(0,t.length-1).reverse().map(e=>function(e){const t=e.routeConfig?e.routeConfig.canActivateChild:null;return t&&0!==t.length?{node:e,guards:t}:null}(e)).filter(e=>null!==e).map(t=>qv(()=>xu(t.guards.map(s=>{const r=RC(s,t.node,n);let o;if(function(e){return e&&wC(e.canActivateChild)}(r))o=Lx(r.canActivateChild(i,e));else{if(!wC(r))throw new Error(\"Invalid CanActivateChild guard\");o=Lx(r(i,e))}return o.pipe(zL())})).pipe(FC())));return xu(s).pipe(FC())}class UC{}class $C{constructor(e,t,n,i,s,r){this.rootComponentType=e,this.config=t,this.urlTree=n,this.url=i,this.paramsInheritanceStrategy=s,this.relativeLinkResolution=r}recognize(){try{const e=GC(this.urlTree.root,[],[],this.config,this.relativeLinkResolution).segmentGroup,t=this.processSegmentGroup(this.config,e,\"primary\"),n=new nC([],Object.freeze({}),Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,{},\"primary\",this.rootComponentType,null,this.urlTree.root,-1,{}),i=new Kx(n,t),s=new iC(this.url,i);return this.inheritParamsAndData(s._root),xu(s)}catch(e){return new v(t=>t.error(e))}}inheritParamsAndData(e){const t=e.value,n=tC(t,this.paramsInheritanceStrategy);t.params=Object.freeze(n.params),t.data=Object.freeze(n.data),e.children.forEach(e=>this.inheritParamsAndData(e))}processSegmentGroup(e,t,n){return 0===t.segments.length&&t.hasChildren()?this.processChildren(e,t):this.processSegment(e,t,t.segments,n)}processChildren(e,t){const n=Ex(t,(t,n)=>this.processSegmentGroup(e,t,n));return function(e){const t={};e.forEach(e=>{const n=t[e.value.outlet];if(n){const t=n.url.map(e=>e.toString()).join(\"/\"),i=e.value.url.map(e=>e.toString()).join(\"/\");throw new Error(`Two segments cannot have the same outlet name: '${t}' and '${i}'.`)}t[e.value.outlet]=e.value})}(n),n.sort((e,t)=>\"primary\"===e.value.outlet?-1:\"primary\"===t.value.outlet?1:e.value.outlet.localeCompare(t.value.outlet)),n}processSegment(e,t,n,i){for(const r of e)try{return this.processSegmentAgainstRoute(r,t,n,i)}catch(s){if(!(s instanceof UC))throw s}if(this.noLeftoversInUrl(t,n,i))return[];throw new UC}noLeftoversInUrl(e,t,n){return 0===t.length&&!e.children[n]}processSegmentAgainstRoute(e,t,n,i){if(e.redirectTo)throw new UC;if((e.outlet||\"primary\")!==i)throw new UC;let s,r=[],o=[];if(\"**\"===e.path){const r=n.length>0?kx(n).parameters:{};s=new nC(n,r,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,ZC(e),i,e.component,e,BC(t),qC(t)+n.length,QC(e))}else{const a=function(e,t,n){if(\"\"===t.path){if(\"full\"===t.pathMatch&&(e.hasChildren()||n.length>0))throw new UC;return{consumedSegments:[],lastChild:0,parameters:{}}}const i=(t.matcher||px)(n,e,t);if(!i)throw new UC;const s={};Sx(i.posParams,(e,t)=>{s[t]=e.path});const r=i.consumed.length>0?Object.assign(Object.assign({},s),i.consumed[i.consumed.length-1].parameters):s;return{consumedSegments:i.consumed,lastChild:i.consumed.length,parameters:r}}(t,e,n);r=a.consumedSegments,o=n.slice(a.lastChild),s=new nC(r,a.parameters,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,ZC(e),i,e.component,e,BC(t),qC(t)+r.length,QC(e))}const a=function(e){return e.children?e.children:e.loadChildren?e._loadedConfig.routes:[]}(e),{segmentGroup:l,slicedSegments:c}=GC(t,r,o,a,this.relativeLinkResolution);if(0===c.length&&l.hasChildren()){const e=this.processChildren(a,l);return[new Kx(s,e)]}if(0===a.length&&0===c.length)return[new Kx(s,[])];const d=this.processSegment(a,l,c,\"primary\");return[new Kx(s,d)]}}function BC(e){let t=e;for(;t._sourceSegment;)t=t._sourceSegment;return t}function qC(e){let t=e,n=t._segmentIndexShift?t._segmentIndexShift:0;for(;t._sourceSegment;)t=t._sourceSegment,n+=t._segmentIndexShift?t._segmentIndexShift:0;return n-1}function GC(e,t,n,i,s){if(n.length>0&&function(e,t,n){return n.some(n=>JC(e,t,n)&&\"primary\"!==KC(n))}(e,n,i)){const s=new Tx(t,function(e,t,n,i){const s={};s.primary=i,i._sourceSegment=e,i._segmentIndexShift=t.length;for(const r of n)if(\"\"===r.path&&\"primary\"!==KC(r)){const n=new Tx([],{});n._sourceSegment=e,n._segmentIndexShift=t.length,s[KC(r)]=n}return s}(e,t,i,new Tx(n,e.children)));return s._sourceSegment=e,s._segmentIndexShift=t.length,{segmentGroup:s,slicedSegments:[]}}if(0===n.length&&function(e,t,n){return n.some(n=>JC(e,t,n))}(e,n,i)){const r=new Tx(e.segments,function(e,t,n,i,s,r){const o={};for(const a of i)if(JC(e,n,a)&&!s[KC(a)]){const n=new Tx([],{});n._sourceSegment=e,n._segmentIndexShift=\"legacy\"===r?e.segments.length:t.length,o[KC(a)]=n}return Object.assign(Object.assign({},s),o)}(e,t,n,i,e.children,s));return r._sourceSegment=e,r._segmentIndexShift=t.length,{segmentGroup:r,slicedSegments:n}}const r=new Tx(e.segments,e.children);return r._sourceSegment=e,r._segmentIndexShift=t.length,{segmentGroup:r,slicedSegments:n}}function JC(e,t,n){return(!(e.hasChildren()||t.length>0)||\"full\"!==n.pathMatch)&&\"\"===n.path&&void 0===n.redirectTo}function KC(e){return e.outlet||\"primary\"}function ZC(e){return e.data||{}}function QC(e){return e.resolve||{}}function XC(e,t,n,i){const s=RC(e,t,i);return Lx(s.resolve?s.resolve(t,n):s(t,n))}function eT(e){return function(t){return t.pipe(Wb(t=>{const n=e(t);return n?z(n).pipe(H(()=>t)):z([t])}))}}class tT{shouldDetach(e){return!1}store(e,t){}shouldAttach(e){return!1}retrieve(e){return null}shouldReuseRoute(e,t){return e.routeConfig===t.routeConfig}}const nT=new Ve(\"ROUTES\");class iT{constructor(e,t,n,i){this.loader=e,this.compiler=t,this.onLoadStartListener=n,this.onLoadEndListener=i}load(e,t){return this.onLoadStartListener&&this.onLoadStartListener(t),this.loadModuleFactory(t.loadChildren).pipe(H(n=>{this.onLoadEndListener&&this.onLoadEndListener(t);const i=n.create(e);return new fx(Mx(i.injector.get(nT)).map(bx),i)}))}loadModuleFactory(e){return\"string\"==typeof e?z(this.loader.load(e)):Lx(e()).pipe(V(e=>e instanceof st?xu(e):z(this.compiler.compileModuleAsync(e))))}}class sT{shouldProcessUrl(e){return!0}extract(e){return e}merge(e,t){return e}}function rT(e){throw e}function oT(e,t,n){return t.parse(\"/\")}function aT(e,t){return xu(null)}let lT=(()=>{class e{constructor(e,t,n,i,s,r,o,a){this.rootComponentType=e,this.urlSerializer=t,this.rootContexts=n,this.location=i,this.config=a,this.lastSuccessfulNavigation=null,this.currentNavigation=null,this.navigationId=0,this.isNgZoneEnabled=!1,this.events=new L,this.errorHandler=rT,this.malformedUriErrorHandler=oT,this.navigated=!1,this.lastSuccessfulId=-1,this.hooks={beforePreactivation:aT,afterPreactivation:aT},this.urlHandlingStrategy=new sT,this.routeReuseStrategy=new tT,this.onSameUrlNavigation=\"ignore\",this.paramsInheritanceStrategy=\"emptyOnly\",this.urlUpdateStrategy=\"deferred\",this.relativeLinkResolution=\"legacy\",this.ngModule=s.get(it),this.console=s.get(Gc);const l=s.get(ld);this.isNgZoneEnabled=l instanceof ld,this.resetConfig(a),this.currentUrlTree=new Cx(new Tx([],{}),{},null),this.rawUrlTree=this.currentUrlTree,this.browserUrlTree=this.currentUrlTree,this.configLoader=new iT(r,o,e=>this.triggerEvent(new ix(e)),e=>this.triggerEvent(new sx(e))),this.routerState=Xx(this.currentUrlTree,this.rootComponentType),this.transitions=new hS({id:0,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,extractedUrl:this.urlHandlingStrategy.extract(this.currentUrlTree),urlAfterRedirects:this.urlHandlingStrategy.extract(this.currentUrlTree),rawUrl:this.currentUrlTree,extras:{},resolve:null,reject:null,promise:Promise.resolve(!0),source:\"imperative\",restoredState:null,currentSnapshot:this.routerState.snapshot,targetSnapshot:null,currentRouterState:this.routerState,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.navigations=this.setupNavigations(this.transitions),this.processNavigations()}setupNavigations(e){const t=this.events;return e.pipe(Tu(e=>0!==e.id),H(e=>Object.assign(Object.assign({},e),{extractedUrl:this.urlHandlingStrategy.extract(e.rawUrl)})),Wb(e=>{let n=!1,i=!1;return xu(e).pipe(Gm(e=>{this.currentNavigation={id:e.id,initialUrl:e.currentRawUrl,extractedUrl:e.extractedUrl,trigger:e.source,extras:e.extras,previousNavigation:this.lastSuccessfulNavigation?Object.assign(Object.assign({},this.lastSuccessfulNavigation),{previousNavigation:null}):null}}),Wb(e=>{const n=!this.navigated||e.extractedUrl.toString()!==this.browserUrlTree.toString();if((\"reload\"===this.onSameUrlNavigation||n)&&this.urlHandlingStrategy.shouldProcessUrl(e.rawUrl))return xu(e).pipe(Wb(e=>{const n=this.transitions.getValue();return t.next(new GL(e.id,this.serializeUrl(e.extractedUrl),e.source,e.restoredState)),n!==this.transitions.getValue()?ap:[e]}),Wb(e=>Promise.resolve(e)),(i=this.ngModule.injector,s=this.configLoader,r=this.urlSerializer,o=this.config,function(e){return e.pipe(Wb(e=>function(e,t,n,i,s){return new TC(e,t,n,i,s).apply()}(i,s,r,e.extractedUrl,o).pipe(H(t=>Object.assign(Object.assign({},e),{urlAfterRedirects:t})))))}),Gm(e=>{this.currentNavigation=Object.assign(Object.assign({},this.currentNavigation),{finalUrl:e.urlAfterRedirects})}),function(e,t,n,i,s){return function(r){return r.pipe(V(r=>function(e,t,n,i,s=\"emptyOnly\",r=\"legacy\"){return new $C(e,t,n,i,s,r).recognize()}(e,t,r.urlAfterRedirects,n(r.urlAfterRedirects),i,s).pipe(H(e=>Object.assign(Object.assign({},r),{targetSnapshot:e})))))}}(this.rootComponentType,this.config,e=>this.serializeUrl(e),this.paramsInheritanceStrategy,this.relativeLinkResolution),Gm(e=>{\"eager\"===this.urlUpdateStrategy&&(e.extras.skipLocationChange||this.setBrowserUrl(e.urlAfterRedirects,!!e.extras.replaceUrl,e.id,e.extras.state),this.browserUrlTree=e.urlAfterRedirects)}),Gm(e=>{const n=new QL(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);t.next(n)}));var i,s,r,o;if(n&&this.rawUrlTree&&this.urlHandlingStrategy.shouldProcessUrl(this.rawUrlTree)){const{id:n,extractedUrl:i,source:s,restoredState:r,extras:o}=e,a=new GL(n,this.serializeUrl(i),s,r);t.next(a);const l=Xx(i,this.rootComponentType).snapshot;return xu(Object.assign(Object.assign({},e),{targetSnapshot:l,urlAfterRedirects:i,extras:Object.assign(Object.assign({},o),{skipLocationChange:!1,replaceUrl:!1})}))}return this.rawUrlTree=e.rawUrl,this.browserUrlTree=e.urlAfterRedirects,e.resolve(null),ap}),eT(e=>{const{targetSnapshot:t,id:n,extractedUrl:i,rawUrl:s,extras:{skipLocationChange:r,replaceUrl:o}}=e;return this.hooks.beforePreactivation(t,{navigationId:n,appliedUrlTree:i,rawUrlTree:s,skipLocationChange:!!r,replaceUrl:!!o})}),Gm(e=>{const t=new XL(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);this.triggerEvent(t)}),H(e=>Object.assign(Object.assign({},e),{guards:AC(e.targetSnapshot,e.currentSnapshot,this.rootContexts)})),function(e,t){return function(n){return n.pipe(V(n=>{const{targetSnapshot:i,currentSnapshot:s,guards:{canActivateChecks:r,canDeactivateChecks:o}}=n;return 0===o.length&&0===r.length?xu(Object.assign(Object.assign({},n),{guardsResult:!0})):function(e,t,n,i){return z(e).pipe(V(e=>function(e,t,n,i,s){const r=t&&t.routeConfig?t.routeConfig.canDeactivate:null;return r&&0!==r.length?xu(r.map(r=>{const o=RC(r,t,s);let a;if(function(e){return e&&wC(e.canDeactivate)}(o))a=Lx(o.canDeactivate(e,t,n,i));else{if(!wC(o))throw new Error(\"Invalid CanDeactivate guard\");a=Lx(o(e,t,n,i))}return a.pipe(zL())})).pipe(FC()):xu(!0)}(e.component,e.route,n,t,i)),zL(e=>!0!==e,!0))}(o,i,s,e).pipe(V(n=>n&&\"boolean\"==typeof n?function(e,t,n,i){return z(t).pipe(Cu(t=>z([zC(t.route.parent,i),NC(t.route,i),WC(e,t.path,n),VC(e,t.route,n)]).pipe(Pf(),zL(e=>!0!==e,!0))),zL(e=>!0!==e,!0))}(i,r,e,t):xu(n)),H(e=>Object.assign(Object.assign({},n),{guardsResult:e})))}))}}(this.ngModule.injector,e=>this.triggerEvent(e)),Gm(e=>{if(MC(e.guardsResult)){const t=mx(`Redirecting to \"${this.serializeUrl(e.guardsResult)}\"`);throw t.url=e.guardsResult,t}}),Gm(e=>{const t=new ex(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot,!!e.guardsResult);this.triggerEvent(t)}),Tu(e=>{if(!e.guardsResult){this.resetUrlToCurrentUrlTree();const n=new KL(e.id,this.serializeUrl(e.extractedUrl),\"\");return t.next(n),e.resolve(!1),!1}return!0}),eT(e=>{if(e.guards.canActivateChecks.length)return xu(e).pipe(Gm(e=>{const t=new tx(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);this.triggerEvent(t)}),(t=this.paramsInheritanceStrategy,n=this.ngModule.injector,function(e){return e.pipe(V(e=>{const{targetSnapshot:i,guards:{canActivateChecks:s}}=e;return s.length?z(s).pipe(Cu(e=>function(e,t,n,i){return function(e,t,n,i){const s=Object.keys(e);if(0===s.length)return xu({});if(1===s.length){const r=s[0];return XC(e[r],t,n,i).pipe(H(e=>({[r]:e})))}const r={};return z(s).pipe(V(s=>XC(e[s],t,n,i).pipe(H(e=>(r[s]=e,e))))).pipe(NL(),H(()=>r))}(e._resolve,e,t,i).pipe(H(t=>(e._resolvedData=t,e.data=Object.assign(Object.assign({},e.data),tC(e,n).resolve),null)))}(e.route,i,t,n)),function(e,t){return arguments.length>=2?function(n){return y(UL(e,t),YL(1),HL(t))(n)}:function(t){return y(UL((t,n,i)=>e(t,n,i+1)),YL(1))(t)}}((e,t)=>e),H(t=>e)):xu(e)}))}),Gm(e=>{const t=new nx(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);this.triggerEvent(t)}));var t,n}),eT(e=>{const{targetSnapshot:t,id:n,extractedUrl:i,rawUrl:s,extras:{skipLocationChange:r,replaceUrl:o}}=e;return this.hooks.afterPreactivation(t,{navigationId:n,appliedUrlTree:i,rawUrlTree:s,skipLocationChange:!!r,replaceUrl:!!o})}),H(e=>{const t=function(e,t,n){const i=function e(t,n,i){if(i&&t.shouldReuseRoute(n.value,i.value.snapshot)){const s=i.value;s._futureSnapshot=n.value;const r=function(t,n,i){return n.children.map(n=>{for(const s of i.children)if(t.shouldReuseRoute(s.value.snapshot,n.value))return e(t,n,s);return e(t,n)})}(t,n,i);return new Kx(s,r)}{const i=t.retrieve(n.value);if(i){const e=i.route;return function e(t,n){if(t.value.routeConfig!==n.value.routeConfig)throw new Error(\"Cannot reattach ActivatedRouteSnapshot created from a different route\");if(t.children.length!==n.children.length)throw new Error(\"Cannot reattach ActivatedRouteSnapshot with a different number of children\");n.value._futureSnapshot=t.value;for(let i=0;ie(t,n));return new Kx(i,r)}}var s}(e,t._root,n?n._root:void 0);return new Qx(i,t)}(this.routeReuseStrategy,e.targetSnapshot,e.currentRouterState);return Object.assign(Object.assign({},e),{targetRouterState:t})}),Gm(e=>{this.currentUrlTree=e.urlAfterRedirects,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,e.rawUrl),this.routerState=e.targetRouterState,\"deferred\"===this.urlUpdateStrategy&&(e.extras.skipLocationChange||this.setBrowserUrl(this.rawUrlTree,!!e.extras.replaceUrl,e.id,e.extras.state),this.browserUrlTree=e.urlAfterRedirects)}),(s=this.rootContexts,r=this.routeReuseStrategy,o=e=>this.triggerEvent(e),H(e=>(new bC(r,e.targetRouterState,e.currentRouterState,o).activate(s),e))),Gm({next(){n=!0},complete(){n=!0}}),dw(()=>{if(!n&&!i){this.resetUrlToCurrentUrlTree();const n=new KL(e.id,this.serializeUrl(e.extractedUrl),`Navigation ID ${e.id} is not equal to the current navigation id ${this.navigationId}`);t.next(n),e.resolve(!1)}this.currentNavigation=null}),aw(n=>{if(i=!0,(s=n)&&s.ngNavigationCancelingError){const i=MC(n.url);i||(this.navigated=!0,this.resetStateAndUrl(e.currentRouterState,e.currentUrlTree,e.rawUrl));const s=new KL(e.id,this.serializeUrl(e.extractedUrl),n.message);t.next(s),i?setTimeout(()=>{const t=this.urlHandlingStrategy.merge(n.url,this.rawUrlTree);return this.scheduleNavigation(t,\"imperative\",null,{skipLocationChange:e.extras.skipLocationChange,replaceUrl:\"eager\"===this.urlUpdateStrategy},{resolve:e.resolve,reject:e.reject,promise:e.promise})},0):e.resolve(!1)}else{this.resetStateAndUrl(e.currentRouterState,e.currentUrlTree,e.rawUrl);const i=new ZL(e.id,this.serializeUrl(e.extractedUrl),n);t.next(i);try{e.resolve(this.errorHandler(n))}catch(r){e.reject(r)}}var s;return ap}));var s,r,o}))}resetRootComponentType(e){this.rootComponentType=e,this.routerState.root.component=this.rootComponentType}getTransition(){const e=this.transitions.value;return e.urlAfterRedirects=this.browserUrlTree,e}setTransition(e){this.transitions.next(Object.assign(Object.assign({},this.getTransition()),e))}initialNavigation(){this.setUpLocationChangeListener(),0===this.navigationId&&this.navigateByUrl(this.location.path(!0),{replaceUrl:!0})}setUpLocationChangeListener(){this.locationSubscription||(this.locationSubscription=this.location.subscribe(e=>{let t=this.parseUrl(e.url);const n=\"popstate\"===e.type?\"popstate\":\"hashchange\",i=e.state&&e.state.navigationId?e.state:null;setTimeout(()=>{this.scheduleNavigation(t,n,i,{replaceUrl:!0})},0)}))}get url(){return this.serializeUrl(this.currentUrlTree)}getCurrentNavigation(){return this.currentNavigation}triggerEvent(e){this.events.next(e)}resetConfig(e){_x(e),this.config=e.map(bx),this.navigated=!1,this.lastSuccessfulId=-1}ngOnDestroy(){this.dispose()}dispose(){this.locationSubscription&&(this.locationSubscription.unsubscribe(),this.locationSubscription=null)}createUrlTree(e,t={}){const{relativeTo:n,queryParams:i,fragment:s,preserveQueryParams:r,queryParamsHandling:o,preserveFragment:a}=t;Si()&&r&&console&&console.warn&&console.warn(\"preserveQueryParams is deprecated, use queryParamsHandling instead.\");const l=n||this.routerState.root,c=a?this.currentUrlTree.fragment:s;let d=null;if(o)switch(o){case\"merge\":d=Object.assign(Object.assign({},this.currentUrlTree.queryParams),i);break;case\"preserve\":d=this.currentUrlTree.queryParams;break;default:d=i||null}else d=r?this.currentUrlTree.queryParams:i||null;return null!==d&&(d=this.removeEmptyProps(d)),function(e,t,n,i,s){if(0===n.length)return cC(t.root,t.root,t,i,s);const r=function(e){if(\"string\"==typeof e[0]&&1===e.length&&\"/\"===e[0])return new dC(!0,0,e);let t=0,n=!1;const i=e.reduce((e,i,s)=>{if(\"object\"==typeof i&&null!=i){if(i.outlets){const t={};return Sx(i.outlets,(e,n)=>{t[n]=\"string\"==typeof e?e.split(\"/\"):e}),[...e,{outlets:t}]}if(i.segmentPath)return[...e,i.segmentPath]}return\"string\"!=typeof i?[...e,i]:0===s?(i.split(\"/\").forEach((i,s)=>{0==s&&\".\"===i||(0==s&&\"\"===i?n=!0:\"..\"===i?t++:\"\"!=i&&e.push(i))}),e):[...e,i]},[]);return new dC(n,t,i)}(n);if(r.toRoot())return cC(t.root,new Tx([],{}),t,i,s);const o=function(e,t,n){if(e.isAbsolute)return new uC(t.root,!0,0);if(-1===n.snapshot._lastPathIndex)return new uC(n.snapshot._urlSegment,!0,0);const i=lC(e.commands[0])?0:1;return function(e,t,n){let i=e,s=t,r=n;for(;r>s;){if(r-=s,i=i.parent,!i)throw new Error(\"Invalid number of '../'\");s=i.segments.length}return new uC(i,!1,s-r)}(n.snapshot._urlSegment,n.snapshot._lastPathIndex+i,e.numberOfDoubleDots)}(r,t,e),a=o.processChildren?pC(o.segmentGroup,o.index,r.commands):mC(o.segmentGroup,o.index,r.commands);return cC(o.segmentGroup,a,t,i,s)}(l,this.currentUrlTree,e,d,c)}navigateByUrl(e,t={skipLocationChange:!1}){Si()&&this.isNgZoneEnabled&&!ld.isInAngularZone()&&this.console.warn(\"Navigation triggered outside Angular zone, did you forget to call 'ngZone.run()'?\");const n=MC(e)?e:this.parseUrl(e),i=this.urlHandlingStrategy.merge(n,this.rawUrlTree);return this.scheduleNavigation(i,\"imperative\",null,t)}navigate(e,t={skipLocationChange:!1}){return function(e){for(let t=0;t{const i=e[n];return null!=i&&(t[n]=i),t},{})}processNavigations(){this.navigations.subscribe(e=>{this.navigated=!0,this.lastSuccessfulId=e.id,this.events.next(new JL(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(this.currentUrlTree))),this.lastSuccessfulNavigation=this.currentNavigation,this.currentNavigation=null,e.resolve(!0)},e=>{this.console.warn(\"Unhandled Navigation Error: \")})}scheduleNavigation(e,t,n,i,s){const r=this.getTransition();if(r&&\"imperative\"!==t&&\"imperative\"===r.source&&r.rawUrl.toString()===e.toString())return Promise.resolve(!0);if(r&&\"hashchange\"==t&&\"popstate\"===r.source&&r.rawUrl.toString()===e.toString())return Promise.resolve(!0);if(r&&\"popstate\"==t&&\"hashchange\"===r.source&&r.rawUrl.toString()===e.toString())return Promise.resolve(!0);let o,a,l;s?(o=s.resolve,a=s.reject,l=s.promise):l=new Promise((e,t)=>{o=e,a=t});const c=++this.navigationId;return this.setTransition({id:c,source:t,restoredState:n,currentUrlTree:this.currentUrlTree,currentRawUrl:this.rawUrlTree,rawUrl:e,extras:i,resolve:o,reject:a,promise:l,currentSnapshot:this.routerState.snapshot,currentRouterState:this.routerState}),l.catch(e=>Promise.reject(e))}setBrowserUrl(e,t,n,i){const s=this.urlSerializer.serialize(e);i=i||{},this.location.isCurrentPathEqualTo(s)||t?this.location.replaceState(s,\"\",Object.assign(Object.assign({},i),{navigationId:n})):this.location.go(s,\"\",Object.assign(Object.assign({},i),{navigationId:n}))}resetStateAndUrl(e,t,n){this.routerState=e,this.currentUrlTree=t,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,n),this.resetUrlToCurrentUrlTree()}resetUrlToCurrentUrlTree(){this.location.replaceState(this.urlSerializer.serialize(this.rawUrlTree),\"\",{navigationId:this.lastSuccessfulId})}}return e.\\u0275fac=function(e){Io()},e.\\u0275dir=St({type:e}),e})(),cT=(()=>{class e{constructor(e,t,n){this.router=e,this.route=t,this.locationStrategy=n,this.commands=[],this.subscription=e.events.subscribe(e=>{e instanceof JL&&this.updateTargetUrlAndHref()})}set routerLink(e){this.commands=null!=e?Array.isArray(e)?e:[e]:[]}set preserveQueryParams(e){Si()&&console&&console.warn&&console.warn(\"preserveQueryParams is deprecated, use queryParamsHandling instead.\"),this.preserve=e}ngOnChanges(e){this.updateTargetUrlAndHref()}ngOnDestroy(){this.subscription.unsubscribe()}onClick(e,t,n,i){if(0!==e||t||n||i)return!0;if(\"string\"==typeof this.target&&\"_self\"!=this.target)return!0;const s={skipLocationChange:dT(this.skipLocationChange),replaceUrl:dT(this.replaceUrl),state:this.state};return this.router.navigateByUrl(this.urlTree,s),!1}updateTargetUrlAndHref(){this.href=this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.urlTree))}get urlTree(){return this.router.createUrlTree(this.commands,{relativeTo:this.route,queryParams:this.queryParams,fragment:this.fragment,preserveQueryParams:dT(this.preserve),queryParamsHandling:this.queryParamsHandling,preserveFragment:dT(this.preserveFragment)})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(lT),Eo(eC),Eo(Kd))},e.\\u0275dir=St({type:e,selectors:[[\"a\",\"routerLink\",\"\"],[\"area\",\"routerLink\",\"\"]],hostVars:2,hostBindings:function(e,t){1&e&&Uo(\"click\",(function(e){return t.onClick(e.button,e.ctrlKey,e.metaKey,e.shiftKey)})),2&e&&(Ca(\"href\",t.href,es),Co(\"target\",t.target))},inputs:{routerLink:\"routerLink\",preserveQueryParams:\"preserveQueryParams\",target:\"target\",queryParams:\"queryParams\",fragment:\"fragment\",queryParamsHandling:\"queryParamsHandling\",preserveFragment:\"preserveFragment\",skipLocationChange:\"skipLocationChange\",replaceUrl:\"replaceUrl\",state:\"state\"},features:[Ra]}),e})();function dT(e){return\"\"===e||!!e}class uT{constructor(){this.outlet=null,this.route=null,this.resolver=null,this.children=new hT,this.attachRef=null}}class hT{constructor(){this.contexts=new Map}onChildOutletCreated(e,t){const n=this.getOrCreateContext(e);n.outlet=t,this.contexts.set(e,n)}onChildOutletDestroyed(e){const t=this.getContext(e);t&&(t.outlet=null)}onOutletDeactivated(){const e=this.contexts;return this.contexts=new Map,e}onOutletReAttached(e){this.contexts=e}getOrCreateContext(e){let t=this.getContext(e);return t||(t=new uT,this.contexts.set(e,t)),t}getContext(e){return this.contexts.get(e)||null}}let mT=(()=>{class e{constructor(e,t,n,i,s){this.parentContexts=e,this.location=t,this.resolver=n,this.changeDetector=s,this.activated=null,this._activatedRoute=null,this.activateEvents=new yc,this.deactivateEvents=new yc,this.name=i||\"primary\",e.onChildOutletCreated(this.name,this)}ngOnDestroy(){this.parentContexts.onChildOutletDestroyed(this.name)}ngOnInit(){if(!this.activated){const e=this.parentContexts.getContext(this.name);e&&e.route&&(e.attachRef?this.attach(e.attachRef,e.route):this.activateWith(e.route,e.resolver||null))}}get isActivated(){return!!this.activated}get component(){if(!this.activated)throw new Error(\"Outlet is not activated\");return this.activated.instance}get activatedRoute(){if(!this.activated)throw new Error(\"Outlet is not activated\");return this._activatedRoute}get activatedRouteData(){return this._activatedRoute?this._activatedRoute.snapshot.data:{}}detach(){if(!this.activated)throw new Error(\"Outlet is not activated\");this.location.detach();const e=this.activated;return this.activated=null,this._activatedRoute=null,e}attach(e,t){this.activated=e,this._activatedRoute=t,this.location.insert(e.hostView)}deactivate(){if(this.activated){const e=this.component;this.activated.destroy(),this.activated=null,this._activatedRoute=null,this.deactivateEvents.emit(e)}}activateWith(e,t){if(this.isActivated)throw new Error(\"Cannot activate an already activated outlet\");this._activatedRoute=e;const n=(t=t||this.resolver).resolveComponentFactory(e._futureSnapshot.routeConfig.component),i=this.parentContexts.getOrCreateContext(this.name).children,s=new pT(e,i,this.location.injector);this.activated=this.location.createComponent(n,this.location.length,s),this.changeDetector.markForCheck(),this.activateEvents.emit(this.activated.instance)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(hT),Eo(Ml),Eo(Ja),Oo(\"name\"),Eo(Qr))},e.\\u0275dir=St({type:e,selectors:[[\"router-outlet\"]],outputs:{activateEvents:\"activate\",deactivateEvents:\"deactivate\"},exportAs:[\"outlet\"]}),e})();class pT{constructor(e,t,n){this.route=e,this.childContexts=t,this.parent=n}get(e,t){return e===eC?this.route:e===hT?this.childContexts:this.parent.get(e,t)}}class fT{}class _T{preload(e,t){return xu(null)}}let gT=(()=>{class e{constructor(e,t,n,i,s){this.router=e,this.injector=i,this.preloadingStrategy=s,this.loader=new iT(t,n,t=>e.triggerEvent(new ix(t)),t=>e.triggerEvent(new sx(t)))}setUpPreloading(){this.subscription=this.router.events.pipe(Tu(e=>e instanceof JL),Cu(()=>this.preload())).subscribe(()=>{})}preload(){const e=this.injector.get(it);return this.processRoutes(e,this.router.config)}ngOnDestroy(){this.subscription.unsubscribe()}processRoutes(e,t){const n=[];for(const i of t)if(i.loadChildren&&!i.canLoad&&i._loadedConfig){const e=i._loadedConfig;n.push(this.processRoutes(e.module,e.routes))}else i.loadChildren&&!i.canLoad?n.push(this.preloadConfig(e,i)):i.children&&n.push(this.processRoutes(e,i.children));return z(n).pipe(B(),H(e=>{}))}preloadConfig(e,t){return this.preloadingStrategy.preload(t,()=>this.loader.load(e.injector,t).pipe(V(e=>(t._loadedConfig=e,this.processRoutes(e.module,e.routes)))))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(lT),Qe(Yd),Qe(sd),Qe(fo),Qe(fT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),yT=(()=>{class e{constructor(e,t,n={}){this.router=e,this.viewportScroller=t,this.options=n,this.lastId=0,this.lastSource=\"imperative\",this.restoredId=0,this.store={},n.scrollPositionRestoration=n.scrollPositionRestoration||\"disabled\",n.anchorScrolling=n.anchorScrolling||\"disabled\"}init(){\"disabled\"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration(\"manual\"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}createScrollEvents(){return this.router.events.subscribe(e=>{e instanceof GL?(this.store[this.lastId]=this.viewportScroller.getScrollPosition(),this.lastSource=e.navigationTrigger,this.restoredId=e.restoredState?e.restoredState.navigationId:0):e instanceof JL&&(this.lastId=e.id,this.scheduleScrollEvent(e,this.router.parseUrl(e.urlAfterRedirects).fragment))})}consumeScrollEvents(){return this.router.events.subscribe(e=>{e instanceof cx&&(e.position?\"top\"===this.options.scrollPositionRestoration?this.viewportScroller.scrollToPosition([0,0]):\"enabled\"===this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition(e.position):e.anchor&&\"enabled\"===this.options.anchorScrolling?this.viewportScroller.scrollToAnchor(e.anchor):\"disabled\"!==this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition([0,0]))})}scheduleScrollEvent(e,t){this.router.triggerEvent(new cx(e,\"popstate\"===this.lastSource?this.store[this.restoredId]:null,t))}ngOnDestroy(){this.routerEventsSubscription&&this.routerEventsSubscription.unsubscribe(),this.scrollEventsSubscription&&this.scrollEventsSubscription.unsubscribe()}}return e.\\u0275fac=function(e){Io()},e.\\u0275dir=St({type:e}),e})();const bT=new Ve(\"ROUTER_CONFIGURATION\"),vT=new Ve(\"ROUTER_FORROOT_GUARD\"),wT=[tu,{provide:Ox,useClass:Ix},{provide:lT,useFactory:function(e,t,n,i,s,r,o,a={},l,c){const d=new lT(null,e,t,n,i,s,r,Mx(o));if(l&&(d.urlHandlingStrategy=l),c&&(d.routeReuseStrategy=c),a.errorHandler&&(d.errorHandler=a.errorHandler),a.malformedUriErrorHandler&&(d.malformedUriErrorHandler=a.malformedUriErrorHandler),a.enableTracing){const e=Fd();d.events.subscribe(t=>{e.logGroup(`Router Event: ${t.constructor.name}`),e.log(t.toString()),e.log(t),e.logGroupEnd()})}return a.onSameUrlNavigation&&(d.onSameUrlNavigation=a.onSameUrlNavigation),a.paramsInheritanceStrategy&&(d.paramsInheritanceStrategy=a.paramsInheritanceStrategy),a.urlUpdateStrategy&&(d.urlUpdateStrategy=a.urlUpdateStrategy),a.relativeLinkResolution&&(d.relativeLinkResolution=a.relativeLinkResolution),d},deps:[Ox,hT,tu,fo,Yd,sd,nT,bT,[class{},new le],[class{},new le]]},hT,{provide:eC,useFactory:function(e){return e.routerState.root},deps:[lT]},{provide:Yd,useClass:Id},gT,_T,class{preload(e,t){return t().pipe(aw(()=>xu(null)))}},{provide:bT,useValue:{enableTracing:!1}}];function MT(){return new kd(\"Router\",lT)}let kT=(()=>{class e{constructor(e,t){}static forRoot(t,n){return{ngModule:e,providers:[wT,CT(t),{provide:vT,useFactory:xT,deps:[[lT,new le,new de]]},{provide:bT,useValue:n||{}},{provide:Kd,useFactory:LT,deps:[zd,[new ae(Qd),new le],bT]},{provide:yT,useFactory:ST,deps:[lT,Su,bT]},{provide:fT,useExisting:n&&n.preloadingStrategy?n.preloadingStrategy:_T},{provide:kd,multi:!0,useFactory:MT},[TT,{provide:Nc,multi:!0,useFactory:DT,deps:[TT]},{provide:ET,useFactory:YT,deps:[TT]},{provide:qc,multi:!0,useExisting:ET}]]}}static forChild(t){return{ngModule:e,providers:[CT(t)]}}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)(Qe(vT,8),Qe(lT,8))}}),e})();function ST(e,t,n){return n.scrollOffset&&t.setOffset(n.scrollOffset),new yT(e,t,n)}function LT(e,t,n={}){return n.useHash?new eu(e,t):new Xd(e,t)}function xT(e){if(e)throw new Error(\"RouterModule.forRoot() called twice. Lazy loaded modules should use RouterModule.forChild() instead.\");return\"guarded\"}function CT(e){return[{provide:_o,multi:!0,useValue:e},{provide:nT,multi:!0,useValue:e}]}let TT=(()=>{class e{constructor(e){this.injector=e,this.initNavigation=!1,this.resultOfPreactivationDone=new L}appInitializer(){return this.injector.get(Wd,Promise.resolve(null)).then(()=>{let e=null;const t=new Promise(t=>e=t),n=this.injector.get(lT),i=this.injector.get(bT);if(this.isLegacyDisabled(i)||this.isLegacyEnabled(i))e(!0);else if(\"disabled\"===i.initialNavigation)n.setUpLocationChangeListener(),e(!0);else{if(\"enabled\"!==i.initialNavigation)throw new Error(`Invalid initialNavigation options: '${i.initialNavigation}'`);n.hooks.afterPreactivation=()=>this.initNavigation?xu(null):(this.initNavigation=!0,e(!0),this.resultOfPreactivationDone),n.initialNavigation()}return t})}bootstrapListener(e){const t=this.injector.get(bT),n=this.injector.get(gT),i=this.injector.get(yT),s=this.injector.get(lT),r=this.injector.get(Td);e===r.components[0]&&(this.isLegacyEnabled(t)?s.initialNavigation():this.isLegacyDisabled(t)&&s.setUpLocationChangeListener(),n.setUpPreloading(),i.init(),s.resetRootComponentType(r.componentTypes[0]),this.resultOfPreactivationDone.next(null),this.resultOfPreactivationDone.complete())}isLegacyEnabled(e){return\"legacy_enabled\"===e.initialNavigation||!0===e.initialNavigation||void 0===e.initialNavigation}isLegacyDisabled(e){return\"legacy_disabled\"===e.initialNavigation||!1===e.initialNavigation}}return e.\\u0275fac=function(t){return new(t||e)(Qe(fo))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function DT(e){return e.appInitializer.bind(e)}function YT(e){return e.bootstrapListener.bind(e)}const ET=new Ve(\"Router Initializer\");function OT(e=0,t=tp){return(!Rb(e)||e<0)&&(e=0),t&&\"function\"==typeof t.schedule||(t=tp),new v(n=>(n.add(t.schedule(IT,e,{subscriber:n,counter:0,period:e})),n))}function IT(e){const{subscriber:t,counter:n,period:i}=e;t.next(n),this.schedule({subscriber:t,counter:n+1,period:i},i)}const PT={leading:!0,trailing:!1};class AT{constructor(e,t,n){this.durationSelector=e,this.leading=t,this.trailing=n}call(e,t){return t.subscribe(new RT(e,this.durationSelector,this.leading,this.trailing))}}class RT extends R{constructor(e,t,n,i){super(e),this.destination=e,this.durationSelector=t,this._leading=n,this._trailing=i,this._hasValue=!1}_next(e){this._hasValue=!0,this._sendValue=e,this._throttled||(this._leading?this.send():this.throttle(e))}send(){const{_hasValue:e,_sendValue:t}=this;e&&(this.destination.next(t),this.throttle(t)),this._hasValue=!1,this._sendValue=null}throttle(e){const t=this.tryDurationSelector(e);t&&this.add(this._throttled=A(this,t))}tryDurationSelector(e){try{return this.durationSelector(e)}catch(t){return this.destination.error(t),null}}throttlingDone(){const{_throttled:e,_trailing:t}=this;e&&e.unsubscribe(),this._throttled=null,t&&this.send()}notifyNext(e,t,n,i,s){this.throttlingDone()}notifyComplete(){this.throttlingDone()}}function HT(e){const{start:t,index:n,count:i,subscriber:s}=e;n>=i?s.complete():(s.next(t),s.closed||(e.index=n+1,e.start=t+1,this.schedule(e)))}function jT(e){return t=>t.lift(new FT(e,t))}class FT{constructor(e,t){this.notifier=e,this.source=t}call(e,t){return t.subscribe(new NT(e,this.notifier,this.source))}}class NT extends R{constructor(e,t,n){super(e),this.notifier=t,this.source=n}error(e){if(!this.isStopped){let n=this.errors,i=this.retries,s=this.retriesSubscription;if(i)this.errors=null,this.retriesSubscription=null;else{n=new L;try{const{notifier:e}=this;i=e(n)}catch(t){return super.error(t)}s=A(this,i)}this._unsubscribeAndRecycle(),this.errors=n,this.retries=i,this.retriesSubscription=s,n.next(e)}}_unsubscribe(){const{errors:e,retriesSubscription:t}=this;e&&(e.unsubscribe(),this.errors=null),t&&(t.unsubscribe(),this.retriesSubscription=null),this.retries=null}notifyNext(e,t,n,i,s){const{_unsubscribe:r}=this;this._unsubscribe=null,this._unsubscribeAndRecycle(),this._unsubscribe=r,this.source.subscribe(this)}}class zT{constructor(e){this.resultSelector=e}call(e,t){return t.subscribe(new VT(e,this.resultSelector))}}class VT extends p{constructor(e,t,n=Object.create(null)){super(e),this.iterators=[],this.active=0,this.resultSelector=\"function\"==typeof t?t:null,this.values=n}_next(e){const t=this.iterators;l(e)?t.push(new UT(e)):t.push(\"function\"==typeof e[E]?new WT(e[E]()):new $T(this.destination,this,e))}_complete(){const e=this.iterators,t=e.length;if(this.unsubscribe(),0!==t){this.active=t;for(let n=0;nthis.index}hasCompleted(){return this.array.length===this.index}}class $T extends R{constructor(e,t,n){super(e),this.parent=t,this.observable=n,this.stillUnsubscribed=!0,this.buffer=[],this.isComplete=!1}[E](){return this}next(){const e=this.buffer;return 0===e.length&&this.isComplete?{value:null,done:!0}:{value:e.shift(),done:!1}}hasValue(){return this.buffer.length>0}hasCompleted(){return 0===this.buffer.length&&this.isComplete}notifyComplete(){this.buffer.length>0?(this.isComplete=!0,this.parent.notifyInactive()):this.destination.complete()}notifyNext(e,t,n,i,s){this.buffer.push(t),this.parent.checkIterators()}subscribe(e,t){return A(this,this.observable,this,t)}}let BT=(()=>{class e{constructor(e,t){this.http=e,this.router=t}get(e,t){return this.http.get(JT(e),{headers:KT(t)}).pipe(aw(qT(this.router)),jT(GT()))}post(e,t,n){return this.http.post(JT(e),t,{headers:KT(n)}).pipe(aw(qT(this.router)),jT(GT()))}rawPost(e,t,n){return this.http.post(JT(e),t,{headers:KT(n),observe:\"response\",responseType:\"text\"}).pipe(aw(qT(this.router)),jT(GT()))}delete(e,t){return this.http.delete(JT(e),{headers:KT(t)}).pipe(aw(qT(this.router)),jT(GT()))}put(e,t,n){return this.http.put(JT(e),t,{headers:KT(n)}).pipe(aw(qT(this.router)),jT(GT()))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(qu),Qe(lT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();function qT(e){return(t,n)=>xu(t).pipe(V(t=>{if(403==t.status||401==t.status)return e.routerState.snapshot.url.startsWith(\"/login\")||e.navigate([\"/login\"],{queryParams:{returnUrl:e.url}}),lp();throw t}))}function GT(){return e=>function(e=0,t,n){return new v(i=>{void 0===t&&(t=e,e=0);let s=0,r=e;if(n)return n.schedule(HT,0,{index:s,count:t,start:e,subscriber:i});for(;;){if(s++>=t){i.complete();break}if(i.next(r++),i.closed)break}})}(1,10).pipe(function(...e){return function(t){return t.lift.call(function(...e){const t=e[e.length-1];return\"function\"==typeof t&&e.pop(),q(e,void 0).lift(new zT(t))}(t,...e))}}(e,(e,t)=>{if(10==e)throw t;return e}),V(e=>Hb(1e3*e)))}let JT=function(e){return\"/api/v2/\"+e},KT=function(e){return(e=e||new Iu).set(\"Authorization\",localStorage.getItem(\"token\")).set(\"Accept\",\"application/json\")},ZT=(()=>{class e{constructor(e,t){this.http=e,this.api=t,this.tokenSubject=new hS(localStorage.getItem(\"token\")),this.tokenSubject.pipe(Tu(e=>e!=localStorage.getItem(\"token\"))).subscribe(e=>{\"\"==e?localStorage.removeItem(\"token\"):(localStorage.setItem(\"token\",e),localStorage.setItem(\"token_age\",(new Date).toString()))}),!localStorage.getItem(\"token_age\")&&localStorage.getItem(\"token\")&&localStorage.setItem(\"token_age\",(new Date).toString()),this.tokenSubject.pipe(Wb(e=>\"\"==e?pS():Hb(0,36e5)),H(e=>new Date(localStorage.getItem(\"token_age\"))),Tu(e=>(new Date).getTime()-e.getTime()>144e6),Wb(e=>(console.log(\"Renewing user token\"),this.api.rawPost(\"user/token\").pipe(H(e=>e.headers.get(\"Authorization\")),Tu(e=>\"\"!=e),aw(e=>(console.log(\"Error generating new user token: \",e),pS())))))).subscribe(e=>this.tokenSubject.next(e))}create(e,t){var n=new FormData;return n.append(\"user\",e),n.append(\"password\",t),this.http.post(\"/api/v2/token\",n,{observe:\"response\",responseType:\"text\"}).pipe(H(e=>e.headers.get(\"Authorization\")),H(e=>{if(e)return this.tokenSubject.next(e),e;throw new QT(\"test\")}))}delete(){this.tokenSubject.next(\"\")}tokenObservable(){return this.tokenSubject.pipe(H(e=>(e||\"\").replace(\"Bearer \",\"\")),function(e,t=PT){return n=>n.lift(new AT(e,t.leading,t.trailing))}(e=>OT(2e3)))}tokenUser(e){return e?JSON.parse(atob(e.split(\".\")[1])).sub:\"\"}}return e.\\u0275fac=function(t){return new(t||e)(Qe(qu),Qe(BT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();class QT extends Error{}const XT=[\"placeholder\",$localize`:␟024886ca34a6f309e3e51c2ed849320592c3faaa␟5312727456282218392:User name`],eD=[\"placeholder\",$localize`:␟c32ef07f8803a223a83ed17024b38e8d82292407␟1431416938026210429:Password`];var tD;function nD(e,t){1&e&&(Ro(0,\"ngb-alert\",7),Sa(1,\"Invalid username or password\"),Ho()),2&e&&Po(\"dismissible\",!1)(\"type\",\"danger\")}tD=$localize`:␟71c77bb8cecdf11ec3eead24dd1ba506573fa9cd␟935187492052582731:Submit`;let iD=(()=>{class e{constructor(e,t,n){this.router=e,this.route=t,this.tokenService=n,this.loading=!1,this.invalidLogin=!1}ngOnInit(){this.tokenService.delete(),this.returnURL=this.route.snapshot.queryParams.returnURL||\"/\"}login(){this.loading=!0,this.tokenService.create(this.user,this.password).subscribe(e=>{this.invalidLogin=!1,this.router.navigate([this.returnURL])},e=>{401==e.status&&(this.invalidLogin=!0),this.loading=!1})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(lT),Eo(eC),Eo(ZT))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:13,vars:4,consts:[[1,\"content\"],[\"novalidate\",\"\",1,\"login-form\",3,\"ngSubmit\"],[\"f\",\"ngForm\"],[\"matInput\",\"\",\"name\",\"user\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"password\",\"name\",\"password\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[\"mat-raised-button\",\"\",\"type\",\"submit\",3,\"disabled\"],[3,\"dismissible\",\"type\",4,\"ngIf\"],[3,\"dismissible\",\"type\"]],template:function(e,t){if(1&e&&(Ro(0,\"div\",0),Ro(1,\"form\",1,2),Uo(\"ngSubmit\",(function(){return t.login()})),Ro(3,\"mat-form-field\"),Ro(4,\"input\",3),nc(5,XT),Uo(\"ngModelChange\",(function(e){return t.user=e})),Ho(),Ho(),Ro(6,\"mat-form-field\"),Ro(7,\"input\",4),nc(8,eD),Uo(\"ngModelChange\",(function(e){return t.password=e})),Ho(),Ho(),jo(9,\"br\"),Ro(10,\"button\",5),tc(11,tD),Ho(),Do(12,nD,2,2,\"ngb-alert\",6),Ho(),Ho()),2&e){const e=Yo(2);ys(4),Po(\"ngModel\",t.user),ys(3),Po(\"ngModel\",t.password),ys(3),Po(\"disabled\",t.loading||!e.valid),ys(2),Po(\"ngIf\",t.invalidLogin)}},directives:[Tm,Sh,bm,dM,gM,_h,Vm,kh,Cm,Gy,mu,OS],styles:[\".content[_ngcontent-%COMP%]{display:flex;height:100vh;align-items:center;justify-content:center}button[_ngcontent-%COMP%]{margin-bottom:1rem}\"]}),e})();var sD=n(\"BOF4\");let rD=(()=>{class e{constructor(e){this.router=e}canActivate(e,t){var n=localStorage.getItem(\"token\");if(n){var i=sD(n);if((!i.exp||i.exp>=(new Date).getTime()/1e3)&&(!i.nbf||i.nbf<(new Date).getTime()/1e3))return!0}return this.router.navigate([\"/login\"],{queryParams:{returnUrl:t.url}}),!1}}return e.\\u0275fac=function(t){return new(t||e)(Qe(lT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();function oD(e){return e.events.pipe(Tu(e=>e instanceof JL),H(t=>aD([e.routerState.snapshot.root])),Rf(aD([e.routerState.snapshot.root])),Eb(),nv(1))}function aD(e){for(let t of e){if(\"primary\"in t.data)return t;let e=aD(t.children);if(null!=e)return e}return null}function lD(e){return e.events.pipe(Tu(e=>e instanceof JL),H(t=>cD([e.routerState.snapshot.root])),Rf(cD([e.routerState.snapshot.root])),Eb(),nv(1))}function cD(e){for(let t of e){if(\"articleID\"in t.params)return t;let e=cD(t.children);if(null!=e)return e}return null}function dD(...e){let t=null;return\"function\"==typeof e[e.length-1]&&(t=e.pop()),1===e.length&&l(e[0])&&(e=e[0].slice()),n=>n.lift.call(z([n,...e]),new nS(t))}let uD=(()=>{class e{constructor(){this.services=new Map,this.enabledSubject=new hS([]),this.enabled=new Set(JSON.parse(localStorage.getItem(e.key)))}register(e){this.services.set(e.id,e),this.enabledSubject.next(this.getEnabled())}enabledServices(){return this.enabledSubject.asObservable()}list(){return Array.from(this.services.values()).sort((e,t)=>{let n=e.category.localeCompare(t.category);return 0==n?e.id.localeCompare(t.id):n}).map(e=>[e,this.isEnabled(e.id)])}groupedList(){let e=this.list(),t=new Array,n=\"\";for(let i of e)i[0].category!=n&&(n=i[0].category,t.push(new Array)),t[t.length-1].push(i);return t}toggle(t,n){this.services.has(t)&&(n?this.enabled.add(t):this.enabled.delete(t),localStorage.setItem(e.key,JSON.stringify(Array.from(this.enabled))),this.enabledSubject.next(this.getEnabled()))}isEnabled(e){return this.enabled.has(e)}submit(e,t){let n=this.services.get(e).template.replace(/{%\\s*link\\s*%}/g,t.link).replace(/{%\\s*title\\s*%}/g,t.title);window.open(n,\"_blank\")}getEnabled(){return this.list().filter(e=>e[1]).map(e=>e[0])}}return e.key=\"enabled-services\",e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})(),hD=(()=>{class e{constructor(e){this.sharingService=e}ngOnInit(){this.sharingService.register({id:this.id,description:this.description,category:this.category,link:this.link,template:this.share})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(uD))},e.\\u0275dir=St({type:e,selectors:[[\"share-service\"]],inputs:{id:\"id\",description:\"description\",category:\"category\",link:\"link\",share:\"share\"}}),e})();const mD=[\"description\",$localize`:␟692e44560646c0bdeea893155ffcc76928378a1e␟7811507103524633661:Evernote`,\"category\",$localize`:␟ded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e␟4957012645000249772:Read-it-later`],pD=[\"description\",$localize`:␟35009adf932b9b5ef2c030703e87fc8837c69eb3␟418690784356586368:Instapaper`,\"category\",$localize`:␟ded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e␟4957012645000249772:Read-it-later`],fD=[\"description\",$localize`:␟ebe46a6ad0c84110be6b37c800f3d3663eeb6aba␟9204054824887609742:Readability`,\"category\",$localize`:␟ded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e␟4957012645000249772:Read-it-later`],_D=[\"description\",$localize`:␟3031c36d6183f1bb68d18b5ee4aea8ae31bb0eeb␟8042803930279457976:Pocket`,\"category\",$localize`:␟ded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e␟4957012645000249772:Read-it-later`],gD=[\"description\",$localize`:␟6ff575335272d7e0a6843ba597216f8201b57991␟7677669941581940117:Google+`,\"category\",$localize`:␟81baa3357bebcb29271c8121a87c17915bdbb41f␟3841619436439332072:Social network`],yD=[\"description\",$localize`:␟838a46816b130c73fe73b96e69176da9eb3b1190␟8790918354594417962:Facebook`,\"category\",$localize`:␟81baa3357bebcb29271c8121a87c17915bdbb41f␟3841619436439332072:Social network`],bD=[\"description\",$localize`:␟99cb827741e93125476a0f5b676372d85d15b5fc␟1715373473261069991:Twitter`,\"category\",$localize`:␟81baa3357bebcb29271c8121a87c17915bdbb41f␟3841619436439332072:Social network`],vD=[\"description\",$localize`:␟77ce98fa8988bd33011b2221a28c373dd35a5db1␟5073753467039594647:Pinterest`,\"category\",$localize`:␟81baa3357bebcb29271c8121a87c17915bdbb41f␟3841619436439332072:Social network`],wD=[\"description\",$localize`:␟8df49d58c2d6296211e3a4d6a7dcbb2256cad458␟3508115160503405698:Tumblr`,\"category\",$localize`:␟889e1152e6351fd7607f7547eb5547f6c7a7f3df␟1814818426021413844:Blogging`],MD=[\"description\",$localize`:␟9ed5758c5418a3aa0ecbf9c043a8d89b96852680␟2394265441963394390:Flipboard`,\"category\",$localize`:␟889e1152e6351fd7607f7547eb5547f6c7a7f3df␟1814818426021413844:Blogging`],kD=[\"description\",$localize`:␟244aae9346da82b0922506c2d2581373a15641cc␟4768749765465246664:Email`,\"category\",$localize`:␟244aae9346da82b0922506c2d2581373a15641cc␟4768749765465246664:Email`],SD=[\"description\",$localize`:␟f381d5239a6369e5f4b8582a35e135c8e3d9dfc8␟1092044965355425322:Gmail`,\"category\",$localize`:␟244aae9346da82b0922506c2d2581373a15641cc␟4768749765465246664:Email`];function LD(e,t){if(1&e){const e=zo();Ro(0,\"button\",18),Uo(\"click\",(function(){return en(e),Jo(),Yo(2).toggle()})),Ro(1,\"mat-icon\"),Sa(2,\"menu\"),Ho(),Ho()}}let xD=(()=>{class e{constructor(e,t){this.tokenService=e,this.router=t,this.showsArticle=!1,this.inSearch=!1}ngOnInit(){this.subscription=this.tokenService.tokenObservable().pipe(Tu(e=>\"\"!=e),Wb(e=>lD(this.router).pipe(H(e=>null!=e),dD(oD(this.router).pipe(H(e=>null!=e&&\"search\"==e.data.primary)),(e,t)=>[e,t])))).subscribe(e=>{this.showsArticle=e[0],this.inSearch=e[1]},e=>console.log(e))}ngOnDestroy(){this.subscription.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ZT),Eo(lT))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:33,vars:1,consts:[[\"sidenav\",\"\"],[\"name\",\"sidebar\"],[1,\"content\"],[\"color\",\"primary\"],[\"mat-icon-button\",\"\",3,\"click\",4,\"ngIf\"],[\"name\",\"toolbar\"],[\"id\",\"evernode\",\"link\",\"https://www.evernote.com\",\"share\",\"https://www.evernote.com/clip.action?url={% link %}&title={% title %}\",6,\"description\",\"category\"],[\"id\",\"instapaper\",\"link\",\"http://www.instapaper.com\",\"share\",\"http://www.instapaper.com/hello2?url={% link %}&title={% title %}\",6,\"description\",\"category\"],[\"id\",\"readability\",\"link\",\"https://www.readability.com\",\"share\",\"https://www.readability.com/save?url={% link %}\",6,\"description\",\"category\"],[\"id\",\"pocket\",\"link\",\"https://getpocket.com\",\"share\",\"https://getpocket.com/save?url={% link %}&title={% title %}\",6,\"description\",\"category\"],[\"id\",\"googlep\",\"link\",\"https://plus.google.com\",\"share\",\"https://plus.google.com/share?url={% link %}\",6,\"description\",\"category\"],[\"id\",\"facebook\",\"link\",\"https://www.facebook.com\",\"share\",\"http://www.facebook.com/sharer.php?u={% link %}&t={% title %}\",6,\"description\",\"category\"],[\"id\",\"twitter\",\"link\",\"https://www.twitter.com\",\"share\",\"https://twitter.com/intent/tweet?url={% link %}&text={% title %}\",6,\"description\",\"category\"],[\"id\",\"pinterest\",\"link\",\"https://www.pinterest.com\",\"share\",\"http://pinterest.com/pin/find/?url={% link %}\",6,\"description\",\"category\"],[\"id\",\"tumblr\",\"link\",\"https://www.tumblr.com\",\"share\",\"http://www.tumblr.com/share?v=3&u={% link %}&t={% title %}\",6,\"description\",\"category\"],[\"id\",\"flipboard\",\"link\",\"https://www.flipboard.com\",\"share\",\"https://share.flipboard.com/bookmarklet/popout?v=2&url={% link %}&title={% title %}\",6,\"description\",\"category\"],[\"id\",\"email\",\"share\",\"mailto:?subject={% title %}&body={% link %}\",6,\"description\",\"category\"],[\"id\",\"gmail\",\"link\",\"https://mail.google.com\",\"share\",\"https://mail.google.com/mail/?view=cm&su={% title %}&body={% link %}\",6,\"description\",\"category\"],[\"mat-icon-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"mat-sidenav-container\"),Ro(1,\"mat-sidenav\",null,0),jo(3,\"router-outlet\",1),Ho(),Ro(4,\"div\",2),Ro(5,\"mat-toolbar\",3),Do(6,LD,3,0,\"button\",4),jo(7,\"router-outlet\",5),Ho(),jo(8,\"router-outlet\"),Ho(),Ho(),Ro(9,\"share-service\",6),nc(10,mD),Ho(),Ro(11,\"share-service\",7),nc(12,pD),Ho(),Ro(13,\"share-service\",8),nc(14,fD),Ho(),Ro(15,\"share-service\",9),nc(16,_D),Ho(),Ro(17,\"share-service\",10),nc(18,gD),Ho(),Ro(19,\"share-service\",11),nc(20,yD),Ho(),Ro(21,\"share-service\",12),nc(22,bD),Ho(),Ro(23,\"share-service\",13),nc(24,vD),Ho(),Ro(25,\"share-service\",14),nc(26,wD),Ho(),Ro(27,\"share-service\",15),nc(28,MD),Ho(),Ro(29,\"share-service\",16),nc(30,kD),Ho(),Ro(31,\"share-service\",17),nc(32,SD),Ho()),2&e&&(ys(6),Po(\"ngIf\",!t.showsArticle&&!t.inSearch))},directives:[Hk,Ak,mT,dS,mu,hD,Gy,Cw],styles:[\".content[_ngcontent-%COMP%], body[_ngcontent-%COMP%], html[_ngcontent-%COMP%], mat-sidenav-container[_ngcontent-%COMP%]{width:100%;height:100vh;display:flex;flex-direction:column;overflow:hidden}mat-sidenav[_ngcontent-%COMP%]{width:200px}\"]}),e})();var CD=n(\"wd/R\");function TD(e,t,n,i){n&&\"function\"!=typeof n&&(i=n);const s=\"function\"==typeof n?n:void 0,r=new ev(e,t,i);return e=>te(()=>r,s)(e)}let DD=(()=>{class e{constructor(e){this.api=e}getFeeds(){return this.api.get(\"feed\").pipe(H(e=>e.feeds))}discover(e){return this.api.get(`feed/discover?query=${e}`).pipe(H(e=>e.feeds))}importOPML(e){var t=new FormData;return t.append(\"opml\",e.opml),e.dryRun&&t.append(\"dryRun\",\"true\"),this.api.post(\"opml\",t).pipe(H(e=>e.feeds))}exportOPML(){return this.api.get(\"opml\").pipe(H(e=>e.opml))}addFeeds(e){var t=new FormData;return e.forEach(e=>t.append(\"link\",e)),this.api.post(\"feed\",t)}deleteFeed(e){return this.api.delete(`feed/${e}`).pipe(H(e=>e.success))}updateTags(e,t){var n=new FormData;return t.forEach(e=>n.append(\"tag\",e)),this.api.put(`feed/${e}/tags`,n).pipe(H(e=>e.success))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})(),YD=(()=>{class e{constructor(e){this.api=e}getTags(){return this.api.get(\"tag\").pipe(H(e=>e.tags))}getFeedIDs(e){return this.api.get(`tag/${e.id}/feedIDs`).pipe(H(e=>e.feedIDs))}getTagsFeedIDs(){return this.api.get(\"tag/feedIDs\").pipe(H(e=>e.tagFeeds))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})(),ED=(()=>{class e{constructor(e){this.tokenService=e,this.connectionSubject=new hS(!1),this.refreshSubject=new L,this.eventSourceObservable=this.tokenService.tokenObservable().pipe(dD(this.refreshSubject.pipe(Rf(null)),(e,t)=>e),UL((e,t)=>(null!=e&&e.close(),\"\"!=t&&((e=new EventSource(\"/api/v2/events?token=\"+t)).onopen=()=>{this.connectionSubject.next(!0)},e.onerror=e=>{setTimeout(()=>{this.connectionSubject.next(!1),this.refresh()},3e3)}),e),null),Tu(e=>null!=e),nv(1)),this.feedUpdate=this.eventSourceObservable.pipe(V(e=>Mb(e,\"feed-update\")),H(e=>JSON.parse(e.data))),this.articleState=this.eventSourceObservable.pipe(V(e=>Mb(e,\"article-state-change\")),H(e=>JSON.parse(e.data)))}connection(){return this.connectionSubject.asObservable()}refresh(){this.refreshSubject.next(null)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ZT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})(),OD=(()=>{class e{constructor(){this.prefs=JSON.parse(localStorage.getItem(e.key)||\"{}\"),this.prefs.unreadFirst=!0,this.queryPreferencesSubject=new hS(this.prefs)}get olderFirst(){return this.prefs.olderFirst}set olderFirst(e){this.prefs.olderFirst=e,this.queryPreferencesSubject.next(this.prefs),this.saveToStorage()}get unreadOnly(){return this.prefs.unreadOnly}set unreadOnly(e){this.prefs.unreadOnly=e,this.queryPreferencesSubject.next(this.prefs),this.saveToStorage()}queryPreferences(){return this.queryPreferencesSubject.asObservable()}saveToStorage(){localStorage.setItem(e.key,JSON.stringify(this.prefs))}}return e.key=\"preferences\",e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();function ID(e){return e.map(e=>(\"string\"==typeof e.date&&(e.date=new Date(e.date)),e))}class PD{constructor(){this.updatable=!0}get url(){return\"\"}}class AD{constructor(){this.updatable=!1}get url(){return\"/favorite\"}}class RD{constructor(e){this.secondary=e,this.updatable=!1}get url(){return\"/popular\"+this.secondary.url}}class HD{constructor(e){this.id=e,this.updatable=!0}get url(){return`/feed/${this.id}`}}class jD{constructor(e){this.id=e,this.updatable=!0}get url(){return`/tag/${this.id}`}}class FD{constructor(e,t){this.query=e,this.secondary=t,this.updatable=!1}get url(){return`/search${this.secondary.url}?query=${encodeURIComponent(this.query)}`}}class ND{constructor(){this.indexMap=new Map,this.articles=[]}}let zD=(()=>{class e{constructor(e,t,n,i,s,r,o){this.api=e,this.tokenService=t,this.feedService=n,this.tagService=i,this.eventService=s,this.router=r,this.preferences=o,this.paging=new hS(null),this.stateChange=new L,this.updateSubject=new L,this.refresh=new hS(null),this.limit=200,this.initialFetched=!1;let a=this.preferences.queryPreferences();this.source=oD(this.router).pipe(Tu(e=>null!=e),H(e=>this.nameToSource(e.data,e.params)),Tu(e=>null!=e),Eb((e,t)=>e.url===t.url));let l=this.tokenService.tokenObservable().pipe(UL((e,t)=>{var n=this.tokenService.tokenUser(t);return e[0]=t,e[2]=e[1]!=n,e[1]=n,e},[\"\",\"\",!1]),Tu(e=>e[2]),Wb(()=>this.feedService.getFeeds().pipe(dD(this.tagService.getTagsFeedIDs(),(e,t)=>[e.reduce((e,t)=>(e[t.id]=t.title,e),new Map),t.reduce((e,t)=>(e[t.tag.id]=t.ids,e),new Map)]))),nv(1));this.articles=l.pipe(Wb(e=>this.source.pipe(dD(this.refresh,(e,t)=>e),Wb(t=>(this.paging=new hS(0),a.pipe(Wb(n=>G(this.paging.pipe(V(e=>this.datePaging(t,n.unreadFirst)),Wb(e=>this.getArticlesFor(t,{olderFirst:n.olderFirst,unreadOnly:n.unreadOnly},this.limit,e)),H(e=>({articles:e,fromEvent:!1}))),this.updateSubject.pipe(Wb(e=>this.getArticlesFor(t,e[0],this.limit,{}).pipe(dD(this.ids(t,{unreadOnly:!0,beforeID:e[0].afterID+1,afterID:e[1]-1}),(t,n)=>({articles:t,unreadIDs:new Set(n),unreadIDRange:[e[1],e[0].afterID],fromEvent:!0}))))),this.eventService.feedUpdate.pipe(Tu(n=>this.shouldUpdate(n,t,e[1])),bM(3e4),V(e=>this.getArticlesFor(new HD(e.feedID),{ids:e.articleIDs,olderFirst:n.olderFirst,unreadOnly:n.unreadOnly},this.limit,{})),H(e=>({articles:e,fromEvent:!0})))).pipe(Tu(e=>null!=e.articles),H(t=>(t.articles=t.articles.map(t=>(t.hits&&t.hits.fragments&&(t.hits.fragments.title.length>0&&(t.title=t.hits.fragments.title.join(\" \")),t.hits.fragments.description.length>0&&(t.stripped=t.hits.fragments.description.join(\" \"))),t.stripped||(t.stripped=t.description.replace(/<[^>]+>/g,\"\")),t.feed=e[0][t.feedID],t)),t)),UL((e,t)=>{if(t.unreadIDs)for(let n=0;n=t.unreadIDRange[0]&&i<=t.unreadIDRange[1]&&(e.articles[n].read=!t.unreadIDs.has(i))}if(t.fromEvent){let i=new Array;for(let s of t.articles)if(s.id in e.indexMap)i.push(s);else if(n.olderFirst){for(let t=e.articles.length-1;t>=0;t--)if(this.shouldInsert(s,e.articles[t],n)){e.articles.splice(t,0,s);break}}else for(let t=0;tJSON.stringify(e)==JSON.stringify(t))),(t,n)=>{if(null!=n){if(n.options.ids)for(let e of n.options.ids){let i=t.indexMap[e];null!=i&&-1!=i&&(t.articles[i][n.name]=n.value)}if(this.hasOptions(n.options)){let i=new Set;e[1].forEach(e=>{for(let t of e)i.add(t)});for(let e=0;ee.articles))),Rf([])))))),TD(1)),this.articles.connect(),this.eventService.connection().pipe(Tu(e=>e),Wb(e=>this.articles.pipe(zL())),Tu(e=>e.length>0),H(e=>e.map(e=>e.id)),H(e=>[Math.min.apply(Math,e),Math.max.apply(Math,e)]),H(e=>this.preferences.olderFirst?[{afterID:e[1]},e[0]]:[{olderFirst:!0,afterID:e[1]},e[0]])).subscribe(e=>this.updateSubject.next(e),e=>console.log(\"Error refreshing article list after reconnect: \",e)),this.eventService.articleState.subscribe(e=>this.stateChange.next({options:e.options,name:e.state,value:e.value}));let c=(new Date).getTime();Notification.requestPermission(e=>{\"granted\"==e&&l.pipe(dD(this.source,(e,t)=>[e[0],e[1],t]),Wb(e=>this.eventService.feedUpdate.pipe(Tu(t=>this.shouldUpdate(t,e[2],e[1])),H(t=>{let n=e[0].get(t.feedID);return n?[\"readeef: updates\",`Feed ${n} has been updated`]:null}),Tu(e=>null!=e),bM(3e4)))).subscribe(e=>{document.hasFocus()||(new Date).getTime()-c>3e4&&(new Notification(e[0],{body:e[1],icon:\"/en/readeef.png\",tag:\"readeef\"}),c=(new Date).getTime())})})}articleObservable(){return this.articles}requestNextPage(){this.paging.next(null)}ids(e,t){return this.api.get(this.buildURL(`article${e.url}/ids`,t)).pipe(H(e=>e.ids))}formatArticle(e){return this.api.get(`article/${e}/format`)}refreshArticles(){this.refresh.next(null)}favor(e,t){return this.articleStateChange(e,\"favorite\",t)}read(e,t){return this.articleStateChange(e,\"read\",t)}readAll(){this.source.pipe(cp(1),Tu(e=>e.updatable),H(e=>\"article\"+e.url+\"/read\"),V(e=>this.api.post(e)),H(e=>e.success)).subscribe(e=>{},e=>console.log(e))}articleStateChange(e,t,n){let i,s=`article/${e}/${t}`;return i=n?this.api.post(s):this.api.delete(s),i.pipe(H(e=>e.success),H(i=>(i&&this.stateChange.next({options:{ids:[e]},name:t,value:n}),i)))}getArticlesFor(e,t,n,i){let s=Object.assign({},t,{limit:n}),r=Object.assign({},s),o=-1,a=0;i.unreadTime?(o=i.unreadTime,a=i.unreadScore,r.unreadOnly=!0):i.time&&(o=i.time,a=i.score),-1!=o&&(t.olderFirst?(r.afterTime=o,a&&(r.afterScore=a)):(r.beforeTime=o,a&&(r.beforeScore=a)));let l=this.api.get(this.buildURL(\"article\"+e.url,r)).pipe(H(e=>ID(e.articles)));if(i.unreadTime&&(r=Object.assign({},s),r.readOnly=!0,i.time&&(t.olderFirst?(r.afterTime=i.time,i.score&&(r.afterScore=i.score)):(r.beforeTime=i.time,i.score&&(r.beforeScore=i.score))),l=l.pipe(V(t=>t.length==n?xu(t):(r.limit=n-t.length,this.api.get(this.buildURL(\"article\"+e.url,r)).pipe(H(e=>ID(e.articles)),H(e=>t.concat(e))))))),r.afterID&&(l=l.pipe(V(t=>{if(!t||!t.length)return xu(t);let s=Math.max.apply(Math,t.map(e=>e.id)),o=Object.assign({},r,{afterID:s});return this.getArticlesFor(e,o,n,i).pipe(H(e=>e&&e.length?e.concat(t):t))}))),!this.initialFetched){this.initialFetched=!0;let e=cD([this.router.routerState.snapshot.root]);if(null!=e&&+e.params.articleID>-1){let t=+e.params.articleID;return this.api.get(this.buildURL(\"article\"+(new PD).url,{ids:[t]})).pipe(H(e=>ID(e.articles)[0]),cp(1),V(e=>l.pipe(H(t=>{for(let n=0;nxu(null)))}buildURL(e,t){t||(t={}),t.limit||(t.limit=200);var n=new Array;if(t.ids){for(let e of t.ids)n.push(`id=${e}`);t.ids=void 0}for(var i in t)if(t.hasOwnProperty(i)){let e=t[i];if(void 0===e)continue;\"boolean\"==typeof e?e&&n.push(`${i}`):n.push(`${i}=${e}`)}return n.length>0?e+(-1==e.indexOf(\"?\")?\"?\":\"&\")+n.join(\"&\"):e}nameToSource(e,t){let n,i;switch(\"string\"==typeof e?n=e:(n=e.primary,i=e.secondary),n){case\"user\":return new PD;case\"favorite\":return new AD;case\"popular\":return new RD(this.nameToSource(i,t));case\"search\":return new FD(decodeURIComponent(t.query),this.nameToSource(i,t));case\"feed\":return new HD(t.id);case\"tag\":return new jD(t.id)}}datePaging(e,t){return this.articles.pipe(cp(1),H(n=>{if(0==n.length)return t?{unreadTime:-1}:{};let i=n[n.length-1],s={time:i.date.getTime()/1e3};if(e instanceof RD&&(s.score=i.score),t&&!(e instanceof FD)){if(!i.read)return s.unreadTime=s.time,e instanceof RD&&(s.unreadScore=s.score),s;for(let e=1;et.date)return!0;return!1}shouldSet(e,t,n){return!(t.feedIDs&&-1==t.feedIDs.indexOf(e.feedID)||t.readOnly&&!e.read||t.unreadOnly&&e.read||t.favoriteOnly&&!e.favorite||t.untaggedOnly&&!n.has(e.feedID)||t.beforeID&&e.id>=t.beforeID||t.afterID&&e.id<=t.afterID||t.beforeDate&&e.date>=t.beforeDate||t.afterDate&&e.date<=t.afterDate)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT),Qe(ZT),Qe(DD),Qe(YD),Qe(ED),Qe(lT),Qe(OD))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();function VD(e,t){1&e&&jo(0,\"div\",9),2&e&&da(\"background-image\",\"url(\"+Jo().item.thumbnail+\")\",ts)}function WD(e,t){if(1&e&&(Ro(0,\"div\",10),Sa(1),Ho()),2&e){const e=Jo();ys(1),xa(\" \",e.item.feed,\" \")}}let UD=(()=>{class e{constructor(e,t,n){this.articleService=e,this.router=t,this.route=n}openArticle(e){this.router.navigate([\"article\",e.id],{relativeTo:this.route})}favor(e,t){this.articleService.favor(e,t).subscribe(e=>{},e=>console.log(e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(zD),Eo(lT),Eo(eC))},e.\\u0275cmp=yt({type:e,selectors:[[\"list-item\"]],inputs:{item:\"item\"},decls:15,vars:11,consts:[[3,\"id\",\"click\"],[1,\"row\",\"align-items-center\"],[1,\"col\",\"title\"],[\"mat-card-avatar\",\"\",\"mat-icon-button\",\"\",3,\"click\"],[3,\"innerHTML\"],[\"mat-card-image\",\"\",3,\"backgroundImage\",4,\"ngIf\"],[1,\"row\",\"align-items-center\",\"info\"],[\"class\",\"col-mat-auto feed\",4,\"ngIf\"],[1,\"col\",\"time\"],[\"mat-card-image\",\"\"],[1,\"col-mat-auto\",\"feed\"]],template:function(e,t){1&e&&(Ro(0,\"mat-card\",0),Uo(\"click\",(function(){return t.openArticle(t.item)})),Ro(1,\"mat-card-header\",1),Ro(2,\"mat-card-title\",2),Ro(3,\"button\",3),Uo(\"click\",(function(e){return e.stopPropagation(),t.favor(t.item.id,!t.item.favorite)})),Ro(4,\"mat-icon\"),Sa(5),Ho(),Ho(),jo(6,\"span\",4),Ho(),Ho(),Do(7,VD,1,2,\"div\",5),Ro(8,\"mat-card-content\"),jo(9,\"div\",4),Ho(),Ro(10,\"mat-card-actions\"),Ro(11,\"div\",6),Do(12,WD,2,1,\"div\",7),Ro(13,\"div\",8),Sa(14),Ho(),Ho(),Ho(),Ho()),2&e&&(ua(\"read\",t.item.read),ta(\"id\",t.item.id),ys(5),xa(\" \",t.item.favorite?\"bookmark\":\"bookmark_border\",\" \"),ys(1),Po(\"innerHTML\",t.item.title,Qi),ys(1),Po(\"ngIf\",t.item.thumbnail),ys(2),Po(\"innerHTML\",t.item.stripped,Qi),ys(2),ua(\"read\",t.item.read),ys(1),Po(\"ngIf\",t.item.feed),ys(2),xa(\" \",t.item.time,\" \"))},directives:[ob,ab,nb,Gy,rb,Cw,mu,tb,ib,sb],styles:[\"[_nghost-%COMP%]{height:500px}mat-card[_ngcontent-%COMP%]{display:flex;flex-direction:column;max-height:calc(100% - 12px);cursor:pointer}mat-card-header[_ngcontent-%COMP%]{overflow:hidden;flex:0 0 auto}[mat-card-image][_ngcontent-%COMP%]{height:240px;flex:1 0 auto;background-position:50%;background-repeat:no-repeat}mat-card-content[_ngcontent-%COMP%]{flex:0 1 auto;overflow:hidden;text-overflow:ellipsis-lastline;font-size:12px}mat-card-actions[_ngcontent-%COMP%]{flex:0 0 auto}.read[_ngcontent-%COMP%]{font-weight:100;color:#666}.read[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{font-weight:300}.title[_ngcontent-%COMP%]{font-weight:700;font-size:14px;overflow:hidden;text-overflow:ellipsis;line-height:1;height:3.85em}.info[_ngcontent-%COMP%]{margin:0}.feed[_ngcontent-%COMP%]{font-weight:200;font-size:10px;text-align:start}.time[_ngcontent-%COMP%]{font-size:11px;text-align:end}button[_ngcontent-%COMP%]:focus, button[_ngcontent-%COMP%]:hover{outline:none;text-decoration:none}\"]}),e})();function $D(e,t){1&e&&jo(0,\"list-item\",4),2&e&&Po(\"item\",t.$implicit)}var BD;function qD(e,t){1&e&&(Ro(0,\"div\",5),tc(1,BD),Ho())}BD=$localize`:␟94516fa213706c67ce5a5b5765681d7fb032033a␟3894950702316166331:Loading...`;class GD{constructor(e,t){this.iteration=e,this.articles=t}}let JD=(()=>{class e{constructor(e,t,n){this.articleService=e,this.router=t,this.route=n,this.items=[],this.finished=!1,this.limit=200}ngOnInit(){this.loading=!0,this.subscription=this.articleService.articleObservable().pipe(UL((e,t,n)=>(e.iteration>0&&e.articles.length==t.length&&(this.finished=!0),e.articles=[].concat(t),e.iteration++,e),new GD(0,[])),H(e=>e.articles),Wb(e=>OT(6e4).pipe(Rf(0),H(t=>e.map(e=>(e.time=CD(e.date).fromNow(),e)))))).subscribe(e=>{this.loading=!1,this.items=e},e=>{this.loading=!1,console.log(e)})}ngOnDestroy(){this.subscription.unsubscribe()}fetchMore(e){e.endIndex!==this.items.length-1||this.loading||this.finished||(this.loading=!0,this.articleService.requestNextPage())}firstUnread(){if(document.activeElement.matches(\"input\"))return;let e=this.items.find(e=>!e.read);e&&this.router.navigate([\"article\",e.id],{relativeTo:this.route})}lastUnread(){if(!document.activeElement.matches(\"input\"))for(let e=this.items.length-1;e>-1;e--){let t=this.items[e];if(!t.read)return void this.router.navigate([\"article\",t.id],{relativeTo:this.route})}}refresh(){document.activeElement.matches(\"input\")||this.articleService.refreshArticles()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(zD),Eo(lT),Eo(eC))},e.\\u0275cmp=yt({type:e,selectors:[[\"article-list\"]],hostBindings:function(e,t){1&e&&Uo(\"keydown.arrowLeft\",(function(){return t.firstUnread()}),!1,Un)(\"keydown.shift.j\",(function(){return t.firstUnread()}),!1,Un)(\"keydown.arrowRight\",(function(){return t.lastUnread()}),!1,Un)(\"keydown.shift.k\",(function(){return t.lastUnread()}),!1,Un)(\"keydown.r\",(function(){return t.refresh()}),!1,Un)},decls:4,vars:3,consts:[[3,\"items\",\"vsEnd\"],[\"scroll\",\"\"],[3,\"item\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"loader\",4,\"ngIf\"],[3,\"item\"],[1,\"loader\"]],template:function(e,t){if(1&e&&(Ro(0,\"virtual-scroller\",0,1),Uo(\"vsEnd\",(function(e){return t.fetchMore(e)})),Do(2,$D,1,1,\"list-item\",2),Do(3,qD,2,0,\"div\",3),Ho()),2&e){const e=Yo(1);Po(\"items\",t.items),ys(2),Po(\"ngForOf\",e.viewPortItems),ys(1),Po(\"ngIf\",t.loading)}},directives:[LL,uu,mu,UD],styles:['[_nghost-%COMP%]{flex-grow:1;display:flex;height:calc(100% - 64px)}virtual-scroller[_ngcontent-%COMP%]{overflow:hidden;overflow-y:auto;display:block;flex-grow:1;background:#eee}list-item[_ngcontent-%COMP%]{display:inline-block;overflow:hidden;vertical-align:top;border:0;width:calc(25% - 16px);margin:8px}@media (max-width:1350px){list-item[_ngcontent-%COMP%]{width:calc(33% - 16px)}}@media (max-width:900px){list-item[_ngcontent-%COMP%]{width:calc(50% - 16px)}}@media (max-width:600px){list-item[_ngcontent-%COMP%]{width:calc(100% - 16px)}}.loader[_ngcontent-%COMP%]{height:4em;display:block;line-height:4em;text-align:center;position:relative}.loader[_ngcontent-%COMP%]:before{content:\" \";position:absolute;top:0;left:0;width:20%;height:2px;background:red;-webkit-animation:loader-animation 2s ease-out infinite;animation:loader-animation 2s ease-out infinite}@-webkit-keyframes loader-animation{0%{transform:translate(0)}to{transform:translate(500%)}}@keyframes loader-animation{0%{transform:translate(0)}to{transform:translate(500%)}}']}),e})();class KD{call(e,t){return t.subscribe(new ZD(e))}}class ZD extends p{_next(e){}}let QD=(()=>{class e{constructor(e,t){this.api=e,this.tokenService=t;var n=this.tokenService.tokenObservable().pipe(Wb(e=>this.api.get(\"features\").pipe(H(e=>e.features))),TD(1));n.connect(),this.features=n}getFeatures(){return this.features}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT),Qe(ZT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();const XD=[\"carousel\"];var eY,tY,nY;function iY(e,t){if(1&e&&(Ro(0,\"div\",17),Sa(1),Ho()),2&e){const e=Jo(2).$implicit;ys(1),xa(\" \",e.feed,\" \")}}function sY(e,t){if(1&e){const e=zo();Ro(0,\"div\",18),Ro(1,\"button\",19),Uo(\"click\",(function(){en(e);const t=Jo(2).$implicit;return Jo().formatArticle(t)})),tc(2,tY),Ho(),Ho()}}function rY(e,t){if(1&e){const e=zo();Ro(0,\"div\",18),Ro(1,\"button\",19),Uo(\"click\",(function(){en(e);const t=Jo(2).$implicit;return Jo().summarizeArticle(t)})),tc(2,nY),Ho(),Ho()}}function oY(e,t){if(1&e){const e=zo();Ro(0,\"div\",4),Ro(1,\"h3\",5),Ro(2,\"button\",6),Uo(\"click\",(function(){en(e);const t=Jo().$implicit;return Jo().favorArticle(t)})),Ro(3,\"mat-icon\"),Sa(4),Ho(),Ho(),Ro(5,\"a\",7),Uo(\"click\",(function(){return en(e),Jo(2).viewActive()})),Ho(),Ho(),Ro(6,\"div\",8),Do(7,iY,2,1,\"div\",9),Ro(8,\"div\",10),Sa(9),Ho(),Ro(10,\"div\",11),Sa(11),Ho(),Ho(),jo(12,\"p\",12),Ro(13,\"div\",13),Ro(14,\"div\",14),Ro(15,\"a\",15),Uo(\"click\",(function(){return en(e),Jo(2).viewActive()})),tc(16,eY),Ho(),Ho(),Do(17,sY,3,0,\"div\",16),Do(18,rY,3,0,\"div\",16),Ho(),Ho()}if(2&e){const e=Jo().$implicit,t=Jo();ys(4),xa(\" \",e.favorite?\"bookmark\":\"bookmark_border\",\" \"),ys(1),ta(\"href\",e.link,es),Po(\"innerHTML\",e.title,Qi),ys(1),ua(\"read\",e.read),ys(1),Po(\"ngIf\",e.feed),ys(2),xa(\" \",t.index,\" \"),ys(2),xa(\" \",e.time,\" \"),ys(1),Po(\"innerHTML\",e.formatted,Qi),ys(3),ta(\"href\",e.link,es),ys(2),Po(\"ngIf\",t.canExtract),ys(1),Po(\"ngIf\",t.canExtract)}}function aY(e,t){1&e&&Do(0,oY,19,12,\"ng-template\",3),2&e&&Po(\"id\",t.$implicit.id.toString())}eY=$localize`:␟bba44ce85e0028ddbc8b0e38d5a04fabc13c8f61␟342997967009162383: View `,tY=$localize`:␟d5e281892feed2ccbc7c3135846913de48ed7876␟7925939516256734638: Format `,nY=$localize`:␟170d0510bd494799bed6a127fc04eabc9f8bed23␟97023127247629182: Summary `;var lY=function(e){return e[e.DESCRIPTION=0]=\"DESCRIPTION\",e[e.FORMAT=1]=\"FORMAT\",e[e.SUMMARY=2]=\"SUMMARY\",e}({});let cY=(()=>{class e{constructor(e,t,n,i,s,r){this.route=t,this.router=n,this.articleService=i,this.featuresService=s,this.sanitizer=r,this.slides=[],this.offset=new L,this.stateChange=new hS([-1,lY.DESCRIPTION]),this.states=new Map,this.subscriptions=new Array,e.interval=0,e.wrap=!1,e.keyboard=!1}ngOnInit(){this.subscriptions.push(this.articleService.articleObservable().pipe(Wb(e=>this.stateChange.pipe(Wb(e=>this.offset.pipe(Rf(0),H(t=>[t,e]))),H(t=>{let[n,i]=t,s=this.route.snapshot.params.articleID,r=[],o=e.findIndex(e=>e.id==s);return-1==o?null:(0!=n&&(o+n!=-1&&o+n0&&r.push(e[o-1]),r.push(e[o]),o+1{if(e.id==i[0])switch(i[1]){case lY.DESCRIPTION:e.formatted=e.description;break;case lY.FORMAT:e.formatted=e.format.content;break;case lY.SUMMARY:e.formatted=this.keypointsToHTML(e.format)}else e.formatted=e.description;return e.formatted=this.sanitizer.bypassSecurityTrustHtml(this.formatSource(e.formatted)),e}),{slides:r,active:{id:e[o].id,read:e[o].read,state:i[1]},index:o,total:e.length})}))),Tu(e=>null!=e),Eb((e,t)=>e.active.id==t.active.id&&e.slides.length==t.slides.length&&e.active.state==t.active.state&&e.total==t.total&&(e.slides[0]||{}).id==(t.slides[0]||{}).id&&(e.slides[2]||{}).id==(t.slides[2]||{}).id),V(e=>e.active.read?xu(e):this.articleService.read(e.active.id,!0).pipe(H(t=>e),aw(e=>xu(e)),(function(e){return e.lift(new KD)}),Rf(e))),Wb(e=>OT(6e4).pipe(Rf(0),H(t=>(e.slides=e.slides.map(e=>(e.time=CD(e.date).fromNow(),e)),e))))).subscribe(e=>{this.carousel.activeId=e.active.id.toString(),this.slides=e.slides,this.active=e.slides.find(t=>t.id==e.active.id),2==e.slides.length&&e.slides[1].id==e.active.id&&this.articleService.requestNextPage(),this.index=`${e.index+1}/${e.total}`},e=>console.log(e))),this.subscriptions.push(this.featuresService.getFeatures().pipe(H(e=>e.extractor)).subscribe(e=>this.canExtract=e,e=>console.log(e))),this.subscriptions.push(this.stateChange.subscribe(e=>this.states.set(e[0],e[1])))}ngOnDestroy(){for(let e of this.subscriptions)e.unsubscribe()}slideEvent(e){this.offset.next(e?1:-1)}favor(e,t){this.articleService.favor(e,t).subscribe(e=>{},e=>console.log(e))}goUp(){this.router.navigate([\"../../\"],{relativeTo:this.route}),document.getSelection().removeAllRanges()}goNext(){this.carousel.next()}goPrevious(){this.carousel.prev()}previousUnread(){let e=this.route.snapshot.params.articleID;this.articleService.articleObservable().pipe(H(t=>{let n=t.findIndex(t=>t.id==e);for(;n>0&&(n--,t[n].read););return t[n].read?e:t[n].id}),cp(1),Tu(t=>t!=e),V(e=>z(this.router.navigate([\"../\",e],{relativeTo:this.route})).pipe(H(t=>e)))).subscribe(e=>{this.stateChange.next([e,lY.DESCRIPTION])})}nextUnread(){let e=this.route.snapshot.params.articleID;this.articleService.articleObservable().pipe(H(t=>{let n=t.findIndex(t=>t.id==e);for(;nt!=e),V(e=>z(this.router.navigate([\"../\",e],{relativeTo:this.route})).pipe(H(t=>e)))).subscribe(e=>{this.stateChange.next([e,lY.DESCRIPTION])})}viewActive(){return null!=this.active&&document.body.dispatchEvent(new CustomEvent(\"open-link\",{cancelable:!0,detail:this.active.link}))&&window.open(this.active.link,\"_blank\"),!1}formatActive(){null!=this.active&&this.formatArticle(this.active)}formatArticle(e){let t=this.getState(e.id);t=t==lY.FORMAT?lY.DESCRIPTION:lY.FORMAT,this.setFormat(e,t)}summarizeActive(){null!=this.active&&this.summarizeArticle(this.active)}summarizeArticle(e){let t=this.getState(e.id);t=t==lY.SUMMARY?lY.DESCRIPTION:lY.SUMMARY,this.setFormat(e,t)}favorActive(){null!=this.active&&this.favorArticle(this.active)}favorArticle(e){this.articleService.favor(e.id,!e.favorite).subscribe(e=>{},e=>console.log(e))}keypointsToHTML(e){return`
  • `+e.keyPoints.join(\"
  • \")+\"
\"}getState(e){return this.states.has(e)?this.states.get(e):lY.DESCRIPTION}setFormat(e,t){let n,i=this.active;t!=lY.DESCRIPTION?(n=e.format?xu(e.format):this.articleService.formatArticle(i.id),n.subscribe(e=>{i.format=e,this.stateChange.next([i.id,t])},e=>console.log(e))):this.stateChange.next([i.id,t])}formatSource(e){return e.replace(\"{class e{constructor(){this.parser=document.createElement(\"a\")}iconURL(e){return this.parser.href=e,`//www.google.com/s2/favicons?domain=${this.parser.hostname}`}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();var uY,hY,mY,pY,fY,_Y;function gY(e,t){if(1&e&&(Ro(0,\"a\",14),Sa(1),Ho()),2&e){const e=t.$implicit;Po(\"routerLink\",\"/feed/popular/\"+e.link),ys(1),La(e.title)}}function yY(e,t){if(1&e&&(Ro(0,\"a\",14),jo(1,\"img\",15),Sa(2),Ho()),2&e){const e=t.$implicit,n=Jo(2);Po(\"routerLink\",\"/feed/popular/\"+e.link),ys(1),ta(\"src\",n.favicon(e.url),es),ys(1),La(e.title)}}function bY(e,t){if(1&e){const e=zo();Ro(0,\"div\",4),Ro(1,\"div\",5),Ro(2,\"button\",6),Uo(\"click\",(function(){en(e);const t=Jo();return t.collapses.__popularity=!t.collapses.__popularity})),Ro(3,\"mat-icon\"),Sa(4),Ho(),Ho(),Ro(5,\"a\",13),tc(6,_Y),Ho(),Ho(),Ro(7,\"div\",8),Do(8,gY,2,2,\"a\",9),Do(9,yY,3,3,\"a\",9),Ho(),Ho()}if(2&e){const e=Jo();ys(4),La(e.collapses.__popularity?\"expand_less\":\"expand_more\"),ys(3),Po(\"ngbCollapse\",!e.collapses.__popularity),ys(1),Po(\"ngForOf\",e.tags),ys(1),Po(\"ngForOf\",e.allItems)}}function vY(e,t){if(1&e&&(Ro(0,\"a\",14),jo(1,\"img\",15),Sa(2),Ho()),2&e){const e=t.$implicit,n=Jo();Po(\"routerLink\",\"/\"+e.link),ys(1),ta(\"src\",n.favicon(e.url),es),ys(1),La(e.title)}}function wY(e,t){if(1&e&&(Ro(0,\"a\",14),jo(1,\"img\",15),Sa(2),Ho()),2&e){const e=t.$implicit,n=Jo(2);Po(\"routerLink\",\"/feed/\"+e.link),ys(1),ta(\"src\",n.favicon(e.url),es),ys(1),La(e.title)}}function MY(e,t){if(1&e){const e=zo();Ro(0,\"div\",4),Ro(1,\"div\",5),Ro(2,\"button\",6),Uo(\"click\",(function(){en(e);const n=t.$implicit,i=Jo();return i.collapses[n.id]=!i.collapses[n.id]})),Ro(3,\"mat-icon\"),Sa(4),Ho(),Ho(),Ro(5,\"a\",14),Sa(6),Ho(),Ho(),Ro(7,\"div\",8),Do(8,wY,3,3,\"a\",9),Ho(),Ho()}if(2&e){const e=t.$implicit,n=Jo();ys(4),La(n.collapses[e.id]?\"expand_less\":\"expand_more\"),ys(1),Po(\"routerLink\",\"/feed/\"+e.link),ys(1),La(e.title),ys(1),Po(\"ngbCollapse\",!n.collapses[e.id]),ys(1),Po(\"ngForOf\",e.items)}}uY=$localize`:␟416441a4532345eaa0c5cab38f0aeb148c8566e0␟4648504262060403687: Feeds\n`,hY=$localize`:␟11a0771f88158a540a54e0e4ec5d25733d65fc0e␟5787671382322865445:Favorite`,mY=$localize`:␟dfc3c34e182ea73c5d784ff7c8135f087992dac1␟1616102757855967475:All`,pY=$localize`:␟121cc5391cd2a5115bc2b3160379ee5b36cd7716␟4930506384627295710:Settings`,fY=$localize`:␟bb694b49d408265c91c62799c2b3a7e3151c824d␟3797778920049399855:Logout`,_Y=$localize`:␟8fc026bb4b317bf3a6159c364818202f5bb95a4e␟7375243393535212946:Popular`;let kY=(()=>{class e{constructor(e,t,n,i){this.tagService=e,this.feedService=t,this.featuresService=n,this.faviconService=i,this.collapses=new Map,this.popularityItems=new Array,this.allItems=new Array,this.tags=new Array,this.collapses.set(\"__popularity\",!0),this.collapses.set(\"__all\",!0)}ngOnInit(){this.featuresService.getFeatures().pipe(dD(this.feedService.getFeeds(),this.tagService.getTagsFeedIDs(),(e,t,n)=>{let i;return i=[e,t,n],i})).subscribe(e=>{this.popularity=e[0].popularity;let t=e[1].sort((e,t)=>e.title.localeCompare(t.title)),n=e[2].sort((e,t)=>e.tag.value.localeCompare(t.tag.value));if(this.popularity&&(this.popularityItems=n.map(e=>new LY(-1*e.tag.id,\"/popular/tag/\"+e.tag.id,e.tag.value)),this.popularityItems.concat(t.map(e=>new LY(e.id,\"/popular/feed/\"+e.id,e.title,e.link)))),this.allItems=t.map(e=>new LY(e.id,\"/feed/\"+e.id,e.title,e.link)),n.length>0){let e=new Map;t.forEach(t=>{e.set(t.id,t)}),this.tags=n.map(t=>new SY(t.tag.id,\"/tag/\"+t.tag.id,t.tag.value,t.ids.map(t=>new LY(t,`${t}`,e.get(t).title,e.get(t).link)))),this.tags.forEach(e=>this.collapses.set(e.id,!1))}},e=>console.log(e))}favicon(e){return this.faviconService.iconURL(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(YD),Eo(DD),Eo(QD),Eo(dY))},e.\\u0275cmp=yt({type:e,selectors:[[\"side-bar\"]],decls:22,vars:5,consts:[[\"color\",\"primary\"],[1,\"content\"],[\"mat-button\",\"\",\"routerLink\",\"/feed/favorite\"],[\"class\",\"group\",4,\"ngIf\"],[1,\"group\"],[1,\"category\"],[\"mat-button\",\"\",1,\"expander\",3,\"click\"],[\"mat-button\",\"\",\"routerLink\",\"/feed\"],[1,\"items\",3,\"ngbCollapse\"],[\"mat-button\",\"\",3,\"routerLink\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"group\",4,\"ngFor\",\"ngForOf\"],[\"mat-button\",\"\",\"routerLink\",\"/settings\"],[\"mat-button\",\"\",\"routerLink\",\"/login\"],[\"mat-button\",\"\",\"routerLink\",\"/feed/popular\"],[\"mat-button\",\"\",3,\"routerLink\"],[1,\"favicon\",3,\"src\"]],template:function(e,t){1&e&&(Ro(0,\"mat-toolbar\",0),tc(1,uY),Ho(),Ro(2,\"div\",1),Ro(3,\"a\",2),tc(4,hY),Ho(),Do(5,bY,10,4,\"div\",3),jo(6,\"hr\"),Ro(7,\"div\",4),Ro(8,\"div\",5),Ro(9,\"button\",6),Uo(\"click\",(function(){return t.collapses.__all=!t.collapses.__all})),Ro(10,\"mat-icon\"),Sa(11),Ho(),Ho(),Ro(12,\"a\",7),tc(13,mY),Ho(),Ho(),Ro(14,\"div\",8),Do(15,vY,3,3,\"a\",9),Ho(),Ho(),Do(16,MY,9,5,\"div\",10),jo(17,\"hr\"),Ro(18,\"a\",11),tc(19,pY),Ho(),Ro(20,\"a\",12),tc(21,fY),Ho(),Ho()),2&e&&(ys(5),Po(\"ngIf\",t.popularity),ys(6),La(t.collapses.__all?\"expand_less\":\"expand_more\"),ys(3),Po(\"ngbCollapse\",!t.collapses.__all),ys(1),Po(\"ngForOf\",t.allItems),ys(1),Po(\"ngForOf\",t.tags))},directives:[dS,Jy,cT,mu,Gy,Cw,VS,uu],styles:[\".content[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{margin-bottom:4px}.content[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex;font-size:16px}.items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:13px}.category[_ngcontent-%COMP%], .items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex}.category[_ngcontent-%COMP%] > .expander[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;min-width:24px;flex-shrink:1}.category[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{flex-grow:1;text-align:start}.category[_ngcontent-%COMP%] > .items[_ngcontent-%COMP%]{flex:0 1 100%}.content[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{margin:0}.favicon[_ngcontent-%COMP%]{padding-right:4px}\"]}),e})();class SY{constructor(e,t,n,i){this.id=e,this.link=t,this.title=n,this.items=i}}class LY{constructor(e,t,n,i){this.id=e,this.link=t,this.title=n,this.url=i}}class xY{constructor(e){this.delayDurationSelector=e}call(e,t){return t.subscribe(new CY(e,this.delayDurationSelector))}}class CY extends R{constructor(e,t){super(e),this.delayDurationSelector=t,this.completed=!1,this.delayNotifierSubscriptions=[],this.index=0}notifyNext(e,t,n,i,s){this.destination.next(e),this.removeSubscription(s),this.tryComplete()}notifyError(e,t){this._error(e)}notifyComplete(e){const t=this.removeSubscription(e);t&&this.destination.next(t),this.tryComplete()}_next(e){const t=this.index++;try{const n=this.delayDurationSelector(e,t);n&&this.tryDelay(n,e)}catch(n){this.destination.error(n)}}_complete(){this.completed=!0,this.tryComplete(),this.unsubscribe()}removeSubscription(e){e.unsubscribe();const t=this.delayNotifierSubscriptions.indexOf(e);return-1!==t&&this.delayNotifierSubscriptions.splice(t,1),e.outerValue}tryDelay(e,t){const n=A(this,e,t);n&&!n.closed&&(this.destination.add(n),this.delayNotifierSubscriptions.push(n))}tryComplete(){this.completed&&0===this.delayNotifierSubscriptions.length&&this.destination.complete()}}const TY=[\"search\"];function DY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){return en(e),Jo().up()})),Ro(1,\"mat-icon\"),Sa(2,\"keyboard_backspace\"),Ho(),Ho()}}var YY,EY;function OY(e,t){1&e&&(Ro(0,\"span\"),tc(1,YY),Ho())}function IY(e,t){1&e&&jo(0,\"span\",12)}function PY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){en(e),Jo();const t=Yo(3);return Jo().searchQuery=\"\",t.focus()})),Ro(1,\"mat-icon\"),Sa(2,\"clear\"),Ho(),Ho()}}function AY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){en(e);const t=Jo(2);return t.performSearch(t.searchQuery)})),Ro(1,\"mat-icon\"),Sa(2,\"keyboard_return\"),Ho(),Ho()}}function RY(e,t){if(1&e){const e=zo();Ro(0,\"div\",13),Do(1,PY,3,0,\"button\",0),Ro(2,\"input\",14,15),Uo(\"ngModelChange\",(function(t){return en(e),Jo().searchQuery=t})),Ho(),Do(4,AY,3,0,\"button\",0),Ho()}if(2&e){const e=Jo();ys(1),Po(\"ngIf\",e.searchQuery),ys(1),Po(\"ngModel\",e.searchQuery),ys(2),Po(\"ngIf\",e.searchQuery)}}function HY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){en(e);const t=Jo();return t.searchEntry=!t.searchEntry})),Ro(1,\"mat-icon\"),Sa(2,\"search\"),Ho(),Ho()}}function jY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){return en(e),Jo().refresh()})),Ro(1,\"mat-icon\"),Sa(2,\"refresh\"),Ho(),Ho()}}function FY(e,t){if(1&e){const e=zo();Ro(0,\"mat-checkbox\",16),Uo(\"ngModelChange\",(function(t){return en(e),Jo().articleRead=t}))(\"click\",(function(){return en(e),Jo().toggleRead()})),tc(1,EY),Ho()}2&e&&Po(\"ngModel\",Jo().articleRead)}function NY(e,t){1&e&&(Ro(0,\"button\",17),Ro(1,\"mat-icon\"),Sa(2,\"share\"),Ho(),Ho()),2&e&&(Jo(),Po(\"matMenuTriggerFor\",Yo(9)))}function zY(e,t){if(1&e){const e=zo();Ro(0,\"button\",10),Uo(\"click\",(function(){en(e);const n=t.$implicit;return Jo().shareArticleTo(n)})),Sa(1),Ho()}if(2&e){const e=t.$implicit;ys(1),xa(\" \",e.description,\" \")}}function VY(e,t){1&e&&(Ro(0,\"button\",17),Ro(1,\"mat-icon\"),Sa(2,\"more_vert\"),Ho(),Ho()),2&e&&(Jo(),Po(\"matMenuTriggerFor\",Yo(13)))}function WY(e,t){if(1&e){const e=zo();Ro(0,\"button\",10),Uo(\"click\",(function(){return en(e),Jo().toggleOlderFirst()})),Ro(1,\"span\"),Sa(2,\"Older first\"),Ho(),Ho()}}function UY(e,t){if(1&e){const e=zo();Ro(0,\"button\",10),Uo(\"click\",(function(){return en(e),Jo().toggleOlderFirst()})),Ro(1,\"span\"),Sa(2,\"Newer first\"),Ho(),Ho()}}function $Y(e,t){if(1&e){const e=zo();Ro(0,\"button\",10),Uo(\"click\",(function(){return en(e),Jo().markAsRead()})),Ro(1,\"span\"),Sa(2,\"Mark all as read\"),Ho(),Ho()}}YY=$localize`:␟3b6143a528c6f4586e60e9af4ced8ac0fbe08251␟5539833462297888878:Articles`,EY=$localize`:␟9b1d5e95f6bdcfb4b737413f5fa157e0dcb103d5␟2327592562693301723:Read`;let BY=(()=>{class e{constructor(t,n,i,s,r,o){this.articleService=t,this.featuresServices=n,this.preferences=i,this.router=s,this.location=r,this.sharingService=o,this.olderFirst=!1,this.showsArticle=!1,this.articleRead=!1,this.searchButton=!1,this.markAllRead=!1,this.inSearch=!1,this.enabledShares=!1,this.shareServices=new Array,this._searchQuery=\"\",this._searchEntry=!1,this.subscriptions=new Array,this.searchQuery=localStorage.getItem(e.key)||\"\"}get searchEntry(){return this._searchEntry}set searchEntry(e){this._searchEntry=e,e&&setTimeout(()=>{this.searchInput.nativeElement.focus()},10)}get searchQuery(){return this._searchQuery}set searchQuery(t){this._searchQuery=t,localStorage.setItem(e.key,t)}ngOnInit(){let e=lD(this.router);this.subscriptions.push(e.pipe(H(e=>null!=e)).subscribe(e=>this.showsArticle=e)),this.articleID=e.pipe(H(e=>null==e?-1:+e.params.articleID),Eb(),nv(1)),this.subscriptions.push(this.articleID.pipe(Wb(e=>{if(-1==e)return xu(!1);let t=!0;return this.articleService.articleObservable().pipe(H(t=>{for(let n of t)if(n.id==e)return n.read;return!1}),(n=e=>e&&!t?Hb(1e3):(t=!1,Hb(0)),e=>e.lift(new xY(n))));var n})).subscribe(e=>this.articleRead=e,e=>console.log(e))),this.subscriptions.push(oD(this.router).pipe(H(e=>null!=e&&\"search\"==e.data.primary)).subscribe(e=>this.inSearch=e,e=>console.log(e))),this.subscriptions.push(this.featuresServices.getFeatures().pipe(Tu(e=>e.search),Wb(t=>e.pipe(H(e=>null==e),Eb(),dD(oD(this.router),(e,t)=>{let n=!1,i=!1,s=!1;if(e)switch(aD([this.router.routerState.snapshot.root]).data.primary){case\"favorite\":s=!0;case\"popular\":break;case\"search\":i=!0;default:n=!0,s=!0}return[n,i,s]})))).subscribe(e=>{this.searchButton=e[0],this.searchEntry=e[1],this.markAllRead=e[2]},e=>console.log(e))),this.subscriptions.push(this.sharingService.enabledServices().subscribe(e=>{this.enabledShares=e.length>0,this.shareServices=e},e=>console.log(e)))}ngOnDestroy(){this.subscriptions.forEach(e=>e.unsubscribe())}toggleOlderFirst(){this.preferences.olderFirst=!this.preferences.olderFirst,this.olderFirst=this.preferences.olderFirst}toggleUnreadOnly(){this.preferences.unreadOnly=!this.preferences.unreadOnly}markAsRead(){this.articleService.readAll()}up(){let e=this.location.path(),t=e.indexOf(\"/article/\");-1!=t?this.router.navigateByUrl(e.substring(0,t)):this.inSearch&&this.router.navigateByUrl(e.substring(0,e.indexOf(\"/search/\")))}toggleRead(){this.articleID.pipe(cp(1),Wb(e=>(-1==e&&lp(),this.articleService.articleObservable().pipe(H(t=>{for(let n of t)if(n.id==e)return n;return null}),cp(1)))),V(e=>this.articleService.read(e.id,!e.read))).subscribe(e=>{},e=>console.log(e))}keyEnter(){this.searchEntry&&this.searchQuery&&this.performSearch(this.searchQuery)}performSearch(e){if(\"search\"==aD([this.router.routerState.snapshot.root]).data.primary){let t=this.location.path().indexOf(\"/search/\")+8;this.router.navigateByUrl(this.location.path().substring(0,t)+encodeURIComponent(e))}else this.router.navigateByUrl(this.location.path()+\"/search/\"+encodeURIComponent(e))}refresh(){this.articleService.refreshArticles()}shareArticleTo(e){this.articleID.pipe(cp(1),Tu(e=>-1!=e),Wb(e=>this.articleService.articleObservable().pipe(H(t=>t.filter(t=>t.id==e)),Tu(e=>e.length>0),H(e=>e[0]))),cp(1)).subscribe(t=>this.sharingService.submit(e.id,t))}}return e.key=\"searchQuery\",e.\\u0275fac=function(t){return new(t||e)(Eo(zD),Eo(QD),Eo(OD),Eo(lT),Eo(tu),Eo(uD))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],viewQuery:function(e,t){var n;1&e&&Ec(TY,!0),2&e&&Dc(n=Rc())&&(t.searchInput=n.first)},hostBindings:function(e,t){1&e&&Uo(\"keydown.enter\",(function(){return t.keyEnter()}))},decls:20,vars:13,consts:[[\"mat-icon-button\",\"\",3,\"click\",4,\"ngIf\"],[4,\"ngIf\"],[\"class\",\"spacer\",4,\"ngIf\"],[\"class\",\"input-group\",4,\"ngIf\"],[3,\"ngModel\",\"ngModelChange\",\"click\",4,\"ngIf\"],[\"mat-icon-button\",\"\",3,\"matMenuTriggerFor\",4,\"ngIf\"],[\"shares\",\"matMenu\"],[\"mat-menu-item\",\"\",3,\"click\",4,\"ngFor\",\"ngForOf\"],[\"other\",\"matMenu\"],[\"mat-menu-item\",\"\",3,\"click\",4,\"ngIf\"],[\"mat-menu-item\",\"\",3,\"click\"],[\"mat-icon-button\",\"\",3,\"click\"],[1,\"spacer\"],[1,\"input-group\"],[\"matInput\",\"\",\"focused\",\"\",1,\"spacer\",\"search\",\"mat-toolbar\",\"mat-primary\",\"form-control\",3,\"ngModel\",\"ngModelChange\"],[\"search\",\"\"],[3,\"ngModel\",\"ngModelChange\",\"click\"],[\"mat-icon-button\",\"\",3,\"matMenuTriggerFor\"]],template:function(e,t){1&e&&(Do(0,DY,3,0,\"button\",0),Do(1,OY,2,0,\"span\",1),Do(2,IY,1,0,\"span\",2),Do(3,RY,5,3,\"div\",3),Do(4,HY,3,0,\"button\",0),Do(5,jY,3,0,\"button\",0),Do(6,FY,2,1,\"mat-checkbox\",4),Do(7,NY,3,1,\"button\",5),Ro(8,\"mat-menu\",null,6),Do(10,zY,2,1,\"button\",7),Ho(),Do(11,VY,3,1,\"button\",5),Ro(12,\"mat-menu\",null,8),Do(14,WY,3,0,\"button\",9),Do(15,UY,3,0,\"button\",9),Ro(16,\"button\",10),Uo(\"click\",(function(){return t.toggleUnreadOnly()})),Ro(17,\"span\"),Sa(18,\"Unread only\"),Ho(),Ho(),Do(19,$Y,3,0,\"button\",9),Ho()),2&e&&(Po(\"ngIf\",t.showsArticle||t.inSearch),ys(1),Po(\"ngIf\",!t.searchEntry),ys(1),Po(\"ngIf\",!t.searchEntry),ys(1),Po(\"ngIf\",t.searchEntry),ys(1),Po(\"ngIf\",t.searchButton),ys(1),Po(\"ngIf\",!t.showsArticle),ys(1),Po(\"ngIf\",t.showsArticle),ys(1),Po(\"ngIf\",t.showsArticle&&t.enabledShares),ys(3),Po(\"ngForOf\",t.shareServices),ys(1),Po(\"ngIf\",!t.showsArticle),ys(3),Po(\"ngIf\",!t.olderFirst),ys(1),Po(\"ngIf\",t.olderFirst),ys(4),Po(\"ngIf\",!t.inSearch&&t.markAllRead))},directives:[mu,HM,uu,EM,Gy,Cw,gM,_h,kh,Cm,bb,zM],styles:[\"[_nghost-%COMP%]{display:flex;align-items:center}.spacer[_ngcontent-%COMP%], [_nghost-%COMP%]{flex:1 1 auto}.search[_ngcontent-%COMP%]{min-height:0;border:none;background:transparent} label{margin-bottom:0}\"]}),e})(),qY=(()=>{class e{ngOnInit(){}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-container\"]],decls:2,vars:0,consts:[[1,\"container\"]],template:function(e,t){1&e&&(Ro(0,\"div\",0),jo(1,\"router-outlet\"),Ho())},directives:[mT],styles:[\"[_nghost-%COMP%]{overflow:auto}\"]}),e})(),GY=(()=>{class e{constructor(e){this.api=e,this.user=this.api.get(\"user/current\").pipe(H(e=>e.user),nv(1))}getCurrentUser(){return this.user}changeUserPassword(e,t){return this.setUserSetting(\"password\",e,{current:t})}setUserSetting(e,t,n){var i=`value=${encodeURIComponent(t)}`;if(n)for(let s in n)i+=`&${s}=${encodeURIComponent(n[s])}`;return this.api.put(`user/settings/${e}`,i,new Iu({\"Content-Type\":\"application/x-www-form-urlencoded\"})).pipe(H(e=>e.success))}list(){return this.api.get(\"user\").pipe(H(e=>e.users))}addUser(e,t){var n=new FormData;return n.append(\"login\",e),n.append(\"password\",t),this.api.post(\"user\",n).pipe(H(e=>e.success))}deleteUser(e){return this.api.delete(`user/${e}`).pipe(H(e=>e.success))}toggleActive(e,t){return this.api.put(`user/${e}/settings/is-active`,`value=${t}`,new Iu({\"Content-Type\":\"application/x-www-form-urlencoded\"})).pipe(H(e=>e.success))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();var JY;JY=$localize`:␟2034c9a8ec1a387f9614599aed924afedba51287␟3044746121698042511:Personalize your feed reader`;const KY=[\"placeholder\",$localize`:␟62b6c66981335ca6eecc36b331103c60f09d1026␟5342432350421167093:First name`],ZY=[\"placeholder\",$localize`:␟6ce3dadf53dda1a1ab0c3167a8ed8dced471b0dc␟3586674587150281199:Last name`],QY=[\"placeholder\",$localize`:␟244aae9346da82b0922506c2d2581373a15641cc␟4768749765465246664:Email`],XY=[\"placeholder\",$localize`:␟fe46ccaae902ce974e2441abe752399288298619␟2826581353496868063:Language`];var eE,tE,nE;function iE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,tE),Ho())}eE=$localize`:␟739516c2ca75843d5aec9cf0e6b3e4335c4227b9␟6309828574111583895:Change password`,tE=$localize`:␟782e37fb591e59a26363f1558db22cd373660ca9␟5224830667201919132: Please enter a valid email address `,nE=$localize`:␟6d6539a26b432fb1906f9fda102cf3ac332c8b8a␟1375188762769896369:Change your password`;const sE=[\"placeholder\",$localize`:␟e70e209561583f360b1e9cefd2cbb1fe434b6229␟3588415639242079458:New password`],rE=[\"placeholder\",$localize`:␟ede41f01c781b168a783cfcefc6fb67d48780d9b␟8656126574213649581:Confirm new password`];var oE,aE,lE;function cE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,aE),Ho())}function dE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,lE),Ho())}oE=$localize`:␟52c9a103b812f258bcddc3d90a6e3f46871d25fe␟3768927257183755959:Save`,aE=$localize`:␟d4ee9c4a4fe08d273b716bf0a399570466bbd87c␟5382495681765079471: Invalid password `,lE=$localize`:␟71980fe48d948363935aab88e2077c7c76de93bd␟4018700129027778932: Passwords do not match `;let uE=(()=>{class e{constructor(e,t){this.userService=e,this.dialog=t,this.emailFormControl=new pm(\"\",[Dh.email]),this.language=localStorage.getItem(\"locale\")||\"en\"}ngOnInit(){this.userService.getCurrentUser().subscribe(e=>{this.firstName=e.firstName,this.lastName=e.lastName,this.emailFormControl.setValue(e.email)},e=>console.log(e))}firstNameChange(){this.userService.setUserSetting(\"first-name\",this.firstName).subscribe(()=>{},e=>console.log(e))}lastNameChange(){this.userService.setUserSetting(\"last-name\",this.lastName).subscribe(()=>{},e=>console.log(e))}emailChange(){this.emailFormControl.updateValueAndValidity(),this.emailFormControl.valid&&this.userService.setUserSetting(\"email\",this.emailFormControl.value).subscribe(e=>{e||this.emailFormControl.setErrors({email:!0})},e=>console.log(e))}languageChange(e){location.href=\"/\"+e+\"/\"}changePassword(){this.dialog.open(hE,{width:\"250px\"})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(GY),Eo(rw))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-general\"]],decls:26,vars:7,consts:[[1,\"title\"],[\"matInput\",\"\",3,\"ngModel\",\"ngModelChange\",\"change\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"email\",3,\"formControl\",\"change\",6,\"placeholder\"],[4,\"ngIf\"],[3,\"ngModel\",\"change\",\"ngModelChange\",6,\"placeholder\"],[3,\"value\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,JY),Ho(),Ro(2,\"mat-form-field\"),Ro(3,\"input\",1),nc(4,KY),Uo(\"ngModelChange\",(function(e){return t.firstName=e}))(\"change\",(function(){return t.firstNameChange()})),Ho(),Ho(),jo(5,\"br\"),Ro(6,\"mat-form-field\"),Ro(7,\"input\",1),nc(8,ZY),Uo(\"ngModelChange\",(function(e){return t.lastName=e}))(\"change\",(function(){return t.lastNameChange()})),Ho(),Ho(),jo(9,\"br\"),Ro(10,\"mat-form-field\"),Ro(11,\"input\",2),nc(12,QY),Uo(\"change\",(function(){return t.emailChange()})),Ho(),Do(13,iE,2,0,\"mat-error\",3),Ho(),jo(14,\"br\"),Ro(15,\"mat-form-field\"),Ro(16,\"mat-select\",4),nc(17,XY),Uo(\"change\",(function(e){return t.languageChange(e.value)}))(\"ngModelChange\",(function(e){return t.language=e})),Ro(18,\"mat-option\",5),Sa(19,\"English\"),Ho(),Ro(20,\"mat-option\",5),Sa(21,\"\\u0411\\u044a\\u043b\\u0433\\u0430\\u0440\\u0441\\u043a\\u0438\"),Ho(),Ho(),Ho(),jo(22,\"br\"),Ro(23,\"div\",6),Ro(24,\"button\",7),Uo(\"click\",(function(){return t.changePassword()})),tc(25,eE),Ho(),Ho()),2&e&&(ys(3),Po(\"ngModel\",t.firstName),ys(4),Po(\"ngModel\",t.lastName),ys(4),Po(\"formControl\",t.emailFormControl),ys(2),Po(\"ngIf\",t.emailFormControl.hasError(\"email\")),ys(3),Po(\"ngModel\",t.language),ys(2),Po(\"value\",\"en\"),ys(2),Po(\"value\",\"bg\"))},directives:[dM,gM,_h,kh,Cm,Em,mu,_k,Fy,Gy,Kw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),e})(),hE=(()=>{class e{constructor(e,t){this.dialogRef=e,this.userService=t,this.currentFormControl=new pm(\"\",[Dh.required]),this.passwordFormControl=new pm(\"\",[Dh.required])}save(){this.passwordFormControl.value==this.passwordConfirm?(this.currentFormControl.updateValueAndValidity(),this.currentFormControl.valid&&this.userService.changeUserPassword(this.passwordFormControl.value,this.currentFormControl.value).subscribe(e=>{e?this.close():this.currentFormControl.setErrors({auth:!0})},e=>{400!=e.status?console.log(e):this.currentFormControl.setErrors({auth:!0})})):this.passwordFormControl.setErrors({mismatch:!0})}close(){this.dialogRef.close()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ew),Eo(GY))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:18,vars:5,consts:[[1,\"title\"],[\"matInput\",\"\",\"type\",\"password\",\"placeholder\",\"Current password\",\"required\",\"\",3,\"formControl\"],[4,\"ngIf\"],[\"matInput\",\"\",\"type\",\"password\",\"required\",\"\",3,\"formControl\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"password\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h6\",0),tc(1,nE),Ho(),Ro(2,\"mat-form-field\"),jo(3,\"input\",1),Do(4,cE,2,0,\"mat-error\",2),Ho(),jo(5,\"br\"),Ro(6,\"mat-form-field\"),Ro(7,\"input\",3),nc(8,sE),Ho(),Do(9,dE,2,0,\"mat-error\",2),Ho(),jo(10,\"br\"),Ro(11,\"mat-form-field\"),Ro(12,\"input\",4),nc(13,rE),Uo(\"ngModelChange\",(function(e){return t.passwordConfirm=e})),Ho(),Ho(),jo(14,\"br\"),Ro(15,\"div\",5),Ro(16,\"button\",6),Uo(\"click\",(function(){return t.save()})),tc(17,oE),Ho(),Ho()),2&e&&(ys(3),Po(\"formControl\",t.currentFormControl),ys(1),Po(\"ngIf\",t.currentFormControl.hasError(\"auth\")),ys(3),Po(\"formControl\",t.passwordFormControl),ys(2),Po(\"ngIf\",t.passwordFormControl.hasError(\"mismatch\")),ys(3),Po(\"ngModel\",t.passwordConfirm))},directives:[dM,gM,_h,Vm,kh,Em,mu,Cm,Gy,Kw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),e})();const mE=[\"opmlInput\"];var pE,fE;pE=$localize`:␟2fa6619f44220045d57d900966a51c211caad6fc␟8307427112695611410:Discover/import feeds`,fE=$localize`:␟79bf2166191aab07aa1524f2d1350fab472c468a␟1179108510865870171: You can enter the url of a feed directly, as well as a url of a site that may contain one or more feeds, or a search query. `;const _E=[\"placeholder\",$localize`:␟c09f5d00683d3ea7a0bac506894a81c47075628f␟7800294050526433264:URL/query`];var gE;gE=$localize`:␟0e6f6d047ad0445f95577c3886f5cb462ecfd614␟4419855417700414171: Alternatively, upload an OPML file. `;const yE=[\"placeholder\",$localize`:␟62eb4be126bc452812fe66b9675417704c09123a␟2641672822784307275:OPML import`];var bE,vE,wE,ME,kE,SE,LE,xE,CE,TE;function DE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,vE),Ho())}function YE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,wE),Ho())}function EE(e,t){1&e&&jo(0,\"mat-progress-bar\",7)}function OE(e,t){if(1&e){const e=zo();Ro(0,\"div\"),Ro(1,\"p\"),tc(2,fE),Ho(),Ro(3,\"mat-form-field\"),Ro(4,\"input\",2),nc(5,_E),Uo(\"ngModelChange\",(function(t){return en(e),Jo().query=t}))(\"keydown.Enter\",(function(){return en(e),Jo().search()})),Ho(),Do(6,DE,2,0,\"mat-error\",1),Do(7,YE,2,0,\"mat-error\",1),Ho(),jo(8,\"br\"),Ro(9,\"p\"),tc(10,gE),Ho(),Ro(11,\"input\",3,4),nc(13,yE),Uo(\"keydown.Enter\",(function(){return en(e),Jo().search()})),Ho(),jo(14,\"br\"),Ro(15,\"button\",5),Uo(\"click\",(function(){return en(e),Jo().search()})),tc(16,bE),Ho(),jo(17,\"br\"),Do(18,EE,1,0,\"mat-progress-bar\",6),Ho()}if(2&e){const e=Jo();ys(4),Po(\"ngModel\",e.query),ys(2),Po(\"ngIf\",e.queryFormControl.hasError(\"empty\")),ys(1),Po(\"ngIf\",e.queryFormControl.hasError(\"search\")),ys(8),Po(\"disabled\",e.loading),ys(3),Po(\"ngIf\",e.loading)}}function IE(e,t){1&e&&(Ro(0,\"p\"),tc(1,ME),Ho())}function PE(e,t){if(1&e&&(Ro(0,\"div\"),Ro(1,\"mat-checkbox\"),Sa(2),Ho(),jo(3,\"br\"),Ro(4,\"a\",11),Sa(5),Ho(),jo(6,\"hr\"),Ho()),2&e){const e=t.$implicit,n=Jo(2);ys(2),La(e.title),ys(2),ta(\"href\",n.baseURL(e.link),es),ys(1),La(e.description||e.title)}}function AE(e,t){1&e&&(Ro(0,\"p\"),Sa(1,\" No feeds selected \"),Ho())}function RE(e,t){if(1&e){const e=zo();Ro(0,\"button\",5),Uo(\"click\",(function(){return en(e),Jo(2).add()})),tc(1,kE),Ho()}2&e&&Po(\"disabled\",Jo(2).loading)}function HE(e,t){if(1&e){const e=zo();Ro(0,\"button\",12),Uo(\"click\",(function(){return en(e),Jo(2).phase=\"query\"})),tc(1,SE),Ho()}}function jE(e,t){if(1&e&&(Ro(0,\"div\"),Do(1,IE,2,0,\"p\",1),Do(2,PE,7,3,\"div\",8),Do(3,AE,2,0,\"p\",1),Do(4,RE,2,1,\"button\",9),Do(5,HE,2,0,\"button\",10),Ho()),2&e){const e=Jo();ys(1),Po(\"ngIf\",0==e.feeds.length),ys(1),Po(\"ngForOf\",e.feeds),ys(1),Po(\"ngIf\",e.emptySelection),ys(1),Po(\"ngIf\",e.feeds.length>0),ys(1),Po(\"ngIf\",0==e.feeds.length)}}function FE(e,t){1&e&&(Ro(0,\"p\"),tc(1,xE),Ho())}function NE(e,t){1&e&&(Ro(0,\"p\"),tc(1,CE),Ho())}function zE(e,t){if(1&e&&(Ro(0,\"div\"),Ro(1,\"p\"),tc(2,TE),Ho(),Ho()),2&e){const e=t.$implicit;ys(2),rc(e.title)(e.error),oc(2)}}function VE(e,t){if(1&e){const e=zo();Ro(0,\"div\"),Do(1,FE,2,0,\"p\",1),Do(2,NE,2,0,\"p\",1),Do(3,zE,3,2,\"div\",8),Ro(4,\"button\",12),Uo(\"click\",(function(){return en(e),Jo().phase=\"query\"})),tc(5,LE),Ho(),Ho()}if(2&e){const e=Jo();ys(1),Po(\"ngIf\",!e.addFeedResult.success),ys(1),Po(\"ngIf\",e.addFeedResult.success),ys(1),Po(\"ngForOf\",e.addFeedResult.errors)}}bE=$localize`:␟7e892ba15f2c6c17e83510e273b3e10fc32ea016␟4580988005648117665:Search`,vE=$localize`:␟bd2cda3ba20b1a481578e587ff255c5dd69226bb␟107334190959015127: No query or opml file specified `,wE=$localize`:␟8350af72cf77a2936cd54ac59cc1ab9adec34f74␟5089003889507327516: Error during search `,ME=$localize`:␟d95b1d4402bbe08c4ab7c089005abb260bf0fb62␟4956883923261490175: No new feeds found `,kE=$localize`:␟f6755cff4957d5c3c89bafce5651f1b6fa2b1fd9␟3249513483374643425:Add`,SE=$localize`:␟9d9bc3eecf1610ec05a5c2b63bb7c1324529cba5␟5997521680245778675:Discover more feeds`,LE=$localize`:␟9d9bc3eecf1610ec05a5c2b63bb7c1324529cba5␟5997521680245778675:Discover more feeds`,xE=$localize`:␟f1910eaad1af7b9e7635f930ddc55586f157e3bd␟5085881954406181280: No feeds added. `,CE=$localize`:␟ccd3b9334639513fbd609704f4ec8536a15aeb97␟4228842406796887022: Feeds were added successfully. `,TE=$localize`:␟51a0b2a443f1b6b1ceab1a868605d7b0f2065e28␟562151600459726773: Error adding feed ${\"\\ufffd0\\ufffd\"}:INTERPOLATION:: ${\"\\ufffd1\\ufffd\"}:INTERPOLATION_1: `;let WE=(()=>{class e{constructor(e){this.feedService=e,this.query=\"\",this.phase=\"query\",this.loading=!1,this.feeds=new Array,this.emptySelection=!1,this.queryFormControl=new pm(\"\")}search(){if(this.loading)return;if(\"\"==this.query&&!this.opml.nativeElement.files.length)return void this.queryFormControl.setErrors({empty:!0});let e;if(this.loading=!0,this.opml.nativeElement.files.length){let t=this.opml.nativeElement.files[0];e=v.create(e=>{let n=new FileReader;n.onload=function(t){e.next({opml:t.target.result,dryRun:!0}),e.complete()},n.onerror=function(t){e.error(t)},n.readAsText(t)}).pipe(V(e=>this.feedService.importOPML(e)))}else e=this.feedService.discover(this.query);e.subscribe(e=>{this.loading=!1,this.phase=\"search-result\",this.feeds=e},e=>{this.loading=!1,this.queryFormControl.setErrors({search:!0}),console.log(e)})}add(){if(this.loading)return;let e=new Array;this.feedChecks.forEach((t,n)=>{t.checked&&e.push(this.feeds[n].link)}),0!=e.length?(this.loading=!0,this.feedService.addFeeds(e).subscribe(e=>{this.loading=!1,this.addFeedResult=e,this.phase=\"add-result\"},e=>{this.loading=!1,console.log(e)})):this.emptySelection=!0}baseURL(e){let t=document.createElement(\"a\");return t.href=e,t.pathname=\"\",t.href}}return e.\\u0275fac=function(t){return new(t||e)(Eo(DD))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-discovery\"]],viewQuery:function(e,t){var n;1&e&&(Ec(mE,!0),Ec(bb,!0)),2&e&&(Dc(n=Rc())&&(t.opml=n.first),Dc(n=Rc())&&(t.feedChecks=n))},decls:5,vars:3,consts:[[1,\"title\"],[4,\"ngIf\"],[\"matInput\",\"\",3,\"ngModel\",\"ngModelChange\",\"keydown.Enter\",6,\"placeholder\"],[\"type\",\"file\",\"accept\",\".opml\",3,\"keydown.Enter\",6,\"placeholder\"],[\"opmlInput\",\"\"],[\"mat-raised-button\",\"\",3,\"disabled\",\"click\"],[\"mode\",\"indeterminate\",4,\"ngIf\"],[\"mode\",\"indeterminate\"],[4,\"ngFor\",\"ngForOf\"],[\"mat-raised-button\",\"\",3,\"disabled\",\"click\",4,\"ngIf\"],[\"mat-raised-button\",\"\",3,\"click\",4,\"ngIf\"],[1,\"discovery-link\",3,\"href\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,pE),Ho(),Do(2,OE,19,5,\"div\",1),Do(3,jE,6,5,\"div\",1),Do(4,VE,6,3,\"div\",1)),2&e&&(ys(2),Po(\"ngIf\",\"query\"==t.phase),ys(1),Po(\"ngIf\",\"search-result\"==t.phase),ys(1),Po(\"ngIf\",\"add-result\"==t.phase))},directives:[mu,dM,gM,_h,kh,Cm,Gy,Kw,JM,uu,bb],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}input[type=file][_ngcontent-%COMP%]{width:100%;border-bottom:1px solid grey;padding-bottom:4px;margin-bottom:1em}mat-progress-bar[_ngcontent-%COMP%]{margin-top:1em}.discovery-link[_ngcontent-%COMP%]{display:block;text-align:end}\"]}),e})();const UE=[\"downloader\"];var $E,BE;function qE(e,t){1&e&&(Ro(0,\"p\",7),Sa(1,\" No feeds have been added\\n\"),Ho())}$E=$localize`:␟446bc7942ed7cd24d6b84079bb82bd7f1d4d280b␟8187273895031232465:Manage Feeds`,BE=$localize`:␟cf59c3b27a0d7b925f32cd1c1e2785a1bf73f829␟5929451610563023881:Export OPML`;const GE=[\"placeholder\",$localize`:␟9f12050a433d9709f2231916ecfb33c4f2ed1c01␟4975748273657042999:tags`];function JE(e,t){if(1&e){const e=zo();Ro(0,\"div\",8),jo(1,\"img\",9),Ro(2,\"a\",10),Sa(3),Ho(),Ro(4,\"button\",11),Uo(\"click\",(function(){en(e);const n=t.$implicit;return Jo().showError(n[0].updateError)})),Ro(5,\"mat-icon\"),Sa(6,\"warning\"),Ho(),Ho(),Ro(7,\"mat-form-field\",12),Ro(8,\"input\",13),nc(9,GE),Uo(\"change\",(function(n){en(e);const i=t.$implicit;return Jo().tagsChange(n,i[0].id)})),Ho(),Ho(),Ro(10,\"button\",14),Uo(\"click\",(function(n){en(e);const i=t.$implicit;return Jo().deleteFeed(n,i[0].id)})),Ro(11,\"mat-icon\"),Sa(12,\"delete\"),Ho(),Ho(),Ho()}if(2&e){const e=t.$implicit,n=Jo();ys(1),ta(\"src\",n.favicon(e[0].link),es),ys(1),ta(\"href\",e[0].link,es),ys(1),La(e[0].title),ys(1),ua(\"visible\",e[0].updateError),ys(4),ta(\"value\",e[1].join(\", \"))}}var KE;function ZE(e,t){if(1&e&&(Ro(0,\"li\"),Sa(1),Ho()),2&e){const e=t.$implicit;ys(1),La(e)}}KE=$localize`:␟f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8␟7819314041543176992:Close`;let QE=(()=>{class e{constructor(e,t,n,i){this.feedService=e,this.tagService=t,this.faviconService=n,this.errorDialog=i,this.feeds=new Array}ngOnInit(){this.feedService.getFeeds().pipe(dD(this.tagService.getTagsFeedIDs(),(e,t)=>{let n=new Map;for(let i of t)for(let e of i.ids)n.has(e)?n.get(e).push(i.tag.value):n.set(e,[i.tag.value]);return e.map(e=>[e,n.get(e.id)||[]])})).subscribe(e=>this.feeds=e||[],e=>console.log(e))}favicon(e){return this.faviconService.iconURL(e)}tagsChange(e,t){this.feedService.updateTags(t,e.target.value.split(\",\").map(e=>e.trim())).subscribe(e=>{},e=>console.log(e))}showError(e){this.errorDialog.open(XE,{width:\"300px\",data:e.split(\"\\n\").filter(e=>e)})}deleteFeed(e,t){this.feedService.deleteFeed(t).subscribe(t=>{if(t){let t=e.target.parentNode;for(;(t=t.parentElement)&&!t.classList.contains(\"feed\"););t.parentNode.removeChild(t)}},e=>console.log(e))}exportOPML(){this.feedService.exportOPML().subscribe(e=>{this.downloader.nativeElement.href=\"data:text/x-opml+xml,\"+encodeURIComponent(e),this.downloader.nativeElement.click()},e=>console.log(e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(DD),Eo(YD),Eo(dY),Eo(rw))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-management\"]],viewQuery:function(e,t){var n;1&e&&Ec(UE,!0,Ka),2&e&&Dc(n=Rc())&&(t.downloader=n.first)},decls:9,vars:2,consts:[[1,\"title\"],[\"u18n\",\"\",4,\"ngIf\"],[\"class\",\"feed\",4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"hidden\",\"\",\"download\",\"feeds.opml\"],[\"downloader\",\"\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"u18n\",\"\"],[1,\"feed\"],[1,\"favicon\",3,\"src\"],[1,\"name\",3,\"href\"],[\"mat-icon-button\",\"\",1,\"error\",3,\"click\"],[1,\"tags\"],[\"matInput\",\"\",3,\"value\",\"change\",6,\"placeholder\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,$E),Ho(),Do(2,qE,2,0,\"p\",1),Do(3,JE,13,6,\"div\",2),Ro(4,\"div\",3),jo(5,\"a\",4,5),Ro(7,\"button\",6),Uo(\"click\",(function(){return t.exportOPML()})),tc(8,BE),Ho(),Ho()),2&e&&(ys(2),Po(\"ngIf\",0==t.feeds.length),ys(1),Po(\"ngForOf\",t.feeds))},directives:[mu,uu,Gy,Cw,dM,gM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".feed[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.favicon[_ngcontent-%COMP%]{width:16px;height:16px;margin-right:5px;flex-shrink:1}.name[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{flex:1 0 0;min-width:250px}.tags[_ngcontent-%COMP%]{width:auto}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}\"]}),e})(),XE=(()=>{class e{constructor(e,t){this.dialogRef=e,this.errors=t}close(){this.dialogRef.close()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ew),Eo(tw))},e.\\u0275cmp=yt({type:e,selectors:[[\"error-dialog\"]],decls:5,vars:1,consts:[[2,\"max-height\",\"85vh\",\"overflow\",\"auto\"],[4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"ul\",0),Do(1,ZE,2,1,\"li\",1),Ho(),Ro(2,\"div\",2),Ro(3,\"button\",3),Uo(\"click\",(function(){return t.close()})),tc(4,KE),Ho(),Ho()),2&e&&(ys(1),Po(\"ngForOf\",t.errors))},directives:[uu,Gy],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".feed[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.favicon[_ngcontent-%COMP%]{width:16px;height:16px;margin-right:5px;flex-shrink:1}.name[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{flex:1 0 0;min-width:250px}.tags[_ngcontent-%COMP%]{width:auto}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}\"]}),e})();var eO,tO,nO,iO,sO,rO,oO,aO,lO,cO,dO,uO,hO,mO;function pO(e,t){1&e&&(Ro(0,\"p\"),tc(1,nO),Ho())}function fO(e,t){1&e&&(Ro(0,\"span\"),tc(1,sO),Ho())}function _O(e,t){1&e&&(Ro(0,\"span\"),tc(1,rO),Ho())}function gO(e,t){if(1&e&&(Ro(0,\"span\"),Do(1,fO,2,0,\"span\",1),Do(2,_O,2,0,\"span\",1),Ro(3,\"span\",13),Sa(4),Ho(),Ro(5,\"span\",14),tc(6,iO),Ho(),Ho()),2&e){const e=Jo().$implicit;ys(1),Po(\"ngIf\",!e.inverseURL),ys(1),Po(\"ngIf\",e.inverseURL),ys(2),La(e.urlTerm)}}function yO(e,t){1&e&&(Ro(0,\"span\",15),Sa(1,\" and \"),Ho())}function bO(e,t){1&e&&(Ro(0,\"span\"),tc(1,aO),Ho())}function vO(e,t){1&e&&(Ro(0,\"span\"),tc(1,lO),Ho())}function wO(e,t){if(1&e&&(Ro(0,\"span\"),Do(1,bO,2,0,\"span\",1),Do(2,vO,2,0,\"span\",1),Ro(3,\"span\",13),Sa(4),Ho(),Ro(5,\"span\",16),tc(6,oO),Ho(),Ho()),2&e){const e=Jo().$implicit;ys(1),Po(\"ngIf\",!e.inverseTitle),ys(1),Po(\"ngIf\",e.inverseTitle),ys(2),La(e.titleTerm)}}function MO(e,t){1&e&&(Ro(0,\"span\",17),tc(1,cO),Ho())}function kO(e,t){1&e&&(Ro(0,\"span\",18),tc(1,dO),Ho())}function SO(e,t){1&e&&(Ro(0,\"span\",17),tc(1,uO),Ho())}function LO(e,t){1&e&&(Ro(0,\"span\",18),tc(1,hO),Ho())}function xO(e,t){if(1&e&&(Ro(0,\"span\",19),Sa(1),Ho()),2&e){const e=Jo().$implicit,t=Jo();ys(1),La(t.tagLabel(e.tagID))}}function CO(e,t){if(1&e&&(Ro(0,\"span\",20),Sa(1),Ho()),2&e){const e=Jo().$implicit,t=Jo();ys(1),La(t.feedsLabel(e.feedIDs))}}function TO(e,t){if(1&e){const e=zo();Ro(0,\"div\",5),Ro(1,\"div\",6),Do(2,gO,7,3,\"span\",1),Do(3,yO,2,0,\"span\",7),Do(4,wO,7,3,\"span\",1),Do(5,MO,2,0,\"span\",8),Do(6,kO,2,0,\"span\",9),Do(7,SO,2,0,\"span\",8),Do(8,LO,2,0,\"span\",9),Do(9,xO,2,1,\"span\",10),Do(10,CO,2,1,\"span\",11),Ho(),Ro(11,\"button\",12),Uo(\"click\",(function(n){en(e);const i=t.$implicit;return Jo().deleteFilter(n,i)})),Ro(12,\"mat-icon\"),Sa(13,\"delete\"),Ho(),Ho(),Ho()}if(2&e){const e=t.$implicit;ys(2),Po(\"ngIf\",e.urlTerm),ys(1),Po(\"ngIf\",e.urlTerm&&e.titleTerm),ys(1),Po(\"ngIf\",e.titleTerm),ys(1),Po(\"ngIf\",e.inverseFeeds&&e.tagID),ys(1),Po(\"ngIf\",e.inverseFeeds&&e.feedIDs&&!e.tagID),ys(1),Po(\"ngIf\",e.tagID),ys(1),Po(\"ngIf\",e.feedIDs&&!e.tagID),ys(1),Po(\"ngIf\",e.tagID),ys(1),Po(\"ngIf\",e.feedIDs)}}eO=$localize`:␟78a6f89ed9e0cf32497131786780cb1849d06450␟1387635138150410380:Manage Filters`,tO=$localize`:␟f0296c99c29c326e114d9b5e586e525ced19acb7␟910026778839409110:Add filter`,nO=$localize`:␟58225eba05594edb2dbf2227edcf972c45484190␟3151928432395495376: No filters have been defined\n`,iO=$localize`:␟583cfbb9fc11b6d18ba2859c6f6ef9801f01303a␟7250849074184621975:by URL`,sO=$localize`:␟01aa5508abb4473531a18c605c1c41ae4b6074d0␟1567940090040631427:Matches`,rO=$localize`:␟84bbbe38f927eaeddf081648c8783d06b4348b24␟2940383431828435625:Does not match`,oO=$localize`:␟7bd342c384e331d17e60ccdf6eb0c23152317d51␟2443387025535922739:by title`,aO=$localize`:␟01aa5508abb4473531a18c605c1c41ae4b6074d0␟1567940090040631427:Matches`,lO=$localize`:␟84bbbe38f927eaeddf081648c8783d06b4348b24␟2940383431828435625:Does not match`,cO=$localize`:␟5ec699eaa79e1ac10b6ce2a16bfc89436bcb7120␟560382346117673180:excluding tag:`,dO=$localize`:␟a01b7cd68dedce110e9721fe35c8447aa6c7addf␟2844382219174700059:excluding feeds:`,uO=$localize`:␟567eded396fef0222ca8ab79c661062ea2d0b0ba␟2325552724815119037:on tag:`,hO=$localize`:␟ee5dbbdc2ddbcc6b9aa7262b6d6b1fd93f4a7667␟1717622304171392571:on feeds:`,mO=$localize`:␟760d27bbd4821e0c2c36328a956b7e2a548af1b2␟3366129698268834789: Filters can be applied to article URLs and title. At least one target must be selected: `;const DO=[\"placeholder\",$localize`:␟34501d547e3d70233dfcc545621b3f9524046c76␟1890297221031788927:Filter by title`];var YO;YO=$localize`:␟12a3c6674683fc857378e516d09535cfe6030f50␟7902335185780042053: Match filter if title term does not match. `;const EO=[\"placeholder\",$localize`:␟3664165270130fd3d4f89f5f7e4c56fb7c485375␟215401851945683133:Filter by URL`];var OO,IO,PO,AO,RO,HO,jO,FO;function NO(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,HO),Ho())}function zO(e,t){1&e&&(Ro(0,\"span\"),tc(1,jO),Ho())}function VO(e,t){1&e&&(Ro(0,\"span\"),tc(1,FO),Ho())}OO=$localize`:␟1ee7e26019fd1e347d1e23443cf6895a02d62d9c␟8226028651876528843: Match filter if URL term does not match. `,IO=$localize`:␟421759c8d438a7e13844a18b48945cf1cf425769␟7389317586710764363: Optional parameters `,PO=$localize`:␟80de392929f7cade444426837fc6a322091e8143␟6200388742841208230: Match filter if article is not part of the selected feeds/tag. `,AO=$localize`:␟52c9a103b812f258bcddc3d90a6e3f46871d25fe␟3768927257183755959:Save`,RO=$localize`:␟f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8␟7819314041543176992:Close`,HO=$localize`:␟fc9c1cf53b31d0f5bd0a8e28b56b83797a536101␟1576866399027630699: A filter must match at least a URL or title `,jO=$localize`:␟7b00e7c2dacd433e78459995668de3ae88faed6f␟1943233524922375568:Limit to feeds`,FO=$localize`:␟48568468ed7a42b94708b89595e8e0ba4c5c4880␟7921030750033180197:Limit to tag`;const WO=[\"placeholder\",$localize`:␟7b928f1d459648a4733d54d7fb0c7141ba6955af␟1246086532983525846:Feeds`];function UO(e,t){if(1&e&&(Ro(0,\"mat-option\",12),Sa(1),Ho()),2&e){const e=t.$implicit;Po(\"value\",e.id),ys(1),xa(\" \",e.title,\" \")}}function $O(e,t){if(1&e&&(Ro(0,\"mat-form-field\"),Ro(1,\"mat-select\",10),nc(2,WO),Do(3,UO,2,2,\"mat-option\",11),Ho(),Ho()),2&e){const e=Jo();ys(3),Po(\"ngForOf\",e.feeds)}}const BO=[\"placeholder\",$localize`:␟337ca2e5eeea28eaca91e8511eb5eaafdb385ce6␟1825829511397926879:Tag`];function qO(e,t){if(1&e&&(Ro(0,\"mat-option\",12),Sa(1),Ho()),2&e){const e=t.$implicit;Po(\"value\",e.id),ys(1),xa(\" \",e.value,\" \")}}function GO(e,t){if(1&e&&(Ro(0,\"mat-form-field\"),Ro(1,\"mat-select\",13),nc(2,BO),Do(3,qO,2,2,\"mat-option\",11),Ho(),Ho()),2&e){const e=Jo();ys(3),Po(\"ngForOf\",e.tags)}}let JO=(()=>{class e{constructor(e,t,n,i){this.userService=e,this.feedService=t,this.tagService=n,this.dialog=i,this.filters=new Array}ngOnInit(){this.feedService.getFeeds().pipe(dD(this.tagService.getTags(),this.userService.getCurrentUser(),(e,t,n)=>[e,t,n])).subscribe(e=>{this.feeds=e[0],this.tags=e[1],this.filters=e[2].profileData.filters||[]},e=>console.log(e))}addFilter(){this.dialog.open(KO,{width:\"350px\",data:{feeds:this.feeds,tags:this.tags}}).afterClosed().subscribe(e=>this.ngOnInit())}feedsLabel(e){let t=this.feeds.filter(t=>-1!=e.indexOf(t.id)).map(e=>e.title);return t.length?t.join(\", \"):`${e}`}tagLabel(e){let t=this.tags.filter(t=>t.id==e).map(e=>e.value);return t.length?t[0]:`${e}`}deleteFilter(e,t){this.userService.getCurrentUser().pipe(V(e=>{let n=e.profileData||new Map,i=n.filters||[],s=i.filter(e=>e.urlTerm!=t.urlTerm||e.inverseURL!=t.inverseURL||e.titleTerm!=t.titleTerm||e.inverseTitle!=t.inverseTitle||e.tagID!=t.tagID||e.feedIDs!=t.feedIDs||e.inverseFeeds!=t.inverseFeeds);return s.length==i.length?xu(!0):(n.filters=s,this.userService.setUserSetting(\"profile\",JSON.stringify(n)))})).subscribe(t=>{if(t){let t=e.target.parentNode;for(;(t=t.parentElement)&&!t.classList.contains(\"filter\"););t.parentNode.removeChild(t)}},e=>console.log(e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(GY),Eo(DD),Eo(YD),Eo(rw))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-filters\"]],decls:7,vars:2,consts:[[1,\"title\"],[4,\"ngIf\"],[\"class\",\"filter\",4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[1,\"filter\"],[1,\"info\"],[\"class\",\"url-and-title\",4,\"ngIf\"],[\"class\",\"match-tag\",4,\"ngIf\"],[\"class\",\"match-feeds\",4,\"ngIf\"],[\"class\",\"tag\",4,\"ngIf\"],[\"class\",\"feeds\",4,\"ngIf\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"],[1,\"term\"],[1,\"match-url\"],[1,\"url-and-title\"],[1,\"match-title\"],[1,\"match-tag\"],[1,\"match-feeds\"],[1,\"tag\"],[1,\"feeds\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,eO),Ho(),Do(2,pO,2,0,\"p\",1),Do(3,TO,14,9,\"div\",2),Ro(4,\"div\",3),Ro(5,\"button\",4),Uo(\"click\",(function(){return t.addFilter()})),tc(6,tO),Ho(),Ho()),2&e&&(ys(2),Po(\"ngIf\",0==t.filters.length),ys(1),Po(\"ngForOf\",t.filters))},directives:[mu,uu,Gy,Cw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".filter[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.filter[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{flex:1 0 0}.filter[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{padding-left:4px;padding-right:4px}.filter[_ngcontent-%COMP%] .feeds[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .tag[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .term[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;font-weight:700}.filter[_ngcontent-%COMP%] .url-and-title[_ngcontent-%COMP%]{font-style:italic}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}form[_ngcontent-%COMP%]{display:flex;flex-direction:column;margin-bottom:20px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{flex:1 0 auto}form[_ngcontent-%COMP%] mat-slide-toggle[_ngcontent-%COMP%]{align-self:center;flex:1 0 auto}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{font-size:14px}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%] .mat-checkbox-layout{white-space:normal}form[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{border-bottom:1px solid #ddd;margin-top:12px;margin-bottom:24px;font-size:13px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{width:100%}\"]}),e})(),KO=(()=>{class e{constructor(e,t,n,i,s){this.dialogRef=e,this.userService=t,this.tagService=n,this.data=i,this.form=s.group({urlTerm:[\"\"],titleTerm:[\"\"],inverseURL:[!1],inverseTitle:[!1],useFeeds:[!0],feeds:[[]],tag:[],inverseFeeds:[!1]},{validator:e=>e.controls.urlTerm.value||e.controls.titleTerm.value?null:{nomatch:!0}}),this.feeds=i.feeds,this.tags=i.tags}save(){if(!this.form.valid)return;let e=this.form.value;this.userService.getCurrentUser().pipe(V(t=>{let n,i={urlTerm:e.urlTerm,inverseURL:e.inverseURL,titleTerm:e.titleTerm,inverseTitle:e.inverseTitle,inverseFeeds:e.inverseFeeds};return e.useFeeds?e.feeds&&e.feeds.length>0&&(i.feedIDs=e.feeds):e.tag&&(i.tagID=e.tag),n=i.tagID>0?this.tagService.getFeedIDs({id:i.tagID}).pipe(H(e=>(i.feedIDs=e,i))):xu(i),n.pipe(V(e=>{let n=t.profileData||new Map,i=n.filters||[];return i.push(e),n.filters=i,this.userService.setUserSetting(\"profile\",JSON.stringify(n))}))})).subscribe(e=>this.close(),e=>console.log(e))}close(){this.dialogRef.close()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ew),Eo(GY),Eo(YD),Eo(tw),Eo(Um))},e.\\u0275cmp=yt({type:e,selectors:[[\"new-filter-dialog\"]],decls:32,vars:6,consts:[[\"novalidate\",\"\",\"autocomplete\",\"off\",3,\"formGroup\",\"ngSubmit\"],[\"matInput\",\"\",\"formControlName\",\"titleTerm\",6,\"placeholder\"],[\"formControlName\",\"inverseTitle\"],[\"matInput\",\"\",\"formControlName\",\"urlTerm\",6,\"placeholder\"],[\"formControlName\",\"inverseURL\"],[4,\"ngIf\"],[\"formControlName\",\"useFeeds\"],[\"formControlName\",\"inverseFeeds\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"multiple\",\"\",\"formControlName\",\"feeds\",6,\"placeholder\"],[3,\"value\",4,\"ngFor\",\"ngForOf\"],[3,\"value\"],[\"formControlName\",\"tag\",6,\"placeholder\"]],template:function(e,t){1&e&&(Ro(0,\"div\"),Ro(1,\"form\",0),Uo(\"ngSubmit\",(function(){return t.save()})),Ro(2,\"p\"),tc(3,mO),Ho(),Ro(4,\"mat-form-field\"),Ro(5,\"input\",1),nc(6,DO),Ho(),Ho(),jo(7,\"br\"),Ro(8,\"mat-checkbox\",2),tc(9,YO),Ho(),Ro(10,\"mat-form-field\"),Ro(11,\"input\",3),nc(12,EO),Ho(),Ho(),jo(13,\"br\"),Ro(14,\"mat-checkbox\",4),tc(15,OO),Ho(),Do(16,NO,2,0,\"mat-error\",5),jo(17,\"br\"),Ro(18,\"p\"),tc(19,IO),Ho(),Ro(20,\"mat-slide-toggle\",6),Do(21,zO,2,0,\"span\",5),Do(22,VO,2,0,\"span\",5),Ho(),Do(23,$O,4,1,\"mat-form-field\",5),Do(24,GO,4,1,\"mat-form-field\",5),Ro(25,\"mat-checkbox\",7),tc(26,PO),Ho(),Ho(),Ho(),Ro(27,\"div\",8),Ro(28,\"button\",9),Uo(\"click\",(function(){return t.save()})),tc(29,AO),Ho(),Ro(30,\"button\",9),Uo(\"click\",(function(){return t.close()})),tc(31,RO),Ho(),Ho()),2&e&&(ys(1),Po(\"formGroup\",t.form),ys(15),Po(\"ngIf\",t.form.hasError(\"nomatch\")),ys(5),Po(\"ngIf\",t.form.value.useFeeds),ys(1),Po(\"ngIf\",!t.form.value.useFeeds),ys(1),Po(\"ngIf\",t.form.value.useFeeds),ys(1),Po(\"ngIf\",!t.form.value.useFeeds))},directives:[Tm,Sh,Im,dM,gM,_h,kh,Nm,bb,mu,Zk,Gy,Kw,_k,uu,Fy],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".filter[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.filter[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{flex:1 0 0}.filter[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{padding-left:4px;padding-right:4px}.filter[_ngcontent-%COMP%] .feeds[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .tag[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .term[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;font-weight:700}.filter[_ngcontent-%COMP%] .url-and-title[_ngcontent-%COMP%]{font-style:italic}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}form[_ngcontent-%COMP%]{display:flex;flex-direction:column;margin-bottom:20px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{flex:1 0 auto}form[_ngcontent-%COMP%] mat-slide-toggle[_ngcontent-%COMP%]{align-self:center;flex:1 0 auto}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{font-size:14px}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%] .mat-checkbox-layout{white-space:normal}form[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{border-bottom:1px solid #ddd;margin-top:12px;margin-bottom:24px;font-size:13px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{width:100%}\"]}),e})();var ZO;function QO(e,t){if(1&e){const e=zo();Ro(0,\"div\",5),Ro(1,\"mat-slide-toggle\",6,7),Uo(\"change\",(function(){en(e);const n=t.$implicit,i=Yo(2);return Jo(2).toggleService(n[0].id,i.checked)})),Sa(3),Ho(),Ho()}if(2&e){const e=t.$implicit;ys(1),Po(\"checked\",e[1]),ys(2),La(e[0].description)}}function XO(e,t){if(1&e&&(Ro(0,\"mat-card\"),Ro(1,\"mat-card-header\"),Ro(2,\"mat-card-title\",3),Ro(3,\"h6\"),Sa(4),Ho(),Ho(),Ho(),Ro(5,\"mat-card-content\"),Do(6,QO,4,2,\"div\",4),Ho(),Ho()),2&e){const e=t.$implicit;ys(4),xa(\" \",e[0][0].category,\" \"),ys(2),Po(\"ngForOf\",e)}}ZO=$localize`:␟7240bf47e6acc8685c4ebfc74ce0d5b4db6bde4f␟5231214581506259059:Share Services`;let eI=(()=>{class e{constructor(e){this.sharingService=e}ngOnInit(){this.services=this.sharingService.groupedList()}toggleService(e,t){this.sharingService.toggle(e,t)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(uD))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-share-services\"]],decls:4,vars:1,consts:[[1,\"title\"],[1,\"cards-container\"],[4,\"ngFor\",\"ngForOf\"],[1,\"col\",\"title\"],[\"class\",\"service\",4,\"ngFor\",\"ngForOf\"],[1,\"service\"],[3,\"checked\",\"change\"],[\"toggle\",\"\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,ZO),Ho(),Ro(2,\"div\",1),Do(3,XO,7,2,\"mat-card\",2),Ho()),2&e&&(ys(3),Po(\"ngForOf\",t.services))},directives:[uu,ob,ab,nb,tb,Zk],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".cards-container[_ngcontent-%COMP%]{display:flex;flex-direction:row;flex-wrap:wrap}mat-card[_ngcontent-%COMP%]{flex:1 0 0;margin:8px;min-width:250px}.service[_ngcontent-%COMP%]{margin-bottom:16px}\"]}),e})();var tI,nI,iI,sI,rI;function oI(e,t){if(1&e&&(Ro(0,\"p\"),tc(1,iI),Ho()),2&e){const e=Jo();ys(1),rc(e.current.login),oc(1)}}function aI(e,t){if(1&e){const e=zo();Ro(0,\"div\",5),Ro(1,\"mat-checkbox\",6,7),Uo(\"change\",(function(){en(e);const n=t.$implicit,i=Yo(2);return Jo(2).toggleActive(n.login,i.checked)}))(\"ngModelChange\",(function(n){return en(e),t.$implicit.active=n})),Sa(3),Ho(),Ro(4,\"button\",8),Uo(\"click\",(function(n){en(e);const i=t.$implicit;return Jo(2).deleteUser(n,i.login)})),Ro(5,\"mat-icon\"),Sa(6,\"delete\"),Ho(),Ho(),Ho()}if(2&e){const e=t.$implicit;ys(1),Po(\"ngModel\",e.active),ys(2),La(e.login)}}function lI(e,t){if(1&e&&(Ro(0,\"div\"),Ro(1,\"h6\"),tc(2,sI),Ho(),Do(3,aI,7,2,\"div\",4),Ho()),2&e){const e=Jo();ys(3),Po(\"ngForOf\",e.users)}}tI=$localize`:␟cb593cb234b63428439631044bdf77fc3452357c␟2108091748797172929:Manage Users`,nI=$localize`:␟f8c7e16da78e5daf06335e60dd27f03ec30530f4␟5918723526444903137:Add user`,iI=$localize`:␟1df08418100ac5e70836b8adf5fa12d4c1b4b0dd␟5195095583184627775: Current user: ${\"\\ufffd0\\ufffd\"}:INTERPOLATION:\n`,sI=$localize`:␟75bff245ba90b410bd49da2788c55f572ce7f784␟6033168733730940341:List of users:`,rI=$localize`:␟fab6f6aad7a682400356ad9ba30f1c25e80c8930␟4425649962450500073:Add a new user`;const cI=[\"placeholder\",$localize`:␟024886ca34a6f309e3e51c2ed849320592c3faaa␟5312727456282218392:User name`],dI=[\"placeholder\",$localize`:␟c32ef07f8803a223a83ed17024b38e8d82292407␟1431416938026210429:Password`];var uI,hI,mI;function pI(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,hI),Ho())}function fI(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,mI),Ho())}uI=$localize`:␟52c9a103b812f258bcddc3d90a6e3f46871d25fe␟3768927257183755959:Save`,hI=$localize`:␟81300fcfd7313522c85ffe86cc04a5c19278bf12␟2191339029246291489: Empty user name `,mI=$localize`:␟2985844c6198518d1b99c84e29e1c8795754cf8b␟4960000650285755818: Empty password `;const _I=function(){return[\"login\"]},gI=function(){return[\"password\"]};let yI=(()=>{class e{constructor(e,t){this.userService=e,this.dialog=t,this.users=new Array,this.refresher=new L}ngOnInit(){this.refresher.pipe(Rf(null),Wb(e=>this.userService.list()),dD(this.userService.getCurrentUser(),(e,t)=>e.filter(e=>e.login!=t.login))).subscribe(e=>this.users=e,e=>console.log(e)),this.userService.getCurrentUser().subscribe(e=>this.current=e,e=>console.log(e))}toggleActive(e,t){this.userService.toggleActive(e,t).subscribe(e=>{},e=>console.log(e))}deleteUser(e,t){confirm(\"Are you sure you want to delete user \"+t)&&this.userService.deleteUser(t).subscribe(t=>{if(t){let t=e.target.parentNode;for(;(t=t.parentElement)&&!t.classList.contains(\"user\"););t.parentNode.removeChild(t)}},e=>console.log(e))}newUser(){this.dialog.open(bI,{width:\"250px\"}).afterClosed().subscribe(e=>this.refresher.next(null))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(GY),Eo(rw))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-admin\"]],decls:7,vars:2,consts:[[1,\"title\"],[4,\"ngIf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"class\",\"user\",4,\"ngFor\",\"ngForOf\"],[1,\"user\"],[3,\"ngModel\",\"change\",\"ngModelChange\"],[\"check\",\"\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,tI),Ho(),Do(2,oI,2,1,\"p\",1),Do(3,lI,4,1,\"div\",1),Ro(4,\"div\",2),Ro(5,\"button\",3),Uo(\"click\",(function(){return t.newUser()})),tc(6,nI),Ho(),Ho()),2&e&&(ys(2),Po(\"ngIf\",t.current),ys(1),Po(\"ngIf\",t.users.length))},directives:[mu,Gy,uu,bb,kh,Cm,Cw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".user[_ngcontent-%COMP%]{display:flex;align-items:center;border-bottom:1px solid #ccc;padding-bottom:4px;margin-bottom:4px}.user[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{flex:1 0 0}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),e})(),bI=(()=>{class e{constructor(e,t,n){this.dialogRef=e,this.userService=t,this.form=n.group({login:[\"\",Dh.required],password:[\"\",Dh.required]})}save(){if(!this.form.valid)return;let e=this.form.value;this.userService.addUser(e.login,e.password).subscribe(e=>{e&&this.close()},e=>console.log(e))}close(){this.dialogRef.close()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ew),Eo(GY),Eo(Um))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:16,vars:6,consts:[[1,\"title\"],[\"novalidate\",\"\",\"autocomplete\",\"off\",3,\"formGroup\",\"ngSubmit\"],[\"matInput\",\"\",\"formControlName\",\"login\",\"required\",\"\",6,\"placeholder\"],[4,\"ngIf\"],[\"matInput\",\"\",\"type\",\"password\",\"formControlName\",\"password\",\"required\",\"\",6,\"placeholder\"],[1,\"footer\"],[\"mat-raised-button\",\"\",\"type\",\"submit\",3,\"disabled\"]],template:function(e,t){1&e&&(Ro(0,\"h6\",0),tc(1,rI),Ho(),Ro(2,\"form\",1),Uo(\"ngSubmit\",(function(){return t.save()})),Ro(3,\"mat-form-field\"),Ro(4,\"input\",2),nc(5,cI),Ho(),Do(6,pI,2,0,\"mat-error\",3),Ho(),jo(7,\"br\"),Ro(8,\"mat-form-field\"),Ro(9,\"input\",4),nc(10,dI),Ho(),Do(11,fI,2,0,\"mat-error\",3),Ho(),jo(12,\"br\"),Ro(13,\"div\",5),Ro(14,\"button\",6),tc(15,uI),Ho(),Ho(),Ho()),2&e&&(ys(2),Po(\"formGroup\",t.form),ys(4),Po(\"ngIf\",t.form.hasError(\"required\",gc(4,_I))),ys(5),Po(\"ngIf\",t.form.hasError(\"required\",gc(5,gI))),ys(3),Po(\"disabled\",t.form.pristine))},directives:[Tm,Sh,Im,dM,gM,_h,kh,Nm,Vm,mu,Gy,Kw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".user[_ngcontent-%COMP%]{display:flex;align-items:center;border-bottom:1px solid #ccc;padding-bottom:4px;margin-bottom:4px}.user[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{flex:1 0 0}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),e})();var vI,wI,MI,kI,SI,LI,xI,CI,TI;vI=$localize`:␟2efe5a11c535986f60fd32bb171de59c85ec357d␟6537591722407885569: Settings\n`,wI=$localize`:␟3d53f64033c4b76fdc1076ba15955d913209866c␟6439365426343089851:General`,MI=$localize`:␟b6e9d3a76584feec84c2204f11301598fb90d7ef␟6372201297165580832:Add Feed`,kI=$localize`:␟446bc7942ed7cd24d6b84079bb82bd7f1d4d280b␟8187273895031232465:Manage Feeds`,SI=$localize`:␟1298c1d2bbbb7415f5494e800f6775fdb70f4df6␟4163272119298020373:Filters`,LI=$localize`:␟7240bf47e6acc8685c4ebfc74ce0d5b4db6bde4f␟5231214581506259059:Share Services`,xI=$localize`:␟7b928f1d459648a4733d54d7fb0c7141ba6955af␟1246086532983525846:Feeds`,CI=$localize`:␟bb694b49d408265c91c62799c2b3a7e3151c824d␟3797778920049399855:Logout`,TI=$localize`:␟b7648e7aced164498aa843b5c4e8f2f1c36a7919␟7844706011418789951:Administration`;const DI=function(){return[\"admin\"]};function YI(e,t){1&e&&(Ro(0,\"a\",2),tc(1,TI),Ho()),2&e&&Po(\"routerLink\",gc(1,DI))}const EI=function(){return[\"general\"]},OI=function(){return[\"discovery\"]},II=function(){return[\"management\"]},PI=function(){return[\"filters\"]},AI=function(){return[\"share-services\"]};var RI;RI=$localize`:␟121cc5391cd2a5115bc2b3160379ee5b36cd7716␟4930506384627295710:Settings`;const HI=kT.forRoot([{path:\"\",canActivate:[rD],children:[{path:\"\",component:xD,children:[{path:\"feed\",children:[{path:\"\",children:[{path:\"\",data:{primary:\"user\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\"search/:query\",data:{primary:\"search\",secondary:\"user\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\"favorite\",data:{primary:\"favorite\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\"popular/tag/:id\",data:{primary:\"popular\",secondary:\"tag\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\"popular/:id\",data:{primary:\"popular\",secondary:\"feed\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\"popular\",data:{primary:\"popular\",secondary:\"user\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\"tag/:id\",data:{primary:\"tag\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\"tag/:id/search/:query\",data:{primary:\"search\",secondary:\"tag\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\":id\",data:{primary:\"feed\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]},{path:\":id/search/:query\",data:{primary:\"search\",secondary:\"feed\"},children:[{path:\"\",component:JD},{path:\"article/:articleID\",component:cY}]}]},{path:\"\",component:kY,outlet:\"sidebar\"},{path:\"\",component:BY,outlet:\"toolbar\"}]},{path:\"settings\",children:[{path:\"\",component:qY,children:[{path:\"general\",component:uE},{path:\"discovery\",component:WE},{path:\"management\",component:QE},{path:\"filters\",component:JO},{path:\"share-services\",component:eI},{path:\"admin\",component:yI},{path:\"\",redirectTo:\"general\",pathMatch:\"full\"}]},{path:\"\",component:(()=>{class e{constructor(e){this.userService=e,this.subscriptions=new Array}ngOnInit(){this.subscriptions.push(this.userService.getCurrentUser().pipe(H(e=>e.admin)).subscribe(e=>this.admin=e,e=>console.log(e)))}ngOnDestroy(){for(let e of this.subscriptions)e.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(GY))},e.\\u0275cmp=yt({type:e,selectors:[[\"side-bar\"]],decls:19,vars:11,consts:[[\"color\",\"primary\"],[1,\"content\"],[\"mat-button\",\"\",3,\"routerLink\"],[\"mat-button\",\"\",3,\"routerLink\",4,\"ngIf\"],[\"mat-button\",\"\",\"routerLink\",\"/feed\"],[\"mat-button\",\"\",\"routerLink\",\"/login\"]],template:function(e,t){1&e&&(Ro(0,\"mat-toolbar\",0),tc(1,vI),Ho(),Ro(2,\"div\",1),Ro(3,\"a\",2),tc(4,wI),Ho(),Ro(5,\"a\",2),tc(6,MI),Ho(),Ro(7,\"a\",2),tc(8,kI),Ho(),Ro(9,\"a\",2),tc(10,SI),Ho(),Ro(11,\"a\",2),tc(12,LI),Ho(),Do(13,YI,2,2,\"a\",3),jo(14,\"hr\"),Ro(15,\"a\",4),tc(16,xI),Ho(),Ro(17,\"a\",5),tc(18,CI),Ho(),Ho()),2&e&&(ys(3),Po(\"routerLink\",gc(6,EI)),ys(2),Po(\"routerLink\",gc(7,OI)),ys(2),Po(\"routerLink\",gc(8,II)),ys(2),Po(\"routerLink\",gc(9,PI)),ys(2),Po(\"routerLink\",gc(10,AI)),ys(2),Po(\"ngIf\",t.admin))},directives:[dS,Jy,cT,mu],styles:[\".content[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{margin-bottom:4px}.content[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex;font-size:16px}.items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:13px}.category[_ngcontent-%COMP%], .items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex}.category[_ngcontent-%COMP%] > .expander[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;min-width:24px;flex-shrink:1}.category[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{flex-grow:1;text-align:start}.category[_ngcontent-%COMP%] > .items[_ngcontent-%COMP%]{flex:0 1 100%}.content[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{margin:0}.favicon[_ngcontent-%COMP%]{padding-right:4px}\"]}),e})(),outlet:\"sidebar\"},{path:\"\",component:(()=>{class e{constructor(){}ngOnInit(){}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:2,vars:0,template:function(e,t){1&e&&(Ro(0,\"span\"),tc(1,RI),Ho())},styles:[\"[_nghost-%COMP%]{display:flex;align-items:center}.spacer[_ngcontent-%COMP%], [_nghost-%COMP%]{flex:1 1 auto}.search[_ngcontent-%COMP%]{min-height:0;border:none;background:transparent} label{margin-bottom:0}\"]}),e})(),outlet:\"toolbar\"}]},{path:\"\",redirectTo:\"feed\",pathMatch:\"full\"}]}]},{path:\"login\",component:iD}],{enableTracing:!1});let jI=(()=>{class e{constructor(){this.title=\"app\"}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"app-root\"]],decls:2,vars:0,consts:[[1,\"page\"]],template:function(e,t){1&e&&(Ro(0,\"div\",0),jo(1,\"router-outlet\"),Ho())},directives:[mT],styles:[\"\"]}),e})(),FI=(()=>{class e{}return e.\\u0275mod=Mt({type:e,bootstrap:[jI]}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[{provide:bf,useClass:TL}],imports:[[If,oy,lh,HI,Mu,$m,Bm,Ky,lb,wb,ow,Tw,yM,WM,ZM,gk,sS,Fk,Xk,uS,gL,xL,kf]]}),e})();(function(){if(ki)throw new Error(\"Cannot enable prod mode after platform setup.\");Mi=!1})(),Ef().bootstrapModule(FI)},zavE:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-SG\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},zn8P:function(e,t){function n(e){return Promise.resolve().then((function(){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}))}n.keys=function(){return[]},n.resolve=n,e.exports=n,n.id=\"zn8P\"},zx6S:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekunda\",\"sekunde\",\"sekundi\"],m:[\"jedan minut\",\"jedne minute\"],mm:[\"minut\",\"minute\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mesec\",\"meseca\",\"meseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var s=t.words[i];return 1===i.length?n?s[0]:s[1]:e+\" \"+t.correctGrammaticalCase(e,s)}};e.defineLocale(\"sr\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljak_utorak_sreda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sre._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedelju] [u] LT\";case 3:return\"[u] [sredu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010de u] LT\",lastWeek:function(){return[\"[pro\\u0161le] [nedelje] [u] LT\",\"[pro\\u0161log] [ponedeljka] [u] LT\",\"[pro\\u0161log] [utorka] [u] LT\",\"[pro\\u0161le] [srede] [u] LT\",\"[pro\\u0161log] [\\u010detvrtka] [u] LT\",\"[pro\\u0161log] [petka] [u] LT\",\"[pro\\u0161le] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pre %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))}},[[0,0]]]);"); err != nil { - return nil, errors.Wrap(err, fmt.Sprintf("packing file rf-ng/ui/en/main-es2015.de4780925792b25f4c29.js")) + if err := fs.Add("rf-ng/ui/en/main-es2015.12ca351b7933925b99f6.js", 1176171, os.FileMode(420), time.Unix(1587937607, 0), "(window.webpackJsonp=window.webpackJsonp||[]).push([[1],{\"+s0g\":function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),n=\"jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),i=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],s=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\\.?|feb\\.?|mrt\\.?|apr\\.?|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i;e.defineLocale(\"nl\",{months:\"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\\.?|feb\\.?|mrt\\.?|apr\\.?|mei|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag\".split(\"_\"),weekdaysShort:\"zo._ma._di._wo._do._vr._za.\".split(\"_\"),weekdaysMin:\"zo_ma_di_wo_do_vr_za\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[vandaag om] LT\",nextDay:\"[morgen om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[gisteren om] LT\",lastWeek:\"[afgelopen] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"over %s\",past:\"%s geleden\",s:\"een paar seconden\",ss:\"%d seconden\",m:\"\\xe9\\xe9n minuut\",mm:\"%d minuten\",h:\"\\xe9\\xe9n uur\",hh:\"%d uur\",d:\"\\xe9\\xe9n dag\",dd:\"%d dagen\",M:\"\\xe9\\xe9n maand\",MM:\"%d maanden\",y:\"\\xe9\\xe9n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"//9w\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"se\",{months:\"o\\u0111\\u0111ajagem\\xe1nnu_guovvam\\xe1nnu_njuk\\u010dam\\xe1nnu_cuo\\u014bom\\xe1nnu_miessem\\xe1nnu_geassem\\xe1nnu_suoidnem\\xe1nnu_borgem\\xe1nnu_\\u010dak\\u010dam\\xe1nnu_golggotm\\xe1nnu_sk\\xe1bmam\\xe1nnu_juovlam\\xe1nnu\".split(\"_\"),monthsShort:\"o\\u0111\\u0111j_guov_njuk_cuo_mies_geas_suoi_borg_\\u010dak\\u010d_golg_sk\\xe1b_juov\".split(\"_\"),weekdays:\"sotnabeaivi_vuoss\\xe1rga_ma\\u014b\\u014beb\\xe1rga_gaskavahkku_duorastat_bearjadat_l\\xe1vvardat\".split(\"_\"),weekdaysShort:\"sotn_vuos_ma\\u014b_gask_duor_bear_l\\xe1v\".split(\"_\"),weekdaysMin:\"s_v_m_g_d_b_L\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"MMMM D. [b.] YYYY\",LLL:\"MMMM D. [b.] YYYY [ti.] HH:mm\",LLLL:\"dddd, MMMM D. [b.] YYYY [ti.] HH:mm\"},calendar:{sameDay:\"[otne ti] LT\",nextDay:\"[ihttin ti] LT\",nextWeek:\"dddd [ti] LT\",lastDay:\"[ikte ti] LT\",lastWeek:\"[ovddit] dddd [ti] LT\",sameElse:\"L\"},relativeTime:{future:\"%s gea\\u017ees\",past:\"ma\\u014bit %s\",s:\"moadde sekunddat\",ss:\"%d sekunddat\",m:\"okta minuhta\",mm:\"%d minuhtat\",h:\"okta diimmu\",hh:\"%d diimmut\",d:\"okta beaivi\",dd:\"%d beaivvit\",M:\"okta m\\xe1nnu\",MM:\"%d m\\xe1nut\",y:\"okta jahki\",yy:\"%d jagit\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"/X5v\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"x-pseudo\",{months:\"J~\\xe1\\xf1\\xfa\\xe1~r\\xfd_F~\\xe9br\\xfa~\\xe1r\\xfd_~M\\xe1rc~h_\\xc1p~r\\xedl_~M\\xe1\\xfd_~J\\xfa\\xf1\\xe9~_J\\xfal~\\xfd_\\xc1\\xfa~g\\xfast~_S\\xe9p~t\\xe9mb~\\xe9r_\\xd3~ct\\xf3b~\\xe9r_\\xd1~\\xf3v\\xe9m~b\\xe9r_~D\\xe9c\\xe9~mb\\xe9r\".split(\"_\"),monthsShort:\"J~\\xe1\\xf1_~F\\xe9b_~M\\xe1r_~\\xc1pr_~M\\xe1\\xfd_~J\\xfa\\xf1_~J\\xfal_~\\xc1\\xfag_~S\\xe9p_~\\xd3ct_~\\xd1\\xf3v_~D\\xe9c\".split(\"_\"),monthsParseExact:!0,weekdays:\"S~\\xfa\\xf1d\\xe1~\\xfd_M\\xf3~\\xf1d\\xe1\\xfd~_T\\xfa\\xe9~sd\\xe1\\xfd~_W\\xe9d~\\xf1\\xe9sd~\\xe1\\xfd_T~h\\xfars~d\\xe1\\xfd_~Fr\\xedd~\\xe1\\xfd_S~\\xe1t\\xfar~d\\xe1\\xfd\".split(\"_\"),weekdaysShort:\"S~\\xfa\\xf1_~M\\xf3\\xf1_~T\\xfa\\xe9_~W\\xe9d_~Th\\xfa_~Fr\\xed_~S\\xe1t\".split(\"_\"),weekdaysMin:\"S~\\xfa_M\\xf3~_T\\xfa_~W\\xe9_T~h_Fr~_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[T~\\xf3d\\xe1~\\xfd \\xe1t] LT\",nextDay:\"[T~\\xf3m\\xf3~rr\\xf3~w \\xe1t] LT\",nextWeek:\"dddd [\\xe1t] LT\",lastDay:\"[\\xdd~\\xe9st~\\xe9rd\\xe1~\\xfd \\xe1t] LT\",lastWeek:\"[L~\\xe1st] dddd [\\xe1t] LT\",sameElse:\"L\"},relativeTime:{future:\"\\xed~\\xf1 %s\",past:\"%s \\xe1~g\\xf3\",s:\"\\xe1 ~f\\xe9w ~s\\xe9c\\xf3~\\xf1ds\",ss:\"%d s~\\xe9c\\xf3\\xf1~ds\",m:\"\\xe1 ~m\\xed\\xf1~\\xfat\\xe9\",mm:\"%d m~\\xed\\xf1\\xfa~t\\xe9s\",h:\"\\xe1~\\xf1 h\\xf3~\\xfar\",hh:\"%d h~\\xf3\\xfars\",d:\"\\xe1 ~d\\xe1\\xfd\",dd:\"%d d~\\xe1\\xfds\",M:\"\\xe1 ~m\\xf3\\xf1~th\",MM:\"%d m~\\xf3\\xf1t~hs\",y:\"\\xe1 ~\\xfd\\xe9\\xe1r\",yy:\"%d \\xfd~\\xe9\\xe1rs\"},dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},0:function(e,t,n){e.exports=n(\"zUnb\")},\"0mo+\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0f21\",2:\"\\u0f22\",3:\"\\u0f23\",4:\"\\u0f24\",5:\"\\u0f25\",6:\"\\u0f26\",7:\"\\u0f27\",8:\"\\u0f28\",9:\"\\u0f29\",0:\"\\u0f20\"},n={\"\\u0f21\":\"1\",\"\\u0f22\":\"2\",\"\\u0f23\":\"3\",\"\\u0f24\":\"4\",\"\\u0f25\":\"5\",\"\\u0f26\":\"6\",\"\\u0f27\":\"7\",\"\\u0f28\":\"8\",\"\\u0f29\":\"9\",\"\\u0f20\":\"0\"};e.defineLocale(\"bo\",{months:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f44\\u0f0b\\u0f54\\u0f7c_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f66\\u0f74\\u0f58\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f5e\\u0f72\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f63\\u0f94\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0fb2\\u0f74\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f62\\u0f92\\u0fb1\\u0f51\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f42\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54\".split(\"_\"),monthsShort:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f44\\u0f0b\\u0f54\\u0f7c_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f66\\u0f74\\u0f58\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f5e\\u0f72\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f63\\u0f94\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0fb2\\u0f74\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f62\\u0f92\\u0fb1\\u0f51\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f42\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54\".split(\"_\"),weekdays:\"\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),weekdaysShort:\"\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),weekdaysMin:\"\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0f51\\u0f72\\u0f0b\\u0f62\\u0f72\\u0f44] LT\",nextDay:\"[\\u0f66\\u0f44\\u0f0b\\u0f49\\u0f72\\u0f53] LT\",nextWeek:\"[\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f55\\u0fb2\\u0f42\\u0f0b\\u0f62\\u0f97\\u0f7a\\u0f66\\u0f0b\\u0f58], LT\",lastDay:\"[\\u0f41\\u0f0b\\u0f66\\u0f44] LT\",lastWeek:\"[\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f55\\u0fb2\\u0f42\\u0f0b\\u0f58\\u0f50\\u0f60\\u0f0b\\u0f58] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0f63\\u0f0b\",past:\"%s \\u0f66\\u0f94\\u0f53\\u0f0b\\u0f63\",s:\"\\u0f63\\u0f58\\u0f0b\\u0f66\\u0f44\",ss:\"%d \\u0f66\\u0f90\\u0f62\\u0f0b\\u0f46\\u0f0d\",m:\"\\u0f66\\u0f90\\u0f62\\u0f0b\\u0f58\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",mm:\"%d \\u0f66\\u0f90\\u0f62\\u0f0b\\u0f58\",h:\"\\u0f46\\u0f74\\u0f0b\\u0f5a\\u0f7c\\u0f51\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",hh:\"%d \\u0f46\\u0f74\\u0f0b\\u0f5a\\u0f7c\\u0f51\",d:\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",dd:\"%d \\u0f49\\u0f72\\u0f53\\u0f0b\",M:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",MM:\"%d \\u0f5f\\u0fb3\\u0f0b\\u0f56\",y:\"\\u0f63\\u0f7c\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",yy:\"%d \\u0f63\\u0f7c\"},preparse:function(e){return e.replace(/[\\u0f21\\u0f22\\u0f23\\u0f24\\u0f25\\u0f26\\u0f27\\u0f28\\u0f29\\u0f20]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c|\\u0f5e\\u0f7c\\u0f42\\u0f66\\u0f0b\\u0f40\\u0f66|\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44|\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42|\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\"===t&&e>=4||\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44\"===t&&e<5||\"\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\":e<10?\"\\u0f5e\\u0f7c\\u0f42\\u0f66\\u0f0b\\u0f40\\u0f66\":e<17?\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44\":e<20?\"\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42\":\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"0tRk\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt-br\",{months:\"Janeiro_Fevereiro_Mar\\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingo_Segunda-feira_Ter\\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\\xe1bado\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ter_Qua_Qui_Sex_S\\xe1b\".split(\"_\"),weekdaysMin:\"Do_2\\xaa_3\\xaa_4\\xaa_5\\xaa_6\\xaa_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY [\\xe0s] HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY [\\xe0s] HH:mm\"},calendar:{sameDay:\"[Hoje \\xe0s] LT\",nextDay:\"[Amanh\\xe3 \\xe0s] LT\",nextWeek:\"dddd [\\xe0s] LT\",lastDay:\"[Ontem \\xe0s] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[\\xdaltimo] dddd [\\xe0s] LT\":\"[\\xdaltima] dddd [\\xe0s] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"h\\xe1 %s\",s:\"poucos segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",M:\"um m\\xeas\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\"})}(n(\"wd/R\"))},\"1rYy\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"hy-am\",{months:{format:\"\\u0570\\u0578\\u0582\\u0576\\u057e\\u0561\\u0580\\u056b_\\u0583\\u0565\\u057f\\u0580\\u057e\\u0561\\u0580\\u056b_\\u0574\\u0561\\u0580\\u057f\\u056b_\\u0561\\u057a\\u0580\\u056b\\u056c\\u056b_\\u0574\\u0561\\u0575\\u056b\\u057d\\u056b_\\u0570\\u0578\\u0582\\u0576\\u056b\\u057d\\u056b_\\u0570\\u0578\\u0582\\u056c\\u056b\\u057d\\u056b_\\u0585\\u0563\\u0578\\u057d\\u057f\\u0578\\u057d\\u056b_\\u057d\\u0565\\u057a\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0570\\u0578\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0576\\u0578\\u0575\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0564\\u0565\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b\".split(\"_\"),standalone:\"\\u0570\\u0578\\u0582\\u0576\\u057e\\u0561\\u0580_\\u0583\\u0565\\u057f\\u0580\\u057e\\u0561\\u0580_\\u0574\\u0561\\u0580\\u057f_\\u0561\\u057a\\u0580\\u056b\\u056c_\\u0574\\u0561\\u0575\\u056b\\u057d_\\u0570\\u0578\\u0582\\u0576\\u056b\\u057d_\\u0570\\u0578\\u0582\\u056c\\u056b\\u057d_\\u0585\\u0563\\u0578\\u057d\\u057f\\u0578\\u057d_\\u057d\\u0565\\u057a\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0570\\u0578\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0576\\u0578\\u0575\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0564\\u0565\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\".split(\"_\")},monthsShort:\"\\u0570\\u0576\\u057e_\\u0583\\u057f\\u0580_\\u0574\\u0580\\u057f_\\u0561\\u057a\\u0580_\\u0574\\u0575\\u057d_\\u0570\\u0576\\u057d_\\u0570\\u056c\\u057d_\\u0585\\u0563\\u057d_\\u057d\\u057a\\u057f_\\u0570\\u056f\\u057f_\\u0576\\u0574\\u0562_\\u0564\\u056f\\u057f\".split(\"_\"),weekdays:\"\\u056f\\u056b\\u0580\\u0561\\u056f\\u056b_\\u0565\\u0580\\u056f\\u0578\\u0582\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0565\\u0580\\u0565\\u0584\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0579\\u0578\\u0580\\u0565\\u0584\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0570\\u056b\\u0576\\u0563\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0578\\u0582\\u0580\\u0562\\u0561\\u0569_\\u0577\\u0561\\u0562\\u0561\\u0569\".split(\"_\"),weekdaysShort:\"\\u056f\\u0580\\u056f_\\u0565\\u0580\\u056f_\\u0565\\u0580\\u0584_\\u0579\\u0580\\u0584_\\u0570\\u0576\\u0563_\\u0578\\u0582\\u0580\\u0562_\\u0577\\u0562\\u0569\".split(\"_\"),weekdaysMin:\"\\u056f\\u0580\\u056f_\\u0565\\u0580\\u056f_\\u0565\\u0580\\u0584_\\u0579\\u0580\\u0584_\\u0570\\u0576\\u0563_\\u0578\\u0582\\u0580\\u0562_\\u0577\\u0562\\u0569\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0569.\",LLL:\"D MMMM YYYY \\u0569., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0569., HH:mm\"},calendar:{sameDay:\"[\\u0561\\u0575\\u057d\\u0585\\u0580] LT\",nextDay:\"[\\u057e\\u0561\\u0572\\u0568] LT\",lastDay:\"[\\u0565\\u0580\\u0565\\u056f] LT\",nextWeek:function(){return\"dddd [\\u0585\\u0580\\u0568 \\u056a\\u0561\\u0574\\u0568] LT\"},lastWeek:function(){return\"[\\u0561\\u0576\\u0581\\u0561\\u056e] dddd [\\u0585\\u0580\\u0568 \\u056a\\u0561\\u0574\\u0568] LT\"},sameElse:\"L\"},relativeTime:{future:\"%s \\u0570\\u0565\\u057f\\u0578\",past:\"%s \\u0561\\u057c\\u0561\\u057b\",s:\"\\u0574\\u056b \\u0584\\u0561\\u0576\\u056b \\u057e\\u0561\\u0575\\u0580\\u056f\\u0575\\u0561\\u0576\",ss:\"%d \\u057e\\u0561\\u0575\\u0580\\u056f\\u0575\\u0561\\u0576\",m:\"\\u0580\\u0578\\u057a\\u0565\",mm:\"%d \\u0580\\u0578\\u057a\\u0565\",h:\"\\u056a\\u0561\\u0574\",hh:\"%d \\u056a\\u0561\\u0574\",d:\"\\u0585\\u0580\",dd:\"%d \\u0585\\u0580\",M:\"\\u0561\\u0574\\u056b\\u057d\",MM:\"%d \\u0561\\u0574\\u056b\\u057d\",y:\"\\u057f\\u0561\\u0580\\u056b\",yy:\"%d \\u057f\\u0561\\u0580\\u056b\"},meridiemParse:/\\u0563\\u056b\\u0577\\u0565\\u0580\\u057e\\u0561|\\u0561\\u057c\\u0561\\u057e\\u0578\\u057f\\u057e\\u0561|\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561|\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576/,isPM:function(e){return/^(\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561|\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576)$/.test(e)},meridiem:function(e){return e<4?\"\\u0563\\u056b\\u0577\\u0565\\u0580\\u057e\\u0561\":e<12?\"\\u0561\\u057c\\u0561\\u057e\\u0578\\u057f\\u057e\\u0561\":e<17?\"\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561\":\"\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576\"},dayOfMonthOrdinalParse:/\\d{1,2}|\\d{1,2}-(\\u056b\\u0576|\\u0580\\u0564)/,ordinal:function(e,t){switch(t){case\"DDD\":case\"w\":case\"W\":case\"DDDo\":return 1===e?e+\"-\\u056b\\u0576\":e+\"-\\u0580\\u0564\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"1xZ4\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ca\",{months:{standalone:\"gener_febrer_mar\\xe7_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre\".split(\"_\"),format:\"de gener_de febrer_de mar\\xe7_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre\".split(\"_\"),isFormat:/D[oD]?(\\s)+MMMM/},monthsShort:\"gen._febr._mar\\xe7_abr._maig_juny_jul._ag._set._oct._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte\".split(\"_\"),weekdaysShort:\"dg._dl._dt._dc._dj._dv._ds.\".split(\"_\"),weekdaysMin:\"dg_dl_dt_dc_dj_dv_ds\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [de] YYYY\",ll:\"D MMM YYYY\",LLL:\"D MMMM [de] YYYY [a les] H:mm\",lll:\"D MMM YYYY, H:mm\",LLLL:\"dddd D MMMM [de] YYYY [a les] H:mm\",llll:\"ddd D MMM YYYY, H:mm\"},calendar:{sameDay:function(){return\"[avui a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextDay:function(){return\"[dem\\xe0 a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextWeek:function(){return\"dddd [a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastDay:function(){return\"[ahir a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [passat a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"d'aqu\\xed %s\",past:\"fa %s\",s:\"uns segons\",ss:\"%d segons\",m:\"un minut\",mm:\"%d minuts\",h:\"una hora\",hh:\"%d hores\",d:\"un dia\",dd:\"%d dies\",M:\"un mes\",MM:\"%d mesos\",y:\"un any\",yy:\"%d anys\"},dayOfMonthOrdinalParse:/\\d{1,2}(r|n|t|\\xe8|a)/,ordinal:function(e,t){var n=1===e?\"r\":2===e?\"n\":3===e?\"r\":4===e?\"t\":\"\\xe8\";return\"w\"!==t&&\"W\"!==t||(n=\"a\"),e+n},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"2fjn\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ca\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}}})}(n(\"wd/R\"))},\"2ykv\":function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),n=\"jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),i=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],s=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\\.?|feb\\.?|mrt\\.?|apr\\.?|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i;e.defineLocale(\"nl-be\",{months:\"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\\.?|feb\\.?|mrt\\.?|apr\\.?|mei|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag\".split(\"_\"),weekdaysShort:\"zo._ma._di._wo._do._vr._za.\".split(\"_\"),weekdaysMin:\"zo_ma_di_wo_do_vr_za\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[vandaag om] LT\",nextDay:\"[morgen om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[gisteren om] LT\",lastWeek:\"[afgelopen] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"over %s\",past:\"%s geleden\",s:\"een paar seconden\",ss:\"%d seconden\",m:\"\\xe9\\xe9n minuut\",mm:\"%d minuten\",h:\"\\xe9\\xe9n uur\",hh:\"%d uur\",d:\"\\xe9\\xe9n dag\",dd:\"%d dagen\",M:\"\\xe9\\xe9n maand\",MM:\"%d maanden\",y:\"\\xe9\\xe9n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"3E1r\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};e.defineLocale(\"hi\",{months:\"\\u091c\\u0928\\u0935\\u0930\\u0940_\\u092b\\u093c\\u0930\\u0935\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u0948\\u0932_\\u092e\\u0908_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908_\\u0905\\u0917\\u0938\\u094d\\u0924_\\u0938\\u093f\\u0924\\u092e\\u094d\\u092c\\u0930_\\u0905\\u0915\\u094d\\u091f\\u0942\\u092c\\u0930_\\u0928\\u0935\\u092e\\u094d\\u092c\\u0930_\\u0926\\u093f\\u0938\\u092e\\u094d\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u0928._\\u092b\\u093c\\u0930._\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u0948._\\u092e\\u0908_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932._\\u0905\\u0917._\\u0938\\u093f\\u0924._\\u0905\\u0915\\u094d\\u091f\\u0942._\\u0928\\u0935._\\u0926\\u093f\\u0938.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0930\\u0935\\u093f\\u0935\\u093e\\u0930_\\u0938\\u094b\\u092e\\u0935\\u093e\\u0930_\\u092e\\u0902\\u0917\\u0932\\u0935\\u093e\\u0930_\\u092c\\u0941\\u0927\\u0935\\u093e\\u0930_\\u0917\\u0941\\u0930\\u0942\\u0935\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u0935\\u093e\\u0930_\\u0936\\u0928\\u093f\\u0935\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0930\\u0935\\u093f_\\u0938\\u094b\\u092e_\\u092e\\u0902\\u0917\\u0932_\\u092c\\u0941\\u0927_\\u0917\\u0941\\u0930\\u0942_\\u0936\\u0941\\u0915\\u094d\\u0930_\\u0936\\u0928\\u093f\".split(\"_\"),weekdaysMin:\"\\u0930_\\u0938\\u094b_\\u092e\\u0902_\\u092c\\u0941_\\u0917\\u0941_\\u0936\\u0941_\\u0936\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u092c\\u091c\\u0947\",LTS:\"A h:mm:ss \\u092c\\u091c\\u0947\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u092c\\u091c\\u0947\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u092c\\u091c\\u0947\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u0915\\u0932] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0915\\u0932] LT\",lastWeek:\"[\\u092a\\u093f\\u091b\\u0932\\u0947] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u092e\\u0947\\u0902\",past:\"%s \\u092a\\u0939\\u0932\\u0947\",s:\"\\u0915\\u0941\\u091b \\u0939\\u0940 \\u0915\\u094d\\u0937\\u0923\",ss:\"%d \\u0938\\u0947\\u0915\\u0902\\u0921\",m:\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u091f\",mm:\"%d \\u092e\\u093f\\u0928\\u091f\",h:\"\\u090f\\u0915 \\u0918\\u0902\\u091f\\u093e\",hh:\"%d \\u0918\\u0902\\u091f\\u0947\",d:\"\\u090f\\u0915 \\u0926\\u093f\\u0928\",dd:\"%d \\u0926\\u093f\\u0928\",M:\"\\u090f\\u0915 \\u092e\\u0939\\u0940\\u0928\\u0947\",MM:\"%d \\u092e\\u0939\\u0940\\u0928\\u0947\",y:\"\\u090f\\u0915 \\u0935\\u0930\\u094d\\u0937\",yy:\"%d \\u0935\\u0930\\u094d\\u0937\"},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924|\\u0938\\u0941\\u092c\\u0939|\\u0926\\u094b\\u092a\\u0939\\u0930|\\u0936\\u093e\\u092e/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\"===t?e<4?e:e+12:\"\\u0938\\u0941\\u092c\\u0939\"===t?e:\"\\u0926\\u094b\\u092a\\u0939\\u0930\"===t?e>=10?e:e+12:\"\\u0936\\u093e\\u092e\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0930\\u093e\\u0924\":e<10?\"\\u0938\\u0941\\u092c\\u0939\":e<17?\"\\u0926\\u094b\\u092a\\u0939\\u0930\":e<20?\"\\u0936\\u093e\\u092e\":\"\\u0930\\u093e\\u0924\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"4MV3\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0ae7\",2:\"\\u0ae8\",3:\"\\u0ae9\",4:\"\\u0aea\",5:\"\\u0aeb\",6:\"\\u0aec\",7:\"\\u0aed\",8:\"\\u0aee\",9:\"\\u0aef\",0:\"\\u0ae6\"},n={\"\\u0ae7\":\"1\",\"\\u0ae8\":\"2\",\"\\u0ae9\":\"3\",\"\\u0aea\":\"4\",\"\\u0aeb\":\"5\",\"\\u0aec\":\"6\",\"\\u0aed\":\"7\",\"\\u0aee\":\"8\",\"\\u0aef\":\"9\",\"\\u0ae6\":\"0\"};e.defineLocale(\"gu\",{months:\"\\u0a9c\\u0abe\\u0aa8\\u0acd\\u0aaf\\u0ac1\\u0a86\\u0ab0\\u0ac0_\\u0aab\\u0ac7\\u0aac\\u0acd\\u0ab0\\u0ac1\\u0a86\\u0ab0\\u0ac0_\\u0aae\\u0abe\\u0ab0\\u0acd\\u0a9a_\\u0a8f\\u0aaa\\u0acd\\u0ab0\\u0abf\\u0ab2_\\u0aae\\u0ac7_\\u0a9c\\u0ac2\\u0aa8_\\u0a9c\\u0ac1\\u0ab2\\u0abe\\u0a88_\\u0a91\\u0a97\\u0ab8\\u0acd\\u0a9f_\\u0ab8\\u0aaa\\u0acd\\u0a9f\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0_\\u0a91\\u0a95\\u0acd\\u0a9f\\u0acd\\u0aac\\u0ab0_\\u0aa8\\u0ab5\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0_\\u0aa1\\u0abf\\u0ab8\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0\".split(\"_\"),monthsShort:\"\\u0a9c\\u0abe\\u0aa8\\u0acd\\u0aaf\\u0ac1._\\u0aab\\u0ac7\\u0aac\\u0acd\\u0ab0\\u0ac1._\\u0aae\\u0abe\\u0ab0\\u0acd\\u0a9a_\\u0a8f\\u0aaa\\u0acd\\u0ab0\\u0abf._\\u0aae\\u0ac7_\\u0a9c\\u0ac2\\u0aa8_\\u0a9c\\u0ac1\\u0ab2\\u0abe._\\u0a91\\u0a97._\\u0ab8\\u0aaa\\u0acd\\u0a9f\\u0ac7._\\u0a91\\u0a95\\u0acd\\u0a9f\\u0acd._\\u0aa8\\u0ab5\\u0ac7._\\u0aa1\\u0abf\\u0ab8\\u0ac7.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0ab0\\u0ab5\\u0abf\\u0ab5\\u0abe\\u0ab0_\\u0ab8\\u0acb\\u0aae\\u0ab5\\u0abe\\u0ab0_\\u0aae\\u0a82\\u0a97\\u0ab3\\u0ab5\\u0abe\\u0ab0_\\u0aac\\u0ac1\\u0aa7\\u0acd\\u0ab5\\u0abe\\u0ab0_\\u0a97\\u0ac1\\u0ab0\\u0ac1\\u0ab5\\u0abe\\u0ab0_\\u0ab6\\u0ac1\\u0a95\\u0acd\\u0ab0\\u0ab5\\u0abe\\u0ab0_\\u0ab6\\u0aa8\\u0abf\\u0ab5\\u0abe\\u0ab0\".split(\"_\"),weekdaysShort:\"\\u0ab0\\u0ab5\\u0abf_\\u0ab8\\u0acb\\u0aae_\\u0aae\\u0a82\\u0a97\\u0ab3_\\u0aac\\u0ac1\\u0aa7\\u0acd_\\u0a97\\u0ac1\\u0ab0\\u0ac1_\\u0ab6\\u0ac1\\u0a95\\u0acd\\u0ab0_\\u0ab6\\u0aa8\\u0abf\".split(\"_\"),weekdaysMin:\"\\u0ab0_\\u0ab8\\u0acb_\\u0aae\\u0a82_\\u0aac\\u0ac1_\\u0a97\\u0ac1_\\u0ab6\\u0ac1_\\u0ab6\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",LTS:\"A h:mm:ss \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\"},calendar:{sameDay:\"[\\u0a86\\u0a9c] LT\",nextDay:\"[\\u0a95\\u0abe\\u0ab2\\u0ac7] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0a97\\u0a87\\u0a95\\u0abe\\u0ab2\\u0ac7] LT\",lastWeek:\"[\\u0aaa\\u0abe\\u0a9b\\u0ab2\\u0abe] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0aae\\u0abe\",past:\"%s \\u0aaa\\u0ac7\\u0ab9\\u0ab2\\u0abe\",s:\"\\u0a85\\u0aae\\u0ac1\\u0a95 \\u0aaa\\u0ab3\\u0acb\",ss:\"%d \\u0ab8\\u0ac7\\u0a95\\u0a82\\u0aa1\",m:\"\\u0a8f\\u0a95 \\u0aae\\u0abf\\u0aa8\\u0abf\\u0a9f\",mm:\"%d \\u0aae\\u0abf\\u0aa8\\u0abf\\u0a9f\",h:\"\\u0a8f\\u0a95 \\u0a95\\u0ab2\\u0abe\\u0a95\",hh:\"%d \\u0a95\\u0ab2\\u0abe\\u0a95\",d:\"\\u0a8f\\u0a95 \\u0aa6\\u0abf\\u0ab5\\u0ab8\",dd:\"%d \\u0aa6\\u0abf\\u0ab5\\u0ab8\",M:\"\\u0a8f\\u0a95 \\u0aae\\u0ab9\\u0abf\\u0aa8\\u0acb\",MM:\"%d \\u0aae\\u0ab9\\u0abf\\u0aa8\\u0acb\",y:\"\\u0a8f\\u0a95 \\u0ab5\\u0ab0\\u0acd\\u0ab7\",yy:\"%d \\u0ab5\\u0ab0\\u0acd\\u0ab7\"},preparse:function(e){return e.replace(/[\\u0ae7\\u0ae8\\u0ae9\\u0aea\\u0aeb\\u0aec\\u0aed\\u0aee\\u0aef\\u0ae6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0ab0\\u0abe\\u0aa4|\\u0aac\\u0aaa\\u0acb\\u0ab0|\\u0ab8\\u0ab5\\u0abe\\u0ab0|\\u0ab8\\u0abe\\u0a82\\u0a9c/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0ab0\\u0abe\\u0aa4\"===t?e<4?e:e+12:\"\\u0ab8\\u0ab5\\u0abe\\u0ab0\"===t?e:\"\\u0aac\\u0aaa\\u0acb\\u0ab0\"===t?e>=10?e:e+12:\"\\u0ab8\\u0abe\\u0a82\\u0a9c\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0ab0\\u0abe\\u0aa4\":e<10?\"\\u0ab8\\u0ab5\\u0abe\\u0ab0\":e<17?\"\\u0aac\\u0aaa\\u0acb\\u0ab0\":e<20?\"\\u0ab8\\u0abe\\u0a82\\u0a9c\":\"\\u0ab0\\u0abe\\u0aa4\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"4dOw\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ie\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"6+QB\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"6B0Y\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u17e1\",2:\"\\u17e2\",3:\"\\u17e3\",4:\"\\u17e4\",5:\"\\u17e5\",6:\"\\u17e6\",7:\"\\u17e7\",8:\"\\u17e8\",9:\"\\u17e9\",0:\"\\u17e0\"},n={\"\\u17e1\":\"1\",\"\\u17e2\":\"2\",\"\\u17e3\":\"3\",\"\\u17e4\":\"4\",\"\\u17e5\":\"5\",\"\\u17e6\":\"6\",\"\\u17e7\":\"7\",\"\\u17e8\":\"8\",\"\\u17e9\":\"9\",\"\\u17e0\":\"0\"};e.defineLocale(\"km\",{months:\"\\u1798\\u1780\\u179a\\u17b6_\\u1780\\u17bb\\u1798\\u17d2\\u1797\\u17c8_\\u1798\\u17b8\\u1793\\u17b6_\\u1798\\u17c1\\u179f\\u17b6_\\u17a7\\u179f\\u1797\\u17b6_\\u1798\\u17b7\\u1790\\u17bb\\u1793\\u17b6_\\u1780\\u1780\\u17d2\\u1780\\u178a\\u17b6_\\u179f\\u17b8\\u17a0\\u17b6_\\u1780\\u1789\\u17d2\\u1789\\u17b6_\\u178f\\u17bb\\u179b\\u17b6_\\u179c\\u17b7\\u1785\\u17d2\\u1786\\u17b7\\u1780\\u17b6_\\u1792\\u17d2\\u1793\\u17bc\".split(\"_\"),monthsShort:\"\\u1798\\u1780\\u179a\\u17b6_\\u1780\\u17bb\\u1798\\u17d2\\u1797\\u17c8_\\u1798\\u17b8\\u1793\\u17b6_\\u1798\\u17c1\\u179f\\u17b6_\\u17a7\\u179f\\u1797\\u17b6_\\u1798\\u17b7\\u1790\\u17bb\\u1793\\u17b6_\\u1780\\u1780\\u17d2\\u1780\\u178a\\u17b6_\\u179f\\u17b8\\u17a0\\u17b6_\\u1780\\u1789\\u17d2\\u1789\\u17b6_\\u178f\\u17bb\\u179b\\u17b6_\\u179c\\u17b7\\u1785\\u17d2\\u1786\\u17b7\\u1780\\u17b6_\\u1792\\u17d2\\u1793\\u17bc\".split(\"_\"),weekdays:\"\\u17a2\\u17b6\\u1791\\u17b7\\u178f\\u17d2\\u1799_\\u1785\\u17d0\\u1793\\u17d2\\u1791_\\u17a2\\u1784\\u17d2\\u1782\\u17b6\\u179a_\\u1796\\u17bb\\u1792_\\u1796\\u17d2\\u179a\\u17a0\\u179f\\u17d2\\u1794\\u178f\\u17b7\\u17cd_\\u179f\\u17bb\\u1780\\u17d2\\u179a_\\u179f\\u17c5\\u179a\\u17cd\".split(\"_\"),weekdaysShort:\"\\u17a2\\u17b6_\\u1785_\\u17a2_\\u1796_\\u1796\\u17d2\\u179a_\\u179f\\u17bb_\\u179f\".split(\"_\"),weekdaysMin:\"\\u17a2\\u17b6_\\u1785_\\u17a2_\\u1796_\\u1796\\u17d2\\u179a_\\u179f\\u17bb_\\u179f\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u1796\\u17d2\\u179a\\u17b9\\u1780|\\u179b\\u17d2\\u1784\\u17b6\\u1785/,isPM:function(e){return\"\\u179b\\u17d2\\u1784\\u17b6\\u1785\"===e},meridiem:function(e,t,n){return e<12?\"\\u1796\\u17d2\\u179a\\u17b9\\u1780\":\"\\u179b\\u17d2\\u1784\\u17b6\\u1785\"},calendar:{sameDay:\"[\\u1790\\u17d2\\u1784\\u17c3\\u1793\\u17c1\\u17c7 \\u1798\\u17c9\\u17c4\\u1784] LT\",nextDay:\"[\\u179f\\u17d2\\u17a2\\u17c2\\u1780 \\u1798\\u17c9\\u17c4\\u1784] LT\",nextWeek:\"dddd [\\u1798\\u17c9\\u17c4\\u1784] LT\",lastDay:\"[\\u1798\\u17d2\\u179f\\u17b7\\u179b\\u1798\\u17b7\\u1789 \\u1798\\u17c9\\u17c4\\u1784] LT\",lastWeek:\"dddd [\\u179f\\u1794\\u17d2\\u178f\\u17b6\\u17a0\\u17cd\\u1798\\u17bb\\u1793] [\\u1798\\u17c9\\u17c4\\u1784] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u1791\\u17c0\\u178f\",past:\"%s\\u1798\\u17bb\\u1793\",s:\"\\u1794\\u17c9\\u17bb\\u1793\\u17d2\\u1798\\u17b6\\u1793\\u179c\\u17b7\\u1793\\u17b6\\u1791\\u17b8\",ss:\"%d \\u179c\\u17b7\\u1793\\u17b6\\u1791\\u17b8\",m:\"\\u1798\\u17bd\\u1799\\u1793\\u17b6\\u1791\\u17b8\",mm:\"%d \\u1793\\u17b6\\u1791\\u17b8\",h:\"\\u1798\\u17bd\\u1799\\u1798\\u17c9\\u17c4\\u1784\",hh:\"%d \\u1798\\u17c9\\u17c4\\u1784\",d:\"\\u1798\\u17bd\\u1799\\u1790\\u17d2\\u1784\\u17c3\",dd:\"%d \\u1790\\u17d2\\u1784\\u17c3\",M:\"\\u1798\\u17bd\\u1799\\u1781\\u17c2\",MM:\"%d \\u1781\\u17c2\",y:\"\\u1798\\u17bd\\u1799\\u1786\\u17d2\\u1793\\u17b6\\u17c6\",yy:\"%d \\u1786\\u17d2\\u1793\\u17b6\\u17c6\"},dayOfMonthOrdinalParse:/\\u1791\\u17b8\\d{1,2}/,ordinal:\"\\u1791\\u17b8%d\",preparse:function(e){return e.replace(/[\\u17e1\\u17e2\\u17e3\\u17e4\\u17e5\\u17e6\\u17e7\\u17e8\\u17e9\\u17e0]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"7BjC\":function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={s:[\"m\\xf5ne sekundi\",\"m\\xf5ni sekund\",\"paar sekundit\"],ss:[e+\"sekundi\",e+\"sekundit\"],m:[\"\\xfche minuti\",\"\\xfcks minut\"],mm:[e+\" minuti\",e+\" minutit\"],h:[\"\\xfche tunni\",\"tund aega\",\"\\xfcks tund\"],hh:[e+\" tunni\",e+\" tundi\"],d:[\"\\xfche p\\xe4eva\",\"\\xfcks p\\xe4ev\"],M:[\"kuu aja\",\"kuu aega\",\"\\xfcks kuu\"],MM:[e+\" kuu\",e+\" kuud\"],y:[\"\\xfche aasta\",\"aasta\",\"\\xfcks aasta\"],yy:[e+\" aasta\",e+\" aastat\"]};return t?s[n][2]?s[n][2]:s[n][1]:i?s[n][0]:s[n][1]}e.defineLocale(\"et\",{months:\"jaanuar_veebruar_m\\xe4rts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember\".split(\"_\"),monthsShort:\"jaan_veebr_m\\xe4rts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets\".split(\"_\"),weekdays:\"p\\xfchap\\xe4ev_esmasp\\xe4ev_teisip\\xe4ev_kolmap\\xe4ev_neljap\\xe4ev_reede_laup\\xe4ev\".split(\"_\"),weekdaysShort:\"P_E_T_K_N_R_L\".split(\"_\"),weekdaysMin:\"P_E_T_K_N_R_L\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[T\\xe4na,] LT\",nextDay:\"[Homme,] LT\",nextWeek:\"[J\\xe4rgmine] dddd LT\",lastDay:\"[Eile,] LT\",lastWeek:\"[Eelmine] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s p\\xe4rast\",past:\"%s tagasi\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:\"%d p\\xe4eva\",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"7aV9\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"si\",{months:\"\\u0da2\\u0db1\\u0dc0\\u0dcf\\u0dbb\\u0dd2_\\u0db4\\u0dd9\\u0db6\\u0dbb\\u0dc0\\u0dcf\\u0dbb\\u0dd2_\\u0db8\\u0dcf\\u0dbb\\u0dca\\u0dad\\u0dd4_\\u0d85\\u0db4\\u0dca\\u200d\\u0dbb\\u0dda\\u0dbd\\u0dca_\\u0db8\\u0dd0\\u0dba\\u0dd2_\\u0da2\\u0dd6\\u0db1\\u0dd2_\\u0da2\\u0dd6\\u0dbd\\u0dd2_\\u0d85\\u0d9c\\u0ddd\\u0dc3\\u0dca\\u0dad\\u0dd4_\\u0dc3\\u0dd0\\u0db4\\u0dca\\u0dad\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca_\\u0d94\\u0d9a\\u0dca\\u0dad\\u0ddd\\u0db6\\u0dbb\\u0dca_\\u0db1\\u0ddc\\u0dc0\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca_\\u0daf\\u0dd9\\u0dc3\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca\".split(\"_\"),monthsShort:\"\\u0da2\\u0db1_\\u0db4\\u0dd9\\u0db6_\\u0db8\\u0dcf\\u0dbb\\u0dca_\\u0d85\\u0db4\\u0dca_\\u0db8\\u0dd0\\u0dba\\u0dd2_\\u0da2\\u0dd6\\u0db1\\u0dd2_\\u0da2\\u0dd6\\u0dbd\\u0dd2_\\u0d85\\u0d9c\\u0ddd_\\u0dc3\\u0dd0\\u0db4\\u0dca_\\u0d94\\u0d9a\\u0dca_\\u0db1\\u0ddc\\u0dc0\\u0dd0_\\u0daf\\u0dd9\\u0dc3\\u0dd0\".split(\"_\"),weekdays:\"\\u0d89\\u0dbb\\u0dd2\\u0daf\\u0dcf_\\u0dc3\\u0db3\\u0dd4\\u0daf\\u0dcf_\\u0d85\\u0d9f\\u0dc4\\u0dbb\\u0dd4\\u0dc0\\u0dcf\\u0daf\\u0dcf_\\u0db6\\u0daf\\u0dcf\\u0daf\\u0dcf_\\u0db6\\u0dca\\u200d\\u0dbb\\u0dc4\\u0dc3\\u0dca\\u0db4\\u0dad\\u0dd2\\u0db1\\u0dca\\u0daf\\u0dcf_\\u0dc3\\u0dd2\\u0d9a\\u0dd4\\u0dbb\\u0dcf\\u0daf\\u0dcf_\\u0dc3\\u0dd9\\u0db1\\u0dc3\\u0dd4\\u0dbb\\u0dcf\\u0daf\\u0dcf\".split(\"_\"),weekdaysShort:\"\\u0d89\\u0dbb\\u0dd2_\\u0dc3\\u0db3\\u0dd4_\\u0d85\\u0d9f_\\u0db6\\u0daf\\u0dcf_\\u0db6\\u0dca\\u200d\\u0dbb\\u0dc4_\\u0dc3\\u0dd2\\u0d9a\\u0dd4_\\u0dc3\\u0dd9\\u0db1\".split(\"_\"),weekdaysMin:\"\\u0d89_\\u0dc3_\\u0d85_\\u0db6_\\u0db6\\u0dca\\u200d\\u0dbb_\\u0dc3\\u0dd2_\\u0dc3\\u0dd9\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"a h:mm\",LTS:\"a h:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY MMMM D\",LLL:\"YYYY MMMM D, a h:mm\",LLLL:\"YYYY MMMM D [\\u0dc0\\u0dd0\\u0db1\\u0dd2] dddd, a h:mm:ss\"},calendar:{sameDay:\"[\\u0d85\\u0daf] LT[\\u0da7]\",nextDay:\"[\\u0dc4\\u0dd9\\u0da7] LT[\\u0da7]\",nextWeek:\"dddd LT[\\u0da7]\",lastDay:\"[\\u0d8a\\u0dba\\u0dda] LT[\\u0da7]\",lastWeek:\"[\\u0db4\\u0dc3\\u0dd4\\u0d9c\\u0dd2\\u0dba] dddd LT[\\u0da7]\",sameElse:\"L\"},relativeTime:{future:\"%s\\u0d9a\\u0dd2\\u0db1\\u0dca\",past:\"%s\\u0d9a\\u0da7 \\u0db4\\u0dd9\\u0dbb\",s:\"\\u0dad\\u0dad\\u0dca\\u0db4\\u0dbb \\u0d9a\\u0dd2\\u0dc4\\u0dd2\\u0db4\\u0dba\",ss:\"\\u0dad\\u0dad\\u0dca\\u0db4\\u0dbb %d\",m:\"\\u0db8\\u0dd2\\u0db1\\u0dd2\\u0dad\\u0dca\\u0dad\\u0dd4\\u0dc0\",mm:\"\\u0db8\\u0dd2\\u0db1\\u0dd2\\u0dad\\u0dca\\u0dad\\u0dd4 %d\",h:\"\\u0db4\\u0dd0\\u0dba\",hh:\"\\u0db4\\u0dd0\\u0dba %d\",d:\"\\u0daf\\u0dd2\\u0db1\\u0dba\",dd:\"\\u0daf\\u0dd2\\u0db1 %d\",M:\"\\u0db8\\u0dcf\\u0dc3\\u0dba\",MM:\"\\u0db8\\u0dcf\\u0dc3 %d\",y:\"\\u0dc0\\u0dc3\\u0dbb\",yy:\"\\u0dc0\\u0dc3\\u0dbb %d\"},dayOfMonthOrdinalParse:/\\d{1,2} \\u0dc0\\u0dd0\\u0db1\\u0dd2/,ordinal:function(e){return e+\" \\u0dc0\\u0dd0\\u0db1\\u0dd2\"},meridiemParse:/\\u0db4\\u0dd9\\u0dbb \\u0dc0\\u0dbb\\u0dd4|\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4|\\u0db4\\u0dd9.\\u0dc0|\\u0db4.\\u0dc0./,isPM:function(e){return\"\\u0db4.\\u0dc0.\"===e||\"\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4\"===e},meridiem:function(e,t,n){return e>11?n?\"\\u0db4.\\u0dc0.\":\"\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4\":n?\"\\u0db4\\u0dd9.\\u0dc0.\":\"\\u0db4\\u0dd9\\u0dbb \\u0dc0\\u0dbb\\u0dd4\"}})}(n(\"wd/R\"))},\"8/+R\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0a67\",2:\"\\u0a68\",3:\"\\u0a69\",4:\"\\u0a6a\",5:\"\\u0a6b\",6:\"\\u0a6c\",7:\"\\u0a6d\",8:\"\\u0a6e\",9:\"\\u0a6f\",0:\"\\u0a66\"},n={\"\\u0a67\":\"1\",\"\\u0a68\":\"2\",\"\\u0a69\":\"3\",\"\\u0a6a\":\"4\",\"\\u0a6b\":\"5\",\"\\u0a6c\":\"6\",\"\\u0a6d\":\"7\",\"\\u0a6e\":\"8\",\"\\u0a6f\":\"9\",\"\\u0a66\":\"0\"};e.defineLocale(\"pa-in\",{months:\"\\u0a1c\\u0a28\\u0a35\\u0a30\\u0a40_\\u0a2b\\u0a3c\\u0a30\\u0a35\\u0a30\\u0a40_\\u0a2e\\u0a3e\\u0a30\\u0a1a_\\u0a05\\u0a2a\\u0a4d\\u0a30\\u0a48\\u0a32_\\u0a2e\\u0a08_\\u0a1c\\u0a42\\u0a28_\\u0a1c\\u0a41\\u0a32\\u0a3e\\u0a08_\\u0a05\\u0a17\\u0a38\\u0a24_\\u0a38\\u0a24\\u0a70\\u0a2c\\u0a30_\\u0a05\\u0a15\\u0a24\\u0a42\\u0a2c\\u0a30_\\u0a28\\u0a35\\u0a70\\u0a2c\\u0a30_\\u0a26\\u0a38\\u0a70\\u0a2c\\u0a30\".split(\"_\"),monthsShort:\"\\u0a1c\\u0a28\\u0a35\\u0a30\\u0a40_\\u0a2b\\u0a3c\\u0a30\\u0a35\\u0a30\\u0a40_\\u0a2e\\u0a3e\\u0a30\\u0a1a_\\u0a05\\u0a2a\\u0a4d\\u0a30\\u0a48\\u0a32_\\u0a2e\\u0a08_\\u0a1c\\u0a42\\u0a28_\\u0a1c\\u0a41\\u0a32\\u0a3e\\u0a08_\\u0a05\\u0a17\\u0a38\\u0a24_\\u0a38\\u0a24\\u0a70\\u0a2c\\u0a30_\\u0a05\\u0a15\\u0a24\\u0a42\\u0a2c\\u0a30_\\u0a28\\u0a35\\u0a70\\u0a2c\\u0a30_\\u0a26\\u0a38\\u0a70\\u0a2c\\u0a30\".split(\"_\"),weekdays:\"\\u0a10\\u0a24\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a4b\\u0a2e\\u0a35\\u0a3e\\u0a30_\\u0a2e\\u0a70\\u0a17\\u0a32\\u0a35\\u0a3e\\u0a30_\\u0a2c\\u0a41\\u0a27\\u0a35\\u0a3e\\u0a30_\\u0a35\\u0a40\\u0a30\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a71\\u0a15\\u0a30\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\\u0a1a\\u0a30\\u0a35\\u0a3e\\u0a30\".split(\"_\"),weekdaysShort:\"\\u0a10\\u0a24_\\u0a38\\u0a4b\\u0a2e_\\u0a2e\\u0a70\\u0a17\\u0a32_\\u0a2c\\u0a41\\u0a27_\\u0a35\\u0a40\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a15\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\".split(\"_\"),weekdaysMin:\"\\u0a10\\u0a24_\\u0a38\\u0a4b\\u0a2e_\\u0a2e\\u0a70\\u0a17\\u0a32_\\u0a2c\\u0a41\\u0a27_\\u0a35\\u0a40\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a15\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0a35\\u0a1c\\u0a47\",LTS:\"A h:mm:ss \\u0a35\\u0a1c\\u0a47\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0a35\\u0a1c\\u0a47\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0a35\\u0a1c\\u0a47\"},calendar:{sameDay:\"[\\u0a05\\u0a1c] LT\",nextDay:\"[\\u0a15\\u0a32] LT\",nextWeek:\"[\\u0a05\\u0a17\\u0a32\\u0a3e] dddd, LT\",lastDay:\"[\\u0a15\\u0a32] LT\",lastWeek:\"[\\u0a2a\\u0a3f\\u0a1b\\u0a32\\u0a47] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0a35\\u0a3f\\u0a71\\u0a1a\",past:\"%s \\u0a2a\\u0a3f\\u0a1b\\u0a32\\u0a47\",s:\"\\u0a15\\u0a41\\u0a1d \\u0a38\\u0a15\\u0a3f\\u0a70\\u0a1f\",ss:\"%d \\u0a38\\u0a15\\u0a3f\\u0a70\\u0a1f\",m:\"\\u0a07\\u0a15 \\u0a2e\\u0a3f\\u0a70\\u0a1f\",mm:\"%d \\u0a2e\\u0a3f\\u0a70\\u0a1f\",h:\"\\u0a07\\u0a71\\u0a15 \\u0a18\\u0a70\\u0a1f\\u0a3e\",hh:\"%d \\u0a18\\u0a70\\u0a1f\\u0a47\",d:\"\\u0a07\\u0a71\\u0a15 \\u0a26\\u0a3f\\u0a28\",dd:\"%d \\u0a26\\u0a3f\\u0a28\",M:\"\\u0a07\\u0a71\\u0a15 \\u0a2e\\u0a39\\u0a40\\u0a28\\u0a3e\",MM:\"%d \\u0a2e\\u0a39\\u0a40\\u0a28\\u0a47\",y:\"\\u0a07\\u0a71\\u0a15 \\u0a38\\u0a3e\\u0a32\",yy:\"%d \\u0a38\\u0a3e\\u0a32\"},preparse:function(e){return e.replace(/[\\u0a67\\u0a68\\u0a69\\u0a6a\\u0a6b\\u0a6c\\u0a6d\\u0a6e\\u0a6f\\u0a66]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0a30\\u0a3e\\u0a24|\\u0a38\\u0a35\\u0a47\\u0a30|\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30|\\u0a38\\u0a3c\\u0a3e\\u0a2e/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0a30\\u0a3e\\u0a24\"===t?e<4?e:e+12:\"\\u0a38\\u0a35\\u0a47\\u0a30\"===t?e:\"\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30\"===t?e>=10?e:e+12:\"\\u0a38\\u0a3c\\u0a3e\\u0a2e\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0a30\\u0a3e\\u0a24\":e<10?\"\\u0a38\\u0a35\\u0a47\\u0a30\":e<17?\"\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30\":e<20?\"\\u0a38\\u0a3c\\u0a3e\\u0a2e\":\"\\u0a30\\u0a3e\\u0a24\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"8mBD\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt\",{months:\"Janeiro_Fevereiro_Mar\\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingo_Segunda-feira_Ter\\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\\xe1bado\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ter_Qua_Qui_Sex_S\\xe1b\".split(\"_\"),weekdaysMin:\"Do_2\\xaa_3\\xaa_4\\xaa_5\\xaa_6\\xaa_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY HH:mm\"},calendar:{sameDay:\"[Hoje \\xe0s] LT\",nextDay:\"[Amanh\\xe3 \\xe0s] LT\",nextWeek:\"dddd [\\xe0s] LT\",lastDay:\"[Ontem \\xe0s] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[\\xdaltimo] dddd [\\xe0s] LT\":\"[\\xdaltima] dddd [\\xe0s] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"h\\xe1 %s\",s:\"segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",M:\"um m\\xeas\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"9rRi\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"gd\",{months:[\"Am Faoilleach\",\"An Gearran\",\"Am M\\xe0rt\",\"An Giblean\",\"An C\\xe8itean\",\"An t-\\xd2gmhios\",\"An t-Iuchar\",\"An L\\xf9nastal\",\"An t-Sultain\",\"An D\\xe0mhair\",\"An t-Samhain\",\"An D\\xf9bhlachd\"],monthsShort:[\"Faoi\",\"Gear\",\"M\\xe0rt\",\"Gibl\",\"C\\xe8it\",\"\\xd2gmh\",\"Iuch\",\"L\\xf9n\",\"Sult\",\"D\\xe0mh\",\"Samh\",\"D\\xf9bh\"],monthsParseExact:!0,weekdays:[\"Did\\xf2mhnaich\",\"Diluain\",\"Dim\\xe0irt\",\"Diciadain\",\"Diardaoin\",\"Dihaoine\",\"Disathairne\"],weekdaysShort:[\"Did\",\"Dil\",\"Dim\",\"Dic\",\"Dia\",\"Dih\",\"Dis\"],weekdaysMin:[\"D\\xf2\",\"Lu\",\"M\\xe0\",\"Ci\",\"Ar\",\"Ha\",\"Sa\"],longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[An-diugh aig] LT\",nextDay:\"[A-m\\xe0ireach aig] LT\",nextWeek:\"dddd [aig] LT\",lastDay:\"[An-d\\xe8 aig] LT\",lastWeek:\"dddd [seo chaidh] [aig] LT\",sameElse:\"L\"},relativeTime:{future:\"ann an %s\",past:\"bho chionn %s\",s:\"beagan diogan\",ss:\"%d diogan\",m:\"mionaid\",mm:\"%d mionaidean\",h:\"uair\",hh:\"%d uairean\",d:\"latha\",dd:\"%d latha\",M:\"m\\xecos\",MM:\"%d m\\xecosan\",y:\"bliadhna\",yy:\"%d bliadhna\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"A+xa\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cv\",{months:\"\\u043a\\u04d1\\u0440\\u043b\\u0430\\u0447_\\u043d\\u0430\\u0440\\u04d1\\u0441_\\u043f\\u0443\\u0448_\\u0430\\u043a\\u0430_\\u043c\\u0430\\u0439_\\u04ab\\u04d7\\u0440\\u0442\\u043c\\u0435_\\u0443\\u0442\\u04d1_\\u04ab\\u0443\\u0440\\u043b\\u0430_\\u0430\\u0432\\u04d1\\u043d_\\u044e\\u043f\\u0430_\\u0447\\u04f3\\u043a_\\u0440\\u0430\\u0448\\u0442\\u0430\\u0432\".split(\"_\"),monthsShort:\"\\u043a\\u04d1\\u0440_\\u043d\\u0430\\u0440_\\u043f\\u0443\\u0448_\\u0430\\u043a\\u0430_\\u043c\\u0430\\u0439_\\u04ab\\u04d7\\u0440_\\u0443\\u0442\\u04d1_\\u04ab\\u0443\\u0440_\\u0430\\u0432\\u043d_\\u044e\\u043f\\u0430_\\u0447\\u04f3\\u043a_\\u0440\\u0430\\u0448\".split(\"_\"),weekdays:\"\\u0432\\u044b\\u0440\\u0441\\u0430\\u0440\\u043d\\u0438\\u043a\\u0443\\u043d_\\u0442\\u0443\\u043d\\u0442\\u0438\\u043a\\u0443\\u043d_\\u044b\\u0442\\u043b\\u0430\\u0440\\u0438\\u043a\\u0443\\u043d_\\u044e\\u043d\\u043a\\u0443\\u043d_\\u043a\\u04d7\\u04ab\\u043d\\u0435\\u0440\\u043d\\u0438\\u043a\\u0443\\u043d_\\u044d\\u0440\\u043d\\u0435\\u043a\\u0443\\u043d_\\u0448\\u04d1\\u043c\\u0430\\u0442\\u043a\\u0443\\u043d\".split(\"_\"),weekdaysShort:\"\\u0432\\u044b\\u0440_\\u0442\\u0443\\u043d_\\u044b\\u0442\\u043b_\\u044e\\u043d_\\u043a\\u04d7\\u04ab_\\u044d\\u0440\\u043d_\\u0448\\u04d1\\u043c\".split(\"_\"),weekdaysMin:\"\\u0432\\u0440_\\u0442\\u043d_\\u044b\\u0442_\\u044e\\u043d_\\u043a\\u04ab_\\u044d\\u0440_\\u0448\\u043c\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7]\",LLL:\"YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7], HH:mm\",LLLL:\"dddd, YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7], HH:mm\"},calendar:{sameDay:\"[\\u041f\\u0430\\u044f\\u043d] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",nextDay:\"[\\u042b\\u0440\\u0430\\u043d] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",lastDay:\"[\\u04d6\\u043d\\u0435\\u0440] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",nextWeek:\"[\\u04aa\\u0438\\u0442\\u0435\\u0441] dddd LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",lastWeek:\"[\\u0418\\u0440\\u0442\\u043d\\u04d7] dddd LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",sameElse:\"L\"},relativeTime:{future:function(e){return e+(/\\u0441\\u0435\\u0445\\u0435\\u0442$/i.exec(e)?\"\\u0440\\u0435\\u043d\":/\\u04ab\\u0443\\u043b$/i.exec(e)?\"\\u0442\\u0430\\u043d\":\"\\u0440\\u0430\\u043d\")},past:\"%s \\u043a\\u0430\\u044f\\u043b\\u043b\\u0430\",s:\"\\u043f\\u04d7\\u0440-\\u0438\\u043a \\u04ab\\u0435\\u043a\\u043a\\u0443\\u043d\\u0442\",ss:\"%d \\u04ab\\u0435\\u043a\\u043a\\u0443\\u043d\\u0442\",m:\"\\u043f\\u04d7\\u0440 \\u043c\\u0438\\u043d\\u0443\\u0442\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\",h:\"\\u043f\\u04d7\\u0440 \\u0441\\u0435\\u0445\\u0435\\u0442\",hh:\"%d \\u0441\\u0435\\u0445\\u0435\\u0442\",d:\"\\u043f\\u04d7\\u0440 \\u043a\\u0443\\u043d\",dd:\"%d \\u043a\\u0443\\u043d\",M:\"\\u043f\\u04d7\\u0440 \\u0443\\u0439\\u04d1\\u0445\",MM:\"%d \\u0443\\u0439\\u04d1\\u0445\",y:\"\\u043f\\u04d7\\u0440 \\u04ab\\u0443\\u043b\",yy:\"%d \\u04ab\\u0443\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-\\u043c\\u04d7\\u0448/,ordinal:\"%d-\\u043c\\u04d7\\u0448\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},AQ68:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz-latn\",{months:\"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr\".split(\"_\"),monthsShort:\"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek\".split(\"_\"),weekdays:\"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba\".split(\"_\"),weekdaysShort:\"Yak_Dush_Sesh_Chor_Pay_Jum_Shan\".split(\"_\"),weekdaysMin:\"Ya_Du_Se_Cho_Pa_Ju_Sha\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[Bugun soat] LT [da]\",nextDay:\"[Ertaga] LT [da]\",nextWeek:\"dddd [kuni soat] LT [da]\",lastDay:\"[Kecha soat] LT [da]\",lastWeek:\"[O'tgan] dddd [kuni soat] LT [da]\",sameElse:\"L\"},relativeTime:{future:\"Yaqin %s ichida\",past:\"Bir necha %s oldin\",s:\"soniya\",ss:\"%d soniya\",m:\"bir daqiqa\",mm:\"%d daqiqa\",h:\"bir soat\",hh:\"%d soat\",d:\"bir kun\",dd:\"%d kun\",M:\"bir oy\",MM:\"%d oy\",y:\"bir yil\",yy:\"%d yil\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},AvvY:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ml\",{months:\"\\u0d1c\\u0d28\\u0d41\\u0d35\\u0d30\\u0d3f_\\u0d2b\\u0d46\\u0d2c\\u0d4d\\u0d30\\u0d41\\u0d35\\u0d30\\u0d3f_\\u0d2e\\u0d3e\\u0d7c\\u0d1a\\u0d4d\\u0d1a\\u0d4d_\\u0d0f\\u0d2a\\u0d4d\\u0d30\\u0d3f\\u0d7d_\\u0d2e\\u0d47\\u0d2f\\u0d4d_\\u0d1c\\u0d42\\u0d7a_\\u0d1c\\u0d42\\u0d32\\u0d48_\\u0d13\\u0d17\\u0d38\\u0d4d\\u0d31\\u0d4d\\u0d31\\u0d4d_\\u0d38\\u0d46\\u0d2a\\u0d4d\\u0d31\\u0d4d\\u0d31\\u0d02\\u0d2c\\u0d7c_\\u0d12\\u0d15\\u0d4d\\u0d1f\\u0d4b\\u0d2c\\u0d7c_\\u0d28\\u0d35\\u0d02\\u0d2c\\u0d7c_\\u0d21\\u0d3f\\u0d38\\u0d02\\u0d2c\\u0d7c\".split(\"_\"),monthsShort:\"\\u0d1c\\u0d28\\u0d41._\\u0d2b\\u0d46\\u0d2c\\u0d4d\\u0d30\\u0d41._\\u0d2e\\u0d3e\\u0d7c._\\u0d0f\\u0d2a\\u0d4d\\u0d30\\u0d3f._\\u0d2e\\u0d47\\u0d2f\\u0d4d_\\u0d1c\\u0d42\\u0d7a_\\u0d1c\\u0d42\\u0d32\\u0d48._\\u0d13\\u0d17._\\u0d38\\u0d46\\u0d2a\\u0d4d\\u0d31\\u0d4d\\u0d31._\\u0d12\\u0d15\\u0d4d\\u0d1f\\u0d4b._\\u0d28\\u0d35\\u0d02._\\u0d21\\u0d3f\\u0d38\\u0d02.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0d1e\\u0d3e\\u0d2f\\u0d31\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d24\\u0d3f\\u0d19\\u0d4d\\u0d15\\u0d33\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d1a\\u0d4a\\u0d35\\u0d4d\\u0d35\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d2c\\u0d41\\u0d27\\u0d28\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d35\\u0d4d\\u0d2f\\u0d3e\\u0d34\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d35\\u0d46\\u0d33\\u0d4d\\u0d33\\u0d3f\\u0d2f\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d36\\u0d28\\u0d3f\\u0d2f\\u0d3e\\u0d34\\u0d4d\\u0d1a\".split(\"_\"),weekdaysShort:\"\\u0d1e\\u0d3e\\u0d2f\\u0d7c_\\u0d24\\u0d3f\\u0d19\\u0d4d\\u0d15\\u0d7e_\\u0d1a\\u0d4a\\u0d35\\u0d4d\\u0d35_\\u0d2c\\u0d41\\u0d27\\u0d7b_\\u0d35\\u0d4d\\u0d2f\\u0d3e\\u0d34\\u0d02_\\u0d35\\u0d46\\u0d33\\u0d4d\\u0d33\\u0d3f_\\u0d36\\u0d28\\u0d3f\".split(\"_\"),weekdaysMin:\"\\u0d1e\\u0d3e_\\u0d24\\u0d3f_\\u0d1a\\u0d4a_\\u0d2c\\u0d41_\\u0d35\\u0d4d\\u0d2f\\u0d3e_\\u0d35\\u0d46_\\u0d36\".split(\"_\"),longDateFormat:{LT:\"A h:mm -\\u0d28\\u0d41\",LTS:\"A h:mm:ss -\\u0d28\\u0d41\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm -\\u0d28\\u0d41\",LLLL:\"dddd, D MMMM YYYY, A h:mm -\\u0d28\\u0d41\"},calendar:{sameDay:\"[\\u0d07\\u0d28\\u0d4d\\u0d28\\u0d4d] LT\",nextDay:\"[\\u0d28\\u0d3e\\u0d33\\u0d46] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0d07\\u0d28\\u0d4d\\u0d28\\u0d32\\u0d46] LT\",lastWeek:\"[\\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\",past:\"%s \\u0d2e\\u0d41\\u0d7b\\u0d2a\\u0d4d\",s:\"\\u0d05\\u0d7d\\u0d2a \\u0d28\\u0d3f\\u0d2e\\u0d3f\\u0d37\\u0d19\\u0d4d\\u0d19\\u0d7e\",ss:\"%d \\u0d38\\u0d46\\u0d15\\u0d4d\\u0d15\\u0d7b\\u0d21\\u0d4d\",m:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d3f\\u0d28\\u0d3f\\u0d31\\u0d4d\\u0d31\\u0d4d\",mm:\"%d \\u0d2e\\u0d3f\\u0d28\\u0d3f\\u0d31\\u0d4d\\u0d31\\u0d4d\",h:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d23\\u0d3f\\u0d15\\u0d4d\\u0d15\\u0d42\\u0d7c\",hh:\"%d \\u0d2e\\u0d23\\u0d3f\\u0d15\\u0d4d\\u0d15\\u0d42\\u0d7c\",d:\"\\u0d12\\u0d30\\u0d41 \\u0d26\\u0d3f\\u0d35\\u0d38\\u0d02\",dd:\"%d \\u0d26\\u0d3f\\u0d35\\u0d38\\u0d02\",M:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d3e\\u0d38\\u0d02\",MM:\"%d \\u0d2e\\u0d3e\\u0d38\\u0d02\",y:\"\\u0d12\\u0d30\\u0d41 \\u0d35\\u0d7c\\u0d37\\u0d02\",yy:\"%d \\u0d35\\u0d7c\\u0d37\\u0d02\"},meridiemParse:/\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f|\\u0d30\\u0d3e\\u0d35\\u0d3f\\u0d32\\u0d46|\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d|\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02|\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f/i,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\"===t&&e>=4||\"\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\"===t||\"\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\":e<12?\"\\u0d30\\u0d3e\\u0d35\\u0d3f\\u0d32\\u0d46\":e<17?\"\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\":e<20?\"\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02\":\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\"}})}(n(\"wd/R\"))},B55N:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ja\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u65e5\\u66dc\\u65e5_\\u6708\\u66dc\\u65e5_\\u706b\\u66dc\\u65e5_\\u6c34\\u66dc\\u65e5_\\u6728\\u66dc\\u65e5_\\u91d1\\u66dc\\u65e5_\\u571f\\u66dc\\u65e5\".split(\"_\"),weekdaysShort:\"\\u65e5_\\u6708_\\u706b_\\u6c34_\\u6728_\\u91d1_\\u571f\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u6708_\\u706b_\\u6c34_\\u6728_\\u91d1_\\u571f\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5 dddd HH:mm\",l:\"YYYY/MM/DD\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5(ddd) HH:mm\"},meridiemParse:/\\u5348\\u524d|\\u5348\\u5f8c/i,isPM:function(e){return\"\\u5348\\u5f8c\"===e},meridiem:function(e,t,n){return e<12?\"\\u5348\\u524d\":\"\\u5348\\u5f8c\"},calendar:{sameDay:\"[\\u4eca\\u65e5] LT\",nextDay:\"[\\u660e\\u65e5] LT\",nextWeek:function(e){return e.week()12?e:e+12:\"sanje\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"rati\":e<12?\"sokalli\":e<16?\"donparam\":e<20?\"sanje\":\"rati\"}})}(n(\"wd/R\"))},Dkky:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ch\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Dmvi:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-au\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},DoHr:function(e,t,n){!function(e){\"use strict\";var t={1:\"'inci\",5:\"'inci\",8:\"'inci\",70:\"'inci\",80:\"'inci\",2:\"'nci\",7:\"'nci\",20:\"'nci\",50:\"'nci\",3:\"'\\xfcnc\\xfc\",4:\"'\\xfcnc\\xfc\",100:\"'\\xfcnc\\xfc\",6:\"'nc\\u0131\",9:\"'uncu\",10:\"'uncu\",30:\"'uncu\",60:\"'\\u0131nc\\u0131\",90:\"'\\u0131nc\\u0131\"};e.defineLocale(\"tr\",{months:\"Ocak_\\u015eubat_Mart_Nisan_May\\u0131s_Haziran_Temmuz_A\\u011fustos_Eyl\\xfcl_Ekim_Kas\\u0131m_Aral\\u0131k\".split(\"_\"),monthsShort:\"Oca_\\u015eub_Mar_Nis_May_Haz_Tem_A\\u011fu_Eyl_Eki_Kas_Ara\".split(\"_\"),weekdays:\"Pazar_Pazartesi_Sal\\u0131_\\xc7ar\\u015famba_Per\\u015fembe_Cuma_Cumartesi\".split(\"_\"),weekdaysShort:\"Paz_Pts_Sal_\\xc7ar_Per_Cum_Cts\".split(\"_\"),weekdaysMin:\"Pz_Pt_Sa_\\xc7a_Pe_Cu_Ct\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bug\\xfcn saat] LT\",nextDay:\"[yar\\u0131n saat] LT\",nextWeek:\"[gelecek] dddd [saat] LT\",lastDay:\"[d\\xfcn] LT\",lastWeek:\"[ge\\xe7en] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s \\xf6nce\",s:\"birka\\xe7 saniye\",ss:\"%d saniye\",m:\"bir dakika\",mm:\"%d dakika\",h:\"bir saat\",hh:\"%d saat\",d:\"bir g\\xfcn\",dd:\"%d g\\xfcn\",M:\"bir ay\",MM:\"%d ay\",y:\"bir y\\u0131l\",yy:\"%d y\\u0131l\"},ordinal:function(e,n){switch(n){case\"d\":case\"D\":case\"Do\":case\"DD\":return e;default:if(0===e)return e+\"'\\u0131nc\\u0131\";var i=e%10;return e+(t[i]||t[e%100-i]||t[e>=100?100:null])}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},DxQv:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"da\",{months:\"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"s\\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\\xf8rdag\".split(\"_\"),weekdaysShort:\"s\\xf8n_man_tir_ons_tor_fre_l\\xf8r\".split(\"_\"),weekdaysMin:\"s\\xf8_ma_ti_on_to_fr_l\\xf8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd [d.] D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"p\\xe5 dddd [kl.] LT\",lastDay:\"[i g\\xe5r kl.] LT\",lastWeek:\"[i] dddd[s kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"f\\xe5 sekunder\",ss:\"%d sekunder\",m:\"et minut\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dage\",M:\"en m\\xe5ned\",MM:\"%d m\\xe5neder\",y:\"et \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},Dzi0:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tl-ph\",{months:\"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre\".split(\"_\"),monthsShort:\"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis\".split(\"_\"),weekdays:\"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado\".split(\"_\"),weekdaysShort:\"Lin_Lun_Mar_Miy_Huw_Biy_Sab\".split(\"_\"),weekdaysMin:\"Li_Lu_Ma_Mi_Hu_Bi_Sab\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"MM/D/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY HH:mm\",LLLL:\"dddd, MMMM DD, YYYY HH:mm\"},calendar:{sameDay:\"LT [ngayong araw]\",nextDay:\"[Bukas ng] LT\",nextWeek:\"LT [sa susunod na] dddd\",lastDay:\"LT [kahapon]\",lastWeek:\"LT [noong nakaraang] dddd\",sameElse:\"L\"},relativeTime:{future:\"sa loob ng %s\",past:\"%s ang nakalipas\",s:\"ilang segundo\",ss:\"%d segundo\",m:\"isang minuto\",mm:\"%d minuto\",h:\"isang oras\",hh:\"%d oras\",d:\"isang araw\",dd:\"%d araw\",M:\"isang buwan\",MM:\"%d buwan\",y:\"isang taon\",yy:\"%d taon\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"E+lV\":function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430\",\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0435\",\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\"],m:[\"\\u0458\\u0435\\u0434\\u0430\\u043d \\u043c\\u0438\\u043d\\u0443\\u0442\",\"\\u0458\\u0435\\u0434\\u043d\\u0435 \\u043c\\u0438\\u043d\\u0443\\u0442\\u0435\"],mm:[\"\\u043c\\u0438\\u043d\\u0443\\u0442\",\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0435\",\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\"],h:[\"\\u0458\\u0435\\u0434\\u0430\\u043d \\u0441\\u0430\\u0442\",\"\\u0458\\u0435\\u0434\\u043d\\u043e\\u0433 \\u0441\\u0430\\u0442\\u0430\"],hh:[\"\\u0441\\u0430\\u0442\",\"\\u0441\\u0430\\u0442\\u0430\",\"\\u0441\\u0430\\u0442\\u0438\"],dd:[\"\\u0434\\u0430\\u043d\",\"\\u0434\\u0430\\u043d\\u0430\",\"\\u0434\\u0430\\u043d\\u0430\"],MM:[\"\\u043c\\u0435\\u0441\\u0435\\u0446\",\"\\u043c\\u0435\\u0441\\u0435\\u0446\\u0430\",\"\\u043c\\u0435\\u0441\\u0435\\u0446\\u0438\"],yy:[\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0435\",\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var s=t.words[i];return 1===i.length?n?s[0]:s[1]:e+\" \"+t.correctGrammaticalCase(e,s)}};e.defineLocale(\"sr-cyrl\",{months:\"\\u0458\\u0430\\u043d\\u0443\\u0430\\u0440_\\u0444\\u0435\\u0431\\u0440\\u0443\\u0430\\u0440_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0431\\u0430\\u0440_\\u043e\\u043a\\u0442\\u043e\\u0431\\u0430\\u0440_\\u043d\\u043e\\u0432\\u0435\\u043c\\u0431\\u0430\\u0440_\\u0434\\u0435\\u0446\\u0435\\u043c\\u0431\\u0430\\u0440\".split(\"_\"),monthsShort:\"\\u0458\\u0430\\u043d._\\u0444\\u0435\\u0431._\\u043c\\u0430\\u0440._\\u0430\\u043f\\u0440._\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043f._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u0432._\\u0434\\u0435\\u0446.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u0459\\u0430_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u0459\\u0430\\u043a_\\u0443\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u0430\\u043a_\\u043f\\u0435\\u0442\\u0430\\u043a_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434._\\u043f\\u043e\\u043d._\\u0443\\u0442\\u043e._\\u0441\\u0440\\u0435._\\u0447\\u0435\\u0442._\\u043f\\u0435\\u0442._\\u0441\\u0443\\u0431.\".split(\"_\"),weekdaysMin:\"\\u043d\\u0435_\\u043f\\u043e_\\u0443\\u0442_\\u0441\\u0440_\\u0447\\u0435_\\u043f\\u0435_\\u0441\\u0443\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0434\\u0430\\u043d\\u0430\\u0441 \\u0443] LT\",nextDay:\"[\\u0441\\u0443\\u0442\\u0440\\u0430 \\u0443] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[\\u0443] [\\u043d\\u0435\\u0434\\u0435\\u0459\\u0443] [\\u0443] LT\";case 3:return\"[\\u0443] [\\u0441\\u0440\\u0435\\u0434\\u0443] [\\u0443] LT\";case 6:return\"[\\u0443] [\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443] [\\u0443] LT\";case 1:case 2:case 4:case 5:return\"[\\u0443] dddd [\\u0443] LT\"}},lastDay:\"[\\u0458\\u0443\\u0447\\u0435 \\u0443] LT\",lastWeek:function(){return[\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u043d\\u0435\\u0434\\u0435\\u0459\\u0435] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u0459\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u0443\\u0442\\u043e\\u0440\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u0441\\u0440\\u0435\\u0434\\u0435] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u043f\\u0435\\u0442\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u0441\\u0443\\u0431\\u043e\\u0442\\u0435] [\\u0443] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"\\u0437\\u0430 %s\",past:\"\\u043f\\u0440\\u0435 %s\",s:\"\\u043d\\u0435\\u043a\\u043e\\u043b\\u0438\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"\\u0434\\u0430\\u043d\",dd:t.translate,M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:t.translate,y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},EOgW:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"th\",{months:\"\\u0e21\\u0e01\\u0e23\\u0e32\\u0e04\\u0e21_\\u0e01\\u0e38\\u0e21\\u0e20\\u0e32\\u0e1e\\u0e31\\u0e19\\u0e18\\u0e4c_\\u0e21\\u0e35\\u0e19\\u0e32\\u0e04\\u0e21_\\u0e40\\u0e21\\u0e29\\u0e32\\u0e22\\u0e19_\\u0e1e\\u0e24\\u0e29\\u0e20\\u0e32\\u0e04\\u0e21_\\u0e21\\u0e34\\u0e16\\u0e38\\u0e19\\u0e32\\u0e22\\u0e19_\\u0e01\\u0e23\\u0e01\\u0e0e\\u0e32\\u0e04\\u0e21_\\u0e2a\\u0e34\\u0e07\\u0e2b\\u0e32\\u0e04\\u0e21_\\u0e01\\u0e31\\u0e19\\u0e22\\u0e32\\u0e22\\u0e19_\\u0e15\\u0e38\\u0e25\\u0e32\\u0e04\\u0e21_\\u0e1e\\u0e24\\u0e28\\u0e08\\u0e34\\u0e01\\u0e32\\u0e22\\u0e19_\\u0e18\\u0e31\\u0e19\\u0e27\\u0e32\\u0e04\\u0e21\".split(\"_\"),monthsShort:\"\\u0e21.\\u0e04._\\u0e01.\\u0e1e._\\u0e21\\u0e35.\\u0e04._\\u0e40\\u0e21.\\u0e22._\\u0e1e.\\u0e04._\\u0e21\\u0e34.\\u0e22._\\u0e01.\\u0e04._\\u0e2a.\\u0e04._\\u0e01.\\u0e22._\\u0e15.\\u0e04._\\u0e1e.\\u0e22._\\u0e18.\\u0e04.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0e2d\\u0e32\\u0e17\\u0e34\\u0e15\\u0e22\\u0e4c_\\u0e08\\u0e31\\u0e19\\u0e17\\u0e23\\u0e4c_\\u0e2d\\u0e31\\u0e07\\u0e04\\u0e32\\u0e23_\\u0e1e\\u0e38\\u0e18_\\u0e1e\\u0e24\\u0e2b\\u0e31\\u0e2a\\u0e1a\\u0e14\\u0e35_\\u0e28\\u0e38\\u0e01\\u0e23\\u0e4c_\\u0e40\\u0e2a\\u0e32\\u0e23\\u0e4c\".split(\"_\"),weekdaysShort:\"\\u0e2d\\u0e32\\u0e17\\u0e34\\u0e15\\u0e22\\u0e4c_\\u0e08\\u0e31\\u0e19\\u0e17\\u0e23\\u0e4c_\\u0e2d\\u0e31\\u0e07\\u0e04\\u0e32\\u0e23_\\u0e1e\\u0e38\\u0e18_\\u0e1e\\u0e24\\u0e2b\\u0e31\\u0e2a_\\u0e28\\u0e38\\u0e01\\u0e23\\u0e4c_\\u0e40\\u0e2a\\u0e32\\u0e23\\u0e4c\".split(\"_\"),weekdaysMin:\"\\u0e2d\\u0e32._\\u0e08._\\u0e2d._\\u0e1e._\\u0e1e\\u0e24._\\u0e28._\\u0e2a.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY \\u0e40\\u0e27\\u0e25\\u0e32 H:mm\",LLLL:\"\\u0e27\\u0e31\\u0e19dddd\\u0e17\\u0e35\\u0e48 D MMMM YYYY \\u0e40\\u0e27\\u0e25\\u0e32 H:mm\"},meridiemParse:/\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07|\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07/,isPM:function(e){return\"\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\"===e},meridiem:function(e,t,n){return e<12?\"\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\":\"\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\"},calendar:{sameDay:\"[\\u0e27\\u0e31\\u0e19\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",nextDay:\"[\\u0e1e\\u0e23\\u0e38\\u0e48\\u0e07\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",nextWeek:\"dddd[\\u0e2b\\u0e19\\u0e49\\u0e32 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",lastDay:\"[\\u0e40\\u0e21\\u0e37\\u0e48\\u0e2d\\u0e27\\u0e32\\u0e19\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",lastWeek:\"[\\u0e27\\u0e31\\u0e19]dddd[\\u0e17\\u0e35\\u0e48\\u0e41\\u0e25\\u0e49\\u0e27 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0e2d\\u0e35\\u0e01 %s\",past:\"%s\\u0e17\\u0e35\\u0e48\\u0e41\\u0e25\\u0e49\\u0e27\",s:\"\\u0e44\\u0e21\\u0e48\\u0e01\\u0e35\\u0e48\\u0e27\\u0e34\\u0e19\\u0e32\\u0e17\\u0e35\",ss:\"%d \\u0e27\\u0e34\\u0e19\\u0e32\\u0e17\\u0e35\",m:\"1 \\u0e19\\u0e32\\u0e17\\u0e35\",mm:\"%d \\u0e19\\u0e32\\u0e17\\u0e35\",h:\"1 \\u0e0a\\u0e31\\u0e48\\u0e27\\u0e42\\u0e21\\u0e07\",hh:\"%d \\u0e0a\\u0e31\\u0e48\\u0e27\\u0e42\\u0e21\\u0e07\",d:\"1 \\u0e27\\u0e31\\u0e19\",dd:\"%d \\u0e27\\u0e31\\u0e19\",M:\"1 \\u0e40\\u0e14\\u0e37\\u0e2d\\u0e19\",MM:\"%d \\u0e40\\u0e14\\u0e37\\u0e2d\\u0e19\",y:\"1 \\u0e1b\\u0e35\",yy:\"%d \\u0e1b\\u0e35\"}})}(n(\"wd/R\"))},G0Uy:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mt\",{months:\"Jannar_Frar_Marzu_April_Mejju_\\u0120unju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Di\\u010bembru\".split(\"_\"),monthsShort:\"Jan_Fra_Mar_Apr_Mej_\\u0120un_Lul_Aww_Set_Ott_Nov_Di\\u010b\".split(\"_\"),weekdays:\"Il-\\u0126add_It-Tnejn_It-Tlieta_L-Erbg\\u0127a_Il-\\u0126amis_Il-\\u0120img\\u0127a_Is-Sibt\".split(\"_\"),weekdaysShort:\"\\u0126ad_Tne_Tli_Erb_\\u0126am_\\u0120im_Sib\".split(\"_\"),weekdaysMin:\"\\u0126a_Tn_Tl_Er_\\u0126a_\\u0120i_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Illum fil-]LT\",nextDay:\"[G\\u0127ada fil-]LT\",nextWeek:\"dddd [fil-]LT\",lastDay:\"[Il-biera\\u0127 fil-]LT\",lastWeek:\"dddd [li g\\u0127adda] [fil-]LT\",sameElse:\"L\"},relativeTime:{future:\"f\\u2019 %s\",past:\"%s ilu\",s:\"ftit sekondi\",ss:\"%d sekondi\",m:\"minuta\",mm:\"%d minuti\",h:\"sieg\\u0127a\",hh:\"%d sieg\\u0127at\",d:\"\\u0121urnata\",dd:\"%d \\u0121ranet\",M:\"xahar\",MM:\"%d xhur\",y:\"sena\",yy:\"%d sni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},H8ED:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i,s;return\"m\"===n?t?\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0430\":\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0443\":\"h\"===n?t?\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0430\":\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0443\":e+\" \"+(i=+e,s={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0430_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u044b_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\":\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0443_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u044b_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\",hh:t?\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0430_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u044b_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\":\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0443_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u044b_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\",dd:\"\\u0434\\u0437\\u0435\\u043d\\u044c_\\u0434\\u043d\\u0456_\\u0434\\u0437\\u0451\\u043d\",MM:\"\\u043c\\u0435\\u0441\\u044f\\u0446_\\u043c\\u0435\\u0441\\u044f\\u0446\\u044b_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0430\\u045e\",yy:\"\\u0433\\u043e\\u0434_\\u0433\\u0430\\u0434\\u044b_\\u0433\\u0430\\u0434\\u043e\\u045e\"}[n].split(\"_\"),i%10==1&&i%100!=11?s[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?s[1]:s[2])}e.defineLocale(\"be\",{months:{format:\"\\u0441\\u0442\\u0443\\u0434\\u0437\\u0435\\u043d\\u044f_\\u043b\\u044e\\u0442\\u0430\\u0433\\u0430_\\u0441\\u0430\\u043a\\u0430\\u0432\\u0456\\u043a\\u0430_\\u043a\\u0440\\u0430\\u0441\\u0430\\u0432\\u0456\\u043a\\u0430_\\u0442\\u0440\\u0430\\u045e\\u043d\\u044f_\\u0447\\u044d\\u0440\\u0432\\u0435\\u043d\\u044f_\\u043b\\u0456\\u043f\\u0435\\u043d\\u044f_\\u0436\\u043d\\u0456\\u045e\\u043d\\u044f_\\u0432\\u0435\\u0440\\u0430\\u0441\\u043d\\u044f_\\u043a\\u0430\\u0441\\u0442\\u0440\\u044b\\u0447\\u043d\\u0456\\u043a\\u0430_\\u043b\\u0456\\u0441\\u0442\\u0430\\u043f\\u0430\\u0434\\u0430_\\u0441\\u043d\\u0435\\u0436\\u043d\\u044f\".split(\"_\"),standalone:\"\\u0441\\u0442\\u0443\\u0434\\u0437\\u0435\\u043d\\u044c_\\u043b\\u044e\\u0442\\u044b_\\u0441\\u0430\\u043a\\u0430\\u0432\\u0456\\u043a_\\u043a\\u0440\\u0430\\u0441\\u0430\\u0432\\u0456\\u043a_\\u0442\\u0440\\u0430\\u0432\\u0435\\u043d\\u044c_\\u0447\\u044d\\u0440\\u0432\\u0435\\u043d\\u044c_\\u043b\\u0456\\u043f\\u0435\\u043d\\u044c_\\u0436\\u043d\\u0456\\u0432\\u0435\\u043d\\u044c_\\u0432\\u0435\\u0440\\u0430\\u0441\\u0435\\u043d\\u044c_\\u043a\\u0430\\u0441\\u0442\\u0440\\u044b\\u0447\\u043d\\u0456\\u043a_\\u043b\\u0456\\u0441\\u0442\\u0430\\u043f\\u0430\\u0434_\\u0441\\u043d\\u0435\\u0436\\u0430\\u043d\\u044c\".split(\"_\")},monthsShort:\"\\u0441\\u0442\\u0443\\u0434_\\u043b\\u044e\\u0442_\\u0441\\u0430\\u043a_\\u043a\\u0440\\u0430\\u0441_\\u0442\\u0440\\u0430\\u0432_\\u0447\\u044d\\u0440\\u0432_\\u043b\\u0456\\u043f_\\u0436\\u043d\\u0456\\u0432_\\u0432\\u0435\\u0440_\\u043a\\u0430\\u0441\\u0442_\\u043b\\u0456\\u0441\\u0442_\\u0441\\u043d\\u0435\\u0436\".split(\"_\"),weekdays:{format:\"\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u044e_\\u043f\\u0430\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u0430\\u043a_\\u0430\\u045e\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0435\\u0440\\u0430\\u0434\\u0443_\\u0447\\u0430\\u0446\\u0432\\u0435\\u0440_\\u043f\\u044f\\u0442\\u043d\\u0456\\u0446\\u0443_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),standalone:\"\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u044f_\\u043f\\u0430\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u0430\\u043a_\\u0430\\u045e\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0435\\u0440\\u0430\\u0434\\u0430_\\u0447\\u0430\\u0446\\u0432\\u0435\\u0440_\\u043f\\u044f\\u0442\\u043d\\u0456\\u0446\\u0430_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),isFormat:/\\[ ?[\\u0423\\u0443\\u045e] ?(?:\\u043c\\u0456\\u043d\\u0443\\u043b\\u0443\\u044e|\\u043d\\u0430\\u0441\\u0442\\u0443\\u043f\\u043d\\u0443\\u044e)? ?\\] ?dddd/},weekdaysShort:\"\\u043d\\u0434_\\u043f\\u043d_\\u0430\\u0442_\\u0441\\u0440_\\u0447\\u0446_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0430\\u0442_\\u0441\\u0440_\\u0447\\u0446_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0433.\",LLL:\"D MMMM YYYY \\u0433., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0433., HH:mm\"},calendar:{sameDay:\"[\\u0421\\u0451\\u043d\\u043d\\u044f \\u045e] LT\",nextDay:\"[\\u0417\\u0430\\u045e\\u0442\\u0440\\u0430 \\u045e] LT\",lastDay:\"[\\u0423\\u0447\\u043e\\u0440\\u0430 \\u045e] LT\",nextWeek:function(){return\"[\\u0423] dddd [\\u045e] LT\"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return\"[\\u0423 \\u043c\\u0456\\u043d\\u0443\\u043b\\u0443\\u044e] dddd [\\u045e] LT\";case 1:case 2:case 4:return\"[\\u0423 \\u043c\\u0456\\u043d\\u0443\\u043b\\u044b] dddd [\\u045e] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u043f\\u0440\\u0430\\u0437 %s\",past:\"%s \\u0442\\u0430\\u043c\\u0443\",s:\"\\u043d\\u0435\\u043a\\u0430\\u043b\\u044c\\u043a\\u0456 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:t,mm:t,h:t,hh:t,d:\"\\u0434\\u0437\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0435\\u0441\\u044f\\u0446\",MM:t,y:\"\\u0433\\u043e\\u0434\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u044b|\\u0440\\u0430\\u043d\\u0456\\u0446\\u044b|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430/,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u044b\":e<12?\"\\u0440\\u0430\\u043d\\u0456\\u0446\\u044b\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0456|\\u044b|\\u0433\\u0430)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e%10!=2&&e%10!=3||e%100==12||e%100==13?e+\"-\\u044b\":e+\"-\\u0456\";case\"D\":return e+\"-\\u0433\\u0430\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},HP3h:function(e,t,n){!function(e){\"use strict\";var t={1:\"1\",2:\"2\",3:\"3\",4:\"4\",5:\"5\",6:\"6\",7:\"7\",8:\"8\",9:\"9\",0:\"0\"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},i={s:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062b\\u0627\\u0646\\u064a\\u0629\",\"\\u062b\\u0627\\u0646\\u064a\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u0627\\u0646\",\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u064a\\u0646\"],\"%d \\u062b\\u0648\\u0627\\u0646\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\"],m:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062f\\u0642\\u064a\\u0642\\u0629\",\"\\u062f\\u0642\\u064a\\u0642\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u0627\\u0646\",\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u064a\\u0646\"],\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\"],h:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0633\\u0627\\u0639\\u0629\",\"\\u0633\\u0627\\u0639\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u0633\\u0627\\u0639\\u062a\\u0627\\u0646\",\"\\u0633\\u0627\\u0639\\u062a\\u064a\\u0646\"],\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",\"%d \\u0633\\u0627\\u0639\\u0629\",\"%d \\u0633\\u0627\\u0639\\u0629\"],d:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u064a\\u0648\\u0645\",\"\\u064a\\u0648\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u064a\\u0648\\u0645\\u0627\\u0646\",\"\\u064a\\u0648\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u064a\\u0627\\u0645\",\"%d \\u064a\\u0648\\u0645\\u064b\\u0627\",\"%d \\u064a\\u0648\\u0645\"],M:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0634\\u0647\\u0631\",\"\\u0634\\u0647\\u0631 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0634\\u0647\\u0631\\u0627\\u0646\",\"\\u0634\\u0647\\u0631\\u064a\\u0646\"],\"%d \\u0623\\u0634\\u0647\\u0631\",\"%d \\u0634\\u0647\\u0631\\u0627\",\"%d \\u0634\\u0647\\u0631\"],y:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0639\\u0627\\u0645\",\"\\u0639\\u0627\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0639\\u0627\\u0645\\u0627\\u0646\",\"\\u0639\\u0627\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u0639\\u0648\\u0627\\u0645\",\"%d \\u0639\\u0627\\u0645\\u064b\\u0627\",\"%d \\u0639\\u0627\\u0645\"]},s=function(e){return function(t,s,r,o){var a=n(t),l=i[e][n(t)];return 2===a&&(l=l[s?0:1]),l.replace(/%d/i,t)}},r=[\"\\u064a\\u0646\\u0627\\u064a\\u0631\",\"\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631\",\"\\u0645\\u0627\\u0631\\u0633\",\"\\u0623\\u0628\\u0631\\u064a\\u0644\",\"\\u0645\\u0627\\u064a\\u0648\",\"\\u064a\\u0648\\u0646\\u064a\\u0648\",\"\\u064a\\u0648\\u0644\\u064a\\u0648\",\"\\u0623\\u063a\\u0633\\u0637\\u0633\",\"\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631\",\"\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631\",\"\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\"];e.defineLocale(\"ar-ly\",{months:r,monthsShort:r,weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/\\u200fM/\\u200fYYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u064b\\u0627 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0628\\u0639\\u062f %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:s(\"s\"),ss:s(\"s\"),m:s(\"m\"),mm:s(\"m\"),h:s(\"h\"),hh:s(\"h\"),d:s(\"d\"),dd:s(\"d\"),M:s(\"M\"),MM:s(\"M\"),y:s(\"y\"),yy:s(\"y\")},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},IBtZ:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ka\",{months:{standalone:\"\\u10d8\\u10d0\\u10dc\\u10d5\\u10d0\\u10e0\\u10d8_\\u10d7\\u10d4\\u10d1\\u10d4\\u10e0\\u10d5\\u10d0\\u10da\\u10d8_\\u10db\\u10d0\\u10e0\\u10e2\\u10d8_\\u10d0\\u10de\\u10e0\\u10d8\\u10da\\u10d8_\\u10db\\u10d0\\u10d8\\u10e1\\u10d8_\\u10d8\\u10d5\\u10dc\\u10d8\\u10e1\\u10d8_\\u10d8\\u10d5\\u10da\\u10d8\\u10e1\\u10d8_\\u10d0\\u10d2\\u10d5\\u10d8\\u10e1\\u10e2\\u10dd_\\u10e1\\u10d4\\u10e5\\u10e2\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10dd\\u10e5\\u10e2\\u10dd\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10dc\\u10dd\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10d3\\u10d4\\u10d9\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8\".split(\"_\"),format:\"\\u10d8\\u10d0\\u10dc\\u10d5\\u10d0\\u10e0\\u10e1_\\u10d7\\u10d4\\u10d1\\u10d4\\u10e0\\u10d5\\u10d0\\u10da\\u10e1_\\u10db\\u10d0\\u10e0\\u10e2\\u10e1_\\u10d0\\u10de\\u10e0\\u10d8\\u10da\\u10d8\\u10e1_\\u10db\\u10d0\\u10d8\\u10e1\\u10e1_\\u10d8\\u10d5\\u10dc\\u10d8\\u10e1\\u10e1_\\u10d8\\u10d5\\u10da\\u10d8\\u10e1\\u10e1_\\u10d0\\u10d2\\u10d5\\u10d8\\u10e1\\u10e2\\u10e1_\\u10e1\\u10d4\\u10e5\\u10e2\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10dd\\u10e5\\u10e2\\u10dd\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10dc\\u10dd\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10d3\\u10d4\\u10d9\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1\".split(\"_\")},monthsShort:\"\\u10d8\\u10d0\\u10dc_\\u10d7\\u10d4\\u10d1_\\u10db\\u10d0\\u10e0_\\u10d0\\u10de\\u10e0_\\u10db\\u10d0\\u10d8_\\u10d8\\u10d5\\u10dc_\\u10d8\\u10d5\\u10da_\\u10d0\\u10d2\\u10d5_\\u10e1\\u10d4\\u10e5_\\u10dd\\u10e5\\u10e2_\\u10dc\\u10dd\\u10d4_\\u10d3\\u10d4\\u10d9\".split(\"_\"),weekdays:{standalone:\"\\u10d9\\u10d5\\u10d8\\u10e0\\u10d0_\\u10dd\\u10e0\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10e1\\u10d0\\u10db\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10dd\\u10d7\\u10ee\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10ee\\u10e3\\u10d7\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10de\\u10d0\\u10e0\\u10d0\\u10e1\\u10d9\\u10d4\\u10d5\\u10d8_\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8\".split(\"_\"),format:\"\\u10d9\\u10d5\\u10d8\\u10e0\\u10d0\\u10e1_\\u10dd\\u10e0\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10e1\\u10d0\\u10db\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10dd\\u10d7\\u10ee\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10ee\\u10e3\\u10d7\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10de\\u10d0\\u10e0\\u10d0\\u10e1\\u10d9\\u10d4\\u10d5\\u10e1_\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1\".split(\"_\"),isFormat:/(\\u10ec\\u10d8\\u10dc\\u10d0|\\u10e8\\u10d4\\u10db\\u10d3\\u10d4\\u10d2)/},weekdaysShort:\"\\u10d9\\u10d5\\u10d8_\\u10dd\\u10e0\\u10e8_\\u10e1\\u10d0\\u10db_\\u10dd\\u10d7\\u10ee_\\u10ee\\u10e3\\u10d7_\\u10de\\u10d0\\u10e0_\\u10e8\\u10d0\\u10d1\".split(\"_\"),weekdaysMin:\"\\u10d9\\u10d5_\\u10dd\\u10e0_\\u10e1\\u10d0_\\u10dd\\u10d7_\\u10ee\\u10e3_\\u10de\\u10d0_\\u10e8\\u10d0\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[\\u10d3\\u10e6\\u10d4\\u10e1] LT[-\\u10d6\\u10d4]\",nextDay:\"[\\u10ee\\u10d5\\u10d0\\u10da] LT[-\\u10d6\\u10d4]\",lastDay:\"[\\u10d2\\u10e3\\u10e8\\u10d8\\u10dc] LT[-\\u10d6\\u10d4]\",nextWeek:\"[\\u10e8\\u10d4\\u10db\\u10d3\\u10d4\\u10d2] dddd LT[-\\u10d6\\u10d4]\",lastWeek:\"[\\u10ec\\u10d8\\u10dc\\u10d0] dddd LT-\\u10d6\\u10d4\",sameElse:\"L\"},relativeTime:{future:function(e){return/(\\u10ec\\u10d0\\u10db\\u10d8|\\u10ec\\u10e3\\u10d7\\u10d8|\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8|\\u10ec\\u10d4\\u10da\\u10d8)/.test(e)?e.replace(/\\u10d8$/,\"\\u10e8\\u10d8\"):e+\"\\u10e8\\u10d8\"},past:function(e){return/(\\u10ec\\u10d0\\u10db\\u10d8|\\u10ec\\u10e3\\u10d7\\u10d8|\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8|\\u10d3\\u10e6\\u10d4|\\u10d7\\u10d5\\u10d4)/.test(e)?e.replace(/(\\u10d8|\\u10d4)$/,\"\\u10d8\\u10e1 \\u10ec\\u10d8\\u10dc\"):/\\u10ec\\u10d4\\u10da\\u10d8/.test(e)?e.replace(/\\u10ec\\u10d4\\u10da\\u10d8$/,\"\\u10ec\\u10da\\u10d8\\u10e1 \\u10ec\\u10d8\\u10dc\"):void 0},s:\"\\u10e0\\u10d0\\u10db\\u10d3\\u10d4\\u10dc\\u10d8\\u10db\\u10d4 \\u10ec\\u10d0\\u10db\\u10d8\",ss:\"%d \\u10ec\\u10d0\\u10db\\u10d8\",m:\"\\u10ec\\u10e3\\u10d7\\u10d8\",mm:\"%d \\u10ec\\u10e3\\u10d7\\u10d8\",h:\"\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8\",hh:\"%d \\u10e1\\u10d0\\u10d0\\u10d7\\u10d8\",d:\"\\u10d3\\u10e6\\u10d4\",dd:\"%d \\u10d3\\u10e6\\u10d4\",M:\"\\u10d7\\u10d5\\u10d4\",MM:\"%d \\u10d7\\u10d5\\u10d4\",y:\"\\u10ec\\u10d4\\u10da\\u10d8\",yy:\"%d \\u10ec\\u10d4\\u10da\\u10d8\"},dayOfMonthOrdinalParse:/0|1-\\u10da\\u10d8|\\u10db\\u10d4-\\d{1,2}|\\d{1,2}-\\u10d4/,ordinal:function(e){return 0===e?e:1===e?e+\"-\\u10da\\u10d8\":e<20||e<=100&&e%20==0||e%100==0?\"\\u10db\\u10d4-\"+e:e+\"-\\u10d4\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"Ivi+\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ko\",{months:\"1\\uc6d4_2\\uc6d4_3\\uc6d4_4\\uc6d4_5\\uc6d4_6\\uc6d4_7\\uc6d4_8\\uc6d4_9\\uc6d4_10\\uc6d4_11\\uc6d4_12\\uc6d4\".split(\"_\"),monthsShort:\"1\\uc6d4_2\\uc6d4_3\\uc6d4_4\\uc6d4_5\\uc6d4_6\\uc6d4_7\\uc6d4_8\\uc6d4_9\\uc6d4_10\\uc6d4_11\\uc6d4_12\\uc6d4\".split(\"_\"),weekdays:\"\\uc77c\\uc694\\uc77c_\\uc6d4\\uc694\\uc77c_\\ud654\\uc694\\uc77c_\\uc218\\uc694\\uc77c_\\ubaa9\\uc694\\uc77c_\\uae08\\uc694\\uc77c_\\ud1a0\\uc694\\uc77c\".split(\"_\"),weekdaysShort:\"\\uc77c_\\uc6d4_\\ud654_\\uc218_\\ubaa9_\\uae08_\\ud1a0\".split(\"_\"),weekdaysMin:\"\\uc77c_\\uc6d4_\\ud654_\\uc218_\\ubaa9_\\uae08_\\ud1a0\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY\\ub144 MMMM D\\uc77c\",LLL:\"YYYY\\ub144 MMMM D\\uc77c A h:mm\",LLLL:\"YYYY\\ub144 MMMM D\\uc77c dddd A h:mm\",l:\"YYYY.MM.DD.\",ll:\"YYYY\\ub144 MMMM D\\uc77c\",lll:\"YYYY\\ub144 MMMM D\\uc77c A h:mm\",llll:\"YYYY\\ub144 MMMM D\\uc77c dddd A h:mm\"},calendar:{sameDay:\"\\uc624\\ub298 LT\",nextDay:\"\\ub0b4\\uc77c LT\",nextWeek:\"dddd LT\",lastDay:\"\\uc5b4\\uc81c LT\",lastWeek:\"\\uc9c0\\ub09c\\uc8fc dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\ud6c4\",past:\"%s \\uc804\",s:\"\\uba87 \\ucd08\",ss:\"%d\\ucd08\",m:\"1\\ubd84\",mm:\"%d\\ubd84\",h:\"\\ud55c \\uc2dc\\uac04\",hh:\"%d\\uc2dc\\uac04\",d:\"\\ud558\\ub8e8\",dd:\"%d\\uc77c\",M:\"\\ud55c \\ub2ec\",MM:\"%d\\ub2ec\",y:\"\\uc77c \\ub144\",yy:\"%d\\ub144\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\uc77c|\\uc6d4|\\uc8fc)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\uc77c\";case\"M\":return e+\"\\uc6d4\";case\"w\":case\"W\":return e+\"\\uc8fc\";default:return e}},meridiemParse:/\\uc624\\uc804|\\uc624\\ud6c4/,isPM:function(e){return\"\\uc624\\ud6c4\"===e},meridiem:function(e,t,n){return e<12?\"\\uc624\\uc804\":\"\\uc624\\ud6c4\"}})}(n(\"wd/R\"))},\"JCF/\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"},i=[\"\\u06a9\\u0627\\u0646\\u0648\\u0646\\u06cc \\u062f\\u0648\\u0648\\u06d5\\u0645\",\"\\u0634\\u0648\\u0628\\u0627\\u062a\",\"\\u0626\\u0627\\u0632\\u0627\\u0631\",\"\\u0646\\u06cc\\u0633\\u0627\\u0646\",\"\\u0626\\u0627\\u06cc\\u0627\\u0631\",\"\\u062d\\u0648\\u0632\\u06d5\\u06cc\\u0631\\u0627\\u0646\",\"\\u062a\\u06d5\\u0645\\u0645\\u0648\\u0632\",\"\\u0626\\u0627\\u0628\",\"\\u0626\\u06d5\\u06cc\\u0644\\u0648\\u0648\\u0644\",\"\\u062a\\u0634\\u0631\\u06cc\\u0646\\u06cc \\u06cc\\u06d5\\u0643\\u06d5\\u0645\",\"\\u062a\\u0634\\u0631\\u06cc\\u0646\\u06cc \\u062f\\u0648\\u0648\\u06d5\\u0645\",\"\\u0643\\u0627\\u0646\\u0648\\u0646\\u06cc \\u06cc\\u06d5\\u06a9\\u06d5\\u0645\"];e.defineLocale(\"ku\",{months:i,monthsShort:i,weekdays:\"\\u06cc\\u0647\\u200c\\u0643\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u062f\\u0648\\u0648\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0633\\u06ce\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0686\\u0648\\u0627\\u0631\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u067e\\u06ce\\u0646\\u062c\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0647\\u0647\\u200c\\u06cc\\u0646\\u06cc_\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c\".split(\"_\"),weekdaysShort:\"\\u06cc\\u0647\\u200c\\u0643\\u0634\\u0647\\u200c\\u0645_\\u062f\\u0648\\u0648\\u0634\\u0647\\u200c\\u0645_\\u0633\\u06ce\\u0634\\u0647\\u200c\\u0645_\\u0686\\u0648\\u0627\\u0631\\u0634\\u0647\\u200c\\u0645_\\u067e\\u06ce\\u0646\\u062c\\u0634\\u0647\\u200c\\u0645_\\u0647\\u0647\\u200c\\u06cc\\u0646\\u06cc_\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c\".split(\"_\"),weekdaysMin:\"\\u06cc_\\u062f_\\u0633_\\u0686_\\u067e_\\u0647_\\u0634\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c|\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc/,isPM:function(e){return/\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c/.test(e)},meridiem:function(e,t,n){return e<12?\"\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc\":\"\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c\"},calendar:{sameDay:\"[\\u0626\\u0647\\u200c\\u0645\\u0631\\u06c6 \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",nextDay:\"[\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",nextWeek:\"dddd [\\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",lastDay:\"[\\u062f\\u0648\\u06ce\\u0646\\u06ce \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",lastWeek:\"dddd [\\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0644\\u0647\\u200c %s\",past:\"%s\",s:\"\\u0686\\u0647\\u200c\\u0646\\u062f \\u0686\\u0631\\u0643\\u0647\\u200c\\u06cc\\u0647\\u200c\\u0643\",ss:\"\\u0686\\u0631\\u0643\\u0647\\u200c %d\",m:\"\\u06cc\\u0647\\u200c\\u0643 \\u062e\\u0648\\u0644\\u0647\\u200c\\u0643\",mm:\"%d \\u062e\\u0648\\u0644\\u0647\\u200c\\u0643\",h:\"\\u06cc\\u0647\\u200c\\u0643 \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631\",hh:\"%d \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631\",d:\"\\u06cc\\u0647\\u200c\\u0643 \\u0695\\u06c6\\u0698\",dd:\"%d \\u0695\\u06c6\\u0698\",M:\"\\u06cc\\u0647\\u200c\\u0643 \\u0645\\u0627\\u0646\\u06af\",MM:\"%d \\u0645\\u0627\\u0646\\u06af\",y:\"\\u06cc\\u0647\\u200c\\u0643 \\u0633\\u0627\\u06b5\",yy:\"%d \\u0633\\u0627\\u06b5\"},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},JVSJ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i=e+\" \";switch(n){case\"ss\":return i+(1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\");case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return i+(1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\");case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return i+(1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\");case\"dd\":return i+(1===e?\"dan\":\"dana\");case\"MM\":return i+(1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\");case\"yy\":return i+(1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\")}}e.defineLocale(\"bs\",{months:\"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010der u] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:return\"[pro\\u0161lu] dddd [u] LT\";case 6:return\"[pro\\u0161le] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[pro\\u0161li] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},JvlW:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekund\\u0117_sekund\\u017ei\\u0173_sekundes\",m:\"minut\\u0117_minut\\u0117s_minut\\u0119\",mm:\"minut\\u0117s_minu\\u010di\\u0173_minutes\",h:\"valanda_valandos_valand\\u0105\",hh:\"valandos_valand\\u0173_valandas\",d:\"diena_dienos_dien\\u0105\",dd:\"dienos_dien\\u0173_dienas\",M:\"m\\u0117nuo_m\\u0117nesio_m\\u0117nes\\u012f\",MM:\"m\\u0117nesiai_m\\u0117nesi\\u0173_m\\u0117nesius\",y:\"metai_met\\u0173_metus\",yy:\"metai_met\\u0173_metus\"};function n(e,t,n,i){return t?s(n)[0]:i?s(n)[1]:s(n)[2]}function i(e){return e%10==0||e>10&&e<20}function s(e){return t[e].split(\"_\")}function r(e,t,r,o){var a=e+\" \";return 1===e?a+n(0,t,r[0],o):t?a+(i(e)?s(r)[1]:s(r)[0]):o?a+s(r)[1]:a+(i(e)?s(r)[1]:s(r)[2])}e.defineLocale(\"lt\",{months:{format:\"sausio_vasario_kovo_baland\\u017eio_gegu\\u017e\\u0117s_bir\\u017eelio_liepos_rugpj\\u016b\\u010dio_rugs\\u0117jo_spalio_lapkri\\u010dio_gruod\\u017eio\".split(\"_\"),standalone:\"sausis_vasaris_kovas_balandis_gegu\\u017e\\u0117_bir\\u017eelis_liepa_rugpj\\u016btis_rugs\\u0117jis_spalis_lapkritis_gruodis\".split(\"_\"),isFormat:/D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|MMMM?(\\[[^\\[\\]]*\\]|\\s)+D[oD]?/},monthsShort:\"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd\".split(\"_\"),weekdays:{format:\"sekmadien\\u012f_pirmadien\\u012f_antradien\\u012f_tre\\u010diadien\\u012f_ketvirtadien\\u012f_penktadien\\u012f_\\u0161e\\u0161tadien\\u012f\".split(\"_\"),standalone:\"sekmadienis_pirmadienis_antradienis_tre\\u010diadienis_ketvirtadienis_penktadienis_\\u0161e\\u0161tadienis\".split(\"_\"),isFormat:/dddd HH:mm/},weekdaysShort:\"Sek_Pir_Ant_Tre_Ket_Pen_\\u0160e\\u0161\".split(\"_\"),weekdaysMin:\"S_P_A_T_K_Pn_\\u0160\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY [m.] MMMM D [d.]\",LLL:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",LLLL:\"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]\",l:\"YYYY-MM-DD\",ll:\"YYYY [m.] MMMM D [d.]\",lll:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",llll:\"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]\"},calendar:{sameDay:\"[\\u0160iandien] LT\",nextDay:\"[Rytoj] LT\",nextWeek:\"dddd LT\",lastDay:\"[Vakar] LT\",lastWeek:\"[Pra\\u0117jus\\u012f] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"po %s\",past:\"prie\\u0161 %s\",s:function(e,t,n,i){return t?\"kelios sekund\\u0117s\":i?\"keli\\u0173 sekund\\u017ei\\u0173\":\"kelias sekundes\"},ss:r,m:n,mm:r,h:n,hh:r,d:n,dd:r,M:n,MM:r,y:n,yy:r},dayOfMonthOrdinalParse:/\\d{1,2}-oji/,ordinal:function(e){return e+\"-oji\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"K/tc\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"af\",{months:\"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag\".split(\"_\"),weekdaysShort:\"Son_Maa_Din_Woe_Don_Vry_Sat\".split(\"_\"),weekdaysMin:\"So_Ma_Di_Wo_Do_Vr_Sa\".split(\"_\"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"vm\":\"VM\":n?\"nm\":\"NM\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Vandag om] LT\",nextDay:\"[M\\xf4re om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[Gister om] LT\",lastWeek:\"[Laas] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oor %s\",past:\"%s gelede\",s:\"'n paar sekondes\",ss:\"%d sekondes\",m:\"'n minuut\",mm:\"%d minute\",h:\"'n uur\",hh:\"%d ure\",d:\"'n dag\",dd:\"%d dae\",M:\"'n maand\",MM:\"%d maande\",y:\"'n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},KSF8:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"vi\",{months:\"th\\xe1ng 1_th\\xe1ng 2_th\\xe1ng 3_th\\xe1ng 4_th\\xe1ng 5_th\\xe1ng 6_th\\xe1ng 7_th\\xe1ng 8_th\\xe1ng 9_th\\xe1ng 10_th\\xe1ng 11_th\\xe1ng 12\".split(\"_\"),monthsShort:\"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12\".split(\"_\"),monthsParseExact:!0,weekdays:\"ch\\u1ee7 nh\\u1eadt_th\\u1ee9 hai_th\\u1ee9 ba_th\\u1ee9 t\\u01b0_th\\u1ee9 n\\u0103m_th\\u1ee9 s\\xe1u_th\\u1ee9 b\\u1ea3y\".split(\"_\"),weekdaysShort:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysMin:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"sa\":\"SA\":n?\"ch\":\"CH\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [n\\u0103m] YYYY\",LLL:\"D MMMM [n\\u0103m] YYYY HH:mm\",LLLL:\"dddd, D MMMM [n\\u0103m] YYYY HH:mm\",l:\"DD/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[H\\xf4m nay l\\xfac] LT\",nextDay:\"[Ng\\xe0y mai l\\xfac] LT\",nextWeek:\"dddd [tu\\u1ea7n t\\u1edbi l\\xfac] LT\",lastDay:\"[H\\xf4m qua l\\xfac] LT\",lastWeek:\"dddd [tu\\u1ea7n r\\u1ed3i l\\xfac] LT\",sameElse:\"L\"},relativeTime:{future:\"%s t\\u1edbi\",past:\"%s tr\\u01b0\\u1edbc\",s:\"v\\xe0i gi\\xe2y\",ss:\"%d gi\\xe2y\",m:\"m\\u1ed9t ph\\xfat\",mm:\"%d ph\\xfat\",h:\"m\\u1ed9t gi\\u1edd\",hh:\"%d gi\\u1edd\",d:\"m\\u1ed9t ng\\xe0y\",dd:\"%d ng\\xe0y\",M:\"m\\u1ed9t th\\xe1ng\",MM:\"%d th\\xe1ng\",y:\"m\\u1ed9t n\\u0103m\",yy:\"%d n\\u0103m\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(\"wd/R\"))},KTz0:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekund\",\"sekunda\",\"sekundi\"],m:[\"jedan minut\",\"jednog minuta\"],mm:[\"minut\",\"minuta\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mjesec\",\"mjeseca\",\"mjeseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var s=t.words[i];return 1===i.length?n?s[0]:s[1]:e+\" \"+t.correctGrammaticalCase(e,s)}};e.defineLocale(\"me\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sjutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010de u] LT\",lastWeek:function(){return[\"[pro\\u0161le] [nedjelje] [u] LT\",\"[pro\\u0161log] [ponedjeljka] [u] LT\",\"[pro\\u0161log] [utorka] [u] LT\",\"[pro\\u0161le] [srijede] [u] LT\",\"[pro\\u0161log] [\\u010detvrtka] [u] LT\",\"[pro\\u0161log] [petka] [u] LT\",\"[pro\\u0161le] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mjesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},Loxo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440_\\u043d\\u043e\\u044f\\u0431\\u0440_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u042f\\u043a\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0414\\u0443\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0421\\u0435\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0427\\u043e\\u0440\\u0448\\u0430\\u043d\\u0431\\u0430_\\u041f\\u0430\\u0439\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0416\\u0443\\u043c\\u0430_\\u0428\\u0430\\u043d\\u0431\\u0430\".split(\"_\"),weekdaysShort:\"\\u042f\\u043a\\u0448_\\u0414\\u0443\\u0448_\\u0421\\u0435\\u0448_\\u0427\\u043e\\u0440_\\u041f\\u0430\\u0439_\\u0416\\u0443\\u043c_\\u0428\\u0430\\u043d\".split(\"_\"),weekdaysMin:\"\\u042f\\u043a_\\u0414\\u0443_\\u0421\\u0435_\\u0427\\u043e_\\u041f\\u0430_\\u0416\\u0443_\\u0428\\u0430\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[\\u0411\\u0443\\u0433\\u0443\\u043d \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",nextDay:\"[\\u042d\\u0440\\u0442\\u0430\\u0433\\u0430] LT [\\u0434\\u0430]\",nextWeek:\"dddd [\\u043a\\u0443\\u043d\\u0438 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",lastDay:\"[\\u041a\\u0435\\u0447\\u0430 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",lastWeek:\"[\\u0423\\u0442\\u0433\\u0430\\u043d] dddd [\\u043a\\u0443\\u043d\\u0438 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",sameElse:\"L\"},relativeTime:{future:\"\\u042f\\u043a\\u0438\\u043d %s \\u0438\\u0447\\u0438\\u0434\\u0430\",past:\"\\u0411\\u0438\\u0440 \\u043d\\u0435\\u0447\\u0430 %s \\u043e\\u043b\\u0434\\u0438\\u043d\",s:\"\\u0444\\u0443\\u0440\\u0441\\u0430\\u0442\",ss:\"%d \\u0444\\u0443\\u0440\\u0441\\u0430\\u0442\",m:\"\\u0431\\u0438\\u0440 \\u0434\\u0430\\u043a\\u0438\\u043a\\u0430\",mm:\"%d \\u0434\\u0430\\u043a\\u0438\\u043a\\u0430\",h:\"\\u0431\\u0438\\u0440 \\u0441\\u043e\\u0430\\u0442\",hh:\"%d \\u0441\\u043e\\u0430\\u0442\",d:\"\\u0431\\u0438\\u0440 \\u043a\\u0443\\u043d\",dd:\"%d \\u043a\\u0443\\u043d\",M:\"\\u0431\\u0438\\u0440 \\u043e\\u0439\",MM:\"%d \\u043e\\u0439\",y:\"\\u0431\\u0438\\u0440 \\u0439\\u0438\\u043b\",yy:\"%d \\u0439\\u0438\\u043b\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},OIYi:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ca\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"YYYY-MM-DD\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(\"wd/R\"))},Oaa7:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-gb\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Ob0Z:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};function i(e,t,n,i){var s=\"\";if(t)switch(n){case\"s\":s=\"\\u0915\\u093e\\u0939\\u0940 \\u0938\\u0947\\u0915\\u0902\\u0926\";break;case\"ss\":s=\"%d \\u0938\\u0947\\u0915\\u0902\\u0926\";break;case\"m\":s=\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u093f\\u091f\";break;case\"mm\":s=\"%d \\u092e\\u093f\\u0928\\u093f\\u091f\\u0947\";break;case\"h\":s=\"\\u090f\\u0915 \\u0924\\u093e\\u0938\";break;case\"hh\":s=\"%d \\u0924\\u093e\\u0938\";break;case\"d\":s=\"\\u090f\\u0915 \\u0926\\u093f\\u0935\\u0938\";break;case\"dd\":s=\"%d \\u0926\\u093f\\u0935\\u0938\";break;case\"M\":s=\"\\u090f\\u0915 \\u092e\\u0939\\u093f\\u0928\\u093e\";break;case\"MM\":s=\"%d \\u092e\\u0939\\u093f\\u0928\\u0947\";break;case\"y\":s=\"\\u090f\\u0915 \\u0935\\u0930\\u094d\\u0937\";break;case\"yy\":s=\"%d \\u0935\\u0930\\u094d\\u0937\\u0947\"}else switch(n){case\"s\":s=\"\\u0915\\u093e\\u0939\\u0940 \\u0938\\u0947\\u0915\\u0902\\u0926\\u093e\\u0902\";break;case\"ss\":s=\"%d \\u0938\\u0947\\u0915\\u0902\\u0926\\u093e\\u0902\";break;case\"m\":s=\"\\u090f\\u0915\\u093e \\u092e\\u093f\\u0928\\u093f\\u091f\\u093e\";break;case\"mm\":s=\"%d \\u092e\\u093f\\u0928\\u093f\\u091f\\u093e\\u0902\";break;case\"h\":s=\"\\u090f\\u0915\\u093e \\u0924\\u093e\\u0938\\u093e\";break;case\"hh\":s=\"%d \\u0924\\u093e\\u0938\\u093e\\u0902\";break;case\"d\":s=\"\\u090f\\u0915\\u093e \\u0926\\u093f\\u0935\\u0938\\u093e\";break;case\"dd\":s=\"%d \\u0926\\u093f\\u0935\\u0938\\u093e\\u0902\";break;case\"M\":s=\"\\u090f\\u0915\\u093e \\u092e\\u0939\\u093f\\u0928\\u094d\\u092f\\u093e\";break;case\"MM\":s=\"%d \\u092e\\u0939\\u093f\\u0928\\u094d\\u092f\\u093e\\u0902\";break;case\"y\":s=\"\\u090f\\u0915\\u093e \\u0935\\u0930\\u094d\\u0937\\u093e\";break;case\"yy\":s=\"%d \\u0935\\u0930\\u094d\\u0937\\u093e\\u0902\"}return s.replace(/%d/i,e)}e.defineLocale(\"mr\",{months:\"\\u091c\\u093e\\u0928\\u0947\\u0935\\u093e\\u0930\\u0940_\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941\\u0935\\u093e\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u090f\\u092a\\u094d\\u0930\\u093f\\u0932_\\u092e\\u0947_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932\\u0948_\\u0911\\u0917\\u0938\\u094d\\u091f_\\u0938\\u092a\\u094d\\u091f\\u0947\\u0902\\u092c\\u0930_\\u0911\\u0915\\u094d\\u091f\\u094b\\u092c\\u0930_\\u0928\\u094b\\u0935\\u094d\\u0939\\u0947\\u0902\\u092c\\u0930_\\u0921\\u093f\\u0938\\u0947\\u0902\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u093e\\u0928\\u0947._\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941._\\u092e\\u093e\\u0930\\u094d\\u091a._\\u090f\\u092a\\u094d\\u0930\\u093f._\\u092e\\u0947._\\u091c\\u0942\\u0928._\\u091c\\u0941\\u0932\\u0948._\\u0911\\u0917._\\u0938\\u092a\\u094d\\u091f\\u0947\\u0902._\\u0911\\u0915\\u094d\\u091f\\u094b._\\u0928\\u094b\\u0935\\u094d\\u0939\\u0947\\u0902._\\u0921\\u093f\\u0938\\u0947\\u0902.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0930\\u0935\\u093f\\u0935\\u093e\\u0930_\\u0938\\u094b\\u092e\\u0935\\u093e\\u0930_\\u092e\\u0902\\u0917\\u0933\\u0935\\u093e\\u0930_\\u092c\\u0941\\u0927\\u0935\\u093e\\u0930_\\u0917\\u0941\\u0930\\u0942\\u0935\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u0935\\u093e\\u0930_\\u0936\\u0928\\u093f\\u0935\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0930\\u0935\\u093f_\\u0938\\u094b\\u092e_\\u092e\\u0902\\u0917\\u0933_\\u092c\\u0941\\u0927_\\u0917\\u0941\\u0930\\u0942_\\u0936\\u0941\\u0915\\u094d\\u0930_\\u0936\\u0928\\u093f\".split(\"_\"),weekdaysMin:\"\\u0930_\\u0938\\u094b_\\u092e\\u0902_\\u092c\\u0941_\\u0917\\u0941_\\u0936\\u0941_\\u0936\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\",LTS:\"A h:mm:ss \\u0935\\u093e\\u091c\\u0924\\u093e\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u0909\\u0926\\u094d\\u092f\\u093e] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0915\\u093e\\u0932] LT\",lastWeek:\"[\\u092e\\u093e\\u0917\\u0940\\u0932] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u092e\\u0927\\u094d\\u092f\\u0947\",past:\"%s\\u092a\\u0942\\u0930\\u094d\\u0935\\u0940\",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940|\\u0938\\u0915\\u093e\\u0933\\u0940|\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940|\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\"===t?e<4?e:e+12:\"\\u0938\\u0915\\u093e\\u0933\\u0940\"===t?e:\"\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940\"===t?e>=10?e:e+12:\"\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\":e<10?\"\\u0938\\u0915\\u093e\\u0933\\u0940\":e<17?\"\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940\":e<20?\"\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940\":\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},OjkT:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};e.defineLocale(\"ne\",{months:\"\\u091c\\u0928\\u0935\\u0930\\u0940_\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941\\u0935\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u093f\\u0932_\\u092e\\u0908_\\u091c\\u0941\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908_\\u0905\\u0917\\u0937\\u094d\\u091f_\\u0938\\u0947\\u092a\\u094d\\u091f\\u0947\\u092e\\u094d\\u092c\\u0930_\\u0905\\u0915\\u094d\\u091f\\u094b\\u092c\\u0930_\\u0928\\u094b\\u092d\\u0947\\u092e\\u094d\\u092c\\u0930_\\u0921\\u093f\\u0938\\u0947\\u092e\\u094d\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u0928._\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941._\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u093f._\\u092e\\u0908_\\u091c\\u0941\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908._\\u0905\\u0917._\\u0938\\u0947\\u092a\\u094d\\u091f._\\u0905\\u0915\\u094d\\u091f\\u094b._\\u0928\\u094b\\u092d\\u0947._\\u0921\\u093f\\u0938\\u0947.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0906\\u0907\\u0924\\u092c\\u093e\\u0930_\\u0938\\u094b\\u092e\\u092c\\u093e\\u0930_\\u092e\\u0919\\u094d\\u0917\\u0932\\u092c\\u093e\\u0930_\\u092c\\u0941\\u0927\\u092c\\u093e\\u0930_\\u092c\\u093f\\u0939\\u093f\\u092c\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u092c\\u093e\\u0930_\\u0936\\u0928\\u093f\\u092c\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0906\\u0907\\u0924._\\u0938\\u094b\\u092e._\\u092e\\u0919\\u094d\\u0917\\u0932._\\u092c\\u0941\\u0927._\\u092c\\u093f\\u0939\\u093f._\\u0936\\u0941\\u0915\\u094d\\u0930._\\u0936\\u0928\\u093f.\".split(\"_\"),weekdaysMin:\"\\u0906._\\u0938\\u094b._\\u092e\\u0902._\\u092c\\u0941._\\u092c\\u093f._\\u0936\\u0941._\\u0936.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\",LTS:\"A\\u0915\\u094b h:mm:ss \\u092c\\u091c\\u0947\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\",LLLL:\"dddd, D MMMM YYYY, A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\"},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924\\u093f|\\u092c\\u093f\\u0939\\u093e\\u0928|\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b|\\u0938\\u093e\\u0901\\u091d/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\\u093f\"===t?e<4?e:e+12:\"\\u092c\\u093f\\u0939\\u093e\\u0928\"===t?e:\"\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b\"===t?e>=10?e:e+12:\"\\u0938\\u093e\\u0901\\u091d\"===t?e+12:void 0},meridiem:function(e,t,n){return e<3?\"\\u0930\\u093e\\u0924\\u093f\":e<12?\"\\u092c\\u093f\\u0939\\u093e\\u0928\":e<16?\"\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b\":e<20?\"\\u0938\\u093e\\u0901\\u091d\":\"\\u0930\\u093e\\u0924\\u093f\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u092d\\u094b\\u0932\\u093f] LT\",nextWeek:\"[\\u0906\\u0909\\u0901\\u0926\\u094b] dddd[,] LT\",lastDay:\"[\\u0939\\u093f\\u091c\\u094b] LT\",lastWeek:\"[\\u0917\\u090f\\u0915\\u094b] dddd[,] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u092e\\u093e\",past:\"%s \\u0905\\u0917\\u093e\\u0921\\u093f\",s:\"\\u0915\\u0947\\u0939\\u0940 \\u0915\\u094d\\u0937\\u0923\",ss:\"%d \\u0938\\u0947\\u0915\\u0947\\u0923\\u094d\\u0921\",m:\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u0947\\u091f\",mm:\"%d \\u092e\\u093f\\u0928\\u0947\\u091f\",h:\"\\u090f\\u0915 \\u0918\\u0923\\u094d\\u091f\\u093e\",hh:\"%d \\u0918\\u0923\\u094d\\u091f\\u093e\",d:\"\\u090f\\u0915 \\u0926\\u093f\\u0928\",dd:\"%d \\u0926\\u093f\\u0928\",M:\"\\u090f\\u0915 \\u092e\\u0939\\u093f\\u0928\\u093e\",MM:\"%d \\u092e\\u0939\\u093f\\u0928\\u093e\",y:\"\\u090f\\u0915 \\u092c\\u0930\\u094d\\u0937\",yy:\"%d \\u092c\\u0930\\u094d\\u0937\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},Oxv6:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0443\\u043c\",1:\"-\\u0443\\u043c\",2:\"-\\u044e\\u043c\",3:\"-\\u044e\\u043c\",4:\"-\\u0443\\u043c\",5:\"-\\u0443\\u043c\",6:\"-\\u0443\\u043c\",7:\"-\\u0443\\u043c\",8:\"-\\u0443\\u043c\",9:\"-\\u0443\\u043c\",10:\"-\\u0443\\u043c\",12:\"-\\u0443\\u043c\",13:\"-\\u0443\\u043c\",20:\"-\\u0443\\u043c\",30:\"-\\u044e\\u043c\",40:\"-\\u0443\\u043c\",50:\"-\\u0443\\u043c\",60:\"-\\u0443\\u043c\",70:\"-\\u0443\\u043c\",80:\"-\\u0443\\u043c\",90:\"-\\u0443\\u043c\",100:\"-\\u0443\\u043c\"};e.defineLocale(\"tg\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440_\\u043d\\u043e\\u044f\\u0431\\u0440_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u044f\\u043a\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0434\\u0443\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0441\\u0435\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0447\\u043e\\u0440\\u0448\\u0430\\u043d\\u0431\\u0435_\\u043f\\u0430\\u043d\\u04b7\\u0448\\u0430\\u043d\\u0431\\u0435_\\u04b7\\u0443\\u043c\\u044a\\u0430_\\u0448\\u0430\\u043d\\u0431\\u0435\".split(\"_\"),weekdaysShort:\"\\u044f\\u0448\\u0431_\\u0434\\u0448\\u0431_\\u0441\\u0448\\u0431_\\u0447\\u0448\\u0431_\\u043f\\u0448\\u0431_\\u04b7\\u0443\\u043c_\\u0448\\u043d\\u0431\".split(\"_\"),weekdaysMin:\"\\u044f\\u0448_\\u0434\\u0448_\\u0441\\u0448_\\u0447\\u0448_\\u043f\\u0448_\\u04b7\\u043c_\\u0448\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0418\\u043c\\u0440\\u04ef\\u0437 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",nextDay:\"[\\u041f\\u0430\\u0433\\u043e\\u04b3 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",lastDay:\"[\\u0414\\u0438\\u0440\\u04ef\\u0437 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",nextWeek:\"dddd[\\u0438] [\\u04b3\\u0430\\u0444\\u0442\\u0430\\u0438 \\u043e\\u044f\\u043d\\u0434\\u0430 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",lastWeek:\"dddd[\\u0438] [\\u04b3\\u0430\\u0444\\u0442\\u0430\\u0438 \\u0433\\u0443\\u0437\\u0430\\u0448\\u0442\\u0430 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0431\\u0430\\u044a\\u0434\\u0438 %s\",past:\"%s \\u043f\\u0435\\u0448\",s:\"\\u044f\\u043a\\u0447\\u0430\\u043d\\u0434 \\u0441\\u043e\\u043d\\u0438\\u044f\",m:\"\\u044f\\u043a \\u0434\\u0430\\u049b\\u0438\\u049b\\u0430\",mm:\"%d \\u0434\\u0430\\u049b\\u0438\\u049b\\u0430\",h:\"\\u044f\\u043a \\u0441\\u043e\\u0430\\u0442\",hh:\"%d \\u0441\\u043e\\u0430\\u0442\",d:\"\\u044f\\u043a \\u0440\\u04ef\\u0437\",dd:\"%d \\u0440\\u04ef\\u0437\",M:\"\\u044f\\u043a \\u043c\\u043e\\u04b3\",MM:\"%d \\u043c\\u043e\\u04b3\",y:\"\\u044f\\u043a \\u0441\\u043e\\u043b\",yy:\"%d \\u0441\\u043e\\u043b\"},meridiemParse:/\\u0448\\u0430\\u0431|\\u0441\\u0443\\u0431\\u04b3|\\u0440\\u04ef\\u0437|\\u0431\\u0435\\u0433\\u043e\\u04b3/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0448\\u0430\\u0431\"===t?e<4?e:e+12:\"\\u0441\\u0443\\u0431\\u04b3\"===t?e:\"\\u0440\\u04ef\\u0437\"===t?e>=11?e:e+12:\"\\u0431\\u0435\\u0433\\u043e\\u04b3\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0448\\u0430\\u0431\":e<11?\"\\u0441\\u0443\\u0431\\u04b3\":e<16?\"\\u0440\\u04ef\\u0437\":e<19?\"\\u0431\\u0435\\u0433\\u043e\\u04b3\":\"\\u0448\\u0430\\u0431\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0443\\u043c|\\u044e\\u043c)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},PA2r:function(e,t,n){!function(e){\"use strict\";var t=\"leden_\\xfanor_b\\u0159ezen_duben_kv\\u011bten_\\u010derven_\\u010dervenec_srpen_z\\xe1\\u0159\\xed_\\u0159\\xedjen_listopad_prosinec\".split(\"_\"),n=\"led_\\xfano_b\\u0159e_dub_kv\\u011b_\\u010dvn_\\u010dvc_srp_z\\xe1\\u0159_\\u0159\\xedj_lis_pro\".split(\"_\"),i=[/^led/i,/^\\xfano/i,/^b\\u0159e/i,/^dub/i,/^kv\\u011b/i,/^(\\u010dvn|\\u010derven$|\\u010dervna)/i,/^(\\u010dvc|\\u010dervenec|\\u010dervence)/i,/^srp/i,/^z\\xe1\\u0159/i,/^\\u0159\\xedj/i,/^lis/i,/^pro/i],s=/^(leden|\\xfanor|b\\u0159ezen|duben|kv\\u011bten|\\u010dervenec|\\u010dervence|\\u010derven|\\u010dervna|srpen|z\\xe1\\u0159\\xed|\\u0159\\xedjen|listopad|prosinec|led|\\xfano|b\\u0159e|dub|kv\\u011b|\\u010dvn|\\u010dvc|srp|z\\xe1\\u0159|\\u0159\\xedj|lis|pro)/i;function r(e){return e>1&&e<5&&1!=~~(e/10)}function o(e,t,n,i){var s=e+\" \";switch(n){case\"s\":return t||i?\"p\\xe1r sekund\":\"p\\xe1r sekundami\";case\"ss\":return t||i?s+(r(e)?\"sekundy\":\"sekund\"):s+\"sekundami\";case\"m\":return t?\"minuta\":i?\"minutu\":\"minutou\";case\"mm\":return t||i?s+(r(e)?\"minuty\":\"minut\"):s+\"minutami\";case\"h\":return t?\"hodina\":i?\"hodinu\":\"hodinou\";case\"hh\":return t||i?s+(r(e)?\"hodiny\":\"hodin\"):s+\"hodinami\";case\"d\":return t||i?\"den\":\"dnem\";case\"dd\":return t||i?s+(r(e)?\"dny\":\"dn\\xed\"):s+\"dny\";case\"M\":return t||i?\"m\\u011bs\\xedc\":\"m\\u011bs\\xedcem\";case\"MM\":return t||i?s+(r(e)?\"m\\u011bs\\xedce\":\"m\\u011bs\\xedc\\u016f\"):s+\"m\\u011bs\\xedci\";case\"y\":return t||i?\"rok\":\"rokem\";case\"yy\":return t||i?s+(r(e)?\"roky\":\"let\"):s+\"lety\"}}e.defineLocale(\"cs\",{months:t,monthsShort:n,monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(leden|ledna|\\xfanora|\\xfanor|b\\u0159ezen|b\\u0159ezna|duben|dubna|kv\\u011bten|kv\\u011btna|\\u010dervenec|\\u010dervence|\\u010derven|\\u010dervna|srpen|srpna|z\\xe1\\u0159\\xed|\\u0159\\xedjen|\\u0159\\xedjna|listopadu|listopad|prosinec|prosince)/i,monthsShortStrictRegex:/^(led|\\xfano|b\\u0159e|dub|kv\\u011b|\\u010dvn|\\u010dvc|srp|z\\xe1\\u0159|\\u0159\\xedj|lis|pro)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"ned\\u011ble_pond\\u011bl\\xed_\\xfater\\xfd_st\\u0159eda_\\u010dtvrtek_p\\xe1tek_sobota\".split(\"_\"),weekdaysShort:\"ne_po_\\xfat_st_\\u010dt_p\\xe1_so\".split(\"_\"),weekdaysMin:\"ne_po_\\xfat_st_\\u010dt_p\\xe1_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\",l:\"D. M. YYYY\"},calendar:{sameDay:\"[dnes v] LT\",nextDay:\"[z\\xedtra v] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v ned\\u011bli v] LT\";case 1:case 2:return\"[v] dddd [v] LT\";case 3:return\"[ve st\\u0159edu v] LT\";case 4:return\"[ve \\u010dtvrtek v] LT\";case 5:return\"[v p\\xe1tek v] LT\";case 6:return\"[v sobotu v] LT\"}},lastDay:\"[v\\u010dera v] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minulou ned\\u011bli v] LT\";case 1:case 2:return\"[minul\\xe9] dddd [v] LT\";case 3:return\"[minulou st\\u0159edu v] LT\";case 4:case 5:return\"[minul\\xfd] dddd [v] LT\";case 6:return\"[minulou sobotu v] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"p\\u0159ed %s\",s:o,ss:o,m:o,mm:o,h:o,hh:o,d:o,dd:o,M:o,MM:o,y:o,yy:o},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},PeUW:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0be7\",2:\"\\u0be8\",3:\"\\u0be9\",4:\"\\u0bea\",5:\"\\u0beb\",6:\"\\u0bec\",7:\"\\u0bed\",8:\"\\u0bee\",9:\"\\u0bef\",0:\"\\u0be6\"},n={\"\\u0be7\":\"1\",\"\\u0be8\":\"2\",\"\\u0be9\":\"3\",\"\\u0bea\":\"4\",\"\\u0beb\":\"5\",\"\\u0bec\":\"6\",\"\\u0bed\":\"7\",\"\\u0bee\":\"8\",\"\\u0bef\":\"9\",\"\\u0be6\":\"0\"};e.defineLocale(\"ta\",{months:\"\\u0b9c\\u0ba9\\u0bb5\\u0bb0\\u0bbf_\\u0baa\\u0bbf\\u0baa\\u0bcd\\u0bb0\\u0bb5\\u0bb0\\u0bbf_\\u0bae\\u0bbe\\u0bb0\\u0bcd\\u0b9a\\u0bcd_\\u0b8f\\u0baa\\u0bcd\\u0bb0\\u0bb2\\u0bcd_\\u0bae\\u0bc7_\\u0b9c\\u0bc2\\u0ba9\\u0bcd_\\u0b9c\\u0bc2\\u0bb2\\u0bc8_\\u0b86\\u0b95\\u0bb8\\u0bcd\\u0b9f\\u0bcd_\\u0b9a\\u0bc6\\u0baa\\u0bcd\\u0b9f\\u0bc6\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b85\\u0b95\\u0bcd\\u0b9f\\u0bc7\\u0bbe\\u0baa\\u0bb0\\u0bcd_\\u0ba8\\u0bb5\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b9f\\u0bbf\\u0b9a\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd\".split(\"_\"),monthsShort:\"\\u0b9c\\u0ba9\\u0bb5\\u0bb0\\u0bbf_\\u0baa\\u0bbf\\u0baa\\u0bcd\\u0bb0\\u0bb5\\u0bb0\\u0bbf_\\u0bae\\u0bbe\\u0bb0\\u0bcd\\u0b9a\\u0bcd_\\u0b8f\\u0baa\\u0bcd\\u0bb0\\u0bb2\\u0bcd_\\u0bae\\u0bc7_\\u0b9c\\u0bc2\\u0ba9\\u0bcd_\\u0b9c\\u0bc2\\u0bb2\\u0bc8_\\u0b86\\u0b95\\u0bb8\\u0bcd\\u0b9f\\u0bcd_\\u0b9a\\u0bc6\\u0baa\\u0bcd\\u0b9f\\u0bc6\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b85\\u0b95\\u0bcd\\u0b9f\\u0bc7\\u0bbe\\u0baa\\u0bb0\\u0bcd_\\u0ba8\\u0bb5\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b9f\\u0bbf\\u0b9a\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd\".split(\"_\"),weekdays:\"\\u0b9e\\u0bbe\\u0baf\\u0bbf\\u0bb1\\u0bcd\\u0bb1\\u0bc1\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0ba4\\u0bbf\\u0b99\\u0bcd\\u0b95\\u0b9f\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0b9a\\u0bc6\\u0bb5\\u0bcd\\u0bb5\\u0bbe\\u0baf\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0baa\\u0bc1\\u0ba4\\u0ba9\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0bb5\\u0bbf\\u0baf\\u0bbe\\u0bb4\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0bb5\\u0bc6\\u0bb3\\u0bcd\\u0bb3\\u0bbf\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0b9a\\u0ba9\\u0bbf\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8\".split(\"_\"),weekdaysShort:\"\\u0b9e\\u0bbe\\u0baf\\u0bbf\\u0bb1\\u0bc1_\\u0ba4\\u0bbf\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd_\\u0b9a\\u0bc6\\u0bb5\\u0bcd\\u0bb5\\u0bbe\\u0baf\\u0bcd_\\u0baa\\u0bc1\\u0ba4\\u0ba9\\u0bcd_\\u0bb5\\u0bbf\\u0baf\\u0bbe\\u0bb4\\u0ba9\\u0bcd_\\u0bb5\\u0bc6\\u0bb3\\u0bcd\\u0bb3\\u0bbf_\\u0b9a\\u0ba9\\u0bbf\".split(\"_\"),weekdaysMin:\"\\u0b9e\\u0bbe_\\u0ba4\\u0bbf_\\u0b9a\\u0bc6_\\u0baa\\u0bc1_\\u0bb5\\u0bbf_\\u0bb5\\u0bc6_\\u0b9a\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, HH:mm\",LLLL:\"dddd, D MMMM YYYY, HH:mm\"},calendar:{sameDay:\"[\\u0b87\\u0ba9\\u0bcd\\u0bb1\\u0bc1] LT\",nextDay:\"[\\u0ba8\\u0bbe\\u0bb3\\u0bc8] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0ba8\\u0bc7\\u0bb1\\u0bcd\\u0bb1\\u0bc1] LT\",lastWeek:\"[\\u0b95\\u0b9f\\u0ba8\\u0bcd\\u0ba4 \\u0bb5\\u0bbe\\u0bb0\\u0bae\\u0bcd] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0b87\\u0bb2\\u0bcd\",past:\"%s \\u0bae\\u0bc1\\u0ba9\\u0bcd\",s:\"\\u0b92\\u0bb0\\u0bc1 \\u0b9a\\u0bbf\\u0bb2 \\u0bb5\\u0bbf\\u0ba8\\u0bbe\\u0b9f\\u0bbf\\u0b95\\u0bb3\\u0bcd\",ss:\"%d \\u0bb5\\u0bbf\\u0ba8\\u0bbe\\u0b9f\\u0bbf\\u0b95\\u0bb3\\u0bcd\",m:\"\\u0b92\\u0bb0\\u0bc1 \\u0ba8\\u0bbf\\u0bae\\u0bbf\\u0b9f\\u0bae\\u0bcd\",mm:\"%d \\u0ba8\\u0bbf\\u0bae\\u0bbf\\u0b9f\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd\",h:\"\\u0b92\\u0bb0\\u0bc1 \\u0bae\\u0ba3\\u0bbf \\u0ba8\\u0bc7\\u0bb0\\u0bae\\u0bcd\",hh:\"%d \\u0bae\\u0ba3\\u0bbf \\u0ba8\\u0bc7\\u0bb0\\u0bae\\u0bcd\",d:\"\\u0b92\\u0bb0\\u0bc1 \\u0ba8\\u0bbe\\u0bb3\\u0bcd\",dd:\"%d \\u0ba8\\u0bbe\\u0b9f\\u0bcd\\u0b95\\u0bb3\\u0bcd\",M:\"\\u0b92\\u0bb0\\u0bc1 \\u0bae\\u0bbe\\u0ba4\\u0bae\\u0bcd\",MM:\"%d \\u0bae\\u0bbe\\u0ba4\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd\",y:\"\\u0b92\\u0bb0\\u0bc1 \\u0bb5\\u0bb0\\u0bc1\\u0b9f\\u0bae\\u0bcd\",yy:\"%d \\u0b86\\u0ba3\\u0bcd\\u0b9f\\u0bc1\\u0b95\\u0bb3\\u0bcd\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u0bb5\\u0ba4\\u0bc1/,ordinal:function(e){return e+\"\\u0bb5\\u0ba4\\u0bc1\"},preparse:function(e){return e.replace(/[\\u0be7\\u0be8\\u0be9\\u0bea\\u0beb\\u0bec\\u0bed\\u0bee\\u0bef\\u0be6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd|\\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8|\\u0b95\\u0bbe\\u0bb2\\u0bc8|\\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd|\\u0b8e\\u0bb1\\u0bcd\\u0baa\\u0bbe\\u0b9f\\u0bc1|\\u0bae\\u0bbe\\u0bb2\\u0bc8/,meridiem:function(e,t,n){return e<2?\" \\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\":e<6?\" \\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8\":e<10?\" \\u0b95\\u0bbe\\u0bb2\\u0bc8\":e<14?\" \\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd\":e<18?\" \\u0b8e\\u0bb1\\u0bcd\\u0baa\\u0bbe\\u0b9f\\u0bc1\":e<22?\" \\u0bae\\u0bbe\\u0bb2\\u0bc8\":\" \\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\"===t?e<2?e:e+12:\"\\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8\"===t||\"\\u0b95\\u0bbe\\u0bb2\\u0bc8\"===t||\"\\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd\"===t&&e>=10?e:e+12},week:{dow:0,doy:6}})}(n(\"wd/R\"))},PpIw:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0ce7\",2:\"\\u0ce8\",3:\"\\u0ce9\",4:\"\\u0cea\",5:\"\\u0ceb\",6:\"\\u0cec\",7:\"\\u0ced\",8:\"\\u0cee\",9:\"\\u0cef\",0:\"\\u0ce6\"},n={\"\\u0ce7\":\"1\",\"\\u0ce8\":\"2\",\"\\u0ce9\":\"3\",\"\\u0cea\":\"4\",\"\\u0ceb\":\"5\",\"\\u0cec\":\"6\",\"\\u0ced\":\"7\",\"\\u0cee\":\"8\",\"\\u0cef\":\"9\",\"\\u0ce6\":\"0\"};e.defineLocale(\"kn\",{months:\"\\u0c9c\\u0ca8\\u0cb5\\u0cb0\\u0cbf_\\u0cab\\u0cc6\\u0cac\\u0ccd\\u0cb0\\u0cb5\\u0cb0\\u0cbf_\\u0cae\\u0cbe\\u0cb0\\u0ccd\\u0c9a\\u0ccd_\\u0c8f\\u0caa\\u0ccd\\u0cb0\\u0cbf\\u0cb2\\u0ccd_\\u0cae\\u0cc6\\u0cd5_\\u0c9c\\u0cc2\\u0ca8\\u0ccd_\\u0c9c\\u0cc1\\u0cb2\\u0cc6\\u0cd6_\\u0c86\\u0c97\\u0cb8\\u0ccd\\u0c9f\\u0ccd_\\u0cb8\\u0cc6\\u0caa\\u0ccd\\u0c9f\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd_\\u0c85\\u0c95\\u0ccd\\u0c9f\\u0cc6\\u0cc2\\u0cd5\\u0cac\\u0cb0\\u0ccd_\\u0ca8\\u0cb5\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd_\\u0ca1\\u0cbf\\u0cb8\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd\".split(\"_\"),monthsShort:\"\\u0c9c\\u0ca8_\\u0cab\\u0cc6\\u0cac\\u0ccd\\u0cb0_\\u0cae\\u0cbe\\u0cb0\\u0ccd\\u0c9a\\u0ccd_\\u0c8f\\u0caa\\u0ccd\\u0cb0\\u0cbf\\u0cb2\\u0ccd_\\u0cae\\u0cc6\\u0cd5_\\u0c9c\\u0cc2\\u0ca8\\u0ccd_\\u0c9c\\u0cc1\\u0cb2\\u0cc6\\u0cd6_\\u0c86\\u0c97\\u0cb8\\u0ccd\\u0c9f\\u0ccd_\\u0cb8\\u0cc6\\u0caa\\u0ccd\\u0c9f\\u0cc6\\u0c82_\\u0c85\\u0c95\\u0ccd\\u0c9f\\u0cc6\\u0cc2\\u0cd5_\\u0ca8\\u0cb5\\u0cc6\\u0c82_\\u0ca1\\u0cbf\\u0cb8\\u0cc6\\u0c82\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0cad\\u0cbe\\u0ca8\\u0cc1\\u0cb5\\u0cbe\\u0cb0_\\u0cb8\\u0cc6\\u0cc2\\u0cd5\\u0cae\\u0cb5\\u0cbe\\u0cb0_\\u0cae\\u0c82\\u0c97\\u0cb3\\u0cb5\\u0cbe\\u0cb0_\\u0cac\\u0cc1\\u0ca7\\u0cb5\\u0cbe\\u0cb0_\\u0c97\\u0cc1\\u0cb0\\u0cc1\\u0cb5\\u0cbe\\u0cb0_\\u0cb6\\u0cc1\\u0c95\\u0ccd\\u0cb0\\u0cb5\\u0cbe\\u0cb0_\\u0cb6\\u0ca8\\u0cbf\\u0cb5\\u0cbe\\u0cb0\".split(\"_\"),weekdaysShort:\"\\u0cad\\u0cbe\\u0ca8\\u0cc1_\\u0cb8\\u0cc6\\u0cc2\\u0cd5\\u0cae_\\u0cae\\u0c82\\u0c97\\u0cb3_\\u0cac\\u0cc1\\u0ca7_\\u0c97\\u0cc1\\u0cb0\\u0cc1_\\u0cb6\\u0cc1\\u0c95\\u0ccd\\u0cb0_\\u0cb6\\u0ca8\\u0cbf\".split(\"_\"),weekdaysMin:\"\\u0cad\\u0cbe_\\u0cb8\\u0cc6\\u0cc2\\u0cd5_\\u0cae\\u0c82_\\u0cac\\u0cc1_\\u0c97\\u0cc1_\\u0cb6\\u0cc1_\\u0cb6\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0c87\\u0c82\\u0ca6\\u0cc1] LT\",nextDay:\"[\\u0ca8\\u0cbe\\u0cb3\\u0cc6] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0ca8\\u0cbf\\u0ca8\\u0ccd\\u0ca8\\u0cc6] LT\",lastWeek:\"[\\u0c95\\u0cc6\\u0cc2\\u0ca8\\u0cc6\\u0caf] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0ca8\\u0c82\\u0ca4\\u0cb0\",past:\"%s \\u0cb9\\u0cbf\\u0c82\\u0ca6\\u0cc6\",s:\"\\u0c95\\u0cc6\\u0cb2\\u0cb5\\u0cc1 \\u0c95\\u0ccd\\u0cb7\\u0ca3\\u0c97\\u0cb3\\u0cc1\",ss:\"%d \\u0cb8\\u0cc6\\u0c95\\u0cc6\\u0c82\\u0ca1\\u0cc1\\u0c97\\u0cb3\\u0cc1\",m:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca8\\u0cbf\\u0cae\\u0cbf\\u0cb7\",mm:\"%d \\u0ca8\\u0cbf\\u0cae\\u0cbf\\u0cb7\",h:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0c97\\u0c82\\u0c9f\\u0cc6\",hh:\"%d \\u0c97\\u0c82\\u0c9f\\u0cc6\",d:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca6\\u0cbf\\u0ca8\",dd:\"%d \\u0ca6\\u0cbf\\u0ca8\",M:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca4\\u0cbf\\u0c82\\u0c97\\u0cb3\\u0cc1\",MM:\"%d \\u0ca4\\u0cbf\\u0c82\\u0c97\\u0cb3\\u0cc1\",y:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0cb5\\u0cb0\\u0ccd\\u0cb7\",yy:\"%d \\u0cb5\\u0cb0\\u0ccd\\u0cb7\"},preparse:function(e){return e.replace(/[\\u0ce7\\u0ce8\\u0ce9\\u0cea\\u0ceb\\u0cec\\u0ced\\u0cee\\u0cef\\u0ce6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf|\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6|\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8|\\u0cb8\\u0c82\\u0c9c\\u0cc6/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\"===t?e<4?e:e+12:\"\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6\"===t?e:\"\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8\"===t?e>=10?e:e+12:\"\\u0cb8\\u0c82\\u0c9c\\u0cc6\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\":e<10?\"\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6\":e<17?\"\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8\":e<20?\"\\u0cb8\\u0c82\\u0c9c\\u0cc6\":\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u0ca8\\u0cc6\\u0cd5)/,ordinal:function(e){return e+\"\\u0ca8\\u0cc6\\u0cd5\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},Qj4J:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-kw\",{months:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648\\u0632_\\u063a\\u0634\\u062a_\\u0634\\u062a\\u0646\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0646\\u0628\\u0631_\\u062f\\u062c\\u0646\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648\\u0632_\\u063a\\u0634\\u062a_\\u0634\\u062a\\u0646\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0646\\u0628\\u0631_\\u062f\\u062c\\u0646\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062a\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0627\\u062d\\u062f_\\u0627\\u062a\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:0,doy:12}})}(n(\"wd/R\"))},RAwQ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eng Minutt\",\"enger Minutt\"],h:[\"eng Stonn\",\"enger Stonn\"],d:[\"een Dag\",\"engem Dag\"],M:[\"ee Mount\",\"engem Mount\"],y:[\"ee Joer\",\"engem Joer\"]};return t?s[n][0]:s[n][1]}function n(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var t=e%10;return n(0===t?e/10:t)}if(e<1e4){for(;e>=10;)e/=10;return n(e)}return n(e/=1e3)}e.defineLocale(\"lb\",{months:\"Januar_Februar_M\\xe4erz_Abr\\xebll_Mee_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonndeg_M\\xe9indeg_D\\xebnschdeg_M\\xebttwoch_Donneschdeg_Freideg_Samschdeg\".split(\"_\"),weekdaysShort:\"So._M\\xe9._D\\xeb._M\\xeb._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_M\\xe9_D\\xeb_M\\xeb_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm [Auer]\",LTS:\"H:mm:ss [Auer]\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm [Auer]\",LLLL:\"dddd, D. MMMM YYYY H:mm [Auer]\"},calendar:{sameDay:\"[Haut um] LT\",sameElse:\"L\",nextDay:\"[Muer um] LT\",nextWeek:\"dddd [um] LT\",lastDay:\"[G\\xebschter um] LT\",lastWeek:function(){switch(this.day()){case 2:case 4:return\"[Leschten] dddd [um] LT\";default:return\"[Leschte] dddd [um] LT\"}}},relativeTime:{future:function(e){return n(e.substr(0,e.indexOf(\" \")))?\"a \"+e:\"an \"+e},past:function(e){return n(e.substr(0,e.indexOf(\" \")))?\"viru \"+e:\"virun \"+e},s:\"e puer Sekonnen\",ss:\"%d Sekonnen\",m:t,mm:\"%d Minutten\",h:t,hh:\"%d Stonnen\",d:t,dd:\"%d Deeg\",M:t,MM:\"%d M\\xe9int\",y:t,yy:\"%d Joer\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},RnhZ:function(e,t,n){var i={\"./af\":\"K/tc\",\"./af.js\":\"K/tc\",\"./ar\":\"jnO4\",\"./ar-dz\":\"o1bE\",\"./ar-dz.js\":\"o1bE\",\"./ar-kw\":\"Qj4J\",\"./ar-kw.js\":\"Qj4J\",\"./ar-ly\":\"HP3h\",\"./ar-ly.js\":\"HP3h\",\"./ar-ma\":\"CoRJ\",\"./ar-ma.js\":\"CoRJ\",\"./ar-sa\":\"gjCT\",\"./ar-sa.js\":\"gjCT\",\"./ar-tn\":\"bYM6\",\"./ar-tn.js\":\"bYM6\",\"./ar.js\":\"jnO4\",\"./az\":\"SFxW\",\"./az.js\":\"SFxW\",\"./be\":\"H8ED\",\"./be.js\":\"H8ED\",\"./bg\":\"hKrs\",\"./bg.js\":\"hKrs\",\"./bm\":\"p/rL\",\"./bm.js\":\"p/rL\",\"./bn\":\"kEOa\",\"./bn.js\":\"kEOa\",\"./bo\":\"0mo+\",\"./bo.js\":\"0mo+\",\"./br\":\"aIdf\",\"./br.js\":\"aIdf\",\"./bs\":\"JVSJ\",\"./bs.js\":\"JVSJ\",\"./ca\":\"1xZ4\",\"./ca.js\":\"1xZ4\",\"./cs\":\"PA2r\",\"./cs.js\":\"PA2r\",\"./cv\":\"A+xa\",\"./cv.js\":\"A+xa\",\"./cy\":\"l5ep\",\"./cy.js\":\"l5ep\",\"./da\":\"DxQv\",\"./da.js\":\"DxQv\",\"./de\":\"tGlX\",\"./de-at\":\"s+uk\",\"./de-at.js\":\"s+uk\",\"./de-ch\":\"u3GI\",\"./de-ch.js\":\"u3GI\",\"./de.js\":\"tGlX\",\"./dv\":\"WYrj\",\"./dv.js\":\"WYrj\",\"./el\":\"jUeY\",\"./el.js\":\"jUeY\",\"./en-SG\":\"zavE\",\"./en-SG.js\":\"zavE\",\"./en-au\":\"Dmvi\",\"./en-au.js\":\"Dmvi\",\"./en-ca\":\"OIYi\",\"./en-ca.js\":\"OIYi\",\"./en-gb\":\"Oaa7\",\"./en-gb.js\":\"Oaa7\",\"./en-ie\":\"4dOw\",\"./en-ie.js\":\"4dOw\",\"./en-il\":\"czMo\",\"./en-il.js\":\"czMo\",\"./en-nz\":\"b1Dy\",\"./en-nz.js\":\"b1Dy\",\"./eo\":\"Zduo\",\"./eo.js\":\"Zduo\",\"./es\":\"iYuL\",\"./es-do\":\"CjzT\",\"./es-do.js\":\"CjzT\",\"./es-us\":\"Vclq\",\"./es-us.js\":\"Vclq\",\"./es.js\":\"iYuL\",\"./et\":\"7BjC\",\"./et.js\":\"7BjC\",\"./eu\":\"D/JM\",\"./eu.js\":\"D/JM\",\"./fa\":\"jfSC\",\"./fa.js\":\"jfSC\",\"./fi\":\"gekB\",\"./fi.js\":\"gekB\",\"./fo\":\"ByF4\",\"./fo.js\":\"ByF4\",\"./fr\":\"nyYc\",\"./fr-ca\":\"2fjn\",\"./fr-ca.js\":\"2fjn\",\"./fr-ch\":\"Dkky\",\"./fr-ch.js\":\"Dkky\",\"./fr.js\":\"nyYc\",\"./fy\":\"cRix\",\"./fy.js\":\"cRix\",\"./ga\":\"USCx\",\"./ga.js\":\"USCx\",\"./gd\":\"9rRi\",\"./gd.js\":\"9rRi\",\"./gl\":\"iEDd\",\"./gl.js\":\"iEDd\",\"./gom-latn\":\"DKr+\",\"./gom-latn.js\":\"DKr+\",\"./gu\":\"4MV3\",\"./gu.js\":\"4MV3\",\"./he\":\"x6pH\",\"./he.js\":\"x6pH\",\"./hi\":\"3E1r\",\"./hi.js\":\"3E1r\",\"./hr\":\"S6ln\",\"./hr.js\":\"S6ln\",\"./hu\":\"WxRl\",\"./hu.js\":\"WxRl\",\"./hy-am\":\"1rYy\",\"./hy-am.js\":\"1rYy\",\"./id\":\"UDhR\",\"./id.js\":\"UDhR\",\"./is\":\"BVg3\",\"./is.js\":\"BVg3\",\"./it\":\"bpih\",\"./it-ch\":\"bxKX\",\"./it-ch.js\":\"bxKX\",\"./it.js\":\"bpih\",\"./ja\":\"B55N\",\"./ja.js\":\"B55N\",\"./jv\":\"tUCv\",\"./jv.js\":\"tUCv\",\"./ka\":\"IBtZ\",\"./ka.js\":\"IBtZ\",\"./kk\":\"bXm7\",\"./kk.js\":\"bXm7\",\"./km\":\"6B0Y\",\"./km.js\":\"6B0Y\",\"./kn\":\"PpIw\",\"./kn.js\":\"PpIw\",\"./ko\":\"Ivi+\",\"./ko.js\":\"Ivi+\",\"./ku\":\"JCF/\",\"./ku.js\":\"JCF/\",\"./ky\":\"lgnt\",\"./ky.js\":\"lgnt\",\"./lb\":\"RAwQ\",\"./lb.js\":\"RAwQ\",\"./lo\":\"sp3z\",\"./lo.js\":\"sp3z\",\"./lt\":\"JvlW\",\"./lt.js\":\"JvlW\",\"./lv\":\"uXwI\",\"./lv.js\":\"uXwI\",\"./me\":\"KTz0\",\"./me.js\":\"KTz0\",\"./mi\":\"aIsn\",\"./mi.js\":\"aIsn\",\"./mk\":\"aQkU\",\"./mk.js\":\"aQkU\",\"./ml\":\"AvvY\",\"./ml.js\":\"AvvY\",\"./mn\":\"lYtQ\",\"./mn.js\":\"lYtQ\",\"./mr\":\"Ob0Z\",\"./mr.js\":\"Ob0Z\",\"./ms\":\"6+QB\",\"./ms-my\":\"ZAMP\",\"./ms-my.js\":\"ZAMP\",\"./ms.js\":\"6+QB\",\"./mt\":\"G0Uy\",\"./mt.js\":\"G0Uy\",\"./my\":\"honF\",\"./my.js\":\"honF\",\"./nb\":\"bOMt\",\"./nb.js\":\"bOMt\",\"./ne\":\"OjkT\",\"./ne.js\":\"OjkT\",\"./nl\":\"+s0g\",\"./nl-be\":\"2ykv\",\"./nl-be.js\":\"2ykv\",\"./nl.js\":\"+s0g\",\"./nn\":\"uEye\",\"./nn.js\":\"uEye\",\"./pa-in\":\"8/+R\",\"./pa-in.js\":\"8/+R\",\"./pl\":\"jVdC\",\"./pl.js\":\"jVdC\",\"./pt\":\"8mBD\",\"./pt-br\":\"0tRk\",\"./pt-br.js\":\"0tRk\",\"./pt.js\":\"8mBD\",\"./ro\":\"lyxo\",\"./ro.js\":\"lyxo\",\"./ru\":\"lXzo\",\"./ru.js\":\"lXzo\",\"./sd\":\"Z4QM\",\"./sd.js\":\"Z4QM\",\"./se\":\"//9w\",\"./se.js\":\"//9w\",\"./si\":\"7aV9\",\"./si.js\":\"7aV9\",\"./sk\":\"e+ae\",\"./sk.js\":\"e+ae\",\"./sl\":\"gVVK\",\"./sl.js\":\"gVVK\",\"./sq\":\"yPMs\",\"./sq.js\":\"yPMs\",\"./sr\":\"zx6S\",\"./sr-cyrl\":\"E+lV\",\"./sr-cyrl.js\":\"E+lV\",\"./sr.js\":\"zx6S\",\"./ss\":\"Ur1D\",\"./ss.js\":\"Ur1D\",\"./sv\":\"X709\",\"./sv.js\":\"X709\",\"./sw\":\"dNwA\",\"./sw.js\":\"dNwA\",\"./ta\":\"PeUW\",\"./ta.js\":\"PeUW\",\"./te\":\"XLvN\",\"./te.js\":\"XLvN\",\"./tet\":\"V2x9\",\"./tet.js\":\"V2x9\",\"./tg\":\"Oxv6\",\"./tg.js\":\"Oxv6\",\"./th\":\"EOgW\",\"./th.js\":\"EOgW\",\"./tl-ph\":\"Dzi0\",\"./tl-ph.js\":\"Dzi0\",\"./tlh\":\"z3Vd\",\"./tlh.js\":\"z3Vd\",\"./tr\":\"DoHr\",\"./tr.js\":\"DoHr\",\"./tzl\":\"z1FC\",\"./tzl.js\":\"z1FC\",\"./tzm\":\"wQk9\",\"./tzm-latn\":\"tT3J\",\"./tzm-latn.js\":\"tT3J\",\"./tzm.js\":\"wQk9\",\"./ug-cn\":\"YRex\",\"./ug-cn.js\":\"YRex\",\"./uk\":\"raLr\",\"./uk.js\":\"raLr\",\"./ur\":\"UpQW\",\"./ur.js\":\"UpQW\",\"./uz\":\"Loxo\",\"./uz-latn\":\"AQ68\",\"./uz-latn.js\":\"AQ68\",\"./uz.js\":\"Loxo\",\"./vi\":\"KSF8\",\"./vi.js\":\"KSF8\",\"./x-pseudo\":\"/X5v\",\"./x-pseudo.js\":\"/X5v\",\"./yo\":\"fzPg\",\"./yo.js\":\"fzPg\",\"./zh-cn\":\"XDpg\",\"./zh-cn.js\":\"XDpg\",\"./zh-hk\":\"SatO\",\"./zh-hk.js\":\"SatO\",\"./zh-tw\":\"kOpN\",\"./zh-tw.js\":\"kOpN\"};function s(e){var t=r(e);return n(t)}function r(e){if(!n.o(i,e)){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}return i[e]}s.keys=function(){return Object.keys(i)},s.resolve=r,e.exports=s,s.id=\"RnhZ\"},S6ln:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i=e+\" \";switch(n){case\"ss\":return i+(1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\");case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return i+(1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\");case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return i+(1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\");case\"dd\":return i+(1===e?\"dan\":\"dana\");case\"MM\":return i+(1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\");case\"yy\":return i+(1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\")}}e.defineLocale(\"hr\",{months:{format:\"sije\\u010dnja_velja\\u010de_o\\u017eujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca\".split(\"_\"),standalone:\"sije\\u010danj_velja\\u010da_o\\u017eujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac\".split(\"_\")},monthsShort:\"sij._velj._o\\u017eu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010der u] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:return\"[pro\\u0161lu] dddd [u] LT\";case 6:return\"[pro\\u0161le] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[pro\\u0161li] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},SFxW:function(e,t,n){!function(e){\"use strict\";var t={1:\"-inci\",5:\"-inci\",8:\"-inci\",70:\"-inci\",80:\"-inci\",2:\"-nci\",7:\"-nci\",20:\"-nci\",50:\"-nci\",3:\"-\\xfcnc\\xfc\",4:\"-\\xfcnc\\xfc\",100:\"-\\xfcnc\\xfc\",6:\"-nc\\u0131\",9:\"-uncu\",10:\"-uncu\",30:\"-uncu\",60:\"-\\u0131nc\\u0131\",90:\"-\\u0131nc\\u0131\"};e.defineLocale(\"az\",{months:\"yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr\".split(\"_\"),monthsShort:\"yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek\".split(\"_\"),weekdays:\"Bazar_Bazar ert\\u0259si_\\xc7\\u0259r\\u015f\\u0259nb\\u0259 ax\\u015fam\\u0131_\\xc7\\u0259r\\u015f\\u0259nb\\u0259_C\\xfcm\\u0259 ax\\u015fam\\u0131_C\\xfcm\\u0259_\\u015e\\u0259nb\\u0259\".split(\"_\"),weekdaysShort:\"Baz_BzE_\\xc7Ax_\\xc7\\u0259r_CAx_C\\xfcm_\\u015e\\u0259n\".split(\"_\"),weekdaysMin:\"Bz_BE_\\xc7A_\\xc7\\u0259_CA_C\\xfc_\\u015e\\u0259\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bug\\xfcn saat] LT\",nextDay:\"[sabah saat] LT\",nextWeek:\"[g\\u0259l\\u0259n h\\u0259ft\\u0259] dddd [saat] LT\",lastDay:\"[d\\xfcn\\u0259n] LT\",lastWeek:\"[ke\\xe7\\u0259n h\\u0259ft\\u0259] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s \\u0259vv\\u0259l\",s:\"birne\\xe7\\u0259 saniy\\u0259\",ss:\"%d saniy\\u0259\",m:\"bir d\\u0259qiq\\u0259\",mm:\"%d d\\u0259qiq\\u0259\",h:\"bir saat\",hh:\"%d saat\",d:\"bir g\\xfcn\",dd:\"%d g\\xfcn\",M:\"bir ay\",MM:\"%d ay\",y:\"bir il\",yy:\"%d il\"},meridiemParse:/gec\\u0259|s\\u0259h\\u0259r|g\\xfcnd\\xfcz|ax\\u015fam/,isPM:function(e){return/^(g\\xfcnd\\xfcz|ax\\u015fam)$/.test(e)},meridiem:function(e,t,n){return e<4?\"gec\\u0259\":e<12?\"s\\u0259h\\u0259r\":e<17?\"g\\xfcnd\\xfcz\":\"ax\\u015fam\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0131nc\\u0131|inci|nci|\\xfcnc\\xfc|nc\\u0131|uncu)/,ordinal:function(e){if(0===e)return e+\"-\\u0131nc\\u0131\";var n=e%10;return e+(t[n]||t[e%100-n]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},SatO:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-hk\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u9031\\u65e5_\\u9031\\u4e00_\\u9031\\u4e8c_\\u9031\\u4e09_\\u9031\\u56db_\\u9031\\u4e94_\\u9031\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e2d\\u5348\"===t?e>=11?e:e+12:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:void 0},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"\\u51cc\\u6668\":i<900?\"\\u65e9\\u4e0a\":i<1130?\"\\u4e0a\\u5348\":i<1230?\"\\u4e2d\\u5348\":i<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929]LT\",nextDay:\"[\\u660e\\u5929]LT\",nextWeek:\"[\\u4e0b]ddddLT\",lastDay:\"[\\u6628\\u5929]LT\",lastWeek:\"[\\u4e0a]ddddLT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u9031)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u9031\";default:return e}},relativeTime:{future:\"%s\\u5167\",past:\"%s\\u524d\",s:\"\\u5e7e\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u9418\",mm:\"%d \\u5206\\u9418\",h:\"1 \\u5c0f\\u6642\",hh:\"%d \\u5c0f\\u6642\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u500b\\u6708\",MM:\"%d \\u500b\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"}})}(n(\"wd/R\"))},UDhR:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"id\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Rab_Kam_Jum_Sab\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"siang\"===t?e>=11?e:e+12:\"sore\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"siang\":e<19?\"sore\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Besok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kemarin pukul] LT\",lastWeek:\"dddd [lalu pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lalu\",s:\"beberapa detik\",ss:\"%d detik\",m:\"semenit\",mm:\"%d menit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},USCx:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ga\",{months:[\"Ean\\xe1ir\",\"Feabhra\",\"M\\xe1rta\",\"Aibre\\xe1n\",\"Bealtaine\",\"M\\xe9itheamh\",\"I\\xfail\",\"L\\xfanasa\",\"Me\\xe1n F\\xf3mhair\",\"Deaireadh F\\xf3mhair\",\"Samhain\",\"Nollaig\"],monthsShort:[\"Ean\\xe1\",\"Feab\",\"M\\xe1rt\",\"Aibr\",\"Beal\",\"M\\xe9it\",\"I\\xfail\",\"L\\xfana\",\"Me\\xe1n\",\"Deai\",\"Samh\",\"Noll\"],monthsParseExact:!0,weekdays:[\"D\\xe9 Domhnaigh\",\"D\\xe9 Luain\",\"D\\xe9 M\\xe1irt\",\"D\\xe9 C\\xe9adaoin\",\"D\\xe9ardaoin\",\"D\\xe9 hAoine\",\"D\\xe9 Satharn\"],weekdaysShort:[\"Dom\",\"Lua\",\"M\\xe1i\",\"C\\xe9a\",\"D\\xe9a\",\"hAo\",\"Sat\"],weekdaysMin:[\"Do\",\"Lu\",\"M\\xe1\",\"Ce\",\"D\\xe9\",\"hA\",\"Sa\"],longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Inniu ag] LT\",nextDay:\"[Am\\xe1rach ag] LT\",nextWeek:\"dddd [ag] LT\",lastDay:\"[Inn\\xe9 aig] LT\",lastWeek:\"dddd [seo caite] [ag] LT\",sameElse:\"L\"},relativeTime:{future:\"i %s\",past:\"%s \\xf3 shin\",s:\"c\\xfapla soicind\",ss:\"%d soicind\",m:\"n\\xf3im\\xe9ad\",mm:\"%d n\\xf3im\\xe9ad\",h:\"uair an chloig\",hh:\"%d uair an chloig\",d:\"l\\xe1\",dd:\"%d l\\xe1\",M:\"m\\xed\",MM:\"%d m\\xed\",y:\"bliain\",yy:\"%d bliain\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},UpQW:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u062c\\u0646\\u0648\\u0631\\u06cc\",\"\\u0641\\u0631\\u0648\\u0631\\u06cc\",\"\\u0645\\u0627\\u0631\\u0686\",\"\\u0627\\u067e\\u0631\\u06cc\\u0644\",\"\\u0645\\u0626\\u06cc\",\"\\u062c\\u0648\\u0646\",\"\\u062c\\u0648\\u0644\\u0627\\u0626\\u06cc\",\"\\u0627\\u06af\\u0633\\u062a\",\"\\u0633\\u062a\\u0645\\u0628\\u0631\",\"\\u0627\\u06a9\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0645\\u0628\\u0631\",\"\\u062f\\u0633\\u0645\\u0628\\u0631\"],n=[\"\\u0627\\u062a\\u0648\\u0627\\u0631\",\"\\u067e\\u06cc\\u0631\",\"\\u0645\\u0646\\u06af\\u0644\",\"\\u0628\\u062f\\u06be\",\"\\u062c\\u0645\\u0639\\u0631\\u0627\\u062a\",\"\\u062c\\u0645\\u0639\\u06c1\",\"\\u06c1\\u0641\\u062a\\u06c1\"];e.defineLocale(\"ur\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd\\u060c D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635\\u0628\\u062d|\\u0634\\u0627\\u0645/,isPM:function(e){return\"\\u0634\\u0627\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\\u0628\\u062d\":\"\\u0634\\u0627\\u0645\"},calendar:{sameDay:\"[\\u0622\\u062c \\u0628\\u0648\\u0642\\u062a] LT\",nextDay:\"[\\u06a9\\u0644 \\u0628\\u0648\\u0642\\u062a] LT\",nextWeek:\"dddd [\\u0628\\u0648\\u0642\\u062a] LT\",lastDay:\"[\\u06af\\u0630\\u0634\\u062a\\u06c1 \\u0631\\u0648\\u0632 \\u0628\\u0648\\u0642\\u062a] LT\",lastWeek:\"[\\u06af\\u0630\\u0634\\u062a\\u06c1] dddd [\\u0628\\u0648\\u0642\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0628\\u0639\\u062f\",past:\"%s \\u0642\\u0628\\u0644\",s:\"\\u0686\\u0646\\u062f \\u0633\\u06cc\\u06a9\\u0646\\u0688\",ss:\"%d \\u0633\\u06cc\\u06a9\\u0646\\u0688\",m:\"\\u0627\\u06cc\\u06a9 \\u0645\\u0646\\u0679\",mm:\"%d \\u0645\\u0646\\u0679\",h:\"\\u0627\\u06cc\\u06a9 \\u06af\\u06be\\u0646\\u0679\\u06c1\",hh:\"%d \\u06af\\u06be\\u0646\\u0679\\u06d2\",d:\"\\u0627\\u06cc\\u06a9 \\u062f\\u0646\",dd:\"%d \\u062f\\u0646\",M:\"\\u0627\\u06cc\\u06a9 \\u0645\\u0627\\u06c1\",MM:\"%d \\u0645\\u0627\\u06c1\",y:\"\\u0627\\u06cc\\u06a9 \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Ur1D:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ss\",{months:\"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni\".split(\"_\"),monthsShort:\"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo\".split(\"_\"),weekdays:\"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo\".split(\"_\"),weekdaysShort:\"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg\".split(\"_\"),weekdaysMin:\"Li_Us_Lb_Lt_Ls_Lh_Ug\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Namuhla nga] LT\",nextDay:\"[Kusasa nga] LT\",nextWeek:\"dddd [nga] LT\",lastDay:\"[Itolo nga] LT\",lastWeek:\"dddd [leliphelile] [nga] LT\",sameElse:\"L\"},relativeTime:{future:\"nga %s\",past:\"wenteka nga %s\",s:\"emizuzwana lomcane\",ss:\"%d mzuzwana\",m:\"umzuzu\",mm:\"%d emizuzu\",h:\"lihora\",hh:\"%d emahora\",d:\"lilanga\",dd:\"%d emalanga\",M:\"inyanga\",MM:\"%d tinyanga\",y:\"umnyaka\",yy:\"%d iminyaka\"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(e,t,n){return e<11?\"ekuseni\":e<15?\"emini\":e<19?\"entsambama\":\"ebusuku\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"ekuseni\"===t?e:\"emini\"===t?e>=11?e:e+12:\"entsambama\"===t||\"ebusuku\"===t?0===e?0:e+12:void 0},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:\"%d\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},V2x9:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tet\",{months:\"Janeiru_Fevereiru_Marsu_Abril_Maiu_Ju\\xf1u_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ters_Kua_Kint_Sest_Sab\".split(\"_\"),weekdaysMin:\"Do_Seg_Te_Ku_Ki_Ses_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Ohin iha] LT\",nextDay:\"[Aban iha] LT\",nextWeek:\"dddd [iha] LT\",lastDay:\"[Horiseik iha] LT\",lastWeek:\"dddd [semana kotuk] [iha] LT\",sameElse:\"L\"},relativeTime:{future:\"iha %s\",past:\"%s liuba\",s:\"minutu balun\",ss:\"minutu %d\",m:\"minutu ida\",mm:\"minutu %d\",h:\"oras ida\",hh:\"oras %d\",d:\"loron ida\",dd:\"loron %d\",M:\"fulan ida\",MM:\"fulan %d\",y:\"tinan ida\",yy:\"tinan %d\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Vclq:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],s=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es-us\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"domingo_lunes_martes_mi\\xe9rcoles_jueves_viernes_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mi\\xe9._jue._vie._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"MM/DD/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY h:mm A\",LLLL:\"dddd, D [de] MMMM [de] YYYY h:mm A\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1ana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un a\\xf1o\",yy:\"%d a\\xf1os\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:0,doy:6}})}(n(\"wd/R\"))},WYrj:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u0796\\u07ac\\u0782\\u07aa\\u0787\\u07a6\\u0783\\u07a9\",\"\\u078a\\u07ac\\u0784\\u07b0\\u0783\\u07aa\\u0787\\u07a6\\u0783\\u07a9\",\"\\u0789\\u07a7\\u0783\\u07a8\\u0797\\u07aa\",\"\\u0787\\u07ad\\u0795\\u07b0\\u0783\\u07a9\\u078d\\u07aa\",\"\\u0789\\u07ad\",\"\\u0796\\u07ab\\u0782\\u07b0\",\"\\u0796\\u07aa\\u078d\\u07a6\\u0787\\u07a8\",\"\\u0787\\u07af\\u078e\\u07a6\\u0790\\u07b0\\u0793\\u07aa\",\"\\u0790\\u07ac\\u0795\\u07b0\\u0793\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0787\\u07ae\\u0786\\u07b0\\u0793\\u07af\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0782\\u07ae\\u0788\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0791\\u07a8\\u0790\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\"],n=[\"\\u0787\\u07a7\\u078b\\u07a8\\u0787\\u07b0\\u078c\\u07a6\",\"\\u0780\\u07af\\u0789\\u07a6\",\"\\u0787\\u07a6\\u0782\\u07b0\\u078e\\u07a7\\u0783\\u07a6\",\"\\u0784\\u07aa\\u078b\\u07a6\",\"\\u0784\\u07aa\\u0783\\u07a7\\u0790\\u07b0\\u078a\\u07a6\\u078c\\u07a8\",\"\\u0780\\u07aa\\u0786\\u07aa\\u0783\\u07aa\",\"\\u0780\\u07ae\\u0782\\u07a8\\u0780\\u07a8\\u0783\\u07aa\"];e.defineLocale(\"dv\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:\"\\u0787\\u07a7\\u078b\\u07a8_\\u0780\\u07af\\u0789\\u07a6_\\u0787\\u07a6\\u0782\\u07b0_\\u0784\\u07aa\\u078b\\u07a6_\\u0784\\u07aa\\u0783\\u07a7_\\u0780\\u07aa\\u0786\\u07aa_\\u0780\\u07ae\\u0782\\u07a8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/M/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0789\\u0786|\\u0789\\u078a/,isPM:function(e){return\"\\u0789\\u078a\"===e},meridiem:function(e,t,n){return e<12?\"\\u0789\\u0786\":\"\\u0789\\u078a\"},calendar:{sameDay:\"[\\u0789\\u07a8\\u0787\\u07a6\\u078b\\u07aa] LT\",nextDay:\"[\\u0789\\u07a7\\u078b\\u07a6\\u0789\\u07a7] LT\",nextWeek:\"dddd LT\",lastDay:\"[\\u0787\\u07a8\\u0787\\u07b0\\u0794\\u07ac] LT\",lastWeek:\"[\\u078a\\u07a7\\u0787\\u07a8\\u078c\\u07aa\\u0788\\u07a8] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"\\u078c\\u07ac\\u0783\\u07ad\\u078e\\u07a6\\u0787\\u07a8 %s\",past:\"\\u0786\\u07aa\\u0783\\u07a8\\u0782\\u07b0 %s\",s:\"\\u0790\\u07a8\\u0786\\u07aa\\u0782\\u07b0\\u078c\\u07aa\\u0786\\u07ae\\u0785\\u07ac\\u0787\\u07b0\",ss:\"d% \\u0790\\u07a8\\u0786\\u07aa\\u0782\\u07b0\\u078c\\u07aa\",m:\"\\u0789\\u07a8\\u0782\\u07a8\\u0793\\u07ac\\u0787\\u07b0\",mm:\"\\u0789\\u07a8\\u0782\\u07a8\\u0793\\u07aa %d\",h:\"\\u078e\\u07a6\\u0791\\u07a8\\u0787\\u07a8\\u0783\\u07ac\\u0787\\u07b0\",hh:\"\\u078e\\u07a6\\u0791\\u07a8\\u0787\\u07a8\\u0783\\u07aa %d\",d:\"\\u078b\\u07aa\\u0788\\u07a6\\u0780\\u07ac\\u0787\\u07b0\",dd:\"\\u078b\\u07aa\\u0788\\u07a6\\u0790\\u07b0 %d\",M:\"\\u0789\\u07a6\\u0780\\u07ac\\u0787\\u07b0\",MM:\"\\u0789\\u07a6\\u0790\\u07b0 %d\",y:\"\\u0787\\u07a6\\u0780\\u07a6\\u0783\\u07ac\\u0787\\u07b0\",yy:\"\\u0787\\u07a6\\u0780\\u07a6\\u0783\\u07aa %d\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:7,doy:12}})}(n(\"wd/R\"))},WxRl:function(e,t,n){!function(e){\"use strict\";var t=\"vas\\xe1rnap h\\xe9tf\\u0151n kedden szerd\\xe1n cs\\xfct\\xf6rt\\xf6k\\xf6n p\\xe9nteken szombaton\".split(\" \");function n(e,t,n,i){var s=e;switch(n){case\"s\":return i||t?\"n\\xe9h\\xe1ny m\\xe1sodperc\":\"n\\xe9h\\xe1ny m\\xe1sodperce\";case\"ss\":return s+(i||t)?\" m\\xe1sodperc\":\" m\\xe1sodperce\";case\"m\":return\"egy\"+(i||t?\" perc\":\" perce\");case\"mm\":return s+(i||t?\" perc\":\" perce\");case\"h\":return\"egy\"+(i||t?\" \\xf3ra\":\" \\xf3r\\xe1ja\");case\"hh\":return s+(i||t?\" \\xf3ra\":\" \\xf3r\\xe1ja\");case\"d\":return\"egy\"+(i||t?\" nap\":\" napja\");case\"dd\":return s+(i||t?\" nap\":\" napja\");case\"M\":return\"egy\"+(i||t?\" h\\xf3nap\":\" h\\xf3napja\");case\"MM\":return s+(i||t?\" h\\xf3nap\":\" h\\xf3napja\");case\"y\":return\"egy\"+(i||t?\" \\xe9v\":\" \\xe9ve\");case\"yy\":return s+(i||t?\" \\xe9v\":\" \\xe9ve\")}return\"\"}function i(e){return(e?\"\":\"[m\\xfalt] \")+\"[\"+t[this.day()]+\"] LT[-kor]\"}e.defineLocale(\"hu\",{months:\"janu\\xe1r_febru\\xe1r_m\\xe1rcius_\\xe1prilis_m\\xe1jus_j\\xfanius_j\\xfalius_augusztus_szeptember_okt\\xf3ber_november_december\".split(\"_\"),monthsShort:\"jan_feb_m\\xe1rc_\\xe1pr_m\\xe1j_j\\xfan_j\\xfal_aug_szept_okt_nov_dec\".split(\"_\"),weekdays:\"vas\\xe1rnap_h\\xe9tf\\u0151_kedd_szerda_cs\\xfct\\xf6rt\\xf6k_p\\xe9ntek_szombat\".split(\"_\"),weekdaysShort:\"vas_h\\xe9t_kedd_sze_cs\\xfct_p\\xe9n_szo\".split(\"_\"),weekdaysMin:\"v_h_k_sze_cs_p_szo\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY. MMMM D.\",LLL:\"YYYY. MMMM D. H:mm\",LLLL:\"YYYY. MMMM D., dddd H:mm\"},meridiemParse:/de|du/i,isPM:function(e){return\"u\"===e.charAt(1).toLowerCase()},meridiem:function(e,t,n){return e<12?!0===n?\"de\":\"DE\":!0===n?\"du\":\"DU\"},calendar:{sameDay:\"[ma] LT[-kor]\",nextDay:\"[holnap] LT[-kor]\",nextWeek:function(){return i.call(this,!0)},lastDay:\"[tegnap] LT[-kor]\",lastWeek:function(){return i.call(this,!1)},sameElse:\"L\"},relativeTime:{future:\"%s m\\xfalva\",past:\"%s\",s:n,ss:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},X709:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sv\",{months:\"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"s\\xf6ndag_m\\xe5ndag_tisdag_onsdag_torsdag_fredag_l\\xf6rdag\".split(\"_\"),weekdaysShort:\"s\\xf6n_m\\xe5n_tis_ons_tor_fre_l\\xf6r\".split(\"_\"),weekdaysMin:\"s\\xf6_m\\xe5_ti_on_to_fr_l\\xf6\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D MMMM YYYY [kl.] HH:mm\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd D MMM YYYY HH:mm\"},calendar:{sameDay:\"[Idag] LT\",nextDay:\"[Imorgon] LT\",lastDay:\"[Ig\\xe5r] LT\",nextWeek:\"[P\\xe5] dddd LT\",lastWeek:\"[I] dddd[s] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"f\\xf6r %s sedan\",s:\"n\\xe5gra sekunder\",ss:\"%d sekunder\",m:\"en minut\",mm:\"%d minuter\",h:\"en timme\",hh:\"%d timmar\",d:\"en dag\",dd:\"%d dagar\",M:\"en m\\xe5nad\",MM:\"%d m\\xe5nader\",y:\"ett \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}(e|a)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"e\":1===t||2===t?\"a\":\"e\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},XDpg:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-cn\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u5468\\u65e5_\\u5468\\u4e00_\\u5468\\u4e8c_\\u5468\\u4e09_\\u5468\\u56db_\\u5468\\u4e94_\\u5468\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5Ah\\u70b9mm\\u5206\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5ddddAh\\u70b9mm\\u5206\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"\\u51cc\\u6668\":i<900?\"\\u65e9\\u4e0a\":i<1130?\"\\u4e0a\\u5348\":i<1230?\"\\u4e2d\\u5348\":i<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929]LT\",nextDay:\"[\\u660e\\u5929]LT\",nextWeek:\"[\\u4e0b]ddddLT\",lastDay:\"[\\u6628\\u5929]LT\",lastWeek:\"[\\u4e0a]ddddLT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u5468)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u5468\";default:return e}},relativeTime:{future:\"%s\\u5185\",past:\"%s\\u524d\",s:\"\\u51e0\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u949f\",mm:\"%d \\u5206\\u949f\",h:\"1 \\u5c0f\\u65f6\",hh:\"%d \\u5c0f\\u65f6\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u4e2a\\u6708\",MM:\"%d \\u4e2a\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},XLvN:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"te\",{months:\"\\u0c1c\\u0c28\\u0c35\\u0c30\\u0c3f_\\u0c2b\\u0c3f\\u0c2c\\u0c4d\\u0c30\\u0c35\\u0c30\\u0c3f_\\u0c2e\\u0c3e\\u0c30\\u0c4d\\u0c1a\\u0c3f_\\u0c0f\\u0c2a\\u0c4d\\u0c30\\u0c3f\\u0c32\\u0c4d_\\u0c2e\\u0c47_\\u0c1c\\u0c42\\u0c28\\u0c4d_\\u0c1c\\u0c41\\u0c32\\u0c48_\\u0c06\\u0c17\\u0c38\\u0c4d\\u0c1f\\u0c41_\\u0c38\\u0c46\\u0c2a\\u0c4d\\u0c1f\\u0c46\\u0c02\\u0c2c\\u0c30\\u0c4d_\\u0c05\\u0c15\\u0c4d\\u0c1f\\u0c4b\\u0c2c\\u0c30\\u0c4d_\\u0c28\\u0c35\\u0c02\\u0c2c\\u0c30\\u0c4d_\\u0c21\\u0c3f\\u0c38\\u0c46\\u0c02\\u0c2c\\u0c30\\u0c4d\".split(\"_\"),monthsShort:\"\\u0c1c\\u0c28._\\u0c2b\\u0c3f\\u0c2c\\u0c4d\\u0c30._\\u0c2e\\u0c3e\\u0c30\\u0c4d\\u0c1a\\u0c3f_\\u0c0f\\u0c2a\\u0c4d\\u0c30\\u0c3f._\\u0c2e\\u0c47_\\u0c1c\\u0c42\\u0c28\\u0c4d_\\u0c1c\\u0c41\\u0c32\\u0c48_\\u0c06\\u0c17._\\u0c38\\u0c46\\u0c2a\\u0c4d._\\u0c05\\u0c15\\u0c4d\\u0c1f\\u0c4b._\\u0c28\\u0c35._\\u0c21\\u0c3f\\u0c38\\u0c46.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0c06\\u0c26\\u0c3f\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c38\\u0c4b\\u0c2e\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c2e\\u0c02\\u0c17\\u0c33\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c2c\\u0c41\\u0c27\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c17\\u0c41\\u0c30\\u0c41\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c36\\u0c41\\u0c15\\u0c4d\\u0c30\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c36\\u0c28\\u0c3f\\u0c35\\u0c3e\\u0c30\\u0c02\".split(\"_\"),weekdaysShort:\"\\u0c06\\u0c26\\u0c3f_\\u0c38\\u0c4b\\u0c2e_\\u0c2e\\u0c02\\u0c17\\u0c33_\\u0c2c\\u0c41\\u0c27_\\u0c17\\u0c41\\u0c30\\u0c41_\\u0c36\\u0c41\\u0c15\\u0c4d\\u0c30_\\u0c36\\u0c28\\u0c3f\".split(\"_\"),weekdaysMin:\"\\u0c06_\\u0c38\\u0c4b_\\u0c2e\\u0c02_\\u0c2c\\u0c41_\\u0c17\\u0c41_\\u0c36\\u0c41_\\u0c36\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0c28\\u0c47\\u0c21\\u0c41] LT\",nextDay:\"[\\u0c30\\u0c47\\u0c2a\\u0c41] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0c28\\u0c3f\\u0c28\\u0c4d\\u0c28] LT\",lastWeek:\"[\\u0c17\\u0c24] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0c32\\u0c4b\",past:\"%s \\u0c15\\u0c4d\\u0c30\\u0c3f\\u0c24\\u0c02\",s:\"\\u0c15\\u0c4a\\u0c28\\u0c4d\\u0c28\\u0c3f \\u0c15\\u0c4d\\u0c37\\u0c23\\u0c3e\\u0c32\\u0c41\",ss:\"%d \\u0c38\\u0c46\\u0c15\\u0c28\\u0c4d\\u0c32\\u0c41\",m:\"\\u0c12\\u0c15 \\u0c28\\u0c3f\\u0c2e\\u0c3f\\u0c37\\u0c02\",mm:\"%d \\u0c28\\u0c3f\\u0c2e\\u0c3f\\u0c37\\u0c3e\\u0c32\\u0c41\",h:\"\\u0c12\\u0c15 \\u0c17\\u0c02\\u0c1f\",hh:\"%d \\u0c17\\u0c02\\u0c1f\\u0c32\\u0c41\",d:\"\\u0c12\\u0c15 \\u0c30\\u0c4b\\u0c1c\\u0c41\",dd:\"%d \\u0c30\\u0c4b\\u0c1c\\u0c41\\u0c32\\u0c41\",M:\"\\u0c12\\u0c15 \\u0c28\\u0c46\\u0c32\",MM:\"%d \\u0c28\\u0c46\\u0c32\\u0c32\\u0c41\",y:\"\\u0c12\\u0c15 \\u0c38\\u0c02\\u0c35\\u0c24\\u0c4d\\u0c38\\u0c30\\u0c02\",yy:\"%d \\u0c38\\u0c02\\u0c35\\u0c24\\u0c4d\\u0c38\\u0c30\\u0c3e\\u0c32\\u0c41\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u0c35/,ordinal:\"%d\\u0c35\",meridiemParse:/\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f|\\u0c09\\u0c26\\u0c2f\\u0c02|\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02|\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\"===t?e<4?e:e+12:\"\\u0c09\\u0c26\\u0c2f\\u0c02\"===t?e:\"\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02\"===t?e>=10?e:e+12:\"\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\":e<10?\"\\u0c09\\u0c26\\u0c2f\\u0c02\":e<17?\"\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02\":e<20?\"\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02\":\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},YRex:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ug-cn\",{months:\"\\u064a\\u0627\\u0646\\u06cb\\u0627\\u0631_\\u0641\\u06d0\\u06cb\\u0631\\u0627\\u0644_\\u0645\\u0627\\u0631\\u062a_\\u0626\\u0627\\u067e\\u0631\\u06d0\\u0644_\\u0645\\u0627\\u064a_\\u0626\\u0649\\u064a\\u06c7\\u0646_\\u0626\\u0649\\u064a\\u06c7\\u0644_\\u0626\\u0627\\u06cb\\u063a\\u06c7\\u0633\\u062a_\\u0633\\u06d0\\u0646\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0626\\u06c6\\u0643\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0646\\u0648\\u064a\\u0627\\u0628\\u0649\\u0631_\\u062f\\u06d0\\u0643\\u0627\\u0628\\u0649\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0627\\u0646\\u06cb\\u0627\\u0631_\\u0641\\u06d0\\u06cb\\u0631\\u0627\\u0644_\\u0645\\u0627\\u0631\\u062a_\\u0626\\u0627\\u067e\\u0631\\u06d0\\u0644_\\u0645\\u0627\\u064a_\\u0626\\u0649\\u064a\\u06c7\\u0646_\\u0626\\u0649\\u064a\\u06c7\\u0644_\\u0626\\u0627\\u06cb\\u063a\\u06c7\\u0633\\u062a_\\u0633\\u06d0\\u0646\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0626\\u06c6\\u0643\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0646\\u0648\\u064a\\u0627\\u0628\\u0649\\u0631_\\u062f\\u06d0\\u0643\\u0627\\u0628\\u0649\\u0631\".split(\"_\"),weekdays:\"\\u064a\\u06d5\\u0643\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u062f\\u06c8\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u0633\\u06d5\\u064a\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u0686\\u0627\\u0631\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u067e\\u06d5\\u064a\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u062c\\u06c8\\u0645\\u06d5_\\u0634\\u06d5\\u0646\\u0628\\u06d5\".split(\"_\"),weekdaysShort:\"\\u064a\\u06d5_\\u062f\\u06c8_\\u0633\\u06d5_\\u0686\\u0627_\\u067e\\u06d5_\\u062c\\u06c8_\\u0634\\u06d5\".split(\"_\"),weekdaysMin:\"\\u064a\\u06d5_\\u062f\\u06c8_\\u0633\\u06d5_\\u0686\\u0627_\\u067e\\u06d5_\\u062c\\u06c8_\\u0634\\u06d5\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\",LLL:\"YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\\u060c HH:mm\",LLLL:\"dddd\\u060c YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\\u060c HH:mm\"},meridiemParse:/\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5|\\u0633\\u06d5\\u06be\\u06d5\\u0631|\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646|\\u0686\\u06c8\\u0634|\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646|\\u0643\\u06d5\\u0686/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5\"===t||\"\\u0633\\u06d5\\u06be\\u06d5\\u0631\"===t||\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646\"===t?e:\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646\"===t||\"\\u0643\\u06d5\\u0686\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5\":i<900?\"\\u0633\\u06d5\\u06be\\u06d5\\u0631\":i<1130?\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646\":i<1230?\"\\u0686\\u06c8\\u0634\":i<1800?\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646\":\"\\u0643\\u06d5\\u0686\"},calendar:{sameDay:\"[\\u0628\\u06c8\\u06af\\u06c8\\u0646 \\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",nextDay:\"[\\u0626\\u06d5\\u062a\\u06d5 \\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",nextWeek:\"[\\u0643\\u06d0\\u0644\\u06d5\\u0631\\u0643\\u0649] dddd [\\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",lastDay:\"[\\u062a\\u06c6\\u0646\\u06c8\\u06af\\u06c8\\u0646] LT\",lastWeek:\"[\\u0626\\u0627\\u0644\\u062f\\u0649\\u0646\\u0642\\u0649] dddd [\\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0643\\u06d0\\u064a\\u0649\\u0646\",past:\"%s \\u0628\\u06c7\\u0631\\u06c7\\u0646\",s:\"\\u0646\\u06d5\\u0686\\u0686\\u06d5 \\u0633\\u06d0\\u0643\\u0648\\u0646\\u062a\",ss:\"%d \\u0633\\u06d0\\u0643\\u0648\\u0646\\u062a\",m:\"\\u0628\\u0649\\u0631 \\u0645\\u0649\\u0646\\u06c7\\u062a\",mm:\"%d \\u0645\\u0649\\u0646\\u06c7\\u062a\",h:\"\\u0628\\u0649\\u0631 \\u0633\\u0627\\u0626\\u06d5\\u062a\",hh:\"%d \\u0633\\u0627\\u0626\\u06d5\\u062a\",d:\"\\u0628\\u0649\\u0631 \\u0643\\u06c8\\u0646\",dd:\"%d \\u0643\\u06c8\\u0646\",M:\"\\u0628\\u0649\\u0631 \\u0626\\u0627\\u064a\",MM:\"%d \\u0626\\u0627\\u064a\",y:\"\\u0628\\u0649\\u0631 \\u064a\\u0649\\u0644\",yy:\"%d \\u064a\\u0649\\u0644\"},dayOfMonthOrdinalParse:/\\d{1,2}(-\\u0643\\u06c8\\u0646\\u0649|-\\u0626\\u0627\\u064a|-\\u06be\\u06d5\\u067e\\u062a\\u06d5)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"-\\u0643\\u06c8\\u0646\\u0649\";case\"w\":case\"W\":return e+\"-\\u06be\\u06d5\\u067e\\u062a\\u06d5\";default:return e}},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:7}})}(n(\"wd/R\"))},YuTi:function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,\"loaded\",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,\"id\",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},Z4QM:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u062c\\u0646\\u0648\\u0631\\u064a\",\"\\u0641\\u064a\\u0628\\u0631\\u0648\\u0631\\u064a\",\"\\u0645\\u0627\\u0631\\u0686\",\"\\u0627\\u067e\\u0631\\u064a\\u0644\",\"\\u0645\\u0626\\u064a\",\"\\u062c\\u0648\\u0646\",\"\\u062c\\u0648\\u0644\\u0627\\u0621\\u0650\",\"\\u0622\\u06af\\u0633\\u067d\",\"\\u0633\\u064a\\u067e\\u067d\\u0645\\u0628\\u0631\",\"\\u0622\\u06aa\\u067d\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0645\\u0628\\u0631\",\"\\u068a\\u0633\\u0645\\u0628\\u0631\"],n=[\"\\u0622\\u0686\\u0631\",\"\\u0633\\u0648\\u0645\\u0631\",\"\\u0627\\u06b1\\u0627\\u0631\\u0648\",\"\\u0627\\u0631\\u0628\\u0639\",\"\\u062e\\u0645\\u064a\\u0633\",\"\\u062c\\u0645\\u0639\",\"\\u0687\\u0646\\u0687\\u0631\"];e.defineLocale(\"sd\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd\\u060c D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635\\u0628\\u062d|\\u0634\\u0627\\u0645/,isPM:function(e){return\"\\u0634\\u0627\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\\u0628\\u062d\":\"\\u0634\\u0627\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0684] LT\",nextDay:\"[\\u0633\\u0680\\u0627\\u06bb\\u064a] LT\",nextWeek:\"dddd [\\u0627\\u06b3\\u064a\\u0646 \\u0647\\u0641\\u062a\\u064a \\u062a\\u064a] LT\",lastDay:\"[\\u06aa\\u0627\\u0644\\u0647\\u0647] LT\",lastWeek:\"[\\u06af\\u0632\\u0631\\u064a\\u0644 \\u0647\\u0641\\u062a\\u064a] dddd [\\u062a\\u064a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u067e\\u0648\\u0621\",past:\"%s \\u0627\\u06b3\",s:\"\\u0686\\u0646\\u062f \\u0633\\u064a\\u06aa\\u0646\\u068a\",ss:\"%d \\u0633\\u064a\\u06aa\\u0646\\u068a\",m:\"\\u0647\\u06aa \\u0645\\u0646\\u067d\",mm:\"%d \\u0645\\u0646\\u067d\",h:\"\\u0647\\u06aa \\u06aa\\u0644\\u0627\\u06aa\",hh:\"%d \\u06aa\\u0644\\u0627\\u06aa\",d:\"\\u0647\\u06aa \\u068f\\u064a\\u0646\\u0647\\u0646\",dd:\"%d \\u068f\\u064a\\u0646\\u0647\\u0646\",M:\"\\u0647\\u06aa \\u0645\\u0647\\u064a\\u0646\\u0648\",MM:\"%d \\u0645\\u0647\\u064a\\u0646\\u0627\",y:\"\\u0647\\u06aa \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},ZAMP:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms-my\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},Zduo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"eo\",{months:\"januaro_februaro_marto_aprilo_majo_junio_julio_a\\u016dgusto_septembro_oktobro_novembro_decembro\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_a\\u016dg_sep_okt_nov_dec\".split(\"_\"),weekdays:\"diman\\u0109o_lundo_mardo_merkredo_\\u0135a\\u016ddo_vendredo_sabato\".split(\"_\"),weekdaysShort:\"dim_lun_mard_merk_\\u0135a\\u016d_ven_sab\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_\\u0135a_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D[-a de] MMMM, YYYY\",LLL:\"D[-a de] MMMM, YYYY HH:mm\",LLLL:\"dddd, [la] D[-a de] MMMM, YYYY HH:mm\"},meridiemParse:/[ap]\\.t\\.m/i,isPM:function(e){return\"p\"===e.charAt(0).toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"p.t.m.\":\"P.T.M.\":n?\"a.t.m.\":\"A.T.M.\"},calendar:{sameDay:\"[Hodia\\u016d je] LT\",nextDay:\"[Morga\\u016d je] LT\",nextWeek:\"dddd [je] LT\",lastDay:\"[Hiera\\u016d je] LT\",lastWeek:\"[pasinta] dddd [je] LT\",sameElse:\"L\"},relativeTime:{future:\"post %s\",past:\"anta\\u016d %s\",s:\"sekundoj\",ss:\"%d sekundoj\",m:\"minuto\",mm:\"%d minutoj\",h:\"horo\",hh:\"%d horoj\",d:\"tago\",dd:\"%d tagoj\",M:\"monato\",MM:\"%d monatoj\",y:\"jaro\",yy:\"%d jaroj\"},dayOfMonthOrdinalParse:/\\d{1,2}a/,ordinal:\"%da\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},aCrv:function(e,t,n){var i,s=function(){this._tweens={},this._tweensAddedDuringUpdate={}};s.prototype={getAll:function(){return Object.keys(this._tweens).map((function(e){return this._tweens[e]}).bind(this))},removeAll:function(){this._tweens={}},add:function(e){this._tweens[e.getId()]=e,this._tweensAddedDuringUpdate[e.getId()]=e},remove:function(e){delete this._tweens[e.getId()],delete this._tweensAddedDuringUpdate[e.getId()]},update:function(e,t){var n=Object.keys(this._tweens);if(0===n.length)return!1;for(e=void 0!==e?e:o.now();n.length>0;){this._tweensAddedDuringUpdate={};for(var i=0;i1?1:n),this._valuesEnd)if(void 0!==this._valuesStart[t]){var s=this._valuesStart[t]||0,r=this._valuesEnd[t];r instanceof Array?this._object[t]=this._interpolationFunction(r,i):(\"string\"==typeof r&&(r=\"+\"===r.charAt(0)||\"-\"===r.charAt(0)?s+parseFloat(r):parseFloat(r)),\"number\"==typeof r&&(this._object[t]=s+(r-s)*i))}if(null!==this._onUpdateCallback&&this._onUpdateCallback(this._object,n),1===n){if(this._repeat>0){for(t in isFinite(this._repeat)&&this._repeat--,this._valuesStartRepeat){if(\"string\"==typeof this._valuesEnd[t]&&(this._valuesStartRepeat[t]=this._valuesStartRepeat[t]+parseFloat(this._valuesEnd[t])),this._yoyo){var o=this._valuesStartRepeat[t];this._valuesStartRepeat[t]=this._valuesEnd[t],this._valuesEnd[t]=o}this._valuesStart[t]=this._valuesStartRepeat[t]}return this._yoyo&&(this._reversed=!this._reversed),this._startTime=void 0!==this._repeatDelayTime?e+this._repeatDelayTime:e+this._delayTime,null!==this._onRepeatCallback&&this._onRepeatCallback(this._object),!0}null!==this._onCompleteCallback&&this._onCompleteCallback(this._object);for(var a=0,l=this._chainedTweens.length;a1?r(e[n],e[n-1],n-i):r(e[s],e[s+1>n?n:s+1],i-s)},Bezier:function(e,t){for(var n=0,i=e.length-1,s=Math.pow,r=o.Interpolation.Utils.Bernstein,a=0;a<=i;a++)n+=s(1-t,i-a)*s(t,a)*e[a]*r(i,a);return n},CatmullRom:function(e,t){var n=e.length-1,i=n*t,s=Math.floor(i),r=o.Interpolation.Utils.CatmullRom;return e[0]===e[n]?(t<0&&(s=Math.floor(i=n*(1+t))),r(e[(s-1+n)%n],e[s],e[(s+1)%n],e[(s+2)%n],i-s)):t<0?e[0]-(r(e[0],e[0],e[1],e[1],-i)-e[0]):t>1?e[n]-(r(e[n],e[n],e[n-1],e[n-1],i-n)-e[n]):r(e[s?s-1:0],e[s],e[n1;n--)t*=n;return r[e]=t,t}),CatmullRom:function(e,t,n,i,s){var r=.5*(n-e),o=.5*(i-t),a=s*s;return(2*t-2*n+r+o)*(s*a)+(-3*t+3*n-2*r-o)*a+r*s+t}}},void 0===(i=(function(){return o}).apply(t,[]))||(e.exports=i)},aIdf:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){return e+\" \"+function(e,t){return 2===t?function(e){var t={m:\"v\",b:\"v\",d:\"z\"};return void 0===t[e.charAt(0)]?e:t[e.charAt(0)]+e.substring(1)}(e):e}({mm:\"munutenn\",MM:\"miz\",dd:\"devezh\"}[n],e)}e.defineLocale(\"br\",{months:\"Genver_C'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu\".split(\"_\"),monthsShort:\"Gen_C'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker\".split(\"_\"),weekdays:\"Sul_Lun_Meurzh_Merc'her_Yaou_Gwener_Sadorn\".split(\"_\"),weekdaysShort:\"Sul_Lun_Meu_Mer_Yao_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Lu_Me_Mer_Ya_Gw_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h[e]mm A\",LTS:\"h[e]mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D [a viz] MMMM YYYY\",LLL:\"D [a viz] MMMM YYYY h[e]mm A\",LLLL:\"dddd, D [a viz] MMMM YYYY h[e]mm A\"},calendar:{sameDay:\"[Hiziv da] LT\",nextDay:\"[Warc'hoazh da] LT\",nextWeek:\"dddd [da] LT\",lastDay:\"[Dec'h da] LT\",lastWeek:\"dddd [paset da] LT\",sameElse:\"L\"},relativeTime:{future:\"a-benn %s\",past:\"%s 'zo\",s:\"un nebeud segondenno\\xf9\",ss:\"%d eilenn\",m:\"ur vunutenn\",mm:t,h:\"un eur\",hh:\"%d eur\",d:\"un devezh\",dd:t,M:\"ur miz\",MM:t,y:\"ur bloaz\",yy:function(e){switch(function e(t){return t>9?e(t%10):t}(e)){case 1:case 3:case 4:case 5:case 9:return e+\" bloaz\";default:return e+\" vloaz\"}}},dayOfMonthOrdinalParse:/\\d{1,2}(a\\xf1|vet)/,ordinal:function(e){return e+(1===e?\"a\\xf1\":\"vet\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},aIsn:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mi\",{months:\"Kohi-t\\u0101te_Hui-tanguru_Pout\\u016b-te-rangi_Paenga-wh\\u0101wh\\u0101_Haratua_Pipiri_H\\u014dngoingoi_Here-turi-k\\u014dk\\u0101_Mahuru_Whiringa-\\u0101-nuku_Whiringa-\\u0101-rangi_Hakihea\".split(\"_\"),monthsShort:\"Kohi_Hui_Pou_Pae_Hara_Pipi_H\\u014dngoi_Here_Mahu_Whi-nu_Whi-ra_Haki\".split(\"_\"),monthsRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,2}/i,weekdays:\"R\\u0101tapu_Mane_T\\u016brei_Wenerei_T\\u0101ite_Paraire_H\\u0101tarei\".split(\"_\"),weekdaysShort:\"Ta_Ma_T\\u016b_We_T\\u0101i_Pa_H\\u0101\".split(\"_\"),weekdaysMin:\"Ta_Ma_T\\u016b_We_T\\u0101i_Pa_H\\u0101\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [i] HH:mm\",LLLL:\"dddd, D MMMM YYYY [i] HH:mm\"},calendar:{sameDay:\"[i teie mahana, i] LT\",nextDay:\"[apopo i] LT\",nextWeek:\"dddd [i] LT\",lastDay:\"[inanahi i] LT\",lastWeek:\"dddd [whakamutunga i] LT\",sameElse:\"L\"},relativeTime:{future:\"i roto i %s\",past:\"%s i mua\",s:\"te h\\u0113kona ruarua\",ss:\"%d h\\u0113kona\",m:\"he meneti\",mm:\"%d meneti\",h:\"te haora\",hh:\"%d haora\",d:\"he ra\",dd:\"%d ra\",M:\"he marama\",MM:\"%d marama\",y:\"he tau\",yy:\"%d tau\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},aQkU:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mk\",{months:\"\\u0458\\u0430\\u043d\\u0443\\u0430\\u0440\\u0438_\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d\\u0438_\\u0458\\u0443\\u043b\\u0438_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438_\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438_\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438_\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\".split(\"_\"),monthsShort:\"\\u0458\\u0430\\u043d_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043f_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u0435_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u0430_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u043e\\u043a_\\u043f\\u0435\\u0442\\u043e\\u043a_\\u0441\\u0430\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434_\\u043f\\u043e\\u043d_\\u0432\\u0442\\u043e_\\u0441\\u0440\\u0435_\\u0447\\u0435\\u0442_\\u043f\\u0435\\u0442_\\u0441\\u0430\\u0431\".split(\"_\"),weekdaysMin:\"\\u043de_\\u043fo_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0435_\\u043f\\u0435_\\u0441a\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0414\\u0435\\u043d\\u0435\\u0441 \\u0432\\u043e] LT\",nextDay:\"[\\u0423\\u0442\\u0440\\u0435 \\u0432\\u043e] LT\",nextWeek:\"[\\u0412\\u043e] dddd [\\u0432\\u043e] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430 \\u0432\\u043e] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[\\u0418\\u0437\\u043c\\u0438\\u043d\\u0430\\u0442\\u0430\\u0442\\u0430] dddd [\\u0432\\u043e] LT\";case 1:case 2:case 4:case 5:return\"[\\u0418\\u0437\\u043c\\u0438\\u043d\\u0430\\u0442\\u0438\\u043e\\u0442] dddd [\\u0432\\u043e] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u043f\\u043e\\u0441\\u043b\\u0435 %s\",past:\"\\u043f\\u0440\\u0435\\u0434 %s\",s:\"\\u043d\\u0435\\u043a\\u043e\\u043b\\u043a\\u0443 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",m:\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\\u0438\",h:\"\\u0447\\u0430\\u0441\",hh:\"%d \\u0447\\u0430\\u0441\\u0430\",d:\"\\u0434\\u0435\\u043d\",dd:\"%d \\u0434\\u0435\\u043d\\u0430\",M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:\"%d \\u043c\\u0435\\u0441\\u0435\\u0446\\u0438\",y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",yy:\"%d \\u0433\\u043e\\u0434\\u0438\\u043d\\u0438\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0435\\u0432|\\u0435\\u043d|\\u0442\\u0438|\\u0432\\u0438|\\u0440\\u0438|\\u043c\\u0438)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-\\u0435\\u0432\":0===n?e+\"-\\u0435\\u043d\":n>10&&n<20?e+\"-\\u0442\\u0438\":1===t?e+\"-\\u0432\\u0438\":2===t?e+\"-\\u0440\\u0438\":7===t||8===t?e+\"-\\u043c\\u0438\":e+\"-\\u0442\\u0438\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},b1Dy:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-nz\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},bOMt:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nb\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"s\\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\\xf8rdag\".split(\"_\"),weekdaysShort:\"s\\xf8._ma._ti._on._to._fr._l\\xf8.\".split(\"_\"),weekdaysMin:\"s\\xf8_ma_ti_on_to_fr_l\\xf8\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"dddd [kl.] LT\",lastDay:\"[i g\\xe5r kl.] LT\",lastWeek:\"[forrige] dddd [kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"noen sekunder\",ss:\"%d sekunder\",m:\"ett minutt\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dager\",M:\"en m\\xe5ned\",MM:\"%d m\\xe5neder\",y:\"ett \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},bXm7:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0448\\u0456\",1:\"-\\u0448\\u0456\",2:\"-\\u0448\\u0456\",3:\"-\\u0448\\u0456\",4:\"-\\u0448\\u0456\",5:\"-\\u0448\\u0456\",6:\"-\\u0448\\u044b\",7:\"-\\u0448\\u0456\",8:\"-\\u0448\\u0456\",9:\"-\\u0448\\u044b\",10:\"-\\u0448\\u044b\",20:\"-\\u0448\\u044b\",30:\"-\\u0448\\u044b\",40:\"-\\u0448\\u044b\",50:\"-\\u0448\\u0456\",60:\"-\\u0448\\u044b\",70:\"-\\u0448\\u0456\",80:\"-\\u0448\\u0456\",90:\"-\\u0448\\u044b\",100:\"-\\u0448\\u0456\"};e.defineLocale(\"kk\",{months:\"\\u049b\\u0430\\u04a3\\u0442\\u0430\\u0440_\\u0430\\u049b\\u043f\\u0430\\u043d_\\u043d\\u0430\\u0443\\u0440\\u044b\\u0437_\\u0441\\u04d9\\u0443\\u0456\\u0440_\\u043c\\u0430\\u043c\\u044b\\u0440_\\u043c\\u0430\\u0443\\u0441\\u044b\\u043c_\\u0448\\u0456\\u043b\\u0434\\u0435_\\u0442\\u0430\\u043c\\u044b\\u0437_\\u049b\\u044b\\u0440\\u043a\\u04af\\u0439\\u0435\\u043a_\\u049b\\u0430\\u0437\\u0430\\u043d_\\u049b\\u0430\\u0440\\u0430\\u0448\\u0430_\\u0436\\u0435\\u043b\\u0442\\u043e\\u049b\\u0441\\u0430\\u043d\".split(\"_\"),monthsShort:\"\\u049b\\u0430\\u04a3_\\u0430\\u049b\\u043f_\\u043d\\u0430\\u0443_\\u0441\\u04d9\\u0443_\\u043c\\u0430\\u043c_\\u043c\\u0430\\u0443_\\u0448\\u0456\\u043b_\\u0442\\u0430\\u043c_\\u049b\\u044b\\u0440_\\u049b\\u0430\\u0437_\\u049b\\u0430\\u0440_\\u0436\\u0435\\u043b\".split(\"_\"),weekdays:\"\\u0436\\u0435\\u043a\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0434\\u04af\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0441\\u0435\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0441\\u04d9\\u0440\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0431\\u0435\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0436\\u04b1\\u043c\\u0430_\\u0441\\u0435\\u043d\\u0431\\u0456\".split(\"_\"),weekdaysShort:\"\\u0436\\u0435\\u043a_\\u0434\\u04af\\u0439_\\u0441\\u0435\\u0439_\\u0441\\u04d9\\u0440_\\u0431\\u0435\\u0439_\\u0436\\u04b1\\u043c_\\u0441\\u0435\\u043d\".split(\"_\"),weekdaysMin:\"\\u0436\\u043a_\\u0434\\u0439_\\u0441\\u0439_\\u0441\\u0440_\\u0431\\u0439_\\u0436\\u043c_\\u0441\\u043d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0411\\u04af\\u0433\\u0456\\u043d \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",nextDay:\"[\\u0415\\u0440\\u0442\\u0435\\u04a3 \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",nextWeek:\"dddd [\\u0441\\u0430\\u0493\\u0430\\u0442] LT\",lastDay:\"[\\u041a\\u0435\\u0448\\u0435 \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",lastWeek:\"[\\u04e8\\u0442\\u043a\\u0435\\u043d \\u0430\\u043f\\u0442\\u0430\\u043d\\u044b\\u04a3] dddd [\\u0441\\u0430\\u0493\\u0430\\u0442] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0456\\u0448\\u0456\\u043d\\u0434\\u0435\",past:\"%s \\u0431\\u04b1\\u0440\\u044b\\u043d\",s:\"\\u0431\\u0456\\u0440\\u043d\\u0435\\u0448\\u0435 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:\"\\u0431\\u0456\\u0440 \\u043c\\u0438\\u043d\\u0443\\u0442\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\",h:\"\\u0431\\u0456\\u0440 \\u0441\\u0430\\u0493\\u0430\\u0442\",hh:\"%d \\u0441\\u0430\\u0493\\u0430\\u0442\",d:\"\\u0431\\u0456\\u0440 \\u043a\\u04af\\u043d\",dd:\"%d \\u043a\\u04af\\u043d\",M:\"\\u0431\\u0456\\u0440 \\u0430\\u0439\",MM:\"%d \\u0430\\u0439\",y:\"\\u0431\\u0456\\u0440 \\u0436\\u044b\\u043b\",yy:\"%d \\u0436\\u044b\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0448\\u0456|\\u0448\\u044b)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},bYM6:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-tn\",{months:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},bpih:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_luned\\xec_marted\\xec_mercoled\\xec_gioved\\xec_venerd\\xec_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Oggi alle] LT\",nextDay:\"[Domani alle] LT\",nextWeek:\"dddd [alle] LT\",lastDay:\"[Ieri alle] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[la scorsa] dddd [alle] LT\";default:return\"[lo scorso] dddd [alle] LT\"}},sameElse:\"L\"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?\"tra\":\"in\")+\" \"+e},past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},bxKX:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it-ch\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_luned\\xec_marted\\xec_mercoled\\xec_gioved\\xec_venerd\\xec_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Oggi alle] LT\",nextDay:\"[Domani alle] LT\",nextWeek:\"dddd [alle] LT\",lastDay:\"[Ieri alle] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[la scorsa] dddd [alle] LT\";default:return\"[lo scorso] dddd [alle] LT\"}},sameElse:\"L\"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?\"tra\":\"in\")+\" \"+e},past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},cRix:function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.\".split(\"_\"),n=\"jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\");e.defineLocale(\"fy\",{months:\"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsParseExact:!0,weekdays:\"snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon\".split(\"_\"),weekdaysShort:\"si._mo._ti._wo._to._fr._so.\".split(\"_\"),weekdaysMin:\"Si_Mo_Ti_Wo_To_Fr_So\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[hjoed om] LT\",nextDay:\"[moarn om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[juster om] LT\",lastWeek:\"[\\xf4fr\\xfbne] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oer %s\",past:\"%s lyn\",s:\"in pear sekonden\",ss:\"%d sekonden\",m:\"ien min\\xfat\",mm:\"%d minuten\",h:\"ien oere\",hh:\"%d oeren\",d:\"ien dei\",dd:\"%d dagen\",M:\"ien moanne\",MM:\"%d moannen\",y:\"ien jier\",yy:\"%d jierren\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},czMo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-il\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(\"wd/R\"))},dNwA:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sw\",{months:\"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi\".split(\"_\"),weekdaysShort:\"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos\".split(\"_\"),weekdaysMin:\"J2_J3_J4_J5_Al_Ij_J1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[leo saa] LT\",nextDay:\"[kesho saa] LT\",nextWeek:\"[wiki ijayo] dddd [saat] LT\",lastDay:\"[jana] LT\",lastWeek:\"[wiki iliyopita] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s baadaye\",past:\"tokea %s\",s:\"hivi punde\",ss:\"sekunde %d\",m:\"dakika moja\",mm:\"dakika %d\",h:\"saa limoja\",hh:\"masaa %d\",d:\"siku moja\",dd:\"masiku %d\",M:\"mwezi mmoja\",MM:\"miezi %d\",y:\"mwaka mmoja\",yy:\"miaka %d\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"e+ae\":function(e,t,n){!function(e){\"use strict\";var t=\"janu\\xe1r_febru\\xe1r_marec_apr\\xedl_m\\xe1j_j\\xfan_j\\xfal_august_september_okt\\xf3ber_november_december\".split(\"_\"),n=\"jan_feb_mar_apr_m\\xe1j_j\\xfan_j\\xfal_aug_sep_okt_nov_dec\".split(\"_\");function i(e){return e>1&&e<5}function s(e,t,n,s){var r=e+\" \";switch(n){case\"s\":return t||s?\"p\\xe1r sek\\xfand\":\"p\\xe1r sekundami\";case\"ss\":return t||s?r+(i(e)?\"sekundy\":\"sek\\xfand\"):r+\"sekundami\";case\"m\":return t?\"min\\xfata\":s?\"min\\xfatu\":\"min\\xfatou\";case\"mm\":return t||s?r+(i(e)?\"min\\xfaty\":\"min\\xfat\"):r+\"min\\xfatami\";case\"h\":return t?\"hodina\":s?\"hodinu\":\"hodinou\";case\"hh\":return t||s?r+(i(e)?\"hodiny\":\"hod\\xedn\"):r+\"hodinami\";case\"d\":return t||s?\"de\\u0148\":\"d\\u0148om\";case\"dd\":return t||s?r+(i(e)?\"dni\":\"dn\\xed\"):r+\"d\\u0148ami\";case\"M\":return t||s?\"mesiac\":\"mesiacom\";case\"MM\":return t||s?r+(i(e)?\"mesiace\":\"mesiacov\"):r+\"mesiacmi\";case\"y\":return t||s?\"rok\":\"rokom\";case\"yy\":return t||s?r+(i(e)?\"roky\":\"rokov\"):r+\"rokmi\"}}e.defineLocale(\"sk\",{months:t,monthsShort:n,weekdays:\"nede\\u013ea_pondelok_utorok_streda_\\u0161tvrtok_piatok_sobota\".split(\"_\"),weekdaysShort:\"ne_po_ut_st_\\u0161t_pi_so\".split(\"_\"),weekdaysMin:\"ne_po_ut_st_\\u0161t_pi_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[dnes o] LT\",nextDay:\"[zajtra o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v nede\\u013eu o] LT\";case 1:case 2:return\"[v] dddd [o] LT\";case 3:return\"[v stredu o] LT\";case 4:return\"[vo \\u0161tvrtok o] LT\";case 5:return\"[v piatok o] LT\";case 6:return\"[v sobotu o] LT\"}},lastDay:\"[v\\u010dera o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minul\\xfa nede\\u013eu o] LT\";case 1:case 2:return\"[minul\\xfd] dddd [o] LT\";case 3:return\"[minul\\xfa stredu o] LT\";case 4:case 5:return\"[minul\\xfd] dddd [o] LT\";case 6:return\"[minul\\xfa sobotu o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pred %s\",s,ss:s,m:s,mm:s,h:s,hh:s,d:s,dd:s,M:s,MM:s,y:s,yy:s},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},evrj:function(e,t,n){var i=n(\"m4GZ\");e.exports=function(e){var t=e.replace(/-/g,\"+\").replace(/_/g,\"/\");switch(t.length%4){case 0:break;case 2:t+=\"==\";break;case 3:t+=\"=\";break;default:throw\"Illegal base64url string!\"}try{return function(e){return decodeURIComponent(i(e).replace(/(.)/g,(function(e,t){var n=t.charCodeAt(0).toString(16).toUpperCase();return n.length<2&&(n=\"0\"+n),\"%\"+n})))}(t)}catch(n){return i(t)}}},fzPg:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"yo\",{months:\"S\\u1eb9\\u0301r\\u1eb9\\u0301_E\\u0300re\\u0300le\\u0300_\\u1eb8r\\u1eb9\\u0300na\\u0300_I\\u0300gbe\\u0301_E\\u0300bibi_O\\u0300ku\\u0300du_Ag\\u1eb9mo_O\\u0300gu\\u0301n_Owewe_\\u1ecc\\u0300wa\\u0300ra\\u0300_Be\\u0301lu\\u0301_\\u1ecc\\u0300p\\u1eb9\\u0300\\u0300\".split(\"_\"),monthsShort:\"S\\u1eb9\\u0301r_E\\u0300rl_\\u1eb8rn_I\\u0300gb_E\\u0300bi_O\\u0300ku\\u0300_Ag\\u1eb9_O\\u0300gu\\u0301_Owe_\\u1ecc\\u0300wa\\u0300_Be\\u0301l_\\u1ecc\\u0300p\\u1eb9\\u0300\\u0300\".split(\"_\"),weekdays:\"A\\u0300i\\u0300ku\\u0301_Aje\\u0301_I\\u0300s\\u1eb9\\u0301gun_\\u1eccj\\u1ecd\\u0301ru\\u0301_\\u1eccj\\u1ecd\\u0301b\\u1ecd_\\u1eb8ti\\u0300_A\\u0300ba\\u0301m\\u1eb9\\u0301ta\".split(\"_\"),weekdaysShort:\"A\\u0300i\\u0300k_Aje\\u0301_I\\u0300s\\u1eb9\\u0301_\\u1eccjr_\\u1eccjb_\\u1eb8ti\\u0300_A\\u0300ba\\u0301\".split(\"_\"),weekdaysMin:\"A\\u0300i\\u0300_Aj_I\\u0300s_\\u1eccr_\\u1eccb_\\u1eb8t_A\\u0300b\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[O\\u0300ni\\u0300 ni] LT\",nextDay:\"[\\u1ecc\\u0300la ni] LT\",nextWeek:\"dddd [\\u1eccs\\u1eb9\\u0300 to\\u0301n'b\\u1ecd] [ni] LT\",lastDay:\"[A\\u0300na ni] LT\",lastWeek:\"dddd [\\u1eccs\\u1eb9\\u0300 to\\u0301l\\u1ecd\\u0301] [ni] LT\",sameElse:\"L\"},relativeTime:{future:\"ni\\u0301 %s\",past:\"%s k\\u1ecdja\\u0301\",s:\"i\\u0300s\\u1eb9ju\\u0301 aaya\\u0301 die\",ss:\"aaya\\u0301 %d\",m:\"i\\u0300s\\u1eb9ju\\u0301 kan\",mm:\"i\\u0300s\\u1eb9ju\\u0301 %d\",h:\"wa\\u0301kati kan\",hh:\"wa\\u0301kati %d\",d:\"\\u1ecdj\\u1ecd\\u0301 kan\",dd:\"\\u1ecdj\\u1ecd\\u0301 %d\",M:\"osu\\u0300 kan\",MM:\"osu\\u0300 %d\",y:\"\\u1ecddu\\u0301n kan\",yy:\"\\u1ecddu\\u0301n %d\"},dayOfMonthOrdinalParse:/\\u1ecdj\\u1ecd\\u0301\\s\\d{1,2}/,ordinal:\"\\u1ecdj\\u1ecd\\u0301 %d\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},gVVK:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s=e+\" \";switch(n){case\"s\":return t||i?\"nekaj sekund\":\"nekaj sekundami\";case\"ss\":return s+(1===e?t?\"sekundo\":\"sekundi\":2===e?t||i?\"sekundi\":\"sekundah\":e<5?t||i?\"sekunde\":\"sekundah\":\"sekund\");case\"m\":return t?\"ena minuta\":\"eno minuto\";case\"mm\":return s+(1===e?t?\"minuta\":\"minuto\":2===e?t||i?\"minuti\":\"minutama\":e<5?t||i?\"minute\":\"minutami\":t||i?\"minut\":\"minutami\");case\"h\":return t?\"ena ura\":\"eno uro\";case\"hh\":return s+(1===e?t?\"ura\":\"uro\":2===e?t||i?\"uri\":\"urama\":e<5?t||i?\"ure\":\"urami\":t||i?\"ur\":\"urami\");case\"d\":return t||i?\"en dan\":\"enim dnem\";case\"dd\":return s+(1===e?t||i?\"dan\":\"dnem\":2===e?t||i?\"dni\":\"dnevoma\":t||i?\"dni\":\"dnevi\");case\"M\":return t||i?\"en mesec\":\"enim mesecem\";case\"MM\":return s+(1===e?t||i?\"mesec\":\"mesecem\":2===e?t||i?\"meseca\":\"mesecema\":e<5?t||i?\"mesece\":\"meseci\":t||i?\"mesecev\":\"meseci\");case\"y\":return t||i?\"eno leto\":\"enim letom\";case\"yy\":return s+(1===e?t||i?\"leto\":\"letom\":2===e?t||i?\"leti\":\"letoma\":e<5?t||i?\"leta\":\"leti\":t||i?\"let\":\"leti\")}}e.defineLocale(\"sl\",{months:\"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljek_torek_sreda_\\u010detrtek_petek_sobota\".split(\"_\"),weekdaysShort:\"ned._pon._tor._sre._\\u010det._pet._sob.\".split(\"_\"),weekdaysMin:\"ne_po_to_sr_\\u010de_pe_so\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danes ob] LT\",nextDay:\"[jutri ob] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v] [nedeljo] [ob] LT\";case 3:return\"[v] [sredo] [ob] LT\";case 6:return\"[v] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[v] dddd [ob] LT\"}},lastDay:\"[v\\u010deraj ob] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[prej\\u0161njo] [nedeljo] [ob] LT\";case 3:return\"[prej\\u0161njo] [sredo] [ob] LT\";case 6:return\"[prej\\u0161njo] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[prej\\u0161nji] dddd [ob] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u010dez %s\",past:\"pred %s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},gekB:function(e,t,n){!function(e){\"use strict\";var t=\"nolla yksi kaksi kolme nelj\\xe4 viisi kuusi seitsem\\xe4n kahdeksan yhdeks\\xe4n\".split(\" \"),n=[\"nolla\",\"yhden\",\"kahden\",\"kolmen\",\"nelj\\xe4n\",\"viiden\",\"kuuden\",t[7],t[8],t[9]];function i(e,i,s,r){var o=\"\";switch(s){case\"s\":return r?\"muutaman sekunnin\":\"muutama sekunti\";case\"ss\":return r?\"sekunnin\":\"sekuntia\";case\"m\":return r?\"minuutin\":\"minuutti\";case\"mm\":o=r?\"minuutin\":\"minuuttia\";break;case\"h\":return r?\"tunnin\":\"tunti\";case\"hh\":o=r?\"tunnin\":\"tuntia\";break;case\"d\":return r?\"p\\xe4iv\\xe4n\":\"p\\xe4iv\\xe4\";case\"dd\":o=r?\"p\\xe4iv\\xe4n\":\"p\\xe4iv\\xe4\\xe4\";break;case\"M\":return r?\"kuukauden\":\"kuukausi\";case\"MM\":o=r?\"kuukauden\":\"kuukautta\";break;case\"y\":return r?\"vuoden\":\"vuosi\";case\"yy\":o=r?\"vuoden\":\"vuotta\"}return function(e,i){return e<10?i?n[e]:t[e]:e}(e,r)+\" \"+o}e.defineLocale(\"fi\",{months:\"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kes\\xe4kuu_hein\\xe4kuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu\".split(\"_\"),monthsShort:\"tammi_helmi_maalis_huhti_touko_kes\\xe4_hein\\xe4_elo_syys_loka_marras_joulu\".split(\"_\"),weekdays:\"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai\".split(\"_\"),weekdaysShort:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),weekdaysMin:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"Do MMMM[ta] YYYY\",LLL:\"Do MMMM[ta] YYYY, [klo] HH.mm\",LLLL:\"dddd, Do MMMM[ta] YYYY, [klo] HH.mm\",l:\"D.M.YYYY\",ll:\"Do MMM YYYY\",lll:\"Do MMM YYYY, [klo] HH.mm\",llll:\"ddd, Do MMM YYYY, [klo] HH.mm\"},calendar:{sameDay:\"[t\\xe4n\\xe4\\xe4n] [klo] LT\",nextDay:\"[huomenna] [klo] LT\",nextWeek:\"dddd [klo] LT\",lastDay:\"[eilen] [klo] LT\",lastWeek:\"[viime] dddd[na] [klo] LT\",sameElse:\"L\"},relativeTime:{future:\"%s p\\xe4\\xe4st\\xe4\",past:\"%s sitten\",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},gjCT:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"};e.defineLocale(\"ar-sa\",{months:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a\\u0648_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648_\\u0623\\u063a\\u0633\\u0637\\u0633_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a\\u0648_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648_\\u0623\\u063a\\u0633\\u0637\\u0633_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:0,doy:6}})}(n(\"wd/R\"))},hKrs:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bg\",{months:\"\\u044f\\u043d\\u0443\\u0430\\u0440\\u0438_\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0439_\\u044e\\u043d\\u0438_\\u044e\\u043b\\u0438_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438_\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438_\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438_\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0440_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u044e\\u043d\\u0438_\\u044e\\u043b\\u0438_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043f_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u0435_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u044f_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u044f\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u044a\\u0440\\u0442\\u044a\\u043a_\\u043f\\u0435\\u0442\\u044a\\u043a_\\u0441\\u044a\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434_\\u043f\\u043e\\u043d_\\u0432\\u0442\\u043e_\\u0441\\u0440\\u044f_\\u0447\\u0435\\u0442_\\u043f\\u0435\\u0442_\\u0441\\u044a\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0414\\u043d\\u0435\\u0441 \\u0432] LT\",nextDay:\"[\\u0423\\u0442\\u0440\\u0435 \\u0432] LT\",nextWeek:\"dddd [\\u0432] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430 \\u0432] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[\\u0412 \\u0438\\u0437\\u043c\\u0438\\u043d\\u0430\\u043b\\u0430\\u0442\\u0430] dddd [\\u0432] LT\";case 1:case 2:case 4:case 5:return\"[\\u0412 \\u0438\\u0437\\u043c\\u0438\\u043d\\u0430\\u043b\\u0438\\u044f] dddd [\\u0432] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u0441\\u043b\\u0435\\u0434 %s\",past:\"\\u043f\\u0440\\u0435\\u0434\\u0438 %s\",s:\"\\u043d\\u044f\\u043a\\u043e\\u043b\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",m:\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\\u0438\",h:\"\\u0447\\u0430\\u0441\",hh:\"%d \\u0447\\u0430\\u0441\\u0430\",d:\"\\u0434\\u0435\\u043d\",dd:\"%d \\u0434\\u043d\\u0438\",M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:\"%d \\u043c\\u0435\\u0441\\u0435\\u0446\\u0430\",y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",yy:\"%d \\u0433\\u043e\\u0434\\u0438\\u043d\\u0438\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0435\\u0432|\\u0435\\u043d|\\u0442\\u0438|\\u0432\\u0438|\\u0440\\u0438|\\u043c\\u0438)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-\\u0435\\u0432\":0===n?e+\"-\\u0435\\u043d\":n>10&&n<20?e+\"-\\u0442\\u0438\":1===t?e+\"-\\u0432\\u0438\":2===t?e+\"-\\u0440\\u0438\":7===t||8===t?e+\"-\\u043c\\u0438\":e+\"-\\u0442\\u0438\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},honF:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u1041\",2:\"\\u1042\",3:\"\\u1043\",4:\"\\u1044\",5:\"\\u1045\",6:\"\\u1046\",7:\"\\u1047\",8:\"\\u1048\",9:\"\\u1049\",0:\"\\u1040\"},n={\"\\u1041\":\"1\",\"\\u1042\":\"2\",\"\\u1043\":\"3\",\"\\u1044\":\"4\",\"\\u1045\":\"5\",\"\\u1046\":\"6\",\"\\u1047\":\"7\",\"\\u1048\":\"8\",\"\\u1049\":\"9\",\"\\u1040\":\"0\"};e.defineLocale(\"my\",{months:\"\\u1007\\u1014\\u103a\\u1014\\u101d\\u102b\\u101b\\u102e_\\u1016\\u1031\\u1016\\u1031\\u102c\\u103a\\u101d\\u102b\\u101b\\u102e_\\u1019\\u1010\\u103a_\\u1027\\u1015\\u103c\\u102e_\\u1019\\u1031_\\u1007\\u103d\\u1014\\u103a_\\u1007\\u1030\\u101c\\u102d\\u102f\\u1004\\u103a_\\u101e\\u103c\\u1002\\u102f\\u1010\\u103a_\\u1005\\u1000\\u103a\\u1010\\u1004\\u103a\\u1018\\u102c_\\u1021\\u1031\\u102c\\u1000\\u103a\\u1010\\u102d\\u102f\\u1018\\u102c_\\u1014\\u102d\\u102f\\u101d\\u1004\\u103a\\u1018\\u102c_\\u1012\\u102e\\u1007\\u1004\\u103a\\u1018\\u102c\".split(\"_\"),monthsShort:\"\\u1007\\u1014\\u103a_\\u1016\\u1031_\\u1019\\u1010\\u103a_\\u1015\\u103c\\u102e_\\u1019\\u1031_\\u1007\\u103d\\u1014\\u103a_\\u101c\\u102d\\u102f\\u1004\\u103a_\\u101e\\u103c_\\u1005\\u1000\\u103a_\\u1021\\u1031\\u102c\\u1000\\u103a_\\u1014\\u102d\\u102f_\\u1012\\u102e\".split(\"_\"),weekdays:\"\\u1010\\u1014\\u1004\\u103a\\u1039\\u1002\\u1014\\u103d\\u1031_\\u1010\\u1014\\u1004\\u103a\\u1039\\u101c\\u102c_\\u1021\\u1004\\u103a\\u1039\\u1002\\u102b_\\u1017\\u102f\\u1012\\u1039\\u1013\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c\\u101e\\u1015\\u1010\\u1031\\u1038_\\u101e\\u1031\\u102c\\u1000\\u103c\\u102c_\\u1005\\u1014\\u1031\".split(\"_\"),weekdaysShort:\"\\u1014\\u103d\\u1031_\\u101c\\u102c_\\u1002\\u102b_\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c_\\u101e\\u1031\\u102c_\\u1014\\u1031\".split(\"_\"),weekdaysMin:\"\\u1014\\u103d\\u1031_\\u101c\\u102c_\\u1002\\u102b_\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c_\\u101e\\u1031\\u102c_\\u1014\\u1031\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u101a\\u1014\\u1031.] LT [\\u1019\\u103e\\u102c]\",nextDay:\"[\\u1019\\u1014\\u1000\\u103a\\u1016\\u103c\\u1014\\u103a] LT [\\u1019\\u103e\\u102c]\",nextWeek:\"dddd LT [\\u1019\\u103e\\u102c]\",lastDay:\"[\\u1019\\u1014\\u1031.\\u1000] LT [\\u1019\\u103e\\u102c]\",lastWeek:\"[\\u1015\\u103c\\u102e\\u1038\\u1001\\u1032\\u1037\\u101e\\u1031\\u102c] dddd LT [\\u1019\\u103e\\u102c]\",sameElse:\"L\"},relativeTime:{future:\"\\u101c\\u102c\\u1019\\u100a\\u103a\\u1037 %s \\u1019\\u103e\\u102c\",past:\"\\u101c\\u103d\\u1014\\u103a\\u1001\\u1032\\u1037\\u101e\\u1031\\u102c %s \\u1000\",s:\"\\u1005\\u1000\\u1039\\u1000\\u1014\\u103a.\\u1021\\u1014\\u100a\\u103a\\u1038\\u1004\\u101a\\u103a\",ss:\"%d \\u1005\\u1000\\u1039\\u1000\\u1014\\u1037\\u103a\",m:\"\\u1010\\u1005\\u103a\\u1019\\u102d\\u1014\\u1005\\u103a\",mm:\"%d \\u1019\\u102d\\u1014\\u1005\\u103a\",h:\"\\u1010\\u1005\\u103a\\u1014\\u102c\\u101b\\u102e\",hh:\"%d \\u1014\\u102c\\u101b\\u102e\",d:\"\\u1010\\u1005\\u103a\\u101b\\u1000\\u103a\",dd:\"%d \\u101b\\u1000\\u103a\",M:\"\\u1010\\u1005\\u103a\\u101c\",MM:\"%d \\u101c\",y:\"\\u1010\\u1005\\u103a\\u1014\\u103e\\u1005\\u103a\",yy:\"%d \\u1014\\u103e\\u1005\\u103a\"},preparse:function(e){return e.replace(/[\\u1041\\u1042\\u1043\\u1044\\u1045\\u1046\\u1047\\u1048\\u1049\\u1040]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(\"wd/R\"))},iEDd:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"gl\",{months:\"xaneiro_febreiro_marzo_abril_maio_xu\\xf1o_xullo_agosto_setembro_outubro_novembro_decembro\".split(\"_\"),monthsShort:\"xan._feb._mar._abr._mai._xu\\xf1._xul._ago._set._out._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"domingo_luns_martes_m\\xe9rcores_xoves_venres_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._m\\xe9r._xov._ven._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_m\\xe9_xo_ve_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoxe \"+(1!==this.hours()?\"\\xe1s\":\"\\xe1\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1\\xe1 \"+(1!==this.hours()?\"\\xe1s\":\"\\xe1\")+\"] LT\"},nextWeek:function(){return\"dddd [\"+(1!==this.hours()?\"\\xe1s\":\"a\")+\"] LT\"},lastDay:function(){return\"[onte \"+(1!==this.hours()?\"\\xe1\":\"a\")+\"] LT\"},lastWeek:function(){return\"[o] dddd [pasado \"+(1!==this.hours()?\"\\xe1s\":\"a\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:function(e){return 0===e.indexOf(\"un\")?\"n\"+e:\"en \"+e},past:\"hai %s\",s:\"uns segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"unha hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},iYuL:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),i=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],s=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,i){return e?/-MMM-/.test(i)?n[e.month()]:t[e.month()]:t},monthsRegex:s,monthsShortRegex:s,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:i,longMonthsParse:i,shortMonthsParse:i,weekdays:\"domingo_lunes_martes_mi\\xe9rcoles_jueves_viernes_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mi\\xe9._jue._vie._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1ana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un a\\xf1o\",yy:\"%d a\\xf1os\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jUeY:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"el\",{monthsNominativeEl:\"\\u0399\\u03b1\\u03bd\\u03bf\\u03c5\\u03ac\\u03c1\\u03b9\\u03bf\\u03c2_\\u03a6\\u03b5\\u03b2\\u03c1\\u03bf\\u03c5\\u03ac\\u03c1\\u03b9\\u03bf\\u03c2_\\u039c\\u03ac\\u03c1\\u03c4\\u03b9\\u03bf\\u03c2_\\u0391\\u03c0\\u03c1\\u03af\\u03bb\\u03b9\\u03bf\\u03c2_\\u039c\\u03ac\\u03b9\\u03bf\\u03c2_\\u0399\\u03bf\\u03cd\\u03bd\\u03b9\\u03bf\\u03c2_\\u0399\\u03bf\\u03cd\\u03bb\\u03b9\\u03bf\\u03c2_\\u0391\\u03cd\\u03b3\\u03bf\\u03c5\\u03c3\\u03c4\\u03bf\\u03c2_\\u03a3\\u03b5\\u03c0\\u03c4\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u039f\\u03ba\\u03c4\\u03ce\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u039d\\u03bf\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u0394\\u03b5\\u03ba\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2\".split(\"_\"),monthsGenitiveEl:\"\\u0399\\u03b1\\u03bd\\u03bf\\u03c5\\u03b1\\u03c1\\u03af\\u03bf\\u03c5_\\u03a6\\u03b5\\u03b2\\u03c1\\u03bf\\u03c5\\u03b1\\u03c1\\u03af\\u03bf\\u03c5_\\u039c\\u03b1\\u03c1\\u03c4\\u03af\\u03bf\\u03c5_\\u0391\\u03c0\\u03c1\\u03b9\\u03bb\\u03af\\u03bf\\u03c5_\\u039c\\u03b1\\u0390\\u03bf\\u03c5_\\u0399\\u03bf\\u03c5\\u03bd\\u03af\\u03bf\\u03c5_\\u0399\\u03bf\\u03c5\\u03bb\\u03af\\u03bf\\u03c5_\\u0391\\u03c5\\u03b3\\u03bf\\u03cd\\u03c3\\u03c4\\u03bf\\u03c5_\\u03a3\\u03b5\\u03c0\\u03c4\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u039f\\u03ba\\u03c4\\u03c9\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u039d\\u03bf\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u0394\\u03b5\\u03ba\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5\".split(\"_\"),months:function(e,t){return e?\"string\"==typeof t&&/D/.test(t.substring(0,t.indexOf(\"MMMM\")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]:this._monthsNominativeEl},monthsShort:\"\\u0399\\u03b1\\u03bd_\\u03a6\\u03b5\\u03b2_\\u039c\\u03b1\\u03c1_\\u0391\\u03c0\\u03c1_\\u039c\\u03b1\\u03ca_\\u0399\\u03bf\\u03c5\\u03bd_\\u0399\\u03bf\\u03c5\\u03bb_\\u0391\\u03c5\\u03b3_\\u03a3\\u03b5\\u03c0_\\u039f\\u03ba\\u03c4_\\u039d\\u03bf\\u03b5_\\u0394\\u03b5\\u03ba\".split(\"_\"),weekdays:\"\\u039a\\u03c5\\u03c1\\u03b9\\u03b1\\u03ba\\u03ae_\\u0394\\u03b5\\u03c5\\u03c4\\u03ad\\u03c1\\u03b1_\\u03a4\\u03c1\\u03af\\u03c4\\u03b7_\\u03a4\\u03b5\\u03c4\\u03ac\\u03c1\\u03c4\\u03b7_\\u03a0\\u03ad\\u03bc\\u03c0\\u03c4\\u03b7_\\u03a0\\u03b1\\u03c1\\u03b1\\u03c3\\u03ba\\u03b5\\u03c5\\u03ae_\\u03a3\\u03ac\\u03b2\\u03b2\\u03b1\\u03c4\\u03bf\".split(\"_\"),weekdaysShort:\"\\u039a\\u03c5\\u03c1_\\u0394\\u03b5\\u03c5_\\u03a4\\u03c1\\u03b9_\\u03a4\\u03b5\\u03c4_\\u03a0\\u03b5\\u03bc_\\u03a0\\u03b1\\u03c1_\\u03a3\\u03b1\\u03b2\".split(\"_\"),weekdaysMin:\"\\u039a\\u03c5_\\u0394\\u03b5_\\u03a4\\u03c1_\\u03a4\\u03b5_\\u03a0\\u03b5_\\u03a0\\u03b1_\\u03a3\\u03b1\".split(\"_\"),meridiem:function(e,t,n){return e>11?n?\"\\u03bc\\u03bc\":\"\\u039c\\u039c\":n?\"\\u03c0\\u03bc\":\"\\u03a0\\u039c\"},isPM:function(e){return\"\\u03bc\"===(e+\"\").toLowerCase()[0]},meridiemParse:/[\\u03a0\\u039c]\\.?\\u039c?\\.?/i,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendarEl:{sameDay:\"[\\u03a3\\u03ae\\u03bc\\u03b5\\u03c1\\u03b1 {}] LT\",nextDay:\"[\\u0391\\u03cd\\u03c1\\u03b9\\u03bf {}] LT\",nextWeek:\"dddd [{}] LT\",lastDay:\"[\\u03a7\\u03b8\\u03b5\\u03c2 {}] LT\",lastWeek:function(){switch(this.day()){case 6:return\"[\\u03c4\\u03bf \\u03c0\\u03c1\\u03bf\\u03b7\\u03b3\\u03bf\\u03cd\\u03bc\\u03b5\\u03bd\\u03bf] dddd [{}] LT\";default:return\"[\\u03c4\\u03b7\\u03bd \\u03c0\\u03c1\\u03bf\\u03b7\\u03b3\\u03bf\\u03cd\\u03bc\\u03b5\\u03bd\\u03b7] dddd [{}] LT\"}},sameElse:\"L\"},calendar:function(e,t){var n,i=this._calendarEl[e],s=t&&t.hours();return((n=i)instanceof Function||\"[object Function]\"===Object.prototype.toString.call(n))&&(i=i.apply(t)),i.replace(\"{}\",s%12==1?\"\\u03c3\\u03c4\\u03b7\":\"\\u03c3\\u03c4\\u03b9\\u03c2\")},relativeTime:{future:\"\\u03c3\\u03b5 %s\",past:\"%s \\u03c0\\u03c1\\u03b9\\u03bd\",s:\"\\u03bb\\u03af\\u03b3\\u03b1 \\u03b4\\u03b5\\u03c5\\u03c4\\u03b5\\u03c1\\u03cc\\u03bb\\u03b5\\u03c0\\u03c4\\u03b1\",ss:\"%d \\u03b4\\u03b5\\u03c5\\u03c4\\u03b5\\u03c1\\u03cc\\u03bb\\u03b5\\u03c0\\u03c4\\u03b1\",m:\"\\u03ad\\u03bd\\u03b1 \\u03bb\\u03b5\\u03c0\\u03c4\\u03cc\",mm:\"%d \\u03bb\\u03b5\\u03c0\\u03c4\\u03ac\",h:\"\\u03bc\\u03af\\u03b1 \\u03ce\\u03c1\\u03b1\",hh:\"%d \\u03ce\\u03c1\\u03b5\\u03c2\",d:\"\\u03bc\\u03af\\u03b1 \\u03bc\\u03ad\\u03c1\\u03b1\",dd:\"%d \\u03bc\\u03ad\\u03c1\\u03b5\\u03c2\",M:\"\\u03ad\\u03bd\\u03b1\\u03c2 \\u03bc\\u03ae\\u03bd\\u03b1\\u03c2\",MM:\"%d \\u03bc\\u03ae\\u03bd\\u03b5\\u03c2\",y:\"\\u03ad\\u03bd\\u03b1\\u03c2 \\u03c7\\u03c1\\u03cc\\u03bd\\u03bf\\u03c2\",yy:\"%d \\u03c7\\u03c1\\u03cc\\u03bd\\u03b9\\u03b1\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u03b7/,ordinal:\"%d\\u03b7\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jVdC:function(e,t,n){!function(e){\"use strict\";var t=\"stycze\\u0144_luty_marzec_kwiecie\\u0144_maj_czerwiec_lipiec_sierpie\\u0144_wrzesie\\u0144_pa\\u017adziernik_listopad_grudzie\\u0144\".split(\"_\"),n=\"stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_wrze\\u015bnia_pa\\u017adziernika_listopada_grudnia\".split(\"_\");function i(e){return e%10<5&&e%10>1&&~~(e/10)%10!=1}function s(e,t,n){var s=e+\" \";switch(n){case\"ss\":return s+(i(e)?\"sekundy\":\"sekund\");case\"m\":return t?\"minuta\":\"minut\\u0119\";case\"mm\":return s+(i(e)?\"minuty\":\"minut\");case\"h\":return t?\"godzina\":\"godzin\\u0119\";case\"hh\":return s+(i(e)?\"godziny\":\"godzin\");case\"MM\":return s+(i(e)?\"miesi\\u0105ce\":\"miesi\\u0119cy\");case\"yy\":return s+(i(e)?\"lata\":\"lat\")}}e.defineLocale(\"pl\",{months:function(e,i){return e?\"\"===i?\"(\"+n[e.month()]+\"|\"+t[e.month()]+\")\":/D MMMM/.test(i)?n[e.month()]:t[e.month()]:t},monthsShort:\"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_pa\\u017a_lis_gru\".split(\"_\"),weekdays:\"niedziela_poniedzia\\u0142ek_wtorek_\\u015broda_czwartek_pi\\u0105tek_sobota\".split(\"_\"),weekdaysShort:\"ndz_pon_wt_\\u015br_czw_pt_sob\".split(\"_\"),weekdaysMin:\"Nd_Pn_Wt_\\u015ar_Cz_Pt_So\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Dzi\\u015b o] LT\",nextDay:\"[Jutro o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[W niedziel\\u0119 o] LT\";case 2:return\"[We wtorek o] LT\";case 3:return\"[W \\u015brod\\u0119 o] LT\";case 6:return\"[W sobot\\u0119 o] LT\";default:return\"[W] dddd [o] LT\"}},lastDay:\"[Wczoraj o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[W zesz\\u0142\\u0105 niedziel\\u0119 o] LT\";case 3:return\"[W zesz\\u0142\\u0105 \\u015brod\\u0119 o] LT\";case 6:return\"[W zesz\\u0142\\u0105 sobot\\u0119 o] LT\";default:return\"[W zesz\\u0142y] dddd [o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"%s temu\",s:\"kilka sekund\",ss:s,m:s,mm:s,h:s,hh:s,d:\"1 dzie\\u0144\",dd:\"%d dni\",M:\"miesi\\u0105c\",MM:s,y:\"rok\",yy:s},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jfSC:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u06f1\",2:\"\\u06f2\",3:\"\\u06f3\",4:\"\\u06f4\",5:\"\\u06f5\",6:\"\\u06f6\",7:\"\\u06f7\",8:\"\\u06f8\",9:\"\\u06f9\",0:\"\\u06f0\"},n={\"\\u06f1\":\"1\",\"\\u06f2\":\"2\",\"\\u06f3\":\"3\",\"\\u06f4\":\"4\",\"\\u06f5\":\"5\",\"\\u06f6\":\"6\",\"\\u06f7\":\"7\",\"\\u06f8\":\"8\",\"\\u06f9\":\"9\",\"\\u06f0\":\"0\"};e.defineLocale(\"fa\",{months:\"\\u0698\\u0627\\u0646\\u0648\\u06cc\\u0647_\\u0641\\u0648\\u0631\\u06cc\\u0647_\\u0645\\u0627\\u0631\\u0633_\\u0622\\u0648\\u0631\\u06cc\\u0644_\\u0645\\u0647_\\u0698\\u0648\\u0626\\u0646_\\u0698\\u0648\\u0626\\u06cc\\u0647_\\u0627\\u0648\\u062a_\\u0633\\u067e\\u062a\\u0627\\u0645\\u0628\\u0631_\\u0627\\u06a9\\u062a\\u0628\\u0631_\\u0646\\u0648\\u0627\\u0645\\u0628\\u0631_\\u062f\\u0633\\u0627\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u0698\\u0627\\u0646\\u0648\\u06cc\\u0647_\\u0641\\u0648\\u0631\\u06cc\\u0647_\\u0645\\u0627\\u0631\\u0633_\\u0622\\u0648\\u0631\\u06cc\\u0644_\\u0645\\u0647_\\u0698\\u0648\\u0626\\u0646_\\u0698\\u0648\\u0626\\u06cc\\u0647_\\u0627\\u0648\\u062a_\\u0633\\u067e\\u062a\\u0627\\u0645\\u0628\\u0631_\\u0627\\u06a9\\u062a\\u0628\\u0631_\\u0646\\u0648\\u0627\\u0645\\u0628\\u0631_\\u062f\\u0633\\u0627\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u06cc\\u06a9\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062f\\u0648\\u0634\\u0646\\u0628\\u0647_\\u0633\\u0647\\u200c\\u0634\\u0646\\u0628\\u0647_\\u0686\\u0647\\u0627\\u0631\\u0634\\u0646\\u0628\\u0647_\\u067e\\u0646\\u062c\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062c\\u0645\\u0639\\u0647_\\u0634\\u0646\\u0628\\u0647\".split(\"_\"),weekdaysShort:\"\\u06cc\\u06a9\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062f\\u0648\\u0634\\u0646\\u0628\\u0647_\\u0633\\u0647\\u200c\\u0634\\u0646\\u0628\\u0647_\\u0686\\u0647\\u0627\\u0631\\u0634\\u0646\\u0628\\u0647_\\u067e\\u0646\\u062c\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062c\\u0645\\u0639\\u0647_\\u0634\\u0646\\u0628\\u0647\".split(\"_\"),weekdaysMin:\"\\u06cc_\\u062f_\\u0633_\\u0686_\\u067e_\\u062c_\\u0634\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u0642\\u0628\\u0644 \\u0627\\u0632 \\u0638\\u0647\\u0631|\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631/,isPM:function(e){return/\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631/.test(e)},meridiem:function(e,t,n){return e<12?\"\\u0642\\u0628\\u0644 \\u0627\\u0632 \\u0638\\u0647\\u0631\":\"\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631\"},calendar:{sameDay:\"[\\u0627\\u0645\\u0631\\u0648\\u0632 \\u0633\\u0627\\u0639\\u062a] LT\",nextDay:\"[\\u0641\\u0631\\u062f\\u0627 \\u0633\\u0627\\u0639\\u062a] LT\",nextWeek:\"dddd [\\u0633\\u0627\\u0639\\u062a] LT\",lastDay:\"[\\u062f\\u06cc\\u0631\\u0648\\u0632 \\u0633\\u0627\\u0639\\u062a] LT\",lastWeek:\"dddd [\\u067e\\u06cc\\u0634] [\\u0633\\u0627\\u0639\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u062f\\u0631 %s\",past:\"%s \\u067e\\u06cc\\u0634\",s:\"\\u0686\\u0646\\u062f \\u062b\\u0627\\u0646\\u06cc\\u0647\",ss:\"\\u062b\\u0627\\u0646\\u06cc\\u0647 d%\",m:\"\\u06cc\\u06a9 \\u062f\\u0642\\u06cc\\u0642\\u0647\",mm:\"%d \\u062f\\u0642\\u06cc\\u0642\\u0647\",h:\"\\u06cc\\u06a9 \\u0633\\u0627\\u0639\\u062a\",hh:\"%d \\u0633\\u0627\\u0639\\u062a\",d:\"\\u06cc\\u06a9 \\u0631\\u0648\\u0632\",dd:\"%d \\u0631\\u0648\\u0632\",M:\"\\u06cc\\u06a9 \\u0645\\u0627\\u0647\",MM:\"%d \\u0645\\u0627\\u0647\",y:\"\\u06cc\\u06a9 \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/[\\u06f0-\\u06f9]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},dayOfMonthOrdinalParse:/\\d{1,2}\\u0645/,ordinal:\"%d\\u0645\",week:{dow:6,doy:12}})}(n(\"wd/R\"))},jnO4:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"},i=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},s={s:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062b\\u0627\\u0646\\u064a\\u0629\",\"\\u062b\\u0627\\u0646\\u064a\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u0627\\u0646\",\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u064a\\u0646\"],\"%d \\u062b\\u0648\\u0627\\u0646\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\"],m:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062f\\u0642\\u064a\\u0642\\u0629\",\"\\u062f\\u0642\\u064a\\u0642\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u0627\\u0646\",\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u064a\\u0646\"],\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\"],h:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0633\\u0627\\u0639\\u0629\",\"\\u0633\\u0627\\u0639\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u0633\\u0627\\u0639\\u062a\\u0627\\u0646\",\"\\u0633\\u0627\\u0639\\u062a\\u064a\\u0646\"],\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",\"%d \\u0633\\u0627\\u0639\\u0629\",\"%d \\u0633\\u0627\\u0639\\u0629\"],d:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u064a\\u0648\\u0645\",\"\\u064a\\u0648\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u064a\\u0648\\u0645\\u0627\\u0646\",\"\\u064a\\u0648\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u064a\\u0627\\u0645\",\"%d \\u064a\\u0648\\u0645\\u064b\\u0627\",\"%d \\u064a\\u0648\\u0645\"],M:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0634\\u0647\\u0631\",\"\\u0634\\u0647\\u0631 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0634\\u0647\\u0631\\u0627\\u0646\",\"\\u0634\\u0647\\u0631\\u064a\\u0646\"],\"%d \\u0623\\u0634\\u0647\\u0631\",\"%d \\u0634\\u0647\\u0631\\u0627\",\"%d \\u0634\\u0647\\u0631\"],y:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0639\\u0627\\u0645\",\"\\u0639\\u0627\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0639\\u0627\\u0645\\u0627\\u0646\",\"\\u0639\\u0627\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u0639\\u0648\\u0627\\u0645\",\"%d \\u0639\\u0627\\u0645\\u064b\\u0627\",\"%d \\u0639\\u0627\\u0645\"]},r=function(e){return function(t,n,r,o){var a=i(t),l=s[e][i(t)];return 2===a&&(l=l[n?0:1]),l.replace(/%d/i,t)}},o=[\"\\u064a\\u0646\\u0627\\u064a\\u0631\",\"\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631\",\"\\u0645\\u0627\\u0631\\u0633\",\"\\u0623\\u0628\\u0631\\u064a\\u0644\",\"\\u0645\\u0627\\u064a\\u0648\",\"\\u064a\\u0648\\u0646\\u064a\\u0648\",\"\\u064a\\u0648\\u0644\\u064a\\u0648\",\"\\u0623\\u063a\\u0633\\u0637\\u0633\",\"\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631\",\"\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631\",\"\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\"];e.defineLocale(\"ar\",{months:o,monthsShort:o,weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/\\u200fM/\\u200fYYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u064b\\u0627 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0628\\u0639\\u062f %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:r(\"s\"),ss:r(\"s\"),m:r(\"m\"),mm:r(\"m\"),h:r(\"h\"),hh:r(\"h\"),d:r(\"d\"),dd:r(\"d\"),M:r(\"M\"),MM:r(\"M\"),y:r(\"y\"),yy:r(\"y\")},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},kEOa:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u09e7\",2:\"\\u09e8\",3:\"\\u09e9\",4:\"\\u09ea\",5:\"\\u09eb\",6:\"\\u09ec\",7:\"\\u09ed\",8:\"\\u09ee\",9:\"\\u09ef\",0:\"\\u09e6\"},n={\"\\u09e7\":\"1\",\"\\u09e8\":\"2\",\"\\u09e9\":\"3\",\"\\u09ea\":\"4\",\"\\u09eb\":\"5\",\"\\u09ec\":\"6\",\"\\u09ed\":\"7\",\"\\u09ee\":\"8\",\"\\u09ef\":\"9\",\"\\u09e6\":\"0\"};e.defineLocale(\"bn\",{months:\"\\u099c\\u09be\\u09a8\\u09c1\\u09df\\u09be\\u09b0\\u09c0_\\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09c1\\u09df\\u09be\\u09b0\\u09bf_\\u09ae\\u09be\\u09b0\\u09cd\\u099a_\\u098f\\u09aa\\u09cd\\u09b0\\u09bf\\u09b2_\\u09ae\\u09c7_\\u099c\\u09c1\\u09a8_\\u099c\\u09c1\\u09b2\\u09be\\u0987_\\u0986\\u0997\\u09b8\\u09cd\\u099f_\\u09b8\\u09c7\\u09aa\\u09cd\\u099f\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0_\\u0985\\u0995\\u09cd\\u099f\\u09cb\\u09ac\\u09b0_\\u09a8\\u09ad\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0_\\u09a1\\u09bf\\u09b8\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0\".split(\"_\"),monthsShort:\"\\u099c\\u09be\\u09a8\\u09c1_\\u09ab\\u09c7\\u09ac_\\u09ae\\u09be\\u09b0\\u09cd\\u099a_\\u098f\\u09aa\\u09cd\\u09b0_\\u09ae\\u09c7_\\u099c\\u09c1\\u09a8_\\u099c\\u09c1\\u09b2_\\u0986\\u0997_\\u09b8\\u09c7\\u09aa\\u09cd\\u099f_\\u0985\\u0995\\u09cd\\u099f\\u09cb_\\u09a8\\u09ad\\u09c7_\\u09a1\\u09bf\\u09b8\\u09c7\".split(\"_\"),weekdays:\"\\u09b0\\u09ac\\u09bf\\u09ac\\u09be\\u09b0_\\u09b8\\u09cb\\u09ae\\u09ac\\u09be\\u09b0_\\u09ae\\u0999\\u09cd\\u0997\\u09b2\\u09ac\\u09be\\u09b0_\\u09ac\\u09c1\\u09a7\\u09ac\\u09be\\u09b0_\\u09ac\\u09c3\\u09b9\\u09b8\\u09cd\\u09aa\\u09a4\\u09bf\\u09ac\\u09be\\u09b0_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0\\u09ac\\u09be\\u09b0_\\u09b6\\u09a8\\u09bf\\u09ac\\u09be\\u09b0\".split(\"_\"),weekdaysShort:\"\\u09b0\\u09ac\\u09bf_\\u09b8\\u09cb\\u09ae_\\u09ae\\u0999\\u09cd\\u0997\\u09b2_\\u09ac\\u09c1\\u09a7_\\u09ac\\u09c3\\u09b9\\u09b8\\u09cd\\u09aa\\u09a4\\u09bf_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0_\\u09b6\\u09a8\\u09bf\".split(\"_\"),weekdaysMin:\"\\u09b0\\u09ac\\u09bf_\\u09b8\\u09cb\\u09ae_\\u09ae\\u0999\\u09cd\\u0997_\\u09ac\\u09c1\\u09a7_\\u09ac\\u09c3\\u09b9\\u0983_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0_\\u09b6\\u09a8\\u09bf\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u09b8\\u09ae\\u09df\",LTS:\"A h:mm:ss \\u09b8\\u09ae\\u09df\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u09b8\\u09ae\\u09df\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u09b8\\u09ae\\u09df\"},calendar:{sameDay:\"[\\u0986\\u099c] LT\",nextDay:\"[\\u0986\\u0997\\u09be\\u09ae\\u09c0\\u0995\\u09be\\u09b2] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0997\\u09a4\\u0995\\u09be\\u09b2] LT\",lastWeek:\"[\\u0997\\u09a4] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u09aa\\u09b0\\u09c7\",past:\"%s \\u0986\\u0997\\u09c7\",s:\"\\u0995\\u09df\\u09c7\\u0995 \\u09b8\\u09c7\\u0995\\u09c7\\u09a8\\u09cd\\u09a1\",ss:\"%d \\u09b8\\u09c7\\u0995\\u09c7\\u09a8\\u09cd\\u09a1\",m:\"\\u098f\\u0995 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f\",mm:\"%d \\u09ae\\u09bf\\u09a8\\u09bf\\u099f\",h:\"\\u098f\\u0995 \\u0998\\u09a8\\u09cd\\u099f\\u09be\",hh:\"%d \\u0998\\u09a8\\u09cd\\u099f\\u09be\",d:\"\\u098f\\u0995 \\u09a6\\u09bf\\u09a8\",dd:\"%d \\u09a6\\u09bf\\u09a8\",M:\"\\u098f\\u0995 \\u09ae\\u09be\\u09b8\",MM:\"%d \\u09ae\\u09be\\u09b8\",y:\"\\u098f\\u0995 \\u09ac\\u099b\\u09b0\",yy:\"%d \\u09ac\\u099b\\u09b0\"},preparse:function(e){return e.replace(/[\\u09e7\\u09e8\\u09e9\\u09ea\\u09eb\\u09ec\\u09ed\\u09ee\\u09ef\\u09e6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u09b0\\u09be\\u09a4|\\u09b8\\u0995\\u09be\\u09b2|\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0|\\u09ac\\u09bf\\u0995\\u09be\\u09b2|\\u09b0\\u09be\\u09a4/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u09b0\\u09be\\u09a4\"===t&&e>=4||\"\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0\"===t&&e<5||\"\\u09ac\\u09bf\\u0995\\u09be\\u09b2\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u09b0\\u09be\\u09a4\":e<10?\"\\u09b8\\u0995\\u09be\\u09b2\":e<17?\"\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0\":e<20?\"\\u09ac\\u09bf\\u0995\\u09be\\u09b2\":\"\\u09b0\\u09be\\u09a4\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},kOpN:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-tw\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u9031\\u65e5_\\u9031\\u4e00_\\u9031\\u4e8c_\\u9031\\u4e09_\\u9031\\u56db_\\u9031\\u4e94_\\u9031\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e2d\\u5348\"===t?e>=11?e:e+12:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:void 0},meridiem:function(e,t,n){var i=100*e+t;return i<600?\"\\u51cc\\u6668\":i<900?\"\\u65e9\\u4e0a\":i<1130?\"\\u4e0a\\u5348\":i<1230?\"\\u4e2d\\u5348\":i<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929] LT\",nextDay:\"[\\u660e\\u5929] LT\",nextWeek:\"[\\u4e0b]dddd LT\",lastDay:\"[\\u6628\\u5929] LT\",lastWeek:\"[\\u4e0a]dddd LT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u9031)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u9031\";default:return e}},relativeTime:{future:\"%s\\u5167\",past:\"%s\\u524d\",s:\"\\u5e7e\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u9418\",mm:\"%d \\u5206\\u9418\",h:\"1 \\u5c0f\\u6642\",hh:\"%d \\u5c0f\\u6642\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u500b\\u6708\",MM:\"%d \\u500b\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"}})}(n(\"wd/R\"))},l5ep:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cy\",{months:\"Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr\".split(\"_\"),monthsShort:\"Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag\".split(\"_\"),weekdays:\"Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn\".split(\"_\"),weekdaysShort:\"Sul_Llun_Maw_Mer_Iau_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Ll_Ma_Me_Ia_Gw_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Heddiw am] LT\",nextDay:\"[Yfory am] LT\",nextWeek:\"dddd [am] LT\",lastDay:\"[Ddoe am] LT\",lastWeek:\"dddd [diwethaf am] LT\",sameElse:\"L\"},relativeTime:{future:\"mewn %s\",past:\"%s yn \\xf4l\",s:\"ychydig eiliadau\",ss:\"%d eiliad\",m:\"munud\",mm:\"%d munud\",h:\"awr\",hh:\"%d awr\",d:\"diwrnod\",dd:\"%d diwrnod\",M:\"mis\",MM:\"%d mis\",y:\"blwyddyn\",yy:\"%d flynedd\"},dayOfMonthOrdinalParse:/\\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,ordinal:function(e){var t=\"\";return e>20?t=40===e||50===e||60===e||80===e||100===e?\"fed\":\"ain\":e>0&&(t=[\"\",\"af\",\"il\",\"ydd\",\"ydd\",\"ed\",\"ed\",\"ed\",\"fed\",\"fed\",\"fed\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"fed\"][e]),e+t},week:{dow:1,doy:4}})}(n(\"wd/R\"))},lXzo:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i,s;return\"m\"===n?t?\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\":\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0443\":e+\" \"+(i=+e,s={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430_\\u043c\\u0438\\u043d\\u0443\\u0442\\u044b_\\u043c\\u0438\\u043d\\u0443\\u0442\":\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0443_\\u043c\\u0438\\u043d\\u0443\\u0442\\u044b_\\u043c\\u0438\\u043d\\u0443\\u0442\",hh:\"\\u0447\\u0430\\u0441_\\u0447\\u0430\\u0441\\u0430_\\u0447\\u0430\\u0441\\u043e\\u0432\",dd:\"\\u0434\\u0435\\u043d\\u044c_\\u0434\\u043d\\u044f_\\u0434\\u043d\\u0435\\u0439\",MM:\"\\u043c\\u0435\\u0441\\u044f\\u0446_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0430_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0435\\u0432\",yy:\"\\u0433\\u043e\\u0434_\\u0433\\u043e\\u0434\\u0430_\\u043b\\u0435\\u0442\"}[n].split(\"_\"),i%10==1&&i%100!=11?s[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?s[1]:s[2])}var n=[/^\\u044f\\u043d\\u0432/i,/^\\u0444\\u0435\\u0432/i,/^\\u043c\\u0430\\u0440/i,/^\\u0430\\u043f\\u0440/i,/^\\u043c\\u0430[\\u0439\\u044f]/i,/^\\u0438\\u044e\\u043d/i,/^\\u0438\\u044e\\u043b/i,/^\\u0430\\u0432\\u0433/i,/^\\u0441\\u0435\\u043d/i,/^\\u043e\\u043a\\u0442/i,/^\\u043d\\u043e\\u044f/i,/^\\u0434\\u0435\\u043a/i];e.defineLocale(\"ru\",{months:{format:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044f_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044f_\\u043c\\u0430\\u0440\\u0442\\u0430_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044f_\\u043c\\u0430\\u044f_\\u0438\\u044e\\u043d\\u044f_\\u0438\\u044e\\u043b\\u044f_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044f_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044f_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044f_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044f\".split(\"_\"),standalone:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044c_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044c_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044c_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044c_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044c\".split(\"_\")},monthsShort:{format:\"\\u044f\\u043d\\u0432._\\u0444\\u0435\\u0432\\u0440._\\u043c\\u0430\\u0440._\\u0430\\u043f\\u0440._\\u043c\\u0430\\u044f_\\u0438\\u044e\\u043d\\u044f_\\u0438\\u044e\\u043b\\u044f_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043d\\u0442._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u044f\\u0431._\\u0434\\u0435\\u043a.\".split(\"_\"),standalone:\"\\u044f\\u043d\\u0432._\\u0444\\u0435\\u0432\\u0440._\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440._\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043d\\u0442._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u044f\\u0431._\\u0434\\u0435\\u043a.\".split(\"_\")},weekdays:{standalone:\"\\u0432\\u043e\\u0441\\u043a\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c\\u0435_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u044c\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433_\\u043f\\u044f\\u0442\\u043d\\u0438\\u0446\\u0430_\\u0441\\u0443\\u0431\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),format:\"\\u0432\\u043e\\u0441\\u043a\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c\\u0435_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u044c\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0443_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433_\\u043f\\u044f\\u0442\\u043d\\u0438\\u0446\\u0443_\\u0441\\u0443\\u0431\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),isFormat:/\\[ ?[\\u0412\\u0432] ?(?:\\u043f\\u0440\\u043e\\u0448\\u043b\\u0443\\u044e|\\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0443\\u044e|\\u044d\\u0442\\u0443)? ?\\] ?dddd/},weekdaysShort:\"\\u0432\\u0441_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u0432\\u0441_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),monthsParse:n,longMonthsParse:n,shortMonthsParse:n,monthsRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044c\\u044f]|\\u044f\\u043d\\u0432\\.?|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044c\\u044f]|\\u0444\\u0435\\u0432\\u0440?\\.?|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u043c\\u0430\\u0440\\.?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044c\\u044f]|\\u0430\\u043f\\u0440\\.?|\\u043c\\u0430[\\u0439\\u044f]|\\u0438\\u044e\\u043d[\\u044c\\u044f]|\\u0438\\u044e\\u043d\\.?|\\u0438\\u044e\\u043b[\\u044c\\u044f]|\\u0438\\u044e\\u043b\\.?|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0430\\u0432\\u0433\\.?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u0441\\u0435\\u043d\\u0442?\\.?|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043e\\u043a\\u0442\\.?|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043d\\u043e\\u044f\\u0431?\\.?|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044c\\u044f]|\\u0434\\u0435\\u043a\\.?)/i,monthsShortRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044c\\u044f]|\\u044f\\u043d\\u0432\\.?|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044c\\u044f]|\\u0444\\u0435\\u0432\\u0440?\\.?|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u043c\\u0430\\u0440\\.?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044c\\u044f]|\\u0430\\u043f\\u0440\\.?|\\u043c\\u0430[\\u0439\\u044f]|\\u0438\\u044e\\u043d[\\u044c\\u044f]|\\u0438\\u044e\\u043d\\.?|\\u0438\\u044e\\u043b[\\u044c\\u044f]|\\u0438\\u044e\\u043b\\.?|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0430\\u0432\\u0433\\.?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u0441\\u0435\\u043d\\u0442?\\.?|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043e\\u043a\\u0442\\.?|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043d\\u043e\\u044f\\u0431?\\.?|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044c\\u044f]|\\u0434\\u0435\\u043a\\.?)/i,monthsStrictRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044f\\u044c]|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044f\\u044c]|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044f\\u044c]|\\u043c\\u0430[\\u044f\\u0439]|\\u0438\\u044e\\u043d[\\u044f\\u044c]|\\u0438\\u044e\\u043b[\\u044f\\u044c]|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044f\\u044c])/i,monthsShortStrictRegex:/^(\\u044f\\u043d\\u0432\\.|\\u0444\\u0435\\u0432\\u0440?\\.|\\u043c\\u0430\\u0440[\\u0442.]|\\u0430\\u043f\\u0440\\.|\\u043c\\u0430[\\u044f\\u0439]|\\u0438\\u044e\\u043d[\\u044c\\u044f.]|\\u0438\\u044e\\u043b[\\u044c\\u044f.]|\\u0430\\u0432\\u0433\\.|\\u0441\\u0435\\u043d\\u0442?\\.|\\u043e\\u043a\\u0442\\.|\\u043d\\u043e\\u044f\\u0431?\\.|\\u0434\\u0435\\u043a\\.)/i,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0433.\",LLL:\"D MMMM YYYY \\u0433., H:mm\",LLLL:\"dddd, D MMMM YYYY \\u0433., H:mm\"},calendar:{sameDay:\"[\\u0421\\u0435\\u0433\\u043e\\u0434\\u043d\\u044f, \\u0432] LT\",nextDay:\"[\\u0417\\u0430\\u0432\\u0442\\u0440\\u0430, \\u0432] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430, \\u0432] LT\",nextWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[\\u0412\\u043e] dddd, [\\u0432] LT\":\"[\\u0412] dddd, [\\u0432] LT\";switch(this.day()){case 0:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0435\\u0435] dddd, [\\u0432] LT\";case 1:case 2:case 4:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0438\\u0439] dddd, [\\u0432] LT\";case 3:case 5:case 6:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0443\\u044e] dddd, [\\u0432] LT\"}},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[\\u0412\\u043e] dddd, [\\u0432] LT\":\"[\\u0412] dddd, [\\u0432] LT\";switch(this.day()){case 0:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0435] dddd, [\\u0432] LT\";case 1:case 2:case 4:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u044b\\u0439] dddd, [\\u0432] LT\";case 3:case 5:case 6:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u0443\\u044e] dddd, [\\u0432] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u0447\\u0435\\u0440\\u0435\\u0437 %s\",past:\"%s \\u043d\\u0430\\u0437\\u0430\\u0434\",s:\"\\u043d\\u0435\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:t,m:t,mm:t,h:\"\\u0447\\u0430\\u0441\",hh:t,d:\"\\u0434\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0435\\u0441\\u044f\\u0446\",MM:t,y:\"\\u0433\\u043e\\u0434\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u0438|\\u0443\\u0442\\u0440\\u0430|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430/i,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u0438\":e<12?\"\\u0443\\u0442\\u0440\\u0430\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0439|\\u0433\\u043e|\\u044f)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":return e+\"-\\u0439\";case\"D\":return e+\"-\\u0433\\u043e\";case\"w\":case\"W\":return e+\"-\\u044f\";default:return e}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},lYtQ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){switch(n){case\"s\":return t?\"\\u0445\\u044d\\u0434\\u0445\\u044d\\u043d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0445\\u044d\\u0434\\u0445\\u044d\\u043d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b\\u043d\";case\"ss\":return e+(t?\" \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\" \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b\\u043d\");case\"m\":case\"mm\":return e+(t?\" \\u043c\\u0438\\u043d\\u0443\\u0442\":\" \\u043c\\u0438\\u043d\\u0443\\u0442\\u044b\\u043d\");case\"h\":case\"hh\":return e+(t?\" \\u0446\\u0430\\u0433\":\" \\u0446\\u0430\\u0433\\u0438\\u0439\\u043d\");case\"d\":case\"dd\":return e+(t?\" \\u04e9\\u0434\\u04e9\\u0440\":\" \\u04e9\\u0434\\u0440\\u0438\\u0439\\u043d\");case\"M\":case\"MM\":return e+(t?\" \\u0441\\u0430\\u0440\":\" \\u0441\\u0430\\u0440\\u044b\\u043d\");case\"y\":case\"yy\":return e+(t?\" \\u0436\\u0438\\u043b\":\" \\u0436\\u0438\\u043b\\u0438\\u0439\\u043d\");default:return e}}e.defineLocale(\"mn\",{months:\"\\u041d\\u044d\\u0433\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0425\\u043e\\u0451\\u0440\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0413\\u0443\\u0440\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0414\\u04e9\\u0440\\u04e9\\u0432\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0422\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0417\\u0443\\u0440\\u0433\\u0430\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0414\\u043e\\u043b\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u041d\\u0430\\u0439\\u043c\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0415\\u0441\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0432\\u0430\\u043d \\u043d\\u044d\\u0433\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0432\\u0430\\u043d \\u0445\\u043e\\u0451\\u0440\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440\".split(\"_\"),monthsShort:\"1 \\u0441\\u0430\\u0440_2 \\u0441\\u0430\\u0440_3 \\u0441\\u0430\\u0440_4 \\u0441\\u0430\\u0440_5 \\u0441\\u0430\\u0440_6 \\u0441\\u0430\\u0440_7 \\u0441\\u0430\\u0440_8 \\u0441\\u0430\\u0440_9 \\u0441\\u0430\\u0440_10 \\u0441\\u0430\\u0440_11 \\u0441\\u0430\\u0440_12 \\u0441\\u0430\\u0440\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u041d\\u044f\\u043c_\\u0414\\u0430\\u0432\\u0430\\u0430_\\u041c\\u044f\\u0433\\u043c\\u0430\\u0440_\\u041b\\u0445\\u0430\\u0433\\u0432\\u0430_\\u041f\\u04af\\u0440\\u044d\\u0432_\\u0411\\u0430\\u0430\\u0441\\u0430\\u043d_\\u0411\\u044f\\u043c\\u0431\\u0430\".split(\"_\"),weekdaysShort:\"\\u041d\\u044f\\u043c_\\u0414\\u0430\\u0432_\\u041c\\u044f\\u0433_\\u041b\\u0445\\u0430_\\u041f\\u04af\\u0440_\\u0411\\u0430\\u0430_\\u0411\\u044f\\u043c\".split(\"_\"),weekdaysMin:\"\\u041d\\u044f_\\u0414\\u0430_\\u041c\\u044f_\\u041b\\u0445_\\u041f\\u04af_\\u0411\\u0430_\\u0411\\u044f\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D\",LLL:\"YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D HH:mm\",LLLL:\"dddd, YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D HH:mm\"},meridiemParse:/\\u04ae\\u04e8|\\u04ae\\u0425/i,isPM:function(e){return\"\\u04ae\\u0425\"===e},meridiem:function(e,t,n){return e<12?\"\\u04ae\\u04e8\":\"\\u04ae\\u0425\"},calendar:{sameDay:\"[\\u04e8\\u043d\\u04e9\\u04e9\\u0434\\u04e9\\u0440] LT\",nextDay:\"[\\u041c\\u0430\\u0440\\u0433\\u0430\\u0430\\u0448] LT\",nextWeek:\"[\\u0418\\u0440\\u044d\\u0445] dddd LT\",lastDay:\"[\\u04e8\\u0447\\u0438\\u0433\\u0434\\u04e9\\u0440] LT\",lastWeek:\"[\\u04e8\\u043d\\u0433\\u04e9\\u0440\\u0441\\u04e9\\u043d] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0434\\u0430\\u0440\\u0430\\u0430\",past:\"%s \\u04e9\\u043c\\u043d\\u04e9\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2} \\u04e9\\u0434\\u04e9\\u0440/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\" \\u04e9\\u0434\\u04e9\\u0440\";default:return e}}})}(n(\"wd/R\"))},lgnt:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0447\\u04af\",1:\"-\\u0447\\u0438\",2:\"-\\u0447\\u0438\",3:\"-\\u0447\\u04af\",4:\"-\\u0447\\u04af\",5:\"-\\u0447\\u0438\",6:\"-\\u0447\\u044b\",7:\"-\\u0447\\u0438\",8:\"-\\u0447\\u0438\",9:\"-\\u0447\\u0443\",10:\"-\\u0447\\u0443\",20:\"-\\u0447\\u044b\",30:\"-\\u0447\\u0443\",40:\"-\\u0447\\u044b\",50:\"-\\u0447\\u04af\",60:\"-\\u0447\\u044b\",70:\"-\\u0447\\u0438\",80:\"-\\u0447\\u0438\",90:\"-\\u0447\\u0443\",100:\"-\\u0447\\u04af\"};e.defineLocale(\"ky\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044c_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044c_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044c_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044c_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044c\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u0416\\u0435\\u043a\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0414\\u04af\\u0439\\u0448\\u04e9\\u043c\\u0431\\u04af_\\u0428\\u0435\\u0439\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0428\\u0430\\u0440\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0411\\u0435\\u0439\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0416\\u0443\\u043c\\u0430_\\u0418\\u0448\\u0435\\u043c\\u0431\\u0438\".split(\"_\"),weekdaysShort:\"\\u0416\\u0435\\u043a_\\u0414\\u04af\\u0439_\\u0428\\u0435\\u0439_\\u0428\\u0430\\u0440_\\u0411\\u0435\\u0439_\\u0416\\u0443\\u043c_\\u0418\\u0448\\u0435\".split(\"_\"),weekdaysMin:\"\\u0416\\u043a_\\u0414\\u0439_\\u0428\\u0439_\\u0428\\u0440_\\u0411\\u0439_\\u0416\\u043c_\\u0418\\u0448\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0411\\u04af\\u0433\\u04af\\u043d \\u0441\\u0430\\u0430\\u0442] LT\",nextDay:\"[\\u042d\\u0440\\u0442\\u0435\\u04a3 \\u0441\\u0430\\u0430\\u0442] LT\",nextWeek:\"dddd [\\u0441\\u0430\\u0430\\u0442] LT\",lastDay:\"[\\u041a\\u0435\\u0447\\u044d\\u044d \\u0441\\u0430\\u0430\\u0442] LT\",lastWeek:\"[\\u04e8\\u0442\\u043a\\u04e9\\u043d \\u0430\\u043f\\u0442\\u0430\\u043d\\u044b\\u043d] dddd [\\u043a\\u04af\\u043d\\u04af] [\\u0441\\u0430\\u0430\\u0442] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0438\\u0447\\u0438\\u043d\\u0434\\u0435\",past:\"%s \\u043c\\u0443\\u0440\\u0443\\u043d\",s:\"\\u0431\\u0438\\u0440\\u043d\\u0435\\u0447\\u0435 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:\"\\u0431\\u0438\\u0440 \\u043c\\u04af\\u043d\\u04e9\\u0442\",mm:\"%d \\u043c\\u04af\\u043d\\u04e9\\u0442\",h:\"\\u0431\\u0438\\u0440 \\u0441\\u0430\\u0430\\u0442\",hh:\"%d \\u0441\\u0430\\u0430\\u0442\",d:\"\\u0431\\u0438\\u0440 \\u043a\\u04af\\u043d\",dd:\"%d \\u043a\\u04af\\u043d\",M:\"\\u0431\\u0438\\u0440 \\u0430\\u0439\",MM:\"%d \\u0430\\u0439\",y:\"\\u0431\\u0438\\u0440 \\u0436\\u044b\\u043b\",yy:\"%d \\u0436\\u044b\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0447\\u0438|\\u0447\\u044b|\\u0447\\u04af|\\u0447\\u0443)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},lyxo:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i=\" \";return(e%100>=20||e>=100&&e%100==0)&&(i=\" de \"),e+i+{ss:\"secunde\",mm:\"minute\",hh:\"ore\",dd:\"zile\",MM:\"luni\",yy:\"ani\"}[n]}e.defineLocale(\"ro\",{months:\"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie\".split(\"_\"),monthsShort:\"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"duminic\\u0103_luni_mar\\u021bi_miercuri_joi_vineri_s\\xe2mb\\u0103t\\u0103\".split(\"_\"),weekdaysShort:\"Dum_Lun_Mar_Mie_Joi_Vin_S\\xe2m\".split(\"_\"),weekdaysMin:\"Du_Lu_Ma_Mi_Jo_Vi_S\\xe2\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[azi la] LT\",nextDay:\"[m\\xe2ine la] LT\",nextWeek:\"dddd [la] LT\",lastDay:\"[ieri la] LT\",lastWeek:\"[fosta] dddd [la] LT\",sameElse:\"L\"},relativeTime:{future:\"peste %s\",past:\"%s \\xeen urm\\u0103\",s:\"c\\xe2teva secunde\",ss:t,m:\"un minut\",mm:t,h:\"o or\\u0103\",hh:t,d:\"o zi\",dd:t,M:\"o lun\\u0103\",MM:t,y:\"un an\",yy:t},week:{dow:1,doy:7}})}(n(\"wd/R\"))},m4GZ:function(e,t){function n(e){this.message=e}(n.prototype=new Error).name=\"InvalidCharacterError\",e.exports=\"undefined\"!=typeof window&&window.atob&&window.atob.bind(window)||function(e){var t=String(e).replace(/=+$/,\"\");if(t.length%4==1)throw new n(\"'atob' failed: The string to be decoded is not correctly encoded.\");for(var i,s,r=0,o=0,a=\"\";s=t.charAt(o++);~s&&(i=r%4?64*i+s:s,r++%4)?a+=String.fromCharCode(255&i>>(-2*r&6)):0)s=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\".indexOf(s);return a}},nyYc:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|)/,ordinal:function(e,t){switch(t){case\"D\":return e+(1===e?\"er\":\"\");default:case\"M\":case\"Q\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},o1bE:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-dz\",{months:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0627\\u062d\\u062f_\\u0627\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u0623\\u062d_\\u0625\\u062b_\\u062b\\u0644\\u0627_\\u0623\\u0631_\\u062e\\u0645_\\u062c\\u0645_\\u0633\\u0628\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:0,doy:4}})}(n(\"wd/R\"))},\"p/rL\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bm\",{months:\"Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_M\\u025bkalo_Zuw\\u025bnkalo_Zuluyekalo_Utikalo_S\\u025btanburukalo_\\u0254kut\\u0254burukalo_Nowanburukalo_Desanburukalo\".split(\"_\"),monthsShort:\"Zan_Few_Mar_Awi_M\\u025b_Zuw_Zul_Uti_S\\u025bt_\\u0254ku_Now_Des\".split(\"_\"),weekdays:\"Kari_Nt\\u025bn\\u025bn_Tarata_Araba_Alamisa_Juma_Sibiri\".split(\"_\"),weekdaysShort:\"Kar_Nt\\u025b_Tar_Ara_Ala_Jum_Sib\".split(\"_\"),weekdaysMin:\"Ka_Nt_Ta_Ar_Al_Ju_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"MMMM [tile] D [san] YYYY\",LLL:\"MMMM [tile] D [san] YYYY [l\\u025br\\u025b] HH:mm\",LLLL:\"dddd MMMM [tile] D [san] YYYY [l\\u025br\\u025b] HH:mm\"},calendar:{sameDay:\"[Bi l\\u025br\\u025b] LT\",nextDay:\"[Sini l\\u025br\\u025b] LT\",nextWeek:\"dddd [don l\\u025br\\u025b] LT\",lastDay:\"[Kunu l\\u025br\\u025b] LT\",lastWeek:\"dddd [t\\u025bm\\u025bnen l\\u025br\\u025b] LT\",sameElse:\"L\"},relativeTime:{future:\"%s k\\u0254n\\u0254\",past:\"a b\\u025b %s b\\u0254\",s:\"sanga dama dama\",ss:\"sekondi %d\",m:\"miniti kelen\",mm:\"miniti %d\",h:\"l\\u025br\\u025b kelen\",hh:\"l\\u025br\\u025b %d\",d:\"tile kelen\",dd:\"tile %d\",M:\"kalo kelen\",MM:\"kalo %d\",y:\"san kelen\",yy:\"san %d\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},raLr:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var i,s;return\"m\"===n?t?\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0430\":\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0443\":\"h\"===n?t?\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\":\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\":e+\" \"+(i=+e,s={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0430_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0438_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\":\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0443_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0438_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\",hh:t?\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430_\\u0433\\u043e\\u0434\\u0438\\u043d\\u0438_\\u0433\\u043e\\u0434\\u0438\\u043d\":\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443_\\u0433\\u043e\\u0434\\u0438\\u043d\\u0438_\\u0433\\u043e\\u0434\\u0438\\u043d\",dd:\"\\u0434\\u0435\\u043d\\u044c_\\u0434\\u043d\\u0456_\\u0434\\u043d\\u0456\\u0432\",MM:\"\\u043c\\u0456\\u0441\\u044f\\u0446\\u044c_\\u043c\\u0456\\u0441\\u044f\\u0446\\u0456_\\u043c\\u0456\\u0441\\u044f\\u0446\\u0456\\u0432\",yy:\"\\u0440\\u0456\\u043a_\\u0440\\u043e\\u043a\\u0438_\\u0440\\u043e\\u043a\\u0456\\u0432\"}[n].split(\"_\"),i%10==1&&i%100!=11?s[0]:i%10>=2&&i%10<=4&&(i%100<10||i%100>=20)?s[1]:s[2])}function n(e){return function(){return e+\"\\u043e\"+(11===this.hours()?\"\\u0431\":\"\")+\"] LT\"}}e.defineLocale(\"uk\",{months:{format:\"\\u0441\\u0456\\u0447\\u043d\\u044f_\\u043b\\u044e\\u0442\\u043e\\u0433\\u043e_\\u0431\\u0435\\u0440\\u0435\\u0437\\u043d\\u044f_\\u043a\\u0432\\u0456\\u0442\\u043d\\u044f_\\u0442\\u0440\\u0430\\u0432\\u043d\\u044f_\\u0447\\u0435\\u0440\\u0432\\u043d\\u044f_\\u043b\\u0438\\u043f\\u043d\\u044f_\\u0441\\u0435\\u0440\\u043f\\u043d\\u044f_\\u0432\\u0435\\u0440\\u0435\\u0441\\u043d\\u044f_\\u0436\\u043e\\u0432\\u0442\\u043d\\u044f_\\u043b\\u0438\\u0441\\u0442\\u043e\\u043f\\u0430\\u0434\\u0430_\\u0433\\u0440\\u0443\\u0434\\u043d\\u044f\".split(\"_\"),standalone:\"\\u0441\\u0456\\u0447\\u0435\\u043d\\u044c_\\u043b\\u044e\\u0442\\u0438\\u0439_\\u0431\\u0435\\u0440\\u0435\\u0437\\u0435\\u043d\\u044c_\\u043a\\u0432\\u0456\\u0442\\u0435\\u043d\\u044c_\\u0442\\u0440\\u0430\\u0432\\u0435\\u043d\\u044c_\\u0447\\u0435\\u0440\\u0432\\u0435\\u043d\\u044c_\\u043b\\u0438\\u043f\\u0435\\u043d\\u044c_\\u0441\\u0435\\u0440\\u043f\\u0435\\u043d\\u044c_\\u0432\\u0435\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c_\\u0436\\u043e\\u0432\\u0442\\u0435\\u043d\\u044c_\\u043b\\u0438\\u0441\\u0442\\u043e\\u043f\\u0430\\u0434_\\u0433\\u0440\\u0443\\u0434\\u0435\\u043d\\u044c\".split(\"_\")},monthsShort:\"\\u0441\\u0456\\u0447_\\u043b\\u044e\\u0442_\\u0431\\u0435\\u0440_\\u043a\\u0432\\u0456\\u0442_\\u0442\\u0440\\u0430\\u0432_\\u0447\\u0435\\u0440\\u0432_\\u043b\\u0438\\u043f_\\u0441\\u0435\\u0440\\u043f_\\u0432\\u0435\\u0440_\\u0436\\u043e\\u0432\\u0442_\\u043b\\u0438\\u0441\\u0442_\\u0433\\u0440\\u0443\\u0434\".split(\"_\"),weekdays:function(e,t){var n={nominative:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u044f_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043e\\u043a_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043e\\u043a_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u044f_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),accusative:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u044e_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043e\\u043a_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043e\\u043a_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0443_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u044e_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),genitive:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u0456_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043a\\u0430_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043a\\u0430_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0438_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433\\u0430_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u0456_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0438\".split(\"_\")};return!0===e?n.nominative.slice(1,7).concat(n.nominative.slice(0,1)):e?n[/(\\[[\\u0412\\u0432\\u0423\\u0443]\\]) ?dddd/.test(t)?\"accusative\":/\\[?(?:\\u043c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0457|\\u043d\\u0430\\u0441\\u0442\\u0443\\u043f\\u043d\\u043e\\u0457)? ?\\] ?dddd/.test(t)?\"genitive\":\"nominative\"][e.day()]:n.nominative},weekdaysShort:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0440.\",LLL:\"D MMMM YYYY \\u0440., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0440., HH:mm\"},calendar:{sameDay:n(\"[\\u0421\\u044c\\u043e\\u0433\\u043e\\u0434\\u043d\\u0456 \"),nextDay:n(\"[\\u0417\\u0430\\u0432\\u0442\\u0440\\u0430 \"),lastDay:n(\"[\\u0412\\u0447\\u043e\\u0440\\u0430 \"),nextWeek:n(\"[\\u0423] dddd [\"),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return n(\"[\\u041c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0457] dddd [\").call(this);case 1:case 2:case 4:return n(\"[\\u041c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0433\\u043e] dddd [\").call(this)}},sameElse:\"L\"},relativeTime:{future:\"\\u0437\\u0430 %s\",past:\"%s \\u0442\\u043e\\u043c\\u0443\",s:\"\\u0434\\u0435\\u043a\\u0456\\u043b\\u044c\\u043a\\u0430 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:t,m:t,mm:t,h:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\",hh:t,d:\"\\u0434\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0456\\u0441\\u044f\\u0446\\u044c\",MM:t,y:\"\\u0440\\u0456\\u043a\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u0456|\\u0440\\u0430\\u043d\\u043a\\u0443|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430/,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u0456\":e<12?\"\\u0440\\u0430\\u043d\\u043a\\u0443\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0439|\\u0433\\u043e)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e+\"-\\u0439\";case\"D\":return e+\"-\\u0433\\u043e\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"s+uk\":function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?s[n][0]:s[n][1]}e.defineLocale(\"de-at\",{months:\"J\\xe4nner_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"J\\xe4n._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},sp3z:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"lo\",{months:\"\\u0ea1\\u0eb1\\u0e87\\u0e81\\u0ead\\u0e99_\\u0e81\\u0eb8\\u0ea1\\u0e9e\\u0eb2_\\u0ea1\\u0eb5\\u0e99\\u0eb2_\\u0ec0\\u0ea1\\u0eaa\\u0eb2_\\u0e9e\\u0eb6\\u0e94\\u0eaa\\u0eb0\\u0e9e\\u0eb2_\\u0ea1\\u0eb4\\u0e96\\u0eb8\\u0e99\\u0eb2_\\u0e81\\u0ecd\\u0ea5\\u0eb0\\u0e81\\u0ebb\\u0e94_\\u0eaa\\u0eb4\\u0e87\\u0eab\\u0eb2_\\u0e81\\u0eb1\\u0e99\\u0e8d\\u0eb2_\\u0e95\\u0eb8\\u0ea5\\u0eb2_\\u0e9e\\u0eb0\\u0e88\\u0eb4\\u0e81_\\u0e97\\u0eb1\\u0e99\\u0ea7\\u0eb2\".split(\"_\"),monthsShort:\"\\u0ea1\\u0eb1\\u0e87\\u0e81\\u0ead\\u0e99_\\u0e81\\u0eb8\\u0ea1\\u0e9e\\u0eb2_\\u0ea1\\u0eb5\\u0e99\\u0eb2_\\u0ec0\\u0ea1\\u0eaa\\u0eb2_\\u0e9e\\u0eb6\\u0e94\\u0eaa\\u0eb0\\u0e9e\\u0eb2_\\u0ea1\\u0eb4\\u0e96\\u0eb8\\u0e99\\u0eb2_\\u0e81\\u0ecd\\u0ea5\\u0eb0\\u0e81\\u0ebb\\u0e94_\\u0eaa\\u0eb4\\u0e87\\u0eab\\u0eb2_\\u0e81\\u0eb1\\u0e99\\u0e8d\\u0eb2_\\u0e95\\u0eb8\\u0ea5\\u0eb2_\\u0e9e\\u0eb0\\u0e88\\u0eb4\\u0e81_\\u0e97\\u0eb1\\u0e99\\u0ea7\\u0eb2\".split(\"_\"),weekdays:\"\\u0ead\\u0eb2\\u0e97\\u0eb4\\u0e94_\\u0e88\\u0eb1\\u0e99_\\u0ead\\u0eb1\\u0e87\\u0e84\\u0eb2\\u0e99_\\u0e9e\\u0eb8\\u0e94_\\u0e9e\\u0eb0\\u0eab\\u0eb1\\u0e94_\\u0eaa\\u0eb8\\u0e81_\\u0ec0\\u0eaa\\u0ebb\\u0eb2\".split(\"_\"),weekdaysShort:\"\\u0e97\\u0eb4\\u0e94_\\u0e88\\u0eb1\\u0e99_\\u0ead\\u0eb1\\u0e87\\u0e84\\u0eb2\\u0e99_\\u0e9e\\u0eb8\\u0e94_\\u0e9e\\u0eb0\\u0eab\\u0eb1\\u0e94_\\u0eaa\\u0eb8\\u0e81_\\u0ec0\\u0eaa\\u0ebb\\u0eb2\".split(\"_\"),weekdaysMin:\"\\u0e97_\\u0e88_\\u0ead\\u0e84_\\u0e9e_\\u0e9e\\u0eab_\\u0eaa\\u0e81_\\u0eaa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"\\u0ea7\\u0eb1\\u0e99dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0e95\\u0ead\\u0e99\\u0ec0\\u0e8a\\u0ebb\\u0ec9\\u0eb2|\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87/,isPM:function(e){return\"\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87\"===e},meridiem:function(e,t,n){return e<12?\"\\u0e95\\u0ead\\u0e99\\u0ec0\\u0e8a\\u0ebb\\u0ec9\\u0eb2\":\"\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87\"},calendar:{sameDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",nextDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0ead\\u0eb7\\u0ec8\\u0e99\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",nextWeek:\"[\\u0ea7\\u0eb1\\u0e99]dddd[\\u0edc\\u0ec9\\u0eb2\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",lastDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0ea7\\u0eb2\\u0e99\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",lastWeek:\"[\\u0ea7\\u0eb1\\u0e99]dddd[\\u0ec1\\u0ea5\\u0ec9\\u0ea7\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0ead\\u0eb5\\u0e81 %s\",past:\"%s\\u0e9c\\u0ec8\\u0eb2\\u0e99\\u0ea1\\u0eb2\",s:\"\\u0e9a\\u0ecd\\u0ec8\\u0ec0\\u0e97\\u0ebb\\u0ec8\\u0eb2\\u0ec3\\u0e94\\u0ea7\\u0eb4\\u0e99\\u0eb2\\u0e97\\u0eb5\",ss:\"%d \\u0ea7\\u0eb4\\u0e99\\u0eb2\\u0e97\\u0eb5\",m:\"1 \\u0e99\\u0eb2\\u0e97\\u0eb5\",mm:\"%d \\u0e99\\u0eb2\\u0e97\\u0eb5\",h:\"1 \\u0e8a\\u0ebb\\u0ec8\\u0ea7\\u0ec2\\u0ea1\\u0e87\",hh:\"%d \\u0e8a\\u0ebb\\u0ec8\\u0ea7\\u0ec2\\u0ea1\\u0e87\",d:\"1 \\u0ea1\\u0eb7\\u0ec9\",dd:\"%d \\u0ea1\\u0eb7\\u0ec9\",M:\"1 \\u0ec0\\u0e94\\u0eb7\\u0ead\\u0e99\",MM:\"%d \\u0ec0\\u0e94\\u0eb7\\u0ead\\u0e99\",y:\"1 \\u0e9b\\u0eb5\",yy:\"%d \\u0e9b\\u0eb5\"},dayOfMonthOrdinalParse:/(\\u0e97\\u0eb5\\u0ec8)\\d{1,2}/,ordinal:function(e){return\"\\u0e97\\u0eb5\\u0ec8\"+e}})}(n(\"wd/R\"))},tGlX:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?s[n][0]:s[n][1]}e.defineLocale(\"de\",{months:\"Januar_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},tT3J:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm-latn\",{months:\"innayr_br\\u02e4ayr\\u02e4_mar\\u02e4s\\u02e4_ibrir_mayyw_ywnyw_ywlywz_\\u0263w\\u0161t_\\u0161wtanbir_kt\\u02e4wbr\\u02e4_nwwanbir_dwjnbir\".split(\"_\"),monthsShort:\"innayr_br\\u02e4ayr\\u02e4_mar\\u02e4s\\u02e4_ibrir_mayyw_ywnyw_ywlywz_\\u0263w\\u0161t_\\u0161wtanbir_kt\\u02e4wbr\\u02e4_nwwanbir_dwjnbir\".split(\"_\"),weekdays:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),weekdaysShort:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),weekdaysMin:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[asdkh g] LT\",nextDay:\"[aska g] LT\",nextWeek:\"dddd [g] LT\",lastDay:\"[assant g] LT\",lastWeek:\"dddd [g] LT\",sameElse:\"L\"},relativeTime:{future:\"dadkh s yan %s\",past:\"yan %s\",s:\"imik\",ss:\"%d imik\",m:\"minu\\u1e0d\",mm:\"%d minu\\u1e0d\",h:\"sa\\u025ba\",hh:\"%d tassa\\u025bin\",d:\"ass\",dd:\"%d ossan\",M:\"ayowr\",MM:\"%d iyyirn\",y:\"asgas\",yy:\"%d isgasn\"},week:{dow:6,doy:12}})}(n(\"wd/R\"))},tUCv:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"jv\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des\".split(\"_\"),weekdays:\"Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Reb_Kem_Jem_Sep\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sp\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/enjing|siyang|sonten|ndalu/,meridiemHour:function(e,t){return 12===e&&(e=0),\"enjing\"===t?e:\"siyang\"===t?e>=11?e:e+12:\"sonten\"===t||\"ndalu\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"enjing\":e<15?\"siyang\":e<19?\"sonten\":\"ndalu\"},calendar:{sameDay:\"[Dinten puniko pukul] LT\",nextDay:\"[Mbenjang pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kala wingi pukul] LT\",lastWeek:\"dddd [kepengker pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"wonten ing %s\",past:\"%s ingkang kepengker\",s:\"sawetawis detik\",ss:\"%d detik\",m:\"setunggal menit\",mm:\"%d menit\",h:\"setunggal jam\",hh:\"%d jam\",d:\"sedinten\",dd:\"%d dinten\",M:\"sewulan\",MM:\"%d wulan\",y:\"setaun\",yy:\"%d taun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},u3GI:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?s[n][0]:s[n][1]}e.defineLocale(\"de-ch\",{months:\"Januar_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},uEye:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nn\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\"),weekdays:\"sundag_m\\xe5ndag_tysdag_onsdag_torsdag_fredag_laurdag\".split(\"_\"),weekdaysShort:\"sun_m\\xe5n_tys_ons_tor_fre_lau\".split(\"_\"),weekdaysMin:\"su_m\\xe5_ty_on_to_fr_l\\xf8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] H:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[I dag klokka] LT\",nextDay:\"[I morgon klokka] LT\",nextWeek:\"dddd [klokka] LT\",lastDay:\"[I g\\xe5r klokka] LT\",lastWeek:\"[F\\xf8reg\\xe5ande] dddd [klokka] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s sidan\",s:\"nokre sekund\",ss:\"%d sekund\",m:\"eit minutt\",mm:\"%d minutt\",h:\"ein time\",hh:\"%d timar\",d:\"ein dag\",dd:\"%d dagar\",M:\"ein m\\xe5nad\",MM:\"%d m\\xe5nader\",y:\"eit \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},uXwI:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekundes_sekund\\u0113m_sekunde_sekundes\".split(\"_\"),m:\"min\\u016btes_min\\u016bt\\u0113m_min\\u016bte_min\\u016btes\".split(\"_\"),mm:\"min\\u016btes_min\\u016bt\\u0113m_min\\u016bte_min\\u016btes\".split(\"_\"),h:\"stundas_stund\\u0101m_stunda_stundas\".split(\"_\"),hh:\"stundas_stund\\u0101m_stunda_stundas\".split(\"_\"),d:\"dienas_dien\\u0101m_diena_dienas\".split(\"_\"),dd:\"dienas_dien\\u0101m_diena_dienas\".split(\"_\"),M:\"m\\u0113ne\\u0161a_m\\u0113ne\\u0161iem_m\\u0113nesis_m\\u0113ne\\u0161i\".split(\"_\"),MM:\"m\\u0113ne\\u0161a_m\\u0113ne\\u0161iem_m\\u0113nesis_m\\u0113ne\\u0161i\".split(\"_\"),y:\"gada_gadiem_gads_gadi\".split(\"_\"),yy:\"gada_gadiem_gads_gadi\".split(\"_\")};function n(e,t,n){return n?t%10==1&&t%100!=11?e[2]:e[3]:t%10==1&&t%100!=11?e[0]:e[1]}function i(e,i,s){return e+\" \"+n(t[s],e,i)}function s(e,i,s){return n(t[s],e,i)}e.defineLocale(\"lv\",{months:\"janv\\u0101ris_febru\\u0101ris_marts_apr\\u012blis_maijs_j\\u016bnijs_j\\u016blijs_augusts_septembris_oktobris_novembris_decembris\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_j\\u016bn_j\\u016bl_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"sv\\u0113tdiena_pirmdiena_otrdiena_tre\\u0161diena_ceturtdiena_piektdiena_sestdiena\".split(\"_\"),weekdaysShort:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysMin:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY.\",LL:\"YYYY. [gada] D. MMMM\",LLL:\"YYYY. [gada] D. MMMM, HH:mm\",LLLL:\"YYYY. [gada] D. MMMM, dddd, HH:mm\"},calendar:{sameDay:\"[\\u0160odien pulksten] LT\",nextDay:\"[R\\u012bt pulksten] LT\",nextWeek:\"dddd [pulksten] LT\",lastDay:\"[Vakar pulksten] LT\",lastWeek:\"[Pag\\u0101ju\\u0161\\u0101] dddd [pulksten] LT\",sameElse:\"L\"},relativeTime:{future:\"p\\u0113c %s\",past:\"pirms %s\",s:function(e,t){return t?\"da\\u017eas sekundes\":\"da\\u017e\\u0101m sekund\\u0113m\"},ss:i,m:s,mm:i,h:s,hh:i,d:s,dd:i,M:s,MM:i,y:s,yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},wQk9:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm\",{months:\"\\u2d49\\u2d4f\\u2d4f\\u2d30\\u2d62\\u2d54_\\u2d31\\u2d55\\u2d30\\u2d62\\u2d55_\\u2d4e\\u2d30\\u2d55\\u2d5a_\\u2d49\\u2d31\\u2d54\\u2d49\\u2d54_\\u2d4e\\u2d30\\u2d62\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4f\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4d\\u2d62\\u2d53\\u2d63_\\u2d56\\u2d53\\u2d5b\\u2d5c_\\u2d5b\\u2d53\\u2d5c\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d3d\\u2d5f\\u2d53\\u2d31\\u2d55_\\u2d4f\\u2d53\\u2d61\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d37\\u2d53\\u2d4a\\u2d4f\\u2d31\\u2d49\\u2d54\".split(\"_\"),monthsShort:\"\\u2d49\\u2d4f\\u2d4f\\u2d30\\u2d62\\u2d54_\\u2d31\\u2d55\\u2d30\\u2d62\\u2d55_\\u2d4e\\u2d30\\u2d55\\u2d5a_\\u2d49\\u2d31\\u2d54\\u2d49\\u2d54_\\u2d4e\\u2d30\\u2d62\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4f\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4d\\u2d62\\u2d53\\u2d63_\\u2d56\\u2d53\\u2d5b\\u2d5c_\\u2d5b\\u2d53\\u2d5c\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d3d\\u2d5f\\u2d53\\u2d31\\u2d55_\\u2d4f\\u2d53\\u2d61\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d37\\u2d53\\u2d4a\\u2d4f\\u2d31\\u2d49\\u2d54\".split(\"_\"),weekdays:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),weekdaysShort:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),weekdaysMin:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u2d30\\u2d59\\u2d37\\u2d45 \\u2d34] LT\",nextDay:\"[\\u2d30\\u2d59\\u2d3d\\u2d30 \\u2d34] LT\",nextWeek:\"dddd [\\u2d34] LT\",lastDay:\"[\\u2d30\\u2d5a\\u2d30\\u2d4f\\u2d5c \\u2d34] LT\",lastWeek:\"dddd [\\u2d34] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u2d37\\u2d30\\u2d37\\u2d45 \\u2d59 \\u2d62\\u2d30\\u2d4f %s\",past:\"\\u2d62\\u2d30\\u2d4f %s\",s:\"\\u2d49\\u2d4e\\u2d49\\u2d3d\",ss:\"%d \\u2d49\\u2d4e\\u2d49\\u2d3d\",m:\"\\u2d4e\\u2d49\\u2d4f\\u2d53\\u2d3a\",mm:\"%d \\u2d4e\\u2d49\\u2d4f\\u2d53\\u2d3a\",h:\"\\u2d59\\u2d30\\u2d44\\u2d30\",hh:\"%d \\u2d5c\\u2d30\\u2d59\\u2d59\\u2d30\\u2d44\\u2d49\\u2d4f\",d:\"\\u2d30\\u2d59\\u2d59\",dd:\"%d o\\u2d59\\u2d59\\u2d30\\u2d4f\",M:\"\\u2d30\\u2d62o\\u2d53\\u2d54\",MM:\"%d \\u2d49\\u2d62\\u2d62\\u2d49\\u2d54\\u2d4f\",y:\"\\u2d30\\u2d59\\u2d33\\u2d30\\u2d59\",yy:\"%d \\u2d49\\u2d59\\u2d33\\u2d30\\u2d59\\u2d4f\"},week:{dow:6,doy:12}})}(n(\"wd/R\"))},\"wd/R\":function(e,t,n){(function(e){e.exports=function(){\"use strict\";var t,i;function s(){return t.apply(null,arguments)}function r(e){return e instanceof Array||\"[object Array]\"===Object.prototype.toString.call(e)}function o(e){return null!=e&&\"[object Object]\"===Object.prototype.toString.call(e)}function a(e){return void 0===e}function l(e){return\"number\"==typeof e||\"[object Number]\"===Object.prototype.toString.call(e)}function c(e){return e instanceof Date||\"[object Date]\"===Object.prototype.toString.call(e)}function d(e,t){var n,i=[];for(n=0;n>>0,i=0;i0)for(n=0;n=0?n?\"+\":\"\":\"-\")+Math.pow(10,Math.max(0,t-i.length)).toString().substr(1)+i}var N=/(\\[[^\\[]*\\])|(\\\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,z=/(\\[[^\\[]*\\])|(\\\\)?(LTS|LT|LL?L?L?|l{1,4})/g,V={},W={};function U(e,t,n,i){var s=i;\"string\"==typeof i&&(s=function(){return this[i]()}),e&&(W[e]=s),t&&(W[t[0]]=function(){return F(s.apply(this,arguments),t[1],t[2])}),n&&(W[n]=function(){return this.localeData().ordinal(s.apply(this,arguments),e)})}function $(e,t){return e.isValid()?(t=B(t,e.localeData()),V[t]=V[t]||function(e){var t,n,i,s=e.match(N);for(t=0,n=s.length;t=0&&z.test(e);)e=e.replace(z,i),z.lastIndex=0,n-=1;return e}var q=/\\d/,G=/\\d\\d/,J=/\\d{3}/,K=/\\d{4}/,Z=/[+-]?\\d{6}/,Q=/\\d\\d?/,X=/\\d\\d\\d\\d?/,ee=/\\d\\d\\d\\d\\d\\d?/,te=/\\d{1,3}/,ne=/\\d{1,4}/,ie=/[+-]?\\d{1,6}/,se=/\\d+/,re=/[+-]?\\d+/,oe=/Z|[+-]\\d\\d:?\\d\\d/gi,ae=/Z|[+-]\\d\\d(?::?\\d\\d)?/gi,le=/[0-9]{0,256}['a-z\\u00A0-\\u05FF\\u0700-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFF07\\uFF10-\\uFFEF]{1,256}|[\\u0600-\\u06FF\\/]{1,256}(\\s*?[\\u0600-\\u06FF]{1,256}){1,2}/i,ce={};function de(e,t,n){ce[e]=Y(t)?t:function(e,i){return e&&n?n:t}}function ue(e,t){return u(ce,e)?ce[e](t._strict,t._locale):new RegExp(he(e.replace(\"\\\\\",\"\").replace(/\\\\(\\[)|\\\\(\\])|\\[([^\\]\\[]*)\\]|\\\\(.)/g,(function(e,t,n,i,s){return t||n||i||s}))))}function he(e){return e.replace(/[-\\/\\\\^$*+?.()|[\\]{}]/g,\"\\\\$&\")}var me={};function pe(e,t){var n,i=t;for(\"string\"==typeof e&&(e=[e]),l(t)&&(i=function(e,n){n[t]=k(e)}),n=0;n68?1900:2e3)};var be,ve=we(\"FullYear\",!0);function we(e,t){return function(n){return null!=n?(ke(this,e,n),s.updateOffset(this,t),this):Me(this,e)}}function Me(e,t){return e.isValid()?e._d[\"get\"+(e._isUTC?\"UTC\":\"\")+t]():NaN}function ke(e,t,n){e.isValid()&&!isNaN(n)&&(\"FullYear\"===t&&ye(e.year())&&1===e.month()&&29===e.date()?e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n,e.month(),Se(n,e.month())):e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n))}function Se(e,t){if(isNaN(e)||isNaN(t))return NaN;var n=(t%12+12)%12;return e+=(t-n)/12,1===n?ye(e)?29:28:31-n%7%2}be=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t=0?(a=new Date(e+400,t,n,i,s,r,o),isFinite(a.getFullYear())&&a.setFullYear(e)):a=new Date(e,t,n,i,s,r,o),a}function Ae(e){var t;if(e<100&&e>=0){var n=Array.prototype.slice.call(arguments);n[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)}else t=new Date(Date.UTC.apply(null,arguments));return t}function Re(e,t,n){var i=7+t-n;return-(7+Ae(e,0,i).getUTCDay()-t)%7+i-1}function He(e,t,n,i,s){var r,o,a=1+7*(t-1)+(7+n-i)%7+Re(e,i,s);return a<=0?o=ge(r=e-1)+a:a>ge(e)?(r=e+1,o=a-ge(e)):(r=e,o=a),{year:r,dayOfYear:o}}function je(e,t,n){var i,s,r=Re(e.year(),t,n),o=Math.floor((e.dayOfYear()-r-1)/7)+1;return o<1?i=o+Fe(s=e.year()-1,t,n):o>Fe(e.year(),t,n)?(i=o-Fe(e.year(),t,n),s=e.year()+1):(s=e.year(),i=o),{week:i,year:s}}function Fe(e,t,n){var i=Re(e,t,n),s=Re(e+1,t,n);return(ge(e)-i+s)/7}function Ne(e,t){return e.slice(t,7).concat(e.slice(0,t))}U(\"w\",[\"ww\",2],\"wo\",\"week\"),U(\"W\",[\"WW\",2],\"Wo\",\"isoWeek\"),P(\"week\",\"w\"),P(\"isoWeek\",\"W\"),j(\"week\",5),j(\"isoWeek\",5),de(\"w\",Q),de(\"ww\",Q,G),de(\"W\",Q),de(\"WW\",Q,G),fe([\"w\",\"ww\",\"W\",\"WW\"],(function(e,t,n,i){t[i.substr(0,1)]=k(e)})),U(\"d\",0,\"do\",\"day\"),U(\"dd\",0,0,(function(e){return this.localeData().weekdaysMin(this,e)})),U(\"ddd\",0,0,(function(e){return this.localeData().weekdaysShort(this,e)})),U(\"dddd\",0,0,(function(e){return this.localeData().weekdays(this,e)})),U(\"e\",0,0,\"weekday\"),U(\"E\",0,0,\"isoWeekday\"),P(\"day\",\"d\"),P(\"weekday\",\"e\"),P(\"isoWeekday\",\"E\"),j(\"day\",11),j(\"weekday\",11),j(\"isoWeekday\",11),de(\"d\",Q),de(\"e\",Q),de(\"E\",Q),de(\"dd\",(function(e,t){return t.weekdaysMinRegex(e)})),de(\"ddd\",(function(e,t){return t.weekdaysShortRegex(e)})),de(\"dddd\",(function(e,t){return t.weekdaysRegex(e)})),fe([\"dd\",\"ddd\",\"dddd\"],(function(e,t,n,i){var s=n._locale.weekdaysParse(e,i,n._strict);null!=s?t.d=s:p(n).invalidWeekday=e})),fe([\"d\",\"e\",\"E\"],(function(e,t,n,i){t[i]=k(e)}));var ze=\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),Ve=\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),We=\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\");function Ue(e,t,n){var i,s,r,o=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],i=0;i<7;++i)r=m([2e3,1]).day(i),this._minWeekdaysParse[i]=this.weekdaysMin(r,\"\").toLocaleLowerCase(),this._shortWeekdaysParse[i]=this.weekdaysShort(r,\"\").toLocaleLowerCase(),this._weekdaysParse[i]=this.weekdays(r,\"\").toLocaleLowerCase();return n?\"dddd\"===t?-1!==(s=be.call(this._weekdaysParse,o))?s:null:\"ddd\"===t?-1!==(s=be.call(this._shortWeekdaysParse,o))?s:null:-1!==(s=be.call(this._minWeekdaysParse,o))?s:null:\"dddd\"===t?-1!==(s=be.call(this._weekdaysParse,o))||-1!==(s=be.call(this._shortWeekdaysParse,o))||-1!==(s=be.call(this._minWeekdaysParse,o))?s:null:\"ddd\"===t?-1!==(s=be.call(this._shortWeekdaysParse,o))||-1!==(s=be.call(this._weekdaysParse,o))||-1!==(s=be.call(this._minWeekdaysParse,o))?s:null:-1!==(s=be.call(this._minWeekdaysParse,o))||-1!==(s=be.call(this._weekdaysParse,o))||-1!==(s=be.call(this._shortWeekdaysParse,o))?s:null}var $e=le,Be=le,qe=le;function Ge(){function e(e,t){return t.length-e.length}var t,n,i,s,r,o=[],a=[],l=[],c=[];for(t=0;t<7;t++)n=m([2e3,1]).day(t),i=this.weekdaysMin(n,\"\"),s=this.weekdaysShort(n,\"\"),r=this.weekdays(n,\"\"),o.push(i),a.push(s),l.push(r),c.push(i),c.push(s),c.push(r);for(o.sort(e),a.sort(e),l.sort(e),c.sort(e),t=0;t<7;t++)a[t]=he(a[t]),l[t]=he(l[t]),c[t]=he(c[t]);this._weekdaysRegex=new RegExp(\"^(\"+c.join(\"|\")+\")\",\"i\"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp(\"^(\"+l.join(\"|\")+\")\",\"i\"),this._weekdaysShortStrictRegex=new RegExp(\"^(\"+a.join(\"|\")+\")\",\"i\"),this._weekdaysMinStrictRegex=new RegExp(\"^(\"+o.join(\"|\")+\")\",\"i\")}function Je(){return this.hours()%12||12}function Ke(e,t){U(e,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)}))}function Ze(e,t){return t._meridiemParse}U(\"H\",[\"HH\",2],0,\"hour\"),U(\"h\",[\"hh\",2],0,Je),U(\"k\",[\"kk\",2],0,(function(){return this.hours()||24})),U(\"hmm\",0,0,(function(){return\"\"+Je.apply(this)+F(this.minutes(),2)})),U(\"hmmss\",0,0,(function(){return\"\"+Je.apply(this)+F(this.minutes(),2)+F(this.seconds(),2)})),U(\"Hmm\",0,0,(function(){return\"\"+this.hours()+F(this.minutes(),2)})),U(\"Hmmss\",0,0,(function(){return\"\"+this.hours()+F(this.minutes(),2)+F(this.seconds(),2)})),Ke(\"a\",!0),Ke(\"A\",!1),P(\"hour\",\"h\"),j(\"hour\",13),de(\"a\",Ze),de(\"A\",Ze),de(\"H\",Q),de(\"h\",Q),de(\"k\",Q),de(\"HH\",Q,G),de(\"hh\",Q,G),de(\"kk\",Q,G),de(\"hmm\",X),de(\"hmmss\",ee),de(\"Hmm\",X),de(\"Hmmss\",ee),pe([\"H\",\"HH\"],3),pe([\"k\",\"kk\"],(function(e,t,n){var i=k(e);t[3]=24===i?0:i})),pe([\"a\",\"A\"],(function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e})),pe([\"h\",\"hh\"],(function(e,t,n){t[3]=k(e),p(n).bigHour=!0})),pe(\"hmm\",(function(e,t,n){var i=e.length-2;t[3]=k(e.substr(0,i)),t[4]=k(e.substr(i)),p(n).bigHour=!0})),pe(\"hmmss\",(function(e,t,n){var i=e.length-4,s=e.length-2;t[3]=k(e.substr(0,i)),t[4]=k(e.substr(i,2)),t[5]=k(e.substr(s)),p(n).bigHour=!0})),pe(\"Hmm\",(function(e,t,n){var i=e.length-2;t[3]=k(e.substr(0,i)),t[4]=k(e.substr(i))})),pe(\"Hmmss\",(function(e,t,n){var i=e.length-4,s=e.length-2;t[3]=k(e.substr(0,i)),t[4]=k(e.substr(i,2)),t[5]=k(e.substr(s))}));var Qe,Xe=we(\"Hours\",!0),et={calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},longDateFormat:{LTS:\"h:mm:ss A\",LT:\"h:mm A\",L:\"MM/DD/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"},invalidDate:\"Invalid date\",ordinal:\"%d\",dayOfMonthOrdinalParse:/\\d{1,2}/,relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},months:xe,monthsShort:Ce,week:{dow:0,doy:6},weekdays:ze,weekdaysMin:We,weekdaysShort:Ve,meridiemParse:/[ap]\\.?m?\\.?/i},tt={},nt={};function it(e){return e?e.toLowerCase().replace(\"_\",\"-\"):e}function st(t){var i=null;if(!tt[t]&&void 0!==e&&e&&e.exports)try{i=Qe._abbr,n(\"RnhZ\")(\"./\"+t),rt(i)}catch(s){}return tt[t]}function rt(e,t){var n;return e&&((n=a(t)?at(e):ot(e,t))?Qe=n:\"undefined\"!=typeof console&&console.warn&&console.warn(\"Locale \"+e+\" not found. Did you forget to load it?\")),Qe._abbr}function ot(e,t){if(null!==t){var n,i=et;if(t.abbr=e,null!=tt[e])D(\"defineLocaleOverride\",\"use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info.\"),i=tt[e]._config;else if(null!=t.parentLocale)if(null!=tt[t.parentLocale])i=tt[t.parentLocale]._config;else{if(null==(n=st(t.parentLocale)))return nt[t.parentLocale]||(nt[t.parentLocale]=[]),nt[t.parentLocale].push({name:e,config:t}),null;i=n._config}return tt[e]=new O(E(i,t)),nt[e]&&nt[e].forEach((function(e){ot(e.name,e.config)})),rt(e),tt[e]}return delete tt[e],null}function at(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return Qe;if(!r(e)){if(t=st(e))return t;e=[e]}return function(e){for(var t,n,i,s,r=0;r0;){if(i=st(s.slice(0,t).join(\"-\")))return i;if(n&&n.length>=t&&S(s,n,!0)>=t-1)break;t--}r++}return Qe}(e)}function lt(e){var t,n=e._a;return n&&-2===p(e).overflow&&(t=n[1]<0||n[1]>11?1:n[2]<1||n[2]>Se(n[0],n[1])?2:n[3]<0||n[3]>24||24===n[3]&&(0!==n[4]||0!==n[5]||0!==n[6])?3:n[4]<0||n[4]>59?4:n[5]<0||n[5]>59?5:n[6]<0||n[6]>999?6:-1,p(e)._overflowDayOfYear&&(t<0||t>2)&&(t=2),p(e)._overflowWeeks&&-1===t&&(t=7),p(e)._overflowWeekday&&-1===t&&(t=8),p(e).overflow=t),e}function ct(e,t,n){return null!=e?e:null!=t?t:n}function dt(e){var t,n,i,r,o,a=[];if(!e._d){for(i=function(e){var t=new Date(s.now());return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}(e),e._w&&null==e._a[2]&&null==e._a[1]&&function(e){var t,n,i,s,r,o,a,l;if(null!=(t=e._w).GG||null!=t.W||null!=t.E)r=1,o=4,n=ct(t.GG,e._a[0],je(St(),1,4).year),i=ct(t.W,1),((s=ct(t.E,1))<1||s>7)&&(l=!0);else{r=e._locale._week.dow,o=e._locale._week.doy;var c=je(St(),r,o);n=ct(t.gg,e._a[0],c.year),i=ct(t.w,c.week),null!=t.d?((s=t.d)<0||s>6)&&(l=!0):null!=t.e?(s=t.e+r,(t.e<0||t.e>6)&&(l=!0)):s=r}i<1||i>Fe(n,r,o)?p(e)._overflowWeeks=!0:null!=l?p(e)._overflowWeekday=!0:(a=He(n,i,s,r,o),e._a[0]=a.year,e._dayOfYear=a.dayOfYear)}(e),null!=e._dayOfYear&&(o=ct(e._a[0],i[0]),(e._dayOfYear>ge(o)||0===e._dayOfYear)&&(p(e)._overflowDayOfYear=!0),n=Ae(o,0,e._dayOfYear),e._a[1]=n.getUTCMonth(),e._a[2]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=a[t]=i[t];for(;t<7;t++)e._a[t]=a[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[3]&&0===e._a[4]&&0===e._a[5]&&0===e._a[6]&&(e._nextDay=!0,e._a[3]=0),e._d=(e._useUTC?Ae:Pe).apply(null,a),r=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[3]=24),e._w&&void 0!==e._w.d&&e._w.d!==r&&(p(e).weekdayMismatch=!0)}}var ut=/^\\s*((?:[+-]\\d{6}|\\d{4})-(?:\\d\\d-\\d\\d|W\\d\\d-\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?::\\d\\d(?::\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,ht=/^\\s*((?:[+-]\\d{6}|\\d{4})(?:\\d\\d\\d\\d|W\\d\\d\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?:\\d\\d(?:\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,mt=/Z|[+-]\\d\\d(?::?\\d\\d)?/,pt=[[\"YYYYYY-MM-DD\",/[+-]\\d{6}-\\d\\d-\\d\\d/],[\"YYYY-MM-DD\",/\\d{4}-\\d\\d-\\d\\d/],[\"GGGG-[W]WW-E\",/\\d{4}-W\\d\\d-\\d/],[\"GGGG-[W]WW\",/\\d{4}-W\\d\\d/,!1],[\"YYYY-DDD\",/\\d{4}-\\d{3}/],[\"YYYY-MM\",/\\d{4}-\\d\\d/,!1],[\"YYYYYYMMDD\",/[+-]\\d{10}/],[\"YYYYMMDD\",/\\d{8}/],[\"GGGG[W]WWE\",/\\d{4}W\\d{3}/],[\"GGGG[W]WW\",/\\d{4}W\\d{2}/,!1],[\"YYYYDDD\",/\\d{7}/]],ft=[[\"HH:mm:ss.SSSS\",/\\d\\d:\\d\\d:\\d\\d\\.\\d+/],[\"HH:mm:ss,SSSS\",/\\d\\d:\\d\\d:\\d\\d,\\d+/],[\"HH:mm:ss\",/\\d\\d:\\d\\d:\\d\\d/],[\"HH:mm\",/\\d\\d:\\d\\d/],[\"HHmmss.SSSS\",/\\d\\d\\d\\d\\d\\d\\.\\d+/],[\"HHmmss,SSSS\",/\\d\\d\\d\\d\\d\\d,\\d+/],[\"HHmmss\",/\\d\\d\\d\\d\\d\\d/],[\"HHmm\",/\\d\\d\\d\\d/],[\"HH\",/\\d\\d/]],_t=/^\\/?Date\\((\\-?\\d+)/i;function gt(e){var t,n,i,s,r,o,a=e._i,l=ut.exec(a)||ht.exec(a);if(l){for(p(e).iso=!0,t=0,n=pt.length;t0&&p(e).unusedInput.push(o),a=a.slice(a.indexOf(n)+n.length),c+=n.length),W[r]?(n?p(e).empty=!1:p(e).unusedTokens.push(r),_e(r,n,e)):e._strict&&!n&&p(e).unusedTokens.push(r);p(e).charsLeftOver=l-c,a.length>0&&p(e).unusedInput.push(a),e._a[3]<=12&&!0===p(e).bigHour&&e._a[3]>0&&(p(e).bigHour=void 0),p(e).parsedDateParts=e._a.slice(0),p(e).meridiem=e._meridiem,e._a[3]=function(e,t,n){var i;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((i=e.isPM(n))&&t<12&&(t+=12),i||12!==t||(t=0),t):t}(e._locale,e._a[3],e._meridiem),dt(e),lt(e)}else vt(e);else gt(e)}function Mt(e){var t=e._i,n=e._f;return e._locale=e._locale||at(e._l),null===t||void 0===n&&\"\"===t?_({nullInput:!0}):(\"string\"==typeof t&&(e._i=t=e._locale.preparse(t)),w(t)?new v(lt(t)):(c(t)?e._d=t:r(n)?function(e){var t,n,i,s,r;if(0===e._f.length)return p(e).invalidFormat=!0,void(e._d=new Date(NaN));for(s=0;sthis?this:e:_()}));function Ct(e,t){var n,i;if(1===t.length&&r(t[0])&&(t=t[0]),!t.length)return St();for(n=t[0],i=1;i=0?new Date(e+400,t,n)-126227808e5:new Date(e,t,n).valueOf()}function Xt(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-126227808e5:Date.UTC(e,t,n)}function en(e,t){U(0,[e,e.length],0,t)}function tn(e,t,n,i,s){var r;return null==e?je(this,i,s).year:(t>(r=Fe(e,i,s))&&(t=r),nn.call(this,e,t,n,i,s))}function nn(e,t,n,i,s){var r=He(e,t,n,i,s),o=Ae(r.year,0,r.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}U(0,[\"gg\",2],0,(function(){return this.weekYear()%100})),U(0,[\"GG\",2],0,(function(){return this.isoWeekYear()%100})),en(\"gggg\",\"weekYear\"),en(\"ggggg\",\"weekYear\"),en(\"GGGG\",\"isoWeekYear\"),en(\"GGGGG\",\"isoWeekYear\"),P(\"weekYear\",\"gg\"),P(\"isoWeekYear\",\"GG\"),j(\"weekYear\",1),j(\"isoWeekYear\",1),de(\"G\",re),de(\"g\",re),de(\"GG\",Q,G),de(\"gg\",Q,G),de(\"GGGG\",ne,K),de(\"gggg\",ne,K),de(\"GGGGG\",ie,Z),de(\"ggggg\",ie,Z),fe([\"gggg\",\"ggggg\",\"GGGG\",\"GGGGG\"],(function(e,t,n,i){t[i.substr(0,2)]=k(e)})),fe([\"gg\",\"GG\"],(function(e,t,n,i){t[i]=s.parseTwoDigitYear(e)})),U(\"Q\",0,\"Qo\",\"quarter\"),P(\"quarter\",\"Q\"),j(\"quarter\",7),de(\"Q\",q),pe(\"Q\",(function(e,t){t[1]=3*(k(e)-1)})),U(\"D\",[\"DD\",2],\"Do\",\"date\"),P(\"date\",\"D\"),j(\"date\",9),de(\"D\",Q),de(\"DD\",Q,G),de(\"Do\",(function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient})),pe([\"D\",\"DD\"],2),pe(\"Do\",(function(e,t){t[2]=k(e.match(Q)[0])}));var sn=we(\"Date\",!0);U(\"DDD\",[\"DDDD\",3],\"DDDo\",\"dayOfYear\"),P(\"dayOfYear\",\"DDD\"),j(\"dayOfYear\",4),de(\"DDD\",te),de(\"DDDD\",J),pe([\"DDD\",\"DDDD\"],(function(e,t,n){n._dayOfYear=k(e)})),U(\"m\",[\"mm\",2],0,\"minute\"),P(\"minute\",\"m\"),j(\"minute\",14),de(\"m\",Q),de(\"mm\",Q,G),pe([\"m\",\"mm\"],4);var rn=we(\"Minutes\",!1);U(\"s\",[\"ss\",2],0,\"second\"),P(\"second\",\"s\"),j(\"second\",15),de(\"s\",Q),de(\"ss\",Q,G),pe([\"s\",\"ss\"],5);var on,an=we(\"Seconds\",!1);for(U(\"S\",0,0,(function(){return~~(this.millisecond()/100)})),U(0,[\"SS\",2],0,(function(){return~~(this.millisecond()/10)})),U(0,[\"SSS\",3],0,\"millisecond\"),U(0,[\"SSSS\",4],0,(function(){return 10*this.millisecond()})),U(0,[\"SSSSS\",5],0,(function(){return 100*this.millisecond()})),U(0,[\"SSSSSS\",6],0,(function(){return 1e3*this.millisecond()})),U(0,[\"SSSSSSS\",7],0,(function(){return 1e4*this.millisecond()})),U(0,[\"SSSSSSSS\",8],0,(function(){return 1e5*this.millisecond()})),U(0,[\"SSSSSSSSS\",9],0,(function(){return 1e6*this.millisecond()})),P(\"millisecond\",\"ms\"),j(\"millisecond\",16),de(\"S\",te,q),de(\"SS\",te,G),de(\"SSS\",te,J),on=\"SSSS\";on.length<=9;on+=\"S\")de(on,se);function ln(e,t){t[6]=k(1e3*(\"0.\"+e))}for(on=\"S\";on.length<=9;on+=\"S\")pe(on,ln);var cn=we(\"Milliseconds\",!1);U(\"z\",0,0,\"zoneAbbr\"),U(\"zz\",0,0,\"zoneName\");var dn=v.prototype;function un(e){return e}dn.add=$t,dn.calendar=function(e,t){var n=e||St(),i=At(n,this).startOf(\"day\"),r=s.calendarFormat(this,i)||\"sameElse\",o=t&&(Y(t[r])?t[r].call(this,n):t[r]);return this.format(o||this.localeData().calendar(r,this,St(n)))},dn.clone=function(){return new v(this)},dn.diff=function(e,t,n){var i,s,r;if(!this.isValid())return NaN;if(!(i=At(e,this)).isValid())return NaN;switch(s=6e4*(i.utcOffset()-this.utcOffset()),t=A(t)){case\"year\":r=qt(this,i)/12;break;case\"month\":r=qt(this,i);break;case\"quarter\":r=qt(this,i)/3;break;case\"second\":r=(this-i)/1e3;break;case\"minute\":r=(this-i)/6e4;break;case\"hour\":r=(this-i)/36e5;break;case\"day\":r=(this-i-s)/864e5;break;case\"week\":r=(this-i-s)/6048e5;break;default:r=this-i}return n?r:M(r)},dn.endOf=function(e){var t;if(void 0===(e=A(e))||\"millisecond\"===e||!this.isValid())return this;var n=this._isUTC?Xt:Qt;switch(e){case\"year\":t=n(this.year()+1,0,1)-1;break;case\"quarter\":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case\"month\":t=n(this.year(),this.month()+1,1)-1;break;case\"week\":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case\"isoWeek\":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case\"day\":case\"date\":t=n(this.year(),this.month(),this.date()+1)-1;break;case\"hour\":t=this._d.valueOf(),t+=36e5-Zt(t+(this._isUTC?0:6e4*this.utcOffset()),36e5)-1;break;case\"minute\":t=this._d.valueOf(),t+=6e4-Zt(t,6e4)-1;break;case\"second\":t=this._d.valueOf(),t+=1e3-Zt(t,1e3)-1}return this._d.setTime(t),s.updateOffset(this,!0),this},dn.format=function(e){e||(e=this.isUtc()?s.defaultFormatUtc:s.defaultFormat);var t=$(this,e);return this.localeData().postformat(t)},dn.from=function(e,t){return this.isValid()&&(w(e)&&e.isValid()||St(e).isValid())?Nt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},dn.fromNow=function(e){return this.from(St(),e)},dn.to=function(e,t){return this.isValid()&&(w(e)&&e.isValid()||St(e).isValid())?Nt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},dn.toNow=function(e){return this.to(St(),e)},dn.get=function(e){return Y(this[e=A(e)])?this[e]():this},dn.invalidAt=function(){return p(this).overflow},dn.isAfter=function(e,t){var n=w(e)?e:St(e);return!(!this.isValid()||!n.isValid())&&(\"millisecond\"===(t=A(t)||\"millisecond\")?this.valueOf()>n.valueOf():n.valueOf()9999?$(n,t?\"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ\"):Y(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace(\"Z\",$(n,\"Z\")):$(n,t?\"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYY-MM-DD[T]HH:mm:ss.SSSZ\")},dn.inspect=function(){if(!this.isValid())return\"moment.invalid(/* \"+this._i+\" */)\";var e=\"moment\",t=\"\";this.isLocal()||(e=0===this.utcOffset()?\"moment.utc\":\"moment.parseZone\",t=\"Z\");var n=\"[\"+e+'(\"]',i=0<=this.year()&&this.year()<=9999?\"YYYY\":\"YYYYYY\";return this.format(n+i+\"-MM-DD[T]HH:mm:ss.SSS\"+t+'[\")]')},dn.toJSON=function(){return this.isValid()?this.toISOString():null},dn.toString=function(){return this.clone().locale(\"en\").format(\"ddd MMM DD YYYY HH:mm:ss [GMT]ZZ\")},dn.unix=function(){return Math.floor(this.valueOf()/1e3)},dn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},dn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},dn.year=ve,dn.isLeapYear=function(){return ye(this.year())},dn.weekYear=function(e){return tn.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},dn.isoWeekYear=function(e){return tn.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)},dn.quarter=dn.quarters=function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},dn.month=Ye,dn.daysInMonth=function(){return Se(this.year(),this.month())},dn.week=dn.weeks=function(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),\"d\")},dn.isoWeek=dn.isoWeeks=function(e){var t=je(this,1,4).week;return null==e?t:this.add(7*(e-t),\"d\")},dn.weeksInYear=function(){var e=this.localeData()._week;return Fe(this.year(),e.dow,e.doy)},dn.isoWeeksInYear=function(){return Fe(this.year(),1,4)},dn.date=sn,dn.day=dn.days=function(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=function(e,t){return\"string\"!=typeof e?e:isNaN(e)?\"number\"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}(e,this.localeData()),this.add(e-t,\"d\")):t},dn.weekday=function(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,\"d\")},dn.isoWeekday=function(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=function(e,t){return\"string\"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7},dn.dayOfYear=function(e){var t=Math.round((this.clone().startOf(\"day\")-this.clone().startOf(\"year\"))/864e5)+1;return null==e?t:this.add(e-t,\"d\")},dn.hour=dn.hours=Xe,dn.minute=dn.minutes=rn,dn.second=dn.seconds=an,dn.millisecond=dn.milliseconds=cn,dn.utcOffset=function(e,t,n){var i,r=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null!=e){if(\"string\"==typeof e){if(null===(e=Pt(ae,e)))return this}else Math.abs(e)<16&&!n&&(e*=60);return!this._isUTC&&t&&(i=Rt(this)),this._offset=e,this._isUTC=!0,null!=i&&this.add(i,\"m\"),r!==e&&(!t||this._changeInProgress?Ut(this,Nt(e-r,\"m\"),1,!1):this._changeInProgress||(this._changeInProgress=!0,s.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?r:Rt(this)},dn.utc=function(e){return this.utcOffset(0,e)},dn.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(Rt(this),\"m\")),this},dn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if(\"string\"==typeof this._i){var e=Pt(oe,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this},dn.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?St(e).utcOffset():0,(this.utcOffset()-e)%60==0)},dn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},dn.isLocal=function(){return!!this.isValid()&&!this._isUTC},dn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},dn.isUtc=Ht,dn.isUTC=Ht,dn.zoneAbbr=function(){return this._isUTC?\"UTC\":\"\"},dn.zoneName=function(){return this._isUTC?\"Coordinated Universal Time\":\"\"},dn.dates=x(\"dates accessor is deprecated. Use date instead.\",sn),dn.months=x(\"months accessor is deprecated. Use month instead\",Ye),dn.years=x(\"years accessor is deprecated. Use year instead\",ve),dn.zone=x(\"moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/\",(function(e,t){return null!=e?(\"string\"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()})),dn.isDSTShifted=x(\"isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information\",(function(){if(!a(this._isDSTShifted))return this._isDSTShifted;var e={};if(y(e,this),(e=Mt(e))._a){var t=e._isUTC?m(e._a):St(e._a);this._isDSTShifted=this.isValid()&&S(e._a,t.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}));var hn=O.prototype;function mn(e,t,n,i){var s=at(),r=m().set(i,t);return s[n](r,e)}function pn(e,t,n){if(l(e)&&(t=e,e=void 0),e=e||\"\",null!=t)return mn(e,t,n,\"month\");var i,s=[];for(i=0;i<12;i++)s[i]=mn(e,i,n,\"month\");return s}function fn(e,t,n,i){\"boolean\"==typeof e?(l(t)&&(n=t,t=void 0),t=t||\"\"):(n=t=e,e=!1,l(t)&&(n=t,t=void 0),t=t||\"\");var s,r=at(),o=e?r._week.dow:0;if(null!=n)return mn(t,(n+o)%7,i,\"day\");var a=[];for(s=0;s<7;s++)a[s]=mn(t,(s+o)%7,i,\"day\");return a}hn.calendar=function(e,t,n){var i=this._calendar[e]||this._calendar.sameElse;return Y(i)?i.call(t,n):i},hn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.replace(/MMMM|MM|DD|dddd/g,(function(e){return e.slice(1)})),this._longDateFormat[e])},hn.invalidDate=function(){return this._invalidDate},hn.ordinal=function(e){return this._ordinal.replace(\"%d\",e)},hn.preparse=un,hn.postformat=un,hn.relativeTime=function(e,t,n,i){var s=this._relativeTime[n];return Y(s)?s(e,t,n,i):s.replace(/%d/i,e)},hn.pastFuture=function(e,t){var n=this._relativeTime[e>0?\"future\":\"past\"];return Y(n)?n(t):n.replace(/%s/i,t)},hn.set=function(e){var t,n;for(n in e)Y(t=e[n])?this[n]=t:this[\"_\"+n]=t;this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+\"|\"+/\\d{1,2}/.source)},hn.months=function(e,t){return e?r(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||Le).test(t)?\"format\":\"standalone\"][e.month()]:r(this._months)?this._months:this._months.standalone},hn.monthsShort=function(e,t){return e?r(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[Le.test(t)?\"format\":\"standalone\"][e.month()]:r(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},hn.monthsParse=function(e,t,n){var i,s,r;if(this._monthsParseExact)return Te.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),i=0;i<12;i++){if(s=m([2e3,i]),n&&!this._longMonthsParse[i]&&(this._longMonthsParse[i]=new RegExp(\"^\"+this.months(s,\"\").replace(\".\",\"\")+\"$\",\"i\"),this._shortMonthsParse[i]=new RegExp(\"^\"+this.monthsShort(s,\"\").replace(\".\",\"\")+\"$\",\"i\")),n||this._monthsParse[i]||(r=\"^\"+this.months(s,\"\")+\"|^\"+this.monthsShort(s,\"\"),this._monthsParse[i]=new RegExp(r.replace(\".\",\"\"),\"i\")),n&&\"MMMM\"===t&&this._longMonthsParse[i].test(e))return i;if(n&&\"MMM\"===t&&this._shortMonthsParse[i].test(e))return i;if(!n&&this._monthsParse[i].test(e))return i}},hn.monthsRegex=function(e){return this._monthsParseExact?(u(this,\"_monthsRegex\")||Ie.call(this),e?this._monthsStrictRegex:this._monthsRegex):(u(this,\"_monthsRegex\")||(this._monthsRegex=Oe),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},hn.monthsShortRegex=function(e){return this._monthsParseExact?(u(this,\"_monthsRegex\")||Ie.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(u(this,\"_monthsShortRegex\")||(this._monthsShortRegex=Ee),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},hn.week=function(e){return je(e,this._week.dow,this._week.doy).week},hn.firstDayOfYear=function(){return this._week.doy},hn.firstDayOfWeek=function(){return this._week.dow},hn.weekdays=function(e,t){var n=r(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?\"format\":\"standalone\"];return!0===e?Ne(n,this._week.dow):e?n[e.day()]:n},hn.weekdaysMin=function(e){return!0===e?Ne(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin},hn.weekdaysShort=function(e){return!0===e?Ne(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort},hn.weekdaysParse=function(e,t,n){var i,s,r;if(this._weekdaysParseExact)return Ue.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),i=0;i<7;i++){if(s=m([2e3,1]).day(i),n&&!this._fullWeekdaysParse[i]&&(this._fullWeekdaysParse[i]=new RegExp(\"^\"+this.weekdays(s,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._shortWeekdaysParse[i]=new RegExp(\"^\"+this.weekdaysShort(s,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._minWeekdaysParse[i]=new RegExp(\"^\"+this.weekdaysMin(s,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\")),this._weekdaysParse[i]||(r=\"^\"+this.weekdays(s,\"\")+\"|^\"+this.weekdaysShort(s,\"\")+\"|^\"+this.weekdaysMin(s,\"\"),this._weekdaysParse[i]=new RegExp(r.replace(\".\",\"\"),\"i\")),n&&\"dddd\"===t&&this._fullWeekdaysParse[i].test(e))return i;if(n&&\"ddd\"===t&&this._shortWeekdaysParse[i].test(e))return i;if(n&&\"dd\"===t&&this._minWeekdaysParse[i].test(e))return i;if(!n&&this._weekdaysParse[i].test(e))return i}},hn.weekdaysRegex=function(e){return this._weekdaysParseExact?(u(this,\"_weekdaysRegex\")||Ge.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(u(this,\"_weekdaysRegex\")||(this._weekdaysRegex=$e),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},hn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(u(this,\"_weekdaysRegex\")||Ge.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(u(this,\"_weekdaysShortRegex\")||(this._weekdaysShortRegex=Be),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},hn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(u(this,\"_weekdaysRegex\")||Ge.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(u(this,\"_weekdaysMinRegex\")||(this._weekdaysMinRegex=qe),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},hn.isPM=function(e){return\"p\"===(e+\"\").toLowerCase().charAt(0)},hn.meridiem=function(e,t,n){return e>11?n?\"pm\":\"PM\":n?\"am\":\"AM\"},rt(\"en\",{dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===k(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}}),s.lang=x(\"moment.lang is deprecated. Use moment.locale instead.\",rt),s.langData=x(\"moment.langData is deprecated. Use moment.localeData instead.\",at);var _n=Math.abs;function gn(e,t,n,i){var s=Nt(t,n);return e._milliseconds+=i*s._milliseconds,e._days+=i*s._days,e._months+=i*s._months,e._bubble()}function yn(e){return e<0?Math.floor(e):Math.ceil(e)}function bn(e){return 4800*e/146097}function vn(e){return 146097*e/4800}function wn(e){return function(){return this.as(e)}}var Mn=wn(\"ms\"),kn=wn(\"s\"),Sn=wn(\"m\"),Ln=wn(\"h\"),xn=wn(\"d\"),Cn=wn(\"w\"),Tn=wn(\"M\"),Dn=wn(\"Q\"),Yn=wn(\"y\");function En(e){return function(){return this.isValid()?this._data[e]:NaN}}var On=En(\"milliseconds\"),In=En(\"seconds\"),Pn=En(\"minutes\"),An=En(\"hours\"),Rn=En(\"days\"),Hn=En(\"months\"),jn=En(\"years\"),Fn=Math.round,Nn={ss:44,s:45,m:45,h:22,d:26,M:11};function zn(e,t,n,i,s){return s.relativeTime(t||1,!!n,e,i)}var Vn=Math.abs;function Wn(e){return(e>0)-(e<0)||+e}function Un(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n=Vn(this._milliseconds)/1e3,i=Vn(this._days),s=Vn(this._months);e=M(n/60),t=M(e/60),n%=60,e%=60;var r=M(s/12),o=s%=12,a=i,l=t,c=e,d=n?n.toFixed(3).replace(/\\.?0+$/,\"\"):\"\",u=this.asSeconds();if(!u)return\"P0D\";var h=u<0?\"-\":\"\",m=Wn(this._months)!==Wn(u)?\"-\":\"\",p=Wn(this._days)!==Wn(u)?\"-\":\"\",f=Wn(this._milliseconds)!==Wn(u)?\"-\":\"\";return h+\"P\"+(r?m+r+\"Y\":\"\")+(o?m+o+\"M\":\"\")+(a?p+a+\"D\":\"\")+(l||c||d?\"T\":\"\")+(l?f+l+\"H\":\"\")+(c?f+c+\"M\":\"\")+(d?f+d+\"S\":\"\")}var $n=Dt.prototype;return $n.isValid=function(){return this._isValid},$n.abs=function(){var e=this._data;return this._milliseconds=_n(this._milliseconds),this._days=_n(this._days),this._months=_n(this._months),e.milliseconds=_n(e.milliseconds),e.seconds=_n(e.seconds),e.minutes=_n(e.minutes),e.hours=_n(e.hours),e.months=_n(e.months),e.years=_n(e.years),this},$n.add=function(e,t){return gn(this,e,t,1)},$n.subtract=function(e,t){return gn(this,e,t,-1)},$n.as=function(e){if(!this.isValid())return NaN;var t,n,i=this._milliseconds;if(\"month\"===(e=A(e))||\"quarter\"===e||\"year\"===e)switch(n=this._months+bn(t=this._days+i/864e5),e){case\"month\":return n;case\"quarter\":return n/3;case\"year\":return n/12}else switch(t=this._days+Math.round(vn(this._months)),e){case\"week\":return t/7+i/6048e5;case\"day\":return t+i/864e5;case\"hour\":return 24*t+i/36e5;case\"minute\":return 1440*t+i/6e4;case\"second\":return 86400*t+i/1e3;case\"millisecond\":return Math.floor(864e5*t)+i;default:throw new Error(\"Unknown unit \"+e)}},$n.asMilliseconds=Mn,$n.asSeconds=kn,$n.asMinutes=Sn,$n.asHours=Ln,$n.asDays=xn,$n.asWeeks=Cn,$n.asMonths=Tn,$n.asQuarters=Dn,$n.asYears=Yn,$n.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*k(this._months/12):NaN},$n._bubble=function(){var e,t,n,i,s,r=this._milliseconds,o=this._days,a=this._months,l=this._data;return r>=0&&o>=0&&a>=0||r<=0&&o<=0&&a<=0||(r+=864e5*yn(vn(a)+o),o=0,a=0),l.milliseconds=r%1e3,e=M(r/1e3),l.seconds=e%60,t=M(e/60),l.minutes=t%60,n=M(t/60),l.hours=n%24,o+=M(n/24),a+=s=M(bn(o)),o-=yn(vn(s)),i=M(a/12),a%=12,l.days=o,l.months=a,l.years=i,this},$n.clone=function(){return Nt(this)},$n.get=function(e){return e=A(e),this.isValid()?this[e+\"s\"]():NaN},$n.milliseconds=On,$n.seconds=In,$n.minutes=Pn,$n.hours=An,$n.days=Rn,$n.weeks=function(){return M(this.days()/7)},$n.months=Hn,$n.years=jn,$n.humanize=function(e){if(!this.isValid())return this.localeData().invalidDate();var t=this.localeData(),n=function(e,t,n){var i=Nt(e).abs(),s=Fn(i.as(\"s\")),r=Fn(i.as(\"m\")),o=Fn(i.as(\"h\")),a=Fn(i.as(\"d\")),l=Fn(i.as(\"M\")),c=Fn(i.as(\"y\")),d=s<=Nn.ss&&[\"s\",s]||s0,d[4]=n,zn.apply(null,d)}(this,!e,t);return e&&(n=t.pastFuture(+this,n)),t.postformat(n)},$n.toISOString=Un,$n.toString=Un,$n.toJSON=Un,$n.locale=Gt,$n.localeData=Kt,$n.toIsoString=x(\"toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)\",Un),$n.lang=Jt,U(\"X\",0,0,\"unix\"),U(\"x\",0,0,\"valueOf\"),de(\"x\",re),de(\"X\",/[+-]?\\d+(\\.\\d{1,3})?/),pe(\"X\",(function(e,t,n){n._d=new Date(1e3*parseFloat(e,10))})),pe(\"x\",(function(e,t,n){n._d=new Date(k(e))})),s.version=\"2.24.0\",t=St,s.fn=dn,s.min=function(){var e=[].slice.call(arguments,0);return Ct(\"isBefore\",e)},s.max=function(){var e=[].slice.call(arguments,0);return Ct(\"isAfter\",e)},s.now=function(){return Date.now?Date.now():+new Date},s.utc=m,s.unix=function(e){return St(1e3*e)},s.months=function(e,t){return pn(e,t,\"months\")},s.isDate=c,s.locale=rt,s.invalid=_,s.duration=Nt,s.isMoment=w,s.weekdays=function(e,t,n){return fn(e,t,n,\"weekdays\")},s.parseZone=function(){return St.apply(null,arguments).parseZone()},s.localeData=at,s.isDuration=Yt,s.monthsShort=function(e,t){return pn(e,t,\"monthsShort\")},s.weekdaysMin=function(e,t,n){return fn(e,t,n,\"weekdaysMin\")},s.defineLocale=ot,s.updateLocale=function(e,t){if(null!=t){var n,i,s=et;null!=(i=st(e))&&(s=i._config),(n=new O(t=E(s,t))).parentLocale=tt[e],tt[e]=n,rt(e)}else null!=tt[e]&&(null!=tt[e].parentLocale?tt[e]=tt[e].parentLocale:null!=tt[e]&&delete tt[e]);return tt[e]},s.locales=function(){return C(tt)},s.weekdaysShort=function(e,t,n){return fn(e,t,n,\"weekdaysShort\")},s.normalizeUnits=A,s.relativeTimeRounding=function(e){return void 0===e?Fn:\"function\"==typeof e&&(Fn=e,!0)},s.relativeTimeThreshold=function(e,t){return void 0!==Nn[e]&&(void 0===t?Nn[e]:(Nn[e]=t,\"s\"===e&&(Nn.ss=t-1),!0))},s.calendarFormat=function(e,t){var n=e.diff(t,\"days\",!0);return n<-6?\"sameElse\":n<-1?\"lastWeek\":n<0?\"lastDay\":n<1?\"sameDay\":n<2?\"nextDay\":n<7?\"nextWeek\":\"sameElse\"},s.prototype=dn,s.HTML5_FMT={DATETIME_LOCAL:\"YYYY-MM-DDTHH:mm\",DATETIME_LOCAL_SECONDS:\"YYYY-MM-DDTHH:mm:ss\",DATETIME_LOCAL_MS:\"YYYY-MM-DDTHH:mm:ss.SSS\",DATE:\"YYYY-MM-DD\",TIME:\"HH:mm\",TIME_SECONDS:\"HH:mm:ss\",TIME_MS:\"HH:mm:ss.SSS\",WEEK:\"GGGG-[W]WW\",MONTH:\"YYYY-MM\"},s}()}).call(this,n(\"YuTi\")(e))},x6pH:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"he\",{months:\"\\u05d9\\u05e0\\u05d5\\u05d0\\u05e8_\\u05e4\\u05d1\\u05e8\\u05d5\\u05d0\\u05e8_\\u05de\\u05e8\\u05e5_\\u05d0\\u05e4\\u05e8\\u05d9\\u05dc_\\u05de\\u05d0\\u05d9_\\u05d9\\u05d5\\u05e0\\u05d9_\\u05d9\\u05d5\\u05dc\\u05d9_\\u05d0\\u05d5\\u05d2\\u05d5\\u05e1\\u05d8_\\u05e1\\u05e4\\u05d8\\u05de\\u05d1\\u05e8_\\u05d0\\u05d5\\u05e7\\u05d8\\u05d5\\u05d1\\u05e8_\\u05e0\\u05d5\\u05d1\\u05de\\u05d1\\u05e8_\\u05d3\\u05e6\\u05de\\u05d1\\u05e8\".split(\"_\"),monthsShort:\"\\u05d9\\u05e0\\u05d5\\u05f3_\\u05e4\\u05d1\\u05e8\\u05f3_\\u05de\\u05e8\\u05e5_\\u05d0\\u05e4\\u05e8\\u05f3_\\u05de\\u05d0\\u05d9_\\u05d9\\u05d5\\u05e0\\u05d9_\\u05d9\\u05d5\\u05dc\\u05d9_\\u05d0\\u05d5\\u05d2\\u05f3_\\u05e1\\u05e4\\u05d8\\u05f3_\\u05d0\\u05d5\\u05e7\\u05f3_\\u05e0\\u05d5\\u05d1\\u05f3_\\u05d3\\u05e6\\u05de\\u05f3\".split(\"_\"),weekdays:\"\\u05e8\\u05d0\\u05e9\\u05d5\\u05df_\\u05e9\\u05e0\\u05d9_\\u05e9\\u05dc\\u05d9\\u05e9\\u05d9_\\u05e8\\u05d1\\u05d9\\u05e2\\u05d9_\\u05d7\\u05de\\u05d9\\u05e9\\u05d9_\\u05e9\\u05d9\\u05e9\\u05d9_\\u05e9\\u05d1\\u05ea\".split(\"_\"),weekdaysShort:\"\\u05d0\\u05f3_\\u05d1\\u05f3_\\u05d2\\u05f3_\\u05d3\\u05f3_\\u05d4\\u05f3_\\u05d5\\u05f3_\\u05e9\\u05f3\".split(\"_\"),weekdaysMin:\"\\u05d0_\\u05d1_\\u05d2_\\u05d3_\\u05d4_\\u05d5_\\u05e9\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [\\u05d1]MMMM YYYY\",LLL:\"D [\\u05d1]MMMM YYYY HH:mm\",LLLL:\"dddd, D [\\u05d1]MMMM YYYY HH:mm\",l:\"D/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u05d4\\u05d9\\u05d5\\u05dd \\u05d1\\u05be]LT\",nextDay:\"[\\u05de\\u05d7\\u05e8 \\u05d1\\u05be]LT\",nextWeek:\"dddd [\\u05d1\\u05e9\\u05e2\\u05d4] LT\",lastDay:\"[\\u05d0\\u05ea\\u05de\\u05d5\\u05dc \\u05d1\\u05be]LT\",lastWeek:\"[\\u05d1\\u05d9\\u05d5\\u05dd] dddd [\\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05df \\u05d1\\u05e9\\u05e2\\u05d4] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u05d1\\u05e2\\u05d5\\u05d3 %s\",past:\"\\u05dc\\u05e4\\u05e0\\u05d9 %s\",s:\"\\u05de\\u05e1\\u05e4\\u05e8 \\u05e9\\u05e0\\u05d9\\u05d5\\u05ea\",ss:\"%d \\u05e9\\u05e0\\u05d9\\u05d5\\u05ea\",m:\"\\u05d3\\u05e7\\u05d4\",mm:\"%d \\u05d3\\u05e7\\u05d5\\u05ea\",h:\"\\u05e9\\u05e2\\u05d4\",hh:function(e){return 2===e?\"\\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd\":e+\" \\u05e9\\u05e2\\u05d5\\u05ea\"},d:\"\\u05d9\\u05d5\\u05dd\",dd:function(e){return 2===e?\"\\u05d9\\u05d5\\u05de\\u05d9\\u05d9\\u05dd\":e+\" \\u05d9\\u05de\\u05d9\\u05dd\"},M:\"\\u05d7\\u05d5\\u05d3\\u05e9\",MM:function(e){return 2===e?\"\\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05d9\\u05dd\":e+\" \\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05dd\"},y:\"\\u05e9\\u05e0\\u05d4\",yy:function(e){return 2===e?\"\\u05e9\\u05e0\\u05ea\\u05d9\\u05d9\\u05dd\":e%10==0&&10!==e?e+\" \\u05e9\\u05e0\\u05d4\":e+\" \\u05e9\\u05e0\\u05d9\\u05dd\"}},meridiemParse:/\\u05d0\\u05d7\\u05d4\"\\u05e6|\\u05dc\\u05e4\\u05e0\\u05d4\"\\u05e6|\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05dc\\u05e4\\u05e0\\u05d5\\u05ea \\u05d1\\u05d5\\u05e7\\u05e8|\\u05d1\\u05d1\\u05d5\\u05e7\\u05e8|\\u05d1\\u05e2\\u05e8\\u05d1/i,isPM:function(e){return/^(\\u05d0\\u05d7\\u05d4\"\\u05e6|\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05d1\\u05e2\\u05e8\\u05d1)$/.test(e)},meridiem:function(e,t,n){return e<5?\"\\u05dc\\u05e4\\u05e0\\u05d5\\u05ea \\u05d1\\u05d5\\u05e7\\u05e8\":e<10?\"\\u05d1\\u05d1\\u05d5\\u05e7\\u05e8\":e<12?n?'\\u05dc\\u05e4\\u05e0\\u05d4\"\\u05e6':\"\\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd\":e<18?n?'\\u05d0\\u05d7\\u05d4\"\\u05e6':\"\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd\":\"\\u05d1\\u05e2\\u05e8\\u05d1\"}})}(n(\"wd/R\"))},yPMs:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sq\",{months:\"Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_N\\xebntor_Dhjetor\".split(\"_\"),monthsShort:\"Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_N\\xebn_Dhj\".split(\"_\"),weekdays:\"E Diel_E H\\xebn\\xeb_E Mart\\xeb_E M\\xebrkur\\xeb_E Enjte_E Premte_E Shtun\\xeb\".split(\"_\"),weekdaysShort:\"Die_H\\xebn_Mar_M\\xebr_Enj_Pre_Sht\".split(\"_\"),weekdaysMin:\"D_H_Ma_M\\xeb_E_P_Sh\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/PD|MD/,isPM:function(e){return\"M\"===e.charAt(0)},meridiem:function(e,t,n){return e<12?\"PD\":\"MD\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Sot n\\xeb] LT\",nextDay:\"[Nes\\xebr n\\xeb] LT\",nextWeek:\"dddd [n\\xeb] LT\",lastDay:\"[Dje n\\xeb] LT\",lastWeek:\"dddd [e kaluar n\\xeb] LT\",sameElse:\"L\"},relativeTime:{future:\"n\\xeb %s\",past:\"%s m\\xeb par\\xeb\",s:\"disa sekonda\",ss:\"%d sekonda\",m:\"nj\\xeb minut\\xeb\",mm:\"%d minuta\",h:\"nj\\xeb or\\xeb\",hh:\"%d or\\xeb\",d:\"nj\\xeb dit\\xeb\",dd:\"%d dit\\xeb\",M:\"nj\\xeb muaj\",MM:\"%d muaj\",y:\"nj\\xeb vit\",yy:\"%d vite\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},z1FC:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,i){var s={s:[\"viensas secunds\",\"'iensas secunds\"],ss:[e+\" secunds\",e+\" secunds\"],m:[\"'n m\\xedut\",\"'iens m\\xedut\"],mm:[e+\" m\\xeduts\",e+\" m\\xeduts\"],h:[\"'n \\xfeora\",\"'iensa \\xfeora\"],hh:[e+\" \\xfeoras\",e+\" \\xfeoras\"],d:[\"'n ziua\",\"'iensa ziua\"],dd:[e+\" ziuas\",e+\" ziuas\"],M:[\"'n mes\",\"'iens mes\"],MM:[e+\" mesen\",e+\" mesen\"],y:[\"'n ar\",\"'iens ar\"],yy:[e+\" ars\",e+\" ars\"]};return i||t?s[n][0]:s[n][1]}e.defineLocale(\"tzl\",{months:\"Januar_Fevraglh_Mar\\xe7_Avr\\xefu_Mai_G\\xfcn_Julia_Guscht_Setemvar_Listop\\xe4ts_Noemvar_Zecemvar\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Avr_Mai_G\\xfcn_Jul_Gus_Set_Lis_Noe_Zec\".split(\"_\"),weekdays:\"S\\xfaladi_L\\xfane\\xe7i_Maitzi_M\\xe1rcuri_Xh\\xfaadi_Vi\\xe9ner\\xe7i_S\\xe1turi\".split(\"_\"),weekdaysShort:\"S\\xfal_L\\xfan_Mai_M\\xe1r_Xh\\xfa_Vi\\xe9_S\\xe1t\".split(\"_\"),weekdaysMin:\"S\\xfa_L\\xfa_Ma_M\\xe1_Xh_Vi_S\\xe1\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM [dallas] YYYY\",LLL:\"D. MMMM [dallas] YYYY HH.mm\",LLLL:\"dddd, [li] D. MMMM [dallas] YYYY HH.mm\"},meridiemParse:/d\\'o|d\\'a/i,isPM:function(e){return\"d'o\"===e.toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"d'o\":\"D'O\":n?\"d'a\":\"D'A\"},calendar:{sameDay:\"[oxhi \\xe0] LT\",nextDay:\"[dem\\xe0 \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[ieiri \\xe0] LT\",lastWeek:\"[s\\xfcr el] dddd [lasteu \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"osprei %s\",past:\"ja%s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},z3Vd:function(e,t,n){!function(e){\"use strict\";var t=\"pagh_wa\\u2019_cha\\u2019_wej_loS_vagh_jav_Soch_chorgh_Hut\".split(\"_\");function n(e,n,i,s){var r=function(e){var n=Math.floor(e%1e3/100),i=Math.floor(e%100/10),s=e%10,r=\"\";return n>0&&(r+=t[n]+\"vatlh\"),i>0&&(r+=(\"\"!==r?\" \":\"\")+t[i]+\"maH\"),s>0&&(r+=(\"\"!==r?\" \":\"\")+t[s]),\"\"===r?\"pagh\":r}(e);switch(i){case\"ss\":return r+\" lup\";case\"mm\":return r+\" tup\";case\"hh\":return r+\" rep\";case\"dd\":return r+\" jaj\";case\"MM\":return r+\" jar\";case\"yy\":return r+\" DIS\"}}e.defineLocale(\"tlh\",{months:\"tera\\u2019 jar wa\\u2019_tera\\u2019 jar cha\\u2019_tera\\u2019 jar wej_tera\\u2019 jar loS_tera\\u2019 jar vagh_tera\\u2019 jar jav_tera\\u2019 jar Soch_tera\\u2019 jar chorgh_tera\\u2019 jar Hut_tera\\u2019 jar wa\\u2019maH_tera\\u2019 jar wa\\u2019maH wa\\u2019_tera\\u2019 jar wa\\u2019maH cha\\u2019\".split(\"_\"),monthsShort:\"jar wa\\u2019_jar cha\\u2019_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa\\u2019maH_jar wa\\u2019maH wa\\u2019_jar wa\\u2019maH cha\\u2019\".split(\"_\"),monthsParseExact:!0,weekdays:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysShort:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysMin:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[DaHjaj] LT\",nextDay:\"[wa\\u2019leS] LT\",nextWeek:\"LLL\",lastDay:\"[wa\\u2019Hu\\u2019] LT\",lastWeek:\"LLL\",sameElse:\"L\"},relativeTime:{future:function(e){var t=e;return-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"leS\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"waQ\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"nem\":t+\" pIq\"},past:function(e){var t=e;return-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"Hu\\u2019\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"wen\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"ben\":t+\" ret\"},s:\"puS lup\",ss:n,m:\"wa\\u2019 tup\",mm:n,h:\"wa\\u2019 rep\",hh:n,d:\"wa\\u2019 jaj\",dd:n,M:\"wa\\u2019 jar\",MM:n,y:\"wa\\u2019 DIS\",yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},zUnb:function(e,t,n){\"use strict\";function i(e){return\"function\"==typeof e}n.r(t);let s=!1;const r={Promise:void 0,set useDeprecatedSynchronousErrorHandling(e){if(e){const e=new Error;console.warn(\"DEPRECATED! RxJS was set to use deprecated synchronous error handling behavior by code at: \\n\"+e.stack)}else s&&console.log(\"RxJS: Back to a better error behavior. Thank you. <3\");s=e},get useDeprecatedSynchronousErrorHandling(){return s}};function o(e){setTimeout(()=>{throw e},0)}const a={closed:!0,next(e){},error(e){if(r.useDeprecatedSynchronousErrorHandling)throw e;o(e)},complete(){}},l=(()=>Array.isArray||(e=>e&&\"number\"==typeof e.length))();function c(e){return null!==e&&\"object\"==typeof e}const d=(()=>{function e(e){return Error.call(this),this.message=e?`${e.length} errors occurred during unsubscription:\\n${e.map((e,t)=>`${t+1}) ${e.toString()}`).join(\"\\n \")}`:\"\",this.name=\"UnsubscriptionError\",this.errors=e,this}return e.prototype=Object.create(Error.prototype),e})();let u=(()=>{class e{constructor(e){this.closed=!1,this._parentOrParents=null,this._subscriptions=null,e&&(this._unsubscribe=e)}unsubscribe(){let t;if(this.closed)return;let{_parentOrParents:n,_unsubscribe:s,_subscriptions:r}=this;if(this.closed=!0,this._parentOrParents=null,this._subscriptions=null,n instanceof e)n.remove(this);else if(null!==n)for(let e=0;ee.concat(t instanceof d?t.errors:t),[])}const m=(()=>\"function\"==typeof Symbol?Symbol(\"rxSubscriber\"):\"@@rxSubscriber_\"+Math.random())();class p extends u{constructor(e,t,n){switch(super(),this.syncErrorValue=null,this.syncErrorThrown=!1,this.syncErrorThrowable=!1,this.isStopped=!1,arguments.length){case 0:this.destination=a;break;case 1:if(!e){this.destination=a;break}if(\"object\"==typeof e){e instanceof p?(this.syncErrorThrowable=e.syncErrorThrowable,this.destination=e,e.add(this)):(this.syncErrorThrowable=!0,this.destination=new f(this,e));break}default:this.syncErrorThrowable=!0,this.destination=new f(this,e,t,n)}}[m](){return this}static create(e,t,n){const i=new p(e,t,n);return i.syncErrorThrowable=!1,i}next(e){this.isStopped||this._next(e)}error(e){this.isStopped||(this.isStopped=!0,this._error(e))}complete(){this.isStopped||(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe())}_next(e){this.destination.next(e)}_error(e){this.destination.error(e),this.unsubscribe()}_complete(){this.destination.complete(),this.unsubscribe()}_unsubscribeAndRecycle(){const{_parentOrParents:e}=this;return this._parentOrParents=null,this.unsubscribe(),this.closed=!1,this.isStopped=!1,this._parentOrParents=e,this}}class f extends p{constructor(e,t,n,s){let r;super(),this._parentSubscriber=e;let o=this;i(t)?r=t:t&&(r=t.next,n=t.error,s=t.complete,t!==a&&(o=Object.create(t),i(o.unsubscribe)&&this.add(o.unsubscribe.bind(o)),o.unsubscribe=this.unsubscribe.bind(this))),this._context=o,this._next=r,this._error=n,this._complete=s}next(e){if(!this.isStopped&&this._next){const{_parentSubscriber:t}=this;r.useDeprecatedSynchronousErrorHandling&&t.syncErrorThrowable?this.__tryOrSetError(t,this._next,e)&&this.unsubscribe():this.__tryOrUnsub(this._next,e)}}error(e){if(!this.isStopped){const{_parentSubscriber:t}=this,{useDeprecatedSynchronousErrorHandling:n}=r;if(this._error)n&&t.syncErrorThrowable?(this.__tryOrSetError(t,this._error,e),this.unsubscribe()):(this.__tryOrUnsub(this._error,e),this.unsubscribe());else if(t.syncErrorThrowable)n?(t.syncErrorValue=e,t.syncErrorThrown=!0):o(e),this.unsubscribe();else{if(this.unsubscribe(),n)throw e;o(e)}}}complete(){if(!this.isStopped){const{_parentSubscriber:e}=this;if(this._complete){const t=()=>this._complete.call(this._context);r.useDeprecatedSynchronousErrorHandling&&e.syncErrorThrowable?(this.__tryOrSetError(e,t),this.unsubscribe()):(this.__tryOrUnsub(t),this.unsubscribe())}else this.unsubscribe()}}__tryOrUnsub(e,t){try{e.call(this._context,t)}catch(n){if(this.unsubscribe(),r.useDeprecatedSynchronousErrorHandling)throw n;o(n)}}__tryOrSetError(e,t,n){if(!r.useDeprecatedSynchronousErrorHandling)throw new Error(\"bad call\");try{t.call(this._context,n)}catch(i){return r.useDeprecatedSynchronousErrorHandling?(e.syncErrorValue=i,e.syncErrorThrown=!0,!0):(o(i),!0)}return!1}_unsubscribe(){const{_parentSubscriber:e}=this;this._context=null,this._parentSubscriber=null,e.unsubscribe()}}const _=(()=>\"function\"==typeof Symbol&&Symbol.observable||\"@@observable\")();function g(){}function y(...e){return b(e)}function b(e){return e?1===e.length?e[0]:function(t){return e.reduce((e,t)=>t(e),t)}:g}let v=(()=>{class e{constructor(e){this._isScalar=!1,e&&(this._subscribe=e)}lift(t){const n=new e;return n.source=this,n.operator=t,n}subscribe(e,t,n){const{operator:i}=this,s=function(e,t,n){if(e){if(e instanceof p)return e;if(e[m])return e[m]()}return e||t||n?new p(e,t,n):new p(a)}(e,t,n);if(s.add(i?i.call(s,this.source):this.source||r.useDeprecatedSynchronousErrorHandling&&!s.syncErrorThrowable?this._subscribe(s):this._trySubscribe(s)),r.useDeprecatedSynchronousErrorHandling&&s.syncErrorThrowable&&(s.syncErrorThrowable=!1,s.syncErrorThrown))throw s.syncErrorValue;return s}_trySubscribe(e){try{return this._subscribe(e)}catch(t){r.useDeprecatedSynchronousErrorHandling&&(e.syncErrorThrown=!0,e.syncErrorValue=t),function(e){for(;e;){const{closed:t,destination:n,isStopped:i}=e;if(t||i)return!1;e=n&&n instanceof p?n:null}return!0}(e)?e.error(t):console.warn(t)}}forEach(e,t){return new(t=w(t))((t,n)=>{let i;i=this.subscribe(t=>{try{e(t)}catch(s){n(s),i&&i.unsubscribe()}},n,t)})}_subscribe(e){const{source:t}=this;return t&&t.subscribe(e)}[_](){return this}pipe(...e){return 0===e.length?this:b(e)(this)}toPromise(e){return new(e=w(e))((e,t)=>{let n;this.subscribe(e=>n=e,e=>t(e),()=>e(n))})}}return e.create=t=>new e(t),e})();function w(e){if(e||(e=r.Promise||Promise),!e)throw new Error(\"no Promise impl found\");return e}const M=(()=>{function e(){return Error.call(this),this.message=\"object unsubscribed\",this.name=\"ObjectUnsubscribedError\",this}return e.prototype=Object.create(Error.prototype),e})();class k extends u{constructor(e,t){super(),this.subject=e,this.subscriber=t,this.closed=!1}unsubscribe(){if(this.closed)return;this.closed=!0;const e=this.subject,t=e.observers;if(this.subject=null,!t||0===t.length||e.isStopped||e.closed)return;const n=t.indexOf(this.subscriber);-1!==n&&t.splice(n,1)}}class S extends p{constructor(e){super(e),this.destination=e}}let L=(()=>{class e extends v{constructor(){super(),this.observers=[],this.closed=!1,this.isStopped=!1,this.hasError=!1,this.thrownError=null}[m](){return new S(this)}lift(e){const t=new x(this,this);return t.operator=e,t}next(e){if(this.closed)throw new M;if(!this.isStopped){const{observers:t}=this,n=t.length,i=t.slice();for(let s=0;snew x(e,t),e})();class x extends L{constructor(e,t){super(),this.destination=e,this.source=t}next(e){const{destination:t}=this;t&&t.next&&t.next(e)}error(e){const{destination:t}=this;t&&t.error&&this.destination.error(e)}complete(){const{destination:e}=this;e&&e.complete&&this.destination.complete()}_subscribe(e){const{source:t}=this;return t?this.source.subscribe(e):u.EMPTY}}function C(e){return e&&\"function\"==typeof e.schedule}class T extends p{constructor(e,t,n){super(),this.parent=e,this.outerValue=t,this.outerIndex=n,this.index=0}_next(e){this.parent.notifyNext(this.outerValue,e,this.outerIndex,this.index++,this)}_error(e){this.parent.notifyError(e,this),this.unsubscribe()}_complete(){this.parent.notifyComplete(this),this.unsubscribe()}}const D=e=>t=>{for(let n=0,i=e.length;ne&&\"number\"==typeof e.length&&\"function\"!=typeof e;function I(e){return!!e&&\"function\"!=typeof e.subscribe&&\"function\"==typeof e.then}const P=e=>{if(e&&\"function\"==typeof e[_])return i=e,e=>{const t=i[_]();if(\"function\"!=typeof t.subscribe)throw new TypeError(\"Provided object does not correctly implement Symbol.observable\");return t.subscribe(e)};if(O(e))return D(e);if(I(e))return n=e,e=>(n.then(t=>{e.closed||(e.next(t),e.complete())},t=>e.error(t)).then(null,o),e);if(e&&\"function\"==typeof e[E])return t=e,e=>{const n=t[E]();for(;;){const t=n.next();if(t.done){e.complete();break}if(e.next(t.value),e.closed)break}return\"function\"==typeof n.return&&e.add(()=>{n.return&&n.return()}),e};{const t=c(e)?\"an invalid object\":`'${e}'`;throw new TypeError(`You provided ${t} where a stream was expected.`+\" You can provide an Observable, Promise, Array, or Iterable.\")}var t,n,i};function A(e,t,n,i,s=new T(e,n,i)){if(!s.closed)return t instanceof v?t.subscribe(s):P(t)(s)}class R extends p{notifyNext(e,t,n,i,s){this.destination.next(t)}notifyError(e,t){this.destination.error(e)}notifyComplete(e){this.destination.complete()}}function H(e,t){return function(n){if(\"function\"!=typeof e)throw new TypeError(\"argument is not a function. Are you looking for `mapTo()`?\");return n.lift(new j(e,t))}}class j{constructor(e,t){this.project=e,this.thisArg=t}call(e,t){return t.subscribe(new F(e,this.project,this.thisArg))}}class F extends p{constructor(e,t,n){super(e),this.project=t,this.count=0,this.thisArg=n||this}_next(e){let t;try{t=this.project.call(this.thisArg,e,this.count++)}catch(n){return void this.destination.error(n)}this.destination.next(t)}}function N(e,t){return new v(n=>{const i=new u;let s=0;return i.add(t.schedule((function(){s!==e.length?(n.next(e[s++]),n.closed||i.add(this.schedule())):n.complete()}))),i})}function z(e,t){return t?function(e,t){if(null!=e){if(function(e){return e&&\"function\"==typeof e[_]}(e))return function(e,t){return new v(n=>{const i=new u;return i.add(t.schedule(()=>{const s=e[_]();i.add(s.subscribe({next(e){i.add(t.schedule(()=>n.next(e)))},error(e){i.add(t.schedule(()=>n.error(e)))},complete(){i.add(t.schedule(()=>n.complete()))}}))})),i})}(e,t);if(I(e))return function(e,t){return new v(n=>{const i=new u;return i.add(t.schedule(()=>e.then(e=>{i.add(t.schedule(()=>{n.next(e),i.add(t.schedule(()=>n.complete()))}))},e=>{i.add(t.schedule(()=>n.error(e)))}))),i})}(e,t);if(O(e))return N(e,t);if(function(e){return e&&\"function\"==typeof e[E]}(e)||\"string\"==typeof e)return function(e,t){if(!e)throw new Error(\"Iterable cannot be null\");return new v(n=>{const i=new u;let s;return i.add(()=>{s&&\"function\"==typeof s.return&&s.return()}),i.add(t.schedule(()=>{s=e[E](),i.add(t.schedule((function(){if(n.closed)return;let e,t;try{const n=s.next();e=n.value,t=n.done}catch(i){return void n.error(i)}t?n.complete():(n.next(e),this.schedule())})))})),i})}(e,t)}throw new TypeError((null!==e&&typeof e||e)+\" is not observable\")}(e,t):e instanceof v?e:new v(P(e))}function V(e,t,n=Number.POSITIVE_INFINITY){return\"function\"==typeof t?i=>i.pipe(V((n,i)=>z(e(n,i)).pipe(H((e,s)=>t(n,e,i,s))),n)):(\"number\"==typeof t&&(n=t),t=>t.lift(new W(e,n)))}class W{constructor(e,t=Number.POSITIVE_INFINITY){this.project=e,this.concurrent=t}call(e,t){return t.subscribe(new U(e,this.project,this.concurrent))}}class U extends R{constructor(e,t,n=Number.POSITIVE_INFINITY){super(e),this.project=t,this.concurrent=n,this.hasCompleted=!1,this.buffer=[],this.active=0,this.index=0}_next(e){this.active0?this._next(t.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()}}function $(e){return e}function B(e=Number.POSITIVE_INFINITY){return V($,e)}function q(e,t){return t?N(e,t):new v(D(e))}function G(...e){let t=Number.POSITIVE_INFINITY,n=null,i=e[e.length-1];return C(i)?(n=e.pop(),e.length>1&&\"number\"==typeof e[e.length-1]&&(t=e.pop())):\"number\"==typeof i&&(t=e.pop()),null===n&&1===e.length&&e[0]instanceof v?e[0]:B(t)(q(e,n))}function J(){return function(e){return e.lift(new K(e))}}class K{constructor(e){this.connectable=e}call(e,t){const{connectable:n}=this;n._refCount++;const i=new Z(e,n),s=t.subscribe(i);return i.closed||(i.connection=n.connect()),s}}class Z extends p{constructor(e,t){super(e),this.connectable=t}_unsubscribe(){const{connectable:e}=this;if(!e)return void(this.connection=null);this.connectable=null;const t=e._refCount;if(t<=0)return void(this.connection=null);if(e._refCount=t-1,t>1)return void(this.connection=null);const{connection:n}=this,i=e._connection;this.connection=null,!i||n&&i!==n||i.unsubscribe()}}class Q extends v{constructor(e,t){super(),this.source=e,this.subjectFactory=t,this._refCount=0,this._isComplete=!1}_subscribe(e){return this.getSubject().subscribe(e)}getSubject(){const e=this._subject;return e&&!e.isStopped||(this._subject=this.subjectFactory()),this._subject}connect(){let e=this._connection;return e||(this._isComplete=!1,e=this._connection=new u,e.add(this.source.subscribe(new ee(this.getSubject(),this))),e.closed&&(this._connection=null,e=u.EMPTY)),e}refCount(){return J()(this)}}const X=(()=>{const e=Q.prototype;return{operator:{value:null},_refCount:{value:0,writable:!0},_subject:{value:null,writable:!0},_connection:{value:null,writable:!0},_subscribe:{value:e._subscribe},_isComplete:{value:e._isComplete,writable:!0},getSubject:{value:e.getSubject},connect:{value:e.connect},refCount:{value:e.refCount}}})();class ee extends S{constructor(e,t){super(e),this.connectable=t}_error(e){this._unsubscribe(),super._error(e)}_complete(){this.connectable._isComplete=!0,this._unsubscribe(),super._complete()}_unsubscribe(){const e=this.connectable;if(e){this.connectable=null;const t=e._connection;e._refCount=0,e._subject=null,e._connection=null,t&&t.unsubscribe()}}}function te(e,t){return function(n){let i;if(i=\"function\"==typeof e?e:function(){return e},\"function\"==typeof t)return n.lift(new ne(i,t));const s=Object.create(n,X);return s.source=n,s.subjectFactory=i,s}}class ne{constructor(e,t){this.subjectFactory=e,this.selector=t}call(e,t){const{selector:n}=this,i=this.subjectFactory(),s=n(i).subscribe(e);return s.add(t.subscribe(i)),s}}function ie(){return new L}function se(){return e=>J()(te(ie)(e))}function re(e){return{toString:e}.toString()}function oe(e,t,n){return re(()=>{const i=function(e){return function(...t){if(e){const n=e(...t);for(const e in n)this[e]=n[e]}}}(t);function s(...e){if(this instanceof s)return i.apply(this,e),this;const t=new s(...e);return n.annotation=t,n;function n(e,n,i){const s=e.hasOwnProperty(\"__parameters__\")?e.__parameters__:Object.defineProperty(e,\"__parameters__\",{value:[]}).__parameters__;for(;s.length<=i;)s.push(null);return(s[i]=s[i]||[]).push(t),e}}return n&&(s.prototype=Object.create(n.prototype)),s.prototype.ngMetadataName=e,s.annotationCls=s,s})}const ae=oe(\"Inject\",e=>({token:e})),le=oe(\"Optional\"),ce=oe(\"Self\"),de=oe(\"SkipSelf\");var ue=function(e){return e[e.Default=0]=\"Default\",e[e.Host=1]=\"Host\",e[e.Self=2]=\"Self\",e[e.SkipSelf=4]=\"SkipSelf\",e[e.Optional=8]=\"Optional\",e}({});function he(e){for(let t in e)if(e[t]===he)return t;throw Error(\"Could not find renamed property on target object.\")}function me(e,t){for(const n in t)t.hasOwnProperty(n)&&!e.hasOwnProperty(n)&&(e[n]=t[n])}function pe(e){return{token:e.token,providedIn:e.providedIn||null,factory:e.factory,value:void 0}}function fe(e){return{factory:e.factory,providers:e.providers||[],imports:e.imports||[]}}function _e(e){return ge(e,e[be])||ge(e,e[Me])}function ge(e,t){return t&&t.token===e?t:null}function ye(e){return e&&(e.hasOwnProperty(ve)||e.hasOwnProperty(ke))?e[ve]:null}const be=he({\"\\u0275prov\":he}),ve=he({\"\\u0275inj\":he}),we=he({\"\\u0275provFallback\":he}),Me=he({ngInjectableDef:he}),ke=he({ngInjectorDef:he});function Se(e){if(\"string\"==typeof e)return e;if(Array.isArray(e))return\"[\"+e.map(Se).join(\", \")+\"]\";if(null==e)return\"\"+e;if(e.overriddenName)return`${e.overriddenName}`;if(e.name)return`${e.name}`;const t=e.toString();if(null==t)return\"\"+t;const n=t.indexOf(\"\\n\");return-1===n?t:t.substring(0,n)}function Le(e,t){return null==e||\"\"===e?null===t?\"\":t:null==t||\"\"===t?e:e+\" \"+t}const xe=he({__forward_ref__:he});function Ce(e){return e.__forward_ref__=Ce,e.toString=function(){return Se(this())},e}function Te(e){return De(e)?e():e}function De(e){return\"function\"==typeof e&&e.hasOwnProperty(xe)&&e.__forward_ref__===Ce}const Ye=\"undefined\"!=typeof globalThis&&globalThis,Ee=\"undefined\"!=typeof window&&window,Oe=\"undefined\"!=typeof self&&\"undefined\"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&self,Ie=\"undefined\"!=typeof global&&global,Pe=Ye||Ie||Ee||Oe,Ae=he({\"\\u0275cmp\":he}),Re=he({\"\\u0275dir\":he}),He=he({\"\\u0275pipe\":he}),je=he({\"\\u0275mod\":he}),Fe=he({\"\\u0275loc\":he}),Ne=he({\"\\u0275fac\":he}),ze=he({__NG_ELEMENT_ID__:he});class Ve{constructor(e,t){this._desc=e,this.ngMetadataName=\"InjectionToken\",this.\\u0275prov=void 0,\"number\"==typeof t?this.__NG_ELEMENT_ID__=t:void 0!==t&&(this.\\u0275prov=pe({token:this,providedIn:t.providedIn||\"root\",factory:t.factory}))}toString(){return`InjectionToken ${this._desc}`}}const We=new Ve(\"INJECTOR\",-1),Ue={},$e=/\\n/gm,Be=he({provide:String,useValue:he});let qe,Ge=void 0;function Je(e){const t=Ge;return Ge=e,t}function Ke(e){const t=qe;return qe=e,t}function Ze(e,t=ue.Default){if(void 0===Ge)throw new Error(\"inject() must be called from an injection context\");return null===Ge?et(e,void 0,t):Ge.get(e,t&ue.Optional?null:void 0,t)}function Qe(e,t=ue.Default){return(qe||Ze)(Te(e),t)}const Xe=Qe;function et(e,t,n){const i=_e(e);if(i&&\"root\"==i.providedIn)return void 0===i.value?i.value=i.factory():i.value;if(n&ue.Optional)return null;if(void 0!==t)return t;throw new Error(`Injector: NOT_FOUND [${Se(e)}]`)}function tt(e){const t=[];for(let n=0;nArray.isArray(e)?ot(e,t):t(e))}function at(e,t,n){t>=e.length?e.push(n):e.splice(t,0,n)}function lt(e,t){return t>=e.length-1?e.pop():e.splice(t,1)[0]}function ct(e,t){const n=[];for(let i=0;i=0?e[1|i]=n:(i=~i,function(e,t,n,i){let s=e.length;if(s==t)e.push(n,i);else if(1===s)e.push(i,e[0]),e[0]=n;else{for(s--,e.push(e[s-1],e[s]);s>t;)e[s]=e[s-2],s--;e[t]=n,e[t+1]=i}}(e,i,t,n)),i}function ut(e,t){const n=ht(e,t);if(n>=0)return e[1|n]}function ht(e,t){return function(e,t,n){let i=0,s=e.length>>1;for(;s!==i;){const n=i+(s-i>>1),r=e[n<<1];if(t===r)return n<<1;r>t?s=n:i=n+1}return~(s<<1)}(e,t)}const mt=function(){var e={OnPush:0,Default:1};return e[e.OnPush]=\"OnPush\",e[e.Default]=\"Default\",e}(),pt=function(){var e={Emulated:0,Native:1,None:2,ShadowDom:3};return e[e.Emulated]=\"Emulated\",e[e.Native]=\"Native\",e[e.None]=\"None\",e[e.ShadowDom]=\"ShadowDom\",e}(),ft={},_t=[];let gt=0;function yt(e){return re(()=>{const t=e.type,n=t.prototype,i={},s={type:t,providersResolver:null,decls:e.decls,vars:e.vars,factory:null,template:e.template||null,consts:e.consts||null,ngContentSelectors:e.ngContentSelectors,hostBindings:e.hostBindings||null,hostVars:e.hostVars||0,hostAttrs:e.hostAttrs||null,contentQueries:e.contentQueries||null,declaredInputs:i,inputs:null,outputs:null,exportAs:e.exportAs||null,onChanges:null,onInit:n.ngOnInit||null,doCheck:n.ngDoCheck||null,afterContentInit:n.ngAfterContentInit||null,afterContentChecked:n.ngAfterContentChecked||null,afterViewInit:n.ngAfterViewInit||null,afterViewChecked:n.ngAfterViewChecked||null,onDestroy:n.ngOnDestroy||null,onPush:e.changeDetection===mt.OnPush,directiveDefs:null,pipeDefs:null,selectors:e.selectors||_t,viewQuery:e.viewQuery||null,features:e.features||null,data:e.data||{},encapsulation:e.encapsulation||pt.Emulated,id:\"c\",styles:e.styles||_t,_:null,setInput:null,schemas:e.schemas||null,tView:null},r=e.directives,o=e.features,a=e.pipes;return s.id+=gt++,s.inputs=kt(e.inputs,i),s.outputs=kt(e.outputs),o&&o.forEach(e=>e(s)),s.directiveDefs=r?()=>(\"function\"==typeof r?r():r).map(bt):null,s.pipeDefs=a?()=>(\"function\"==typeof a?a():a).map(vt):null,s})}function bt(e){return Lt(e)||function(e){return e[Re]||null}(e)}function vt(e){return function(e){return e[He]||null}(e)}const wt={};function Mt(e){const t={type:e.type,bootstrap:e.bootstrap||_t,declarations:e.declarations||_t,imports:e.imports||_t,exports:e.exports||_t,transitiveCompileScopes:null,schemas:e.schemas||null,id:e.id||null};return null!=e.id&&re(()=>{wt[e.id]=e.type}),t}function kt(e,t){if(null==e)return ft;const n={};for(const i in e)if(e.hasOwnProperty(i)){let s=e[i],r=s;Array.isArray(s)&&(r=s[1],s=s[0]),n[s]=i,t&&(t[s]=r)}return n}const St=yt;function Lt(e){return e[Ae]||null}function xt(e,t){return e.hasOwnProperty(Ne)?e[Ne]:null}function Ct(e,t){const n=e[je]||null;if(!n&&!0===t)throw new Error(`Type ${Se(e)} does not have '\\u0275mod' property.`);return n}function Tt(e){return Array.isArray(e)&&\"object\"==typeof e[1]}function Dt(e){return Array.isArray(e)&&!0===e[1]}function Yt(e){return 0!=(8&e.flags)}function Et(e){return 2==(2&e.flags)}function Ot(e){return 1==(1&e.flags)}function It(e){return null!==e.template}function Pt(e){return 0!=(512&e[2])}let At=void 0;function Rt(){return void 0!==At?At:\"undefined\"!=typeof document?document:void 0}function Ht(e){return!!e.listen}const jt={createRenderer:(e,t)=>Rt()};function Ft(e){for(;Array.isArray(e);)e=e[0];return e}function Nt(e,t){return Ft(t[e+19])}function zt(e,t){return Ft(t[e.index])}function Vt(e,t){return e.data[t+19]}function Wt(e,t){return e[t+19]}function Ut(e,t){const n=t[e];return Tt(n)?n:n[0]}function $t(e){const t=function(e){return e.__ngContext__||null}(e);return t?Array.isArray(t)?t:t.lView:null}function Bt(e){return 4==(4&e[2])}function qt(e){return 128==(128&e[2])}function Gt(e,t){return null===e||null==t?null:e[t]}function Jt(e){e[18]=0}const Kt={lFrame:_n(null),bindingsEnabled:!0,checkNoChangesMode:!1};function Zt(){return Kt.bindingsEnabled}function Qt(){return Kt.lFrame.lView}function Xt(){return Kt.lFrame.tView}function en(e){Kt.lFrame.contextLView=e}function tn(){return Kt.lFrame.previousOrParentTNode}function nn(e,t){Kt.lFrame.previousOrParentTNode=e,Kt.lFrame.isParent=t}function sn(){return Kt.lFrame.isParent}function rn(){Kt.lFrame.isParent=!1}function on(){return Kt.checkNoChangesMode}function an(e){Kt.checkNoChangesMode=e}function ln(){return Kt.lFrame.bindingIndex++}function cn(e){const t=Kt.lFrame,n=t.bindingIndex;return t.bindingIndex=t.bindingIndex+e,n}function dn(e,t){const n=Kt.lFrame;n.bindingIndex=n.bindingRootIndex=e,n.currentDirectiveIndex=t}function un(){return Kt.lFrame.currentQueryIndex}function hn(e){Kt.lFrame.currentQueryIndex=e}function mn(e,t){const n=fn();Kt.lFrame=n,n.previousOrParentTNode=t,n.lView=e}function pn(e,t){const n=fn(),i=e[1];Kt.lFrame=n,n.previousOrParentTNode=t,n.lView=e,n.tView=i,n.contextLView=e,n.bindingIndex=i.bindingStartIndex}function fn(){const e=Kt.lFrame,t=null===e?null:e.child;return null===t?_n(e):t}function _n(e){const t={previousOrParentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:0,contextLView:null,elementDepthCount:0,currentNamespace:null,currentSanitizer:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:e,child:null};return null!==e&&(e.child=t),t}function gn(){const e=Kt.lFrame;return Kt.lFrame=e.parent,e.previousOrParentTNode=null,e.lView=null,e}const yn=gn;function bn(){const e=gn();e.isParent=!0,e.tView=null,e.selectedIndex=0,e.contextLView=null,e.elementDepthCount=0,e.currentDirectiveIndex=-1,e.currentNamespace=null,e.currentSanitizer=null,e.bindingRootIndex=-1,e.bindingIndex=-1,e.currentQueryIndex=0}function vn(){return Kt.lFrame.selectedIndex}function wn(e){Kt.lFrame.selectedIndex=e}function Mn(){const e=Kt.lFrame;return Vt(e.tView,e.selectedIndex)}function kn(){Kt.lFrame.currentNamespace=\"http://www.w3.org/2000/svg\"}function Sn(){Kt.lFrame.currentNamespace=null}function Ln(e,t){for(let n=t.directiveStart,i=t.directiveEnd;n=i)break}else t[o]<0&&(e[18]+=65536),(r>10>16&&(3&e[2])===t&&(e[2]+=1024,r.call(o)):r.call(o)}class En{constructor(e,t,n){this.factory=e,this.resolving=!1,this.canSeeViewProviders=t,this.injectImpl=n}}function On(e,t,n){const i=Ht(e);let s=0;for(;st){o=r-1;break}}}for(;r>16}function Nn(e,t){let n=Fn(e),i=t;for(;n>0;)i=i[15],n--;return i}function zn(e){return\"string\"==typeof e?e:null==e?\"\":\"\"+e}function Vn(e){return\"function\"==typeof e?e.name||e.toString():\"object\"==typeof e&&null!=e&&\"function\"==typeof e.type?e.type.name||e.type.toString():zn(e)}const Wn=(()=>(\"undefined\"!=typeof requestAnimationFrame&&requestAnimationFrame||setTimeout).bind(Pe))();function Un(e){return{name:\"window\",target:e.ownerDocument.defaultView}}function $n(e){return e instanceof Function?e():e}let Bn=!0;function qn(e){const t=Bn;return Bn=e,t}let Gn=0;function Jn(e,t){const n=Zn(e,t);if(-1!==n)return n;const i=t[1];i.firstCreatePass&&(e.injectorIndex=t.length,Kn(i.data,e),Kn(t,null),Kn(i.blueprint,null));const s=Qn(e,t),r=e.injectorIndex;if(Hn(s)){const e=jn(s),n=Nn(s,t),i=n[1].data;for(let s=0;s<8;s++)t[r+s]=n[e+s]|i[e+s]}return t[r+8]=s,r}function Kn(e,t){e.push(0,0,0,0,0,0,0,0,t)}function Zn(e,t){return-1===e.injectorIndex||e.parent&&e.parent.injectorIndex===e.injectorIndex||null==t[e.injectorIndex+8]?-1:e.injectorIndex}function Qn(e,t){if(e.parent&&-1!==e.parent.injectorIndex)return e.parent.injectorIndex;let n=t[6],i=1;for(;n&&-1===n.injectorIndex;)n=(t=t[15])?t[6]:null,i++;return n?n.injectorIndex|i<<16:-1}function Xn(e,t,n){!function(e,t,n){let i=\"string\"!=typeof n?n[ze]:n.charCodeAt(0)||0;null==i&&(i=n[ze]=Gn++);const s=255&i,r=1<0?255&t:t}(n);if(\"function\"==typeof s){mn(t,e);try{const e=s();if(null!=e||i&ue.Optional)return e;throw new Error(`No provider for ${Vn(n)}!`)}finally{yn()}}else if(\"number\"==typeof s){if(-1===s)return new ai(e,t);let r=null,o=Zn(e,t),a=-1,l=i&ue.Host?t[16][6]:null;for((-1===o||i&ue.SkipSelf)&&(a=-1===o?Qn(e,t):t[o+8],oi(i,!1)?(r=t[1],o=jn(a),t=Nn(a,t)):o=-1);-1!==o;){a=t[o+8];const e=t[1];if(ri(s,o,e.data)){const e=ni(o,t,n,r,i,l);if(e!==ti)return e}oi(i,t[1].data[o+8]===l)&&ri(s,o,t)?(r=e,o=jn(a),t=Nn(a,t)):o=-1}}}if(i&ue.Optional&&void 0===s&&(s=null),0==(i&(ue.Self|ue.Host))){const e=t[9],r=Ke(void 0);try{return e?e.get(n,s,i&ue.Optional):et(n,s,i&ue.Optional)}finally{Ke(r)}}if(i&ue.Optional)return s;throw new Error(`NodeInjector: NOT_FOUND [${Vn(n)}]`)}const ti={};function ni(e,t,n,i,s,r){const o=t[1],a=o.data[e+8],l=ii(a,o,n,null==i?Et(a)&&Bn:i!=o&&3===a.type,s&ue.Host&&r===a);return null!==l?si(t,o,l,a):ti}function ii(e,t,n,i,s){const r=e.providerIndexes,o=t.data,a=65535&r,l=e.directiveStart,c=r>>16,d=s?a+c:e.directiveEnd;for(let u=i?a:a+c;u=l&&e.type===n)return u}if(s){const e=o[l];if(e&&It(e)&&e.type===n)return l}return null}function si(e,t,n,i){let s=e[n];const r=t.data;if(s instanceof En){const o=s;if(o.resolving)throw new Error(`Circular dep for ${Vn(r[n])}`);const a=qn(o.canSeeViewProviders);let l;o.resolving=!0,o.injectImpl&&(l=Ke(o.injectImpl)),mn(e,i);try{s=e[n]=o.factory(void 0,r,e,i),t.firstCreatePass&&n>=i.directiveStart&&function(e,t,n){const{onChanges:i,onInit:s,doCheck:r}=t;i&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,i),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,i)),s&&(n.preOrderHooks||(n.preOrderHooks=[])).push(-e,s),r&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,r),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,r))}(n,r[n],t)}finally{o.injectImpl&&Ke(l),qn(a),o.resolving=!1,yn()}}return s}function ri(e,t,n){const i=64&e,s=32&e;let r;return r=128&e?i?s?n[t+7]:n[t+6]:s?n[t+5]:n[t+4]:i?s?n[t+3]:n[t+2]:s?n[t+1]:n[t],!!(r&1<{const t=Object.getPrototypeOf(e.prototype).constructor,n=t[Ne]||function e(t){const n=t;if(De(t))return()=>{const t=e(Te(n));return t?t():null};let i=xt(n);if(null===i){const e=ye(n);i=e&&e.factory}return i||null}(t);return null!==n?n:e=>new e})}function ci(e){return e.ngDebugContext}function di(e){return e.ngOriginalError}function ui(e,...t){e.error(...t)}class hi{constructor(){this._console=console}handleError(e){const t=this._findOriginalError(e),n=this._findContext(e),i=function(e){return e.ngErrorLogger||ui}(e);i(this._console,\"ERROR\",e),t&&i(this._console,\"ORIGINAL ERROR\",t),n&&i(this._console,\"ERROR CONTEXT\",n)}_findContext(e){return e?ci(e)?ci(e):this._findContext(di(e)):null}_findOriginalError(e){let t=di(e);for(;t&&di(t);)t=di(t);return t}}class mi{constructor(e){this.changingThisBreaksApplicationSecurity=e}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity}`+\" (see http://g.co/ng/security#xss)\"}}class pi extends mi{getTypeName(){return\"HTML\"}}class fi extends mi{getTypeName(){return\"Style\"}}class _i extends mi{getTypeName(){return\"Script\"}}class gi extends mi{getTypeName(){return\"URL\"}}class yi extends mi{getTypeName(){return\"ResourceURL\"}}function bi(e){return e instanceof mi?e.changingThisBreaksApplicationSecurity:e}function vi(e,t){const n=wi(e);if(null!=n&&n!==t){if(\"ResourceURL\"===n&&\"URL\"===t)return!0;throw new Error(`Required a safe ${t}, got a ${n} (see http://g.co/ng/security#xss)`)}return n===t}function wi(e){return e instanceof mi&&e.getTypeName()||null}let Mi=!0,ki=!1;function Si(){return ki=!0,Mi}class Li{constructor(e){this.defaultDoc=e,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument(\"sanitization-inert\");let t=this.inertDocument.body;if(null==t){const e=this.inertDocument.createElement(\"html\");this.inertDocument.appendChild(e),t=this.inertDocument.createElement(\"body\"),e.appendChild(t)}t.innerHTML='',!t.querySelector||t.querySelector(\"svg\")?(t.innerHTML='

',this.getInertBodyElement=t.querySelector&&t.querySelector(\"svg img\")&&function(){try{return!!window.DOMParser}catch(e){return!1}}()?this.getInertBodyElement_DOMParser:this.getInertBodyElement_InertDocument):this.getInertBodyElement=this.getInertBodyElement_XHR}getInertBodyElement_XHR(e){e=\"\"+e+\"\";try{e=encodeURI(e)}catch(i){return null}const t=new XMLHttpRequest;t.responseType=\"document\",t.open(\"GET\",\"data:text/html;charset=utf-8,\"+e,!1),t.send(void 0);const n=t.response.body;return n.removeChild(n.firstChild),n}getInertBodyElement_DOMParser(e){e=\"\"+e+\"\";try{const t=(new window.DOMParser).parseFromString(e,\"text/html\").body;return t.removeChild(t.firstChild),t}catch(t){return null}}getInertBodyElement_InertDocument(e){const t=this.inertDocument.createElement(\"template\");if(\"content\"in t)return t.innerHTML=e,t;const n=this.inertDocument.createElement(\"body\");return n.innerHTML=e,this.defaultDoc.documentMode&&this.stripCustomNsAttrs(n),n}stripCustomNsAttrs(e){const t=e.attributes;for(let i=t.length-1;0Ti(e.trim())).join(\", \")}function Yi(e){const t={};for(const n of e.split(\",\"))t[n]=!0;return t}function Ei(...e){const t={};for(const n of e)for(const e in n)n.hasOwnProperty(e)&&(t[e]=!0);return t}const Oi=Yi(\"area,br,col,hr,img,wbr\"),Ii=Yi(\"colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr\"),Pi=Yi(\"rp,rt\"),Ai=Ei(Pi,Ii),Ri=Ei(Oi,Ei(Ii,Yi(\"address,article,aside,blockquote,caption,center,del,details,dialog,dir,div,dl,figure,figcaption,footer,h1,h2,h3,h4,h5,h6,header,hgroup,hr,ins,main,map,menu,nav,ol,pre,section,summary,table,ul\")),Ei(Pi,Yi(\"a,abbr,acronym,audio,b,bdi,bdo,big,br,cite,code,del,dfn,em,font,i,img,ins,kbd,label,map,mark,picture,q,ruby,rp,rt,s,samp,small,source,span,strike,strong,sub,sup,time,track,tt,u,var,video\")),Ai),Hi=Yi(\"background,cite,href,itemtype,longdesc,poster,src,xlink:href\"),ji=Yi(\"srcset\"),Fi=Ei(Hi,ji,Yi(\"abbr,accesskey,align,alt,autoplay,axis,bgcolor,border,cellpadding,cellspacing,class,clear,color,cols,colspan,compact,controls,coords,datetime,default,dir,download,face,headers,height,hidden,hreflang,hspace,ismap,itemscope,itemprop,kind,label,lang,language,loop,media,muted,nohref,nowrap,open,preload,rel,rev,role,rows,rowspan,rules,scope,scrolling,shape,size,sizes,span,srclang,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width\"),Yi(\"aria-activedescendant,aria-atomic,aria-autocomplete,aria-busy,aria-checked,aria-colcount,aria-colindex,aria-colspan,aria-controls,aria-current,aria-describedby,aria-details,aria-disabled,aria-dropeffect,aria-errormessage,aria-expanded,aria-flowto,aria-grabbed,aria-haspopup,aria-hidden,aria-invalid,aria-keyshortcuts,aria-label,aria-labelledby,aria-level,aria-live,aria-modal,aria-multiline,aria-multiselectable,aria-orientation,aria-owns,aria-placeholder,aria-posinset,aria-pressed,aria-readonly,aria-relevant,aria-required,aria-roledescription,aria-rowcount,aria-rowindex,aria-rowspan,aria-selected,aria-setsize,aria-sort,aria-valuemax,aria-valuemin,aria-valuenow,aria-valuetext\")),Ni=Yi(\"script,style,template\");class zi{constructor(){this.sanitizedSomething=!1,this.buf=[]}sanitizeChildren(e){let t=e.firstChild,n=!0;for(;t;)if(t.nodeType===Node.ELEMENT_NODE?n=this.startElement(t):t.nodeType===Node.TEXT_NODE?this.chars(t.nodeValue):this.sanitizedSomething=!0,n&&t.firstChild)t=t.firstChild;else for(;t;){t.nodeType===Node.ELEMENT_NODE&&this.endElement(t);let e=this.checkClobberedElement(t,t.nextSibling);if(e){t=e;break}t=this.checkClobberedElement(t,t.parentNode)}return this.buf.join(\"\")}startElement(e){const t=e.nodeName.toLowerCase();if(!Ri.hasOwnProperty(t))return this.sanitizedSomething=!0,!Ni.hasOwnProperty(t);this.buf.push(\"<\"),this.buf.push(t);const n=e.attributes;for(let i=0;i\"),!0}endElement(e){const t=e.nodeName.toLowerCase();Ri.hasOwnProperty(t)&&!Oi.hasOwnProperty(t)&&(this.buf.push(\"\"))}chars(e){this.buf.push(Ui(e))}checkClobberedElement(e,t){if(t&&(e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error(`Failed to sanitize html because the element is clobbered: ${e.outerHTML}`);return t}}const Vi=/[\\uD800-\\uDBFF][\\uDC00-\\uDFFF]/g,Wi=/([^\\#-~ |!])/g;function Ui(e){return e.replace(/&/g,\"&\").replace(Vi,(function(e){return\"&#\"+(1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320)+65536)+\";\"})).replace(Wi,(function(e){return\"&#\"+e.charCodeAt(0)+\";\"})).replace(//g,\">\")}let $i;function Bi(e,t){let n=null;try{$i=$i||new Li(e);let i=t?String(t):\"\";n=$i.getInertBodyElement(i);let s=5,r=i;do{if(0===s)throw new Error(\"Failed to sanitize html because the input is unstable\");s--,i=r,r=n.innerHTML,n=$i.getInertBodyElement(i)}while(i!==r);const o=new zi,a=o.sanitizeChildren(qi(n)||n);return Si()&&o.sanitizedSomething&&console.warn(\"WARNING: sanitizing HTML stripped some content, see http://g.co/ng/security#xss\"),a}finally{if(n){const e=qi(n)||n;for(;e.firstChild;)e.removeChild(e.firstChild)}}}function qi(e){return\"content\"in e&&function(e){return e.nodeType===Node.ELEMENT_NODE&&\"TEMPLATE\"===e.nodeName}(e)?e.content:null}const Gi=function(){var e={NONE:0,HTML:1,STYLE:2,SCRIPT:3,URL:4,RESOURCE_URL:5};return e[e.NONE]=\"NONE\",e[e.HTML]=\"HTML\",e[e.STYLE]=\"STYLE\",e[e.SCRIPT]=\"SCRIPT\",e[e.URL]=\"URL\",e[e.RESOURCE_URL]=\"RESOURCE_URL\",e}(),Ji=new RegExp(\"^([-,.\\\"'%_!# a-zA-Z0-9]+|(?:(?:matrix|translate|scale|rotate|skew|perspective)(?:X|Y|Z|3d)?|(?:rgb|hsl)a?|(?:repeating-)?(?:linear|radial)-gradient|(?:attr|calc|var))\\\\([-0-9.%, #a-zA-Z]+\\\\))$\",\"g\"),Ki=/^url\\(([^)]+)\\)$/;function Zi(e){if(!(e=String(e).trim()))return\"\";const t=e.match(Ki);return t&&Ti(t[1])===t[1]||e.match(Ji)&&function(e){let t=!0,n=!0;for(let i=0;ir?\"\":s[d+1].toLowerCase();const t=8&i?e:null;if(t&&-1!==os(t,c,0)||2&i&&c!==e){if(ds(i))return!1;o=!0}}}}else{if(!o&&!ds(i)&&!ds(l))return!1;if(o&&ds(l))continue;o=!1,i=l|1&i}}return ds(i)||o}function ds(e){return 0==(1&e)}function us(e,t,n,i){if(null===t)return-1;let s=0;if(i||!n){let n=!1;for(;s-1)for(n++;n0?'=\"'+t+'\"':\"\")+\"]\"}else 8&i?s+=\".\"+o:4&i&&(s+=\" \"+o);else\"\"===s||ds(o)||(t+=ps(r,s),s=\"\"),i=o,r=r||!ds(i);n++}return\"\"!==s&&(t+=ps(r,s)),t}const _s={};function gs(e){const t=e[3];return Dt(t)?t[3]:t}function ys(e){bs(Xt(),Qt(),vn()+e,on())}function bs(e,t,n,i){if(!i)if(3==(3&t[2])){const i=e.preOrderCheckHooks;null!==i&&xn(t,i,n)}else{const i=e.preOrderHooks;null!==i&&Cn(t,i,0,n)}wn(n)}const vs={marker:\"element\"},ws={marker:\"comment\"};function Ms(e,t){return e<<17|t<<2}function ks(e){return e>>17&32767}function Ss(e){return 2|e}function Ls(e){return(131068&e)>>2}function xs(e,t){return-131069&e|t<<2}function Cs(e){return 1|e}function Ts(e,t){const n=e.contentQueries;if(null!==n)for(let i=0;i>1==-1){for(let e=9;e19&&bs(e,t,0,on()),n(i,s)}finally{wn(r)}}function Rs(e,t,n){if(Yt(t)){const i=t.directiveEnd;for(let s=t.directiveStart;sPromise.resolve(null))();function mr(e){return e[7]||(e[7]=[])}function pr(e){return e.cleanup||(e.cleanup=[])}function fr(e,t){return function(e){for(;Array.isArray(e);){if(\"object\"==typeof e[1])return e;e=e[0]}return null}(t[e.index])[11]}function _r(e,t){const n=e[9],i=n?n.get(hi,null):null;i&&i.handleError(t)}function gr(e,t,n,i,s){for(let r=0;r0&&(e[n-1][4]=i[4]);const r=lt(e,9+t);kr(i[1],i,!1,null);const o=r[5];null!==o&&o.detachView(r[1]),i[3]=null,i[4]=null,i[2]&=-129}return i}function xr(e,t){if(!(256&t[2])){const n=t[11];Ht(n)&&n.destroyNode&&Fr(e,t,n,3,null,null),function(e){let t=e[13];if(!t)return Tr(e[1],e);for(;t;){let n=null;if(Tt(t))n=t[13];else{const e=t[9];e&&(n=e)}if(!n){for(;t&&!t[4]&&t!==e;)Tt(t)&&Tr(t[1],t),t=Cr(t,e);null===t&&(t=e),Tt(t)&&Tr(t[1],t),n=t&&t[4]}t=n}}(t)}}function Cr(e,t){let n;return Tt(e)&&(n=e[6])&&2===n.type?br(n,e):e[3]===t?null:e[3]}function Tr(e,t){if(!(256&t[2])){t[2]&=-129,t[2]|=256,function(e,t){let n;if(null!=e&&null!=(n=e.destroyHooks))for(let i=0;i=0?e[a]():e[-a].unsubscribe(),i+=2}else n[i].call(e[n[i+1]]);t[7]=null}}(e,t);const n=t[6];n&&3===n.type&&Ht(t[11])&&t[11].destroy();const i=t[17];if(null!==i&&Dt(t[3])){i!==t[3]&&Sr(i,t);const n=t[5];null!==n&&n.detachView(e)}}}function Dr(e,t,n){let i=t.parent;for(;null!=i&&(4===i.type||5===i.type);)i=(t=i).parent;if(null==i){const e=n[6];return 2===e.type?vr(e,n):n[0]}if(t&&5===t.type&&4&t.flags)return zt(t,n).parentNode;if(2&i.flags){const t=e.data,n=t[t[i.index].directiveStart].encapsulation;if(n!==pt.ShadowDom&&n!==pt.Native)return null}return zt(i,n)}function Yr(e,t,n,i){Ht(e)?e.insertBefore(t,n,i):t.insertBefore(n,i,!0)}function Er(e,t,n){Ht(e)?e.appendChild(t,n):t.appendChild(n)}function Or(e,t,n,i){null!==i?Yr(e,t,n,i):Er(e,t,n)}function Ir(e,t){return Ht(e)?e.parentNode(t):t.parentNode}function Pr(e,t){if(2===e.type){const n=br(e,t);return null===n?null:Rr(n.indexOf(t,9)-9,n)}return 4===e.type||5===e.type?zt(e,t):null}function Ar(e,t,n,i){const s=Dr(e,i,t);if(null!=s){const e=t[11],r=Pr(i.parent||t[6],t);if(Array.isArray(n))for(let t=0;t-1&&this._viewContainerRef.detach(e),this._viewContainerRef=null}xr(this._lView[1],this._lView)}onDestroy(e){var t,n,i;t=this._lView[1],i=e,mr(n=this._lView).push(i),t.firstCreatePass&&pr(t).push(n[7].length-1,null)}markForCheck(){lr(this._cdRefInjectingView||this._lView)}detach(){this._lView[2]&=-129}reattach(){this._lView[2]|=128}detectChanges(){cr(this._lView[1],this._lView,this.context)}checkNoChanges(){!function(e,t,n){an(!0);try{cr(e,t,n)}finally{an(!1)}}(this._lView[1],this._lView,this.context)}attachToViewContainerRef(e){if(this._appRef)throw new Error(\"This view is already attached directly to the ApplicationRef!\");this._viewContainerRef=e}detachFromAppRef(){var e;this._appRef=null,Fr(this._lView[1],e=this._lView,e[11],2,null,null)}attachToAppRef(e){if(this._viewContainerRef)throw new Error(\"This view is already attached to a ViewContainer!\");this._appRef=e}}class $r extends Ur{constructor(e){super(e),this._view=e}detectChanges(){dr(this._view)}checkNoChanges(){!function(e){an(!0);try{dr(e)}finally{an(!1)}}(this._view)}get context(){return null}}let Br,qr,Gr;function Jr(e,t,n){return Br||(Br=class extends e{}),new Br(zt(t,n))}function Kr(e,t,n,i){return qr||(qr=class extends e{constructor(e,t,n){super(),this._declarationView=e,this._declarationTContainer=t,this.elementRef=n}createEmbeddedView(e){const t=this._declarationTContainer.tViews,n=Ys(this._declarationView,t,e,16,null,t.node);n[17]=this._declarationView[this._declarationTContainer.index];const i=this._declarationView[5];null!==i&&(n[5]=i.createEmbeddedView(t)),Os(t,n,e);const s=new Ur(n);return s._tViewNode=n[6],s}}),0===n.type?new qr(i,n,Jr(t,n,i)):null}function Zr(e,t,n,i){let s;Gr||(Gr=class extends e{constructor(e,t,n){super(),this._lContainer=e,this._hostTNode=t,this._hostView=n}get element(){return Jr(t,this._hostTNode,this._hostView)}get injector(){return new ai(this._hostTNode,this._hostView)}get parentInjector(){const e=Qn(this._hostTNode,this._hostView),t=Nn(e,this._hostView),n=function(e,t,n){if(n.parent&&-1!==n.parent.injectorIndex){const e=n.parent.injectorIndex;let t=n.parent;for(;null!=t.parent&&e==t.parent.injectorIndex;)t=t.parent;return t}let i=Fn(e),s=t,r=t[6];for(;i>1;)s=s[15],r=s[6],i--;return r}(e,this._hostView,this._hostTNode);return Hn(e)&&null!=n?new ai(n,t):new ai(null,this._hostView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(e){return null!==this._lContainer[8]&&this._lContainer[8][e]||null}get length(){return this._lContainer.length-9}createEmbeddedView(e,t,n){const i=e.createEmbeddedView(t||{});return this.insert(i,n),i}createComponent(e,t,n,i,s){const r=n||this.parentInjector;if(!s&&null==e.ngModule&&r){const e=r.get(it,null);e&&(s=e)}const o=e.create(r,i,void 0,s);return this.insert(o.hostView,t),o}insert(e,t){const n=e._lView,i=n[1];if(e.destroyed)throw new Error(\"Cannot insert a destroyed View in a ViewContainer!\");if(this.allocateContainerIfNeeded(),Dt(n[3])){const t=this.indexOf(e);if(-1!==t)this.detach(t);else{const t=n[3],i=new Gr(t,t[6],t[3]);i.detach(i.indexOf(e))}}const s=this._adjustIndex(t);return function(e,t,n,i){const s=9+i,r=n.length;i>0&&(n[s-1][4]=t),i{class e{}return e.__NG_ELEMENT_ID__=()=>Xr(),e})();const Xr=function(e=!1){return function(e,t,n){if(!n&&Et(e)){const n=Ut(e.index,t);return new Ur(n,n)}return 3===e.type||0===e.type||4===e.type||5===e.type?new Ur(t[16],t):null}(tn(),Qt(),e)},eo=new Ve(\"Set Injector scope.\"),to={},no={},io=[];let so=void 0;function ro(){return void 0===so&&(so=new nt),so}function oo(e,t=null,n=null,i){return new ao(e,n,t||ro(),i)}class ao{constructor(e,t,n,i=null){this.parent=n,this.records=new Map,this.injectorDefTypes=new Set,this.onDestroy=new Set,this._destroyed=!1;const s=[];t&&ot(t,n=>this.processProvider(n,e,t)),ot([e],e=>this.processInjectorType(e,[],s)),this.records.set(We,uo(void 0,this));const r=this.records.get(eo);this.scope=null!=r?r.value:null,this.source=i||(\"object\"==typeof e?null:Se(e))}get destroyed(){return this._destroyed}destroy(){this.assertNotDestroyed(),this._destroyed=!0;try{this.onDestroy.forEach(e=>e.ngOnDestroy())}finally{this.records.clear(),this.onDestroy.clear(),this.injectorDefTypes.clear()}}get(e,t=Ue,n=ue.Default){this.assertNotDestroyed();const i=Je(this);try{if(!(n&ue.SkipSelf)){let t=this.records.get(e);if(void 0===t){const n=(\"function\"==typeof(s=e)||\"object\"==typeof s&&s instanceof Ve)&&_e(e);t=n&&this.injectableDefInScope(n)?uo(lo(e),to):null,this.records.set(e,t)}if(null!=t)return this.hydrate(e,t)}return(n&ue.Self?ro():this.parent).get(e,t=n&ue.Optional&&t===Ue?null:t)}catch(r){if(\"NullInjectorError\"===r.name){if((r.ngTempTokenPath=r.ngTempTokenPath||[]).unshift(Se(e)),i)throw r;return function(e,t,n,i){const s=e.ngTempTokenPath;throw t.__source&&s.unshift(t.__source),e.message=function(e,t,n,i=null){e=e&&\"\\n\"===e.charAt(0)&&\"\\u0275\"==e.charAt(1)?e.substr(2):e;let s=Se(t);if(Array.isArray(t))s=t.map(Se).join(\" -> \");else if(\"object\"==typeof t){let e=[];for(let n in t)if(t.hasOwnProperty(n)){let i=t[n];e.push(n+\":\"+(\"string\"==typeof i?JSON.stringify(i):Se(i)))}s=`{${e.join(\", \")}}`}return`${n}${i?\"(\"+i+\")\":\"\"}[${s}]: ${e.replace($e,\"\\n \")}`}(\"\\n\"+e.message,s,n,i),e.ngTokenPath=s,e.ngTempTokenPath=null,e}(r,e,\"R3InjectorError\",this.source)}throw r}finally{Je(i)}var s}_resolveInjectorDefTypes(){this.injectorDefTypes.forEach(e=>this.get(e))}toString(){const e=[];return this.records.forEach((t,n)=>e.push(Se(n))),`R3Injector[${e.join(\", \")}]`}assertNotDestroyed(){if(this._destroyed)throw new Error(\"Injector has already been destroyed.\")}processInjectorType(e,t,n){if(!(e=Te(e)))return!1;let i=ye(e);const s=null==i&&e.ngModule||void 0,r=void 0===s?e:s,o=-1!==n.indexOf(r);if(void 0!==s&&(i=ye(s)),null==i)return!1;if(null!=i.imports&&!o){let e;n.push(r);try{ot(i.imports,i=>{this.processInjectorType(i,t,n)&&(void 0===e&&(e=[]),e.push(i))})}finally{}if(void 0!==e)for(let t=0;tthis.processProvider(e,n,i||io))}}this.injectorDefTypes.add(r),this.records.set(r,uo(i.factory,to));const a=i.providers;if(null!=a&&!o){const t=e;ot(a,e=>this.processProvider(e,t,a))}return void 0!==s&&void 0!==e.providers}processProvider(e,t,n){let i=mo(e=Te(e))?e:Te(e&&e.provide);const s=function(e,t,n){return ho(e)?uo(void 0,e.useValue):uo(co(e,t,n),to)}(e,t,n);if(mo(e)||!0!==e.multi){const e=this.records.get(i);e&&void 0!==e.multi&&rs()}else{let t=this.records.get(i);t?void 0===t.multi&&rs():(t=uo(void 0,to,!0),t.factory=()=>tt(t.multi),this.records.set(i,t)),i=e,t.multi.push(e)}this.records.set(i,s)}hydrate(e,t){var n;return t.value===no?function(e){throw new Error(`Cannot instantiate cyclic dependency! ${e}`)}(Se(e)):t.value===to&&(t.value=no,t.value=t.factory()),\"object\"==typeof t.value&&t.value&&null!==(n=t.value)&&\"object\"==typeof n&&\"function\"==typeof n.ngOnDestroy&&this.onDestroy.add(t.value),t.value}injectableDefInScope(e){return!!e.providedIn&&(\"string\"==typeof e.providedIn?\"any\"===e.providedIn||e.providedIn===this.scope:this.injectorDefTypes.has(e.providedIn))}}function lo(e){const t=_e(e),n=null!==t?t.factory:xt(e);if(null!==n)return n;const i=ye(e);if(null!==i)return i.factory;if(e instanceof Ve)throw new Error(`Token ${Se(e)} is missing a \\u0275prov definition.`);if(e instanceof Function)return function(e){const t=e.length;if(t>0){const n=ct(t,\"?\");throw new Error(`Can't resolve all parameters for ${Se(e)}: (${n.join(\", \")}).`)}const n=function(e){const t=e&&(e[be]||e[Me]||e[we]&&e[we]());if(t){const n=function(e){if(e.hasOwnProperty(\"name\"))return e.name;const t=(\"\"+e).match(/^function\\s*([^\\s(]+)/);return null===t?\"\":t[1]}(e);return console.warn(`DEPRECATED: DI is instantiating a token \"${n}\" that inherits its @Injectable decorator but does not provide one itself.\\n`+`This will become an error in v10. Please add @Injectable() to the \"${n}\" class.`),t}return null}(e);return null!==n?()=>n.factory(e):()=>new e}(e);throw new Error(\"unreachable\")}function co(e,t,n){let i=void 0;if(mo(e)){const t=Te(e);return xt(t)||lo(t)}if(ho(e))i=()=>Te(e.useValue);else if((s=e)&&s.useFactory)i=()=>e.useFactory(...tt(e.deps||[]));else if(function(e){return!(!e||!e.useExisting)}(e))i=()=>Qe(Te(e.useExisting));else{const s=Te(e&&(e.useClass||e.provide));if(s||function(e,t,n){let i=\"\";throw e&&t&&(i=` - only instances of Provider and Type are allowed, got: [${t.map(e=>e==n?\"?\"+n+\"?\":\"...\").join(\", \")}]`),new Error(`Invalid provider for the NgModule '${Se(e)}'`+i)}(t,n,e),!function(e){return!!e.deps}(e))return xt(s)||lo(s);i=()=>new s(...tt(e.deps))}var s;return i}function uo(e,t,n=!1){return{factory:e,value:t,multi:n?[]:void 0}}function ho(e){return null!==e&&\"object\"==typeof e&&Be in e}function mo(e){return\"function\"==typeof e}const po=function(e,t,n){return function(e,t=null,n=null,i){const s=oo(e,t,n,i);return s._resolveInjectorDefTypes(),s}({name:n},t,e,n)};let fo=(()=>{class e{static create(e,t){return Array.isArray(e)?po(e,t,\"\"):po(e.providers,e.parent,e.name||\"\")}}return e.THROW_IF_NOT_FOUND=Ue,e.NULL=new nt,e.\\u0275prov=pe({token:e,providedIn:\"any\",factory:()=>Qe(We)}),e.__NG_ELEMENT_ID__=-1,e})();const _o=new Ve(\"AnalyzeForEntryComponents\");let go=new Map;const yo=new Set;function bo(e){return\"string\"==typeof e?e:e.text()}function vo(e,t){let n=e.styles,i=e.classes,s=0;for(let r=0;ra(Ft(e[i.index])).target:i.index;if(Ht(n)){let o=null;if(!a&&l&&(o=function(e,t,n,i){const s=e.cleanup;if(null!=s)for(let r=0;rn?e[n]:null}\"string\"==typeof e&&(r+=2)}return null}(e,t,s,i.index)),null!==o)(o.__ngLastListenerFn__||o).__ngNextListenerFn__=r,o.__ngLastListenerFn__=r,u=!1;else{r=Go(i,t,r,!1);const e=n.listen(m.name||p,s,r);d.push(r,e),c&&c.push(s,_,f,f+1)}}else r=Go(i,t,r,!0),p.addEventListener(s,r,o),d.push(r),c&&c.push(s,_,f,o)}const h=i.outputs;let m;if(u&&null!==h&&(m=h[s])){const e=m.length;if(e)for(let n=0;n0;)t=t[15],e--;return t}(e,Kt.lFrame.contextLView))[8]}(e)}function Ko(e,t){let n=null;const i=function(e){const t=e.attrs;if(null!=t){const e=t.indexOf(5);if(0==(1&e))return t[e+1]}return null}(e);for(let s=0;s=0}const oa={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function aa(e){return e.substring(oa.key,oa.keyEnd)}function la(e,t){const n=oa.textEnd;return n===t?-1:(t=oa.keyEnd=function(e,t,n){for(;t32;)t++;return t}(e,oa.key=t,n),ca(e,t,n))}function ca(e,t,n){for(;t=0;n=la(t,n))dt(e,aa(t),!0)}function pa(e,t,n,i){const s=Qt(),r=Xt(),o=cn(2);if(r.firstUpdatePass&&ga(r,e,o,i),t!==_s&&xo(s,o,t)){let a;null==n&&(a=function(){const e=Kt.lFrame;return null===e?null:e.currentSanitizer}())&&(n=a),va(r,r.data[vn()+19],s,s[11],e,s[o+1]=function(e,t){return null==e||(\"function\"==typeof t?e=t(e):\"string\"==typeof t?e+=t:\"object\"==typeof e&&(e=Se(bi(e)))),e}(t,n),i,o)}}function fa(e,t,n,i){const s=Xt(),r=cn(2);s.firstUpdatePass&&ga(s,null,r,i);const o=Qt();if(n!==_s&&xo(o,r,n)){const a=s.data[vn()+19];if(ka(a,i)&&!_a(s,r)){let e=i?a.classes:a.styles;null!==e&&(n=Le(e,n||\"\")),Ao(s,a,o,n,i)}else!function(e,t,n,i,s,r,o,a){s===_s&&(s=ia);let l=0,c=0,d=0=e.expandoStartIndex}function ga(e,t,n,i){const s=e.data;if(null===s[n+1]){const r=s[vn()+19],o=_a(e,n);ka(r,i)&&null===t&&!o&&(t=!1),t=function(e,t,n,i){const s=function(e){const t=Kt.lFrame.currentDirectiveIndex;return-1===t?null:e[t]}(e);let r=i?t.residualClasses:t.residualStyles;if(null===s)0===(i?t.classBindings:t.styleBindings)&&(n=ba(n=ya(null,e,t,n,i),t.attrs,i),r=null);else{const o=t.directiveStylingLast;if(-1===o||e[o]!==s)if(n=ya(s,e,t,n,i),null===r){let n=function(e,t,n){const i=n?t.classBindings:t.styleBindings;if(0!==Ls(i))return e[ks(i)]}(e,t,i);void 0!==n&&Array.isArray(n)&&(n=ya(null,e,t,n[1],i),n=ba(n,t.attrs,i),function(e,t,n,i){e[ks(n?t.classBindings:t.styleBindings)]=i}(e,t,i,n))}else r=function(e,t,n){let i=void 0;const s=t.directiveEnd;for(let r=1+t.directiveStylingLast;r0)&&(d=!0)}else c=n;if(s)if(0!==l){const t=ks(e[a+1]);e[i+1]=Ms(t,a),0!==t&&(e[t+1]=xs(e[t+1],i)),e[a+1]=131071&e[a+1]|i<<17}else e[i+1]=Ms(a,0),0!==a&&(e[a+1]=xs(e[a+1],i)),a=i;else e[i+1]=Ms(l,0),0===a?a=i:e[l+1]=xs(e[l+1],i),l=i;d&&(e[i+1]=Ss(e[i+1])),sa(e,c,i,!0),sa(e,c,i,!1),function(e,t,n,i,s){const r=s?e.residualClasses:e.residualStyles;null!=r&&\"string\"==typeof t&&ht(r,t)>=0&&(n[i+1]=Cs(n[i+1]))}(t,c,e,i,r),o=Ms(a,l),r?t.classBindings=o:t.styleBindings=o}(s,r,t,n,o,i)}}function ya(e,t,n,i,s){let r=null;const o=n.directiveEnd;let a=n.directiveStylingLast;for(-1===a?a=n.directiveStart:a++;a0;){const t=e[s],r=Array.isArray(t),l=r?t[1]:t,c=null===l;let d=n[s+1];d===_s&&(d=c?ia:void 0);let u=c?ut(d,i):l===i?d:void 0;if(r&&!Ma(u)&&(u=ut(t,i)),Ma(u)&&(a=u,o))return a;const h=e[s+1];s=o?ks(h):Ls(h)}if(null!==t){let e=r?t.residualClasses:t.residualStyles;null!=e&&(a=ut(e,i))}return a}function Ma(e){return void 0!==e}function ka(e,t){return 0!=(e.flags&(t?16:32))}function Sa(e,t=\"\"){const n=Qt(),i=Xt(),s=e+19,r=i.firstCreatePass?Es(i,n[6],e,3,null,null):i.data[s],o=n[s]=Mr(t,n[11]);Ar(i,n,o,r),nn(r,!1)}function La(e){return xa(\"\",e,\"\"),La}function xa(e,t,n){const i=Qt(),s=To(i,e,t,n);return s!==_s&&yr(i,vn(),s),xa}function Ca(e,t,n){const i=Qt();return xo(i,ln(),t)&&Ws(Xt(),Mn(),i,e,t,i[11],n,!0),Ca}function Ta(e,t,n){const i=Qt();if(xo(i,ln(),t)){const s=Xt(),r=Mn();Ws(s,r,i,e,t,fr(r,i),n,!0)}return Ta}function Da(e,t){const n=$t(e)[1],i=n.data.length-1;Ln(n,{directiveStart:i,directiveEnd:i+1})}function Ya(e){let t=Object.getPrototypeOf(e.type.prototype).constructor,n=!0;const i=[e];for(;t;){let s=void 0;if(It(e))s=t.\\u0275cmp||t.\\u0275dir;else{if(t.\\u0275cmp)throw new Error(\"Directives cannot inherit Components\");s=t.\\u0275dir}if(s){if(n){i.push(s);const t=e;t.inputs=Ea(e.inputs),t.declaredInputs=Ea(e.declaredInputs),t.outputs=Ea(e.outputs);const n=s.hostBindings;n&&Pa(e,n);const r=s.viewQuery,o=s.contentQueries;if(r&&Oa(e,r),o&&Ia(e,o),me(e.inputs,s.inputs),me(e.declaredInputs,s.declaredInputs),me(e.outputs,s.outputs),It(s)&&s.data.animation){const t=e.data;t.animation=(t.animation||[]).concat(s.data.animation)}t.afterContentChecked=t.afterContentChecked||s.afterContentChecked,t.afterContentInit=e.afterContentInit||s.afterContentInit,t.afterViewChecked=e.afterViewChecked||s.afterViewChecked,t.afterViewInit=e.afterViewInit||s.afterViewInit,t.doCheck=e.doCheck||s.doCheck,t.onDestroy=e.onDestroy||s.onDestroy,t.onInit=e.onInit||s.onInit}const t=s.features;if(t)for(let i=0;i=0;i--){const s=e[i];s.hostVars=t+=s.hostVars,s.hostAttrs=An(s.hostAttrs,n=An(n,s.hostAttrs))}}(i)}function Ea(e){return e===ft?{}:e===_t?[]:e}function Oa(e,t){const n=e.viewQuery;e.viewQuery=n?(e,i)=>{t(e,i),n(e,i)}:t}function Ia(e,t){const n=e.contentQueries;e.contentQueries=n?(e,i,s)=>{t(e,i,s),n(e,i,s)}:t}function Pa(e,t){const n=e.hostBindings;e.hostBindings=n?(e,i)=>{t(e,i),n(e,i)}:t}class Aa{constructor(e,t,n){this.previousValue=e,this.currentValue=t,this.firstChange=n}isFirstChange(){return this.firstChange}}function Ra(e){e.type.prototype.ngOnChanges&&(e.setInput=Ha,e.onChanges=function(){const e=ja(this),t=e&&e.current;if(t){const n=e.previous;if(n===ft)e.previous=t;else for(let e in t)n[e]=t[e];e.current=null,this.ngOnChanges(t)}})}function Ha(e,t,n,i){const s=ja(e)||function(e,t){return e.__ngSimpleChanges__=t}(e,{previous:ft,current:null}),r=s.current||(s.current={}),o=s.previous,a=this.declaredInputs[n],l=o[a];r[a]=new Aa(l&&l.currentValue,t,o===ft),e[i]=t}function ja(e){return e.__ngSimpleChanges__||null}function Fa(e,t,n,i,s){if(e=Te(e),Array.isArray(e))for(let r=0;r>16;if(mo(e)||!e.multi){const i=new En(l,s,Eo),m=Va(a,t,s?d:d+h,u);-1===m?(Xn(Jn(c,o),r,a),Na(r,e,t.length),t.push(a),c.directiveStart++,c.directiveEnd++,s&&(c.providerIndexes+=65536),n.push(i),o.push(i)):(n[m]=i,o[m]=i)}else{const m=Va(a,t,d+h,u),p=Va(a,t,d,d+h),f=m>=0&&n[m],_=p>=0&&n[p];if(s&&!_||!s&&!f){Xn(Jn(c,o),r,a);const d=function(e,t,n,i,s){const r=new En(e,n,Eo);return r.multi=[],r.index=t,r.componentProviders=0,za(r,s,i&&!n),r}(s?Ua:Wa,n.length,s,i,l);!s&&_&&(n[p].providerFactory=d),Na(r,e,t.length),t.push(a),c.directiveStart++,c.directiveEnd++,s&&(c.providerIndexes+=65536),n.push(d),o.push(d)}else Na(r,e,m>-1?m:p),za(n[s?p:m],l,!s&&i);!s&&i&&_&&n[p].componentProviders++}}}function Na(e,t,n){if(mo(t)||t.useClass){const i=(t.useClass||t).prototype.ngOnDestroy;i&&(e.destroyHooks||(e.destroyHooks=[])).push(n,i)}}function za(e,t,n){e.multi.push(t),n&&e.componentProviders++}function Va(e,t,n,i){for(let s=n;s{n.providersResolver=(n,i)=>function(e,t,n){const i=Xt();if(i.firstCreatePass){const s=It(e);Fa(n,i.data,i.blueprint,s,!0),Fa(t,i.data,i.blueprint,s,!1)}}(n,i?i(e):e,t)}}Ra.ngInherit=!0;class qa{}class Ga{resolveComponentFactory(e){throw function(e){const t=Error(`No component factory found for ${Se(e)}. Did you add it to @NgModule.entryComponents?`);return t.ngComponent=e,t}(e)}}let Ja=(()=>{class e{}return e.NULL=new Ga,e})(),Ka=(()=>{class e{constructor(e){this.nativeElement=e}}return e.__NG_ELEMENT_ID__=()=>Za(e),e})();const Za=function(e){return Jr(e,tn(),Qt())};class Qa{}const Xa=function(){var e={Important:1,DashCase:2};return e[e.Important]=\"Important\",e[e.DashCase]=\"DashCase\",e}();let el=(()=>{class e{}return e.__NG_ELEMENT_ID__=()=>tl(),e})();const tl=function(){const e=Qt(),t=Ut(tn().index,e);return function(e){const t=e[11];if(Ht(t))return t;throw new Error(\"Cannot inject Renderer2 when the application uses Renderer3!\")}(Tt(t)?t:e)};let nl=(()=>{class e{}return e.\\u0275prov=pe({token:e,providedIn:\"root\",factory:()=>null}),e})();class il{constructor(e){this.full=e,this.major=e.split(\".\")[0],this.minor=e.split(\".\")[1],this.patch=e.split(\".\").slice(2).join(\".\")}}const sl=new il(\"9.0.7\");class rl{constructor(){}supports(e){return So(e)}create(e){return new al(e)}}const ol=(e,t)=>t;class al{constructor(e){this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=e||ol}forEachItem(e){let t;for(t=this._itHead;null!==t;t=t._next)e(t)}forEachOperation(e){let t=this._itHead,n=this._removalsHead,i=0,s=null;for(;t||n;){const r=!n||t&&t.currentIndex{i=this._trackByFn(t,e),null!==s&&ko(s.trackById,i)?(r&&(s=this._verifyReinsertion(s,e,i,t)),ko(s.item,e)||this._addIdentityChange(s,e)):(s=this._mismatch(s,e,i,t),r=!0),s=s._next,t++}),this.length=t;return this._truncate(s),this.collection=e,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let e,t;for(e=this._previousItHead=this._itHead;null!==e;e=e._next)e._nextPrevious=e._next;for(e=this._additionsHead;null!==e;e=e._nextAdded)e.previousIndex=e.currentIndex;for(this._additionsHead=this._additionsTail=null,e=this._movesHead;null!==e;e=t)e.previousIndex=e.currentIndex,t=e._nextMoved;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(e,t,n,i){let s;return null===e?s=this._itTail:(s=e._prev,this._remove(e)),null!==(e=null===this._linkedRecords?null:this._linkedRecords.get(n,i))?(ko(e.item,t)||this._addIdentityChange(e,t),this._moveAfter(e,s,i)):null!==(e=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null))?(ko(e.item,t)||this._addIdentityChange(e,t),this._reinsertAfter(e,s,i)):e=this._addAfter(new ll(t,n),s,i),e}_verifyReinsertion(e,t,n,i){let s=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null);return null!==s?e=this._reinsertAfter(s,e._prev,i):e.currentIndex!=i&&(e.currentIndex=i,this._addToMoves(e,i)),e}_truncate(e){for(;null!==e;){const t=e._next;this._addToRemovals(this._unlink(e)),e=t}null!==this._unlinkedRecords&&this._unlinkedRecords.clear(),null!==this._additionsTail&&(this._additionsTail._nextAdded=null),null!==this._movesTail&&(this._movesTail._nextMoved=null),null!==this._itTail&&(this._itTail._next=null),null!==this._removalsTail&&(this._removalsTail._nextRemoved=null),null!==this._identityChangesTail&&(this._identityChangesTail._nextIdentityChange=null)}_reinsertAfter(e,t,n){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(e);const i=e._prevRemoved,s=e._nextRemoved;return null===i?this._removalsHead=s:i._nextRemoved=s,null===s?this._removalsTail=i:s._prevRemoved=i,this._insertAfter(e,t,n),this._addToMoves(e,n),e}_moveAfter(e,t,n){return this._unlink(e),this._insertAfter(e,t,n),this._addToMoves(e,n),e}_addAfter(e,t,n){return this._insertAfter(e,t,n),this._additionsTail=null===this._additionsTail?this._additionsHead=e:this._additionsTail._nextAdded=e,e}_insertAfter(e,t,n){const i=null===t?this._itHead:t._next;return e._next=i,e._prev=t,null===i?this._itTail=e:i._prev=e,null===t?this._itHead=e:t._next=e,null===this._linkedRecords&&(this._linkedRecords=new dl),this._linkedRecords.put(e),e.currentIndex=n,e}_remove(e){return this._addToRemovals(this._unlink(e))}_unlink(e){null!==this._linkedRecords&&this._linkedRecords.remove(e);const t=e._prev,n=e._next;return null===t?this._itHead=n:t._next=n,null===n?this._itTail=t:n._prev=t,e}_addToMoves(e,t){return e.previousIndex===t||(this._movesTail=null===this._movesTail?this._movesHead=e:this._movesTail._nextMoved=e),e}_addToRemovals(e){return null===this._unlinkedRecords&&(this._unlinkedRecords=new dl),this._unlinkedRecords.put(e),e.currentIndex=null,e._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=e,e._prevRemoved=null):(e._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=e),e}_addIdentityChange(e,t){return e.item=t,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=e:this._identityChangesTail._nextIdentityChange=e,e}}class ll{constructor(e,t){this.item=e,this.trackById=t,this.currentIndex=null,this.previousIndex=null,this._nextPrevious=null,this._prev=null,this._next=null,this._prevDup=null,this._nextDup=null,this._prevRemoved=null,this._nextRemoved=null,this._nextAdded=null,this._nextMoved=null,this._nextIdentityChange=null}}class cl{constructor(){this._head=null,this._tail=null}add(e){null===this._head?(this._head=this._tail=e,e._nextDup=null,e._prevDup=null):(this._tail._nextDup=e,e._prevDup=this._tail,e._nextDup=null,this._tail=e)}get(e,t){let n;for(n=this._head;null!==n;n=n._nextDup)if((null===t||t<=n.currentIndex)&&ko(n.trackById,e))return n;return null}remove(e){const t=e._prevDup,n=e._nextDup;return null===t?this._head=n:t._nextDup=n,null===n?this._tail=t:n._prevDup=t,null===this._head}}class dl{constructor(){this.map=new Map}put(e){const t=e.trackById;let n=this.map.get(t);n||(n=new cl,this.map.set(t,n)),n.add(e)}get(e,t){const n=this.map.get(e);return n?n.get(e,t):null}remove(e){const t=e.trackById;return this.map.get(t).remove(e)&&this.map.delete(t),e}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function ul(e,t,n){const i=e.previousIndex;if(null===i)return i;let s=0;return n&&i{if(t&&t.key===n)this._maybeAddToChanges(t,e),this._appendAfter=t,t=t._next;else{const i=this._getOrCreateRecordForKey(n,e);t=this._insertBeforeOrAppend(t,i)}}),t){t._prev&&(t._prev._next=null),this._removalsHead=t;for(let e=t;null!==e;e=e._nextRemoved)e===this._mapHead&&(this._mapHead=null),this._records.delete(e.key),e._nextRemoved=e._next,e.previousValue=e.currentValue,e.currentValue=null,e._prev=null,e._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(e,t){if(e){const n=e._prev;return t._next=e,t._prev=n,e._prev=t,n&&(n._next=t),e===this._mapHead&&(this._mapHead=t),this._appendAfter=e,e}return this._appendAfter?(this._appendAfter._next=t,t._prev=this._appendAfter):this._mapHead=t,this._appendAfter=t,null}_getOrCreateRecordForKey(e,t){if(this._records.has(e)){const n=this._records.get(e);this._maybeAddToChanges(n,t);const i=n._prev,s=n._next;return i&&(i._next=s),s&&(s._prev=i),n._next=null,n._prev=null,n}const n=new pl(e);return this._records.set(e,n),n.currentValue=t,this._addToAdditions(n),n}_reset(){if(this.isDirty){let e;for(this._previousMapHead=this._mapHead,e=this._previousMapHead;null!==e;e=e._next)e._nextPrevious=e._next;for(e=this._changesHead;null!==e;e=e._nextChanged)e.previousValue=e.currentValue;for(e=this._additionsHead;null!=e;e=e._nextAdded)e.previousValue=e.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(e,t){ko(t,e.currentValue)||(e.previousValue=e.currentValue,e.currentValue=t,this._addToChanges(e))}_addToAdditions(e){null===this._additionsHead?this._additionsHead=this._additionsTail=e:(this._additionsTail._nextAdded=e,this._additionsTail=e)}_addToChanges(e){null===this._changesHead?this._changesHead=this._changesTail=e:(this._changesTail._nextChanged=e,this._changesTail=e)}_forEach(e,t){e instanceof Map?e.forEach(t):Object.keys(e).forEach(n=>t(e[n],n))}}class pl{constructor(e){this.key=e,this.previousValue=null,this.currentValue=null,this._nextPrevious=null,this._next=null,this._prev=null,this._nextAdded=null,this._nextRemoved=null,this._nextChanged=null}}let fl=(()=>{class e{constructor(e){this.factories=e}static create(t,n){if(null!=n){const e=n.factories.slice();t=t.concat(e)}return new e(t)}static extend(t){return{provide:e,useFactory:n=>{if(!n)throw new Error(\"Cannot extend IterableDiffers without a parent injector\");return e.create(t,n)},deps:[[e,new de,new le]]}}find(e){const t=this.factories.find(t=>t.supports(e));if(null!=t)return t;throw new Error(`Cannot find a differ supporting object '${e}' of type '${n=e,n.name||typeof n}'`);var n}}return e.\\u0275prov=pe({token:e,providedIn:\"root\",factory:()=>new e([new rl])}),e})(),_l=(()=>{class e{constructor(e){this.factories=e}static create(t,n){if(n){const e=n.factories.slice();t=t.concat(e)}return new e(t)}static extend(t){return{provide:e,useFactory:n=>{if(!n)throw new Error(\"Cannot extend KeyValueDiffers without a parent injector\");return e.create(t,n)},deps:[[e,new de,new le]]}}find(e){const t=this.factories.find(t=>t.supports(e));if(t)return t;throw new Error(`Cannot find a differ supporting object '${e}'`)}}return e.\\u0275prov=pe({token:e,providedIn:\"root\",factory:()=>new e([new hl])}),e})();const gl=[new hl],yl=new fl([new rl]),bl=new _l(gl);let vl=(()=>{class e{}return e.__NG_ELEMENT_ID__=()=>wl(e,Ka),e})();const wl=function(e,t){return Kr(e,t,tn(),Qt())};let Ml=(()=>{class e{}return e.__NG_ELEMENT_ID__=()=>kl(e,Ka),e})();const kl=function(e,t){return Zr(e,t,tn(),Qt())},Sl={};class Ll extends Ja{constructor(e){super(),this.ngModule=e}resolveComponentFactory(e){const t=Lt(e);return new Tl(t,this.ngModule)}}function xl(e){const t=[];for(let n in e)e.hasOwnProperty(n)&&t.push({propName:e[n],templateName:n});return t}const Cl=new Ve(\"SCHEDULER_TOKEN\",{providedIn:\"root\",factory:()=>Wn});class Tl extends qa{constructor(e,t){super(),this.componentDef=e,this.ngModule=t,this.componentType=e.type,this.selector=e.selectors.map(fs).join(\",\"),this.ngContentSelectors=e.ngContentSelectors?e.ngContentSelectors:[],this.isBoundToModule=!!t}get inputs(){return xl(this.componentDef.inputs)}get outputs(){return xl(this.componentDef.outputs)}create(e,t,n,i){const s=(i=i||this.ngModule)?function(e,t){return{get:(n,i,s)=>{const r=e.get(n,Sl,s);return r!==Sl||i===Sl?r:t.get(n,i,s)}}}(e,i.injector):e,r=s.get(Qa,jt),o=s.get(nl,null),a=r.createRenderer(null,this.componentDef),l=this.componentDef.selectors[0][0]||\"div\",c=n?function(e,t,n){if(Ht(e))return e.selectRootElement(t,n===pt.ShadowDom);let i=\"string\"==typeof t?e.querySelector(t):t;return i.textContent=\"\",i}(a,n,this.componentDef.encapsulation):Ds(l,r.createRenderer(null,this.componentDef),function(e){const t=e.toLowerCase();return\"svg\"===t?\"http://www.w3.org/2000/svg\":\"math\"===t?\"http://www.w3.org/1998/MathML/\":null}(l)),d=this.componentDef.onPush?576:528,u=\"string\"==typeof n&&/^#root-ng-internal-isolated-\\d+/.test(n),h={components:[],scheduler:Wn,clean:hr,playerHandler:null,flags:0},m=Ns(0,-1,null,1,0,null,null,null,null,null),p=Ys(null,m,h,d,null,null,r,a,o,s);let f,_;pn(p,null);try{const e=function(e,t,n,i,s,r){const o=n[1];n[19]=e;const a=Es(o,null,0,3,null,null),l=a.mergedAttrs=t.hostAttrs;null!==l&&(vo(a,l),null!==e&&(On(s,e,l),null!==a.classes&&Wr(s,e,a.classes),null!==a.styles&&Vr(s,e,a.styles)));const c=i.createRenderer(e,t),d=Ys(n,Fs(t),null,t.onPush?64:16,n[19],a,i,c,void 0);return o.firstCreatePass&&(Xn(Jn(a,n),o,t.type),Js(o,a),Zs(a,n.length,1)),ar(n,d),n[19]=d}(c,this.componentDef,p,r,a);if(c)if(n)On(a,c,[\"ng-version\",sl.full]);else{const{attrs:e,classes:t}=function(e){const t=[],n=[];let i=1,s=2;for(;i0&&Wr(a,c,t.join(\" \"))}_=Vt(p[1],0),t&&(_.projection=t.map(e=>Array.from(e))),f=function(e,t,n,i,s){const r=n[1],o=function(e,t,n){const i=tn();e.firstCreatePass&&(n.providersResolver&&n.providersResolver(n),Gs(e,i,1),Qs(e,t,n));const s=si(t,e,t.length-1,i);is(s,t);const r=zt(i,t);return r&&is(r,t),s}(r,n,t);i.components.push(o),e[8]=o,s&&s.forEach(e=>e(o,t)),t.contentQueries&&t.contentQueries(1,o,n.length-1);const a=tn();if(r.firstCreatePass&&(null!==t.hostBindings||null!==t.hostAttrs)){wn(a.index-19);const e=n[1];$s(e,t),Bs(e,n,t.hostVars),qs(t,o)}return o}(e,this.componentDef,p,h,[Da]),Os(m,p,null)}finally{bn()}const g=new Dl(this.componentType,f,Jr(Ka,_,p),p,_);return n&&!u||(g.hostView._tViewNode.child=_),g}}class Dl extends class{}{constructor(e,t,n,i,s){super(),this.location=n,this._rootLView=i,this._tNode=s,this.destroyCbs=[],this.instance=t,this.hostView=this.changeDetectorRef=new $r(i),this.hostView._tViewNode=function(e,t,n,i){let s=e.node;return null==s&&(e.node=s=zs(0,null,2,-1,null,null)),i[6]=s}(i[1],0,0,i),this.componentType=e}get injector(){return new ai(this._tNode,this._rootLView)}destroy(){this.destroyCbs&&(this.destroyCbs.forEach(e=>e()),this.destroyCbs=null,!this.hostView.destroyed&&this.hostView.destroy())}onDestroy(e){this.destroyCbs&&this.destroyCbs.push(e)}}const Yl=void 0;var El=[\"en\",[[\"a\",\"p\"],[\"AM\",\"PM\"],Yl],[[\"AM\",\"PM\"],Yl,Yl],[[\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"],[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"]],Yl,[[\"J\",\"F\",\"M\",\"A\",\"M\",\"J\",\"J\",\"A\",\"S\",\"O\",\"N\",\"D\"],[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"]],Yl,[[\"B\",\"A\"],[\"BC\",\"AD\"],[\"Before Christ\",\"Anno Domini\"]],0,[6,0],[\"M/d/yy\",\"MMM d, y\",\"MMMM d, y\",\"EEEE, MMMM d, y\"],[\"h:mm a\",\"h:mm:ss a\",\"h:mm:ss a z\",\"h:mm:ss a zzzz\"],[\"{1}, {0}\",Yl,\"{1} 'at' {0}\",Yl],[\".\",\",\",\";\",\"%\",\"+\",\"-\",\"E\",\"\\xd7\",\"\\u2030\",\"\\u221e\",\"NaN\",\":\"],[\"#,##0.###\",\"#,##0%\",\"\\xa4#,##0.00\",\"#E0\"],\"USD\",\"$\",\"US Dollar\",{},function(e){let t=Math.floor(Math.abs(e)),n=e.toString().replace(/^[^.]*\\.?/,\"\").length;return 1===t&&0===n?1:5}];let Ol={};function Il(e){return function(e){const t=function(e){return e.toLowerCase().replace(/_/g,\"-\")}(e);let n=Pl(t);if(n)return n;const i=t.split(\"-\")[0];if(n=Pl(i),n)return n;if(\"en\"===i)return El;throw new Error(`Missing locale data for the locale \"${e}\".`)}(e)[Al.PluralCase]}function Pl(e){return e in Ol||(Ol[e]=Pe.ng&&Pe.ng.common&&Pe.ng.common.locales&&Pe.ng.common.locales[e]),Ol[e]}const Al=function(){var e={LocaleId:0,DayPeriodsFormat:1,DayPeriodsStandalone:2,DaysFormat:3,DaysStandalone:4,MonthsFormat:5,MonthsStandalone:6,Eras:7,FirstDayOfWeek:8,WeekendRange:9,DateFormat:10,TimeFormat:11,DateTimeFormat:12,NumberSymbols:13,NumberFormats:14,CurrencyCode:15,CurrencySymbol:16,CurrencyName:17,Currencies:18,PluralCase:19,ExtraData:20};return e[e.LocaleId]=\"LocaleId\",e[e.DayPeriodsFormat]=\"DayPeriodsFormat\",e[e.DayPeriodsStandalone]=\"DayPeriodsStandalone\",e[e.DaysFormat]=\"DaysFormat\",e[e.DaysStandalone]=\"DaysStandalone\",e[e.MonthsFormat]=\"MonthsFormat\",e[e.MonthsStandalone]=\"MonthsStandalone\",e[e.Eras]=\"Eras\",e[e.FirstDayOfWeek]=\"FirstDayOfWeek\",e[e.WeekendRange]=\"WeekendRange\",e[e.DateFormat]=\"DateFormat\",e[e.TimeFormat]=\"TimeFormat\",e[e.DateTimeFormat]=\"DateTimeFormat\",e[e.NumberSymbols]=\"NumberSymbols\",e[e.NumberFormats]=\"NumberFormats\",e[e.CurrencyCode]=\"CurrencyCode\",e[e.CurrencySymbol]=\"CurrencySymbol\",e[e.CurrencyName]=\"CurrencyName\",e[e.Currencies]=\"Currencies\",e[e.PluralCase]=\"PluralCase\",e[e.ExtraData]=\"ExtraData\",e}(),Rl=/^\\s*(\\ufffd\\d+:?\\d*\\ufffd)\\s*,\\s*(select|plural)\\s*,/,Hl=/\\ufffd\\/?\\*(\\d+:\\d+)\\ufffd/gi,jl=/\\ufffd(\\/?[#*!]\\d+):?\\d*\\ufffd/gi,Fl=/\\ufffd(\\d+):?\\d*\\ufffd/gi,Nl=/({\\s*\\ufffd\\d+:?\\d*\\ufffd\\s*,\\s*\\S{6}\\s*,[\\s\\S]*})/gi;function zl(e){if(!e)return[];let t=0;const n=[],i=[],s=/[{}]/g;let r;for(s.lastIndex=0;r=s.exec(e);){const s=r.index;if(\"}\"==r[0]){if(n.pop(),0==n.length){const n=e.substring(t,s);Rl.test(n)?i.push(Vl(n)):i.push(n),t=s+1}}else{if(0==n.length){const n=e.substring(t,s);i.push(n),t=s+1}n.push(\"{\")}}const o=e.substring(t);return i.push(o),i}function Vl(e){const t=[],n=[];let i=1,s=0;const r=zl(e=e.replace(Rl,(function(e,t,n){return i=\"select\"===n?0:1,s=parseInt(t.substr(1),10),\"\"})));for(let o=0;on.length&&n.push(s)}return{type:i,mainBinding:s,cases:t,values:n}}function Wl(e){let t,n,i=\"\",s=0,r=!1;for(;null!==(t=Hl.exec(e));)r?t[0]===`\\ufffd/*${n}\\ufffd`&&(s=t.index,r=!1):(i+=e.substring(s,t.index+t[0].length),n=t[1],r=!0);return i+=e.substr(s),i}function Ul(e,t,n,i=null){const s=[null,null],r=e.split(Fl);let o=0;for(let a=0;a>>17;let d;d=s===e?i[6]:Vt(n,s),o=Zl(n,r,d,o,i);break;case 0:const u=c>=0,h=(u?c:~c)>>>3;a.push(h),o=r,r=Vt(n,h),r&&nn(r,u);break;case 5:o=r=Vt(n,c>>>3),nn(r,!1);break;case 4:const m=t[++l],p=t[++l];er(Vt(n,c>>>3),i,m,p,null,null);break;default:throw new Error(`Unable to determine the type of mutate operation for \"${c}\"`)}else switch(c){case ws:const e=t[++l],d=t[++l],u=s.createComment(e);o=r,r=Ql(n,i,d,5,u,null),a.push(d),is(u,i),r.activeCaseIndex=null,rn();break;case vs:const h=t[++l],m=t[++l];o=r,r=Ql(n,i,m,3,s.createElement(h),h),a.push(m);break;default:throw new Error(`Unable to determine the type of mutate operation for \"${c}\"`)}}return rn(),a}function ec(e,t,n,i){const s=Vt(e,n),r=Nt(n,t);r&&Hr(t[11],r);const o=Wt(t,n);if(Dt(o)){const e=o;0!==s.type&&Hr(t[11],e[7])}i&&(s.flags|=64)}function tc(e,t,n){(function(e,t,n){const i=Xt();Bl[++ql]=e,Xo(!0),i.firstCreatePass&&null===i.data[e+19]&&function(e,t,n,i,s){const r=t.blueprint.length-19;Kl=0;const o=tn(),a=sn()?o:o&&o.parent;let l=a&&a!==e[6]?a.index-19:n,c=0;Jl[c]=l;const d=[];if(n>0&&o!==a){let e=o.index-19;sn()||(e=~e),d.push(e<<3|0)}const u=[],h=[],m=function(e,t){if(\"number\"!=typeof t)return Wl(e);{const n=e.indexOf(`:${t}\\ufffd`)+2+t.toString().length,i=e.search(new RegExp(`\\ufffd\\\\/\\\\*\\\\d+:${t}\\ufffd`));return Wl(e.substring(n,i))}}(i,s),p=(f=m,f.replace(uc,\" \")).split(jl);var f;for(let _=0;_0&&function(e,t,n){if(n>0&&e.firstCreatePass){for(let i=0;i>1),o++}}(Xt(),e),Xo(!1)}()}function nc(e,t){!function(e,t,n,i){const s=tn().index-19,r=[];for(let o=0;o>>2;let h,m,p;switch(3&c){case 1:const c=t[++d],f=t[++d];Ws(r,Vt(r,u),o,c,a,o[11],f,!1);break;case 0:yr(o,u,a);break;case 2:if(h=t[++d],m=n[h],p=Vt(r,u),null!==p.activeCaseIndex){const e=m.remove[p.activeCaseIndex];for(let t=0;t>>3,!1);break;case 6:const s=Vt(r,e[t+1]>>>3).activeCaseIndex;null!==s&&rt(n[i>>>3].remove[s],e)}}}const _=ac(m,a);p.activeCaseIndex=-1!==_?_:null,_>-1&&(Xl(-1,m.create[_],r,o),l=!0);break;case 3:h=t[++d],m=n[h],p=Vt(r,u),null!==p.activeCaseIndex&&e(m.update[p.activeCaseIndex],n,i,s,r,o,l)}}}}c+=u}}(i,s,r,ic,t,o),ic=0,sc=0}}function ac(e,t){let n=e.cases.indexOf(t);if(-1===n)switch(e.type){case 1:{const i=function(e,t){switch(Il(t)(e)){case 0:return\"zero\";case 1:return\"one\";case 2:return\"two\";case 3:return\"few\";case 4:return\"many\";default:return\"other\"}}(t,hc);n=e.cases.indexOf(i),-1===n&&\"other\"!==i&&(n=e.cases.indexOf(\"other\"));break}case 0:n=e.cases.indexOf(\"other\")}return n}function lc(e,t,n,i){const s=[],r=[],o=[],a=[],l=[];for(let c=0;c null != ${t} <=Actual]`)}(n,t),\"string\"==typeof e&&(hc=e.toLowerCase().replace(/_/g,\"-\"))}const pc=new Map;class fc extends it{constructor(e,t){super(),this._parent=t,this._bootstrapComponents=[],this.injector=this,this.destroyCbs=[],this.componentFactoryResolver=new Ll(this);const n=Ct(e),i=e[Fe]||null;i&&mc(i),this._bootstrapComponents=$n(n.bootstrap),this._r3Injector=oo(e,t,[{provide:it,useValue:this},{provide:Ja,useValue:this.componentFactoryResolver}],Se(e)),this._r3Injector._resolveInjectorDefTypes(),this.instance=this.get(e)}get(e,t=fo.THROW_IF_NOT_FOUND,n=ue.Default){return e===fo||e===it||e===We?this:this._r3Injector.get(e,t,n)}destroy(){const e=this._r3Injector;!e.destroyed&&e.destroy(),this.destroyCbs.forEach(e=>e()),this.destroyCbs=null}onDestroy(e){this.destroyCbs.push(e)}}class _c extends st{constructor(e){super(),this.moduleType=e,null!==Ct(e)&&function e(t){if(null!==t.\\u0275mod.id){const e=t.\\u0275mod.id;(function(e,t,n){if(t&&t!==n)throw new Error(`Duplicate module registered for ${e} - ${Se(t)} vs ${Se(t.name)}`)})(e,pc.get(e),t),pc.set(e,t)}let n=t.\\u0275mod.imports;n instanceof Function&&(n=n()),n&&n.forEach(t=>e(t))}(e)}create(e){return new fc(this.moduleType,e)}}function gc(e,t,n){const i=function(){const e=Kt.lFrame;let t=e.bindingRootIndex;return-1===t&&(t=e.bindingRootIndex=e.tView.bindingStartIndex),t}()+e,s=Qt();return s[i]===_s?function(e,t,n){return e[t]=n}(s,i,n?t.call(n):t()):function(e,t){return e[t]}(s,i)}class yc extends L{constructor(e=!1){super(),this.__isAsync=e}emit(e){super.next(e)}subscribe(e,t,n){let i,s=e=>null,r=()=>null;e&&\"object\"==typeof e?(i=this.__isAsync?t=>{setTimeout(()=>e.next(t))}:t=>{e.next(t)},e.error&&(s=this.__isAsync?t=>{setTimeout(()=>e.error(t))}:t=>{e.error(t)}),e.complete&&(r=this.__isAsync?()=>{setTimeout(()=>e.complete())}:()=>{e.complete()})):(i=this.__isAsync?t=>{setTimeout(()=>e(t))}:t=>{e(t)},t&&(s=this.__isAsync?e=>{setTimeout(()=>t(e))}:e=>{t(e)}),n&&(r=this.__isAsync?()=>{setTimeout(()=>n())}:()=>{n()}));const o=super.subscribe(i,s,r);return e instanceof u&&e.add(o),o}}function bc(){return this._results[Mo()]()}class vc{constructor(){this.dirty=!0,this._results=[],this.changes=new yc,this.length=0;const e=Mo(),t=vc.prototype;t[e]||(t[e]=bc)}map(e){return this._results.map(e)}filter(e){return this._results.filter(e)}find(e){return this._results.find(e)}reduce(e,t){return this._results.reduce(e,t)}forEach(e){this._results.forEach(e)}some(e){return this._results.some(e)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(e){this._results=function e(t,n){void 0===n&&(n=t);for(let i=0;i0)s.push(a[t/2]);else{const r=o[t+1],a=n[-i];for(let t=9;t{class e{constructor(e){this.appInits=e,this.initialized=!1,this.done=!1,this.donePromise=new Promise((e,t)=>{this.resolve=e,this.reject=t})}runInitializers(){if(this.initialized)return;const e=[],t=()=>{this.done=!0,this.resolve()};if(this.appInits)for(let n=0;n{t()}).catch(e=>{this.reject(e)}),0===e.length&&t(),this.initialized=!0}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nc,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const Vc=new Ve(\"AppId\"),Wc={provide:Vc,useFactory:function(){return`${Uc()}${Uc()}${Uc()}`},deps:[]};function Uc(){return String.fromCharCode(97+Math.floor(25*Math.random()))}const $c=new Ve(\"Platform Initializer\"),Bc=new Ve(\"Platform ID\"),qc=new Ve(\"appBootstrapListener\");let Gc=(()=>{class e{log(e){console.log(e)}warn(e){console.warn(e)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const Jc=new Ve(\"LocaleId\"),Kc=new Ve(\"DefaultCurrencyCode\");class Zc{constructor(e,t){this.ngModuleFactory=e,this.componentFactories=t}}const Qc=function(e){return new _c(e)},Xc=Qc,ed=function(e){return Promise.resolve(Qc(e))},td=function(e){const t=Qc(e),n=$n(Ct(e).declarations).reduce((e,t)=>{const n=Lt(t);return n&&e.push(new Tl(n)),e},[]);return new Zc(t,n)},nd=td,id=function(e){return Promise.resolve(td(e))};let sd=(()=>{class e{constructor(){this.compileModuleSync=Xc,this.compileModuleAsync=ed,this.compileModuleAndAllComponentsSync=nd,this.compileModuleAndAllComponentsAsync=id}clearCache(){}clearCacheFor(e){}getModuleId(e){}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const rd=new Ve(\"compilerOptions\"),od=(()=>Promise.resolve(0))();function ad(e){\"undefined\"==typeof Zone?od.then(()=>{e&&e.apply(null,null)}):Zone.current.scheduleMicroTask(\"scheduleMicrotask\",e)}class ld{constructor({enableLongStackTrace:e=!1,shouldCoalesceEventChangeDetection:t=!1}){if(this.hasPendingMacrotasks=!1,this.hasPendingMicrotasks=!1,this.isStable=!0,this.onUnstable=new yc(!1),this.onMicrotaskEmpty=new yc(!1),this.onStable=new yc(!1),this.onError=new yc(!1),\"undefined\"==typeof Zone)throw new Error(\"In this configuration Angular requires Zone.js\");Zone.assertZonePatched(),this._nesting=0,this._outer=this._inner=Zone.current,Zone.wtfZoneSpec&&(this._inner=this._inner.fork(Zone.wtfZoneSpec)),Zone.TaskTrackingZoneSpec&&(this._inner=this._inner.fork(new Zone.TaskTrackingZoneSpec)),e&&Zone.longStackTraceZoneSpec&&(this._inner=this._inner.fork(Zone.longStackTraceZoneSpec)),this.shouldCoalesceEventChangeDetection=t,this.lastRequestAnimationFrameId=-1,this.nativeRequestAnimationFrame=function(){let e=Pe.requestAnimationFrame,t=Pe.cancelAnimationFrame;if(\"undefined\"!=typeof Zone&&e&&t){const n=e[Zone.__symbol__(\"OriginalDelegate\")];n&&(e=n);const i=t[Zone.__symbol__(\"OriginalDelegate\")];i&&(t=i)}return{nativeRequestAnimationFrame:e,nativeCancelAnimationFrame:t}}().nativeRequestAnimationFrame,function(e){const t=!!e.shouldCoalesceEventChangeDetection&&e.nativeRequestAnimationFrame&&(()=>{!function(e){-1===e.lastRequestAnimationFrameId&&(e.lastRequestAnimationFrameId=e.nativeRequestAnimationFrame.call(Pe,()=>{e.lastRequestAnimationFrameId=-1,hd(e),ud(e)}),hd(e))}(e)});e._inner=e._inner.fork({name:\"angular\",properties:{isAngularZone:!0,maybeDelayChangeDetection:t},onInvokeTask:(n,i,s,r,o,a)=>{try{return md(e),n.invokeTask(s,r,o,a)}finally{t&&\"eventTask\"===r.type&&t(),pd(e)}},onInvoke:(t,n,i,s,r,o,a)=>{try{return md(e),t.invoke(i,s,r,o,a)}finally{pd(e)}},onHasTask:(t,n,i,s)=>{t.hasTask(i,s),n===i&&(\"microTask\"==s.change?(e._hasPendingMicrotasks=s.microTask,hd(e),ud(e)):\"macroTask\"==s.change&&(e.hasPendingMacrotasks=s.macroTask))},onHandleError:(t,n,i,s)=>(t.handleError(i,s),e.runOutsideAngular(()=>e.onError.emit(s)),!1)})}(this)}static isInAngularZone(){return!0===Zone.current.get(\"isAngularZone\")}static assertInAngularZone(){if(!ld.isInAngularZone())throw new Error(\"Expected to be in Angular Zone, but it is not!\")}static assertNotInAngularZone(){if(ld.isInAngularZone())throw new Error(\"Expected to not be in Angular Zone, but it is!\")}run(e,t,n){return this._inner.run(e,t,n)}runTask(e,t,n,i){const s=this._inner,r=s.scheduleEventTask(\"NgZoneEvent: \"+i,e,dd,cd,cd);try{return s.runTask(r,t,n)}finally{s.cancelTask(r)}}runGuarded(e,t,n){return this._inner.runGuarded(e,t,n)}runOutsideAngular(e){return this._outer.run(e)}}function cd(){}const dd={};function ud(e){if(0==e._nesting&&!e.hasPendingMicrotasks&&!e.isStable)try{e._nesting++,e.onMicrotaskEmpty.emit(null)}finally{if(e._nesting--,!e.hasPendingMicrotasks)try{e.runOutsideAngular(()=>e.onStable.emit(null))}finally{e.isStable=!0}}}function hd(e){e.hasPendingMicrotasks=!!(e._hasPendingMicrotasks||e.shouldCoalesceEventChangeDetection&&-1!==e.lastRequestAnimationFrameId)}function md(e){e._nesting++,e.isStable&&(e.isStable=!1,e.onUnstable.emit(null))}function pd(e){e._nesting--,ud(e)}class fd{constructor(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new yc,this.onMicrotaskEmpty=new yc,this.onStable=new yc,this.onError=new yc}run(e,t,n){return e.apply(t,n)}runGuarded(e,t,n){return e.apply(t,n)}runOutsideAngular(e){return e()}runTask(e,t,n,i){return e.apply(t,n)}}let _d=(()=>{class e{constructor(e){this._ngZone=e,this._pendingCount=0,this._isZoneStable=!0,this._didWork=!1,this._callbacks=[],this.taskTrackingZone=null,this._watchAngularEvents(),e.run(()=>{this.taskTrackingZone=\"undefined\"==typeof Zone?null:Zone.current.get(\"TaskTrackingZone\")})}_watchAngularEvents(){this._ngZone.onUnstable.subscribe({next:()=>{this._didWork=!0,this._isZoneStable=!1}}),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.subscribe({next:()=>{ld.assertNotInAngularZone(),ad(()=>{this._isZoneStable=!0,this._runCallbacksIfReady()})}})})}increasePendingRequestCount(){return this._pendingCount+=1,this._didWork=!0,this._pendingCount}decreasePendingRequestCount(){if(this._pendingCount-=1,this._pendingCount<0)throw new Error(\"pending async requests below zero\");return this._runCallbacksIfReady(),this._pendingCount}isStable(){return this._isZoneStable&&0===this._pendingCount&&!this._ngZone.hasPendingMacrotasks}_runCallbacksIfReady(){if(this.isStable())ad(()=>{for(;0!==this._callbacks.length;){let e=this._callbacks.pop();clearTimeout(e.timeoutId),e.doneCb(this._didWork)}this._didWork=!1});else{let e=this.getPendingTasks();this._callbacks=this._callbacks.filter(t=>!t.updateCb||!t.updateCb(e)||(clearTimeout(t.timeoutId),!1)),this._didWork=!0}}getPendingTasks(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(e=>({source:e.source,creationLocation:e.creationLocation,data:e.data})):[]}addCallback(e,t,n){let i=-1;t&&t>0&&(i=setTimeout(()=>{this._callbacks=this._callbacks.filter(e=>e.timeoutId!==i),e(this._didWork,this.getPendingTasks())},t)),this._callbacks.push({doneCb:e,timeoutId:i,updateCb:n})}whenStable(e,t,n){if(n&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is \"zone.js/dist/task-tracking.js\" loaded?');this.addCallback(e,t,n),this._runCallbacksIfReady()}getPendingRequestCount(){return this._pendingCount}findProviders(e,t,n){return[]}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ld))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),gd=(()=>{class e{constructor(){this._applications=new Map,vd.addToWindow(this)}registerApplication(e,t){this._applications.set(e,t)}unregisterApplication(e){this._applications.delete(e)}unregisterAllApplications(){this._applications.clear()}getTestability(e){return this._applications.get(e)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(e,t=!0){return vd.findTestabilityInTree(this,e,t)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class yd{addToWindow(e){}findTestabilityInTree(e,t,n){return null}}let bd,vd=new yd,wd=function(e,t,n){const i=new _c(n);if(0===go.size)return Promise.resolve(i);const s=function(e){const t=[];return e.forEach(e=>e&&t.push(...e)),t}(e.get(rd,[]).concat(t).map(e=>e.providers));if(0===s.length)return Promise.resolve(i);const r=function(){const e=Pe.ng;if(!e||!e.\\u0275compilerFacade)throw new Error(\"Angular JIT compilation failed: '@angular/compiler' not loaded!\\n - JIT compilation is discouraged for production use-cases! Consider AOT mode instead.\\n - Did you bootstrap using '@angular/platform-browser-dynamic' or '@angular/platform-server'?\\n - Alternatively provide the compiler with 'import \\\"@angular/compiler\\\";' before bootstrapping.\");return e.\\u0275compilerFacade}(),o=fo.create({providers:s}).get(r.ResourceLoader);return function(e){const t=[],n=new Map;function i(e){let t=n.get(e);if(!t){const i=(e=>Promise.resolve(o.get(e)))(e);n.set(e,t=i.then(bo))}return t}return go.forEach((e,n)=>{const s=[];e.templateUrl&&s.push(i(e.templateUrl).then(t=>{e.template=t}));const r=e.styleUrls,o=e.styles||(e.styles=[]),a=e.styles.length;r&&r.forEach((t,n)=>{o.push(\"\"),s.push(i(t).then(i=>{o[a+n]=i,r.splice(r.indexOf(t),1),0==r.length&&(e.styleUrls=void 0)}))});const l=Promise.all(s).then(()=>function(e){yo.delete(e)}(n));t.push(l)}),go=new Map,Promise.all(t).then(()=>{})}().then(()=>i)};const Md=new Ve(\"AllowMultipleToken\");class kd{constructor(e,t){this.name=e,this.token=t}}function Sd(e,t,n=[]){const i=`Platform: ${t}`,s=new Ve(i);return(t=[])=>{let r=Ld();if(!r||r.injector.get(Md,!1))if(e)e(n.concat(t).concat({provide:s,useValue:!0}));else{const e=n.concat(t).concat({provide:s,useValue:!0},{provide:eo,useValue:\"platform\"});!function(e){if(bd&&!bd.destroyed&&!bd.injector.get(Md,!1))throw new Error(\"There can be only one platform. Destroy the previous one to create a new one.\");bd=e.get(xd);const t=e.get($c,null);t&&t.forEach(e=>e())}(fo.create({providers:e,name:i}))}return function(e){const t=Ld();if(!t)throw new Error(\"No platform exists!\");if(!t.injector.get(e,null))throw new Error(\"A platform with a different configuration has been created. Please destroy it first.\");return t}(s)}}function Ld(){return bd&&!bd.destroyed?bd:null}let xd=(()=>{class e{constructor(e){this._injector=e,this._modules=[],this._destroyListeners=[],this._destroyed=!1}bootstrapModuleFactory(e,t){const n=function(e,t){let n;return n=\"noop\"===e?new fd:(\"zone.js\"===e?void 0:e)||new ld({enableLongStackTrace:Si(),shouldCoalesceEventChangeDetection:t}),n}(t?t.ngZone:void 0,t&&t.ngZoneEventCoalescing||!1),i=[{provide:ld,useValue:n}];return n.run(()=>{const t=fo.create({providers:i,parent:this.injector,name:e.moduleType.name}),s=e.create(t),r=s.injector.get(hi,null);if(!r)throw new Error(\"No ErrorHandler. Is platform module (BrowserModule) included?\");return s.onDestroy(()=>Dd(this._modules,s)),n.runOutsideAngular(()=>n.onError.subscribe({next:e=>{r.handleError(e)}})),function(e,t,n){try{const i=n();return Vo(i)?i.catch(n=>{throw t.runOutsideAngular(()=>e.handleError(n)),n}):i}catch(i){throw t.runOutsideAngular(()=>e.handleError(i)),i}}(r,n,()=>{const e=s.injector.get(zc);return e.runInitializers(),e.donePromise.then(()=>(mc(s.injector.get(Jc,\"en-US\")||\"en-US\"),this._moduleDoBootstrap(s),s))})})}bootstrapModule(e,t=[]){const n=Cd({},t);return wd(this.injector,n,e).then(e=>this.bootstrapModuleFactory(e,n))}_moduleDoBootstrap(e){const t=e.injector.get(Td);if(e._bootstrapComponents.length>0)e._bootstrapComponents.forEach(e=>t.bootstrap(e));else{if(!e.instance.ngDoBootstrap)throw new Error(`The module ${Se(e.instance.constructor)} was bootstrapped, but it does not declare \"@NgModule.bootstrap\" components nor a \"ngDoBootstrap\" method. `+\"Please define one of these.\");e.instance.ngDoBootstrap(t)}this._modules.push(e)}onDestroy(e){this._destroyListeners.push(e)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new Error(\"The platform has already been destroyed!\");this._modules.slice().forEach(e=>e.destroy()),this._destroyListeners.forEach(e=>e()),this._destroyed=!0}get destroyed(){return this._destroyed}}return e.\\u0275fac=function(t){return new(t||e)(Qe(fo))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function Cd(e,t){return Array.isArray(t)?t.reduce(Cd,e):Object.assign(Object.assign({},e),t)}let Td=(()=>{class e{constructor(e,t,n,i,s,r){this._zone=e,this._console=t,this._injector=n,this._exceptionHandler=i,this._componentFactoryResolver=s,this._initStatus=r,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._enforceNoNewChanges=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._enforceNoNewChanges=Si(),this._zone.onMicrotaskEmpty.subscribe({next:()=>{this._zone.run(()=>{this.tick()})}});const o=new v(e=>{this._stable=this._zone.isStable&&!this._zone.hasPendingMacrotasks&&!this._zone.hasPendingMicrotasks,this._zone.runOutsideAngular(()=>{e.next(this._stable),e.complete()})}),a=new v(e=>{let t;this._zone.runOutsideAngular(()=>{t=this._zone.onStable.subscribe(()=>{ld.assertNotInAngularZone(),ad(()=>{this._stable||this._zone.hasPendingMacrotasks||this._zone.hasPendingMicrotasks||(this._stable=!0,e.next(!0))})})});const n=this._zone.onUnstable.subscribe(()=>{ld.assertInAngularZone(),this._stable&&(this._stable=!1,this._zone.runOutsideAngular(()=>{e.next(!1)}))});return()=>{t.unsubscribe(),n.unsubscribe()}});this.isStable=G(o,a.pipe(se()))}bootstrap(e,t){if(!this._initStatus.done)throw new Error(\"Cannot bootstrap as there are still asynchronous initializers running. Bootstrap components in the `ngDoBootstrap` method of the root module.\");let n;n=e instanceof qa?e:this._componentFactoryResolver.resolveComponentFactory(e),this.componentTypes.push(n.componentType);const i=n.isBoundToModule?void 0:this._injector.get(it),s=n.create(fo.NULL,[],t||n.selector,i);s.onDestroy(()=>{this._unloadComponent(s)});const r=s.injector.get(_d,null);return r&&s.injector.get(gd).registerApplication(s.location.nativeElement,r),this._loadComponent(s),Si()&&this._console.log(\"Angular is running in the development mode. Call enableProdMode() to enable the production mode.\"),s}tick(){if(this._runningTick)throw new Error(\"ApplicationRef.tick is called recursively\");try{this._runningTick=!0;for(let e of this._views)e.detectChanges();if(this._enforceNoNewChanges)for(let e of this._views)e.checkNoChanges()}catch(e){this._zone.runOutsideAngular(()=>this._exceptionHandler.handleError(e))}finally{this._runningTick=!1}}attachView(e){const t=e;this._views.push(t),t.attachToAppRef(this)}detachView(e){const t=e;Dd(this._views,t),t.detachFromAppRef()}_loadComponent(e){this.attachView(e.hostView),this.tick(),this.components.push(e),this._injector.get(qc,[]).concat(this._bootstrapListeners).forEach(t=>t(e))}_unloadComponent(e){this.detachView(e.hostView),Dd(this.components,e)}ngOnDestroy(){this._views.slice().forEach(e=>e.destroy())}get viewCount(){return this._views.length}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ld),Qe(Gc),Qe(fo),Qe(hi),Qe(Ja),Qe(zc))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function Dd(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}class Yd{}class Ed{}const Od={factoryPathPrefix:\"\",factoryPathSuffix:\".ngfactory\"};let Id=(()=>{class e{constructor(e,t){this._compiler=e,this._config=t||Od}load(e){return this.loadAndCompile(e)}loadAndCompile(e){let[t,i]=e.split(\"#\");return void 0===i&&(i=\"default\"),n(\"zn8P\")(t).then(e=>e[i]).then(e=>Pd(e,t,i)).then(e=>this._compiler.compileModuleAsync(e))}loadFactory(e){let[t,i]=e.split(\"#\"),s=\"NgFactory\";return void 0===i&&(i=\"default\",s=\"\"),n(\"zn8P\")(this._config.factoryPathPrefix+t+this._config.factoryPathSuffix).then(e=>e[i+s]).then(e=>Pd(e,t,i))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(sd),Qe(Ed,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function Pd(e,t,n){if(!e)throw new Error(`Cannot find '${n}' in '${t}'`);return e}const Ad=Sd(null,\"core\",[{provide:Bc,useValue:\"unknown\"},{provide:xd,deps:[fo]},{provide:gd,deps:[]},{provide:Gc,deps:[]}]),Rd=[{provide:Td,useClass:Td,deps:[ld,Gc,fo,hi,Ja,zc]},{provide:Cl,deps:[ld],useFactory:function(e){let t=[];return e.onStable.subscribe(()=>{for(;t.length;)t.pop()()}),function(e){t.push(e)}}},{provide:zc,useClass:zc,deps:[[new le,Nc]]},{provide:sd,useClass:sd,deps:[]},Wc,{provide:fl,useFactory:function(){return yl},deps:[]},{provide:_l,useFactory:function(){return bl},deps:[]},{provide:Jc,useFactory:function(e){return mc(e=e||\"undefined\"!=typeof $localize&&$localize.locale||\"en-US\"),e},deps:[[new ae(Jc),new le,new de]]},{provide:Kc,useValue:\"USD\"}];let Hd=(()=>{class e{constructor(e){}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)(Qe(Td))},providers:Rd}),e})(),jd=null;function Fd(){return jd}const Nd=new Ve(\"DocumentToken\");let zd=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:Vd,token:e,providedIn:\"platform\"}),e})();function Vd(){return Qe(Ud)}const Wd=new Ve(\"Location Initialized\");let Ud=(()=>{class e extends zd{constructor(e){super(),this._doc=e,this._init()}_init(){this.location=Fd().getLocation(),this._history=Fd().getHistory()}getBaseHrefFromDOM(){return Fd().getBaseHref(this._doc)}onPopState(e){Fd().getGlobalEventTarget(this._doc,\"window\").addEventListener(\"popstate\",e,!1)}onHashChange(e){Fd().getGlobalEventTarget(this._doc,\"window\").addEventListener(\"hashchange\",e,!1)}get href(){return this.location.href}get protocol(){return this.location.protocol}get hostname(){return this.location.hostname}get port(){return this.location.port}get pathname(){return this.location.pathname}get search(){return this.location.search}get hash(){return this.location.hash}set pathname(e){this.location.pathname=e}pushState(e,t,n){$d()?this._history.pushState(e,t,n):this.location.hash=n}replaceState(e,t,n){$d()?this._history.replaceState(e,t,n):this.location.hash=n}forward(){this._history.forward()}back(){this._history.back()}getState(){return this._history.state}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({factory:Bd,token:e,providedIn:\"platform\"}),e})();function $d(){return!!window.history.pushState}function Bd(){return new Ud(Qe(Nd))}function qd(e,t){if(0==e.length)return t;if(0==t.length)return e;let n=0;return e.endsWith(\"/\")&&n++,t.startsWith(\"/\")&&n++,2==n?e+t.substring(1):1==n?e+t:e+\"/\"+t}function Gd(e){const t=e.match(/#|\\?|$/),n=t&&t.index||e.length;return e.slice(0,n-(\"/\"===e[n-1]?1:0))+e.slice(n)}function Jd(e){return e&&\"?\"!==e[0]?\"?\"+e:e}let Kd=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:Zd,token:e,providedIn:\"root\"}),e})();function Zd(e){const t=Qe(Nd).location;return new Xd(Qe(zd),t&&t.origin||\"\")}const Qd=new Ve(\"appBaseHref\");let Xd=(()=>{class e extends Kd{constructor(e,t){if(super(),this._platformLocation=e,null==t&&(t=this._platformLocation.getBaseHrefFromDOM()),null==t)throw new Error(\"No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.\");this._baseHref=t}onPopState(e){this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e)}getBaseHref(){return this._baseHref}prepareExternalUrl(e){return qd(this._baseHref,e)}path(e=!1){const t=this._platformLocation.pathname+Jd(this._platformLocation.search),n=this._platformLocation.hash;return n&&e?`${t}${n}`:t}pushState(e,t,n,i){const s=this.prepareExternalUrl(n+Jd(i));this._platformLocation.pushState(e,t,s)}replaceState(e,t,n,i){const s=this.prepareExternalUrl(n+Jd(i));this._platformLocation.replaceState(e,t,s)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(zd),Qe(Qd,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),eu=(()=>{class e extends Kd{constructor(e,t){super(),this._platformLocation=e,this._baseHref=\"\",null!=t&&(this._baseHref=t)}onPopState(e){this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e)}getBaseHref(){return this._baseHref}path(e=!1){let t=this._platformLocation.hash;return null==t&&(t=\"#\"),t.length>0?t.substring(1):t}prepareExternalUrl(e){const t=qd(this._baseHref,e);return t.length>0?\"#\"+t:t}pushState(e,t,n,i){let s=this.prepareExternalUrl(n+Jd(i));0==s.length&&(s=this._platformLocation.pathname),this._platformLocation.pushState(e,t,s)}replaceState(e,t,n,i){let s=this.prepareExternalUrl(n+Jd(i));0==s.length&&(s=this._platformLocation.pathname),this._platformLocation.replaceState(e,t,s)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(zd),Qe(Qd,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),tu=(()=>{class e{constructor(e,t){this._subject=new yc,this._urlChangeListeners=[],this._platformStrategy=e;const n=this._platformStrategy.getBaseHref();this._platformLocation=t,this._baseHref=Gd(iu(n)),this._platformStrategy.onPopState(e=>{this._subject.emit({url:this.path(!0),pop:!0,state:e.state,type:e.type})})}path(e=!1){return this.normalize(this._platformStrategy.path(e))}getState(){return this._platformLocation.getState()}isCurrentPathEqualTo(e,t=\"\"){return this.path()==this.normalize(e+Jd(t))}normalize(t){return e.stripTrailingSlash(function(e,t){return e&&t.startsWith(e)?t.substring(e.length):t}(this._baseHref,iu(t)))}prepareExternalUrl(e){return e&&\"/\"!==e[0]&&(e=\"/\"+e),this._platformStrategy.prepareExternalUrl(e)}go(e,t=\"\",n=null){this._platformStrategy.pushState(n,\"\",e,t),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+Jd(t)),n)}replaceState(e,t=\"\",n=null){this._platformStrategy.replaceState(n,\"\",e,t),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+Jd(t)),n)}forward(){this._platformStrategy.forward()}back(){this._platformStrategy.back()}onUrlChange(e){this._urlChangeListeners.push(e),this.subscribe(e=>{this._notifyUrlChangeListeners(e.url,e.state)})}_notifyUrlChangeListeners(e=\"\",t){this._urlChangeListeners.forEach(n=>n(e,t))}subscribe(e,t,n){return this._subject.subscribe({next:e,error:t,complete:n})}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Kd),Qe(zd))},e.normalizeQueryParams=Jd,e.joinWithSlash=qd,e.stripTrailingSlash=Gd,e.\\u0275prov=pe({factory:nu,token:e,providedIn:\"root\"}),e})();function nu(){return new tu(Qe(Kd),Qe(zd))}function iu(e){return e.replace(/\\/index.html$/,\"\")}const su=function(){var e={Zero:0,One:1,Two:2,Few:3,Many:4,Other:5};return e[e.Zero]=\"Zero\",e[e.One]=\"One\",e[e.Two]=\"Two\",e[e.Few]=\"Few\",e[e.Many]=\"Many\",e[e.Other]=\"Other\",e}(),ru=Il;class ou{}let au=(()=>{class e extends ou{constructor(e){super(),this.locale=e}getPluralCategory(e,t){switch(ru(t||this.locale)(e)){case su.Zero:return\"zero\";case su.One:return\"one\";case su.Two:return\"two\";case su.Few:return\"few\";case su.Many:return\"many\";default:return\"other\"}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Jc))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function lu(e,t){t=encodeURIComponent(t);for(const n of e.split(\";\")){const e=n.indexOf(\"=\"),[i,s]=-1==e?[n,\"\"]:[n.slice(0,e),n.slice(e+1)];if(i.trim()===t)return decodeURIComponent(s)}return null}let cu=(()=>{class e{constructor(e,t,n,i){this._iterableDiffers=e,this._keyValueDiffers=t,this._ngEl=n,this._renderer=i,this._iterableDiffer=null,this._keyValueDiffer=null,this._initialClasses=[],this._rawClass=null}set klass(e){this._removeClasses(this._initialClasses),this._initialClasses=\"string\"==typeof e?e.split(/\\s+/):[],this._applyClasses(this._initialClasses),this._applyClasses(this._rawClass)}set ngClass(e){this._removeClasses(this._rawClass),this._applyClasses(this._initialClasses),this._iterableDiffer=null,this._keyValueDiffer=null,this._rawClass=\"string\"==typeof e?e.split(/\\s+/):e,this._rawClass&&(So(this._rawClass)?this._iterableDiffer=this._iterableDiffers.find(this._rawClass).create():this._keyValueDiffer=this._keyValueDiffers.find(this._rawClass).create())}ngDoCheck(){if(this._iterableDiffer){const e=this._iterableDiffer.diff(this._rawClass);e&&this._applyIterableChanges(e)}else if(this._keyValueDiffer){const e=this._keyValueDiffer.diff(this._rawClass);e&&this._applyKeyValueChanges(e)}}_applyKeyValueChanges(e){e.forEachAddedItem(e=>this._toggleClass(e.key,e.currentValue)),e.forEachChangedItem(e=>this._toggleClass(e.key,e.currentValue)),e.forEachRemovedItem(e=>{e.previousValue&&this._toggleClass(e.key,!1)})}_applyIterableChanges(e){e.forEachAddedItem(e=>{if(\"string\"!=typeof e.item)throw new Error(`NgClass can only toggle CSS classes expressed as strings, got ${Se(e.item)}`);this._toggleClass(e.item,!0)}),e.forEachRemovedItem(e=>this._toggleClass(e.item,!1))}_applyClasses(e){e&&(Array.isArray(e)||e instanceof Set?e.forEach(e=>this._toggleClass(e,!0)):Object.keys(e).forEach(t=>this._toggleClass(t,!!e[t])))}_removeClasses(e){e&&(Array.isArray(e)||e instanceof Set?e.forEach(e=>this._toggleClass(e,!1)):Object.keys(e).forEach(e=>this._toggleClass(e,!1)))}_toggleClass(e,t){(e=e.trim())&&e.split(/\\s+/g).forEach(e=>{t?this._renderer.addClass(this._ngEl.nativeElement,e):this._renderer.removeClass(this._ngEl.nativeElement,e)})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(fl),Eo(_l),Eo(Ka),Eo(el))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngClass\",\"\"]],inputs:{klass:[\"class\",\"klass\"],ngClass:\"ngClass\"}}),e})();class du{constructor(e,t,n,i){this.$implicit=e,this.ngForOf=t,this.index=n,this.count=i}get first(){return 0===this.index}get last(){return this.index===this.count-1}get even(){return this.index%2==0}get odd(){return!this.even}}let uu=(()=>{class e{constructor(e,t,n){this._viewContainer=e,this._template=t,this._differs=n,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}set ngForOf(e){this._ngForOf=e,this._ngForOfDirty=!0}set ngForTrackBy(e){Si()&&null!=e&&\"function\"!=typeof e&&console&&console.warn&&console.warn(`trackBy must be a function, but received ${JSON.stringify(e)}. `+\"See https://angular.io/api/common/NgForOf#change-propagation for more information.\"),this._trackByFn=e}get ngForTrackBy(){return this._trackByFn}set ngForTemplate(e){e&&(this._template=e)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const n=this._ngForOf;if(!this._differ&&n)try{this._differ=this._differs.find(n).create(this.ngForTrackBy)}catch(t){throw new Error(`Cannot find a differ supporting object '${n}' of type '${e=n,e.name||typeof e}'. NgFor only supports binding to Iterables such as Arrays.`)}}var e;if(this._differ){const e=this._differ.diff(this._ngForOf);e&&this._applyChanges(e)}}_applyChanges(e){const t=[];e.forEachOperation((e,n,i)=>{if(null==e.previousIndex){const n=this._viewContainer.createEmbeddedView(this._template,new du(null,this._ngForOf,-1,-1),null===i?void 0:i),s=new hu(e,n);t.push(s)}else if(null==i)this._viewContainer.remove(null===n?void 0:n);else if(null!==n){const s=this._viewContainer.get(n);this._viewContainer.move(s,i);const r=new hu(e,s);t.push(r)}});for(let n=0;n{this._viewContainer.get(e.currentIndex).context.$implicit=e.item})}_perViewChange(e,t){e.context.$implicit=t.item}static ngTemplateContextGuard(e,t){return!0}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml),Eo(vl),Eo(fl))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngFor\",\"\",\"ngForOf\",\"\"]],inputs:{ngForOf:\"ngForOf\",ngForTrackBy:\"ngForTrackBy\",ngForTemplate:\"ngForTemplate\"}}),e})();class hu{constructor(e,t){this.record=e,this.view=t}}let mu=(()=>{class e{constructor(e,t){this._viewContainer=e,this._context=new pu,this._thenTemplateRef=null,this._elseTemplateRef=null,this._thenViewRef=null,this._elseViewRef=null,this._thenTemplateRef=t}set ngIf(e){this._context.$implicit=this._context.ngIf=e,this._updateView()}set ngIfThen(e){fu(\"ngIfThen\",e),this._thenTemplateRef=e,this._thenViewRef=null,this._updateView()}set ngIfElse(e){fu(\"ngIfElse\",e),this._elseTemplateRef=e,this._elseViewRef=null,this._updateView()}_updateView(){this._context.$implicit?this._thenViewRef||(this._viewContainer.clear(),this._elseViewRef=null,this._thenTemplateRef&&(this._thenViewRef=this._viewContainer.createEmbeddedView(this._thenTemplateRef,this._context))):this._elseViewRef||(this._viewContainer.clear(),this._thenViewRef=null,this._elseTemplateRef&&(this._elseViewRef=this._viewContainer.createEmbeddedView(this._elseTemplateRef,this._context)))}static ngTemplateContextGuard(e,t){return!0}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml),Eo(vl))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngIf\",\"\"]],inputs:{ngIf:\"ngIf\",ngIfThen:\"ngIfThen\",ngIfElse:\"ngIfElse\"}}),e})();class pu{constructor(){this.$implicit=null,this.ngIf=null}}function fu(e,t){if(t&&!t.createEmbeddedView)throw new Error(`${e} must be a TemplateRef, but received '${Se(t)}'.`)}class _u{constructor(e,t){this._viewContainerRef=e,this._templateRef=t,this._created=!1}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(e){e&&!this._created?this.create():!e&&this._created&&this.destroy()}}let gu=(()=>{class e{constructor(){this._defaultUsed=!1,this._caseCount=0,this._lastCaseCheckIndex=0,this._lastCasesMatched=!1}set ngSwitch(e){this._ngSwitch=e,0===this._caseCount&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(e){this._defaultViews||(this._defaultViews=[]),this._defaultViews.push(e)}_matchCase(e){const t=e==this._ngSwitch;return this._lastCasesMatched=this._lastCasesMatched||t,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),t}_updateDefaultCases(e){if(this._defaultViews&&e!==this._defaultUsed){this._defaultUsed=e;for(let t=0;t{class e{constructor(e,t,n){this.ngSwitch=n,n._addCase(),this._view=new _u(e,t)}ngDoCheck(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml),Eo(vl),Eo(gu,1))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngSwitchCase\",\"\"]],inputs:{ngSwitchCase:\"ngSwitchCase\"}}),e})(),bu=(()=>{class e{constructor(e,t,n){n._addDefault(new _u(e,t))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml),Eo(vl),Eo(gu,1))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngSwitchDefault\",\"\"]]}),e})(),vu=(()=>{class e{constructor(e,t,n){this._ngEl=e,this._differs=t,this._renderer=n,this._ngStyle=null,this._differ=null}set ngStyle(e){this._ngStyle=e,!this._differ&&e&&(this._differ=this._differs.find(e).create())}ngDoCheck(){if(this._differ){const e=this._differ.diff(this._ngStyle);e&&this._applyChanges(e)}}_setStyle(e,t){const[n,i]=e.split(\".\");null!=(t=null!=t&&i?`${t}${i}`:t)?this._renderer.setStyle(this._ngEl.nativeElement,n,t):this._renderer.removeStyle(this._ngEl.nativeElement,n)}_applyChanges(e){e.forEachRemovedItem(e=>this._setStyle(e.key,null)),e.forEachAddedItem(e=>this._setStyle(e.key,e.currentValue)),e.forEachChangedItem(e=>this._setStyle(e.key,e.currentValue))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(_l),Eo(el))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngStyle\",\"\"]],inputs:{ngStyle:\"ngStyle\"}}),e})(),wu=(()=>{class e{constructor(e){this._viewContainerRef=e,this._viewRef=null,this.ngTemplateOutletContext=null,this.ngTemplateOutlet=null}ngOnChanges(e){if(this._shouldRecreateView(e)){const e=this._viewContainerRef;this._viewRef&&e.remove(e.indexOf(this._viewRef)),this._viewRef=this.ngTemplateOutlet?e.createEmbeddedView(this.ngTemplateOutlet,this.ngTemplateOutletContext):null}else this._viewRef&&this.ngTemplateOutletContext&&this._updateExistingContext(this.ngTemplateOutletContext)}_shouldRecreateView(e){const t=e.ngTemplateOutletContext;return!!e.ngTemplateOutlet||t&&this._hasContextShapeChanged(t)}_hasContextShapeChanged(e){const t=Object.keys(e.previousValue||{}),n=Object.keys(e.currentValue||{});if(t.length===n.length){for(let e of n)if(-1===t.indexOf(e))return!0;return!1}return!0}_updateExistingContext(e){for(let t of Object.keys(e))this._viewRef.context[t]=this.ngTemplateOutletContext[t]}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ml))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngTemplateOutlet\",\"\"]],inputs:{ngTemplateOutletContext:\"ngTemplateOutletContext\",ngTemplateOutlet:\"ngTemplateOutlet\"},features:[Ra]}),e})(),Mu=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[{provide:ou,useClass:au}]}),e})();function ku(e){return\"browser\"===e}let Su=(()=>{class e{}return e.\\u0275prov=pe({token:e,providedIn:\"root\",factory:()=>new Lu(Qe(Nd),window,Qe(hi))}),e})();class Lu{constructor(e,t,n){this.document=e,this.window=t,this.errorHandler=n,this.offset=()=>[0,0]}setOffset(e){this.offset=Array.isArray(e)?()=>e:e}getScrollPosition(){return this.supportScrollRestoration()?[this.window.scrollX,this.window.scrollY]:[0,0]}scrollToPosition(e){this.supportScrollRestoration()&&this.window.scrollTo(e[0],e[1])}scrollToAnchor(e){if(this.supportScrollRestoration()){e=this.window.CSS&&this.window.CSS.escape?this.window.CSS.escape(e):e.replace(/(\\\"|\\'\\ |:|\\.|\\[|\\]|,|=)/g,\"\\\\$1\");try{const t=this.document.querySelector(`#${e}`);if(t)return void this.scrollToElement(t);const n=this.document.querySelector(`[name='${e}']`);if(n)return void this.scrollToElement(n)}catch(t){this.errorHandler.handleError(t)}}}setHistoryScrollRestoration(e){if(this.supportScrollRestoration()){const t=this.window.history;t&&t.scrollRestoration&&(t.scrollRestoration=e)}}scrollToElement(e){const t=e.getBoundingClientRect(),n=t.left+this.window.pageXOffset,i=t.top+this.window.pageYOffset,s=this.offset();this.window.scrollTo(n-s[0],i-s[1])}supportScrollRestoration(){try{return!!this.window&&!!this.window.scrollTo}catch(e){return!1}}}function xu(...e){let t=e[e.length-1];return C(t)?(e.pop(),N(e,t)):q(e)}function Cu(e,t){return V(e,t,1)}function Tu(e,t){return function(n){return n.lift(new Du(e,t))}}class Du{constructor(e,t){this.predicate=e,this.thisArg=t}call(e,t){return t.subscribe(new Yu(e,this.predicate,this.thisArg))}}class Yu extends p{constructor(e,t,n){super(e),this.predicate=t,this.thisArg=n,this.count=0}_next(e){let t;try{t=this.predicate.call(this.thisArg,e,this.count++)}catch(n){return void this.destination.error(n)}t&&this.destination.next(e)}}class Eu{}class Ou{}class Iu{constructor(e){this.normalizedNames=new Map,this.lazyUpdate=null,e?this.lazyInit=\"string\"==typeof e?()=>{this.headers=new Map,e.split(\"\\n\").forEach(e=>{const t=e.indexOf(\":\");if(t>0){const n=e.slice(0,t),i=n.toLowerCase(),s=e.slice(t+1).trim();this.maybeSetNormalizedName(n,i),this.headers.has(i)?this.headers.get(i).push(s):this.headers.set(i,[s])}})}:()=>{this.headers=new Map,Object.keys(e).forEach(t=>{let n=e[t];const i=t.toLowerCase();\"string\"==typeof n&&(n=[n]),n.length>0&&(this.headers.set(i,n),this.maybeSetNormalizedName(t,i))})}:this.headers=new Map}has(e){return this.init(),this.headers.has(e.toLowerCase())}get(e){this.init();const t=this.headers.get(e.toLowerCase());return t&&t.length>0?t[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(e){return this.init(),this.headers.get(e.toLowerCase())||null}append(e,t){return this.clone({name:e,value:t,op:\"a\"})}set(e,t){return this.clone({name:e,value:t,op:\"s\"})}delete(e,t){return this.clone({name:e,value:t,op:\"d\"})}maybeSetNormalizedName(e,t){this.normalizedNames.has(t)||this.normalizedNames.set(t,e)}init(){this.lazyInit&&(this.lazyInit instanceof Iu?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(e=>this.applyUpdate(e)),this.lazyUpdate=null))}copyFrom(e){e.init(),Array.from(e.headers.keys()).forEach(t=>{this.headers.set(t,e.headers.get(t)),this.normalizedNames.set(t,e.normalizedNames.get(t))})}clone(e){const t=new Iu;return t.lazyInit=this.lazyInit&&this.lazyInit instanceof Iu?this.lazyInit:this,t.lazyUpdate=(this.lazyUpdate||[]).concat([e]),t}applyUpdate(e){const t=e.name.toLowerCase();switch(e.op){case\"a\":case\"s\":let n=e.value;if(\"string\"==typeof n&&(n=[n]),0===n.length)return;this.maybeSetNormalizedName(e.name,t);const i=(\"a\"===e.op?this.headers.get(t):void 0)||[];i.push(...n),this.headers.set(t,i);break;case\"d\":const s=e.value;if(s){let e=this.headers.get(t);if(!e)return;e=e.filter(e=>-1===s.indexOf(e)),0===e.length?(this.headers.delete(t),this.normalizedNames.delete(t)):this.headers.set(t,e)}else this.headers.delete(t),this.normalizedNames.delete(t)}}forEach(e){this.init(),Array.from(this.normalizedNames.keys()).forEach(t=>e(this.normalizedNames.get(t),this.headers.get(t)))}}class Pu{encodeKey(e){return Au(e)}encodeValue(e){return Au(e)}decodeKey(e){return decodeURIComponent(e)}decodeValue(e){return decodeURIComponent(e)}}function Au(e){return encodeURIComponent(e).replace(/%40/gi,\"@\").replace(/%3A/gi,\":\").replace(/%24/gi,\"$\").replace(/%2C/gi,\",\").replace(/%3B/gi,\";\").replace(/%2B/gi,\"+\").replace(/%3D/gi,\"=\").replace(/%3F/gi,\"?\").replace(/%2F/gi,\"/\")}class Ru{constructor(e={}){if(this.updates=null,this.cloneFrom=null,this.encoder=e.encoder||new Pu,e.fromString){if(e.fromObject)throw new Error(\"Cannot specify both fromString and fromObject.\");this.map=function(e,t){const n=new Map;return e.length>0&&e.split(\"&\").forEach(e=>{const i=e.indexOf(\"=\"),[s,r]=-1==i?[t.decodeKey(e),\"\"]:[t.decodeKey(e.slice(0,i)),t.decodeValue(e.slice(i+1))],o=n.get(s)||[];o.push(r),n.set(s,o)}),n}(e.fromString,this.encoder)}else e.fromObject?(this.map=new Map,Object.keys(e.fromObject).forEach(t=>{const n=e.fromObject[t];this.map.set(t,Array.isArray(n)?n:[n])})):this.map=null}has(e){return this.init(),this.map.has(e)}get(e){this.init();const t=this.map.get(e);return t?t[0]:null}getAll(e){return this.init(),this.map.get(e)||null}keys(){return this.init(),Array.from(this.map.keys())}append(e,t){return this.clone({param:e,value:t,op:\"a\"})}set(e,t){return this.clone({param:e,value:t,op:\"s\"})}delete(e,t){return this.clone({param:e,value:t,op:\"d\"})}toString(){return this.init(),this.keys().map(e=>{const t=this.encoder.encodeKey(e);return this.map.get(e).map(e=>t+\"=\"+this.encoder.encodeValue(e)).join(\"&\")}).filter(e=>\"\"!==e).join(\"&\")}clone(e){const t=new Ru({encoder:this.encoder});return t.cloneFrom=this.cloneFrom||this,t.updates=(this.updates||[]).concat([e]),t}init(){null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(e=>this.map.set(e,this.cloneFrom.map.get(e))),this.updates.forEach(e=>{switch(e.op){case\"a\":case\"s\":const t=(\"a\"===e.op?this.map.get(e.param):void 0)||[];t.push(e.value),this.map.set(e.param,t);break;case\"d\":if(void 0===e.value){this.map.delete(e.param);break}{let t=this.map.get(e.param)||[];const n=t.indexOf(e.value);-1!==n&&t.splice(n,1),t.length>0?this.map.set(e.param,t):this.map.delete(e.param)}}}),this.cloneFrom=this.updates=null)}}function Hu(e){return\"undefined\"!=typeof ArrayBuffer&&e instanceof ArrayBuffer}function ju(e){return\"undefined\"!=typeof Blob&&e instanceof Blob}function Fu(e){return\"undefined\"!=typeof FormData&&e instanceof FormData}class Nu{constructor(e,t,n,i){let s;if(this.url=t,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType=\"json\",this.method=e.toUpperCase(),function(e){switch(e){case\"DELETE\":case\"GET\":case\"HEAD\":case\"OPTIONS\":case\"JSONP\":return!1;default:return!0}}(this.method)||i?(this.body=void 0!==n?n:null,s=i):s=n,s&&(this.reportProgress=!!s.reportProgress,this.withCredentials=!!s.withCredentials,s.responseType&&(this.responseType=s.responseType),s.headers&&(this.headers=s.headers),s.params&&(this.params=s.params)),this.headers||(this.headers=new Iu),this.params){const e=this.params.toString();if(0===e.length)this.urlWithParams=t;else{const n=t.indexOf(\"?\");this.urlWithParams=t+(-1===n?\"?\":nt.set(n,e.setHeaders[n]),a)),e.setParams&&(l=Object.keys(e.setParams).reduce((t,n)=>t.set(n,e.setParams[n]),l)),new Nu(t,n,s,{params:l,headers:a,reportProgress:o,responseType:i,withCredentials:r})}}const zu=function(){var e={Sent:0,UploadProgress:1,ResponseHeader:2,DownloadProgress:3,Response:4,User:5};return e[e.Sent]=\"Sent\",e[e.UploadProgress]=\"UploadProgress\",e[e.ResponseHeader]=\"ResponseHeader\",e[e.DownloadProgress]=\"DownloadProgress\",e[e.Response]=\"Response\",e[e.User]=\"User\",e}();class Vu{constructor(e,t=200,n=\"OK\"){this.headers=e.headers||new Iu,this.status=void 0!==e.status?e.status:t,this.statusText=e.statusText||n,this.url=e.url||null,this.ok=this.status>=200&&this.status<300}}class Wu extends Vu{constructor(e={}){super(e),this.type=zu.ResponseHeader}clone(e={}){return new Wu({headers:e.headers||this.headers,status:void 0!==e.status?e.status:this.status,statusText:e.statusText||this.statusText,url:e.url||this.url||void 0})}}class Uu extends Vu{constructor(e={}){super(e),this.type=zu.Response,this.body=void 0!==e.body?e.body:null}clone(e={}){return new Uu({body:void 0!==e.body?e.body:this.body,headers:e.headers||this.headers,status:void 0!==e.status?e.status:this.status,statusText:e.statusText||this.statusText,url:e.url||this.url||void 0})}}class $u extends Vu{constructor(e){super(e,0,\"Unknown Error\"),this.name=\"HttpErrorResponse\",this.ok=!1,this.message=this.status>=200&&this.status<300?`Http failure during parsing for ${e.url||\"(unknown url)\"}`:`Http failure response for ${e.url||\"(unknown url)\"}: ${e.status} ${e.statusText}`,this.error=e.error||null}}function Bu(e,t){return{body:t,headers:e.headers,observe:e.observe,params:e.params,reportProgress:e.reportProgress,responseType:e.responseType,withCredentials:e.withCredentials}}let qu=(()=>{class e{constructor(e){this.handler=e}request(e,t,n={}){let i;if(e instanceof Nu)i=e;else{let s=void 0;s=n.headers instanceof Iu?n.headers:new Iu(n.headers);let r=void 0;n.params&&(r=n.params instanceof Ru?n.params:new Ru({fromObject:n.params})),i=new Nu(e,t,void 0!==n.body?n.body:null,{headers:s,params:r,reportProgress:n.reportProgress,responseType:n.responseType||\"json\",withCredentials:n.withCredentials})}const s=xu(i).pipe(Cu(e=>this.handler.handle(e)));if(e instanceof Nu||\"events\"===n.observe)return s;const r=s.pipe(Tu(e=>e instanceof Uu));switch(n.observe||\"body\"){case\"body\":switch(i.responseType){case\"arraybuffer\":return r.pipe(H(e=>{if(null!==e.body&&!(e.body instanceof ArrayBuffer))throw new Error(\"Response is not an ArrayBuffer.\");return e.body}));case\"blob\":return r.pipe(H(e=>{if(null!==e.body&&!(e.body instanceof Blob))throw new Error(\"Response is not a Blob.\");return e.body}));case\"text\":return r.pipe(H(e=>{if(null!==e.body&&\"string\"!=typeof e.body)throw new Error(\"Response is not a string.\");return e.body}));case\"json\":default:return r.pipe(H(e=>e.body))}case\"response\":return r;default:throw new Error(`Unreachable: unhandled observe type ${n.observe}}`)}}delete(e,t={}){return this.request(\"DELETE\",e,t)}get(e,t={}){return this.request(\"GET\",e,t)}head(e,t={}){return this.request(\"HEAD\",e,t)}jsonp(e,t){return this.request(\"JSONP\",e,{params:(new Ru).append(t,\"JSONP_CALLBACK\"),observe:\"body\",responseType:\"json\"})}options(e,t={}){return this.request(\"OPTIONS\",e,t)}patch(e,t,n={}){return this.request(\"PATCH\",e,Bu(n,t))}post(e,t,n={}){return this.request(\"POST\",e,Bu(n,t))}put(e,t,n={}){return this.request(\"PUT\",e,Bu(n,t))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Eu))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class Gu{constructor(e,t){this.next=e,this.interceptor=t}handle(e){return this.interceptor.intercept(e,this.next)}}const Ju=new Ve(\"HTTP_INTERCEPTORS\");let Ku=(()=>{class e{intercept(e,t){return t.handle(e)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const Zu=/^\\)\\]\\}',?\\n/;class Qu{}let Xu=(()=>{class e{constructor(){}build(){return new XMLHttpRequest}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),eh=(()=>{class e{constructor(e){this.xhrFactory=e}handle(e){if(\"JSONP\"===e.method)throw new Error(\"Attempted to construct Jsonp request without JsonpClientModule installed.\");return new v(t=>{const n=this.xhrFactory.build();if(n.open(e.method,e.urlWithParams),e.withCredentials&&(n.withCredentials=!0),e.headers.forEach((e,t)=>n.setRequestHeader(e,t.join(\",\"))),e.headers.has(\"Accept\")||n.setRequestHeader(\"Accept\",\"application/json, text/plain, */*\"),!e.headers.has(\"Content-Type\")){const t=e.detectContentTypeHeader();null!==t&&n.setRequestHeader(\"Content-Type\",t)}if(e.responseType){const t=e.responseType.toLowerCase();n.responseType=\"json\"!==t?t:\"text\"}const i=e.serializeBody();let s=null;const r=()=>{if(null!==s)return s;const t=1223===n.status?204:n.status,i=n.statusText||\"OK\",r=new Iu(n.getAllResponseHeaders()),o=function(e){return\"responseURL\"in e&&e.responseURL?e.responseURL:/^X-Request-URL:/m.test(e.getAllResponseHeaders())?e.getResponseHeader(\"X-Request-URL\"):null}(n)||e.url;return s=new Wu({headers:r,status:t,statusText:i,url:o}),s},o=()=>{let{headers:i,status:s,statusText:o,url:a}=r(),l=null;204!==s&&(l=void 0===n.response?n.responseText:n.response),0===s&&(s=l?200:0);let c=s>=200&&s<300;if(\"json\"===e.responseType&&\"string\"==typeof l){const e=l;l=l.replace(Zu,\"\");try{l=\"\"!==l?JSON.parse(l):null}catch(d){l=e,c&&(c=!1,l={error:d,text:l})}}c?(t.next(new Uu({body:l,headers:i,status:s,statusText:o,url:a||void 0})),t.complete()):t.error(new $u({error:l,headers:i,status:s,statusText:o,url:a||void 0}))},a=e=>{const{url:i}=r(),s=new $u({error:e,status:n.status||0,statusText:n.statusText||\"Unknown Error\",url:i||void 0});t.error(s)};let l=!1;const c=i=>{l||(t.next(r()),l=!0);let s={type:zu.DownloadProgress,loaded:i.loaded};i.lengthComputable&&(s.total=i.total),\"text\"===e.responseType&&n.responseText&&(s.partialText=n.responseText),t.next(s)},d=e=>{let n={type:zu.UploadProgress,loaded:e.loaded};e.lengthComputable&&(n.total=e.total),t.next(n)};return n.addEventListener(\"load\",o),n.addEventListener(\"error\",a),e.reportProgress&&(n.addEventListener(\"progress\",c),null!==i&&n.upload&&n.upload.addEventListener(\"progress\",d)),n.send(i),t.next({type:zu.Sent}),()=>{n.removeEventListener(\"error\",a),n.removeEventListener(\"load\",o),e.reportProgress&&(n.removeEventListener(\"progress\",c),null!==i&&n.upload&&n.upload.removeEventListener(\"progress\",d)),n.abort()}})}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Qu))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const th=new Ve(\"XSRF_COOKIE_NAME\"),nh=new Ve(\"XSRF_HEADER_NAME\");class ih{}let sh=(()=>{class e{constructor(e,t,n){this.doc=e,this.platform=t,this.cookieName=n,this.lastCookieString=\"\",this.lastToken=null,this.parseCount=0}getToken(){if(\"server\"===this.platform)return null;const e=this.doc.cookie||\"\";return e!==this.lastCookieString&&(this.parseCount++,this.lastToken=lu(e,this.cookieName),this.lastCookieString=e),this.lastToken}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd),Qe(Bc),Qe(th))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),rh=(()=>{class e{constructor(e,t){this.tokenService=e,this.headerName=t}intercept(e,t){const n=e.url.toLowerCase();if(\"GET\"===e.method||\"HEAD\"===e.method||n.startsWith(\"http://\")||n.startsWith(\"https://\"))return t.handle(e);const i=this.tokenService.getToken();return null===i||e.headers.has(this.headerName)||(e=e.clone({headers:e.headers.set(this.headerName,i)})),t.handle(e)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ih),Qe(nh))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),oh=(()=>{class e{constructor(e,t){this.backend=e,this.injector=t,this.chain=null}handle(e){if(null===this.chain){const e=this.injector.get(Ju,[]);this.chain=e.reduceRight((e,t)=>new Gu(e,t),this.backend)}return this.chain.handle(e)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Ou),Qe(fo))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),ah=(()=>{class e{static disable(){return{ngModule:e,providers:[{provide:rh,useClass:Ku}]}}static withOptions(t={}){return{ngModule:e,providers:[t.cookieName?{provide:th,useValue:t.cookieName}:[],t.headerName?{provide:nh,useValue:t.headerName}:[]]}}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[rh,{provide:Ju,useExisting:rh,multi:!0},{provide:ih,useClass:sh},{provide:th,useValue:\"XSRF-TOKEN\"},{provide:nh,useValue:\"X-XSRF-TOKEN\"}]}),e})(),lh=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[qu,{provide:Eu,useClass:oh},eh,{provide:Ou,useExisting:eh},Xu,{provide:Qu,useExisting:Xu}],imports:[[ah.withOptions({cookieName:\"XSRF-TOKEN\",headerName:\"X-XSRF-TOKEN\"})]]}),e})();function ch(...e){if(1===e.length){const t=e[0];if(l(t))return dh(t,null);if(c(t)&&Object.getPrototypeOf(t)===Object.prototype){const e=Object.keys(t);return dh(e.map(e=>t[e]),e)}}if(\"function\"==typeof e[e.length-1]){const t=e.pop();return dh(e=1===e.length&&l(e[0])?e[0]:e,null).pipe(H(e=>t(...e)))}return dh(e,null)}function dh(e,t){return new v(n=>{const i=e.length;if(0===i)return void n.complete();const s=new Array(i);let r=0,o=0;for(let a=0;a{c||(c=!0,o++),s[a]=e},error:e=>n.error(e),complete:()=>{r++,r!==i&&c||(o===i&&n.next(t?t.reduce((e,t,n)=>(e[t]=s[n],e),{}):s),n.complete())}}))}})}const uh=new Ve(\"NgValueAccessor\"),hh={provide:uh,useExisting:Ce(()=>mh),multi:!0};let mh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this.onChange=e=>{},this.onTouched=()=>{}}writeValue(e){this._renderer.setProperty(this._elementRef.nativeElement,\"checked\",e)}registerOnChange(e){this.onChange=e}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"type\",\"checkbox\",\"formControlName\",\"\"],[\"input\",\"type\",\"checkbox\",\"formControl\",\"\"],[\"input\",\"type\",\"checkbox\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(e){return t.onChange(e.target.checked)}))(\"blur\",(function(){return t.onTouched()}))},features:[Ba([hh])]}),e})();const ph={provide:uh,useExisting:Ce(()=>_h),multi:!0},fh=new Ve(\"CompositionEventMode\");let _h=(()=>{class e{constructor(e,t,n){this._renderer=e,this._elementRef=t,this._compositionMode=n,this.onChange=e=>{},this.onTouched=()=>{},this._composing=!1,null==this._compositionMode&&(this._compositionMode=!function(){const e=Fd()?Fd().getUserAgent():\"\";return/android (\\d+)/.test(e.toLowerCase())}())}writeValue(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",null==e?\"\":e)}registerOnChange(e){this.onChange=e}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}_handleInput(e){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(e)}_compositionStart(){this._composing=!0}_compositionEnd(e){this._composing=!1,this._compositionMode&&this.onChange(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka),Eo(fh,8))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"formControlName\",\"\",3,\"type\",\"checkbox\"],[\"textarea\",\"formControlName\",\"\"],[\"input\",\"formControl\",\"\",3,\"type\",\"checkbox\"],[\"textarea\",\"formControl\",\"\"],[\"input\",\"ngModel\",\"\",3,\"type\",\"checkbox\"],[\"textarea\",\"ngModel\",\"\"],[\"\",\"ngDefaultControl\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"input\",(function(e){return t._handleInput(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))(\"compositionstart\",(function(){return t._compositionStart()}))(\"compositionend\",(function(e){return t._compositionEnd(e.target.value)}))},features:[Ba([ph])]}),e})(),gh=(()=>{class e{get value(){return this.control?this.control.value:null}get valid(){return this.control?this.control.valid:null}get invalid(){return this.control?this.control.invalid:null}get pending(){return this.control?this.control.pending:null}get disabled(){return this.control?this.control.disabled:null}get enabled(){return this.control?this.control.enabled:null}get errors(){return this.control?this.control.errors:null}get pristine(){return this.control?this.control.pristine:null}get dirty(){return this.control?this.control.dirty:null}get touched(){return this.control?this.control.touched:null}get status(){return this.control?this.control.status:null}get untouched(){return this.control?this.control.untouched:null}get statusChanges(){return this.control?this.control.statusChanges:null}get valueChanges(){return this.control?this.control.valueChanges:null}get path(){return null}reset(e){this.control&&this.control.reset(e)}hasError(e,t){return!!this.control&&this.control.hasError(e,t)}getError(e,t){return this.control?this.control.getError(e,t):null}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e}),e})(),yh=(()=>{class e extends gh{get formDirective(){return null}get path(){return null}}return e.\\u0275fac=function(t){return bh(t||e)},e.\\u0275dir=St({type:e,features:[Ya]}),e})();const bh=li(yh);function vh(){throw new Error(\"unimplemented\")}class wh extends gh{constructor(){super(...arguments),this._parent=null,this.name=null,this.valueAccessor=null,this._rawValidators=[],this._rawAsyncValidators=[]}get validator(){return vh()}get asyncValidator(){return vh()}}class Mh{constructor(e){this._cd=e}get ngClassUntouched(){return!!this._cd.control&&this._cd.control.untouched}get ngClassTouched(){return!!this._cd.control&&this._cd.control.touched}get ngClassPristine(){return!!this._cd.control&&this._cd.control.pristine}get ngClassDirty(){return!!this._cd.control&&this._cd.control.dirty}get ngClassValid(){return!!this._cd.control&&this._cd.control.valid}get ngClassInvalid(){return!!this._cd.control&&this._cd.control.invalid}get ngClassPending(){return!!this._cd.control&&this._cd.control.pending}}let kh=(()=>{class e extends Mh{constructor(e){super(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(wh,2))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formControlName\",\"\"],[\"\",\"ngModel\",\"\"],[\"\",\"formControl\",\"\"]],hostVars:14,hostBindings:function(e,t){2&e&&ua(\"ng-untouched\",t.ngClassUntouched)(\"ng-touched\",t.ngClassTouched)(\"ng-pristine\",t.ngClassPristine)(\"ng-dirty\",t.ngClassDirty)(\"ng-valid\",t.ngClassValid)(\"ng-invalid\",t.ngClassInvalid)(\"ng-pending\",t.ngClassPending)},features:[Ya]}),e})(),Sh=(()=>{class e extends Mh{constructor(e){super(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,2))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formGroupName\",\"\"],[\"\",\"formArrayName\",\"\"],[\"\",\"ngModelGroup\",\"\"],[\"\",\"formGroup\",\"\"],[\"form\",3,\"ngNoForm\",\"\"],[\"\",\"ngForm\",\"\"]],hostVars:14,hostBindings:function(e,t){2&e&&ua(\"ng-untouched\",t.ngClassUntouched)(\"ng-touched\",t.ngClassTouched)(\"ng-pristine\",t.ngClassPristine)(\"ng-dirty\",t.ngClassDirty)(\"ng-valid\",t.ngClassValid)(\"ng-invalid\",t.ngClassInvalid)(\"ng-pending\",t.ngClassPending)},features:[Ya]}),e})();function Lh(e){return null==e||0===e.length}const xh=new Ve(\"NgValidators\"),Ch=new Ve(\"NgAsyncValidators\"),Th=/^(?=.{1,254}$)(?=.{1,64}@)[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;class Dh{static min(e){return t=>{if(Lh(t.value)||Lh(e))return null;const n=parseFloat(t.value);return!isNaN(n)&&n{if(Lh(t.value)||Lh(e))return null;const n=parseFloat(t.value);return!isNaN(n)&&n>e?{max:{max:e,actual:t.value}}:null}}static required(e){return Lh(e.value)?{required:!0}:null}static requiredTrue(e){return!0===e.value?null:{required:!0}}static email(e){return Lh(e.value)||Th.test(e.value)?null:{email:!0}}static minLength(e){return t=>{if(Lh(t.value))return null;const n=t.value?t.value.length:0;return n{const n=t.value?t.value.length:0;return n>e?{maxlength:{requiredLength:e,actualLength:n}}:null}}static pattern(e){if(!e)return Dh.nullValidator;let t,n;return\"string\"==typeof e?(n=\"\",\"^\"!==e.charAt(0)&&(n+=\"^\"),n+=e,\"$\"!==e.charAt(e.length-1)&&(n+=\"$\"),t=new RegExp(n)):(n=e.toString(),t=e),e=>{if(Lh(e.value))return null;const i=e.value;return t.test(i)?null:{pattern:{requiredPattern:n,actualValue:i}}}}static nullValidator(e){return null}static compose(e){if(!e)return null;const t=e.filter(Yh);return 0==t.length?null:function(e){return Oh(function(e,t){return t.map(t=>t(e))}(e,t))}}static composeAsync(e){if(!e)return null;const t=e.filter(Yh);return 0==t.length?null:function(e){return ch(function(e,t){return t.map(t=>t(e))}(e,t).map(Eh)).pipe(H(Oh))}}}function Yh(e){return null!=e}function Eh(e){const t=Vo(e)?z(e):e;if(!Wo(t))throw new Error(\"Expected validator to return Promise or Observable.\");return t}function Oh(e){let t={};return e.forEach(e=>{t=null!=e?Object.assign(Object.assign({},t),e):t}),0===Object.keys(t).length?null:t}function Ih(e){return e.validate?t=>e.validate(t):e}function Ph(e){return e.validate?t=>e.validate(t):e}const Ah={provide:uh,useExisting:Ce(()=>Rh),multi:!0};let Rh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this.onChange=e=>{},this.onTouched=()=>{}}writeValue(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",null==e?\"\":e)}registerOnChange(e){this.onChange=t=>{e(\"\"==t?null:parseFloat(t))}}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"type\",\"number\",\"formControlName\",\"\"],[\"input\",\"type\",\"number\",\"formControl\",\"\"],[\"input\",\"type\",\"number\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"input\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},features:[Ba([Ah])]}),e})();const Hh={provide:uh,useExisting:Ce(()=>Fh),multi:!0};let jh=(()=>{class e{constructor(){this._accessors=[]}add(e,t){this._accessors.push([e,t])}remove(e){for(let t=this._accessors.length-1;t>=0;--t)if(this._accessors[t][1]===e)return void this._accessors.splice(t,1)}select(e){this._accessors.forEach(t=>{this._isSameGroup(t,e)&&t[1]!==e&&t[1].fireUncheck(e.value)})}_isSameGroup(e,t){return!!e[0].control&&e[0]._parent===t._control._parent&&e[1].name===t.name}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),Fh=(()=>{class e{constructor(e,t,n,i){this._renderer=e,this._elementRef=t,this._registry=n,this._injector=i,this.onChange=()=>{},this.onTouched=()=>{}}ngOnInit(){this._control=this._injector.get(wh),this._checkName(),this._registry.add(this._control,this)}ngOnDestroy(){this._registry.remove(this)}writeValue(e){this._state=e===this.value,this._renderer.setProperty(this._elementRef.nativeElement,\"checked\",this._state)}registerOnChange(e){this._fn=e,this.onChange=()=>{e(this.value),this._registry.select(this)}}fireUncheck(e){this.writeValue(e)}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}_checkName(){this.name&&this.formControlName&&this.name!==this.formControlName&&this._throwNameError(),!this.name&&this.formControlName&&(this.name=this.formControlName)}_throwNameError(){throw new Error('\\n If you define both a name and a formControlName attribute on your radio button, their values\\n must match. Ex: \\n ')}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka),Eo(jh),Eo(fo))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"type\",\"radio\",\"formControlName\",\"\"],[\"input\",\"type\",\"radio\",\"formControl\",\"\"],[\"input\",\"type\",\"radio\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(){return t.onChange()}))(\"blur\",(function(){return t.onTouched()}))},inputs:{name:\"name\",formControlName:\"formControlName\",value:\"value\"},features:[Ba([Hh])]}),e})();const Nh={provide:uh,useExisting:Ce(()=>zh),multi:!0};let zh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this.onChange=e=>{},this.onTouched=()=>{}}writeValue(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",parseFloat(e))}registerOnChange(e){this.onChange=t=>{e(\"\"==t?null:parseFloat(t))}}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"type\",\"range\",\"formControlName\",\"\"],[\"input\",\"type\",\"range\",\"formControl\",\"\"],[\"input\",\"type\",\"range\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"input\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},features:[Ba([Nh])]}),e})();const Vh='\\n

\\n \\n
\\n\\n In your class:\\n\\n this.myGroup = new FormGroup({\\n firstName: new FormControl()\\n });',Wh='\\n
\\n
\\n \\n
\\n
\\n\\n In your class:\\n\\n this.myGroup = new FormGroup({\\n person: new FormGroup({ firstName: new FormControl() })\\n });',Uh='\\n
\\n
\\n \\n
\\n
';class $h{static controlParentException(){throw new Error(`formControlName must be used with a parent formGroup directive. You'll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n ${Vh}`)}static ngModelGroupException(){throw new Error(`formControlName cannot be used with an ngModelGroup parent. It is only compatible with parents\\n that also have a \"form\" prefix: formGroupName, formArrayName, or formGroup.\\n\\n Option 1: Update the parent to be formGroupName (reactive form strategy)\\n\\n ${Wh}\\n\\n Option 2: Use ngModel instead of formControlName (template-driven strategy)\\n\\n ${Uh}`)}static missingFormException(){throw new Error(`formGroup expects a FormGroup instance. Please pass one in.\\n\\n Example:\\n\\n ${Vh}`)}static groupParentException(){throw new Error(`formGroupName must be used with a parent formGroup directive. You'll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n ${Wh}`)}static arrayParentException(){throw new Error('formArrayName must be used with a parent formGroup directive. You\\'ll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n \\n
\\n
\\n
\\n \\n
\\n
\\n
\\n\\n In your class:\\n\\n this.cityArray = new FormArray([new FormControl(\\'SF\\')]);\\n this.myGroup = new FormGroup({\\n cities: this.cityArray\\n });')}static disabledAttrWarning(){console.warn(\"\\n It looks like you're using the disabled attribute with a reactive form directive. If you set disabled to true\\n when you set up this control in your component class, the disabled attribute will actually be set in the DOM for\\n you. We recommend using this approach to avoid 'changed after checked' errors.\\n \\n Example: \\n form = new FormGroup({\\n first: new FormControl({value: 'Nancy', disabled: true}, Validators.required),\\n last: new FormControl('Drew', Validators.required)\\n });\\n \")}static ngModelWarning(e){console.warn(`\\n It looks like you're using ngModel on the same form field as ${e}. \\n Support for using the ngModel input property and ngModelChange event with \\n reactive form directives has been deprecated in Angular v6 and will be removed \\n in Angular v7.\\n \\n For more information on this, see our API docs here:\\n https://angular.io/api/forms/${\"formControl\"===e?\"FormControlDirective\":\"FormControlName\"}#use-with-ngmodel\\n `)}}const Bh={provide:uh,useExisting:Ce(()=>qh),multi:!0};let qh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this._optionMap=new Map,this._idCounter=0,this.onChange=e=>{},this.onTouched=()=>{},this._compareWith=ko}set compareWith(e){if(\"function\"!=typeof e)throw new Error(`compareWith must be a function, but received ${JSON.stringify(e)}`);this._compareWith=e}writeValue(e){this.value=e;const t=this._getOptionId(e);null==t&&this._renderer.setProperty(this._elementRef.nativeElement,\"selectedIndex\",-1);const n=function(e,t){return null==e?`${t}`:(t&&\"object\"==typeof t&&(t=\"Object\"),`${e}: ${t}`.slice(0,50))}(t,e);this._renderer.setProperty(this._elementRef.nativeElement,\"value\",n)}registerOnChange(e){this.onChange=t=>{this.value=this._getOptionValue(t),e(this.value)}}registerOnTouched(e){this.onTouched=e}setDisabledState(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}_registerOption(){return(this._idCounter++).toString()}_getOptionId(e){for(const t of Array.from(this._optionMap.keys()))if(this._compareWith(this._optionMap.get(t),e))return t;return null}_getOptionValue(e){const t=function(e){return e.split(\":\")[0]}(e);return this._optionMap.has(t)?this._optionMap.get(t):e}}return e.\\u0275fac=function(t){return new(t||e)(Eo(el),Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"select\",\"formControlName\",\"\",3,\"multiple\",\"\"],[\"select\",\"formControl\",\"\",3,\"multiple\",\"\"],[\"select\",\"ngModel\",\"\",3,\"multiple\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},inputs:{compareWith:\"compareWith\"},features:[Ba([Bh])]}),e})();const Gh={provide:uh,useExisting:Ce(()=>Jh),multi:!0};let Jh=(()=>{class e{constructor(e,t){this._renderer=e,this._elementRef=t,this._optionMap=new Map,this._idCounter=0,this.onChange=e=>{},this.onTouched=()=>{},this._compareWith=ko}set compareWith(e){if(\"function\"!=typeof e)throw new Error(`compareWith must be a function, but received ${JSON.stringify(e)}`);this._compareWith=e}writeValue(e){let t;if(this.value=e,Array.isArray(e)){const n=e.map(e=>this._getOptionId(e));t=(e,t)=>{e._setSelected(n.indexOf(t.toString())>-1)}}else t=(e,t)=>{e._setSelected(!1)};this._optionMap.forEach(t)}registerOnChange(e){this.onChange=t=>{const n=[];if(t.hasOwnProperty(\"selectedOptions\")){const e=t.selectedOptions;for(let t=0;t{e._pendingValue=n,e._pendingChange=!0,e._pendingDirty=!0,\"change\"===e.updateOn&&Qh(e,t)})}(e,t),function(e,t){e.registerOnChange((e,n)=>{t.valueAccessor.writeValue(e),n&&t.viewToModelUpdate(e)})}(e,t),function(e,t){t.valueAccessor.registerOnTouched(()=>{e._pendingTouched=!0,\"blur\"===e.updateOn&&e._pendingChange&&Qh(e,t),\"submit\"!==e.updateOn&&e.markAsTouched()})}(e,t),t.valueAccessor.setDisabledState&&e.registerOnDisabledChange(e=>{t.valueAccessor.setDisabledState(e)}),t._rawValidators.forEach(t=>{t.registerOnValidatorChange&&t.registerOnValidatorChange(()=>e.updateValueAndValidity())}),t._rawAsyncValidators.forEach(t=>{t.registerOnValidatorChange&&t.registerOnValidatorChange(()=>e.updateValueAndValidity())})}function Qh(e,t){e._pendingDirty&&e.markAsDirty(),e.setValue(e._pendingValue,{emitModelToViewChange:!1}),t.viewToModelUpdate(e._pendingValue),e._pendingChange=!1}function Xh(e,t){null==e&&tm(t,\"Cannot find control with\"),e.validator=Dh.compose([e.validator,t.validator]),e.asyncValidator=Dh.composeAsync([e.asyncValidator,t.asyncValidator])}function em(e){return tm(e,\"There is no FormControl instance attached to form control element with\")}function tm(e,t){let n;throw n=e.path.length>1?`path: '${e.path.join(\" -> \")}'`:e.path[0]?`name: '${e.path}'`:\"unspecified name attribute\",new Error(`${t} ${n}`)}function nm(e){return null!=e?Dh.compose(e.map(Ih)):null}function im(e){return null!=e?Dh.composeAsync(e.map(Ph)):null}function sm(e,t){if(!e.hasOwnProperty(\"model\"))return!1;const n=e.model;return!!n.isFirstChange()||!ko(t,n.currentValue)}const rm=[mh,zh,Rh,qh,Jh,Fh];function om(e,t){e._syncPendingControls(),t.forEach(e=>{const t=e.control;\"submit\"===t.updateOn&&t._pendingChange&&(e.viewToModelUpdate(t._pendingValue),t._pendingChange=!1)})}function am(e,t){if(!t)return null;Array.isArray(t)||tm(e,\"Value accessor was not provided as an array for form control with\");let n=void 0,i=void 0,s=void 0;return t.forEach(t=>{var r;t.constructor===_h?n=t:(r=t,rm.some(e=>r.constructor===e)?(i&&tm(e,\"More than one built-in value accessor matches form control with\"),i=t):(s&&tm(e,\"More than one custom value accessor matches form control with\"),s=t))}),s||i||n||(tm(e,\"No valid value accessor for form control with\"),null)}function lm(e,t){const n=e.indexOf(t);n>-1&&e.splice(n,1)}function cm(e,t,n,i){Si()&&\"never\"!==i&&((null!==i&&\"once\"!==i||t._ngModelWarningSentOnce)&&(\"always\"!==i||n._ngModelWarningSent)||($h.ngModelWarning(e),t._ngModelWarningSentOnce=!0,n._ngModelWarningSent=!0))}function dm(e){const t=hm(e)?e.validators:e;return Array.isArray(t)?nm(t):t||null}function um(e,t){const n=hm(t)?t.asyncValidators:e;return Array.isArray(n)?im(n):n||null}function hm(e){return null!=e&&!Array.isArray(e)&&\"object\"==typeof e}class mm{constructor(e,t){this.validator=e,this.asyncValidator=t,this._onCollectionChange=()=>{},this.pristine=!0,this.touched=!1,this._onDisabledChange=[]}get parent(){return this._parent}get valid(){return\"VALID\"===this.status}get invalid(){return\"INVALID\"===this.status}get pending(){return\"PENDING\"==this.status}get disabled(){return\"DISABLED\"===this.status}get enabled(){return\"DISABLED\"!==this.status}get dirty(){return!this.pristine}get untouched(){return!this.touched}get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:\"change\"}setValidators(e){this.validator=dm(e)}setAsyncValidators(e){this.asyncValidator=um(e)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(e={}){this.touched=!0,this._parent&&!e.onlySelf&&this._parent.markAsTouched(e)}markAllAsTouched(){this.markAsTouched({onlySelf:!0}),this._forEachChild(e=>e.markAllAsTouched())}markAsUntouched(e={}){this.touched=!1,this._pendingTouched=!1,this._forEachChild(e=>{e.markAsUntouched({onlySelf:!0})}),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)}markAsDirty(e={}){this.pristine=!1,this._parent&&!e.onlySelf&&this._parent.markAsDirty(e)}markAsPristine(e={}){this.pristine=!0,this._pendingDirty=!1,this._forEachChild(e=>{e.markAsPristine({onlySelf:!0})}),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)}markAsPending(e={}){this.status=\"PENDING\",!1!==e.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!e.onlySelf&&this._parent.markAsPending(e)}disable(e={}){const t=this._parentMarkedDirty(e.onlySelf);this.status=\"DISABLED\",this.errors=null,this._forEachChild(t=>{t.disable(Object.assign(Object.assign({},e),{onlySelf:!0}))}),this._updateValue(),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(Object.assign(Object.assign({},e),{skipPristineCheck:t})),this._onDisabledChange.forEach(e=>e(!0))}enable(e={}){const t=this._parentMarkedDirty(e.onlySelf);this.status=\"VALID\",this._forEachChild(t=>{t.enable(Object.assign(Object.assign({},e),{onlySelf:!0}))}),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent}),this._updateAncestors(Object.assign(Object.assign({},e),{skipPristineCheck:t})),this._onDisabledChange.forEach(e=>e(!1))}_updateAncestors(e){this._parent&&!e.onlySelf&&(this._parent.updateValueAndValidity(e),e.skipPristineCheck||this._parent._updatePristine(),this._parent._updateTouched())}setParent(e){this._parent=e}updateValueAndValidity(e={}){this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),\"VALID\"!==this.status&&\"PENDING\"!==this.status||this._runAsyncValidator(e.emitEvent)),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!e.onlySelf&&this._parent.updateValueAndValidity(e)}_updateTreeValidity(e={emitEvent:!0}){this._forEachChild(t=>t._updateTreeValidity(e)),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?\"DISABLED\":\"VALID\"}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(e){if(this.asyncValidator){this.status=\"PENDING\";const t=Eh(this.asyncValidator(this));this._asyncValidationSubscription=t.subscribe(t=>this.setErrors(t,{emitEvent:e}))}}_cancelExistingSubscription(){this._asyncValidationSubscription&&this._asyncValidationSubscription.unsubscribe()}setErrors(e,t={}){this.errors=e,this._updateControlsErrors(!1!==t.emitEvent)}get(e){return function(e,t,n){if(null==t)return null;if(Array.isArray(t)||(t=t.split(\".\")),Array.isArray(t)&&0===t.length)return null;let i=e;return t.forEach(e=>{i=i instanceof fm?i.controls.hasOwnProperty(e)?i.controls[e]:null:i instanceof _m&&i.at(e)||null}),i}(this,e)}getError(e,t){const n=t?this.get(t):this;return n&&n.errors?n.errors[e]:null}hasError(e,t){return!!this.getError(e,t)}get root(){let e=this;for(;e._parent;)e=e._parent;return e}_updateControlsErrors(e){this.status=this._calculateStatus(),e&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(e)}_initObservables(){this.valueChanges=new yc,this.statusChanges=new yc}_calculateStatus(){return this._allControlsDisabled()?\"DISABLED\":this.errors?\"INVALID\":this._anyControlsHaveStatus(\"PENDING\")?\"PENDING\":this._anyControlsHaveStatus(\"INVALID\")?\"INVALID\":\"VALID\"}_anyControlsHaveStatus(e){return this._anyControls(t=>t.status===e)}_anyControlsDirty(){return this._anyControls(e=>e.dirty)}_anyControlsTouched(){return this._anyControls(e=>e.touched)}_updatePristine(e={}){this.pristine=!this._anyControlsDirty(),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)}_updateTouched(e={}){this.touched=this._anyControlsTouched(),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)}_isBoxedValue(e){return\"object\"==typeof e&&null!==e&&2===Object.keys(e).length&&\"value\"in e&&\"disabled\"in e}_registerOnCollectionChange(e){this._onCollectionChange=e}_setUpdateStrategy(e){hm(e)&&null!=e.updateOn&&(this._updateOn=e.updateOn)}_parentMarkedDirty(e){return!e&&this._parent&&this._parent.dirty&&!this._parent._anyControlsDirty()}}class pm extends mm{constructor(e=null,t,n){super(dm(t),um(n,t)),this._onChange=[],this._applyFormState(e),this._setUpdateStrategy(t),this.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),this._initObservables()}setValue(e,t={}){this.value=this._pendingValue=e,this._onChange.length&&!1!==t.emitModelToViewChange&&this._onChange.forEach(e=>e(this.value,!1!==t.emitViewToModelChange)),this.updateValueAndValidity(t)}patchValue(e,t={}){this.setValue(e,t)}reset(e=null,t={}){this._applyFormState(e),this.markAsPristine(t),this.markAsUntouched(t),this.setValue(this.value,t),this._pendingChange=!1}_updateValue(){}_anyControls(e){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(e){this._onChange.push(e)}_clearChangeFns(){this._onChange=[],this._onDisabledChange=[],this._onCollectionChange=()=>{}}registerOnDisabledChange(e){this._onDisabledChange.push(e)}_forEachChild(e){}_syncPendingControls(){return!(\"submit\"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))}_applyFormState(e){this._isBoxedValue(e)?(this.value=this._pendingValue=e.value,e.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=e}}class fm extends mm{constructor(e,t,n){super(dm(t),um(n,t)),this.controls=e,this._initObservables(),this._setUpdateStrategy(t),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!1})}registerControl(e,t){return this.controls[e]?this.controls[e]:(this.controls[e]=t,t.setParent(this),t._registerOnCollectionChange(this._onCollectionChange),t)}addControl(e,t){this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()}removeControl(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange(()=>{}),delete this.controls[e],this.updateValueAndValidity(),this._onCollectionChange()}setControl(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange(()=>{}),delete this.controls[e],t&&this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()}contains(e){return this.controls.hasOwnProperty(e)&&this.controls[e].enabled}setValue(e,t={}){this._checkAllValuesPresent(e),Object.keys(e).forEach(n=>{this._throwIfControlMissing(n),this.controls[n].setValue(e[n],{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}patchValue(e,t={}){Object.keys(e).forEach(n=>{this.controls[n]&&this.controls[n].patchValue(e[n],{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}reset(e={},t={}){this._forEachChild((n,i)=>{n.reset(e[i],{onlySelf:!0,emitEvent:t.emitEvent})}),this._updatePristine(t),this._updateTouched(t),this.updateValueAndValidity(t)}getRawValue(){return this._reduceChildren({},(e,t,n)=>(e[n]=t instanceof pm?t.value:t.getRawValue(),e))}_syncPendingControls(){let e=this._reduceChildren(!1,(e,t)=>!!t._syncPendingControls()||e);return e&&this.updateValueAndValidity({onlySelf:!0}),e}_throwIfControlMissing(e){if(!Object.keys(this.controls).length)throw new Error(\"\\n There are no form controls registered with this group yet. If you're using ngModel,\\n you may want to check next tick (e.g. use setTimeout).\\n \");if(!this.controls[e])throw new Error(`Cannot find form control with name: ${e}.`)}_forEachChild(e){Object.keys(this.controls).forEach(t=>e(this.controls[t],t))}_setUpControls(){this._forEachChild(e=>{e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(e){let t=!1;return this._forEachChild((n,i)=>{t=t||this.contains(i)&&e(n)}),t}_reduceValue(){return this._reduceChildren({},(e,t,n)=>((t.enabled||this.disabled)&&(e[n]=t.value),e))}_reduceChildren(e,t){let n=e;return this._forEachChild((e,i)=>{n=t(n,e,i)}),n}_allControlsDisabled(){for(const e of Object.keys(this.controls))if(this.controls[e].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}_checkAllValuesPresent(e){this._forEachChild((t,n)=>{if(void 0===e[n])throw new Error(`Must supply a value for form control with name: '${n}'.`)})}}class _m extends mm{constructor(e,t,n){super(dm(t),um(n,t)),this.controls=e,this._initObservables(),this._setUpdateStrategy(t),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!1})}at(e){return this.controls[e]}push(e){this.controls.push(e),this._registerControl(e),this.updateValueAndValidity(),this._onCollectionChange()}insert(e,t){this.controls.splice(e,0,t),this._registerControl(t),this.updateValueAndValidity()}removeAt(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange(()=>{}),this.controls.splice(e,1),this.updateValueAndValidity()}setControl(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange(()=>{}),this.controls.splice(e,1),t&&(this.controls.splice(e,0,t),this._registerControl(t)),this.updateValueAndValidity(),this._onCollectionChange()}get length(){return this.controls.length}setValue(e,t={}){this._checkAllValuesPresent(e),e.forEach((e,n)=>{this._throwIfControlMissing(n),this.at(n).setValue(e,{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}patchValue(e,t={}){e.forEach((e,n)=>{this.at(n)&&this.at(n).patchValue(e,{onlySelf:!0,emitEvent:t.emitEvent})}),this.updateValueAndValidity(t)}reset(e=[],t={}){this._forEachChild((n,i)=>{n.reset(e[i],{onlySelf:!0,emitEvent:t.emitEvent})}),this._updatePristine(t),this._updateTouched(t),this.updateValueAndValidity(t)}getRawValue(){return this.controls.map(e=>e instanceof pm?e.value:e.getRawValue())}clear(){this.controls.length<1||(this._forEachChild(e=>e._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity())}_syncPendingControls(){let e=this.controls.reduce((e,t)=>!!t._syncPendingControls()||e,!1);return e&&this.updateValueAndValidity({onlySelf:!0}),e}_throwIfControlMissing(e){if(!this.controls.length)throw new Error(\"\\n There are no form controls registered with this array yet. If you're using ngModel,\\n you may want to check next tick (e.g. use setTimeout).\\n \");if(!this.at(e))throw new Error(`Cannot find form control at index ${e}`)}_forEachChild(e){this.controls.forEach((t,n)=>{e(t,n)})}_updateValue(){this.value=this.controls.filter(e=>e.enabled||this.disabled).map(e=>e.value)}_anyControls(e){return this.controls.some(t=>t.enabled&&e(t))}_setUpControls(){this._forEachChild(e=>this._registerControl(e))}_checkAllValuesPresent(e){this._forEachChild((t,n)=>{if(void 0===e[n])throw new Error(`Must supply a value for form control at index: ${n}.`)})}_allControlsDisabled(){for(const e of this.controls)if(e.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(e){e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange)}}const gm={provide:yh,useExisting:Ce(()=>bm)},ym=(()=>Promise.resolve(null))();let bm=(()=>{class e extends yh{constructor(e,t){super(),this.submitted=!1,this._directives=[],this.ngSubmit=new yc,this.form=new fm({},nm(e),im(t))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(e){ym.then(()=>{const t=this._findContainer(e.path);e.control=t.registerControl(e.name,e.control),Zh(e.control,e),e.control.updateValueAndValidity({emitEvent:!1}),this._directives.push(e)})}getControl(e){return this.form.get(e.path)}removeControl(e){ym.then(()=>{const t=this._findContainer(e.path);t&&t.removeControl(e.name),lm(this._directives,e)})}addFormGroup(e){ym.then(()=>{const t=this._findContainer(e.path),n=new fm({});Xh(n,e),t.registerControl(e.name,n),n.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(e){ym.then(()=>{const t=this._findContainer(e.path);t&&t.removeControl(e.name)})}getFormGroup(e){return this.form.get(e.path)}updateModel(e,t){ym.then(()=>{this.form.get(e.path).setValue(t)})}setValue(e){this.control.setValue(e)}onSubmit(e){return this.submitted=!0,om(this.form,this._directives),this.ngSubmit.emit(e),!1}onReset(){this.resetForm()}resetForm(e){this.form.reset(e),this.submitted=!1}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}_findContainer(e){return e.pop(),e.length?this.form.get(e):this.form}}return e.\\u0275fac=function(t){return new(t||e)(Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"form\",3,\"ngNoForm\",\"\",3,\"formGroup\",\"\"],[\"ng-form\"],[\"\",\"ngForm\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"submit\",(function(e){return t.onSubmit(e)}))(\"reset\",(function(){return t.onReset()}))},inputs:{options:[\"ngFormOptions\",\"options\"]},outputs:{ngSubmit:\"ngSubmit\"},exportAs:[\"ngForm\"],features:[Ba([gm]),Ya]}),e})(),vm=(()=>{class e extends yh{ngOnInit(){this._checkParentType(),this.formDirective.addFormGroup(this)}ngOnDestroy(){this.formDirective&&this.formDirective.removeFormGroup(this)}get control(){return this.formDirective.getFormGroup(this)}get path(){return Kh(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}get validator(){return nm(this._validators)}get asyncValidator(){return im(this._asyncValidators)}_checkParentType(){}}return e.\\u0275fac=function(t){return wm(t||e)},e.\\u0275dir=St({type:e,features:[Ya]}),e})();const wm=li(vm);class Mm{static modelParentException(){throw new Error(`\\n ngModel cannot be used to register form controls with a parent formGroup directive. Try using\\n formGroup's partner directive \"formControlName\" instead. Example:\\n\\n ${Vh}\\n\\n Or, if you'd like to avoid registering this form control, indicate that it's standalone in ngModelOptions:\\n\\n Example:\\n\\n \\n
\\n \\n \\n
\\n `)}static formGroupNameException(){throw new Error(`\\n ngModel cannot be used to register form controls with a parent formGroupName or formArrayName directive.\\n\\n Option 1: Use formControlName instead of ngModel (reactive strategy):\\n\\n ${Wh}\\n\\n Option 2: Update ngModel's parent be ngModelGroup (template-driven strategy):\\n\\n ${Uh}`)}static missingNameException(){throw new Error('If ngModel is used within a form tag, either the name attribute must be set or the form\\n control must be defined as \\'standalone\\' in ngModelOptions.\\n\\n Example 1: \\n Example 2: ')}static modelGroupParentException(){throw new Error(`\\n ngModelGroup cannot be used with a parent formGroup directive.\\n\\n Option 1: Use formGroupName instead of ngModelGroup (reactive strategy):\\n\\n ${Wh}\\n\\n Option 2: Use a regular form tag instead of the formGroup directive (template-driven strategy):\\n\\n ${Uh}`)}}const km={provide:yh,useExisting:Ce(()=>Sm)};let Sm=(()=>{class e extends vm{constructor(e,t,n){super(),this._parent=e,this._validators=t,this._asyncValidators=n}_checkParentType(){this._parent instanceof e||this._parent instanceof bm||Mm.modelGroupParentException()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,5),Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngModelGroup\",\"\"]],inputs:{name:[\"ngModelGroup\",\"name\"]},exportAs:[\"ngModelGroup\"],features:[Ba([km]),Ya]}),e})();const Lm={provide:wh,useExisting:Ce(()=>Cm)},xm=(()=>Promise.resolve(null))();let Cm=(()=>{class e extends wh{constructor(e,t,n,i){super(),this.control=new pm,this._registered=!1,this.update=new yc,this._parent=e,this._rawValidators=t||[],this._rawAsyncValidators=n||[],this.valueAccessor=am(this,i)}ngOnChanges(e){this._checkForErrors(),this._registered||this._setUpControl(),\"isDisabled\"in e&&this._updateDisabled(e),sm(e,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}get path(){return this._parent?Kh(this.name,this._parent):[this.name]}get formDirective(){return this._parent?this._parent.formDirective:null}get validator(){return nm(this._rawValidators)}get asyncValidator(){return im(this._rawAsyncValidators)}viewToModelUpdate(e){this.viewModel=e,this.update.emit(e)}_setUpControl(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)}_isStandalone(){return!this._parent||!(!this.options||!this.options.standalone)}_setUpStandalone(){Zh(this.control,this),this.control.updateValueAndValidity({emitEvent:!1})}_checkForErrors(){this._isStandalone()||this._checkParentType(),this._checkName()}_checkParentType(){!(this._parent instanceof Sm)&&this._parent instanceof vm?Mm.formGroupNameException():this._parent instanceof Sm||this._parent instanceof bm||Mm.modelParentException()}_checkName(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()||this.name||Mm.missingNameException()}_updateValue(e){xm.then(()=>{this.control.setValue(e,{emitViewToModelChange:!1})})}_updateDisabled(e){const t=e.isDisabled.currentValue,n=\"\"===t||t&&\"false\"!==t;xm.then(()=>{n&&!this.control.disabled?this.control.disable():!n&&this.control.disabled&&this.control.enable()})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,9),Eo(xh,10),Eo(Ch,10),Eo(uh,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngModel\",\"\",3,\"formControlName\",\"\",3,\"formControl\",\"\"]],inputs:{name:\"name\",isDisabled:[\"disabled\",\"isDisabled\"],model:[\"ngModel\",\"model\"],options:[\"ngModelOptions\",\"options\"]},outputs:{update:\"ngModelChange\"},exportAs:[\"ngModel\"],features:[Ba([Lm]),Ya,Ra]}),e})(),Tm=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"form\",3,\"ngNoForm\",\"\",3,\"ngNativeValidate\",\"\"]],hostAttrs:[\"novalidate\",\"\"]}),e})();const Dm=new Ve(\"NgModelWithFormControlWarning\"),Ym={provide:wh,useExisting:Ce(()=>Em)};let Em=(()=>{class e extends wh{constructor(e,t,n,i){super(),this._ngModelWarningConfig=i,this.update=new yc,this._ngModelWarningSent=!1,this._rawValidators=e||[],this._rawAsyncValidators=t||[],this.valueAccessor=am(this,n)}set isDisabled(e){$h.disabledAttrWarning()}ngOnChanges(t){this._isControlChanged(t)&&(Zh(this.form,this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this.form.updateValueAndValidity({emitEvent:!1})),sm(t,this.viewModel)&&(cm(\"formControl\",e,this,this._ngModelWarningConfig),this.form.setValue(this.model),this.viewModel=this.model)}get path(){return[]}get validator(){return nm(this._rawValidators)}get asyncValidator(){return im(this._rawAsyncValidators)}get control(){return this.form}viewToModelUpdate(e){this.viewModel=e,this.update.emit(e)}_isControlChanged(e){return e.hasOwnProperty(\"form\")}}return e.\\u0275fac=function(t){return new(t||e)(Eo(xh,10),Eo(Ch,10),Eo(uh,10),Eo(Dm,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formControl\",\"\"]],inputs:{isDisabled:[\"disabled\",\"isDisabled\"],form:[\"formControl\",\"form\"],model:[\"ngModel\",\"model\"]},outputs:{update:\"ngModelChange\"},exportAs:[\"ngForm\"],features:[Ba([Ym]),Ya,Ra]}),e._ngModelWarningSentOnce=!1,e})();const Om={provide:yh,useExisting:Ce(()=>Im)};let Im=(()=>{class e extends yh{constructor(e,t){super(),this._validators=e,this._asyncValidators=t,this.submitted=!1,this.directives=[],this.form=null,this.ngSubmit=new yc}ngOnChanges(e){this._checkFormPresent(),e.hasOwnProperty(\"form\")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations())}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(e){const t=this.form.get(e.path);return Zh(t,e),t.updateValueAndValidity({emitEvent:!1}),this.directives.push(e),t}getControl(e){return this.form.get(e.path)}removeControl(e){lm(this.directives,e)}addFormGroup(e){const t=this.form.get(e.path);Xh(t,e),t.updateValueAndValidity({emitEvent:!1})}removeFormGroup(e){}getFormGroup(e){return this.form.get(e.path)}addFormArray(e){const t=this.form.get(e.path);Xh(t,e),t.updateValueAndValidity({emitEvent:!1})}removeFormArray(e){}getFormArray(e){return this.form.get(e.path)}updateModel(e,t){this.form.get(e.path).setValue(t)}onSubmit(e){return this.submitted=!0,om(this.form,this.directives),this.ngSubmit.emit(e),!1}onReset(){this.resetForm()}resetForm(e){this.form.reset(e),this.submitted=!1}_updateDomValue(){this.directives.forEach(e=>{const t=this.form.get(e.path);e.control!==t&&(function(e,t){t.valueAccessor.registerOnChange(()=>em(t)),t.valueAccessor.registerOnTouched(()=>em(t)),t._rawValidators.forEach(e=>{e.registerOnValidatorChange&&e.registerOnValidatorChange(null)}),t._rawAsyncValidators.forEach(e=>{e.registerOnValidatorChange&&e.registerOnValidatorChange(null)}),e&&e._clearChangeFns()}(e.control,e),t&&Zh(t,e),e.control=t)}),this.form._updateTreeValidity({emitEvent:!1})}_updateRegistrations(){this.form._registerOnCollectionChange(()=>this._updateDomValue()),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{}),this._oldForm=this.form}_updateValidators(){const e=nm(this._validators);this.form.validator=Dh.compose([this.form.validator,e]);const t=im(this._asyncValidators);this.form.asyncValidator=Dh.composeAsync([this.form.asyncValidator,t])}_checkFormPresent(){this.form||$h.missingFormException()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formGroup\",\"\"]],hostBindings:function(e,t){1&e&&Uo(\"submit\",(function(e){return t.onSubmit(e)}))(\"reset\",(function(){return t.onReset()}))},inputs:{form:[\"formGroup\",\"form\"]},outputs:{ngSubmit:\"ngSubmit\"},exportAs:[\"ngForm\"],features:[Ba([Om]),Ya,Ra]}),e})();const Pm={provide:yh,useExisting:Ce(()=>Am)};let Am=(()=>{class e extends vm{constructor(e,t,n){super(),this._parent=e,this._validators=t,this._asyncValidators=n}_checkParentType(){jm(this._parent)&&$h.groupParentException()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,13),Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formGroupName\",\"\"]],inputs:{name:[\"formGroupName\",\"name\"]},features:[Ba([Pm]),Ya]}),e})();const Rm={provide:yh,useExisting:Ce(()=>Hm)};let Hm=(()=>{class e extends yh{constructor(e,t,n){super(),this._parent=e,this._validators=t,this._asyncValidators=n}ngOnInit(){this._checkParentType(),this.formDirective.addFormArray(this)}ngOnDestroy(){this.formDirective&&this.formDirective.removeFormArray(this)}get control(){return this.formDirective.getFormArray(this)}get formDirective(){return this._parent?this._parent.formDirective:null}get path(){return Kh(null==this.name?this.name:this.name.toString(),this._parent)}get validator(){return nm(this._validators)}get asyncValidator(){return im(this._asyncValidators)}_checkParentType(){jm(this._parent)&&$h.arrayParentException()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,13),Eo(xh,10),Eo(Ch,10))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formArrayName\",\"\"]],inputs:{name:[\"formArrayName\",\"name\"]},features:[Ba([Rm]),Ya]}),e})();function jm(e){return!(e instanceof Am||e instanceof Im||e instanceof Hm)}const Fm={provide:wh,useExisting:Ce(()=>Nm)};let Nm=(()=>{class e extends wh{constructor(e,t,n,i,s){super(),this._ngModelWarningConfig=s,this._added=!1,this.update=new yc,this._ngModelWarningSent=!1,this._parent=e,this._rawValidators=t||[],this._rawAsyncValidators=n||[],this.valueAccessor=am(this,i)}set isDisabled(e){$h.disabledAttrWarning()}ngOnChanges(t){this._added||this._setUpControl(),sm(t,this.viewModel)&&(cm(\"formControlName\",e,this,this._ngModelWarningConfig),this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(e){this.viewModel=e,this.update.emit(e)}get path(){return Kh(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}get validator(){return nm(this._rawValidators)}get asyncValidator(){return im(this._rawAsyncValidators)}_checkParentType(){!(this._parent instanceof Am)&&this._parent instanceof vm?$h.ngModelGroupException():this._parent instanceof Am||this._parent instanceof Im||this._parent instanceof Hm||$h.controlParentException()}_setUpControl(){this._checkParentType(),this.control=this.formDirective.addControl(this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this._added=!0}}return e.\\u0275fac=function(t){return new(t||e)(Eo(yh,13),Eo(xh,10),Eo(Ch,10),Eo(uh,10),Eo(Dm,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"formControlName\",\"\"]],inputs:{isDisabled:[\"disabled\",\"isDisabled\"],name:[\"formControlName\",\"name\"],model:[\"ngModel\",\"model\"]},outputs:{update:\"ngModelChange\"},features:[Ba([Fm]),Ya,Ra]}),e._ngModelWarningSentOnce=!1,e})();const zm={provide:xh,useExisting:Ce(()=>Vm),multi:!0};let Vm=(()=>{class e{get required(){return this._required}set required(e){this._required=null!=e&&!1!==e&&\"false\"!==`${e}`,this._onChange&&this._onChange()}validate(e){return this.required?Dh.required(e):null}registerOnValidatorChange(e){this._onChange=e}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"required\",\"\",\"formControlName\",\"\",3,\"type\",\"checkbox\"],[\"\",\"required\",\"\",\"formControl\",\"\",3,\"type\",\"checkbox\"],[\"\",\"required\",\"\",\"ngModel\",\"\",3,\"type\",\"checkbox\"]],hostVars:1,hostBindings:function(e,t){2&e&&Co(\"required\",t.required?\"\":null)},inputs:{required:\"required\"},features:[Ba([zm])]}),e})(),Wm=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),Um=(()=>{class e{group(e,t=null){const n=this._reduceControls(e);let i=null,s=null,r=void 0;return null!=t&&(function(e){return void 0!==e.asyncValidators||void 0!==e.validators||void 0!==e.updateOn}(t)?(i=null!=t.validators?t.validators:null,s=null!=t.asyncValidators?t.asyncValidators:null,r=null!=t.updateOn?t.updateOn:void 0):(i=null!=t.validator?t.validator:null,s=null!=t.asyncValidator?t.asyncValidator:null)),new fm(n,{asyncValidators:s,updateOn:r,validators:i})}control(e,t,n){return new pm(e,t,n)}array(e,t,n){const i=e.map(e=>this._createControl(e));return new _m(i,t,n)}_reduceControls(e){const t={};return Object.keys(e).forEach(n=>{t[n]=this._createControl(e[n])}),t}_createControl(e){return e instanceof pm||e instanceof fm||e instanceof _m?e:Array.isArray(e)?this.control(e[0],e.length>1?e[1]:null,e.length>2?e[2]:null):this.control(e)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),$m=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[jh],imports:[Wm]}),e})(),Bm=(()=>{class e{static withConfig(t){return{ngModule:e,providers:[{provide:Dm,useValue:t.warnOnNgModelWithFormControl}]}}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[Um,jh],imports:[Wm]}),e})();function qm(e,...t){return t.length?t.some(t=>e[t]):e.altKey||e.shiftKey||e.ctrlKey||e.metaKey}function Gm(e,t,n){return function(i){return i.lift(new Jm(e,t,n))}}class Jm{constructor(e,t,n){this.nextOrObserver=e,this.error=t,this.complete=n}call(e,t){return t.subscribe(new Km(e,this.nextOrObserver,this.error,this.complete))}}class Km extends p{constructor(e,t,n,s){super(e),this._tapNext=g,this._tapError=g,this._tapComplete=g,this._tapError=n||g,this._tapComplete=s||g,i(t)?(this._context=this,this._tapNext=t):t&&(this._context=t,this._tapNext=t.next||g,this._tapError=t.error||g,this._tapComplete=t.complete||g)}_next(e){try{this._tapNext.call(this._context,e)}catch(t){return void this.destination.error(t)}this.destination.next(e)}_error(e){try{this._tapError.call(this._context,e)}catch(e){return void this.destination.error(e)}this.destination.error(e)}_complete(){try{this._tapComplete.call(this._context)}catch(e){return void this.destination.error(e)}return this.destination.complete()}}class Zm extends u{constructor(e,t){super()}schedule(e,t=0){return this}}class Qm extends Zm{constructor(e,t){super(e,t),this.scheduler=e,this.work=t,this.pending=!1}schedule(e,t=0){if(this.closed)return this;this.state=e;const n=this.id,i=this.scheduler;return null!=n&&(this.id=this.recycleAsyncId(i,n,t)),this.pending=!0,this.delay=t,this.id=this.id||this.requestAsyncId(i,this.id,t),this}requestAsyncId(e,t,n=0){return setInterval(e.flush.bind(e,this),n)}recycleAsyncId(e,t,n=0){if(null!==n&&this.delay===n&&!1===this.pending)return t;clearInterval(t)}execute(e,t){if(this.closed)return new Error(\"executing a cancelled action\");this.pending=!1;const n=this._execute(e,t);if(n)return n;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(e,t){let n=!1,i=void 0;try{this.work(e)}catch(s){n=!0,i=!!s&&s||new Error(s)}if(n)return this.unsubscribe(),i}_unsubscribe(){const e=this.id,t=this.scheduler,n=t.actions,i=n.indexOf(this);this.work=null,this.state=null,this.pending=!1,this.scheduler=null,-1!==i&&n.splice(i,1),null!=e&&(this.id=this.recycleAsyncId(t,e,null)),this.delay=null}}let Xm=(()=>{class e{constructor(t,n=e.now){this.SchedulerAction=t,this.now=n}schedule(e,t=0,n){return new this.SchedulerAction(this,e).schedule(n,t)}}return e.now=()=>Date.now(),e})();class ep extends Xm{constructor(e,t=Xm.now){super(e,()=>ep.delegate&&ep.delegate!==this?ep.delegate.now():t()),this.actions=[],this.active=!1,this.scheduled=void 0}schedule(e,t=0,n){return ep.delegate&&ep.delegate!==this?ep.delegate.schedule(e,t,n):super.schedule(e,t,n)}flush(e){const{actions:t}=this;if(this.active)return void t.push(e);let n;this.active=!0;do{if(n=e.execute(e.state,e.delay))break}while(e=t.shift());if(this.active=!1,n){for(;e=t.shift();)e.unsubscribe();throw n}}}const tp=new ep(Qm);function np(e,t=tp){return n=>n.lift(new ip(e,t))}class ip{constructor(e,t){this.dueTime=e,this.scheduler=t}call(e,t){return t.subscribe(new sp(e,this.dueTime,this.scheduler))}}class sp extends p{constructor(e,t,n){super(e),this.dueTime=t,this.scheduler=n,this.debouncedSubscription=null,this.lastValue=null,this.hasValue=!1}_next(e){this.clearDebounce(),this.lastValue=e,this.hasValue=!0,this.add(this.debouncedSubscription=this.scheduler.schedule(rp,this.dueTime,this))}_complete(){this.debouncedNext(),this.destination.complete()}debouncedNext(){if(this.clearDebounce(),this.hasValue){const{lastValue:e}=this;this.lastValue=null,this.hasValue=!1,this.destination.next(e)}}clearDebounce(){const e=this.debouncedSubscription;null!==e&&(this.remove(e),e.unsubscribe(),this.debouncedSubscription=null)}}function rp(e){e.debouncedNext()}const op=(()=>{function e(){return Error.call(this),this.message=\"argument out of range\",this.name=\"ArgumentOutOfRangeError\",this}return e.prototype=Object.create(Error.prototype),e})(),ap=new v(e=>e.complete());function lp(e){return e?function(e){return new v(t=>e.schedule(()=>t.complete()))}(e):ap}function cp(e){return t=>0===e?lp():t.lift(new dp(e))}class dp{constructor(e){if(this.total=e,this.total<0)throw new op}call(e,t){return t.subscribe(new up(e,this.total))}}class up extends p{constructor(e,t){super(e),this.total=t,this.count=0}_next(e){const t=this.total,n=++this.count;n<=t&&(this.destination.next(e),n===t&&(this.destination.complete(),this.unsubscribe()))}}function hp(e){return null!=e&&\"false\"!==`${e}`}function mp(e,t=0){return function(e){return!isNaN(parseFloat(e))&&!isNaN(Number(e))}(e)?Number(e):t}function pp(e){return Array.isArray(e)?e:[e]}function fp(e){return null==e?\"\":\"string\"==typeof e?e:`${e}px`}function _p(e){return e instanceof Ka?e.nativeElement:e}let gp;try{gp=\"undefined\"!=typeof Intl&&Intl.v8BreakIterator}catch(zI){gp=!1}let yp,bp=(()=>{class e{constructor(e){this._platformId=e,this.isBrowser=this._platformId?ku(this._platformId):\"object\"==typeof document&&!!document,this.EDGE=this.isBrowser&&/(edge)/i.test(navigator.userAgent),this.TRIDENT=this.isBrowser&&/(msie|trident)/i.test(navigator.userAgent),this.BLINK=this.isBrowser&&!(!window.chrome&&!gp)&&\"undefined\"!=typeof CSS&&!this.EDGE&&!this.TRIDENT,this.WEBKIT=this.isBrowser&&/AppleWebKit/i.test(navigator.userAgent)&&!this.BLINK&&!this.EDGE&&!this.TRIDENT,this.IOS=this.isBrowser&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!(\"MSStream\"in window),this.FIREFOX=this.isBrowser&&/(firefox|minefield)/i.test(navigator.userAgent),this.ANDROID=this.isBrowser&&/android/i.test(navigator.userAgent)&&!this.TRIDENT,this.SAFARI=this.isBrowser&&/safari/i.test(navigator.userAgent)&&this.WEBKIT}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Bc,8))},e.\\u0275prov=pe({factory:function(){return new e(Qe(Bc,8))},token:e,providedIn:\"root\"}),e})(),vp=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();const wp=[\"color\",\"button\",\"checkbox\",\"date\",\"datetime-local\",\"email\",\"file\",\"hidden\",\"image\",\"month\",\"number\",\"password\",\"radio\",\"range\",\"reset\",\"search\",\"submit\",\"tel\",\"text\",\"time\",\"url\",\"week\"];function Mp(){if(yp)return yp;if(\"object\"!=typeof document||!document)return yp=new Set(wp),yp;let e=document.createElement(\"input\");return yp=new Set(wp.filter(t=>(e.setAttribute(\"type\",t),e.type===t))),yp}let kp;function Sp(e){return function(){if(null==kp&&\"undefined\"!=typeof window)try{window.addEventListener(\"test\",null,Object.defineProperty({},\"passive\",{get:()=>kp=!0}))}finally{kp=kp||!1}return kp}()?e:!!e.capture}const Lp=function(){var e={NORMAL:0,NEGATED:1,INVERTED:2};return e[e.NORMAL]=\"NORMAL\",e[e.NEGATED]=\"NEGATED\",e[e.INVERTED]=\"INVERTED\",e}();let xp;function Cp(){if(\"object\"!=typeof document||!document)return Lp.NORMAL;if(!xp){const e=document.createElement(\"div\"),t=e.style;e.dir=\"rtl\",t.height=\"1px\",t.width=\"1px\",t.overflow=\"auto\",t.visibility=\"hidden\",t.pointerEvents=\"none\",t.position=\"absolute\";const n=document.createElement(\"div\"),i=n.style;i.width=\"2px\",i.height=\"1px\",e.appendChild(n),document.body.appendChild(e),xp=Lp.NORMAL,0===e.scrollLeft&&(e.scrollLeft=1,xp=0===e.scrollLeft?Lp.NEGATED:Lp.INVERTED),e.parentNode.removeChild(e)}return xp}let Tp=(()=>{class e{create(e){return\"undefined\"==typeof MutationObserver?null:new MutationObserver(e)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})(),Dp=(()=>{class e{constructor(e){this._mutationObserverFactory=e,this._observedElements=new Map}ngOnDestroy(){this._observedElements.forEach((e,t)=>this._cleanupObserver(t))}observe(e){const t=_p(e);return new v(e=>{const n=this._observeElement(t).subscribe(e);return()=>{n.unsubscribe(),this._unobserveElement(t)}})}_observeElement(e){if(this._observedElements.has(e))this._observedElements.get(e).count++;else{const t=new L,n=this._mutationObserverFactory.create(e=>t.next(e));n&&n.observe(e,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(e,{observer:n,stream:t,count:1})}return this._observedElements.get(e).stream}_unobserveElement(e){this._observedElements.has(e)&&(this._observedElements.get(e).count--,this._observedElements.get(e).count||this._cleanupObserver(e))}_cleanupObserver(e){if(this._observedElements.has(e)){const{observer:t,stream:n}=this._observedElements.get(e);t&&t.disconnect(),n.complete(),this._observedElements.delete(e)}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Tp))},e.\\u0275prov=pe({factory:function(){return new e(Qe(Tp))},token:e,providedIn:\"root\"}),e})(),Yp=(()=>{class e{constructor(e,t,n){this._contentObserver=e,this._elementRef=t,this._ngZone=n,this.event=new yc,this._disabled=!1,this._currentSubscription=null}get disabled(){return this._disabled}set disabled(e){this._disabled=hp(e),this._disabled?this._unsubscribe():this._subscribe()}get debounce(){return this._debounce}set debounce(e){this._debounce=mp(e),this._subscribe()}ngAfterContentInit(){this._currentSubscription||this.disabled||this._subscribe()}ngOnDestroy(){this._unsubscribe()}_subscribe(){this._unsubscribe();const e=this._contentObserver.observe(this._elementRef);this._ngZone.runOutsideAngular(()=>{this._currentSubscription=(this.debounce?e.pipe(np(this.debounce)):e).subscribe(this.event)})}_unsubscribe(){this._currentSubscription&&this._currentSubscription.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Dp),Eo(Ka),Eo(ld))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdkObserveContent\",\"\"]],inputs:{disabled:[\"cdkObserveContentDisabled\",\"disabled\"],debounce:\"debounce\"},outputs:{event:\"cdkObserveContent\"},exportAs:[\"cdkObserveContent\"]}),e})(),Ep=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[Tp]}),e})();class Op{constructor(e){this._items=e,this._activeItemIndex=-1,this._activeItem=null,this._wrap=!1,this._letterKeyStream=new L,this._typeaheadSubscription=u.EMPTY,this._vertical=!0,this._allowedModifierKeys=[],this._skipPredicateFn=e=>e.disabled,this._pressedLetters=[],this.tabOut=new L,this.change=new L,e instanceof vc&&e.changes.subscribe(e=>{if(this._activeItem){const t=e.toArray().indexOf(this._activeItem);t>-1&&t!==this._activeItemIndex&&(this._activeItemIndex=t)}})}skipPredicate(e){return this._skipPredicateFn=e,this}withWrap(e=!0){return this._wrap=e,this}withVerticalOrientation(e=!0){return this._vertical=e,this}withHorizontalOrientation(e){return this._horizontal=e,this}withAllowedModifierKeys(e){return this._allowedModifierKeys=e,this}withTypeAhead(e=200){if(this._items.length&&this._items.some(e=>\"function\"!=typeof e.getLabel))throw Error(\"ListKeyManager items in typeahead mode must implement the `getLabel` method.\");return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe(Gm(e=>this._pressedLetters.push(e)),np(e),Tu(()=>this._pressedLetters.length>0),H(()=>this._pressedLetters.join(\"\"))).subscribe(e=>{const t=this._getItemsArray();for(let n=1;n!e[t]||this._allowedModifierKeys.indexOf(t)>-1);switch(t){case 9:return void this.tabOut.next();case 40:if(this._vertical&&n){this.setNextItemActive();break}return;case 38:if(this._vertical&&n){this.setPreviousItemActive();break}return;case 39:if(this._horizontal&&n){\"rtl\"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case 37:if(this._horizontal&&n){\"rtl\"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;default:return void((n||qm(e,\"shiftKey\"))&&(e.key&&1===e.key.length?this._letterKeyStream.next(e.key.toLocaleUpperCase()):(t>=65&&t<=90||t>=48&&t<=57)&&this._letterKeyStream.next(String.fromCharCode(t))))}this._pressedLetters=[],e.preventDefault()}get activeItemIndex(){return this._activeItemIndex}get activeItem(){return this._activeItem}isTyping(){return this._pressedLetters.length>0}setFirstItemActive(){this._setActiveItemByIndex(0,1)}setLastItemActive(){this._setActiveItemByIndex(this._items.length-1,-1)}setNextItemActive(){this._activeItemIndex<0?this.setFirstItemActive():this._setActiveItemByDelta(1)}setPreviousItemActive(){this._activeItemIndex<0&&this._wrap?this.setLastItemActive():this._setActiveItemByDelta(-1)}updateActiveItem(e){const t=this._getItemsArray(),n=\"number\"==typeof e?e:t.indexOf(e),i=t[n];this._activeItem=null==i?null:i,this._activeItemIndex=n}_setActiveItemByDelta(e){this._wrap?this._setActiveInWrapMode(e):this._setActiveInDefaultMode(e)}_setActiveInWrapMode(e){const t=this._getItemsArray();for(let n=1;n<=t.length;n++){const i=(this._activeItemIndex+e*n+t.length)%t.length;if(!this._skipPredicateFn(t[i]))return void this.setActiveItem(i)}}_setActiveInDefaultMode(e){this._setActiveItemByIndex(this._activeItemIndex+e,e)}_setActiveItemByIndex(e,t){const n=this._getItemsArray();if(n[e]){for(;this._skipPredicateFn(n[e]);)if(!n[e+=t])return;this.setActiveItem(e)}}_getItemsArray(){return this._items instanceof vc?this._items.toArray():this._items}}class Ip extends Op{setActiveItem(e){this.activeItem&&this.activeItem.setInactiveStyles(),super.setActiveItem(e),this.activeItem&&this.activeItem.setActiveStyles()}}class Pp extends Op{constructor(){super(...arguments),this._origin=\"program\"}setFocusOrigin(e){return this._origin=e,this}setActiveItem(e){super.setActiveItem(e),this.activeItem&&this.activeItem.focus(this._origin)}}let Ap=(()=>{class e{constructor(e){this._platform=e}isDisabled(e){return e.hasAttribute(\"disabled\")}isVisible(e){return function(e){return!!(e.offsetWidth||e.offsetHeight||\"function\"==typeof e.getClientRects&&e.getClientRects().length)}(e)&&\"visible\"===getComputedStyle(e).visibility}isTabbable(e){if(!this._platform.isBrowser)return!1;const t=function(e){try{return e.frameElement}catch(zI){return null}}((n=e).ownerDocument&&n.ownerDocument.defaultView||window);var n;if(t){const e=t&&t.nodeName.toLowerCase();if(-1===Hp(t))return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&\"object\"===e)return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&!this.isVisible(t))return!1}let i=e.nodeName.toLowerCase(),s=Hp(e);if(e.hasAttribute(\"contenteditable\"))return-1!==s;if(\"iframe\"===i)return!1;if(\"audio\"===i){if(!e.hasAttribute(\"controls\"))return!1;if(this._platform.BLINK)return!0}if(\"video\"===i){if(!e.hasAttribute(\"controls\")&&this._platform.TRIDENT)return!1;if(this._platform.BLINK||this._platform.FIREFOX)return!0}return(\"object\"!==i||!this._platform.BLINK&&!this._platform.WEBKIT)&&!(this._platform.WEBKIT&&this._platform.IOS&&!function(e){let t=e.nodeName.toLowerCase(),n=\"input\"===t&&e.type;return\"text\"===n||\"password\"===n||\"select\"===t||\"textarea\"===t}(e))&&e.tabIndex>=0}isFocusable(e){return function(e){return!function(e){return function(e){return\"input\"==e.nodeName.toLowerCase()}(e)&&\"hidden\"==e.type}(e)&&(function(e){let t=e.nodeName.toLowerCase();return\"input\"===t||\"select\"===t||\"button\"===t||\"textarea\"===t}(e)||function(e){return function(e){return\"a\"==e.nodeName.toLowerCase()}(e)&&e.hasAttribute(\"href\")}(e)||e.hasAttribute(\"contenteditable\")||Rp(e))}(e)&&!this.isDisabled(e)&&this.isVisible(e)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(bp))},e.\\u0275prov=pe({factory:function(){return new e(Qe(bp))},token:e,providedIn:\"root\"}),e})();function Rp(e){if(!e.hasAttribute(\"tabindex\")||void 0===e.tabIndex)return!1;let t=e.getAttribute(\"tabindex\");return\"-32768\"!=t&&!(!t||isNaN(parseInt(t,10)))}function Hp(e){if(!Rp(e))return null;const t=parseInt(e.getAttribute(\"tabindex\")||\"\",10);return isNaN(t)?-1:t}class jp{constructor(e,t,n,i,s=!1){this._element=e,this._checker=t,this._ngZone=n,this._document=i,this._hasAttached=!1,this.startAnchorListener=()=>this.focusLastTabbableElement(),this.endAnchorListener=()=>this.focusFirstTabbableElement(),this._enabled=!0,s||this.attachAnchors()}get enabled(){return this._enabled}set enabled(e){this._enabled=e,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(e,this._startAnchor),this._toggleAnchorTabIndex(e,this._endAnchor))}destroy(){const e=this._startAnchor,t=this._endAnchor;e&&(e.removeEventListener(\"focus\",this.startAnchorListener),e.parentNode&&e.parentNode.removeChild(e)),t&&(t.removeEventListener(\"focus\",this.endAnchorListener),t.parentNode&&t.parentNode.removeChild(t)),this._startAnchor=this._endAnchor=null}attachAnchors(){return!!this._hasAttached||(this._ngZone.runOutsideAngular(()=>{this._startAnchor||(this._startAnchor=this._createAnchor(),this._startAnchor.addEventListener(\"focus\",this.startAnchorListener)),this._endAnchor||(this._endAnchor=this._createAnchor(),this._endAnchor.addEventListener(\"focus\",this.endAnchorListener))}),this._element.parentNode&&(this._element.parentNode.insertBefore(this._startAnchor,this._element),this._element.parentNode.insertBefore(this._endAnchor,this._element.nextSibling),this._hasAttached=!0),this._hasAttached)}focusInitialElementWhenReady(){return new Promise(e=>{this._executeOnStable(()=>e(this.focusInitialElement()))})}focusFirstTabbableElementWhenReady(){return new Promise(e=>{this._executeOnStable(()=>e(this.focusFirstTabbableElement()))})}focusLastTabbableElementWhenReady(){return new Promise(e=>{this._executeOnStable(()=>e(this.focusLastTabbableElement()))})}_getRegionBoundary(e){let t=this._element.querySelectorAll(`[cdk-focus-region-${e}], `+`[cdkFocusRegion${e}], `+`[cdk-focus-${e}]`);for(let n=0;n=0;n--){let e=t[n].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(t[n]):null;if(e)return e}return null}_createAnchor(){const e=this._document.createElement(\"div\");return this._toggleAnchorTabIndex(this._enabled,e),e.classList.add(\"cdk-visually-hidden\"),e.classList.add(\"cdk-focus-trap-anchor\"),e.setAttribute(\"aria-hidden\",\"true\"),e}_toggleAnchorTabIndex(e,t){e?t.setAttribute(\"tabindex\",\"0\"):t.removeAttribute(\"tabindex\")}_executeOnStable(e){this._ngZone.isStable?e():this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(e)}}let Fp=(()=>{class e{constructor(e,t,n){this._checker=e,this._ngZone=t,this._document=n}create(e,t=!1){return new jp(e,this._checker,this._ngZone,this._document,t)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Ap),Qe(ld),Qe(Nd))},e.\\u0275prov=pe({factory:function(){return new e(Qe(Ap),Qe(ld),Qe(Nd))},token:e,providedIn:\"root\"}),e})();const Np=new Ve(\"liveAnnouncerElement\",{providedIn:\"root\",factory:function(){return null}}),zp=new Ve(\"LIVE_ANNOUNCER_DEFAULT_OPTIONS\");let Vp=(()=>{class e{constructor(e,t,n,i){this._ngZone=t,this._defaultOptions=i,this._document=n,this._liveElement=e||this._createLiveElement()}announce(e,...t){const n=this._defaultOptions;let i,s;return 1===t.length&&\"number\"==typeof t[0]?s=t[0]:[i,s]=t,this.clear(),clearTimeout(this._previousTimeout),i||(i=n&&n.politeness?n.politeness:\"polite\"),null==s&&n&&(s=n.duration),this._liveElement.setAttribute(\"aria-live\",i),this._ngZone.runOutsideAngular(()=>new Promise(t=>{clearTimeout(this._previousTimeout),this._previousTimeout=setTimeout(()=>{this._liveElement.textContent=e,t(),\"number\"==typeof s&&(this._previousTimeout=setTimeout(()=>this.clear(),s))},100)}))}clear(){this._liveElement&&(this._liveElement.textContent=\"\")}ngOnDestroy(){clearTimeout(this._previousTimeout),this._liveElement&&this._liveElement.parentNode&&(this._liveElement.parentNode.removeChild(this._liveElement),this._liveElement=null)}_createLiveElement(){const e=this._document.getElementsByClassName(\"cdk-live-announcer-element\"),t=this._document.createElement(\"div\");for(let n=0;n{class e{constructor(e,t){this._ngZone=e,this._platform=t,this._origin=null,this._windowFocused=!1,this._elementInfo=new Map,this._monitoredElementCount=0,this._documentKeydownListener=()=>{this._lastTouchTarget=null,this._setOriginForCurrentEventQueue(\"keyboard\")},this._documentMousedownListener=()=>{this._lastTouchTarget||this._setOriginForCurrentEventQueue(\"mouse\")},this._documentTouchstartListener=e=>{null!=this._touchTimeoutId&&clearTimeout(this._touchTimeoutId),this._lastTouchTarget=e.composedPath?e.composedPath()[0]:e.target,this._touchTimeoutId=setTimeout(()=>this._lastTouchTarget=null,650)},this._windowFocusListener=()=>{this._windowFocused=!0,this._windowFocusTimeoutId=setTimeout(()=>this._windowFocused=!1)}}monitor(e,t=!1){if(!this._platform.isBrowser)return xu(null);const n=_p(e);if(this._elementInfo.has(n)){let e=this._elementInfo.get(n);return e.checkChildren=t,e.subject.asObservable()}let i={unlisten:()=>{},checkChildren:t,subject:new L};this._elementInfo.set(n,i),this._incrementMonitoredElementCount();let s=e=>this._onFocus(e,n),r=e=>this._onBlur(e,n);return this._ngZone.runOutsideAngular(()=>{n.addEventListener(\"focus\",s,!0),n.addEventListener(\"blur\",r,!0)}),i.unlisten=()=>{n.removeEventListener(\"focus\",s,!0),n.removeEventListener(\"blur\",r,!0)},i.subject.asObservable()}stopMonitoring(e){const t=_p(e),n=this._elementInfo.get(t);n&&(n.unlisten(),n.subject.complete(),this._setClasses(t),this._elementInfo.delete(t),this._decrementMonitoredElementCount())}focusVia(e,t,n){const i=_p(e);this._setOriginForCurrentEventQueue(t),\"function\"==typeof i.focus&&i.focus(n)}ngOnDestroy(){this._elementInfo.forEach((e,t)=>this.stopMonitoring(t))}_toggleClass(e,t,n){n?e.classList.add(t):e.classList.remove(t)}_setClasses(e,t){this._elementInfo.get(e)&&(this._toggleClass(e,\"cdk-focused\",!!t),this._toggleClass(e,\"cdk-touch-focused\",\"touch\"===t),this._toggleClass(e,\"cdk-keyboard-focused\",\"keyboard\"===t),this._toggleClass(e,\"cdk-mouse-focused\",\"mouse\"===t),this._toggleClass(e,\"cdk-program-focused\",\"program\"===t))}_setOriginForCurrentEventQueue(e){this._ngZone.runOutsideAngular(()=>{this._origin=e,this._originTimeoutId=setTimeout(()=>this._origin=null,1)})}_wasCausedByTouch(e){let t=e.target;return this._lastTouchTarget instanceof Node&&t instanceof Node&&(t===this._lastTouchTarget||t.contains(this._lastTouchTarget))}_onFocus(e,t){const n=this._elementInfo.get(t);if(!n||!n.checkChildren&&t!==e.target)return;let i=this._origin;i||(i=this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:this._wasCausedByTouch(e)?\"touch\":\"program\"),this._setClasses(t,i),this._emitOrigin(n.subject,i),this._lastFocusOrigin=i}_onBlur(e,t){const n=this._elementInfo.get(t);!n||n.checkChildren&&e.relatedTarget instanceof Node&&t.contains(e.relatedTarget)||(this._setClasses(t),this._emitOrigin(n.subject,null))}_emitOrigin(e,t){this._ngZone.run(()=>e.next(t))}_incrementMonitoredElementCount(){1==++this._monitoredElementCount&&this._platform.isBrowser&&this._ngZone.runOutsideAngular(()=>{document.addEventListener(\"keydown\",this._documentKeydownListener,Wp),document.addEventListener(\"mousedown\",this._documentMousedownListener,Wp),document.addEventListener(\"touchstart\",this._documentTouchstartListener,Wp),window.addEventListener(\"focus\",this._windowFocusListener)})}_decrementMonitoredElementCount(){--this._monitoredElementCount||(document.removeEventListener(\"keydown\",this._documentKeydownListener,Wp),document.removeEventListener(\"mousedown\",this._documentMousedownListener,Wp),document.removeEventListener(\"touchstart\",this._documentTouchstartListener,Wp),window.removeEventListener(\"focus\",this._windowFocusListener),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._touchTimeoutId),clearTimeout(this._originTimeoutId))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ld),Qe(bp))},e.\\u0275prov=pe({factory:function(){return new e(Qe(ld),Qe(bp))},token:e,providedIn:\"root\"}),e})();function $p(e){return 0===e.buttons}let Bp=(()=>{class e{constructor(e,t){this._platform=e,this._document=t}getHighContrastMode(){if(!this._platform.isBrowser)return 0;const e=this._document.createElement(\"div\");e.style.backgroundColor=\"rgb(1,2,3)\",e.style.position=\"absolute\",this._document.body.appendChild(e);const t=(this._document.defaultView.getComputedStyle(e).backgroundColor||\"\").replace(/ /g,\"\");switch(this._document.body.removeChild(e),t){case\"rgb(0,0,0)\":return 2;case\"rgb(255,255,255)\":return 1}return 0}_applyBodyHighContrastModeCssClasses(){if(this._platform.isBrowser&&this._document.body){const e=this._document.body.classList;e.remove(\"cdk-high-contrast-active\"),e.remove(\"cdk-high-contrast-black-on-white\"),e.remove(\"cdk-high-contrast-white-on-black\");const t=this.getHighContrastMode();1===t?(e.add(\"cdk-high-contrast-active\"),e.add(\"cdk-high-contrast-black-on-white\")):2===t&&(e.add(\"cdk-high-contrast-active\"),e.add(\"cdk-high-contrast-white-on-black\"))}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(bp),Qe(Nd))},e.\\u0275prov=pe({factory:function(){return new e(Qe(bp),Qe(Nd))},token:e,providedIn:\"root\"}),e})();const qp=new Ve(\"cdk-dir-doc\",{providedIn:\"root\",factory:function(){return Xe(Nd)}});let Gp=(()=>{class e{constructor(e){if(this.value=\"ltr\",this.change=new yc,e){const t=e.documentElement?e.documentElement.dir:null,n=(e.body?e.body.dir:null)||t;this.value=\"ltr\"===n||\"rtl\"===n?n:\"ltr\"}}ngOnDestroy(){this.change.complete()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(qp,8))},e.\\u0275prov=pe({factory:function(){return new e(Qe(qp,8))},token:e,providedIn:\"root\"}),e})(),Jp=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();const Kp=new il(\"9.0.1\");class Zp extends class extends class{}{constructor(){super()}supportsDOMEvents(){return!0}}{static makeCurrent(){var e;e=new Zp,jd||(jd=e)}getProperty(e,t){return e[t]}log(e){window.console&&window.console.log&&window.console.log(e)}logGroup(e){window.console&&window.console.group&&window.console.group(e)}logGroupEnd(){window.console&&window.console.groupEnd&&window.console.groupEnd()}onAndCancel(e,t,n){return e.addEventListener(t,n,!1),()=>{e.removeEventListener(t,n,!1)}}dispatchEvent(e,t){e.dispatchEvent(t)}remove(e){return e.parentNode&&e.parentNode.removeChild(e),e}getValue(e){return e.value}createElement(e,t){return(t=t||this.getDefaultDocument()).createElement(e)}createHtmlDocument(){return document.implementation.createHTMLDocument(\"fakeTitle\")}getDefaultDocument(){return document}isElementNode(e){return e.nodeType===Node.ELEMENT_NODE}isShadowRoot(e){return e instanceof DocumentFragment}getGlobalEventTarget(e,t){return\"window\"===t?window:\"document\"===t?e:\"body\"===t?e.body:null}getHistory(){return window.history}getLocation(){return window.location}getBaseHref(e){const t=Xp||(Xp=document.querySelector(\"base\"),Xp)?Xp.getAttribute(\"href\"):null;return null==t?null:(n=t,Qp||(Qp=document.createElement(\"a\")),Qp.setAttribute(\"href\",n),\"/\"===Qp.pathname.charAt(0)?Qp.pathname:\"/\"+Qp.pathname);var n}resetBaseElement(){Xp=null}getUserAgent(){return window.navigator.userAgent}performanceNow(){return window.performance&&window.performance.now?window.performance.now():(new Date).getTime()}supportsCookies(){return!0}getCookie(e){return lu(document.cookie,e)}}let Qp,Xp=null;const ef=new Ve(\"TRANSITION_ID\"),tf=[{provide:Nc,useFactory:function(e,t,n){return()=>{n.get(zc).donePromise.then(()=>{const n=Fd();Array.prototype.slice.apply(t.querySelectorAll(\"style[ng-transition]\")).filter(t=>t.getAttribute(\"ng-transition\")===e).forEach(e=>n.remove(e))})}},deps:[ef,Nd,fo],multi:!0}];class nf{static init(){var e;e=new nf,vd=e}addToWindow(e){Pe.getAngularTestability=(t,n=!0)=>{const i=e.findTestabilityInTree(t,n);if(null==i)throw new Error(\"Could not find testability for element.\");return i},Pe.getAllAngularTestabilities=()=>e.getAllTestabilities(),Pe.getAllAngularRootElements=()=>e.getAllRootElements(),Pe.frameworkStabilizers||(Pe.frameworkStabilizers=[]),Pe.frameworkStabilizers.push(e=>{const t=Pe.getAllAngularTestabilities();let n=t.length,i=!1;const s=function(t){i=i||t,n--,0==n&&e(i)};t.forEach((function(e){e.whenStable(s)}))})}findTestabilityInTree(e,t,n){if(null==t)return null;const i=e.getTestability(t);return null!=i?i:n?Fd().isShadowRoot(t)?this.findTestabilityInTree(e,t.host,!0):this.findTestabilityInTree(e,t.parentElement,!0):null}}const sf=new Ve(\"EventManagerPlugins\");let rf=(()=>{class e{constructor(e,t){this._zone=t,this._eventNameToPlugin=new Map,e.forEach(e=>e.manager=this),this._plugins=e.slice().reverse()}addEventListener(e,t,n){return this._findPluginFor(t).addEventListener(e,t,n)}addGlobalEventListener(e,t,n){return this._findPluginFor(t).addGlobalEventListener(e,t,n)}getZone(){return this._zone}_findPluginFor(e){const t=this._eventNameToPlugin.get(e);if(t)return t;const n=this._plugins;for(let i=0;i{class e{constructor(){this._stylesSet=new Set}addStyles(e){const t=new Set;e.forEach(e=>{this._stylesSet.has(e)||(this._stylesSet.add(e),t.add(e))}),this.onStylesAdded(t)}onStylesAdded(e){}getAllStyles(){return Array.from(this._stylesSet)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),lf=(()=>{class e extends af{constructor(e){super(),this._doc=e,this._hostNodes=new Set,this._styleNodes=new Set,this._hostNodes.add(e.head)}_addStylesToHost(e,t){e.forEach(e=>{const n=this._doc.createElement(\"style\");n.textContent=e,this._styleNodes.add(t.appendChild(n))})}addHost(e){this._addStylesToHost(this._stylesSet,e),this._hostNodes.add(e)}removeHost(e){this._hostNodes.delete(e)}onStylesAdded(e){this._hostNodes.forEach(t=>this._addStylesToHost(e,t))}ngOnDestroy(){this._styleNodes.forEach(e=>Fd().remove(e))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const cf={svg:\"http://www.w3.org/2000/svg\",xhtml:\"http://www.w3.org/1999/xhtml\",xlink:\"http://www.w3.org/1999/xlink\",xml:\"http://www.w3.org/XML/1998/namespace\",xmlns:\"http://www.w3.org/2000/xmlns/\"},df=/%COMP%/g;function uf(e,t,n){for(let i=0;i{if(\"__ngUnwrap__\"===t)return e;!1===e(t)&&(t.preventDefault(),t.returnValue=!1)}}let mf=(()=>{class e{constructor(e,t,n){this.eventManager=e,this.sharedStylesHost=t,this.appId=n,this.rendererByCompId=new Map,this.defaultRenderer=new pf(e)}createRenderer(e,t){if(!e||!t)return this.defaultRenderer;switch(t.encapsulation){case pt.Emulated:{let n=this.rendererByCompId.get(t.id);return n||(n=new ff(this.eventManager,this.sharedStylesHost,t,this.appId),this.rendererByCompId.set(t.id,n)),n.applyToHost(e),n}case pt.Native:case pt.ShadowDom:return new _f(this.eventManager,this.sharedStylesHost,e,t);default:if(!this.rendererByCompId.has(t.id)){const e=uf(t.id,t.styles,[]);this.sharedStylesHost.addStyles(e),this.rendererByCompId.set(t.id,this.defaultRenderer)}return this.defaultRenderer}}begin(){}end(){}}return e.\\u0275fac=function(t){return new(t||e)(Qe(rf),Qe(lf),Qe(Vc))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class pf{constructor(e){this.eventManager=e,this.data=Object.create(null)}destroy(){}createElement(e,t){return t?document.createElementNS(cf[t]||t,e):document.createElement(e)}createComment(e){return document.createComment(e)}createText(e){return document.createTextNode(e)}appendChild(e,t){e.appendChild(t)}insertBefore(e,t,n){e&&e.insertBefore(t,n)}removeChild(e,t){e&&e.removeChild(t)}selectRootElement(e,t){let n=\"string\"==typeof e?document.querySelector(e):e;if(!n)throw new Error(`The selector \"${e}\" did not match any elements`);return t||(n.textContent=\"\"),n}parentNode(e){return e.parentNode}nextSibling(e){return e.nextSibling}setAttribute(e,t,n,i){if(i){t=i+\":\"+t;const s=cf[i];s?e.setAttributeNS(s,t,n):e.setAttribute(t,n)}else e.setAttribute(t,n)}removeAttribute(e,t,n){if(n){const i=cf[n];i?e.removeAttributeNS(i,t):e.removeAttribute(`${n}:${t}`)}else e.removeAttribute(t)}addClass(e,t){e.classList.add(t)}removeClass(e,t){e.classList.remove(t)}setStyle(e,t,n,i){i&Xa.DashCase?e.style.setProperty(t,n,i&Xa.Important?\"important\":\"\"):e.style[t]=n}removeStyle(e,t,n){n&Xa.DashCase?e.style.removeProperty(t):e.style[t]=\"\"}setProperty(e,t,n){e[t]=n}setValue(e,t){e.nodeValue=t}listen(e,t,n){return\"string\"==typeof e?this.eventManager.addGlobalEventListener(e,t,hf(n)):this.eventManager.addEventListener(e,t,hf(n))}}class ff extends pf{constructor(e,t,n,i){super(e),this.component=n;const s=uf(i+\"-\"+n.id,n.styles,[]);t.addStyles(s),this.contentAttr=\"_ngcontent-%COMP%\".replace(df,i+\"-\"+n.id),this.hostAttr=function(e){return\"_nghost-%COMP%\".replace(df,e)}(i+\"-\"+n.id)}applyToHost(e){super.setAttribute(e,this.hostAttr,\"\")}createElement(e,t){const n=super.createElement(e,t);return super.setAttribute(n,this.contentAttr,\"\"),n}}class _f extends pf{constructor(e,t,n,i){super(e),this.sharedStylesHost=t,this.hostEl=n,this.component=i,this.shadowRoot=i.encapsulation===pt.ShadowDom?n.attachShadow({mode:\"open\"}):n.createShadowRoot(),this.sharedStylesHost.addHost(this.shadowRoot);const s=uf(i.id,i.styles,[]);for(let r=0;r{class e extends of{constructor(e){super(e)}supports(e){return!0}addEventListener(e,t,n){return e.addEventListener(t,n,!1),()=>this.removeEventListener(e,t,n)}removeEventListener(e,t,n){return e.removeEventListener(t,n)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const yf={pan:!0,panstart:!0,panmove:!0,panend:!0,pancancel:!0,panleft:!0,panright:!0,panup:!0,pandown:!0,pinch:!0,pinchstart:!0,pinchmove:!0,pinchend:!0,pinchcancel:!0,pinchin:!0,pinchout:!0,press:!0,pressup:!0,rotate:!0,rotatestart:!0,rotatemove:!0,rotateend:!0,rotatecancel:!0,swipe:!0,swipeleft:!0,swiperight:!0,swipeup:!0,swipedown:!0,tap:!0},bf=new Ve(\"HammerGestureConfig\"),vf=new Ve(\"HammerLoader\");let wf=(()=>{class e{constructor(){this.events=[],this.overrides={}}buildHammer(e){const t=new Hammer(e,this.options);t.get(\"pinch\").set({enable:!0}),t.get(\"rotate\").set({enable:!0});for(const n in this.overrides)t.get(n).set(this.overrides[n]);return t}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const Mf=[{provide:sf,useClass:(()=>{class e extends of{constructor(e,t,n,i){super(e),this._config=t,this.console=n,this.loader=i}supports(e){return!(!yf.hasOwnProperty(e.toLowerCase())&&!this.isCustomEvent(e)||!window.Hammer&&!this.loader&&(this.console.warn(`The \"${e}\" event cannot be bound because Hammer.JS is not `+\"loaded and no custom loader has been specified.\"),1))}addEventListener(e,t,n){const i=this.manager.getZone();if(t=t.toLowerCase(),!window.Hammer&&this.loader){let i=!1,s=()=>{i=!0};return this.loader().then(()=>{if(!window.Hammer)return this.console.warn(\"The custom HAMMER_LOADER completed, but Hammer.JS is not present.\"),void(s=()=>{});i||(s=this.addEventListener(e,t,n))}).catch(()=>{this.console.warn(`The \"${t}\" event cannot be bound because the custom `+\"Hammer.JS loader failed.\"),s=()=>{}}),()=>{s()}}return i.runOutsideAngular(()=>{const s=this._config.buildHammer(e),r=function(e){i.runGuarded((function(){n(e)}))};return s.on(t,r),()=>{s.off(t,r),\"function\"==typeof s.destroy&&s.destroy()}})}isCustomEvent(e){return this._config.events.indexOf(e)>-1}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd),Qe(bf),Qe(Gc),Qe(vf,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),multi:!0,deps:[Nd,bf,Gc,[new le,vf]]},{provide:bf,useClass:wf,deps:[]}];let kf=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:Mf}),e})();const Sf=[\"alt\",\"control\",\"meta\",\"shift\"],Lf={\"\\b\":\"Backspace\",\"\\t\":\"Tab\",\"\\x7f\":\"Delete\",\"\\x1b\":\"Escape\",Del:\"Delete\",Esc:\"Escape\",Left:\"ArrowLeft\",Right:\"ArrowRight\",Up:\"ArrowUp\",Down:\"ArrowDown\",Menu:\"ContextMenu\",Scroll:\"ScrollLock\",Win:\"OS\"},xf={A:\"1\",B:\"2\",C:\"3\",D:\"4\",E:\"5\",F:\"6\",G:\"7\",H:\"8\",I:\"9\",J:\"*\",K:\"+\",M:\"-\",N:\".\",O:\"/\",\"`\":\"0\",\"\\x90\":\"NumLock\"},Cf={alt:e=>e.altKey,control:e=>e.ctrlKey,meta:e=>e.metaKey,shift:e=>e.shiftKey};let Tf=(()=>{class e extends of{constructor(e){super(e)}supports(t){return null!=e.parseEventName(t)}addEventListener(t,n,i){const s=e.parseEventName(n),r=e.eventCallback(s.fullKey,i,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>Fd().onAndCancel(t,s.domEventName,r))}static parseEventName(t){const n=t.toLowerCase().split(\".\"),i=n.shift();if(0===n.length||\"keydown\"!==i&&\"keyup\"!==i)return null;const s=e._normalizeKey(n.pop());let r=\"\";if(Sf.forEach(e=>{const t=n.indexOf(e);t>-1&&(n.splice(t,1),r+=e+\".\")}),r+=s,0!=n.length||0===s.length)return null;const o={};return o.domEventName=i,o.fullKey=r,o}static getEventFullKey(e){let t=\"\",n=function(e){let t=e.key;if(null==t){if(t=e.keyIdentifier,null==t)return\"Unidentified\";t.startsWith(\"U+\")&&(t=String.fromCharCode(parseInt(t.substring(2),16)),3===e.location&&xf.hasOwnProperty(t)&&(t=xf[t]))}return Lf[t]||t}(e);return n=n.toLowerCase(),\" \"===n?n=\"space\":\".\"===n&&(n=\"dot\"),Sf.forEach(i=>{i!=n&&(0,Cf[i])(e)&&(t+=i+\".\")}),t+=n,t}static eventCallback(t,n,i){return s=>{e.getEventFullKey(s)===t&&i.runGuarded(()=>n(s))}}static _normalizeKey(e){switch(e){case\"esc\":return\"escape\";default:return e}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),Df=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:function(){return Qe(Yf)},token:e,providedIn:\"root\"}),e})(),Yf=(()=>{class e extends Df{constructor(e){super(),this._doc=e}sanitize(e,t){if(null==t)return null;switch(e){case Gi.NONE:return t;case Gi.HTML:return vi(t,\"HTML\")?bi(t):Bi(this._doc,String(t));case Gi.STYLE:return vi(t,\"Style\")?bi(t):Zi(t);case Gi.SCRIPT:if(vi(t,\"Script\"))return bi(t);throw new Error(\"unsafe value used in a script context\");case Gi.URL:return wi(t),vi(t,\"URL\")?bi(t):Ti(String(t));case Gi.RESOURCE_URL:if(vi(t,\"ResourceURL\"))return bi(t);throw new Error(\"unsafe value used in a resource URL context (see http://g.co/ng/security#xss)\");default:throw new Error(`Unexpected SecurityContext ${e} (see http://g.co/ng/security#xss)`)}}bypassSecurityTrustHtml(e){return new pi(e)}bypassSecurityTrustStyle(e){return new fi(e)}bypassSecurityTrustScript(e){return new _i(e)}bypassSecurityTrustUrl(e){return new gi(e)}bypassSecurityTrustResourceUrl(e){return new yi(e)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({factory:function(){return e=Qe(We),new Yf(e.get(Nd));var e},token:e,providedIn:\"root\"}),e})();const Ef=Sd(Ad,\"browser\",[{provide:Bc,useValue:\"browser\"},{provide:$c,useValue:function(){Zp.makeCurrent(),nf.init()},multi:!0},{provide:Nd,useFactory:function(){return function(e){At=e}(document),document},deps:[]}]),Of=[[],{provide:eo,useValue:\"root\"},{provide:hi,useFactory:function(){return new hi},deps:[]},{provide:sf,useClass:gf,multi:!0,deps:[Nd,ld,Bc]},{provide:sf,useClass:Tf,multi:!0,deps:[Nd]},[],{provide:mf,useClass:mf,deps:[rf,lf,Vc]},{provide:Qa,useExisting:mf},{provide:af,useExisting:lf},{provide:lf,useClass:lf,deps:[Nd]},{provide:_d,useClass:_d,deps:[ld]},{provide:rf,useClass:rf,deps:[sf,ld]},[]];let If=(()=>{class e{constructor(e){if(e)throw new Error(\"BrowserModule has already been loaded. If you need access to common directives such as NgIf and NgFor from a lazy loaded module, import CommonModule instead.\")}static withServerTransition(t){return{ngModule:e,providers:[{provide:Vc,useValue:t.appId},{provide:ef,useExisting:Vc},tf]}}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)(Qe(e,12))},providers:Of,imports:[Mu,Hd]}),e})();function Pf(){return B(1)}function Af(...e){return Pf()(xu(...e))}function Rf(...e){const t=e[e.length-1];return C(t)?(e.pop(),n=>Af(e,n,t)):t=>Af(e,t)}\"undefined\"!=typeof window&&window;class Hf{}function jf(e,t){return{type:7,name:e,definitions:t,options:{}}}function Ff(e,t=null){return{type:4,styles:t,timings:e}}function Nf(e,t=null){return{type:3,steps:e,options:t}}function zf(e,t=null){return{type:2,steps:e,options:t}}function Vf(e){return{type:6,styles:e,offset:null}}function Wf(e,t,n){return{type:0,name:e,styles:t,options:n}}function Uf(e,t,n=null){return{type:1,expr:e,animation:t,options:n}}function $f(e=null){return{type:9,options:e}}function Bf(e,t,n=null){return{type:11,selector:e,animation:t,options:n}}function qf(e){Promise.resolve(null).then(e)}class Gf{constructor(e=0,t=0){this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this.parentPlayer=null,this.totalTime=e+t}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(e=>e()),this._onDoneFns=[])}onStart(e){this._onStartFns.push(e)}onDone(e){this._onDoneFns.push(e)}onDestroy(e){this._onDestroyFns.push(e)}hasStarted(){return this._started}init(){}play(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}triggerMicrotask(){qf(()=>this._onFinish())}_onStart(){this._onStartFns.forEach(e=>e()),this._onStartFns=[]}pause(){}restart(){}finish(){this._onFinish()}destroy(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach(e=>e()),this._onDestroyFns=[])}reset(){}setPosition(e){}getPosition(){return 0}triggerCallback(e){const t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach(e=>e()),t.length=0}}class Jf{constructor(e){this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=e;let t=0,n=0,i=0;const s=this.players.length;0==s?qf(()=>this._onFinish()):this.players.forEach(e=>{e.onDone(()=>{++t==s&&this._onFinish()}),e.onDestroy(()=>{++n==s&&this._onDestroy()}),e.onStart(()=>{++i==s&&this._onStart()})}),this.totalTime=this.players.reduce((e,t)=>Math.max(e,t.totalTime),0)}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(e=>e()),this._onDoneFns=[])}init(){this.players.forEach(e=>e.init())}onStart(e){this._onStartFns.push(e)}_onStart(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach(e=>e()),this._onStartFns=[])}onDone(e){this._onDoneFns.push(e)}onDestroy(e){this._onDestroyFns.push(e)}hasStarted(){return this._started}play(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach(e=>e.play())}pause(){this.players.forEach(e=>e.pause())}restart(){this.players.forEach(e=>e.restart())}finish(){this._onFinish(),this.players.forEach(e=>e.finish())}destroy(){this._onDestroy()}_onDestroy(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach(e=>e.destroy()),this._onDestroyFns.forEach(e=>e()),this._onDestroyFns=[])}reset(){this.players.forEach(e=>e.reset()),this._destroyed=!1,this._finished=!1,this._started=!1}setPosition(e){const t=e*this.totalTime;this.players.forEach(e=>{const n=e.totalTime?Math.min(1,t/e.totalTime):1;e.setPosition(n)})}getPosition(){let e=0;return this.players.forEach(t=>{const n=t.getPosition();e=Math.min(n,e)}),e}beforeDestroy(){this.players.forEach(e=>{e.beforeDestroy&&e.beforeDestroy()})}triggerCallback(e){const t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach(e=>e()),t.length=0}}function Kf(){return\"undefined\"!=typeof process&&\"[object process]\"==={}.toString.call(process)}function Zf(e){switch(e.length){case 0:return new Gf;case 1:return e[0];default:return new Jf(e)}}function Qf(e,t,n,i,s={},r={}){const o=[],a=[];let l=-1,c=null;if(i.forEach(e=>{const n=e.offset,i=n==l,d=i&&c||{};Object.keys(e).forEach(n=>{let i=n,a=e[n];if(\"offset\"!==n)switch(i=t.normalizePropertyName(i,o),a){case\"!\":a=s[n];break;case\"*\":a=r[n];break;default:a=t.normalizeStyleValue(n,i,a,o)}d[i]=a}),i||a.push(d),c=d,l=n}),o.length){const e=\"\\n - \";throw new Error(`Unable to animate due to the following errors:${e}${o.join(e)}`)}return a}function Xf(e,t,n,i){switch(t){case\"start\":e.onStart(()=>i(n&&e_(n,\"start\",e)));break;case\"done\":e.onDone(()=>i(n&&e_(n,\"done\",e)));break;case\"destroy\":e.onDestroy(()=>i(n&&e_(n,\"destroy\",e)))}}function e_(e,t,n){const i=n.totalTime,s=t_(e.element,e.triggerName,e.fromState,e.toState,t||e.phaseName,null==i?e.totalTime:i,!!n.disabled),r=e._data;return null!=r&&(s._data=r),s}function t_(e,t,n,i,s=\"\",r=0,o){return{element:e,triggerName:t,fromState:n,toState:i,phaseName:s,totalTime:r,disabled:!!o}}function n_(e,t,n){let i;return e instanceof Map?(i=e.get(t),i||e.set(t,i=n)):(i=e[t],i||(i=e[t]=n)),i}function i_(e){const t=e.indexOf(\":\");return[e.substring(1,t),e.substr(t+1)]}let s_=(e,t)=>!1,r_=(e,t)=>!1,o_=(e,t,n)=>[];const a_=Kf();(a_||\"undefined\"!=typeof Element)&&(s_=(e,t)=>e.contains(t),r_=(()=>{if(a_||Element.prototype.matches)return(e,t)=>e.matches(t);{const e=Element.prototype,t=e.matchesSelector||e.mozMatchesSelector||e.msMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;return t?(e,n)=>t.apply(e,[n]):r_}})(),o_=(e,t,n)=>{let i=[];if(n)i.push(...e.querySelectorAll(t));else{const n=e.querySelector(t);n&&i.push(n)}return i});let l_=null,c_=!1;function d_(e){l_||(l_=(\"undefined\"!=typeof document?document.body:null)||{},c_=!!l_.style&&\"WebkitAppearance\"in l_.style);let t=!0;return l_.style&&!function(e){return\"ebkit\"==e.substring(1,6)}(e)&&(t=e in l_.style,!t&&c_)&&(t=\"Webkit\"+e.charAt(0).toUpperCase()+e.substr(1)in l_.style),t}const u_=r_,h_=s_,m_=o_;function p_(e){const t={};return Object.keys(e).forEach(n=>{const i=n.replace(/([a-z])([A-Z])/g,\"$1-$2\");t[i]=e[n]}),t}let f_=(()=>{class e{validateStyleProperty(e){return d_(e)}matchesElement(e,t){return u_(e,t)}containsElement(e,t){return h_(e,t)}query(e,t,n){return m_(e,t,n)}computeStyle(e,t,n){return n||\"\"}animate(e,t,n,i,s,r=[],o){return new Gf(n,i)}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),__=(()=>{class e{}return e.NOOP=new f_,e})();function g_(e){if(\"number\"==typeof e)return e;const t=e.match(/^(-?[\\.\\d]+)(m?s)/);return!t||t.length<2?0:y_(parseFloat(t[1]),t[2])}function y_(e,t){switch(t){case\"s\":return 1e3*e;default:return e}}function b_(e,t,n){return e.hasOwnProperty(\"duration\")?e:function(e,t,n){let i,s=0,r=\"\";if(\"string\"==typeof e){const n=e.match(/^(-?[\\.\\d]+)(m?s)(?:\\s+(-?[\\.\\d]+)(m?s))?(?:\\s+([-a-z]+(?:\\(.+?\\))?))?$/i);if(null===n)return t.push(`The provided timing value \"${e}\" is invalid.`),{duration:0,delay:0,easing:\"\"};i=y_(parseFloat(n[1]),n[2]);const o=n[3];null!=o&&(s=y_(parseFloat(o),n[4]));const a=n[5];a&&(r=a)}else i=e;if(!n){let n=!1,r=t.length;i<0&&(t.push(\"Duration values below 0 are not allowed for this animation step.\"),n=!0),s<0&&(t.push(\"Delay values below 0 are not allowed for this animation step.\"),n=!0),n&&t.splice(r,0,`The provided timing value \"${e}\" is invalid.`)}return{duration:i,delay:s,easing:r}}(e,t,n)}function v_(e,t={}){return Object.keys(e).forEach(n=>{t[n]=e[n]}),t}function w_(e,t,n={}){if(t)for(let i in e)n[i]=e[i];else v_(e,n);return n}function M_(e,t,n){return n?t+\":\"+n+\";\":\"\"}function k_(e){let t=\"\";for(let n=0;n{const s=O_(i);n&&!n.hasOwnProperty(i)&&(n[i]=e.style[s]),e.style[s]=t[i]}),Kf()&&k_(e))}function L_(e,t){e.style&&(Object.keys(t).forEach(t=>{const n=O_(t);e.style[n]=\"\"}),Kf()&&k_(e))}function x_(e){return Array.isArray(e)?1==e.length?e[0]:zf(e):e}const C_=new RegExp(\"{{\\\\s*(.+?)\\\\s*}}\",\"g\");function T_(e){let t=[];if(\"string\"==typeof e){let n;for(;n=C_.exec(e);)t.push(n[1]);C_.lastIndex=0}return t}function D_(e,t,n){const i=e.toString(),s=i.replace(C_,(e,i)=>{let s=t[i];return t.hasOwnProperty(i)||(n.push(`Please provide a value for the animation param ${i}`),s=\"\"),s.toString()});return s==i?e:s}function Y_(e){const t=[];let n=e.next();for(;!n.done;)t.push(n.value),n=e.next();return t}const E_=/-+([a-z0-9])/g;function O_(e){return e.replace(E_,(...e)=>e[1].toUpperCase())}function I_(e,t){return 0===e||0===t}function P_(e,t,n){const i=Object.keys(n);if(i.length&&t.length){let r=t[0],o=[];if(i.forEach(e=>{r.hasOwnProperty(e)||o.push(e),r[e]=n[e]}),o.length)for(var s=1;sfunction(e,t,n){if(\":\"==e[0]){const i=function(e,t){switch(e){case\":enter\":return\"void => *\";case\":leave\":return\"* => void\";case\":increment\":return(e,t)=>parseFloat(t)>parseFloat(e);case\":decrement\":return(e,t)=>parseFloat(t) *\"}}(e,n);if(\"function\"==typeof i)return void t.push(i);e=i}const i=e.match(/^(\\*|[-\\w]+)\\s*()\\s*(\\*|[-\\w]+)$/);if(null==i||i.length<4)return n.push(`The provided transition expression \"${e}\" is not supported`),t;const s=i[1],r=i[2],o=i[3];t.push(N_(s,o)),\"<\"!=r[0]||\"*\"==s&&\"*\"==o||t.push(N_(o,s))}(e,n,t)):n.push(e),n}const j_=new Set([\"true\",\"1\"]),F_=new Set([\"false\",\"0\"]);function N_(e,t){const n=j_.has(e)||F_.has(e),i=j_.has(t)||F_.has(t);return(s,r)=>{let o=\"*\"==e||e==s,a=\"*\"==t||t==r;return!o&&n&&\"boolean\"==typeof s&&(o=s?j_.has(e):F_.has(e)),!a&&i&&\"boolean\"==typeof r&&(a=r?j_.has(t):F_.has(t)),o&&a}}const z_=new RegExp(\"s*:selfs*,?\",\"g\");function V_(e,t,n){return new W_(e).build(t,n)}class W_{constructor(e){this._driver=e}build(e,t){const n=new U_(t);return this._resetContextStyleTimingState(n),A_(this,x_(e),n)}_resetContextStyleTimingState(e){e.currentQuerySelector=\"\",e.collectedStyles={},e.collectedStyles[\"\"]={},e.currentTime=0}visitTrigger(e,t){let n=t.queryCount=0,i=t.depCount=0;const s=[],r=[];return\"@\"==e.name.charAt(0)&&t.errors.push(\"animation triggers cannot be prefixed with an `@` sign (e.g. trigger('@foo', [...]))\"),e.definitions.forEach(e=>{if(this._resetContextStyleTimingState(t),0==e.type){const n=e,i=n.name;i.toString().split(/\\s*,\\s*/).forEach(e=>{n.name=e,s.push(this.visitState(n,t))}),n.name=i}else if(1==e.type){const s=this.visitTransition(e,t);n+=s.queryCount,i+=s.depCount,r.push(s)}else t.errors.push(\"only state() and transition() definitions can sit inside of a trigger()\")}),{type:7,name:e.name,states:s,transitions:r,queryCount:n,depCount:i,options:null}}visitState(e,t){const n=this.visitStyle(e.styles,t),i=e.options&&e.options.params||null;if(n.containsDynamicStyles){const s=new Set,r=i||{};if(n.styles.forEach(e=>{if($_(e)){const t=e;Object.keys(t).forEach(e=>{T_(t[e]).forEach(e=>{r.hasOwnProperty(e)||s.add(e)})})}}),s.size){const n=Y_(s.values());t.errors.push(`state(\"${e.name}\", ...) must define default values for all the following style substitutions: ${n.join(\", \")}`)}}return{type:0,name:e.name,style:n,options:i?{params:i}:null}}visitTransition(e,t){t.queryCount=0,t.depCount=0;const n=A_(this,x_(e.animation),t);return{type:1,matchers:H_(e.expr,t.errors),animation:n,queryCount:t.queryCount,depCount:t.depCount,options:B_(e.options)}}visitSequence(e,t){return{type:2,steps:e.steps.map(e=>A_(this,e,t)),options:B_(e.options)}}visitGroup(e,t){const n=t.currentTime;let i=0;const s=e.steps.map(e=>{t.currentTime=n;const s=A_(this,e,t);return i=Math.max(i,t.currentTime),s});return t.currentTime=i,{type:3,steps:s,options:B_(e.options)}}visitAnimate(e,t){const n=function(e,t){let n=null;if(e.hasOwnProperty(\"duration\"))n=e;else if(\"number\"==typeof e)return q_(b_(e,t).duration,0,\"\");const i=e;if(i.split(/\\s+/).some(e=>\"{\"==e.charAt(0)&&\"{\"==e.charAt(1))){const e=q_(0,0,\"\");return e.dynamic=!0,e.strValue=i,e}return n=n||b_(i,t),q_(n.duration,n.delay,n.easing)}(e.timings,t.errors);let i;t.currentAnimateTimings=n;let s=e.styles?e.styles:Vf({});if(5==s.type)i=this.visitKeyframes(s,t);else{let s=e.styles,r=!1;if(!s){r=!0;const e={};n.easing&&(e.easing=n.easing),s=Vf(e)}t.currentTime+=n.duration+n.delay;const o=this.visitStyle(s,t);o.isEmptyStep=r,i=o}return t.currentAnimateTimings=null,{type:4,timings:n,style:i,options:null}}visitStyle(e,t){const n=this._makeStyleAst(e,t);return this._validateStyleAst(n,t),n}_makeStyleAst(e,t){const n=[];Array.isArray(e.styles)?e.styles.forEach(e=>{\"string\"==typeof e?\"*\"==e?n.push(e):t.errors.push(`The provided style string value ${e} is not allowed.`):n.push(e)}):n.push(e.styles);let i=!1,s=null;return n.forEach(e=>{if($_(e)){const t=e,n=t.easing;if(n&&(s=n,delete t.easing),!i)for(let e in t)if(t[e].toString().indexOf(\"{{\")>=0){i=!0;break}}}),{type:6,styles:n,easing:s,offset:e.offset,containsDynamicStyles:i,options:null}}_validateStyleAst(e,t){const n=t.currentAnimateTimings;let i=t.currentTime,s=t.currentTime;n&&s>0&&(s-=n.duration+n.delay),e.styles.forEach(e=>{\"string\"!=typeof e&&Object.keys(e).forEach(n=>{if(!this._driver.validateStyleProperty(n))return void t.errors.push(`The provided animation property \"${n}\" is not a supported CSS property for animations`);const r=t.collectedStyles[t.currentQuerySelector],o=r[n];let a=!0;o&&(s!=i&&s>=o.startTime&&i<=o.endTime&&(t.errors.push(`The CSS property \"${n}\" that exists between the times of \"${o.startTime}ms\" and \"${o.endTime}ms\" is also being animated in a parallel animation between the times of \"${s}ms\" and \"${i}ms\"`),a=!1),s=o.startTime),a&&(r[n]={startTime:s,endTime:i}),t.options&&function(e,t,n){const i=t.params||{},s=T_(e);s.length&&s.forEach(e=>{i.hasOwnProperty(e)||n.push(`Unable to resolve the local animation param ${e} in the given list of values`)})}(e[n],t.options,t.errors)})})}visitKeyframes(e,t){const n={type:5,styles:[],options:null};if(!t.currentAnimateTimings)return t.errors.push(\"keyframes() must be placed inside of a call to animate()\"),n;let i=0;const s=[];let r=!1,o=!1,a=0;const l=e.steps.map(e=>{const n=this._makeStyleAst(e,t);let l=null!=n.offset?n.offset:function(e){if(\"string\"==typeof e)return null;let t=null;if(Array.isArray(e))e.forEach(e=>{if($_(e)&&e.hasOwnProperty(\"offset\")){const n=e;t=parseFloat(n.offset),delete n.offset}});else if($_(e)&&e.hasOwnProperty(\"offset\")){const n=e;t=parseFloat(n.offset),delete n.offset}return t}(n.styles),c=0;return null!=l&&(i++,c=n.offset=l),o=o||c<0||c>1,r=r||c0&&i{const r=d>0?i==u?1:d*i:s[i],o=r*p;t.currentTime=h+m.delay+o,m.duration=o,this._validateStyleAst(e,t),e.offset=r,n.styles.push(e)}),n}visitReference(e,t){return{type:8,animation:A_(this,x_(e.animation),t),options:B_(e.options)}}visitAnimateChild(e,t){return t.depCount++,{type:9,options:B_(e.options)}}visitAnimateRef(e,t){return{type:10,animation:this.visitReference(e.animation,t),options:B_(e.options)}}visitQuery(e,t){const n=t.currentQuerySelector,i=e.options||{};t.queryCount++,t.currentQuery=e;const[s,r]=function(e){const t=!!e.split(/\\s*,\\s*/).find(e=>\":self\"==e);return t&&(e=e.replace(z_,\"\")),[e=e.replace(/@\\*/g,\".ng-trigger\").replace(/@\\w+/g,e=>\".ng-trigger-\"+e.substr(1)).replace(/:animating/g,\".ng-animating\"),t]}(e.selector);t.currentQuerySelector=n.length?n+\" \"+s:s,n_(t.collectedStyles,t.currentQuerySelector,{});const o=A_(this,x_(e.animation),t);return t.currentQuery=null,t.currentQuerySelector=n,{type:11,selector:s,limit:i.limit||0,optional:!!i.optional,includeSelf:r,animation:o,originalSelector:e.selector,options:B_(e.options)}}visitStagger(e,t){t.currentQuery||t.errors.push(\"stagger() can only be used inside of query()\");const n=\"full\"===e.timings?{duration:0,delay:0,easing:\"full\"}:b_(e.timings,t.errors,!0);return{type:12,animation:A_(this,x_(e.animation),t),timings:n,options:null}}}class U_{constructor(e){this.errors=e,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles={},this.options=null}}function $_(e){return!Array.isArray(e)&&\"object\"==typeof e}function B_(e){var t;return e?(e=v_(e)).params&&(e.params=(t=e.params)?v_(t):null):e={},e}function q_(e,t,n){return{duration:e,delay:t,easing:n}}function G_(e,t,n,i,s,r,o=null,a=!1){return{type:1,element:e,keyframes:t,preStyleProps:n,postStyleProps:i,duration:s,delay:r,totalTime:s+r,easing:o,subTimeline:a}}class J_{constructor(){this._map=new Map}consume(e){let t=this._map.get(e);return t?this._map.delete(e):t=[],t}append(e,t){let n=this._map.get(e);n||this._map.set(e,n=[]),n.push(...t)}has(e){return this._map.has(e)}clear(){this._map.clear()}}const K_=new RegExp(\":enter\",\"g\"),Z_=new RegExp(\":leave\",\"g\");function Q_(e,t,n,i,s,r={},o={},a,l,c=[]){return(new X_).buildKeyframes(e,t,n,i,s,r,o,a,l,c)}class X_{buildKeyframes(e,t,n,i,s,r,o,a,l,c=[]){l=l||new J_;const d=new tg(e,t,l,i,s,c,[]);d.options=a,d.currentTimeline.setStyles([r],null,d.errors,a),A_(this,n,d);const u=d.timelines.filter(e=>e.containsAnimation());if(u.length&&Object.keys(o).length){const e=u[u.length-1];e.allowOnlyTimelineStyles()||e.setStyles([o],null,d.errors,a)}return u.length?u.map(e=>e.buildKeyframes()):[G_(t,[],[],[],0,0,\"\",!1)]}visitTrigger(e,t){}visitState(e,t){}visitTransition(e,t){}visitAnimateChild(e,t){const n=t.subInstructions.consume(t.element);if(n){const i=t.createSubContext(e.options),s=t.currentTimeline.currentTime,r=this._visitSubInstructions(n,i,i.options);s!=r&&t.transformIntoNewTimeline(r)}t.previousNode=e}visitAnimateRef(e,t){const n=t.createSubContext(e.options);n.transformIntoNewTimeline(),this.visitReference(e.animation,n),t.transformIntoNewTimeline(n.currentTimeline.currentTime),t.previousNode=e}_visitSubInstructions(e,t,n){let i=t.currentTimeline.currentTime;const s=null!=n.duration?g_(n.duration):null,r=null!=n.delay?g_(n.delay):null;return 0!==s&&e.forEach(e=>{const n=t.appendInstructionToTimeline(e,s,r);i=Math.max(i,n.duration+n.delay)}),i}visitReference(e,t){t.updateOptions(e.options,!0),A_(this,e.animation,t),t.previousNode=e}visitSequence(e,t){const n=t.subContextCount;let i=t;const s=e.options;if(s&&(s.params||s.delay)&&(i=t.createSubContext(s),i.transformIntoNewTimeline(),null!=s.delay)){6==i.previousNode.type&&(i.currentTimeline.snapshotCurrentStyles(),i.previousNode=eg);const e=g_(s.delay);i.delayNextStep(e)}e.steps.length&&(e.steps.forEach(e=>A_(this,e,i)),i.currentTimeline.applyStylesToKeyframe(),i.subContextCount>n&&i.transformIntoNewTimeline()),t.previousNode=e}visitGroup(e,t){const n=[];let i=t.currentTimeline.currentTime;const s=e.options&&e.options.delay?g_(e.options.delay):0;e.steps.forEach(r=>{const o=t.createSubContext(e.options);s&&o.delayNextStep(s),A_(this,r,o),i=Math.max(i,o.currentTimeline.currentTime),n.push(o.currentTimeline)}),n.forEach(e=>t.currentTimeline.mergeTimelineCollectedStyles(e)),t.transformIntoNewTimeline(i),t.previousNode=e}_visitTiming(e,t){if(e.dynamic){const n=e.strValue;return b_(t.params?D_(n,t.params,t.errors):n,t.errors)}return{duration:e.duration,delay:e.delay,easing:e.easing}}visitAnimate(e,t){const n=t.currentAnimateTimings=this._visitTiming(e.timings,t),i=t.currentTimeline;n.delay&&(t.incrementTime(n.delay),i.snapshotCurrentStyles());const s=e.style;5==s.type?this.visitKeyframes(s,t):(t.incrementTime(n.duration),this.visitStyle(s,t),i.applyStylesToKeyframe()),t.currentAnimateTimings=null,t.previousNode=e}visitStyle(e,t){const n=t.currentTimeline,i=t.currentAnimateTimings;!i&&n.getCurrentStyleProperties().length&&n.forwardFrame();const s=i&&i.easing||e.easing;e.isEmptyStep?n.applyEmptyStep(s):n.setStyles(e.styles,s,t.errors,t.options),t.previousNode=e}visitKeyframes(e,t){const n=t.currentAnimateTimings,i=t.currentTimeline.duration,s=n.duration,r=t.createSubContext().currentTimeline;r.easing=n.easing,e.styles.forEach(e=>{r.forwardTime((e.offset||0)*s),r.setStyles(e.styles,e.easing,t.errors,t.options),r.applyStylesToKeyframe()}),t.currentTimeline.mergeTimelineCollectedStyles(r),t.transformIntoNewTimeline(i+s),t.previousNode=e}visitQuery(e,t){const n=t.currentTimeline.currentTime,i=e.options||{},s=i.delay?g_(i.delay):0;s&&(6===t.previousNode.type||0==n&&t.currentTimeline.getCurrentStyleProperties().length)&&(t.currentTimeline.snapshotCurrentStyles(),t.previousNode=eg);let r=n;const o=t.invokeQuery(e.selector,e.originalSelector,e.limit,e.includeSelf,!!i.optional,t.errors);t.currentQueryTotal=o.length;let a=null;o.forEach((n,i)=>{t.currentQueryIndex=i;const o=t.createSubContext(e.options,n);s&&o.delayNextStep(s),n===t.element&&(a=o.currentTimeline),A_(this,e.animation,o),o.currentTimeline.applyStylesToKeyframe(),r=Math.max(r,o.currentTimeline.currentTime)}),t.currentQueryIndex=0,t.currentQueryTotal=0,t.transformIntoNewTimeline(r),a&&(t.currentTimeline.mergeTimelineCollectedStyles(a),t.currentTimeline.snapshotCurrentStyles()),t.previousNode=e}visitStagger(e,t){const n=t.parentContext,i=t.currentTimeline,s=e.timings,r=Math.abs(s.duration),o=r*(t.currentQueryTotal-1);let a=r*t.currentQueryIndex;switch(s.duration<0?\"reverse\":s.easing){case\"reverse\":a=o-a;break;case\"full\":a=n.currentStaggerTime}const l=t.currentTimeline;a&&l.delayNextStep(a);const c=l.currentTime;A_(this,e.animation,t),t.previousNode=e,n.currentStaggerTime=i.currentTime-c+(i.startTime-n.currentTimeline.startTime)}}const eg={};class tg{constructor(e,t,n,i,s,r,o,a){this._driver=e,this.element=t,this.subInstructions=n,this._enterClassName=i,this._leaveClassName=s,this.errors=r,this.timelines=o,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=eg,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=a||new ng(this._driver,t,0),o.push(this.currentTimeline)}get params(){return this.options.params}updateOptions(e,t){if(!e)return;const n=e;let i=this.options;null!=n.duration&&(i.duration=g_(n.duration)),null!=n.delay&&(i.delay=g_(n.delay));const s=n.params;if(s){let e=i.params;e||(e=this.options.params={}),Object.keys(s).forEach(n=>{t&&e.hasOwnProperty(n)||(e[n]=D_(s[n],e,this.errors))})}}_copyOptions(){const e={};if(this.options){const t=this.options.params;if(t){const n=e.params={};Object.keys(t).forEach(e=>{n[e]=t[e]})}}return e}createSubContext(e=null,t,n){const i=t||this.element,s=new tg(this._driver,i,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(i,n||0));return s.previousNode=this.previousNode,s.currentAnimateTimings=this.currentAnimateTimings,s.options=this._copyOptions(),s.updateOptions(e),s.currentQueryIndex=this.currentQueryIndex,s.currentQueryTotal=this.currentQueryTotal,s.parentContext=this,this.subContextCount++,s}transformIntoNewTimeline(e){return this.previousNode=eg,this.currentTimeline=this.currentTimeline.fork(this.element,e),this.timelines.push(this.currentTimeline),this.currentTimeline}appendInstructionToTimeline(e,t,n){const i={duration:null!=t?t:e.duration,delay:this.currentTimeline.currentTime+(null!=n?n:0)+e.delay,easing:\"\"},s=new ig(this._driver,e.element,e.keyframes,e.preStyleProps,e.postStyleProps,i,e.stretchStartingKeyframe);return this.timelines.push(s),i}incrementTime(e){this.currentTimeline.forwardTime(this.currentTimeline.duration+e)}delayNextStep(e){e>0&&this.currentTimeline.delayNextStep(e)}invokeQuery(e,t,n,i,s,r){let o=[];if(i&&o.push(this.element),e.length>0){e=(e=e.replace(K_,\".\"+this._enterClassName)).replace(Z_,\".\"+this._leaveClassName);let t=this._driver.query(this.element,e,1!=n);0!==n&&(t=n<0?t.slice(t.length+n,t.length):t.slice(0,n)),o.push(...t)}return s||0!=o.length||r.push(`\\`query(\"${t}\")\\` returned zero elements. (Use \\`query(\"${t}\", { optional: true })\\` if you wish to allow this.)`),o}}class ng{constructor(e,t,n,i){this._driver=e,this.element=t,this.startTime=n,this._elementTimelineStylesLookup=i,this.duration=0,this._previousKeyframe={},this._currentKeyframe={},this._keyframes=new Map,this._styleSummary={},this._pendingStyles={},this._backFill={},this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._localTimelineStyles=Object.create(this._backFill,{}),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(t),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(t,this._localTimelineStyles)),this._loadKeyframe()}containsAnimation(){switch(this._keyframes.size){case 0:return!1;case 1:return this.getCurrentStyleProperties().length>0;default:return!0}}getCurrentStyleProperties(){return Object.keys(this._currentKeyframe)}get currentTime(){return this.startTime+this.duration}delayNextStep(e){const t=1==this._keyframes.size&&Object.keys(this._pendingStyles).length;this.duration||t?(this.forwardTime(this.currentTime+e),t&&this.snapshotCurrentStyles()):this.startTime+=e}fork(e,t){return this.applyStylesToKeyframe(),new ng(this._driver,e,t||this.currentTime,this._elementTimelineStylesLookup)}_loadKeyframe(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=Object.create(this._backFill,{}),this._keyframes.set(this.duration,this._currentKeyframe))}forwardFrame(){this.duration+=1,this._loadKeyframe()}forwardTime(e){this.applyStylesToKeyframe(),this.duration=e,this._loadKeyframe()}_updateStyle(e,t){this._localTimelineStyles[e]=t,this._globalTimelineStyles[e]=t,this._styleSummary[e]={time:this.currentTime,value:t}}allowOnlyTimelineStyles(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}applyEmptyStep(e){e&&(this._previousKeyframe.easing=e),Object.keys(this._globalTimelineStyles).forEach(e=>{this._backFill[e]=this._globalTimelineStyles[e]||\"*\",this._currentKeyframe[e]=\"*\"}),this._currentEmptyStepKeyframe=this._currentKeyframe}setStyles(e,t,n,i){t&&(this._previousKeyframe.easing=t);const s=i&&i.params||{},r=function(e,t){const n={};let i;return e.forEach(e=>{\"*\"===e?(i=i||Object.keys(t),i.forEach(e=>{n[e]=\"*\"})):w_(e,!1,n)}),n}(e,this._globalTimelineStyles);Object.keys(r).forEach(e=>{const t=D_(r[e],s,n);this._pendingStyles[e]=t,this._localTimelineStyles.hasOwnProperty(e)||(this._backFill[e]=this._globalTimelineStyles.hasOwnProperty(e)?this._globalTimelineStyles[e]:\"*\"),this._updateStyle(e,t)})}applyStylesToKeyframe(){const e=this._pendingStyles,t=Object.keys(e);0!=t.length&&(this._pendingStyles={},t.forEach(t=>{this._currentKeyframe[t]=e[t]}),Object.keys(this._localTimelineStyles).forEach(e=>{this._currentKeyframe.hasOwnProperty(e)||(this._currentKeyframe[e]=this._localTimelineStyles[e])}))}snapshotCurrentStyles(){Object.keys(this._localTimelineStyles).forEach(e=>{const t=this._localTimelineStyles[e];this._pendingStyles[e]=t,this._updateStyle(e,t)})}getFinalKeyframe(){return this._keyframes.get(this.duration)}get properties(){const e=[];for(let t in this._currentKeyframe)e.push(t);return e}mergeTimelineCollectedStyles(e){Object.keys(e._styleSummary).forEach(t=>{const n=this._styleSummary[t],i=e._styleSummary[t];(!n||i.time>n.time)&&this._updateStyle(t,i.value)})}buildKeyframes(){this.applyStylesToKeyframe();const e=new Set,t=new Set,n=1===this._keyframes.size&&0===this.duration;let i=[];this._keyframes.forEach((s,r)=>{const o=w_(s,!0);Object.keys(o).forEach(n=>{const i=o[n];\"!\"==i?e.add(n):\"*\"==i&&t.add(n)}),n||(o.offset=r/this.duration),i.push(o)});const s=e.size?Y_(e.values()):[],r=t.size?Y_(t.values()):[];if(n){const e=i[0],t=v_(e);e.offset=0,t.offset=1,i=[e,t]}return G_(this.element,i,s,r,this.duration,this.startTime,this.easing,!1)}}class ig extends ng{constructor(e,t,n,i,s,r,o=!1){super(e,t,r.delay),this.element=t,this.keyframes=n,this.preStyleProps=i,this.postStyleProps=s,this._stretchStartingKeyframe=o,this.timings={duration:r.duration,delay:r.delay,easing:r.easing}}containsAnimation(){return this.keyframes.length>1}buildKeyframes(){let e=this.keyframes,{delay:t,duration:n,easing:i}=this.timings;if(this._stretchStartingKeyframe&&t){const s=[],r=n+t,o=t/r,a=w_(e[0],!1);a.offset=0,s.push(a);const l=w_(e[0],!1);l.offset=sg(o),s.push(l);const c=e.length-1;for(let i=1;i<=c;i++){let o=w_(e[i],!1);o.offset=sg((t+o.offset*n)/r),s.push(o)}n=r,t=0,i=\"\",e=s}return G_(this.element,e,this.preStyleProps,this.postStyleProps,n,t,i,!0)}}function sg(e,t=3){const n=Math.pow(10,t-1);return Math.round(e*n)/n}class rg{}class og extends rg{normalizePropertyName(e,t){return O_(e)}normalizeStyleValue(e,t,n,i){let s=\"\";const r=n.toString().trim();if(ag[t]&&0!==n&&\"0\"!==n)if(\"number\"==typeof n)s=\"px\";else{const t=n.match(/^[+-]?[\\d\\.]+([a-z]*)$/);t&&0==t[1].length&&i.push(`Please provide a CSS unit value for ${e}:${n}`)}return r+s}}const ag=(()=>function(e){const t={};return e.forEach(e=>t[e]=!0),t}(\"width,height,minWidth,minHeight,maxWidth,maxHeight,left,top,bottom,right,fontSize,outlineWidth,outlineOffset,paddingTop,paddingLeft,paddingBottom,paddingRight,marginTop,marginLeft,marginBottom,marginRight,borderRadius,borderWidth,borderTopWidth,borderLeftWidth,borderRightWidth,borderBottomWidth,textIndent,perspective\".split(\",\")))();function lg(e,t,n,i,s,r,o,a,l,c,d,u,h){return{type:0,element:e,triggerName:t,isRemovalTransition:s,fromState:n,fromStyles:r,toState:i,toStyles:o,timelines:a,queriedElements:l,preStyleProps:c,postStyleProps:d,totalTime:u,errors:h}}const cg={};class dg{constructor(e,t,n){this._triggerName=e,this.ast=t,this._stateStyles=n}match(e,t,n,i){return function(e,t,n,i,s){return e.some(e=>e(t,n,i,s))}(this.ast.matchers,e,t,n,i)}buildStyles(e,t,n){const i=this._stateStyles[\"*\"],s=this._stateStyles[e],r=i?i.buildStyles(t,n):{};return s?s.buildStyles(t,n):r}build(e,t,n,i,s,r,o,a,l,c){const d=[],u=this.ast.options&&this.ast.options.params||cg,h=this.buildStyles(n,o&&o.params||cg,d),m=a&&a.params||cg,p=this.buildStyles(i,m,d),f=new Set,_=new Map,g=new Map,y=\"void\"===i,b={params:Object.assign(Object.assign({},u),m)},v=c?[]:Q_(e,t,this.ast.animation,s,r,h,p,b,l,d);let w=0;if(v.forEach(e=>{w=Math.max(e.duration+e.delay,w)}),d.length)return lg(t,this._triggerName,n,i,y,h,p,[],[],_,g,w,d);v.forEach(e=>{const n=e.element,i=n_(_,n,{});e.preStyleProps.forEach(e=>i[e]=!0);const s=n_(g,n,{});e.postStyleProps.forEach(e=>s[e]=!0),n!==t&&f.add(n)});const M=Y_(f.values());return lg(t,this._triggerName,n,i,y,h,p,v,M,_,g,w)}}class ug{constructor(e,t){this.styles=e,this.defaultParams=t}buildStyles(e,t){const n={},i=v_(this.defaultParams);return Object.keys(e).forEach(t=>{const n=e[t];null!=n&&(i[t]=n)}),this.styles.styles.forEach(e=>{if(\"string\"!=typeof e){const s=e;Object.keys(s).forEach(e=>{let r=s[e];r.length>1&&(r=D_(r,i,t)),n[e]=r})}}),n}}class hg{constructor(e,t){this.name=e,this.ast=t,this.transitionFactories=[],this.states={},t.states.forEach(e=>{this.states[e.name]=new ug(e.style,e.options&&e.options.params||{})}),mg(this.states,\"true\",\"1\"),mg(this.states,\"false\",\"0\"),t.transitions.forEach(t=>{this.transitionFactories.push(new dg(e,t,this.states))}),this.fallbackTransition=new dg(e,{type:1,animation:{type:2,steps:[],options:null},matchers:[(e,t)=>!0],options:null,queryCount:0,depCount:0},this.states)}get containsQueries(){return this.ast.queryCount>0}matchTransition(e,t,n,i){return this.transitionFactories.find(s=>s.match(e,t,n,i))||null}matchStyles(e,t,n){return this.fallbackTransition.buildStyles(e,t,n)}}function mg(e,t,n){e.hasOwnProperty(t)?e.hasOwnProperty(n)||(e[n]=e[t]):e.hasOwnProperty(n)&&(e[t]=e[n])}const pg=new J_;class fg{constructor(e,t,n){this.bodyNode=e,this._driver=t,this._normalizer=n,this._animations={},this._playersById={},this.players=[]}register(e,t){const n=[],i=V_(this._driver,t,n);if(n.length)throw new Error(`Unable to build the animation due to the following errors: ${n.join(\"\\n\")}`);this._animations[e]=i}_buildPlayer(e,t,n){const i=e.element,s=Qf(0,this._normalizer,0,e.keyframes,t,n);return this._driver.animate(i,s,e.duration,e.delay,e.easing,[],!0)}create(e,t,n={}){const i=[],s=this._animations[e];let r;const o=new Map;if(s?(r=Q_(this._driver,t,s,\"ng-enter\",\"ng-leave\",{},{},n,pg,i),r.forEach(e=>{const t=n_(o,e.element,{});e.postStyleProps.forEach(e=>t[e]=null)})):(i.push(\"The requested animation doesn't exist or has already been destroyed\"),r=[]),i.length)throw new Error(`Unable to create the animation due to the following errors: ${i.join(\"\\n\")}`);o.forEach((e,t)=>{Object.keys(e).forEach(n=>{e[n]=this._driver.computeStyle(t,n,\"*\")})});const a=Zf(r.map(e=>{const t=o.get(e.element);return this._buildPlayer(e,{},t)}));return this._playersById[e]=a,a.onDestroy(()=>this.destroy(e)),this.players.push(a),a}destroy(e){const t=this._getPlayer(e);t.destroy(),delete this._playersById[e];const n=this.players.indexOf(t);n>=0&&this.players.splice(n,1)}_getPlayer(e){const t=this._playersById[e];if(!t)throw new Error(`Unable to find the timeline player referenced by ${e}`);return t}listen(e,t,n,i){const s=t_(t,\"\",\"\",\"\");return Xf(this._getPlayer(e),n,s,i),()=>{}}command(e,t,n,i){if(\"register\"==n)return void this.register(e,i[0]);if(\"create\"==n)return void this.create(e,t,i[0]||{});const s=this._getPlayer(e);switch(n){case\"play\":s.play();break;case\"pause\":s.pause();break;case\"reset\":s.reset();break;case\"restart\":s.restart();break;case\"finish\":s.finish();break;case\"init\":s.init();break;case\"setPosition\":s.setPosition(parseFloat(i[0]));break;case\"destroy\":this.destroy(e)}}}const _g=[],gg={namespaceId:\"\",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},yg={namespaceId:\"\",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0};class bg{constructor(e,t=\"\"){this.namespaceId=t;const n=e&&e.hasOwnProperty(\"value\");if(this.value=null!=(i=n?e.value:e)?i:null,n){const t=v_(e);delete t.value,this.options=t}else this.options={};var i;this.options.params||(this.options.params={})}get params(){return this.options.params}absorbOptions(e){const t=e.params;if(t){const e=this.options.params;Object.keys(t).forEach(n=>{null==e[n]&&(e[n]=t[n])})}}}const vg=new bg(\"void\");class wg{constructor(e,t,n){this.id=e,this.hostElement=t,this._engine=n,this.players=[],this._triggers={},this._queue=[],this._elementListeners=new Map,this._hostClassName=\"ng-tns-\"+e,Tg(t,this._hostClassName)}listen(e,t,n,i){if(!this._triggers.hasOwnProperty(t))throw new Error(`Unable to listen on the animation trigger event \"${n}\" because the animation trigger \"${t}\" doesn't exist!`);if(null==n||0==n.length)throw new Error(`Unable to listen on the animation trigger \"${t}\" because the provided event is undefined!`);if(\"start\"!=(s=n)&&\"done\"!=s)throw new Error(`The provided animation trigger event \"${n}\" for the animation trigger \"${t}\" is not supported!`);var s;const r=n_(this._elementListeners,e,[]),o={name:t,phase:n,callback:i};r.push(o);const a=n_(this._engine.statesByElement,e,{});return a.hasOwnProperty(t)||(Tg(e,\"ng-trigger\"),Tg(e,\"ng-trigger-\"+t),a[t]=vg),()=>{this._engine.afterFlush(()=>{const e=r.indexOf(o);e>=0&&r.splice(e,1),this._triggers[t]||delete a[t]})}}register(e,t){return!this._triggers[e]&&(this._triggers[e]=t,!0)}_getTrigger(e){const t=this._triggers[e];if(!t)throw new Error(`The provided animation trigger \"${e}\" has not been registered!`);return t}trigger(e,t,n,i=!0){const s=this._getTrigger(t),r=new kg(this.id,t,e);let o=this._engine.statesByElement.get(e);o||(Tg(e,\"ng-trigger\"),Tg(e,\"ng-trigger-\"+t),this._engine.statesByElement.set(e,o={}));let a=o[t];const l=new bg(n,this.id);if(!(n&&n.hasOwnProperty(\"value\"))&&a&&l.absorbOptions(a.options),o[t]=l,a||(a=vg),\"void\"!==l.value&&a.value===l.value){if(!function(e,t){const n=Object.keys(e),i=Object.keys(t);if(n.length!=i.length)return!1;for(let s=0;s{L_(e,n),S_(e,i)})}return}const c=n_(this._engine.playersByElement,e,[]);c.forEach(e=>{e.namespaceId==this.id&&e.triggerName==t&&e.queued&&e.destroy()});let d=s.matchTransition(a.value,l.value,e,l.params),u=!1;if(!d){if(!i)return;d=s.fallbackTransition,u=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:e,triggerName:t,transition:d,fromState:a,toState:l,player:r,isFallbackTransition:u}),u||(Tg(e,\"ng-animate-queued\"),r.onStart(()=>{Dg(e,\"ng-animate-queued\")})),r.onDone(()=>{let t=this.players.indexOf(r);t>=0&&this.players.splice(t,1);const n=this._engine.playersByElement.get(e);if(n){let e=n.indexOf(r);e>=0&&n.splice(e,1)}}),this.players.push(r),c.push(r),r}deregister(e){delete this._triggers[e],this._engine.statesByElement.forEach((t,n)=>{delete t[e]}),this._elementListeners.forEach((t,n)=>{this._elementListeners.set(n,t.filter(t=>t.name!=e))})}clearElementCache(e){this._engine.statesByElement.delete(e),this._elementListeners.delete(e);const t=this._engine.playersByElement.get(e);t&&(t.forEach(e=>e.destroy()),this._engine.playersByElement.delete(e))}_signalRemovalForInnerTriggers(e,t){const n=this._engine.driver.query(e,\".ng-trigger\",!0);n.forEach(e=>{if(e.__ng_removed)return;const n=this._engine.fetchNamespacesByElement(e);n.size?n.forEach(n=>n.triggerLeaveAnimation(e,t,!1,!0)):this.clearElementCache(e)}),this._engine.afterFlushAnimationsDone(()=>n.forEach(e=>this.clearElementCache(e)))}triggerLeaveAnimation(e,t,n,i){const s=this._engine.statesByElement.get(e);if(s){const r=[];if(Object.keys(s).forEach(t=>{if(this._triggers[t]){const n=this.trigger(e,t,\"void\",i);n&&r.push(n)}}),r.length)return this._engine.markElementAsRemoved(this.id,e,!0,t),n&&Zf(r).onDone(()=>this._engine.processLeaveNode(e)),!0}return!1}prepareLeaveAnimationListeners(e){const t=this._elementListeners.get(e);if(t){const n=new Set;t.forEach(t=>{const i=t.name;if(n.has(i))return;n.add(i);const s=this._triggers[i].fallbackTransition,r=this._engine.statesByElement.get(e)[i]||vg,o=new bg(\"void\"),a=new kg(this.id,i,e);this._engine.totalQueuedPlayers++,this._queue.push({element:e,triggerName:i,transition:s,fromState:r,toState:o,player:a,isFallbackTransition:!0})})}}removeNode(e,t){const n=this._engine;if(e.childElementCount&&this._signalRemovalForInnerTriggers(e,t),this.triggerLeaveAnimation(e,t,!0))return;let i=!1;if(n.totalAnimations){const t=n.players.length?n.playersByQueriedElement.get(e):[];if(t&&t.length)i=!0;else{let t=e;for(;t=t.parentNode;)if(n.statesByElement.get(t)){i=!0;break}}}if(this.prepareLeaveAnimationListeners(e),i)n.markElementAsRemoved(this.id,e,!1,t);else{const i=e.__ng_removed;i&&i!==gg||(n.afterFlush(()=>this.clearElementCache(e)),n.destroyInnerAnimations(e),n._onRemovalComplete(e,t))}}insertNode(e,t){Tg(e,this._hostClassName)}drainQueuedTransitions(e){const t=[];return this._queue.forEach(n=>{const i=n.player;if(i.destroyed)return;const s=n.element,r=this._elementListeners.get(s);r&&r.forEach(t=>{if(t.name==n.triggerName){const i=t_(s,n.triggerName,n.fromState.value,n.toState.value);i._data=e,Xf(n.player,t.phase,i,t.callback)}}),i.markedForDestroy?this._engine.afterFlush(()=>{i.destroy()}):t.push(n)}),this._queue=[],t.sort((e,t)=>{const n=e.transition.ast.depCount,i=t.transition.ast.depCount;return 0==n||0==i?n-i:this._engine.driver.containsElement(e.element,t.element)?1:-1})}destroy(e){this.players.forEach(e=>e.destroy()),this._signalRemovalForInnerTriggers(this.hostElement,e)}elementContainsData(e){let t=!1;return this._elementListeners.has(e)&&(t=!0),t=!!this._queue.find(t=>t.element===e)||t,t}}class Mg{constructor(e,t,n){this.bodyNode=e,this.driver=t,this._normalizer=n,this.players=[],this.newHostElements=new Map,this.playersByElement=new Map,this.playersByQueriedElement=new Map,this.statesByElement=new Map,this.disabledNodes=new Set,this.totalAnimations=0,this.totalQueuedPlayers=0,this._namespaceLookup={},this._namespaceList=[],this._flushFns=[],this._whenQuietFns=[],this.namespacesByHostElement=new Map,this.collectedEnterElements=[],this.collectedLeaveElements=[],this.onRemovalComplete=(e,t)=>{}}_onRemovalComplete(e,t){this.onRemovalComplete(e,t)}get queuedPlayers(){const e=[];return this._namespaceList.forEach(t=>{t.players.forEach(t=>{t.queued&&e.push(t)})}),e}createNamespace(e,t){const n=new wg(e,t,this);return t.parentNode?this._balanceNamespaceList(n,t):(this.newHostElements.set(t,n),this.collectEnterElement(t)),this._namespaceLookup[e]=n}_balanceNamespaceList(e,t){const n=this._namespaceList.length-1;if(n>=0){let i=!1;for(let s=n;s>=0;s--)if(this.driver.containsElement(this._namespaceList[s].hostElement,t)){this._namespaceList.splice(s+1,0,e),i=!0;break}i||this._namespaceList.splice(0,0,e)}else this._namespaceList.push(e);return this.namespacesByHostElement.set(t,e),e}register(e,t){let n=this._namespaceLookup[e];return n||(n=this.createNamespace(e,t)),n}registerTrigger(e,t,n){let i=this._namespaceLookup[e];i&&i.register(t,n)&&this.totalAnimations++}destroy(e,t){if(!e)return;const n=this._fetchNamespace(e);this.afterFlush(()=>{this.namespacesByHostElement.delete(n.hostElement),delete this._namespaceLookup[e];const t=this._namespaceList.indexOf(n);t>=0&&this._namespaceList.splice(t,1)}),this.afterFlushAnimationsDone(()=>n.destroy(t))}_fetchNamespace(e){return this._namespaceLookup[e]}fetchNamespacesByElement(e){const t=new Set,n=this.statesByElement.get(e);if(n){const e=Object.keys(n);for(let i=0;i=0&&this.collectedLeaveElements.splice(e,1)}if(e){const i=this._fetchNamespace(e);i&&i.insertNode(t,n)}i&&this.collectEnterElement(t)}collectEnterElement(e){this.collectedEnterElements.push(e)}markElementAsDisabled(e,t){t?this.disabledNodes.has(e)||(this.disabledNodes.add(e),Tg(e,\"ng-animate-disabled\")):this.disabledNodes.has(e)&&(this.disabledNodes.delete(e),Dg(e,\"ng-animate-disabled\"))}removeNode(e,t,n,i){if(Sg(t)){const s=e?this._fetchNamespace(e):null;if(s?s.removeNode(t,i):this.markElementAsRemoved(e,t,!1,i),n){const n=this.namespacesByHostElement.get(t);n&&n.id!==e&&n.removeNode(t,i)}}else this._onRemovalComplete(t,i)}markElementAsRemoved(e,t,n,i){this.collectedLeaveElements.push(t),t.__ng_removed={namespaceId:e,setForRemoval:i,hasAnimation:n,removedBeforeQueried:!1}}listen(e,t,n,i,s){return Sg(t)?this._fetchNamespace(e).listen(t,n,i,s):()=>{}}_buildInstruction(e,t,n,i,s){return e.transition.build(this.driver,e.element,e.fromState.value,e.toState.value,n,i,e.fromState.options,e.toState.options,t,s)}destroyInnerAnimations(e){let t=this.driver.query(e,\".ng-trigger\",!0);t.forEach(e=>this.destroyActiveAnimationsForElement(e)),0!=this.playersByQueriedElement.size&&(t=this.driver.query(e,\".ng-animating\",!0),t.forEach(e=>this.finishActiveQueriedAnimationOnElement(e)))}destroyActiveAnimationsForElement(e){const t=this.playersByElement.get(e);t&&t.forEach(e=>{e.queued?e.markedForDestroy=!0:e.destroy()})}finishActiveQueriedAnimationOnElement(e){const t=this.playersByQueriedElement.get(e);t&&t.forEach(e=>e.finish())}whenRenderingDone(){return new Promise(e=>{if(this.players.length)return Zf(this.players).onDone(()=>e());e()})}processLeaveNode(e){const t=e.__ng_removed;if(t&&t.setForRemoval){if(e.__ng_removed=gg,t.namespaceId){this.destroyInnerAnimations(e);const n=this._fetchNamespace(t.namespaceId);n&&n.clearElementCache(e)}this._onRemovalComplete(e,t.setForRemoval)}this.driver.matchesElement(e,\".ng-animate-disabled\")&&this.markElementAsDisabled(e,!1),this.driver.query(e,\".ng-animate-disabled\",!0).forEach(e=>{this.markElementAsDisabled(e,!1)})}flush(e=-1){let t=[];if(this.newHostElements.size&&(this.newHostElements.forEach((e,t)=>this._balanceNamespaceList(e,t)),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(let n=0;ne()),this._flushFns=[],this._whenQuietFns.length){const e=this._whenQuietFns;this._whenQuietFns=[],t.length?Zf(t).onDone(()=>{e.forEach(e=>e())}):e.forEach(e=>e())}}reportError(e){throw new Error(`Unable to process animations due to the following failed trigger transitions\\n ${e.join(\"\\n\")}`)}_flushAnimations(e,t){const n=new J_,i=[],s=new Map,r=[],o=new Map,a=new Map,l=new Map,c=new Set;this.disabledNodes.forEach(e=>{c.add(e);const t=this.driver.query(e,\".ng-animate-queued\",!0);for(let n=0;n{const n=\"ng-enter\"+p++;m.set(t,n),e.forEach(e=>Tg(e,n))});const f=[],_=new Set,g=new Set;for(let Y=0;Y_.add(e)):g.add(e))}const y=new Map,b=Cg(u,Array.from(_));b.forEach((e,t)=>{const n=\"ng-leave\"+p++;y.set(t,n),e.forEach(e=>Tg(e,n))}),e.push(()=>{h.forEach((e,t)=>{const n=m.get(t);e.forEach(e=>Dg(e,n))}),b.forEach((e,t)=>{const n=y.get(t);e.forEach(e=>Dg(e,n))}),f.forEach(e=>{this.processLeaveNode(e)})});const v=[],w=[];for(let Y=this._namespaceList.length-1;Y>=0;Y--)this._namespaceList[Y].drainQueuedTransitions(t).forEach(e=>{const t=e.player,s=e.element;if(v.push(t),this.collectedEnterElements.length){const e=s.__ng_removed;if(e&&e.setForMove)return void t.destroy()}const c=!d||!this.driver.containsElement(d,s),u=y.get(s),h=m.get(s),p=this._buildInstruction(e,n,h,u,c);if(!p.errors||!p.errors.length)return c||e.isFallbackTransition?(t.onStart(()=>L_(s,p.fromStyles)),t.onDestroy(()=>S_(s,p.toStyles)),void i.push(t)):(p.timelines.forEach(e=>e.stretchStartingKeyframe=!0),n.append(s,p.timelines),r.push({instruction:p,player:t,element:s}),p.queriedElements.forEach(e=>n_(o,e,[]).push(t)),p.preStyleProps.forEach((e,t)=>{const n=Object.keys(e);if(n.length){let e=a.get(t);e||a.set(t,e=new Set),n.forEach(t=>e.add(t))}}),void p.postStyleProps.forEach((e,t)=>{const n=Object.keys(e);let i=l.get(t);i||l.set(t,i=new Set),n.forEach(e=>i.add(e))}));w.push(p)});if(w.length){const e=[];w.forEach(t=>{e.push(`@${t.triggerName} has failed due to:\\n`),t.errors.forEach(t=>e.push(`- ${t}\\n`))}),v.forEach(e=>e.destroy()),this.reportError(e)}const M=new Map,k=new Map;r.forEach(e=>{const t=e.element;n.has(t)&&(k.set(t,t),this._beforeAnimationBuild(e.player.namespaceId,e.instruction,M))}),i.forEach(e=>{const t=e.element;this._getPreviousPlayers(t,!1,e.namespaceId,e.triggerName,null).forEach(e=>{n_(M,t,[]).push(e),e.destroy()})});const S=f.filter(e=>Eg(e,a,l)),L=new Map;xg(L,this.driver,g,l,\"*\").forEach(e=>{Eg(e,a,l)&&S.push(e)});const x=new Map;h.forEach((e,t)=>{xg(x,this.driver,new Set(e),a,\"!\")}),S.forEach(e=>{const t=L.get(e),n=x.get(e);L.set(e,Object.assign(Object.assign({},t),n))});const C=[],T=[],D={};r.forEach(e=>{const{element:t,player:r,instruction:o}=e;if(n.has(t)){if(c.has(t))return r.onDestroy(()=>S_(t,o.toStyles)),r.disabled=!0,r.overrideTotalTime(o.totalTime),void i.push(r);let e=D;if(k.size>1){let n=t;const i=[];for(;n=n.parentNode;){const t=k.get(n);if(t){e=t;break}i.push(n)}i.forEach(t=>k.set(t,e))}const n=this._buildAnimation(r.namespaceId,o,M,s,x,L);if(r.setRealPlayer(n),e===D)C.push(r);else{const t=this.playersByElement.get(e);t&&t.length&&(r.parentPlayer=Zf(t)),i.push(r)}}else L_(t,o.fromStyles),r.onDestroy(()=>S_(t,o.toStyles)),T.push(r),c.has(t)&&i.push(r)}),T.forEach(e=>{const t=s.get(e.element);if(t&&t.length){const n=Zf(t);e.setRealPlayer(n)}}),i.forEach(e=>{e.parentPlayer?e.syncPlayerEvents(e.parentPlayer):e.destroy()});for(let Y=0;Y!e.destroyed);i.length?Yg(this,e,i):this.processLeaveNode(e)}return f.length=0,C.forEach(e=>{this.players.push(e),e.onDone(()=>{e.destroy();const t=this.players.indexOf(e);this.players.splice(t,1)}),e.play()}),C}elementContainsData(e,t){let n=!1;const i=t.__ng_removed;return i&&i.setForRemoval&&(n=!0),this.playersByElement.has(t)&&(n=!0),this.playersByQueriedElement.has(t)&&(n=!0),this.statesByElement.has(t)&&(n=!0),this._fetchNamespace(e).elementContainsData(t)||n}afterFlush(e){this._flushFns.push(e)}afterFlushAnimationsDone(e){this._whenQuietFns.push(e)}_getPreviousPlayers(e,t,n,i,s){let r=[];if(t){const t=this.playersByQueriedElement.get(e);t&&(r=t)}else{const t=this.playersByElement.get(e);if(t){const e=!s||\"void\"==s;t.forEach(t=>{t.queued||(e||t.triggerName==i)&&r.push(t)})}}return(n||i)&&(r=r.filter(e=>!(n&&n!=e.namespaceId||i&&i!=e.triggerName))),r}_beforeAnimationBuild(e,t,n){const i=t.element,s=t.isRemovalTransition?void 0:e,r=t.isRemovalTransition?void 0:t.triggerName;for(const o of t.timelines){const e=o.element,a=e!==i,l=n_(n,e,[]);this._getPreviousPlayers(e,a,s,r,t.toState).forEach(e=>{const t=e.getRealPlayer();t.beforeDestroy&&t.beforeDestroy(),e.destroy(),l.push(e)})}L_(i,t.fromStyles)}_buildAnimation(e,t,n,i,s,r){const o=t.triggerName,a=t.element,l=[],c=new Set,d=new Set,u=t.timelines.map(t=>{const u=t.element;c.add(u);const h=u.__ng_removed;if(h&&h.removedBeforeQueried)return new Gf(t.duration,t.delay);const m=u!==a,p=function(e){const t=[];return function e(t,n){for(let i=0;ie.getRealPlayer())).filter(e=>!!e.element&&e.element===u),f=s.get(u),_=r.get(u),g=Qf(0,this._normalizer,0,t.keyframes,f,_),y=this._buildPlayer(t,g,p);if(t.subTimeline&&i&&d.add(u),m){const t=new kg(e,o,u);t.setRealPlayer(y),l.push(t)}return y});l.forEach(e=>{n_(this.playersByQueriedElement,e.element,[]).push(e),e.onDone(()=>function(e,t,n){let i;if(e instanceof Map){if(i=e.get(t),i){if(i.length){const e=i.indexOf(n);i.splice(e,1)}0==i.length&&e.delete(t)}}else if(i=e[t],i){if(i.length){const e=i.indexOf(n);i.splice(e,1)}0==i.length&&delete e[t]}return i}(this.playersByQueriedElement,e.element,e))}),c.forEach(e=>Tg(e,\"ng-animating\"));const h=Zf(u);return h.onDestroy(()=>{c.forEach(e=>Dg(e,\"ng-animating\")),S_(a,t.toStyles)}),d.forEach(e=>{n_(i,e,[]).push(h)}),h}_buildPlayer(e,t,n){return t.length>0?this.driver.animate(e.element,t,e.duration,e.delay,e.easing,n):new Gf(e.duration,e.delay)}}class kg{constructor(e,t,n){this.namespaceId=e,this.triggerName=t,this.element=n,this._player=new Gf,this._containsRealPlayer=!1,this._queuedCallbacks={},this.destroyed=!1,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}setRealPlayer(e){this._containsRealPlayer||(this._player=e,Object.keys(this._queuedCallbacks).forEach(t=>{this._queuedCallbacks[t].forEach(n=>Xf(e,t,void 0,n))}),this._queuedCallbacks={},this._containsRealPlayer=!0,this.overrideTotalTime(e.totalTime),this.queued=!1)}getRealPlayer(){return this._player}overrideTotalTime(e){this.totalTime=e}syncPlayerEvents(e){const t=this._player;t.triggerCallback&&e.onStart(()=>t.triggerCallback(\"start\")),e.onDone(()=>this.finish()),e.onDestroy(()=>this.destroy())}_queueEvent(e,t){n_(this._queuedCallbacks,e,[]).push(t)}onDone(e){this.queued&&this._queueEvent(\"done\",e),this._player.onDone(e)}onStart(e){this.queued&&this._queueEvent(\"start\",e),this._player.onStart(e)}onDestroy(e){this.queued&&this._queueEvent(\"destroy\",e),this._player.onDestroy(e)}init(){this._player.init()}hasStarted(){return!this.queued&&this._player.hasStarted()}play(){!this.queued&&this._player.play()}pause(){!this.queued&&this._player.pause()}restart(){!this.queued&&this._player.restart()}finish(){this._player.finish()}destroy(){this.destroyed=!0,this._player.destroy()}reset(){!this.queued&&this._player.reset()}setPosition(e){this.queued||this._player.setPosition(e)}getPosition(){return this.queued?0:this._player.getPosition()}triggerCallback(e){const t=this._player;t.triggerCallback&&t.triggerCallback(e)}}function Sg(e){return e&&1===e.nodeType}function Lg(e,t){const n=e.style.display;return e.style.display=null!=t?t:\"none\",n}function xg(e,t,n,i,s){const r=[];n.forEach(e=>r.push(Lg(e)));const o=[];i.forEach((n,i)=>{const r={};n.forEach(e=>{const n=r[e]=t.computeStyle(i,e,s);n&&0!=n.length||(i.__ng_removed=yg,o.push(i))}),e.set(i,r)});let a=0;return n.forEach(e=>Lg(e,r[a++])),o}function Cg(e,t){const n=new Map;if(e.forEach(e=>n.set(e,[])),0==t.length)return n;const i=new Set(t),s=new Map;return t.forEach(e=>{const t=function e(t){if(!t)return 1;let r=s.get(t);if(r)return r;const o=t.parentNode;return r=n.has(o)?o:i.has(o)?1:e(o),s.set(t,r),r}(e);1!==t&&n.get(t).push(e)}),n}function Tg(e,t){if(e.classList)e.classList.add(t);else{let n=e.$$classes;n||(n=e.$$classes={}),n[t]=!0}}function Dg(e,t){if(e.classList)e.classList.remove(t);else{let n=e.$$classes;n&&delete n[t]}}function Yg(e,t,n){Zf(n).onDone(()=>e.processLeaveNode(t))}function Eg(e,t,n){const i=n.get(e);if(!i)return!1;let s=t.get(e);return s?i.forEach(e=>s.add(e)):t.set(e,i),n.delete(e),!0}class Og{constructor(e,t,n){this.bodyNode=e,this._driver=t,this._triggerCache={},this.onRemovalComplete=(e,t)=>{},this._transitionEngine=new Mg(e,t,n),this._timelineEngine=new fg(e,t,n),this._transitionEngine.onRemovalComplete=(e,t)=>this.onRemovalComplete(e,t)}registerTrigger(e,t,n,i,s){const r=e+\"-\"+i;let o=this._triggerCache[r];if(!o){const e=[],t=V_(this._driver,s,e);if(e.length)throw new Error(`The animation trigger \"${i}\" has failed to build due to the following errors:\\n - ${e.join(\"\\n - \")}`);o=function(e,t){return new hg(e,t)}(i,t),this._triggerCache[r]=o}this._transitionEngine.registerTrigger(t,i,o)}register(e,t){this._transitionEngine.register(e,t)}destroy(e,t){this._transitionEngine.destroy(e,t)}onInsert(e,t,n,i){this._transitionEngine.insertNode(e,t,n,i)}onRemove(e,t,n,i){this._transitionEngine.removeNode(e,t,i||!1,n)}disableAnimations(e,t){this._transitionEngine.markElementAsDisabled(e,t)}process(e,t,n,i){if(\"@\"==n.charAt(0)){const[e,s]=i_(n);this._timelineEngine.command(e,t,s,i)}else this._transitionEngine.trigger(e,t,n,i)}listen(e,t,n,i,s){if(\"@\"==n.charAt(0)){const[e,i]=i_(n);return this._timelineEngine.listen(e,t,i,s)}return this._transitionEngine.listen(e,t,n,i,s)}flush(e=-1){this._transitionEngine.flush(e)}get players(){return this._transitionEngine.players.concat(this._timelineEngine.players)}whenRenderingDone(){return this._transitionEngine.whenRenderingDone()}}function Ig(e,t){let n=null,i=null;return Array.isArray(t)&&t.length?(n=Ag(t[0]),t.length>1&&(i=Ag(t[t.length-1]))):t&&(n=Ag(t)),n||i?new Pg(e,n,i):null}let Pg=(()=>{class e{constructor(t,n,i){this._element=t,this._startStyles=n,this._endStyles=i,this._state=0;let s=e.initialStylesByElement.get(t);s||e.initialStylesByElement.set(t,s={}),this._initialStyles=s}start(){this._state<1&&(this._startStyles&&S_(this._element,this._startStyles,this._initialStyles),this._state=1)}finish(){this.start(),this._state<2&&(S_(this._element,this._initialStyles),this._endStyles&&(S_(this._element,this._endStyles),this._endStyles=null),this._state=1)}destroy(){this.finish(),this._state<3&&(e.initialStylesByElement.delete(this._element),this._startStyles&&(L_(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(L_(this._element,this._endStyles),this._endStyles=null),S_(this._element,this._initialStyles),this._state=3)}}return e.initialStylesByElement=new WeakMap,e})();function Ag(e){let t=null;const n=Object.keys(e);for(let i=0;ithis._handleCallback(e)}apply(){!function(e,t){const n=Wg(e,\"\").trim();n.length&&(function(e,t){let n=0;for(let i=0;i=this._delay&&n>=this._duration&&this.finish()}finish(){this._finished||(this._finished=!0,this._onDoneFn(),zg(this._element,this._eventFn,!0))}destroy(){this._destroyed||(this._destroyed=!0,this.finish(),function(e,t){const n=Wg(e,\"\").split(\",\"),i=Ng(n,t);i>=0&&(n.splice(i,1),Vg(e,\"\",n.join(\",\")))}(this._element,this._name))}}function jg(e,t,n){Vg(e,\"PlayState\",n,Fg(e,t))}function Fg(e,t){const n=Wg(e,\"\");return n.indexOf(\",\")>0?Ng(n.split(\",\"),t):Ng([n],t)}function Ng(e,t){for(let n=0;n=0)return n;return-1}function zg(e,t,n){n?e.removeEventListener(\"animationend\",t):e.addEventListener(\"animationend\",t)}function Vg(e,t,n,i){const s=\"animation\"+t;if(null!=i){const t=e.style[s];if(t.length){const e=t.split(\",\");e[i]=n,n=e.join(\",\")}}e.style[s]=n}function Wg(e,t){return e.style[\"animation\"+t]}class Ug{constructor(e,t,n,i,s,r,o,a){this.element=e,this.keyframes=t,this.animationName=n,this._duration=i,this._delay=s,this._finalStyles=o,this._specialStyles=a,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this.currentSnapshot={},this._state=0,this.easing=r||\"linear\",this.totalTime=i+s,this._buildStyler()}onStart(e){this._onStartFns.push(e)}onDone(e){this._onDoneFns.push(e)}onDestroy(e){this._onDestroyFns.push(e)}destroy(){this.init(),this._state>=4||(this._state=4,this._styler.destroy(),this._flushStartFns(),this._flushDoneFns(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(e=>e()),this._onDestroyFns=[])}_flushDoneFns(){this._onDoneFns.forEach(e=>e()),this._onDoneFns=[]}_flushStartFns(){this._onStartFns.forEach(e=>e()),this._onStartFns=[]}finish(){this.init(),this._state>=3||(this._state=3,this._styler.finish(),this._flushStartFns(),this._specialStyles&&this._specialStyles.finish(),this._flushDoneFns())}setPosition(e){this._styler.setPosition(e)}getPosition(){return this._styler.getPosition()}hasStarted(){return this._state>=2}init(){this._state>=1||(this._state=1,this._styler.apply(),this._delay&&this._styler.pause())}play(){this.init(),this.hasStarted()||(this._flushStartFns(),this._state=2,this._specialStyles&&this._specialStyles.start()),this._styler.resume()}pause(){this.init(),this._styler.pause()}restart(){this.reset(),this.play()}reset(){this._styler.destroy(),this._buildStyler(),this._styler.apply()}_buildStyler(){this._styler=new Hg(this.element,this.animationName,this._duration,this._delay,this.easing,\"forwards\",()=>this.finish())}triggerCallback(e){const t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach(e=>e()),t.length=0}beforeDestroy(){this.init();const e={};if(this.hasStarted()){const t=this._state>=3;Object.keys(this._finalStyles).forEach(n=>{\"offset\"!=n&&(e[n]=t?this._finalStyles[n]:R_(this.element,n))})}this.currentSnapshot=e}}class $g extends Gf{constructor(e,t){super(),this.element=e,this._startingStyles={},this.__initialized=!1,this._styles=p_(t)}init(){!this.__initialized&&this._startingStyles&&(this.__initialized=!0,Object.keys(this._styles).forEach(e=>{this._startingStyles[e]=this.element.style[e]}),super.init())}play(){this._startingStyles&&(this.init(),Object.keys(this._styles).forEach(e=>this.element.style.setProperty(e,this._styles[e])),super.play())}destroy(){this._startingStyles&&(Object.keys(this._startingStyles).forEach(e=>{const t=this._startingStyles[e];t?this.element.style.setProperty(e,t):this.element.style.removeProperty(e)}),this._startingStyles=null,super.destroy())}}class Bg{constructor(){this._count=0,this._head=document.querySelector(\"head\"),this._warningIssued=!1}validateStyleProperty(e){return d_(e)}matchesElement(e,t){return u_(e,t)}containsElement(e,t){return h_(e,t)}query(e,t,n){return m_(e,t,n)}computeStyle(e,t,n){return window.getComputedStyle(e)[t]}buildKeyframeElement(e,t,n){n=n.map(e=>p_(e));let i=`@keyframes ${t} {\\n`,s=\"\";n.forEach(e=>{s=\" \";const t=parseFloat(e.offset);i+=`${s}${100*t}% {\\n`,s+=\" \",Object.keys(e).forEach(t=>{const n=e[t];switch(t){case\"offset\":return;case\"easing\":return void(n&&(i+=`${s}animation-timing-function: ${n};\\n`));default:return void(i+=`${s}${t}: ${n};\\n`)}}),i+=`${s}}\\n`}),i+=\"}\\n\";const r=document.createElement(\"style\");return r.innerHTML=i,r}animate(e,t,n,i,s,r=[],o){o&&this._notifyFaultyScrubber();const a=r.filter(e=>e instanceof Ug),l={};I_(n,i)&&a.forEach(e=>{let t=e.currentSnapshot;Object.keys(t).forEach(e=>l[e]=t[e])});const c=function(e){let t={};return e&&(Array.isArray(e)?e:[e]).forEach(e=>{Object.keys(e).forEach(n=>{\"offset\"!=n&&\"easing\"!=n&&(t[n]=e[n])})}),t}(t=P_(e,t,l));if(0==n)return new $g(e,c);const d=`gen_css_kf_${this._count++}`,u=this.buildKeyframeElement(e,d,t);document.querySelector(\"head\").appendChild(u);const h=Ig(e,t),m=new Ug(e,t,d,n,i,s,c,h);return m.onDestroy(()=>{var e;(e=u).parentNode.removeChild(e)}),m}_notifyFaultyScrubber(){this._warningIssued||(console.warn(\"@angular/animations: please load the web-animations.js polyfill to allow programmatic access...\\n\",\" visit http://bit.ly/IWukam to learn more about using the web-animation-js polyfill.\"),this._warningIssued=!0)}}class qg{constructor(e,t,n,i){this.element=e,this.keyframes=t,this.options=n,this._specialStyles=i,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._initialized=!1,this._finished=!1,this._started=!1,this._destroyed=!1,this.time=0,this.parentPlayer=null,this.currentSnapshot={},this._duration=n.duration,this._delay=n.delay||0,this.time=this._duration+this._delay}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(e=>e()),this._onDoneFns=[])}init(){this._buildPlayer(),this._preparePlayerBeforeStart()}_buildPlayer(){if(this._initialized)return;this._initialized=!0;const e=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,e,this.options),this._finalKeyframe=e.length?e[e.length-1]:{},this.domPlayer.addEventListener(\"finish\",()=>this._onFinish())}_preparePlayerBeforeStart(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}_triggerWebAnimation(e,t,n){return e.animate(t,n)}onStart(e){this._onStartFns.push(e)}onDone(e){this._onDoneFns.push(e)}onDestroy(e){this._onDestroyFns.push(e)}play(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach(e=>e()),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),this.domPlayer.play()}pause(){this.init(),this.domPlayer.pause()}finish(){this.init(),this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish()}reset(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1}_resetDomPlayerState(){this.domPlayer&&this.domPlayer.cancel()}restart(){this.reset(),this.play()}hasStarted(){return this._started}destroy(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(e=>e()),this._onDestroyFns=[])}setPosition(e){this.domPlayer.currentTime=e*this.time}getPosition(){return this.domPlayer.currentTime/this.time}get totalTime(){return this._delay+this._duration}beforeDestroy(){const e={};this.hasStarted()&&Object.keys(this._finalKeyframe).forEach(t=>{\"offset\"!=t&&(e[t]=this._finished?this._finalKeyframe[t]:R_(this.element,t))}),this.currentSnapshot=e}triggerCallback(e){const t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach(e=>e()),t.length=0}}class Gg{constructor(){this._isNativeImpl=/\\{\\s*\\[native\\s+code\\]\\s*\\}/.test(Jg().toString()),this._cssKeyframesDriver=new Bg}validateStyleProperty(e){return d_(e)}matchesElement(e,t){return u_(e,t)}containsElement(e,t){return h_(e,t)}query(e,t,n){return m_(e,t,n)}computeStyle(e,t,n){return window.getComputedStyle(e)[t]}overrideWebAnimationsSupport(e){this._isNativeImpl=e}animate(e,t,n,i,s,r=[],o){if(!o&&!this._isNativeImpl)return this._cssKeyframesDriver.animate(e,t,n,i,s,r);const a={duration:n,delay:i,fill:0==i?\"both\":\"forwards\"};s&&(a.easing=s);const l={},c=r.filter(e=>e instanceof qg);I_(n,i)&&c.forEach(e=>{let t=e.currentSnapshot;Object.keys(t).forEach(e=>l[e]=t[e])});const d=Ig(e,t=P_(e,t=t.map(e=>w_(e,!1)),l));return new qg(e,t,a,d)}}function Jg(){return\"undefined\"!=typeof window&&void 0!==window.document&&Element.prototype.animate||{}}let Kg=(()=>{class e extends Hf{constructor(e,t){super(),this._nextAnimationId=0,this._renderer=e.createRenderer(t.body,{id:\"0\",encapsulation:pt.None,styles:[],data:{animation:[]}})}build(e){const t=this._nextAnimationId.toString();this._nextAnimationId++;const n=Array.isArray(e)?zf(e):e;return Xg(this._renderer,null,t,\"register\",[n]),new Zg(t,this._renderer)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Qa),Qe(Nd))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class Zg extends class{}{constructor(e,t){super(),this._id=e,this._renderer=t}create(e,t){return new Qg(this._id,e,t||{},this._renderer)}}class Qg{constructor(e,t,n,i){this.id=e,this.element=t,this._renderer=i,this.parentPlayer=null,this._started=!1,this.totalTime=0,this._command(\"create\",n)}_listen(e,t){return this._renderer.listen(this.element,`@@${this.id}:${e}`,t)}_command(e,...t){return Xg(this._renderer,this.element,this.id,e,t)}onDone(e){this._listen(\"done\",e)}onStart(e){this._listen(\"start\",e)}onDestroy(e){this._listen(\"destroy\",e)}init(){this._command(\"init\")}hasStarted(){return this._started}play(){this._command(\"play\"),this._started=!0}pause(){this._command(\"pause\")}restart(){this._command(\"restart\")}finish(){this._command(\"finish\")}destroy(){this._command(\"destroy\")}reset(){this._command(\"reset\")}setPosition(e){this._command(\"setPosition\",e)}getPosition(){return 0}}function Xg(e,t,n,i,s){return e.setProperty(t,`@@${n}:${i}`,s)}let ey=(()=>{class e{constructor(e,t,n){this.delegate=e,this.engine=t,this._zone=n,this._currentId=0,this._microtaskId=1,this._animationCallbacksBuffer=[],this._rendererCache=new Map,this._cdRecurDepth=0,this.promise=Promise.resolve(0),t.onRemovalComplete=(e,t)=>{t&&t.parentNode(e)&&t.removeChild(e.parentNode,e)}}createRenderer(e,t){const n=this.delegate.createRenderer(e,t);if(!(e&&t&&t.data&&t.data.animation)){let e=this._rendererCache.get(n);return e||(e=new ty(\"\",n,this.engine),this._rendererCache.set(n,e)),e}const i=t.id,s=t.id+\"-\"+this._currentId;this._currentId++,this.engine.register(s,e);const r=t=>{Array.isArray(t)?t.forEach(r):this.engine.registerTrigger(i,s,e,t.name,t)};return t.data.animation.forEach(r),new ny(this,s,n,this.engine)}begin(){this._cdRecurDepth++,this.delegate.begin&&this.delegate.begin()}_scheduleCountTask(){this.promise.then(()=>{this._microtaskId++})}scheduleListenerCallback(e,t,n){e>=0&&et(n)):(0==this._animationCallbacksBuffer.length&&Promise.resolve(null).then(()=>{this._zone.run(()=>{this._animationCallbacksBuffer.forEach(e=>{const[t,n]=e;t(n)}),this._animationCallbacksBuffer=[]})}),this._animationCallbacksBuffer.push([t,n]))}end(){this._cdRecurDepth--,0==this._cdRecurDepth&&this._zone.runOutsideAngular(()=>{this._scheduleCountTask(),this.engine.flush(this._microtaskId)}),this.delegate.end&&this.delegate.end()}whenRenderingDone(){return this.engine.whenRenderingDone()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Qa),Qe(Og),Qe(ld))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();class ty{constructor(e,t,n){this.namespaceId=e,this.delegate=t,this.engine=n,this.destroyNode=this.delegate.destroyNode?e=>t.destroyNode(e):null}get data(){return this.delegate.data}destroy(){this.engine.destroy(this.namespaceId,this.delegate),this.delegate.destroy()}createElement(e,t){return this.delegate.createElement(e,t)}createComment(e){return this.delegate.createComment(e)}createText(e){return this.delegate.createText(e)}appendChild(e,t){this.delegate.appendChild(e,t),this.engine.onInsert(this.namespaceId,t,e,!1)}insertBefore(e,t,n){this.delegate.insertBefore(e,t,n),this.engine.onInsert(this.namespaceId,t,e,!0)}removeChild(e,t,n){this.engine.onRemove(this.namespaceId,t,this.delegate,n)}selectRootElement(e,t){return this.delegate.selectRootElement(e,t)}parentNode(e){return this.delegate.parentNode(e)}nextSibling(e){return this.delegate.nextSibling(e)}setAttribute(e,t,n,i){this.delegate.setAttribute(e,t,n,i)}removeAttribute(e,t,n){this.delegate.removeAttribute(e,t,n)}addClass(e,t){this.delegate.addClass(e,t)}removeClass(e,t){this.delegate.removeClass(e,t)}setStyle(e,t,n,i){this.delegate.setStyle(e,t,n,i)}removeStyle(e,t,n){this.delegate.removeStyle(e,t,n)}setProperty(e,t,n){\"@\"==t.charAt(0)&&\"@.disabled\"==t?this.disableAnimations(e,!!n):this.delegate.setProperty(e,t,n)}setValue(e,t){this.delegate.setValue(e,t)}listen(e,t,n){return this.delegate.listen(e,t,n)}disableAnimations(e,t){this.engine.disableAnimations(e,t)}}class ny extends ty{constructor(e,t,n,i){super(t,n,i),this.factory=e,this.namespaceId=t}setProperty(e,t,n){\"@\"==t.charAt(0)?\".\"==t.charAt(1)&&\"@.disabled\"==t?this.disableAnimations(e,n=void 0===n||!!n):this.engine.process(this.namespaceId,e,t.substr(1),n):this.delegate.setProperty(e,t,n)}listen(e,t,n){if(\"@\"==t.charAt(0)){const i=function(e){switch(e){case\"body\":return document.body;case\"document\":return document;case\"window\":return window;default:return e}}(e);let s=t.substr(1),r=\"\";return\"@\"!=s.charAt(0)&&([s,r]=function(e){const t=e.indexOf(\".\");return[e.substring(0,t),e.substr(t+1)]}(s)),this.engine.listen(this.namespaceId,i,s,r,e=>{this.factory.scheduleListenerCallback(e._data||-1,n,e)})}return this.delegate.listen(e,t,n)}}let iy=(()=>{class e extends Og{constructor(e,t,n){super(e.body,t,n)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd),Qe(__),Qe(rg))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const sy=new Ve(\"AnimationModuleType\"),ry=[{provide:__,useFactory:function(){return\"function\"==typeof Jg()?new Gg:new Bg}},{provide:sy,useValue:\"BrowserAnimations\"},{provide:Hf,useClass:Kg},{provide:rg,useFactory:function(){return new og}},{provide:Og,useClass:iy},{provide:Qa,useFactory:function(e,t,n){return new ey(e,t,n)},deps:[mf,Og,ld]}];let oy=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:ry,imports:[If]}),e})();const ay=[\"*\",[[\"mat-option\"],[\"ng-container\"]]],ly=[\"*\",\"mat-option, ng-container\"];function cy(e,t){if(1&e&&jo(0,\"mat-pseudo-checkbox\",3),2&e){const e=Jo();Po(\"state\",e.selected?\"checked\":\"unchecked\")(\"disabled\",e.disabled)}}const dy=[\"*\"],uy=new il(\"9.1.3\"),hy=new Ve(\"mat-sanity-checks\",{providedIn:\"root\",factory:function(){return!0}});let my,py=(()=>{class e{constructor(e,t,n){this._hasDoneGlobalChecks=!1,this._document=n,e._applyBodyHighContrastModeCssClasses(),this._sanityChecks=t,this._hasDoneGlobalChecks||(this._checkDoctypeIsDefined(),this._checkThemeIsPresent(),this._checkCdkVersionMatch(),this._hasDoneGlobalChecks=!0)}_getDocument(){const e=this._document||document;return\"object\"==typeof e&&e?e:null}_getWindow(){var e;const t=(null===(e=this._getDocument())||void 0===e?void 0:e.defaultView)||window;return\"object\"==typeof t&&t?t:null}_checksAreEnabled(){return Si()&&!this._isTestEnv()}_isTestEnv(){const e=this._getWindow();return e&&(e.__karma__||e.jasmine)}_checkDoctypeIsDefined(){const e=this._checksAreEnabled()&&(!0===this._sanityChecks||this._sanityChecks.doctype),t=this._getDocument();e&&t&&!t.doctype&&console.warn(\"Current document does not have a doctype. This may cause some Angular Material components not to behave as expected.\")}_checkThemeIsPresent(){const e=!this._checksAreEnabled()||!1===this._sanityChecks||!this._sanityChecks.theme,t=this._getDocument();if(e||!t||!t.body||\"function\"!=typeof getComputedStyle)return;const n=t.createElement(\"div\");n.classList.add(\"mat-theme-loaded-marker\"),t.body.appendChild(n);const i=getComputedStyle(n);i&&\"none\"!==i.display&&console.warn(\"Could not find Angular Material core theme. Most Material components may not work as expected. For more info refer to the theming guide: https://material.angular.io/guide/theming\"),t.body.removeChild(n)}_checkCdkVersionMatch(){this._checksAreEnabled()&&(!0===this._sanityChecks||this._sanityChecks.version)&&uy.full!==Kp.full&&console.warn(\"The Angular Material version (\"+uy.full+\") does not match the Angular CDK version (\"+Kp.full+\").\\nPlease ensure the versions of these two packages exactly match.\")}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)(Qe(Bp),Qe(hy,8),Qe(Nd,8))},imports:[[Jp],Jp]}),e})();function fy(e){return class extends e{constructor(...e){super(...e),this._disabled=!1}get disabled(){return this._disabled}set disabled(e){this._disabled=hp(e)}}}function _y(e,t){return class extends e{constructor(...e){super(...e),this.color=t}get color(){return this._color}set color(e){const n=e||t;n!==this._color&&(this._color&&this._elementRef.nativeElement.classList.remove(`mat-${this._color}`),n&&this._elementRef.nativeElement.classList.add(`mat-${n}`),this._color=n)}}}function gy(e){return class extends e{constructor(...e){super(...e),this._disableRipple=!1}get disableRipple(){return this._disableRipple}set disableRipple(e){this._disableRipple=hp(e)}}}function yy(e,t=0){return class extends e{constructor(...e){super(...e),this._tabIndex=t}get tabIndex(){return this.disabled?-1:this._tabIndex}set tabIndex(e){this._tabIndex=null!=e?e:t}}}function by(e){return class extends e{constructor(...e){super(...e),this.errorState=!1,this.stateChanges=new L}updateErrorState(){const e=this.errorState,t=(this.errorStateMatcher||this._defaultErrorStateMatcher).isErrorState(this.ngControl?this.ngControl.control:null,this._parentFormGroup||this._parentForm);t!==e&&(this.errorState=t,this.stateChanges.next())}}}try{my=\"undefined\"!=typeof Intl}catch(zI){my=!1}let vy=(()=>{class e{isErrorState(e,t){return!!(e&&e.invalid&&(e.touched||t&&t.submitted))}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})();const wy=new Ve(\"MAT_HAMMER_OPTIONS\");class My{constructor(e,t,n){this._renderer=e,this.element=t,this.config=n,this.state=3}fadeOut(){this._renderer.fadeOutRipple(this)}}const ky={enterDuration:450,exitDuration:400},Sy=Sp({passive:!0});class Ly{constructor(e,t,n,i){this._target=e,this._ngZone=t,this._isPointerDown=!1,this._triggerEvents=new Map,this._activeRipples=new Set,this._onMousedown=e=>{const t=$p(e),n=this._lastTouchStartEvent&&Date.now(){if(!this._target.rippleDisabled){this._lastTouchStartEvent=Date.now(),this._isPointerDown=!0;const t=e.changedTouches;for(let e=0;e{this._isPointerDown&&(this._isPointerDown=!1,this._activeRipples.forEach(e=>{!e.config.persistent&&(1===e.state||e.config.terminateOnPointerUp&&0===e.state)&&e.fadeOut()}))},i.isBrowser&&(this._containerElement=_p(n),this._triggerEvents.set(\"mousedown\",this._onMousedown).set(\"mouseup\",this._onPointerUp).set(\"mouseleave\",this._onPointerUp).set(\"touchstart\",this._onTouchStart).set(\"touchend\",this._onPointerUp).set(\"touchcancel\",this._onPointerUp))}fadeInRipple(e,t,n={}){const i=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),s=Object.assign(Object.assign({},ky),n.animation);n.centered&&(e=i.left+i.width/2,t=i.top+i.height/2);const r=n.radius||function(e,t,n){const i=Math.max(Math.abs(e-n.left),Math.abs(e-n.right)),s=Math.max(Math.abs(t-n.top),Math.abs(t-n.bottom));return Math.sqrt(i*i+s*s)}(e,t,i),o=e-i.left,a=t-i.top,l=s.enterDuration,c=document.createElement(\"div\");c.classList.add(\"mat-ripple-element\"),c.style.left=`${o-r}px`,c.style.top=`${a-r}px`,c.style.height=`${2*r}px`,c.style.width=`${2*r}px`,null!=n.color&&(c.style.backgroundColor=n.color),c.style.transitionDuration=`${l}ms`,this._containerElement.appendChild(c),window.getComputedStyle(c).getPropertyValue(\"opacity\"),c.style.transform=\"scale(1)\";const d=new My(this,c,n);return d.state=0,this._activeRipples.add(d),n.persistent||(this._mostRecentTransientRipple=d),this._runTimeoutOutsideZone(()=>{const e=d===this._mostRecentTransientRipple;d.state=1,n.persistent||e&&this._isPointerDown||d.fadeOut()},l),d}fadeOutRipple(e){const t=this._activeRipples.delete(e);if(e===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),this._activeRipples.size||(this._containerRect=null),!t)return;const n=e.element,i=Object.assign(Object.assign({},ky),e.config.animation);n.style.transitionDuration=`${i.exitDuration}ms`,n.style.opacity=\"0\",e.state=2,this._runTimeoutOutsideZone(()=>{e.state=3,n.parentNode.removeChild(n)},i.exitDuration)}fadeOutAll(){this._activeRipples.forEach(e=>e.fadeOut())}setupTriggerEvents(e){const t=_p(e);t&&t!==this._triggerElement&&(this._removeTriggerEvents(),this._ngZone.runOutsideAngular(()=>{this._triggerEvents.forEach((e,n)=>{t.addEventListener(n,e,Sy)})}),this._triggerElement=t)}_runTimeoutOutsideZone(e,t=0){this._ngZone.runOutsideAngular(()=>setTimeout(e,t))}_removeTriggerEvents(){this._triggerElement&&this._triggerEvents.forEach((e,t)=>{this._triggerElement.removeEventListener(t,e,Sy)})}}const xy=new Ve(\"mat-ripple-global-options\");let Cy=(()=>{class e{constructor(e,t,n,i,s){this._elementRef=e,this.radius=0,this._disabled=!1,this._isInitialized=!1,this._globalOptions=i||{},this._rippleRenderer=new Ly(this,t,e,n),\"NoopAnimations\"===s&&(this._globalOptions.animation={enterDuration:0,exitDuration:0})}get disabled(){return this._disabled}set disabled(e){this._disabled=e,this._setupTriggerEventsIfEnabled()}get trigger(){return this._trigger||this._elementRef.nativeElement}set trigger(e){this._trigger=e,this._setupTriggerEventsIfEnabled()}ngOnInit(){this._isInitialized=!0,this._setupTriggerEventsIfEnabled()}ngOnDestroy(){this._rippleRenderer._removeTriggerEvents()}fadeOutAll(){this._rippleRenderer.fadeOutAll()}get rippleConfig(){return{centered:this.centered,radius:this.radius,color:this.color,animation:Object.assign(Object.assign({},this._globalOptions.animation),this.animation),terminateOnPointerUp:this._globalOptions.terminateOnPointerUp}}get rippleDisabled(){return this.disabled||!!this._globalOptions.disabled}_setupTriggerEventsIfEnabled(){!this.disabled&&this._isInitialized&&this._rippleRenderer.setupTriggerEvents(this.trigger)}launch(e,t=0,n){return\"number\"==typeof e?this._rippleRenderer.fadeInRipple(e,t,Object.assign(Object.assign({},this.rippleConfig),n)):this._rippleRenderer.fadeInRipple(0,0,Object.assign(Object.assign({},this.rippleConfig),e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(ld),Eo(bp),Eo(xy,8),Eo(sy,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"mat-ripple\",\"\"],[\"\",\"matRipple\",\"\"]],hostAttrs:[1,\"mat-ripple\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"mat-ripple-unbounded\",t.unbounded)},inputs:{radius:[\"matRippleRadius\",\"radius\"],disabled:[\"matRippleDisabled\",\"disabled\"],trigger:[\"matRippleTrigger\",\"trigger\"],color:[\"matRippleColor\",\"color\"],unbounded:[\"matRippleUnbounded\",\"unbounded\"],centered:[\"matRippleCentered\",\"centered\"],animation:[\"matRippleAnimation\",\"animation\"]},exportAs:[\"matRipple\"]}),e})(),Ty=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[py,vp],py]}),e})(),Dy=(()=>{class e{constructor(e){this._animationMode=e,this.state=\"unchecked\",this.disabled=!1}}return e.\\u0275fac=function(t){return new(t||e)(Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-pseudo-checkbox\"]],hostAttrs:[1,\"mat-pseudo-checkbox\"],hostVars:8,hostBindings:function(e,t){2&e&&ua(\"mat-pseudo-checkbox-indeterminate\",\"indeterminate\"===t.state)(\"mat-pseudo-checkbox-checked\",\"checked\"===t.state)(\"mat-pseudo-checkbox-disabled\",t.disabled)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode)},inputs:{state:\"state\",disabled:\"disabled\"},decls:0,vars:0,template:function(e,t){},styles:['.mat-pseudo-checkbox{width:16px;height:16px;border:2px solid;border-radius:2px;cursor:pointer;display:inline-block;vertical-align:middle;box-sizing:border-box;position:relative;flex-shrink:0;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1),background-color 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox::after{position:absolute;opacity:0;content:\"\";border-bottom:2px solid currentColor;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox.mat-pseudo-checkbox-indeterminate{border-color:transparent}._mat-animation-noopable.mat-pseudo-checkbox{transition:none;animation:none}._mat-animation-noopable.mat-pseudo-checkbox::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{top:5px;left:1px;width:10px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{top:2.4px;left:1px;width:8px;height:3px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}\\n'],encapsulation:2,changeDetection:0}),e})(),Yy=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();class Ey{}const Oy=fy(Ey);let Iy=0,Py=(()=>{class e extends Oy{constructor(){super(...arguments),this._labelId=`mat-optgroup-label-${Iy++}`}}return e.\\u0275fac=function(t){return Ay(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-optgroup\"]],hostAttrs:[\"role\",\"group\",1,\"mat-optgroup\"],hostVars:4,hostBindings:function(e,t){2&e&&(Co(\"aria-disabled\",t.disabled.toString())(\"aria-labelledby\",t._labelId),ua(\"mat-optgroup-disabled\",t.disabled))},inputs:{disabled:\"disabled\",label:\"label\"},exportAs:[\"matOptgroup\"],features:[Ya],ngContentSelectors:ly,decls:4,vars:2,consts:[[1,\"mat-optgroup-label\",3,\"id\"]],template:function(e,t){1&e&&(Zo(ay),Ro(0,\"label\",0),Sa(1),ea(2),Ho(),ea(3,1)),2&e&&(Po(\"id\",t._labelId),ys(1),xa(\"\",t.label,\" \"))},styles:[\".mat-optgroup-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup-label[disabled]{cursor:default}[dir=rtl] .mat-optgroup-label{text-align:right}.mat-optgroup-label .mat-icon{margin-right:16px;vertical-align:middle}.mat-optgroup-label .mat-icon svg{vertical-align:top}[dir=rtl] .mat-optgroup-label .mat-icon{margin-left:16px;margin-right:0}\\n\"],encapsulation:2,changeDetection:0}),e})();const Ay=li(Py);let Ry=0;class Hy{constructor(e,t=!1){this.source=e,this.isUserInput=t}}const jy=new Ve(\"MAT_OPTION_PARENT_COMPONENT\");let Fy=(()=>{class e{constructor(e,t,n,i){this._element=e,this._changeDetectorRef=t,this._parent=n,this.group=i,this._selected=!1,this._active=!1,this._disabled=!1,this._mostRecentViewValue=\"\",this.id=`mat-option-${Ry++}`,this.onSelectionChange=new yc,this._stateChanges=new L}get multiple(){return this._parent&&this._parent.multiple}get selected(){return this._selected}get disabled(){return this.group&&this.group.disabled||this._disabled}set disabled(e){this._disabled=hp(e)}get disableRipple(){return this._parent&&this._parent.disableRipple}get active(){return this._active}get viewValue(){return(this._getHostElement().textContent||\"\").trim()}select(){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}deselect(){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}focus(e,t){const n=this._getHostElement();\"function\"==typeof n.focus&&n.focus(t)}setActiveStyles(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}setInactiveStyles(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}getLabel(){return this.viewValue}_handleKeydown(e){13!==e.keyCode&&32!==e.keyCode||qm(e)||(this._selectViaInteraction(),e.preventDefault())}_selectViaInteraction(){this.disabled||(this._selected=!this.multiple||!this._selected,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent(!0))}_getAriaSelected(){return this.selected||!this.multiple&&null}_getTabIndex(){return this.disabled?\"-1\":\"0\"}_getHostElement(){return this._element.nativeElement}ngAfterViewChecked(){if(this._selected){const e=this.viewValue;e!==this._mostRecentViewValue&&(this._mostRecentViewValue=e,this._stateChanges.next())}}ngOnDestroy(){this._stateChanges.complete()}_emitSelectionChangeEvent(e=!1){this.onSelectionChange.emit(new Hy(this,e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Qr),Eo(jy,8),Eo(Py,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-option\"]],hostAttrs:[\"role\",\"option\",1,\"mat-option\",\"mat-focus-indicator\"],hostVars:12,hostBindings:function(e,t){1&e&&Uo(\"click\",(function(){return t._selectViaInteraction()}))(\"keydown\",(function(e){return t._handleKeydown(e)})),2&e&&(Ca(\"id\",t.id),Co(\"tabindex\",t._getTabIndex())(\"aria-selected\",t._getAriaSelected())(\"aria-disabled\",t.disabled.toString()),ua(\"mat-selected\",t.selected)(\"mat-option-multiple\",t.multiple)(\"mat-active\",t.active)(\"mat-option-disabled\",t.disabled))},inputs:{id:\"id\",disabled:\"disabled\",value:\"value\"},outputs:{onSelectionChange:\"onSelectionChange\"},exportAs:[\"matOption\"],ngContentSelectors:dy,decls:4,vars:3,consts:[[\"class\",\"mat-option-pseudo-checkbox\",3,\"state\",\"disabled\",4,\"ngIf\"],[1,\"mat-option-text\"],[\"mat-ripple\",\"\",1,\"mat-option-ripple\",3,\"matRippleTrigger\",\"matRippleDisabled\"],[1,\"mat-option-pseudo-checkbox\",3,\"state\",\"disabled\"]],template:function(e,t){1&e&&(Zo(),Do(0,cy,1,2,\"mat-pseudo-checkbox\",0),Ro(1,\"span\",1),ea(2),Ho(),jo(3,\"div\",2)),2&e&&(Po(\"ngIf\",t.multiple),ys(3),Po(\"matRippleTrigger\",t._getHostElement())(\"matRippleDisabled\",t.disabled||t.disableRipple))},directives:[mu,Cy,Dy],styles:[\".mat-option{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative;cursor:pointer;outline:none;display:flex;flex-direction:row;max-width:100%;box-sizing:border-box;align-items:center;-webkit-tap-highlight-color:transparent}.mat-option[disabled]{cursor:default}[dir=rtl] .mat-option{text-align:right}.mat-option .mat-icon{margin-right:16px;vertical-align:middle}.mat-option .mat-icon svg{vertical-align:top}[dir=rtl] .mat-option .mat-icon{margin-left:16px;margin-right:0}.mat-option[aria-disabled=true]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:32px}[dir=rtl] .mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:16px;padding-right:32px}.cdk-high-contrast-active .mat-option{margin:0 1px}.cdk-high-contrast-active .mat-option.mat-active{border:solid 1px currentColor;margin:0}.mat-option-text{display:inline-block;flex-grow:1;overflow:hidden;text-overflow:ellipsis}.mat-option .mat-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.cdk-high-contrast-active .mat-option .mat-option-ripple{opacity:.5}.mat-option-pseudo-checkbox{margin-right:8px}[dir=rtl] .mat-option-pseudo-checkbox{margin-left:8px;margin-right:0}\\n\"],encapsulation:2,changeDetection:0}),e})();function Ny(e,t,n){if(n.length){let i=t.toArray(),s=n.toArray(),r=0;for(let t=0;t{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Ty,Mu,Yy]]}),e})();const Vy=new Ve(\"mat-label-global-options\"),Wy=[\"mat-button\",\"\"],Uy=[\"*\"],$y=[\"mat-button\",\"mat-flat-button\",\"mat-icon-button\",\"mat-raised-button\",\"mat-stroked-button\",\"mat-mini-fab\",\"mat-fab\"];class By{constructor(e){this._elementRef=e}}const qy=_y(fy(gy(By)));let Gy=(()=>{class e extends qy{constructor(e,t,n){super(e),this._focusMonitor=t,this._animationMode=n,this.isRoundButton=this._hasHostAttributes(\"mat-fab\",\"mat-mini-fab\"),this.isIconButton=this._hasHostAttributes(\"mat-icon-button\");for(const i of $y)this._hasHostAttributes(i)&&this._getHostElement().classList.add(i);e.nativeElement.classList.add(\"mat-button-base\"),this._focusMonitor.monitor(this._elementRef,!0),this.isRoundButton&&(this.color=\"accent\")}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}focus(e=\"program\",t){this._focusMonitor.focusVia(this._getHostElement(),e,t)}_getHostElement(){return this._elementRef.nativeElement}_isRippleDisabled(){return this.disableRipple||this.disabled}_hasHostAttributes(...e){return e.some(e=>this._getHostElement().hasAttribute(e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Up),Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"button\",\"mat-button\",\"\"],[\"button\",\"mat-raised-button\",\"\"],[\"button\",\"mat-icon-button\",\"\"],[\"button\",\"mat-fab\",\"\"],[\"button\",\"mat-mini-fab\",\"\"],[\"button\",\"mat-stroked-button\",\"\"],[\"button\",\"mat-flat-button\",\"\"]],viewQuery:function(e,t){var n;1&e&&Ec(Cy,!0),2&e&&Dc(n=Rc())&&(t.ripple=n.first)},hostAttrs:[1,\"mat-focus-indicator\"],hostVars:3,hostBindings:function(e,t){2&e&&(Co(\"disabled\",t.disabled||null),ua(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\"},exportAs:[\"matButton\"],features:[Ya],attrs:Wy,ngContentSelectors:Uy,decls:4,vars:5,consts:[[1,\"mat-button-wrapper\"],[\"matRipple\",\"\",1,\"mat-button-ripple\",3,\"matRippleDisabled\",\"matRippleCentered\",\"matRippleTrigger\"],[1,\"mat-button-focus-overlay\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"span\",0),ea(1),Ho(),jo(2,\"div\",1),jo(3,\"div\",2)),2&e&&(ys(2),ua(\"mat-button-ripple-round\",t.isRoundButton||t.isIconButton),Po(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleCentered\",t.isIconButton)(\"matRippleTrigger\",t._getHostElement()))},directives:[Cy],styles:[\".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:.04}@media(hover: none){.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-button[disabled],.mat-icon-button[disabled],.mat-stroked-button[disabled],.mat-flat-button[disabled]{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button[disabled]{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}._mat-animation-noopable.mat-raised-button{transition:none;animation:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-ripple.mat-ripple,.mat-stroked-button .mat-button-focus-overlay{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab[disabled]{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-fab{transition:none;animation:none}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab[disabled]{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-mini-fab{transition:none;animation:none}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button i,.mat-icon-button .mat-icon{line-height:24px}.mat-button-ripple.mat-ripple,.mat-button-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-ripple.mat-ripple:not(:empty){transform:translateZ(0)}.mat-button-focus-overlay{opacity:0;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1),background-color 200ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}.cdk-high-contrast-active .mat-button-focus-overlay{background-color:#fff}.cdk-high-contrast-black-on-white .mat-button-focus-overlay{background-color:#000}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}\\n\"],encapsulation:2,changeDetection:0}),e})(),Jy=(()=>{class e extends Gy{constructor(e,t,n){super(t,e,n)}_haltDisabledEvents(e){this.disabled&&(e.preventDefault(),e.stopImmediatePropagation())}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Up),Eo(Ka),Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"a\",\"mat-button\",\"\"],[\"a\",\"mat-raised-button\",\"\"],[\"a\",\"mat-icon-button\",\"\"],[\"a\",\"mat-fab\",\"\"],[\"a\",\"mat-mini-fab\",\"\"],[\"a\",\"mat-stroked-button\",\"\"],[\"a\",\"mat-flat-button\",\"\"]],hostAttrs:[1,\"mat-focus-indicator\"],hostVars:5,hostBindings:function(e,t){1&e&&Uo(\"click\",(function(e){return t._haltDisabledEvents(e)})),2&e&&(Co(\"tabindex\",t.disabled?-1:t.tabIndex||0)(\"disabled\",t.disabled||null)(\"aria-disabled\",t.disabled.toString()),ua(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\"},exportAs:[\"matButton\",\"matAnchor\"],features:[Ya],attrs:Wy,ngContentSelectors:Uy,decls:4,vars:5,consts:[[1,\"mat-button-wrapper\"],[\"matRipple\",\"\",1,\"mat-button-ripple\",3,\"matRippleDisabled\",\"matRippleCentered\",\"matRippleTrigger\"],[1,\"mat-button-focus-overlay\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"span\",0),ea(1),Ho(),jo(2,\"div\",1),jo(3,\"div\",2)),2&e&&(ys(2),ua(\"mat-button-ripple-round\",t.isRoundButton||t.isIconButton),Po(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleCentered\",t.isIconButton)(\"matRippleTrigger\",t._getHostElement()))},directives:[Cy],styles:[\".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:.04}@media(hover: none){.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-button[disabled],.mat-icon-button[disabled],.mat-stroked-button[disabled],.mat-flat-button[disabled]{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button[disabled]{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}._mat-animation-noopable.mat-raised-button{transition:none;animation:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-ripple.mat-ripple,.mat-stroked-button .mat-button-focus-overlay{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab[disabled]{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-fab{transition:none;animation:none}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab[disabled]{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-mini-fab{transition:none;animation:none}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button i,.mat-icon-button .mat-icon{line-height:24px}.mat-button-ripple.mat-ripple,.mat-button-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-ripple.mat-ripple:not(:empty){transform:translateZ(0)}.mat-button-focus-overlay{opacity:0;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1),background-color 200ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}.cdk-high-contrast-active .mat-button-focus-overlay{background-color:#fff}.cdk-high-contrast-black-on-white .mat-button-focus-overlay{background-color:#000}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}\\n\"],encapsulation:2,changeDetection:0}),e})(),Ky=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Ty,py],py]}),e})();const Zy=[\"*\",[[\"mat-card-footer\"]]],Qy=[\"*\",\"mat-card-footer\"],Xy=[[[\"\",\"mat-card-avatar\",\"\"],[\"\",\"matCardAvatar\",\"\"]],[[\"mat-card-title\"],[\"mat-card-subtitle\"],[\"\",\"mat-card-title\",\"\"],[\"\",\"mat-card-subtitle\",\"\"],[\"\",\"matCardTitle\",\"\"],[\"\",\"matCardSubtitle\",\"\"]],\"*\"],eb=[\"[mat-card-avatar], [matCardAvatar]\",\"mat-card-title, mat-card-subtitle,\\n [mat-card-title], [mat-card-subtitle],\\n [matCardTitle], [matCardSubtitle]\",\"*\"];let tb=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-card-content\"],[\"\",\"mat-card-content\",\"\"],[\"\",\"matCardContent\",\"\"]],hostAttrs:[1,\"mat-card-content\"]}),e})(),nb=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-card-title\"],[\"\",\"mat-card-title\",\"\"],[\"\",\"matCardTitle\",\"\"]],hostAttrs:[1,\"mat-card-title\"]}),e})(),ib=(()=>{class e{constructor(){this.align=\"start\"}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-card-actions\"]],hostAttrs:[1,\"mat-card-actions\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"mat-card-actions-align-end\",\"end\"===t.align)},inputs:{align:\"align\"},exportAs:[\"matCardActions\"]}),e})(),sb=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"mat-card-image\",\"\"],[\"\",\"matCardImage\",\"\"]],hostAttrs:[1,\"mat-card-image\"]}),e})(),rb=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"mat-card-avatar\",\"\"],[\"\",\"matCardAvatar\",\"\"]],hostAttrs:[1,\"mat-card-avatar\"]}),e})(),ob=(()=>{class e{constructor(e){this._animationMode=e}}return e.\\u0275fac=function(t){return new(t||e)(Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-card\"]],hostAttrs:[1,\"mat-card\",\"mat-focus-indicator\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode)},exportAs:[\"matCard\"],ngContentSelectors:Qy,decls:2,vars:0,template:function(e,t){1&e&&(Zo(Zy),ea(0),ea(1,1))},styles:[\".mat-card{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);display:block;position:relative;padding:16px;border-radius:4px}._mat-animation-noopable.mat-card{transition:none;animation:none}.mat-card .mat-divider-horizontal{position:absolute;left:0;width:100%}[dir=rtl] .mat-card .mat-divider-horizontal{left:auto;right:0}.mat-card .mat-divider-horizontal.mat-divider-inset{position:static;margin:0}[dir=rtl] .mat-card .mat-divider-horizontal.mat-divider-inset{margin-right:0}.cdk-high-contrast-active .mat-card{outline:solid 1px}.mat-card-actions,.mat-card-subtitle,.mat-card-content{display:block;margin-bottom:16px}.mat-card-title{display:block;margin-bottom:8px}.mat-card-actions{margin-left:-8px;margin-right:-8px;padding:8px 0}.mat-card-actions-align-end{display:flex;justify-content:flex-end}.mat-card-image{width:calc(100% + 32px);margin:0 -16px 16px -16px}.mat-card-footer{display:block;margin:0 -16px -16px -16px}.mat-card-actions .mat-button,.mat-card-actions .mat-raised-button,.mat-card-actions .mat-stroked-button{margin:0 8px}.mat-card-header{display:flex;flex-direction:row}.mat-card-header .mat-card-title{margin-bottom:12px}.mat-card-header-text{margin:0 16px}.mat-card-avatar{height:40px;width:40px;border-radius:50%;flex-shrink:0;object-fit:cover}.mat-card-title-group{display:flex;justify-content:space-between}.mat-card-sm-image{width:80px;height:80px}.mat-card-md-image{width:112px;height:112px}.mat-card-lg-image{width:152px;height:152px}.mat-card-xl-image{width:240px;height:240px;margin:-8px}.mat-card-title-group>.mat-card-xl-image{margin:-8px 0 8px}@media(max-width: 599px){.mat-card-title-group{margin:0}.mat-card-xl-image{margin-left:0;margin-right:0}}.mat-card>:first-child,.mat-card-content>:first-child{margin-top:0}.mat-card>:last-child:not(.mat-card-footer),.mat-card-content>:last-child:not(.mat-card-footer){margin-bottom:0}.mat-card-image:first-child{margin-top:-16px;border-top-left-radius:inherit;border-top-right-radius:inherit}.mat-card>.mat-card-actions:last-child{margin-bottom:-8px;padding-bottom:0}.mat-card-actions .mat-button:first-child,.mat-card-actions .mat-raised-button:first-child,.mat-card-actions .mat-stroked-button:first-child{margin-left:0;margin-right:0}.mat-card-title:not(:first-child),.mat-card-subtitle:not(:first-child){margin-top:-4px}.mat-card-header .mat-card-subtitle:not(:first-child){margin-top:-8px}.mat-card>.mat-card-xl-image:first-child{margin-top:-8px}.mat-card>.mat-card-xl-image:last-child{margin-bottom:-8px}\\n\"],encapsulation:2,changeDetection:0}),e})(),ab=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-card-header\"]],hostAttrs:[1,\"mat-card-header\"],ngContentSelectors:eb,decls:4,vars:0,consts:[[1,\"mat-card-header-text\"]],template:function(e,t){1&e&&(Zo(Xy),ea(0),Ro(1,\"div\",0),ea(2,1),Ho(),ea(3,2))},encapsulation:2,changeDetection:0}),e})(),lb=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[py],py]}),e})();const cb=[\"input\"],db=function(){return{enterDuration:150}},ub=[\"*\"],hb=new Ve(\"mat-checkbox-default-options\",{providedIn:\"root\",factory:function(){return{color:\"accent\",clickAction:\"check-indeterminate\"}}}),mb=new Ve(\"mat-checkbox-click-action\");let pb=0;const fb={provide:uh,useExisting:Ce(()=>bb),multi:!0};class _b{}class gb{constructor(e){this._elementRef=e}}const yb=yy(_y(gy(fy(gb))));let bb=(()=>{class e extends yb{constructor(e,t,n,i,s,r,o,a){super(e),this._changeDetectorRef=t,this._focusMonitor=n,this._ngZone=i,this._clickAction=r,this._animationMode=o,this._options=a,this.ariaLabel=\"\",this.ariaLabelledby=null,this._uniqueId=`mat-checkbox-${++pb}`,this.id=this._uniqueId,this.labelPosition=\"after\",this.name=null,this.change=new yc,this.indeterminateChange=new yc,this._onTouched=()=>{},this._currentAnimationClass=\"\",this._currentCheckState=0,this._controlValueAccessorChangeFn=()=>{},this._checked=!1,this._disabled=!1,this._indeterminate=!1,this._options=this._options||{},this._options.color&&(this.color=this._options.color),this.tabIndex=parseInt(s)||0,this._focusMonitor.monitor(e,!0).subscribe(e=>{e||Promise.resolve().then(()=>{this._onTouched(),t.markForCheck()})}),this._clickAction=this._clickAction||this._options.clickAction}get inputId(){return`${this.id||this._uniqueId}-input`}get required(){return this._required}set required(e){this._required=hp(e)}ngAfterViewInit(){this._syncIndeterminate(this._indeterminate)}ngAfterViewChecked(){}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}get checked(){return this._checked}set checked(e){e!=this.checked&&(this._checked=e,this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled}set disabled(e){const t=hp(e);t!==this.disabled&&(this._disabled=t,this._changeDetectorRef.markForCheck())}get indeterminate(){return this._indeterminate}set indeterminate(e){const t=e!=this._indeterminate;this._indeterminate=hp(e),t&&(this._transitionCheckState(this._indeterminate?3:this.checked?1:2),this.indeterminateChange.emit(this._indeterminate)),this._syncIndeterminate(this._indeterminate)}_isRippleDisabled(){return this.disableRipple||this.disabled}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}writeValue(e){this.checked=!!e}registerOnChange(e){this._controlValueAccessorChangeFn=e}registerOnTouched(e){this._onTouched=e}setDisabledState(e){this.disabled=e}_getAriaChecked(){return this.checked?\"true\":this.indeterminate?\"mixed\":\"false\"}_transitionCheckState(e){let t=this._currentCheckState,n=this._elementRef.nativeElement;if(t!==e&&(this._currentAnimationClass.length>0&&n.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(t,e),this._currentCheckState=e,this._currentAnimationClass.length>0)){n.classList.add(this._currentAnimationClass);const e=this._currentAnimationClass;this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{n.classList.remove(e)},1e3)})}}_emitChangeEvent(){const e=new _b;e.source=this,e.checked=this.checked,this._controlValueAccessorChangeFn(this.checked),this.change.emit(e)}toggle(){this.checked=!this.checked}_onInputClick(e){e.stopPropagation(),this.disabled||\"noop\"===this._clickAction?this.disabled||\"noop\"!==this._clickAction||(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&\"check\"!==this._clickAction&&Promise.resolve().then(()=>{this._indeterminate=!1,this.indeterminateChange.emit(this._indeterminate)}),this.toggle(),this._transitionCheckState(this._checked?1:2),this._emitChangeEvent())}focus(e=\"keyboard\",t){this._focusMonitor.focusVia(this._inputElement,e,t)}_onInteractionEvent(e){e.stopPropagation()}_getAnimationClassForCheckStateTransition(e,t){if(\"NoopAnimations\"===this._animationMode)return\"\";let n=\"\";switch(e){case 0:if(1===t)n=\"unchecked-checked\";else{if(3!=t)return\"\";n=\"unchecked-indeterminate\"}break;case 2:n=1===t?\"unchecked-checked\":\"unchecked-indeterminate\";break;case 1:n=2===t?\"checked-unchecked\":\"checked-indeterminate\";break;case 3:n=1===t?\"indeterminate-checked\":\"indeterminate-unchecked\"}return`mat-checkbox-anim-${n}`}_syncIndeterminate(e){const t=this._inputElement;t&&(t.nativeElement.indeterminate=e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Qr),Eo(Up),Eo(ld),Oo(\"tabindex\"),Eo(mb,8),Eo(sy,8),Eo(hb,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-checkbox\"]],viewQuery:function(e,t){var n;1&e&&(Ec(cb,!0),Ec(Cy,!0)),2&e&&(Dc(n=Rc())&&(t._inputElement=n.first),Dc(n=Rc())&&(t.ripple=n.first))},hostAttrs:[1,\"mat-checkbox\"],hostVars:12,hostBindings:function(e,t){2&e&&(Ca(\"id\",t.id),Co(\"tabindex\",null),ua(\"mat-checkbox-indeterminate\",t.indeterminate)(\"mat-checkbox-checked\",t.checked)(\"mat-checkbox-disabled\",t.disabled)(\"mat-checkbox-label-before\",\"before\"==t.labelPosition)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],id:\"id\",labelPosition:\"labelPosition\",name:\"name\",required:\"required\",checked:\"checked\",disabled:\"disabled\",indeterminate:\"indeterminate\",value:\"value\"},outputs:{change:\"change\",indeterminateChange:\"indeterminateChange\"},exportAs:[\"matCheckbox\"],features:[Ba([fb]),Ya],ngContentSelectors:ub,decls:17,vars:19,consts:[[1,\"mat-checkbox-layout\"],[\"label\",\"\"],[1,\"mat-checkbox-inner-container\"],[\"type\",\"checkbox\",1,\"mat-checkbox-input\",\"cdk-visually-hidden\",3,\"id\",\"required\",\"checked\",\"disabled\",\"tabIndex\",\"change\",\"click\"],[\"input\",\"\"],[\"matRipple\",\"\",1,\"mat-checkbox-ripple\",\"mat-focus-indicator\",3,\"matRippleTrigger\",\"matRippleDisabled\",\"matRippleRadius\",\"matRippleCentered\",\"matRippleAnimation\"],[1,\"mat-ripple-element\",\"mat-checkbox-persistent-ripple\"],[1,\"mat-checkbox-frame\"],[1,\"mat-checkbox-background\"],[\"version\",\"1.1\",\"focusable\",\"false\",\"viewBox\",\"0 0 24 24\",0,\"xml\",\"space\",\"preserve\",1,\"mat-checkbox-checkmark\"],[\"fill\",\"none\",\"stroke\",\"white\",\"d\",\"M4.1,12.7 9,17.6 20.3,6.3\",1,\"mat-checkbox-checkmark-path\"],[1,\"mat-checkbox-mixedmark\"],[1,\"mat-checkbox-label\",3,\"cdkObserveContent\"],[\"checkboxLabel\",\"\"],[2,\"display\",\"none\"]],template:function(e,t){if(1&e&&(Zo(),Ro(0,\"label\",0,1),Ro(2,\"div\",2),Ro(3,\"input\",3,4),Uo(\"change\",(function(e){return t._onInteractionEvent(e)}))(\"click\",(function(e){return t._onInputClick(e)})),Ho(),Ro(5,\"div\",5),jo(6,\"div\",6),Ho(),jo(7,\"div\",7),Ro(8,\"div\",8),kn(),Ro(9,\"svg\",9),jo(10,\"path\",10),Ho(),Sn(),jo(11,\"div\",11),Ho(),Ho(),Ro(12,\"span\",12,13),Uo(\"cdkObserveContent\",(function(){return t._onLabelTextChange()})),Ro(14,\"span\",14),Sa(15,\"\\xa0\"),Ho(),ea(16),Ho(),Ho()),2&e){const e=Yo(1),n=Yo(13);Co(\"for\",t.inputId),ys(2),ua(\"mat-checkbox-inner-container-no-side-margin\",!n.textContent||!n.textContent.trim()),ys(1),Po(\"id\",t.inputId)(\"required\",t.required)(\"checked\",t.checked)(\"disabled\",t.disabled)(\"tabIndex\",t.tabIndex),Co(\"value\",t.value)(\"name\",t.name)(\"aria-label\",t.ariaLabel||null)(\"aria-labelledby\",t.ariaLabelledby)(\"aria-checked\",t._getAriaChecked()),ys(2),Po(\"matRippleTrigger\",e)(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleRadius\",20)(\"matRippleCentered\",!0)(\"matRippleAnimation\",gc(18,db))}},directives:[Cy,Yp],styles:[\"@keyframes mat-checkbox-fade-in-background{0%{opacity:0}50%{opacity:1}}@keyframes mat-checkbox-fade-out-background{0%,50%{opacity:1}100%{opacity:0}}@keyframes mat-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:22.910259}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1)}100%{stroke-dashoffset:0}}@keyframes mat-checkbox-unchecked-indeterminate-mixedmark{0%,68.2%{transform:scaleX(0)}68.2%{animation-timing-function:cubic-bezier(0, 0, 0, 1)}100%{transform:scaleX(1)}}@keyframes mat-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);stroke-dashoffset:0}to{stroke-dashoffset:-22.910259}}@keyframes mat-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(45deg)}}@keyframes mat-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:0;transform:rotate(45deg)}to{opacity:1;transform:rotate(360deg)}}@keyframes mat-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:0;transform:rotate(-45deg)}to{opacity:1;transform:rotate(0deg)}}@keyframes mat-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(315deg)}}@keyframes mat-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;opacity:1;transform:scaleX(1)}32.8%,100%{opacity:0;transform:scaleX(0)}}.mat-checkbox-background,.mat-checkbox-frame{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:2px;box-sizing:border-box;pointer-events:none}.mat-checkbox{transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);cursor:pointer;-webkit-tap-highlight-color:transparent}._mat-animation-noopable.mat-checkbox{transition:none;animation:none}.mat-checkbox .mat-ripple-element:not(.mat-checkbox-persistent-ripple){opacity:.16}.mat-checkbox-layout{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:inherit;align-items:baseline;vertical-align:middle;display:inline-flex;white-space:nowrap}.mat-checkbox-label{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.mat-checkbox-inner-container{display:inline-block;height:16px;line-height:0;margin:auto;margin-right:8px;order:0;position:relative;vertical-align:middle;white-space:nowrap;width:16px;flex-shrink:0}[dir=rtl] .mat-checkbox-inner-container{margin-left:8px;margin-right:auto}.mat-checkbox-inner-container-no-side-margin{margin-left:0;margin-right:0}.mat-checkbox-frame{background-color:transparent;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1);border-width:2px;border-style:solid}._mat-animation-noopable .mat-checkbox-frame{transition:none}.mat-checkbox.cdk-keyboard-focused .cdk-high-contrast-active .mat-checkbox-frame{border-style:dotted}.mat-checkbox-background{align-items:center;display:inline-flex;justify-content:center;transition:background-color 90ms cubic-bezier(0, 0, 0.2, 0.1),opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}._mat-animation-noopable .mat-checkbox-background{transition:none}.cdk-high-contrast-active .mat-checkbox .mat-checkbox-background{background:none}.mat-checkbox-persistent-ripple{width:100%;height:100%;transform:none}.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:.04}.mat-checkbox.cdk-keyboard-focused .mat-checkbox-persistent-ripple{opacity:.12}.mat-checkbox-persistent-ripple,.mat-checkbox.mat-checkbox-disabled .mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:0}@media(hover: none){.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{display:none}}.mat-checkbox-checkmark{top:0;left:0;right:0;bottom:0;position:absolute;width:100%}.mat-checkbox-checkmark-path{stroke-dashoffset:22.910259;stroke-dasharray:22.910259;stroke-width:2.1333333333px}.cdk-high-contrast-black-on-white .mat-checkbox-checkmark-path{stroke:#000 !important}.mat-checkbox-mixedmark{width:calc(100% - 6px);height:2px;opacity:0;transform:scaleX(0) rotate(0deg);border-radius:2px}.cdk-high-contrast-active .mat-checkbox-mixedmark{height:0;border-top:solid 2px;margin-top:2px}.mat-checkbox-label-before .mat-checkbox-inner-container{order:1;margin-left:8px;margin-right:auto}[dir=rtl] .mat-checkbox-label-before .mat-checkbox-inner-container{margin-left:auto;margin-right:8px}.mat-checkbox-checked .mat-checkbox-checkmark{opacity:1}.mat-checkbox-checked .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-checked .mat-checkbox-mixedmark{transform:scaleX(1) rotate(-45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark{opacity:0;transform:rotate(45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-indeterminate .mat-checkbox-mixedmark{opacity:1;transform:scaleX(1) rotate(0deg)}.mat-checkbox-unchecked .mat-checkbox-background{background-color:transparent}.mat-checkbox-disabled{cursor:default}.cdk-high-contrast-active .mat-checkbox-disabled{opacity:.5}.mat-checkbox-anim-unchecked-checked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-checked .mat-checkbox-checkmark-path{animation:180ms linear 0ms mat-checkbox-unchecked-checked-checkmark-path}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-unchecked-indeterminate-mixedmark}.mat-checkbox-anim-checked-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-checked-unchecked .mat-checkbox-checkmark-path{animation:90ms linear 0ms mat-checkbox-checked-unchecked-checkmark-path}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-checkmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-checkmark}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-mixedmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-checkmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-checkmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-mixedmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-mixedmark}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-mixedmark{animation:300ms linear 0ms mat-checkbox-indeterminate-unchecked-mixedmark}.mat-checkbox-input{bottom:0;left:50%}.mat-checkbox .mat-checkbox-ripple{position:absolute;left:calc(50% - 20px);top:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}\\n\"],encapsulation:2,changeDetection:0}),e})(),vb=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),wb=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Ty,py,Ep,vb],py,vb]}),e})();function Mb(e,t,n,s){return i(n)&&(s=n,n=void 0),s?Mb(e,t,n).pipe(H(e=>l(e)?s(...e):s(e))):new v(i=>{!function e(t,n,i,s,r){let o;if(function(e){return e&&\"function\"==typeof e.addEventListener&&\"function\"==typeof e.removeEventListener}(t)){const e=t;t.addEventListener(n,i,r),o=()=>e.removeEventListener(n,i,r)}else if(function(e){return e&&\"function\"==typeof e.on&&\"function\"==typeof e.off}(t)){const e=t;t.on(n,i),o=()=>e.off(n,i)}else if(function(e){return e&&\"function\"==typeof e.addListener&&\"function\"==typeof e.removeListener}(t)){const e=t;t.addListener(n,i),o=()=>e.removeListener(n,i)}else{if(!t||!t.length)throw new TypeError(\"Invalid event target\");for(let o=0,a=t.length;o1?Array.prototype.slice.call(arguments):e)}),i,n)})}let kb=1;const Sb=(()=>Promise.resolve())(),Lb={};function xb(e){return e in Lb&&(delete Lb[e],!0)}const Cb={setImmediate(e){const t=kb++;return Lb[t]=!0,Sb.then(()=>xb(t)&&e()),t},clearImmediate(e){xb(e)}};class Tb extends Qm{constructor(e,t){super(e,t),this.scheduler=e,this.work=t}requestAsyncId(e,t,n=0){return null!==n&&n>0?super.requestAsyncId(e,t,n):(e.actions.push(this),e.scheduled||(e.scheduled=Cb.setImmediate(e.flush.bind(e,null))))}recycleAsyncId(e,t,n=0){if(null!==n&&n>0||null===n&&this.delay>0)return super.recycleAsyncId(e,t,n);0===e.actions.length&&(Cb.clearImmediate(t),e.scheduled=void 0)}}class Db extends ep{flush(e){this.active=!0,this.scheduled=void 0;const{actions:t}=this;let n,i=-1,s=t.length;e=e||t.shift();do{if(n=e.execute(e.state,e.delay))break}while(++in.lift(new Ob(e,t))}class Ob{constructor(e,t){this.compare=e,this.keySelector=t}call(e,t){return t.subscribe(new Ib(e,this.compare,this.keySelector))}}class Ib extends p{constructor(e,t,n){super(e),this.keySelector=n,this.hasKey=!1,\"function\"==typeof t&&(this.compare=t)}compare(e,t){return e===t}_next(e){let t;try{const{keySelector:n}=this;t=n?n(e):e}catch(i){return this.destination.error(i)}let n=!1;if(this.hasKey)try{const{compare:e}=this;n=e(this.key,t)}catch(i){return this.destination.error(i)}else this.hasKey=!0;n||(this.key=t,this.destination.next(e))}}class Pb{constructor(e){this.durationSelector=e}call(e,t){return t.subscribe(new Ab(e,this.durationSelector))}}class Ab extends R{constructor(e,t){super(e),this.durationSelector=t,this.hasValue=!1}_next(e){if(this.value=e,this.hasValue=!0,!this.throttled){let n;try{const{durationSelector:t}=this;n=t(e)}catch(t){return this.destination.error(t)}const i=A(this,n);!i||i.closed?this.clearThrottle():this.add(this.throttled=i)}}clearThrottle(){const{value:e,hasValue:t,throttled:n}=this;n&&(this.remove(n),this.throttled=null,n.unsubscribe()),t&&(this.value=null,this.hasValue=!1,this.destination.next(e))}notifyNext(e,t,n,i){this.clearThrottle()}notifyComplete(){this.clearThrottle()}}function Rb(e){return!l(e)&&e-parseFloat(e)+1>=0}function Hb(e=0,t,n){let i=-1;return Rb(t)?i=Number(t)<1?1:Number(t):C(t)&&(n=t),C(n)||(n=tp),new v(t=>{const s=Rb(e)?e:+e-n.now();return n.schedule(jb,s,{index:0,period:i,subscriber:t})})}function jb(e){const{index:t,period:n,subscriber:i}=e;if(i.next(t),!i.closed){if(-1===n)return i.complete();e.index=t+1,this.schedule(e,n)}}function Fb(e,t=tp){return n=()=>Hb(e,t),function(e){return e.lift(new Pb(n))};var n}function Nb(e){return t=>t.lift(new zb(e))}class zb{constructor(e){this.notifier=e}call(e,t){const n=new Vb(e),i=A(n,this.notifier);return i&&!n.seenValue?(n.add(i),t.subscribe(n)):n}}class Vb extends R{constructor(e){super(e),this.seenValue=!1}notifyNext(e,t,n,i,s){this.seenValue=!0,this.complete()}notifyComplete(){}}function Wb(e,t){return\"function\"==typeof t?n=>n.pipe(Wb((n,i)=>z(e(n,i)).pipe(H((e,s)=>t(n,e,i,s))))):t=>t.lift(new Ub(e))}class Ub{constructor(e){this.project=e}call(e,t){return t.subscribe(new $b(e,this.project))}}class $b extends R{constructor(e,t){super(e),this.project=t,this.index=0}_next(e){let t;const n=this.index++;try{t=this.project(e,n)}catch(i){return void this.destination.error(i)}this._innerSub(t,e,n)}_innerSub(e,t,n){const i=this.innerSubscription;i&&i.unsubscribe();const s=new T(this,t,n),r=this.destination;r.add(s),this.innerSubscription=A(this,e,void 0,void 0,s),this.innerSubscription!==s&&r.add(this.innerSubscription)}_complete(){const{innerSubscription:e}=this;e&&!e.closed||super._complete(),this.unsubscribe()}_unsubscribe(){this.innerSubscription=null}notifyComplete(e){this.destination.remove(e),this.innerSubscription=null,this.isStopped&&super._complete()}notifyNext(e,t,n,i,s){this.destination.next(t)}}class Bb extends Qm{constructor(e,t){super(e,t),this.scheduler=e,this.work=t}schedule(e,t=0){return t>0?super.schedule(e,t):(this.delay=t,this.state=e,this.scheduler.flush(this),this)}execute(e,t){return t>0||this.closed?super.execute(e,t):this._execute(e,t)}requestAsyncId(e,t,n=0){return null!==n&&n>0||null===n&&this.delay>0?super.requestAsyncId(e,t,n):e.flush(this)}}class qb extends ep{}const Gb=new qb(Bb);function Jb(e,t){return new v(t?n=>t.schedule(Kb,0,{error:e,subscriber:n}):t=>t.error(e))}function Kb({error:e,subscriber:t}){t.error(e)}let Zb=(()=>{class e{constructor(e,t,n){this.kind=e,this.value=t,this.error=n,this.hasValue=\"N\"===e}observe(e){switch(this.kind){case\"N\":return e.next&&e.next(this.value);case\"E\":return e.error&&e.error(this.error);case\"C\":return e.complete&&e.complete()}}do(e,t,n){switch(this.kind){case\"N\":return e&&e(this.value);case\"E\":return t&&t(this.error);case\"C\":return n&&n()}}accept(e,t,n){return e&&\"function\"==typeof e.next?this.observe(e):this.do(e,t,n)}toObservable(){switch(this.kind){case\"N\":return xu(this.value);case\"E\":return Jb(this.error);case\"C\":return lp()}throw new Error(\"unexpected notification kind value\")}static createNext(t){return void 0!==t?new e(\"N\",t):e.undefinedValueNotification}static createError(t){return new e(\"E\",void 0,t)}static createComplete(){return e.completeNotification}}return e.completeNotification=new e(\"C\"),e.undefinedValueNotification=new e(\"N\",void 0),e})();class Qb extends p{constructor(e,t,n=0){super(e),this.scheduler=t,this.delay=n}static dispatch(e){const{notification:t,destination:n}=e;t.observe(n),this.unsubscribe()}scheduleMessage(e){this.destination.add(this.scheduler.schedule(Qb.dispatch,this.delay,new Xb(e,this.destination)))}_next(e){this.scheduleMessage(Zb.createNext(e))}_error(e){this.scheduleMessage(Zb.createError(e)),this.unsubscribe()}_complete(){this.scheduleMessage(Zb.createComplete()),this.unsubscribe()}}class Xb{constructor(e,t){this.notification=e,this.destination=t}}class ev extends L{constructor(e=Number.POSITIVE_INFINITY,t=Number.POSITIVE_INFINITY,n){super(),this.scheduler=n,this._events=[],this._infiniteTimeWindow=!1,this._bufferSize=e<1?1:e,this._windowTime=t<1?1:t,t===Number.POSITIVE_INFINITY?(this._infiniteTimeWindow=!0,this.next=this.nextInfiniteTimeWindow):this.next=this.nextTimeWindow}nextInfiniteTimeWindow(e){const t=this._events;t.push(e),t.length>this._bufferSize&&t.shift(),super.next(e)}nextTimeWindow(e){this._events.push(new tv(this._getNow(),e)),this._trimBufferThenGetEvents(),super.next(e)}_subscribe(e){const t=this._infiniteTimeWindow,n=t?this._events:this._trimBufferThenGetEvents(),i=this.scheduler,s=n.length;let r;if(this.closed)throw new M;if(this.isStopped||this.hasError?r=u.EMPTY:(this.observers.push(e),r=new k(this,e)),i&&e.add(e=new Qb(e,i)),t)for(let o=0;ot&&(r=Math.max(r,s-t)),r>0&&i.splice(0,r),i}}class tv{constructor(e,t){this.time=e,this.value=t}}function nv(e,t,n){let i;return i=e&&\"object\"==typeof e?e:{bufferSize:e,windowTime:t,refCount:!1,scheduler:n},e=>e.lift(function({bufferSize:e=Number.POSITIVE_INFINITY,windowTime:t=Number.POSITIVE_INFINITY,refCount:n,scheduler:i}){let s,r,o=0,a=!1,l=!1;return function(c){o++,s&&!a||(a=!1,s=new ev(e,t,i),r=c.subscribe({next(e){s.next(e)},error(e){a=!0,s.error(e)},complete(){l=!0,r=void 0,s.complete()}}));const d=s.subscribe(this);this.add(()=>{o--,d.unsubscribe(),r&&!l&&n&&0===o&&(r.unsubscribe(),r=void 0,s=void 0)})}}(i))}class iv{constructor(e=!1,t,n=!0){this._multiple=e,this._emitChanges=n,this._selection=new Set,this._deselectedToEmit=[],this._selectedToEmit=[],this.changed=new L,t&&t.length&&(e?t.forEach(e=>this._markSelected(e)):this._markSelected(t[0]),this._selectedToEmit.length=0)}get selected(){return this._selected||(this._selected=Array.from(this._selection.values())),this._selected}select(...e){this._verifyValueAssignment(e),e.forEach(e=>this._markSelected(e)),this._emitChangeEvent()}deselect(...e){this._verifyValueAssignment(e),e.forEach(e=>this._unmarkSelected(e)),this._emitChangeEvent()}toggle(e){this.isSelected(e)?this.deselect(e):this.select(e)}clear(){this._unmarkAll(),this._emitChangeEvent()}isSelected(e){return this._selection.has(e)}isEmpty(){return 0===this._selection.size}hasValue(){return!this.isEmpty()}sort(e){this._multiple&&this.selected&&this._selected.sort(e)}isMultipleSelection(){return this._multiple}_emitChangeEvent(){this._selected=null,(this._selectedToEmit.length||this._deselectedToEmit.length)&&(this.changed.next({source:this,added:this._selectedToEmit,removed:this._deselectedToEmit}),this._deselectedToEmit=[],this._selectedToEmit=[])}_markSelected(e){this.isSelected(e)||(this._multiple||this._unmarkAll(),this._selection.add(e),this._emitChanges&&this._selectedToEmit.push(e))}_unmarkSelected(e){this.isSelected(e)&&(this._selection.delete(e),this._emitChanges&&this._deselectedToEmit.push(e))}_unmarkAll(){this.isEmpty()||this._selection.forEach(e=>this._unmarkSelected(e))}_verifyValueAssignment(e){if(e.length>1&&!this._multiple)throw Error(\"Cannot pass multiple values into SelectionModel with single-value mode.\")}}let sv=(()=>{class e{constructor(e,t){this._ngZone=e,this._platform=t,this._scrolled=new L,this._globalSubscription=null,this._scrolledCount=0,this.scrollContainers=new Map}register(e){this.scrollContainers.has(e)||this.scrollContainers.set(e,e.elementScrolled().subscribe(()=>this._scrolled.next(e)))}deregister(e){const t=this.scrollContainers.get(e);t&&(t.unsubscribe(),this.scrollContainers.delete(e))}scrolled(e=20){return this._platform.isBrowser?new v(t=>{this._globalSubscription||this._addGlobalListener();const n=e>0?this._scrolled.pipe(Fb(e)).subscribe(t):this._scrolled.subscribe(t);return this._scrolledCount++,()=>{n.unsubscribe(),this._scrolledCount--,this._scrolledCount||this._removeGlobalListener()}}):xu()}ngOnDestroy(){this._removeGlobalListener(),this.scrollContainers.forEach((e,t)=>this.deregister(t)),this._scrolled.complete()}ancestorScrolled(e,t){const n=this.getAncestorScrollContainers(e);return this.scrolled(t).pipe(Tu(e=>!e||n.indexOf(e)>-1))}getAncestorScrollContainers(e){const t=[];return this.scrollContainers.forEach((n,i)=>{this._scrollableContainsElement(i,e)&&t.push(i)}),t}_scrollableContainsElement(e,t){let n=t.nativeElement,i=e.getElementRef().nativeElement;do{if(n==i)return!0}while(n=n.parentElement);return!1}_addGlobalListener(){this._globalSubscription=this._ngZone.runOutsideAngular(()=>Mb(window.document,\"scroll\").subscribe(()=>this._scrolled.next()))}_removeGlobalListener(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ld),Qe(bp))},e.\\u0275prov=pe({factory:function(){return new e(Qe(ld),Qe(bp))},token:e,providedIn:\"root\"}),e})(),rv=(()=>{class e{constructor(e,t,n,i){this.elementRef=e,this.scrollDispatcher=t,this.ngZone=n,this.dir=i,this._destroyed=new L,this._elementScrolled=new v(e=>this.ngZone.runOutsideAngular(()=>Mb(this.elementRef.nativeElement,\"scroll\").pipe(Nb(this._destroyed)).subscribe(e)))}ngOnInit(){this.scrollDispatcher.register(this)}ngOnDestroy(){this.scrollDispatcher.deregister(this),this._destroyed.next(),this._destroyed.complete()}elementScrolled(){return this._elementScrolled}getElementRef(){return this.elementRef}scrollTo(e){const t=this.elementRef.nativeElement,n=this.dir&&\"rtl\"==this.dir.value;e.left=null==e.left?n?e.end:e.start:e.left,e.right=null==e.right?n?e.start:e.end:e.right,null!=e.bottom&&(e.top=t.scrollHeight-t.clientHeight-e.bottom),n&&Cp()!=Lp.NORMAL?(null!=e.left&&(e.right=t.scrollWidth-t.clientWidth-e.left),Cp()==Lp.INVERTED?e.left=e.right:Cp()==Lp.NEGATED&&(e.left=e.right?-e.right:e.right)):null!=e.right&&(e.left=t.scrollWidth-t.clientWidth-e.right),this._applyScrollToOptions(e)}_applyScrollToOptions(e){const t=this.elementRef.nativeElement;\"object\"==typeof document&&\"scrollBehavior\"in document.documentElement.style?t.scrollTo(e):(null!=e.top&&(t.scrollTop=e.top),null!=e.left&&(t.scrollLeft=e.left))}measureScrollOffset(e){const t=this.elementRef.nativeElement;if(\"top\"==e)return t.scrollTop;if(\"bottom\"==e)return t.scrollHeight-t.clientHeight-t.scrollTop;const n=this.dir&&\"rtl\"==this.dir.value;return\"start\"==e?e=n?\"right\":\"left\":\"end\"==e&&(e=n?\"left\":\"right\"),n&&Cp()==Lp.INVERTED?\"left\"==e?t.scrollWidth-t.clientWidth-t.scrollLeft:t.scrollLeft:n&&Cp()==Lp.NEGATED?\"left\"==e?t.scrollLeft+t.scrollWidth-t.clientWidth:-t.scrollLeft:\"left\"==e?t.scrollLeft:t.scrollWidth-t.clientWidth-t.scrollLeft}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(sv),Eo(ld),Eo(Gp,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdk-scrollable\",\"\"],[\"\",\"cdkScrollable\",\"\"]]}),e})(),ov=(()=>{class e{constructor(e,t){this._platform=e,t.runOutsideAngular(()=>{this._change=e.isBrowser?G(Mb(window,\"resize\"),Mb(window,\"orientationchange\")):xu(),this._invalidateCache=this.change().subscribe(()=>this._updateViewportSize())})}ngOnDestroy(){this._invalidateCache.unsubscribe()}getViewportSize(){this._viewportSize||this._updateViewportSize();const e={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),e}getViewportRect(){const e=this.getViewportScrollPosition(),{width:t,height:n}=this.getViewportSize();return{top:e.top,left:e.left,bottom:e.top+n,right:e.left+t,height:n,width:t}}getViewportScrollPosition(){if(!this._platform.isBrowser)return{top:0,left:0};const e=document.documentElement,t=e.getBoundingClientRect();return{top:-t.top||document.body.scrollTop||window.scrollY||e.scrollTop||0,left:-t.left||document.body.scrollLeft||window.scrollX||e.scrollLeft||0}}change(e=20){return e>0?this._change.pipe(Fb(e)):this._change}_updateViewportSize(){this._viewportSize=this._platform.isBrowser?{width:window.innerWidth,height:window.innerHeight}:{width:0,height:0}}}return e.\\u0275fac=function(t){return new(t||e)(Qe(bp),Qe(ld))},e.\\u0275prov=pe({factory:function(){return new e(Qe(bp),Qe(ld))},token:e,providedIn:\"root\"}),e})(),av=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Jp,vp],Jp]}),e})();function lv(){throw Error(\"Host already has a portal attached\")}class cv{attach(e){return null==e&&function(){throw Error(\"Attempting to attach a portal to a null PortalOutlet\")}(),e.hasAttached()&&lv(),this._attachedHost=e,e.attach(this)}detach(){let e=this._attachedHost;null==e?function(){throw Error(\"Attempting to detach a portal that is not attached to a host\")}():(this._attachedHost=null,e.detach())}get isAttached(){return null!=this._attachedHost}setAttachedHost(e){this._attachedHost=e}}class dv extends cv{constructor(e,t,n,i){super(),this.component=e,this.viewContainerRef=t,this.injector=n,this.componentFactoryResolver=i}}class uv extends cv{constructor(e,t,n){super(),this.templateRef=e,this.viewContainerRef=t,this.context=n}get origin(){return this.templateRef.elementRef}attach(e,t=this.context){return this.context=t,super.attach(e)}detach(){return this.context=void 0,super.detach()}}class hv extends cv{constructor(e){super(),this.element=e instanceof Ka?e.nativeElement:e}}class mv{constructor(){this._isDisposed=!1,this.attachDomPortal=null}hasAttached(){return!!this._attachedPortal}attach(e){return e||function(){throw Error(\"Must provide a portal to attach\")}(),this.hasAttached()&&lv(),this._isDisposed&&function(){throw Error(\"This PortalOutlet has already been disposed\")}(),e instanceof dv?(this._attachedPortal=e,this.attachComponentPortal(e)):e instanceof uv?(this._attachedPortal=e,this.attachTemplatePortal(e)):this.attachDomPortal&&e instanceof hv?(this._attachedPortal=e,this.attachDomPortal(e)):void function(){throw Error(\"Attempting to attach an unknown Portal type. BasePortalOutlet accepts either a ComponentPortal or a TemplatePortal.\")}()}detach(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()}dispose(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0}setDisposeFn(e){this._disposeFn=e}_invokeDisposeFn(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}class pv extends mv{constructor(e,t,n,i,s){super(),this.outletElement=e,this._componentFactoryResolver=t,this._appRef=n,this._defaultInjector=i,this.attachDomPortal=e=>{if(!this._document)throw Error(\"Cannot attach DOM portal without _document constructor parameter\");const t=e.element;if(!t.parentNode)throw Error(\"DOM portal content must be attached to a parent node.\");const n=this._document.createComment(\"dom-portal\");t.parentNode.insertBefore(n,t),this.outletElement.appendChild(t),super.setDisposeFn(()=>{n.parentNode&&n.parentNode.replaceChild(t,n)})},this._document=s}attachComponentPortal(e){const t=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component);let n;return e.viewContainerRef?(n=e.viewContainerRef.createComponent(t,e.viewContainerRef.length,e.injector||e.viewContainerRef.injector),this.setDisposeFn(()=>n.destroy())):(n=t.create(e.injector||this._defaultInjector),this._appRef.attachView(n.hostView),this.setDisposeFn(()=>{this._appRef.detachView(n.hostView),n.destroy()})),this.outletElement.appendChild(this._getComponentRootNode(n)),n}attachTemplatePortal(e){let t=e.viewContainerRef,n=t.createEmbeddedView(e.templateRef,e.context);return n.detectChanges(),n.rootNodes.forEach(e=>this.outletElement.appendChild(e)),this.setDisposeFn(()=>{let e=t.indexOf(n);-1!==e&&t.remove(e)}),n}dispose(){super.dispose(),null!=this.outletElement.parentNode&&this.outletElement.parentNode.removeChild(this.outletElement)}_getComponentRootNode(e){return e.hostView.rootNodes[0]}}let fv=(()=>{class e extends mv{constructor(e,t,n){super(),this._componentFactoryResolver=e,this._viewContainerRef=t,this._isInitialized=!1,this.attached=new yc,this.attachDomPortal=e=>{if(!this._document)throw Error(\"Cannot attach DOM portal without _document constructor parameter\");const t=e.element;if(!t.parentNode)throw Error(\"DOM portal content must be attached to a parent node.\");const n=this._document.createComment(\"dom-portal\");e.setAttachedHost(this),t.parentNode.insertBefore(n,t),this._getRootNode().appendChild(t),super.setDisposeFn(()=>{n.parentNode&&n.parentNode.replaceChild(t,n)})},this._document=n}get portal(){return this._attachedPortal}set portal(e){(!this.hasAttached()||e||this._isInitialized)&&(this.hasAttached()&&super.detach(),e&&super.attach(e),this._attachedPortal=e)}get attachedRef(){return this._attachedRef}ngOnInit(){this._isInitialized=!0}ngOnDestroy(){super.dispose(),this._attachedPortal=null,this._attachedRef=null}attachComponentPortal(e){e.setAttachedHost(this);const t=null!=e.viewContainerRef?e.viewContainerRef:this._viewContainerRef,n=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component),i=t.createComponent(n,t.length,e.injector||t.injector);return t!==this._viewContainerRef&&this._getRootNode().appendChild(i.hostView.rootNodes[0]),super.setDisposeFn(()=>i.destroy()),this._attachedPortal=e,this._attachedRef=i,this.attached.emit(i),i}attachTemplatePortal(e){e.setAttachedHost(this);const t=this._viewContainerRef.createEmbeddedView(e.templateRef,e.context);return super.setDisposeFn(()=>this._viewContainerRef.clear()),this._attachedPortal=e,this._attachedRef=t,this.attached.emit(t),t}_getRootNode(){const e=this._viewContainerRef.element.nativeElement;return e.nodeType===e.ELEMENT_NODE?e:e.parentNode}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ja),Eo(Ml),Eo(Nd))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdkPortalOutlet\",\"\"]],inputs:{portal:[\"cdkPortalOutlet\",\"portal\"]},outputs:{attached:\"attached\"},exportAs:[\"cdkPortalOutlet\"],features:[Ya]}),e})(),_v=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();class gv{constructor(e,t){this._viewportRuler=e,this._previousHTMLStyles={top:\"\",left:\"\"},this._isEnabled=!1,this._document=t}attach(){}enable(){if(this._canBeEnabled()){const e=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=e.style.left||\"\",this._previousHTMLStyles.top=e.style.top||\"\",e.style.left=fp(-this._previousScrollPosition.left),e.style.top=fp(-this._previousScrollPosition.top),e.classList.add(\"cdk-global-scrollblock\"),this._isEnabled=!0}}disable(){if(this._isEnabled){const e=this._document.documentElement,t=e.style,n=this._document.body.style,i=t.scrollBehavior||\"\",s=n.scrollBehavior||\"\";this._isEnabled=!1,t.left=this._previousHTMLStyles.left,t.top=this._previousHTMLStyles.top,e.classList.remove(\"cdk-global-scrollblock\"),t.scrollBehavior=n.scrollBehavior=\"auto\",window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),t.scrollBehavior=i,n.scrollBehavior=s}}_canBeEnabled(){if(this._document.documentElement.classList.contains(\"cdk-global-scrollblock\")||this._isEnabled)return!1;const e=this._document.body,t=this._viewportRuler.getViewportSize();return e.scrollHeight>t.height||e.scrollWidth>t.width}}function yv(){return Error(\"Scroll strategy has already been attached.\")}class bv{constructor(e,t,n,i){this._scrollDispatcher=e,this._ngZone=t,this._viewportRuler=n,this._config=i,this._scrollSubscription=null,this._detach=()=>{this.disable(),this._overlayRef.hasAttached()&&this._ngZone.run(()=>this._overlayRef.detach())}}attach(e){if(this._overlayRef)throw yv();this._overlayRef=e}enable(){if(this._scrollSubscription)return;const e=this._scrollDispatcher.scrolled(0);this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=e.subscribe(()=>{const e=this._viewportRuler.getViewportScrollPosition().top;Math.abs(e-this._initialScrollPosition)>this._config.threshold?this._detach():this._overlayRef.updatePosition()})):this._scrollSubscription=e.subscribe(this._detach)}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}class vv{enable(){}disable(){}attach(){}}function wv(e,t){return t.some(t=>e.bottomt.bottom||e.rightt.right)}function Mv(e,t){return t.some(t=>e.topt.bottom||e.leftt.right)}class kv{constructor(e,t,n,i){this._scrollDispatcher=e,this._viewportRuler=t,this._ngZone=n,this._config=i,this._scrollSubscription=null}attach(e){if(this._overlayRef)throw yv();this._overlayRef=e}enable(){this._scrollSubscription||(this._scrollSubscription=this._scrollDispatcher.scrolled(this._config?this._config.scrollThrottle:0).subscribe(()=>{if(this._overlayRef.updatePosition(),this._config&&this._config.autoClose){const e=this._overlayRef.overlayElement.getBoundingClientRect(),{width:t,height:n}=this._viewportRuler.getViewportSize();wv(e,[{width:t,height:n,bottom:n,right:t,top:0,left:0}])&&(this.disable(),this._ngZone.run(()=>this._overlayRef.detach()))}}))}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}let Sv=(()=>{class e{constructor(e,t,n,i){this._scrollDispatcher=e,this._viewportRuler=t,this._ngZone=n,this.noop=()=>new vv,this.close=e=>new bv(this._scrollDispatcher,this._ngZone,this._viewportRuler,e),this.block=()=>new gv(this._viewportRuler,this._document),this.reposition=e=>new kv(this._scrollDispatcher,this._viewportRuler,this._ngZone,e),this._document=i}}return e.\\u0275fac=function(t){return new(t||e)(Qe(sv),Qe(ov),Qe(ld),Qe(Nd))},e.\\u0275prov=pe({factory:function(){return new e(Qe(sv),Qe(ov),Qe(ld),Qe(Nd))},token:e,providedIn:\"root\"}),e})();class Lv{constructor(e){if(this.scrollStrategy=new vv,this.panelClass=\"\",this.hasBackdrop=!1,this.backdropClass=\"cdk-overlay-dark-backdrop\",this.disposeOnNavigation=!1,e){const t=Object.keys(e);for(const n of t)void 0!==e[n]&&(this[n]=e[n])}}}class xv{constructor(e,t,n,i,s){this.offsetX=n,this.offsetY=i,this.panelClass=s,this.originX=e.originX,this.originY=e.originY,this.overlayX=t.overlayX,this.overlayY=t.overlayY}}class Cv{constructor(e,t){this.connectionPair=e,this.scrollableViewProperties=t}}function Tv(e,t){if(\"top\"!==t&&\"bottom\"!==t&&\"center\"!==t)throw Error(`ConnectedPosition: Invalid ${e} \"${t}\". `+'Expected \"top\", \"bottom\" or \"center\".')}function Dv(e,t){if(\"start\"!==t&&\"end\"!==t&&\"center\"!==t)throw Error(`ConnectedPosition: Invalid ${e} \"${t}\". `+'Expected \"start\", \"end\" or \"center\".')}let Yv=(()=>{class e{constructor(e){this._attachedOverlays=[],this._keydownListener=e=>{const t=this._attachedOverlays;for(let n=t.length-1;n>-1;n--)if(t[n]._keydownEventSubscriptions>0){t[n]._keydownEvents.next(e);break}},this._document=e}ngOnDestroy(){this._detach()}add(e){this.remove(e),this._isAttached||(this._document.body.addEventListener(\"keydown\",this._keydownListener),this._isAttached=!0),this._attachedOverlays.push(e)}remove(e){const t=this._attachedOverlays.indexOf(e);t>-1&&this._attachedOverlays.splice(t,1),0===this._attachedOverlays.length&&this._detach()}_detach(){this._isAttached&&(this._document.body.removeEventListener(\"keydown\",this._keydownListener),this._isAttached=!1)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nd))},e.\\u0275prov=pe({factory:function(){return new e(Qe(Nd))},token:e,providedIn:\"root\"}),e})();const Ev=!(\"undefined\"==typeof window||!window||!window.__karma__&&!window.jasmine);let Ov=(()=>{class e{constructor(e,t){this._platform=t,this._document=e}ngOnDestroy(){const e=this._containerElement;e&&e.parentNode&&e.parentNode.removeChild(e)}getContainerElement(){return this._containerElement||this._createContainer(),this._containerElement}_createContainer(){const e=this._platform?this._platform.isBrowser:\"undefined\"!=typeof window;if(e||Ev){const e=this._document.querySelectorAll('.cdk-overlay-container[platform=\"server\"], .cdk-overlay-container[platform=\"test\"]');for(let t=0;tthis._backdropClick.next(e),this._keydownEventsObservable=new v(e=>{const t=this._keydownEvents.subscribe(e);return this._keydownEventSubscriptions++,()=>{t.unsubscribe(),this._keydownEventSubscriptions--}}),this._keydownEvents=new L,this._keydownEventSubscriptions=0,i.scrollStrategy&&(this._scrollStrategy=i.scrollStrategy,this._scrollStrategy.attach(this)),this._positionStrategy=i.positionStrategy}get overlayElement(){return this._pane}get backdropElement(){return this._backdropElement}get hostElement(){return this._host}attach(e){let t=this._portalOutlet.attach(e);return this._positionStrategy&&this._positionStrategy.attach(this),!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._scrollStrategy&&this._scrollStrategy.enable(),this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(()=>{this.hasAttached()&&this.updatePosition()}),this._togglePointerEvents(!0),this._config.hasBackdrop&&this._attachBackdrop(),this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!0),this._attachments.next(),this._keyboardDispatcher.add(this),this._config.disposeOnNavigation&&this._location&&(this._locationChanges=this._location.subscribe(()=>this.dispose())),t}detach(){if(!this.hasAttached())return;this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._scrollStrategy&&this._scrollStrategy.disable();const e=this._portalOutlet.detach();return this._detachments.next(),this._keyboardDispatcher.remove(this),this._detachContentWhenStable(),this._locationChanges.unsubscribe(),e}dispose(){const e=this.hasAttached();this._positionStrategy&&this._positionStrategy.dispose(),this._disposeScrollStrategy(),this.detachBackdrop(),this._locationChanges.unsubscribe(),this._keyboardDispatcher.remove(this),this._portalOutlet.dispose(),this._attachments.complete(),this._backdropClick.complete(),this._keydownEvents.complete(),this._host&&this._host.parentNode&&(this._host.parentNode.removeChild(this._host),this._host=null),this._previousHostParent=this._pane=null,e&&this._detachments.next(),this._detachments.complete()}hasAttached(){return this._portalOutlet.hasAttached()}backdropClick(){return this._backdropClick.asObservable()}attachments(){return this._attachments.asObservable()}detachments(){return this._detachments.asObservable()}keydownEvents(){return this._keydownEventsObservable}getConfig(){return this._config}updatePosition(){this._positionStrategy&&this._positionStrategy.apply()}updatePositionStrategy(e){e!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=e,this.hasAttached()&&(e.attach(this),this.updatePosition()))}updateSize(e){this._config=Object.assign(Object.assign({},this._config),e),this._updateElementSize()}setDirection(e){this._config=Object.assign(Object.assign({},this._config),{direction:e}),this._updateElementDirection()}addPanelClass(e){this._pane&&this._toggleClasses(this._pane,e,!0)}removePanelClass(e){this._pane&&this._toggleClasses(this._pane,e,!1)}getDirection(){const e=this._config.direction;return e?\"string\"==typeof e?e:e.value:\"ltr\"}updateScrollStrategy(e){e!==this._scrollStrategy&&(this._disposeScrollStrategy(),this._scrollStrategy=e,this.hasAttached()&&(e.attach(this),e.enable()))}_updateElementDirection(){this._host.setAttribute(\"dir\",this.getDirection())}_updateElementSize(){if(!this._pane)return;const e=this._pane.style;e.width=fp(this._config.width),e.height=fp(this._config.height),e.minWidth=fp(this._config.minWidth),e.minHeight=fp(this._config.minHeight),e.maxWidth=fp(this._config.maxWidth),e.maxHeight=fp(this._config.maxHeight)}_togglePointerEvents(e){this._pane.style.pointerEvents=e?\"auto\":\"none\"}_attachBackdrop(){this._backdropElement=this._document.createElement(\"div\"),this._backdropElement.classList.add(\"cdk-overlay-backdrop\"),this._config.backdropClass&&this._toggleClasses(this._backdropElement,this._config.backdropClass,!0),this._host.parentElement.insertBefore(this._backdropElement,this._host),this._backdropElement.addEventListener(\"click\",this._backdropClickHandler),\"undefined\"!=typeof requestAnimationFrame?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{this._backdropElement&&this._backdropElement.classList.add(\"cdk-overlay-backdrop-showing\")})}):this._backdropElement.classList.add(\"cdk-overlay-backdrop-showing\")}_updateStackingOrder(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)}detachBackdrop(){let e,t=this._backdropElement;if(!t)return;let n=()=>{t&&(t.removeEventListener(\"click\",this._backdropClickHandler),t.removeEventListener(\"transitionend\",n),t.parentNode&&t.parentNode.removeChild(t)),this._backdropElement==t&&(this._backdropElement=null),this._config.backdropClass&&this._toggleClasses(t,this._config.backdropClass,!1),clearTimeout(e)};t.classList.remove(\"cdk-overlay-backdrop-showing\"),this._ngZone.runOutsideAngular(()=>{t.addEventListener(\"transitionend\",n)}),t.style.pointerEvents=\"none\",e=this._ngZone.runOutsideAngular(()=>setTimeout(n,500))}_toggleClasses(e,t,n){const i=e.classList;pp(t).forEach(e=>{e&&(n?i.add(e):i.remove(e))})}_detachContentWhenStable(){this._ngZone.runOutsideAngular(()=>{const e=this._ngZone.onStable.asObservable().pipe(Nb(G(this._attachments,this._detachments))).subscribe(()=>{this._pane&&this._host&&0!==this._pane.children.length||(this._pane&&this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!1),this._host&&this._host.parentElement&&(this._previousHostParent=this._host.parentElement,this._previousHostParent.removeChild(this._host)),e.unsubscribe())})})}_disposeScrollStrategy(){const e=this._scrollStrategy;e&&(e.disable(),e.detach&&e.detach())}}class Pv{constructor(e,t,n,i,s){this._viewportRuler=t,this._document=n,this._platform=i,this._overlayContainer=s,this._lastBoundingBoxSize={width:0,height:0},this._isPushed=!1,this._canPush=!0,this._growAfterOpen=!1,this._hasFlexibleDimensions=!0,this._positionLocked=!1,this._viewportMargin=0,this._scrollables=[],this._preferredPositions=[],this._positionChanges=new L,this._resizeSubscription=u.EMPTY,this._offsetX=0,this._offsetY=0,this._appliedPanelClasses=[],this.positionChanges=this._positionChanges.asObservable(),this.setOrigin(e)}get positions(){return this._preferredPositions}attach(e){if(this._overlayRef&&e!==this._overlayRef)throw Error(\"This position strategy is already attached to an overlay\");this._validatePositions(),e.hostElement.classList.add(\"cdk-overlay-connected-position-bounding-box\"),this._overlayRef=e,this._boundingBox=e.hostElement,this._pane=e.overlayElement,this._isDisposed=!1,this._isInitialRender=!0,this._lastPosition=null,this._resizeSubscription.unsubscribe(),this._resizeSubscription=this._viewportRuler.change().subscribe(()=>{this._isInitialRender=!0,this.apply()})}apply(){if(this._isDisposed||!this._platform.isBrowser)return;if(!this._isInitialRender&&this._positionLocked&&this._lastPosition)return void this.reapplyLastPosition();this._clearPanelClasses(),this._resetOverlayElementStyles(),this._resetBoundingBoxStyles(),this._viewportRect=this._getNarrowedViewportRect(),this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect();const e=this._originRect,t=this._overlayRect,n=this._viewportRect,i=[];let s;for(let r of this._preferredPositions){let o=this._getOriginPoint(e,r),a=this._getOverlayPoint(o,t,r),l=this._getOverlayFit(a,t,n,r);if(l.isCompletelyWithinViewport)return this._isPushed=!1,void this._applyPosition(r,o);this._canFitWithFlexibleDimensions(l,a,n)?i.push({position:r,origin:o,overlayRect:t,boundingBoxRect:this._calculateBoundingBoxRect(o,r)}):(!s||s.overlayFit.visibleAreat&&(t=i,e=n)}return this._isPushed=!1,void this._applyPosition(e.position,e.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(s.position,s.originPoint);this._applyPosition(s.position,s.originPoint)}detach(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}dispose(){this._isDisposed||(this._boundingBox&&Av(this._boundingBox.style,{top:\"\",left:\"\",right:\"\",bottom:\"\",height:\"\",width:\"\",alignItems:\"\",justifyContent:\"\"}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(\"cdk-overlay-connected-position-bounding-box\"),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}reapplyLastPosition(){if(!this._isDisposed&&(!this._platform||this._platform.isBrowser)){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect();const e=this._lastPosition||this._preferredPositions[0],t=this._getOriginPoint(this._originRect,e);this._applyPosition(e,t)}}withScrollableContainers(e){return this._scrollables=e,this}withPositions(e){return this._preferredPositions=e,-1===e.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}withViewportMargin(e){return this._viewportMargin=e,this}withFlexibleDimensions(e=!0){return this._hasFlexibleDimensions=e,this}withGrowAfterOpen(e=!0){return this._growAfterOpen=e,this}withPush(e=!0){return this._canPush=e,this}withLockedPosition(e=!0){return this._positionLocked=e,this}setOrigin(e){return this._origin=e,this}withDefaultOffsetX(e){return this._offsetX=e,this}withDefaultOffsetY(e){return this._offsetY=e,this}withTransformOriginOn(e){return this._transformOriginSelector=e,this}_getOriginPoint(e,t){let n,i;if(\"center\"==t.originX)n=e.left+e.width/2;else{const i=this._isRtl()?e.right:e.left,s=this._isRtl()?e.left:e.right;n=\"start\"==t.originX?i:s}return i=\"center\"==t.originY?e.top+e.height/2:\"top\"==t.originY?e.top:e.bottom,{x:n,y:i}}_getOverlayPoint(e,t,n){let i,s;return i=\"center\"==n.overlayX?-t.width/2:\"start\"===n.overlayX?this._isRtl()?-t.width:0:this._isRtl()?0:-t.width,s=\"center\"==n.overlayY?-t.height/2:\"top\"==n.overlayY?0:-t.height,{x:e.x+i,y:e.y+s}}_getOverlayFit(e,t,n,i){let{x:s,y:r}=e,o=this._getOffset(i,\"x\"),a=this._getOffset(i,\"y\");o&&(s+=o),a&&(r+=a);let l=0-r,c=r+t.height-n.height,d=this._subtractOverflows(t.width,0-s,s+t.width-n.width),u=this._subtractOverflows(t.height,l,c),h=d*u;return{visibleArea:h,isCompletelyWithinViewport:t.width*t.height===h,fitsInViewportVertically:u===t.height,fitsInViewportHorizontally:d==t.width}}_canFitWithFlexibleDimensions(e,t,n){if(this._hasFlexibleDimensions){const i=n.bottom-t.y,s=n.right-t.x,r=this._overlayRef.getConfig().minHeight,o=this._overlayRef.getConfig().minWidth,a=e.fitsInViewportHorizontally||null!=o&&o<=s;return(e.fitsInViewportVertically||null!=r&&r<=i)&&a}return!1}_pushOverlayOnScreen(e,t,n){if(this._previousPushAmount&&this._positionLocked)return{x:e.x+this._previousPushAmount.x,y:e.y+this._previousPushAmount.y};const i=this._viewportRect,s=Math.max(e.x+t.width-i.right,0),r=Math.max(e.y+t.height-i.bottom,0),o=Math.max(i.top-n.top-e.y,0),a=Math.max(i.left-n.left-e.x,0);let l=0,c=0;return l=t.width<=i.width?a||-s:e.xi&&!this._isInitialRender&&!this._growAfterOpen&&(r=e.y-i/2)}if(\"end\"===t.overlayX&&!i||\"start\"===t.overlayX&&i)c=n.width-e.x+this._viewportMargin,a=e.x-this._viewportMargin;else if(\"start\"===t.overlayX&&!i||\"end\"===t.overlayX&&i)l=e.x,a=n.right-e.x;else{const t=Math.min(n.right-e.x+n.left,e.x),i=this._lastBoundingBoxSize.width;a=2*t,l=e.x-t,a>i&&!this._isInitialRender&&!this._growAfterOpen&&(l=e.x-i/2)}return{top:r,left:l,bottom:o,right:c,width:a,height:s}}_setBoundingBoxStyles(e,t){const n=this._calculateBoundingBoxRect(e,t);this._isInitialRender||this._growAfterOpen||(n.height=Math.min(n.height,this._lastBoundingBoxSize.height),n.width=Math.min(n.width,this._lastBoundingBoxSize.width));const i={};if(this._hasExactPosition())i.top=i.left=\"0\",i.bottom=i.right=i.maxHeight=i.maxWidth=\"\",i.width=i.height=\"100%\";else{const e=this._overlayRef.getConfig().maxHeight,s=this._overlayRef.getConfig().maxWidth;i.height=fp(n.height),i.top=fp(n.top),i.bottom=fp(n.bottom),i.width=fp(n.width),i.left=fp(n.left),i.right=fp(n.right),i.alignItems=\"center\"===t.overlayX?\"center\":\"end\"===t.overlayX?\"flex-end\":\"flex-start\",i.justifyContent=\"center\"===t.overlayY?\"center\":\"bottom\"===t.overlayY?\"flex-end\":\"flex-start\",e&&(i.maxHeight=fp(e)),s&&(i.maxWidth=fp(s))}this._lastBoundingBoxSize=n,Av(this._boundingBox.style,i)}_resetBoundingBoxStyles(){Av(this._boundingBox.style,{top:\"0\",left:\"0\",right:\"0\",bottom:\"0\",height:\"\",width:\"\",alignItems:\"\",justifyContent:\"\"})}_resetOverlayElementStyles(){Av(this._pane.style,{top:\"\",left:\"\",bottom:\"\",right:\"\",position:\"\",transform:\"\"})}_setOverlayElementStyles(e,t){const n={},i=this._hasExactPosition(),s=this._hasFlexibleDimensions,r=this._overlayRef.getConfig();if(i){const i=this._viewportRuler.getViewportScrollPosition();Av(n,this._getExactOverlayY(t,e,i)),Av(n,this._getExactOverlayX(t,e,i))}else n.position=\"static\";let o=\"\",a=this._getOffset(t,\"x\"),l=this._getOffset(t,\"y\");a&&(o+=`translateX(${a}px) `),l&&(o+=`translateY(${l}px)`),n.transform=o.trim(),r.maxHeight&&(i?n.maxHeight=fp(r.maxHeight):s&&(n.maxHeight=\"\")),r.maxWidth&&(i?n.maxWidth=fp(r.maxWidth):s&&(n.maxWidth=\"\")),Av(this._pane.style,n)}_getExactOverlayY(e,t,n){let i={top:\"\",bottom:\"\"},s=this._getOverlayPoint(t,this._overlayRect,e);this._isPushed&&(s=this._pushOverlayOnScreen(s,this._overlayRect,n));let r=this._overlayContainer.getContainerElement().getBoundingClientRect().top;return s.y-=r,\"bottom\"===e.overlayY?i.bottom=`${this._document.documentElement.clientHeight-(s.y+this._overlayRect.height)}px`:i.top=fp(s.y),i}_getExactOverlayX(e,t,n){let i,s={left:\"\",right:\"\"},r=this._getOverlayPoint(t,this._overlayRect,e);return this._isPushed&&(r=this._pushOverlayOnScreen(r,this._overlayRect,n)),i=this._isRtl()?\"end\"===e.overlayX?\"left\":\"right\":\"end\"===e.overlayX?\"right\":\"left\",\"right\"===i?s.right=`${this._document.documentElement.clientWidth-(r.x+this._overlayRect.width)}px`:s.left=fp(r.x),s}_getScrollVisibility(){const e=this._getOriginRect(),t=this._pane.getBoundingClientRect(),n=this._scrollables.map(e=>e.getElementRef().nativeElement.getBoundingClientRect());return{isOriginClipped:Mv(e,n),isOriginOutsideView:wv(e,n),isOverlayClipped:Mv(t,n),isOverlayOutsideView:wv(t,n)}}_subtractOverflows(e,...t){return t.reduce((e,t)=>e-Math.max(t,0),e)}_getNarrowedViewportRect(){const e=this._document.documentElement.clientWidth,t=this._document.documentElement.clientHeight,n=this._viewportRuler.getViewportScrollPosition();return{top:n.top+this._viewportMargin,left:n.left+this._viewportMargin,right:n.left+e-this._viewportMargin,bottom:n.top+t-this._viewportMargin,width:e-2*this._viewportMargin,height:t-2*this._viewportMargin}}_isRtl(){return\"rtl\"===this._overlayRef.getDirection()}_hasExactPosition(){return!this._hasFlexibleDimensions||this._isPushed}_getOffset(e,t){return\"x\"===t?null==e.offsetX?this._offsetX:e.offsetX:null==e.offsetY?this._offsetY:e.offsetY}_validatePositions(){if(!this._preferredPositions.length)throw Error(\"FlexibleConnectedPositionStrategy: At least one position is required.\");this._preferredPositions.forEach(e=>{Dv(\"originX\",e.originX),Tv(\"originY\",e.originY),Dv(\"overlayX\",e.overlayX),Tv(\"overlayY\",e.overlayY)})}_addPanelClasses(e){this._pane&&pp(e).forEach(e=>{\"\"!==e&&-1===this._appliedPanelClasses.indexOf(e)&&(this._appliedPanelClasses.push(e),this._pane.classList.add(e))})}_clearPanelClasses(){this._pane&&(this._appliedPanelClasses.forEach(e=>{this._pane.classList.remove(e)}),this._appliedPanelClasses=[])}_getOriginRect(){const e=this._origin;if(e instanceof Ka)return e.nativeElement.getBoundingClientRect();if(e instanceof HTMLElement)return e.getBoundingClientRect();const t=e.width||0,n=e.height||0;return{top:e.y,bottom:e.y+n,left:e.x,right:e.x+t,height:n,width:t}}}function Av(e,t){for(let n in t)t.hasOwnProperty(n)&&(e[n]=t[n]);return e}class Rv{constructor(e,t,n,i,s,r,o){this._preferredPositions=[],this._positionStrategy=new Pv(n,i,s,r,o).withFlexibleDimensions(!1).withPush(!1).withViewportMargin(0),this.withFallbackPosition(e,t)}get _isRtl(){return\"rtl\"===this._overlayRef.getDirection()}get onPositionChange(){return this._positionStrategy.positionChanges}get positions(){return this._preferredPositions}attach(e){this._overlayRef=e,this._positionStrategy.attach(e),this._direction&&(e.setDirection(this._direction),this._direction=null)}dispose(){this._positionStrategy.dispose()}detach(){this._positionStrategy.detach()}apply(){this._positionStrategy.apply()}recalculateLastPosition(){this._positionStrategy.reapplyLastPosition()}withScrollableContainers(e){this._positionStrategy.withScrollableContainers(e)}withFallbackPosition(e,t,n,i){const s=new xv(e,t,n,i);return this._preferredPositions.push(s),this._positionStrategy.withPositions(this._preferredPositions),this}withDirection(e){return this._overlayRef?this._overlayRef.setDirection(e):this._direction=e,this}withOffsetX(e){return this._positionStrategy.withDefaultOffsetX(e),this}withOffsetY(e){return this._positionStrategy.withDefaultOffsetY(e),this}withLockedPosition(e){return this._positionStrategy.withLockedPosition(e),this}withPositions(e){return this._preferredPositions=e.slice(),this._positionStrategy.withPositions(this._preferredPositions),this}setOrigin(e){return this._positionStrategy.setOrigin(e),this}}class Hv{constructor(){this._cssPosition=\"static\",this._topOffset=\"\",this._bottomOffset=\"\",this._leftOffset=\"\",this._rightOffset=\"\",this._alignItems=\"\",this._justifyContent=\"\",this._width=\"\",this._height=\"\"}attach(e){const t=e.getConfig();this._overlayRef=e,this._width&&!t.width&&e.updateSize({width:this._width}),this._height&&!t.height&&e.updateSize({height:this._height}),e.hostElement.classList.add(\"cdk-global-overlay-wrapper\"),this._isDisposed=!1}top(e=\"\"){return this._bottomOffset=\"\",this._topOffset=e,this._alignItems=\"flex-start\",this}left(e=\"\"){return this._rightOffset=\"\",this._leftOffset=e,this._justifyContent=\"flex-start\",this}bottom(e=\"\"){return this._topOffset=\"\",this._bottomOffset=e,this._alignItems=\"flex-end\",this}right(e=\"\"){return this._leftOffset=\"\",this._rightOffset=e,this._justifyContent=\"flex-end\",this}width(e=\"\"){return this._overlayRef?this._overlayRef.updateSize({width:e}):this._width=e,this}height(e=\"\"){return this._overlayRef?this._overlayRef.updateSize({height:e}):this._height=e,this}centerHorizontally(e=\"\"){return this.left(e),this._justifyContent=\"center\",this}centerVertically(e=\"\"){return this.top(e),this._alignItems=\"center\",this}apply(){if(!this._overlayRef||!this._overlayRef.hasAttached())return;const e=this._overlayRef.overlayElement.style,t=this._overlayRef.hostElement.style,n=this._overlayRef.getConfig(),{width:i,height:s,maxWidth:r,maxHeight:o}=n,a=!(\"100%\"!==i&&\"100vw\"!==i||r&&\"100%\"!==r&&\"100vw\"!==r),l=!(\"100%\"!==s&&\"100vh\"!==s||o&&\"100%\"!==o&&\"100vh\"!==o);e.position=this._cssPosition,e.marginLeft=a?\"0\":this._leftOffset,e.marginTop=l?\"0\":this._topOffset,e.marginBottom=this._bottomOffset,e.marginRight=this._rightOffset,a?t.justifyContent=\"flex-start\":\"center\"===this._justifyContent?t.justifyContent=\"center\":\"rtl\"===this._overlayRef.getConfig().direction?\"flex-start\"===this._justifyContent?t.justifyContent=\"flex-end\":\"flex-end\"===this._justifyContent&&(t.justifyContent=\"flex-start\"):t.justifyContent=this._justifyContent,t.alignItems=l?\"flex-start\":this._alignItems}dispose(){if(this._isDisposed||!this._overlayRef)return;const e=this._overlayRef.overlayElement.style,t=this._overlayRef.hostElement,n=t.style;t.classList.remove(\"cdk-global-overlay-wrapper\"),n.justifyContent=n.alignItems=e.marginTop=e.marginBottom=e.marginLeft=e.marginRight=e.position=\"\",this._overlayRef=null,this._isDisposed=!0}}let jv=(()=>{class e{constructor(e,t,n,i){this._viewportRuler=e,this._document=t,this._platform=n,this._overlayContainer=i}global(){return new Hv}connectedTo(e,t,n){return new Rv(t,n,e,this._viewportRuler,this._document,this._platform,this._overlayContainer)}flexibleConnectedTo(e){return new Pv(e,this._viewportRuler,this._document,this._platform,this._overlayContainer)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ov),Qe(Nd),Qe(bp),Qe(Ov))},e.\\u0275prov=pe({factory:function(){return new e(Qe(ov),Qe(Nd),Qe(bp),Qe(Ov))},token:e,providedIn:\"root\"}),e})(),Fv=0,Nv=(()=>{class e{constructor(e,t,n,i,s,r,o,a,l,c){this.scrollStrategies=e,this._overlayContainer=t,this._componentFactoryResolver=n,this._positionBuilder=i,this._keyboardDispatcher=s,this._injector=r,this._ngZone=o,this._document=a,this._directionality=l,this._location=c}create(e){const t=this._createHostElement(),n=this._createPaneElement(t),i=this._createPortalOutlet(n),s=new Lv(e);return s.direction=s.direction||this._directionality.value,new Iv(i,t,n,s,this._ngZone,this._keyboardDispatcher,this._document,this._location)}position(){return this._positionBuilder}_createPaneElement(e){const t=this._document.createElement(\"div\");return t.id=`cdk-overlay-${Fv++}`,t.classList.add(\"cdk-overlay-pane\"),e.appendChild(t),t}_createHostElement(){const e=this._document.createElement(\"div\");return this._overlayContainer.getContainerElement().appendChild(e),e}_createPortalOutlet(e){return this._appRef||(this._appRef=this._injector.get(Td)),new pv(e,this._componentFactoryResolver,this._appRef,this._injector,this._document)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Sv),Qe(Ov),Qe(Ja),Qe(jv),Qe(Yv),Qe(fo),Qe(ld),Qe(Nd),Qe(Gp),Qe(tu,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const zv=[{originX:\"start\",originY:\"bottom\",overlayX:\"start\",overlayY:\"top\"},{originX:\"start\",originY:\"top\",overlayX:\"start\",overlayY:\"bottom\"},{originX:\"end\",originY:\"top\",overlayX:\"end\",overlayY:\"bottom\"},{originX:\"end\",originY:\"bottom\",overlayX:\"end\",overlayY:\"top\"}],Vv=new Ve(\"cdk-connected-overlay-scroll-strategy\");let Wv=(()=>{class e{constructor(e){this.elementRef=e}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdk-overlay-origin\",\"\"],[\"\",\"overlay-origin\",\"\"],[\"\",\"cdkOverlayOrigin\",\"\"]],exportAs:[\"cdkOverlayOrigin\"]}),e})(),Uv=(()=>{class e{constructor(e,t,n,i,s){this._overlay=e,this._dir=s,this._hasBackdrop=!1,this._lockPosition=!1,this._growAfterOpen=!1,this._flexibleDimensions=!1,this._push=!1,this._backdropSubscription=u.EMPTY,this.viewportMargin=0,this.open=!1,this.backdropClick=new yc,this.positionChange=new yc,this.attach=new yc,this.detach=new yc,this.overlayKeydown=new yc,this._templatePortal=new uv(t,n),this._scrollStrategyFactory=i,this.scrollStrategy=this._scrollStrategyFactory()}get offsetX(){return this._offsetX}set offsetX(e){this._offsetX=e,this._position&&this._updatePositionStrategy(this._position)}get offsetY(){return this._offsetY}set offsetY(e){this._offsetY=e,this._position&&this._updatePositionStrategy(this._position)}get hasBackdrop(){return this._hasBackdrop}set hasBackdrop(e){this._hasBackdrop=hp(e)}get lockPosition(){return this._lockPosition}set lockPosition(e){this._lockPosition=hp(e)}get flexibleDimensions(){return this._flexibleDimensions}set flexibleDimensions(e){this._flexibleDimensions=hp(e)}get growAfterOpen(){return this._growAfterOpen}set growAfterOpen(e){this._growAfterOpen=hp(e)}get push(){return this._push}set push(e){this._push=hp(e)}get overlayRef(){return this._overlayRef}get dir(){return this._dir?this._dir.value:\"ltr\"}ngOnDestroy(){this._overlayRef&&this._overlayRef.dispose(),this._backdropSubscription.unsubscribe()}ngOnChanges(e){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),e.origin&&this.open&&this._position.apply()),e.open&&(this.open?this._attachOverlay():this._detachOverlay())}_createOverlay(){this.positions&&this.positions.length||(this.positions=zv),this._overlayRef=this._overlay.create(this._buildConfig()),this._overlayRef.keydownEvents().subscribe(e=>{this.overlayKeydown.next(e),27!==e.keyCode||qm(e)||(e.preventDefault(),this._detachOverlay())})}_buildConfig(){const e=this._position=this.positionStrategy||this._createPositionStrategy(),t=new Lv({direction:this._dir,positionStrategy:e,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop});return(this.width||0===this.width)&&(t.width=this.width),(this.height||0===this.height)&&(t.height=this.height),(this.minWidth||0===this.minWidth)&&(t.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(t.minHeight=this.minHeight),this.backdropClass&&(t.backdropClass=this.backdropClass),this.panelClass&&(t.panelClass=this.panelClass),t}_updatePositionStrategy(e){const t=this.positions.map(e=>({originX:e.originX,originY:e.originY,overlayX:e.overlayX,overlayY:e.overlayY,offsetX:e.offsetX||this.offsetX,offsetY:e.offsetY||this.offsetY,panelClass:e.panelClass||void 0}));return e.setOrigin(this.origin.elementRef).withPositions(t).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}_createPositionStrategy(){const e=this._overlay.position().flexibleConnectedTo(this.origin.elementRef);return this._updatePositionStrategy(e),e.positionChanges.subscribe(e=>this.positionChange.emit(e)),e}_attachOverlay(){this._overlayRef?this._overlayRef.getConfig().hasBackdrop=this.hasBackdrop:this._createOverlay(),this._overlayRef.hasAttached()||(this._overlayRef.attach(this._templatePortal),this.attach.emit()),this.hasBackdrop?this._backdropSubscription=this._overlayRef.backdropClick().subscribe(e=>{this.backdropClick.emit(e)}):this._backdropSubscription.unsubscribe()}_detachOverlay(){this._overlayRef&&(this._overlayRef.detach(),this.detach.emit()),this._backdropSubscription.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Nv),Eo(vl),Eo(Ml),Eo(Vv),Eo(Gp,8))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"cdk-connected-overlay\",\"\"],[\"\",\"connected-overlay\",\"\"],[\"\",\"cdkConnectedOverlay\",\"\"]],inputs:{viewportMargin:[\"cdkConnectedOverlayViewportMargin\",\"viewportMargin\"],open:[\"cdkConnectedOverlayOpen\",\"open\"],scrollStrategy:[\"cdkConnectedOverlayScrollStrategy\",\"scrollStrategy\"],offsetX:[\"cdkConnectedOverlayOffsetX\",\"offsetX\"],offsetY:[\"cdkConnectedOverlayOffsetY\",\"offsetY\"],hasBackdrop:[\"cdkConnectedOverlayHasBackdrop\",\"hasBackdrop\"],lockPosition:[\"cdkConnectedOverlayLockPosition\",\"lockPosition\"],flexibleDimensions:[\"cdkConnectedOverlayFlexibleDimensions\",\"flexibleDimensions\"],growAfterOpen:[\"cdkConnectedOverlayGrowAfterOpen\",\"growAfterOpen\"],push:[\"cdkConnectedOverlayPush\",\"push\"],positions:[\"cdkConnectedOverlayPositions\",\"positions\"],origin:[\"cdkConnectedOverlayOrigin\",\"origin\"],positionStrategy:[\"cdkConnectedOverlayPositionStrategy\",\"positionStrategy\"],width:[\"cdkConnectedOverlayWidth\",\"width\"],height:[\"cdkConnectedOverlayHeight\",\"height\"],minWidth:[\"cdkConnectedOverlayMinWidth\",\"minWidth\"],minHeight:[\"cdkConnectedOverlayMinHeight\",\"minHeight\"],backdropClass:[\"cdkConnectedOverlayBackdropClass\",\"backdropClass\"],panelClass:[\"cdkConnectedOverlayPanelClass\",\"panelClass\"],transformOriginSelector:[\"cdkConnectedOverlayTransformOriginOn\",\"transformOriginSelector\"]},outputs:{backdropClick:\"backdropClick\",positionChange:\"positionChange\",attach:\"attach\",detach:\"detach\",overlayKeydown:\"overlayKeydown\"},exportAs:[\"cdkConnectedOverlay\"],features:[Ra]}),e})();const $v={provide:Vv,deps:[Nv],useFactory:function(e){return()=>e.scrollStrategies.reposition()}};let Bv=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[Nv,$v],imports:[[Jp,_v,av],av]}),e})();function qv(e){return new v(t=>{let n;try{n=e()}catch(i){return void t.error(i)}return(n?z(n):lp()).subscribe(t)})}function Gv(e,t){}class Jv{constructor(){this.role=\"dialog\",this.panelClass=\"\",this.hasBackdrop=!0,this.backdropClass=\"\",this.disableClose=!1,this.width=\"\",this.height=\"\",this.maxWidth=\"80vw\",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.autoFocus=!0,this.restoreFocus=!0,this.closeOnNavigation=!0}}const Kv={dialogContainer:jf(\"dialogContainer\",[Wf(\"void, exit\",Vf({opacity:0,transform:\"scale(0.7)\"})),Wf(\"enter\",Vf({transform:\"none\"})),Uf(\"* => enter\",Ff(\"150ms cubic-bezier(0, 0, 0.2, 1)\",Vf({transform:\"none\",opacity:1}))),Uf(\"* => void, * => exit\",Ff(\"75ms cubic-bezier(0.4, 0.0, 0.2, 1)\",Vf({opacity:0})))])};function Zv(){throw Error(\"Attempting to attach dialog content after content is already attached\")}let Qv=(()=>{class e extends mv{constructor(e,t,n,i,s){super(),this._elementRef=e,this._focusTrapFactory=t,this._changeDetectorRef=n,this._config=s,this._elementFocusedBeforeDialogWasOpened=null,this._state=\"enter\",this._animationStateChanged=new yc,this.attachDomPortal=e=>(this._portalOutlet.hasAttached()&&Zv(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachDomPortal(e)),this._ariaLabelledBy=s.ariaLabelledBy||null,this._document=i}attachComponentPortal(e){return this._portalOutlet.hasAttached()&&Zv(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachComponentPortal(e)}attachTemplatePortal(e){return this._portalOutlet.hasAttached()&&Zv(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachTemplatePortal(e)}_trapFocus(){const e=this._elementRef.nativeElement;if(this._focusTrap||(this._focusTrap=this._focusTrapFactory.create(e)),this._config.autoFocus)this._focusTrap.focusInitialElementWhenReady();else{const t=this._document.activeElement;t===e||e.contains(t)||e.focus()}}_restoreFocus(){const e=this._elementFocusedBeforeDialogWasOpened;if(this._config.restoreFocus&&e&&\"function\"==typeof e.focus){const t=this._document.activeElement,n=this._elementRef.nativeElement;t&&t!==this._document.body&&t!==n&&!n.contains(t)||e.focus()}this._focusTrap&&this._focusTrap.destroy()}_savePreviouslyFocusedElement(){this._document&&(this._elementFocusedBeforeDialogWasOpened=this._document.activeElement,this._elementRef.nativeElement.focus&&Promise.resolve().then(()=>this._elementRef.nativeElement.focus()))}_onAnimationDone(e){\"enter\"===e.toState?this._trapFocus():\"exit\"===e.toState&&this._restoreFocus(),this._animationStateChanged.emit(e)}_onAnimationStart(e){this._animationStateChanged.emit(e)}_startExitAnimation(){this._state=\"exit\",this._changeDetectorRef.markForCheck()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Fp),Eo(Qr),Eo(Nd,8),Eo(Jv))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-dialog-container\"]],viewQuery:function(e,t){var n;1&e&&Yc(fv,!0),2&e&&Dc(n=Rc())&&(t._portalOutlet=n.first)},hostAttrs:[\"tabindex\",\"-1\",\"aria-modal\",\"true\",1,\"mat-dialog-container\"],hostVars:6,hostBindings:function(e,t){1&e&&$o(\"@dialogContainer.start\",(function(e){return t._onAnimationStart(e)}))(\"@dialogContainer.done\",(function(e){return t._onAnimationDone(e)})),2&e&&(Co(\"id\",t._id)(\"role\",t._config.role)(\"aria-labelledby\",t._config.ariaLabel?null:t._ariaLabelledBy)(\"aria-label\",t._config.ariaLabel)(\"aria-describedby\",t._config.ariaDescribedBy||null),Ta(\"@dialogContainer\",t._state))},features:[Ya],decls:1,vars:0,consts:[[\"cdkPortalOutlet\",\"\"]],template:function(e,t){1&e&&Do(0,Gv,0,0,\"ng-template\",0)},directives:[fv],styles:[\".mat-dialog-container{display:block;padding:24px;border-radius:4px;box-sizing:border-box;overflow:auto;outline:0;width:100%;height:100%;min-height:inherit;max-height:inherit}.cdk-high-contrast-active .mat-dialog-container{outline:solid 1px}.mat-dialog-content{display:block;margin:0 -24px;padding:0 24px;max-height:65vh;overflow:auto;-webkit-overflow-scrolling:touch}.mat-dialog-title{margin:0 0 20px;display:block}.mat-dialog-actions{padding:8px 0;display:flex;flex-wrap:wrap;min-height:52px;align-items:center;margin-bottom:-24px}.mat-dialog-actions[align=end]{justify-content:flex-end}.mat-dialog-actions[align=center]{justify-content:center}.mat-dialog-actions .mat-button-base+.mat-button-base,.mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}\\n\"],encapsulation:2,data:{animation:[Kv.dialogContainer]}}),e})(),Xv=0;class ew{constructor(e,t,n=`mat-dialog-${Xv++}`){this._overlayRef=e,this._containerInstance=t,this.id=n,this.disableClose=this._containerInstance._config.disableClose,this._afterOpened=new L,this._afterClosed=new L,this._beforeClosed=new L,this._state=0,t._id=n,t._animationStateChanged.pipe(Tu(e=>\"done\"===e.phaseName&&\"enter\"===e.toState),cp(1)).subscribe(()=>{this._afterOpened.next(),this._afterOpened.complete()}),t._animationStateChanged.pipe(Tu(e=>\"done\"===e.phaseName&&\"exit\"===e.toState),cp(1)).subscribe(()=>{clearTimeout(this._closeFallbackTimeout),this._overlayRef.dispose()}),e.detachments().subscribe(()=>{this._beforeClosed.next(this._result),this._beforeClosed.complete(),this._afterClosed.next(this._result),this._afterClosed.complete(),this.componentInstance=null,this._overlayRef.dispose()}),e.keydownEvents().pipe(Tu(e=>27===e.keyCode&&!this.disableClose&&!qm(e))).subscribe(e=>{e.preventDefault(),this.close()})}close(e){this._result=e,this._containerInstance._animationStateChanged.pipe(Tu(e=>\"start\"===e.phaseName),cp(1)).subscribe(t=>{this._beforeClosed.next(e),this._beforeClosed.complete(),this._state=2,this._overlayRef.detachBackdrop(),this._closeFallbackTimeout=setTimeout(()=>{this._overlayRef.dispose()},t.totalTime+100)}),this._containerInstance._startExitAnimation(),this._state=1}afterOpened(){return this._afterOpened.asObservable()}afterClosed(){return this._afterClosed.asObservable()}beforeClosed(){return this._beforeClosed.asObservable()}backdropClick(){return this._overlayRef.backdropClick()}keydownEvents(){return this._overlayRef.keydownEvents()}updatePosition(e){let t=this._getPositionStrategy();return e&&(e.left||e.right)?e.left?t.left(e.left):t.right(e.right):t.centerHorizontally(),e&&(e.top||e.bottom)?e.top?t.top(e.top):t.bottom(e.bottom):t.centerVertically(),this._overlayRef.updatePosition(),this}updateSize(e=\"\",t=\"\"){return this._getPositionStrategy().width(e).height(t),this._overlayRef.updatePosition(),this}addPanelClass(e){return this._overlayRef.addPanelClass(e),this}removePanelClass(e){return this._overlayRef.removePanelClass(e),this}getState(){return this._state}_getPositionStrategy(){return this._overlayRef.getConfig().positionStrategy}}const tw=new Ve(\"MatDialogData\"),nw=new Ve(\"mat-dialog-default-options\"),iw=new Ve(\"mat-dialog-scroll-strategy\"),sw={provide:iw,deps:[Nv],useFactory:function(e){return()=>e.scrollStrategies.block()}};let rw=(()=>{class e{constructor(e,t,n,i,s,r,o){this._overlay=e,this._injector=t,this._defaultOptions=i,this._parentDialog=r,this._overlayContainer=o,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new L,this._afterOpenedAtThisLevel=new L,this._ariaHiddenElements=new Map,this.afterAllClosed=qv(()=>this.openDialogs.length?this._afterAllClosed:this._afterAllClosed.pipe(Rf(void 0))),this._scrollStrategy=s}get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}get _afterAllClosed(){const e=this._parentDialog;return e?e._afterAllClosed:this._afterAllClosedAtThisLevel}open(e,t){if((t=function(e,t){return Object.assign(Object.assign({},t),e)}(t,this._defaultOptions||new Jv)).id&&this.getDialogById(t.id))throw Error(`Dialog with id \"${t.id}\" exists already. The dialog id must be unique.`);const n=this._createOverlay(t),i=this._attachDialogContainer(n,t),s=this._attachDialogContent(e,i,n,t);return this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(s),s.afterClosed().subscribe(()=>this._removeOpenDialog(s)),this.afterOpened.next(s),s}closeAll(){this._closeDialogs(this.openDialogs)}getDialogById(e){return this.openDialogs.find(t=>t.id===e)}ngOnDestroy(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}_createOverlay(e){const t=this._getOverlayConfig(e);return this._overlay.create(t)}_getOverlayConfig(e){const t=new Lv({positionStrategy:this._overlay.position().global(),scrollStrategy:e.scrollStrategy||this._scrollStrategy(),panelClass:e.panelClass,hasBackdrop:e.hasBackdrop,direction:e.direction,minWidth:e.minWidth,minHeight:e.minHeight,maxWidth:e.maxWidth,maxHeight:e.maxHeight,disposeOnNavigation:e.closeOnNavigation});return e.backdropClass&&(t.backdropClass=e.backdropClass),t}_attachDialogContainer(e,t){const n=fo.create({parent:t&&t.viewContainerRef&&t.viewContainerRef.injector||this._injector,providers:[{provide:Jv,useValue:t}]}),i=new dv(Qv,t.viewContainerRef,n,t.componentFactoryResolver);return e.attach(i).instance}_attachDialogContent(e,t,n,i){const s=new ew(n,t,i.id);if(i.hasBackdrop&&n.backdropClick().subscribe(()=>{s.disableClose||s.close()}),e instanceof vl)t.attachTemplatePortal(new uv(e,null,{$implicit:i.data,dialogRef:s}));else{const n=this._createInjector(i,s,t),r=t.attachComponentPortal(new dv(e,i.viewContainerRef,n));s.componentInstance=r.instance}return s.updateSize(i.width,i.height).updatePosition(i.position),s}_createInjector(e,t,n){const i=e&&e.viewContainerRef&&e.viewContainerRef.injector,s=[{provide:Qv,useValue:n},{provide:tw,useValue:e.data},{provide:ew,useValue:t}];return!e.direction||i&&i.get(Gp,null)||s.push({provide:Gp,useValue:{value:e.direction,change:xu()}}),fo.create({parent:i||this._injector,providers:s})}_removeOpenDialog(e){const t=this.openDialogs.indexOf(e);t>-1&&(this.openDialogs.splice(t,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((e,t)=>{e?t.setAttribute(\"aria-hidden\",e):t.removeAttribute(\"aria-hidden\")}),this._ariaHiddenElements.clear(),this._afterAllClosed.next()))}_hideNonDialogContentFromAssistiveTechnology(){const e=this._overlayContainer.getContainerElement();if(e.parentElement){const t=e.parentElement.children;for(let n=t.length-1;n>-1;n--){let i=t[n];i===e||\"SCRIPT\"===i.nodeName||\"STYLE\"===i.nodeName||i.hasAttribute(\"aria-live\")||(this._ariaHiddenElements.set(i,i.getAttribute(\"aria-hidden\")),i.setAttribute(\"aria-hidden\",\"true\"))}}}_closeDialogs(e){let t=e.length;for(;t--;)e[t].close()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Nv),Qe(fo),Qe(tu,8),Qe(nw,8),Qe(iw),Qe(e,12),Qe(Ov))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),ow=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[rw,sw],imports:[[Bv,_v,py],py]}),e})();function aw(e){return function(t){const n=new lw(e),i=t.lift(n);return n.caught=i}}class lw{constructor(e){this.selector=e}call(e,t){return t.subscribe(new cw(e,this.selector,this.caught))}}class cw extends R{constructor(e,t,n){super(e),this.selector=t,this.caught=n}error(e){if(!this.isStopped){let n;try{n=this.selector(e,this.caught)}catch(t){return void super.error(t)}this._unsubscribeAndRecycle();const i=new T(this,void 0,void 0);this.add(i);const s=A(this,n,void 0,void 0,i);s!==i&&this.add(s)}}}function dw(e){return t=>t.lift(new uw(e))}class uw{constructor(e){this.callback=e}call(e,t){return t.subscribe(new hw(e,this.callback))}}class hw extends p{constructor(e,t){super(e),this.add(new u(t))}}const mw=[\"*\"];function pw(e){return Error(`Unable to find icon with the name \"${e}\"`)}function fw(e){return Error(\"The URL provided to MatIconRegistry was not trusted as a resource URL \"+`via Angular's DomSanitizer. Attempted URL was \"${e}\".`)}function _w(e){return Error(\"The literal provided to MatIconRegistry was not trusted as safe HTML by \"+`Angular's DomSanitizer. Attempted literal was \"${e}\".`)}class gw{constructor(e,t){this.options=t,e.nodeName?this.svgElement=e:this.url=e}}let yw=(()=>{class e{constructor(e,t,n,i){this._httpClient=e,this._sanitizer=t,this._errorHandler=i,this._svgIconConfigs=new Map,this._iconSetConfigs=new Map,this._cachedIconsByUrl=new Map,this._inProgressUrlFetches=new Map,this._fontCssClassesByAlias=new Map,this._defaultFontSetClass=\"material-icons\",this._document=n}addSvgIcon(e,t,n){return this.addSvgIconInNamespace(\"\",e,t,n)}addSvgIconLiteral(e,t,n){return this.addSvgIconLiteralInNamespace(\"\",e,t,n)}addSvgIconInNamespace(e,t,n,i){return this._addSvgIconConfig(e,t,new gw(n,i))}addSvgIconLiteralInNamespace(e,t,n,i){const s=this._sanitizer.sanitize(Gi.HTML,n);if(!s)throw _w(n);const r=this._createSvgElementForSingleIcon(s,i);return this._addSvgIconConfig(e,t,new gw(r,i))}addSvgIconSet(e,t){return this.addSvgIconSetInNamespace(\"\",e,t)}addSvgIconSetLiteral(e,t){return this.addSvgIconSetLiteralInNamespace(\"\",e,t)}addSvgIconSetInNamespace(e,t,n){return this._addSvgIconSetConfig(e,new gw(t,n))}addSvgIconSetLiteralInNamespace(e,t,n){const i=this._sanitizer.sanitize(Gi.HTML,t);if(!i)throw _w(t);const s=this._svgElementFromString(i);return this._addSvgIconSetConfig(e,new gw(s,n))}registerFontClassAlias(e,t=e){return this._fontCssClassesByAlias.set(e,t),this}classNameForFontAlias(e){return this._fontCssClassesByAlias.get(e)||e}setDefaultFontSetClass(e){return this._defaultFontSetClass=e,this}getDefaultFontSetClass(){return this._defaultFontSetClass}getSvgIconFromUrl(e){const t=this._sanitizer.sanitize(Gi.RESOURCE_URL,e);if(!t)throw fw(e);const n=this._cachedIconsByUrl.get(t);return n?xu(bw(n)):this._loadSvgIconFromConfig(new gw(e)).pipe(Gm(e=>this._cachedIconsByUrl.set(t,e)),H(e=>bw(e)))}getNamedSvgIcon(e,t=\"\"){const n=vw(t,e),i=this._svgIconConfigs.get(n);if(i)return this._getSvgFromConfig(i);const s=this._iconSetConfigs.get(t);return s?this._getSvgFromIconSetConfigs(e,s):Jb(pw(n))}ngOnDestroy(){this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}_getSvgFromConfig(e){return e.svgElement?xu(bw(e.svgElement)):this._loadSvgIconFromConfig(e).pipe(Gm(t=>e.svgElement=t),H(e=>bw(e)))}_getSvgFromIconSetConfigs(e,t){const n=this._extractIconWithNameFromAnySet(e,t);return n?xu(n):ch(t.filter(e=>!e.svgElement).map(e=>this._loadSvgIconSetFromConfig(e).pipe(aw(t=>{const n=`Loading icon set URL: ${this._sanitizer.sanitize(Gi.RESOURCE_URL,e.url)} failed: ${t.message}`;return this._errorHandler?this._errorHandler.handleError(new Error(n)):console.error(n),xu(null)})))).pipe(H(()=>{const n=this._extractIconWithNameFromAnySet(e,t);if(!n)throw pw(e);return n}))}_extractIconWithNameFromAnySet(e,t){for(let n=t.length-1;n>=0;n--){const i=t[n];if(i.svgElement){const t=this._extractSvgIconFromSet(i.svgElement,e,i.options);if(t)return t}}return null}_loadSvgIconFromConfig(e){return this._fetchUrl(e.url).pipe(H(t=>this._createSvgElementForSingleIcon(t,e.options)))}_loadSvgIconSetFromConfig(e){return e.svgElement?xu(e.svgElement):this._fetchUrl(e.url).pipe(H(t=>(e.svgElement||(e.svgElement=this._svgElementFromString(t)),e.svgElement)))}_createSvgElementForSingleIcon(e,t){const n=this._svgElementFromString(e);return this._setSvgAttributes(n,t),n}_extractSvgIconFromSet(e,t,n){const i=e.querySelector(`[id=\"${t}\"]`);if(!i)return null;const s=i.cloneNode(!0);if(s.removeAttribute(\"id\"),\"svg\"===s.nodeName.toLowerCase())return this._setSvgAttributes(s,n);if(\"symbol\"===s.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(s),n);const r=this._svgElementFromString(\"\");return r.appendChild(s),this._setSvgAttributes(r,n)}_svgElementFromString(e){const t=this._document.createElement(\"DIV\");t.innerHTML=e;const n=t.querySelector(\"svg\");if(!n)throw Error(\" tag not found\");return n}_toSvgElement(e){const t=this._svgElementFromString(\"\"),n=e.attributes;for(let i=0;ithis._inProgressUrlFetches.delete(t)),se());return this._inProgressUrlFetches.set(t,i),i}_addSvgIconConfig(e,t,n){return this._svgIconConfigs.set(vw(e,t),n),this}_addSvgIconSetConfig(e,t){const n=this._iconSetConfigs.get(e);return n?n.push(t):this._iconSetConfigs.set(e,[t]),this}}return e.\\u0275fac=function(t){return new(t||e)(Qe(qu,8),Qe(Df),Qe(Nd,8),Qe(hi,8))},e.\\u0275prov=pe({factory:function(){return new e(Qe(qu,8),Qe(Df),Qe(Nd,8),Qe(hi,8))},token:e,providedIn:\"root\"}),e})();function bw(e){return e.cloneNode(!0)}function vw(e,t){return e+\":\"+t}class ww{constructor(e){this._elementRef=e}}const Mw=_y(ww),kw=new Ve(\"mat-icon-location\",{providedIn:\"root\",factory:function(){const e=Xe(Nd),t=e?e.location:null;return{getPathname:()=>t?t.pathname+t.search:\"\"}}}),Sw=[\"clip-path\",\"color-profile\",\"src\",\"cursor\",\"fill\",\"filter\",\"marker\",\"marker-start\",\"marker-mid\",\"marker-end\",\"mask\",\"stroke\"],Lw=Sw.map(e=>`[${e}]`).join(\", \"),xw=/^url\\(['\"]?#(.*?)['\"]?\\)$/;let Cw=(()=>{class e extends Mw{constructor(e,t,n,i,s){super(e),this._iconRegistry=t,this._location=i,this._errorHandler=s,this._inline=!1,n||e.nativeElement.setAttribute(\"aria-hidden\",\"true\")}get inline(){return this._inline}set inline(e){this._inline=hp(e)}get fontSet(){return this._fontSet}set fontSet(e){this._fontSet=this._cleanupFontValue(e)}get fontIcon(){return this._fontIcon}set fontIcon(e){this._fontIcon=this._cleanupFontValue(e)}_splitIconName(e){if(!e)return[\"\",\"\"];const t=e.split(\":\");switch(t.length){case 1:return[\"\",t[0]];case 2:return t;default:throw Error(`Invalid icon name: \"${e}\"`)}}ngOnChanges(e){const t=e.svgIcon;if(t)if(this.svgIcon){const[e,t]=this._splitIconName(this.svgIcon);this._iconRegistry.getNamedSvgIcon(t,e).pipe(cp(1)).subscribe(e=>this._setSvgElement(e),n=>{const i=`Error retrieving icon ${e}:${t}! ${n.message}`;this._errorHandler?this._errorHandler.handleError(new Error(i)):console.error(i)})}else t.previousValue&&this._clearSvgElement();this._usingFontIcon()&&this._updateFontIconClasses()}ngOnInit(){this._usingFontIcon()&&this._updateFontIconClasses()}ngAfterViewChecked(){const e=this._elementsWithExternalReferences;if(e&&this._location&&e.size){const e=this._location.getPathname();e!==this._previousPath&&(this._previousPath=e,this._prependPathToReferences(e))}}ngOnDestroy(){this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear()}_usingFontIcon(){return!this.svgIcon}_setSvgElement(e){this._clearSvgElement();const t=e.querySelectorAll(\"style\");for(let n=0;n{t.forEach(t=>{n.setAttribute(t.name,`url('${e}#${t.value}')`)})})}_cacheChildrenWithExternalReferences(e){const t=e.querySelectorAll(Lw),n=this._elementsWithExternalReferences=this._elementsWithExternalReferences||new Map;for(let i=0;i{const s=t[i],r=s.getAttribute(e),o=r?r.match(xw):null;if(o){let t=n.get(s);t||(t=[],n.set(s,t)),t.push({name:e,value:o[1]})}})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(yw),Oo(\"aria-hidden\"),Eo(kw,8),Eo(hi,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-icon\"]],hostAttrs:[\"role\",\"img\",1,\"mat-icon\",\"notranslate\"],hostVars:4,hostBindings:function(e,t){2&e&&ua(\"mat-icon-inline\",t.inline)(\"mat-icon-no-color\",\"primary\"!==t.color&&\"accent\"!==t.color&&\"warn\"!==t.color)},inputs:{color:\"color\",inline:\"inline\",fontSet:\"fontSet\",fontIcon:\"fontIcon\",svgIcon:\"svgIcon\"},exportAs:[\"matIcon\"],features:[Ya,Ra],ngContentSelectors:mw,decls:1,vars:0,template:function(e,t){1&e&&(Zo(),ea(0))},styles:[\".mat-icon{background-repeat:no-repeat;display:inline-block;fill:currentColor;height:24px;width:24px}.mat-icon.mat-icon-inline{font-size:inherit;height:inherit;line-height:inherit;width:inherit}[dir=rtl] .mat-icon-rtl-mirror{transform:scale(-1, 1)}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon{display:block}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button .mat-icon{margin:auto}\\n\"],encapsulation:2,changeDetection:0}),e})(),Tw=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[py],py]}),e})();const Dw=Sp({passive:!0});let Yw=(()=>{class e{constructor(e,t){this._platform=e,this._ngZone=t,this._monitoredElements=new Map}monitor(e){if(!this._platform.isBrowser)return ap;const t=_p(e),n=this._monitoredElements.get(t);if(n)return n.subject.asObservable();const i=new L,s=\"cdk-text-field-autofilled\",r=e=>{\"cdk-text-field-autofill-start\"!==e.animationName||t.classList.contains(s)?\"cdk-text-field-autofill-end\"===e.animationName&&t.classList.contains(s)&&(t.classList.remove(s),this._ngZone.run(()=>i.next({target:e.target,isAutofilled:!1}))):(t.classList.add(s),this._ngZone.run(()=>i.next({target:e.target,isAutofilled:!0})))};return this._ngZone.runOutsideAngular(()=>{t.addEventListener(\"animationstart\",r,Dw),t.classList.add(\"cdk-text-field-autofill-monitored\")}),this._monitoredElements.set(t,{subject:i,unlisten:()=>{t.removeEventListener(\"animationstart\",r,Dw)}}),i.asObservable()}stopMonitoring(e){const t=_p(e),n=this._monitoredElements.get(t);n&&(n.unlisten(),n.subject.complete(),t.classList.remove(\"cdk-text-field-autofill-monitored\"),t.classList.remove(\"cdk-text-field-autofilled\"),this._monitoredElements.delete(t))}ngOnDestroy(){this._monitoredElements.forEach((e,t)=>this.stopMonitoring(t))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(bp),Qe(ld))},e.\\u0275prov=pe({factory:function(){return new e(Qe(bp),Qe(ld))},token:e,providedIn:\"root\"}),e})(),Ew=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[vp]]}),e})();const Ow=[\"underline\"],Iw=[\"connectionContainer\"],Pw=[\"inputContainer\"],Aw=[\"label\"];function Rw(e,t){1&e&&(Fo(0),Ro(1,\"div\",14),jo(2,\"div\",15),jo(3,\"div\",16),jo(4,\"div\",17),Ho(),Ro(5,\"div\",18),jo(6,\"div\",15),jo(7,\"div\",16),jo(8,\"div\",17),Ho(),No())}function Hw(e,t){1&e&&(Ro(0,\"div\",19),ea(1,1),Ho())}function jw(e,t){if(1&e&&(Fo(0),ea(1,2),Ro(2,\"span\"),Sa(3),Ho(),No()),2&e){const e=Jo(2);ys(3),La(e._control.placeholder)}}function Fw(e,t){1&e&&ea(0,3,[\"*ngSwitchCase\",\"true\"])}function Nw(e,t){1&e&&(Ro(0,\"span\",23),Sa(1,\" *\"),Ho())}function zw(e,t){if(1&e){const e=zo();Ro(0,\"label\",20,21),Uo(\"cdkObserveContent\",(function(){return en(e),Jo().updateOutlineGap()})),Do(2,jw,4,1,\"ng-container\",12),Do(3,Fw,1,0,void 0,12),Do(4,Nw,2,0,\"span\",22),Ho()}if(2&e){const e=Jo();ua(\"mat-empty\",e._control.empty&&!e._shouldAlwaysFloat)(\"mat-form-field-empty\",e._control.empty&&!e._shouldAlwaysFloat)(\"mat-accent\",\"accent\"==e.color)(\"mat-warn\",\"warn\"==e.color),Po(\"cdkObserveContentDisabled\",\"outline\"!=e.appearance)(\"id\",e._labelId)(\"ngSwitch\",e._hasLabel()),Co(\"for\",e._control.id)(\"aria-owns\",e._control.id),ys(2),Po(\"ngSwitchCase\",!1),ys(1),Po(\"ngSwitchCase\",!0),ys(1),Po(\"ngIf\",!e.hideRequiredMarker&&e._control.required&&!e._control.disabled)}}function Vw(e,t){1&e&&(Ro(0,\"div\",24),ea(1,4),Ho())}function Ww(e,t){if(1&e&&(Ro(0,\"div\",25,26),jo(2,\"span\",27),Ho()),2&e){const e=Jo();ys(2),ua(\"mat-accent\",\"accent\"==e.color)(\"mat-warn\",\"warn\"==e.color)}}function Uw(e,t){1&e&&(Ro(0,\"div\"),ea(1,5),Ho()),2&e&&Po(\"@transitionMessages\",Jo()._subscriptAnimationState)}function $w(e,t){if(1&e&&(Ro(0,\"div\",31),Sa(1),Ho()),2&e){const e=Jo(2);Po(\"id\",e._hintLabelId),ys(1),La(e.hintLabel)}}function Bw(e,t){if(1&e&&(Ro(0,\"div\",28),Do(1,$w,2,2,\"div\",29),ea(2,6),jo(3,\"div\",30),ea(4,7),Ho()),2&e){const e=Jo();Po(\"@transitionMessages\",e._subscriptAnimationState),ys(1),Po(\"ngIf\",e.hintLabel)}}const qw=[\"*\",[[\"\",\"matPrefix\",\"\"]],[[\"mat-placeholder\"]],[[\"mat-label\"]],[[\"\",\"matSuffix\",\"\"]],[[\"mat-error\"]],[[\"mat-hint\",3,\"align\",\"end\"]],[[\"mat-hint\",\"align\",\"end\"]]],Gw=[\"*\",\"[matPrefix]\",\"mat-placeholder\",\"mat-label\",\"[matSuffix]\",\"mat-error\",\"mat-hint:not([align='end'])\",\"mat-hint[align='end']\"];let Jw=0,Kw=(()=>{class e{constructor(){this.id=`mat-error-${Jw++}`}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-error\"]],hostAttrs:[\"role\",\"alert\",1,\"mat-error\"],hostVars:1,hostBindings:function(e,t){2&e&&Co(\"id\",t.id)},inputs:{id:\"id\"}}),e})();const Zw={transitionMessages:jf(\"transitionMessages\",[Wf(\"enter\",Vf({opacity:1,transform:\"translateY(0%)\"})),Uf(\"void => enter\",[Vf({opacity:0,transform:\"translateY(-100%)\"}),Ff(\"300ms cubic-bezier(0.55, 0, 0.55, 0.2)\")])])};let Qw=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e}),e})();function Xw(e){return Error(`A hint was already declared for 'align=\"${e}\"'.`)}let eM=0,tM=(()=>{class e{constructor(){this.align=\"start\",this.id=`mat-hint-${eM++}`}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-hint\"]],hostAttrs:[1,\"mat-hint\"],hostVars:4,hostBindings:function(e,t){2&e&&(Co(\"id\",t.id)(\"align\",null),ua(\"mat-right\",\"end\"==t.align))},inputs:{align:\"align\",id:\"id\"}}),e})(),nM=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-label\"]]}),e})(),iM=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-placeholder\"]]}),e})(),sM=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"matPrefix\",\"\"]]}),e})(),rM=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"matSuffix\",\"\"]]}),e})(),oM=0;class aM{constructor(e){this._elementRef=e}}const lM=_y(aM,\"primary\"),cM=new Ve(\"MAT_FORM_FIELD_DEFAULT_OPTIONS\");let dM=(()=>{class e extends lM{constructor(e,t,n,i,s,r,o,a){super(e),this._elementRef=e,this._changeDetectorRef=t,this._dir=i,this._defaults=s,this._platform=r,this._ngZone=o,this._outlineGapCalculationNeededImmediately=!1,this._outlineGapCalculationNeededOnStable=!1,this._destroyed=new L,this._showAlwaysAnimate=!1,this._subscriptAnimationState=\"\",this._hintLabel=\"\",this._hintLabelId=`mat-hint-${oM++}`,this._labelId=`mat-form-field-label-${oM++}`,this._labelOptions=n||{},this.floatLabel=this._getDefaultFloatLabelState(),this._animationsEnabled=\"NoopAnimations\"!==a,this.appearance=s&&s.appearance?s.appearance:\"legacy\",this._hideRequiredMarker=!(!s||null==s.hideRequiredMarker)&&s.hideRequiredMarker}get appearance(){return this._appearance}set appearance(e){const t=this._appearance;this._appearance=e||this._defaults&&this._defaults.appearance||\"legacy\",\"outline\"===this._appearance&&t!==e&&(this._outlineGapCalculationNeededOnStable=!0)}get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(e){this._hideRequiredMarker=hp(e)}get _shouldAlwaysFloat(){return\"always\"===this.floatLabel&&!this._showAlwaysAnimate}get _canLabelFloat(){return\"never\"!==this.floatLabel}get hintLabel(){return this._hintLabel}set hintLabel(e){this._hintLabel=e,this._processHints()}get floatLabel(){return\"legacy\"!==this.appearance&&\"never\"===this._floatLabel?\"auto\":this._floatLabel}set floatLabel(e){e!==this._floatLabel&&(this._floatLabel=e||this._getDefaultFloatLabelState(),this._changeDetectorRef.markForCheck())}get _control(){return this._explicitFormFieldControl||this._controlNonStatic||this._controlStatic}set _control(e){this._explicitFormFieldControl=e}get _labelChild(){return this._labelChildNonStatic||this._labelChildStatic}getConnectedOverlayOrigin(){return this._connectionContainerRef||this._elementRef}ngAfterContentInit(){this._validateControlChild();const e=this._control;e.controlType&&this._elementRef.nativeElement.classList.add(`mat-form-field-type-${e.controlType}`),e.stateChanges.pipe(Rf(null)).subscribe(()=>{this._validatePlaceholders(),this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),e.ngControl&&e.ngControl.valueChanges&&e.ngControl.valueChanges.pipe(Nb(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck()),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.asObservable().pipe(Nb(this._destroyed)).subscribe(()=>{this._outlineGapCalculationNeededOnStable&&this.updateOutlineGap()})}),G(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(()=>{this._outlineGapCalculationNeededOnStable=!0,this._changeDetectorRef.markForCheck()}),this._hintChildren.changes.pipe(Rf(null)).subscribe(()=>{this._processHints(),this._changeDetectorRef.markForCheck()}),this._errorChildren.changes.pipe(Rf(null)).subscribe(()=>{this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),this._dir&&this._dir.change.pipe(Nb(this._destroyed)).subscribe(()=>{\"function\"==typeof requestAnimationFrame?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>this.updateOutlineGap())}):this.updateOutlineGap()})}ngAfterContentChecked(){this._validateControlChild(),this._outlineGapCalculationNeededImmediately&&this.updateOutlineGap()}ngAfterViewInit(){this._subscriptAnimationState=\"enter\",this._changeDetectorRef.detectChanges()}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_shouldForward(e){const t=this._control?this._control.ngControl:null;return t&&t[e]}_hasPlaceholder(){return!!(this._control&&this._control.placeholder||this._placeholderChild)}_hasLabel(){return!!this._labelChild}_shouldLabelFloat(){return this._canLabelFloat&&(this._control.shouldLabelFloat||this._shouldAlwaysFloat)}_hideControlPlaceholder(){return\"legacy\"===this.appearance&&!this._hasLabel()||this._hasLabel()&&!this._shouldLabelFloat()}_hasFloatingLabel(){return this._hasLabel()||\"legacy\"===this.appearance&&this._hasPlaceholder()}_getDisplayedMessages(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?\"error\":\"hint\"}_animateAndLockLabel(){this._hasFloatingLabel()&&this._canLabelFloat&&(this._animationsEnabled&&this._label&&(this._showAlwaysAnimate=!0,Mb(this._label.nativeElement,\"transitionend\").pipe(cp(1)).subscribe(()=>{this._showAlwaysAnimate=!1})),this.floatLabel=\"always\",this._changeDetectorRef.markForCheck())}_validatePlaceholders(){if(this._control.placeholder&&this._placeholderChild)throw Error(\"Placeholder attribute and child element were both specified.\")}_processHints(){this._validateHints(),this._syncDescribedByIds()}_validateHints(){if(this._hintChildren){let e,t;this._hintChildren.forEach(n=>{if(\"start\"===n.align){if(e||this.hintLabel)throw Xw(\"start\");e=n}else if(\"end\"===n.align){if(t)throw Xw(\"end\");t=n}})}}_getDefaultFloatLabelState(){return this._defaults&&this._defaults.floatLabel||this._labelOptions.float||\"auto\"}_syncDescribedByIds(){if(this._control){let e=[];if(\"hint\"===this._getDisplayedMessages()){const t=this._hintChildren?this._hintChildren.find(e=>\"start\"===e.align):null,n=this._hintChildren?this._hintChildren.find(e=>\"end\"===e.align):null;t?e.push(t.id):this._hintLabel&&e.push(this._hintLabelId),n&&e.push(n.id)}else this._errorChildren&&(e=this._errorChildren.map(e=>e.id));this._control.setDescribedByIds(e)}}_validateControlChild(){if(!this._control)throw Error(\"mat-form-field must contain a MatFormFieldControl.\")}updateOutlineGap(){const e=this._label?this._label.nativeElement:null;if(\"outline\"!==this.appearance||!e||!e.children.length||!e.textContent.trim())return;if(!this._platform.isBrowser)return;if(!this._isAttachedToDOM())return void(this._outlineGapCalculationNeededImmediately=!0);let t=0,n=0;const i=this._connectionContainerRef.nativeElement,s=i.querySelectorAll(\".mat-form-field-outline-start\"),r=i.querySelectorAll(\".mat-form-field-outline-gap\");if(this._label&&this._label.nativeElement.children.length){const s=i.getBoundingClientRect();if(0===s.width&&0===s.height)return this._outlineGapCalculationNeededOnStable=!0,void(this._outlineGapCalculationNeededImmediately=!1);const r=this._getStartEnd(s),o=this._getStartEnd(e.children[0].getBoundingClientRect());let a=0;for(const t of e.children)a+=t.offsetWidth;t=o-r-5,n=a>0?.75*a+10:0}for(let o=0;o{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu,Ep]]}),e})();const hM=new Ve(\"MAT_INPUT_VALUE_ACCESSOR\"),mM=[\"button\",\"checkbox\",\"file\",\"hidden\",\"image\",\"radio\",\"range\",\"reset\",\"submit\"];let pM=0;class fM{constructor(e,t,n,i){this._defaultErrorStateMatcher=e,this._parentForm=t,this._parentFormGroup=n,this.ngControl=i}}const _M=by(fM);let gM=(()=>{class e extends _M{constructor(e,t,n,i,s,r,o,a,l){super(r,i,s,n),this._elementRef=e,this._platform=t,this.ngControl=n,this._autofillMonitor=a,this._uid=`mat-input-${pM++}`,this._isServer=!1,this._isNativeSelect=!1,this.focused=!1,this.stateChanges=new L,this.controlType=\"mat-input\",this.autofilled=!1,this._disabled=!1,this._required=!1,this._type=\"text\",this._readonly=!1,this._neverEmptyInputTypes=[\"date\",\"datetime\",\"datetime-local\",\"month\",\"time\",\"week\"].filter(e=>Mp().has(e));const c=this._elementRef.nativeElement;this._inputValueAccessor=o||c,this._previousNativeValue=this.value,this.id=this.id,t.IOS&&l.runOutsideAngular(()=>{e.nativeElement.addEventListener(\"keyup\",e=>{let t=e.target;t.value||t.selectionStart||t.selectionEnd||(t.setSelectionRange(1,1),t.setSelectionRange(0,0))})}),this._isServer=!this._platform.isBrowser,this._isNativeSelect=\"select\"===c.nodeName.toLowerCase(),this._isNativeSelect&&(this.controlType=c.multiple?\"mat-native-select-multiple\":\"mat-native-select\")}get disabled(){return this.ngControl&&null!==this.ngControl.disabled?this.ngControl.disabled:this._disabled}set disabled(e){this._disabled=hp(e),this.focused&&(this.focused=!1,this.stateChanges.next())}get id(){return this._id}set id(e){this._id=e||this._uid}get required(){return this._required}set required(e){this._required=hp(e)}get type(){return this._type}set type(e){this._type=e||\"text\",this._validateType(),!this._isTextarea()&&Mp().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}get value(){return this._inputValueAccessor.value}set value(e){e!==this.value&&(this._inputValueAccessor.value=e,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(e){this._readonly=hp(e)}ngOnInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(e=>{this.autofilled=e.isAutofilled,this.stateChanges.next()})}ngOnChanges(){this.stateChanges.next()}ngOnDestroy(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement)}ngDoCheck(){this.ngControl&&this.updateErrorState(),this._dirtyCheckNativeValue()}focus(e){this._elementRef.nativeElement.focus(e)}_focusChanged(e){e===this.focused||this.readonly&&e||(this.focused=e,this.stateChanges.next())}_onInput(){}_isTextarea(){return\"textarea\"===this._elementRef.nativeElement.nodeName.toLowerCase()}_dirtyCheckNativeValue(){const e=this._elementRef.nativeElement.value;this._previousNativeValue!==e&&(this._previousNativeValue=e,this.stateChanges.next())}_validateType(){if(mM.indexOf(this._type)>-1)throw Error(`Input type \"${this._type}\" isn't supported by matInput.`)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let e=this._elementRef.nativeElement.validity;return e&&e.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const e=this._elementRef.nativeElement,t=e.options[0];return this.focused||e.multiple||!this.empty||!!(e.selectedIndex>-1&&t&&t.label)}return this.focused||!this.empty}setDescribedByIds(e){this._ariaDescribedby=e.join(\" \")}onContainerClick(){this.focused||this.focus()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(bp),Eo(wh,10),Eo(bm,8),Eo(Im,8),Eo(vy),Eo(hM,10),Eo(Yw),Eo(ld))},e.\\u0275dir=St({type:e,selectors:[[\"input\",\"matInput\",\"\"],[\"textarea\",\"matInput\",\"\"],[\"select\",\"matNativeControl\",\"\"],[\"input\",\"matNativeControl\",\"\"],[\"textarea\",\"matNativeControl\",\"\"]],hostAttrs:[1,\"mat-input-element\",\"mat-form-field-autofill-control\"],hostVars:10,hostBindings:function(e,t){1&e&&Uo(\"blur\",(function(){return t._focusChanged(!1)}))(\"focus\",(function(){return t._focusChanged(!0)}))(\"input\",(function(){return t._onInput()})),2&e&&(Ca(\"disabled\",t.disabled)(\"required\",t.required),Co(\"id\",t.id)(\"placeholder\",t.placeholder)(\"readonly\",t.readonly&&!t._isNativeSelect||null)(\"aria-describedby\",t._ariaDescribedby||null)(\"aria-invalid\",t.errorState)(\"aria-required\",t.required.toString()),ua(\"mat-input-server\",t._isServer))},inputs:{id:\"id\",disabled:\"disabled\",required:\"required\",type:\"type\",value:\"value\",readonly:\"readonly\",placeholder:\"placeholder\",errorStateMatcher:\"errorStateMatcher\"},exportAs:[\"matInput\"],features:[Ba([{provide:Qw,useExisting:e}]),Ya,Ra]}),e})(),yM=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[vy],imports:[[Ew,uM],Ew,uM]}),e})();function bM(e,t=tp){var n;const i=(n=e)instanceof Date&&!isNaN(+n)?+e-t.now():Math.abs(e);return e=>e.lift(new vM(i,t))}class vM{constructor(e,t){this.delay=e,this.scheduler=t}call(e,t){return t.subscribe(new wM(e,this.delay,this.scheduler))}}class wM extends p{constructor(e,t,n){super(e),this.delay=t,this.scheduler=n,this.queue=[],this.active=!1,this.errored=!1}static dispatch(e){const t=e.source,n=t.queue,i=e.scheduler,s=e.destination;for(;n.length>0&&n[0].time-i.now()<=0;)n.shift().notification.observe(s);if(n.length>0){const t=Math.max(0,n[0].time-i.now());this.schedule(e,t)}else this.unsubscribe(),t.active=!1}_schedule(e){this.active=!0,this.destination.add(e.schedule(wM.dispatch,this.delay,{source:this,destination:this.destination,scheduler:e}))}scheduleNotification(e){if(!0===this.errored)return;const t=this.scheduler,n=new MM(t.now()+this.delay,e);this.queue.push(n),!1===this.active&&this._schedule(t)}_next(e){this.scheduleNotification(Zb.createNext(e))}_error(e){this.errored=!0,this.queue=[],this.destination.error(e),this.unsubscribe()}_complete(){this.scheduleNotification(Zb.createComplete()),this.unsubscribe()}}class MM{constructor(e,t){this.time=e,this.notification=t}}const kM=[\"mat-menu-item\",\"\"],SM=[\"*\"];function LM(e,t){if(1&e){const e=zo();Ro(0,\"div\",0),Uo(\"keydown\",(function(t){return en(e),Jo()._handleKeydown(t)}))(\"click\",(function(){return en(e),Jo().closed.emit(\"click\")}))(\"@transformMenu.start\",(function(t){return en(e),Jo()._onAnimationStart(t)}))(\"@transformMenu.done\",(function(t){return en(e),Jo()._onAnimationDone(t)})),Ro(1,\"div\",1),ea(2),Ho(),Ho()}if(2&e){const e=Jo();Po(\"id\",e.panelId)(\"ngClass\",e._classList)(\"@transformMenu\",e._panelAnimationState),Co(\"aria-label\",e.ariaLabel||null)(\"aria-labelledby\",e.ariaLabelledby||null)(\"aria-describedby\",e.ariaDescribedby||null)}}const xM={transformMenu:jf(\"transformMenu\",[Wf(\"void\",Vf({opacity:0,transform:\"scale(0.8)\"})),Uf(\"void => enter\",Nf([Bf(\".mat-menu-content, .mat-mdc-menu-content\",Ff(\"100ms linear\",Vf({opacity:1}))),Ff(\"120ms cubic-bezier(0, 0, 0.2, 1)\",Vf({transform:\"scale(1)\"}))])),Uf(\"* => void\",Ff(\"100ms 25ms linear\",Vf({opacity:0})))]),fadeInItems:jf(\"fadeInItems\",[Wf(\"showing\",Vf({opacity:1})),Uf(\"void => *\",[Vf({opacity:0}),Ff(\"400ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)\")])])};let CM=(()=>{class e{constructor(e,t,n,i,s,r,o){this._template=e,this._componentFactoryResolver=t,this._appRef=n,this._injector=i,this._viewContainerRef=s,this._document=r,this._changeDetectorRef=o,this._attached=new L}attach(e={}){this._portal||(this._portal=new uv(this._template,this._viewContainerRef)),this.detach(),this._outlet||(this._outlet=new pv(this._document.createElement(\"div\"),this._componentFactoryResolver,this._appRef,this._injector));const t=this._template.elementRef.nativeElement;t.parentNode.insertBefore(this._outlet.outletElement,t),this._changeDetectorRef&&this._changeDetectorRef.markForCheck(),this._portal.attach(this._outlet,e),this._attached.next()}detach(){this._portal.isAttached&&this._portal.detach()}ngOnDestroy(){this._outlet&&this._outlet.dispose()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(vl),Eo(Ja),Eo(Td),Eo(fo),Eo(Ml),Eo(Nd),Eo(Qr))},e.\\u0275dir=St({type:e,selectors:[[\"ng-template\",\"matMenuContent\",\"\"]]}),e})();const TM=new Ve(\"MAT_MENU_PANEL\");class DM{}const YM=gy(fy(DM));let EM=(()=>{class e extends YM{constructor(e,t,n,i){super(),this._elementRef=e,this._focusMonitor=n,this._parentMenu=i,this.role=\"menuitem\",this._hovered=new L,this._focused=new L,this._highlighted=!1,this._triggersSubmenu=!1,n&&n.monitor(this._elementRef,!1),i&&i.addItem&&i.addItem(this),this._document=t}focus(e=\"program\",t){this._focusMonitor?this._focusMonitor.focusVia(this._getHostElement(),e,t):this._getHostElement().focus(t),this._focused.next(this)}ngOnDestroy(){this._focusMonitor&&this._focusMonitor.stopMonitoring(this._elementRef),this._parentMenu&&this._parentMenu.removeItem&&this._parentMenu.removeItem(this),this._hovered.complete(),this._focused.complete()}_getTabIndex(){return this.disabled?\"-1\":\"0\"}_getHostElement(){return this._elementRef.nativeElement}_checkDisabled(e){this.disabled&&(e.preventDefault(),e.stopPropagation())}_handleMouseEnter(){this._hovered.next(this)}getLabel(){const e=this._elementRef.nativeElement,t=this._document?this._document.TEXT_NODE:3;let n=\"\";if(e.childNodes){const i=e.childNodes.length;for(let s=0;s{class e{constructor(e,t,n){this._elementRef=e,this._ngZone=t,this._defaultOptions=n,this._xPosition=this._defaultOptions.xPosition,this._yPosition=this._defaultOptions.yPosition,this._directDescendantItems=new vc,this._tabSubscription=u.EMPTY,this._classList={},this._panelAnimationState=\"void\",this._animationDone=new L,this.backdropClass=this._defaultOptions.backdropClass,this._overlapTrigger=this._defaultOptions.overlapTrigger,this._hasBackdrop=this._defaultOptions.hasBackdrop,this.closed=new yc,this.close=this.closed,this.panelId=`mat-menu-panel-${IM++}`}get xPosition(){return this._xPosition}set xPosition(e){\"before\"!==e&&\"after\"!==e&&function(){throw Error('xPosition value must be either \\'before\\' or after\\'.\\n Example: ')}(),this._xPosition=e,this.setPositionClasses()}get yPosition(){return this._yPosition}set yPosition(e){\"above\"!==e&&\"below\"!==e&&function(){throw Error('yPosition value must be either \\'above\\' or below\\'.\\n Example: ')}(),this._yPosition=e,this.setPositionClasses()}get overlapTrigger(){return this._overlapTrigger}set overlapTrigger(e){this._overlapTrigger=hp(e)}get hasBackdrop(){return this._hasBackdrop}set hasBackdrop(e){this._hasBackdrop=hp(e)}set panelClass(e){const t=this._previousPanelClass;t&&t.length&&t.split(\" \").forEach(e=>{this._classList[e]=!1}),this._previousPanelClass=e,e&&e.length&&(e.split(\" \").forEach(e=>{this._classList[e]=!0}),this._elementRef.nativeElement.className=\"\")}get classList(){return this.panelClass}set classList(e){this.panelClass=e}ngOnInit(){this.setPositionClasses()}ngAfterContentInit(){this._updateDirectDescendants(),this._keyManager=new Pp(this._directDescendantItems).withWrap().withTypeAhead(),this._tabSubscription=this._keyManager.tabOut.subscribe(()=>this.closed.emit(\"tab\")),this._directDescendantItems.changes.pipe(Rf(this._directDescendantItems),Wb(e=>G(...e.map(e=>e._focused)))).subscribe(e=>this._keyManager.updateActiveItem(e))}ngOnDestroy(){this._directDescendantItems.destroy(),this._tabSubscription.unsubscribe(),this.closed.complete()}_hovered(){return this._directDescendantItems.changes.pipe(Rf(this._directDescendantItems),Wb(e=>G(...e.map(e=>e._hovered))))}addItem(e){}removeItem(e){}_handleKeydown(e){const t=e.keyCode,n=this._keyManager;switch(t){case 27:qm(e)||(e.preventDefault(),this.closed.emit(\"keydown\"));break;case 37:this.parentMenu&&\"ltr\"===this.direction&&this.closed.emit(\"keydown\");break;case 39:this.parentMenu&&\"rtl\"===this.direction&&this.closed.emit(\"keydown\");break;case 36:case 35:qm(e)||(36===t?n.setFirstItemActive():n.setLastItemActive(),e.preventDefault());break;default:38!==t&&40!==t||n.setFocusOrigin(\"keyboard\"),n.onKeydown(e)}}focusFirstItem(e=\"program\"){this.lazyContent?this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(()=>this._focusFirstItem(e)):this._focusFirstItem(e)}_focusFirstItem(e){const t=this._keyManager;if(t.setFocusOrigin(e).setFirstItemActive(),!t.activeItem&&this._directDescendantItems.length){let e=this._directDescendantItems.first._getHostElement().parentElement;for(;e;){if(\"menu\"===e.getAttribute(\"role\")){e.focus();break}e=e.parentElement}}}resetActiveItem(){this._keyManager.setActiveItem(-1)}setElevation(e){const t=`mat-elevation-z${Math.min(4+e,24)}`,n=Object.keys(this._classList).find(e=>e.startsWith(\"mat-elevation-z\"));n&&n!==this._previousElevation||(this._previousElevation&&(this._classList[this._previousElevation]=!1),this._classList[t]=!0,this._previousElevation=t)}setPositionClasses(e=this.xPosition,t=this.yPosition){const n=this._classList;n[\"mat-menu-before\"]=\"before\"===e,n[\"mat-menu-after\"]=\"after\"===e,n[\"mat-menu-above\"]=\"above\"===t,n[\"mat-menu-below\"]=\"below\"===t}_startAnimation(){this._panelAnimationState=\"enter\"}_resetAnimation(){this._panelAnimationState=\"void\"}_onAnimationDone(e){this._animationDone.next(e),this._isAnimating=!1}_onAnimationStart(e){this._isAnimating=!0,\"enter\"===e.toState&&0===this._keyManager.activeItemIndex&&(e.element.scrollTop=0)}_updateDirectDescendants(){this._allItems.changes.pipe(Rf(this._allItems)).subscribe(e=>{this._directDescendantItems.reset(e.filter(e=>e._parentMenu===this)),this._directDescendantItems.notifyOnChanges()})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(ld),Eo(OM))},e.\\u0275dir=St({type:e,contentQueries:function(e,t,n){var i;1&e&&(Ic(n,CM,!0),Ic(n,EM,!0),Ic(n,EM,!1)),2&e&&(Dc(i=Rc())&&(t.lazyContent=i.first),Dc(i=Rc())&&(t._allItems=i),Dc(i=Rc())&&(t.items=i))},viewQuery:function(e,t){var n;1&e&&Ec(vl,!0),2&e&&Dc(n=Rc())&&(t.templateRef=n.first)},inputs:{backdropClass:\"backdropClass\",xPosition:\"xPosition\",yPosition:\"yPosition\",overlapTrigger:\"overlapTrigger\",hasBackdrop:\"hasBackdrop\",panelClass:[\"class\",\"panelClass\"],classList:\"classList\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],ariaDescribedby:[\"aria-describedby\",\"ariaDescribedby\"]},outputs:{closed:\"closed\",close:\"close\"}}),e})(),AM=(()=>{class e extends PM{}return e.\\u0275fac=function(t){return RM(t||e)},e.\\u0275dir=St({type:e,features:[Ya]}),e})();const RM=li(AM);let HM=(()=>{class e extends AM{constructor(e,t,n){super(e,t,n)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(ld),Eo(OM))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-menu\"]],exportAs:[\"matMenu\"],features:[Ba([{provide:TM,useExisting:AM},{provide:AM,useExisting:e}]),Ya],ngContentSelectors:SM,decls:1,vars:0,consts:[[\"tabindex\",\"-1\",\"role\",\"menu\",1,\"mat-menu-panel\",3,\"id\",\"ngClass\",\"keydown\",\"click\"],[1,\"mat-menu-content\"]],template:function(e,t){1&e&&(Zo(),Do(0,LM,3,6,\"ng-template\"))},directives:[cu],styles:['.mat-menu-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;max-height:calc(100vh - 48px);border-radius:4px;outline:0;min-height:64px}.mat-menu-panel.ng-animating{pointer-events:none}.cdk-high-contrast-active .mat-menu-panel{outline:solid 1px}.mat-menu-content:not(:empty){padding-top:8px;padding-bottom:8px}.mat-menu-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative}.mat-menu-item::-moz-focus-inner{border:0}.mat-menu-item[disabled]{cursor:default}[dir=rtl] .mat-menu-item{text-align:right}.mat-menu-item .mat-icon{margin-right:16px;vertical-align:middle}.mat-menu-item .mat-icon svg{vertical-align:top}[dir=rtl] .mat-menu-item .mat-icon{margin-left:16px;margin-right:0}.mat-menu-item[disabled]{pointer-events:none}.cdk-high-contrast-active .mat-menu-item.cdk-program-focused,.cdk-high-contrast-active .mat-menu-item.cdk-keyboard-focused,.cdk-high-contrast-active .mat-menu-item-highlighted{outline:dotted 1px}.mat-menu-item-submenu-trigger{padding-right:32px}.mat-menu-item-submenu-trigger::after{width:0;height:0;border-style:solid;border-width:5px 0 5px 5px;border-color:transparent transparent transparent currentColor;content:\"\";display:inline-block;position:absolute;top:50%;right:16px;transform:translateY(-50%)}[dir=rtl] .mat-menu-item-submenu-trigger{padding-right:16px;padding-left:32px}[dir=rtl] .mat-menu-item-submenu-trigger::after{right:auto;left:16px;transform:rotateY(180deg) translateY(-50%)}button.mat-menu-item{width:100%}.mat-menu-item .mat-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}\\n'],encapsulation:2,data:{animation:[xM.transformMenu,xM.fadeInItems]},changeDetection:0}),e})();const jM=new Ve(\"mat-menu-scroll-strategy\"),FM={provide:jM,deps:[Nv],useFactory:function(e){return()=>e.scrollStrategies.reposition()}},NM=Sp({passive:!0});let zM=(()=>{class e{constructor(e,t,n,i,s,r,o,a){this._overlay=e,this._element=t,this._viewContainerRef=n,this._parentMenu=s,this._menuItemInstance=r,this._dir=o,this._focusMonitor=a,this._overlayRef=null,this._menuOpen=!1,this._closingActionsSubscription=u.EMPTY,this._hoverSubscription=u.EMPTY,this._menuCloseSubscription=u.EMPTY,this._handleTouchStart=()=>this._openedBy=\"touch\",this._openedBy=null,this.restoreFocus=!0,this.menuOpened=new yc,this.onMenuOpen=this.menuOpened,this.menuClosed=new yc,this.onMenuClose=this.menuClosed,t.nativeElement.addEventListener(\"touchstart\",this._handleTouchStart,NM),r&&(r._triggersSubmenu=this.triggersSubmenu()),this._scrollStrategy=i}get _deprecatedMatMenuTriggerFor(){return this.menu}set _deprecatedMatMenuTriggerFor(e){this.menu=e}get menu(){return this._menu}set menu(e){e!==this._menu&&(this._menu=e,this._menuCloseSubscription.unsubscribe(),e&&(this._menuCloseSubscription=e.close.asObservable().subscribe(e=>{this._destroyMenu(),\"click\"!==e&&\"tab\"!==e||!this._parentMenu||this._parentMenu.closed.emit(e)})))}ngAfterContentInit(){this._checkMenu(),this._handleHover()}ngOnDestroy(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null),this._element.nativeElement.removeEventListener(\"touchstart\",this._handleTouchStart,NM),this._menuCloseSubscription.unsubscribe(),this._closingActionsSubscription.unsubscribe(),this._hoverSubscription.unsubscribe()}get menuOpen(){return this._menuOpen}get dir(){return this._dir&&\"rtl\"===this._dir.value?\"rtl\":\"ltr\"}triggersSubmenu(){return!(!this._menuItemInstance||!this._parentMenu)}toggleMenu(){return this._menuOpen?this.closeMenu():this.openMenu()}openMenu(){if(this._menuOpen)return;this._checkMenu();const e=this._createOverlay(),t=e.getConfig();this._setPosition(t.positionStrategy),t.hasBackdrop=null==this.menu.hasBackdrop?!this.triggersSubmenu():this.menu.hasBackdrop,e.attach(this._getPortal()),this.menu.lazyContent&&this.menu.lazyContent.attach(this.menuData),this._closingActionsSubscription=this._menuClosingActions().subscribe(()=>this.closeMenu()),this._initMenu(),this.menu instanceof AM&&this.menu._startAnimation()}closeMenu(){this.menu.close.emit()}focus(e=\"program\",t){this._focusMonitor?this._focusMonitor.focusVia(this._element,e,t):this._element.nativeElement.focus(t)}_destroyMenu(){if(!this._overlayRef||!this.menuOpen)return;const e=this.menu;this._closingActionsSubscription.unsubscribe(),this._overlayRef.detach(),this._restoreFocus(),e instanceof AM?(e._resetAnimation(),e.lazyContent?e._animationDone.pipe(Tu(e=>\"void\"===e.toState),cp(1),Nb(e.lazyContent._attached)).subscribe({next:()=>e.lazyContent.detach(),complete:()=>this._setIsMenuOpen(!1)}):this._setIsMenuOpen(!1)):(this._setIsMenuOpen(!1),e.lazyContent&&e.lazyContent.detach())}_initMenu(){this.menu.parentMenu=this.triggersSubmenu()?this._parentMenu:void 0,this.menu.direction=this.dir,this._setMenuElevation(),this._setIsMenuOpen(!0),this.menu.focusFirstItem(this._openedBy||\"program\")}_setMenuElevation(){if(this.menu.setElevation){let e=0,t=this.menu.parentMenu;for(;t;)e++,t=t.parentMenu;this.menu.setElevation(e)}}_restoreFocus(){this.restoreFocus&&(this._openedBy?this.triggersSubmenu()||this.focus(this._openedBy):this.focus()),this._openedBy=null}_setIsMenuOpen(e){this._menuOpen=e,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this.triggersSubmenu()&&(this._menuItemInstance._highlighted=e)}_checkMenu(){this.menu||function(){throw Error('matMenuTriggerFor: must pass in an mat-menu instance.\\n\\n Example:\\n \\n ')}()}_createOverlay(){if(!this._overlayRef){const e=this._getOverlayConfig();this._subscribeToPositions(e.positionStrategy),this._overlayRef=this._overlay.create(e),this._overlayRef.keydownEvents().subscribe()}return this._overlayRef}_getOverlayConfig(){return new Lv({positionStrategy:this._overlay.position().flexibleConnectedTo(this._element).withLockedPosition().withTransformOriginOn(\".mat-menu-panel, .mat-mdc-menu-panel\"),backdropClass:this.menu.backdropClass||\"cdk-overlay-transparent-backdrop\",scrollStrategy:this._scrollStrategy(),direction:this._dir})}_subscribeToPositions(e){this.menu.setPositionClasses&&e.positionChanges.subscribe(e=>{this.menu.setPositionClasses(\"start\"===e.connectionPair.overlayX?\"after\":\"before\",\"top\"===e.connectionPair.overlayY?\"below\":\"above\")})}_setPosition(e){let[t,n]=\"before\"===this.menu.xPosition?[\"end\",\"start\"]:[\"start\",\"end\"],[i,s]=\"above\"===this.menu.yPosition?[\"bottom\",\"top\"]:[\"top\",\"bottom\"],[r,o]=[i,s],[a,l]=[t,n],c=0;this.triggersSubmenu()?(l=t=\"before\"===this.menu.xPosition?\"start\":\"end\",n=a=\"end\"===t?\"start\":\"end\",c=\"bottom\"===i?8:-8):this.menu.overlapTrigger||(r=\"top\"===i?\"bottom\":\"top\",o=\"top\"===s?\"bottom\":\"top\"),e.withPositions([{originX:t,originY:r,overlayX:a,overlayY:i,offsetY:c},{originX:n,originY:r,overlayX:l,overlayY:i,offsetY:c},{originX:t,originY:o,overlayX:a,overlayY:s,offsetY:-c},{originX:n,originY:o,overlayX:l,overlayY:s,offsetY:-c}])}_menuClosingActions(){const e=this._overlayRef.backdropClick(),t=this._overlayRef.detachments();return G(e,this._parentMenu?this._parentMenu.closed:xu(),this._parentMenu?this._parentMenu._hovered().pipe(Tu(e=>e!==this._menuItemInstance),Tu(()=>this._menuOpen)):xu(),t)}_handleMousedown(e){$p(e)||(this._openedBy=0===e.button?\"mouse\":null,this.triggersSubmenu()&&e.preventDefault())}_handleKeydown(e){const t=e.keyCode;this.triggersSubmenu()&&(39===t&&\"ltr\"===this.dir||37===t&&\"rtl\"===this.dir)&&this.openMenu()}_handleClick(e){this.triggersSubmenu()?(e.stopPropagation(),this.openMenu()):this.toggleMenu()}_handleHover(){this.triggersSubmenu()&&(this._hoverSubscription=this._parentMenu._hovered().pipe(Tu(e=>e===this._menuItemInstance&&!e.disabled),bM(0,Yb)).subscribe(()=>{this._openedBy=\"mouse\",this.menu instanceof AM&&this.menu._isAnimating?this.menu._animationDone.pipe(cp(1),bM(0,Yb),Nb(this._parentMenu._hovered())).subscribe(()=>this.openMenu()):this.openMenu()}))}_getPortal(){return this._portal&&this._portal.templateRef===this.menu.templateRef||(this._portal=new uv(this.menu.templateRef,this._viewContainerRef)),this._portal}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Nv),Eo(Ka),Eo(Ml),Eo(jM),Eo(AM,8),Eo(EM,10),Eo(Gp,8),Eo(Up))},e.\\u0275dir=St({type:e,selectors:[[\"\",\"mat-menu-trigger-for\",\"\"],[\"\",\"matMenuTriggerFor\",\"\"]],hostAttrs:[\"aria-haspopup\",\"true\",1,\"mat-menu-trigger\"],hostVars:2,hostBindings:function(e,t){1&e&&Uo(\"mousedown\",(function(e){return t._handleMousedown(e)}))(\"keydown\",(function(e){return t._handleKeydown(e)}))(\"click\",(function(e){return t._handleClick(e)})),2&e&&Co(\"aria-expanded\",t.menuOpen||null)(\"aria-controls\",t.menuOpen?t.menu.panelId:null)},inputs:{restoreFocus:[\"matMenuTriggerRestoreFocus\",\"restoreFocus\"],_deprecatedMatMenuTriggerFor:[\"mat-menu-trigger-for\",\"_deprecatedMatMenuTriggerFor\"],menu:[\"matMenuTriggerFor\",\"menu\"],menuData:[\"matMenuTriggerData\",\"menuData\"]},outputs:{menuOpened:\"menuOpened\",onMenuOpen:\"onMenuOpen\",menuClosed:\"menuClosed\",onMenuClose:\"onMenuClose\"},exportAs:[\"matMenuTrigger\"]}),e})(),VM=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[FM],imports:[py]}),e})(),WM=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[FM],imports:[[Mu,py,Ty,Bv,VM],VM]}),e})();const UM=[\"primaryValueBar\"];class $M{constructor(e){this._elementRef=e}}const BM=_y($M,\"primary\"),qM=new Ve(\"mat-progress-bar-location\",{providedIn:\"root\",factory:function(){const e=Xe(Nd),t=e?e.location:null;return{getPathname:()=>t?t.pathname+t.search:\"\"}}});let GM=0,JM=(()=>{class e extends BM{constructor(e,t,n,i){super(e),this._elementRef=e,this._ngZone=t,this._animationMode=n,this._isNoopAnimation=!1,this._value=0,this._bufferValue=0,this.animationEnd=new yc,this._animationEndSubscription=u.EMPTY,this.mode=\"determinate\",this.progressbarId=`mat-progress-bar-${GM++}`;const s=i?i.getPathname().split(\"#\")[0]:\"\";this._rectangleFillValue=`url('${s}#${this.progressbarId}')`,this._isNoopAnimation=\"NoopAnimations\"===n}get value(){return this._value}set value(e){this._value=KM(mp(e)||0)}get bufferValue(){return this._bufferValue}set bufferValue(e){this._bufferValue=KM(e||0)}_primaryTransform(){return{transform:`scaleX(${this.value/100})`}}_bufferTransform(){return\"buffer\"===this.mode?{transform:`scaleX(${this.bufferValue/100})`}:null}ngAfterViewInit(){this._ngZone.runOutsideAngular(()=>{const e=this._primaryValueBar.nativeElement;this._animationEndSubscription=Mb(e,\"transitionend\").pipe(Tu(t=>t.target===e)).subscribe(()=>{\"determinate\"!==this.mode&&\"buffer\"!==this.mode||this._ngZone.run(()=>this.animationEnd.next({value:this.value}))})})}ngOnDestroy(){this._animationEndSubscription.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(ld),Eo(sy,8),Eo(qM,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-progress-bar\"]],viewQuery:function(e,t){var n;1&e&&Ec(UM,!0),2&e&&Dc(n=Rc())&&(t._primaryValueBar=n.first)},hostAttrs:[\"role\",\"progressbar\",\"aria-valuemin\",\"0\",\"aria-valuemax\",\"100\",1,\"mat-progress-bar\"],hostVars:4,hostBindings:function(e,t){2&e&&(Co(\"aria-valuenow\",\"indeterminate\"===t.mode||\"query\"===t.mode?null:t.value)(\"mode\",t.mode),ua(\"_mat-animation-noopable\",t._isNoopAnimation))},inputs:{color:\"color\",mode:\"mode\",value:\"value\",bufferValue:\"bufferValue\"},outputs:{animationEnd:\"animationEnd\"},exportAs:[\"matProgressBar\"],features:[Ya],decls:9,vars:4,consts:[[\"width\",\"100%\",\"height\",\"4\",\"focusable\",\"false\",1,\"mat-progress-bar-background\",\"mat-progress-bar-element\"],[\"x\",\"4\",\"y\",\"0\",\"width\",\"8\",\"height\",\"4\",\"patternUnits\",\"userSpaceOnUse\",3,\"id\"],[\"cx\",\"2\",\"cy\",\"2\",\"r\",\"2\"],[\"width\",\"100%\",\"height\",\"100%\"],[1,\"mat-progress-bar-buffer\",\"mat-progress-bar-element\",3,\"ngStyle\"],[1,\"mat-progress-bar-primary\",\"mat-progress-bar-fill\",\"mat-progress-bar-element\",3,\"ngStyle\"],[\"primaryValueBar\",\"\"],[1,\"mat-progress-bar-secondary\",\"mat-progress-bar-fill\",\"mat-progress-bar-element\"]],template:function(e,t){1&e&&(kn(),Ro(0,\"svg\",0),Ro(1,\"defs\"),Ro(2,\"pattern\",1),jo(3,\"circle\",2),Ho(),Ho(),jo(4,\"rect\",3),Ho(),Sn(),jo(5,\"div\",4),jo(6,\"div\",5,6),jo(8,\"div\",7)),2&e&&(ys(2),Po(\"id\",t.progressbarId),ys(2),Co(\"fill\",t._rectangleFillValue),ys(1),Po(\"ngStyle\",t._bufferTransform()),ys(1),Po(\"ngStyle\",t._primaryTransform()))},directives:[vu],styles:['.mat-progress-bar{display:block;height:4px;overflow:hidden;position:relative;transition:opacity 250ms linear;width:100%}._mat-animation-noopable.mat-progress-bar{transition:none;animation:none}.mat-progress-bar .mat-progress-bar-element,.mat-progress-bar .mat-progress-bar-fill::after{height:100%;position:absolute;width:100%}.mat-progress-bar .mat-progress-bar-background{width:calc(100% + 10px)}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-background{display:none}.mat-progress-bar .mat-progress-bar-buffer{transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-buffer{border-top:solid 5px;opacity:.5}.mat-progress-bar .mat-progress-bar-secondary{display:none}.mat-progress-bar .mat-progress-bar-fill{animation:none;transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-fill{border-top:solid 4px}.mat-progress-bar .mat-progress-bar-fill::after{animation:none;content:\"\";display:inline-block;left:0}.mat-progress-bar[dir=rtl],[dir=rtl] .mat-progress-bar{transform:rotateY(180deg)}.mat-progress-bar[mode=query]{transform:rotateZ(180deg)}.mat-progress-bar[mode=query][dir=rtl],[dir=rtl] .mat-progress-bar[mode=query]{transform:rotateZ(180deg) rotateY(180deg)}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-fill,.mat-progress-bar[mode=query] .mat-progress-bar-fill{transition:none}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary,.mat-progress-bar[mode=query] .mat-progress-bar-primary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-translate 2000ms infinite linear;left:-145.166611%}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-primary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary,.mat-progress-bar[mode=query] .mat-progress-bar-secondary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-translate 2000ms infinite linear;left:-54.888891%;display:block}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-secondary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=buffer] .mat-progress-bar-background{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-background-scroll 250ms infinite linear;display:block}.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-buffer,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-background{animation:none;transition-duration:1ms}@keyframes mat-progress-bar-primary-indeterminate-translate{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(83.67142%)}100%{transform:translateX(200.611057%)}}@keyframes mat-progress-bar-primary-indeterminate-scale{0%{transform:scaleX(0.08)}36.65%{animation-timing-function:cubic-bezier(0.334731, 0.12482, 0.785844, 1);transform:scaleX(0.08)}69.15%{animation-timing-function:cubic-bezier(0.06, 0.11, 0.6, 1);transform:scaleX(0.661479)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-secondary-indeterminate-translate{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(37.651913%)}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(84.386165%)}100%{transform:translateX(160.277782%)}}@keyframes mat-progress-bar-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-background-scroll{to{transform:translateX(-8px)}}\\n'],encapsulation:2,changeDetection:0}),e})();function KM(e,t=0,n=100){return Math.max(t,Math.min(n,e))}let ZM=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu,py],py]}),e})();const QM=[\"trigger\"],XM=[\"panel\"];function ek(e,t){if(1&e&&(Ro(0,\"span\",8),Sa(1),Ho()),2&e){const e=Jo();ys(1),La(e.placeholder||\"\\xa0\")}}function tk(e,t){if(1&e&&(Ro(0,\"span\"),Sa(1),Ho()),2&e){const e=Jo(2);ys(1),La(e.triggerValue||\"\\xa0\")}}function nk(e,t){1&e&&ea(0,0,[\"*ngSwitchCase\",\"true\"])}function ik(e,t){1&e&&(Ro(0,\"span\",9),Do(1,tk,2,1,\"span\",10),Do(2,nk,1,0,void 0,11),Ho()),2&e&&(Po(\"ngSwitch\",!!Jo().customTrigger),ys(2),Po(\"ngSwitchCase\",!0))}function sk(e,t){if(1&e){const e=zo();Ro(0,\"div\",12),Ro(1,\"div\",13,14),Uo(\"@transformPanel.done\",(function(t){return en(e),Jo()._panelDoneAnimatingStream.next(t.toState)}))(\"keydown\",(function(t){return en(e),Jo()._handleKeydown(t)})),ea(3,1),Ho(),Ho()}if(2&e){const e=Jo();Po(\"@transformPanelWrap\",void 0),ys(1),\"mat-select-panel \",n=e._getPanelTheme(),\"\",fa(dt,ma,To(Qt(),\"mat-select-panel \",n,\"\"),!0),da(\"transform-origin\",e._transformOrigin)(\"font-size\",e._triggerFontSize,\"px\"),Po(\"ngClass\",e.panelClass)(\"@transformPanel\",e.multiple?\"showing-multiple\":\"showing\")}var n}const rk=[[[\"mat-select-trigger\"]],\"*\"],ok=[\"mat-select-trigger\",\"*\"],ak={transformPanelWrap:jf(\"transformPanelWrap\",[Uf(\"* => void\",Bf(\"@transformPanel\",[$f()],{optional:!0}))]),transformPanel:jf(\"transformPanel\",[Wf(\"void\",Vf({transform:\"scaleY(0.8)\",minWidth:\"100%\",opacity:0})),Wf(\"showing\",Vf({opacity:1,minWidth:\"calc(100% + 32px)\",transform:\"scaleY(1)\"})),Wf(\"showing-multiple\",Vf({opacity:1,minWidth:\"calc(100% + 64px)\",transform:\"scaleY(1)\"})),Uf(\"void => *\",Ff(\"120ms cubic-bezier(0, 0, 0.2, 1)\")),Uf(\"* => void\",Ff(\"100ms 25ms linear\",Vf({opacity:0})))])};let lk=0;const ck=new Ve(\"mat-select-scroll-strategy\"),dk=new Ve(\"MAT_SELECT_CONFIG\"),uk={provide:ck,deps:[Nv],useFactory:function(e){return()=>e.scrollStrategies.reposition()}};class hk{constructor(e,t){this.source=e,this.value=t}}class mk{constructor(e,t,n,i,s){this._elementRef=e,this._defaultErrorStateMatcher=t,this._parentForm=n,this._parentFormGroup=i,this.ngControl=s}}const pk=gy(yy(fy(by(mk))));let fk=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-select-trigger\"]]}),e})(),_k=(()=>{class e extends pk{constructor(e,t,n,i,s,r,o,a,l,c,d,u,h,m){super(s,i,o,a,c),this._viewportRuler=e,this._changeDetectorRef=t,this._ngZone=n,this._dir=r,this._parentFormField=l,this.ngControl=c,this._liveAnnouncer=h,this._panelOpen=!1,this._required=!1,this._scrollTop=0,this._multiple=!1,this._compareWith=(e,t)=>e===t,this._uid=`mat-select-${lk++}`,this._destroy=new L,this._triggerFontSize=0,this._onChange=()=>{},this._onTouched=()=>{},this._optionIds=\"\",this._transformOrigin=\"top\",this._panelDoneAnimatingStream=new L,this._offsetY=0,this._positions=[{originX:\"start\",originY:\"top\",overlayX:\"start\",overlayY:\"top\"},{originX:\"start\",originY:\"bottom\",overlayX:\"start\",overlayY:\"bottom\"}],this._disableOptionCentering=!1,this._focused=!1,this.controlType=\"mat-select\",this.ariaLabel=\"\",this.optionSelectionChanges=qv(()=>{const e=this.options;return e?e.changes.pipe(Rf(e),Wb(()=>G(...e.map(e=>e.onSelectionChange)))):this._ngZone.onStable.asObservable().pipe(cp(1),Wb(()=>this.optionSelectionChanges))}),this.openedChange=new yc,this._openedStream=this.openedChange.pipe(Tu(e=>e),H(()=>{})),this._closedStream=this.openedChange.pipe(Tu(e=>!e),H(()=>{})),this.selectionChange=new yc,this.valueChange=new yc,this.ngControl&&(this.ngControl.valueAccessor=this),this._scrollStrategyFactory=u,this._scrollStrategy=this._scrollStrategyFactory(),this.tabIndex=parseInt(d)||0,this.id=this.id,m&&(null!=m.disableOptionCentering&&(this.disableOptionCentering=m.disableOptionCentering),null!=m.typeaheadDebounceInterval&&(this.typeaheadDebounceInterval=m.typeaheadDebounceInterval))}get focused(){return this._focused||this._panelOpen}get placeholder(){return this._placeholder}set placeholder(e){this._placeholder=e,this.stateChanges.next()}get required(){return this._required}set required(e){this._required=hp(e),this.stateChanges.next()}get multiple(){return this._multiple}set multiple(e){if(this._selectionModel)throw Error(\"Cannot change `multiple` mode of select after initialization.\");this._multiple=hp(e)}get disableOptionCentering(){return this._disableOptionCentering}set disableOptionCentering(e){this._disableOptionCentering=hp(e)}get compareWith(){return this._compareWith}set compareWith(e){if(\"function\"!=typeof e)throw Error(\"`compareWith` must be a function.\");this._compareWith=e,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(e){e!==this._value&&(this.writeValue(e),this._value=e)}get typeaheadDebounceInterval(){return this._typeaheadDebounceInterval}set typeaheadDebounceInterval(e){this._typeaheadDebounceInterval=mp(e)}get id(){return this._id}set id(e){this._id=e||this._uid,this.stateChanges.next()}ngOnInit(){this._selectionModel=new iv(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe(Eb(),Nb(this._destroy)).subscribe(()=>{this.panelOpen?(this._scrollTop=0,this.openedChange.emit(!0)):(this.openedChange.emit(!1),this.overlayDir.offsetX=0,this._changeDetectorRef.markForCheck())}),this._viewportRuler.change().pipe(Nb(this._destroy)).subscribe(()=>{this._panelOpen&&(this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._changeDetectorRef.markForCheck())})}ngAfterContentInit(){this._initKeyManager(),this._selectionModel.changed.pipe(Nb(this._destroy)).subscribe(e=>{e.added.forEach(e=>e.select()),e.removed.forEach(e=>e.deselect())}),this.options.changes.pipe(Rf(null),Nb(this._destroy)).subscribe(()=>{this._resetOptions(),this._initializeSelection()})}ngDoCheck(){this.ngControl&&this.updateErrorState()}ngOnChanges(e){e.disabled&&this.stateChanges.next(),e.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this._typeaheadDebounceInterval)}ngOnDestroy(){this._destroy.next(),this._destroy.complete(),this.stateChanges.complete()}toggle(){this.panelOpen?this.close():this.open()}open(){!this.disabled&&this.options&&this.options.length&&!this._panelOpen&&(this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._triggerFontSize=parseInt(getComputedStyle(this.trigger.nativeElement).fontSize||\"0\"),this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._calculateOverlayPosition(),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck(),this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(()=>{this._triggerFontSize&&this.overlayDir.overlayRef&&this.overlayDir.overlayRef.overlayElement&&(this.overlayDir.overlayRef.overlayElement.style.fontSize=`${this._triggerFontSize}px`)}))}close(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?\"rtl\":\"ltr\"),this._changeDetectorRef.markForCheck(),this._onTouched())}writeValue(e){this.options&&this._setSelectionByValue(e)}registerOnChange(e){this._onChange=e}registerOnTouched(e){this._onTouched=e}setDisabledState(e){this.disabled=e,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}get panelOpen(){return this._panelOpen}get selected(){return this.multiple?this._selectionModel.selected:this._selectionModel.selected[0]}get triggerValue(){if(this.empty)return\"\";if(this._multiple){const e=this._selectionModel.selected.map(e=>e.viewValue);return this._isRtl()&&e.reverse(),e.join(\", \")}return this._selectionModel.selected[0].viewValue}_isRtl(){return!!this._dir&&\"rtl\"===this._dir.value}_handleKeydown(e){this.disabled||(this.panelOpen?this._handleOpenKeydown(e):this._handleClosedKeydown(e))}_handleClosedKeydown(e){const t=e.keyCode,n=40===t||38===t||37===t||39===t,i=13===t||32===t,s=this._keyManager;if(!s.isTyping()&&i&&!qm(e)||(this.multiple||e.altKey)&&n)e.preventDefault(),this.open();else if(!this.multiple){const n=this.selected;36===t||35===t?(36===t?s.setFirstItemActive():s.setLastItemActive(),e.preventDefault()):s.onKeydown(e);const i=this.selected;i&&n!==i&&this._liveAnnouncer.announce(i.viewValue,1e4)}}_handleOpenKeydown(e){const t=this._keyManager,n=e.keyCode,i=40===n||38===n,s=t.isTyping();if(36===n||35===n)e.preventDefault(),36===n?t.setFirstItemActive():t.setLastItemActive();else if(i&&e.altKey)e.preventDefault(),this.close();else if(s||13!==n&&32!==n||!t.activeItem||qm(e))if(!s&&this._multiple&&65===n&&e.ctrlKey){e.preventDefault();const t=this.options.some(e=>!e.disabled&&!e.selected);this.options.forEach(e=>{e.disabled||(t?e.select():e.deselect())})}else{const n=t.activeItemIndex;t.onKeydown(e),this._multiple&&i&&e.shiftKey&&t.activeItem&&t.activeItemIndex!==n&&t.activeItem._selectViaInteraction()}else e.preventDefault(),t.activeItem._selectViaInteraction()}_onFocus(){this.disabled||(this._focused=!0,this.stateChanges.next())}_onBlur(){this._focused=!1,this.disabled||this.panelOpen||(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_onAttached(){this.overlayDir.positionChange.pipe(cp(1)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this._calculateOverlayOffsetX(),this.panel.nativeElement.scrollTop=this._scrollTop})}_getPanelTheme(){return this._parentFormField?`mat-${this._parentFormField.color}`:\"\"}get empty(){return!this._selectionModel||this._selectionModel.isEmpty()}_initializeSelection(){Promise.resolve().then(()=>{this._setSelectionByValue(this.ngControl?this.ngControl.value:this._value),this.stateChanges.next()})}_setSelectionByValue(e){if(this.multiple&&e){if(!Array.isArray(e))throw Error(\"Value must be an array in multiple-selection mode.\");this._selectionModel.clear(),e.forEach(e=>this._selectValue(e)),this._sortValues()}else{this._selectionModel.clear();const t=this._selectValue(e);t?this._keyManager.setActiveItem(t):this.panelOpen||this._keyManager.setActiveItem(-1)}this._changeDetectorRef.markForCheck()}_selectValue(e){const t=this.options.find(t=>{try{return null!=t.value&&this._compareWith(t.value,e)}catch(n){return Si()&&console.warn(n),!1}});return t&&this._selectionModel.select(t),t}_initKeyManager(){this._keyManager=new Ip(this.options).withTypeAhead(this._typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?\"rtl\":\"ltr\").withAllowedModifierKeys([\"shiftKey\"]),this._keyManager.tabOut.pipe(Nb(this._destroy)).subscribe(()=>{!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction(),this.focus(),this.close()}),this._keyManager.change.pipe(Nb(this._destroy)).subscribe(()=>{this._panelOpen&&this.panel?this._scrollActiveOptionIntoView():this._panelOpen||this.multiple||!this._keyManager.activeItem||this._keyManager.activeItem._selectViaInteraction()})}_resetOptions(){const e=G(this.options.changes,this._destroy);this.optionSelectionChanges.pipe(Nb(e)).subscribe(e=>{this._onSelect(e.source,e.isUserInput),e.isUserInput&&!this.multiple&&this._panelOpen&&(this.close(),this.focus())}),G(...this.options.map(e=>e._stateChanges)).pipe(Nb(e)).subscribe(()=>{this._changeDetectorRef.markForCheck(),this.stateChanges.next()}),this._setOptionIds()}_onSelect(e,t){const n=this._selectionModel.isSelected(e);null!=e.value||this._multiple?(n!==e.selected&&(e.selected?this._selectionModel.select(e):this._selectionModel.deselect(e)),t&&this._keyManager.setActiveItem(e),this.multiple&&(this._sortValues(),t&&this.focus())):(e.deselect(),this._selectionModel.clear(),this._propagateChanges(e.value)),n!==this._selectionModel.isSelected(e)&&this._propagateChanges(),this.stateChanges.next()}_sortValues(){if(this.multiple){const e=this.options.toArray();this._selectionModel.sort((t,n)=>this.sortComparator?this.sortComparator(t,n,e):e.indexOf(t)-e.indexOf(n)),this.stateChanges.next()}}_propagateChanges(e){let t=null;t=this.multiple?this.selected.map(e=>e.value):this.selected?this.selected.value:e,this._value=t,this.valueChange.emit(t),this._onChange(t),this.selectionChange.emit(new hk(this,t)),this._changeDetectorRef.markForCheck()}_setOptionIds(){this._optionIds=this.options.map(e=>e.id).join(\" \")}_highlightCorrectOption(){this._keyManager&&(this.empty?this._keyManager.setFirstItemActive():this._keyManager.setActiveItem(this._selectionModel.selected[0]))}_scrollActiveOptionIntoView(){const e=this._keyManager.activeItemIndex||0,t=Ny(e,this.options,this.optionGroups);this.panel.nativeElement.scrollTop=function(e,t,n,i){const s=e*t;return sn+256?Math.max(0,s-256+t):n}(e+t,this._getItemHeight(),this.panel.nativeElement.scrollTop)}focus(e){this._elementRef.nativeElement.focus(e)}_getOptionIndex(e){return this.options.reduce((t,n,i)=>void 0!==t?t:e===n?i:void 0,void 0)}_calculateOverlayPosition(){const e=this._getItemHeight(),t=this._getItemCount(),n=Math.min(t*e,256),i=t*e-n;let s=this.empty?0:this._getOptionIndex(this._selectionModel.selected[0]);s+=Ny(s,this.options,this.optionGroups);const r=n/2;this._scrollTop=this._calculateOverlayScroll(s,r,i),this._offsetY=this._calculateOverlayOffsetY(s,r,i),this._checkOverlayWithinViewport(i)}_calculateOverlayScroll(e,t,n){const i=this._getItemHeight();return Math.min(Math.max(0,i*e-t+i/2),n)}_getAriaLabel(){return this.ariaLabelledby?null:this.ariaLabel||this.placeholder}_getAriaLabelledby(){return this.ariaLabelledby?this.ariaLabelledby:this._parentFormField&&this._parentFormField._hasFloatingLabel()&&!this._getAriaLabel()&&this._parentFormField._labelId||null}_getAriaActiveDescendant(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}_calculateOverlayOffsetX(){const e=this.overlayDir.overlayRef.overlayElement.getBoundingClientRect(),t=this._viewportRuler.getViewportSize(),n=this._isRtl(),i=this.multiple?56:32;let s;if(this.multiple)s=40;else{let e=this._selectionModel.selected[0]||this.options.first;s=e&&e.group?32:16}n||(s*=-1);const r=0-(e.left+s-(n?i:0)),o=e.right+s-t.width+(n?0:i);r>0?s+=r+8:o>0&&(s-=o+8),this.overlayDir.offsetX=Math.round(s),this.overlayDir.overlayRef.updatePosition()}_calculateOverlayOffsetY(e,t,n){const i=this._getItemHeight(),s=(i-this._triggerRect.height)/2,r=Math.floor(256/i);let o;return this._disableOptionCentering?0:(o=0===this._scrollTop?e*i:this._scrollTop===n?(e-(this._getItemCount()-r))*i+(i-(this._getItemCount()*i-256)%i):t-i/2,Math.round(-1*o-s))}_checkOverlayWithinViewport(e){const t=this._getItemHeight(),n=this._viewportRuler.getViewportSize(),i=this._triggerRect.top-8,s=n.height-this._triggerRect.bottom-8,r=Math.abs(this._offsetY),o=Math.min(this._getItemCount()*t,256)-r-this._triggerRect.height;o>s?this._adjustPanelUp(o,s):r>i?this._adjustPanelDown(r,i,e):this._transformOrigin=this._getOriginBasedOnOption()}_adjustPanelUp(e,t){const n=Math.round(e-t);this._scrollTop-=n,this._offsetY-=n,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop<=0&&(this._scrollTop=0,this._offsetY=0,this._transformOrigin=\"50% bottom 0px\")}_adjustPanelDown(e,t,n){const i=Math.round(e-t);if(this._scrollTop+=i,this._offsetY+=i,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop>=n)return this._scrollTop=n,this._offsetY=0,void(this._transformOrigin=\"50% top 0px\")}_getOriginBasedOnOption(){const e=this._getItemHeight(),t=(e-this._triggerRect.height)/2;return`50% ${Math.abs(this._offsetY)-t+e/2}px 0px`}_getItemCount(){return this.options.length+this.optionGroups.length}_getItemHeight(){return 3*this._triggerFontSize}setDescribedByIds(e){this._ariaDescribedby=e.join(\" \")}onContainerClick(){this.focus(),this.open()}get shouldLabelFloat(){return this._panelOpen||!this.empty}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ov),Eo(Qr),Eo(ld),Eo(vy),Eo(Ka),Eo(Gp,8),Eo(bm,8),Eo(Im,8),Eo(dM,8),Eo(wh,10),Oo(\"tabindex\"),Eo(ck),Eo(Vp),Eo(dk,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-select\"]],contentQueries:function(e,t,n){var i;1&e&&(Ic(n,fk,!0),Ic(n,Fy,!0),Ic(n,Py,!0)),2&e&&(Dc(i=Rc())&&(t.customTrigger=i.first),Dc(i=Rc())&&(t.options=i),Dc(i=Rc())&&(t.optionGroups=i))},viewQuery:function(e,t){var n;1&e&&(Ec(QM,!0),Ec(XM,!0),Ec(Uv,!0)),2&e&&(Dc(n=Rc())&&(t.trigger=n.first),Dc(n=Rc())&&(t.panel=n.first),Dc(n=Rc())&&(t.overlayDir=n.first))},hostAttrs:[\"role\",\"listbox\",1,\"mat-select\"],hostVars:19,hostBindings:function(e,t){1&e&&Uo(\"keydown\",(function(e){return t._handleKeydown(e)}))(\"focus\",(function(){return t._onFocus()}))(\"blur\",(function(){return t._onBlur()})),2&e&&(Co(\"id\",t.id)(\"tabindex\",t.tabIndex)(\"aria-label\",t._getAriaLabel())(\"aria-labelledby\",t._getAriaLabelledby())(\"aria-required\",t.required.toString())(\"aria-disabled\",t.disabled.toString())(\"aria-invalid\",t.errorState)(\"aria-owns\",t.panelOpen?t._optionIds:null)(\"aria-multiselectable\",t.multiple)(\"aria-describedby\",t._ariaDescribedby||null)(\"aria-activedescendant\",t._getAriaActiveDescendant()),ua(\"mat-select-disabled\",t.disabled)(\"mat-select-invalid\",t.errorState)(\"mat-select-required\",t.required)(\"mat-select-empty\",t.empty))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",tabIndex:\"tabIndex\",ariaLabel:[\"aria-label\",\"ariaLabel\"],id:\"id\",disableOptionCentering:\"disableOptionCentering\",typeaheadDebounceInterval:\"typeaheadDebounceInterval\",placeholder:\"placeholder\",required:\"required\",multiple:\"multiple\",compareWith:\"compareWith\",value:\"value\",panelClass:\"panelClass\",ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],errorStateMatcher:\"errorStateMatcher\",sortComparator:\"sortComparator\"},outputs:{openedChange:\"openedChange\",_openedStream:\"opened\",_closedStream:\"closed\",selectionChange:\"selectionChange\",valueChange:\"valueChange\"},exportAs:[\"matSelect\"],features:[Ba([{provide:Qw,useExisting:e},{provide:jy,useExisting:e}]),Ya,Ra],ngContentSelectors:ok,decls:9,vars:9,consts:[[\"cdk-overlay-origin\",\"\",\"aria-hidden\",\"true\",1,\"mat-select-trigger\",3,\"click\"],[\"origin\",\"cdkOverlayOrigin\",\"trigger\",\"\"],[1,\"mat-select-value\",3,\"ngSwitch\"],[\"class\",\"mat-select-placeholder\",4,\"ngSwitchCase\"],[\"class\",\"mat-select-value-text\",3,\"ngSwitch\",4,\"ngSwitchCase\"],[1,\"mat-select-arrow-wrapper\"],[1,\"mat-select-arrow\"],[\"cdk-connected-overlay\",\"\",\"cdkConnectedOverlayLockPosition\",\"\",\"cdkConnectedOverlayHasBackdrop\",\"\",\"cdkConnectedOverlayBackdropClass\",\"cdk-overlay-transparent-backdrop\",3,\"cdkConnectedOverlayScrollStrategy\",\"cdkConnectedOverlayOrigin\",\"cdkConnectedOverlayOpen\",\"cdkConnectedOverlayPositions\",\"cdkConnectedOverlayMinWidth\",\"cdkConnectedOverlayOffsetY\",\"backdropClick\",\"attach\",\"detach\"],[1,\"mat-select-placeholder\"],[1,\"mat-select-value-text\",3,\"ngSwitch\"],[4,\"ngSwitchDefault\"],[4,\"ngSwitchCase\"],[1,\"mat-select-panel-wrap\"],[3,\"ngClass\",\"keydown\"],[\"panel\",\"\"]],template:function(e,t){if(1&e&&(Zo(rk),Ro(0,\"div\",0,1),Uo(\"click\",(function(){return t.toggle()})),Ro(3,\"div\",2),Do(4,ek,2,1,\"span\",3),Do(5,ik,3,2,\"span\",4),Ho(),Ro(6,\"div\",5),jo(7,\"div\",6),Ho(),Ho(),Do(8,sk,4,10,\"ng-template\",7),Uo(\"backdropClick\",(function(){return t.close()}))(\"attach\",(function(){return t._onAttached()}))(\"detach\",(function(){return t.close()}))),2&e){const e=Yo(1);ys(3),Po(\"ngSwitch\",t.empty),ys(1),Po(\"ngSwitchCase\",!0),ys(1),Po(\"ngSwitchCase\",!1),ys(3),Po(\"cdkConnectedOverlayScrollStrategy\",t._scrollStrategy)(\"cdkConnectedOverlayOrigin\",e)(\"cdkConnectedOverlayOpen\",t.panelOpen)(\"cdkConnectedOverlayPositions\",t._positions)(\"cdkConnectedOverlayMinWidth\",null==t._triggerRect?null:t._triggerRect.width)(\"cdkConnectedOverlayOffsetY\",t._offsetY)}},directives:[Wv,gu,yu,Uv,bu,cu],styles:[\".mat-select{display:inline-block;width:100%;outline:none}.mat-select-trigger{display:inline-table;cursor:pointer;position:relative;box-sizing:border-box}.mat-select-disabled .mat-select-trigger{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-select-value{display:table-cell;max-width:0;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-select-arrow-wrapper{display:table-cell;vertical-align:middle}.mat-form-field-appearance-fill .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-outline .mat-select-arrow-wrapper{transform:translateY(-25%)}.mat-form-field-appearance-standard.mat-form-field-has-label .mat-select:not(.mat-select-empty) .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:none}.mat-select-arrow{width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;margin:0 4px}.mat-select-panel-wrap{flex-basis:100%}.mat-select-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;padding-top:0;padding-bottom:0;max-height:256px;min-width:100%;border-radius:4px}.cdk-high-contrast-active .mat-select-panel{outline:solid 1px}.mat-select-panel .mat-optgroup-label,.mat-select-panel .mat-option{font-size:inherit;line-height:3em;height:3em}.mat-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-form-field-flex{cursor:pointer}.mat-form-field-type-mat-select .mat-form-field-label{width:calc(100% - 18px)}.mat-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable .mat-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-select-placeholder{color:transparent;-webkit-text-fill-color:transparent;transition:none;display:block}\\n\"],encapsulation:2,data:{animation:[ak.transformPanelWrap,ak.transformPanel]},changeDetection:0}),e})(),gk=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[uk],imports:[[Mu,Bv,zy,py],uM,zy,py]}),e})();const yk=[\"*\"];function bk(e,t){if(1&e){const e=zo();Ro(0,\"div\",2),Uo(\"click\",(function(){return en(e),Jo()._onBackdropClicked()})),Ho()}2&e&&ua(\"mat-drawer-shown\",Jo()._isShowingBackdrop())}function vk(e,t){1&e&&(Ro(0,\"mat-drawer-content\"),ea(1,2),Ho())}const wk=[[[\"mat-drawer\"]],[[\"mat-drawer-content\"]],\"*\"],Mk=[\"mat-drawer\",\"mat-drawer-content\",\"*\"];function kk(e,t){if(1&e){const e=zo();Ro(0,\"div\",2),Uo(\"click\",(function(){return en(e),Jo()._onBackdropClicked()})),Ho()}2&e&&ua(\"mat-drawer-shown\",Jo()._isShowingBackdrop())}function Sk(e,t){1&e&&(Ro(0,\"mat-sidenav-content\",3),ea(1,2),Ho())}const Lk=[[[\"mat-sidenav\"]],[[\"mat-sidenav-content\"]],\"*\"],xk=[\"mat-sidenav\",\"mat-sidenav-content\",\"*\"],Ck={transformDrawer:jf(\"transform\",[Wf(\"open, open-instant\",Vf({transform:\"none\",visibility:\"visible\"})),Wf(\"void\",Vf({\"box-shadow\":\"none\",visibility:\"hidden\"})),Uf(\"void => open-instant\",Ff(\"0ms\")),Uf(\"void <=> open, open-instant => void\",Ff(\"400ms cubic-bezier(0.25, 0.8, 0.25, 1)\"))])};function Tk(e){throw Error(`A drawer was already declared for 'position=\"${e}\"'`)}const Dk=new Ve(\"MAT_DRAWER_DEFAULT_AUTOSIZE\",{providedIn:\"root\",factory:function(){return!1}}),Yk=new Ve(\"MAT_DRAWER_CONTAINER\");let Ek=(()=>{class e extends rv{constructor(e,t,n,i,s){super(n,i,s),this._changeDetectorRef=e,this._container=t}ngAfterContentInit(){this._container._contentMarginChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Qr),Eo(Ce(()=>Ik)),Eo(Ka),Eo(sv),Eo(ld))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-drawer-content\"]],hostAttrs:[1,\"mat-drawer-content\"],hostVars:4,hostBindings:function(e,t){2&e&&da(\"margin-left\",t._container._contentMargins.left,\"px\")(\"margin-right\",t._container._contentMargins.right,\"px\")},features:[Ya],ngContentSelectors:yk,decls:1,vars:0,template:function(e,t){1&e&&(Zo(),ea(0))},encapsulation:2,changeDetection:0}),e})(),Ok=(()=>{class e{constructor(e,t,n,i,s,r,o){this._elementRef=e,this._focusTrapFactory=t,this._focusMonitor=n,this._platform=i,this._ngZone=s,this._doc=r,this._container=o,this._elementFocusedBeforeDrawerWasOpened=null,this._enableAnimations=!1,this._position=\"start\",this._mode=\"over\",this._disableClose=!1,this._opened=!1,this._animationStarted=new L,this._animationEnd=new L,this._animationState=\"void\",this.openedChange=new yc(!0),this._destroyed=new L,this.onPositionChanged=new yc,this._modeChanged=new L,this.openedChange.subscribe(e=>{e?(this._doc&&(this._elementFocusedBeforeDrawerWasOpened=this._doc.activeElement),this._takeFocus()):this._restoreFocus()}),this._ngZone.runOutsideAngular(()=>{Mb(this._elementRef.nativeElement,\"keydown\").pipe(Tu(e=>27===e.keyCode&&!this.disableClose&&!qm(e)),Nb(this._destroyed)).subscribe(e=>this._ngZone.run(()=>{this.close(),e.stopPropagation(),e.preventDefault()}))}),this._animationEnd.pipe(Eb((e,t)=>e.fromState===t.fromState&&e.toState===t.toState)).subscribe(e=>{const{fromState:t,toState:n}=e;(0===n.indexOf(\"open\")&&\"void\"===t||\"void\"===n&&0===t.indexOf(\"open\"))&&this.openedChange.emit(this._opened)})}get position(){return this._position}set position(e){(e=\"end\"===e?\"end\":\"start\")!=this._position&&(this._position=e,this.onPositionChanged.emit())}get mode(){return this._mode}set mode(e){this._mode=e,this._updateFocusTrapState(),this._modeChanged.next()}get disableClose(){return this._disableClose}set disableClose(e){this._disableClose=hp(e)}get autoFocus(){const e=this._autoFocus;return null==e?\"side\"!==this.mode:e}set autoFocus(e){this._autoFocus=hp(e)}get opened(){return this._opened}set opened(e){this.toggle(hp(e))}get _openedStream(){return this.openedChange.pipe(Tu(e=>e),H(()=>{}))}get openedStart(){return this._animationStarted.pipe(Tu(e=>e.fromState!==e.toState&&0===e.toState.indexOf(\"open\")),H(()=>{}))}get _closedStream(){return this.openedChange.pipe(Tu(e=>!e),H(()=>{}))}get closedStart(){return this._animationStarted.pipe(Tu(e=>e.fromState!==e.toState&&\"void\"===e.toState),H(()=>{}))}_takeFocus(){this.autoFocus&&this._focusTrap&&this._focusTrap.focusInitialElementWhenReady().then(e=>{e||\"function\"!=typeof this._elementRef.nativeElement.focus||this._elementRef.nativeElement.focus()})}_restoreFocus(){if(!this.autoFocus)return;const e=this._doc&&this._doc.activeElement;e&&this._elementRef.nativeElement.contains(e)&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,this._openedVia):this._elementRef.nativeElement.blur()),this._elementFocusedBeforeDrawerWasOpened=null,this._openedVia=null}ngAfterContentInit(){this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState()}ngAfterContentChecked(){this._platform.isBrowser&&(this._enableAnimations=!0)}ngOnDestroy(){this._focusTrap&&this._focusTrap.destroy(),this._animationStarted.complete(),this._animationEnd.complete(),this._modeChanged.complete(),this._destroyed.next(),this._destroyed.complete()}open(e){return this.toggle(!0,e)}close(){return this.toggle(!1)}toggle(e=!this.opened,t=\"program\"){return this._opened=e,e?(this._animationState=this._enableAnimations?\"open\":\"open-instant\",this._openedVia=t):(this._animationState=\"void\",this._restoreFocus()),this._updateFocusTrapState(),new Promise(e=>{this.openedChange.pipe(cp(1)).subscribe(t=>e(t?\"open\":\"close\"))})}get _width(){return this._elementRef.nativeElement&&this._elementRef.nativeElement.offsetWidth||0}_updateFocusTrapState(){this._focusTrap&&(this._focusTrap.enabled=this.opened&&\"side\"!==this.mode)}_animationStartListener(e){this._animationStarted.next(e)}_animationDoneListener(e){this._animationEnd.next(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Fp),Eo(Up),Eo(bp),Eo(ld),Eo(Nd,8),Eo(Yk,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-drawer\"]],hostAttrs:[\"tabIndex\",\"-1\",1,\"mat-drawer\"],hostVars:12,hostBindings:function(e,t){1&e&&$o(\"@transform.start\",(function(e){return t._animationStartListener(e)}))(\"@transform.done\",(function(e){return t._animationDoneListener(e)})),2&e&&(Co(\"align\",null),Ta(\"@transform\",t._animationState),ua(\"mat-drawer-end\",\"end\"===t.position)(\"mat-drawer-over\",\"over\"===t.mode)(\"mat-drawer-push\",\"push\"===t.mode)(\"mat-drawer-side\",\"side\"===t.mode)(\"mat-drawer-opened\",t.opened))},inputs:{position:\"position\",mode:\"mode\",disableClose:\"disableClose\",autoFocus:\"autoFocus\",opened:\"opened\"},outputs:{openedChange:\"openedChange\",onPositionChanged:\"positionChanged\",_openedStream:\"opened\",openedStart:\"openedStart\",_closedStream:\"closed\",closedStart:\"closedStart\"},exportAs:[\"matDrawer\"],ngContentSelectors:yk,decls:2,vars:0,consts:[[1,\"mat-drawer-inner-container\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"div\",0),ea(1),Ho())},encapsulation:2,data:{animation:[Ck.transformDrawer]},changeDetection:0}),e})(),Ik=(()=>{class e{constructor(e,t,n,i,s,r=!1,o){this._dir=e,this._element=t,this._ngZone=n,this._changeDetectorRef=i,this._animationMode=o,this._drawers=new vc,this.backdropClick=new yc,this._destroyed=new L,this._doCheckSubject=new L,this._contentMargins={left:null,right:null},this._contentMarginChanges=new L,e&&e.change.pipe(Nb(this._destroyed)).subscribe(()=>{this._validateDrawers(),this.updateContentMargins()}),s.change().pipe(Nb(this._destroyed)).subscribe(()=>this.updateContentMargins()),this._autosize=r}get start(){return this._start}get end(){return this._end}get autosize(){return this._autosize}set autosize(e){this._autosize=hp(e)}get hasBackdrop(){return null==this._backdropOverride?!this._start||\"side\"!==this._start.mode||!this._end||\"side\"!==this._end.mode:this._backdropOverride}set hasBackdrop(e){this._backdropOverride=null==e?null:hp(e)}get scrollable(){return this._userContent||this._content}ngAfterContentInit(){this._allDrawers.changes.pipe(Rf(this._allDrawers),Nb(this._destroyed)).subscribe(e=>{this._drawers.reset(e.filter(e=>!e._container||e._container===this)),this._drawers.notifyOnChanges()}),this._drawers.changes.pipe(Rf(null)).subscribe(()=>{this._validateDrawers(),this._drawers.forEach(e=>{this._watchDrawerToggle(e),this._watchDrawerPosition(e),this._watchDrawerMode(e)}),(!this._drawers.length||this._isDrawerOpen(this._start)||this._isDrawerOpen(this._end))&&this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),this._doCheckSubject.pipe(np(10),Nb(this._destroyed)).subscribe(()=>this.updateContentMargins())}ngOnDestroy(){this._contentMarginChanges.complete(),this._doCheckSubject.complete(),this._drawers.destroy(),this._destroyed.next(),this._destroyed.complete()}open(){this._drawers.forEach(e=>e.open())}close(){this._drawers.forEach(e=>e.close())}updateContentMargins(){let e=0,t=0;if(this._left&&this._left.opened)if(\"side\"==this._left.mode)e+=this._left._width;else if(\"push\"==this._left.mode){const n=this._left._width;e+=n,t-=n}if(this._right&&this._right.opened)if(\"side\"==this._right.mode)t+=this._right._width;else if(\"push\"==this._right.mode){const n=this._right._width;t+=n,e-=n}e=e||null,t=t||null,e===this._contentMargins.left&&t===this._contentMargins.right||(this._contentMargins={left:e,right:t},this._ngZone.run(()=>this._contentMarginChanges.next(this._contentMargins)))}ngDoCheck(){this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular(()=>this._doCheckSubject.next())}_watchDrawerToggle(e){e._animationStarted.pipe(Tu(e=>e.fromState!==e.toState),Nb(this._drawers.changes)).subscribe(e=>{\"open-instant\"!==e.toState&&\"NoopAnimations\"!==this._animationMode&&this._element.nativeElement.classList.add(\"mat-drawer-transition\"),this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),\"side\"!==e.mode&&e.openedChange.pipe(Nb(this._drawers.changes)).subscribe(()=>this._setContainerClass(e.opened))}_watchDrawerPosition(e){e&&e.onPositionChanged.pipe(Nb(this._drawers.changes)).subscribe(()=>{this._ngZone.onMicrotaskEmpty.asObservable().pipe(cp(1)).subscribe(()=>{this._validateDrawers()})})}_watchDrawerMode(e){e&&e._modeChanged.pipe(Nb(G(this._drawers.changes,this._destroyed))).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()})}_setContainerClass(e){const t=this._element.nativeElement.classList,n=\"mat-drawer-container-has-open\";e?t.add(n):t.remove(n)}_validateDrawers(){this._start=this._end=null,this._drawers.forEach(e=>{\"end\"==e.position?(null!=this._end&&Tk(\"end\"),this._end=e):(null!=this._start&&Tk(\"start\"),this._start=e)}),this._right=this._left=null,this._dir&&\"rtl\"===this._dir.value?(this._left=this._end,this._right=this._start):(this._left=this._start,this._right=this._end)}_isPushed(){return this._isDrawerOpen(this._start)&&\"over\"!=this._start.mode||this._isDrawerOpen(this._end)&&\"over\"!=this._end.mode}_onBackdropClicked(){this.backdropClick.emit(),this._closeModalDrawer()}_closeModalDrawer(){[this._start,this._end].filter(e=>e&&!e.disableClose&&this._canHaveBackdrop(e)).forEach(e=>e.close())}_isShowingBackdrop(){return this._isDrawerOpen(this._start)&&this._canHaveBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._canHaveBackdrop(this._end)}_canHaveBackdrop(e){return\"side\"!==e.mode||!!this._backdropOverride}_isDrawerOpen(e){return null!=e&&e.opened}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Gp,8),Eo(Ka),Eo(ld),Eo(Qr),Eo(ov),Eo(Dk),Eo(sy,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-drawer-container\"]],contentQueries:function(e,t,n){var i;1&e&&(Ic(n,Ek,!0),Ic(n,Ok,!0)),2&e&&(Dc(i=Rc())&&(t._content=i.first),Dc(i=Rc())&&(t._allDrawers=i))},viewQuery:function(e,t){var n;1&e&&Ec(Ek,!0),2&e&&Dc(n=Rc())&&(t._userContent=n.first)},hostAttrs:[1,\"mat-drawer-container\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"mat-drawer-container-explicit-backdrop\",t._backdropOverride)},inputs:{autosize:\"autosize\",hasBackdrop:\"hasBackdrop\"},outputs:{backdropClick:\"backdropClick\"},exportAs:[\"matDrawerContainer\"],features:[Ba([{provide:Yk,useExisting:e}])],ngContentSelectors:Mk,decls:4,vars:2,consts:[[\"class\",\"mat-drawer-backdrop\",3,\"mat-drawer-shown\",\"click\",4,\"ngIf\"],[4,\"ngIf\"],[1,\"mat-drawer-backdrop\",3,\"click\"]],template:function(e,t){1&e&&(Zo(wk),Do(0,bk,1,2,\"div\",0),ea(1),ea(2,1),Do(3,vk,2,0,\"mat-drawer-content\",1)),2&e&&(Po(\"ngIf\",t.hasBackdrop),ys(3),Po(\"ngIf\",!t._content))},directives:[mu,Ek],styles:[\".mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\\n\"],encapsulation:2,changeDetection:0}),e})(),Pk=(()=>{class e extends Ek{constructor(e,t,n,i,s){super(e,t,n,i,s)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Qr),Eo(Ce(()=>Hk)),Eo(Ka),Eo(sv),Eo(ld))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-sidenav-content\"]],hostAttrs:[1,\"mat-drawer-content\",\"mat-sidenav-content\"],hostVars:4,hostBindings:function(e,t){2&e&&da(\"margin-left\",t._container._contentMargins.left,\"px\")(\"margin-right\",t._container._contentMargins.right,\"px\")},features:[Ya],ngContentSelectors:yk,decls:1,vars:0,template:function(e,t){1&e&&(Zo(),ea(0))},encapsulation:2,changeDetection:0}),e})(),Ak=(()=>{class e extends Ok{constructor(){super(...arguments),this._fixedInViewport=!1,this._fixedTopGap=0,this._fixedBottomGap=0}get fixedInViewport(){return this._fixedInViewport}set fixedInViewport(e){this._fixedInViewport=hp(e)}get fixedTopGap(){return this._fixedTopGap}set fixedTopGap(e){this._fixedTopGap=mp(e)}get fixedBottomGap(){return this._fixedBottomGap}set fixedBottomGap(e){this._fixedBottomGap=mp(e)}}return e.\\u0275fac=function(t){return Rk(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-sidenav\"]],hostAttrs:[\"tabIndex\",\"-1\",1,\"mat-drawer\",\"mat-sidenav\"],hostVars:17,hostBindings:function(e,t){2&e&&(Co(\"align\",null),da(\"top\",t.fixedInViewport?t.fixedTopGap:null,\"px\")(\"bottom\",t.fixedInViewport?t.fixedBottomGap:null,\"px\"),ua(\"mat-drawer-end\",\"end\"===t.position)(\"mat-drawer-over\",\"over\"===t.mode)(\"mat-drawer-push\",\"push\"===t.mode)(\"mat-drawer-side\",\"side\"===t.mode)(\"mat-drawer-opened\",t.opened)(\"mat-sidenav-fixed\",t.fixedInViewport))},inputs:{fixedInViewport:\"fixedInViewport\",fixedTopGap:\"fixedTopGap\",fixedBottomGap:\"fixedBottomGap\"},exportAs:[\"matSidenav\"],features:[Ya],ngContentSelectors:yk,decls:2,vars:0,consts:[[1,\"mat-drawer-inner-container\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"div\",0),ea(1),Ho())},encapsulation:2,data:{animation:[Ck.transformDrawer]},changeDetection:0}),e})();const Rk=li(Ak);let Hk=(()=>{class e extends Ik{}return e.\\u0275fac=function(t){return jk(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-sidenav-container\"]],contentQueries:function(e,t,n){var i;1&e&&(Ic(n,Pk,!0),Ic(n,Ak,!0)),2&e&&(Dc(i=Rc())&&(t._content=i.first),Dc(i=Rc())&&(t._allDrawers=i))},hostAttrs:[1,\"mat-drawer-container\",\"mat-sidenav-container\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"mat-drawer-container-explicit-backdrop\",t._backdropOverride)},exportAs:[\"matSidenavContainer\"],features:[Ba([{provide:Yk,useExisting:e}]),Ya],ngContentSelectors:xk,decls:4,vars:2,consts:[[\"class\",\"mat-drawer-backdrop\",3,\"mat-drawer-shown\",\"click\",4,\"ngIf\"],[\"cdkScrollable\",\"\",4,\"ngIf\"],[1,\"mat-drawer-backdrop\",3,\"click\"],[\"cdkScrollable\",\"\"]],template:function(e,t){1&e&&(Zo(Lk),Do(0,kk,1,2,\"div\",0),ea(1),ea(2,1),Do(3,Sk,2,0,\"mat-sidenav-content\",1)),2&e&&(Po(\"ngIf\",t.hasBackdrop),ys(3),Po(\"ngIf\",!t._content))},directives:[mu,Pk,rv],styles:[\".mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\\n\"],encapsulation:2,changeDetection:0}),e})();const jk=li(Hk);let Fk=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu,py,av,vp],py]}),e})();const Nk=[\"thumbContainer\"],zk=[\"toggleBar\"],Vk=[\"input\"],Wk=function(){return{enterDuration:150}},Uk=[\"*\"],$k=new Ve(\"mat-slide-toggle-default-options\",{providedIn:\"root\",factory:()=>({disableToggleValue:!1})});let Bk=0;const qk={provide:uh,useExisting:Ce(()=>Zk),multi:!0};class Gk{constructor(e,t){this.source=e,this.checked=t}}class Jk{constructor(e){this._elementRef=e}}const Kk=yy(_y(gy(fy(Jk)),\"accent\"));let Zk=(()=>{class e extends Kk{constructor(e,t,n,i,s,r,o,a){super(e),this._focusMonitor=t,this._changeDetectorRef=n,this.defaults=r,this._animationMode=o,this._onChange=e=>{},this._onTouched=()=>{},this._uniqueId=`mat-slide-toggle-${++Bk}`,this._required=!1,this._checked=!1,this.name=null,this.id=this._uniqueId,this.labelPosition=\"after\",this.ariaLabel=null,this.ariaLabelledby=null,this.change=new yc,this.toggleChange=new yc,this.dragChange=new yc,this.tabIndex=parseInt(i)||0}get required(){return this._required}set required(e){this._required=hp(e)}get checked(){return this._checked}set checked(e){this._checked=hp(e),this._changeDetectorRef.markForCheck()}get inputId(){return`${this.id||this._uniqueId}-input`}ngAfterContentInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(e=>{\"keyboard\"===e||\"program\"===e?this._inputElement.nativeElement.focus():e||Promise.resolve().then(()=>this._onTouched())})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}_onChangeEvent(e){e.stopPropagation(),this.toggleChange.emit(),this.defaults.disableToggleValue?this._inputElement.nativeElement.checked=this.checked:(this.checked=this._inputElement.nativeElement.checked,this._emitChangeEvent())}_onInputClick(e){e.stopPropagation()}writeValue(e){this.checked=!!e}registerOnChange(e){this._onChange=e}registerOnTouched(e){this._onTouched=e}setDisabledState(e){this.disabled=e,this._changeDetectorRef.markForCheck()}focus(e){this._focusMonitor.focusVia(this._inputElement,\"keyboard\",e)}toggle(){this.checked=!this.checked,this._onChange(this.checked)}_emitChangeEvent(){this._onChange(this.checked),this.change.emit(new Gk(this,this.checked))}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(Up),Eo(Qr),Oo(\"tabindex\"),Eo(ld),Eo($k),Eo(sy,8),Eo(Gp,8))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-slide-toggle\"]],viewQuery:function(e,t){var n;1&e&&(Ec(Nk,!0),Ec(zk,!0),Ec(Vk,!0)),2&e&&(Dc(n=Rc())&&(t._thumbEl=n.first),Dc(n=Rc())&&(t._thumbBarEl=n.first),Dc(n=Rc())&&(t._inputElement=n.first))},hostAttrs:[1,\"mat-slide-toggle\"],hostVars:12,hostBindings:function(e,t){2&e&&(Ca(\"id\",t.id),Co(\"tabindex\",t.disabled?null:-1)(\"aria-label\",null)(\"aria-labelledby\",null),ua(\"mat-checked\",t.checked)(\"mat-disabled\",t.disabled)(\"mat-slide-toggle-label-before\",\"before\"==t.labelPosition)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\",name:\"name\",id:\"id\",labelPosition:\"labelPosition\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],required:\"required\",checked:\"checked\"},outputs:{change:\"change\",toggleChange:\"toggleChange\",dragChange:\"dragChange\"},exportAs:[\"matSlideToggle\"],features:[Ba([qk]),Ya],ngContentSelectors:Uk,decls:16,vars:18,consts:[[1,\"mat-slide-toggle-label\"],[\"label\",\"\"],[1,\"mat-slide-toggle-bar\"],[\"toggleBar\",\"\"],[\"type\",\"checkbox\",\"role\",\"switch\",1,\"mat-slide-toggle-input\",\"cdk-visually-hidden\",3,\"id\",\"required\",\"tabIndex\",\"checked\",\"disabled\",\"change\",\"click\"],[\"input\",\"\"],[1,\"mat-slide-toggle-thumb-container\"],[\"thumbContainer\",\"\"],[1,\"mat-slide-toggle-thumb\"],[\"mat-ripple\",\"\",1,\"mat-slide-toggle-ripple\",\"mat-focus-indicator\",3,\"matRippleTrigger\",\"matRippleDisabled\",\"matRippleCentered\",\"matRippleRadius\",\"matRippleAnimation\"],[1,\"mat-ripple-element\",\"mat-slide-toggle-persistent-ripple\"],[1,\"mat-slide-toggle-content\",3,\"cdkObserveContent\"],[\"labelContent\",\"\"],[2,\"display\",\"none\"]],template:function(e,t){if(1&e&&(Zo(),Ro(0,\"label\",0,1),Ro(2,\"div\",2,3),Ro(4,\"input\",4,5),Uo(\"change\",(function(e){return t._onChangeEvent(e)}))(\"click\",(function(e){return t._onInputClick(e)})),Ho(),Ro(6,\"div\",6,7),jo(8,\"div\",8),Ro(9,\"div\",9),jo(10,\"div\",10),Ho(),Ho(),Ho(),Ro(11,\"span\",11,12),Uo(\"cdkObserveContent\",(function(){return t._onLabelTextChange()})),Ro(13,\"span\",13),Sa(14,\"\\xa0\"),Ho(),ea(15),Ho(),Ho()),2&e){const e=Yo(1),n=Yo(12);Co(\"for\",t.inputId),ys(2),ua(\"mat-slide-toggle-bar-no-side-margin\",!n.textContent||!n.textContent.trim()),ys(2),Po(\"id\",t.inputId)(\"required\",t.required)(\"tabIndex\",t.tabIndex)(\"checked\",t.checked)(\"disabled\",t.disabled),Co(\"name\",t.name)(\"aria-checked\",t.checked.toString())(\"aria-label\",t.ariaLabel)(\"aria-labelledby\",t.ariaLabelledby),ys(5),Po(\"matRippleTrigger\",e)(\"matRippleDisabled\",t.disableRipple||t.disabled)(\"matRippleCentered\",!0)(\"matRippleRadius\",20)(\"matRippleAnimation\",gc(17,Wk))}},directives:[Cy,Yp],styles:[\".mat-slide-toggle{display:inline-block;height:24px;max-width:100%;line-height:24px;white-space:nowrap;outline:none;-webkit-tap-highlight-color:transparent}.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(16px, 0, 0)}[dir=rtl] .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(-16px, 0, 0)}.mat-slide-toggle.mat-disabled{opacity:.38}.mat-slide-toggle.mat-disabled .mat-slide-toggle-label,.mat-slide-toggle.mat-disabled .mat-slide-toggle-thumb-container{cursor:default}.mat-slide-toggle-label{display:flex;flex:1;flex-direction:row;align-items:center;height:inherit;cursor:pointer}.mat-slide-toggle-content{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-slide-toggle-label-before .mat-slide-toggle-label{order:1}.mat-slide-toggle-label-before .mat-slide-toggle-bar{order:2}[dir=rtl] .mat-slide-toggle-label-before .mat-slide-toggle-bar,.mat-slide-toggle-bar{margin-right:8px;margin-left:0}[dir=rtl] .mat-slide-toggle-bar,.mat-slide-toggle-label-before .mat-slide-toggle-bar{margin-left:8px;margin-right:0}.mat-slide-toggle-bar-no-side-margin{margin-left:0;margin-right:0}.mat-slide-toggle-thumb-container{position:absolute;z-index:1;width:20px;height:20px;top:-3px;left:0;transform:translate3d(0, 0, 0);transition:all 80ms linear;transition-property:transform}._mat-animation-noopable .mat-slide-toggle-thumb-container{transition:none}[dir=rtl] .mat-slide-toggle-thumb-container{left:auto;right:0}.mat-slide-toggle-thumb{height:20px;width:20px;border-radius:50%}.mat-slide-toggle-bar{position:relative;width:36px;height:14px;flex-shrink:0;border-radius:8px}.mat-slide-toggle-input{bottom:0;left:10px}[dir=rtl] .mat-slide-toggle-input{left:auto;right:10px}.mat-slide-toggle-bar,.mat-slide-toggle-thumb{transition:all 80ms linear;transition-property:background-color;transition-delay:50ms}._mat-animation-noopable .mat-slide-toggle-bar,._mat-animation-noopable .mat-slide-toggle-thumb{transition:none}.mat-slide-toggle .mat-slide-toggle-ripple{position:absolute;top:calc(50% - 20px);left:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}.mat-slide-toggle .mat-slide-toggle-ripple .mat-ripple-element:not(.mat-slide-toggle-persistent-ripple){opacity:.12}.mat-slide-toggle-persistent-ripple{width:100%;height:100%;transform:none}.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:.04}.mat-slide-toggle:not(.mat-disabled).cdk-keyboard-focused .mat-slide-toggle-persistent-ripple{opacity:.12}.mat-slide-toggle-persistent-ripple,.mat-slide-toggle.mat-disabled .mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:0}@media(hover: none){.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{display:none}}.cdk-high-contrast-active .mat-slide-toggle-thumb,.cdk-high-contrast-active .mat-slide-toggle-bar{border:1px solid}.cdk-high-contrast-active .mat-slide-toggle.cdk-keyboard-focused .mat-slide-toggle-bar{outline:2px dotted;outline-offset:5px}\\n\"],encapsulation:2,changeDetection:0}),e})(),Qk=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),Xk=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Qk,Ty,py,Ep],Qk,py]}),e})();const eS={};function tS(...e){let t=null,n=null;return C(e[e.length-1])&&(n=e.pop()),\"function\"==typeof e[e.length-1]&&(t=e.pop()),1===e.length&&l(e[0])&&(e=e[0]),q(e,n).lift(new nS(t))}class nS{constructor(e){this.resultSelector=e}call(e,t){return t.subscribe(new iS(e,this.resultSelector))}}class iS extends R{constructor(e,t){super(e),this.resultSelector=t,this.active=0,this.values=[],this.observables=[]}_next(e){this.values.push(eS),this.observables.push(e)}_complete(){const e=this.observables,t=e.length;if(0===t)this.destination.complete();else{this.active=t,this.toRespond=t;for(let n=0;n{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Bv,_v,Mu,Ky,py],py]}),e})();const rS=[\"*\",[[\"mat-toolbar-row\"]]],oS=[\"*\",\"mat-toolbar-row\"];class aS{constructor(e){this._elementRef=e}}const lS=_y(aS);let cS=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"mat-toolbar-row\"]],hostAttrs:[1,\"mat-toolbar-row\"],exportAs:[\"matToolbarRow\"]}),e})(),dS=(()=>{class e extends lS{constructor(e,t,n){super(e),this._platform=t,this._document=n}ngAfterViewInit(){Si()&&this._platform.isBrowser&&(this._checkToolbarMixedModes(),this._toolbarRows.changes.subscribe(()=>this._checkToolbarMixedModes()))}_checkToolbarMixedModes(){this._toolbarRows.length&&Array.from(this._elementRef.nativeElement.childNodes).filter(e=>!(e.classList&&e.classList.contains(\"mat-toolbar-row\"))).filter(e=>e.nodeType!==(this._document?this._document.COMMENT_NODE:8)).some(e=>!(!e.textContent||!e.textContent.trim()))&&function(){throw Error(\"MatToolbar: Attempting to combine different toolbar modes. Either specify multiple `` elements explicitly or just place content inside of a `` for a single row.\")}()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(bp),Eo(Nd))},e.\\u0275cmp=yt({type:e,selectors:[[\"mat-toolbar\"]],contentQueries:function(e,t,n){var i;1&e&&Ic(n,cS,!0),2&e&&Dc(i=Rc())&&(t._toolbarRows=i)},hostAttrs:[1,\"mat-toolbar\"],hostVars:4,hostBindings:function(e,t){2&e&&ua(\"mat-toolbar-multiple-rows\",t._toolbarRows.length>0)(\"mat-toolbar-single-row\",0===t._toolbarRows.length)},inputs:{color:\"color\"},exportAs:[\"matToolbar\"],features:[Ya],ngContentSelectors:oS,decls:2,vars:0,template:function(e,t){1&e&&(Zo(rS),ea(0),ea(1,1))},styles:[\".cdk-high-contrast-active .mat-toolbar{outline:solid 1px}.mat-toolbar-row,.mat-toolbar-single-row{display:flex;box-sizing:border-box;padding:0 16px;width:100%;flex-direction:row;align-items:center;white-space:nowrap}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}\\n\"],encapsulation:2,changeDetection:0}),e})(),uS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[py],py]}),e})();class hS extends L{constructor(e){super(),this._value=e}get value(){return this.getValue()}_subscribe(e){const t=super._subscribe(e);return t&&!t.closed&&e.next(this._value),t}getValue(){if(this.hasError)throw this.thrownError;if(this.closed)throw new M;return this._value}next(e){super.next(this._value=e)}}const mS=new v(g);function pS(){return mS}function fS(...e){return t=>{let n;return\"function\"==typeof e[e.length-1]&&(n=e.pop()),t.lift(new _S(e,n))}}class _S{constructor(e,t){this.observables=e,this.project=t}call(e,t){return t.subscribe(new gS(e,this.observables,this.project))}}class gS extends R{constructor(e,t,n){super(e),this.observables=t,this.project=n,this.toRespond=[];const i=t.length;this.values=new Array(i);for(let s=0;s0){const e=r.indexOf(n);-1!==e&&r.splice(e,1)}}notifyComplete(){}_next(e){if(0===this.toRespond.length){const t=[e,...this.values];this.project?this._tryProject(t):this.destination.next(t)}}_tryProject(e){let t;try{t=this.project.apply(this,e)}catch(n){return void this.destination.error(n)}this.destination.next(t)}}const yS=[\"aria-label\",$localize`:@@ngb.alert.close␟f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8␟7819314041543176992:Close`];function bS(e,t){if(1&e){const e=zo();Ro(0,\"button\",1),nc(1,yS),Uo(\"click\",(function(){return en(e),Jo().closeHandler()})),Ro(2,\"span\",2),Sa(3,\"\\xd7\"),Ho(),Ho()}}const vS=[\"*\"];function wS(e,t){if(1&e){const e=zo();Ro(0,\"li\",7),Uo(\"click\",(function(){en(e);const n=t.$implicit,i=Jo(2);return i.select(n.id,i.NgbSlideEventSource.INDICATOR)})),Ho()}if(2&e){const e=t.$implicit,n=Jo(2);ua(\"active\",e.id===n.activeId),Po(\"id\",e.id)}}function MS(e,t){if(1&e&&(Ro(0,\"ol\",5),Do(1,wS,1,3,\"li\",6),Ho()),2&e){const e=Jo();ys(1),Po(\"ngForOf\",e.slides)}}function kS(e,t){}function SS(e,t){if(1&e&&(Ro(0,\"div\",8),Do(1,kS,0,0,\"ng-template\",9),Ho()),2&e){const e=t.$implicit,n=Jo();ua(\"active\",e.id===n.activeId),ys(1),Po(\"ngTemplateOutlet\",e.tplRef)}}var LS,xS;function CS(e,t){if(1&e){const e=zo();Ro(0,\"a\",10),Uo(\"click\",(function(){en(e);const t=Jo();return t.prev(t.NgbSlideEventSource.ARROW_LEFT)})),jo(1,\"span\",11),Ro(2,\"span\",12),tc(3,LS),Ho(),Ho()}}function TS(e,t){if(1&e){const e=zo();Ro(0,\"a\",13),Uo(\"click\",(function(){en(e);const t=Jo();return t.next(t.NgbSlideEventSource.ARROW_RIGHT)})),jo(1,\"span\",14),Ro(2,\"span\",12),tc(3,xS),Ho(),Ho()}}function DS(e){return null!=e}LS=$localize`:@@ngb.carousel.previous␟680d5c75b7fd8d37961083608b9fcdc4167b4c43␟4452427314943113135:Previous`,xS=$localize`:@@ngb.carousel.next␟f732c304c7433e5a83ffcd862c3dce709a0f4982␟3885497195825665706:Next`,$localize`:@@ngb.datepicker.previous-month␟c3b08b07b5ab98e7cdcf18df39355690ab7d3884␟8586908745456864217:Previous month`,$localize`:@@ngb.datepicker.previous-month␟c3b08b07b5ab98e7cdcf18df39355690ab7d3884␟8586908745456864217:Previous month`,$localize`:@@ngb.datepicker.next-month␟4bd046985cfe13040d5ef0cd881edce0968a111a␟3628374603023447227:Next month`,$localize`:@@ngb.datepicker.next-month␟4bd046985cfe13040d5ef0cd881edce0968a111a␟3628374603023447227:Next month`,$localize`:@@ngb.datepicker.select-month␟1dbc84807f35518112f62e5775d1daebd3d8462b␟2253869508135064750:Select month`,$localize`:@@ngb.datepicker.select-month␟1dbc84807f35518112f62e5775d1daebd3d8462b␟2253869508135064750:Select month`,$localize`:@@ngb.datepicker.select-year␟8ceb09d002bf0c5d1cac171dfbffe1805d2b3962␟8852264961585484321:Select year`,$localize`:@@ngb.datepicker.select-year␟8ceb09d002bf0c5d1cac171dfbffe1805d2b3962␟8852264961585484321:Select year`,$localize`:@@ngb.pagination.first␟656506dfd46380956a655f919f1498d018f75ca0␟6867721956102594380:««`,$localize`:@@ngb.pagination.previous␟6e52b6ee77a4848d899dd21b591c6fd499e3aef3␟6479320895410098858:«`,$localize`:@@ngb.pagination.next␟ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d␟5458177150283468089:»`,$localize`:@@ngb.pagination.last␟49f27a460bc97e7e00be5b37098bfa79884fc7d9␟5277020320267646988:»»`,$localize`:@@ngb.pagination.first-aria␟f2f852318759c6396b5d3d17031d53817d7b38cc␟2241508602425256033:First`,$localize`:@@ngb.pagination.previous-aria␟680d5c75b7fd8d37961083608b9fcdc4167b4c43␟4452427314943113135:Previous`,$localize`:@@ngb.pagination.next-aria␟f732c304c7433e5a83ffcd862c3dce709a0f4982␟3885497195825665706:Next`,$localize`:@@ngb.pagination.last-aria␟5c729788ba138508aca1bec050b610f7bf81db3e␟4882268002141858767:Last`,$localize`:@@ngb.progressbar.value␟04d611d19c117c60c9e14d0a04399a027184bc77␟5214781723415385277:${\"\\ufffd0\\ufffd\"}:INTERPOLATION:%`,$localize`:@@ngb.timepicker.HH␟ce676ab1d6d98f85c836381cf100a4a91ef95a1f␟4043638465245303811:HH`,$localize`:@@ngb.timepicker.hours␟3bbce5fef7e1151da052a4e529453edb340e3912␟8070396816726827304:Hours`,$localize`:@@ngb.timepicker.MM␟72c8edf6a50068a05bde70991e36b1e881f4ca54␟1647282246509919852:MM`,$localize`:@@ngb.timepicker.minutes␟41e62daa962947c0d23ded0981975d1bddf0bf38␟5531237363767747080:Minutes`,$localize`:@@ngb.timepicker.increment-hours␟cb74bc1d625a6c1742f0d7d47306cf495780c218␟5939278348542933629:Increment hours`,$localize`:@@ngb.timepicker.decrement-hours␟147c7a19429da7d999e247d22e33fee370b1691b␟3651829882940481818:Decrement hours`,$localize`:@@ngb.timepicker.increment-minutes␟f5a4a3bc05e053f6732475d0e74875ec01c3a348␟180147720391025024:Increment minutes`,$localize`:@@ngb.timepicker.decrement-minutes␟c1a6899e529c096da5b660385d4e77fe1f7ad271␟7447789825403243588:Decrement minutes`,$localize`:@@ngb.timepicker.SS␟ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3␟3628127143071124194:SS`,$localize`:@@ngb.timepicker.seconds␟4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c␟8874012390997067175:Seconds`,$localize`:@@ngb.timepicker.increment-seconds␟912322ecee7d659d04dcf494a70e22e49d334b26␟5364772110539092174:Increment seconds`,$localize`:@@ngb.timepicker.decrement-seconds␟5db47ac104294243a70eb9124fbea9d0004ddf69␟753633511487974857:Decrement seconds`,$localize`:@@ngb.timepicker.PM␟8d6e691e10306c1b34c6b26805151aaea320ef7f␟3564199131264287502:${\"\\ufffd0\\ufffd\"}:INTERPOLATION:`,$localize`:@@ngb.timepicker.AM␟69a1f176a93998876952adac57c3bc3863b6105e␟4592818992509942761:${\"\\ufffd0\\ufffd\"}:INTERPOLATION:`,$localize`:@@ngb.toast.close-aria␟f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8␟7819314041543176992:Close`,\"undefined\"==typeof Element||Element.prototype.closest||(Element.prototype.matches||(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector),Element.prototype.closest=function(e){let t=this;if(!document.documentElement.contains(t))return null;do{if(t.matches(e))return t;t=t.parentElement||t.parentNode}while(null!==t&&1===t.nodeType);return null});let YS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),ES=(()=>{class e{constructor(){this.dismissible=!0,this.type=\"warning\"}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})(),OS=(()=>{class e{constructor(e,t,n){this._renderer=t,this._element=n,this.close=new yc,this.dismissible=e.dismissible,this.type=e.type}closeHandler(){this.close.emit(null)}ngOnChanges(e){const t=e.type;t&&!t.firstChange&&(this._renderer.removeClass(this._element.nativeElement,`alert-${t.previousValue}`),this._renderer.addClass(this._element.nativeElement,`alert-${t.currentValue}`))}ngOnInit(){this._renderer.addClass(this._element.nativeElement,`alert-${this.type}`)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ES),Eo(el),Eo(Ka))},e.\\u0275cmp=yt({type:e,selectors:[[\"ngb-alert\"]],hostAttrs:[\"role\",\"alert\",1,\"alert\"],hostVars:2,hostBindings:function(e,t){2&e&&ua(\"alert-dismissible\",t.dismissible)},inputs:{dismissible:\"dismissible\",type:\"type\"},outputs:{close:\"close\"},features:[Ra],ngContentSelectors:vS,decls:2,vars:1,consts:[[\"type\",\"button\",\"class\",\"close\",\"aria-label\",\"Close\",3,\"click\",4,\"ngIf\"],[\"type\",\"button\",1,\"close\",3,\"click\",6,\"aria-label\"],[\"aria-hidden\",\"true\"]],template:function(e,t){1&e&&(Zo(),ea(0),Do(1,bS,4,0,\"button\",0)),2&e&&(ys(1),Po(\"ngIf\",t.dismissible))},directives:[mu],styles:[\"ngb-alert{display:block}\"],encapsulation:2,changeDetection:0}),e})(),IS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),PS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),AS=(()=>{class e{constructor(){this.interval=5e3,this.wrap=!0,this.keyboard=!0,this.pauseOnHover=!0,this.showNavigationArrows=!0,this.showNavigationIndicators=!0}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})(),RS=0,HS=(()=>{class e{constructor(e){this.tplRef=e,this.id=`ngb-slide-${RS++}`}}return e.\\u0275fac=function(t){return new(t||e)(Eo(vl))},e.\\u0275dir=St({type:e,selectors:[[\"ng-template\",\"ngbSlide\",\"\"]],inputs:{id:\"id\"}}),e})(),jS=(()=>{class e{constructor(e,t,n,i){this._platformId=t,this._ngZone=n,this._cd=i,this.NgbSlideEventSource=NS,this._destroy$=new L,this._interval$=new hS(0),this._mouseHover$=new hS(!1),this._pauseOnHover$=new hS(!1),this._pause$=new hS(!1),this._wrap$=new hS(!1),this.slide=new yc,this.interval=e.interval,this.wrap=e.wrap,this.keyboard=e.keyboard,this.pauseOnHover=e.pauseOnHover,this.showNavigationArrows=e.showNavigationArrows,this.showNavigationIndicators=e.showNavigationIndicators}set interval(e){this._interval$.next(e)}get interval(){return this._interval$.value}set wrap(e){this._wrap$.next(e)}get wrap(){return this._wrap$.value}set pauseOnHover(e){this._pauseOnHover$.next(e)}get pauseOnHover(){return this._pauseOnHover$.value}mouseEnter(){this._mouseHover$.next(!0)}mouseLeave(){this._mouseHover$.next(!1)}ngAfterContentInit(){ku(this._platformId)&&this._ngZone.runOutsideAngular(()=>{const e=tS(this.slide.pipe(H(e=>e.current),Rf(this.activeId)),this._wrap$,this.slides.changes.pipe(Rf(null))).pipe(H(([e,t])=>{const n=this.slides.toArray(),i=this._getSlideIdxById(e);return t?n.length>1:ie||t&&n||!s?0:i),Eb(),Wb(e=>e>0?Hb(e,e):mS),Nb(this._destroy$)).subscribe(()=>this._ngZone.run(()=>this.next(NS.TIMER)))}),this.slides.changes.pipe(Nb(this._destroy$)).subscribe(()=>this._cd.markForCheck())}ngAfterContentChecked(){let e=this._getSlideById(this.activeId);this.activeId=e?e.id:this.slides.length?this.slides.first.id:null}ngOnDestroy(){this._destroy$.next()}select(e,t){this._cycleToSelected(e,this._getSlideEventDirection(this.activeId,e),t)}prev(e){this._cycleToSelected(this._getPrevSlide(this.activeId),FS.RIGHT,e)}next(e){this._cycleToSelected(this._getNextSlide(this.activeId),FS.LEFT,e)}pause(){this._pause$.next(!0)}cycle(){this._pause$.next(!1)}_cycleToSelected(e,t,n){let i=this._getSlideById(e);i&&i.id!==this.activeId&&(this.slide.emit({prev:this.activeId,current:i.id,direction:t,paused:this._pause$.value,source:n}),this.activeId=i.id),this._cd.markForCheck()}_getSlideEventDirection(e,t){return this._getSlideIdxById(e)>this._getSlideIdxById(t)?FS.RIGHT:FS.LEFT}_getSlideById(e){return this.slides.find(t=>t.id===e)}_getSlideIdxById(e){return this.slides.toArray().indexOf(this._getSlideById(e))}_getNextSlide(e){const t=this.slides.toArray(),n=this._getSlideIdxById(e);return n===t.length-1?this.wrap?t[0].id:t[t.length-1].id:t[n+1].id}_getPrevSlide(e){const t=this.slides.toArray(),n=this._getSlideIdxById(e);return 0===n?this.wrap?t[t.length-1].id:t[0].id:t[n-1].id}}return e.\\u0275fac=function(t){return new(t||e)(Eo(AS),Eo(Bc),Eo(ld),Eo(Qr))},e.\\u0275cmp=yt({type:e,selectors:[[\"ngb-carousel\"]],contentQueries:function(e,t,n){var i;1&e&&Ic(n,HS,!1),2&e&&Dc(i=Rc())&&(t.slides=i)},hostAttrs:[\"tabIndex\",\"0\",1,\"carousel\",\"slide\"],hostVars:2,hostBindings:function(e,t){1&e&&Uo(\"keydown.arrowLeft\",(function(){return t.keyboard&&t.prev(t.NgbSlideEventSource.ARROW_LEFT)}))(\"keydown.arrowRight\",(function(){return t.keyboard&&t.next(t.NgbSlideEventSource.ARROW_RIGHT)}))(\"mouseenter\",(function(){return t.mouseEnter()}))(\"mouseleave\",(function(){return t.mouseLeave()})),2&e&&da(\"display\",\"block\")},inputs:{interval:\"interval\",wrap:\"wrap\",keyboard:\"keyboard\",pauseOnHover:\"pauseOnHover\",showNavigationArrows:\"showNavigationArrows\",showNavigationIndicators:\"showNavigationIndicators\",activeId:\"activeId\"},outputs:{slide:\"slide\"},exportAs:[\"ngbCarousel\"],decls:5,vars:4,consts:[[\"class\",\"carousel-indicators\",4,\"ngIf\"],[1,\"carousel-inner\"],[\"class\",\"carousel-item\",3,\"active\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"carousel-control-prev\",\"role\",\"button\",3,\"click\",4,\"ngIf\"],[\"class\",\"carousel-control-next\",\"role\",\"button\",3,\"click\",4,\"ngIf\"],[1,\"carousel-indicators\"],[3,\"id\",\"active\",\"click\",4,\"ngFor\",\"ngForOf\"],[3,\"id\",\"click\"],[1,\"carousel-item\"],[3,\"ngTemplateOutlet\"],[\"role\",\"button\",1,\"carousel-control-prev\",3,\"click\"],[\"aria-hidden\",\"true\",1,\"carousel-control-prev-icon\"],[1,\"sr-only\"],[\"role\",\"button\",1,\"carousel-control-next\",3,\"click\"],[\"aria-hidden\",\"true\",1,\"carousel-control-next-icon\"]],template:function(e,t){1&e&&(Do(0,MS,2,1,\"ol\",0),Ro(1,\"div\",1),Do(2,SS,2,3,\"div\",2),Ho(),Do(3,CS,4,0,\"a\",3),Do(4,TS,4,0,\"a\",4)),2&e&&(Po(\"ngIf\",t.showNavigationIndicators),ys(2),Po(\"ngForOf\",t.slides),ys(1),Po(\"ngIf\",t.showNavigationArrows),ys(1),Po(\"ngIf\",t.showNavigationArrows))},directives:[mu,uu,wu],encapsulation:2,changeDetection:0}),e})();const FS={LEFT:\"left\",RIGHT:\"right\"},NS={TIMER:\"timer\",ARROW_LEFT:\"arrowLeft\",ARROW_RIGHT:\"arrowRight\",INDICATOR:\"indicator\"};let zS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),VS=(()=>{class e{constructor(){this.collapsed=!1}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275dir=St({type:e,selectors:[[\"\",\"ngbCollapse\",\"\"]],hostVars:4,hostBindings:function(e,t){2&e&&ua(\"collapse\",!0)(\"show\",!t.collapsed)},inputs:{collapsed:[\"ngbCollapse\",\"collapsed\"]},exportAs:[\"ngbCollapse\"]}),e})(),WS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})();const US=function(){var e={Tab:9,Enter:13,Escape:27,Space:32,PageUp:33,PageDown:34,End:35,Home:36,ArrowLeft:37,ArrowUp:38,ArrowRight:39,ArrowDown:40};return e[e.Tab]=\"Tab\",e[e.Enter]=\"Enter\",e[e.Escape]=\"Escape\",e[e.Space]=\"Space\",e[e.PageUp]=\"PageUp\",e[e.PageDown]=\"PageDown\",e[e.End]=\"End\",e[e.Home]=\"Home\",e[e.ArrowLeft]=\"ArrowLeft\",e[e.ArrowUp]=\"ArrowUp\",e[e.ArrowRight]=\"ArrowRight\",e[e.ArrowDown]=\"ArrowDown\",e}();\"undefined\"!=typeof navigator&&navigator.userAgent&&navigator;const $S=[\"a[href]\",\"button:not([disabled])\",'input:not([disabled]):not([type=\"hidden\"])',\"select:not([disabled])\",\"textarea:not([disabled])\",\"[contenteditable]\",'[tabindex]:not([tabindex=\"-1\"])'].join(\", \");function BS(e){const t=Array.from(e.querySelectorAll($S)).filter(e=>-1!==e.tabIndex);return[t[0],t[t.length-1]]}let qS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu,$m]]}),e})(),GS=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),JS=(()=>{class e{constructor(){this.backdrop=!0,this.keyboard=!0}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e},token:e,providedIn:\"root\"}),e})();class KS{constructor(e,t,n){this.nodes=e,this.viewRef=t,this.componentRef=n}}const ZS=()=>{};let QS=(()=>{class e{constructor(e){this._document=e}compensate(){return this._isPresent()?this._adjustBody(this._getWidth()):ZS}_adjustBody(e){const t=this._document.body,n=t.style.paddingRight,i=parseFloat(window.getComputedStyle(t)[\"padding-right\"]);return t.style[\"padding-right\"]=`${i+e}px`,()=>t.style[\"padding-right\"]=n}_isPresent(){const e=this._document.body.getBoundingClientRect();return e.left+e.right{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"ngb-modal-backdrop\"]],hostAttrs:[2,\"z-index\",\"1050\"],hostVars:2,hostBindings:function(e,t){2&e&&ha(\"modal-backdrop fade show\"+(t.backdropClass?\" \"+t.backdropClass:\"\"))},inputs:{backdropClass:\"backdropClass\"},decls:0,vars:0,template:function(e,t){},encapsulation:2}),e})();class eL{close(e){}dismiss(e){}}class tL{constructor(e,t,n,i){this._windowCmptRef=e,this._contentRef=t,this._backdropCmptRef=n,this._beforeDismiss=i,e.instance.dismissEvent.subscribe(e=>{this.dismiss(e)}),this.result=new Promise((e,t)=>{this._resolve=e,this._reject=t}),this.result.then(null,()=>{})}get componentInstance(){if(this._contentRef&&this._contentRef.componentRef)return this._contentRef.componentRef.instance}close(e){this._windowCmptRef&&(this._resolve(e),this._removeModalElements())}_dismiss(e){this._reject(e),this._removeModalElements()}dismiss(e){if(this._windowCmptRef)if(this._beforeDismiss){const t=this._beforeDismiss();t&&t.then?t.then(t=>{!1!==t&&this._dismiss(e)},()=>{}):!1!==t&&this._dismiss(e)}else this._dismiss(e)}_removeModalElements(){const e=this._windowCmptRef.location.nativeElement;if(e.parentNode.removeChild(e),this._windowCmptRef.destroy(),this._backdropCmptRef){const e=this._backdropCmptRef.location.nativeElement;e.parentNode.removeChild(e),this._backdropCmptRef.destroy()}this._contentRef&&this._contentRef.viewRef&&this._contentRef.viewRef.destroy(),this._windowCmptRef=null,this._backdropCmptRef=null,this._contentRef=null}}const nL=function(){var e={BACKDROP_CLICK:0,ESC:1};return e[e.BACKDROP_CLICK]=\"BACKDROP_CLICK\",e[e.ESC]=\"ESC\",e}();let iL=(()=>{class e{constructor(e,t,n){this._document=e,this._elRef=t,this._zone=n,this.backdrop=!0,this.keyboard=!0,this.dismissEvent=new yc,n.runOutsideAngular(()=>{Mb(this._elRef.nativeElement,\"keydown\").pipe(Nb(this.dismissEvent),Tu(e=>e.which===US.Escape&&this.keyboard)).subscribe(e=>requestAnimationFrame(()=>{e.defaultPrevented||n.run(()=>this.dismiss(nL.ESC))}));const e=Mb(this._elRef.nativeElement,\"mousedown\").pipe(Nb(this.dismissEvent),H(e=>!0===this.backdrop&&this._elRef.nativeElement===e.target));Mb(this._elRef.nativeElement,\"mouseup\").pipe(Nb(this.dismissEvent),fS(e),Tu(([e,t])=>t)).subscribe(()=>this._zone.run(()=>this.dismiss(nL.BACKDROP_CLICK)))})}dismiss(e){this.dismissEvent.emit(e)}ngOnInit(){this._elWithFocus=this._document.activeElement}ngAfterViewInit(){if(!this._elRef.nativeElement.contains(document.activeElement)){const e=this._elRef.nativeElement.querySelector(\"[ngbAutofocus]\"),t=BS(this._elRef.nativeElement)[0];(e||t||this._elRef.nativeElement).focus()}}ngOnDestroy(){const e=this._document.body,t=this._elWithFocus;let n;n=t&&t.focus&&e.contains(t)?t:e,this._zone.runOutsideAngular(()=>{setTimeout(()=>n.focus()),this._elWithFocus=null})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(Nd),Eo(Ka),Eo(ld))},e.\\u0275cmp=yt({type:e,selectors:[[\"ngb-modal-window\"]],hostAttrs:[\"role\",\"dialog\",\"tabindex\",\"-1\"],hostVars:4,hostBindings:function(e,t){2&e&&(Co(\"aria-modal\",!0)(\"aria-labelledby\",t.ariaLabelledBy),ha(\"modal fade show d-block\"+(t.windowClass?\" \"+t.windowClass:\"\")))},inputs:{backdrop:\"backdrop\",keyboard:\"keyboard\",ariaLabelledBy:\"ariaLabelledBy\",centered:\"centered\",scrollable:\"scrollable\",size:\"size\",windowClass:\"windowClass\"},outputs:{dismissEvent:\"dismiss\"},ngContentSelectors:vS,decls:3,vars:2,consts:[[\"role\",\"document\"],[1,\"modal-content\"]],template:function(e,t){1&e&&(Zo(),Ro(0,\"div\",0),Ro(1,\"div\",1),ea(2),Ho(),Ho()),2&e&&ha(\"modal-dialog\"+(t.size?\" modal-\"+t.size:\"\")+(t.centered?\" modal-dialog-centered\":\"\")+(t.scrollable?\" modal-dialog-scrollable\":\"\"))},styles:[\"ngb-modal-window .component-host-scrollable{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;overflow:hidden}\"],encapsulation:2}),e})(),sL=(()=>{class e{constructor(e,t,n,i,s,r){this._applicationRef=e,this._injector=t,this._document=n,this._scrollBar=i,this._rendererFactory=s,this._ngZone=r,this._activeWindowCmptHasChanged=new L,this._ariaHiddenValues=new Map,this._backdropAttributes=[\"backdropClass\"],this._modalRefs=[],this._windowAttributes=[\"ariaLabelledBy\",\"backdrop\",\"centered\",\"keyboard\",\"scrollable\",\"size\",\"windowClass\"],this._windowCmpts=[],this._activeWindowCmptHasChanged.subscribe(()=>{if(this._windowCmpts.length){const e=this._windowCmpts[this._windowCmpts.length-1];((e,t,n,i=!1)=>{this._ngZone.runOutsideAngular(()=>{const e=Mb(t,\"focusin\").pipe(Nb(n),H(e=>e.target));Mb(t,\"keydown\").pipe(Nb(n),Tu(e=>e.which===US.Tab),fS(e)).subscribe(([e,n])=>{const[i,s]=BS(t);n!==i&&n!==t||!e.shiftKey||(s.focus(),e.preventDefault()),n!==s||e.shiftKey||(i.focus(),e.preventDefault())}),i&&Mb(t,\"click\").pipe(Nb(n),fS(e),H(e=>e[1])).subscribe(e=>e.focus())})})(0,e.location.nativeElement,this._activeWindowCmptHasChanged),this._revertAriaHidden(),this._setAriaHidden(e.location.nativeElement)}})}open(e,t,n,i){const s=DS(i.container)?this._document.querySelector(i.container):this._document.body,r=this._rendererFactory.createRenderer(null,null),o=this._scrollBar.compensate(),a=()=>{this._modalRefs.length||(r.removeClass(this._document.body,\"modal-open\"),this._revertAriaHidden())};if(!s)throw new Error(`The specified modal container \"${i.container||\"body\"}\" was not found in the DOM.`);const l=new eL,c=this._getContentRef(e,i.injector||t,n,l,i);let d=!1!==i.backdrop?this._attachBackdrop(e,s):null,u=this._attachWindowComponent(e,s,c),h=new tL(u,c,d,i.beforeDismiss);return this._registerModalRef(h),this._registerWindowCmpt(u),h.result.then(o,o),h.result.then(a,a),l.close=e=>{h.close(e)},l.dismiss=e=>{h.dismiss(e)},this._applyWindowOptions(u.instance,i),1===this._modalRefs.length&&r.addClass(this._document.body,\"modal-open\"),d&&d.instance&&this._applyBackdropOptions(d.instance,i),h}dismissAll(e){this._modalRefs.forEach(t=>t.dismiss(e))}hasOpenModals(){return this._modalRefs.length>0}_attachBackdrop(e,t){let n=e.resolveComponentFactory(XS).create(this._injector);return this._applicationRef.attachView(n.hostView),t.appendChild(n.location.nativeElement),n}_attachWindowComponent(e,t,n){let i=e.resolveComponentFactory(iL).create(this._injector,n.nodes);return this._applicationRef.attachView(i.hostView),t.appendChild(i.location.nativeElement),i}_applyWindowOptions(e,t){this._windowAttributes.forEach(n=>{DS(t[n])&&(e[n]=t[n])})}_applyBackdropOptions(e,t){this._backdropAttributes.forEach(n=>{DS(t[n])&&(e[n]=t[n])})}_getContentRef(e,t,n,i,s){return n?n instanceof vl?this._createFromTemplateRef(n,i):\"string\"==typeof n?this._createFromString(n):this._createFromComponent(e,t,n,i,s):new KS([])}_createFromTemplateRef(e,t){const n=e.createEmbeddedView({$implicit:t,close(e){t.close(e)},dismiss(e){t.dismiss(e)}});return this._applicationRef.attachView(n),new KS([n.rootNodes],n)}_createFromString(e){const t=this._document.createTextNode(`${e}`);return new KS([[t]])}_createFromComponent(e,t,n,i,s){const r=e.resolveComponentFactory(n),o=fo.create({providers:[{provide:eL,useValue:i}],parent:t}),a=r.create(o),l=a.location.nativeElement;return s.scrollable&&l.classList.add(\"component-host-scrollable\"),this._applicationRef.attachView(a.hostView),new KS([[l]],a.hostView,a)}_setAriaHidden(e){const t=e.parentElement;t&&e!==this._document.body&&(Array.from(t.children).forEach(t=>{t!==e&&\"SCRIPT\"!==t.nodeName&&(this._ariaHiddenValues.set(t,t.getAttribute(\"aria-hidden\")),t.setAttribute(\"aria-hidden\",\"true\"))}),this._setAriaHidden(t))}_revertAriaHidden(){this._ariaHiddenValues.forEach((e,t)=>{e?t.setAttribute(\"aria-hidden\",e):t.removeAttribute(\"aria-hidden\")}),this._ariaHiddenValues.clear()}_registerModalRef(e){const t=()=>{const t=this._modalRefs.indexOf(e);t>-1&&this._modalRefs.splice(t,1)};this._modalRefs.push(e),e.result.then(t,t)}_registerWindowCmpt(e){this._windowCmpts.push(e),this._activeWindowCmptHasChanged.next(),e.onDestroy(()=>{const t=this._windowCmpts.indexOf(e);t>-1&&(this._windowCmpts.splice(t,1),this._activeWindowCmptHasChanged.next())})}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Td),Qe(fo),Qe(Nd),Qe(QS),Qe(Qa),Qe(ld))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e(Qe(Td),Qe(We),Qe(Nd),Qe(QS),Qe(Qa),Qe(ld))},token:e,providedIn:\"root\"}),e})(),rL=(()=>{class e{constructor(e,t,n,i){this._moduleCFR=e,this._injector=t,this._modalStack=n,this._config=i}open(e,t={}){const n=Object.assign({},this._config,t);return this._modalStack.open(this._moduleCFR,this._injector,e,n)}dismissAll(e){this._modalStack.dismissAll(e)}hasOpenModals(){return this._modalStack.hasOpenModals()}}return e.\\u0275fac=function(t){return new(t||e)(Qe(Ja),Qe(fo),Qe(sL),Qe(JS))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e.ngInjectableDef=pe({factory:function(){return new e(Qe(Ja),Qe(We),Qe(sL),Qe(JS))},token:e,providedIn:\"root\"}),e})(),oL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[rL]}),e})(),aL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),lL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),cL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),dL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),uL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),hL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),mL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})(),pL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)}}),e})(),fL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[[Mu]]}),e})();const _L=[YS,IS,PS,zS,WS,qS,GS,oL,aL,lL,cL,dL,uL,hL,mL,pL,fL];let gL=(()=>{class e{}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},imports:[_L,YS,IS,PS,zS,WS,qS,GS,oL,aL,lL,cL,dL,uL,hL,mL,pL,fL]}),e})();var yL=n(\"aCrv\");const bL=[\"header\"],vL=[\"container\"],wL=[\"content\"],ML=[\"invisiblePadding\"],kL=[\"*\"];function SL(){return{scrollThrottlingTime:0,scrollDebounceTime:0,scrollAnimationTime:750,checkResizeInterval:1e3,resizeBypassRefreshThreshold:5,modifyOverflowStyleOfParentScroll:!0,stripedTable:!1}}let LL=(()=>{let e=class{constructor(e,t,n,i,s,r){this.element=e,this.renderer=t,this.zone=n,this.changeDetectorRef=i,this.window=window,this.executeRefreshOutsideAngularZone=!1,this._enableUnequalChildrenSizes=!1,this.useMarginInsteadOfTranslate=!1,this.ssrViewportWidth=1920,this.ssrViewportHeight=1080,this._bufferAmount=0,this._items=[],this.compareItems=(e,t)=>e===t,this.vsUpdate=new yc,this.vsChange=new yc,this.vsStart=new yc,this.vsEnd=new yc,this.calculatedScrollbarWidth=0,this.calculatedScrollbarHeight=0,this.padding=0,this.previousViewPort={},this.cachedPageSize=0,this.previousScrollNumberElements=0,this.isAngularUniversalSSR=function(e){return\"server\"===e}(s),this.scrollThrottlingTime=r.scrollThrottlingTime,this.scrollDebounceTime=r.scrollDebounceTime,this.scrollAnimationTime=r.scrollAnimationTime,this.scrollbarWidth=r.scrollbarWidth,this.scrollbarHeight=r.scrollbarHeight,this.checkResizeInterval=r.checkResizeInterval,this.resizeBypassRefreshThreshold=r.resizeBypassRefreshThreshold,this.modifyOverflowStyleOfParentScroll=r.modifyOverflowStyleOfParentScroll,this.stripedTable=r.stripedTable,this.horizontal=!1,this.resetWrapGroupDimensions()}get viewPortInfo(){let e=this.previousViewPort||{};return{startIndex:e.startIndex||0,endIndex:e.endIndex||0,scrollStartPosition:e.scrollStartPosition||0,scrollEndPosition:e.scrollEndPosition||0,maxScrollPosition:e.maxScrollPosition||0,startIndexWithBuffer:e.startIndexWithBuffer||0,endIndexWithBuffer:e.endIndexWithBuffer||0}}get enableUnequalChildrenSizes(){return this._enableUnequalChildrenSizes}set enableUnequalChildrenSizes(e){this._enableUnequalChildrenSizes!==e&&(this._enableUnequalChildrenSizes=e,this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0)}get bufferAmount(){return\"number\"==typeof this._bufferAmount&&this._bufferAmount>=0?this._bufferAmount:this.enableUnequalChildrenSizes?5:0}set bufferAmount(e){this._bufferAmount=e}get scrollThrottlingTime(){return this._scrollThrottlingTime}set scrollThrottlingTime(e){this._scrollThrottlingTime=e,this.updateOnScrollFunction()}get scrollDebounceTime(){return this._scrollDebounceTime}set scrollDebounceTime(e){this._scrollDebounceTime=e,this.updateOnScrollFunction()}updateOnScrollFunction(){this.onScroll=this.scrollDebounceTime?this.debounce(()=>{this.refresh_internal(!1)},this.scrollDebounceTime):this.scrollThrottlingTime?this.throttleTrailing(()=>{this.refresh_internal(!1)},this.scrollThrottlingTime):()=>{this.refresh_internal(!1)}}get checkResizeInterval(){return this._checkResizeInterval}set checkResizeInterval(e){this._checkResizeInterval!==e&&(this._checkResizeInterval=e,this.addScrollEventHandlers())}get items(){return this._items}set items(e){e!==this._items&&(this._items=e||[],this.refresh_internal(!0))}get horizontal(){return this._horizontal}set horizontal(e){this._horizontal=e,this.updateDirection()}revertParentOverscroll(){const e=this.getScrollElement();e&&this.oldParentScrollOverflow&&(e.style[\"overflow-y\"]=this.oldParentScrollOverflow.y,e.style[\"overflow-x\"]=this.oldParentScrollOverflow.x),this.oldParentScrollOverflow=void 0}get parentScroll(){return this._parentScroll}set parentScroll(e){if(this._parentScroll===e)return;this.revertParentOverscroll(),this._parentScroll=e,this.addScrollEventHandlers();const t=this.getScrollElement();this.modifyOverflowStyleOfParentScroll&&t!==this.element.nativeElement&&(this.oldParentScrollOverflow={x:t.style[\"overflow-x\"],y:t.style[\"overflow-y\"]},t.style[\"overflow-y\"]=this.horizontal?\"visible\":\"auto\",t.style[\"overflow-x\"]=this.horizontal?\"auto\":\"visible\")}ngOnInit(){this.addScrollEventHandlers()}ngOnDestroy(){this.removeScrollEventHandlers(),this.revertParentOverscroll()}ngOnChanges(e){let t=this.cachedItemsLength!==this.items.length;this.cachedItemsLength=this.items.length,this.refresh_internal(t||!e.items||!e.items.previousValue||0===e.items.previousValue.length)}ngDoCheck(){if(this.cachedItemsLength!==this.items.length)return this.cachedItemsLength=this.items.length,void this.refresh_internal(!0);if(this.previousViewPort&&this.viewPortItems&&this.viewPortItems.length>0){let e=!1;for(let t=0;t=0&&this.invalidateCachedMeasurementAtIndex(t)}else this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0;this.refresh_internal(!1)}invalidateCachedMeasurementAtIndex(e){if(this.enableUnequalChildrenSizes){let t=this.wrapGroupDimensions.maxChildSizePerWrapGroup[e];t&&(this.wrapGroupDimensions.maxChildSizePerWrapGroup[e]=void 0,--this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes,this.wrapGroupDimensions.sumOfKnownWrapGroupChildWidths-=t.childWidth||0,this.wrapGroupDimensions.sumOfKnownWrapGroupChildHeights-=t.childHeight||0)}else this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0;this.refresh_internal(!1)}scrollInto(e,t=!0,n=0,i,s){let r=this.items.indexOf(e);-1!==r&&this.scrollToIndex(r,t,n,i,s)}scrollToIndex(e,t=!0,n=0,i,s){let r=5,o=()=>{if(--r,r<=0)return void(s&&s());let i=this.calculateDimensions(),a=Math.min(Math.max(e,0),i.itemCount-1);this.previousViewPort.startIndex!==a?this.scrollToIndex_internal(e,t,n,0,o):s&&s()};this.scrollToIndex_internal(e,t,n,i,o)}scrollToIndex_internal(e,t=!0,n=0,i,s){i=void 0===i?this.scrollAnimationTime:i;let r=this.calculateDimensions(),o=this.calculatePadding(e,r)+n;t||(o-=r.wrapGroupsPerPage*r[this._childScrollDim]),this.scrollToPosition(o,i,s)}scrollToPosition(e,t,n){e+=this.getElementsOffset(),t=void 0===t?this.scrollAnimationTime:t;let i,s=this.getScrollElement();if(this.currentTween&&(this.currentTween.stop(),this.currentTween=void 0),!t)return this.renderer.setProperty(s,this._scrollType,e),void this.refresh_internal(!1,n);const r={scrollPosition:s[this._scrollType]};let o=new yL.Tween(r).to({scrollPosition:e},t).easing(yL.Easing.Quadratic.Out).onUpdate(e=>{isNaN(e.scrollPosition)||(this.renderer.setProperty(s,this._scrollType,e.scrollPosition),this.refresh_internal(!1))}).onStop(()=>{cancelAnimationFrame(i)}).start();const a=t=>{o.isPlaying()&&(o.update(t),r.scrollPosition!==e?this.zone.runOutsideAngular(()=>{i=requestAnimationFrame(a)}):this.refresh_internal(!1,n))};a(),this.currentTween=o}getElementSize(e){let t=e.getBoundingClientRect(),n=getComputedStyle(e),i=parseInt(n[\"margin-top\"],10)||0,s=parseInt(n[\"margin-bottom\"],10)||0,r=parseInt(n[\"margin-left\"],10)||0,o=parseInt(n[\"margin-right\"],10)||0;return{top:t.top+i,bottom:t.bottom+s,left:t.left+r,right:t.right+o,width:t.width+r+o,height:t.height+i+s}}checkScrollElementResized(){let e,t=this.getElementSize(this.getScrollElement());if(this.previousScrollBoundingRect){let n=Math.abs(t.width-this.previousScrollBoundingRect.width),i=Math.abs(t.height-this.previousScrollBoundingRect.height);e=n>this.resizeBypassRefreshThreshold||i>this.resizeBypassRefreshThreshold}else e=!0;e&&(this.previousScrollBoundingRect=t,t.width>0&&t.height>0&&this.refresh_internal(!1))}updateDirection(){this.horizontal?(this._invisiblePaddingProperty=\"width\",this._offsetType=\"offsetLeft\",this._pageOffsetType=\"pageXOffset\",this._childScrollDim=\"childWidth\",this._marginDir=\"margin-left\",this._translateDir=\"translateX\",this._scrollType=\"scrollLeft\"):(this._invisiblePaddingProperty=\"height\",this._offsetType=\"offsetTop\",this._pageOffsetType=\"pageYOffset\",this._childScrollDim=\"childHeight\",this._marginDir=\"margin-top\",this._translateDir=\"translateY\",this._scrollType=\"scrollTop\")}debounce(e,t){const n=this.throttleTrailing(e,t),i=function(){n.cancel(),n.apply(this,arguments)};return i.cancel=function(){n.cancel()},i}throttleTrailing(e,t){let n=void 0,i=arguments;const s=function(){const s=this;i=arguments,n||(t<=0?e.apply(s,i):n=setTimeout((function(){n=void 0,e.apply(s,i)}),t))};return s.cancel=function(){n&&(clearTimeout(n),n=void 0)},s}refresh_internal(e,t,n=2){if(e&&this.previousViewPort&&this.previousViewPort.scrollStartPosition>0){let e=this.previousViewPort,n=this.viewPortItems,i=t;t=()=>{let t=this.previousViewPort.scrollLength-e.scrollLength;if(t>0&&this.viewPortItems){let e=n[0],s=this.items.findIndex(t=>this.compareItems(e,t));if(s>this.previousViewPort.startIndexWithBuffer){let e=!1;for(let t=1;t{requestAnimationFrame(()=>{e&&this.resetWrapGroupDimensions();let i=this.calculateViewport(),s=e||i.startIndex!==this.previousViewPort.startIndex,r=e||i.endIndex!==this.previousViewPort.endIndex,o=i.scrollLength!==this.previousViewPort.scrollLength,a=i.padding!==this.previousViewPort.padding,l=i.scrollStartPosition!==this.previousViewPort.scrollStartPosition||i.scrollEndPosition!==this.previousViewPort.scrollEndPosition||i.maxScrollPosition!==this.previousViewPort.maxScrollPosition;if(this.previousViewPort=i,o&&this.renderer.setStyle(this.invisiblePaddingElementRef.nativeElement,this._invisiblePaddingProperty,`${i.scrollLength}px`),a&&(this.useMarginInsteadOfTranslate?this.renderer.setStyle(this.contentElementRef.nativeElement,this._marginDir,`${i.padding}px`):(this.renderer.setStyle(this.contentElementRef.nativeElement,\"transform\",`${this._translateDir}(${i.padding}px)`),this.renderer.setStyle(this.contentElementRef.nativeElement,\"webkitTransform\",`${this._translateDir}(${i.padding}px)`))),this.headerElementRef){let e=this.getScrollElement()[this._scrollType],t=this.getElementsOffset(),n=Math.max(e-i.padding-t+this.headerElementRef.nativeElement.clientHeight,0);this.renderer.setStyle(this.headerElementRef.nativeElement,\"transform\",`${this._translateDir}(${n}px)`),this.renderer.setStyle(this.headerElementRef.nativeElement,\"webkitTransform\",`${this._translateDir}(${n}px)`)}const c=s||r?{startIndex:i.startIndex,endIndex:i.endIndex,scrollStartPosition:i.scrollStartPosition,scrollEndPosition:i.scrollEndPosition,startIndexWithBuffer:i.startIndexWithBuffer,endIndexWithBuffer:i.endIndexWithBuffer,maxScrollPosition:i.maxScrollPosition}:void 0;if(s||r||l){const e=()=>{this.viewPortItems=i.startIndexWithBuffer>=0&&i.endIndexWithBuffer>=0?this.items.slice(i.startIndexWithBuffer,i.endIndexWithBuffer+1):[],this.vsUpdate.emit(this.viewPortItems),s&&this.vsStart.emit(c),r&&this.vsEnd.emit(c),(s||r)&&(this.changeDetectorRef.markForCheck(),this.vsChange.emit(c)),n>0?this.refresh_internal(!1,t,n-1):t&&t()};this.executeRefreshOutsideAngularZone?e():this.zone.run(e)}else{if(n>0&&(o||a))return void this.refresh_internal(!1,t,n-1);t&&t()}})})}getScrollElement(){return this.parentScroll instanceof Window?document.scrollingElement||document.documentElement||document.body:this.parentScroll||this.element.nativeElement}addScrollEventHandlers(){if(this.isAngularUniversalSSR)return;let e=this.getScrollElement();this.removeScrollEventHandlers(),this.zone.runOutsideAngular(()=>{this.parentScroll instanceof Window?(this.disposeScrollHandler=this.renderer.listen(\"window\",\"scroll\",this.onScroll),this.disposeResizeHandler=this.renderer.listen(\"window\",\"resize\",this.onScroll)):(this.disposeScrollHandler=this.renderer.listen(e,\"scroll\",this.onScroll),this._checkResizeInterval>0&&(this.checkScrollElementResizedTimer=setInterval(()=>{this.checkScrollElementResized()},this._checkResizeInterval)))})}removeScrollEventHandlers(){this.checkScrollElementResizedTimer&&clearInterval(this.checkScrollElementResizedTimer),this.disposeScrollHandler&&(this.disposeScrollHandler(),this.disposeScrollHandler=void 0),this.disposeResizeHandler&&(this.disposeResizeHandler(),this.disposeResizeHandler=void 0)}getElementsOffset(){if(this.isAngularUniversalSSR)return 0;let e=0;if(this.containerElementRef&&this.containerElementRef.nativeElement&&(e+=this.containerElementRef.nativeElement[this._offsetType]),this.parentScroll){let t=this.getScrollElement(),n=this.getElementSize(this.element.nativeElement),i=this.getElementSize(t);e+=this.horizontal?n.left-i.left:n.top-i.top,this.parentScroll instanceof Window||(e+=t[this._scrollType])}return e}countItemsPerWrapGroup(){if(this.isAngularUniversalSSR)return Math.round(this.horizontal?this.ssrViewportHeight/this.ssrChildHeight:this.ssrViewportWidth/this.ssrChildWidth);let e=this.horizontal?\"offsetLeft\":\"offsetTop\",t=(this.containerElementRef&&this.containerElementRef.nativeElement||this.contentElementRef.nativeElement).children,n=t?t.length:0;if(0===n)return 1;let i=t[0][e],s=1;for(;s0){let t=Math.min(l,e);e-=t,l-=t}m+=e,e>0&&s>=m&&++t}else{let e=Math.min(h,Math.max(r-p,0));if(l>0){let t=Math.min(l,e);e-=t,l-=t}p+=e,e>0&&r>=p&&++t}++d,u=0,h=0}}let f=this.wrapGroupDimensions.sumOfKnownWrapGroupChildWidths/this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes,_=this.wrapGroupDimensions.sumOfKnownWrapGroupChildHeights/this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes;n=this.childWidth||f||s,i=this.childHeight||_||r,this.horizontal?s>m&&(t+=Math.ceil((s-m)/n)):r>p&&(t+=Math.ceil((r-p)/i))}else{if(o.children.length>0){this.childWidth&&this.childHeight||(!this.minMeasuredChildWidth&&s>0&&(this.minMeasuredChildWidth=s),!this.minMeasuredChildHeight&&r>0&&(this.minMeasuredChildHeight=r));let e=this.getElementSize(o.children[0]);this.minMeasuredChildWidth=Math.min(this.minMeasuredChildWidth,e.width),this.minMeasuredChildHeight=Math.min(this.minMeasuredChildHeight,e.height)}n=this.childWidth||this.minMeasuredChildWidth||s,i=this.childHeight||this.minMeasuredChildHeight||r;let e=Math.max(Math.ceil(s/n),1),a=Math.max(Math.ceil(r/i),1);t=this.horizontal?e:a}let l=this.items.length,c=a*t,d=l/c,u=Math.ceil(l/a),h=0,m=this.horizontal?n:i;if(this.enableUnequalChildrenSizes){let e=0;for(let t=0;t0&&(o+=t.itemsPerWrapGroup-a),isNaN(r)&&(r=0),isNaN(o)&&(o=0),r=Math.min(Math.max(r,0),t.itemCount-1),o=Math.min(Math.max(o,0),t.itemCount-1);let l=this.bufferAmount*t.itemsPerWrapGroup;return{startIndex:r,endIndex:o,startIndexWithBuffer:Math.min(Math.max(r-l,0),t.itemCount-1),endIndexWithBuffer:Math.min(Math.max(o+l,0),t.itemCount-1),scrollStartPosition:e,scrollEndPosition:e+t.viewportLength,maxScrollPosition:t.maxScrollPosition}}calculateViewport(){let e=this.calculateDimensions(),t=this.getElementsOffset(),n=this.getScrollStartPosition();n>e.scrollLength+t&&!(this.parentScroll instanceof Window)?n=e.scrollLength:n-=t,n=Math.max(0,n);let i=this.calculatePageInfo(n,e),s=this.calculatePadding(i.startIndexWithBuffer,e),r=e.scrollLength;return{startIndex:i.startIndex,endIndex:i.endIndex,startIndexWithBuffer:i.startIndexWithBuffer,endIndexWithBuffer:i.endIndexWithBuffer,padding:Math.round(s),scrollLength:Math.round(r),scrollStartPosition:i.scrollStartPosition,scrollEndPosition:i.scrollEndPosition,maxScrollPosition:i.maxScrollPosition}}};return e.\\u0275fac=function(t){return new(t||e)(Eo(Ka),Eo(el),Eo(ld),Eo(Qr),Eo(Bc),Eo(\"virtual-scroller-default-options\",8))},e.\\u0275cmp=yt({type:e,selectors:[[\"virtual-scroller\"],[\"\",\"virtualScroller\",\"\"]],contentQueries:function(e,t,n){var i;1&e&&(Ic(n,bL,!0,Ka),Ic(n,vL,!0,Ka)),2&e&&(Dc(i=Rc())&&(t.headerElementRef=i.first),Dc(i=Rc())&&(t.containerElementRef=i.first))},viewQuery:function(e,t){var n;1&e&&(Ec(wL,!0,Ka),Ec(ML,!0,Ka)),2&e&&(Dc(n=Rc())&&(t.contentElementRef=n.first),Dc(n=Rc())&&(t.invisiblePaddingElementRef=n.first))},hostVars:6,hostBindings:function(e,t){2&e&&ua(\"horizontal\",t.horizontal)(\"vertical\",!t.horizontal)(\"selfScroll\",!t.parentScroll)},inputs:{executeRefreshOutsideAngularZone:\"executeRefreshOutsideAngularZone\",useMarginInsteadOfTranslate:\"useMarginInsteadOfTranslate\",ssrViewportWidth:\"ssrViewportWidth\",ssrViewportHeight:\"ssrViewportHeight\",compareItems:\"compareItems\",scrollThrottlingTime:\"scrollThrottlingTime\",scrollDebounceTime:\"scrollDebounceTime\",scrollAnimationTime:\"scrollAnimationTime\",scrollbarWidth:\"scrollbarWidth\",scrollbarHeight:\"scrollbarHeight\",checkResizeInterval:\"checkResizeInterval\",resizeBypassRefreshThreshold:\"resizeBypassRefreshThreshold\",modifyOverflowStyleOfParentScroll:\"modifyOverflowStyleOfParentScroll\",stripedTable:\"stripedTable\",horizontal:\"horizontal\",enableUnequalChildrenSizes:\"enableUnequalChildrenSizes\",bufferAmount:\"bufferAmount\",items:\"items\",parentScroll:\"parentScroll\",childWidth:\"childWidth\",childHeight:\"childHeight\",ssrChildWidth:\"ssrChildWidth\",ssrChildHeight:\"ssrChildHeight\"},outputs:{vsUpdate:\"vsUpdate\",vsChange:\"vsChange\",vsStart:\"vsStart\",vsEnd:\"vsEnd\"},exportAs:[\"virtualScroller\"],features:[Ra],ngContentSelectors:kL,decls:5,vars:0,consts:[[1,\"total-padding\"],[\"invisiblePadding\",\"\"],[1,\"scrollable-content\"],[\"content\",\"\"]],template:function(e,t){1&e&&(Zo(),jo(0,\"div\",0,1),Ro(2,\"div\",2,3),ea(4),Ho())},styles:[\"[_nghost-%COMP%] {\\n position: relative;\\n\\t display: block;\\n -webkit-overflow-scrolling: touch;\\n }\\n\\t\\n\\t.horizontal.selfScroll[_nghost-%COMP%] {\\n overflow-y: visible;\\n overflow-x: auto;\\n\\t}\\n\\t.vertical.selfScroll[_nghost-%COMP%] {\\n overflow-y: auto;\\n overflow-x: visible;\\n\\t}\\n\\t\\n .scrollable-content[_ngcontent-%COMP%] {\\n top: 0;\\n left: 0;\\n width: 100%;\\n height: 100%;\\n max-width: 100vw;\\n max-height: 100vh;\\n position: absolute;\\n }\\n\\n\\t.scrollable-content[_ngcontent-%COMP%] > * {\\n\\t\\tbox-sizing: border-box;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] {\\n\\t\\twhite-space: nowrap;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] .scrollable-content[_ngcontent-%COMP%] {\\n\\t\\tdisplay: flex;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] .scrollable-content[_ngcontent-%COMP%] > * {\\n\\t\\tflex-shrink: 0;\\n\\t\\tflex-grow: 0;\\n\\t\\twhite-space: initial;\\n\\t}\\n\\t\\n .total-padding[_ngcontent-%COMP%] {\\n width: 1px;\\n opacity: 0;\\n }\\n \\n .horizontal[_nghost-%COMP%] .total-padding[_ngcontent-%COMP%] {\\n height: 100%;\\n }\"]}),e})(),xL=(()=>{let e=class{};return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[{provide:\"virtual-scroller-default-options\",useFactory:SL}],imports:[[Mu]]}),e})();const CL={on:()=>{},off:()=>{}};let TL=(()=>{class e extends wf{constructor(e){super(),this.hammerOptions=e,this.events=[\"longpress\",\"slide\",\"slidestart\",\"slideend\",\"slideright\",\"slideleft\"]}buildHammer(e){const t=\"undefined\"!=typeof window?window.Hammer:null;if(!t)return CL;const n=new t(e,this.hammerOptions||void 0),i=new t.Pan,s=new t.Swipe,r=new t.Press,o=this._createRecognizer(i,{event:\"slide\",threshold:0},s),a=this._createRecognizer(r,{event:\"longpress\",time:500});return i.recognizeWith(s),a.recognizeWith(o),n.add([s,r,i,o,a]),n}_createRecognizer(e,t,...n){const i=new e.constructor(t);return n.push(e),n.forEach(e=>i.recognizeWith(e)),i}}return e.\\u0275fac=function(t){return new(t||e)(Qe(wy,8))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();const DL=(()=>{function e(){return Error.call(this),this.message=\"no elements in sequence\",this.name=\"EmptyError\",this}return e.prototype=Object.create(Error.prototype),e})();function YL(e){return function(t){return 0===e?lp():t.lift(new EL(e))}}class EL{constructor(e){if(this.total=e,this.total<0)throw new op}call(e,t){return t.subscribe(new OL(e,this.total))}}class OL extends p{constructor(e,t){super(e),this.total=t,this.ring=new Array,this.count=0}_next(e){const t=this.ring,n=this.total,i=this.count++;t.length0){const n=this.count>=this.total?this.total:this.count,i=this.ring;for(let s=0;st.lift(new PL(e))}class PL{constructor(e){this.errorFactory=e}call(e,t){return t.subscribe(new AL(e,this.errorFactory))}}class AL extends p{constructor(e,t){super(e),this.errorFactory=t,this.hasValue=!1}_next(e){this.hasValue=!0,this.destination.next(e)}_complete(){if(this.hasValue)return this.destination.complete();{let t;try{t=this.errorFactory()}catch(e){t=e}this.destination.error(t)}}}function RL(){return new DL}function HL(e=null){return t=>t.lift(new jL(e))}class jL{constructor(e){this.defaultValue=e}call(e,t){return t.subscribe(new FL(e,this.defaultValue))}}class FL extends p{constructor(e,t){super(e),this.defaultValue=t,this.isEmpty=!0}_next(e){this.isEmpty=!1,this.destination.next(e)}_complete(){this.isEmpty&&this.destination.next(this.defaultValue),this.destination.complete()}}function NL(e,t){const n=arguments.length>=2;return i=>i.pipe(e?Tu((t,n)=>e(t,n,i)):$,YL(1),n?HL(t):IL(()=>new DL))}function zL(e,t){const n=arguments.length>=2;return i=>i.pipe(e?Tu((t,n)=>e(t,n,i)):$,cp(1),n?HL(t):IL(()=>new DL))}class VL{constructor(e,t,n){this.predicate=e,this.thisArg=t,this.source=n}call(e,t){return t.subscribe(new WL(e,this.predicate,this.thisArg,this.source))}}class WL extends p{constructor(e,t,n,i){super(e),this.predicate=t,this.thisArg=n,this.source=i,this.index=0,this.thisArg=n||this}notifyComplete(e){this.destination.next(e),this.destination.complete()}_next(e){let t=!1;try{t=this.predicate.call(this.thisArg,e,this.index++,this.source)}catch(n){return void this.destination.error(n)}t||this.notifyComplete(!1)}_complete(){this.notifyComplete(!0)}}function UL(e,t){let n=!1;return arguments.length>=2&&(n=!0),function(i){return i.lift(new $L(e,t,n))}}class $L{constructor(e,t,n=!1){this.accumulator=e,this.seed=t,this.hasSeed=n}call(e,t){return t.subscribe(new BL(e,this.accumulator,this.seed,this.hasSeed))}}class BL extends p{constructor(e,t,n,i){super(e),this.accumulator=t,this._seed=n,this.hasSeed=i,this.index=0}get seed(){return this._seed}set seed(e){this.hasSeed=!0,this._seed=e}_next(e){if(this.hasSeed)return this._tryNext(e);this.seed=e,this.destination.next(e)}_tryNext(e){const t=this.index++;let n;try{n=this.accumulator(this.seed,e,t)}catch(i){this.destination.error(i)}this.seed=n,this.destination.next(n)}}class qL{constructor(e,t){this.id=e,this.url=t}}class GL extends qL{constructor(e,t,n=\"imperative\",i=null){super(e,t),this.navigationTrigger=n,this.restoredState=i}toString(){return`NavigationStart(id: ${this.id}, url: '${this.url}')`}}class JL extends qL{constructor(e,t,n){super(e,t),this.urlAfterRedirects=n}toString(){return`NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`}}class KL extends qL{constructor(e,t,n){super(e,t),this.reason=n}toString(){return`NavigationCancel(id: ${this.id}, url: '${this.url}')`}}class ZL extends qL{constructor(e,t,n){super(e,t),this.error=n}toString(){return`NavigationError(id: ${this.id}, url: '${this.url}', error: ${this.error})`}}class QL extends qL{constructor(e,t,n,i){super(e,t),this.urlAfterRedirects=n,this.state=i}toString(){return`RoutesRecognized(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class XL extends qL{constructor(e,t,n,i){super(e,t),this.urlAfterRedirects=n,this.state=i}toString(){return`GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class ex extends qL{constructor(e,t,n,i,s){super(e,t),this.urlAfterRedirects=n,this.state=i,this.shouldActivate=s}toString(){return`GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`}}class tx extends qL{constructor(e,t,n,i){super(e,t),this.urlAfterRedirects=n,this.state=i}toString(){return`ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class nx extends qL{constructor(e,t,n,i){super(e,t),this.urlAfterRedirects=n,this.state=i}toString(){return`ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class ix{constructor(e){this.route=e}toString(){return`RouteConfigLoadStart(path: ${this.route.path})`}}class sx{constructor(e){this.route=e}toString(){return`RouteConfigLoadEnd(path: ${this.route.path})`}}class rx{constructor(e){this.snapshot=e}toString(){return`ChildActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\"}')`}}class ox{constructor(e){this.snapshot=e}toString(){return`ChildActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\"}')`}}class ax{constructor(e){this.snapshot=e}toString(){return`ActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\"}')`}}class lx{constructor(e){this.snapshot=e}toString(){return`ActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\"}')`}}class cx{constructor(e,t,n){this.routerEvent=e,this.position=t,this.anchor=n}toString(){return`Scroll(anchor: '${this.anchor}', position: '${this.position?`${this.position[0]}, ${this.position[1]}`:null}')`}}let dx=(()=>{class e{}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:1,vars:0,template:function(e,t){1&e&&jo(0,\"router-outlet\")},directives:function(){return[mT]},encapsulation:2}),e})();class ux{constructor(e){this.params=e||{}}has(e){return this.params.hasOwnProperty(e)}get(e){if(this.has(e)){const t=this.params[e];return Array.isArray(t)?t[0]:t}return null}getAll(e){if(this.has(e)){const t=this.params[e];return Array.isArray(t)?t:[t]}return[]}get keys(){return Object.keys(this.params)}}function hx(e){return new ux(e)}function mx(e){const t=Error(\"NavigationCancelingError: \"+e);return t.ngNavigationCancelingError=!0,t}function px(e,t,n){const i=n.path.split(\"/\");if(i.length>e.length)return null;if(\"full\"===n.pathMatch&&(t.hasChildren()||i.lengtht.indexOf(e)>-1):e===t}function Mx(e){return Array.prototype.concat.apply([],e)}function kx(e){return e.length>0?e[e.length-1]:null}function Sx(e,t){for(const n in e)e.hasOwnProperty(n)&&t(e[n],n)}function Lx(e){return Wo(e)?e:Vo(e)?z(Promise.resolve(e)):xu(e)}function xx(e,t,n){return n?function(e,t){return vx(e,t)}(e.queryParams,t.queryParams)&&function e(t,n){if(!Yx(t.segments,n.segments))return!1;if(t.numberOfChildren!==n.numberOfChildren)return!1;for(const i in n.children){if(!t.children[i])return!1;if(!e(t.children[i],n.children[i]))return!1}return!0}(e.root,t.root):function(e,t){return Object.keys(t).length<=Object.keys(e).length&&Object.keys(t).every(n=>wx(e[n],t[n]))}(e.queryParams,t.queryParams)&&function e(t,n){return function t(n,i,s){if(n.segments.length>s.length)return!!Yx(n.segments.slice(0,s.length),s)&&!i.hasChildren();if(n.segments.length===s.length){if(!Yx(n.segments,s))return!1;for(const t in i.children){if(!n.children[t])return!1;if(!e(n.children[t],i.children[t]))return!1}return!0}{const e=s.slice(0,n.segments.length),r=s.slice(n.segments.length);return!!Yx(n.segments,e)&&!!n.children.primary&&t(n.children.primary,i,r)}}(t,n,n.segments)}(e.root,t.root)}class Cx{constructor(e,t,n){this.root=e,this.queryParams=t,this.fragment=n}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=hx(this.queryParams)),this._queryParamMap}toString(){return Px.serialize(this)}}class Tx{constructor(e,t){this.segments=e,this.children=t,this.parent=null,Sx(t,(e,t)=>e.parent=this)}hasChildren(){return this.numberOfChildren>0}get numberOfChildren(){return Object.keys(this.children).length}toString(){return Ax(this)}}class Dx{constructor(e,t){this.path=e,this.parameters=t}get parameterMap(){return this._parameterMap||(this._parameterMap=hx(this.parameters)),this._parameterMap}toString(){return zx(this)}}function Yx(e,t){return e.length===t.length&&e.every((e,n)=>e.path===t[n].path)}function Ex(e,t){let n=[];return Sx(e.children,(e,i)=>{\"primary\"===i&&(n=n.concat(t(e,i)))}),Sx(e.children,(e,i)=>{\"primary\"!==i&&(n=n.concat(t(e,i)))}),n}class Ox{}class Ix{parse(e){const t=new Bx(e);return new Cx(t.parseRootSegment(),t.parseQueryParams(),t.parseFragment())}serialize(e){var t;return`${`/${function e(t,n){if(!t.hasChildren())return Ax(t);if(n){const n=t.children.primary?e(t.children.primary,!1):\"\",i=[];return Sx(t.children,(t,n)=>{\"primary\"!==n&&i.push(`${n}:${e(t,!1)}`)}),i.length>0?`${n}(${i.join(\"//\")})`:n}{const n=Ex(t,(n,i)=>\"primary\"===i?[e(t.children.primary,!1)]:[`${i}:${e(n,!1)}`]);return`${Ax(t)}/(${n.join(\"//\")})`}}(e.root,!0)}`}${function(e){const t=Object.keys(e).map(t=>{const n=e[t];return Array.isArray(n)?n.map(e=>`${Hx(t)}=${Hx(e)}`).join(\"&\"):`${Hx(t)}=${Hx(n)}`});return t.length?`?${t.join(\"&\")}`:\"\"}(e.queryParams)}${\"string\"==typeof e.fragment?`#${t=e.fragment,encodeURI(t)}`:\"\"}`}}const Px=new Ix;function Ax(e){return e.segments.map(e=>zx(e)).join(\"/\")}function Rx(e){return encodeURIComponent(e).replace(/%40/g,\"@\").replace(/%3A/gi,\":\").replace(/%24/g,\"$\").replace(/%2C/gi,\",\")}function Hx(e){return Rx(e).replace(/%3B/gi,\";\")}function jx(e){return Rx(e).replace(/\\(/g,\"%28\").replace(/\\)/g,\"%29\").replace(/%26/gi,\"&\")}function Fx(e){return decodeURIComponent(e)}function Nx(e){return Fx(e.replace(/\\+/g,\"%20\"))}function zx(e){return`${jx(e.path)}${t=e.parameters,Object.keys(t).map(e=>`;${jx(e)}=${jx(t[e])}`).join(\"\")}`;var t}const Vx=/^[^\\/()?;=#]+/;function Wx(e){const t=e.match(Vx);return t?t[0]:\"\"}const Ux=/^[^=?&#]+/,$x=/^[^?&#]+/;class Bx{constructor(e){this.url=e,this.remaining=e}parseRootSegment(){return this.consumeOptional(\"/\"),\"\"===this.remaining||this.peekStartsWith(\"?\")||this.peekStartsWith(\"#\")?new Tx([],{}):new Tx([],this.parseChildren())}parseQueryParams(){const e={};if(this.consumeOptional(\"?\"))do{this.parseQueryParam(e)}while(this.consumeOptional(\"&\"));return e}parseFragment(){return this.consumeOptional(\"#\")?decodeURIComponent(this.remaining):null}parseChildren(){if(\"\"===this.remaining)return{};this.consumeOptional(\"/\");const e=[];for(this.peekStartsWith(\"(\")||e.push(this.parseSegment());this.peekStartsWith(\"/\")&&!this.peekStartsWith(\"//\")&&!this.peekStartsWith(\"/(\");)this.capture(\"/\"),e.push(this.parseSegment());let t={};this.peekStartsWith(\"/(\")&&(this.capture(\"/\"),t=this.parseParens(!0));let n={};return this.peekStartsWith(\"(\")&&(n=this.parseParens(!1)),(e.length>0||Object.keys(t).length>0)&&(n.primary=new Tx(e,t)),n}parseSegment(){const e=Wx(this.remaining);if(\"\"===e&&this.peekStartsWith(\";\"))throw new Error(`Empty path url segment cannot have parameters: '${this.remaining}'.`);return this.capture(e),new Dx(Fx(e),this.parseMatrixParams())}parseMatrixParams(){const e={};for(;this.consumeOptional(\";\");)this.parseParam(e);return e}parseParam(e){const t=Wx(this.remaining);if(!t)return;this.capture(t);let n=\"\";if(this.consumeOptional(\"=\")){const e=Wx(this.remaining);e&&(n=e,this.capture(n))}e[Fx(t)]=Fx(n)}parseQueryParam(e){const t=function(e){const t=e.match(Ux);return t?t[0]:\"\"}(this.remaining);if(!t)return;this.capture(t);let n=\"\";if(this.consumeOptional(\"=\")){const e=function(e){const t=e.match($x);return t?t[0]:\"\"}(this.remaining);e&&(n=e,this.capture(n))}const i=Nx(t),s=Nx(n);if(e.hasOwnProperty(i)){let t=e[i];Array.isArray(t)||(t=[t],e[i]=t),t.push(s)}else e[i]=s}parseParens(e){const t={};for(this.capture(\"(\");!this.consumeOptional(\")\")&&this.remaining.length>0;){const n=Wx(this.remaining),i=this.remaining[n.length];if(\"/\"!==i&&\")\"!==i&&\";\"!==i)throw new Error(`Cannot parse url '${this.url}'`);let s=void 0;n.indexOf(\":\")>-1?(s=n.substr(0,n.indexOf(\":\")),this.capture(s),this.capture(\":\")):e&&(s=\"primary\");const r=this.parseChildren();t[s]=1===Object.keys(r).length?r.primary:new Tx([],r),this.consumeOptional(\"//\")}return t}peekStartsWith(e){return this.remaining.startsWith(e)}consumeOptional(e){return!!this.peekStartsWith(e)&&(this.remaining=this.remaining.substring(e.length),!0)}capture(e){if(!this.consumeOptional(e))throw new Error(`Expected \"${e}\".`)}}class qx{constructor(e){this._root=e}get root(){return this._root.value}parent(e){const t=this.pathFromRoot(e);return t.length>1?t[t.length-2]:null}children(e){const t=Gx(e,this._root);return t?t.children.map(e=>e.value):[]}firstChild(e){const t=Gx(e,this._root);return t&&t.children.length>0?t.children[0].value:null}siblings(e){const t=Jx(e,this._root);return t.length<2?[]:t[t.length-2].children.map(e=>e.value).filter(t=>t!==e)}pathFromRoot(e){return Jx(e,this._root).map(e=>e.value)}}function Gx(e,t){if(e===t.value)return t;for(const n of t.children){const t=Gx(e,n);if(t)return t}return null}function Jx(e,t){if(e===t.value)return[t];for(const n of t.children){const i=Jx(e,n);if(i.length)return i.unshift(t),i}return[]}class Kx{constructor(e,t){this.value=e,this.children=t}toString(){return`TreeNode(${this.value})`}}function Zx(e){const t={};return e&&e.children.forEach(e=>t[e.value.outlet]=e),t}class Qx extends qx{constructor(e,t){super(e),this.snapshot=t,sC(this,e)}toString(){return this.snapshot.toString()}}function Xx(e,t){const n=function(e,t){const n=new nC([],{},{},\"\",{},\"primary\",t,null,e.root,-1,{});return new iC(\"\",new Kx(n,[]))}(e,t),i=new hS([new Dx(\"\",{})]),s=new hS({}),r=new hS({}),o=new hS({}),a=new hS(\"\"),l=new eC(i,s,o,a,r,\"primary\",t,n.root);return l.snapshot=n.root,new Qx(new Kx(l,[]),n)}class eC{constructor(e,t,n,i,s,r,o,a){this.url=e,this.params=t,this.queryParams=n,this.fragment=i,this.data=s,this.outlet=r,this.component=o,this._futureSnapshot=a}get routeConfig(){return this._futureSnapshot.routeConfig}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap||(this._paramMap=this.params.pipe(H(e=>hx(e)))),this._paramMap}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=this.queryParams.pipe(H(e=>hx(e)))),this._queryParamMap}toString(){return this.snapshot?this.snapshot.toString():`Future(${this._futureSnapshot})`}}function tC(e,t=\"emptyOnly\"){const n=e.pathFromRoot;let i=0;if(\"always\"!==t)for(i=n.length-1;i>=1;){const e=n[i],t=n[i-1];if(e.routeConfig&&\"\"===e.routeConfig.path)i--;else{if(t.component)break;i--}}return function(e){return e.reduce((e,t)=>({params:Object.assign(Object.assign({},e.params),t.params),data:Object.assign(Object.assign({},e.data),t.data),resolve:Object.assign(Object.assign({},e.resolve),t._resolvedData)}),{params:{},data:{},resolve:{}})}(n.slice(i))}class nC{constructor(e,t,n,i,s,r,o,a,l,c,d){this.url=e,this.params=t,this.queryParams=n,this.fragment=i,this.data=s,this.outlet=r,this.component=o,this.routeConfig=a,this._urlSegment=l,this._lastPathIndex=c,this._resolve=d}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap||(this._paramMap=hx(this.params)),this._paramMap}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=hx(this.queryParams)),this._queryParamMap}toString(){return`Route(url:'${this.url.map(e=>e.toString()).join(\"/\")}', path:'${this.routeConfig?this.routeConfig.path:\"\"}')`}}class iC extends qx{constructor(e,t){super(t),this.url=e,sC(this,t)}toString(){return rC(this._root)}}function sC(e,t){t.value._routerState=e,t.children.forEach(t=>sC(e,t))}function rC(e){const t=e.children.length>0?` { ${e.children.map(rC).join(\", \")} } `:\"\";return`${e.value}${t}`}function oC(e){if(e.snapshot){const t=e.snapshot,n=e._futureSnapshot;e.snapshot=n,vx(t.queryParams,n.queryParams)||e.queryParams.next(n.queryParams),t.fragment!==n.fragment&&e.fragment.next(n.fragment),vx(t.params,n.params)||e.params.next(n.params),function(e,t){if(e.length!==t.length)return!1;for(let n=0;nvx(e.parameters,i[t].parameters))&&!(!e.parent!=!t.parent)&&(!e.parent||aC(e.parent,t.parent))}function lC(e){return\"object\"==typeof e&&null!=e&&!e.outlets&&!e.segmentPath}function cC(e,t,n,i,s){let r={};return i&&Sx(i,(e,t)=>{r[t]=Array.isArray(e)?e.map(e=>`${e}`):`${e}`}),new Cx(n.root===e?t:function e(t,n,i){const s={};return Sx(t.children,(t,r)=>{s[r]=t===n?i:e(t,n,i)}),new Tx(t.segments,s)}(n.root,e,t),r,s)}class dC{constructor(e,t,n){if(this.isAbsolute=e,this.numberOfDoubleDots=t,this.commands=n,e&&n.length>0&&lC(n[0]))throw new Error(\"Root segment cannot have matrix parameters\");const i=n.find(e=>\"object\"==typeof e&&null!=e&&e.outlets);if(i&&i!==kx(n))throw new Error(\"{outlets:{}} has to be the last command\")}toRoot(){return this.isAbsolute&&1===this.commands.length&&\"/\"==this.commands[0]}}class uC{constructor(e,t,n){this.segmentGroup=e,this.processChildren=t,this.index=n}}function hC(e){return\"object\"==typeof e&&null!=e&&e.outlets?e.outlets.primary:`${e}`}function mC(e,t,n){if(e||(e=new Tx([],{})),0===e.segments.length&&e.hasChildren())return pC(e,t,n);const i=function(e,t,n){let i=0,s=t;const r={match:!1,pathIndex:0,commandIndex:0};for(;s=n.length)return r;const t=e.segments[s],o=hC(n[i]),a=i0&&void 0===o)break;if(o&&a&&\"object\"==typeof a&&void 0===a.outlets){if(!yC(o,a,t))return r;i+=2}else{if(!yC(o,{},t))return r;i++}s++}return{match:!0,pathIndex:s,commandIndex:i}}(e,t,n),s=n.slice(i.commandIndex);if(i.match&&i.pathIndex{null!==n&&(s[i]=mC(e.children[i],t,n))}),Sx(e.children,(e,t)=>{void 0===i[t]&&(s[t]=e)}),new Tx(e.segments,s)}}function fC(e,t,n){const i=e.segments.slice(0,t);let s=0;for(;s{null!==e&&(t[n]=fC(new Tx([],{}),0,e))}),t}function gC(e){const t={};return Sx(e,(e,n)=>t[n]=`${e}`),t}function yC(e,t,n){return e==n.path&&vx(t,n.parameters)}class bC{constructor(e,t,n,i){this.routeReuseStrategy=e,this.futureState=t,this.currState=n,this.forwardEvent=i}activate(e){const t=this.futureState._root,n=this.currState?this.currState._root:null;this.deactivateChildRoutes(t,n,e),oC(this.futureState.root),this.activateChildRoutes(t,n,e)}deactivateChildRoutes(e,t,n){const i=Zx(t);e.children.forEach(e=>{const t=e.value.outlet;this.deactivateRoutes(e,i[t],n),delete i[t]}),Sx(i,(e,t)=>{this.deactivateRouteAndItsChildren(e,n)})}deactivateRoutes(e,t,n){const i=e.value,s=t?t.value:null;if(i===s)if(i.component){const s=n.getContext(i.outlet);s&&this.deactivateChildRoutes(e,t,s.children)}else this.deactivateChildRoutes(e,t,n);else s&&this.deactivateRouteAndItsChildren(t,n)}deactivateRouteAndItsChildren(e,t){this.routeReuseStrategy.shouldDetach(e.value.snapshot)?this.detachAndStoreRouteSubtree(e,t):this.deactivateRouteAndOutlet(e,t)}detachAndStoreRouteSubtree(e,t){const n=t.getContext(e.value.outlet);if(n&&n.outlet){const t=n.outlet.detach(),i=n.children.onOutletDeactivated();this.routeReuseStrategy.store(e.value.snapshot,{componentRef:t,route:e,contexts:i})}}deactivateRouteAndOutlet(e,t){const n=t.getContext(e.value.outlet);if(n){const i=Zx(e),s=e.value.component?n.children:t;Sx(i,(e,t)=>this.deactivateRouteAndItsChildren(e,s)),n.outlet&&(n.outlet.deactivate(),n.children.onOutletDeactivated())}}activateChildRoutes(e,t,n){const i=Zx(t);e.children.forEach(e=>{this.activateRoutes(e,i[e.value.outlet],n),this.forwardEvent(new lx(e.value.snapshot))}),e.children.length&&this.forwardEvent(new ox(e.value.snapshot))}activateRoutes(e,t,n){const i=e.value,s=t?t.value:null;if(oC(i),i===s)if(i.component){const s=n.getOrCreateContext(i.outlet);this.activateChildRoutes(e,t,s.children)}else this.activateChildRoutes(e,t,n);else if(i.component){const t=n.getOrCreateContext(i.outlet);if(this.routeReuseStrategy.shouldAttach(i.snapshot)){const e=this.routeReuseStrategy.retrieve(i.snapshot);this.routeReuseStrategy.store(i.snapshot,null),t.children.onOutletReAttached(e.contexts),t.attachRef=e.componentRef,t.route=e.route.value,t.outlet&&t.outlet.attach(e.componentRef,e.route.value),vC(e.route)}else{const n=function(e){for(let t=e.parent;t;t=t.parent){const e=t.routeConfig;if(e&&e._loadedConfig)return e._loadedConfig;if(e&&e.component)return null}return null}(i.snapshot),s=n?n.module.componentFactoryResolver:null;t.attachRef=null,t.route=i,t.resolver=s,t.outlet&&t.outlet.activateWith(i,s),this.activateChildRoutes(e,null,t.children)}}else this.activateChildRoutes(e,null,n)}}function vC(e){oC(e.value),e.children.forEach(vC)}function wC(e){return\"function\"==typeof e}function MC(e){return e instanceof Cx}class kC{constructor(e){this.segmentGroup=e||null}}class SC{constructor(e){this.urlTree=e}}function LC(e){return new v(t=>t.error(new kC(e)))}function xC(e){return new v(t=>t.error(new SC(e)))}function CC(e){return new v(t=>t.error(new Error(`Only absolute redirects can have named outlets. redirectTo: '${e}'`)))}class TC{constructor(e,t,n,i,s){this.configLoader=t,this.urlSerializer=n,this.urlTree=i,this.config=s,this.allowRedirects=!0,this.ngModule=e.get(it)}apply(){return this.expandSegmentGroup(this.ngModule,this.config,this.urlTree.root,\"primary\").pipe(H(e=>this.createUrlTree(e,this.urlTree.queryParams,this.urlTree.fragment))).pipe(aw(e=>{if(e instanceof SC)return this.allowRedirects=!1,this.match(e.urlTree);if(e instanceof kC)throw this.noMatchError(e);throw e}))}match(e){return this.expandSegmentGroup(this.ngModule,this.config,e.root,\"primary\").pipe(H(t=>this.createUrlTree(t,e.queryParams,e.fragment))).pipe(aw(e=>{if(e instanceof kC)throw this.noMatchError(e);throw e}))}noMatchError(e){return new Error(`Cannot match any routes. URL Segment: '${e.segmentGroup}'`)}createUrlTree(e,t,n){const i=e.segments.length>0?new Tx([],{primary:e}):e;return new Cx(i,t,n)}expandSegmentGroup(e,t,n,i){return 0===n.segments.length&&n.hasChildren()?this.expandChildren(e,t,n).pipe(H(e=>new Tx([],e))):this.expandSegment(e,n,t,n.segments,i,!0)}expandChildren(e,t,n){return function(e,t){if(0===Object.keys(e).length)return xu({});const n=[],i=[],s={};return Sx(e,(e,r)=>{const o=t(r,e).pipe(H(e=>s[r]=e));\"primary\"===r?n.push(o):i.push(o)}),xu.apply(null,n.concat(i)).pipe(Pf(),NL(),H(()=>s))}(n.children,(n,i)=>this.expandSegmentGroup(e,t,i,n))}expandSegment(e,t,n,i,s,r){return xu(...n).pipe(H(o=>this.expandSegmentAgainstRoute(e,t,n,o,i,s,r).pipe(aw(e=>{if(e instanceof kC)return xu(null);throw e}))),Pf(),zL(e=>!!e),aw((e,n)=>{if(e instanceof DL||\"EmptyError\"===e.name){if(this.noLeftoversInUrl(t,i,s))return xu(new Tx([],{}));throw new kC(t)}throw e}))}noLeftoversInUrl(e,t,n){return 0===t.length&&!e.children[n]}expandSegmentAgainstRoute(e,t,n,i,s,r,o){return OC(i)!==r?LC(t):void 0===i.redirectTo?this.matchSegmentAgainstRoute(e,t,i,s):o&&this.allowRedirects?this.expandSegmentAgainstRouteUsingRedirect(e,t,n,i,s,r):LC(t)}expandSegmentAgainstRouteUsingRedirect(e,t,n,i,s,r){return\"**\"===i.path?this.expandWildCardWithParamsAgainstRouteUsingRedirect(e,n,i,r):this.expandRegularSegmentAgainstRouteUsingRedirect(e,t,n,i,s,r)}expandWildCardWithParamsAgainstRouteUsingRedirect(e,t,n,i){const s=this.applyRedirectCommands([],n.redirectTo,{});return n.redirectTo.startsWith(\"/\")?xC(s):this.lineralizeSegments(n,s).pipe(V(n=>{const s=new Tx(n,{});return this.expandSegment(e,s,t,n,i,!1)}))}expandRegularSegmentAgainstRouteUsingRedirect(e,t,n,i,s,r){const{matched:o,consumedSegments:a,lastChild:l,positionalParamSegments:c}=DC(t,i,s);if(!o)return LC(t);const d=this.applyRedirectCommands(a,i.redirectTo,c);return i.redirectTo.startsWith(\"/\")?xC(d):this.lineralizeSegments(i,d).pipe(V(i=>this.expandSegment(e,t,n,i.concat(s.slice(l)),r,!1)))}matchSegmentAgainstRoute(e,t,n,i){if(\"**\"===n.path)return n.loadChildren?this.configLoader.load(e.injector,n).pipe(H(e=>(n._loadedConfig=e,new Tx(i,{})))):xu(new Tx(i,{}));const{matched:s,consumedSegments:r,lastChild:o}=DC(t,n,i);if(!s)return LC(t);const a=i.slice(o);return this.getChildConfig(e,n,i).pipe(V(e=>{const n=e.module,i=e.routes,{segmentGroup:s,slicedSegments:o}=function(e,t,n,i){return n.length>0&&function(e,t,n){return n.some(n=>EC(e,t,n)&&\"primary\"!==OC(n))}(e,n,i)?{segmentGroup:YC(new Tx(t,function(e,t){const n={};n.primary=t;for(const i of e)\"\"===i.path&&\"primary\"!==OC(i)&&(n[OC(i)]=new Tx([],{}));return n}(i,new Tx(n,e.children)))),slicedSegments:[]}:0===n.length&&function(e,t,n){return n.some(n=>EC(e,t,n))}(e,n,i)?{segmentGroup:YC(new Tx(e.segments,function(e,t,n,i){const s={};for(const r of n)EC(e,t,r)&&!i[OC(r)]&&(s[OC(r)]=new Tx([],{}));return Object.assign(Object.assign({},i),s)}(e,n,i,e.children))),slicedSegments:n}:{segmentGroup:e,slicedSegments:n}}(t,r,a,i);return 0===o.length&&s.hasChildren()?this.expandChildren(n,i,s).pipe(H(e=>new Tx(r,e))):0===i.length&&0===o.length?xu(new Tx(r,{})):this.expandSegment(n,s,i,o,\"primary\",!0).pipe(H(e=>new Tx(r.concat(e.segments),e.children)))}))}getChildConfig(e,t,n){return t.children?xu(new fx(t.children,e)):t.loadChildren?void 0!==t._loadedConfig?xu(t._loadedConfig):function(e,t,n){const i=t.canLoad;return i&&0!==i.length?z(i).pipe(H(i=>{const s=e.get(i);let r;if(function(e){return e&&wC(e.canLoad)}(s))r=s.canLoad(t,n);else{if(!wC(s))throw new Error(\"Invalid CanLoad guard\");r=s(t,n)}return Lx(r)})).pipe(Pf(),(s=e=>!0===e,e=>e.lift(new VL(s,void 0,e)))):xu(!0);var s}(e.injector,t,n).pipe(V(n=>n?this.configLoader.load(e.injector,t).pipe(H(e=>(t._loadedConfig=e,e))):function(e){return new v(t=>t.error(mx(`Cannot load children because the guard of the route \"path: '${e.path}'\" returned false`)))}(t))):xu(new fx([],e))}lineralizeSegments(e,t){let n=[],i=t.root;for(;;){if(n=n.concat(i.segments),0===i.numberOfChildren)return xu(n);if(i.numberOfChildren>1||!i.children.primary)return CC(e.redirectTo);i=i.children.primary}}applyRedirectCommands(e,t,n){return this.applyRedirectCreatreUrlTree(t,this.urlSerializer.parse(t),e,n)}applyRedirectCreatreUrlTree(e,t,n,i){const s=this.createSegmentGroup(e,t.root,n,i);return new Cx(s,this.createQueryParams(t.queryParams,this.urlTree.queryParams),t.fragment)}createQueryParams(e,t){const n={};return Sx(e,(e,i)=>{if(\"string\"==typeof e&&e.startsWith(\":\")){const s=e.substring(1);n[i]=t[s]}else n[i]=e}),n}createSegmentGroup(e,t,n,i){const s=this.createSegments(e,t.segments,n,i);let r={};return Sx(t.children,(t,s)=>{r[s]=this.createSegmentGroup(e,t,n,i)}),new Tx(s,r)}createSegments(e,t,n,i){return t.map(t=>t.path.startsWith(\":\")?this.findPosParam(e,t,i):this.findOrReturn(t,n))}findPosParam(e,t,n){const i=n[t.path.substring(1)];if(!i)throw new Error(`Cannot redirect to '${e}'. Cannot find '${t.path}'.`);return i}findOrReturn(e,t){let n=0;for(const i of t){if(i.path===e.path)return t.splice(n),i;n++}return e}}function DC(e,t,n){if(\"\"===t.path)return\"full\"===t.pathMatch&&(e.hasChildren()||n.length>0)?{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}:{matched:!0,consumedSegments:[],lastChild:0,positionalParamSegments:{}};const i=(t.matcher||px)(n,e,t);return i?{matched:!0,consumedSegments:i.consumed,lastChild:i.consumed.length,positionalParamSegments:i.posParams}:{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}}function YC(e){if(1===e.numberOfChildren&&e.children.primary){const t=e.children.primary;return new Tx(e.segments.concat(t.segments),t.children)}return e}function EC(e,t,n){return(!(e.hasChildren()||t.length>0)||\"full\"!==n.pathMatch)&&\"\"===n.path&&void 0!==n.redirectTo}function OC(e){return e.outlet||\"primary\"}class IC{constructor(e){this.path=e,this.route=this.path[this.path.length-1]}}class PC{constructor(e,t){this.component=e,this.route=t}}function AC(e,t,n){const i=e._root;return function e(t,n,i,s,r={canDeactivateChecks:[],canActivateChecks:[]}){const o=Zx(n);return t.children.forEach(t=>{!function(t,n,i,s,r={canDeactivateChecks:[],canActivateChecks:[]}){const o=t.value,a=n?n.value:null,l=i?i.getContext(t.value.outlet):null;if(a&&o.routeConfig===a.routeConfig){const c=function(e,t,n){if(\"function\"==typeof n)return n(e,t);switch(n){case\"pathParamsChange\":return!Yx(e.url,t.url);case\"pathParamsOrQueryParamsChange\":return!Yx(e.url,t.url)||!vx(e.queryParams,t.queryParams);case\"always\":return!0;case\"paramsOrQueryParamsChange\":return!aC(e,t)||!vx(e.queryParams,t.queryParams);case\"paramsChange\":default:return!aC(e,t)}}(a,o,o.routeConfig.runGuardsAndResolvers);c?r.canActivateChecks.push(new IC(s)):(o.data=a.data,o._resolvedData=a._resolvedData),e(t,n,o.component?l?l.children:null:i,s,r),c&&r.canDeactivateChecks.push(new PC(l&&l.outlet&&l.outlet.component||null,a))}else a&&HC(n,l,r),r.canActivateChecks.push(new IC(s)),e(t,null,o.component?l?l.children:null:i,s,r)}(t,o[t.value.outlet],i,s.concat([t.value]),r),delete o[t.value.outlet]}),Sx(o,(e,t)=>HC(e,i.getContext(t),r)),r}(i,t?t._root:null,n,[i.value])}function RC(e,t,n){const i=function(e){if(!e)return null;for(let t=e.parent;t;t=t.parent){const e=t.routeConfig;if(e&&e._loadedConfig)return e._loadedConfig}return null}(t);return(i?i.module.injector:n).get(e)}function HC(e,t,n){const i=Zx(e),s=e.value;Sx(i,(e,i)=>{HC(e,s.component?t?t.children.getContext(i):null:t,n)}),n.canDeactivateChecks.push(new PC(s.component&&t&&t.outlet&&t.outlet.isActivated?t.outlet.component:null,s))}const jC=Symbol(\"INITIAL_VALUE\");function FC(){return Wb(e=>tS(...e.map(e=>e.pipe(cp(1),Rf(jC)))).pipe(UL((e,t)=>{let n=!1;return t.reduce((e,i,s)=>{if(e!==jC)return e;if(i===jC&&(n=!0),!n){if(!1===i)return i;if(s===t.length-1||MC(i))return i}return e},e)},jC),Tu(e=>e!==jC),H(e=>MC(e)?e:!0===e),cp(1)))}function NC(e,t){return null!==e&&t&&t(new ax(e)),xu(!0)}function zC(e,t){return null!==e&&t&&t(new rx(e)),xu(!0)}function VC(e,t,n){const i=t.routeConfig?t.routeConfig.canActivate:null;return i&&0!==i.length?xu(i.map(i=>qv(()=>{const s=RC(i,t,n);let r;if(function(e){return e&&wC(e.canActivate)}(s))r=Lx(s.canActivate(t,e));else{if(!wC(s))throw new Error(\"Invalid CanActivate guard\");r=Lx(s(t,e))}return r.pipe(zL())}))).pipe(FC()):xu(!0)}function WC(e,t,n){const i=t[t.length-1],s=t.slice(0,t.length-1).reverse().map(e=>function(e){const t=e.routeConfig?e.routeConfig.canActivateChild:null;return t&&0!==t.length?{node:e,guards:t}:null}(e)).filter(e=>null!==e).map(t=>qv(()=>xu(t.guards.map(s=>{const r=RC(s,t.node,n);let o;if(function(e){return e&&wC(e.canActivateChild)}(r))o=Lx(r.canActivateChild(i,e));else{if(!wC(r))throw new Error(\"Invalid CanActivateChild guard\");o=Lx(r(i,e))}return o.pipe(zL())})).pipe(FC())));return xu(s).pipe(FC())}class UC{}class $C{constructor(e,t,n,i,s,r){this.rootComponentType=e,this.config=t,this.urlTree=n,this.url=i,this.paramsInheritanceStrategy=s,this.relativeLinkResolution=r}recognize(){try{const e=GC(this.urlTree.root,[],[],this.config,this.relativeLinkResolution).segmentGroup,t=this.processSegmentGroup(this.config,e,\"primary\"),n=new nC([],Object.freeze({}),Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,{},\"primary\",this.rootComponentType,null,this.urlTree.root,-1,{}),i=new Kx(n,t),s=new iC(this.url,i);return this.inheritParamsAndData(s._root),xu(s)}catch(e){return new v(t=>t.error(e))}}inheritParamsAndData(e){const t=e.value,n=tC(t,this.paramsInheritanceStrategy);t.params=Object.freeze(n.params),t.data=Object.freeze(n.data),e.children.forEach(e=>this.inheritParamsAndData(e))}processSegmentGroup(e,t,n){return 0===t.segments.length&&t.hasChildren()?this.processChildren(e,t):this.processSegment(e,t,t.segments,n)}processChildren(e,t){const n=Ex(t,(t,n)=>this.processSegmentGroup(e,t,n));return function(e){const t={};e.forEach(e=>{const n=t[e.value.outlet];if(n){const t=n.url.map(e=>e.toString()).join(\"/\"),i=e.value.url.map(e=>e.toString()).join(\"/\");throw new Error(`Two segments cannot have the same outlet name: '${t}' and '${i}'.`)}t[e.value.outlet]=e.value})}(n),n.sort((e,t)=>\"primary\"===e.value.outlet?-1:\"primary\"===t.value.outlet?1:e.value.outlet.localeCompare(t.value.outlet)),n}processSegment(e,t,n,i){for(const r of e)try{return this.processSegmentAgainstRoute(r,t,n,i)}catch(s){if(!(s instanceof UC))throw s}if(this.noLeftoversInUrl(t,n,i))return[];throw new UC}noLeftoversInUrl(e,t,n){return 0===t.length&&!e.children[n]}processSegmentAgainstRoute(e,t,n,i){if(e.redirectTo)throw new UC;if((e.outlet||\"primary\")!==i)throw new UC;let s,r=[],o=[];if(\"**\"===e.path){const r=n.length>0?kx(n).parameters:{};s=new nC(n,r,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,ZC(e),i,e.component,e,BC(t),qC(t)+n.length,QC(e))}else{const a=function(e,t,n){if(\"\"===t.path){if(\"full\"===t.pathMatch&&(e.hasChildren()||n.length>0))throw new UC;return{consumedSegments:[],lastChild:0,parameters:{}}}const i=(t.matcher||px)(n,e,t);if(!i)throw new UC;const s={};Sx(i.posParams,(e,t)=>{s[t]=e.path});const r=i.consumed.length>0?Object.assign(Object.assign({},s),i.consumed[i.consumed.length-1].parameters):s;return{consumedSegments:i.consumed,lastChild:i.consumed.length,parameters:r}}(t,e,n);r=a.consumedSegments,o=n.slice(a.lastChild),s=new nC(r,a.parameters,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,ZC(e),i,e.component,e,BC(t),qC(t)+r.length,QC(e))}const a=function(e){return e.children?e.children:e.loadChildren?e._loadedConfig.routes:[]}(e),{segmentGroup:l,slicedSegments:c}=GC(t,r,o,a,this.relativeLinkResolution);if(0===c.length&&l.hasChildren()){const e=this.processChildren(a,l);return[new Kx(s,e)]}if(0===a.length&&0===c.length)return[new Kx(s,[])];const d=this.processSegment(a,l,c,\"primary\");return[new Kx(s,d)]}}function BC(e){let t=e;for(;t._sourceSegment;)t=t._sourceSegment;return t}function qC(e){let t=e,n=t._segmentIndexShift?t._segmentIndexShift:0;for(;t._sourceSegment;)t=t._sourceSegment,n+=t._segmentIndexShift?t._segmentIndexShift:0;return n-1}function GC(e,t,n,i,s){if(n.length>0&&function(e,t,n){return n.some(n=>JC(e,t,n)&&\"primary\"!==KC(n))}(e,n,i)){const s=new Tx(t,function(e,t,n,i){const s={};s.primary=i,i._sourceSegment=e,i._segmentIndexShift=t.length;for(const r of n)if(\"\"===r.path&&\"primary\"!==KC(r)){const n=new Tx([],{});n._sourceSegment=e,n._segmentIndexShift=t.length,s[KC(r)]=n}return s}(e,t,i,new Tx(n,e.children)));return s._sourceSegment=e,s._segmentIndexShift=t.length,{segmentGroup:s,slicedSegments:[]}}if(0===n.length&&function(e,t,n){return n.some(n=>JC(e,t,n))}(e,n,i)){const r=new Tx(e.segments,function(e,t,n,i,s,r){const o={};for(const a of i)if(JC(e,n,a)&&!s[KC(a)]){const n=new Tx([],{});n._sourceSegment=e,n._segmentIndexShift=\"legacy\"===r?e.segments.length:t.length,o[KC(a)]=n}return Object.assign(Object.assign({},s),o)}(e,t,n,i,e.children,s));return r._sourceSegment=e,r._segmentIndexShift=t.length,{segmentGroup:r,slicedSegments:n}}const r=new Tx(e.segments,e.children);return r._sourceSegment=e,r._segmentIndexShift=t.length,{segmentGroup:r,slicedSegments:n}}function JC(e,t,n){return(!(e.hasChildren()||t.length>0)||\"full\"!==n.pathMatch)&&\"\"===n.path&&void 0===n.redirectTo}function KC(e){return e.outlet||\"primary\"}function ZC(e){return e.data||{}}function QC(e){return e.resolve||{}}function XC(e,t,n,i){const s=RC(e,t,i);return Lx(s.resolve?s.resolve(t,n):s(t,n))}function eT(e){return function(t){return t.pipe(Wb(t=>{const n=e(t);return n?z(n).pipe(H(()=>t)):z([t])}))}}class tT{shouldDetach(e){return!1}store(e,t){}shouldAttach(e){return!1}retrieve(e){return null}shouldReuseRoute(e,t){return e.routeConfig===t.routeConfig}}const nT=new Ve(\"ROUTES\");class iT{constructor(e,t,n,i){this.loader=e,this.compiler=t,this.onLoadStartListener=n,this.onLoadEndListener=i}load(e,t){return this.onLoadStartListener&&this.onLoadStartListener(t),this.loadModuleFactory(t.loadChildren).pipe(H(n=>{this.onLoadEndListener&&this.onLoadEndListener(t);const i=n.create(e);return new fx(Mx(i.injector.get(nT)).map(bx),i)}))}loadModuleFactory(e){return\"string\"==typeof e?z(this.loader.load(e)):Lx(e()).pipe(V(e=>e instanceof st?xu(e):z(this.compiler.compileModuleAsync(e))))}}class sT{shouldProcessUrl(e){return!0}extract(e){return e}merge(e,t){return e}}function rT(e){throw e}function oT(e,t,n){return t.parse(\"/\")}function aT(e,t){return xu(null)}let lT=(()=>{class e{constructor(e,t,n,i,s,r,o,a){this.rootComponentType=e,this.urlSerializer=t,this.rootContexts=n,this.location=i,this.config=a,this.lastSuccessfulNavigation=null,this.currentNavigation=null,this.navigationId=0,this.isNgZoneEnabled=!1,this.events=new L,this.errorHandler=rT,this.malformedUriErrorHandler=oT,this.navigated=!1,this.lastSuccessfulId=-1,this.hooks={beforePreactivation:aT,afterPreactivation:aT},this.urlHandlingStrategy=new sT,this.routeReuseStrategy=new tT,this.onSameUrlNavigation=\"ignore\",this.paramsInheritanceStrategy=\"emptyOnly\",this.urlUpdateStrategy=\"deferred\",this.relativeLinkResolution=\"legacy\",this.ngModule=s.get(it),this.console=s.get(Gc);const l=s.get(ld);this.isNgZoneEnabled=l instanceof ld,this.resetConfig(a),this.currentUrlTree=new Cx(new Tx([],{}),{},null),this.rawUrlTree=this.currentUrlTree,this.browserUrlTree=this.currentUrlTree,this.configLoader=new iT(r,o,e=>this.triggerEvent(new ix(e)),e=>this.triggerEvent(new sx(e))),this.routerState=Xx(this.currentUrlTree,this.rootComponentType),this.transitions=new hS({id:0,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,extractedUrl:this.urlHandlingStrategy.extract(this.currentUrlTree),urlAfterRedirects:this.urlHandlingStrategy.extract(this.currentUrlTree),rawUrl:this.currentUrlTree,extras:{},resolve:null,reject:null,promise:Promise.resolve(!0),source:\"imperative\",restoredState:null,currentSnapshot:this.routerState.snapshot,targetSnapshot:null,currentRouterState:this.routerState,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.navigations=this.setupNavigations(this.transitions),this.processNavigations()}setupNavigations(e){const t=this.events;return e.pipe(Tu(e=>0!==e.id),H(e=>Object.assign(Object.assign({},e),{extractedUrl:this.urlHandlingStrategy.extract(e.rawUrl)})),Wb(e=>{let n=!1,i=!1;return xu(e).pipe(Gm(e=>{this.currentNavigation={id:e.id,initialUrl:e.currentRawUrl,extractedUrl:e.extractedUrl,trigger:e.source,extras:e.extras,previousNavigation:this.lastSuccessfulNavigation?Object.assign(Object.assign({},this.lastSuccessfulNavigation),{previousNavigation:null}):null}}),Wb(e=>{const n=!this.navigated||e.extractedUrl.toString()!==this.browserUrlTree.toString();if((\"reload\"===this.onSameUrlNavigation||n)&&this.urlHandlingStrategy.shouldProcessUrl(e.rawUrl))return xu(e).pipe(Wb(e=>{const n=this.transitions.getValue();return t.next(new GL(e.id,this.serializeUrl(e.extractedUrl),e.source,e.restoredState)),n!==this.transitions.getValue()?ap:[e]}),Wb(e=>Promise.resolve(e)),(i=this.ngModule.injector,s=this.configLoader,r=this.urlSerializer,o=this.config,function(e){return e.pipe(Wb(e=>function(e,t,n,i,s){return new TC(e,t,n,i,s).apply()}(i,s,r,e.extractedUrl,o).pipe(H(t=>Object.assign(Object.assign({},e),{urlAfterRedirects:t})))))}),Gm(e=>{this.currentNavigation=Object.assign(Object.assign({},this.currentNavigation),{finalUrl:e.urlAfterRedirects})}),function(e,t,n,i,s){return function(r){return r.pipe(V(r=>function(e,t,n,i,s=\"emptyOnly\",r=\"legacy\"){return new $C(e,t,n,i,s,r).recognize()}(e,t,r.urlAfterRedirects,n(r.urlAfterRedirects),i,s).pipe(H(e=>Object.assign(Object.assign({},r),{targetSnapshot:e})))))}}(this.rootComponentType,this.config,e=>this.serializeUrl(e),this.paramsInheritanceStrategy,this.relativeLinkResolution),Gm(e=>{\"eager\"===this.urlUpdateStrategy&&(e.extras.skipLocationChange||this.setBrowserUrl(e.urlAfterRedirects,!!e.extras.replaceUrl,e.id,e.extras.state),this.browserUrlTree=e.urlAfterRedirects)}),Gm(e=>{const n=new QL(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);t.next(n)}));var i,s,r,o;if(n&&this.rawUrlTree&&this.urlHandlingStrategy.shouldProcessUrl(this.rawUrlTree)){const{id:n,extractedUrl:i,source:s,restoredState:r,extras:o}=e,a=new GL(n,this.serializeUrl(i),s,r);t.next(a);const l=Xx(i,this.rootComponentType).snapshot;return xu(Object.assign(Object.assign({},e),{targetSnapshot:l,urlAfterRedirects:i,extras:Object.assign(Object.assign({},o),{skipLocationChange:!1,replaceUrl:!1})}))}return this.rawUrlTree=e.rawUrl,this.browserUrlTree=e.urlAfterRedirects,e.resolve(null),ap}),eT(e=>{const{targetSnapshot:t,id:n,extractedUrl:i,rawUrl:s,extras:{skipLocationChange:r,replaceUrl:o}}=e;return this.hooks.beforePreactivation(t,{navigationId:n,appliedUrlTree:i,rawUrlTree:s,skipLocationChange:!!r,replaceUrl:!!o})}),Gm(e=>{const t=new XL(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);this.triggerEvent(t)}),H(e=>Object.assign(Object.assign({},e),{guards:AC(e.targetSnapshot,e.currentSnapshot,this.rootContexts)})),function(e,t){return function(n){return n.pipe(V(n=>{const{targetSnapshot:i,currentSnapshot:s,guards:{canActivateChecks:r,canDeactivateChecks:o}}=n;return 0===o.length&&0===r.length?xu(Object.assign(Object.assign({},n),{guardsResult:!0})):function(e,t,n,i){return z(e).pipe(V(e=>function(e,t,n,i,s){const r=t&&t.routeConfig?t.routeConfig.canDeactivate:null;return r&&0!==r.length?xu(r.map(r=>{const o=RC(r,t,s);let a;if(function(e){return e&&wC(e.canDeactivate)}(o))a=Lx(o.canDeactivate(e,t,n,i));else{if(!wC(o))throw new Error(\"Invalid CanDeactivate guard\");a=Lx(o(e,t,n,i))}return a.pipe(zL())})).pipe(FC()):xu(!0)}(e.component,e.route,n,t,i)),zL(e=>!0!==e,!0))}(o,i,s,e).pipe(V(n=>n&&\"boolean\"==typeof n?function(e,t,n,i){return z(t).pipe(Cu(t=>z([zC(t.route.parent,i),NC(t.route,i),WC(e,t.path,n),VC(e,t.route,n)]).pipe(Pf(),zL(e=>!0!==e,!0))),zL(e=>!0!==e,!0))}(i,r,e,t):xu(n)),H(e=>Object.assign(Object.assign({},n),{guardsResult:e})))}))}}(this.ngModule.injector,e=>this.triggerEvent(e)),Gm(e=>{if(MC(e.guardsResult)){const t=mx(`Redirecting to \"${this.serializeUrl(e.guardsResult)}\"`);throw t.url=e.guardsResult,t}}),Gm(e=>{const t=new ex(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot,!!e.guardsResult);this.triggerEvent(t)}),Tu(e=>{if(!e.guardsResult){this.resetUrlToCurrentUrlTree();const n=new KL(e.id,this.serializeUrl(e.extractedUrl),\"\");return t.next(n),e.resolve(!1),!1}return!0}),eT(e=>{if(e.guards.canActivateChecks.length)return xu(e).pipe(Gm(e=>{const t=new tx(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);this.triggerEvent(t)}),(t=this.paramsInheritanceStrategy,n=this.ngModule.injector,function(e){return e.pipe(V(e=>{const{targetSnapshot:i,guards:{canActivateChecks:s}}=e;return s.length?z(s).pipe(Cu(e=>function(e,t,n,i){return function(e,t,n,i){const s=Object.keys(e);if(0===s.length)return xu({});if(1===s.length){const r=s[0];return XC(e[r],t,n,i).pipe(H(e=>({[r]:e})))}const r={};return z(s).pipe(V(s=>XC(e[s],t,n,i).pipe(H(e=>(r[s]=e,e))))).pipe(NL(),H(()=>r))}(e._resolve,e,t,i).pipe(H(t=>(e._resolvedData=t,e.data=Object.assign(Object.assign({},e.data),tC(e,n).resolve),null)))}(e.route,i,t,n)),function(e,t){return arguments.length>=2?function(n){return y(UL(e,t),YL(1),HL(t))(n)}:function(t){return y(UL((t,n,i)=>e(t,n,i+1)),YL(1))(t)}}((e,t)=>e),H(t=>e)):xu(e)}))}),Gm(e=>{const t=new nx(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);this.triggerEvent(t)}));var t,n}),eT(e=>{const{targetSnapshot:t,id:n,extractedUrl:i,rawUrl:s,extras:{skipLocationChange:r,replaceUrl:o}}=e;return this.hooks.afterPreactivation(t,{navigationId:n,appliedUrlTree:i,rawUrlTree:s,skipLocationChange:!!r,replaceUrl:!!o})}),H(e=>{const t=function(e,t,n){const i=function e(t,n,i){if(i&&t.shouldReuseRoute(n.value,i.value.snapshot)){const s=i.value;s._futureSnapshot=n.value;const r=function(t,n,i){return n.children.map(n=>{for(const s of i.children)if(t.shouldReuseRoute(s.value.snapshot,n.value))return e(t,n,s);return e(t,n)})}(t,n,i);return new Kx(s,r)}{const i=t.retrieve(n.value);if(i){const e=i.route;return function e(t,n){if(t.value.routeConfig!==n.value.routeConfig)throw new Error(\"Cannot reattach ActivatedRouteSnapshot created from a different route\");if(t.children.length!==n.children.length)throw new Error(\"Cannot reattach ActivatedRouteSnapshot with a different number of children\");n.value._futureSnapshot=t.value;for(let i=0;ie(t,n));return new Kx(i,r)}}var s}(e,t._root,n?n._root:void 0);return new Qx(i,t)}(this.routeReuseStrategy,e.targetSnapshot,e.currentRouterState);return Object.assign(Object.assign({},e),{targetRouterState:t})}),Gm(e=>{this.currentUrlTree=e.urlAfterRedirects,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,e.rawUrl),this.routerState=e.targetRouterState,\"deferred\"===this.urlUpdateStrategy&&(e.extras.skipLocationChange||this.setBrowserUrl(this.rawUrlTree,!!e.extras.replaceUrl,e.id,e.extras.state),this.browserUrlTree=e.urlAfterRedirects)}),(s=this.rootContexts,r=this.routeReuseStrategy,o=e=>this.triggerEvent(e),H(e=>(new bC(r,e.targetRouterState,e.currentRouterState,o).activate(s),e))),Gm({next(){n=!0},complete(){n=!0}}),dw(()=>{if(!n&&!i){this.resetUrlToCurrentUrlTree();const n=new KL(e.id,this.serializeUrl(e.extractedUrl),`Navigation ID ${e.id} is not equal to the current navigation id ${this.navigationId}`);t.next(n),e.resolve(!1)}this.currentNavigation=null}),aw(n=>{if(i=!0,(s=n)&&s.ngNavigationCancelingError){const i=MC(n.url);i||(this.navigated=!0,this.resetStateAndUrl(e.currentRouterState,e.currentUrlTree,e.rawUrl));const s=new KL(e.id,this.serializeUrl(e.extractedUrl),n.message);t.next(s),i?setTimeout(()=>{const t=this.urlHandlingStrategy.merge(n.url,this.rawUrlTree);return this.scheduleNavigation(t,\"imperative\",null,{skipLocationChange:e.extras.skipLocationChange,replaceUrl:\"eager\"===this.urlUpdateStrategy},{resolve:e.resolve,reject:e.reject,promise:e.promise})},0):e.resolve(!1)}else{this.resetStateAndUrl(e.currentRouterState,e.currentUrlTree,e.rawUrl);const i=new ZL(e.id,this.serializeUrl(e.extractedUrl),n);t.next(i);try{e.resolve(this.errorHandler(n))}catch(r){e.reject(r)}}var s;return ap}));var s,r,o}))}resetRootComponentType(e){this.rootComponentType=e,this.routerState.root.component=this.rootComponentType}getTransition(){const e=this.transitions.value;return e.urlAfterRedirects=this.browserUrlTree,e}setTransition(e){this.transitions.next(Object.assign(Object.assign({},this.getTransition()),e))}initialNavigation(){this.setUpLocationChangeListener(),0===this.navigationId&&this.navigateByUrl(this.location.path(!0),{replaceUrl:!0})}setUpLocationChangeListener(){this.locationSubscription||(this.locationSubscription=this.location.subscribe(e=>{let t=this.parseUrl(e.url);const n=\"popstate\"===e.type?\"popstate\":\"hashchange\",i=e.state&&e.state.navigationId?e.state:null;setTimeout(()=>{this.scheduleNavigation(t,n,i,{replaceUrl:!0})},0)}))}get url(){return this.serializeUrl(this.currentUrlTree)}getCurrentNavigation(){return this.currentNavigation}triggerEvent(e){this.events.next(e)}resetConfig(e){_x(e),this.config=e.map(bx),this.navigated=!1,this.lastSuccessfulId=-1}ngOnDestroy(){this.dispose()}dispose(){this.locationSubscription&&(this.locationSubscription.unsubscribe(),this.locationSubscription=null)}createUrlTree(e,t={}){const{relativeTo:n,queryParams:i,fragment:s,preserveQueryParams:r,queryParamsHandling:o,preserveFragment:a}=t;Si()&&r&&console&&console.warn&&console.warn(\"preserveQueryParams is deprecated, use queryParamsHandling instead.\");const l=n||this.routerState.root,c=a?this.currentUrlTree.fragment:s;let d=null;if(o)switch(o){case\"merge\":d=Object.assign(Object.assign({},this.currentUrlTree.queryParams),i);break;case\"preserve\":d=this.currentUrlTree.queryParams;break;default:d=i||null}else d=r?this.currentUrlTree.queryParams:i||null;return null!==d&&(d=this.removeEmptyProps(d)),function(e,t,n,i,s){if(0===n.length)return cC(t.root,t.root,t,i,s);const r=function(e){if(\"string\"==typeof e[0]&&1===e.length&&\"/\"===e[0])return new dC(!0,0,e);let t=0,n=!1;const i=e.reduce((e,i,s)=>{if(\"object\"==typeof i&&null!=i){if(i.outlets){const t={};return Sx(i.outlets,(e,n)=>{t[n]=\"string\"==typeof e?e.split(\"/\"):e}),[...e,{outlets:t}]}if(i.segmentPath)return[...e,i.segmentPath]}return\"string\"!=typeof i?[...e,i]:0===s?(i.split(\"/\").forEach((i,s)=>{0==s&&\".\"===i||(0==s&&\"\"===i?n=!0:\"..\"===i?t++:\"\"!=i&&e.push(i))}),e):[...e,i]},[]);return new dC(n,t,i)}(n);if(r.toRoot())return cC(t.root,new Tx([],{}),t,i,s);const o=function(e,t,n){if(e.isAbsolute)return new uC(t.root,!0,0);if(-1===n.snapshot._lastPathIndex)return new uC(n.snapshot._urlSegment,!0,0);const i=lC(e.commands[0])?0:1;return function(e,t,n){let i=e,s=t,r=n;for(;r>s;){if(r-=s,i=i.parent,!i)throw new Error(\"Invalid number of '../'\");s=i.segments.length}return new uC(i,!1,s-r)}(n.snapshot._urlSegment,n.snapshot._lastPathIndex+i,e.numberOfDoubleDots)}(r,t,e),a=o.processChildren?pC(o.segmentGroup,o.index,r.commands):mC(o.segmentGroup,o.index,r.commands);return cC(o.segmentGroup,a,t,i,s)}(l,this.currentUrlTree,e,d,c)}navigateByUrl(e,t={skipLocationChange:!1}){Si()&&this.isNgZoneEnabled&&!ld.isInAngularZone()&&this.console.warn(\"Navigation triggered outside Angular zone, did you forget to call 'ngZone.run()'?\");const n=MC(e)?e:this.parseUrl(e),i=this.urlHandlingStrategy.merge(n,this.rawUrlTree);return this.scheduleNavigation(i,\"imperative\",null,t)}navigate(e,t={skipLocationChange:!1}){return function(e){for(let t=0;t{const i=e[n];return null!=i&&(t[n]=i),t},{})}processNavigations(){this.navigations.subscribe(e=>{this.navigated=!0,this.lastSuccessfulId=e.id,this.events.next(new JL(e.id,this.serializeUrl(e.extractedUrl),this.serializeUrl(this.currentUrlTree))),this.lastSuccessfulNavigation=this.currentNavigation,this.currentNavigation=null,e.resolve(!0)},e=>{this.console.warn(\"Unhandled Navigation Error: \")})}scheduleNavigation(e,t,n,i,s){const r=this.getTransition();if(r&&\"imperative\"!==t&&\"imperative\"===r.source&&r.rawUrl.toString()===e.toString())return Promise.resolve(!0);if(r&&\"hashchange\"==t&&\"popstate\"===r.source&&r.rawUrl.toString()===e.toString())return Promise.resolve(!0);if(r&&\"popstate\"==t&&\"hashchange\"===r.source&&r.rawUrl.toString()===e.toString())return Promise.resolve(!0);let o,a,l;s?(o=s.resolve,a=s.reject,l=s.promise):l=new Promise((e,t)=>{o=e,a=t});const c=++this.navigationId;return this.setTransition({id:c,source:t,restoredState:n,currentUrlTree:this.currentUrlTree,currentRawUrl:this.rawUrlTree,rawUrl:e,extras:i,resolve:o,reject:a,promise:l,currentSnapshot:this.routerState.snapshot,currentRouterState:this.routerState}),l.catch(e=>Promise.reject(e))}setBrowserUrl(e,t,n,i){const s=this.urlSerializer.serialize(e);i=i||{},this.location.isCurrentPathEqualTo(s)||t?this.location.replaceState(s,\"\",Object.assign(Object.assign({},i),{navigationId:n})):this.location.go(s,\"\",Object.assign(Object.assign({},i),{navigationId:n}))}resetStateAndUrl(e,t,n){this.routerState=e,this.currentUrlTree=t,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,n),this.resetUrlToCurrentUrlTree()}resetUrlToCurrentUrlTree(){this.location.replaceState(this.urlSerializer.serialize(this.rawUrlTree),\"\",{navigationId:this.lastSuccessfulId})}}return e.\\u0275fac=function(e){Io()},e.\\u0275dir=St({type:e}),e})(),cT=(()=>{class e{constructor(e,t,n){this.router=e,this.route=t,this.locationStrategy=n,this.commands=[],this.subscription=e.events.subscribe(e=>{e instanceof JL&&this.updateTargetUrlAndHref()})}set routerLink(e){this.commands=null!=e?Array.isArray(e)?e:[e]:[]}set preserveQueryParams(e){Si()&&console&&console.warn&&console.warn(\"preserveQueryParams is deprecated, use queryParamsHandling instead.\"),this.preserve=e}ngOnChanges(e){this.updateTargetUrlAndHref()}ngOnDestroy(){this.subscription.unsubscribe()}onClick(e,t,n,i){if(0!==e||t||n||i)return!0;if(\"string\"==typeof this.target&&\"_self\"!=this.target)return!0;const s={skipLocationChange:dT(this.skipLocationChange),replaceUrl:dT(this.replaceUrl),state:this.state};return this.router.navigateByUrl(this.urlTree,s),!1}updateTargetUrlAndHref(){this.href=this.locationStrategy.prepareExternalUrl(this.router.serializeUrl(this.urlTree))}get urlTree(){return this.router.createUrlTree(this.commands,{relativeTo:this.route,queryParams:this.queryParams,fragment:this.fragment,preserveQueryParams:dT(this.preserve),queryParamsHandling:this.queryParamsHandling,preserveFragment:dT(this.preserveFragment)})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(lT),Eo(eC),Eo(Kd))},e.\\u0275dir=St({type:e,selectors:[[\"a\",\"routerLink\",\"\"],[\"area\",\"routerLink\",\"\"]],hostVars:2,hostBindings:function(e,t){1&e&&Uo(\"click\",(function(e){return t.onClick(e.button,e.ctrlKey,e.metaKey,e.shiftKey)})),2&e&&(Ca(\"href\",t.href,es),Co(\"target\",t.target))},inputs:{routerLink:\"routerLink\",preserveQueryParams:\"preserveQueryParams\",target:\"target\",queryParams:\"queryParams\",fragment:\"fragment\",queryParamsHandling:\"queryParamsHandling\",preserveFragment:\"preserveFragment\",skipLocationChange:\"skipLocationChange\",replaceUrl:\"replaceUrl\",state:\"state\"},features:[Ra]}),e})();function dT(e){return\"\"===e||!!e}class uT{constructor(){this.outlet=null,this.route=null,this.resolver=null,this.children=new hT,this.attachRef=null}}class hT{constructor(){this.contexts=new Map}onChildOutletCreated(e,t){const n=this.getOrCreateContext(e);n.outlet=t,this.contexts.set(e,n)}onChildOutletDestroyed(e){const t=this.getContext(e);t&&(t.outlet=null)}onOutletDeactivated(){const e=this.contexts;return this.contexts=new Map,e}onOutletReAttached(e){this.contexts=e}getOrCreateContext(e){let t=this.getContext(e);return t||(t=new uT,this.contexts.set(e,t)),t}getContext(e){return this.contexts.get(e)||null}}let mT=(()=>{class e{constructor(e,t,n,i,s){this.parentContexts=e,this.location=t,this.resolver=n,this.changeDetector=s,this.activated=null,this._activatedRoute=null,this.activateEvents=new yc,this.deactivateEvents=new yc,this.name=i||\"primary\",e.onChildOutletCreated(this.name,this)}ngOnDestroy(){this.parentContexts.onChildOutletDestroyed(this.name)}ngOnInit(){if(!this.activated){const e=this.parentContexts.getContext(this.name);e&&e.route&&(e.attachRef?this.attach(e.attachRef,e.route):this.activateWith(e.route,e.resolver||null))}}get isActivated(){return!!this.activated}get component(){if(!this.activated)throw new Error(\"Outlet is not activated\");return this.activated.instance}get activatedRoute(){if(!this.activated)throw new Error(\"Outlet is not activated\");return this._activatedRoute}get activatedRouteData(){return this._activatedRoute?this._activatedRoute.snapshot.data:{}}detach(){if(!this.activated)throw new Error(\"Outlet is not activated\");this.location.detach();const e=this.activated;return this.activated=null,this._activatedRoute=null,e}attach(e,t){this.activated=e,this._activatedRoute=t,this.location.insert(e.hostView)}deactivate(){if(this.activated){const e=this.component;this.activated.destroy(),this.activated=null,this._activatedRoute=null,this.deactivateEvents.emit(e)}}activateWith(e,t){if(this.isActivated)throw new Error(\"Cannot activate an already activated outlet\");this._activatedRoute=e;const n=(t=t||this.resolver).resolveComponentFactory(e._futureSnapshot.routeConfig.component),i=this.parentContexts.getOrCreateContext(this.name).children,s=new pT(e,i,this.location.injector);this.activated=this.location.createComponent(n,this.location.length,s),this.changeDetector.markForCheck(),this.activateEvents.emit(this.activated.instance)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(hT),Eo(Ml),Eo(Ja),Oo(\"name\"),Eo(Qr))},e.\\u0275dir=St({type:e,selectors:[[\"router-outlet\"]],outputs:{activateEvents:\"activate\",deactivateEvents:\"deactivate\"},exportAs:[\"outlet\"]}),e})();class pT{constructor(e,t,n){this.route=e,this.childContexts=t,this.parent=n}get(e,t){return e===eC?this.route:e===hT?this.childContexts:this.parent.get(e,t)}}class fT{}class _T{preload(e,t){return xu(null)}}let gT=(()=>{class e{constructor(e,t,n,i,s){this.router=e,this.injector=i,this.preloadingStrategy=s,this.loader=new iT(t,n,t=>e.triggerEvent(new ix(t)),t=>e.triggerEvent(new sx(t)))}setUpPreloading(){this.subscription=this.router.events.pipe(Tu(e=>e instanceof JL),Cu(()=>this.preload())).subscribe(()=>{})}preload(){const e=this.injector.get(it);return this.processRoutes(e,this.router.config)}ngOnDestroy(){this.subscription.unsubscribe()}processRoutes(e,t){const n=[];for(const i of t)if(i.loadChildren&&!i.canLoad&&i._loadedConfig){const e=i._loadedConfig;n.push(this.processRoutes(e.module,e.routes))}else i.loadChildren&&!i.canLoad?n.push(this.preloadConfig(e,i)):i.children&&n.push(this.processRoutes(e,i.children));return z(n).pipe(B(),H(e=>{}))}preloadConfig(e,t){return this.preloadingStrategy.preload(t,()=>this.loader.load(e.injector,t).pipe(V(e=>(t._loadedConfig=e,this.processRoutes(e.module,e.routes)))))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(lT),Qe(Yd),Qe(sd),Qe(fo),Qe(fT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})(),yT=(()=>{class e{constructor(e,t,n={}){this.router=e,this.viewportScroller=t,this.options=n,this.lastId=0,this.lastSource=\"imperative\",this.restoredId=0,this.store={},n.scrollPositionRestoration=n.scrollPositionRestoration||\"disabled\",n.anchorScrolling=n.anchorScrolling||\"disabled\"}init(){\"disabled\"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration(\"manual\"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}createScrollEvents(){return this.router.events.subscribe(e=>{e instanceof GL?(this.store[this.lastId]=this.viewportScroller.getScrollPosition(),this.lastSource=e.navigationTrigger,this.restoredId=e.restoredState?e.restoredState.navigationId:0):e instanceof JL&&(this.lastId=e.id,this.scheduleScrollEvent(e,this.router.parseUrl(e.urlAfterRedirects).fragment))})}consumeScrollEvents(){return this.router.events.subscribe(e=>{e instanceof cx&&(e.position?\"top\"===this.options.scrollPositionRestoration?this.viewportScroller.scrollToPosition([0,0]):\"enabled\"===this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition(e.position):e.anchor&&\"enabled\"===this.options.anchorScrolling?this.viewportScroller.scrollToAnchor(e.anchor):\"disabled\"!==this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition([0,0]))})}scheduleScrollEvent(e,t){this.router.triggerEvent(new cx(e,\"popstate\"===this.lastSource?this.store[this.restoredId]:null,t))}ngOnDestroy(){this.routerEventsSubscription&&this.routerEventsSubscription.unsubscribe(),this.scrollEventsSubscription&&this.scrollEventsSubscription.unsubscribe()}}return e.\\u0275fac=function(e){Io()},e.\\u0275dir=St({type:e}),e})();const bT=new Ve(\"ROUTER_CONFIGURATION\"),vT=new Ve(\"ROUTER_FORROOT_GUARD\"),wT=[tu,{provide:Ox,useClass:Ix},{provide:lT,useFactory:function(e,t,n,i,s,r,o,a={},l,c){const d=new lT(null,e,t,n,i,s,r,Mx(o));if(l&&(d.urlHandlingStrategy=l),c&&(d.routeReuseStrategy=c),a.errorHandler&&(d.errorHandler=a.errorHandler),a.malformedUriErrorHandler&&(d.malformedUriErrorHandler=a.malformedUriErrorHandler),a.enableTracing){const e=Fd();d.events.subscribe(t=>{e.logGroup(`Router Event: ${t.constructor.name}`),e.log(t.toString()),e.log(t),e.logGroupEnd()})}return a.onSameUrlNavigation&&(d.onSameUrlNavigation=a.onSameUrlNavigation),a.paramsInheritanceStrategy&&(d.paramsInheritanceStrategy=a.paramsInheritanceStrategy),a.urlUpdateStrategy&&(d.urlUpdateStrategy=a.urlUpdateStrategy),a.relativeLinkResolution&&(d.relativeLinkResolution=a.relativeLinkResolution),d},deps:[Ox,hT,tu,fo,Yd,sd,nT,bT,[class{},new le],[class{},new le]]},hT,{provide:eC,useFactory:function(e){return e.routerState.root},deps:[lT]},{provide:Yd,useClass:Id},gT,_T,class{preload(e,t){return t().pipe(aw(()=>xu(null)))}},{provide:bT,useValue:{enableTracing:!1}}];function MT(){return new kd(\"Router\",lT)}let kT=(()=>{class e{constructor(e,t){}static forRoot(t,n){return{ngModule:e,providers:[wT,CT(t),{provide:vT,useFactory:xT,deps:[[lT,new le,new de]]},{provide:bT,useValue:n||{}},{provide:Kd,useFactory:LT,deps:[zd,[new ae(Qd),new le],bT]},{provide:yT,useFactory:ST,deps:[lT,Su,bT]},{provide:fT,useExisting:n&&n.preloadingStrategy?n.preloadingStrategy:_T},{provide:kd,multi:!0,useFactory:MT},[TT,{provide:Nc,multi:!0,useFactory:DT,deps:[TT]},{provide:ET,useFactory:YT,deps:[TT]},{provide:qc,multi:!0,useExisting:ET}]]}}static forChild(t){return{ngModule:e,providers:[CT(t)]}}}return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=fe({factory:function(t){return new(t||e)(Qe(vT,8),Qe(lT,8))}}),e})();function ST(e,t,n){return n.scrollOffset&&t.setOffset(n.scrollOffset),new yT(e,t,n)}function LT(e,t,n={}){return n.useHash?new eu(e,t):new Xd(e,t)}function xT(e){if(e)throw new Error(\"RouterModule.forRoot() called twice. Lazy loaded modules should use RouterModule.forChild() instead.\");return\"guarded\"}function CT(e){return[{provide:_o,multi:!0,useValue:e},{provide:nT,multi:!0,useValue:e}]}let TT=(()=>{class e{constructor(e){this.injector=e,this.initNavigation=!1,this.resultOfPreactivationDone=new L}appInitializer(){return this.injector.get(Wd,Promise.resolve(null)).then(()=>{let e=null;const t=new Promise(t=>e=t),n=this.injector.get(lT),i=this.injector.get(bT);if(this.isLegacyDisabled(i)||this.isLegacyEnabled(i))e(!0);else if(\"disabled\"===i.initialNavigation)n.setUpLocationChangeListener(),e(!0);else{if(\"enabled\"!==i.initialNavigation)throw new Error(`Invalid initialNavigation options: '${i.initialNavigation}'`);n.hooks.afterPreactivation=()=>this.initNavigation?xu(null):(this.initNavigation=!0,e(!0),this.resultOfPreactivationDone),n.initialNavigation()}return t})}bootstrapListener(e){const t=this.injector.get(bT),n=this.injector.get(gT),i=this.injector.get(yT),s=this.injector.get(lT),r=this.injector.get(Td);e===r.components[0]&&(this.isLegacyEnabled(t)?s.initialNavigation():this.isLegacyDisabled(t)&&s.setUpLocationChangeListener(),n.setUpPreloading(),i.init(),s.resetRootComponentType(r.componentTypes[0]),this.resultOfPreactivationDone.next(null),this.resultOfPreactivationDone.complete())}isLegacyEnabled(e){return\"legacy_enabled\"===e.initialNavigation||!0===e.initialNavigation||void 0===e.initialNavigation}isLegacyDisabled(e){return\"legacy_disabled\"===e.initialNavigation||!1===e.initialNavigation}}return e.\\u0275fac=function(t){return new(t||e)(Qe(fo))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac}),e})();function DT(e){return e.appInitializer.bind(e)}function YT(e){return e.bootstrapListener.bind(e)}const ET=new Ve(\"Router Initializer\");function OT(e=0,t=tp){return(!Rb(e)||e<0)&&(e=0),t&&\"function\"==typeof t.schedule||(t=tp),new v(n=>(n.add(t.schedule(IT,e,{subscriber:n,counter:0,period:e})),n))}function IT(e){const{subscriber:t,counter:n,period:i}=e;t.next(n),this.schedule({subscriber:t,counter:n+1,period:i},i)}const PT={leading:!0,trailing:!1};class AT{constructor(e,t,n){this.durationSelector=e,this.leading=t,this.trailing=n}call(e,t){return t.subscribe(new RT(e,this.durationSelector,this.leading,this.trailing))}}class RT extends R{constructor(e,t,n,i){super(e),this.destination=e,this.durationSelector=t,this._leading=n,this._trailing=i,this._hasValue=!1}_next(e){this._hasValue=!0,this._sendValue=e,this._throttled||(this._leading?this.send():this.throttle(e))}send(){const{_hasValue:e,_sendValue:t}=this;e&&(this.destination.next(t),this.throttle(t)),this._hasValue=!1,this._sendValue=null}throttle(e){const t=this.tryDurationSelector(e);t&&this.add(this._throttled=A(this,t))}tryDurationSelector(e){try{return this.durationSelector(e)}catch(t){return this.destination.error(t),null}}throttlingDone(){const{_throttled:e,_trailing:t}=this;e&&e.unsubscribe(),this._throttled=null,t&&this.send()}notifyNext(e,t,n,i,s){this.throttlingDone()}notifyComplete(){this.throttlingDone()}}function HT(e){const{start:t,index:n,count:i,subscriber:s}=e;n>=i?s.complete():(s.next(t),s.closed||(e.index=n+1,e.start=t+1,this.schedule(e)))}function jT(e){return t=>t.lift(new FT(e,t))}class FT{constructor(e,t){this.notifier=e,this.source=t}call(e,t){return t.subscribe(new NT(e,this.notifier,this.source))}}class NT extends R{constructor(e,t,n){super(e),this.notifier=t,this.source=n}error(e){if(!this.isStopped){let n=this.errors,i=this.retries,s=this.retriesSubscription;if(i)this.errors=null,this.retriesSubscription=null;else{n=new L;try{const{notifier:e}=this;i=e(n)}catch(t){return super.error(t)}s=A(this,i)}this._unsubscribeAndRecycle(),this.errors=n,this.retries=i,this.retriesSubscription=s,n.next(e)}}_unsubscribe(){const{errors:e,retriesSubscription:t}=this;e&&(e.unsubscribe(),this.errors=null),t&&(t.unsubscribe(),this.retriesSubscription=null),this.retries=null}notifyNext(e,t,n,i,s){const{_unsubscribe:r}=this;this._unsubscribe=null,this._unsubscribeAndRecycle(),this._unsubscribe=r,this.source.subscribe(this)}}class zT{constructor(e){this.resultSelector=e}call(e,t){return t.subscribe(new VT(e,this.resultSelector))}}class VT extends p{constructor(e,t,n=Object.create(null)){super(e),this.iterators=[],this.active=0,this.resultSelector=\"function\"==typeof t?t:null,this.values=n}_next(e){const t=this.iterators;l(e)?t.push(new UT(e)):t.push(\"function\"==typeof e[E]?new WT(e[E]()):new $T(this.destination,this,e))}_complete(){const e=this.iterators,t=e.length;if(this.unsubscribe(),0!==t){this.active=t;for(let n=0;nthis.index}hasCompleted(){return this.array.length===this.index}}class $T extends R{constructor(e,t,n){super(e),this.parent=t,this.observable=n,this.stillUnsubscribed=!0,this.buffer=[],this.isComplete=!1}[E](){return this}next(){const e=this.buffer;return 0===e.length&&this.isComplete?{value:null,done:!0}:{value:e.shift(),done:!1}}hasValue(){return this.buffer.length>0}hasCompleted(){return 0===this.buffer.length&&this.isComplete}notifyComplete(){this.buffer.length>0?(this.isComplete=!0,this.parent.notifyInactive()):this.destination.complete()}notifyNext(e,t,n,i,s){this.buffer.push(t),this.parent.checkIterators()}subscribe(e,t){return A(this,this.observable,this,t)}}let BT=(()=>{class e{constructor(e,t){this.http=e,this.router=t}get(e,t){return this.http.get(JT(e),{headers:KT(t)}).pipe(aw(qT(this.router)),jT(GT()))}post(e,t,n){return this.http.post(JT(e),t,{headers:KT(n)}).pipe(aw(qT(this.router)),jT(GT()))}rawPost(e,t,n){return this.http.post(JT(e),t,{headers:KT(n),observe:\"response\",responseType:\"text\"}).pipe(aw(qT(this.router)),jT(GT()))}delete(e,t){return this.http.delete(JT(e),{headers:KT(t)}).pipe(aw(qT(this.router)),jT(GT()))}put(e,t,n){return this.http.put(JT(e),t,{headers:KT(n)}).pipe(aw(qT(this.router)),jT(GT()))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(qu),Qe(lT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();function qT(e){return(t,n)=>xu(t).pipe(V(t=>{if(403==t.status||401==t.status)return e.routerState.snapshot.url.startsWith(\"/login\")||e.navigate([\"/login\"],{queryParams:{returnUrl:e.url}}),lp();throw t}))}function GT(){return e=>function(e=0,t,n){return new v(i=>{void 0===t&&(t=e,e=0);let s=0,r=e;if(n)return n.schedule(HT,0,{index:s,count:t,start:e,subscriber:i});for(;;){if(s++>=t){i.complete();break}if(i.next(r++),i.closed)break}})}(1,10).pipe(function(...e){return function(t){return t.lift.call(function(...e){const t=e[e.length-1];return\"function\"==typeof t&&e.pop(),q(e,void 0).lift(new zT(t))}(t,...e))}}(e,(e,t)=>{if(10==e)throw t;return e}),V(e=>Hb(1e3*e)))}let JT=function(e){return\"/api/v2/\"+e},KT=function(e){return(e=e||new Iu).set(\"Authorization\",localStorage.getItem(\"token\")).set(\"Accept\",\"application/json\")},ZT=(()=>{class e{constructor(e,t){this.http=e,this.api=t,this.tokenSubject=new hS(localStorage.getItem(\"token\")),this.tokenSubject.pipe(Tu(e=>e!=localStorage.getItem(\"token\"))).subscribe(e=>{\"\"==e?localStorage.removeItem(\"token\"):(localStorage.setItem(\"token\",e),localStorage.setItem(\"token_age\",(new Date).toString()))}),!localStorage.getItem(\"token_age\")&&localStorage.getItem(\"token\")&&localStorage.setItem(\"token_age\",(new Date).toString()),this.tokenSubject.pipe(Wb(e=>\"\"==e?pS():Hb(0,36e5)),H(e=>new Date(localStorage.getItem(\"token_age\"))),Tu(e=>(new Date).getTime()-e.getTime()>144e6),Wb(e=>(console.log(\"Renewing user token\"),this.api.rawPost(\"user/token\").pipe(H(e=>e.headers.get(\"Authorization\")),Tu(e=>\"\"!=e),aw(e=>(console.log(\"Error generating new user token: \",e),pS())))))).subscribe(e=>this.tokenSubject.next(e))}create(e,t){var n=new FormData;return n.append(\"user\",e),n.append(\"password\",t),this.http.post(\"/api/v2/token\",n,{observe:\"response\",responseType:\"text\"}).pipe(H(e=>e.headers.get(\"Authorization\")),H(e=>{if(e)return this.tokenSubject.next(e),e;throw new QT(\"test\")}))}delete(){this.tokenSubject.next(\"\")}tokenObservable(){return this.tokenSubject.pipe(H(e=>(e||\"\").replace(\"Bearer \",\"\")),function(e,t=PT){return n=>n.lift(new AT(e,t.leading,t.trailing))}(e=>OT(2e3)))}tokenUser(e){return e?JSON.parse(atob(e.split(\".\")[1])).sub:\"\"}}return e.\\u0275fac=function(t){return new(t||e)(Qe(qu),Qe(BT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();class QT extends Error{}const XT=[\"placeholder\",$localize`:␟024886ca34a6f309e3e51c2ed849320592c3faaa␟5312727456282218392:User name`],eD=[\"placeholder\",$localize`:␟c32ef07f8803a223a83ed17024b38e8d82292407␟1431416938026210429:Password`];var tD;function nD(e,t){1&e&&(Ro(0,\"ngb-alert\",7),Sa(1,\"Invalid username or password\"),Ho()),2&e&&Po(\"dismissible\",!1)(\"type\",\"danger\")}tD=$localize`:␟71c77bb8cecdf11ec3eead24dd1ba506573fa9cd␟935187492052582731:Submit`;let iD=(()=>{class e{constructor(e,t,n){this.router=e,this.route=t,this.tokenService=n,this.loading=!1,this.invalidLogin=!1}ngOnInit(){this.tokenService.delete(),this.returnURL=this.route.snapshot.queryParams.returnURL||\"/\"}login(){this.loading=!0,this.tokenService.create(this.user,this.password).subscribe(e=>{this.invalidLogin=!1,this.router.navigate([this.returnURL])},e=>{401==e.status&&(this.invalidLogin=!0),this.loading=!1})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(lT),Eo(eC),Eo(ZT))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:13,vars:4,consts:[[1,\"content\"],[\"novalidate\",\"\",1,\"login-form\",3,\"ngSubmit\"],[\"f\",\"ngForm\"],[\"matInput\",\"\",\"name\",\"user\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"password\",\"name\",\"password\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[\"mat-raised-button\",\"\",\"type\",\"submit\",3,\"disabled\"],[3,\"dismissible\",\"type\",4,\"ngIf\"],[3,\"dismissible\",\"type\"]],template:function(e,t){if(1&e&&(Ro(0,\"div\",0),Ro(1,\"form\",1,2),Uo(\"ngSubmit\",(function(){return t.login()})),Ro(3,\"mat-form-field\"),Ro(4,\"input\",3),nc(5,XT),Uo(\"ngModelChange\",(function(e){return t.user=e})),Ho(),Ho(),Ro(6,\"mat-form-field\"),Ro(7,\"input\",4),nc(8,eD),Uo(\"ngModelChange\",(function(e){return t.password=e})),Ho(),Ho(),jo(9,\"br\"),Ro(10,\"button\",5),tc(11,tD),Ho(),Do(12,nD,2,2,\"ngb-alert\",6),Ho(),Ho()),2&e){const e=Yo(2);ys(4),Po(\"ngModel\",t.user),ys(3),Po(\"ngModel\",t.password),ys(3),Po(\"disabled\",t.loading||!e.valid),ys(2),Po(\"ngIf\",t.invalidLogin)}},directives:[Tm,Sh,bm,dM,gM,_h,Vm,kh,Cm,Gy,mu,OS],styles:[\".content[_ngcontent-%COMP%]{display:flex;height:100vh;align-items:center;justify-content:center}button[_ngcontent-%COMP%]{margin-bottom:1rem}\"]}),e})();var sD=n(\"BOF4\");let rD=(()=>{class e{constructor(e){this.router=e}canActivate(e,t){var n=localStorage.getItem(\"token\");if(n){var i=sD(n);if((!i.exp||i.exp>=(new Date).getTime()/1e3)&&(!i.nbf||i.nbf<(new Date).getTime()/1e3))return!0}return this.router.navigate([\"/login\"],{queryParams:{returnUrl:t.url}}),!1}}return e.\\u0275fac=function(t){return new(t||e)(Qe(lT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();function oD(e){return e.events.pipe(Tu(e=>e instanceof JL),H(t=>aD([e.routerState.snapshot.root])),Rf(aD([e.routerState.snapshot.root])),Eb(),nv(1))}function aD(e){for(let t of e){if(\"primary\"in t.data)return t;let e=aD(t.children);if(null!=e)return e}return null}function lD(e){return e.events.pipe(Tu(e=>e instanceof JL),H(t=>cD([e.routerState.snapshot.root])),Rf(cD([e.routerState.snapshot.root])),Eb(),nv(1))}function cD(e){for(let t of e){if(\"articleID\"in t.params)return t;let e=cD(t.children);if(null!=e)return e}return null}function dD(...e){let t=null;return\"function\"==typeof e[e.length-1]&&(t=e.pop()),1===e.length&&l(e[0])&&(e=e[0].slice()),n=>n.lift.call(z([n,...e]),new nS(t))}let uD=(()=>{class e{constructor(){this.services=new Map,this.enabledSubject=new hS([]),this.enabled=new Set(JSON.parse(localStorage.getItem(e.key)))}register(e){this.services.set(e.id,e),this.enabledSubject.next(this.getEnabled())}enabledServices(){return this.enabledSubject.asObservable()}list(){return Array.from(this.services.values()).sort((e,t)=>{let n=e.category.localeCompare(t.category);return 0==n?e.id.localeCompare(t.id):n}).map(e=>[e,this.isEnabled(e.id)])}groupedList(){let e=this.list(),t=new Array,n=\"\";for(let i of e)i[0].category!=n&&(n=i[0].category,t.push(new Array)),t[t.length-1].push(i);return t}toggle(t,n){this.services.has(t)&&(n?this.enabled.add(t):this.enabled.delete(t),localStorage.setItem(e.key,JSON.stringify(Array.from(this.enabled))),this.enabledSubject.next(this.getEnabled()))}isEnabled(e){return this.enabled.has(e)}submit(e,t){let n=this.services.get(e).template.replace(/{%\\s*link\\s*%}/g,t.link).replace(/{%\\s*title\\s*%}/g,t.title);window.open(n,\"_blank\")}getEnabled(){return this.list().filter(e=>e[1]).map(e=>e[0])}}return e.key=\"enabled-services\",e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})(),hD=(()=>{class e{constructor(e){this.sharingService=e}ngOnInit(){this.sharingService.register({id:this.id,description:this.description,category:this.category,link:this.link,template:this.share})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(uD))},e.\\u0275dir=St({type:e,selectors:[[\"share-service\"]],inputs:{id:\"id\",description:\"description\",category:\"category\",link:\"link\",share:\"share\"}}),e})();const mD=[\"description\",$localize`:␟692e44560646c0bdeea893155ffcc76928378a1e␟7811507103524633661:Evernote`,\"category\",$localize`:␟ded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e␟4957012645000249772:Read-it-later`],pD=[\"description\",$localize`:␟35009adf932b9b5ef2c030703e87fc8837c69eb3␟418690784356586368:Instapaper`,\"category\",$localize`:␟ded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e␟4957012645000249772:Read-it-later`],fD=[\"description\",$localize`:␟ebe46a6ad0c84110be6b37c800f3d3663eeb6aba␟9204054824887609742:Readability`,\"category\",$localize`:␟ded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e␟4957012645000249772:Read-it-later`],_D=[\"description\",$localize`:␟3031c36d6183f1bb68d18b5ee4aea8ae31bb0eeb␟8042803930279457976:Pocket`,\"category\",$localize`:␟ded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e␟4957012645000249772:Read-it-later`],gD=[\"description\",$localize`:␟6ff575335272d7e0a6843ba597216f8201b57991␟7677669941581940117:Google+`,\"category\",$localize`:␟81baa3357bebcb29271c8121a87c17915bdbb41f␟3841619436439332072:Social network`],yD=[\"description\",$localize`:␟838a46816b130c73fe73b96e69176da9eb3b1190␟8790918354594417962:Facebook`,\"category\",$localize`:␟81baa3357bebcb29271c8121a87c17915bdbb41f␟3841619436439332072:Social network`],bD=[\"description\",$localize`:␟99cb827741e93125476a0f5b676372d85d15b5fc␟1715373473261069991:Twitter`,\"category\",$localize`:␟81baa3357bebcb29271c8121a87c17915bdbb41f␟3841619436439332072:Social network`],vD=[\"description\",$localize`:␟77ce98fa8988bd33011b2221a28c373dd35a5db1␟5073753467039594647:Pinterest`,\"category\",$localize`:␟81baa3357bebcb29271c8121a87c17915bdbb41f␟3841619436439332072:Social network`],wD=[\"description\",$localize`:␟8df49d58c2d6296211e3a4d6a7dcbb2256cad458␟3508115160503405698:Tumblr`,\"category\",$localize`:␟889e1152e6351fd7607f7547eb5547f6c7a7f3df␟1814818426021413844:Blogging`],MD=[\"description\",$localize`:␟9ed5758c5418a3aa0ecbf9c043a8d89b96852680␟2394265441963394390:Flipboard`,\"category\",$localize`:␟889e1152e6351fd7607f7547eb5547f6c7a7f3df␟1814818426021413844:Blogging`],kD=[\"description\",$localize`:␟244aae9346da82b0922506c2d2581373a15641cc␟4768749765465246664:Email`,\"category\",$localize`:␟244aae9346da82b0922506c2d2581373a15641cc␟4768749765465246664:Email`],SD=[\"description\",$localize`:␟f381d5239a6369e5f4b8582a35e135c8e3d9dfc8␟1092044965355425322:Gmail`,\"category\",$localize`:␟244aae9346da82b0922506c2d2581373a15641cc␟4768749765465246664:Email`];function LD(e,t){if(1&e){const e=zo();Ro(0,\"button\",18),Uo(\"click\",(function(){return en(e),Jo(),Yo(2).toggle()})),Ro(1,\"mat-icon\"),Sa(2,\"menu\"),Ho(),Ho()}}let xD=(()=>{class e{constructor(e,t){this.tokenService=e,this.router=t,this.showsArticle=!1,this.inSearch=!1}ngOnInit(){this.subscription=this.tokenService.tokenObservable().pipe(Tu(e=>\"\"!=e),Wb(e=>lD(this.router).pipe(H(e=>null!=e),dD(oD(this.router).pipe(H(e=>null!=e&&\"search\"==e.data.primary)),(e,t)=>[e,t])))).subscribe(e=>{this.showsArticle=e[0],this.inSearch=e[1]},e=>console.log(e))}ngOnDestroy(){this.subscription.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ZT),Eo(lT))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:33,vars:1,consts:[[\"sidenav\",\"\"],[\"name\",\"sidebar\"],[1,\"content\"],[\"color\",\"primary\"],[\"mat-icon-button\",\"\",3,\"click\",4,\"ngIf\"],[\"name\",\"toolbar\"],[\"id\",\"evernode\",\"link\",\"https://www.evernote.com\",\"share\",\"https://www.evernote.com/clip.action?url={% link %}&title={% title %}\",6,\"description\",\"category\"],[\"id\",\"instapaper\",\"link\",\"http://www.instapaper.com\",\"share\",\"http://www.instapaper.com/hello2?url={% link %}&title={% title %}\",6,\"description\",\"category\"],[\"id\",\"readability\",\"link\",\"https://www.readability.com\",\"share\",\"https://www.readability.com/save?url={% link %}\",6,\"description\",\"category\"],[\"id\",\"pocket\",\"link\",\"https://getpocket.com\",\"share\",\"https://getpocket.com/save?url={% link %}&title={% title %}\",6,\"description\",\"category\"],[\"id\",\"googlep\",\"link\",\"https://plus.google.com\",\"share\",\"https://plus.google.com/share?url={% link %}\",6,\"description\",\"category\"],[\"id\",\"facebook\",\"link\",\"https://www.facebook.com\",\"share\",\"http://www.facebook.com/sharer.php?u={% link %}&t={% title %}\",6,\"description\",\"category\"],[\"id\",\"twitter\",\"link\",\"https://www.twitter.com\",\"share\",\"https://twitter.com/intent/tweet?url={% link %}&text={% title %}\",6,\"description\",\"category\"],[\"id\",\"pinterest\",\"link\",\"https://www.pinterest.com\",\"share\",\"http://pinterest.com/pin/find/?url={% link %}\",6,\"description\",\"category\"],[\"id\",\"tumblr\",\"link\",\"https://www.tumblr.com\",\"share\",\"http://www.tumblr.com/share?v=3&u={% link %}&t={% title %}\",6,\"description\",\"category\"],[\"id\",\"flipboard\",\"link\",\"https://www.flipboard.com\",\"share\",\"https://share.flipboard.com/bookmarklet/popout?v=2&url={% link %}&title={% title %}\",6,\"description\",\"category\"],[\"id\",\"email\",\"share\",\"mailto:?subject={% title %}&body={% link %}\",6,\"description\",\"category\"],[\"id\",\"gmail\",\"link\",\"https://mail.google.com\",\"share\",\"https://mail.google.com/mail/?view=cm&su={% title %}&body={% link %}\",6,\"description\",\"category\"],[\"mat-icon-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"mat-sidenav-container\"),Ro(1,\"mat-sidenav\",null,0),jo(3,\"router-outlet\",1),Ho(),Ro(4,\"div\",2),Ro(5,\"mat-toolbar\",3),Do(6,LD,3,0,\"button\",4),jo(7,\"router-outlet\",5),Ho(),jo(8,\"router-outlet\"),Ho(),Ho(),Ro(9,\"share-service\",6),nc(10,mD),Ho(),Ro(11,\"share-service\",7),nc(12,pD),Ho(),Ro(13,\"share-service\",8),nc(14,fD),Ho(),Ro(15,\"share-service\",9),nc(16,_D),Ho(),Ro(17,\"share-service\",10),nc(18,gD),Ho(),Ro(19,\"share-service\",11),nc(20,yD),Ho(),Ro(21,\"share-service\",12),nc(22,bD),Ho(),Ro(23,\"share-service\",13),nc(24,vD),Ho(),Ro(25,\"share-service\",14),nc(26,wD),Ho(),Ro(27,\"share-service\",15),nc(28,MD),Ho(),Ro(29,\"share-service\",16),nc(30,kD),Ho(),Ro(31,\"share-service\",17),nc(32,SD),Ho()),2&e&&(ys(6),Po(\"ngIf\",!t.showsArticle&&!t.inSearch))},directives:[Hk,Ak,mT,dS,mu,hD,Gy,Cw],styles:[\".content[_ngcontent-%COMP%], body[_ngcontent-%COMP%], html[_ngcontent-%COMP%], mat-sidenav-container[_ngcontent-%COMP%]{width:100%;height:100vh;display:flex;flex-direction:column;overflow:hidden}mat-sidenav[_ngcontent-%COMP%]{width:200px}\"]}),e})();var CD=n(\"wd/R\");function TD(e,t,n,i){n&&\"function\"!=typeof n&&(i=n);const s=\"function\"==typeof n?n:void 0,r=new ev(e,t,i);return e=>te(()=>r,s)(e)}let DD=(()=>{class e{constructor(e){this.api=e}getFeeds(){return this.api.get(\"feed\").pipe(H(e=>e.feeds))}discover(e){return this.api.get(`feed/discover?query=${e}`).pipe(H(e=>e.feeds))}importOPML(e){var t=new FormData;return t.append(\"opml\",e.opml),e.dryRun&&t.append(\"dryRun\",\"true\"),this.api.post(\"opml\",t).pipe(H(e=>e.feeds))}exportOPML(){return this.api.get(\"opml\").pipe(H(e=>e.opml))}addFeeds(e){var t=new FormData;return e.forEach(e=>t.append(\"link\",e)),this.api.post(\"feed\",t)}deleteFeed(e){return this.api.delete(`feed/${e}`).pipe(H(e=>e.success))}updateTags(e,t){var n=new FormData;return t.forEach(e=>n.append(\"tag\",e)),this.api.put(`feed/${e}/tags`,n).pipe(H(e=>e.success))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})(),YD=(()=>{class e{constructor(e){this.api=e}getTags(){return this.api.get(\"tag\").pipe(H(e=>e.tags))}getFeedIDs(e){return this.api.get(`tag/${e.id}/feedIDs`).pipe(H(e=>e.feedIDs))}getTagsFeedIDs(){return this.api.get(\"tag/feedIDs\").pipe(H(e=>e.tagFeeds))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})(),ED=(()=>{class e{constructor(e){this.tokenService=e,this.connectionSubject=new hS(!1),this.refreshSubject=new L,this.eventSourceObservable=this.tokenService.tokenObservable().pipe(dD(this.refreshSubject.pipe(Rf(null)),(e,t)=>e),UL((e,t)=>(null!=e&&e.close(),\"\"!=t&&((e=new EventSource(\"/api/v2/events?token=\"+t)).onopen=()=>{this.connectionSubject.next(!0)},e.onerror=e=>{setTimeout(()=>{this.connectionSubject.next(!1),this.refresh()},3e3)}),e),null),Tu(e=>null!=e),nv(1)),this.feedUpdate=this.eventSourceObservable.pipe(V(e=>Mb(e,\"feed-update\")),H(e=>JSON.parse(e.data))),this.articleState=this.eventSourceObservable.pipe(V(e=>Mb(e,\"article-state-change\")),H(e=>JSON.parse(e.data)))}connection(){return this.connectionSubject.asObservable()}refresh(){this.refreshSubject.next(null)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(ZT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})(),OD=(()=>{class e{constructor(){this.prefs=JSON.parse(localStorage.getItem(e.key)||\"{}\"),this.prefs.unreadFirst=!0,this.queryPreferencesSubject=new hS(this.prefs)}get olderFirst(){return this.prefs.olderFirst}set olderFirst(e){this.prefs.olderFirst=e,this.queryPreferencesSubject.next(this.prefs),this.saveToStorage()}get unreadOnly(){return this.prefs.unreadOnly}set unreadOnly(e){this.prefs.unreadOnly=e,this.queryPreferencesSubject.next(this.prefs),this.saveToStorage()}queryPreferences(){return this.queryPreferencesSubject.asObservable()}saveToStorage(){localStorage.setItem(e.key,JSON.stringify(this.prefs))}}return e.key=\"preferences\",e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();function ID(e){return e.map(e=>(\"string\"==typeof e.date&&(e.date=new Date(e.date)),e))}class PD{constructor(){this.updatable=!0}get url(){return\"\"}}class AD{constructor(){this.updatable=!1}get url(){return\"/favorite\"}}class RD{constructor(e){this.secondary=e,this.updatable=!1}get url(){return\"/popular\"+this.secondary.url}}class HD{constructor(e){this.id=e,this.updatable=!0}get url(){return`/feed/${this.id}`}}class jD{constructor(e){this.id=e,this.updatable=!0}get url(){return`/tag/${this.id}`}}class FD{constructor(e,t){this.query=e,this.secondary=t,this.updatable=!1}get url(){return`/search${this.secondary.url}?query=${encodeURIComponent(this.query)}`}}class ND{constructor(){this.indexMap=new Map,this.articles=[]}}let zD=(()=>{class e{constructor(e,t,n,i,s,r,o){this.api=e,this.tokenService=t,this.feedService=n,this.tagService=i,this.eventService=s,this.router=r,this.preferences=o,this.paging=new hS(null),this.stateChange=new L,this.updateSubject=new L,this.refresh=new hS(null),this.limit=200,this.initialFetched=!1;let a=this.preferences.queryPreferences();this.source=oD(this.router).pipe(Tu(e=>null!=e),H(e=>this.nameToSource(e.data,e.params)),Tu(e=>null!=e),Eb((e,t)=>e.url===t.url));let l=this.tokenService.tokenObservable().pipe(UL((e,t)=>{var n=this.tokenService.tokenUser(t);return e[0]=t,e[2]=e[1]!=n,e[1]=n,e},[\"\",\"\",!1]),Tu(e=>e[2]),Wb(()=>this.feedService.getFeeds().pipe(dD(this.tagService.getTagsFeedIDs(),(e,t)=>[e.reduce((e,t)=>(e[t.id]=t.title,e),new Map),t.reduce((e,t)=>(e[t.tag.id]=t.ids,e),new Map)]))),nv(1));this.articles=l.pipe(Wb(e=>this.source.pipe(dD(this.refresh,(e,t)=>e),Wb(t=>(this.paging=new hS(0),a.pipe(Wb(n=>G(this.paging.pipe(V(e=>this.datePaging(t,n.unreadFirst)),Wb(e=>this.getArticlesFor(t,{olderFirst:n.olderFirst,unreadOnly:n.unreadOnly},this.limit,e)),H(e=>({articles:e,fromEvent:!1}))),this.updateSubject.pipe(Wb(e=>this.getArticlesFor(t,e[0],this.limit,{}).pipe(dD(this.ids(t,{unreadOnly:!0,beforeID:e[0].afterID+1,afterID:e[1]-1}),(t,n)=>({articles:t,unreadIDs:new Set(n),unreadIDRange:[e[1],e[0].afterID],fromEvent:!0}))))),this.eventService.feedUpdate.pipe(Tu(n=>this.shouldUpdate(n,t,e[1])),bM(3e4),V(e=>this.getArticlesFor(new HD(e.feedID),{ids:e.articleIDs,olderFirst:n.olderFirst,unreadOnly:n.unreadOnly},this.limit,{})),H(e=>({articles:e,fromEvent:!0})))).pipe(Tu(e=>null!=e.articles),H(t=>(t.articles=t.articles.map(t=>(t.hits&&t.hits.fragments&&(t.hits.fragments.title.length>0&&(t.title=t.hits.fragments.title.join(\" \")),t.hits.fragments.description.length>0&&(t.stripped=t.hits.fragments.description.join(\" \"))),t.stripped||(t.stripped=t.description.replace(/<[^>]+>/g,\"\")),t.feed=e[0][t.feedID],t)),t)),UL((e,t)=>{if(t.unreadIDs)for(let n=0;n=t.unreadIDRange[0]&&i<=t.unreadIDRange[1]&&(e.articles[n].read=!t.unreadIDs.has(i))}if(t.fromEvent){let i=new Array;for(let s of t.articles)if(s.id in e.indexMap)i.push(s);else if(n.olderFirst){for(let t=e.articles.length-1;t>=0;t--)if(this.shouldInsert(s,e.articles[t],n)){e.articles.splice(t,0,s);break}}else for(let t=0;tJSON.stringify(e)==JSON.stringify(t))),(t,n)=>{if(null!=n){if(n.options.ids)for(let e of n.options.ids){let i=t.indexMap[e];null!=i&&-1!=i&&(t.articles[i][n.name]=n.value)}if(this.hasOptions(n.options)){let i=new Set;e[1].forEach(e=>{for(let t of e)i.add(t)});for(let e=0;ee.articles))),Rf([])))))),TD(1)),this.articles.connect(),this.eventService.connection().pipe(Tu(e=>e),Wb(e=>this.articles.pipe(zL())),Tu(e=>e.length>0),H(e=>e.map(e=>e.id)),H(e=>[Math.min.apply(Math,e),Math.max.apply(Math,e)]),H(e=>this.preferences.olderFirst?[{afterID:e[1]},e[0]]:[{olderFirst:!0,afterID:e[1]},e[0]])).subscribe(e=>this.updateSubject.next(e),e=>console.log(\"Error refreshing article list after reconnect: \",e)),this.eventService.articleState.subscribe(e=>this.stateChange.next({options:e.options,name:e.state,value:e.value}));let c=(new Date).getTime();Notification.requestPermission(e=>{\"granted\"==e&&l.pipe(dD(this.source,(e,t)=>[e[0],e[1],t]),Wb(e=>this.eventService.feedUpdate.pipe(Tu(t=>this.shouldUpdate(t,e[2],e[1])),H(t=>{let n=e[0].get(t.feedID);return n?[\"readeef: updates\",`Feed ${n} has been updated`]:null}),Tu(e=>null!=e),bM(3e4)))).subscribe(e=>{document.hasFocus()||(new Date).getTime()-c>3e4&&(new Notification(e[0],{body:e[1],icon:\"/en/readeef.png\",tag:\"readeef\"}),c=(new Date).getTime())})})}articleObservable(){return this.articles}requestNextPage(){this.paging.next(null)}ids(e,t){return this.api.get(this.buildURL(`article${e.url}/ids`,t)).pipe(H(e=>e.ids))}formatArticle(e){return this.api.get(`article/${e}/format`)}refreshArticles(){this.refresh.next(null)}favor(e,t){return this.articleStateChange(e,\"favorite\",t)}read(e,t){return this.articleStateChange(e,\"read\",t)}readAll(){this.source.pipe(cp(1),Tu(e=>e.updatable),H(e=>\"article\"+e.url+\"/read\"),V(e=>this.api.post(e)),H(e=>e.success)).subscribe(e=>{},e=>console.log(e))}articleStateChange(e,t,n){let i,s=`article/${e}/${t}`;return i=n?this.api.post(s):this.api.delete(s),i.pipe(H(e=>e.success),H(i=>(i&&this.stateChange.next({options:{ids:[e]},name:t,value:n}),i)))}getArticlesFor(e,t,n,i){let s=Object.assign({},t,{limit:n}),r=Object.assign({},s),o=-1,a=0;i.unreadTime?(o=i.unreadTime,a=i.unreadScore,r.unreadOnly=!0):i.time&&(o=i.time,a=i.score),-1!=o&&(t.olderFirst?(r.afterTime=o,a&&(r.afterScore=a)):(r.beforeTime=o,a&&(r.beforeScore=a)));let l=this.api.get(this.buildURL(\"article\"+e.url,r)).pipe(H(e=>ID(e.articles)));if(i.unreadTime&&(r=Object.assign({},s),r.readOnly=!0,i.time&&(t.olderFirst?(r.afterTime=i.time,i.score&&(r.afterScore=i.score)):(r.beforeTime=i.time,i.score&&(r.beforeScore=i.score))),l=l.pipe(V(t=>t.length==n?xu(t):(r.limit=n-t.length,this.api.get(this.buildURL(\"article\"+e.url,r)).pipe(H(e=>ID(e.articles)),H(e=>t.concat(e))))))),r.afterID&&(l=l.pipe(V(t=>{if(!t||!t.length)return xu(t);let s=Math.max.apply(Math,t.map(e=>e.id)),o=Object.assign({},r,{afterID:s});return this.getArticlesFor(e,o,n,i).pipe(H(e=>e&&e.length?e.concat(t):t))}))),!this.initialFetched){this.initialFetched=!0;let e=cD([this.router.routerState.snapshot.root]);if(null!=e&&+e.params.articleID>-1){let t=+e.params.articleID;return this.api.get(this.buildURL(\"article\"+(new PD).url,{ids:[t]})).pipe(H(e=>ID(e.articles)[0]),cp(1),V(e=>l.pipe(H(t=>{for(let n=0;nxu(null)))}buildURL(e,t){t||(t={}),t.limit||(t.limit=200);var n=new Array;if(t.ids){for(let e of t.ids)n.push(`id=${e}`);t.ids=void 0}for(var i in t)if(t.hasOwnProperty(i)){let e=t[i];if(void 0===e)continue;\"boolean\"==typeof e?e&&n.push(`${i}`):n.push(`${i}=${e}`)}return n.length>0?e+(-1==e.indexOf(\"?\")?\"?\":\"&\")+n.join(\"&\"):e}nameToSource(e,t){let n,i;switch(\"string\"==typeof e?n=e:(n=e.primary,i=e.secondary),n){case\"user\":return new PD;case\"favorite\":return new AD;case\"popular\":return new RD(this.nameToSource(i,t));case\"search\":return new FD(decodeURIComponent(t.query),this.nameToSource(i,t));case\"feed\":return new HD(t.id);case\"tag\":return new jD(t.id)}}datePaging(e,t){return this.articles.pipe(cp(1),H(n=>{if(0==n.length)return t?{unreadTime:-1}:{};let i=n[n.length-1],s={time:i.date.getTime()/1e3};if(e instanceof RD&&(s.score=i.score),t&&!(e instanceof FD)){if(!i.read)return s.unreadTime=s.time,e instanceof RD&&(s.unreadScore=s.score),s;for(let e=1;et.date)return!0;return!1}shouldSet(e,t,n){return!(t.feedIDs&&-1==t.feedIDs.indexOf(e.feedID)||t.readOnly&&!e.read||t.unreadOnly&&e.read||t.favoriteOnly&&!e.favorite||t.untaggedOnly&&!n.has(e.feedID)||t.beforeID&&e.id>=t.beforeID||t.afterID&&e.id<=t.afterID||t.beforeDate&&e.date>=t.beforeDate||t.afterDate&&e.date<=t.afterDate)}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT),Qe(ZT),Qe(DD),Qe(YD),Qe(ED),Qe(lT),Qe(OD))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();function VD(e,t){1&e&&jo(0,\"div\",9),2&e&&da(\"background-image\",\"url(\"+Jo().item.thumbnail+\")\",ts)}function WD(e,t){1&e&&jo(0,\"div\",9),2&e&&da(\"background-image\",\"url(\"+Jo().item.thumbnailLink+\")\",ts)}function UD(e,t){if(1&e&&(Ro(0,\"div\",10),Sa(1),Ho()),2&e){const e=Jo();ys(1),xa(\" \",e.item.feed,\" \")}}let $D=(()=>{class e{constructor(e,t,n){this.articleService=e,this.router=t,this.route=n}openArticle(e){this.router.navigate([\"article\",e.id],{relativeTo:this.route})}favor(e,t){this.articleService.favor(e,t).subscribe(e=>{},e=>console.log(e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(zD),Eo(lT),Eo(eC))},e.\\u0275cmp=yt({type:e,selectors:[[\"list-item\"]],inputs:{item:\"item\"},decls:16,vars:12,consts:[[3,\"id\",\"click\"],[1,\"row\",\"align-items-center\"],[1,\"col\",\"title\"],[\"mat-card-avatar\",\"\",\"mat-icon-button\",\"\",3,\"click\"],[3,\"innerHTML\"],[\"mat-card-image\",\"\",3,\"backgroundImage\",4,\"ngIf\"],[1,\"row\",\"align-items-center\",\"info\"],[\"class\",\"col-mat-auto feed\",4,\"ngIf\"],[1,\"col\",\"time\"],[\"mat-card-image\",\"\"],[1,\"col-mat-auto\",\"feed\"]],template:function(e,t){1&e&&(Ro(0,\"mat-card\",0),Uo(\"click\",(function(){return t.openArticle(t.item)})),Ro(1,\"mat-card-header\",1),Ro(2,\"mat-card-title\",2),Ro(3,\"button\",3),Uo(\"click\",(function(e){return e.stopPropagation(),t.favor(t.item.id,!t.item.favorite)})),Ro(4,\"mat-icon\"),Sa(5),Ho(),Ho(),jo(6,\"span\",4),Ho(),Ho(),Do(7,VD,1,2,\"div\",5),Do(8,WD,1,2,\"div\",5),Ro(9,\"mat-card-content\"),jo(10,\"div\",4),Ho(),Ro(11,\"mat-card-actions\"),Ro(12,\"div\",6),Do(13,UD,2,1,\"div\",7),Ro(14,\"div\",8),Sa(15),Ho(),Ho(),Ho(),Ho()),2&e&&(ua(\"read\",t.item.read),ta(\"id\",t.item.id),ys(5),xa(\" \",t.item.favorite?\"bookmark\":\"bookmark_border\",\" \"),ys(1),Po(\"innerHTML\",t.item.title,Qi),ys(1),Po(\"ngIf\",t.item.thumbnail),ys(1),Po(\"ngIf\",t.item.thumbnailLink&&!t.item.thumbnail),ys(2),Po(\"innerHTML\",t.item.stripped,Qi),ys(2),ua(\"read\",t.item.read),ys(1),Po(\"ngIf\",t.item.feed),ys(2),xa(\" \",t.item.time,\" \"))},directives:[ob,ab,nb,Gy,rb,Cw,mu,tb,ib,sb],styles:[\"[_nghost-%COMP%]{height:500px}mat-card[_ngcontent-%COMP%]{display:flex;flex-direction:column;max-height:calc(100% - 12px);cursor:pointer}mat-card-header[_ngcontent-%COMP%]{overflow:hidden;flex:0 0 auto}[mat-card-image][_ngcontent-%COMP%]{height:240px;flex:1 0 auto;background-position:50%;background-repeat:no-repeat;background-size:contain}mat-card-content[_ngcontent-%COMP%]{flex:0 1 auto;overflow:hidden;text-overflow:ellipsis-lastline;font-size:12px}mat-card-actions[_ngcontent-%COMP%]{flex:0 0 auto}.read[_ngcontent-%COMP%]{font-weight:100;color:#666}.read[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{font-weight:300}.title[_ngcontent-%COMP%]{font-weight:700;font-size:14px;overflow:hidden;text-overflow:ellipsis;line-height:1;height:3.85em}.info[_ngcontent-%COMP%]{margin:0}.feed[_ngcontent-%COMP%]{font-weight:200;font-size:10px;text-align:start}.time[_ngcontent-%COMP%]{font-size:11px;text-align:end}button[_ngcontent-%COMP%]:focus, button[_ngcontent-%COMP%]:hover{outline:none;text-decoration:none}\"]}),e})();function BD(e,t){1&e&&jo(0,\"list-item\",4),2&e&&Po(\"item\",t.$implicit)}var qD;function GD(e,t){1&e&&(Ro(0,\"div\",5),tc(1,qD),Ho())}qD=$localize`:␟94516fa213706c67ce5a5b5765681d7fb032033a␟3894950702316166331:Loading...`;class JD{constructor(e,t){this.iteration=e,this.articles=t}}let KD=(()=>{class e{constructor(e,t,n){this.articleService=e,this.router=t,this.route=n,this.items=[],this.finished=!1,this.limit=200}ngOnInit(){this.loading=!0,this.subscription=this.articleService.articleObservable().pipe(UL((e,t,n)=>(e.iteration>0&&e.articles.length==t.length&&(this.finished=!0),e.articles=[].concat(t),e.iteration++,e),new JD(0,[])),H(e=>e.articles),Wb(e=>OT(6e4).pipe(Rf(0),H(t=>e.map(e=>(e.time=CD(e.date).fromNow(),e)))))).subscribe(e=>{this.loading=!1,this.items=e},e=>{this.loading=!1,console.log(e)})}ngOnDestroy(){this.subscription.unsubscribe()}fetchMore(e){e.endIndex!==this.items.length-1||this.loading||this.finished||(this.loading=!0,this.articleService.requestNextPage())}firstUnread(){if(document.activeElement.matches(\"input\"))return;let e=this.items.find(e=>!e.read);e&&this.router.navigate([\"article\",e.id],{relativeTo:this.route})}lastUnread(){if(!document.activeElement.matches(\"input\"))for(let e=this.items.length-1;e>-1;e--){let t=this.items[e];if(!t.read)return void this.router.navigate([\"article\",t.id],{relativeTo:this.route})}}refresh(){document.activeElement.matches(\"input\")||this.articleService.refreshArticles()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(zD),Eo(lT),Eo(eC))},e.\\u0275cmp=yt({type:e,selectors:[[\"article-list\"]],hostBindings:function(e,t){1&e&&Uo(\"keydown.arrowLeft\",(function(){return t.firstUnread()}),!1,Un)(\"keydown.shift.j\",(function(){return t.firstUnread()}),!1,Un)(\"keydown.arrowRight\",(function(){return t.lastUnread()}),!1,Un)(\"keydown.shift.k\",(function(){return t.lastUnread()}),!1,Un)(\"keydown.r\",(function(){return t.refresh()}),!1,Un)},decls:4,vars:3,consts:[[3,\"items\",\"vsEnd\"],[\"scroll\",\"\"],[3,\"item\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"loader\",4,\"ngIf\"],[3,\"item\"],[1,\"loader\"]],template:function(e,t){if(1&e&&(Ro(0,\"virtual-scroller\",0,1),Uo(\"vsEnd\",(function(e){return t.fetchMore(e)})),Do(2,BD,1,1,\"list-item\",2),Do(3,GD,2,0,\"div\",3),Ho()),2&e){const e=Yo(1);Po(\"items\",t.items),ys(2),Po(\"ngForOf\",e.viewPortItems),ys(1),Po(\"ngIf\",t.loading)}},directives:[LL,uu,mu,$D],styles:['[_nghost-%COMP%]{flex-grow:1;display:flex;height:calc(100% - 64px)}virtual-scroller[_ngcontent-%COMP%]{overflow:hidden;overflow-y:auto;display:block;flex-grow:1;background:#eee}list-item[_ngcontent-%COMP%]{display:inline-block;overflow:hidden;vertical-align:top;border:0;width:calc(25% - 16px);margin:8px}@media (max-width:1350px){list-item[_ngcontent-%COMP%]{width:calc(33% - 16px)}}@media (max-width:900px){list-item[_ngcontent-%COMP%]{width:calc(50% - 16px)}}@media (max-width:600px){list-item[_ngcontent-%COMP%]{width:calc(100% - 16px)}}.loader[_ngcontent-%COMP%]{height:4em;display:block;line-height:4em;text-align:center;position:relative}.loader[_ngcontent-%COMP%]:before{content:\" \";position:absolute;top:0;left:0;width:20%;height:2px;background:red;-webkit-animation:loader-animation 2s ease-out infinite;animation:loader-animation 2s ease-out infinite}@-webkit-keyframes loader-animation{0%{transform:translate(0)}to{transform:translate(500%)}}@keyframes loader-animation{0%{transform:translate(0)}to{transform:translate(500%)}}']}),e})();class ZD{call(e,t){return t.subscribe(new QD(e))}}class QD extends p{_next(e){}}let XD=(()=>{class e{constructor(e,t){this.api=e,this.tokenService=t;var n=this.tokenService.tokenObservable().pipe(Wb(e=>this.api.get(\"features\").pipe(H(e=>e.features))),TD(1));n.connect(),this.features=n}getFeatures(){return this.features}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT),Qe(ZT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();const eY=[\"carousel\"];var tY,nY,iY;function sY(e,t){if(1&e&&(Ro(0,\"div\",17),Sa(1),Ho()),2&e){const e=Jo(2).$implicit;ys(1),xa(\" \",e.feed,\" \")}}function rY(e,t){if(1&e){const e=zo();Ro(0,\"div\",18),Ro(1,\"button\",19),Uo(\"click\",(function(){en(e);const t=Jo(2).$implicit;return Jo().formatArticle(t)})),tc(2,nY),Ho(),Ho()}}function oY(e,t){if(1&e){const e=zo();Ro(0,\"div\",18),Ro(1,\"button\",19),Uo(\"click\",(function(){en(e);const t=Jo(2).$implicit;return Jo().summarizeArticle(t)})),tc(2,iY),Ho(),Ho()}}function aY(e,t){if(1&e){const e=zo();Ro(0,\"div\",4),Ro(1,\"h3\",5),Ro(2,\"button\",6),Uo(\"click\",(function(){en(e);const t=Jo().$implicit;return Jo().favorArticle(t)})),Ro(3,\"mat-icon\"),Sa(4),Ho(),Ho(),Ro(5,\"a\",7),Uo(\"click\",(function(){return en(e),Jo(2).viewActive()})),Ho(),Ho(),Ro(6,\"div\",8),Do(7,sY,2,1,\"div\",9),Ro(8,\"div\",10),Sa(9),Ho(),Ro(10,\"div\",11),Sa(11),Ho(),Ho(),jo(12,\"p\",12),Ro(13,\"div\",13),Ro(14,\"div\",14),Ro(15,\"a\",15),Uo(\"click\",(function(){return en(e),Jo(2).viewActive()})),tc(16,tY),Ho(),Ho(),Do(17,rY,3,0,\"div\",16),Do(18,oY,3,0,\"div\",16),Ho(),Ho()}if(2&e){const e=Jo().$implicit,t=Jo();ys(4),xa(\" \",e.favorite?\"bookmark\":\"bookmark_border\",\" \"),ys(1),ta(\"href\",e.link,es),Po(\"innerHTML\",e.title,Qi),ys(1),ua(\"read\",e.read),ys(1),Po(\"ngIf\",e.feed),ys(2),xa(\" \",t.index,\" \"),ys(2),xa(\" \",e.time,\" \"),ys(1),Po(\"innerHTML\",e.formatted,Qi),ys(3),ta(\"href\",e.link,es),ys(2),Po(\"ngIf\",t.canExtract),ys(1),Po(\"ngIf\",t.canExtract)}}function lY(e,t){1&e&&Do(0,aY,19,12,\"ng-template\",3),2&e&&Po(\"id\",t.$implicit.id.toString())}tY=$localize`:␟bba44ce85e0028ddbc8b0e38d5a04fabc13c8f61␟342997967009162383: View `,nY=$localize`:␟d5e281892feed2ccbc7c3135846913de48ed7876␟7925939516256734638: Format `,iY=$localize`:␟170d0510bd494799bed6a127fc04eabc9f8bed23␟97023127247629182: Summary `;var cY=function(e){return e[e.DESCRIPTION=0]=\"DESCRIPTION\",e[e.FORMAT=1]=\"FORMAT\",e[e.SUMMARY=2]=\"SUMMARY\",e}({});let dY=(()=>{class e{constructor(e,t,n,i,s,r){this.route=t,this.router=n,this.articleService=i,this.featuresService=s,this.sanitizer=r,this.slides=[],this.offset=new L,this.stateChange=new hS([-1,cY.DESCRIPTION]),this.states=new Map,this.subscriptions=new Array,e.interval=0,e.wrap=!1,e.keyboard=!1}ngOnInit(){this.subscriptions.push(this.articleService.articleObservable().pipe(Wb(e=>this.stateChange.pipe(Wb(e=>this.offset.pipe(Rf(0),H(t=>[t,e]))),H(t=>{let[n,i]=t,s=this.route.snapshot.params.articleID,r=[],o=e.findIndex(e=>e.id==s);return-1==o?null:(0!=n&&(o+n!=-1&&o+n0&&r.push(e[o-1]),r.push(e[o]),o+1{if(e.id==i[0])switch(i[1]){case cY.DESCRIPTION:e.formatted=e.description;break;case cY.FORMAT:e.formatted=e.format.content;break;case cY.SUMMARY:e.formatted=this.keypointsToHTML(e.format)}else e.formatted=e.description;return e.formatted=this.sanitizer.bypassSecurityTrustHtml(this.formatSource(e.formatted)),e}),{slides:r,active:{id:e[o].id,read:e[o].read,state:i[1]},index:o,total:e.length})}))),Tu(e=>null!=e),Eb((e,t)=>e.active.id==t.active.id&&e.slides.length==t.slides.length&&e.active.state==t.active.state&&e.total==t.total&&(e.slides[0]||{}).id==(t.slides[0]||{}).id&&(e.slides[2]||{}).id==(t.slides[2]||{}).id),V(e=>e.active.read?xu(e):this.articleService.read(e.active.id,!0).pipe(H(t=>e),aw(e=>xu(e)),(function(e){return e.lift(new ZD)}),Rf(e))),Wb(e=>OT(6e4).pipe(Rf(0),H(t=>(e.slides=e.slides.map(e=>(e.time=CD(e.date).fromNow(),e)),e))))).subscribe(e=>{this.carousel.activeId=e.active.id.toString(),this.slides=e.slides,this.active=e.slides.find(t=>t.id==e.active.id),2==e.slides.length&&e.slides[1].id==e.active.id&&this.articleService.requestNextPage(),this.index=`${e.index+1}/${e.total}`},e=>console.log(e))),this.subscriptions.push(this.featuresService.getFeatures().pipe(H(e=>e.extractor)).subscribe(e=>this.canExtract=e,e=>console.log(e))),this.subscriptions.push(this.stateChange.subscribe(e=>this.states.set(e[0],e[1])))}ngOnDestroy(){for(let e of this.subscriptions)e.unsubscribe()}slideEvent(e){this.offset.next(e?1:-1)}favor(e,t){this.articleService.favor(e,t).subscribe(e=>{},e=>console.log(e))}goUp(){this.router.navigate([\"../../\"],{relativeTo:this.route}),document.getSelection().removeAllRanges()}goNext(){this.carousel.next()}goPrevious(){this.carousel.prev()}previousUnread(){let e=this.route.snapshot.params.articleID;this.articleService.articleObservable().pipe(H(t=>{let n=t.findIndex(t=>t.id==e);for(;n>0&&(n--,t[n].read););return t[n].read?e:t[n].id}),cp(1),Tu(t=>t!=e),V(e=>z(this.router.navigate([\"../\",e],{relativeTo:this.route})).pipe(H(t=>e)))).subscribe(e=>{this.stateChange.next([e,cY.DESCRIPTION])})}nextUnread(){let e=this.route.snapshot.params.articleID;this.articleService.articleObservable().pipe(H(t=>{let n=t.findIndex(t=>t.id==e);for(;nt!=e),V(e=>z(this.router.navigate([\"../\",e],{relativeTo:this.route})).pipe(H(t=>e)))).subscribe(e=>{this.stateChange.next([e,cY.DESCRIPTION])})}viewActive(){return null!=this.active&&document.body.dispatchEvent(new CustomEvent(\"open-link\",{cancelable:!0,detail:this.active.link}))&&window.open(this.active.link,\"_blank\"),!1}formatActive(){null!=this.active&&this.formatArticle(this.active)}formatArticle(e){let t=this.getState(e.id);t=t==cY.FORMAT?cY.DESCRIPTION:cY.FORMAT,this.setFormat(e,t)}summarizeActive(){null!=this.active&&this.summarizeArticle(this.active)}summarizeArticle(e){let t=this.getState(e.id);t=t==cY.SUMMARY?cY.DESCRIPTION:cY.SUMMARY,this.setFormat(e,t)}favorActive(){null!=this.active&&this.favorArticle(this.active)}favorArticle(e){this.articleService.favor(e.id,!e.favorite).subscribe(e=>{},e=>console.log(e))}keypointsToHTML(e){return`
  • `+e.keyPoints.join(\"
  • \")+\"
\"}getState(e){return this.states.has(e)?this.states.get(e):cY.DESCRIPTION}setFormat(e,t){let n,i=this.active;t!=cY.DESCRIPTION?(n=e.format?xu(e.format):this.articleService.formatArticle(i.id),n.subscribe(e=>{i.format=e,this.stateChange.next([i.id,t])},e=>console.log(e))):this.stateChange.next([i.id,t])}formatSource(e){return e.replace(\"{class e{constructor(){this.parser=document.createElement(\"a\")}iconURL(e){return this.parser.href=e,`//www.google.com/s2/favicons?domain=${this.parser.hostname}`}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();var hY,mY,pY,fY,_Y,gY;function yY(e,t){if(1&e&&(Ro(0,\"a\",14),Sa(1),Ho()),2&e){const e=t.$implicit;Po(\"routerLink\",\"/feed/popular/\"+e.link),ys(1),La(e.title)}}function bY(e,t){if(1&e&&(Ro(0,\"a\",14),jo(1,\"img\",15),Sa(2),Ho()),2&e){const e=t.$implicit,n=Jo(2);Po(\"routerLink\",\"/feed/popular/\"+e.link),ys(1),ta(\"src\",n.favicon(e.url),es),ys(1),La(e.title)}}function vY(e,t){if(1&e){const e=zo();Ro(0,\"div\",4),Ro(1,\"div\",5),Ro(2,\"button\",6),Uo(\"click\",(function(){en(e);const t=Jo();return t.collapses.__popularity=!t.collapses.__popularity})),Ro(3,\"mat-icon\"),Sa(4),Ho(),Ho(),Ro(5,\"a\",13),tc(6,gY),Ho(),Ho(),Ro(7,\"div\",8),Do(8,yY,2,2,\"a\",9),Do(9,bY,3,3,\"a\",9),Ho(),Ho()}if(2&e){const e=Jo();ys(4),La(e.collapses.__popularity?\"expand_less\":\"expand_more\"),ys(3),Po(\"ngbCollapse\",!e.collapses.__popularity),ys(1),Po(\"ngForOf\",e.tags),ys(1),Po(\"ngForOf\",e.allItems)}}function wY(e,t){if(1&e&&(Ro(0,\"a\",14),jo(1,\"img\",15),Sa(2),Ho()),2&e){const e=t.$implicit,n=Jo();Po(\"routerLink\",\"/\"+e.link),ys(1),ta(\"src\",n.favicon(e.url),es),ys(1),La(e.title)}}function MY(e,t){if(1&e&&(Ro(0,\"a\",14),jo(1,\"img\",15),Sa(2),Ho()),2&e){const e=t.$implicit,n=Jo(2);Po(\"routerLink\",\"/feed/\"+e.link),ys(1),ta(\"src\",n.favicon(e.url),es),ys(1),La(e.title)}}function kY(e,t){if(1&e){const e=zo();Ro(0,\"div\",4),Ro(1,\"div\",5),Ro(2,\"button\",6),Uo(\"click\",(function(){en(e);const n=t.$implicit,i=Jo();return i.collapses[n.id]=!i.collapses[n.id]})),Ro(3,\"mat-icon\"),Sa(4),Ho(),Ho(),Ro(5,\"a\",14),Sa(6),Ho(),Ho(),Ro(7,\"div\",8),Do(8,MY,3,3,\"a\",9),Ho(),Ho()}if(2&e){const e=t.$implicit,n=Jo();ys(4),La(n.collapses[e.id]?\"expand_less\":\"expand_more\"),ys(1),Po(\"routerLink\",\"/feed/\"+e.link),ys(1),La(e.title),ys(1),Po(\"ngbCollapse\",!n.collapses[e.id]),ys(1),Po(\"ngForOf\",e.items)}}hY=$localize`:␟416441a4532345eaa0c5cab38f0aeb148c8566e0␟4648504262060403687: Feeds\n`,mY=$localize`:␟11a0771f88158a540a54e0e4ec5d25733d65fc0e␟5787671382322865445:Favorite`,pY=$localize`:␟dfc3c34e182ea73c5d784ff7c8135f087992dac1␟1616102757855967475:All`,fY=$localize`:␟121cc5391cd2a5115bc2b3160379ee5b36cd7716␟4930506384627295710:Settings`,_Y=$localize`:␟bb694b49d408265c91c62799c2b3a7e3151c824d␟3797778920049399855:Logout`,gY=$localize`:␟8fc026bb4b317bf3a6159c364818202f5bb95a4e␟7375243393535212946:Popular`;let SY=(()=>{class e{constructor(e,t,n,i){this.tagService=e,this.feedService=t,this.featuresService=n,this.faviconService=i,this.collapses=new Map,this.popularityItems=new Array,this.allItems=new Array,this.tags=new Array,this.collapses.set(\"__popularity\",!0),this.collapses.set(\"__all\",!0)}ngOnInit(){this.featuresService.getFeatures().pipe(dD(this.feedService.getFeeds(),this.tagService.getTagsFeedIDs(),(e,t,n)=>{let i;return i=[e,t,n],i})).subscribe(e=>{this.popularity=e[0].popularity;let t=e[1].sort((e,t)=>e.title.localeCompare(t.title)),n=e[2].sort((e,t)=>e.tag.value.localeCompare(t.tag.value));if(this.popularity&&(this.popularityItems=n.map(e=>new xY(-1*e.tag.id,\"/popular/tag/\"+e.tag.id,e.tag.value)),this.popularityItems.concat(t.map(e=>new xY(e.id,\"/popular/feed/\"+e.id,e.title,e.link)))),this.allItems=t.map(e=>new xY(e.id,\"/feed/\"+e.id,e.title,e.link)),n.length>0){let e=new Map;t.forEach(t=>{e.set(t.id,t)}),this.tags=n.map(t=>new LY(t.tag.id,\"/tag/\"+t.tag.id,t.tag.value,t.ids.map(t=>new xY(t,`${t}`,e.get(t).title,e.get(t).link)))),this.tags.forEach(e=>this.collapses.set(e.id,!1))}},e=>console.log(e))}favicon(e){return this.faviconService.iconURL(e)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(YD),Eo(DD),Eo(XD),Eo(uY))},e.\\u0275cmp=yt({type:e,selectors:[[\"side-bar\"]],decls:22,vars:5,consts:[[\"color\",\"primary\"],[1,\"content\"],[\"mat-button\",\"\",\"routerLink\",\"/feed/favorite\"],[\"class\",\"group\",4,\"ngIf\"],[1,\"group\"],[1,\"category\"],[\"mat-button\",\"\",1,\"expander\",3,\"click\"],[\"mat-button\",\"\",\"routerLink\",\"/feed\"],[1,\"items\",3,\"ngbCollapse\"],[\"mat-button\",\"\",3,\"routerLink\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"group\",4,\"ngFor\",\"ngForOf\"],[\"mat-button\",\"\",\"routerLink\",\"/settings\"],[\"mat-button\",\"\",\"routerLink\",\"/login\"],[\"mat-button\",\"\",\"routerLink\",\"/feed/popular\"],[\"mat-button\",\"\",3,\"routerLink\"],[1,\"favicon\",3,\"src\"]],template:function(e,t){1&e&&(Ro(0,\"mat-toolbar\",0),tc(1,hY),Ho(),Ro(2,\"div\",1),Ro(3,\"a\",2),tc(4,mY),Ho(),Do(5,vY,10,4,\"div\",3),jo(6,\"hr\"),Ro(7,\"div\",4),Ro(8,\"div\",5),Ro(9,\"button\",6),Uo(\"click\",(function(){return t.collapses.__all=!t.collapses.__all})),Ro(10,\"mat-icon\"),Sa(11),Ho(),Ho(),Ro(12,\"a\",7),tc(13,pY),Ho(),Ho(),Ro(14,\"div\",8),Do(15,wY,3,3,\"a\",9),Ho(),Ho(),Do(16,kY,9,5,\"div\",10),jo(17,\"hr\"),Ro(18,\"a\",11),tc(19,fY),Ho(),Ro(20,\"a\",12),tc(21,_Y),Ho(),Ho()),2&e&&(ys(5),Po(\"ngIf\",t.popularity),ys(6),La(t.collapses.__all?\"expand_less\":\"expand_more\"),ys(3),Po(\"ngbCollapse\",!t.collapses.__all),ys(1),Po(\"ngForOf\",t.allItems),ys(1),Po(\"ngForOf\",t.tags))},directives:[dS,Jy,cT,mu,Gy,Cw,VS,uu],styles:[\".content[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{margin-bottom:4px}.content[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex;font-size:16px}.items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:13px}.category[_ngcontent-%COMP%], .items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex}.category[_ngcontent-%COMP%] > .expander[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;min-width:24px;flex-shrink:1}.category[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{flex-grow:1;text-align:start}.category[_ngcontent-%COMP%] > .items[_ngcontent-%COMP%]{flex:0 1 100%}.content[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{margin:0}.favicon[_ngcontent-%COMP%]{padding-right:4px}\"]}),e})();class LY{constructor(e,t,n,i){this.id=e,this.link=t,this.title=n,this.items=i}}class xY{constructor(e,t,n,i){this.id=e,this.link=t,this.title=n,this.url=i}}class CY{constructor(e){this.delayDurationSelector=e}call(e,t){return t.subscribe(new TY(e,this.delayDurationSelector))}}class TY extends R{constructor(e,t){super(e),this.delayDurationSelector=t,this.completed=!1,this.delayNotifierSubscriptions=[],this.index=0}notifyNext(e,t,n,i,s){this.destination.next(e),this.removeSubscription(s),this.tryComplete()}notifyError(e,t){this._error(e)}notifyComplete(e){const t=this.removeSubscription(e);t&&this.destination.next(t),this.tryComplete()}_next(e){const t=this.index++;try{const n=this.delayDurationSelector(e,t);n&&this.tryDelay(n,e)}catch(n){this.destination.error(n)}}_complete(){this.completed=!0,this.tryComplete(),this.unsubscribe()}removeSubscription(e){e.unsubscribe();const t=this.delayNotifierSubscriptions.indexOf(e);return-1!==t&&this.delayNotifierSubscriptions.splice(t,1),e.outerValue}tryDelay(e,t){const n=A(this,e,t);n&&!n.closed&&(this.destination.add(n),this.delayNotifierSubscriptions.push(n))}tryComplete(){this.completed&&0===this.delayNotifierSubscriptions.length&&this.destination.complete()}}const DY=[\"search\"];function YY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){return en(e),Jo().up()})),Ro(1,\"mat-icon\"),Sa(2,\"keyboard_backspace\"),Ho(),Ho()}}var EY,OY;function IY(e,t){1&e&&(Ro(0,\"span\"),tc(1,EY),Ho())}function PY(e,t){1&e&&jo(0,\"span\",12)}function AY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){en(e),Jo();const t=Yo(3);return Jo().searchQuery=\"\",t.focus()})),Ro(1,\"mat-icon\"),Sa(2,\"clear\"),Ho(),Ho()}}function RY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){en(e);const t=Jo(2);return t.performSearch(t.searchQuery)})),Ro(1,\"mat-icon\"),Sa(2,\"keyboard_return\"),Ho(),Ho()}}function HY(e,t){if(1&e){const e=zo();Ro(0,\"div\",13),Do(1,AY,3,0,\"button\",0),Ro(2,\"input\",14,15),Uo(\"ngModelChange\",(function(t){return en(e),Jo().searchQuery=t})),Ho(),Do(4,RY,3,0,\"button\",0),Ho()}if(2&e){const e=Jo();ys(1),Po(\"ngIf\",e.searchQuery),ys(1),Po(\"ngModel\",e.searchQuery),ys(2),Po(\"ngIf\",e.searchQuery)}}function jY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){en(e);const t=Jo();return t.searchEntry=!t.searchEntry})),Ro(1,\"mat-icon\"),Sa(2,\"search\"),Ho(),Ho()}}function FY(e,t){if(1&e){const e=zo();Ro(0,\"button\",11),Uo(\"click\",(function(){return en(e),Jo().refresh()})),Ro(1,\"mat-icon\"),Sa(2,\"refresh\"),Ho(),Ho()}}function NY(e,t){if(1&e){const e=zo();Ro(0,\"mat-checkbox\",16),Uo(\"ngModelChange\",(function(t){return en(e),Jo().articleRead=t}))(\"click\",(function(){return en(e),Jo().toggleRead()})),tc(1,OY),Ho()}2&e&&Po(\"ngModel\",Jo().articleRead)}function zY(e,t){1&e&&(Ro(0,\"button\",17),Ro(1,\"mat-icon\"),Sa(2,\"share\"),Ho(),Ho()),2&e&&(Jo(),Po(\"matMenuTriggerFor\",Yo(9)))}function VY(e,t){if(1&e){const e=zo();Ro(0,\"button\",10),Uo(\"click\",(function(){en(e);const n=t.$implicit;return Jo().shareArticleTo(n)})),Sa(1),Ho()}if(2&e){const e=t.$implicit;ys(1),xa(\" \",e.description,\" \")}}function WY(e,t){1&e&&(Ro(0,\"button\",17),Ro(1,\"mat-icon\"),Sa(2,\"more_vert\"),Ho(),Ho()),2&e&&(Jo(),Po(\"matMenuTriggerFor\",Yo(13)))}function UY(e,t){if(1&e){const e=zo();Ro(0,\"button\",10),Uo(\"click\",(function(){return en(e),Jo().toggleOlderFirst()})),Ro(1,\"span\"),Sa(2,\"Older first\"),Ho(),Ho()}}function $Y(e,t){if(1&e){const e=zo();Ro(0,\"button\",10),Uo(\"click\",(function(){return en(e),Jo().toggleOlderFirst()})),Ro(1,\"span\"),Sa(2,\"Newer first\"),Ho(),Ho()}}function BY(e,t){if(1&e){const e=zo();Ro(0,\"button\",10),Uo(\"click\",(function(){return en(e),Jo().markAsRead()})),Ro(1,\"span\"),Sa(2,\"Mark all as read\"),Ho(),Ho()}}EY=$localize`:␟3b6143a528c6f4586e60e9af4ced8ac0fbe08251␟5539833462297888878:Articles`,OY=$localize`:␟9b1d5e95f6bdcfb4b737413f5fa157e0dcb103d5␟2327592562693301723:Read`;let qY=(()=>{class e{constructor(t,n,i,s,r,o){this.articleService=t,this.featuresServices=n,this.preferences=i,this.router=s,this.location=r,this.sharingService=o,this.olderFirst=!1,this.showsArticle=!1,this.articleRead=!1,this.searchButton=!1,this.markAllRead=!1,this.inSearch=!1,this.enabledShares=!1,this.shareServices=new Array,this._searchQuery=\"\",this._searchEntry=!1,this.subscriptions=new Array,this.searchQuery=localStorage.getItem(e.key)||\"\"}get searchEntry(){return this._searchEntry}set searchEntry(e){this._searchEntry=e,e&&setTimeout(()=>{this.searchInput.nativeElement.focus()},10)}get searchQuery(){return this._searchQuery}set searchQuery(t){this._searchQuery=t,localStorage.setItem(e.key,t)}ngOnInit(){let e=lD(this.router);this.subscriptions.push(e.pipe(H(e=>null!=e)).subscribe(e=>this.showsArticle=e)),this.articleID=e.pipe(H(e=>null==e?-1:+e.params.articleID),Eb(),nv(1)),this.subscriptions.push(this.articleID.pipe(Wb(e=>{if(-1==e)return xu(!1);let t=!0;return this.articleService.articleObservable().pipe(H(t=>{for(let n of t)if(n.id==e)return n.read;return!1}),(n=e=>e&&!t?Hb(1e3):(t=!1,Hb(0)),e=>e.lift(new CY(n))));var n})).subscribe(e=>this.articleRead=e,e=>console.log(e))),this.subscriptions.push(oD(this.router).pipe(H(e=>null!=e&&\"search\"==e.data.primary)).subscribe(e=>this.inSearch=e,e=>console.log(e))),this.subscriptions.push(this.featuresServices.getFeatures().pipe(Tu(e=>e.search),Wb(t=>e.pipe(H(e=>null==e),Eb(),dD(oD(this.router),(e,t)=>{let n=!1,i=!1,s=!1;if(e)switch(aD([this.router.routerState.snapshot.root]).data.primary){case\"favorite\":s=!0;case\"popular\":break;case\"search\":i=!0;default:n=!0,s=!0}return[n,i,s]})))).subscribe(e=>{this.searchButton=e[0],this.searchEntry=e[1],this.markAllRead=e[2]},e=>console.log(e))),this.subscriptions.push(this.sharingService.enabledServices().subscribe(e=>{this.enabledShares=e.length>0,this.shareServices=e},e=>console.log(e)))}ngOnDestroy(){this.subscriptions.forEach(e=>e.unsubscribe())}toggleOlderFirst(){this.preferences.olderFirst=!this.preferences.olderFirst,this.olderFirst=this.preferences.olderFirst}toggleUnreadOnly(){this.preferences.unreadOnly=!this.preferences.unreadOnly}markAsRead(){this.articleService.readAll()}up(){let e=this.location.path(),t=e.indexOf(\"/article/\");-1!=t?this.router.navigateByUrl(e.substring(0,t)):this.inSearch&&this.router.navigateByUrl(e.substring(0,e.indexOf(\"/search/\")))}toggleRead(){this.articleID.pipe(cp(1),Wb(e=>(-1==e&&lp(),this.articleService.articleObservable().pipe(H(t=>{for(let n of t)if(n.id==e)return n;return null}),cp(1)))),V(e=>this.articleService.read(e.id,!e.read))).subscribe(e=>{},e=>console.log(e))}keyEnter(){this.searchEntry&&this.searchQuery&&this.performSearch(this.searchQuery)}performSearch(e){if(\"search\"==aD([this.router.routerState.snapshot.root]).data.primary){let t=this.location.path().indexOf(\"/search/\")+8;this.router.navigateByUrl(this.location.path().substring(0,t)+encodeURIComponent(e))}else this.router.navigateByUrl(this.location.path()+\"/search/\"+encodeURIComponent(e))}refresh(){this.articleService.refreshArticles()}shareArticleTo(e){this.articleID.pipe(cp(1),Tu(e=>-1!=e),Wb(e=>this.articleService.articleObservable().pipe(H(t=>t.filter(t=>t.id==e)),Tu(e=>e.length>0),H(e=>e[0]))),cp(1)).subscribe(t=>this.sharingService.submit(e.id,t))}}return e.key=\"searchQuery\",e.\\u0275fac=function(t){return new(t||e)(Eo(zD),Eo(XD),Eo(OD),Eo(lT),Eo(tu),Eo(uD))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],viewQuery:function(e,t){var n;1&e&&Ec(DY,!0),2&e&&Dc(n=Rc())&&(t.searchInput=n.first)},hostBindings:function(e,t){1&e&&Uo(\"keydown.enter\",(function(){return t.keyEnter()}))},decls:20,vars:13,consts:[[\"mat-icon-button\",\"\",3,\"click\",4,\"ngIf\"],[4,\"ngIf\"],[\"class\",\"spacer\",4,\"ngIf\"],[\"class\",\"input-group\",4,\"ngIf\"],[3,\"ngModel\",\"ngModelChange\",\"click\",4,\"ngIf\"],[\"mat-icon-button\",\"\",3,\"matMenuTriggerFor\",4,\"ngIf\"],[\"shares\",\"matMenu\"],[\"mat-menu-item\",\"\",3,\"click\",4,\"ngFor\",\"ngForOf\"],[\"other\",\"matMenu\"],[\"mat-menu-item\",\"\",3,\"click\",4,\"ngIf\"],[\"mat-menu-item\",\"\",3,\"click\"],[\"mat-icon-button\",\"\",3,\"click\"],[1,\"spacer\"],[1,\"input-group\"],[\"matInput\",\"\",\"focused\",\"\",1,\"spacer\",\"search\",\"mat-toolbar\",\"mat-primary\",\"form-control\",3,\"ngModel\",\"ngModelChange\"],[\"search\",\"\"],[3,\"ngModel\",\"ngModelChange\",\"click\"],[\"mat-icon-button\",\"\",3,\"matMenuTriggerFor\"]],template:function(e,t){1&e&&(Do(0,YY,3,0,\"button\",0),Do(1,IY,2,0,\"span\",1),Do(2,PY,1,0,\"span\",2),Do(3,HY,5,3,\"div\",3),Do(4,jY,3,0,\"button\",0),Do(5,FY,3,0,\"button\",0),Do(6,NY,2,1,\"mat-checkbox\",4),Do(7,zY,3,1,\"button\",5),Ro(8,\"mat-menu\",null,6),Do(10,VY,2,1,\"button\",7),Ho(),Do(11,WY,3,1,\"button\",5),Ro(12,\"mat-menu\",null,8),Do(14,UY,3,0,\"button\",9),Do(15,$Y,3,0,\"button\",9),Ro(16,\"button\",10),Uo(\"click\",(function(){return t.toggleUnreadOnly()})),Ro(17,\"span\"),Sa(18,\"Unread only\"),Ho(),Ho(),Do(19,BY,3,0,\"button\",9),Ho()),2&e&&(Po(\"ngIf\",t.showsArticle||t.inSearch),ys(1),Po(\"ngIf\",!t.searchEntry),ys(1),Po(\"ngIf\",!t.searchEntry),ys(1),Po(\"ngIf\",t.searchEntry),ys(1),Po(\"ngIf\",t.searchButton),ys(1),Po(\"ngIf\",!t.showsArticle),ys(1),Po(\"ngIf\",t.showsArticle),ys(1),Po(\"ngIf\",t.showsArticle&&t.enabledShares),ys(3),Po(\"ngForOf\",t.shareServices),ys(1),Po(\"ngIf\",!t.showsArticle),ys(3),Po(\"ngIf\",!t.olderFirst),ys(1),Po(\"ngIf\",t.olderFirst),ys(4),Po(\"ngIf\",!t.inSearch&&t.markAllRead))},directives:[mu,HM,uu,EM,Gy,Cw,gM,_h,kh,Cm,bb,zM],styles:[\"[_nghost-%COMP%]{display:flex;align-items:center}.spacer[_ngcontent-%COMP%], [_nghost-%COMP%]{flex:1 1 auto}.search[_ngcontent-%COMP%]{min-height:0;border:none;background:transparent} label{margin-bottom:0}\"]}),e})(),GY=(()=>{class e{ngOnInit(){}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-container\"]],decls:2,vars:0,consts:[[1,\"container\"]],template:function(e,t){1&e&&(Ro(0,\"div\",0),jo(1,\"router-outlet\"),Ho())},directives:[mT],styles:[\"[_nghost-%COMP%]{overflow:auto}\"]}),e})(),JY=(()=>{class e{constructor(e){this.api=e,this.user=this.api.get(\"user/current\").pipe(H(e=>e.user),nv(1))}getCurrentUser(){return this.user}changeUserPassword(e,t){return this.setUserSetting(\"password\",e,{current:t})}setUserSetting(e,t,n){var i=`value=${encodeURIComponent(t)}`;if(n)for(let s in n)i+=`&${s}=${encodeURIComponent(n[s])}`;return this.api.put(`user/settings/${e}`,i,new Iu({\"Content-Type\":\"application/x-www-form-urlencoded\"})).pipe(H(e=>e.success))}list(){return this.api.get(\"user\").pipe(H(e=>e.users))}addUser(e,t){var n=new FormData;return n.append(\"login\",e),n.append(\"password\",t),this.api.post(\"user\",n).pipe(H(e=>e.success))}deleteUser(e){return this.api.delete(`user/${e}`).pipe(H(e=>e.success))}toggleActive(e,t){return this.api.put(`user/${e}/settings/is-active`,`value=${t}`,new Iu({\"Content-Type\":\"application/x-www-form-urlencoded\"})).pipe(H(e=>e.success))}}return e.\\u0275fac=function(t){return new(t||e)(Qe(BT))},e.\\u0275prov=pe({token:e,factory:e.\\u0275fac,providedIn:\"root\"}),e})();var KY;KY=$localize`:␟2034c9a8ec1a387f9614599aed924afedba51287␟3044746121698042511:Personalize your feed reader`;const ZY=[\"placeholder\",$localize`:␟62b6c66981335ca6eecc36b331103c60f09d1026␟5342432350421167093:First name`],QY=[\"placeholder\",$localize`:␟6ce3dadf53dda1a1ab0c3167a8ed8dced471b0dc␟3586674587150281199:Last name`],XY=[\"placeholder\",$localize`:␟244aae9346da82b0922506c2d2581373a15641cc␟4768749765465246664:Email`],eE=[\"placeholder\",$localize`:␟fe46ccaae902ce974e2441abe752399288298619␟2826581353496868063:Language`];var tE,nE,iE;function sE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,nE),Ho())}tE=$localize`:␟739516c2ca75843d5aec9cf0e6b3e4335c4227b9␟6309828574111583895:Change password`,nE=$localize`:␟782e37fb591e59a26363f1558db22cd373660ca9␟5224830667201919132: Please enter a valid email address `,iE=$localize`:␟6d6539a26b432fb1906f9fda102cf3ac332c8b8a␟1375188762769896369:Change your password`;const rE=[\"placeholder\",$localize`:␟e70e209561583f360b1e9cefd2cbb1fe434b6229␟3588415639242079458:New password`],oE=[\"placeholder\",$localize`:␟ede41f01c781b168a783cfcefc6fb67d48780d9b␟8656126574213649581:Confirm new password`];var aE,lE,cE;function dE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,lE),Ho())}function uE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,cE),Ho())}aE=$localize`:␟52c9a103b812f258bcddc3d90a6e3f46871d25fe␟3768927257183755959:Save`,lE=$localize`:␟d4ee9c4a4fe08d273b716bf0a399570466bbd87c␟5382495681765079471: Invalid password `,cE=$localize`:␟71980fe48d948363935aab88e2077c7c76de93bd␟4018700129027778932: Passwords do not match `;let hE=(()=>{class e{constructor(e,t){this.userService=e,this.dialog=t,this.emailFormControl=new pm(\"\",[Dh.email]),this.language=localStorage.getItem(\"locale\")||\"en\"}ngOnInit(){this.userService.getCurrentUser().subscribe(e=>{this.firstName=e.firstName,this.lastName=e.lastName,this.emailFormControl.setValue(e.email)},e=>console.log(e))}firstNameChange(){this.userService.setUserSetting(\"first-name\",this.firstName).subscribe(()=>{},e=>console.log(e))}lastNameChange(){this.userService.setUserSetting(\"last-name\",this.lastName).subscribe(()=>{},e=>console.log(e))}emailChange(){this.emailFormControl.updateValueAndValidity(),this.emailFormControl.valid&&this.userService.setUserSetting(\"email\",this.emailFormControl.value).subscribe(e=>{e||this.emailFormControl.setErrors({email:!0})},e=>console.log(e))}languageChange(e){location.href=\"/\"+e+\"/\"}changePassword(){this.dialog.open(mE,{width:\"250px\"})}}return e.\\u0275fac=function(t){return new(t||e)(Eo(JY),Eo(rw))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-general\"]],decls:26,vars:7,consts:[[1,\"title\"],[\"matInput\",\"\",3,\"ngModel\",\"ngModelChange\",\"change\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"email\",3,\"formControl\",\"change\",6,\"placeholder\"],[4,\"ngIf\"],[3,\"ngModel\",\"change\",\"ngModelChange\",6,\"placeholder\"],[3,\"value\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,KY),Ho(),Ro(2,\"mat-form-field\"),Ro(3,\"input\",1),nc(4,ZY),Uo(\"ngModelChange\",(function(e){return t.firstName=e}))(\"change\",(function(){return t.firstNameChange()})),Ho(),Ho(),jo(5,\"br\"),Ro(6,\"mat-form-field\"),Ro(7,\"input\",1),nc(8,QY),Uo(\"ngModelChange\",(function(e){return t.lastName=e}))(\"change\",(function(){return t.lastNameChange()})),Ho(),Ho(),jo(9,\"br\"),Ro(10,\"mat-form-field\"),Ro(11,\"input\",2),nc(12,XY),Uo(\"change\",(function(){return t.emailChange()})),Ho(),Do(13,sE,2,0,\"mat-error\",3),Ho(),jo(14,\"br\"),Ro(15,\"mat-form-field\"),Ro(16,\"mat-select\",4),nc(17,eE),Uo(\"change\",(function(e){return t.languageChange(e.value)}))(\"ngModelChange\",(function(e){return t.language=e})),Ro(18,\"mat-option\",5),Sa(19,\"English\"),Ho(),Ro(20,\"mat-option\",5),Sa(21,\"\\u0411\\u044a\\u043b\\u0433\\u0430\\u0440\\u0441\\u043a\\u0438\"),Ho(),Ho(),Ho(),jo(22,\"br\"),Ro(23,\"div\",6),Ro(24,\"button\",7),Uo(\"click\",(function(){return t.changePassword()})),tc(25,tE),Ho(),Ho()),2&e&&(ys(3),Po(\"ngModel\",t.firstName),ys(4),Po(\"ngModel\",t.lastName),ys(4),Po(\"formControl\",t.emailFormControl),ys(2),Po(\"ngIf\",t.emailFormControl.hasError(\"email\")),ys(3),Po(\"ngModel\",t.language),ys(2),Po(\"value\",\"en\"),ys(2),Po(\"value\",\"bg\"))},directives:[dM,gM,_h,kh,Cm,Em,mu,_k,Fy,Gy,Kw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),e})(),mE=(()=>{class e{constructor(e,t){this.dialogRef=e,this.userService=t,this.currentFormControl=new pm(\"\",[Dh.required]),this.passwordFormControl=new pm(\"\",[Dh.required])}save(){this.passwordFormControl.value==this.passwordConfirm?(this.currentFormControl.updateValueAndValidity(),this.currentFormControl.valid&&this.userService.changeUserPassword(this.passwordFormControl.value,this.currentFormControl.value).subscribe(e=>{e?this.close():this.currentFormControl.setErrors({auth:!0})},e=>{400!=e.status?console.log(e):this.currentFormControl.setErrors({auth:!0})})):this.passwordFormControl.setErrors({mismatch:!0})}close(){this.dialogRef.close()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ew),Eo(JY))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:18,vars:5,consts:[[1,\"title\"],[\"matInput\",\"\",\"type\",\"password\",\"placeholder\",\"Current password\",\"required\",\"\",3,\"formControl\"],[4,\"ngIf\"],[\"matInput\",\"\",\"type\",\"password\",\"required\",\"\",3,\"formControl\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"password\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h6\",0),tc(1,iE),Ho(),Ro(2,\"mat-form-field\"),jo(3,\"input\",1),Do(4,dE,2,0,\"mat-error\",2),Ho(),jo(5,\"br\"),Ro(6,\"mat-form-field\"),Ro(7,\"input\",3),nc(8,rE),Ho(),Do(9,uE,2,0,\"mat-error\",2),Ho(),jo(10,\"br\"),Ro(11,\"mat-form-field\"),Ro(12,\"input\",4),nc(13,oE),Uo(\"ngModelChange\",(function(e){return t.passwordConfirm=e})),Ho(),Ho(),jo(14,\"br\"),Ro(15,\"div\",5),Ro(16,\"button\",6),Uo(\"click\",(function(){return t.save()})),tc(17,aE),Ho(),Ho()),2&e&&(ys(3),Po(\"formControl\",t.currentFormControl),ys(1),Po(\"ngIf\",t.currentFormControl.hasError(\"auth\")),ys(3),Po(\"formControl\",t.passwordFormControl),ys(2),Po(\"ngIf\",t.passwordFormControl.hasError(\"mismatch\")),ys(3),Po(\"ngModel\",t.passwordConfirm))},directives:[dM,gM,_h,Vm,kh,Em,mu,Cm,Gy,Kw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),e})();const pE=[\"opmlInput\"];var fE,_E;fE=$localize`:␟2fa6619f44220045d57d900966a51c211caad6fc␟8307427112695611410:Discover/import feeds`,_E=$localize`:␟79bf2166191aab07aa1524f2d1350fab472c468a␟1179108510865870171: You can enter the url of a feed directly, as well as a url of a site that may contain one or more feeds, or a search query. `;const gE=[\"placeholder\",$localize`:␟c09f5d00683d3ea7a0bac506894a81c47075628f␟7800294050526433264:URL/query`];var yE;yE=$localize`:␟0e6f6d047ad0445f95577c3886f5cb462ecfd614␟4419855417700414171: Alternatively, upload an OPML file. `;const bE=[\"placeholder\",$localize`:␟62eb4be126bc452812fe66b9675417704c09123a␟2641672822784307275:OPML import`];var vE,wE,ME,kE,SE,LE,xE,CE,TE,DE;function YE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,wE),Ho())}function EE(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,ME),Ho())}function OE(e,t){1&e&&jo(0,\"mat-progress-bar\",7)}function IE(e,t){if(1&e){const e=zo();Ro(0,\"div\"),Ro(1,\"p\"),tc(2,_E),Ho(),Ro(3,\"mat-form-field\"),Ro(4,\"input\",2),nc(5,gE),Uo(\"ngModelChange\",(function(t){return en(e),Jo().query=t}))(\"keydown.Enter\",(function(){return en(e),Jo().search()})),Ho(),Do(6,YE,2,0,\"mat-error\",1),Do(7,EE,2,0,\"mat-error\",1),Ho(),jo(8,\"br\"),Ro(9,\"p\"),tc(10,yE),Ho(),Ro(11,\"input\",3,4),nc(13,bE),Uo(\"keydown.Enter\",(function(){return en(e),Jo().search()})),Ho(),jo(14,\"br\"),Ro(15,\"button\",5),Uo(\"click\",(function(){return en(e),Jo().search()})),tc(16,vE),Ho(),jo(17,\"br\"),Do(18,OE,1,0,\"mat-progress-bar\",6),Ho()}if(2&e){const e=Jo();ys(4),Po(\"ngModel\",e.query),ys(2),Po(\"ngIf\",e.queryFormControl.hasError(\"empty\")),ys(1),Po(\"ngIf\",e.queryFormControl.hasError(\"search\")),ys(8),Po(\"disabled\",e.loading),ys(3),Po(\"ngIf\",e.loading)}}function PE(e,t){1&e&&(Ro(0,\"p\"),tc(1,kE),Ho())}function AE(e,t){if(1&e&&(Ro(0,\"div\"),Ro(1,\"mat-checkbox\"),Sa(2),Ho(),jo(3,\"br\"),Ro(4,\"a\",11),Sa(5),Ho(),jo(6,\"hr\"),Ho()),2&e){const e=t.$implicit,n=Jo(2);ys(2),La(e.title),ys(2),ta(\"href\",n.baseURL(e.link),es),ys(1),La(e.description||e.title)}}function RE(e,t){1&e&&(Ro(0,\"p\"),Sa(1,\" No feeds selected \"),Ho())}function HE(e,t){if(1&e){const e=zo();Ro(0,\"button\",5),Uo(\"click\",(function(){return en(e),Jo(2).add()})),tc(1,SE),Ho()}2&e&&Po(\"disabled\",Jo(2).loading)}function jE(e,t){if(1&e){const e=zo();Ro(0,\"button\",12),Uo(\"click\",(function(){return en(e),Jo(2).phase=\"query\"})),tc(1,LE),Ho()}}function FE(e,t){if(1&e&&(Ro(0,\"div\"),Do(1,PE,2,0,\"p\",1),Do(2,AE,7,3,\"div\",8),Do(3,RE,2,0,\"p\",1),Do(4,HE,2,1,\"button\",9),Do(5,jE,2,0,\"button\",10),Ho()),2&e){const e=Jo();ys(1),Po(\"ngIf\",0==e.feeds.length),ys(1),Po(\"ngForOf\",e.feeds),ys(1),Po(\"ngIf\",e.emptySelection),ys(1),Po(\"ngIf\",e.feeds.length>0),ys(1),Po(\"ngIf\",0==e.feeds.length)}}function NE(e,t){1&e&&(Ro(0,\"p\"),tc(1,CE),Ho())}function zE(e,t){1&e&&(Ro(0,\"p\"),tc(1,TE),Ho())}function VE(e,t){if(1&e&&(Ro(0,\"div\"),Ro(1,\"p\"),tc(2,DE),Ho(),Ho()),2&e){const e=t.$implicit;ys(2),rc(e.title)(e.error),oc(2)}}function WE(e,t){if(1&e){const e=zo();Ro(0,\"div\"),Do(1,NE,2,0,\"p\",1),Do(2,zE,2,0,\"p\",1),Do(3,VE,3,2,\"div\",8),Ro(4,\"button\",12),Uo(\"click\",(function(){return en(e),Jo().phase=\"query\"})),tc(5,xE),Ho(),Ho()}if(2&e){const e=Jo();ys(1),Po(\"ngIf\",!e.addFeedResult.success),ys(1),Po(\"ngIf\",e.addFeedResult.success),ys(1),Po(\"ngForOf\",e.addFeedResult.errors)}}vE=$localize`:␟7e892ba15f2c6c17e83510e273b3e10fc32ea016␟4580988005648117665:Search`,wE=$localize`:␟bd2cda3ba20b1a481578e587ff255c5dd69226bb␟107334190959015127: No query or opml file specified `,ME=$localize`:␟8350af72cf77a2936cd54ac59cc1ab9adec34f74␟5089003889507327516: Error during search `,kE=$localize`:␟d95b1d4402bbe08c4ab7c089005abb260bf0fb62␟4956883923261490175: No new feeds found `,SE=$localize`:␟f6755cff4957d5c3c89bafce5651f1b6fa2b1fd9␟3249513483374643425:Add`,LE=$localize`:␟9d9bc3eecf1610ec05a5c2b63bb7c1324529cba5␟5997521680245778675:Discover more feeds`,xE=$localize`:␟9d9bc3eecf1610ec05a5c2b63bb7c1324529cba5␟5997521680245778675:Discover more feeds`,CE=$localize`:␟f1910eaad1af7b9e7635f930ddc55586f157e3bd␟5085881954406181280: No feeds added. `,TE=$localize`:␟ccd3b9334639513fbd609704f4ec8536a15aeb97␟4228842406796887022: Feeds were added successfully. `,DE=$localize`:␟51a0b2a443f1b6b1ceab1a868605d7b0f2065e28␟562151600459726773: Error adding feed ${\"\\ufffd0\\ufffd\"}:INTERPOLATION:: ${\"\\ufffd1\\ufffd\"}:INTERPOLATION_1: `;let UE=(()=>{class e{constructor(e){this.feedService=e,this.query=\"\",this.phase=\"query\",this.loading=!1,this.feeds=new Array,this.emptySelection=!1,this.queryFormControl=new pm(\"\")}search(){if(this.loading)return;if(\"\"==this.query&&!this.opml.nativeElement.files.length)return void this.queryFormControl.setErrors({empty:!0});let e;if(this.loading=!0,this.opml.nativeElement.files.length){let t=this.opml.nativeElement.files[0];e=v.create(e=>{let n=new FileReader;n.onload=function(t){e.next({opml:t.target.result,dryRun:!0}),e.complete()},n.onerror=function(t){e.error(t)},n.readAsText(t)}).pipe(V(e=>this.feedService.importOPML(e)))}else e=this.feedService.discover(this.query);e.subscribe(e=>{this.loading=!1,this.phase=\"search-result\",this.feeds=e},e=>{this.loading=!1,this.queryFormControl.setErrors({search:!0}),console.log(e)})}add(){if(this.loading)return;let e=new Array;this.feedChecks.forEach((t,n)=>{t.checked&&e.push(this.feeds[n].link)}),0!=e.length?(this.loading=!0,this.feedService.addFeeds(e).subscribe(e=>{this.loading=!1,this.addFeedResult=e,this.phase=\"add-result\"},e=>{this.loading=!1,console.log(e)})):this.emptySelection=!0}baseURL(e){let t=document.createElement(\"a\");return t.href=e,t.pathname=\"\",t.href}}return e.\\u0275fac=function(t){return new(t||e)(Eo(DD))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-discovery\"]],viewQuery:function(e,t){var n;1&e&&(Ec(pE,!0),Ec(bb,!0)),2&e&&(Dc(n=Rc())&&(t.opml=n.first),Dc(n=Rc())&&(t.feedChecks=n))},decls:5,vars:3,consts:[[1,\"title\"],[4,\"ngIf\"],[\"matInput\",\"\",3,\"ngModel\",\"ngModelChange\",\"keydown.Enter\",6,\"placeholder\"],[\"type\",\"file\",\"accept\",\".opml\",3,\"keydown.Enter\",6,\"placeholder\"],[\"opmlInput\",\"\"],[\"mat-raised-button\",\"\",3,\"disabled\",\"click\"],[\"mode\",\"indeterminate\",4,\"ngIf\"],[\"mode\",\"indeterminate\"],[4,\"ngFor\",\"ngForOf\"],[\"mat-raised-button\",\"\",3,\"disabled\",\"click\",4,\"ngIf\"],[\"mat-raised-button\",\"\",3,\"click\",4,\"ngIf\"],[1,\"discovery-link\",3,\"href\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,fE),Ho(),Do(2,IE,19,5,\"div\",1),Do(3,FE,6,5,\"div\",1),Do(4,WE,6,3,\"div\",1)),2&e&&(ys(2),Po(\"ngIf\",\"query\"==t.phase),ys(1),Po(\"ngIf\",\"search-result\"==t.phase),ys(1),Po(\"ngIf\",\"add-result\"==t.phase))},directives:[mu,dM,gM,_h,kh,Cm,Gy,Kw,JM,uu,bb],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}input[type=file][_ngcontent-%COMP%]{width:100%;border-bottom:1px solid grey;padding-bottom:4px;margin-bottom:1em}mat-progress-bar[_ngcontent-%COMP%]{margin-top:1em}.discovery-link[_ngcontent-%COMP%]{display:block;text-align:end}\"]}),e})();const $E=[\"downloader\"];var BE,qE;function GE(e,t){1&e&&(Ro(0,\"p\",7),Sa(1,\" No feeds have been added\\n\"),Ho())}BE=$localize`:␟446bc7942ed7cd24d6b84079bb82bd7f1d4d280b␟8187273895031232465:Manage Feeds`,qE=$localize`:␟cf59c3b27a0d7b925f32cd1c1e2785a1bf73f829␟5929451610563023881:Export OPML`;const JE=[\"placeholder\",$localize`:␟9f12050a433d9709f2231916ecfb33c4f2ed1c01␟4975748273657042999:tags`];function KE(e,t){if(1&e){const e=zo();Ro(0,\"div\",8),jo(1,\"img\",9),Ro(2,\"a\",10),Sa(3),Ho(),Ro(4,\"button\",11),Uo(\"click\",(function(){en(e);const n=t.$implicit;return Jo().showError(n[0].updateError)})),Ro(5,\"mat-icon\"),Sa(6,\"warning\"),Ho(),Ho(),Ro(7,\"mat-form-field\",12),Ro(8,\"input\",13),nc(9,JE),Uo(\"change\",(function(n){en(e);const i=t.$implicit;return Jo().tagsChange(n,i[0].id)})),Ho(),Ho(),Ro(10,\"button\",14),Uo(\"click\",(function(n){en(e);const i=t.$implicit;return Jo().deleteFeed(n,i[0].id)})),Ro(11,\"mat-icon\"),Sa(12,\"delete\"),Ho(),Ho(),Ho()}if(2&e){const e=t.$implicit,n=Jo();ys(1),ta(\"src\",n.favicon(e[0].link),es),ys(1),ta(\"href\",e[0].link,es),ys(1),La(e[0].title),ys(1),ua(\"visible\",e[0].updateError),ys(4),ta(\"value\",e[1].join(\", \"))}}var ZE;function QE(e,t){if(1&e&&(Ro(0,\"li\"),Sa(1),Ho()),2&e){const e=t.$implicit;ys(1),La(e)}}ZE=$localize`:␟f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8␟7819314041543176992:Close`;let XE=(()=>{class e{constructor(e,t,n,i){this.feedService=e,this.tagService=t,this.faviconService=n,this.errorDialog=i,this.feeds=new Array}ngOnInit(){this.feedService.getFeeds().pipe(dD(this.tagService.getTagsFeedIDs(),(e,t)=>{let n=new Map;for(let i of t)for(let e of i.ids)n.has(e)?n.get(e).push(i.tag.value):n.set(e,[i.tag.value]);return e.map(e=>[e,n.get(e.id)||[]])})).subscribe(e=>this.feeds=e||[],e=>console.log(e))}favicon(e){return this.faviconService.iconURL(e)}tagsChange(e,t){this.feedService.updateTags(t,e.target.value.split(\",\").map(e=>e.trim())).subscribe(e=>{},e=>console.log(e))}showError(e){this.errorDialog.open(eO,{width:\"300px\",data:e.split(\"\\n\").filter(e=>e)})}deleteFeed(e,t){this.feedService.deleteFeed(t).subscribe(t=>{if(t){let t=e.target.parentNode;for(;(t=t.parentElement)&&!t.classList.contains(\"feed\"););t.parentNode.removeChild(t)}},e=>console.log(e))}exportOPML(){this.feedService.exportOPML().subscribe(e=>{this.downloader.nativeElement.href=\"data:text/x-opml+xml,\"+encodeURIComponent(e),this.downloader.nativeElement.click()},e=>console.log(e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(DD),Eo(YD),Eo(uY),Eo(rw))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-management\"]],viewQuery:function(e,t){var n;1&e&&Ec($E,!0,Ka),2&e&&Dc(n=Rc())&&(t.downloader=n.first)},decls:9,vars:2,consts:[[1,\"title\"],[\"u18n\",\"\",4,\"ngIf\"],[\"class\",\"feed\",4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"hidden\",\"\",\"download\",\"feeds.opml\"],[\"downloader\",\"\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"u18n\",\"\"],[1,\"feed\"],[1,\"favicon\",3,\"src\"],[1,\"name\",3,\"href\"],[\"mat-icon-button\",\"\",1,\"error\",3,\"click\"],[1,\"tags\"],[\"matInput\",\"\",3,\"value\",\"change\",6,\"placeholder\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,BE),Ho(),Do(2,GE,2,0,\"p\",1),Do(3,KE,13,6,\"div\",2),Ro(4,\"div\",3),jo(5,\"a\",4,5),Ro(7,\"button\",6),Uo(\"click\",(function(){return t.exportOPML()})),tc(8,qE),Ho(),Ho()),2&e&&(ys(2),Po(\"ngIf\",0==t.feeds.length),ys(1),Po(\"ngForOf\",t.feeds))},directives:[mu,uu,Gy,Cw,dM,gM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".feed[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.favicon[_ngcontent-%COMP%]{width:16px;height:16px;margin-right:5px;flex-shrink:1}.name[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{flex:1 0 0;min-width:250px}.tags[_ngcontent-%COMP%]{width:auto}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}\"]}),e})(),eO=(()=>{class e{constructor(e,t){this.dialogRef=e,this.errors=t}close(){this.dialogRef.close()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ew),Eo(tw))},e.\\u0275cmp=yt({type:e,selectors:[[\"error-dialog\"]],decls:5,vars:1,consts:[[2,\"max-height\",\"85vh\",\"overflow\",\"auto\"],[4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"ul\",0),Do(1,QE,2,1,\"li\",1),Ho(),Ro(2,\"div\",2),Ro(3,\"button\",3),Uo(\"click\",(function(){return t.close()})),tc(4,ZE),Ho(),Ho()),2&e&&(ys(1),Po(\"ngForOf\",t.errors))},directives:[uu,Gy],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".feed[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.favicon[_ngcontent-%COMP%]{width:16px;height:16px;margin-right:5px;flex-shrink:1}.name[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{flex:1 0 0;min-width:250px}.tags[_ngcontent-%COMP%]{width:auto}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}\"]}),e})();var tO,nO,iO,sO,rO,oO,aO,lO,cO,dO,uO,hO,mO,pO;function fO(e,t){1&e&&(Ro(0,\"p\"),tc(1,iO),Ho())}function _O(e,t){1&e&&(Ro(0,\"span\"),tc(1,rO),Ho())}function gO(e,t){1&e&&(Ro(0,\"span\"),tc(1,oO),Ho())}function yO(e,t){if(1&e&&(Ro(0,\"span\"),Do(1,_O,2,0,\"span\",1),Do(2,gO,2,0,\"span\",1),Ro(3,\"span\",13),Sa(4),Ho(),Ro(5,\"span\",14),tc(6,sO),Ho(),Ho()),2&e){const e=Jo().$implicit;ys(1),Po(\"ngIf\",!e.inverseURL),ys(1),Po(\"ngIf\",e.inverseURL),ys(2),La(e.urlTerm)}}function bO(e,t){1&e&&(Ro(0,\"span\",15),Sa(1,\" and \"),Ho())}function vO(e,t){1&e&&(Ro(0,\"span\"),tc(1,lO),Ho())}function wO(e,t){1&e&&(Ro(0,\"span\"),tc(1,cO),Ho())}function MO(e,t){if(1&e&&(Ro(0,\"span\"),Do(1,vO,2,0,\"span\",1),Do(2,wO,2,0,\"span\",1),Ro(3,\"span\",13),Sa(4),Ho(),Ro(5,\"span\",16),tc(6,aO),Ho(),Ho()),2&e){const e=Jo().$implicit;ys(1),Po(\"ngIf\",!e.inverseTitle),ys(1),Po(\"ngIf\",e.inverseTitle),ys(2),La(e.titleTerm)}}function kO(e,t){1&e&&(Ro(0,\"span\",17),tc(1,dO),Ho())}function SO(e,t){1&e&&(Ro(0,\"span\",18),tc(1,uO),Ho())}function LO(e,t){1&e&&(Ro(0,\"span\",17),tc(1,hO),Ho())}function xO(e,t){1&e&&(Ro(0,\"span\",18),tc(1,mO),Ho())}function CO(e,t){if(1&e&&(Ro(0,\"span\",19),Sa(1),Ho()),2&e){const e=Jo().$implicit,t=Jo();ys(1),La(t.tagLabel(e.tagID))}}function TO(e,t){if(1&e&&(Ro(0,\"span\",20),Sa(1),Ho()),2&e){const e=Jo().$implicit,t=Jo();ys(1),La(t.feedsLabel(e.feedIDs))}}function DO(e,t){if(1&e){const e=zo();Ro(0,\"div\",5),Ro(1,\"div\",6),Do(2,yO,7,3,\"span\",1),Do(3,bO,2,0,\"span\",7),Do(4,MO,7,3,\"span\",1),Do(5,kO,2,0,\"span\",8),Do(6,SO,2,0,\"span\",9),Do(7,LO,2,0,\"span\",8),Do(8,xO,2,0,\"span\",9),Do(9,CO,2,1,\"span\",10),Do(10,TO,2,1,\"span\",11),Ho(),Ro(11,\"button\",12),Uo(\"click\",(function(n){en(e);const i=t.$implicit;return Jo().deleteFilter(n,i)})),Ro(12,\"mat-icon\"),Sa(13,\"delete\"),Ho(),Ho(),Ho()}if(2&e){const e=t.$implicit;ys(2),Po(\"ngIf\",e.urlTerm),ys(1),Po(\"ngIf\",e.urlTerm&&e.titleTerm),ys(1),Po(\"ngIf\",e.titleTerm),ys(1),Po(\"ngIf\",e.inverseFeeds&&e.tagID),ys(1),Po(\"ngIf\",e.inverseFeeds&&e.feedIDs&&!e.tagID),ys(1),Po(\"ngIf\",e.tagID),ys(1),Po(\"ngIf\",e.feedIDs&&!e.tagID),ys(1),Po(\"ngIf\",e.tagID),ys(1),Po(\"ngIf\",e.feedIDs)}}tO=$localize`:␟78a6f89ed9e0cf32497131786780cb1849d06450␟1387635138150410380:Manage Filters`,nO=$localize`:␟f0296c99c29c326e114d9b5e586e525ced19acb7␟910026778839409110:Add filter`,iO=$localize`:␟58225eba05594edb2dbf2227edcf972c45484190␟3151928432395495376: No filters have been defined\n`,sO=$localize`:␟583cfbb9fc11b6d18ba2859c6f6ef9801f01303a␟7250849074184621975:by URL`,rO=$localize`:␟01aa5508abb4473531a18c605c1c41ae4b6074d0␟1567940090040631427:Matches`,oO=$localize`:␟84bbbe38f927eaeddf081648c8783d06b4348b24␟2940383431828435625:Does not match`,aO=$localize`:␟7bd342c384e331d17e60ccdf6eb0c23152317d51␟2443387025535922739:by title`,lO=$localize`:␟01aa5508abb4473531a18c605c1c41ae4b6074d0␟1567940090040631427:Matches`,cO=$localize`:␟84bbbe38f927eaeddf081648c8783d06b4348b24␟2940383431828435625:Does not match`,dO=$localize`:␟5ec699eaa79e1ac10b6ce2a16bfc89436bcb7120␟560382346117673180:excluding tag:`,uO=$localize`:␟a01b7cd68dedce110e9721fe35c8447aa6c7addf␟2844382219174700059:excluding feeds:`,hO=$localize`:␟567eded396fef0222ca8ab79c661062ea2d0b0ba␟2325552724815119037:on tag:`,mO=$localize`:␟ee5dbbdc2ddbcc6b9aa7262b6d6b1fd93f4a7667␟1717622304171392571:on feeds:`,pO=$localize`:␟760d27bbd4821e0c2c36328a956b7e2a548af1b2␟3366129698268834789: Filters can be applied to article URLs and title. At least one target must be selected: `;const YO=[\"placeholder\",$localize`:␟34501d547e3d70233dfcc545621b3f9524046c76␟1890297221031788927:Filter by title`];var EO;EO=$localize`:␟12a3c6674683fc857378e516d09535cfe6030f50␟7902335185780042053: Match filter if title term does not match. `;const OO=[\"placeholder\",$localize`:␟3664165270130fd3d4f89f5f7e4c56fb7c485375␟215401851945683133:Filter by URL`];var IO,PO,AO,RO,HO,jO,FO,NO;function zO(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,jO),Ho())}function VO(e,t){1&e&&(Ro(0,\"span\"),tc(1,FO),Ho())}function WO(e,t){1&e&&(Ro(0,\"span\"),tc(1,NO),Ho())}IO=$localize`:␟1ee7e26019fd1e347d1e23443cf6895a02d62d9c␟8226028651876528843: Match filter if URL term does not match. `,PO=$localize`:␟421759c8d438a7e13844a18b48945cf1cf425769␟7389317586710764363: Optional parameters `,AO=$localize`:␟80de392929f7cade444426837fc6a322091e8143␟6200388742841208230: Match filter if article is not part of the selected feeds/tag. `,RO=$localize`:␟52c9a103b812f258bcddc3d90a6e3f46871d25fe␟3768927257183755959:Save`,HO=$localize`:␟f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8␟7819314041543176992:Close`,jO=$localize`:␟fc9c1cf53b31d0f5bd0a8e28b56b83797a536101␟1576866399027630699: A filter must match at least a URL or title `,FO=$localize`:␟7b00e7c2dacd433e78459995668de3ae88faed6f␟1943233524922375568:Limit to feeds`,NO=$localize`:␟48568468ed7a42b94708b89595e8e0ba4c5c4880␟7921030750033180197:Limit to tag`;const UO=[\"placeholder\",$localize`:␟7b928f1d459648a4733d54d7fb0c7141ba6955af␟1246086532983525846:Feeds`];function $O(e,t){if(1&e&&(Ro(0,\"mat-option\",12),Sa(1),Ho()),2&e){const e=t.$implicit;Po(\"value\",e.id),ys(1),xa(\" \",e.title,\" \")}}function BO(e,t){if(1&e&&(Ro(0,\"mat-form-field\"),Ro(1,\"mat-select\",10),nc(2,UO),Do(3,$O,2,2,\"mat-option\",11),Ho(),Ho()),2&e){const e=Jo();ys(3),Po(\"ngForOf\",e.feeds)}}const qO=[\"placeholder\",$localize`:␟337ca2e5eeea28eaca91e8511eb5eaafdb385ce6␟1825829511397926879:Tag`];function GO(e,t){if(1&e&&(Ro(0,\"mat-option\",12),Sa(1),Ho()),2&e){const e=t.$implicit;Po(\"value\",e.id),ys(1),xa(\" \",e.value,\" \")}}function JO(e,t){if(1&e&&(Ro(0,\"mat-form-field\"),Ro(1,\"mat-select\",13),nc(2,qO),Do(3,GO,2,2,\"mat-option\",11),Ho(),Ho()),2&e){const e=Jo();ys(3),Po(\"ngForOf\",e.tags)}}let KO=(()=>{class e{constructor(e,t,n,i){this.userService=e,this.feedService=t,this.tagService=n,this.dialog=i,this.filters=new Array}ngOnInit(){this.feedService.getFeeds().pipe(dD(this.tagService.getTags(),this.userService.getCurrentUser(),(e,t,n)=>[e,t,n])).subscribe(e=>{this.feeds=e[0],this.tags=e[1],this.filters=e[2].profileData.filters||[]},e=>console.log(e))}addFilter(){this.dialog.open(ZO,{width:\"350px\",data:{feeds:this.feeds,tags:this.tags}}).afterClosed().subscribe(e=>this.ngOnInit())}feedsLabel(e){let t=this.feeds.filter(t=>-1!=e.indexOf(t.id)).map(e=>e.title);return t.length?t.join(\", \"):`${e}`}tagLabel(e){let t=this.tags.filter(t=>t.id==e).map(e=>e.value);return t.length?t[0]:`${e}`}deleteFilter(e,t){this.userService.getCurrentUser().pipe(V(e=>{let n=e.profileData||new Map,i=n.filters||[],s=i.filter(e=>e.urlTerm!=t.urlTerm||e.inverseURL!=t.inverseURL||e.titleTerm!=t.titleTerm||e.inverseTitle!=t.inverseTitle||e.tagID!=t.tagID||e.feedIDs!=t.feedIDs||e.inverseFeeds!=t.inverseFeeds);return s.length==i.length?xu(!0):(n.filters=s,this.userService.setUserSetting(\"profile\",JSON.stringify(n)))})).subscribe(t=>{if(t){let t=e.target.parentNode;for(;(t=t.parentElement)&&!t.classList.contains(\"filter\"););t.parentNode.removeChild(t)}},e=>console.log(e))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(JY),Eo(DD),Eo(YD),Eo(rw))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-filters\"]],decls:7,vars:2,consts:[[1,\"title\"],[4,\"ngIf\"],[\"class\",\"filter\",4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[1,\"filter\"],[1,\"info\"],[\"class\",\"url-and-title\",4,\"ngIf\"],[\"class\",\"match-tag\",4,\"ngIf\"],[\"class\",\"match-feeds\",4,\"ngIf\"],[\"class\",\"tag\",4,\"ngIf\"],[\"class\",\"feeds\",4,\"ngIf\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"],[1,\"term\"],[1,\"match-url\"],[1,\"url-and-title\"],[1,\"match-title\"],[1,\"match-tag\"],[1,\"match-feeds\"],[1,\"tag\"],[1,\"feeds\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,tO),Ho(),Do(2,fO,2,0,\"p\",1),Do(3,DO,14,9,\"div\",2),Ro(4,\"div\",3),Ro(5,\"button\",4),Uo(\"click\",(function(){return t.addFilter()})),tc(6,nO),Ho(),Ho()),2&e&&(ys(2),Po(\"ngIf\",0==t.filters.length),ys(1),Po(\"ngForOf\",t.filters))},directives:[mu,uu,Gy,Cw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".filter[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.filter[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{flex:1 0 0}.filter[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{padding-left:4px;padding-right:4px}.filter[_ngcontent-%COMP%] .feeds[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .tag[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .term[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;font-weight:700}.filter[_ngcontent-%COMP%] .url-and-title[_ngcontent-%COMP%]{font-style:italic}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}form[_ngcontent-%COMP%]{display:flex;flex-direction:column;margin-bottom:20px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{flex:1 0 auto}form[_ngcontent-%COMP%] mat-slide-toggle[_ngcontent-%COMP%]{align-self:center;flex:1 0 auto}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{font-size:14px}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%] .mat-checkbox-layout{white-space:normal}form[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{border-bottom:1px solid #ddd;margin-top:12px;margin-bottom:24px;font-size:13px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{width:100%}\"]}),e})(),ZO=(()=>{class e{constructor(e,t,n,i,s){this.dialogRef=e,this.userService=t,this.tagService=n,this.data=i,this.form=s.group({urlTerm:[\"\"],titleTerm:[\"\"],inverseURL:[!1],inverseTitle:[!1],useFeeds:[!0],feeds:[[]],tag:[],inverseFeeds:[!1]},{validator:e=>e.controls.urlTerm.value||e.controls.titleTerm.value?null:{nomatch:!0}}),this.feeds=i.feeds,this.tags=i.tags}save(){if(!this.form.valid)return;let e=this.form.value;this.userService.getCurrentUser().pipe(V(t=>{let n,i={urlTerm:e.urlTerm,inverseURL:e.inverseURL,titleTerm:e.titleTerm,inverseTitle:e.inverseTitle,inverseFeeds:e.inverseFeeds};return e.useFeeds?e.feeds&&e.feeds.length>0&&(i.feedIDs=e.feeds):e.tag&&(i.tagID=e.tag),n=i.tagID>0?this.tagService.getFeedIDs({id:i.tagID}).pipe(H(e=>(i.feedIDs=e,i))):xu(i),n.pipe(V(e=>{let n=t.profileData||new Map,i=n.filters||[];return i.push(e),n.filters=i,this.userService.setUserSetting(\"profile\",JSON.stringify(n))}))})).subscribe(e=>this.close(),e=>console.log(e))}close(){this.dialogRef.close()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ew),Eo(JY),Eo(YD),Eo(tw),Eo(Um))},e.\\u0275cmp=yt({type:e,selectors:[[\"new-filter-dialog\"]],decls:32,vars:6,consts:[[\"novalidate\",\"\",\"autocomplete\",\"off\",3,\"formGroup\",\"ngSubmit\"],[\"matInput\",\"\",\"formControlName\",\"titleTerm\",6,\"placeholder\"],[\"formControlName\",\"inverseTitle\"],[\"matInput\",\"\",\"formControlName\",\"urlTerm\",6,\"placeholder\"],[\"formControlName\",\"inverseURL\"],[4,\"ngIf\"],[\"formControlName\",\"useFeeds\"],[\"formControlName\",\"inverseFeeds\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"multiple\",\"\",\"formControlName\",\"feeds\",6,\"placeholder\"],[3,\"value\",4,\"ngFor\",\"ngForOf\"],[3,\"value\"],[\"formControlName\",\"tag\",6,\"placeholder\"]],template:function(e,t){1&e&&(Ro(0,\"div\"),Ro(1,\"form\",0),Uo(\"ngSubmit\",(function(){return t.save()})),Ro(2,\"p\"),tc(3,pO),Ho(),Ro(4,\"mat-form-field\"),Ro(5,\"input\",1),nc(6,YO),Ho(),Ho(),jo(7,\"br\"),Ro(8,\"mat-checkbox\",2),tc(9,EO),Ho(),Ro(10,\"mat-form-field\"),Ro(11,\"input\",3),nc(12,OO),Ho(),Ho(),jo(13,\"br\"),Ro(14,\"mat-checkbox\",4),tc(15,IO),Ho(),Do(16,zO,2,0,\"mat-error\",5),jo(17,\"br\"),Ro(18,\"p\"),tc(19,PO),Ho(),Ro(20,\"mat-slide-toggle\",6),Do(21,VO,2,0,\"span\",5),Do(22,WO,2,0,\"span\",5),Ho(),Do(23,BO,4,1,\"mat-form-field\",5),Do(24,JO,4,1,\"mat-form-field\",5),Ro(25,\"mat-checkbox\",7),tc(26,AO),Ho(),Ho(),Ho(),Ro(27,\"div\",8),Ro(28,\"button\",9),Uo(\"click\",(function(){return t.save()})),tc(29,RO),Ho(),Ro(30,\"button\",9),Uo(\"click\",(function(){return t.close()})),tc(31,HO),Ho(),Ho()),2&e&&(ys(1),Po(\"formGroup\",t.form),ys(15),Po(\"ngIf\",t.form.hasError(\"nomatch\")),ys(5),Po(\"ngIf\",t.form.value.useFeeds),ys(1),Po(\"ngIf\",!t.form.value.useFeeds),ys(1),Po(\"ngIf\",t.form.value.useFeeds),ys(1),Po(\"ngIf\",!t.form.value.useFeeds))},directives:[Tm,Sh,Im,dM,gM,_h,kh,Nm,bb,mu,Zk,Gy,Kw,_k,uu,Fy],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".filter[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.filter[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{flex:1 0 0}.filter[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{padding-left:4px;padding-right:4px}.filter[_ngcontent-%COMP%] .feeds[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .tag[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .term[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;font-weight:700}.filter[_ngcontent-%COMP%] .url-and-title[_ngcontent-%COMP%]{font-style:italic}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}form[_ngcontent-%COMP%]{display:flex;flex-direction:column;margin-bottom:20px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{flex:1 0 auto}form[_ngcontent-%COMP%] mat-slide-toggle[_ngcontent-%COMP%]{align-self:center;flex:1 0 auto}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{font-size:14px}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%] .mat-checkbox-layout{white-space:normal}form[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{border-bottom:1px solid #ddd;margin-top:12px;margin-bottom:24px;font-size:13px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{width:100%}\"]}),e})();var QO;function XO(e,t){if(1&e){const e=zo();Ro(0,\"div\",5),Ro(1,\"mat-slide-toggle\",6,7),Uo(\"change\",(function(){en(e);const n=t.$implicit,i=Yo(2);return Jo(2).toggleService(n[0].id,i.checked)})),Sa(3),Ho(),Ho()}if(2&e){const e=t.$implicit;ys(1),Po(\"checked\",e[1]),ys(2),La(e[0].description)}}function eI(e,t){if(1&e&&(Ro(0,\"mat-card\"),Ro(1,\"mat-card-header\"),Ro(2,\"mat-card-title\",3),Ro(3,\"h6\"),Sa(4),Ho(),Ho(),Ho(),Ro(5,\"mat-card-content\"),Do(6,XO,4,2,\"div\",4),Ho(),Ho()),2&e){const e=t.$implicit;ys(4),xa(\" \",e[0][0].category,\" \"),ys(2),Po(\"ngForOf\",e)}}QO=$localize`:␟7240bf47e6acc8685c4ebfc74ce0d5b4db6bde4f␟5231214581506259059:Share Services`;let tI=(()=>{class e{constructor(e){this.sharingService=e}ngOnInit(){this.services=this.sharingService.groupedList()}toggleService(e,t){this.sharingService.toggle(e,t)}}return e.\\u0275fac=function(t){return new(t||e)(Eo(uD))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-share-services\"]],decls:4,vars:1,consts:[[1,\"title\"],[1,\"cards-container\"],[4,\"ngFor\",\"ngForOf\"],[1,\"col\",\"title\"],[\"class\",\"service\",4,\"ngFor\",\"ngForOf\"],[1,\"service\"],[3,\"checked\",\"change\"],[\"toggle\",\"\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,QO),Ho(),Ro(2,\"div\",1),Do(3,eI,7,2,\"mat-card\",2),Ho()),2&e&&(ys(3),Po(\"ngForOf\",t.services))},directives:[uu,ob,ab,nb,tb,Zk],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".cards-container[_ngcontent-%COMP%]{display:flex;flex-direction:row;flex-wrap:wrap}mat-card[_ngcontent-%COMP%]{flex:1 0 0;margin:8px;min-width:250px}.service[_ngcontent-%COMP%]{margin-bottom:16px}\"]}),e})();var nI,iI,sI,rI,oI;function aI(e,t){if(1&e&&(Ro(0,\"p\"),tc(1,sI),Ho()),2&e){const e=Jo();ys(1),rc(e.current.login),oc(1)}}function lI(e,t){if(1&e){const e=zo();Ro(0,\"div\",5),Ro(1,\"mat-checkbox\",6,7),Uo(\"change\",(function(){en(e);const n=t.$implicit,i=Yo(2);return Jo(2).toggleActive(n.login,i.checked)}))(\"ngModelChange\",(function(n){return en(e),t.$implicit.active=n})),Sa(3),Ho(),Ro(4,\"button\",8),Uo(\"click\",(function(n){en(e);const i=t.$implicit;return Jo(2).deleteUser(n,i.login)})),Ro(5,\"mat-icon\"),Sa(6,\"delete\"),Ho(),Ho(),Ho()}if(2&e){const e=t.$implicit;ys(1),Po(\"ngModel\",e.active),ys(2),La(e.login)}}function cI(e,t){if(1&e&&(Ro(0,\"div\"),Ro(1,\"h6\"),tc(2,rI),Ho(),Do(3,lI,7,2,\"div\",4),Ho()),2&e){const e=Jo();ys(3),Po(\"ngForOf\",e.users)}}nI=$localize`:␟cb593cb234b63428439631044bdf77fc3452357c␟2108091748797172929:Manage Users`,iI=$localize`:␟f8c7e16da78e5daf06335e60dd27f03ec30530f4␟5918723526444903137:Add user`,sI=$localize`:␟1df08418100ac5e70836b8adf5fa12d4c1b4b0dd␟5195095583184627775: Current user: ${\"\\ufffd0\\ufffd\"}:INTERPOLATION:\n`,rI=$localize`:␟75bff245ba90b410bd49da2788c55f572ce7f784␟6033168733730940341:List of users:`,oI=$localize`:␟fab6f6aad7a682400356ad9ba30f1c25e80c8930␟4425649962450500073:Add a new user`;const dI=[\"placeholder\",$localize`:␟024886ca34a6f309e3e51c2ed849320592c3faaa␟5312727456282218392:User name`],uI=[\"placeholder\",$localize`:␟c32ef07f8803a223a83ed17024b38e8d82292407␟1431416938026210429:Password`];var hI,mI,pI;function fI(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,mI),Ho())}function _I(e,t){1&e&&(Ro(0,\"mat-error\"),tc(1,pI),Ho())}hI=$localize`:␟52c9a103b812f258bcddc3d90a6e3f46871d25fe␟3768927257183755959:Save`,mI=$localize`:␟81300fcfd7313522c85ffe86cc04a5c19278bf12␟2191339029246291489: Empty user name `,pI=$localize`:␟2985844c6198518d1b99c84e29e1c8795754cf8b␟4960000650285755818: Empty password `;const gI=function(){return[\"login\"]},yI=function(){return[\"password\"]};let bI=(()=>{class e{constructor(e,t){this.userService=e,this.dialog=t,this.users=new Array,this.refresher=new L}ngOnInit(){this.refresher.pipe(Rf(null),Wb(e=>this.userService.list()),dD(this.userService.getCurrentUser(),(e,t)=>e.filter(e=>e.login!=t.login))).subscribe(e=>this.users=e,e=>console.log(e)),this.userService.getCurrentUser().subscribe(e=>this.current=e,e=>console.log(e))}toggleActive(e,t){this.userService.toggleActive(e,t).subscribe(e=>{},e=>console.log(e))}deleteUser(e,t){confirm(\"Are you sure you want to delete user \"+t)&&this.userService.deleteUser(t).subscribe(t=>{if(t){let t=e.target.parentNode;for(;(t=t.parentElement)&&!t.classList.contains(\"user\"););t.parentNode.removeChild(t)}},e=>console.log(e))}newUser(){this.dialog.open(vI,{width:\"250px\"}).afterClosed().subscribe(e=>this.refresher.next(null))}}return e.\\u0275fac=function(t){return new(t||e)(Eo(JY),Eo(rw))},e.\\u0275cmp=yt({type:e,selectors:[[\"settings-admin\"]],decls:7,vars:2,consts:[[1,\"title\"],[4,\"ngIf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"class\",\"user\",4,\"ngFor\",\"ngForOf\"],[1,\"user\"],[3,\"ngModel\",\"change\",\"ngModelChange\"],[\"check\",\"\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"]],template:function(e,t){1&e&&(Ro(0,\"h5\",0),tc(1,nI),Ho(),Do(2,aI,2,1,\"p\",1),Do(3,cI,4,1,\"div\",1),Ro(4,\"div\",2),Ro(5,\"button\",3),Uo(\"click\",(function(){return t.newUser()})),tc(6,iI),Ho(),Ho()),2&e&&(ys(2),Po(\"ngIf\",t.current),ys(1),Po(\"ngIf\",t.users.length))},directives:[mu,Gy,uu,bb,kh,Cm,Cw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".user[_ngcontent-%COMP%]{display:flex;align-items:center;border-bottom:1px solid #ccc;padding-bottom:4px;margin-bottom:4px}.user[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{flex:1 0 0}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),e})(),vI=(()=>{class e{constructor(e,t,n){this.dialogRef=e,this.userService=t,this.form=n.group({login:[\"\",Dh.required],password:[\"\",Dh.required]})}save(){if(!this.form.valid)return;let e=this.form.value;this.userService.addUser(e.login,e.password).subscribe(e=>{e&&this.close()},e=>console.log(e))}close(){this.dialogRef.close()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(ew),Eo(JY),Eo(Um))},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:16,vars:6,consts:[[1,\"title\"],[\"novalidate\",\"\",\"autocomplete\",\"off\",3,\"formGroup\",\"ngSubmit\"],[\"matInput\",\"\",\"formControlName\",\"login\",\"required\",\"\",6,\"placeholder\"],[4,\"ngIf\"],[\"matInput\",\"\",\"type\",\"password\",\"formControlName\",\"password\",\"required\",\"\",6,\"placeholder\"],[1,\"footer\"],[\"mat-raised-button\",\"\",\"type\",\"submit\",3,\"disabled\"]],template:function(e,t){1&e&&(Ro(0,\"h6\",0),tc(1,oI),Ho(),Ro(2,\"form\",1),Uo(\"ngSubmit\",(function(){return t.save()})),Ro(3,\"mat-form-field\"),Ro(4,\"input\",2),nc(5,dI),Ho(),Do(6,fI,2,0,\"mat-error\",3),Ho(),jo(7,\"br\"),Ro(8,\"mat-form-field\"),Ro(9,\"input\",4),nc(10,uI),Ho(),Do(11,_I,2,0,\"mat-error\",3),Ho(),jo(12,\"br\"),Ro(13,\"div\",5),Ro(14,\"button\",6),tc(15,hI),Ho(),Ho(),Ho()),2&e&&(ys(2),Po(\"formGroup\",t.form),ys(4),Po(\"ngIf\",t.form.hasError(\"required\",gc(4,gI))),ys(5),Po(\"ngIf\",t.form.hasError(\"required\",gc(5,yI))),ys(3),Po(\"disabled\",t.form.pristine))},directives:[Tm,Sh,Im,dM,gM,_h,kh,Nm,Vm,mu,Gy,Kw],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".user[_ngcontent-%COMP%]{display:flex;align-items:center;border-bottom:1px solid #ccc;padding-bottom:4px;margin-bottom:4px}.user[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{flex:1 0 0}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),e})();var wI,MI,kI,SI,LI,xI,CI,TI,DI;wI=$localize`:␟2efe5a11c535986f60fd32bb171de59c85ec357d␟6537591722407885569: Settings\n`,MI=$localize`:␟3d53f64033c4b76fdc1076ba15955d913209866c␟6439365426343089851:General`,kI=$localize`:␟b6e9d3a76584feec84c2204f11301598fb90d7ef␟6372201297165580832:Add Feed`,SI=$localize`:␟446bc7942ed7cd24d6b84079bb82bd7f1d4d280b␟8187273895031232465:Manage Feeds`,LI=$localize`:␟1298c1d2bbbb7415f5494e800f6775fdb70f4df6␟4163272119298020373:Filters`,xI=$localize`:␟7240bf47e6acc8685c4ebfc74ce0d5b4db6bde4f␟5231214581506259059:Share Services`,CI=$localize`:␟7b928f1d459648a4733d54d7fb0c7141ba6955af␟1246086532983525846:Feeds`,TI=$localize`:␟bb694b49d408265c91c62799c2b3a7e3151c824d␟3797778920049399855:Logout`,DI=$localize`:␟b7648e7aced164498aa843b5c4e8f2f1c36a7919␟7844706011418789951:Administration`;const YI=function(){return[\"admin\"]};function EI(e,t){1&e&&(Ro(0,\"a\",2),tc(1,DI),Ho()),2&e&&Po(\"routerLink\",gc(1,YI))}const OI=function(){return[\"general\"]},II=function(){return[\"discovery\"]},PI=function(){return[\"management\"]},AI=function(){return[\"filters\"]},RI=function(){return[\"share-services\"]};var HI;HI=$localize`:␟121cc5391cd2a5115bc2b3160379ee5b36cd7716␟4930506384627295710:Settings`;const jI=kT.forRoot([{path:\"\",canActivate:[rD],children:[{path:\"\",component:xD,children:[{path:\"feed\",children:[{path:\"\",children:[{path:\"\",data:{primary:\"user\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\"search/:query\",data:{primary:\"search\",secondary:\"user\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\"favorite\",data:{primary:\"favorite\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\"popular/tag/:id\",data:{primary:\"popular\",secondary:\"tag\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\"popular/:id\",data:{primary:\"popular\",secondary:\"feed\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\"popular\",data:{primary:\"popular\",secondary:\"user\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\"tag/:id\",data:{primary:\"tag\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\"tag/:id/search/:query\",data:{primary:\"search\",secondary:\"tag\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\":id\",data:{primary:\"feed\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]},{path:\":id/search/:query\",data:{primary:\"search\",secondary:\"feed\"},children:[{path:\"\",component:KD},{path:\"article/:articleID\",component:dY}]}]},{path:\"\",component:SY,outlet:\"sidebar\"},{path:\"\",component:qY,outlet:\"toolbar\"}]},{path:\"settings\",children:[{path:\"\",component:GY,children:[{path:\"general\",component:hE},{path:\"discovery\",component:UE},{path:\"management\",component:XE},{path:\"filters\",component:KO},{path:\"share-services\",component:tI},{path:\"admin\",component:bI},{path:\"\",redirectTo:\"general\",pathMatch:\"full\"}]},{path:\"\",component:(()=>{class e{constructor(e){this.userService=e,this.subscriptions=new Array}ngOnInit(){this.subscriptions.push(this.userService.getCurrentUser().pipe(H(e=>e.admin)).subscribe(e=>this.admin=e,e=>console.log(e)))}ngOnDestroy(){for(let e of this.subscriptions)e.unsubscribe()}}return e.\\u0275fac=function(t){return new(t||e)(Eo(JY))},e.\\u0275cmp=yt({type:e,selectors:[[\"side-bar\"]],decls:19,vars:11,consts:[[\"color\",\"primary\"],[1,\"content\"],[\"mat-button\",\"\",3,\"routerLink\"],[\"mat-button\",\"\",3,\"routerLink\",4,\"ngIf\"],[\"mat-button\",\"\",\"routerLink\",\"/feed\"],[\"mat-button\",\"\",\"routerLink\",\"/login\"]],template:function(e,t){1&e&&(Ro(0,\"mat-toolbar\",0),tc(1,wI),Ho(),Ro(2,\"div\",1),Ro(3,\"a\",2),tc(4,MI),Ho(),Ro(5,\"a\",2),tc(6,kI),Ho(),Ro(7,\"a\",2),tc(8,SI),Ho(),Ro(9,\"a\",2),tc(10,LI),Ho(),Ro(11,\"a\",2),tc(12,xI),Ho(),Do(13,EI,2,2,\"a\",3),jo(14,\"hr\"),Ro(15,\"a\",4),tc(16,CI),Ho(),Ro(17,\"a\",5),tc(18,TI),Ho(),Ho()),2&e&&(ys(3),Po(\"routerLink\",gc(6,OI)),ys(2),Po(\"routerLink\",gc(7,II)),ys(2),Po(\"routerLink\",gc(8,PI)),ys(2),Po(\"routerLink\",gc(9,AI)),ys(2),Po(\"routerLink\",gc(10,RI)),ys(2),Po(\"ngIf\",t.admin))},directives:[dS,Jy,cT,mu],styles:[\".content[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{margin-bottom:4px}.content[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex;font-size:16px}.items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:13px}.category[_ngcontent-%COMP%], .items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex}.category[_ngcontent-%COMP%] > .expander[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;min-width:24px;flex-shrink:1}.category[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{flex-grow:1;text-align:start}.category[_ngcontent-%COMP%] > .items[_ngcontent-%COMP%]{flex:0 1 100%}.content[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{margin:0}.favicon[_ngcontent-%COMP%]{padding-right:4px}\"]}),e})(),outlet:\"sidebar\"},{path:\"\",component:(()=>{class e{constructor(){}ngOnInit(){}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"ng-component\"]],decls:2,vars:0,template:function(e,t){1&e&&(Ro(0,\"span\"),tc(1,HI),Ho())},styles:[\"[_nghost-%COMP%]{display:flex;align-items:center}.spacer[_ngcontent-%COMP%], [_nghost-%COMP%]{flex:1 1 auto}.search[_ngcontent-%COMP%]{min-height:0;border:none;background:transparent} label{margin-bottom:0}\"]}),e})(),outlet:\"toolbar\"}]},{path:\"\",redirectTo:\"feed\",pathMatch:\"full\"}]}]},{path:\"login\",component:iD}],{enableTracing:!1});let FI=(()=>{class e{constructor(){this.title=\"app\"}}return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275cmp=yt({type:e,selectors:[[\"app-root\"]],decls:2,vars:0,consts:[[1,\"page\"]],template:function(e,t){1&e&&(Ro(0,\"div\",0),jo(1,\"router-outlet\"),Ho())},directives:[mT],styles:[\"\"]}),e})(),NI=(()=>{class e{}return e.\\u0275mod=Mt({type:e,bootstrap:[FI]}),e.\\u0275inj=fe({factory:function(t){return new(t||e)},providers:[{provide:bf,useClass:TL}],imports:[[If,oy,lh,jI,Mu,$m,Bm,Ky,lb,wb,ow,Tw,yM,WM,ZM,gk,sS,Fk,Xk,uS,gL,xL,kf]]}),e})();(function(){if(ki)throw new Error(\"Cannot enable prod mode after platform setup.\");Mi=!1})(),Ef().bootstrapModule(NI)},zavE:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-SG\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},zn8P:function(e,t){function n(e){return Promise.resolve().then((function(){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}))}n.keys=function(){return[]},n.resolve=n,e.exports=n,n.id=\"zn8P\"},zx6S:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekunda\",\"sekunde\",\"sekundi\"],m:[\"jedan minut\",\"jedne minute\"],mm:[\"minut\",\"minute\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mesec\",\"meseca\",\"meseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,i){var s=t.words[i];return 1===i.length?n?s[0]:s[1]:e+\" \"+t.correctGrammaticalCase(e,s)}};e.defineLocale(\"sr\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljak_utorak_sreda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sre._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedelju] [u] LT\";case 3:return\"[u] [sredu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010de u] LT\",lastWeek:function(){return[\"[pro\\u0161le] [nedelje] [u] LT\",\"[pro\\u0161log] [ponedeljka] [u] LT\",\"[pro\\u0161log] [utorka] [u] LT\",\"[pro\\u0161le] [srede] [u] LT\",\"[pro\\u0161log] [\\u010detvrtka] [u] LT\",\"[pro\\u0161log] [petka] [u] LT\",\"[pro\\u0161le] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pre %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))}},[[0,0]]]);"); err != nil { + return nil, errors.Wrap(err, fmt.Sprintf("packing file rf-ng/ui/en/main-es2015.12ca351b7933925b99f6.js")) } - if err := fs.Add("rf-ng/ui/en/main-es5.de4780925792b25f4c29.js", 1332791, os.FileMode(420), time.Unix(1584880196, 0), "function _templateObject154(){var e=_taggedTemplateLiteral([\":\\u241f121cc5391cd2a5115bc2b3160379ee5b36cd7716\\u241f4930506384627295710:Settings\"]);return _templateObject154=function(){return e},e}function _templateObject153(){var e=_taggedTemplateLiteral([\":\\u241fb7648e7aced164498aa843b5c4e8f2f1c36a7919\\u241f7844706011418789951:Administration\"]);return _templateObject153=function(){return e},e}function _templateObject152(){var e=_taggedTemplateLiteral([\":\\u241fbb694b49d408265c91c62799c2b3a7e3151c824d\\u241f3797778920049399855:Logout\"]);return _templateObject152=function(){return e},e}function _templateObject151(){var e=_taggedTemplateLiteral([\":\\u241f7b928f1d459648a4733d54d7fb0c7141ba6955af\\u241f1246086532983525846:Feeds\"]);return _templateObject151=function(){return e},e}function _templateObject150(){var e=_taggedTemplateLiteral([\":\\u241f7240bf47e6acc8685c4ebfc74ce0d5b4db6bde4f\\u241f5231214581506259059:Share Services\"]);return _templateObject150=function(){return e},e}function _templateObject149(){var e=_taggedTemplateLiteral([\":\\u241f1298c1d2bbbb7415f5494e800f6775fdb70f4df6\\u241f4163272119298020373:Filters\"]);return _templateObject149=function(){return e},e}function _templateObject148(){var e=_taggedTemplateLiteral([\":\\u241f446bc7942ed7cd24d6b84079bb82bd7f1d4d280b\\u241f8187273895031232465:Manage Feeds\"]);return _templateObject148=function(){return e},e}function _templateObject147(){var e=_taggedTemplateLiteral([\":\\u241fb6e9d3a76584feec84c2204f11301598fb90d7ef\\u241f6372201297165580832:Add Feed\"]);return _templateObject147=function(){return e},e}function _templateObject146(){var e=_taggedTemplateLiteral([\":\\u241f3d53f64033c4b76fdc1076ba15955d913209866c\\u241f6439365426343089851:General\"]);return _templateObject146=function(){return e},e}function _templateObject145(){var e=_taggedTemplateLiteral([\":\\u241f2efe5a11c535986f60fd32bb171de59c85ec357d\\u241f6537591722407885569: Settings\\n\"]);return _templateObject145=function(){return e},e}function _templateObject144(){var e=_taggedTemplateLiteral([\":\\u241f2985844c6198518d1b99c84e29e1c8795754cf8b\\u241f4960000650285755818: Empty password \"]);return _templateObject144=function(){return e},e}function _templateObject143(){var e=_taggedTemplateLiteral([\":\\u241f81300fcfd7313522c85ffe86cc04a5c19278bf12\\u241f2191339029246291489: Empty user name \"]);return _templateObject143=function(){return e},e}function _templateObject142(){var e=_taggedTemplateLiteral([\":\\u241f52c9a103b812f258bcddc3d90a6e3f46871d25fe\\u241f3768927257183755959:Save\"]);return _templateObject142=function(){return e},e}function _templateObject141(){var e=_taggedTemplateLiteral([\":\\u241fc32ef07f8803a223a83ed17024b38e8d82292407\\u241f1431416938026210429:Password\"]);return _templateObject141=function(){return e},e}function _templateObject140(){var e=_taggedTemplateLiteral([\":\\u241f024886ca34a6f309e3e51c2ed849320592c3faaa\\u241f5312727456282218392:User name\"]);return _templateObject140=function(){return e},e}function _templateObject139(){var e=_taggedTemplateLiteral([\":\\u241ffab6f6aad7a682400356ad9ba30f1c25e80c8930\\u241f4425649962450500073:Add a new user\"]);return _templateObject139=function(){return e},e}function _templateObject138(){var e=_taggedTemplateLiteral([\":\\u241f75bff245ba90b410bd49da2788c55f572ce7f784\\u241f6033168733730940341:List of users:\"]);return _templateObject138=function(){return e},e}function _templateObject137(){var e=_taggedTemplateLiteral([\":\\u241f1df08418100ac5e70836b8adf5fa12d4c1b4b0dd\\u241f5195095583184627775: Current user: \",\":INTERPOLATION:\\n\"]);return _templateObject137=function(){return e},e}function _templateObject136(){var e=_taggedTemplateLiteral([\":\\u241ff8c7e16da78e5daf06335e60dd27f03ec30530f4\\u241f5918723526444903137:Add user\"]);return _templateObject136=function(){return e},e}function _templateObject135(){var e=_taggedTemplateLiteral([\":\\u241fcb593cb234b63428439631044bdf77fc3452357c\\u241f2108091748797172929:Manage Users\"]);return _templateObject135=function(){return e},e}function _templateObject134(){var e=_taggedTemplateLiteral([\":\\u241f7240bf47e6acc8685c4ebfc74ce0d5b4db6bde4f\\u241f5231214581506259059:Share Services\"]);return _templateObject134=function(){return e},e}function _templateObject133(){var e=_taggedTemplateLiteral([\":\\u241f337ca2e5eeea28eaca91e8511eb5eaafdb385ce6\\u241f1825829511397926879:Tag\"]);return _templateObject133=function(){return e},e}function _templateObject132(){var e=_taggedTemplateLiteral([\":\\u241f7b928f1d459648a4733d54d7fb0c7141ba6955af\\u241f1246086532983525846:Feeds\"]);return _templateObject132=function(){return e},e}function _templateObject131(){var e=_taggedTemplateLiteral([\":\\u241f48568468ed7a42b94708b89595e8e0ba4c5c4880\\u241f7921030750033180197:Limit to tag\"]);return _templateObject131=function(){return e},e}function _templateObject130(){var e=_taggedTemplateLiteral([\":\\u241f7b00e7c2dacd433e78459995668de3ae88faed6f\\u241f1943233524922375568:Limit to feeds\"]);return _templateObject130=function(){return e},e}function _templateObject129(){var e=_taggedTemplateLiteral([\":\\u241ffc9c1cf53b31d0f5bd0a8e28b56b83797a536101\\u241f1576866399027630699: A filter must match at least a URL or title \"]);return _templateObject129=function(){return e},e}function _templateObject128(){var e=_taggedTemplateLiteral([\":\\u241ff4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8\\u241f7819314041543176992:Close\"]);return _templateObject128=function(){return e},e}function _templateObject127(){var e=_taggedTemplateLiteral([\":\\u241f52c9a103b812f258bcddc3d90a6e3f46871d25fe\\u241f3768927257183755959:Save\"]);return _templateObject127=function(){return e},e}function _templateObject126(){var e=_taggedTemplateLiteral([\":\\u241f80de392929f7cade444426837fc6a322091e8143\\u241f6200388742841208230: Match filter if article is not part of the selected feeds/tag. \"]);return _templateObject126=function(){return e},e}function _templateObject125(){var e=_taggedTemplateLiteral([\":\\u241f421759c8d438a7e13844a18b48945cf1cf425769\\u241f7389317586710764363: Optional parameters \"]);return _templateObject125=function(){return e},e}function _templateObject124(){var e=_taggedTemplateLiteral([\":\\u241f1ee7e26019fd1e347d1e23443cf6895a02d62d9c\\u241f8226028651876528843: Match filter if URL term does not match. \"]);return _templateObject124=function(){return e},e}function _templateObject123(){var e=_taggedTemplateLiteral([\":\\u241f3664165270130fd3d4f89f5f7e4c56fb7c485375\\u241f215401851945683133:Filter by URL\"]);return _templateObject123=function(){return e},e}function _templateObject122(){var e=_taggedTemplateLiteral([\":\\u241f12a3c6674683fc857378e516d09535cfe6030f50\\u241f7902335185780042053: Match filter if title term does not match. \"]);return _templateObject122=function(){return e},e}function _templateObject121(){var e=_taggedTemplateLiteral([\":\\u241f34501d547e3d70233dfcc545621b3f9524046c76\\u241f1890297221031788927:Filter by title\"]);return _templateObject121=function(){return e},e}function _templateObject120(){var e=_taggedTemplateLiteral([\":\\u241f760d27bbd4821e0c2c36328a956b7e2a548af1b2\\u241f3366129698268834789: Filters can be applied to article URLs and title. At least one target must be selected: \"]);return _templateObject120=function(){return e},e}function _templateObject119(){var e=_taggedTemplateLiteral([\":\\u241fee5dbbdc2ddbcc6b9aa7262b6d6b1fd93f4a7667\\u241f1717622304171392571:on feeds:\"]);return _templateObject119=function(){return e},e}function _templateObject118(){var e=_taggedTemplateLiteral([\":\\u241f567eded396fef0222ca8ab79c661062ea2d0b0ba\\u241f2325552724815119037:on tag:\"]);return _templateObject118=function(){return e},e}function _templateObject117(){var e=_taggedTemplateLiteral([\":\\u241fa01b7cd68dedce110e9721fe35c8447aa6c7addf\\u241f2844382219174700059:excluding feeds:\"]);return _templateObject117=function(){return e},e}function _templateObject116(){var e=_taggedTemplateLiteral([\":\\u241f5ec699eaa79e1ac10b6ce2a16bfc89436bcb7120\\u241f560382346117673180:excluding tag:\"]);return _templateObject116=function(){return e},e}function _templateObject115(){var e=_taggedTemplateLiteral([\":\\u241f84bbbe38f927eaeddf081648c8783d06b4348b24\\u241f2940383431828435625:Does not match\"]);return _templateObject115=function(){return e},e}function _templateObject114(){var e=_taggedTemplateLiteral([\":\\u241f01aa5508abb4473531a18c605c1c41ae4b6074d0\\u241f1567940090040631427:Matches\"]);return _templateObject114=function(){return e},e}function _templateObject113(){var e=_taggedTemplateLiteral([\":\\u241f7bd342c384e331d17e60ccdf6eb0c23152317d51\\u241f2443387025535922739:by title\"]);return _templateObject113=function(){return e},e}function _templateObject112(){var e=_taggedTemplateLiteral([\":\\u241f84bbbe38f927eaeddf081648c8783d06b4348b24\\u241f2940383431828435625:Does not match\"]);return _templateObject112=function(){return e},e}function _templateObject111(){var e=_taggedTemplateLiteral([\":\\u241f01aa5508abb4473531a18c605c1c41ae4b6074d0\\u241f1567940090040631427:Matches\"]);return _templateObject111=function(){return e},e}function _templateObject110(){var e=_taggedTemplateLiteral([\":\\u241f583cfbb9fc11b6d18ba2859c6f6ef9801f01303a\\u241f7250849074184621975:by URL\"]);return _templateObject110=function(){return e},e}function _templateObject109(){var e=_taggedTemplateLiteral([\":\\u241f58225eba05594edb2dbf2227edcf972c45484190\\u241f3151928432395495376: No filters have been defined\\n\"]);return _templateObject109=function(){return e},e}function _templateObject108(){var e=_taggedTemplateLiteral([\":\\u241ff0296c99c29c326e114d9b5e586e525ced19acb7\\u241f910026778839409110:Add filter\"]);return _templateObject108=function(){return e},e}function _templateObject107(){var e=_taggedTemplateLiteral([\":\\u241f78a6f89ed9e0cf32497131786780cb1849d06450\\u241f1387635138150410380:Manage Filters\"]);return _templateObject107=function(){return e},e}function _templateObject106(){var e=_taggedTemplateLiteral([\":\\u241ff4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8\\u241f7819314041543176992:Close\"]);return _templateObject106=function(){return e},e}function _templateObject105(){var e=_taggedTemplateLiteral([\":\\u241f9f12050a433d9709f2231916ecfb33c4f2ed1c01\\u241f4975748273657042999:tags\"]);return _templateObject105=function(){return e},e}function _templateObject104(){var e=_taggedTemplateLiteral([\":\\u241fcf59c3b27a0d7b925f32cd1c1e2785a1bf73f829\\u241f5929451610563023881:Export OPML\"]);return _templateObject104=function(){return e},e}function _templateObject103(){var e=_taggedTemplateLiteral([\":\\u241f446bc7942ed7cd24d6b84079bb82bd7f1d4d280b\\u241f8187273895031232465:Manage Feeds\"]);return _templateObject103=function(){return e},e}function _templateObject102(){var e=_taggedTemplateLiteral([\":\\u241f51a0b2a443f1b6b1ceab1a868605d7b0f2065e28\\u241f562151600459726773: Error adding feed \",\":INTERPOLATION:: \",\":INTERPOLATION_1: \"]);return _templateObject102=function(){return e},e}function _templateObject101(){var e=_taggedTemplateLiteral([\":\\u241fccd3b9334639513fbd609704f4ec8536a15aeb97\\u241f4228842406796887022: Feeds were added successfully. \"]);return _templateObject101=function(){return e},e}function _templateObject100(){var e=_taggedTemplateLiteral([\":\\u241ff1910eaad1af7b9e7635f930ddc55586f157e3bd\\u241f5085881954406181280: No feeds added. \"]);return _templateObject100=function(){return e},e}function _templateObject99(){var e=_taggedTemplateLiteral([\":\\u241f9d9bc3eecf1610ec05a5c2b63bb7c1324529cba5\\u241f5997521680245778675:Discover more feeds\"]);return _templateObject99=function(){return e},e}function _templateObject98(){var e=_taggedTemplateLiteral([\":\\u241f9d9bc3eecf1610ec05a5c2b63bb7c1324529cba5\\u241f5997521680245778675:Discover more feeds\"]);return _templateObject98=function(){return e},e}function _templateObject97(){var e=_taggedTemplateLiteral([\":\\u241ff6755cff4957d5c3c89bafce5651f1b6fa2b1fd9\\u241f3249513483374643425:Add\"]);return _templateObject97=function(){return e},e}function _templateObject96(){var e=_taggedTemplateLiteral([\":\\u241fd95b1d4402bbe08c4ab7c089005abb260bf0fb62\\u241f4956883923261490175: No new feeds found \"]);return _templateObject96=function(){return e},e}function _templateObject95(){var e=_taggedTemplateLiteral([\":\\u241f8350af72cf77a2936cd54ac59cc1ab9adec34f74\\u241f5089003889507327516: Error during search \"]);return _templateObject95=function(){return e},e}function _templateObject94(){var e=_taggedTemplateLiteral([\":\\u241fbd2cda3ba20b1a481578e587ff255c5dd69226bb\\u241f107334190959015127: No query or opml file specified \"]);return _templateObject94=function(){return e},e}function _templateObject93(){var e=_taggedTemplateLiteral([\":\\u241f7e892ba15f2c6c17e83510e273b3e10fc32ea016\\u241f4580988005648117665:Search\"]);return _templateObject93=function(){return e},e}function _templateObject92(){var e=_taggedTemplateLiteral([\":\\u241f62eb4be126bc452812fe66b9675417704c09123a\\u241f2641672822784307275:OPML import\"]);return _templateObject92=function(){return e},e}function _templateObject91(){var e=_taggedTemplateLiteral([\":\\u241f0e6f6d047ad0445f95577c3886f5cb462ecfd614\\u241f4419855417700414171: Alternatively, upload an OPML file. \"]);return _templateObject91=function(){return e},e}function _templateObject90(){var e=_taggedTemplateLiteral([\":\\u241fc09f5d00683d3ea7a0bac506894a81c47075628f\\u241f7800294050526433264:URL/query\"]);return _templateObject90=function(){return e},e}function _templateObject89(){var e=_taggedTemplateLiteral([\":\\u241f79bf2166191aab07aa1524f2d1350fab472c468a\\u241f1179108510865870171: You can enter the url of a feed directly, as well as a url of a site that may contain one or more feeds, or a search query. \"]);return _templateObject89=function(){return e},e}function _templateObject88(){var e=_taggedTemplateLiteral([\":\\u241f2fa6619f44220045d57d900966a51c211caad6fc\\u241f8307427112695611410:Discover/import feeds\"]);return _templateObject88=function(){return e},e}function _templateObject87(){var e=_taggedTemplateLiteral([\":\\u241f71980fe48d948363935aab88e2077c7c76de93bd\\u241f4018700129027778932: Passwords do not match \"]);return _templateObject87=function(){return e},e}function _templateObject86(){var e=_taggedTemplateLiteral([\":\\u241fd4ee9c4a4fe08d273b716bf0a399570466bbd87c\\u241f5382495681765079471: Invalid password \"]);return _templateObject86=function(){return e},e}function _templateObject85(){var e=_taggedTemplateLiteral([\":\\u241f52c9a103b812f258bcddc3d90a6e3f46871d25fe\\u241f3768927257183755959:Save\"]);return _templateObject85=function(){return e},e}function _templateObject84(){var e=_taggedTemplateLiteral([\":\\u241fede41f01c781b168a783cfcefc6fb67d48780d9b\\u241f8656126574213649581:Confirm new password\"]);return _templateObject84=function(){return e},e}function _templateObject83(){var e=_taggedTemplateLiteral([\":\\u241fe70e209561583f360b1e9cefd2cbb1fe434b6229\\u241f3588415639242079458:New password\"]);return _templateObject83=function(){return e},e}function _templateObject82(){var e=_taggedTemplateLiteral([\":\\u241f6d6539a26b432fb1906f9fda102cf3ac332c8b8a\\u241f1375188762769896369:Change your password\"]);return _templateObject82=function(){return e},e}function _templateObject81(){var e=_taggedTemplateLiteral([\":\\u241f782e37fb591e59a26363f1558db22cd373660ca9\\u241f5224830667201919132: Please enter a valid email address \"]);return _templateObject81=function(){return e},e}function _templateObject80(){var e=_taggedTemplateLiteral([\":\\u241f739516c2ca75843d5aec9cf0e6b3e4335c4227b9\\u241f6309828574111583895:Change password\"]);return _templateObject80=function(){return e},e}function _templateObject79(){var e=_taggedTemplateLiteral([\":\\u241ffe46ccaae902ce974e2441abe752399288298619\\u241f2826581353496868063:Language\"]);return _templateObject79=function(){return e},e}function _templateObject78(){var e=_taggedTemplateLiteral([\":\\u241f244aae9346da82b0922506c2d2581373a15641cc\\u241f4768749765465246664:Email\"]);return _templateObject78=function(){return e},e}function _templateObject77(){var e=_taggedTemplateLiteral([\":\\u241f6ce3dadf53dda1a1ab0c3167a8ed8dced471b0dc\\u241f3586674587150281199:Last name\"]);return _templateObject77=function(){return e},e}function _templateObject76(){var e=_taggedTemplateLiteral([\":\\u241f62b6c66981335ca6eecc36b331103c60f09d1026\\u241f5342432350421167093:First name\"]);return _templateObject76=function(){return e},e}function _templateObject75(){var e=_taggedTemplateLiteral([\":\\u241f2034c9a8ec1a387f9614599aed924afedba51287\\u241f3044746121698042511:Personalize your feed reader\"]);return _templateObject75=function(){return e},e}function _templateObject74(){var e=_taggedTemplateLiteral([\":\\u241f9b1d5e95f6bdcfb4b737413f5fa157e0dcb103d5\\u241f2327592562693301723:Read\"]);return _templateObject74=function(){return e},e}function _templateObject73(){var e=_taggedTemplateLiteral([\":\\u241f3b6143a528c6f4586e60e9af4ced8ac0fbe08251\\u241f5539833462297888878:Articles\"]);return _templateObject73=function(){return e},e}function _templateObject72(){var e=_taggedTemplateLiteral([\":\\u241f8fc026bb4b317bf3a6159c364818202f5bb95a4e\\u241f7375243393535212946:Popular\"]);return _templateObject72=function(){return e},e}function _templateObject71(){var e=_taggedTemplateLiteral([\":\\u241fbb694b49d408265c91c62799c2b3a7e3151c824d\\u241f3797778920049399855:Logout\"]);return _templateObject71=function(){return e},e}function _templateObject70(){var e=_taggedTemplateLiteral([\":\\u241f121cc5391cd2a5115bc2b3160379ee5b36cd7716\\u241f4930506384627295710:Settings\"]);return _templateObject70=function(){return e},e}function _templateObject69(){var e=_taggedTemplateLiteral([\":\\u241fdfc3c34e182ea73c5d784ff7c8135f087992dac1\\u241f1616102757855967475:All\"]);return _templateObject69=function(){return e},e}function _templateObject68(){var e=_taggedTemplateLiteral([\":\\u241f11a0771f88158a540a54e0e4ec5d25733d65fc0e\\u241f5787671382322865445:Favorite\"]);return _templateObject68=function(){return e},e}function _templateObject67(){var e=_taggedTemplateLiteral([\":\\u241f416441a4532345eaa0c5cab38f0aeb148c8566e0\\u241f4648504262060403687: Feeds\\n\"]);return _templateObject67=function(){return e},e}function _templateObject66(){var e=_taggedTemplateLiteral([\":\\u241f170d0510bd494799bed6a127fc04eabc9f8bed23\\u241f97023127247629182: Summary \"]);return _templateObject66=function(){return e},e}function _templateObject65(){var e=_taggedTemplateLiteral([\":\\u241fd5e281892feed2ccbc7c3135846913de48ed7876\\u241f7925939516256734638: Format \"]);return _templateObject65=function(){return e},e}function _templateObject64(){var e=_taggedTemplateLiteral([\":\\u241fbba44ce85e0028ddbc8b0e38d5a04fabc13c8f61\\u241f342997967009162383: View \"]);return _templateObject64=function(){return e},e}function _templateObject63(){var e=_taggedTemplateLiteral([\":\\u241f94516fa213706c67ce5a5b5765681d7fb032033a\\u241f3894950702316166331:Loading...\"]);return _templateObject63=function(){return e},e}function _templateObject62(){var e=_taggedTemplateLiteral([\":\\u241f244aae9346da82b0922506c2d2581373a15641cc\\u241f4768749765465246664:Email\"]);return _templateObject62=function(){return e},e}function _templateObject61(){var e=_taggedTemplateLiteral([\":\\u241ff381d5239a6369e5f4b8582a35e135c8e3d9dfc8\\u241f1092044965355425322:Gmail\"]);return _templateObject61=function(){return e},e}function _templateObject60(){var e=_taggedTemplateLiteral([\":\\u241f244aae9346da82b0922506c2d2581373a15641cc\\u241f4768749765465246664:Email\"]);return _templateObject60=function(){return e},e}function _templateObject59(){var e=_taggedTemplateLiteral([\":\\u241f244aae9346da82b0922506c2d2581373a15641cc\\u241f4768749765465246664:Email\"]);return _templateObject59=function(){return e},e}function _templateObject58(){var e=_taggedTemplateLiteral([\":\\u241f889e1152e6351fd7607f7547eb5547f6c7a7f3df\\u241f1814818426021413844:Blogging\"]);return _templateObject58=function(){return e},e}function _templateObject57(){var e=_taggedTemplateLiteral([\":\\u241f9ed5758c5418a3aa0ecbf9c043a8d89b96852680\\u241f2394265441963394390:Flipboard\"]);return _templateObject57=function(){return e},e}function _templateObject56(){var e=_taggedTemplateLiteral([\":\\u241f889e1152e6351fd7607f7547eb5547f6c7a7f3df\\u241f1814818426021413844:Blogging\"]);return _templateObject56=function(){return e},e}function _templateObject55(){var e=_taggedTemplateLiteral([\":\\u241f8df49d58c2d6296211e3a4d6a7dcbb2256cad458\\u241f3508115160503405698:Tumblr\"]);return _templateObject55=function(){return e},e}function _templateObject54(){var e=_taggedTemplateLiteral([\":\\u241f81baa3357bebcb29271c8121a87c17915bdbb41f\\u241f3841619436439332072:Social network\"]);return _templateObject54=function(){return e},e}function _templateObject53(){var e=_taggedTemplateLiteral([\":\\u241f77ce98fa8988bd33011b2221a28c373dd35a5db1\\u241f5073753467039594647:Pinterest\"]);return _templateObject53=function(){return e},e}function _templateObject52(){var e=_taggedTemplateLiteral([\":\\u241f81baa3357bebcb29271c8121a87c17915bdbb41f\\u241f3841619436439332072:Social network\"]);return _templateObject52=function(){return e},e}function _templateObject51(){var e=_taggedTemplateLiteral([\":\\u241f99cb827741e93125476a0f5b676372d85d15b5fc\\u241f1715373473261069991:Twitter\"]);return _templateObject51=function(){return e},e}function _templateObject50(){var e=_taggedTemplateLiteral([\":\\u241f81baa3357bebcb29271c8121a87c17915bdbb41f\\u241f3841619436439332072:Social network\"]);return _templateObject50=function(){return e},e}function _templateObject49(){var e=_taggedTemplateLiteral([\":\\u241f838a46816b130c73fe73b96e69176da9eb3b1190\\u241f8790918354594417962:Facebook\"]);return _templateObject49=function(){return e},e}function _templateObject48(){var e=_taggedTemplateLiteral([\":\\u241f81baa3357bebcb29271c8121a87c17915bdbb41f\\u241f3841619436439332072:Social network\"]);return _templateObject48=function(){return e},e}function _templateObject47(){var e=_taggedTemplateLiteral([\":\\u241f6ff575335272d7e0a6843ba597216f8201b57991\\u241f7677669941581940117:Google+\"]);return _templateObject47=function(){return e},e}function _templateObject46(){var e=_taggedTemplateLiteral([\":\\u241fded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e\\u241f4957012645000249772:Read-it-later\"]);return _templateObject46=function(){return e},e}function _templateObject45(){var e=_taggedTemplateLiteral([\":\\u241f3031c36d6183f1bb68d18b5ee4aea8ae31bb0eeb\\u241f8042803930279457976:Pocket\"]);return _templateObject45=function(){return e},e}function _templateObject44(){var e=_taggedTemplateLiteral([\":\\u241fded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e\\u241f4957012645000249772:Read-it-later\"]);return _templateObject44=function(){return e},e}function _templateObject43(){var e=_taggedTemplateLiteral([\":\\u241febe46a6ad0c84110be6b37c800f3d3663eeb6aba\\u241f9204054824887609742:Readability\"]);return _templateObject43=function(){return e},e}function _templateObject42(){var e=_taggedTemplateLiteral([\":\\u241fded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e\\u241f4957012645000249772:Read-it-later\"]);return _templateObject42=function(){return e},e}function _templateObject41(){var e=_taggedTemplateLiteral([\":\\u241f35009adf932b9b5ef2c030703e87fc8837c69eb3\\u241f418690784356586368:Instapaper\"]);return _templateObject41=function(){return e},e}function _templateObject40(){var e=_taggedTemplateLiteral([\":\\u241fded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e\\u241f4957012645000249772:Read-it-later\"]);return _templateObject40=function(){return e},e}function _templateObject39(){var e=_taggedTemplateLiteral([\":\\u241f692e44560646c0bdeea893155ffcc76928378a1e\\u241f7811507103524633661:Evernote\"]);return _templateObject39=function(){return e},e}function _templateObject38(){var e=_taggedTemplateLiteral([\":\\u241f71c77bb8cecdf11ec3eead24dd1ba506573fa9cd\\u241f935187492052582731:Submit\"]);return _templateObject38=function(){return e},e}function _templateObject37(){var e=_taggedTemplateLiteral([\":\\u241fc32ef07f8803a223a83ed17024b38e8d82292407\\u241f1431416938026210429:Password\"]);return _templateObject37=function(){return e},e}function _templateObject36(){var e=_taggedTemplateLiteral([\":\\u241f024886ca34a6f309e3e51c2ed849320592c3faaa\\u241f5312727456282218392:User name\"]);return _templateObject36=function(){return e},e}function _wrapNativeSuper(e){var t=\"function\"==typeof Map?new Map:void 0;return(_wrapNativeSuper=function(e){if(null===e||!_isNativeFunction(e))return e;if(\"function\"!=typeof e)throw new TypeError(\"Super expression must either be null or a function\");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,n)}function n(){return _construct(e,arguments,_getPrototypeOf(this).constructor)}return n.prototype=Object.create(e.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),_setPrototypeOf(n,e)})(e)}function _isNativeFunction(e){return-1!==Function.toString.call(e).indexOf(\"[native code]\")}function _defineProperty(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function _templateObject35(){var e=_taggedTemplateLiteral([\":@@ngb.toast.close-aria\\u241ff4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8\\u241f7819314041543176992:Close\"]);return _templateObject35=function(){return e},e}function _templateObject34(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.AM\\u241f69a1f176a93998876952adac57c3bc3863b6105e\\u241f4592818992509942761:\",\":INTERPOLATION:\"]);return _templateObject34=function(){return e},e}function _templateObject33(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.PM\\u241f8d6e691e10306c1b34c6b26805151aaea320ef7f\\u241f3564199131264287502:\",\":INTERPOLATION:\"]);return _templateObject33=function(){return e},e}function _templateObject32(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.decrement-seconds\\u241f5db47ac104294243a70eb9124fbea9d0004ddf69\\u241f753633511487974857:Decrement seconds\"]);return _templateObject32=function(){return e},e}function _templateObject31(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.increment-seconds\\u241f912322ecee7d659d04dcf494a70e22e49d334b26\\u241f5364772110539092174:Increment seconds\"]);return _templateObject31=function(){return e},e}function _templateObject30(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.seconds\\u241f4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c\\u241f8874012390997067175:Seconds\"]);return _templateObject30=function(){return e},e}function _templateObject29(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.SS\\u241febe38d36a40a2383c5fefa9b4608ffbda08bd4a3\\u241f3628127143071124194:SS\"]);return _templateObject29=function(){return e},e}function _templateObject28(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.decrement-minutes\\u241fc1a6899e529c096da5b660385d4e77fe1f7ad271\\u241f7447789825403243588:Decrement minutes\"]);return _templateObject28=function(){return e},e}function _templateObject27(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.increment-minutes\\u241ff5a4a3bc05e053f6732475d0e74875ec01c3a348\\u241f180147720391025024:Increment minutes\"]);return _templateObject27=function(){return e},e}function _templateObject26(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.decrement-hours\\u241f147c7a19429da7d999e247d22e33fee370b1691b\\u241f3651829882940481818:Decrement hours\"]);return _templateObject26=function(){return e},e}function _templateObject25(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.increment-hours\\u241fcb74bc1d625a6c1742f0d7d47306cf495780c218\\u241f5939278348542933629:Increment hours\"]);return _templateObject25=function(){return e},e}function _templateObject24(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.minutes\\u241f41e62daa962947c0d23ded0981975d1bddf0bf38\\u241f5531237363767747080:Minutes\"]);return _templateObject24=function(){return e},e}function _templateObject23(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.MM\\u241f72c8edf6a50068a05bde70991e36b1e881f4ca54\\u241f1647282246509919852:MM\"]);return _templateObject23=function(){return e},e}function _templateObject22(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.hours\\u241f3bbce5fef7e1151da052a4e529453edb340e3912\\u241f8070396816726827304:Hours\"]);return _templateObject22=function(){return e},e}function _templateObject21(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.HH\\u241fce676ab1d6d98f85c836381cf100a4a91ef95a1f\\u241f4043638465245303811:HH\"]);return _templateObject21=function(){return e},e}function _templateObject20(){var e=_taggedTemplateLiteral([\":@@ngb.progressbar.value\\u241f04d611d19c117c60c9e14d0a04399a027184bc77\\u241f5214781723415385277:\",\":INTERPOLATION:%\"]);return _templateObject20=function(){return e},e}function _templateObject19(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.last-aria\\u241f5c729788ba138508aca1bec050b610f7bf81db3e\\u241f4882268002141858767:Last\"]);return _templateObject19=function(){return e},e}function _templateObject18(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.next-aria\\u241ff732c304c7433e5a83ffcd862c3dce709a0f4982\\u241f3885497195825665706:Next\"]);return _templateObject18=function(){return e},e}function _templateObject17(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.previous-aria\\u241f680d5c75b7fd8d37961083608b9fcdc4167b4c43\\u241f4452427314943113135:Previous\"]);return _templateObject17=function(){return e},e}function _templateObject16(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.first-aria\\u241ff2f852318759c6396b5d3d17031d53817d7b38cc\\u241f2241508602425256033:First\"]);return _templateObject16=function(){return e},e}function _templateObject15(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.last\\u241f49f27a460bc97e7e00be5b37098bfa79884fc7d9\\u241f5277020320267646988:\\xbb\\xbb\"]);return _templateObject15=function(){return e},e}function _templateObject14(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.next\\u241fba9cbb4ff311464308a3627e4f1c3345d9fe6d7d\\u241f5458177150283468089:\\xbb\"]);return _templateObject14=function(){return e},e}function _templateObject13(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.previous\\u241f6e52b6ee77a4848d899dd21b591c6fd499e3aef3\\u241f6479320895410098858:\\xab\"]);return _templateObject13=function(){return e},e}function _templateObject12(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.first\\u241f656506dfd46380956a655f919f1498d018f75ca0\\u241f6867721956102594380:\\xab\\xab\"]);return _templateObject12=function(){return e},e}function _templateObject11(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.select-year\\u241f8ceb09d002bf0c5d1cac171dfbffe1805d2b3962\\u241f8852264961585484321:Select year\"]);return _templateObject11=function(){return e},e}function _templateObject10(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.select-year\\u241f8ceb09d002bf0c5d1cac171dfbffe1805d2b3962\\u241f8852264961585484321:Select year\"]);return _templateObject10=function(){return e},e}function _templateObject9(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.select-month\\u241f1dbc84807f35518112f62e5775d1daebd3d8462b\\u241f2253869508135064750:Select month\"]);return _templateObject9=function(){return e},e}function _templateObject8(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.select-month\\u241f1dbc84807f35518112f62e5775d1daebd3d8462b\\u241f2253869508135064750:Select month\"]);return _templateObject8=function(){return e},e}function _templateObject7(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.next-month\\u241f4bd046985cfe13040d5ef0cd881edce0968a111a\\u241f3628374603023447227:Next month\"]);return _templateObject7=function(){return e},e}function _templateObject6(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.next-month\\u241f4bd046985cfe13040d5ef0cd881edce0968a111a\\u241f3628374603023447227:Next month\"]);return _templateObject6=function(){return e},e}function _templateObject5(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.previous-month\\u241fc3b08b07b5ab98e7cdcf18df39355690ab7d3884\\u241f8586908745456864217:Previous month\"]);return _templateObject5=function(){return e},e}function _templateObject4(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.previous-month\\u241fc3b08b07b5ab98e7cdcf18df39355690ab7d3884\\u241f8586908745456864217:Previous month\"]);return _templateObject4=function(){return e},e}function _templateObject3(){var e=_taggedTemplateLiteral([\":@@ngb.carousel.next\\u241ff732c304c7433e5a83ffcd862c3dce709a0f4982\\u241f3885497195825665706:Next\"]);return _templateObject3=function(){return e},e}function _templateObject2(){var e=_taggedTemplateLiteral([\":@@ngb.carousel.previous\\u241f680d5c75b7fd8d37961083608b9fcdc4167b4c43\\u241f4452427314943113135:Previous\"]);return _templateObject2=function(){return e},e}function _templateObject(){var e=_taggedTemplateLiteral([\":@@ngb.alert.close\\u241ff4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8\\u241f7819314041543176992:Close\"]);return _templateObject=function(){return e},e}function _taggedTemplateLiteral(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}function _slicedToArray(e,t){return _arrayWithHoles(e)||_iterableToArrayLimit(e,t)||_unsupportedIterableToArray(e,t)||_nonIterableRest()}function _nonIterableRest(){throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}function _iterableToArrayLimit(e,t){if(\"undefined\"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,i=!1,a=void 0;try{for(var o,s=e[Symbol.iterator]();!(r=(o=s.next()).done)&&(n.push(o.value),!t||n.length!==t);r=!0);}catch(l){i=!0,a=l}finally{try{r||null==s.return||s.return()}finally{if(i)throw a}}return n}}function _arrayWithHoles(e){if(Array.isArray(e))return e}function _toConsumableArray(e){return _arrayWithoutHoles(e)||_iterableToArray(e)||_unsupportedIterableToArray(e)||_nonIterableSpread()}function _nonIterableSpread(){throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}function _iterableToArray(e){if(\"undefined\"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}function _arrayWithoutHoles(e){if(Array.isArray(e))return _arrayLikeToArray(e)}function _createForOfIteratorHelper(e){if(\"undefined\"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(e=_unsupportedIterableToArray(e))){var t=0,n=function(){};return{s:n,n:function(){return t>=e.length?{done:!0}:{done:!1,value:e[t++]}},e:function(e){throw e},f:n}}throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}var r,i,a=!0,o=!1;return{s:function(){r=e[Symbol.iterator]()},n:function(){var e=r.next();return a=e.done,e},e:function(e){o=!0,i=e},f:function(){try{a||null==r.return||r.return()}finally{if(o)throw i}}}}function _unsupportedIterableToArray(e,t){if(e){if(\"string\"==typeof e)return _arrayLikeToArray(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return\"Object\"===n&&e.constructor&&(n=e.constructor.name),\"Map\"===n||\"Set\"===n?Array.from(n):\"Arguments\"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?_arrayLikeToArray(e,t):void 0}}function _arrayLikeToArray(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"//9w\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"se\",{months:\"o\\u0111\\u0111ajagem\\xe1nnu_guovvam\\xe1nnu_njuk\\u010dam\\xe1nnu_cuo\\u014bom\\xe1nnu_miessem\\xe1nnu_geassem\\xe1nnu_suoidnem\\xe1nnu_borgem\\xe1nnu_\\u010dak\\u010dam\\xe1nnu_golggotm\\xe1nnu_sk\\xe1bmam\\xe1nnu_juovlam\\xe1nnu\".split(\"_\"),monthsShort:\"o\\u0111\\u0111j_guov_njuk_cuo_mies_geas_suoi_borg_\\u010dak\\u010d_golg_sk\\xe1b_juov\".split(\"_\"),weekdays:\"sotnabeaivi_vuoss\\xe1rga_ma\\u014b\\u014beb\\xe1rga_gaskavahkku_duorastat_bearjadat_l\\xe1vvardat\".split(\"_\"),weekdaysShort:\"sotn_vuos_ma\\u014b_gask_duor_bear_l\\xe1v\".split(\"_\"),weekdaysMin:\"s_v_m_g_d_b_L\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"MMMM D. [b.] YYYY\",LLL:\"MMMM D. [b.] YYYY [ti.] HH:mm\",LLLL:\"dddd, MMMM D. [b.] YYYY [ti.] HH:mm\"},calendar:{sameDay:\"[otne ti] LT\",nextDay:\"[ihttin ti] LT\",nextWeek:\"dddd [ti] LT\",lastDay:\"[ikte ti] LT\",lastWeek:\"[ovddit] dddd [ti] LT\",sameElse:\"L\"},relativeTime:{future:\"%s gea\\u017ees\",past:\"ma\\u014bit %s\",s:\"moadde sekunddat\",ss:\"%d sekunddat\",m:\"okta minuhta\",mm:\"%d minuhtat\",h:\"okta diimmu\",hh:\"%d diimmut\",d:\"okta beaivi\",dd:\"%d beaivvit\",M:\"okta m\\xe1nnu\",MM:\"%d m\\xe1nut\",y:\"okta jahki\",yy:\"%d jagit\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"/X5v\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"x-pseudo\",{months:\"J~\\xe1\\xf1\\xfa\\xe1~r\\xfd_F~\\xe9br\\xfa~\\xe1r\\xfd_~M\\xe1rc~h_\\xc1p~r\\xedl_~M\\xe1\\xfd_~J\\xfa\\xf1\\xe9~_J\\xfal~\\xfd_\\xc1\\xfa~g\\xfast~_S\\xe9p~t\\xe9mb~\\xe9r_\\xd3~ct\\xf3b~\\xe9r_\\xd1~\\xf3v\\xe9m~b\\xe9r_~D\\xe9c\\xe9~mb\\xe9r\".split(\"_\"),monthsShort:\"J~\\xe1\\xf1_~F\\xe9b_~M\\xe1r_~\\xc1pr_~M\\xe1\\xfd_~J\\xfa\\xf1_~J\\xfal_~\\xc1\\xfag_~S\\xe9p_~\\xd3ct_~\\xd1\\xf3v_~D\\xe9c\".split(\"_\"),monthsParseExact:!0,weekdays:\"S~\\xfa\\xf1d\\xe1~\\xfd_M\\xf3~\\xf1d\\xe1\\xfd~_T\\xfa\\xe9~sd\\xe1\\xfd~_W\\xe9d~\\xf1\\xe9sd~\\xe1\\xfd_T~h\\xfars~d\\xe1\\xfd_~Fr\\xedd~\\xe1\\xfd_S~\\xe1t\\xfar~d\\xe1\\xfd\".split(\"_\"),weekdaysShort:\"S~\\xfa\\xf1_~M\\xf3\\xf1_~T\\xfa\\xe9_~W\\xe9d_~Th\\xfa_~Fr\\xed_~S\\xe1t\".split(\"_\"),weekdaysMin:\"S~\\xfa_M\\xf3~_T\\xfa_~W\\xe9_T~h_Fr~_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[T~\\xf3d\\xe1~\\xfd \\xe1t] LT\",nextDay:\"[T~\\xf3m\\xf3~rr\\xf3~w \\xe1t] LT\",nextWeek:\"dddd [\\xe1t] LT\",lastDay:\"[\\xdd~\\xe9st~\\xe9rd\\xe1~\\xfd \\xe1t] LT\",lastWeek:\"[L~\\xe1st] dddd [\\xe1t] LT\",sameElse:\"L\"},relativeTime:{future:\"\\xed~\\xf1 %s\",past:\"%s \\xe1~g\\xf3\",s:\"\\xe1 ~f\\xe9w ~s\\xe9c\\xf3~\\xf1ds\",ss:\"%d s~\\xe9c\\xf3\\xf1~ds\",m:\"\\xe1 ~m\\xed\\xf1~\\xfat\\xe9\",mm:\"%d m~\\xed\\xf1\\xfa~t\\xe9s\",h:\"\\xe1~\\xf1 h\\xf3~\\xfar\",hh:\"%d h~\\xf3\\xfars\",d:\"\\xe1 ~d\\xe1\\xfd\",dd:\"%d d~\\xe1\\xfds\",M:\"\\xe1 ~m\\xf3\\xf1~th\",MM:\"%d m~\\xf3\\xf1t~hs\",y:\"\\xe1 ~\\xfd\\xe9\\xe1r\",yy:\"%d \\xfd~\\xe9\\xe1rs\"},dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},0:function(e,t,n){e.exports=n(\"zUnb\")},\"0mo+\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0f21\",2:\"\\u0f22\",3:\"\\u0f23\",4:\"\\u0f24\",5:\"\\u0f25\",6:\"\\u0f26\",7:\"\\u0f27\",8:\"\\u0f28\",9:\"\\u0f29\",0:\"\\u0f20\"},n={\"\\u0f21\":\"1\",\"\\u0f22\":\"2\",\"\\u0f23\":\"3\",\"\\u0f24\":\"4\",\"\\u0f25\":\"5\",\"\\u0f26\":\"6\",\"\\u0f27\":\"7\",\"\\u0f28\":\"8\",\"\\u0f29\":\"9\",\"\\u0f20\":\"0\"};e.defineLocale(\"bo\",{months:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f44\\u0f0b\\u0f54\\u0f7c_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f66\\u0f74\\u0f58\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f5e\\u0f72\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f63\\u0f94\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0fb2\\u0f74\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f62\\u0f92\\u0fb1\\u0f51\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f42\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54\".split(\"_\"),monthsShort:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f44\\u0f0b\\u0f54\\u0f7c_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f66\\u0f74\\u0f58\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f5e\\u0f72\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f63\\u0f94\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0fb2\\u0f74\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f62\\u0f92\\u0fb1\\u0f51\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f42\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54\".split(\"_\"),weekdays:\"\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),weekdaysShort:\"\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),weekdaysMin:\"\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0f51\\u0f72\\u0f0b\\u0f62\\u0f72\\u0f44] LT\",nextDay:\"[\\u0f66\\u0f44\\u0f0b\\u0f49\\u0f72\\u0f53] LT\",nextWeek:\"[\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f55\\u0fb2\\u0f42\\u0f0b\\u0f62\\u0f97\\u0f7a\\u0f66\\u0f0b\\u0f58], LT\",lastDay:\"[\\u0f41\\u0f0b\\u0f66\\u0f44] LT\",lastWeek:\"[\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f55\\u0fb2\\u0f42\\u0f0b\\u0f58\\u0f50\\u0f60\\u0f0b\\u0f58] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0f63\\u0f0b\",past:\"%s \\u0f66\\u0f94\\u0f53\\u0f0b\\u0f63\",s:\"\\u0f63\\u0f58\\u0f0b\\u0f66\\u0f44\",ss:\"%d \\u0f66\\u0f90\\u0f62\\u0f0b\\u0f46\\u0f0d\",m:\"\\u0f66\\u0f90\\u0f62\\u0f0b\\u0f58\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",mm:\"%d \\u0f66\\u0f90\\u0f62\\u0f0b\\u0f58\",h:\"\\u0f46\\u0f74\\u0f0b\\u0f5a\\u0f7c\\u0f51\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",hh:\"%d \\u0f46\\u0f74\\u0f0b\\u0f5a\\u0f7c\\u0f51\",d:\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",dd:\"%d \\u0f49\\u0f72\\u0f53\\u0f0b\",M:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",MM:\"%d \\u0f5f\\u0fb3\\u0f0b\\u0f56\",y:\"\\u0f63\\u0f7c\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",yy:\"%d \\u0f63\\u0f7c\"},preparse:function(e){return e.replace(/[\\u0f21\\u0f22\\u0f23\\u0f24\\u0f25\\u0f26\\u0f27\\u0f28\\u0f29\\u0f20]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c|\\u0f5e\\u0f7c\\u0f42\\u0f66\\u0f0b\\u0f40\\u0f66|\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44|\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42|\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\"===t&&e>=4||\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44\"===t&&e<5||\"\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\":e<10?\"\\u0f5e\\u0f7c\\u0f42\\u0f66\\u0f0b\\u0f40\\u0f66\":e<17?\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44\":e<20?\"\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42\":\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"0tRk\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt-br\",{months:\"Janeiro_Fevereiro_Mar\\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingo_Segunda-feira_Ter\\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\\xe1bado\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ter_Qua_Qui_Sex_S\\xe1b\".split(\"_\"),weekdaysMin:\"Do_2\\xaa_3\\xaa_4\\xaa_5\\xaa_6\\xaa_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY [\\xe0s] HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY [\\xe0s] HH:mm\"},calendar:{sameDay:\"[Hoje \\xe0s] LT\",nextDay:\"[Amanh\\xe3 \\xe0s] LT\",nextWeek:\"dddd [\\xe0s] LT\",lastDay:\"[Ontem \\xe0s] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[\\xdaltimo] dddd [\\xe0s] LT\":\"[\\xdaltima] dddd [\\xe0s] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"h\\xe1 %s\",s:\"poucos segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",M:\"um m\\xeas\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\"})}(n(\"wd/R\"))},\"1rYy\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"hy-am\",{months:{format:\"\\u0570\\u0578\\u0582\\u0576\\u057e\\u0561\\u0580\\u056b_\\u0583\\u0565\\u057f\\u0580\\u057e\\u0561\\u0580\\u056b_\\u0574\\u0561\\u0580\\u057f\\u056b_\\u0561\\u057a\\u0580\\u056b\\u056c\\u056b_\\u0574\\u0561\\u0575\\u056b\\u057d\\u056b_\\u0570\\u0578\\u0582\\u0576\\u056b\\u057d\\u056b_\\u0570\\u0578\\u0582\\u056c\\u056b\\u057d\\u056b_\\u0585\\u0563\\u0578\\u057d\\u057f\\u0578\\u057d\\u056b_\\u057d\\u0565\\u057a\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0570\\u0578\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0576\\u0578\\u0575\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0564\\u0565\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b\".split(\"_\"),standalone:\"\\u0570\\u0578\\u0582\\u0576\\u057e\\u0561\\u0580_\\u0583\\u0565\\u057f\\u0580\\u057e\\u0561\\u0580_\\u0574\\u0561\\u0580\\u057f_\\u0561\\u057a\\u0580\\u056b\\u056c_\\u0574\\u0561\\u0575\\u056b\\u057d_\\u0570\\u0578\\u0582\\u0576\\u056b\\u057d_\\u0570\\u0578\\u0582\\u056c\\u056b\\u057d_\\u0585\\u0563\\u0578\\u057d\\u057f\\u0578\\u057d_\\u057d\\u0565\\u057a\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0570\\u0578\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0576\\u0578\\u0575\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0564\\u0565\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\".split(\"_\")},monthsShort:\"\\u0570\\u0576\\u057e_\\u0583\\u057f\\u0580_\\u0574\\u0580\\u057f_\\u0561\\u057a\\u0580_\\u0574\\u0575\\u057d_\\u0570\\u0576\\u057d_\\u0570\\u056c\\u057d_\\u0585\\u0563\\u057d_\\u057d\\u057a\\u057f_\\u0570\\u056f\\u057f_\\u0576\\u0574\\u0562_\\u0564\\u056f\\u057f\".split(\"_\"),weekdays:\"\\u056f\\u056b\\u0580\\u0561\\u056f\\u056b_\\u0565\\u0580\\u056f\\u0578\\u0582\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0565\\u0580\\u0565\\u0584\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0579\\u0578\\u0580\\u0565\\u0584\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0570\\u056b\\u0576\\u0563\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0578\\u0582\\u0580\\u0562\\u0561\\u0569_\\u0577\\u0561\\u0562\\u0561\\u0569\".split(\"_\"),weekdaysShort:\"\\u056f\\u0580\\u056f_\\u0565\\u0580\\u056f_\\u0565\\u0580\\u0584_\\u0579\\u0580\\u0584_\\u0570\\u0576\\u0563_\\u0578\\u0582\\u0580\\u0562_\\u0577\\u0562\\u0569\".split(\"_\"),weekdaysMin:\"\\u056f\\u0580\\u056f_\\u0565\\u0580\\u056f_\\u0565\\u0580\\u0584_\\u0579\\u0580\\u0584_\\u0570\\u0576\\u0563_\\u0578\\u0582\\u0580\\u0562_\\u0577\\u0562\\u0569\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0569.\",LLL:\"D MMMM YYYY \\u0569., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0569., HH:mm\"},calendar:{sameDay:\"[\\u0561\\u0575\\u057d\\u0585\\u0580] LT\",nextDay:\"[\\u057e\\u0561\\u0572\\u0568] LT\",lastDay:\"[\\u0565\\u0580\\u0565\\u056f] LT\",nextWeek:function(){return\"dddd [\\u0585\\u0580\\u0568 \\u056a\\u0561\\u0574\\u0568] LT\"},lastWeek:function(){return\"[\\u0561\\u0576\\u0581\\u0561\\u056e] dddd [\\u0585\\u0580\\u0568 \\u056a\\u0561\\u0574\\u0568] LT\"},sameElse:\"L\"},relativeTime:{future:\"%s \\u0570\\u0565\\u057f\\u0578\",past:\"%s \\u0561\\u057c\\u0561\\u057b\",s:\"\\u0574\\u056b \\u0584\\u0561\\u0576\\u056b \\u057e\\u0561\\u0575\\u0580\\u056f\\u0575\\u0561\\u0576\",ss:\"%d \\u057e\\u0561\\u0575\\u0580\\u056f\\u0575\\u0561\\u0576\",m:\"\\u0580\\u0578\\u057a\\u0565\",mm:\"%d \\u0580\\u0578\\u057a\\u0565\",h:\"\\u056a\\u0561\\u0574\",hh:\"%d \\u056a\\u0561\\u0574\",d:\"\\u0585\\u0580\",dd:\"%d \\u0585\\u0580\",M:\"\\u0561\\u0574\\u056b\\u057d\",MM:\"%d \\u0561\\u0574\\u056b\\u057d\",y:\"\\u057f\\u0561\\u0580\\u056b\",yy:\"%d \\u057f\\u0561\\u0580\\u056b\"},meridiemParse:/\\u0563\\u056b\\u0577\\u0565\\u0580\\u057e\\u0561|\\u0561\\u057c\\u0561\\u057e\\u0578\\u057f\\u057e\\u0561|\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561|\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576/,isPM:function(e){return/^(\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561|\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576)$/.test(e)},meridiem:function(e){return e<4?\"\\u0563\\u056b\\u0577\\u0565\\u0580\\u057e\\u0561\":e<12?\"\\u0561\\u057c\\u0561\\u057e\\u0578\\u057f\\u057e\\u0561\":e<17?\"\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561\":\"\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576\"},dayOfMonthOrdinalParse:/\\d{1,2}|\\d{1,2}-(\\u056b\\u0576|\\u0580\\u0564)/,ordinal:function(e,t){switch(t){case\"DDD\":case\"w\":case\"W\":case\"DDDo\":return 1===e?e+\"-\\u056b\\u0576\":e+\"-\\u0580\\u0564\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"1xZ4\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ca\",{months:{standalone:\"gener_febrer_mar\\xe7_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre\".split(\"_\"),format:\"de gener_de febrer_de mar\\xe7_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre\".split(\"_\"),isFormat:/D[oD]?(\\s)+MMMM/},monthsShort:\"gen._febr._mar\\xe7_abr._maig_juny_jul._ag._set._oct._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte\".split(\"_\"),weekdaysShort:\"dg._dl._dt._dc._dj._dv._ds.\".split(\"_\"),weekdaysMin:\"dg_dl_dt_dc_dj_dv_ds\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [de] YYYY\",ll:\"D MMM YYYY\",LLL:\"D MMMM [de] YYYY [a les] H:mm\",lll:\"D MMM YYYY, H:mm\",LLLL:\"dddd D MMMM [de] YYYY [a les] H:mm\",llll:\"ddd D MMM YYYY, H:mm\"},calendar:{sameDay:function(){return\"[avui a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextDay:function(){return\"[dem\\xe0 a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextWeek:function(){return\"dddd [a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastDay:function(){return\"[ahir a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [passat a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"d'aqu\\xed %s\",past:\"fa %s\",s:\"uns segons\",ss:\"%d segons\",m:\"un minut\",mm:\"%d minuts\",h:\"una hora\",hh:\"%d hores\",d:\"un dia\",dd:\"%d dies\",M:\"un mes\",MM:\"%d mesos\",y:\"un any\",yy:\"%d anys\"},dayOfMonthOrdinalParse:/\\d{1,2}(r|n|t|\\xe8|a)/,ordinal:function(e,t){var n=1===e?\"r\":2===e?\"n\":3===e?\"r\":4===e?\"t\":\"\\xe8\";return\"w\"!==t&&\"W\"!==t||(n=\"a\"),e+n},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"2fjn\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ca\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}}})}(n(\"wd/R\"))},\"2ykv\":function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),n=\"jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),r=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],i=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\\.?|feb\\.?|mrt\\.?|apr\\.?|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i;e.defineLocale(\"nl-be\",{months:\"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december\".split(\"_\"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\\.?|feb\\.?|mrt\\.?|apr\\.?|mei|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:\"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag\".split(\"_\"),weekdaysShort:\"zo._ma._di._wo._do._vr._za.\".split(\"_\"),weekdaysMin:\"zo_ma_di_wo_do_vr_za\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[vandaag om] LT\",nextDay:\"[morgen om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[gisteren om] LT\",lastWeek:\"[afgelopen] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"over %s\",past:\"%s geleden\",s:\"een paar seconden\",ss:\"%d seconden\",m:\"\\xe9\\xe9n minuut\",mm:\"%d minuten\",h:\"\\xe9\\xe9n uur\",hh:\"%d uur\",d:\"\\xe9\\xe9n dag\",dd:\"%d dagen\",M:\"\\xe9\\xe9n maand\",MM:\"%d maanden\",y:\"\\xe9\\xe9n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"3E1r\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};e.defineLocale(\"hi\",{months:\"\\u091c\\u0928\\u0935\\u0930\\u0940_\\u092b\\u093c\\u0930\\u0935\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u0948\\u0932_\\u092e\\u0908_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908_\\u0905\\u0917\\u0938\\u094d\\u0924_\\u0938\\u093f\\u0924\\u092e\\u094d\\u092c\\u0930_\\u0905\\u0915\\u094d\\u091f\\u0942\\u092c\\u0930_\\u0928\\u0935\\u092e\\u094d\\u092c\\u0930_\\u0926\\u093f\\u0938\\u092e\\u094d\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u0928._\\u092b\\u093c\\u0930._\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u0948._\\u092e\\u0908_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932._\\u0905\\u0917._\\u0938\\u093f\\u0924._\\u0905\\u0915\\u094d\\u091f\\u0942._\\u0928\\u0935._\\u0926\\u093f\\u0938.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0930\\u0935\\u093f\\u0935\\u093e\\u0930_\\u0938\\u094b\\u092e\\u0935\\u093e\\u0930_\\u092e\\u0902\\u0917\\u0932\\u0935\\u093e\\u0930_\\u092c\\u0941\\u0927\\u0935\\u093e\\u0930_\\u0917\\u0941\\u0930\\u0942\\u0935\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u0935\\u093e\\u0930_\\u0936\\u0928\\u093f\\u0935\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0930\\u0935\\u093f_\\u0938\\u094b\\u092e_\\u092e\\u0902\\u0917\\u0932_\\u092c\\u0941\\u0927_\\u0917\\u0941\\u0930\\u0942_\\u0936\\u0941\\u0915\\u094d\\u0930_\\u0936\\u0928\\u093f\".split(\"_\"),weekdaysMin:\"\\u0930_\\u0938\\u094b_\\u092e\\u0902_\\u092c\\u0941_\\u0917\\u0941_\\u0936\\u0941_\\u0936\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u092c\\u091c\\u0947\",LTS:\"A h:mm:ss \\u092c\\u091c\\u0947\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u092c\\u091c\\u0947\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u092c\\u091c\\u0947\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u0915\\u0932] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0915\\u0932] LT\",lastWeek:\"[\\u092a\\u093f\\u091b\\u0932\\u0947] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u092e\\u0947\\u0902\",past:\"%s \\u092a\\u0939\\u0932\\u0947\",s:\"\\u0915\\u0941\\u091b \\u0939\\u0940 \\u0915\\u094d\\u0937\\u0923\",ss:\"%d \\u0938\\u0947\\u0915\\u0902\\u0921\",m:\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u091f\",mm:\"%d \\u092e\\u093f\\u0928\\u091f\",h:\"\\u090f\\u0915 \\u0918\\u0902\\u091f\\u093e\",hh:\"%d \\u0918\\u0902\\u091f\\u0947\",d:\"\\u090f\\u0915 \\u0926\\u093f\\u0928\",dd:\"%d \\u0926\\u093f\\u0928\",M:\"\\u090f\\u0915 \\u092e\\u0939\\u0940\\u0928\\u0947\",MM:\"%d \\u092e\\u0939\\u0940\\u0928\\u0947\",y:\"\\u090f\\u0915 \\u0935\\u0930\\u094d\\u0937\",yy:\"%d \\u0935\\u0930\\u094d\\u0937\"},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924|\\u0938\\u0941\\u092c\\u0939|\\u0926\\u094b\\u092a\\u0939\\u0930|\\u0936\\u093e\\u092e/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\"===t?e<4?e:e+12:\"\\u0938\\u0941\\u092c\\u0939\"===t?e:\"\\u0926\\u094b\\u092a\\u0939\\u0930\"===t?e>=10?e:e+12:\"\\u0936\\u093e\\u092e\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0930\\u093e\\u0924\":e<10?\"\\u0938\\u0941\\u092c\\u0939\":e<17?\"\\u0926\\u094b\\u092a\\u0939\\u0930\":e<20?\"\\u0936\\u093e\\u092e\":\"\\u0930\\u093e\\u0924\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"4MV3\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0ae7\",2:\"\\u0ae8\",3:\"\\u0ae9\",4:\"\\u0aea\",5:\"\\u0aeb\",6:\"\\u0aec\",7:\"\\u0aed\",8:\"\\u0aee\",9:\"\\u0aef\",0:\"\\u0ae6\"},n={\"\\u0ae7\":\"1\",\"\\u0ae8\":\"2\",\"\\u0ae9\":\"3\",\"\\u0aea\":\"4\",\"\\u0aeb\":\"5\",\"\\u0aec\":\"6\",\"\\u0aed\":\"7\",\"\\u0aee\":\"8\",\"\\u0aef\":\"9\",\"\\u0ae6\":\"0\"};e.defineLocale(\"gu\",{months:\"\\u0a9c\\u0abe\\u0aa8\\u0acd\\u0aaf\\u0ac1\\u0a86\\u0ab0\\u0ac0_\\u0aab\\u0ac7\\u0aac\\u0acd\\u0ab0\\u0ac1\\u0a86\\u0ab0\\u0ac0_\\u0aae\\u0abe\\u0ab0\\u0acd\\u0a9a_\\u0a8f\\u0aaa\\u0acd\\u0ab0\\u0abf\\u0ab2_\\u0aae\\u0ac7_\\u0a9c\\u0ac2\\u0aa8_\\u0a9c\\u0ac1\\u0ab2\\u0abe\\u0a88_\\u0a91\\u0a97\\u0ab8\\u0acd\\u0a9f_\\u0ab8\\u0aaa\\u0acd\\u0a9f\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0_\\u0a91\\u0a95\\u0acd\\u0a9f\\u0acd\\u0aac\\u0ab0_\\u0aa8\\u0ab5\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0_\\u0aa1\\u0abf\\u0ab8\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0\".split(\"_\"),monthsShort:\"\\u0a9c\\u0abe\\u0aa8\\u0acd\\u0aaf\\u0ac1._\\u0aab\\u0ac7\\u0aac\\u0acd\\u0ab0\\u0ac1._\\u0aae\\u0abe\\u0ab0\\u0acd\\u0a9a_\\u0a8f\\u0aaa\\u0acd\\u0ab0\\u0abf._\\u0aae\\u0ac7_\\u0a9c\\u0ac2\\u0aa8_\\u0a9c\\u0ac1\\u0ab2\\u0abe._\\u0a91\\u0a97._\\u0ab8\\u0aaa\\u0acd\\u0a9f\\u0ac7._\\u0a91\\u0a95\\u0acd\\u0a9f\\u0acd._\\u0aa8\\u0ab5\\u0ac7._\\u0aa1\\u0abf\\u0ab8\\u0ac7.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0ab0\\u0ab5\\u0abf\\u0ab5\\u0abe\\u0ab0_\\u0ab8\\u0acb\\u0aae\\u0ab5\\u0abe\\u0ab0_\\u0aae\\u0a82\\u0a97\\u0ab3\\u0ab5\\u0abe\\u0ab0_\\u0aac\\u0ac1\\u0aa7\\u0acd\\u0ab5\\u0abe\\u0ab0_\\u0a97\\u0ac1\\u0ab0\\u0ac1\\u0ab5\\u0abe\\u0ab0_\\u0ab6\\u0ac1\\u0a95\\u0acd\\u0ab0\\u0ab5\\u0abe\\u0ab0_\\u0ab6\\u0aa8\\u0abf\\u0ab5\\u0abe\\u0ab0\".split(\"_\"),weekdaysShort:\"\\u0ab0\\u0ab5\\u0abf_\\u0ab8\\u0acb\\u0aae_\\u0aae\\u0a82\\u0a97\\u0ab3_\\u0aac\\u0ac1\\u0aa7\\u0acd_\\u0a97\\u0ac1\\u0ab0\\u0ac1_\\u0ab6\\u0ac1\\u0a95\\u0acd\\u0ab0_\\u0ab6\\u0aa8\\u0abf\".split(\"_\"),weekdaysMin:\"\\u0ab0_\\u0ab8\\u0acb_\\u0aae\\u0a82_\\u0aac\\u0ac1_\\u0a97\\u0ac1_\\u0ab6\\u0ac1_\\u0ab6\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",LTS:\"A h:mm:ss \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\"},calendar:{sameDay:\"[\\u0a86\\u0a9c] LT\",nextDay:\"[\\u0a95\\u0abe\\u0ab2\\u0ac7] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0a97\\u0a87\\u0a95\\u0abe\\u0ab2\\u0ac7] LT\",lastWeek:\"[\\u0aaa\\u0abe\\u0a9b\\u0ab2\\u0abe] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0aae\\u0abe\",past:\"%s \\u0aaa\\u0ac7\\u0ab9\\u0ab2\\u0abe\",s:\"\\u0a85\\u0aae\\u0ac1\\u0a95 \\u0aaa\\u0ab3\\u0acb\",ss:\"%d \\u0ab8\\u0ac7\\u0a95\\u0a82\\u0aa1\",m:\"\\u0a8f\\u0a95 \\u0aae\\u0abf\\u0aa8\\u0abf\\u0a9f\",mm:\"%d \\u0aae\\u0abf\\u0aa8\\u0abf\\u0a9f\",h:\"\\u0a8f\\u0a95 \\u0a95\\u0ab2\\u0abe\\u0a95\",hh:\"%d \\u0a95\\u0ab2\\u0abe\\u0a95\",d:\"\\u0a8f\\u0a95 \\u0aa6\\u0abf\\u0ab5\\u0ab8\",dd:\"%d \\u0aa6\\u0abf\\u0ab5\\u0ab8\",M:\"\\u0a8f\\u0a95 \\u0aae\\u0ab9\\u0abf\\u0aa8\\u0acb\",MM:\"%d \\u0aae\\u0ab9\\u0abf\\u0aa8\\u0acb\",y:\"\\u0a8f\\u0a95 \\u0ab5\\u0ab0\\u0acd\\u0ab7\",yy:\"%d \\u0ab5\\u0ab0\\u0acd\\u0ab7\"},preparse:function(e){return e.replace(/[\\u0ae7\\u0ae8\\u0ae9\\u0aea\\u0aeb\\u0aec\\u0aed\\u0aee\\u0aef\\u0ae6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0ab0\\u0abe\\u0aa4|\\u0aac\\u0aaa\\u0acb\\u0ab0|\\u0ab8\\u0ab5\\u0abe\\u0ab0|\\u0ab8\\u0abe\\u0a82\\u0a9c/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0ab0\\u0abe\\u0aa4\"===t?e<4?e:e+12:\"\\u0ab8\\u0ab5\\u0abe\\u0ab0\"===t?e:\"\\u0aac\\u0aaa\\u0acb\\u0ab0\"===t?e>=10?e:e+12:\"\\u0ab8\\u0abe\\u0a82\\u0a9c\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0ab0\\u0abe\\u0aa4\":e<10?\"\\u0ab8\\u0ab5\\u0abe\\u0ab0\":e<17?\"\\u0aac\\u0aaa\\u0acb\\u0ab0\":e<20?\"\\u0ab8\\u0abe\\u0a82\\u0a9c\":\"\\u0ab0\\u0abe\\u0aa4\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"4dOw\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ie\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"6+QB\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"6B0Y\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u17e1\",2:\"\\u17e2\",3:\"\\u17e3\",4:\"\\u17e4\",5:\"\\u17e5\",6:\"\\u17e6\",7:\"\\u17e7\",8:\"\\u17e8\",9:\"\\u17e9\",0:\"\\u17e0\"},n={\"\\u17e1\":\"1\",\"\\u17e2\":\"2\",\"\\u17e3\":\"3\",\"\\u17e4\":\"4\",\"\\u17e5\":\"5\",\"\\u17e6\":\"6\",\"\\u17e7\":\"7\",\"\\u17e8\":\"8\",\"\\u17e9\":\"9\",\"\\u17e0\":\"0\"};e.defineLocale(\"km\",{months:\"\\u1798\\u1780\\u179a\\u17b6_\\u1780\\u17bb\\u1798\\u17d2\\u1797\\u17c8_\\u1798\\u17b8\\u1793\\u17b6_\\u1798\\u17c1\\u179f\\u17b6_\\u17a7\\u179f\\u1797\\u17b6_\\u1798\\u17b7\\u1790\\u17bb\\u1793\\u17b6_\\u1780\\u1780\\u17d2\\u1780\\u178a\\u17b6_\\u179f\\u17b8\\u17a0\\u17b6_\\u1780\\u1789\\u17d2\\u1789\\u17b6_\\u178f\\u17bb\\u179b\\u17b6_\\u179c\\u17b7\\u1785\\u17d2\\u1786\\u17b7\\u1780\\u17b6_\\u1792\\u17d2\\u1793\\u17bc\".split(\"_\"),monthsShort:\"\\u1798\\u1780\\u179a\\u17b6_\\u1780\\u17bb\\u1798\\u17d2\\u1797\\u17c8_\\u1798\\u17b8\\u1793\\u17b6_\\u1798\\u17c1\\u179f\\u17b6_\\u17a7\\u179f\\u1797\\u17b6_\\u1798\\u17b7\\u1790\\u17bb\\u1793\\u17b6_\\u1780\\u1780\\u17d2\\u1780\\u178a\\u17b6_\\u179f\\u17b8\\u17a0\\u17b6_\\u1780\\u1789\\u17d2\\u1789\\u17b6_\\u178f\\u17bb\\u179b\\u17b6_\\u179c\\u17b7\\u1785\\u17d2\\u1786\\u17b7\\u1780\\u17b6_\\u1792\\u17d2\\u1793\\u17bc\".split(\"_\"),weekdays:\"\\u17a2\\u17b6\\u1791\\u17b7\\u178f\\u17d2\\u1799_\\u1785\\u17d0\\u1793\\u17d2\\u1791_\\u17a2\\u1784\\u17d2\\u1782\\u17b6\\u179a_\\u1796\\u17bb\\u1792_\\u1796\\u17d2\\u179a\\u17a0\\u179f\\u17d2\\u1794\\u178f\\u17b7\\u17cd_\\u179f\\u17bb\\u1780\\u17d2\\u179a_\\u179f\\u17c5\\u179a\\u17cd\".split(\"_\"),weekdaysShort:\"\\u17a2\\u17b6_\\u1785_\\u17a2_\\u1796_\\u1796\\u17d2\\u179a_\\u179f\\u17bb_\\u179f\".split(\"_\"),weekdaysMin:\"\\u17a2\\u17b6_\\u1785_\\u17a2_\\u1796_\\u1796\\u17d2\\u179a_\\u179f\\u17bb_\\u179f\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u1796\\u17d2\\u179a\\u17b9\\u1780|\\u179b\\u17d2\\u1784\\u17b6\\u1785/,isPM:function(e){return\"\\u179b\\u17d2\\u1784\\u17b6\\u1785\"===e},meridiem:function(e,t,n){return e<12?\"\\u1796\\u17d2\\u179a\\u17b9\\u1780\":\"\\u179b\\u17d2\\u1784\\u17b6\\u1785\"},calendar:{sameDay:\"[\\u1790\\u17d2\\u1784\\u17c3\\u1793\\u17c1\\u17c7 \\u1798\\u17c9\\u17c4\\u1784] LT\",nextDay:\"[\\u179f\\u17d2\\u17a2\\u17c2\\u1780 \\u1798\\u17c9\\u17c4\\u1784] LT\",nextWeek:\"dddd [\\u1798\\u17c9\\u17c4\\u1784] LT\",lastDay:\"[\\u1798\\u17d2\\u179f\\u17b7\\u179b\\u1798\\u17b7\\u1789 \\u1798\\u17c9\\u17c4\\u1784] LT\",lastWeek:\"dddd [\\u179f\\u1794\\u17d2\\u178f\\u17b6\\u17a0\\u17cd\\u1798\\u17bb\\u1793] [\\u1798\\u17c9\\u17c4\\u1784] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u1791\\u17c0\\u178f\",past:\"%s\\u1798\\u17bb\\u1793\",s:\"\\u1794\\u17c9\\u17bb\\u1793\\u17d2\\u1798\\u17b6\\u1793\\u179c\\u17b7\\u1793\\u17b6\\u1791\\u17b8\",ss:\"%d \\u179c\\u17b7\\u1793\\u17b6\\u1791\\u17b8\",m:\"\\u1798\\u17bd\\u1799\\u1793\\u17b6\\u1791\\u17b8\",mm:\"%d \\u1793\\u17b6\\u1791\\u17b8\",h:\"\\u1798\\u17bd\\u1799\\u1798\\u17c9\\u17c4\\u1784\",hh:\"%d \\u1798\\u17c9\\u17c4\\u1784\",d:\"\\u1798\\u17bd\\u1799\\u1790\\u17d2\\u1784\\u17c3\",dd:\"%d \\u1790\\u17d2\\u1784\\u17c3\",M:\"\\u1798\\u17bd\\u1799\\u1781\\u17c2\",MM:\"%d \\u1781\\u17c2\",y:\"\\u1798\\u17bd\\u1799\\u1786\\u17d2\\u1793\\u17b6\\u17c6\",yy:\"%d \\u1786\\u17d2\\u1793\\u17b6\\u17c6\"},dayOfMonthOrdinalParse:/\\u1791\\u17b8\\d{1,2}/,ordinal:\"\\u1791\\u17b8%d\",preparse:function(e){return e.replace(/[\\u17e1\\u17e2\\u17e3\\u17e4\\u17e5\\u17e6\\u17e7\\u17e8\\u17e9\\u17e0]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"7BjC\":function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={s:[\"m\\xf5ne sekundi\",\"m\\xf5ni sekund\",\"paar sekundit\"],ss:[e+\"sekundi\",e+\"sekundit\"],m:[\"\\xfche minuti\",\"\\xfcks minut\"],mm:[e+\" minuti\",e+\" minutit\"],h:[\"\\xfche tunni\",\"tund aega\",\"\\xfcks tund\"],hh:[e+\" tunni\",e+\" tundi\"],d:[\"\\xfche p\\xe4eva\",\"\\xfcks p\\xe4ev\"],M:[\"kuu aja\",\"kuu aega\",\"\\xfcks kuu\"],MM:[e+\" kuu\",e+\" kuud\"],y:[\"\\xfche aasta\",\"aasta\",\"\\xfcks aasta\"],yy:[e+\" aasta\",e+\" aastat\"]};return t?i[n][2]?i[n][2]:i[n][1]:r?i[n][0]:i[n][1]}e.defineLocale(\"et\",{months:\"jaanuar_veebruar_m\\xe4rts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember\".split(\"_\"),monthsShort:\"jaan_veebr_m\\xe4rts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets\".split(\"_\"),weekdays:\"p\\xfchap\\xe4ev_esmasp\\xe4ev_teisip\\xe4ev_kolmap\\xe4ev_neljap\\xe4ev_reede_laup\\xe4ev\".split(\"_\"),weekdaysShort:\"P_E_T_K_N_R_L\".split(\"_\"),weekdaysMin:\"P_E_T_K_N_R_L\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[T\\xe4na,] LT\",nextDay:\"[Homme,] LT\",nextWeek:\"[J\\xe4rgmine] dddd LT\",lastDay:\"[Eile,] LT\",lastWeek:\"[Eelmine] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s p\\xe4rast\",past:\"%s tagasi\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:\"%d p\\xe4eva\",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"7aV9\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"si\",{months:\"\\u0da2\\u0db1\\u0dc0\\u0dcf\\u0dbb\\u0dd2_\\u0db4\\u0dd9\\u0db6\\u0dbb\\u0dc0\\u0dcf\\u0dbb\\u0dd2_\\u0db8\\u0dcf\\u0dbb\\u0dca\\u0dad\\u0dd4_\\u0d85\\u0db4\\u0dca\\u200d\\u0dbb\\u0dda\\u0dbd\\u0dca_\\u0db8\\u0dd0\\u0dba\\u0dd2_\\u0da2\\u0dd6\\u0db1\\u0dd2_\\u0da2\\u0dd6\\u0dbd\\u0dd2_\\u0d85\\u0d9c\\u0ddd\\u0dc3\\u0dca\\u0dad\\u0dd4_\\u0dc3\\u0dd0\\u0db4\\u0dca\\u0dad\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca_\\u0d94\\u0d9a\\u0dca\\u0dad\\u0ddd\\u0db6\\u0dbb\\u0dca_\\u0db1\\u0ddc\\u0dc0\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca_\\u0daf\\u0dd9\\u0dc3\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca\".split(\"_\"),monthsShort:\"\\u0da2\\u0db1_\\u0db4\\u0dd9\\u0db6_\\u0db8\\u0dcf\\u0dbb\\u0dca_\\u0d85\\u0db4\\u0dca_\\u0db8\\u0dd0\\u0dba\\u0dd2_\\u0da2\\u0dd6\\u0db1\\u0dd2_\\u0da2\\u0dd6\\u0dbd\\u0dd2_\\u0d85\\u0d9c\\u0ddd_\\u0dc3\\u0dd0\\u0db4\\u0dca_\\u0d94\\u0d9a\\u0dca_\\u0db1\\u0ddc\\u0dc0\\u0dd0_\\u0daf\\u0dd9\\u0dc3\\u0dd0\".split(\"_\"),weekdays:\"\\u0d89\\u0dbb\\u0dd2\\u0daf\\u0dcf_\\u0dc3\\u0db3\\u0dd4\\u0daf\\u0dcf_\\u0d85\\u0d9f\\u0dc4\\u0dbb\\u0dd4\\u0dc0\\u0dcf\\u0daf\\u0dcf_\\u0db6\\u0daf\\u0dcf\\u0daf\\u0dcf_\\u0db6\\u0dca\\u200d\\u0dbb\\u0dc4\\u0dc3\\u0dca\\u0db4\\u0dad\\u0dd2\\u0db1\\u0dca\\u0daf\\u0dcf_\\u0dc3\\u0dd2\\u0d9a\\u0dd4\\u0dbb\\u0dcf\\u0daf\\u0dcf_\\u0dc3\\u0dd9\\u0db1\\u0dc3\\u0dd4\\u0dbb\\u0dcf\\u0daf\\u0dcf\".split(\"_\"),weekdaysShort:\"\\u0d89\\u0dbb\\u0dd2_\\u0dc3\\u0db3\\u0dd4_\\u0d85\\u0d9f_\\u0db6\\u0daf\\u0dcf_\\u0db6\\u0dca\\u200d\\u0dbb\\u0dc4_\\u0dc3\\u0dd2\\u0d9a\\u0dd4_\\u0dc3\\u0dd9\\u0db1\".split(\"_\"),weekdaysMin:\"\\u0d89_\\u0dc3_\\u0d85_\\u0db6_\\u0db6\\u0dca\\u200d\\u0dbb_\\u0dc3\\u0dd2_\\u0dc3\\u0dd9\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"a h:mm\",LTS:\"a h:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY MMMM D\",LLL:\"YYYY MMMM D, a h:mm\",LLLL:\"YYYY MMMM D [\\u0dc0\\u0dd0\\u0db1\\u0dd2] dddd, a h:mm:ss\"},calendar:{sameDay:\"[\\u0d85\\u0daf] LT[\\u0da7]\",nextDay:\"[\\u0dc4\\u0dd9\\u0da7] LT[\\u0da7]\",nextWeek:\"dddd LT[\\u0da7]\",lastDay:\"[\\u0d8a\\u0dba\\u0dda] LT[\\u0da7]\",lastWeek:\"[\\u0db4\\u0dc3\\u0dd4\\u0d9c\\u0dd2\\u0dba] dddd LT[\\u0da7]\",sameElse:\"L\"},relativeTime:{future:\"%s\\u0d9a\\u0dd2\\u0db1\\u0dca\",past:\"%s\\u0d9a\\u0da7 \\u0db4\\u0dd9\\u0dbb\",s:\"\\u0dad\\u0dad\\u0dca\\u0db4\\u0dbb \\u0d9a\\u0dd2\\u0dc4\\u0dd2\\u0db4\\u0dba\",ss:\"\\u0dad\\u0dad\\u0dca\\u0db4\\u0dbb %d\",m:\"\\u0db8\\u0dd2\\u0db1\\u0dd2\\u0dad\\u0dca\\u0dad\\u0dd4\\u0dc0\",mm:\"\\u0db8\\u0dd2\\u0db1\\u0dd2\\u0dad\\u0dca\\u0dad\\u0dd4 %d\",h:\"\\u0db4\\u0dd0\\u0dba\",hh:\"\\u0db4\\u0dd0\\u0dba %d\",d:\"\\u0daf\\u0dd2\\u0db1\\u0dba\",dd:\"\\u0daf\\u0dd2\\u0db1 %d\",M:\"\\u0db8\\u0dcf\\u0dc3\\u0dba\",MM:\"\\u0db8\\u0dcf\\u0dc3 %d\",y:\"\\u0dc0\\u0dc3\\u0dbb\",yy:\"\\u0dc0\\u0dc3\\u0dbb %d\"},dayOfMonthOrdinalParse:/\\d{1,2} \\u0dc0\\u0dd0\\u0db1\\u0dd2/,ordinal:function(e){return e+\" \\u0dc0\\u0dd0\\u0db1\\u0dd2\"},meridiemParse:/\\u0db4\\u0dd9\\u0dbb \\u0dc0\\u0dbb\\u0dd4|\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4|\\u0db4\\u0dd9.\\u0dc0|\\u0db4.\\u0dc0./,isPM:function(e){return\"\\u0db4.\\u0dc0.\"===e||\"\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4\"===e},meridiem:function(e,t,n){return e>11?n?\"\\u0db4.\\u0dc0.\":\"\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4\":n?\"\\u0db4\\u0dd9.\\u0dc0.\":\"\\u0db4\\u0dd9\\u0dbb \\u0dc0\\u0dbb\\u0dd4\"}})}(n(\"wd/R\"))},\"8/+R\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0a67\",2:\"\\u0a68\",3:\"\\u0a69\",4:\"\\u0a6a\",5:\"\\u0a6b\",6:\"\\u0a6c\",7:\"\\u0a6d\",8:\"\\u0a6e\",9:\"\\u0a6f\",0:\"\\u0a66\"},n={\"\\u0a67\":\"1\",\"\\u0a68\":\"2\",\"\\u0a69\":\"3\",\"\\u0a6a\":\"4\",\"\\u0a6b\":\"5\",\"\\u0a6c\":\"6\",\"\\u0a6d\":\"7\",\"\\u0a6e\":\"8\",\"\\u0a6f\":\"9\",\"\\u0a66\":\"0\"};e.defineLocale(\"pa-in\",{months:\"\\u0a1c\\u0a28\\u0a35\\u0a30\\u0a40_\\u0a2b\\u0a3c\\u0a30\\u0a35\\u0a30\\u0a40_\\u0a2e\\u0a3e\\u0a30\\u0a1a_\\u0a05\\u0a2a\\u0a4d\\u0a30\\u0a48\\u0a32_\\u0a2e\\u0a08_\\u0a1c\\u0a42\\u0a28_\\u0a1c\\u0a41\\u0a32\\u0a3e\\u0a08_\\u0a05\\u0a17\\u0a38\\u0a24_\\u0a38\\u0a24\\u0a70\\u0a2c\\u0a30_\\u0a05\\u0a15\\u0a24\\u0a42\\u0a2c\\u0a30_\\u0a28\\u0a35\\u0a70\\u0a2c\\u0a30_\\u0a26\\u0a38\\u0a70\\u0a2c\\u0a30\".split(\"_\"),monthsShort:\"\\u0a1c\\u0a28\\u0a35\\u0a30\\u0a40_\\u0a2b\\u0a3c\\u0a30\\u0a35\\u0a30\\u0a40_\\u0a2e\\u0a3e\\u0a30\\u0a1a_\\u0a05\\u0a2a\\u0a4d\\u0a30\\u0a48\\u0a32_\\u0a2e\\u0a08_\\u0a1c\\u0a42\\u0a28_\\u0a1c\\u0a41\\u0a32\\u0a3e\\u0a08_\\u0a05\\u0a17\\u0a38\\u0a24_\\u0a38\\u0a24\\u0a70\\u0a2c\\u0a30_\\u0a05\\u0a15\\u0a24\\u0a42\\u0a2c\\u0a30_\\u0a28\\u0a35\\u0a70\\u0a2c\\u0a30_\\u0a26\\u0a38\\u0a70\\u0a2c\\u0a30\".split(\"_\"),weekdays:\"\\u0a10\\u0a24\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a4b\\u0a2e\\u0a35\\u0a3e\\u0a30_\\u0a2e\\u0a70\\u0a17\\u0a32\\u0a35\\u0a3e\\u0a30_\\u0a2c\\u0a41\\u0a27\\u0a35\\u0a3e\\u0a30_\\u0a35\\u0a40\\u0a30\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a71\\u0a15\\u0a30\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\\u0a1a\\u0a30\\u0a35\\u0a3e\\u0a30\".split(\"_\"),weekdaysShort:\"\\u0a10\\u0a24_\\u0a38\\u0a4b\\u0a2e_\\u0a2e\\u0a70\\u0a17\\u0a32_\\u0a2c\\u0a41\\u0a27_\\u0a35\\u0a40\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a15\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\".split(\"_\"),weekdaysMin:\"\\u0a10\\u0a24_\\u0a38\\u0a4b\\u0a2e_\\u0a2e\\u0a70\\u0a17\\u0a32_\\u0a2c\\u0a41\\u0a27_\\u0a35\\u0a40\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a15\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0a35\\u0a1c\\u0a47\",LTS:\"A h:mm:ss \\u0a35\\u0a1c\\u0a47\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0a35\\u0a1c\\u0a47\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0a35\\u0a1c\\u0a47\"},calendar:{sameDay:\"[\\u0a05\\u0a1c] LT\",nextDay:\"[\\u0a15\\u0a32] LT\",nextWeek:\"[\\u0a05\\u0a17\\u0a32\\u0a3e] dddd, LT\",lastDay:\"[\\u0a15\\u0a32] LT\",lastWeek:\"[\\u0a2a\\u0a3f\\u0a1b\\u0a32\\u0a47] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0a35\\u0a3f\\u0a71\\u0a1a\",past:\"%s \\u0a2a\\u0a3f\\u0a1b\\u0a32\\u0a47\",s:\"\\u0a15\\u0a41\\u0a1d \\u0a38\\u0a15\\u0a3f\\u0a70\\u0a1f\",ss:\"%d \\u0a38\\u0a15\\u0a3f\\u0a70\\u0a1f\",m:\"\\u0a07\\u0a15 \\u0a2e\\u0a3f\\u0a70\\u0a1f\",mm:\"%d \\u0a2e\\u0a3f\\u0a70\\u0a1f\",h:\"\\u0a07\\u0a71\\u0a15 \\u0a18\\u0a70\\u0a1f\\u0a3e\",hh:\"%d \\u0a18\\u0a70\\u0a1f\\u0a47\",d:\"\\u0a07\\u0a71\\u0a15 \\u0a26\\u0a3f\\u0a28\",dd:\"%d \\u0a26\\u0a3f\\u0a28\",M:\"\\u0a07\\u0a71\\u0a15 \\u0a2e\\u0a39\\u0a40\\u0a28\\u0a3e\",MM:\"%d \\u0a2e\\u0a39\\u0a40\\u0a28\\u0a47\",y:\"\\u0a07\\u0a71\\u0a15 \\u0a38\\u0a3e\\u0a32\",yy:\"%d \\u0a38\\u0a3e\\u0a32\"},preparse:function(e){return e.replace(/[\\u0a67\\u0a68\\u0a69\\u0a6a\\u0a6b\\u0a6c\\u0a6d\\u0a6e\\u0a6f\\u0a66]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0a30\\u0a3e\\u0a24|\\u0a38\\u0a35\\u0a47\\u0a30|\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30|\\u0a38\\u0a3c\\u0a3e\\u0a2e/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0a30\\u0a3e\\u0a24\"===t?e<4?e:e+12:\"\\u0a38\\u0a35\\u0a47\\u0a30\"===t?e:\"\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30\"===t?e>=10?e:e+12:\"\\u0a38\\u0a3c\\u0a3e\\u0a2e\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0a30\\u0a3e\\u0a24\":e<10?\"\\u0a38\\u0a35\\u0a47\\u0a30\":e<17?\"\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30\":e<20?\"\\u0a38\\u0a3c\\u0a3e\\u0a2e\":\"\\u0a30\\u0a3e\\u0a24\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"8mBD\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt\",{months:\"Janeiro_Fevereiro_Mar\\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingo_Segunda-feira_Ter\\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\\xe1bado\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ter_Qua_Qui_Sex_S\\xe1b\".split(\"_\"),weekdaysMin:\"Do_2\\xaa_3\\xaa_4\\xaa_5\\xaa_6\\xaa_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY HH:mm\"},calendar:{sameDay:\"[Hoje \\xe0s] LT\",nextDay:\"[Amanh\\xe3 \\xe0s] LT\",nextWeek:\"dddd [\\xe0s] LT\",lastDay:\"[Ontem \\xe0s] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[\\xdaltimo] dddd [\\xe0s] LT\":\"[\\xdaltima] dddd [\\xe0s] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"h\\xe1 %s\",s:\"segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",M:\"um m\\xeas\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"9rRi\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"gd\",{months:[\"Am Faoilleach\",\"An Gearran\",\"Am M\\xe0rt\",\"An Giblean\",\"An C\\xe8itean\",\"An t-\\xd2gmhios\",\"An t-Iuchar\",\"An L\\xf9nastal\",\"An t-Sultain\",\"An D\\xe0mhair\",\"An t-Samhain\",\"An D\\xf9bhlachd\"],monthsShort:[\"Faoi\",\"Gear\",\"M\\xe0rt\",\"Gibl\",\"C\\xe8it\",\"\\xd2gmh\",\"Iuch\",\"L\\xf9n\",\"Sult\",\"D\\xe0mh\",\"Samh\",\"D\\xf9bh\"],monthsParseExact:!0,weekdays:[\"Did\\xf2mhnaich\",\"Diluain\",\"Dim\\xe0irt\",\"Diciadain\",\"Diardaoin\",\"Dihaoine\",\"Disathairne\"],weekdaysShort:[\"Did\",\"Dil\",\"Dim\",\"Dic\",\"Dia\",\"Dih\",\"Dis\"],weekdaysMin:[\"D\\xf2\",\"Lu\",\"M\\xe0\",\"Ci\",\"Ar\",\"Ha\",\"Sa\"],longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[An-diugh aig] LT\",nextDay:\"[A-m\\xe0ireach aig] LT\",nextWeek:\"dddd [aig] LT\",lastDay:\"[An-d\\xe8 aig] LT\",lastWeek:\"dddd [seo chaidh] [aig] LT\",sameElse:\"L\"},relativeTime:{future:\"ann an %s\",past:\"bho chionn %s\",s:\"beagan diogan\",ss:\"%d diogan\",m:\"mionaid\",mm:\"%d mionaidean\",h:\"uair\",hh:\"%d uairean\",d:\"latha\",dd:\"%d latha\",M:\"m\\xecos\",MM:\"%d m\\xecosan\",y:\"bliadhna\",yy:\"%d bliadhna\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"A+xa\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cv\",{months:\"\\u043a\\u04d1\\u0440\\u043b\\u0430\\u0447_\\u043d\\u0430\\u0440\\u04d1\\u0441_\\u043f\\u0443\\u0448_\\u0430\\u043a\\u0430_\\u043c\\u0430\\u0439_\\u04ab\\u04d7\\u0440\\u0442\\u043c\\u0435_\\u0443\\u0442\\u04d1_\\u04ab\\u0443\\u0440\\u043b\\u0430_\\u0430\\u0432\\u04d1\\u043d_\\u044e\\u043f\\u0430_\\u0447\\u04f3\\u043a_\\u0440\\u0430\\u0448\\u0442\\u0430\\u0432\".split(\"_\"),monthsShort:\"\\u043a\\u04d1\\u0440_\\u043d\\u0430\\u0440_\\u043f\\u0443\\u0448_\\u0430\\u043a\\u0430_\\u043c\\u0430\\u0439_\\u04ab\\u04d7\\u0440_\\u0443\\u0442\\u04d1_\\u04ab\\u0443\\u0440_\\u0430\\u0432\\u043d_\\u044e\\u043f\\u0430_\\u0447\\u04f3\\u043a_\\u0440\\u0430\\u0448\".split(\"_\"),weekdays:\"\\u0432\\u044b\\u0440\\u0441\\u0430\\u0440\\u043d\\u0438\\u043a\\u0443\\u043d_\\u0442\\u0443\\u043d\\u0442\\u0438\\u043a\\u0443\\u043d_\\u044b\\u0442\\u043b\\u0430\\u0440\\u0438\\u043a\\u0443\\u043d_\\u044e\\u043d\\u043a\\u0443\\u043d_\\u043a\\u04d7\\u04ab\\u043d\\u0435\\u0440\\u043d\\u0438\\u043a\\u0443\\u043d_\\u044d\\u0440\\u043d\\u0435\\u043a\\u0443\\u043d_\\u0448\\u04d1\\u043c\\u0430\\u0442\\u043a\\u0443\\u043d\".split(\"_\"),weekdaysShort:\"\\u0432\\u044b\\u0440_\\u0442\\u0443\\u043d_\\u044b\\u0442\\u043b_\\u044e\\u043d_\\u043a\\u04d7\\u04ab_\\u044d\\u0440\\u043d_\\u0448\\u04d1\\u043c\".split(\"_\"),weekdaysMin:\"\\u0432\\u0440_\\u0442\\u043d_\\u044b\\u0442_\\u044e\\u043d_\\u043a\\u04ab_\\u044d\\u0440_\\u0448\\u043c\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7]\",LLL:\"YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7], HH:mm\",LLLL:\"dddd, YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7], HH:mm\"},calendar:{sameDay:\"[\\u041f\\u0430\\u044f\\u043d] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",nextDay:\"[\\u042b\\u0440\\u0430\\u043d] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",lastDay:\"[\\u04d6\\u043d\\u0435\\u0440] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",nextWeek:\"[\\u04aa\\u0438\\u0442\\u0435\\u0441] dddd LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",lastWeek:\"[\\u0418\\u0440\\u0442\\u043d\\u04d7] dddd LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",sameElse:\"L\"},relativeTime:{future:function(e){return e+(/\\u0441\\u0435\\u0445\\u0435\\u0442$/i.exec(e)?\"\\u0440\\u0435\\u043d\":/\\u04ab\\u0443\\u043b$/i.exec(e)?\"\\u0442\\u0430\\u043d\":\"\\u0440\\u0430\\u043d\")},past:\"%s \\u043a\\u0430\\u044f\\u043b\\u043b\\u0430\",s:\"\\u043f\\u04d7\\u0440-\\u0438\\u043a \\u04ab\\u0435\\u043a\\u043a\\u0443\\u043d\\u0442\",ss:\"%d \\u04ab\\u0435\\u043a\\u043a\\u0443\\u043d\\u0442\",m:\"\\u043f\\u04d7\\u0440 \\u043c\\u0438\\u043d\\u0443\\u0442\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\",h:\"\\u043f\\u04d7\\u0440 \\u0441\\u0435\\u0445\\u0435\\u0442\",hh:\"%d \\u0441\\u0435\\u0445\\u0435\\u0442\",d:\"\\u043f\\u04d7\\u0440 \\u043a\\u0443\\u043d\",dd:\"%d \\u043a\\u0443\\u043d\",M:\"\\u043f\\u04d7\\u0440 \\u0443\\u0439\\u04d1\\u0445\",MM:\"%d \\u0443\\u0439\\u04d1\\u0445\",y:\"\\u043f\\u04d7\\u0440 \\u04ab\\u0443\\u043b\",yy:\"%d \\u04ab\\u0443\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-\\u043c\\u04d7\\u0448/,ordinal:\"%d-\\u043c\\u04d7\\u0448\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},AQ68:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz-latn\",{months:\"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr\".split(\"_\"),monthsShort:\"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek\".split(\"_\"),weekdays:\"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba\".split(\"_\"),weekdaysShort:\"Yak_Dush_Sesh_Chor_Pay_Jum_Shan\".split(\"_\"),weekdaysMin:\"Ya_Du_Se_Cho_Pa_Ju_Sha\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[Bugun soat] LT [da]\",nextDay:\"[Ertaga] LT [da]\",nextWeek:\"dddd [kuni soat] LT [da]\",lastDay:\"[Kecha soat] LT [da]\",lastWeek:\"[O'tgan] dddd [kuni soat] LT [da]\",sameElse:\"L\"},relativeTime:{future:\"Yaqin %s ichida\",past:\"Bir necha %s oldin\",s:\"soniya\",ss:\"%d soniya\",m:\"bir daqiqa\",mm:\"%d daqiqa\",h:\"bir soat\",hh:\"%d soat\",d:\"bir kun\",dd:\"%d kun\",M:\"bir oy\",MM:\"%d oy\",y:\"bir yil\",yy:\"%d yil\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},AvvY:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ml\",{months:\"\\u0d1c\\u0d28\\u0d41\\u0d35\\u0d30\\u0d3f_\\u0d2b\\u0d46\\u0d2c\\u0d4d\\u0d30\\u0d41\\u0d35\\u0d30\\u0d3f_\\u0d2e\\u0d3e\\u0d7c\\u0d1a\\u0d4d\\u0d1a\\u0d4d_\\u0d0f\\u0d2a\\u0d4d\\u0d30\\u0d3f\\u0d7d_\\u0d2e\\u0d47\\u0d2f\\u0d4d_\\u0d1c\\u0d42\\u0d7a_\\u0d1c\\u0d42\\u0d32\\u0d48_\\u0d13\\u0d17\\u0d38\\u0d4d\\u0d31\\u0d4d\\u0d31\\u0d4d_\\u0d38\\u0d46\\u0d2a\\u0d4d\\u0d31\\u0d4d\\u0d31\\u0d02\\u0d2c\\u0d7c_\\u0d12\\u0d15\\u0d4d\\u0d1f\\u0d4b\\u0d2c\\u0d7c_\\u0d28\\u0d35\\u0d02\\u0d2c\\u0d7c_\\u0d21\\u0d3f\\u0d38\\u0d02\\u0d2c\\u0d7c\".split(\"_\"),monthsShort:\"\\u0d1c\\u0d28\\u0d41._\\u0d2b\\u0d46\\u0d2c\\u0d4d\\u0d30\\u0d41._\\u0d2e\\u0d3e\\u0d7c._\\u0d0f\\u0d2a\\u0d4d\\u0d30\\u0d3f._\\u0d2e\\u0d47\\u0d2f\\u0d4d_\\u0d1c\\u0d42\\u0d7a_\\u0d1c\\u0d42\\u0d32\\u0d48._\\u0d13\\u0d17._\\u0d38\\u0d46\\u0d2a\\u0d4d\\u0d31\\u0d4d\\u0d31._\\u0d12\\u0d15\\u0d4d\\u0d1f\\u0d4b._\\u0d28\\u0d35\\u0d02._\\u0d21\\u0d3f\\u0d38\\u0d02.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0d1e\\u0d3e\\u0d2f\\u0d31\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d24\\u0d3f\\u0d19\\u0d4d\\u0d15\\u0d33\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d1a\\u0d4a\\u0d35\\u0d4d\\u0d35\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d2c\\u0d41\\u0d27\\u0d28\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d35\\u0d4d\\u0d2f\\u0d3e\\u0d34\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d35\\u0d46\\u0d33\\u0d4d\\u0d33\\u0d3f\\u0d2f\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d36\\u0d28\\u0d3f\\u0d2f\\u0d3e\\u0d34\\u0d4d\\u0d1a\".split(\"_\"),weekdaysShort:\"\\u0d1e\\u0d3e\\u0d2f\\u0d7c_\\u0d24\\u0d3f\\u0d19\\u0d4d\\u0d15\\u0d7e_\\u0d1a\\u0d4a\\u0d35\\u0d4d\\u0d35_\\u0d2c\\u0d41\\u0d27\\u0d7b_\\u0d35\\u0d4d\\u0d2f\\u0d3e\\u0d34\\u0d02_\\u0d35\\u0d46\\u0d33\\u0d4d\\u0d33\\u0d3f_\\u0d36\\u0d28\\u0d3f\".split(\"_\"),weekdaysMin:\"\\u0d1e\\u0d3e_\\u0d24\\u0d3f_\\u0d1a\\u0d4a_\\u0d2c\\u0d41_\\u0d35\\u0d4d\\u0d2f\\u0d3e_\\u0d35\\u0d46_\\u0d36\".split(\"_\"),longDateFormat:{LT:\"A h:mm -\\u0d28\\u0d41\",LTS:\"A h:mm:ss -\\u0d28\\u0d41\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm -\\u0d28\\u0d41\",LLLL:\"dddd, D MMMM YYYY, A h:mm -\\u0d28\\u0d41\"},calendar:{sameDay:\"[\\u0d07\\u0d28\\u0d4d\\u0d28\\u0d4d] LT\",nextDay:\"[\\u0d28\\u0d3e\\u0d33\\u0d46] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0d07\\u0d28\\u0d4d\\u0d28\\u0d32\\u0d46] LT\",lastWeek:\"[\\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\",past:\"%s \\u0d2e\\u0d41\\u0d7b\\u0d2a\\u0d4d\",s:\"\\u0d05\\u0d7d\\u0d2a \\u0d28\\u0d3f\\u0d2e\\u0d3f\\u0d37\\u0d19\\u0d4d\\u0d19\\u0d7e\",ss:\"%d \\u0d38\\u0d46\\u0d15\\u0d4d\\u0d15\\u0d7b\\u0d21\\u0d4d\",m:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d3f\\u0d28\\u0d3f\\u0d31\\u0d4d\\u0d31\\u0d4d\",mm:\"%d \\u0d2e\\u0d3f\\u0d28\\u0d3f\\u0d31\\u0d4d\\u0d31\\u0d4d\",h:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d23\\u0d3f\\u0d15\\u0d4d\\u0d15\\u0d42\\u0d7c\",hh:\"%d \\u0d2e\\u0d23\\u0d3f\\u0d15\\u0d4d\\u0d15\\u0d42\\u0d7c\",d:\"\\u0d12\\u0d30\\u0d41 \\u0d26\\u0d3f\\u0d35\\u0d38\\u0d02\",dd:\"%d \\u0d26\\u0d3f\\u0d35\\u0d38\\u0d02\",M:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d3e\\u0d38\\u0d02\",MM:\"%d \\u0d2e\\u0d3e\\u0d38\\u0d02\",y:\"\\u0d12\\u0d30\\u0d41 \\u0d35\\u0d7c\\u0d37\\u0d02\",yy:\"%d \\u0d35\\u0d7c\\u0d37\\u0d02\"},meridiemParse:/\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f|\\u0d30\\u0d3e\\u0d35\\u0d3f\\u0d32\\u0d46|\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d|\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02|\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f/i,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\"===t&&e>=4||\"\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\"===t||\"\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\":e<12?\"\\u0d30\\u0d3e\\u0d35\\u0d3f\\u0d32\\u0d46\":e<17?\"\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\":e<20?\"\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02\":\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\"}})}(n(\"wd/R\"))},B55N:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ja\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u65e5\\u66dc\\u65e5_\\u6708\\u66dc\\u65e5_\\u706b\\u66dc\\u65e5_\\u6c34\\u66dc\\u65e5_\\u6728\\u66dc\\u65e5_\\u91d1\\u66dc\\u65e5_\\u571f\\u66dc\\u65e5\".split(\"_\"),weekdaysShort:\"\\u65e5_\\u6708_\\u706b_\\u6c34_\\u6728_\\u91d1_\\u571f\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u6708_\\u706b_\\u6c34_\\u6728_\\u91d1_\\u571f\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5 dddd HH:mm\",l:\"YYYY/MM/DD\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5(ddd) HH:mm\"},meridiemParse:/\\u5348\\u524d|\\u5348\\u5f8c/i,isPM:function(e){return\"\\u5348\\u5f8c\"===e},meridiem:function(e,t,n){return e<12?\"\\u5348\\u524d\":\"\\u5348\\u5f8c\"},calendar:{sameDay:\"[\\u4eca\\u65e5] LT\",nextDay:\"[\\u660e\\u65e5] LT\",nextWeek:function(e){return e.week()12?e:e+12:\"sanje\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"rati\":e<12?\"sokalli\":e<16?\"donparam\":e<20?\"sanje\":\"rati\"}})}(n(\"wd/R\"))},Dkky:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ch\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Dmvi:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-au\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},DoHr:function(e,t,n){!function(e){\"use strict\";var t={1:\"'inci\",5:\"'inci\",8:\"'inci\",70:\"'inci\",80:\"'inci\",2:\"'nci\",7:\"'nci\",20:\"'nci\",50:\"'nci\",3:\"'\\xfcnc\\xfc\",4:\"'\\xfcnc\\xfc\",100:\"'\\xfcnc\\xfc\",6:\"'nc\\u0131\",9:\"'uncu\",10:\"'uncu\",30:\"'uncu\",60:\"'\\u0131nc\\u0131\",90:\"'\\u0131nc\\u0131\"};e.defineLocale(\"tr\",{months:\"Ocak_\\u015eubat_Mart_Nisan_May\\u0131s_Haziran_Temmuz_A\\u011fustos_Eyl\\xfcl_Ekim_Kas\\u0131m_Aral\\u0131k\".split(\"_\"),monthsShort:\"Oca_\\u015eub_Mar_Nis_May_Haz_Tem_A\\u011fu_Eyl_Eki_Kas_Ara\".split(\"_\"),weekdays:\"Pazar_Pazartesi_Sal\\u0131_\\xc7ar\\u015famba_Per\\u015fembe_Cuma_Cumartesi\".split(\"_\"),weekdaysShort:\"Paz_Pts_Sal_\\xc7ar_Per_Cum_Cts\".split(\"_\"),weekdaysMin:\"Pz_Pt_Sa_\\xc7a_Pe_Cu_Ct\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bug\\xfcn saat] LT\",nextDay:\"[yar\\u0131n saat] LT\",nextWeek:\"[gelecek] dddd [saat] LT\",lastDay:\"[d\\xfcn] LT\",lastWeek:\"[ge\\xe7en] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s \\xf6nce\",s:\"birka\\xe7 saniye\",ss:\"%d saniye\",m:\"bir dakika\",mm:\"%d dakika\",h:\"bir saat\",hh:\"%d saat\",d:\"bir g\\xfcn\",dd:\"%d g\\xfcn\",M:\"bir ay\",MM:\"%d ay\",y:\"bir y\\u0131l\",yy:\"%d y\\u0131l\"},ordinal:function(e,n){switch(n){case\"d\":case\"D\":case\"Do\":case\"DD\":return e;default:if(0===e)return e+\"'\\u0131nc\\u0131\";var r=e%10;return e+(t[r]||t[e%100-r]||t[e>=100?100:null])}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},DxQv:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"da\",{months:\"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"s\\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\\xf8rdag\".split(\"_\"),weekdaysShort:\"s\\xf8n_man_tir_ons_tor_fre_l\\xf8r\".split(\"_\"),weekdaysMin:\"s\\xf8_ma_ti_on_to_fr_l\\xf8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd [d.] D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"p\\xe5 dddd [kl.] LT\",lastDay:\"[i g\\xe5r kl.] LT\",lastWeek:\"[i] dddd[s kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"f\\xe5 sekunder\",ss:\"%d sekunder\",m:\"et minut\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dage\",M:\"en m\\xe5ned\",MM:\"%d m\\xe5neder\",y:\"et \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},Dzi0:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tl-ph\",{months:\"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre\".split(\"_\"),monthsShort:\"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis\".split(\"_\"),weekdays:\"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado\".split(\"_\"),weekdaysShort:\"Lin_Lun_Mar_Miy_Huw_Biy_Sab\".split(\"_\"),weekdaysMin:\"Li_Lu_Ma_Mi_Hu_Bi_Sab\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"MM/D/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY HH:mm\",LLLL:\"dddd, MMMM DD, YYYY HH:mm\"},calendar:{sameDay:\"LT [ngayong araw]\",nextDay:\"[Bukas ng] LT\",nextWeek:\"LT [sa susunod na] dddd\",lastDay:\"LT [kahapon]\",lastWeek:\"LT [noong nakaraang] dddd\",sameElse:\"L\"},relativeTime:{future:\"sa loob ng %s\",past:\"%s ang nakalipas\",s:\"ilang segundo\",ss:\"%d segundo\",m:\"isang minuto\",mm:\"%d minuto\",h:\"isang oras\",hh:\"%d oras\",d:\"isang araw\",dd:\"%d araw\",M:\"isang buwan\",MM:\"%d buwan\",y:\"isang taon\",yy:\"%d taon\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"E+lV\":function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430\",\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0435\",\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\"],m:[\"\\u0458\\u0435\\u0434\\u0430\\u043d \\u043c\\u0438\\u043d\\u0443\\u0442\",\"\\u0458\\u0435\\u0434\\u043d\\u0435 \\u043c\\u0438\\u043d\\u0443\\u0442\\u0435\"],mm:[\"\\u043c\\u0438\\u043d\\u0443\\u0442\",\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0435\",\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\"],h:[\"\\u0458\\u0435\\u0434\\u0430\\u043d \\u0441\\u0430\\u0442\",\"\\u0458\\u0435\\u0434\\u043d\\u043e\\u0433 \\u0441\\u0430\\u0442\\u0430\"],hh:[\"\\u0441\\u0430\\u0442\",\"\\u0441\\u0430\\u0442\\u0430\",\"\\u0441\\u0430\\u0442\\u0438\"],dd:[\"\\u0434\\u0430\\u043d\",\"\\u0434\\u0430\\u043d\\u0430\",\"\\u0434\\u0430\\u043d\\u0430\"],MM:[\"\\u043c\\u0435\\u0441\\u0435\\u0446\",\"\\u043c\\u0435\\u0441\\u0435\\u0446\\u0430\",\"\\u043c\\u0435\\u0441\\u0435\\u0446\\u0438\"],yy:[\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0435\",\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,r){var i=t.words[r];return 1===r.length?n?i[0]:i[1]:e+\" \"+t.correctGrammaticalCase(e,i)}};e.defineLocale(\"sr-cyrl\",{months:\"\\u0458\\u0430\\u043d\\u0443\\u0430\\u0440_\\u0444\\u0435\\u0431\\u0440\\u0443\\u0430\\u0440_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0431\\u0430\\u0440_\\u043e\\u043a\\u0442\\u043e\\u0431\\u0430\\u0440_\\u043d\\u043e\\u0432\\u0435\\u043c\\u0431\\u0430\\u0440_\\u0434\\u0435\\u0446\\u0435\\u043c\\u0431\\u0430\\u0440\".split(\"_\"),monthsShort:\"\\u0458\\u0430\\u043d._\\u0444\\u0435\\u0431._\\u043c\\u0430\\u0440._\\u0430\\u043f\\u0440._\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043f._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u0432._\\u0434\\u0435\\u0446.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u0459\\u0430_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u0459\\u0430\\u043a_\\u0443\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u0430\\u043a_\\u043f\\u0435\\u0442\\u0430\\u043a_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434._\\u043f\\u043e\\u043d._\\u0443\\u0442\\u043e._\\u0441\\u0440\\u0435._\\u0447\\u0435\\u0442._\\u043f\\u0435\\u0442._\\u0441\\u0443\\u0431.\".split(\"_\"),weekdaysMin:\"\\u043d\\u0435_\\u043f\\u043e_\\u0443\\u0442_\\u0441\\u0440_\\u0447\\u0435_\\u043f\\u0435_\\u0441\\u0443\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0434\\u0430\\u043d\\u0430\\u0441 \\u0443] LT\",nextDay:\"[\\u0441\\u0443\\u0442\\u0440\\u0430 \\u0443] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[\\u0443] [\\u043d\\u0435\\u0434\\u0435\\u0459\\u0443] [\\u0443] LT\";case 3:return\"[\\u0443] [\\u0441\\u0440\\u0435\\u0434\\u0443] [\\u0443] LT\";case 6:return\"[\\u0443] [\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443] [\\u0443] LT\";case 1:case 2:case 4:case 5:return\"[\\u0443] dddd [\\u0443] LT\"}},lastDay:\"[\\u0458\\u0443\\u0447\\u0435 \\u0443] LT\",lastWeek:function(){return[\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u043d\\u0435\\u0434\\u0435\\u0459\\u0435] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u0459\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u0443\\u0442\\u043e\\u0440\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u0441\\u0440\\u0435\\u0434\\u0435] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u043f\\u0435\\u0442\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u0441\\u0443\\u0431\\u043e\\u0442\\u0435] [\\u0443] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"\\u0437\\u0430 %s\",past:\"\\u043f\\u0440\\u0435 %s\",s:\"\\u043d\\u0435\\u043a\\u043e\\u043b\\u0438\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"\\u0434\\u0430\\u043d\",dd:t.translate,M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:t.translate,y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},EOgW:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"th\",{months:\"\\u0e21\\u0e01\\u0e23\\u0e32\\u0e04\\u0e21_\\u0e01\\u0e38\\u0e21\\u0e20\\u0e32\\u0e1e\\u0e31\\u0e19\\u0e18\\u0e4c_\\u0e21\\u0e35\\u0e19\\u0e32\\u0e04\\u0e21_\\u0e40\\u0e21\\u0e29\\u0e32\\u0e22\\u0e19_\\u0e1e\\u0e24\\u0e29\\u0e20\\u0e32\\u0e04\\u0e21_\\u0e21\\u0e34\\u0e16\\u0e38\\u0e19\\u0e32\\u0e22\\u0e19_\\u0e01\\u0e23\\u0e01\\u0e0e\\u0e32\\u0e04\\u0e21_\\u0e2a\\u0e34\\u0e07\\u0e2b\\u0e32\\u0e04\\u0e21_\\u0e01\\u0e31\\u0e19\\u0e22\\u0e32\\u0e22\\u0e19_\\u0e15\\u0e38\\u0e25\\u0e32\\u0e04\\u0e21_\\u0e1e\\u0e24\\u0e28\\u0e08\\u0e34\\u0e01\\u0e32\\u0e22\\u0e19_\\u0e18\\u0e31\\u0e19\\u0e27\\u0e32\\u0e04\\u0e21\".split(\"_\"),monthsShort:\"\\u0e21.\\u0e04._\\u0e01.\\u0e1e._\\u0e21\\u0e35.\\u0e04._\\u0e40\\u0e21.\\u0e22._\\u0e1e.\\u0e04._\\u0e21\\u0e34.\\u0e22._\\u0e01.\\u0e04._\\u0e2a.\\u0e04._\\u0e01.\\u0e22._\\u0e15.\\u0e04._\\u0e1e.\\u0e22._\\u0e18.\\u0e04.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0e2d\\u0e32\\u0e17\\u0e34\\u0e15\\u0e22\\u0e4c_\\u0e08\\u0e31\\u0e19\\u0e17\\u0e23\\u0e4c_\\u0e2d\\u0e31\\u0e07\\u0e04\\u0e32\\u0e23_\\u0e1e\\u0e38\\u0e18_\\u0e1e\\u0e24\\u0e2b\\u0e31\\u0e2a\\u0e1a\\u0e14\\u0e35_\\u0e28\\u0e38\\u0e01\\u0e23\\u0e4c_\\u0e40\\u0e2a\\u0e32\\u0e23\\u0e4c\".split(\"_\"),weekdaysShort:\"\\u0e2d\\u0e32\\u0e17\\u0e34\\u0e15\\u0e22\\u0e4c_\\u0e08\\u0e31\\u0e19\\u0e17\\u0e23\\u0e4c_\\u0e2d\\u0e31\\u0e07\\u0e04\\u0e32\\u0e23_\\u0e1e\\u0e38\\u0e18_\\u0e1e\\u0e24\\u0e2b\\u0e31\\u0e2a_\\u0e28\\u0e38\\u0e01\\u0e23\\u0e4c_\\u0e40\\u0e2a\\u0e32\\u0e23\\u0e4c\".split(\"_\"),weekdaysMin:\"\\u0e2d\\u0e32._\\u0e08._\\u0e2d._\\u0e1e._\\u0e1e\\u0e24._\\u0e28._\\u0e2a.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY \\u0e40\\u0e27\\u0e25\\u0e32 H:mm\",LLLL:\"\\u0e27\\u0e31\\u0e19dddd\\u0e17\\u0e35\\u0e48 D MMMM YYYY \\u0e40\\u0e27\\u0e25\\u0e32 H:mm\"},meridiemParse:/\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07|\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07/,isPM:function(e){return\"\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\"===e},meridiem:function(e,t,n){return e<12?\"\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\":\"\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\"},calendar:{sameDay:\"[\\u0e27\\u0e31\\u0e19\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",nextDay:\"[\\u0e1e\\u0e23\\u0e38\\u0e48\\u0e07\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",nextWeek:\"dddd[\\u0e2b\\u0e19\\u0e49\\u0e32 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",lastDay:\"[\\u0e40\\u0e21\\u0e37\\u0e48\\u0e2d\\u0e27\\u0e32\\u0e19\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",lastWeek:\"[\\u0e27\\u0e31\\u0e19]dddd[\\u0e17\\u0e35\\u0e48\\u0e41\\u0e25\\u0e49\\u0e27 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0e2d\\u0e35\\u0e01 %s\",past:\"%s\\u0e17\\u0e35\\u0e48\\u0e41\\u0e25\\u0e49\\u0e27\",s:\"\\u0e44\\u0e21\\u0e48\\u0e01\\u0e35\\u0e48\\u0e27\\u0e34\\u0e19\\u0e32\\u0e17\\u0e35\",ss:\"%d \\u0e27\\u0e34\\u0e19\\u0e32\\u0e17\\u0e35\",m:\"1 \\u0e19\\u0e32\\u0e17\\u0e35\",mm:\"%d \\u0e19\\u0e32\\u0e17\\u0e35\",h:\"1 \\u0e0a\\u0e31\\u0e48\\u0e27\\u0e42\\u0e21\\u0e07\",hh:\"%d \\u0e0a\\u0e31\\u0e48\\u0e27\\u0e42\\u0e21\\u0e07\",d:\"1 \\u0e27\\u0e31\\u0e19\",dd:\"%d \\u0e27\\u0e31\\u0e19\",M:\"1 \\u0e40\\u0e14\\u0e37\\u0e2d\\u0e19\",MM:\"%d \\u0e40\\u0e14\\u0e37\\u0e2d\\u0e19\",y:\"1 \\u0e1b\\u0e35\",yy:\"%d \\u0e1b\\u0e35\"}})}(n(\"wd/R\"))},G0Uy:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mt\",{months:\"Jannar_Frar_Marzu_April_Mejju_\\u0120unju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Di\\u010bembru\".split(\"_\"),monthsShort:\"Jan_Fra_Mar_Apr_Mej_\\u0120un_Lul_Aww_Set_Ott_Nov_Di\\u010b\".split(\"_\"),weekdays:\"Il-\\u0126add_It-Tnejn_It-Tlieta_L-Erbg\\u0127a_Il-\\u0126amis_Il-\\u0120img\\u0127a_Is-Sibt\".split(\"_\"),weekdaysShort:\"\\u0126ad_Tne_Tli_Erb_\\u0126am_\\u0120im_Sib\".split(\"_\"),weekdaysMin:\"\\u0126a_Tn_Tl_Er_\\u0126a_\\u0120i_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Illum fil-]LT\",nextDay:\"[G\\u0127ada fil-]LT\",nextWeek:\"dddd [fil-]LT\",lastDay:\"[Il-biera\\u0127 fil-]LT\",lastWeek:\"dddd [li g\\u0127adda] [fil-]LT\",sameElse:\"L\"},relativeTime:{future:\"f\\u2019 %s\",past:\"%s ilu\",s:\"ftit sekondi\",ss:\"%d sekondi\",m:\"minuta\",mm:\"%d minuti\",h:\"sieg\\u0127a\",hh:\"%d sieg\\u0127at\",d:\"\\u0121urnata\",dd:\"%d \\u0121ranet\",M:\"xahar\",MM:\"%d xhur\",y:\"sena\",yy:\"%d sni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},H8ED:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r,i;return\"m\"===n?t?\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0430\":\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0443\":\"h\"===n?t?\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0430\":\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0443\":e+\" \"+(r=+e,i={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0430_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u044b_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\":\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0443_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u044b_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\",hh:t?\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0430_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u044b_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\":\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0443_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u044b_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\",dd:\"\\u0434\\u0437\\u0435\\u043d\\u044c_\\u0434\\u043d\\u0456_\\u0434\\u0437\\u0451\\u043d\",MM:\"\\u043c\\u0435\\u0441\\u044f\\u0446_\\u043c\\u0435\\u0441\\u044f\\u0446\\u044b_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0430\\u045e\",yy:\"\\u0433\\u043e\\u0434_\\u0433\\u0430\\u0434\\u044b_\\u0433\\u0430\\u0434\\u043e\\u045e\"}[n].split(\"_\"),r%10==1&&r%100!=11?i[0]:r%10>=2&&r%10<=4&&(r%100<10||r%100>=20)?i[1]:i[2])}e.defineLocale(\"be\",{months:{format:\"\\u0441\\u0442\\u0443\\u0434\\u0437\\u0435\\u043d\\u044f_\\u043b\\u044e\\u0442\\u0430\\u0433\\u0430_\\u0441\\u0430\\u043a\\u0430\\u0432\\u0456\\u043a\\u0430_\\u043a\\u0440\\u0430\\u0441\\u0430\\u0432\\u0456\\u043a\\u0430_\\u0442\\u0440\\u0430\\u045e\\u043d\\u044f_\\u0447\\u044d\\u0440\\u0432\\u0435\\u043d\\u044f_\\u043b\\u0456\\u043f\\u0435\\u043d\\u044f_\\u0436\\u043d\\u0456\\u045e\\u043d\\u044f_\\u0432\\u0435\\u0440\\u0430\\u0441\\u043d\\u044f_\\u043a\\u0430\\u0441\\u0442\\u0440\\u044b\\u0447\\u043d\\u0456\\u043a\\u0430_\\u043b\\u0456\\u0441\\u0442\\u0430\\u043f\\u0430\\u0434\\u0430_\\u0441\\u043d\\u0435\\u0436\\u043d\\u044f\".split(\"_\"),standalone:\"\\u0441\\u0442\\u0443\\u0434\\u0437\\u0435\\u043d\\u044c_\\u043b\\u044e\\u0442\\u044b_\\u0441\\u0430\\u043a\\u0430\\u0432\\u0456\\u043a_\\u043a\\u0440\\u0430\\u0441\\u0430\\u0432\\u0456\\u043a_\\u0442\\u0440\\u0430\\u0432\\u0435\\u043d\\u044c_\\u0447\\u044d\\u0440\\u0432\\u0435\\u043d\\u044c_\\u043b\\u0456\\u043f\\u0435\\u043d\\u044c_\\u0436\\u043d\\u0456\\u0432\\u0435\\u043d\\u044c_\\u0432\\u0435\\u0440\\u0430\\u0441\\u0435\\u043d\\u044c_\\u043a\\u0430\\u0441\\u0442\\u0440\\u044b\\u0447\\u043d\\u0456\\u043a_\\u043b\\u0456\\u0441\\u0442\\u0430\\u043f\\u0430\\u0434_\\u0441\\u043d\\u0435\\u0436\\u0430\\u043d\\u044c\".split(\"_\")},monthsShort:\"\\u0441\\u0442\\u0443\\u0434_\\u043b\\u044e\\u0442_\\u0441\\u0430\\u043a_\\u043a\\u0440\\u0430\\u0441_\\u0442\\u0440\\u0430\\u0432_\\u0447\\u044d\\u0440\\u0432_\\u043b\\u0456\\u043f_\\u0436\\u043d\\u0456\\u0432_\\u0432\\u0435\\u0440_\\u043a\\u0430\\u0441\\u0442_\\u043b\\u0456\\u0441\\u0442_\\u0441\\u043d\\u0435\\u0436\".split(\"_\"),weekdays:{format:\"\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u044e_\\u043f\\u0430\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u0430\\u043a_\\u0430\\u045e\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0435\\u0440\\u0430\\u0434\\u0443_\\u0447\\u0430\\u0446\\u0432\\u0435\\u0440_\\u043f\\u044f\\u0442\\u043d\\u0456\\u0446\\u0443_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),standalone:\"\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u044f_\\u043f\\u0430\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u0430\\u043a_\\u0430\\u045e\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0435\\u0440\\u0430\\u0434\\u0430_\\u0447\\u0430\\u0446\\u0432\\u0435\\u0440_\\u043f\\u044f\\u0442\\u043d\\u0456\\u0446\\u0430_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),isFormat:/\\[ ?[\\u0423\\u0443\\u045e] ?(?:\\u043c\\u0456\\u043d\\u0443\\u043b\\u0443\\u044e|\\u043d\\u0430\\u0441\\u0442\\u0443\\u043f\\u043d\\u0443\\u044e)? ?\\] ?dddd/},weekdaysShort:\"\\u043d\\u0434_\\u043f\\u043d_\\u0430\\u0442_\\u0441\\u0440_\\u0447\\u0446_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0430\\u0442_\\u0441\\u0440_\\u0447\\u0446_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0433.\",LLL:\"D MMMM YYYY \\u0433., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0433., HH:mm\"},calendar:{sameDay:\"[\\u0421\\u0451\\u043d\\u043d\\u044f \\u045e] LT\",nextDay:\"[\\u0417\\u0430\\u045e\\u0442\\u0440\\u0430 \\u045e] LT\",lastDay:\"[\\u0423\\u0447\\u043e\\u0440\\u0430 \\u045e] LT\",nextWeek:function(){return\"[\\u0423] dddd [\\u045e] LT\"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return\"[\\u0423 \\u043c\\u0456\\u043d\\u0443\\u043b\\u0443\\u044e] dddd [\\u045e] LT\";case 1:case 2:case 4:return\"[\\u0423 \\u043c\\u0456\\u043d\\u0443\\u043b\\u044b] dddd [\\u045e] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u043f\\u0440\\u0430\\u0437 %s\",past:\"%s \\u0442\\u0430\\u043c\\u0443\",s:\"\\u043d\\u0435\\u043a\\u0430\\u043b\\u044c\\u043a\\u0456 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:t,mm:t,h:t,hh:t,d:\"\\u0434\\u0437\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0435\\u0441\\u044f\\u0446\",MM:t,y:\"\\u0433\\u043e\\u0434\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u044b|\\u0440\\u0430\\u043d\\u0456\\u0446\\u044b|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430/,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u044b\":e<12?\"\\u0440\\u0430\\u043d\\u0456\\u0446\\u044b\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0456|\\u044b|\\u0433\\u0430)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e%10!=2&&e%10!=3||e%100==12||e%100==13?e+\"-\\u044b\":e+\"-\\u0456\";case\"D\":return e+\"-\\u0433\\u0430\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},HP3h:function(e,t,n){!function(e){\"use strict\";var t={1:\"1\",2:\"2\",3:\"3\",4:\"4\",5:\"5\",6:\"6\",7:\"7\",8:\"8\",9:\"9\",0:\"0\"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},r={s:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062b\\u0627\\u0646\\u064a\\u0629\",\"\\u062b\\u0627\\u0646\\u064a\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u0627\\u0646\",\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u064a\\u0646\"],\"%d \\u062b\\u0648\\u0627\\u0646\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\"],m:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062f\\u0642\\u064a\\u0642\\u0629\",\"\\u062f\\u0642\\u064a\\u0642\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u0627\\u0646\",\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u064a\\u0646\"],\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\"],h:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0633\\u0627\\u0639\\u0629\",\"\\u0633\\u0627\\u0639\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u0633\\u0627\\u0639\\u062a\\u0627\\u0646\",\"\\u0633\\u0627\\u0639\\u062a\\u064a\\u0646\"],\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",\"%d \\u0633\\u0627\\u0639\\u0629\",\"%d \\u0633\\u0627\\u0639\\u0629\"],d:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u064a\\u0648\\u0645\",\"\\u064a\\u0648\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u064a\\u0648\\u0645\\u0627\\u0646\",\"\\u064a\\u0648\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u064a\\u0627\\u0645\",\"%d \\u064a\\u0648\\u0645\\u064b\\u0627\",\"%d \\u064a\\u0648\\u0645\"],M:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0634\\u0647\\u0631\",\"\\u0634\\u0647\\u0631 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0634\\u0647\\u0631\\u0627\\u0646\",\"\\u0634\\u0647\\u0631\\u064a\\u0646\"],\"%d \\u0623\\u0634\\u0647\\u0631\",\"%d \\u0634\\u0647\\u0631\\u0627\",\"%d \\u0634\\u0647\\u0631\"],y:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0639\\u0627\\u0645\",\"\\u0639\\u0627\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0639\\u0627\\u0645\\u0627\\u0646\",\"\\u0639\\u0627\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u0639\\u0648\\u0627\\u0645\",\"%d \\u0639\\u0627\\u0645\\u064b\\u0627\",\"%d \\u0639\\u0627\\u0645\"]},i=function(e){return function(t,i,a,o){var s=n(t),l=r[e][n(t)];return 2===s&&(l=l[i?0:1]),l.replace(/%d/i,t)}},a=[\"\\u064a\\u0646\\u0627\\u064a\\u0631\",\"\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631\",\"\\u0645\\u0627\\u0631\\u0633\",\"\\u0623\\u0628\\u0631\\u064a\\u0644\",\"\\u0645\\u0627\\u064a\\u0648\",\"\\u064a\\u0648\\u0646\\u064a\\u0648\",\"\\u064a\\u0648\\u0644\\u064a\\u0648\",\"\\u0623\\u063a\\u0633\\u0637\\u0633\",\"\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631\",\"\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631\",\"\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\"];e.defineLocale(\"ar-ly\",{months:a,monthsShort:a,weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/\\u200fM/\\u200fYYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u064b\\u0627 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0628\\u0639\\u062f %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:i(\"s\"),ss:i(\"s\"),m:i(\"m\"),mm:i(\"m\"),h:i(\"h\"),hh:i(\"h\"),d:i(\"d\"),dd:i(\"d\"),M:i(\"M\"),MM:i(\"M\"),y:i(\"y\"),yy:i(\"y\")},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},IBtZ:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ka\",{months:{standalone:\"\\u10d8\\u10d0\\u10dc\\u10d5\\u10d0\\u10e0\\u10d8_\\u10d7\\u10d4\\u10d1\\u10d4\\u10e0\\u10d5\\u10d0\\u10da\\u10d8_\\u10db\\u10d0\\u10e0\\u10e2\\u10d8_\\u10d0\\u10de\\u10e0\\u10d8\\u10da\\u10d8_\\u10db\\u10d0\\u10d8\\u10e1\\u10d8_\\u10d8\\u10d5\\u10dc\\u10d8\\u10e1\\u10d8_\\u10d8\\u10d5\\u10da\\u10d8\\u10e1\\u10d8_\\u10d0\\u10d2\\u10d5\\u10d8\\u10e1\\u10e2\\u10dd_\\u10e1\\u10d4\\u10e5\\u10e2\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10dd\\u10e5\\u10e2\\u10dd\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10dc\\u10dd\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10d3\\u10d4\\u10d9\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8\".split(\"_\"),format:\"\\u10d8\\u10d0\\u10dc\\u10d5\\u10d0\\u10e0\\u10e1_\\u10d7\\u10d4\\u10d1\\u10d4\\u10e0\\u10d5\\u10d0\\u10da\\u10e1_\\u10db\\u10d0\\u10e0\\u10e2\\u10e1_\\u10d0\\u10de\\u10e0\\u10d8\\u10da\\u10d8\\u10e1_\\u10db\\u10d0\\u10d8\\u10e1\\u10e1_\\u10d8\\u10d5\\u10dc\\u10d8\\u10e1\\u10e1_\\u10d8\\u10d5\\u10da\\u10d8\\u10e1\\u10e1_\\u10d0\\u10d2\\u10d5\\u10d8\\u10e1\\u10e2\\u10e1_\\u10e1\\u10d4\\u10e5\\u10e2\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10dd\\u10e5\\u10e2\\u10dd\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10dc\\u10dd\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10d3\\u10d4\\u10d9\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1\".split(\"_\")},monthsShort:\"\\u10d8\\u10d0\\u10dc_\\u10d7\\u10d4\\u10d1_\\u10db\\u10d0\\u10e0_\\u10d0\\u10de\\u10e0_\\u10db\\u10d0\\u10d8_\\u10d8\\u10d5\\u10dc_\\u10d8\\u10d5\\u10da_\\u10d0\\u10d2\\u10d5_\\u10e1\\u10d4\\u10e5_\\u10dd\\u10e5\\u10e2_\\u10dc\\u10dd\\u10d4_\\u10d3\\u10d4\\u10d9\".split(\"_\"),weekdays:{standalone:\"\\u10d9\\u10d5\\u10d8\\u10e0\\u10d0_\\u10dd\\u10e0\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10e1\\u10d0\\u10db\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10dd\\u10d7\\u10ee\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10ee\\u10e3\\u10d7\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10de\\u10d0\\u10e0\\u10d0\\u10e1\\u10d9\\u10d4\\u10d5\\u10d8_\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8\".split(\"_\"),format:\"\\u10d9\\u10d5\\u10d8\\u10e0\\u10d0\\u10e1_\\u10dd\\u10e0\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10e1\\u10d0\\u10db\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10dd\\u10d7\\u10ee\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10ee\\u10e3\\u10d7\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10de\\u10d0\\u10e0\\u10d0\\u10e1\\u10d9\\u10d4\\u10d5\\u10e1_\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1\".split(\"_\"),isFormat:/(\\u10ec\\u10d8\\u10dc\\u10d0|\\u10e8\\u10d4\\u10db\\u10d3\\u10d4\\u10d2)/},weekdaysShort:\"\\u10d9\\u10d5\\u10d8_\\u10dd\\u10e0\\u10e8_\\u10e1\\u10d0\\u10db_\\u10dd\\u10d7\\u10ee_\\u10ee\\u10e3\\u10d7_\\u10de\\u10d0\\u10e0_\\u10e8\\u10d0\\u10d1\".split(\"_\"),weekdaysMin:\"\\u10d9\\u10d5_\\u10dd\\u10e0_\\u10e1\\u10d0_\\u10dd\\u10d7_\\u10ee\\u10e3_\\u10de\\u10d0_\\u10e8\\u10d0\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[\\u10d3\\u10e6\\u10d4\\u10e1] LT[-\\u10d6\\u10d4]\",nextDay:\"[\\u10ee\\u10d5\\u10d0\\u10da] LT[-\\u10d6\\u10d4]\",lastDay:\"[\\u10d2\\u10e3\\u10e8\\u10d8\\u10dc] LT[-\\u10d6\\u10d4]\",nextWeek:\"[\\u10e8\\u10d4\\u10db\\u10d3\\u10d4\\u10d2] dddd LT[-\\u10d6\\u10d4]\",lastWeek:\"[\\u10ec\\u10d8\\u10dc\\u10d0] dddd LT-\\u10d6\\u10d4\",sameElse:\"L\"},relativeTime:{future:function(e){return/(\\u10ec\\u10d0\\u10db\\u10d8|\\u10ec\\u10e3\\u10d7\\u10d8|\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8|\\u10ec\\u10d4\\u10da\\u10d8)/.test(e)?e.replace(/\\u10d8$/,\"\\u10e8\\u10d8\"):e+\"\\u10e8\\u10d8\"},past:function(e){return/(\\u10ec\\u10d0\\u10db\\u10d8|\\u10ec\\u10e3\\u10d7\\u10d8|\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8|\\u10d3\\u10e6\\u10d4|\\u10d7\\u10d5\\u10d4)/.test(e)?e.replace(/(\\u10d8|\\u10d4)$/,\"\\u10d8\\u10e1 \\u10ec\\u10d8\\u10dc\"):/\\u10ec\\u10d4\\u10da\\u10d8/.test(e)?e.replace(/\\u10ec\\u10d4\\u10da\\u10d8$/,\"\\u10ec\\u10da\\u10d8\\u10e1 \\u10ec\\u10d8\\u10dc\"):void 0},s:\"\\u10e0\\u10d0\\u10db\\u10d3\\u10d4\\u10dc\\u10d8\\u10db\\u10d4 \\u10ec\\u10d0\\u10db\\u10d8\",ss:\"%d \\u10ec\\u10d0\\u10db\\u10d8\",m:\"\\u10ec\\u10e3\\u10d7\\u10d8\",mm:\"%d \\u10ec\\u10e3\\u10d7\\u10d8\",h:\"\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8\",hh:\"%d \\u10e1\\u10d0\\u10d0\\u10d7\\u10d8\",d:\"\\u10d3\\u10e6\\u10d4\",dd:\"%d \\u10d3\\u10e6\\u10d4\",M:\"\\u10d7\\u10d5\\u10d4\",MM:\"%d \\u10d7\\u10d5\\u10d4\",y:\"\\u10ec\\u10d4\\u10da\\u10d8\",yy:\"%d \\u10ec\\u10d4\\u10da\\u10d8\"},dayOfMonthOrdinalParse:/0|1-\\u10da\\u10d8|\\u10db\\u10d4-\\d{1,2}|\\d{1,2}-\\u10d4/,ordinal:function(e){return 0===e?e:1===e?e+\"-\\u10da\\u10d8\":e<20||e<=100&&e%20==0||e%100==0?\"\\u10db\\u10d4-\"+e:e+\"-\\u10d4\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"Ivi+\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ko\",{months:\"1\\uc6d4_2\\uc6d4_3\\uc6d4_4\\uc6d4_5\\uc6d4_6\\uc6d4_7\\uc6d4_8\\uc6d4_9\\uc6d4_10\\uc6d4_11\\uc6d4_12\\uc6d4\".split(\"_\"),monthsShort:\"1\\uc6d4_2\\uc6d4_3\\uc6d4_4\\uc6d4_5\\uc6d4_6\\uc6d4_7\\uc6d4_8\\uc6d4_9\\uc6d4_10\\uc6d4_11\\uc6d4_12\\uc6d4\".split(\"_\"),weekdays:\"\\uc77c\\uc694\\uc77c_\\uc6d4\\uc694\\uc77c_\\ud654\\uc694\\uc77c_\\uc218\\uc694\\uc77c_\\ubaa9\\uc694\\uc77c_\\uae08\\uc694\\uc77c_\\ud1a0\\uc694\\uc77c\".split(\"_\"),weekdaysShort:\"\\uc77c_\\uc6d4_\\ud654_\\uc218_\\ubaa9_\\uae08_\\ud1a0\".split(\"_\"),weekdaysMin:\"\\uc77c_\\uc6d4_\\ud654_\\uc218_\\ubaa9_\\uae08_\\ud1a0\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY\\ub144 MMMM D\\uc77c\",LLL:\"YYYY\\ub144 MMMM D\\uc77c A h:mm\",LLLL:\"YYYY\\ub144 MMMM D\\uc77c dddd A h:mm\",l:\"YYYY.MM.DD.\",ll:\"YYYY\\ub144 MMMM D\\uc77c\",lll:\"YYYY\\ub144 MMMM D\\uc77c A h:mm\",llll:\"YYYY\\ub144 MMMM D\\uc77c dddd A h:mm\"},calendar:{sameDay:\"\\uc624\\ub298 LT\",nextDay:\"\\ub0b4\\uc77c LT\",nextWeek:\"dddd LT\",lastDay:\"\\uc5b4\\uc81c LT\",lastWeek:\"\\uc9c0\\ub09c\\uc8fc dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\ud6c4\",past:\"%s \\uc804\",s:\"\\uba87 \\ucd08\",ss:\"%d\\ucd08\",m:\"1\\ubd84\",mm:\"%d\\ubd84\",h:\"\\ud55c \\uc2dc\\uac04\",hh:\"%d\\uc2dc\\uac04\",d:\"\\ud558\\ub8e8\",dd:\"%d\\uc77c\",M:\"\\ud55c \\ub2ec\",MM:\"%d\\ub2ec\",y:\"\\uc77c \\ub144\",yy:\"%d\\ub144\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\uc77c|\\uc6d4|\\uc8fc)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\uc77c\";case\"M\":return e+\"\\uc6d4\";case\"w\":case\"W\":return e+\"\\uc8fc\";default:return e}},meridiemParse:/\\uc624\\uc804|\\uc624\\ud6c4/,isPM:function(e){return\"\\uc624\\ud6c4\"===e},meridiem:function(e,t,n){return e<12?\"\\uc624\\uc804\":\"\\uc624\\ud6c4\"}})}(n(\"wd/R\"))},\"JCF/\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"},r=[\"\\u06a9\\u0627\\u0646\\u0648\\u0646\\u06cc \\u062f\\u0648\\u0648\\u06d5\\u0645\",\"\\u0634\\u0648\\u0628\\u0627\\u062a\",\"\\u0626\\u0627\\u0632\\u0627\\u0631\",\"\\u0646\\u06cc\\u0633\\u0627\\u0646\",\"\\u0626\\u0627\\u06cc\\u0627\\u0631\",\"\\u062d\\u0648\\u0632\\u06d5\\u06cc\\u0631\\u0627\\u0646\",\"\\u062a\\u06d5\\u0645\\u0645\\u0648\\u0632\",\"\\u0626\\u0627\\u0628\",\"\\u0626\\u06d5\\u06cc\\u0644\\u0648\\u0648\\u0644\",\"\\u062a\\u0634\\u0631\\u06cc\\u0646\\u06cc \\u06cc\\u06d5\\u0643\\u06d5\\u0645\",\"\\u062a\\u0634\\u0631\\u06cc\\u0646\\u06cc \\u062f\\u0648\\u0648\\u06d5\\u0645\",\"\\u0643\\u0627\\u0646\\u0648\\u0646\\u06cc \\u06cc\\u06d5\\u06a9\\u06d5\\u0645\"];e.defineLocale(\"ku\",{months:r,monthsShort:r,weekdays:\"\\u06cc\\u0647\\u200c\\u0643\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u062f\\u0648\\u0648\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0633\\u06ce\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0686\\u0648\\u0627\\u0631\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u067e\\u06ce\\u0646\\u062c\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0647\\u0647\\u200c\\u06cc\\u0646\\u06cc_\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c\".split(\"_\"),weekdaysShort:\"\\u06cc\\u0647\\u200c\\u0643\\u0634\\u0647\\u200c\\u0645_\\u062f\\u0648\\u0648\\u0634\\u0647\\u200c\\u0645_\\u0633\\u06ce\\u0634\\u0647\\u200c\\u0645_\\u0686\\u0648\\u0627\\u0631\\u0634\\u0647\\u200c\\u0645_\\u067e\\u06ce\\u0646\\u062c\\u0634\\u0647\\u200c\\u0645_\\u0647\\u0647\\u200c\\u06cc\\u0646\\u06cc_\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c\".split(\"_\"),weekdaysMin:\"\\u06cc_\\u062f_\\u0633_\\u0686_\\u067e_\\u0647_\\u0634\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c|\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc/,isPM:function(e){return/\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c/.test(e)},meridiem:function(e,t,n){return e<12?\"\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc\":\"\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c\"},calendar:{sameDay:\"[\\u0626\\u0647\\u200c\\u0645\\u0631\\u06c6 \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",nextDay:\"[\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",nextWeek:\"dddd [\\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",lastDay:\"[\\u062f\\u0648\\u06ce\\u0646\\u06ce \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",lastWeek:\"dddd [\\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0644\\u0647\\u200c %s\",past:\"%s\",s:\"\\u0686\\u0647\\u200c\\u0646\\u062f \\u0686\\u0631\\u0643\\u0647\\u200c\\u06cc\\u0647\\u200c\\u0643\",ss:\"\\u0686\\u0631\\u0643\\u0647\\u200c %d\",m:\"\\u06cc\\u0647\\u200c\\u0643 \\u062e\\u0648\\u0644\\u0647\\u200c\\u0643\",mm:\"%d \\u062e\\u0648\\u0644\\u0647\\u200c\\u0643\",h:\"\\u06cc\\u0647\\u200c\\u0643 \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631\",hh:\"%d \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631\",d:\"\\u06cc\\u0647\\u200c\\u0643 \\u0695\\u06c6\\u0698\",dd:\"%d \\u0695\\u06c6\\u0698\",M:\"\\u06cc\\u0647\\u200c\\u0643 \\u0645\\u0627\\u0646\\u06af\",MM:\"%d \\u0645\\u0627\\u0646\\u06af\",y:\"\\u06cc\\u0647\\u200c\\u0643 \\u0633\\u0627\\u06b5\",yy:\"%d \\u0633\\u0627\\u06b5\"},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},JVSJ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r=e+\" \";switch(n){case\"ss\":return r+(1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\");case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return r+(1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\");case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return r+(1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\");case\"dd\":return r+(1===e?\"dan\":\"dana\");case\"MM\":return r+(1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\");case\"yy\":return r+(1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\")}}e.defineLocale(\"bs\",{months:\"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010der u] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:return\"[pro\\u0161lu] dddd [u] LT\";case 6:return\"[pro\\u0161le] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[pro\\u0161li] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},JvlW:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekund\\u0117_sekund\\u017ei\\u0173_sekundes\",m:\"minut\\u0117_minut\\u0117s_minut\\u0119\",mm:\"minut\\u0117s_minu\\u010di\\u0173_minutes\",h:\"valanda_valandos_valand\\u0105\",hh:\"valandos_valand\\u0173_valandas\",d:\"diena_dienos_dien\\u0105\",dd:\"dienos_dien\\u0173_dienas\",M:\"m\\u0117nuo_m\\u0117nesio_m\\u0117nes\\u012f\",MM:\"m\\u0117nesiai_m\\u0117nesi\\u0173_m\\u0117nesius\",y:\"metai_met\\u0173_metus\",yy:\"metai_met\\u0173_metus\"};function n(e,t,n,r){return t?i(n)[0]:r?i(n)[1]:i(n)[2]}function r(e){return e%10==0||e>10&&e<20}function i(e){return t[e].split(\"_\")}function a(e,t,a,o){var s=e+\" \";return 1===e?s+n(0,t,a[0],o):t?s+(r(e)?i(a)[1]:i(a)[0]):o?s+i(a)[1]:s+(r(e)?i(a)[1]:i(a)[2])}e.defineLocale(\"lt\",{months:{format:\"sausio_vasario_kovo_baland\\u017eio_gegu\\u017e\\u0117s_bir\\u017eelio_liepos_rugpj\\u016b\\u010dio_rugs\\u0117jo_spalio_lapkri\\u010dio_gruod\\u017eio\".split(\"_\"),standalone:\"sausis_vasaris_kovas_balandis_gegu\\u017e\\u0117_bir\\u017eelis_liepa_rugpj\\u016btis_rugs\\u0117jis_spalis_lapkritis_gruodis\".split(\"_\"),isFormat:/D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|MMMM?(\\[[^\\[\\]]*\\]|\\s)+D[oD]?/},monthsShort:\"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd\".split(\"_\"),weekdays:{format:\"sekmadien\\u012f_pirmadien\\u012f_antradien\\u012f_tre\\u010diadien\\u012f_ketvirtadien\\u012f_penktadien\\u012f_\\u0161e\\u0161tadien\\u012f\".split(\"_\"),standalone:\"sekmadienis_pirmadienis_antradienis_tre\\u010diadienis_ketvirtadienis_penktadienis_\\u0161e\\u0161tadienis\".split(\"_\"),isFormat:/dddd HH:mm/},weekdaysShort:\"Sek_Pir_Ant_Tre_Ket_Pen_\\u0160e\\u0161\".split(\"_\"),weekdaysMin:\"S_P_A_T_K_Pn_\\u0160\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY [m.] MMMM D [d.]\",LLL:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",LLLL:\"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]\",l:\"YYYY-MM-DD\",ll:\"YYYY [m.] MMMM D [d.]\",lll:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",llll:\"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]\"},calendar:{sameDay:\"[\\u0160iandien] LT\",nextDay:\"[Rytoj] LT\",nextWeek:\"dddd LT\",lastDay:\"[Vakar] LT\",lastWeek:\"[Pra\\u0117jus\\u012f] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"po %s\",past:\"prie\\u0161 %s\",s:function(e,t,n,r){return t?\"kelios sekund\\u0117s\":r?\"keli\\u0173 sekund\\u017ei\\u0173\":\"kelias sekundes\"},ss:a,m:n,mm:a,h:n,hh:a,d:n,dd:a,M:n,MM:a,y:n,yy:a},dayOfMonthOrdinalParse:/\\d{1,2}-oji/,ordinal:function(e){return e+\"-oji\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"K/tc\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"af\",{months:\"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag\".split(\"_\"),weekdaysShort:\"Son_Maa_Din_Woe_Don_Vry_Sat\".split(\"_\"),weekdaysMin:\"So_Ma_Di_Wo_Do_Vr_Sa\".split(\"_\"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"vm\":\"VM\":n?\"nm\":\"NM\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Vandag om] LT\",nextDay:\"[M\\xf4re om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[Gister om] LT\",lastWeek:\"[Laas] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oor %s\",past:\"%s gelede\",s:\"'n paar sekondes\",ss:\"%d sekondes\",m:\"'n minuut\",mm:\"%d minute\",h:\"'n uur\",hh:\"%d ure\",d:\"'n dag\",dd:\"%d dae\",M:\"'n maand\",MM:\"%d maande\",y:\"'n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},KSF8:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"vi\",{months:\"th\\xe1ng 1_th\\xe1ng 2_th\\xe1ng 3_th\\xe1ng 4_th\\xe1ng 5_th\\xe1ng 6_th\\xe1ng 7_th\\xe1ng 8_th\\xe1ng 9_th\\xe1ng 10_th\\xe1ng 11_th\\xe1ng 12\".split(\"_\"),monthsShort:\"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12\".split(\"_\"),monthsParseExact:!0,weekdays:\"ch\\u1ee7 nh\\u1eadt_th\\u1ee9 hai_th\\u1ee9 ba_th\\u1ee9 t\\u01b0_th\\u1ee9 n\\u0103m_th\\u1ee9 s\\xe1u_th\\u1ee9 b\\u1ea3y\".split(\"_\"),weekdaysShort:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysMin:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"sa\":\"SA\":n?\"ch\":\"CH\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [n\\u0103m] YYYY\",LLL:\"D MMMM [n\\u0103m] YYYY HH:mm\",LLLL:\"dddd, D MMMM [n\\u0103m] YYYY HH:mm\",l:\"DD/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[H\\xf4m nay l\\xfac] LT\",nextDay:\"[Ng\\xe0y mai l\\xfac] LT\",nextWeek:\"dddd [tu\\u1ea7n t\\u1edbi l\\xfac] LT\",lastDay:\"[H\\xf4m qua l\\xfac] LT\",lastWeek:\"dddd [tu\\u1ea7n r\\u1ed3i l\\xfac] LT\",sameElse:\"L\"},relativeTime:{future:\"%s t\\u1edbi\",past:\"%s tr\\u01b0\\u1edbc\",s:\"v\\xe0i gi\\xe2y\",ss:\"%d gi\\xe2y\",m:\"m\\u1ed9t ph\\xfat\",mm:\"%d ph\\xfat\",h:\"m\\u1ed9t gi\\u1edd\",hh:\"%d gi\\u1edd\",d:\"m\\u1ed9t ng\\xe0y\",dd:\"%d ng\\xe0y\",M:\"m\\u1ed9t th\\xe1ng\",MM:\"%d th\\xe1ng\",y:\"m\\u1ed9t n\\u0103m\",yy:\"%d n\\u0103m\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(\"wd/R\"))},KTz0:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekund\",\"sekunda\",\"sekundi\"],m:[\"jedan minut\",\"jednog minuta\"],mm:[\"minut\",\"minuta\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mjesec\",\"mjeseca\",\"mjeseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,r){var i=t.words[r];return 1===r.length?n?i[0]:i[1]:e+\" \"+t.correctGrammaticalCase(e,i)}};e.defineLocale(\"me\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sjutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010de u] LT\",lastWeek:function(){return[\"[pro\\u0161le] [nedjelje] [u] LT\",\"[pro\\u0161log] [ponedjeljka] [u] LT\",\"[pro\\u0161log] [utorka] [u] LT\",\"[pro\\u0161le] [srijede] [u] LT\",\"[pro\\u0161log] [\\u010detvrtka] [u] LT\",\"[pro\\u0161log] [petka] [u] LT\",\"[pro\\u0161le] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mjesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},Loxo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440_\\u043d\\u043e\\u044f\\u0431\\u0440_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u042f\\u043a\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0414\\u0443\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0421\\u0435\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0427\\u043e\\u0440\\u0448\\u0430\\u043d\\u0431\\u0430_\\u041f\\u0430\\u0439\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0416\\u0443\\u043c\\u0430_\\u0428\\u0430\\u043d\\u0431\\u0430\".split(\"_\"),weekdaysShort:\"\\u042f\\u043a\\u0448_\\u0414\\u0443\\u0448_\\u0421\\u0435\\u0448_\\u0427\\u043e\\u0440_\\u041f\\u0430\\u0439_\\u0416\\u0443\\u043c_\\u0428\\u0430\\u043d\".split(\"_\"),weekdaysMin:\"\\u042f\\u043a_\\u0414\\u0443_\\u0421\\u0435_\\u0427\\u043e_\\u041f\\u0430_\\u0416\\u0443_\\u0428\\u0430\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[\\u0411\\u0443\\u0433\\u0443\\u043d \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",nextDay:\"[\\u042d\\u0440\\u0442\\u0430\\u0433\\u0430] LT [\\u0434\\u0430]\",nextWeek:\"dddd [\\u043a\\u0443\\u043d\\u0438 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",lastDay:\"[\\u041a\\u0435\\u0447\\u0430 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",lastWeek:\"[\\u0423\\u0442\\u0433\\u0430\\u043d] dddd [\\u043a\\u0443\\u043d\\u0438 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",sameElse:\"L\"},relativeTime:{future:\"\\u042f\\u043a\\u0438\\u043d %s \\u0438\\u0447\\u0438\\u0434\\u0430\",past:\"\\u0411\\u0438\\u0440 \\u043d\\u0435\\u0447\\u0430 %s \\u043e\\u043b\\u0434\\u0438\\u043d\",s:\"\\u0444\\u0443\\u0440\\u0441\\u0430\\u0442\",ss:\"%d \\u0444\\u0443\\u0440\\u0441\\u0430\\u0442\",m:\"\\u0431\\u0438\\u0440 \\u0434\\u0430\\u043a\\u0438\\u043a\\u0430\",mm:\"%d \\u0434\\u0430\\u043a\\u0438\\u043a\\u0430\",h:\"\\u0431\\u0438\\u0440 \\u0441\\u043e\\u0430\\u0442\",hh:\"%d \\u0441\\u043e\\u0430\\u0442\",d:\"\\u0431\\u0438\\u0440 \\u043a\\u0443\\u043d\",dd:\"%d \\u043a\\u0443\\u043d\",M:\"\\u0431\\u0438\\u0440 \\u043e\\u0439\",MM:\"%d \\u043e\\u0439\",y:\"\\u0431\\u0438\\u0440 \\u0439\\u0438\\u043b\",yy:\"%d \\u0439\\u0438\\u043b\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},OIYi:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ca\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"YYYY-MM-DD\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(\"wd/R\"))},Oaa7:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-gb\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Ob0Z:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};function r(e,t,n,r){var i=\"\";if(t)switch(n){case\"s\":i=\"\\u0915\\u093e\\u0939\\u0940 \\u0938\\u0947\\u0915\\u0902\\u0926\";break;case\"ss\":i=\"%d \\u0938\\u0947\\u0915\\u0902\\u0926\";break;case\"m\":i=\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u093f\\u091f\";break;case\"mm\":i=\"%d \\u092e\\u093f\\u0928\\u093f\\u091f\\u0947\";break;case\"h\":i=\"\\u090f\\u0915 \\u0924\\u093e\\u0938\";break;case\"hh\":i=\"%d \\u0924\\u093e\\u0938\";break;case\"d\":i=\"\\u090f\\u0915 \\u0926\\u093f\\u0935\\u0938\";break;case\"dd\":i=\"%d \\u0926\\u093f\\u0935\\u0938\";break;case\"M\":i=\"\\u090f\\u0915 \\u092e\\u0939\\u093f\\u0928\\u093e\";break;case\"MM\":i=\"%d \\u092e\\u0939\\u093f\\u0928\\u0947\";break;case\"y\":i=\"\\u090f\\u0915 \\u0935\\u0930\\u094d\\u0937\";break;case\"yy\":i=\"%d \\u0935\\u0930\\u094d\\u0937\\u0947\"}else switch(n){case\"s\":i=\"\\u0915\\u093e\\u0939\\u0940 \\u0938\\u0947\\u0915\\u0902\\u0926\\u093e\\u0902\";break;case\"ss\":i=\"%d \\u0938\\u0947\\u0915\\u0902\\u0926\\u093e\\u0902\";break;case\"m\":i=\"\\u090f\\u0915\\u093e \\u092e\\u093f\\u0928\\u093f\\u091f\\u093e\";break;case\"mm\":i=\"%d \\u092e\\u093f\\u0928\\u093f\\u091f\\u093e\\u0902\";break;case\"h\":i=\"\\u090f\\u0915\\u093e \\u0924\\u093e\\u0938\\u093e\";break;case\"hh\":i=\"%d \\u0924\\u093e\\u0938\\u093e\\u0902\";break;case\"d\":i=\"\\u090f\\u0915\\u093e \\u0926\\u093f\\u0935\\u0938\\u093e\";break;case\"dd\":i=\"%d \\u0926\\u093f\\u0935\\u0938\\u093e\\u0902\";break;case\"M\":i=\"\\u090f\\u0915\\u093e \\u092e\\u0939\\u093f\\u0928\\u094d\\u092f\\u093e\";break;case\"MM\":i=\"%d \\u092e\\u0939\\u093f\\u0928\\u094d\\u092f\\u093e\\u0902\";break;case\"y\":i=\"\\u090f\\u0915\\u093e \\u0935\\u0930\\u094d\\u0937\\u093e\";break;case\"yy\":i=\"%d \\u0935\\u0930\\u094d\\u0937\\u093e\\u0902\"}return i.replace(/%d/i,e)}e.defineLocale(\"mr\",{months:\"\\u091c\\u093e\\u0928\\u0947\\u0935\\u093e\\u0930\\u0940_\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941\\u0935\\u093e\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u090f\\u092a\\u094d\\u0930\\u093f\\u0932_\\u092e\\u0947_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932\\u0948_\\u0911\\u0917\\u0938\\u094d\\u091f_\\u0938\\u092a\\u094d\\u091f\\u0947\\u0902\\u092c\\u0930_\\u0911\\u0915\\u094d\\u091f\\u094b\\u092c\\u0930_\\u0928\\u094b\\u0935\\u094d\\u0939\\u0947\\u0902\\u092c\\u0930_\\u0921\\u093f\\u0938\\u0947\\u0902\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u093e\\u0928\\u0947._\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941._\\u092e\\u093e\\u0930\\u094d\\u091a._\\u090f\\u092a\\u094d\\u0930\\u093f._\\u092e\\u0947._\\u091c\\u0942\\u0928._\\u091c\\u0941\\u0932\\u0948._\\u0911\\u0917._\\u0938\\u092a\\u094d\\u091f\\u0947\\u0902._\\u0911\\u0915\\u094d\\u091f\\u094b._\\u0928\\u094b\\u0935\\u094d\\u0939\\u0947\\u0902._\\u0921\\u093f\\u0938\\u0947\\u0902.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0930\\u0935\\u093f\\u0935\\u093e\\u0930_\\u0938\\u094b\\u092e\\u0935\\u093e\\u0930_\\u092e\\u0902\\u0917\\u0933\\u0935\\u093e\\u0930_\\u092c\\u0941\\u0927\\u0935\\u093e\\u0930_\\u0917\\u0941\\u0930\\u0942\\u0935\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u0935\\u093e\\u0930_\\u0936\\u0928\\u093f\\u0935\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0930\\u0935\\u093f_\\u0938\\u094b\\u092e_\\u092e\\u0902\\u0917\\u0933_\\u092c\\u0941\\u0927_\\u0917\\u0941\\u0930\\u0942_\\u0936\\u0941\\u0915\\u094d\\u0930_\\u0936\\u0928\\u093f\".split(\"_\"),weekdaysMin:\"\\u0930_\\u0938\\u094b_\\u092e\\u0902_\\u092c\\u0941_\\u0917\\u0941_\\u0936\\u0941_\\u0936\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\",LTS:\"A h:mm:ss \\u0935\\u093e\\u091c\\u0924\\u093e\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u0909\\u0926\\u094d\\u092f\\u093e] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0915\\u093e\\u0932] LT\",lastWeek:\"[\\u092e\\u093e\\u0917\\u0940\\u0932] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u092e\\u0927\\u094d\\u092f\\u0947\",past:\"%s\\u092a\\u0942\\u0930\\u094d\\u0935\\u0940\",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940|\\u0938\\u0915\\u093e\\u0933\\u0940|\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940|\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\"===t?e<4?e:e+12:\"\\u0938\\u0915\\u093e\\u0933\\u0940\"===t?e:\"\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940\"===t?e>=10?e:e+12:\"\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\":e<10?\"\\u0938\\u0915\\u093e\\u0933\\u0940\":e<17?\"\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940\":e<20?\"\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940\":\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},OjkT:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};e.defineLocale(\"ne\",{months:\"\\u091c\\u0928\\u0935\\u0930\\u0940_\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941\\u0935\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u093f\\u0932_\\u092e\\u0908_\\u091c\\u0941\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908_\\u0905\\u0917\\u0937\\u094d\\u091f_\\u0938\\u0947\\u092a\\u094d\\u091f\\u0947\\u092e\\u094d\\u092c\\u0930_\\u0905\\u0915\\u094d\\u091f\\u094b\\u092c\\u0930_\\u0928\\u094b\\u092d\\u0947\\u092e\\u094d\\u092c\\u0930_\\u0921\\u093f\\u0938\\u0947\\u092e\\u094d\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u0928._\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941._\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u093f._\\u092e\\u0908_\\u091c\\u0941\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908._\\u0905\\u0917._\\u0938\\u0947\\u092a\\u094d\\u091f._\\u0905\\u0915\\u094d\\u091f\\u094b._\\u0928\\u094b\\u092d\\u0947._\\u0921\\u093f\\u0938\\u0947.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0906\\u0907\\u0924\\u092c\\u093e\\u0930_\\u0938\\u094b\\u092e\\u092c\\u093e\\u0930_\\u092e\\u0919\\u094d\\u0917\\u0932\\u092c\\u093e\\u0930_\\u092c\\u0941\\u0927\\u092c\\u093e\\u0930_\\u092c\\u093f\\u0939\\u093f\\u092c\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u092c\\u093e\\u0930_\\u0936\\u0928\\u093f\\u092c\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0906\\u0907\\u0924._\\u0938\\u094b\\u092e._\\u092e\\u0919\\u094d\\u0917\\u0932._\\u092c\\u0941\\u0927._\\u092c\\u093f\\u0939\\u093f._\\u0936\\u0941\\u0915\\u094d\\u0930._\\u0936\\u0928\\u093f.\".split(\"_\"),weekdaysMin:\"\\u0906._\\u0938\\u094b._\\u092e\\u0902._\\u092c\\u0941._\\u092c\\u093f._\\u0936\\u0941._\\u0936.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\",LTS:\"A\\u0915\\u094b h:mm:ss \\u092c\\u091c\\u0947\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\",LLLL:\"dddd, D MMMM YYYY, A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\"},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924\\u093f|\\u092c\\u093f\\u0939\\u093e\\u0928|\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b|\\u0938\\u093e\\u0901\\u091d/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\\u093f\"===t?e<4?e:e+12:\"\\u092c\\u093f\\u0939\\u093e\\u0928\"===t?e:\"\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b\"===t?e>=10?e:e+12:\"\\u0938\\u093e\\u0901\\u091d\"===t?e+12:void 0},meridiem:function(e,t,n){return e<3?\"\\u0930\\u093e\\u0924\\u093f\":e<12?\"\\u092c\\u093f\\u0939\\u093e\\u0928\":e<16?\"\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b\":e<20?\"\\u0938\\u093e\\u0901\\u091d\":\"\\u0930\\u093e\\u0924\\u093f\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u092d\\u094b\\u0932\\u093f] LT\",nextWeek:\"[\\u0906\\u0909\\u0901\\u0926\\u094b] dddd[,] LT\",lastDay:\"[\\u0939\\u093f\\u091c\\u094b] LT\",lastWeek:\"[\\u0917\\u090f\\u0915\\u094b] dddd[,] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u092e\\u093e\",past:\"%s \\u0905\\u0917\\u093e\\u0921\\u093f\",s:\"\\u0915\\u0947\\u0939\\u0940 \\u0915\\u094d\\u0937\\u0923\",ss:\"%d \\u0938\\u0947\\u0915\\u0947\\u0923\\u094d\\u0921\",m:\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u0947\\u091f\",mm:\"%d \\u092e\\u093f\\u0928\\u0947\\u091f\",h:\"\\u090f\\u0915 \\u0918\\u0923\\u094d\\u091f\\u093e\",hh:\"%d \\u0918\\u0923\\u094d\\u091f\\u093e\",d:\"\\u090f\\u0915 \\u0926\\u093f\\u0928\",dd:\"%d \\u0926\\u093f\\u0928\",M:\"\\u090f\\u0915 \\u092e\\u0939\\u093f\\u0928\\u093e\",MM:\"%d \\u092e\\u0939\\u093f\\u0928\\u093e\",y:\"\\u090f\\u0915 \\u092c\\u0930\\u094d\\u0937\",yy:\"%d \\u092c\\u0930\\u094d\\u0937\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},Oxv6:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0443\\u043c\",1:\"-\\u0443\\u043c\",2:\"-\\u044e\\u043c\",3:\"-\\u044e\\u043c\",4:\"-\\u0443\\u043c\",5:\"-\\u0443\\u043c\",6:\"-\\u0443\\u043c\",7:\"-\\u0443\\u043c\",8:\"-\\u0443\\u043c\",9:\"-\\u0443\\u043c\",10:\"-\\u0443\\u043c\",12:\"-\\u0443\\u043c\",13:\"-\\u0443\\u043c\",20:\"-\\u0443\\u043c\",30:\"-\\u044e\\u043c\",40:\"-\\u0443\\u043c\",50:\"-\\u0443\\u043c\",60:\"-\\u0443\\u043c\",70:\"-\\u0443\\u043c\",80:\"-\\u0443\\u043c\",90:\"-\\u0443\\u043c\",100:\"-\\u0443\\u043c\"};e.defineLocale(\"tg\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440_\\u043d\\u043e\\u044f\\u0431\\u0440_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u044f\\u043a\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0434\\u0443\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0441\\u0435\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0447\\u043e\\u0440\\u0448\\u0430\\u043d\\u0431\\u0435_\\u043f\\u0430\\u043d\\u04b7\\u0448\\u0430\\u043d\\u0431\\u0435_\\u04b7\\u0443\\u043c\\u044a\\u0430_\\u0448\\u0430\\u043d\\u0431\\u0435\".split(\"_\"),weekdaysShort:\"\\u044f\\u0448\\u0431_\\u0434\\u0448\\u0431_\\u0441\\u0448\\u0431_\\u0447\\u0448\\u0431_\\u043f\\u0448\\u0431_\\u04b7\\u0443\\u043c_\\u0448\\u043d\\u0431\".split(\"_\"),weekdaysMin:\"\\u044f\\u0448_\\u0434\\u0448_\\u0441\\u0448_\\u0447\\u0448_\\u043f\\u0448_\\u04b7\\u043c_\\u0448\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0418\\u043c\\u0440\\u04ef\\u0437 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",nextDay:\"[\\u041f\\u0430\\u0433\\u043e\\u04b3 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",lastDay:\"[\\u0414\\u0438\\u0440\\u04ef\\u0437 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",nextWeek:\"dddd[\\u0438] [\\u04b3\\u0430\\u0444\\u0442\\u0430\\u0438 \\u043e\\u044f\\u043d\\u0434\\u0430 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",lastWeek:\"dddd[\\u0438] [\\u04b3\\u0430\\u0444\\u0442\\u0430\\u0438 \\u0433\\u0443\\u0437\\u0430\\u0448\\u0442\\u0430 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0431\\u0430\\u044a\\u0434\\u0438 %s\",past:\"%s \\u043f\\u0435\\u0448\",s:\"\\u044f\\u043a\\u0447\\u0430\\u043d\\u0434 \\u0441\\u043e\\u043d\\u0438\\u044f\",m:\"\\u044f\\u043a \\u0434\\u0430\\u049b\\u0438\\u049b\\u0430\",mm:\"%d \\u0434\\u0430\\u049b\\u0438\\u049b\\u0430\",h:\"\\u044f\\u043a \\u0441\\u043e\\u0430\\u0442\",hh:\"%d \\u0441\\u043e\\u0430\\u0442\",d:\"\\u044f\\u043a \\u0440\\u04ef\\u0437\",dd:\"%d \\u0440\\u04ef\\u0437\",M:\"\\u044f\\u043a \\u043c\\u043e\\u04b3\",MM:\"%d \\u043c\\u043e\\u04b3\",y:\"\\u044f\\u043a \\u0441\\u043e\\u043b\",yy:\"%d \\u0441\\u043e\\u043b\"},meridiemParse:/\\u0448\\u0430\\u0431|\\u0441\\u0443\\u0431\\u04b3|\\u0440\\u04ef\\u0437|\\u0431\\u0435\\u0433\\u043e\\u04b3/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0448\\u0430\\u0431\"===t?e<4?e:e+12:\"\\u0441\\u0443\\u0431\\u04b3\"===t?e:\"\\u0440\\u04ef\\u0437\"===t?e>=11?e:e+12:\"\\u0431\\u0435\\u0433\\u043e\\u04b3\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0448\\u0430\\u0431\":e<11?\"\\u0441\\u0443\\u0431\\u04b3\":e<16?\"\\u0440\\u04ef\\u0437\":e<19?\"\\u0431\\u0435\\u0433\\u043e\\u04b3\":\"\\u0448\\u0430\\u0431\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0443\\u043c|\\u044e\\u043c)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},PA2r:function(e,t,n){!function(e){\"use strict\";var t=\"leden_\\xfanor_b\\u0159ezen_duben_kv\\u011bten_\\u010derven_\\u010dervenec_srpen_z\\xe1\\u0159\\xed_\\u0159\\xedjen_listopad_prosinec\".split(\"_\"),n=\"led_\\xfano_b\\u0159e_dub_kv\\u011b_\\u010dvn_\\u010dvc_srp_z\\xe1\\u0159_\\u0159\\xedj_lis_pro\".split(\"_\"),r=[/^led/i,/^\\xfano/i,/^b\\u0159e/i,/^dub/i,/^kv\\u011b/i,/^(\\u010dvn|\\u010derven$|\\u010dervna)/i,/^(\\u010dvc|\\u010dervenec|\\u010dervence)/i,/^srp/i,/^z\\xe1\\u0159/i,/^\\u0159\\xedj/i,/^lis/i,/^pro/i],i=/^(leden|\\xfanor|b\\u0159ezen|duben|kv\\u011bten|\\u010dervenec|\\u010dervence|\\u010derven|\\u010dervna|srpen|z\\xe1\\u0159\\xed|\\u0159\\xedjen|listopad|prosinec|led|\\xfano|b\\u0159e|dub|kv\\u011b|\\u010dvn|\\u010dvc|srp|z\\xe1\\u0159|\\u0159\\xedj|lis|pro)/i;function a(e){return e>1&&e<5&&1!=~~(e/10)}function o(e,t,n,r){var i=e+\" \";switch(n){case\"s\":return t||r?\"p\\xe1r sekund\":\"p\\xe1r sekundami\";case\"ss\":return t||r?i+(a(e)?\"sekundy\":\"sekund\"):i+\"sekundami\";case\"m\":return t?\"minuta\":r?\"minutu\":\"minutou\";case\"mm\":return t||r?i+(a(e)?\"minuty\":\"minut\"):i+\"minutami\";case\"h\":return t?\"hodina\":r?\"hodinu\":\"hodinou\";case\"hh\":return t||r?i+(a(e)?\"hodiny\":\"hodin\"):i+\"hodinami\";case\"d\":return t||r?\"den\":\"dnem\";case\"dd\":return t||r?i+(a(e)?\"dny\":\"dn\\xed\"):i+\"dny\";case\"M\":return t||r?\"m\\u011bs\\xedc\":\"m\\u011bs\\xedcem\";case\"MM\":return t||r?i+(a(e)?\"m\\u011bs\\xedce\":\"m\\u011bs\\xedc\\u016f\"):i+\"m\\u011bs\\xedci\";case\"y\":return t||r?\"rok\":\"rokem\";case\"yy\":return t||r?i+(a(e)?\"roky\":\"let\"):i+\"lety\"}}e.defineLocale(\"cs\",{months:t,monthsShort:n,monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(leden|ledna|\\xfanora|\\xfanor|b\\u0159ezen|b\\u0159ezna|duben|dubna|kv\\u011bten|kv\\u011btna|\\u010dervenec|\\u010dervence|\\u010derven|\\u010dervna|srpen|srpna|z\\xe1\\u0159\\xed|\\u0159\\xedjen|\\u0159\\xedjna|listopadu|listopad|prosinec|prosince)/i,monthsShortStrictRegex:/^(led|\\xfano|b\\u0159e|dub|kv\\u011b|\\u010dvn|\\u010dvc|srp|z\\xe1\\u0159|\\u0159\\xedj|lis|pro)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:\"ned\\u011ble_pond\\u011bl\\xed_\\xfater\\xfd_st\\u0159eda_\\u010dtvrtek_p\\xe1tek_sobota\".split(\"_\"),weekdaysShort:\"ne_po_\\xfat_st_\\u010dt_p\\xe1_so\".split(\"_\"),weekdaysMin:\"ne_po_\\xfat_st_\\u010dt_p\\xe1_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\",l:\"D. M. YYYY\"},calendar:{sameDay:\"[dnes v] LT\",nextDay:\"[z\\xedtra v] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v ned\\u011bli v] LT\";case 1:case 2:return\"[v] dddd [v] LT\";case 3:return\"[ve st\\u0159edu v] LT\";case 4:return\"[ve \\u010dtvrtek v] LT\";case 5:return\"[v p\\xe1tek v] LT\";case 6:return\"[v sobotu v] LT\"}},lastDay:\"[v\\u010dera v] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minulou ned\\u011bli v] LT\";case 1:case 2:return\"[minul\\xe9] dddd [v] LT\";case 3:return\"[minulou st\\u0159edu v] LT\";case 4:case 5:return\"[minul\\xfd] dddd [v] LT\";case 6:return\"[minulou sobotu v] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"p\\u0159ed %s\",s:o,ss:o,m:o,mm:o,h:o,hh:o,d:o,dd:o,M:o,MM:o,y:o,yy:o},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},PeUW:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0be7\",2:\"\\u0be8\",3:\"\\u0be9\",4:\"\\u0bea\",5:\"\\u0beb\",6:\"\\u0bec\",7:\"\\u0bed\",8:\"\\u0bee\",9:\"\\u0bef\",0:\"\\u0be6\"},n={\"\\u0be7\":\"1\",\"\\u0be8\":\"2\",\"\\u0be9\":\"3\",\"\\u0bea\":\"4\",\"\\u0beb\":\"5\",\"\\u0bec\":\"6\",\"\\u0bed\":\"7\",\"\\u0bee\":\"8\",\"\\u0bef\":\"9\",\"\\u0be6\":\"0\"};e.defineLocale(\"ta\",{months:\"\\u0b9c\\u0ba9\\u0bb5\\u0bb0\\u0bbf_\\u0baa\\u0bbf\\u0baa\\u0bcd\\u0bb0\\u0bb5\\u0bb0\\u0bbf_\\u0bae\\u0bbe\\u0bb0\\u0bcd\\u0b9a\\u0bcd_\\u0b8f\\u0baa\\u0bcd\\u0bb0\\u0bb2\\u0bcd_\\u0bae\\u0bc7_\\u0b9c\\u0bc2\\u0ba9\\u0bcd_\\u0b9c\\u0bc2\\u0bb2\\u0bc8_\\u0b86\\u0b95\\u0bb8\\u0bcd\\u0b9f\\u0bcd_\\u0b9a\\u0bc6\\u0baa\\u0bcd\\u0b9f\\u0bc6\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b85\\u0b95\\u0bcd\\u0b9f\\u0bc7\\u0bbe\\u0baa\\u0bb0\\u0bcd_\\u0ba8\\u0bb5\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b9f\\u0bbf\\u0b9a\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd\".split(\"_\"),monthsShort:\"\\u0b9c\\u0ba9\\u0bb5\\u0bb0\\u0bbf_\\u0baa\\u0bbf\\u0baa\\u0bcd\\u0bb0\\u0bb5\\u0bb0\\u0bbf_\\u0bae\\u0bbe\\u0bb0\\u0bcd\\u0b9a\\u0bcd_\\u0b8f\\u0baa\\u0bcd\\u0bb0\\u0bb2\\u0bcd_\\u0bae\\u0bc7_\\u0b9c\\u0bc2\\u0ba9\\u0bcd_\\u0b9c\\u0bc2\\u0bb2\\u0bc8_\\u0b86\\u0b95\\u0bb8\\u0bcd\\u0b9f\\u0bcd_\\u0b9a\\u0bc6\\u0baa\\u0bcd\\u0b9f\\u0bc6\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b85\\u0b95\\u0bcd\\u0b9f\\u0bc7\\u0bbe\\u0baa\\u0bb0\\u0bcd_\\u0ba8\\u0bb5\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b9f\\u0bbf\\u0b9a\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd\".split(\"_\"),weekdays:\"\\u0b9e\\u0bbe\\u0baf\\u0bbf\\u0bb1\\u0bcd\\u0bb1\\u0bc1\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0ba4\\u0bbf\\u0b99\\u0bcd\\u0b95\\u0b9f\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0b9a\\u0bc6\\u0bb5\\u0bcd\\u0bb5\\u0bbe\\u0baf\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0baa\\u0bc1\\u0ba4\\u0ba9\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0bb5\\u0bbf\\u0baf\\u0bbe\\u0bb4\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0bb5\\u0bc6\\u0bb3\\u0bcd\\u0bb3\\u0bbf\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0b9a\\u0ba9\\u0bbf\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8\".split(\"_\"),weekdaysShort:\"\\u0b9e\\u0bbe\\u0baf\\u0bbf\\u0bb1\\u0bc1_\\u0ba4\\u0bbf\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd_\\u0b9a\\u0bc6\\u0bb5\\u0bcd\\u0bb5\\u0bbe\\u0baf\\u0bcd_\\u0baa\\u0bc1\\u0ba4\\u0ba9\\u0bcd_\\u0bb5\\u0bbf\\u0baf\\u0bbe\\u0bb4\\u0ba9\\u0bcd_\\u0bb5\\u0bc6\\u0bb3\\u0bcd\\u0bb3\\u0bbf_\\u0b9a\\u0ba9\\u0bbf\".split(\"_\"),weekdaysMin:\"\\u0b9e\\u0bbe_\\u0ba4\\u0bbf_\\u0b9a\\u0bc6_\\u0baa\\u0bc1_\\u0bb5\\u0bbf_\\u0bb5\\u0bc6_\\u0b9a\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, HH:mm\",LLLL:\"dddd, D MMMM YYYY, HH:mm\"},calendar:{sameDay:\"[\\u0b87\\u0ba9\\u0bcd\\u0bb1\\u0bc1] LT\",nextDay:\"[\\u0ba8\\u0bbe\\u0bb3\\u0bc8] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0ba8\\u0bc7\\u0bb1\\u0bcd\\u0bb1\\u0bc1] LT\",lastWeek:\"[\\u0b95\\u0b9f\\u0ba8\\u0bcd\\u0ba4 \\u0bb5\\u0bbe\\u0bb0\\u0bae\\u0bcd] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0b87\\u0bb2\\u0bcd\",past:\"%s \\u0bae\\u0bc1\\u0ba9\\u0bcd\",s:\"\\u0b92\\u0bb0\\u0bc1 \\u0b9a\\u0bbf\\u0bb2 \\u0bb5\\u0bbf\\u0ba8\\u0bbe\\u0b9f\\u0bbf\\u0b95\\u0bb3\\u0bcd\",ss:\"%d \\u0bb5\\u0bbf\\u0ba8\\u0bbe\\u0b9f\\u0bbf\\u0b95\\u0bb3\\u0bcd\",m:\"\\u0b92\\u0bb0\\u0bc1 \\u0ba8\\u0bbf\\u0bae\\u0bbf\\u0b9f\\u0bae\\u0bcd\",mm:\"%d \\u0ba8\\u0bbf\\u0bae\\u0bbf\\u0b9f\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd\",h:\"\\u0b92\\u0bb0\\u0bc1 \\u0bae\\u0ba3\\u0bbf \\u0ba8\\u0bc7\\u0bb0\\u0bae\\u0bcd\",hh:\"%d \\u0bae\\u0ba3\\u0bbf \\u0ba8\\u0bc7\\u0bb0\\u0bae\\u0bcd\",d:\"\\u0b92\\u0bb0\\u0bc1 \\u0ba8\\u0bbe\\u0bb3\\u0bcd\",dd:\"%d \\u0ba8\\u0bbe\\u0b9f\\u0bcd\\u0b95\\u0bb3\\u0bcd\",M:\"\\u0b92\\u0bb0\\u0bc1 \\u0bae\\u0bbe\\u0ba4\\u0bae\\u0bcd\",MM:\"%d \\u0bae\\u0bbe\\u0ba4\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd\",y:\"\\u0b92\\u0bb0\\u0bc1 \\u0bb5\\u0bb0\\u0bc1\\u0b9f\\u0bae\\u0bcd\",yy:\"%d \\u0b86\\u0ba3\\u0bcd\\u0b9f\\u0bc1\\u0b95\\u0bb3\\u0bcd\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u0bb5\\u0ba4\\u0bc1/,ordinal:function(e){return e+\"\\u0bb5\\u0ba4\\u0bc1\"},preparse:function(e){return e.replace(/[\\u0be7\\u0be8\\u0be9\\u0bea\\u0beb\\u0bec\\u0bed\\u0bee\\u0bef\\u0be6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd|\\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8|\\u0b95\\u0bbe\\u0bb2\\u0bc8|\\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd|\\u0b8e\\u0bb1\\u0bcd\\u0baa\\u0bbe\\u0b9f\\u0bc1|\\u0bae\\u0bbe\\u0bb2\\u0bc8/,meridiem:function(e,t,n){return e<2?\" \\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\":e<6?\" \\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8\":e<10?\" \\u0b95\\u0bbe\\u0bb2\\u0bc8\":e<14?\" \\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd\":e<18?\" \\u0b8e\\u0bb1\\u0bcd\\u0baa\\u0bbe\\u0b9f\\u0bc1\":e<22?\" \\u0bae\\u0bbe\\u0bb2\\u0bc8\":\" \\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\"===t?e<2?e:e+12:\"\\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8\"===t||\"\\u0b95\\u0bbe\\u0bb2\\u0bc8\"===t||\"\\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd\"===t&&e>=10?e:e+12},week:{dow:0,doy:6}})}(n(\"wd/R\"))},PpIw:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0ce7\",2:\"\\u0ce8\",3:\"\\u0ce9\",4:\"\\u0cea\",5:\"\\u0ceb\",6:\"\\u0cec\",7:\"\\u0ced\",8:\"\\u0cee\",9:\"\\u0cef\",0:\"\\u0ce6\"},n={\"\\u0ce7\":\"1\",\"\\u0ce8\":\"2\",\"\\u0ce9\":\"3\",\"\\u0cea\":\"4\",\"\\u0ceb\":\"5\",\"\\u0cec\":\"6\",\"\\u0ced\":\"7\",\"\\u0cee\":\"8\",\"\\u0cef\":\"9\",\"\\u0ce6\":\"0\"};e.defineLocale(\"kn\",{months:\"\\u0c9c\\u0ca8\\u0cb5\\u0cb0\\u0cbf_\\u0cab\\u0cc6\\u0cac\\u0ccd\\u0cb0\\u0cb5\\u0cb0\\u0cbf_\\u0cae\\u0cbe\\u0cb0\\u0ccd\\u0c9a\\u0ccd_\\u0c8f\\u0caa\\u0ccd\\u0cb0\\u0cbf\\u0cb2\\u0ccd_\\u0cae\\u0cc6\\u0cd5_\\u0c9c\\u0cc2\\u0ca8\\u0ccd_\\u0c9c\\u0cc1\\u0cb2\\u0cc6\\u0cd6_\\u0c86\\u0c97\\u0cb8\\u0ccd\\u0c9f\\u0ccd_\\u0cb8\\u0cc6\\u0caa\\u0ccd\\u0c9f\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd_\\u0c85\\u0c95\\u0ccd\\u0c9f\\u0cc6\\u0cc2\\u0cd5\\u0cac\\u0cb0\\u0ccd_\\u0ca8\\u0cb5\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd_\\u0ca1\\u0cbf\\u0cb8\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd\".split(\"_\"),monthsShort:\"\\u0c9c\\u0ca8_\\u0cab\\u0cc6\\u0cac\\u0ccd\\u0cb0_\\u0cae\\u0cbe\\u0cb0\\u0ccd\\u0c9a\\u0ccd_\\u0c8f\\u0caa\\u0ccd\\u0cb0\\u0cbf\\u0cb2\\u0ccd_\\u0cae\\u0cc6\\u0cd5_\\u0c9c\\u0cc2\\u0ca8\\u0ccd_\\u0c9c\\u0cc1\\u0cb2\\u0cc6\\u0cd6_\\u0c86\\u0c97\\u0cb8\\u0ccd\\u0c9f\\u0ccd_\\u0cb8\\u0cc6\\u0caa\\u0ccd\\u0c9f\\u0cc6\\u0c82_\\u0c85\\u0c95\\u0ccd\\u0c9f\\u0cc6\\u0cc2\\u0cd5_\\u0ca8\\u0cb5\\u0cc6\\u0c82_\\u0ca1\\u0cbf\\u0cb8\\u0cc6\\u0c82\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0cad\\u0cbe\\u0ca8\\u0cc1\\u0cb5\\u0cbe\\u0cb0_\\u0cb8\\u0cc6\\u0cc2\\u0cd5\\u0cae\\u0cb5\\u0cbe\\u0cb0_\\u0cae\\u0c82\\u0c97\\u0cb3\\u0cb5\\u0cbe\\u0cb0_\\u0cac\\u0cc1\\u0ca7\\u0cb5\\u0cbe\\u0cb0_\\u0c97\\u0cc1\\u0cb0\\u0cc1\\u0cb5\\u0cbe\\u0cb0_\\u0cb6\\u0cc1\\u0c95\\u0ccd\\u0cb0\\u0cb5\\u0cbe\\u0cb0_\\u0cb6\\u0ca8\\u0cbf\\u0cb5\\u0cbe\\u0cb0\".split(\"_\"),weekdaysShort:\"\\u0cad\\u0cbe\\u0ca8\\u0cc1_\\u0cb8\\u0cc6\\u0cc2\\u0cd5\\u0cae_\\u0cae\\u0c82\\u0c97\\u0cb3_\\u0cac\\u0cc1\\u0ca7_\\u0c97\\u0cc1\\u0cb0\\u0cc1_\\u0cb6\\u0cc1\\u0c95\\u0ccd\\u0cb0_\\u0cb6\\u0ca8\\u0cbf\".split(\"_\"),weekdaysMin:\"\\u0cad\\u0cbe_\\u0cb8\\u0cc6\\u0cc2\\u0cd5_\\u0cae\\u0c82_\\u0cac\\u0cc1_\\u0c97\\u0cc1_\\u0cb6\\u0cc1_\\u0cb6\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0c87\\u0c82\\u0ca6\\u0cc1] LT\",nextDay:\"[\\u0ca8\\u0cbe\\u0cb3\\u0cc6] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0ca8\\u0cbf\\u0ca8\\u0ccd\\u0ca8\\u0cc6] LT\",lastWeek:\"[\\u0c95\\u0cc6\\u0cc2\\u0ca8\\u0cc6\\u0caf] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0ca8\\u0c82\\u0ca4\\u0cb0\",past:\"%s \\u0cb9\\u0cbf\\u0c82\\u0ca6\\u0cc6\",s:\"\\u0c95\\u0cc6\\u0cb2\\u0cb5\\u0cc1 \\u0c95\\u0ccd\\u0cb7\\u0ca3\\u0c97\\u0cb3\\u0cc1\",ss:\"%d \\u0cb8\\u0cc6\\u0c95\\u0cc6\\u0c82\\u0ca1\\u0cc1\\u0c97\\u0cb3\\u0cc1\",m:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca8\\u0cbf\\u0cae\\u0cbf\\u0cb7\",mm:\"%d \\u0ca8\\u0cbf\\u0cae\\u0cbf\\u0cb7\",h:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0c97\\u0c82\\u0c9f\\u0cc6\",hh:\"%d \\u0c97\\u0c82\\u0c9f\\u0cc6\",d:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca6\\u0cbf\\u0ca8\",dd:\"%d \\u0ca6\\u0cbf\\u0ca8\",M:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca4\\u0cbf\\u0c82\\u0c97\\u0cb3\\u0cc1\",MM:\"%d \\u0ca4\\u0cbf\\u0c82\\u0c97\\u0cb3\\u0cc1\",y:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0cb5\\u0cb0\\u0ccd\\u0cb7\",yy:\"%d \\u0cb5\\u0cb0\\u0ccd\\u0cb7\"},preparse:function(e){return e.replace(/[\\u0ce7\\u0ce8\\u0ce9\\u0cea\\u0ceb\\u0cec\\u0ced\\u0cee\\u0cef\\u0ce6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf|\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6|\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8|\\u0cb8\\u0c82\\u0c9c\\u0cc6/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\"===t?e<4?e:e+12:\"\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6\"===t?e:\"\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8\"===t?e>=10?e:e+12:\"\\u0cb8\\u0c82\\u0c9c\\u0cc6\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\":e<10?\"\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6\":e<17?\"\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8\":e<20?\"\\u0cb8\\u0c82\\u0c9c\\u0cc6\":\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u0ca8\\u0cc6\\u0cd5)/,ordinal:function(e){return e+\"\\u0ca8\\u0cc6\\u0cd5\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},Qj4J:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-kw\",{months:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648\\u0632_\\u063a\\u0634\\u062a_\\u0634\\u062a\\u0646\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0646\\u0628\\u0631_\\u062f\\u062c\\u0646\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648\\u0632_\\u063a\\u0634\\u062a_\\u0634\\u062a\\u0646\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0646\\u0628\\u0631_\\u062f\\u062c\\u0646\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062a\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0627\\u062d\\u062f_\\u0627\\u062a\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:0,doy:12}})}(n(\"wd/R\"))},RAwQ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={m:[\"eng Minutt\",\"enger Minutt\"],h:[\"eng Stonn\",\"enger Stonn\"],d:[\"een Dag\",\"engem Dag\"],M:[\"ee Mount\",\"engem Mount\"],y:[\"ee Joer\",\"engem Joer\"]};return t?i[n][0]:i[n][1]}function n(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var t=e%10;return n(0===t?e/10:t)}if(e<1e4){for(;e>=10;)e/=10;return n(e)}return n(e/=1e3)}e.defineLocale(\"lb\",{months:\"Januar_Februar_M\\xe4erz_Abr\\xebll_Mee_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonndeg_M\\xe9indeg_D\\xebnschdeg_M\\xebttwoch_Donneschdeg_Freideg_Samschdeg\".split(\"_\"),weekdaysShort:\"So._M\\xe9._D\\xeb._M\\xeb._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_M\\xe9_D\\xeb_M\\xeb_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm [Auer]\",LTS:\"H:mm:ss [Auer]\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm [Auer]\",LLLL:\"dddd, D. MMMM YYYY H:mm [Auer]\"},calendar:{sameDay:\"[Haut um] LT\",sameElse:\"L\",nextDay:\"[Muer um] LT\",nextWeek:\"dddd [um] LT\",lastDay:\"[G\\xebschter um] LT\",lastWeek:function(){switch(this.day()){case 2:case 4:return\"[Leschten] dddd [um] LT\";default:return\"[Leschte] dddd [um] LT\"}}},relativeTime:{future:function(e){return n(e.substr(0,e.indexOf(\" \")))?\"a \"+e:\"an \"+e},past:function(e){return n(e.substr(0,e.indexOf(\" \")))?\"viru \"+e:\"virun \"+e},s:\"e puer Sekonnen\",ss:\"%d Sekonnen\",m:t,mm:\"%d Minutten\",h:t,hh:\"%d Stonnen\",d:t,dd:\"%d Deeg\",M:t,MM:\"%d M\\xe9int\",y:t,yy:\"%d Joer\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},RnhZ:function(e,t,n){var r={\"./af\":\"K/tc\",\"./af.js\":\"K/tc\",\"./ar\":\"jnO4\",\"./ar-dz\":\"o1bE\",\"./ar-dz.js\":\"o1bE\",\"./ar-kw\":\"Qj4J\",\"./ar-kw.js\":\"Qj4J\",\"./ar-ly\":\"HP3h\",\"./ar-ly.js\":\"HP3h\",\"./ar-ma\":\"CoRJ\",\"./ar-ma.js\":\"CoRJ\",\"./ar-sa\":\"gjCT\",\"./ar-sa.js\":\"gjCT\",\"./ar-tn\":\"bYM6\",\"./ar-tn.js\":\"bYM6\",\"./ar.js\":\"jnO4\",\"./az\":\"SFxW\",\"./az.js\":\"SFxW\",\"./be\":\"H8ED\",\"./be.js\":\"H8ED\",\"./bg\":\"hKrs\",\"./bg.js\":\"hKrs\",\"./bm\":\"p/rL\",\"./bm.js\":\"p/rL\",\"./bn\":\"kEOa\",\"./bn.js\":\"kEOa\",\"./bo\":\"0mo+\",\"./bo.js\":\"0mo+\",\"./br\":\"aIdf\",\"./br.js\":\"aIdf\",\"./bs\":\"JVSJ\",\"./bs.js\":\"JVSJ\",\"./ca\":\"1xZ4\",\"./ca.js\":\"1xZ4\",\"./cs\":\"PA2r\",\"./cs.js\":\"PA2r\",\"./cv\":\"A+xa\",\"./cv.js\":\"A+xa\",\"./cy\":\"l5ep\",\"./cy.js\":\"l5ep\",\"./da\":\"DxQv\",\"./da.js\":\"DxQv\",\"./de\":\"tGlX\",\"./de-at\":\"s+uk\",\"./de-at.js\":\"s+uk\",\"./de-ch\":\"u3GI\",\"./de-ch.js\":\"u3GI\",\"./de.js\":\"tGlX\",\"./dv\":\"WYrj\",\"./dv.js\":\"WYrj\",\"./el\":\"jUeY\",\"./el.js\":\"jUeY\",\"./en-SG\":\"zavE\",\"./en-SG.js\":\"zavE\",\"./en-au\":\"Dmvi\",\"./en-au.js\":\"Dmvi\",\"./en-ca\":\"OIYi\",\"./en-ca.js\":\"OIYi\",\"./en-gb\":\"Oaa7\",\"./en-gb.js\":\"Oaa7\",\"./en-ie\":\"4dOw\",\"./en-ie.js\":\"4dOw\",\"./en-il\":\"czMo\",\"./en-il.js\":\"czMo\",\"./en-nz\":\"b1Dy\",\"./en-nz.js\":\"b1Dy\",\"./eo\":\"Zduo\",\"./eo.js\":\"Zduo\",\"./es\":\"iYuL\",\"./es-do\":\"CjzT\",\"./es-do.js\":\"CjzT\",\"./es-us\":\"Vclq\",\"./es-us.js\":\"Vclq\",\"./es.js\":\"iYuL\",\"./et\":\"7BjC\",\"./et.js\":\"7BjC\",\"./eu\":\"D/JM\",\"./eu.js\":\"D/JM\",\"./fa\":\"jfSC\",\"./fa.js\":\"jfSC\",\"./fi\":\"gekB\",\"./fi.js\":\"gekB\",\"./fo\":\"ByF4\",\"./fo.js\":\"ByF4\",\"./fr\":\"nyYc\",\"./fr-ca\":\"2fjn\",\"./fr-ca.js\":\"2fjn\",\"./fr-ch\":\"Dkky\",\"./fr-ch.js\":\"Dkky\",\"./fr.js\":\"nyYc\",\"./fy\":\"cRix\",\"./fy.js\":\"cRix\",\"./ga\":\"USCx\",\"./ga.js\":\"USCx\",\"./gd\":\"9rRi\",\"./gd.js\":\"9rRi\",\"./gl\":\"iEDd\",\"./gl.js\":\"iEDd\",\"./gom-latn\":\"DKr+\",\"./gom-latn.js\":\"DKr+\",\"./gu\":\"4MV3\",\"./gu.js\":\"4MV3\",\"./he\":\"x6pH\",\"./he.js\":\"x6pH\",\"./hi\":\"3E1r\",\"./hi.js\":\"3E1r\",\"./hr\":\"S6ln\",\"./hr.js\":\"S6ln\",\"./hu\":\"WxRl\",\"./hu.js\":\"WxRl\",\"./hy-am\":\"1rYy\",\"./hy-am.js\":\"1rYy\",\"./id\":\"UDhR\",\"./id.js\":\"UDhR\",\"./is\":\"BVg3\",\"./is.js\":\"BVg3\",\"./it\":\"bpih\",\"./it-ch\":\"bxKX\",\"./it-ch.js\":\"bxKX\",\"./it.js\":\"bpih\",\"./ja\":\"B55N\",\"./ja.js\":\"B55N\",\"./jv\":\"tUCv\",\"./jv.js\":\"tUCv\",\"./ka\":\"IBtZ\",\"./ka.js\":\"IBtZ\",\"./kk\":\"bXm7\",\"./kk.js\":\"bXm7\",\"./km\":\"6B0Y\",\"./km.js\":\"6B0Y\",\"./kn\":\"PpIw\",\"./kn.js\":\"PpIw\",\"./ko\":\"Ivi+\",\"./ko.js\":\"Ivi+\",\"./ku\":\"JCF/\",\"./ku.js\":\"JCF/\",\"./ky\":\"lgnt\",\"./ky.js\":\"lgnt\",\"./lb\":\"RAwQ\",\"./lb.js\":\"RAwQ\",\"./lo\":\"sp3z\",\"./lo.js\":\"sp3z\",\"./lt\":\"JvlW\",\"./lt.js\":\"JvlW\",\"./lv\":\"uXwI\",\"./lv.js\":\"uXwI\",\"./me\":\"KTz0\",\"./me.js\":\"KTz0\",\"./mi\":\"aIsn\",\"./mi.js\":\"aIsn\",\"./mk\":\"aQkU\",\"./mk.js\":\"aQkU\",\"./ml\":\"AvvY\",\"./ml.js\":\"AvvY\",\"./mn\":\"lYtQ\",\"./mn.js\":\"lYtQ\",\"./mr\":\"Ob0Z\",\"./mr.js\":\"Ob0Z\",\"./ms\":\"6+QB\",\"./ms-my\":\"ZAMP\",\"./ms-my.js\":\"ZAMP\",\"./ms.js\":\"6+QB\",\"./mt\":\"G0Uy\",\"./mt.js\":\"G0Uy\",\"./my\":\"honF\",\"./my.js\":\"honF\",\"./nb\":\"bOMt\",\"./nb.js\":\"bOMt\",\"./ne\":\"OjkT\",\"./ne.js\":\"OjkT\",\"./nl\":\"+s0g\",\"./nl-be\":\"2ykv\",\"./nl-be.js\":\"2ykv\",\"./nl.js\":\"+s0g\",\"./nn\":\"uEye\",\"./nn.js\":\"uEye\",\"./pa-in\":\"8/+R\",\"./pa-in.js\":\"8/+R\",\"./pl\":\"jVdC\",\"./pl.js\":\"jVdC\",\"./pt\":\"8mBD\",\"./pt-br\":\"0tRk\",\"./pt-br.js\":\"0tRk\",\"./pt.js\":\"8mBD\",\"./ro\":\"lyxo\",\"./ro.js\":\"lyxo\",\"./ru\":\"lXzo\",\"./ru.js\":\"lXzo\",\"./sd\":\"Z4QM\",\"./sd.js\":\"Z4QM\",\"./se\":\"//9w\",\"./se.js\":\"//9w\",\"./si\":\"7aV9\",\"./si.js\":\"7aV9\",\"./sk\":\"e+ae\",\"./sk.js\":\"e+ae\",\"./sl\":\"gVVK\",\"./sl.js\":\"gVVK\",\"./sq\":\"yPMs\",\"./sq.js\":\"yPMs\",\"./sr\":\"zx6S\",\"./sr-cyrl\":\"E+lV\",\"./sr-cyrl.js\":\"E+lV\",\"./sr.js\":\"zx6S\",\"./ss\":\"Ur1D\",\"./ss.js\":\"Ur1D\",\"./sv\":\"X709\",\"./sv.js\":\"X709\",\"./sw\":\"dNwA\",\"./sw.js\":\"dNwA\",\"./ta\":\"PeUW\",\"./ta.js\":\"PeUW\",\"./te\":\"XLvN\",\"./te.js\":\"XLvN\",\"./tet\":\"V2x9\",\"./tet.js\":\"V2x9\",\"./tg\":\"Oxv6\",\"./tg.js\":\"Oxv6\",\"./th\":\"EOgW\",\"./th.js\":\"EOgW\",\"./tl-ph\":\"Dzi0\",\"./tl-ph.js\":\"Dzi0\",\"./tlh\":\"z3Vd\",\"./tlh.js\":\"z3Vd\",\"./tr\":\"DoHr\",\"./tr.js\":\"DoHr\",\"./tzl\":\"z1FC\",\"./tzl.js\":\"z1FC\",\"./tzm\":\"wQk9\",\"./tzm-latn\":\"tT3J\",\"./tzm-latn.js\":\"tT3J\",\"./tzm.js\":\"wQk9\",\"./ug-cn\":\"YRex\",\"./ug-cn.js\":\"YRex\",\"./uk\":\"raLr\",\"./uk.js\":\"raLr\",\"./ur\":\"UpQW\",\"./ur.js\":\"UpQW\",\"./uz\":\"Loxo\",\"./uz-latn\":\"AQ68\",\"./uz-latn.js\":\"AQ68\",\"./uz.js\":\"Loxo\",\"./vi\":\"KSF8\",\"./vi.js\":\"KSF8\",\"./x-pseudo\":\"/X5v\",\"./x-pseudo.js\":\"/X5v\",\"./yo\":\"fzPg\",\"./yo.js\":\"fzPg\",\"./zh-cn\":\"XDpg\",\"./zh-cn.js\":\"XDpg\",\"./zh-hk\":\"SatO\",\"./zh-hk.js\":\"SatO\",\"./zh-tw\":\"kOpN\",\"./zh-tw.js\":\"kOpN\"};function i(e){var t=a(e);return n(t)}function a(e){if(!n.o(r,e)){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}return r[e]}i.keys=function(){return Object.keys(r)},i.resolve=a,e.exports=i,i.id=\"RnhZ\"},S6ln:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r=e+\" \";switch(n){case\"ss\":return r+(1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\");case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return r+(1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\");case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return r+(1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\");case\"dd\":return r+(1===e?\"dan\":\"dana\");case\"MM\":return r+(1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\");case\"yy\":return r+(1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\")}}e.defineLocale(\"hr\",{months:{format:\"sije\\u010dnja_velja\\u010de_o\\u017eujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca\".split(\"_\"),standalone:\"sije\\u010danj_velja\\u010da_o\\u017eujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac\".split(\"_\")},monthsShort:\"sij._velj._o\\u017eu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010der u] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:return\"[pro\\u0161lu] dddd [u] LT\";case 6:return\"[pro\\u0161le] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[pro\\u0161li] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},SFxW:function(e,t,n){!function(e){\"use strict\";var t={1:\"-inci\",5:\"-inci\",8:\"-inci\",70:\"-inci\",80:\"-inci\",2:\"-nci\",7:\"-nci\",20:\"-nci\",50:\"-nci\",3:\"-\\xfcnc\\xfc\",4:\"-\\xfcnc\\xfc\",100:\"-\\xfcnc\\xfc\",6:\"-nc\\u0131\",9:\"-uncu\",10:\"-uncu\",30:\"-uncu\",60:\"-\\u0131nc\\u0131\",90:\"-\\u0131nc\\u0131\"};e.defineLocale(\"az\",{months:\"yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr\".split(\"_\"),monthsShort:\"yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek\".split(\"_\"),weekdays:\"Bazar_Bazar ert\\u0259si_\\xc7\\u0259r\\u015f\\u0259nb\\u0259 ax\\u015fam\\u0131_\\xc7\\u0259r\\u015f\\u0259nb\\u0259_C\\xfcm\\u0259 ax\\u015fam\\u0131_C\\xfcm\\u0259_\\u015e\\u0259nb\\u0259\".split(\"_\"),weekdaysShort:\"Baz_BzE_\\xc7Ax_\\xc7\\u0259r_CAx_C\\xfcm_\\u015e\\u0259n\".split(\"_\"),weekdaysMin:\"Bz_BE_\\xc7A_\\xc7\\u0259_CA_C\\xfc_\\u015e\\u0259\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bug\\xfcn saat] LT\",nextDay:\"[sabah saat] LT\",nextWeek:\"[g\\u0259l\\u0259n h\\u0259ft\\u0259] dddd [saat] LT\",lastDay:\"[d\\xfcn\\u0259n] LT\",lastWeek:\"[ke\\xe7\\u0259n h\\u0259ft\\u0259] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s \\u0259vv\\u0259l\",s:\"birne\\xe7\\u0259 saniy\\u0259\",ss:\"%d saniy\\u0259\",m:\"bir d\\u0259qiq\\u0259\",mm:\"%d d\\u0259qiq\\u0259\",h:\"bir saat\",hh:\"%d saat\",d:\"bir g\\xfcn\",dd:\"%d g\\xfcn\",M:\"bir ay\",MM:\"%d ay\",y:\"bir il\",yy:\"%d il\"},meridiemParse:/gec\\u0259|s\\u0259h\\u0259r|g\\xfcnd\\xfcz|ax\\u015fam/,isPM:function(e){return/^(g\\xfcnd\\xfcz|ax\\u015fam)$/.test(e)},meridiem:function(e,t,n){return e<4?\"gec\\u0259\":e<12?\"s\\u0259h\\u0259r\":e<17?\"g\\xfcnd\\xfcz\":\"ax\\u015fam\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0131nc\\u0131|inci|nci|\\xfcnc\\xfc|nc\\u0131|uncu)/,ordinal:function(e){if(0===e)return e+\"-\\u0131nc\\u0131\";var n=e%10;return e+(t[n]||t[e%100-n]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},SatO:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-hk\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u9031\\u65e5_\\u9031\\u4e00_\\u9031\\u4e8c_\\u9031\\u4e09_\\u9031\\u56db_\\u9031\\u4e94_\\u9031\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e2d\\u5348\"===t?e>=11?e:e+12:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:void 0},meridiem:function(e,t,n){var r=100*e+t;return r<600?\"\\u51cc\\u6668\":r<900?\"\\u65e9\\u4e0a\":r<1130?\"\\u4e0a\\u5348\":r<1230?\"\\u4e2d\\u5348\":r<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929]LT\",nextDay:\"[\\u660e\\u5929]LT\",nextWeek:\"[\\u4e0b]ddddLT\",lastDay:\"[\\u6628\\u5929]LT\",lastWeek:\"[\\u4e0a]ddddLT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u9031)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u9031\";default:return e}},relativeTime:{future:\"%s\\u5167\",past:\"%s\\u524d\",s:\"\\u5e7e\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u9418\",mm:\"%d \\u5206\\u9418\",h:\"1 \\u5c0f\\u6642\",hh:\"%d \\u5c0f\\u6642\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u500b\\u6708\",MM:\"%d \\u500b\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"}})}(n(\"wd/R\"))},UDhR:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"id\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Rab_Kam_Jum_Sab\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"siang\"===t?e>=11?e:e+12:\"sore\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"siang\":e<19?\"sore\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Besok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kemarin pukul] LT\",lastWeek:\"dddd [lalu pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lalu\",s:\"beberapa detik\",ss:\"%d detik\",m:\"semenit\",mm:\"%d menit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},USCx:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ga\",{months:[\"Ean\\xe1ir\",\"Feabhra\",\"M\\xe1rta\",\"Aibre\\xe1n\",\"Bealtaine\",\"M\\xe9itheamh\",\"I\\xfail\",\"L\\xfanasa\",\"Me\\xe1n F\\xf3mhair\",\"Deaireadh F\\xf3mhair\",\"Samhain\",\"Nollaig\"],monthsShort:[\"Ean\\xe1\",\"Feab\",\"M\\xe1rt\",\"Aibr\",\"Beal\",\"M\\xe9it\",\"I\\xfail\",\"L\\xfana\",\"Me\\xe1n\",\"Deai\",\"Samh\",\"Noll\"],monthsParseExact:!0,weekdays:[\"D\\xe9 Domhnaigh\",\"D\\xe9 Luain\",\"D\\xe9 M\\xe1irt\",\"D\\xe9 C\\xe9adaoin\",\"D\\xe9ardaoin\",\"D\\xe9 hAoine\",\"D\\xe9 Satharn\"],weekdaysShort:[\"Dom\",\"Lua\",\"M\\xe1i\",\"C\\xe9a\",\"D\\xe9a\",\"hAo\",\"Sat\"],weekdaysMin:[\"Do\",\"Lu\",\"M\\xe1\",\"Ce\",\"D\\xe9\",\"hA\",\"Sa\"],longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Inniu ag] LT\",nextDay:\"[Am\\xe1rach ag] LT\",nextWeek:\"dddd [ag] LT\",lastDay:\"[Inn\\xe9 aig] LT\",lastWeek:\"dddd [seo caite] [ag] LT\",sameElse:\"L\"},relativeTime:{future:\"i %s\",past:\"%s \\xf3 shin\",s:\"c\\xfapla soicind\",ss:\"%d soicind\",m:\"n\\xf3im\\xe9ad\",mm:\"%d n\\xf3im\\xe9ad\",h:\"uair an chloig\",hh:\"%d uair an chloig\",d:\"l\\xe1\",dd:\"%d l\\xe1\",M:\"m\\xed\",MM:\"%d m\\xed\",y:\"bliain\",yy:\"%d bliain\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},UpQW:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u062c\\u0646\\u0648\\u0631\\u06cc\",\"\\u0641\\u0631\\u0648\\u0631\\u06cc\",\"\\u0645\\u0627\\u0631\\u0686\",\"\\u0627\\u067e\\u0631\\u06cc\\u0644\",\"\\u0645\\u0626\\u06cc\",\"\\u062c\\u0648\\u0646\",\"\\u062c\\u0648\\u0644\\u0627\\u0626\\u06cc\",\"\\u0627\\u06af\\u0633\\u062a\",\"\\u0633\\u062a\\u0645\\u0628\\u0631\",\"\\u0627\\u06a9\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0645\\u0628\\u0631\",\"\\u062f\\u0633\\u0645\\u0628\\u0631\"],n=[\"\\u0627\\u062a\\u0648\\u0627\\u0631\",\"\\u067e\\u06cc\\u0631\",\"\\u0645\\u0646\\u06af\\u0644\",\"\\u0628\\u062f\\u06be\",\"\\u062c\\u0645\\u0639\\u0631\\u0627\\u062a\",\"\\u062c\\u0645\\u0639\\u06c1\",\"\\u06c1\\u0641\\u062a\\u06c1\"];e.defineLocale(\"ur\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd\\u060c D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635\\u0628\\u062d|\\u0634\\u0627\\u0645/,isPM:function(e){return\"\\u0634\\u0627\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\\u0628\\u062d\":\"\\u0634\\u0627\\u0645\"},calendar:{sameDay:\"[\\u0622\\u062c \\u0628\\u0648\\u0642\\u062a] LT\",nextDay:\"[\\u06a9\\u0644 \\u0628\\u0648\\u0642\\u062a] LT\",nextWeek:\"dddd [\\u0628\\u0648\\u0642\\u062a] LT\",lastDay:\"[\\u06af\\u0630\\u0634\\u062a\\u06c1 \\u0631\\u0648\\u0632 \\u0628\\u0648\\u0642\\u062a] LT\",lastWeek:\"[\\u06af\\u0630\\u0634\\u062a\\u06c1] dddd [\\u0628\\u0648\\u0642\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0628\\u0639\\u062f\",past:\"%s \\u0642\\u0628\\u0644\",s:\"\\u0686\\u0646\\u062f \\u0633\\u06cc\\u06a9\\u0646\\u0688\",ss:\"%d \\u0633\\u06cc\\u06a9\\u0646\\u0688\",m:\"\\u0627\\u06cc\\u06a9 \\u0645\\u0646\\u0679\",mm:\"%d \\u0645\\u0646\\u0679\",h:\"\\u0627\\u06cc\\u06a9 \\u06af\\u06be\\u0646\\u0679\\u06c1\",hh:\"%d \\u06af\\u06be\\u0646\\u0679\\u06d2\",d:\"\\u0627\\u06cc\\u06a9 \\u062f\\u0646\",dd:\"%d \\u062f\\u0646\",M:\"\\u0627\\u06cc\\u06a9 \\u0645\\u0627\\u06c1\",MM:\"%d \\u0645\\u0627\\u06c1\",y:\"\\u0627\\u06cc\\u06a9 \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Ur1D:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ss\",{months:\"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni\".split(\"_\"),monthsShort:\"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo\".split(\"_\"),weekdays:\"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo\".split(\"_\"),weekdaysShort:\"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg\".split(\"_\"),weekdaysMin:\"Li_Us_Lb_Lt_Ls_Lh_Ug\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Namuhla nga] LT\",nextDay:\"[Kusasa nga] LT\",nextWeek:\"dddd [nga] LT\",lastDay:\"[Itolo nga] LT\",lastWeek:\"dddd [leliphelile] [nga] LT\",sameElse:\"L\"},relativeTime:{future:\"nga %s\",past:\"wenteka nga %s\",s:\"emizuzwana lomcane\",ss:\"%d mzuzwana\",m:\"umzuzu\",mm:\"%d emizuzu\",h:\"lihora\",hh:\"%d emahora\",d:\"lilanga\",dd:\"%d emalanga\",M:\"inyanga\",MM:\"%d tinyanga\",y:\"umnyaka\",yy:\"%d iminyaka\"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(e,t,n){return e<11?\"ekuseni\":e<15?\"emini\":e<19?\"entsambama\":\"ebusuku\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"ekuseni\"===t?e:\"emini\"===t?e>=11?e:e+12:\"entsambama\"===t||\"ebusuku\"===t?0===e?0:e+12:void 0},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:\"%d\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},V2x9:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tet\",{months:\"Janeiru_Fevereiru_Marsu_Abril_Maiu_Ju\\xf1u_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ters_Kua_Kint_Sest_Sab\".split(\"_\"),weekdaysMin:\"Do_Seg_Te_Ku_Ki_Ses_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Ohin iha] LT\",nextDay:\"[Aban iha] LT\",nextWeek:\"dddd [iha] LT\",lastDay:\"[Horiseik iha] LT\",lastWeek:\"dddd [semana kotuk] [iha] LT\",sameElse:\"L\"},relativeTime:{future:\"iha %s\",past:\"%s liuba\",s:\"minutu balun\",ss:\"minutu %d\",m:\"minutu ida\",mm:\"minutu %d\",h:\"oras ida\",hh:\"oras %d\",d:\"loron ida\",dd:\"loron %d\",M:\"fulan ida\",MM:\"fulan %d\",y:\"tinan ida\",yy:\"tinan %d\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Vclq:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],i=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es-us\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:\"domingo_lunes_martes_mi\\xe9rcoles_jueves_viernes_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mi\\xe9._jue._vie._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"MM/DD/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY h:mm A\",LLLL:\"dddd, D [de] MMMM [de] YYYY h:mm A\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1ana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un a\\xf1o\",yy:\"%d a\\xf1os\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:0,doy:6}})}(n(\"wd/R\"))},WYrj:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u0796\\u07ac\\u0782\\u07aa\\u0787\\u07a6\\u0783\\u07a9\",\"\\u078a\\u07ac\\u0784\\u07b0\\u0783\\u07aa\\u0787\\u07a6\\u0783\\u07a9\",\"\\u0789\\u07a7\\u0783\\u07a8\\u0797\\u07aa\",\"\\u0787\\u07ad\\u0795\\u07b0\\u0783\\u07a9\\u078d\\u07aa\",\"\\u0789\\u07ad\",\"\\u0796\\u07ab\\u0782\\u07b0\",\"\\u0796\\u07aa\\u078d\\u07a6\\u0787\\u07a8\",\"\\u0787\\u07af\\u078e\\u07a6\\u0790\\u07b0\\u0793\\u07aa\",\"\\u0790\\u07ac\\u0795\\u07b0\\u0793\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0787\\u07ae\\u0786\\u07b0\\u0793\\u07af\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0782\\u07ae\\u0788\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0791\\u07a8\\u0790\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\"],n=[\"\\u0787\\u07a7\\u078b\\u07a8\\u0787\\u07b0\\u078c\\u07a6\",\"\\u0780\\u07af\\u0789\\u07a6\",\"\\u0787\\u07a6\\u0782\\u07b0\\u078e\\u07a7\\u0783\\u07a6\",\"\\u0784\\u07aa\\u078b\\u07a6\",\"\\u0784\\u07aa\\u0783\\u07a7\\u0790\\u07b0\\u078a\\u07a6\\u078c\\u07a8\",\"\\u0780\\u07aa\\u0786\\u07aa\\u0783\\u07aa\",\"\\u0780\\u07ae\\u0782\\u07a8\\u0780\\u07a8\\u0783\\u07aa\"];e.defineLocale(\"dv\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:\"\\u0787\\u07a7\\u078b\\u07a8_\\u0780\\u07af\\u0789\\u07a6_\\u0787\\u07a6\\u0782\\u07b0_\\u0784\\u07aa\\u078b\\u07a6_\\u0784\\u07aa\\u0783\\u07a7_\\u0780\\u07aa\\u0786\\u07aa_\\u0780\\u07ae\\u0782\\u07a8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/M/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0789\\u0786|\\u0789\\u078a/,isPM:function(e){return\"\\u0789\\u078a\"===e},meridiem:function(e,t,n){return e<12?\"\\u0789\\u0786\":\"\\u0789\\u078a\"},calendar:{sameDay:\"[\\u0789\\u07a8\\u0787\\u07a6\\u078b\\u07aa] LT\",nextDay:\"[\\u0789\\u07a7\\u078b\\u07a6\\u0789\\u07a7] LT\",nextWeek:\"dddd LT\",lastDay:\"[\\u0787\\u07a8\\u0787\\u07b0\\u0794\\u07ac] LT\",lastWeek:\"[\\u078a\\u07a7\\u0787\\u07a8\\u078c\\u07aa\\u0788\\u07a8] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"\\u078c\\u07ac\\u0783\\u07ad\\u078e\\u07a6\\u0787\\u07a8 %s\",past:\"\\u0786\\u07aa\\u0783\\u07a8\\u0782\\u07b0 %s\",s:\"\\u0790\\u07a8\\u0786\\u07aa\\u0782\\u07b0\\u078c\\u07aa\\u0786\\u07ae\\u0785\\u07ac\\u0787\\u07b0\",ss:\"d% \\u0790\\u07a8\\u0786\\u07aa\\u0782\\u07b0\\u078c\\u07aa\",m:\"\\u0789\\u07a8\\u0782\\u07a8\\u0793\\u07ac\\u0787\\u07b0\",mm:\"\\u0789\\u07a8\\u0782\\u07a8\\u0793\\u07aa %d\",h:\"\\u078e\\u07a6\\u0791\\u07a8\\u0787\\u07a8\\u0783\\u07ac\\u0787\\u07b0\",hh:\"\\u078e\\u07a6\\u0791\\u07a8\\u0787\\u07a8\\u0783\\u07aa %d\",d:\"\\u078b\\u07aa\\u0788\\u07a6\\u0780\\u07ac\\u0787\\u07b0\",dd:\"\\u078b\\u07aa\\u0788\\u07a6\\u0790\\u07b0 %d\",M:\"\\u0789\\u07a6\\u0780\\u07ac\\u0787\\u07b0\",MM:\"\\u0789\\u07a6\\u0790\\u07b0 %d\",y:\"\\u0787\\u07a6\\u0780\\u07a6\\u0783\\u07ac\\u0787\\u07b0\",yy:\"\\u0787\\u07a6\\u0780\\u07a6\\u0783\\u07aa %d\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:7,doy:12}})}(n(\"wd/R\"))},WxRl:function(e,t,n){!function(e){\"use strict\";var t=\"vas\\xe1rnap h\\xe9tf\\u0151n kedden szerd\\xe1n cs\\xfct\\xf6rt\\xf6k\\xf6n p\\xe9nteken szombaton\".split(\" \");function n(e,t,n,r){var i=e;switch(n){case\"s\":return r||t?\"n\\xe9h\\xe1ny m\\xe1sodperc\":\"n\\xe9h\\xe1ny m\\xe1sodperce\";case\"ss\":return i+(r||t)?\" m\\xe1sodperc\":\" m\\xe1sodperce\";case\"m\":return\"egy\"+(r||t?\" perc\":\" perce\");case\"mm\":return i+(r||t?\" perc\":\" perce\");case\"h\":return\"egy\"+(r||t?\" \\xf3ra\":\" \\xf3r\\xe1ja\");case\"hh\":return i+(r||t?\" \\xf3ra\":\" \\xf3r\\xe1ja\");case\"d\":return\"egy\"+(r||t?\" nap\":\" napja\");case\"dd\":return i+(r||t?\" nap\":\" napja\");case\"M\":return\"egy\"+(r||t?\" h\\xf3nap\":\" h\\xf3napja\");case\"MM\":return i+(r||t?\" h\\xf3nap\":\" h\\xf3napja\");case\"y\":return\"egy\"+(r||t?\" \\xe9v\":\" \\xe9ve\");case\"yy\":return i+(r||t?\" \\xe9v\":\" \\xe9ve\")}return\"\"}function r(e){return(e?\"\":\"[m\\xfalt] \")+\"[\"+t[this.day()]+\"] LT[-kor]\"}e.defineLocale(\"hu\",{months:\"janu\\xe1r_febru\\xe1r_m\\xe1rcius_\\xe1prilis_m\\xe1jus_j\\xfanius_j\\xfalius_augusztus_szeptember_okt\\xf3ber_november_december\".split(\"_\"),monthsShort:\"jan_feb_m\\xe1rc_\\xe1pr_m\\xe1j_j\\xfan_j\\xfal_aug_szept_okt_nov_dec\".split(\"_\"),weekdays:\"vas\\xe1rnap_h\\xe9tf\\u0151_kedd_szerda_cs\\xfct\\xf6rt\\xf6k_p\\xe9ntek_szombat\".split(\"_\"),weekdaysShort:\"vas_h\\xe9t_kedd_sze_cs\\xfct_p\\xe9n_szo\".split(\"_\"),weekdaysMin:\"v_h_k_sze_cs_p_szo\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY. MMMM D.\",LLL:\"YYYY. MMMM D. H:mm\",LLLL:\"YYYY. MMMM D., dddd H:mm\"},meridiemParse:/de|du/i,isPM:function(e){return\"u\"===e.charAt(1).toLowerCase()},meridiem:function(e,t,n){return e<12?!0===n?\"de\":\"DE\":!0===n?\"du\":\"DU\"},calendar:{sameDay:\"[ma] LT[-kor]\",nextDay:\"[holnap] LT[-kor]\",nextWeek:function(){return r.call(this,!0)},lastDay:\"[tegnap] LT[-kor]\",lastWeek:function(){return r.call(this,!1)},sameElse:\"L\"},relativeTime:{future:\"%s m\\xfalva\",past:\"%s\",s:n,ss:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},X709:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sv\",{months:\"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"s\\xf6ndag_m\\xe5ndag_tisdag_onsdag_torsdag_fredag_l\\xf6rdag\".split(\"_\"),weekdaysShort:\"s\\xf6n_m\\xe5n_tis_ons_tor_fre_l\\xf6r\".split(\"_\"),weekdaysMin:\"s\\xf6_m\\xe5_ti_on_to_fr_l\\xf6\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D MMMM YYYY [kl.] HH:mm\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd D MMM YYYY HH:mm\"},calendar:{sameDay:\"[Idag] LT\",nextDay:\"[Imorgon] LT\",lastDay:\"[Ig\\xe5r] LT\",nextWeek:\"[P\\xe5] dddd LT\",lastWeek:\"[I] dddd[s] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"f\\xf6r %s sedan\",s:\"n\\xe5gra sekunder\",ss:\"%d sekunder\",m:\"en minut\",mm:\"%d minuter\",h:\"en timme\",hh:\"%d timmar\",d:\"en dag\",dd:\"%d dagar\",M:\"en m\\xe5nad\",MM:\"%d m\\xe5nader\",y:\"ett \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}(e|a)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"e\":1===t||2===t?\"a\":\"e\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},XDpg:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-cn\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u5468\\u65e5_\\u5468\\u4e00_\\u5468\\u4e8c_\\u5468\\u4e09_\\u5468\\u56db_\\u5468\\u4e94_\\u5468\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5Ah\\u70b9mm\\u5206\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5ddddAh\\u70b9mm\\u5206\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var r=100*e+t;return r<600?\"\\u51cc\\u6668\":r<900?\"\\u65e9\\u4e0a\":r<1130?\"\\u4e0a\\u5348\":r<1230?\"\\u4e2d\\u5348\":r<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929]LT\",nextDay:\"[\\u660e\\u5929]LT\",nextWeek:\"[\\u4e0b]ddddLT\",lastDay:\"[\\u6628\\u5929]LT\",lastWeek:\"[\\u4e0a]ddddLT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u5468)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u5468\";default:return e}},relativeTime:{future:\"%s\\u5185\",past:\"%s\\u524d\",s:\"\\u51e0\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u949f\",mm:\"%d \\u5206\\u949f\",h:\"1 \\u5c0f\\u65f6\",hh:\"%d \\u5c0f\\u65f6\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u4e2a\\u6708\",MM:\"%d \\u4e2a\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},XLvN:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"te\",{months:\"\\u0c1c\\u0c28\\u0c35\\u0c30\\u0c3f_\\u0c2b\\u0c3f\\u0c2c\\u0c4d\\u0c30\\u0c35\\u0c30\\u0c3f_\\u0c2e\\u0c3e\\u0c30\\u0c4d\\u0c1a\\u0c3f_\\u0c0f\\u0c2a\\u0c4d\\u0c30\\u0c3f\\u0c32\\u0c4d_\\u0c2e\\u0c47_\\u0c1c\\u0c42\\u0c28\\u0c4d_\\u0c1c\\u0c41\\u0c32\\u0c48_\\u0c06\\u0c17\\u0c38\\u0c4d\\u0c1f\\u0c41_\\u0c38\\u0c46\\u0c2a\\u0c4d\\u0c1f\\u0c46\\u0c02\\u0c2c\\u0c30\\u0c4d_\\u0c05\\u0c15\\u0c4d\\u0c1f\\u0c4b\\u0c2c\\u0c30\\u0c4d_\\u0c28\\u0c35\\u0c02\\u0c2c\\u0c30\\u0c4d_\\u0c21\\u0c3f\\u0c38\\u0c46\\u0c02\\u0c2c\\u0c30\\u0c4d\".split(\"_\"),monthsShort:\"\\u0c1c\\u0c28._\\u0c2b\\u0c3f\\u0c2c\\u0c4d\\u0c30._\\u0c2e\\u0c3e\\u0c30\\u0c4d\\u0c1a\\u0c3f_\\u0c0f\\u0c2a\\u0c4d\\u0c30\\u0c3f._\\u0c2e\\u0c47_\\u0c1c\\u0c42\\u0c28\\u0c4d_\\u0c1c\\u0c41\\u0c32\\u0c48_\\u0c06\\u0c17._\\u0c38\\u0c46\\u0c2a\\u0c4d._\\u0c05\\u0c15\\u0c4d\\u0c1f\\u0c4b._\\u0c28\\u0c35._\\u0c21\\u0c3f\\u0c38\\u0c46.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0c06\\u0c26\\u0c3f\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c38\\u0c4b\\u0c2e\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c2e\\u0c02\\u0c17\\u0c33\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c2c\\u0c41\\u0c27\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c17\\u0c41\\u0c30\\u0c41\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c36\\u0c41\\u0c15\\u0c4d\\u0c30\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c36\\u0c28\\u0c3f\\u0c35\\u0c3e\\u0c30\\u0c02\".split(\"_\"),weekdaysShort:\"\\u0c06\\u0c26\\u0c3f_\\u0c38\\u0c4b\\u0c2e_\\u0c2e\\u0c02\\u0c17\\u0c33_\\u0c2c\\u0c41\\u0c27_\\u0c17\\u0c41\\u0c30\\u0c41_\\u0c36\\u0c41\\u0c15\\u0c4d\\u0c30_\\u0c36\\u0c28\\u0c3f\".split(\"_\"),weekdaysMin:\"\\u0c06_\\u0c38\\u0c4b_\\u0c2e\\u0c02_\\u0c2c\\u0c41_\\u0c17\\u0c41_\\u0c36\\u0c41_\\u0c36\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0c28\\u0c47\\u0c21\\u0c41] LT\",nextDay:\"[\\u0c30\\u0c47\\u0c2a\\u0c41] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0c28\\u0c3f\\u0c28\\u0c4d\\u0c28] LT\",lastWeek:\"[\\u0c17\\u0c24] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0c32\\u0c4b\",past:\"%s \\u0c15\\u0c4d\\u0c30\\u0c3f\\u0c24\\u0c02\",s:\"\\u0c15\\u0c4a\\u0c28\\u0c4d\\u0c28\\u0c3f \\u0c15\\u0c4d\\u0c37\\u0c23\\u0c3e\\u0c32\\u0c41\",ss:\"%d \\u0c38\\u0c46\\u0c15\\u0c28\\u0c4d\\u0c32\\u0c41\",m:\"\\u0c12\\u0c15 \\u0c28\\u0c3f\\u0c2e\\u0c3f\\u0c37\\u0c02\",mm:\"%d \\u0c28\\u0c3f\\u0c2e\\u0c3f\\u0c37\\u0c3e\\u0c32\\u0c41\",h:\"\\u0c12\\u0c15 \\u0c17\\u0c02\\u0c1f\",hh:\"%d \\u0c17\\u0c02\\u0c1f\\u0c32\\u0c41\",d:\"\\u0c12\\u0c15 \\u0c30\\u0c4b\\u0c1c\\u0c41\",dd:\"%d \\u0c30\\u0c4b\\u0c1c\\u0c41\\u0c32\\u0c41\",M:\"\\u0c12\\u0c15 \\u0c28\\u0c46\\u0c32\",MM:\"%d \\u0c28\\u0c46\\u0c32\\u0c32\\u0c41\",y:\"\\u0c12\\u0c15 \\u0c38\\u0c02\\u0c35\\u0c24\\u0c4d\\u0c38\\u0c30\\u0c02\",yy:\"%d \\u0c38\\u0c02\\u0c35\\u0c24\\u0c4d\\u0c38\\u0c30\\u0c3e\\u0c32\\u0c41\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u0c35/,ordinal:\"%d\\u0c35\",meridiemParse:/\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f|\\u0c09\\u0c26\\u0c2f\\u0c02|\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02|\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\"===t?e<4?e:e+12:\"\\u0c09\\u0c26\\u0c2f\\u0c02\"===t?e:\"\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02\"===t?e>=10?e:e+12:\"\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\":e<10?\"\\u0c09\\u0c26\\u0c2f\\u0c02\":e<17?\"\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02\":e<20?\"\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02\":\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},YRex:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ug-cn\",{months:\"\\u064a\\u0627\\u0646\\u06cb\\u0627\\u0631_\\u0641\\u06d0\\u06cb\\u0631\\u0627\\u0644_\\u0645\\u0627\\u0631\\u062a_\\u0626\\u0627\\u067e\\u0631\\u06d0\\u0644_\\u0645\\u0627\\u064a_\\u0626\\u0649\\u064a\\u06c7\\u0646_\\u0626\\u0649\\u064a\\u06c7\\u0644_\\u0626\\u0627\\u06cb\\u063a\\u06c7\\u0633\\u062a_\\u0633\\u06d0\\u0646\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0626\\u06c6\\u0643\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0646\\u0648\\u064a\\u0627\\u0628\\u0649\\u0631_\\u062f\\u06d0\\u0643\\u0627\\u0628\\u0649\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0627\\u0646\\u06cb\\u0627\\u0631_\\u0641\\u06d0\\u06cb\\u0631\\u0627\\u0644_\\u0645\\u0627\\u0631\\u062a_\\u0626\\u0627\\u067e\\u0631\\u06d0\\u0644_\\u0645\\u0627\\u064a_\\u0626\\u0649\\u064a\\u06c7\\u0646_\\u0626\\u0649\\u064a\\u06c7\\u0644_\\u0626\\u0627\\u06cb\\u063a\\u06c7\\u0633\\u062a_\\u0633\\u06d0\\u0646\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0626\\u06c6\\u0643\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0646\\u0648\\u064a\\u0627\\u0628\\u0649\\u0631_\\u062f\\u06d0\\u0643\\u0627\\u0628\\u0649\\u0631\".split(\"_\"),weekdays:\"\\u064a\\u06d5\\u0643\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u062f\\u06c8\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u0633\\u06d5\\u064a\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u0686\\u0627\\u0631\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u067e\\u06d5\\u064a\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u062c\\u06c8\\u0645\\u06d5_\\u0634\\u06d5\\u0646\\u0628\\u06d5\".split(\"_\"),weekdaysShort:\"\\u064a\\u06d5_\\u062f\\u06c8_\\u0633\\u06d5_\\u0686\\u0627_\\u067e\\u06d5_\\u062c\\u06c8_\\u0634\\u06d5\".split(\"_\"),weekdaysMin:\"\\u064a\\u06d5_\\u062f\\u06c8_\\u0633\\u06d5_\\u0686\\u0627_\\u067e\\u06d5_\\u062c\\u06c8_\\u0634\\u06d5\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\",LLL:\"YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\\u060c HH:mm\",LLLL:\"dddd\\u060c YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\\u060c HH:mm\"},meridiemParse:/\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5|\\u0633\\u06d5\\u06be\\u06d5\\u0631|\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646|\\u0686\\u06c8\\u0634|\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646|\\u0643\\u06d5\\u0686/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5\"===t||\"\\u0633\\u06d5\\u06be\\u06d5\\u0631\"===t||\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646\"===t?e:\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646\"===t||\"\\u0643\\u06d5\\u0686\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var r=100*e+t;return r<600?\"\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5\":r<900?\"\\u0633\\u06d5\\u06be\\u06d5\\u0631\":r<1130?\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646\":r<1230?\"\\u0686\\u06c8\\u0634\":r<1800?\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646\":\"\\u0643\\u06d5\\u0686\"},calendar:{sameDay:\"[\\u0628\\u06c8\\u06af\\u06c8\\u0646 \\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",nextDay:\"[\\u0626\\u06d5\\u062a\\u06d5 \\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",nextWeek:\"[\\u0643\\u06d0\\u0644\\u06d5\\u0631\\u0643\\u0649] dddd [\\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",lastDay:\"[\\u062a\\u06c6\\u0646\\u06c8\\u06af\\u06c8\\u0646] LT\",lastWeek:\"[\\u0626\\u0627\\u0644\\u062f\\u0649\\u0646\\u0642\\u0649] dddd [\\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0643\\u06d0\\u064a\\u0649\\u0646\",past:\"%s \\u0628\\u06c7\\u0631\\u06c7\\u0646\",s:\"\\u0646\\u06d5\\u0686\\u0686\\u06d5 \\u0633\\u06d0\\u0643\\u0648\\u0646\\u062a\",ss:\"%d \\u0633\\u06d0\\u0643\\u0648\\u0646\\u062a\",m:\"\\u0628\\u0649\\u0631 \\u0645\\u0649\\u0646\\u06c7\\u062a\",mm:\"%d \\u0645\\u0649\\u0646\\u06c7\\u062a\",h:\"\\u0628\\u0649\\u0631 \\u0633\\u0627\\u0626\\u06d5\\u062a\",hh:\"%d \\u0633\\u0627\\u0626\\u06d5\\u062a\",d:\"\\u0628\\u0649\\u0631 \\u0643\\u06c8\\u0646\",dd:\"%d \\u0643\\u06c8\\u0646\",M:\"\\u0628\\u0649\\u0631 \\u0626\\u0627\\u064a\",MM:\"%d \\u0626\\u0627\\u064a\",y:\"\\u0628\\u0649\\u0631 \\u064a\\u0649\\u0644\",yy:\"%d \\u064a\\u0649\\u0644\"},dayOfMonthOrdinalParse:/\\d{1,2}(-\\u0643\\u06c8\\u0646\\u0649|-\\u0626\\u0627\\u064a|-\\u06be\\u06d5\\u067e\\u062a\\u06d5)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"-\\u0643\\u06c8\\u0646\\u0649\";case\"w\":case\"W\":return e+\"-\\u06be\\u06d5\\u067e\\u062a\\u06d5\";default:return e}},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:7}})}(n(\"wd/R\"))},YuTi:function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,\"loaded\",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,\"id\",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},Z4QM:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u062c\\u0646\\u0648\\u0631\\u064a\",\"\\u0641\\u064a\\u0628\\u0631\\u0648\\u0631\\u064a\",\"\\u0645\\u0627\\u0631\\u0686\",\"\\u0627\\u067e\\u0631\\u064a\\u0644\",\"\\u0645\\u0626\\u064a\",\"\\u062c\\u0648\\u0646\",\"\\u062c\\u0648\\u0644\\u0627\\u0621\\u0650\",\"\\u0622\\u06af\\u0633\\u067d\",\"\\u0633\\u064a\\u067e\\u067d\\u0645\\u0628\\u0631\",\"\\u0622\\u06aa\\u067d\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0645\\u0628\\u0631\",\"\\u068a\\u0633\\u0645\\u0628\\u0631\"],n=[\"\\u0622\\u0686\\u0631\",\"\\u0633\\u0648\\u0645\\u0631\",\"\\u0627\\u06b1\\u0627\\u0631\\u0648\",\"\\u0627\\u0631\\u0628\\u0639\",\"\\u062e\\u0645\\u064a\\u0633\",\"\\u062c\\u0645\\u0639\",\"\\u0687\\u0646\\u0687\\u0631\"];e.defineLocale(\"sd\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd\\u060c D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635\\u0628\\u062d|\\u0634\\u0627\\u0645/,isPM:function(e){return\"\\u0634\\u0627\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\\u0628\\u062d\":\"\\u0634\\u0627\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0684] LT\",nextDay:\"[\\u0633\\u0680\\u0627\\u06bb\\u064a] LT\",nextWeek:\"dddd [\\u0627\\u06b3\\u064a\\u0646 \\u0647\\u0641\\u062a\\u064a \\u062a\\u064a] LT\",lastDay:\"[\\u06aa\\u0627\\u0644\\u0647\\u0647] LT\",lastWeek:\"[\\u06af\\u0632\\u0631\\u064a\\u0644 \\u0647\\u0641\\u062a\\u064a] dddd [\\u062a\\u064a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u067e\\u0648\\u0621\",past:\"%s \\u0627\\u06b3\",s:\"\\u0686\\u0646\\u062f \\u0633\\u064a\\u06aa\\u0646\\u068a\",ss:\"%d \\u0633\\u064a\\u06aa\\u0646\\u068a\",m:\"\\u0647\\u06aa \\u0645\\u0646\\u067d\",mm:\"%d \\u0645\\u0646\\u067d\",h:\"\\u0647\\u06aa \\u06aa\\u0644\\u0627\\u06aa\",hh:\"%d \\u06aa\\u0644\\u0627\\u06aa\",d:\"\\u0647\\u06aa \\u068f\\u064a\\u0646\\u0647\\u0646\",dd:\"%d \\u068f\\u064a\\u0646\\u0647\\u0646\",M:\"\\u0647\\u06aa \\u0645\\u0647\\u064a\\u0646\\u0648\",MM:\"%d \\u0645\\u0647\\u064a\\u0646\\u0627\",y:\"\\u0647\\u06aa \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},ZAMP:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms-my\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},Zduo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"eo\",{months:\"januaro_februaro_marto_aprilo_majo_junio_julio_a\\u016dgusto_septembro_oktobro_novembro_decembro\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_a\\u016dg_sep_okt_nov_dec\".split(\"_\"),weekdays:\"diman\\u0109o_lundo_mardo_merkredo_\\u0135a\\u016ddo_vendredo_sabato\".split(\"_\"),weekdaysShort:\"dim_lun_mard_merk_\\u0135a\\u016d_ven_sab\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_\\u0135a_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D[-a de] MMMM, YYYY\",LLL:\"D[-a de] MMMM, YYYY HH:mm\",LLLL:\"dddd, [la] D[-a de] MMMM, YYYY HH:mm\"},meridiemParse:/[ap]\\.t\\.m/i,isPM:function(e){return\"p\"===e.charAt(0).toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"p.t.m.\":\"P.T.M.\":n?\"a.t.m.\":\"A.T.M.\"},calendar:{sameDay:\"[Hodia\\u016d je] LT\",nextDay:\"[Morga\\u016d je] LT\",nextWeek:\"dddd [je] LT\",lastDay:\"[Hiera\\u016d je] LT\",lastWeek:\"[pasinta] dddd [je] LT\",sameElse:\"L\"},relativeTime:{future:\"post %s\",past:\"anta\\u016d %s\",s:\"sekundoj\",ss:\"%d sekundoj\",m:\"minuto\",mm:\"%d minutoj\",h:\"horo\",hh:\"%d horoj\",d:\"tago\",dd:\"%d tagoj\",M:\"monato\",MM:\"%d monatoj\",y:\"jaro\",yy:\"%d jaroj\"},dayOfMonthOrdinalParse:/\\d{1,2}a/,ordinal:\"%da\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},aCrv:function(e,t,n){var r,i=function(){this._tweens={},this._tweensAddedDuringUpdate={}};i.prototype={getAll:function(){return Object.keys(this._tweens).map((function(e){return this._tweens[e]}).bind(this))},removeAll:function(){this._tweens={}},add:function(e){this._tweens[e.getId()]=e,this._tweensAddedDuringUpdate[e.getId()]=e},remove:function(e){delete this._tweens[e.getId()],delete this._tweensAddedDuringUpdate[e.getId()]},update:function(e,t){var n=Object.keys(this._tweens);if(0===n.length)return!1;for(e=void 0!==e?e:o.now();n.length>0;){this._tweensAddedDuringUpdate={};for(var r=0;r1?1:n),this._valuesEnd)if(void 0!==this._valuesStart[t]){var i=this._valuesStart[t]||0,a=this._valuesEnd[t];a instanceof Array?this._object[t]=this._interpolationFunction(a,r):(\"string\"==typeof a&&(a=\"+\"===a.charAt(0)||\"-\"===a.charAt(0)?i+parseFloat(a):parseFloat(a)),\"number\"==typeof a&&(this._object[t]=i+(a-i)*r))}if(null!==this._onUpdateCallback&&this._onUpdateCallback(this._object,n),1===n){if(this._repeat>0){for(t in isFinite(this._repeat)&&this._repeat--,this._valuesStartRepeat){if(\"string\"==typeof this._valuesEnd[t]&&(this._valuesStartRepeat[t]=this._valuesStartRepeat[t]+parseFloat(this._valuesEnd[t])),this._yoyo){var o=this._valuesStartRepeat[t];this._valuesStartRepeat[t]=this._valuesEnd[t],this._valuesEnd[t]=o}this._valuesStart[t]=this._valuesStartRepeat[t]}return this._yoyo&&(this._reversed=!this._reversed),this._startTime=void 0!==this._repeatDelayTime?e+this._repeatDelayTime:e+this._delayTime,null!==this._onRepeatCallback&&this._onRepeatCallback(this._object),!0}null!==this._onCompleteCallback&&this._onCompleteCallback(this._object);for(var s=0,l=this._chainedTweens.length;s1?a(e[n],e[n-1],n-r):a(e[i],e[i+1>n?n:i+1],r-i)},Bezier:function(e,t){for(var n=0,r=e.length-1,i=Math.pow,a=o.Interpolation.Utils.Bernstein,s=0;s<=r;s++)n+=i(1-t,r-s)*i(t,s)*e[s]*a(r,s);return n},CatmullRom:function(e,t){var n=e.length-1,r=n*t,i=Math.floor(r),a=o.Interpolation.Utils.CatmullRom;return e[0]===e[n]?(t<0&&(i=Math.floor(r=n*(1+t))),a(e[(i-1+n)%n],e[i],e[(i+1)%n],e[(i+2)%n],r-i)):t<0?e[0]-(a(e[0],e[0],e[1],e[1],-r)-e[0]):t>1?e[n]-(a(e[n],e[n],e[n-1],e[n-1],r-n)-e[n]):a(e[i?i-1:0],e[i],e[n1;n--)t*=n;return a[e]=t,t}),CatmullRom:function(e,t,n,r,i){var a=.5*(n-e),o=.5*(r-t),s=i*i;return(2*t-2*n+a+o)*(i*s)+(-3*t+3*n-2*a-o)*s+a*i+t}}},void 0===(r=(function(){return o}).apply(t,[]))||(e.exports=r)},aIdf:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){return e+\" \"+function(e,t){return 2===t?function(e){var t={m:\"v\",b:\"v\",d:\"z\"};return void 0===t[e.charAt(0)]?e:t[e.charAt(0)]+e.substring(1)}(e):e}({mm:\"munutenn\",MM:\"miz\",dd:\"devezh\"}[n],e)}e.defineLocale(\"br\",{months:\"Genver_C'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu\".split(\"_\"),monthsShort:\"Gen_C'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker\".split(\"_\"),weekdays:\"Sul_Lun_Meurzh_Merc'her_Yaou_Gwener_Sadorn\".split(\"_\"),weekdaysShort:\"Sul_Lun_Meu_Mer_Yao_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Lu_Me_Mer_Ya_Gw_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h[e]mm A\",LTS:\"h[e]mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D [a viz] MMMM YYYY\",LLL:\"D [a viz] MMMM YYYY h[e]mm A\",LLLL:\"dddd, D [a viz] MMMM YYYY h[e]mm A\"},calendar:{sameDay:\"[Hiziv da] LT\",nextDay:\"[Warc'hoazh da] LT\",nextWeek:\"dddd [da] LT\",lastDay:\"[Dec'h da] LT\",lastWeek:\"dddd [paset da] LT\",sameElse:\"L\"},relativeTime:{future:\"a-benn %s\",past:\"%s 'zo\",s:\"un nebeud segondenno\\xf9\",ss:\"%d eilenn\",m:\"ur vunutenn\",mm:t,h:\"un eur\",hh:\"%d eur\",d:\"un devezh\",dd:t,M:\"ur miz\",MM:t,y:\"ur bloaz\",yy:function(e){switch(function e(t){return t>9?e(t%10):t}(e)){case 1:case 3:case 4:case 5:case 9:return e+\" bloaz\";default:return e+\" vloaz\"}}},dayOfMonthOrdinalParse:/\\d{1,2}(a\\xf1|vet)/,ordinal:function(e){return e+(1===e?\"a\\xf1\":\"vet\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},aIsn:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mi\",{months:\"Kohi-t\\u0101te_Hui-tanguru_Pout\\u016b-te-rangi_Paenga-wh\\u0101wh\\u0101_Haratua_Pipiri_H\\u014dngoingoi_Here-turi-k\\u014dk\\u0101_Mahuru_Whiringa-\\u0101-nuku_Whiringa-\\u0101-rangi_Hakihea\".split(\"_\"),monthsShort:\"Kohi_Hui_Pou_Pae_Hara_Pipi_H\\u014dngoi_Here_Mahu_Whi-nu_Whi-ra_Haki\".split(\"_\"),monthsRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,2}/i,weekdays:\"R\\u0101tapu_Mane_T\\u016brei_Wenerei_T\\u0101ite_Paraire_H\\u0101tarei\".split(\"_\"),weekdaysShort:\"Ta_Ma_T\\u016b_We_T\\u0101i_Pa_H\\u0101\".split(\"_\"),weekdaysMin:\"Ta_Ma_T\\u016b_We_T\\u0101i_Pa_H\\u0101\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [i] HH:mm\",LLLL:\"dddd, D MMMM YYYY [i] HH:mm\"},calendar:{sameDay:\"[i teie mahana, i] LT\",nextDay:\"[apopo i] LT\",nextWeek:\"dddd [i] LT\",lastDay:\"[inanahi i] LT\",lastWeek:\"dddd [whakamutunga i] LT\",sameElse:\"L\"},relativeTime:{future:\"i roto i %s\",past:\"%s i mua\",s:\"te h\\u0113kona ruarua\",ss:\"%d h\\u0113kona\",m:\"he meneti\",mm:\"%d meneti\",h:\"te haora\",hh:\"%d haora\",d:\"he ra\",dd:\"%d ra\",M:\"he marama\",MM:\"%d marama\",y:\"he tau\",yy:\"%d tau\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},aQkU:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mk\",{months:\"\\u0458\\u0430\\u043d\\u0443\\u0430\\u0440\\u0438_\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d\\u0438_\\u0458\\u0443\\u043b\\u0438_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438_\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438_\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438_\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\".split(\"_\"),monthsShort:\"\\u0458\\u0430\\u043d_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043f_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u0435_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u0430_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u043e\\u043a_\\u043f\\u0435\\u0442\\u043e\\u043a_\\u0441\\u0430\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434_\\u043f\\u043e\\u043d_\\u0432\\u0442\\u043e_\\u0441\\u0440\\u0435_\\u0447\\u0435\\u0442_\\u043f\\u0435\\u0442_\\u0441\\u0430\\u0431\".split(\"_\"),weekdaysMin:\"\\u043de_\\u043fo_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0435_\\u043f\\u0435_\\u0441a\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0414\\u0435\\u043d\\u0435\\u0441 \\u0432\\u043e] LT\",nextDay:\"[\\u0423\\u0442\\u0440\\u0435 \\u0432\\u043e] LT\",nextWeek:\"[\\u0412\\u043e] dddd [\\u0432\\u043e] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430 \\u0432\\u043e] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[\\u0418\\u0437\\u043c\\u0438\\u043d\\u0430\\u0442\\u0430\\u0442\\u0430] dddd [\\u0432\\u043e] LT\";case 1:case 2:case 4:case 5:return\"[\\u0418\\u0437\\u043c\\u0438\\u043d\\u0430\\u0442\\u0438\\u043e\\u0442] dddd [\\u0432\\u043e] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u043f\\u043e\\u0441\\u043b\\u0435 %s\",past:\"\\u043f\\u0440\\u0435\\u0434 %s\",s:\"\\u043d\\u0435\\u043a\\u043e\\u043b\\u043a\\u0443 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",m:\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\\u0438\",h:\"\\u0447\\u0430\\u0441\",hh:\"%d \\u0447\\u0430\\u0441\\u0430\",d:\"\\u0434\\u0435\\u043d\",dd:\"%d \\u0434\\u0435\\u043d\\u0430\",M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:\"%d \\u043c\\u0435\\u0441\\u0435\\u0446\\u0438\",y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",yy:\"%d \\u0433\\u043e\\u0434\\u0438\\u043d\\u0438\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0435\\u0432|\\u0435\\u043d|\\u0442\\u0438|\\u0432\\u0438|\\u0440\\u0438|\\u043c\\u0438)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-\\u0435\\u0432\":0===n?e+\"-\\u0435\\u043d\":n>10&&n<20?e+\"-\\u0442\\u0438\":1===t?e+\"-\\u0432\\u0438\":2===t?e+\"-\\u0440\\u0438\":7===t||8===t?e+\"-\\u043c\\u0438\":e+\"-\\u0442\\u0438\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},b1Dy:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-nz\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},bOMt:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nb\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"s\\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\\xf8rdag\".split(\"_\"),weekdaysShort:\"s\\xf8._ma._ti._on._to._fr._l\\xf8.\".split(\"_\"),weekdaysMin:\"s\\xf8_ma_ti_on_to_fr_l\\xf8\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"dddd [kl.] LT\",lastDay:\"[i g\\xe5r kl.] LT\",lastWeek:\"[forrige] dddd [kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"noen sekunder\",ss:\"%d sekunder\",m:\"ett minutt\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dager\",M:\"en m\\xe5ned\",MM:\"%d m\\xe5neder\",y:\"ett \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},bXm7:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0448\\u0456\",1:\"-\\u0448\\u0456\",2:\"-\\u0448\\u0456\",3:\"-\\u0448\\u0456\",4:\"-\\u0448\\u0456\",5:\"-\\u0448\\u0456\",6:\"-\\u0448\\u044b\",7:\"-\\u0448\\u0456\",8:\"-\\u0448\\u0456\",9:\"-\\u0448\\u044b\",10:\"-\\u0448\\u044b\",20:\"-\\u0448\\u044b\",30:\"-\\u0448\\u044b\",40:\"-\\u0448\\u044b\",50:\"-\\u0448\\u0456\",60:\"-\\u0448\\u044b\",70:\"-\\u0448\\u0456\",80:\"-\\u0448\\u0456\",90:\"-\\u0448\\u044b\",100:\"-\\u0448\\u0456\"};e.defineLocale(\"kk\",{months:\"\\u049b\\u0430\\u04a3\\u0442\\u0430\\u0440_\\u0430\\u049b\\u043f\\u0430\\u043d_\\u043d\\u0430\\u0443\\u0440\\u044b\\u0437_\\u0441\\u04d9\\u0443\\u0456\\u0440_\\u043c\\u0430\\u043c\\u044b\\u0440_\\u043c\\u0430\\u0443\\u0441\\u044b\\u043c_\\u0448\\u0456\\u043b\\u0434\\u0435_\\u0442\\u0430\\u043c\\u044b\\u0437_\\u049b\\u044b\\u0440\\u043a\\u04af\\u0439\\u0435\\u043a_\\u049b\\u0430\\u0437\\u0430\\u043d_\\u049b\\u0430\\u0440\\u0430\\u0448\\u0430_\\u0436\\u0435\\u043b\\u0442\\u043e\\u049b\\u0441\\u0430\\u043d\".split(\"_\"),monthsShort:\"\\u049b\\u0430\\u04a3_\\u0430\\u049b\\u043f_\\u043d\\u0430\\u0443_\\u0441\\u04d9\\u0443_\\u043c\\u0430\\u043c_\\u043c\\u0430\\u0443_\\u0448\\u0456\\u043b_\\u0442\\u0430\\u043c_\\u049b\\u044b\\u0440_\\u049b\\u0430\\u0437_\\u049b\\u0430\\u0440_\\u0436\\u0435\\u043b\".split(\"_\"),weekdays:\"\\u0436\\u0435\\u043a\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0434\\u04af\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0441\\u0435\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0441\\u04d9\\u0440\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0431\\u0435\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0436\\u04b1\\u043c\\u0430_\\u0441\\u0435\\u043d\\u0431\\u0456\".split(\"_\"),weekdaysShort:\"\\u0436\\u0435\\u043a_\\u0434\\u04af\\u0439_\\u0441\\u0435\\u0439_\\u0441\\u04d9\\u0440_\\u0431\\u0435\\u0439_\\u0436\\u04b1\\u043c_\\u0441\\u0435\\u043d\".split(\"_\"),weekdaysMin:\"\\u0436\\u043a_\\u0434\\u0439_\\u0441\\u0439_\\u0441\\u0440_\\u0431\\u0439_\\u0436\\u043c_\\u0441\\u043d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0411\\u04af\\u0433\\u0456\\u043d \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",nextDay:\"[\\u0415\\u0440\\u0442\\u0435\\u04a3 \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",nextWeek:\"dddd [\\u0441\\u0430\\u0493\\u0430\\u0442] LT\",lastDay:\"[\\u041a\\u0435\\u0448\\u0435 \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",lastWeek:\"[\\u04e8\\u0442\\u043a\\u0435\\u043d \\u0430\\u043f\\u0442\\u0430\\u043d\\u044b\\u04a3] dddd [\\u0441\\u0430\\u0493\\u0430\\u0442] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0456\\u0448\\u0456\\u043d\\u0434\\u0435\",past:\"%s \\u0431\\u04b1\\u0440\\u044b\\u043d\",s:\"\\u0431\\u0456\\u0440\\u043d\\u0435\\u0448\\u0435 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:\"\\u0431\\u0456\\u0440 \\u043c\\u0438\\u043d\\u0443\\u0442\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\",h:\"\\u0431\\u0456\\u0440 \\u0441\\u0430\\u0493\\u0430\\u0442\",hh:\"%d \\u0441\\u0430\\u0493\\u0430\\u0442\",d:\"\\u0431\\u0456\\u0440 \\u043a\\u04af\\u043d\",dd:\"%d \\u043a\\u04af\\u043d\",M:\"\\u0431\\u0456\\u0440 \\u0430\\u0439\",MM:\"%d \\u0430\\u0439\",y:\"\\u0431\\u0456\\u0440 \\u0436\\u044b\\u043b\",yy:\"%d \\u0436\\u044b\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0448\\u0456|\\u0448\\u044b)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},bYM6:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-tn\",{months:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},bpih:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_luned\\xec_marted\\xec_mercoled\\xec_gioved\\xec_venerd\\xec_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Oggi alle] LT\",nextDay:\"[Domani alle] LT\",nextWeek:\"dddd [alle] LT\",lastDay:\"[Ieri alle] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[la scorsa] dddd [alle] LT\";default:return\"[lo scorso] dddd [alle] LT\"}},sameElse:\"L\"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?\"tra\":\"in\")+\" \"+e},past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},bxKX:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it-ch\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_luned\\xec_marted\\xec_mercoled\\xec_gioved\\xec_venerd\\xec_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Oggi alle] LT\",nextDay:\"[Domani alle] LT\",nextWeek:\"dddd [alle] LT\",lastDay:\"[Ieri alle] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[la scorsa] dddd [alle] LT\";default:return\"[lo scorso] dddd [alle] LT\"}},sameElse:\"L\"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?\"tra\":\"in\")+\" \"+e},past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},cRix:function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.\".split(\"_\"),n=\"jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\");e.defineLocale(\"fy\",{months:\"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber\".split(\"_\"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsParseExact:!0,weekdays:\"snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon\".split(\"_\"),weekdaysShort:\"si._mo._ti._wo._to._fr._so.\".split(\"_\"),weekdaysMin:\"Si_Mo_Ti_Wo_To_Fr_So\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[hjoed om] LT\",nextDay:\"[moarn om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[juster om] LT\",lastWeek:\"[\\xf4fr\\xfbne] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oer %s\",past:\"%s lyn\",s:\"in pear sekonden\",ss:\"%d sekonden\",m:\"ien min\\xfat\",mm:\"%d minuten\",h:\"ien oere\",hh:\"%d oeren\",d:\"ien dei\",dd:\"%d dagen\",M:\"ien moanne\",MM:\"%d moannen\",y:\"ien jier\",yy:\"%d jierren\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},czMo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-il\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(\"wd/R\"))},dNwA:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sw\",{months:\"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi\".split(\"_\"),weekdaysShort:\"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos\".split(\"_\"),weekdaysMin:\"J2_J3_J4_J5_Al_Ij_J1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[leo saa] LT\",nextDay:\"[kesho saa] LT\",nextWeek:\"[wiki ijayo] dddd [saat] LT\",lastDay:\"[jana] LT\",lastWeek:\"[wiki iliyopita] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s baadaye\",past:\"tokea %s\",s:\"hivi punde\",ss:\"sekunde %d\",m:\"dakika moja\",mm:\"dakika %d\",h:\"saa limoja\",hh:\"masaa %d\",d:\"siku moja\",dd:\"masiku %d\",M:\"mwezi mmoja\",MM:\"miezi %d\",y:\"mwaka mmoja\",yy:\"miaka %d\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"e+ae\":function(e,t,n){!function(e){\"use strict\";var t=\"janu\\xe1r_febru\\xe1r_marec_apr\\xedl_m\\xe1j_j\\xfan_j\\xfal_august_september_okt\\xf3ber_november_december\".split(\"_\"),n=\"jan_feb_mar_apr_m\\xe1j_j\\xfan_j\\xfal_aug_sep_okt_nov_dec\".split(\"_\");function r(e){return e>1&&e<5}function i(e,t,n,i){var a=e+\" \";switch(n){case\"s\":return t||i?\"p\\xe1r sek\\xfand\":\"p\\xe1r sekundami\";case\"ss\":return t||i?a+(r(e)?\"sekundy\":\"sek\\xfand\"):a+\"sekundami\";case\"m\":return t?\"min\\xfata\":i?\"min\\xfatu\":\"min\\xfatou\";case\"mm\":return t||i?a+(r(e)?\"min\\xfaty\":\"min\\xfat\"):a+\"min\\xfatami\";case\"h\":return t?\"hodina\":i?\"hodinu\":\"hodinou\";case\"hh\":return t||i?a+(r(e)?\"hodiny\":\"hod\\xedn\"):a+\"hodinami\";case\"d\":return t||i?\"de\\u0148\":\"d\\u0148om\";case\"dd\":return t||i?a+(r(e)?\"dni\":\"dn\\xed\"):a+\"d\\u0148ami\";case\"M\":return t||i?\"mesiac\":\"mesiacom\";case\"MM\":return t||i?a+(r(e)?\"mesiace\":\"mesiacov\"):a+\"mesiacmi\";case\"y\":return t||i?\"rok\":\"rokom\";case\"yy\":return t||i?a+(r(e)?\"roky\":\"rokov\"):a+\"rokmi\"}}e.defineLocale(\"sk\",{months:t,monthsShort:n,weekdays:\"nede\\u013ea_pondelok_utorok_streda_\\u0161tvrtok_piatok_sobota\".split(\"_\"),weekdaysShort:\"ne_po_ut_st_\\u0161t_pi_so\".split(\"_\"),weekdaysMin:\"ne_po_ut_st_\\u0161t_pi_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[dnes o] LT\",nextDay:\"[zajtra o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v nede\\u013eu o] LT\";case 1:case 2:return\"[v] dddd [o] LT\";case 3:return\"[v stredu o] LT\";case 4:return\"[vo \\u0161tvrtok o] LT\";case 5:return\"[v piatok o] LT\";case 6:return\"[v sobotu o] LT\"}},lastDay:\"[v\\u010dera o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minul\\xfa nede\\u013eu o] LT\";case 1:case 2:return\"[minul\\xfd] dddd [o] LT\";case 3:return\"[minul\\xfa stredu o] LT\";case 4:case 5:return\"[minul\\xfd] dddd [o] LT\";case 6:return\"[minul\\xfa sobotu o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pred %s\",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},evrj:function(e,t,n){var r=n(\"m4GZ\");e.exports=function(e){var t=e.replace(/-/g,\"+\").replace(/_/g,\"/\");switch(t.length%4){case 0:break;case 2:t+=\"==\";break;case 3:t+=\"=\";break;default:throw\"Illegal base64url string!\"}try{return function(e){return decodeURIComponent(r(e).replace(/(.)/g,(function(e,t){var n=t.charCodeAt(0).toString(16).toUpperCase();return n.length<2&&(n=\"0\"+n),\"%\"+n})))}(t)}catch(n){return r(t)}}},fzPg:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"yo\",{months:\"S\\u1eb9\\u0301r\\u1eb9\\u0301_E\\u0300re\\u0300le\\u0300_\\u1eb8r\\u1eb9\\u0300na\\u0300_I\\u0300gbe\\u0301_E\\u0300bibi_O\\u0300ku\\u0300du_Ag\\u1eb9mo_O\\u0300gu\\u0301n_Owewe_\\u1ecc\\u0300wa\\u0300ra\\u0300_Be\\u0301lu\\u0301_\\u1ecc\\u0300p\\u1eb9\\u0300\\u0300\".split(\"_\"),monthsShort:\"S\\u1eb9\\u0301r_E\\u0300rl_\\u1eb8rn_I\\u0300gb_E\\u0300bi_O\\u0300ku\\u0300_Ag\\u1eb9_O\\u0300gu\\u0301_Owe_\\u1ecc\\u0300wa\\u0300_Be\\u0301l_\\u1ecc\\u0300p\\u1eb9\\u0300\\u0300\".split(\"_\"),weekdays:\"A\\u0300i\\u0300ku\\u0301_Aje\\u0301_I\\u0300s\\u1eb9\\u0301gun_\\u1eccj\\u1ecd\\u0301ru\\u0301_\\u1eccj\\u1ecd\\u0301b\\u1ecd_\\u1eb8ti\\u0300_A\\u0300ba\\u0301m\\u1eb9\\u0301ta\".split(\"_\"),weekdaysShort:\"A\\u0300i\\u0300k_Aje\\u0301_I\\u0300s\\u1eb9\\u0301_\\u1eccjr_\\u1eccjb_\\u1eb8ti\\u0300_A\\u0300ba\\u0301\".split(\"_\"),weekdaysMin:\"A\\u0300i\\u0300_Aj_I\\u0300s_\\u1eccr_\\u1eccb_\\u1eb8t_A\\u0300b\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[O\\u0300ni\\u0300 ni] LT\",nextDay:\"[\\u1ecc\\u0300la ni] LT\",nextWeek:\"dddd [\\u1eccs\\u1eb9\\u0300 to\\u0301n'b\\u1ecd] [ni] LT\",lastDay:\"[A\\u0300na ni] LT\",lastWeek:\"dddd [\\u1eccs\\u1eb9\\u0300 to\\u0301l\\u1ecd\\u0301] [ni] LT\",sameElse:\"L\"},relativeTime:{future:\"ni\\u0301 %s\",past:\"%s k\\u1ecdja\\u0301\",s:\"i\\u0300s\\u1eb9ju\\u0301 aaya\\u0301 die\",ss:\"aaya\\u0301 %d\",m:\"i\\u0300s\\u1eb9ju\\u0301 kan\",mm:\"i\\u0300s\\u1eb9ju\\u0301 %d\",h:\"wa\\u0301kati kan\",hh:\"wa\\u0301kati %d\",d:\"\\u1ecdj\\u1ecd\\u0301 kan\",dd:\"\\u1ecdj\\u1ecd\\u0301 %d\",M:\"osu\\u0300 kan\",MM:\"osu\\u0300 %d\",y:\"\\u1ecddu\\u0301n kan\",yy:\"\\u1ecddu\\u0301n %d\"},dayOfMonthOrdinalParse:/\\u1ecdj\\u1ecd\\u0301\\s\\d{1,2}/,ordinal:\"\\u1ecdj\\u1ecd\\u0301 %d\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},gVVK:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i=e+\" \";switch(n){case\"s\":return t||r?\"nekaj sekund\":\"nekaj sekundami\";case\"ss\":return i+(1===e?t?\"sekundo\":\"sekundi\":2===e?t||r?\"sekundi\":\"sekundah\":e<5?t||r?\"sekunde\":\"sekundah\":\"sekund\");case\"m\":return t?\"ena minuta\":\"eno minuto\";case\"mm\":return i+(1===e?t?\"minuta\":\"minuto\":2===e?t||r?\"minuti\":\"minutama\":e<5?t||r?\"minute\":\"minutami\":t||r?\"minut\":\"minutami\");case\"h\":return t?\"ena ura\":\"eno uro\";case\"hh\":return i+(1===e?t?\"ura\":\"uro\":2===e?t||r?\"uri\":\"urama\":e<5?t||r?\"ure\":\"urami\":t||r?\"ur\":\"urami\");case\"d\":return t||r?\"en dan\":\"enim dnem\";case\"dd\":return i+(1===e?t||r?\"dan\":\"dnem\":2===e?t||r?\"dni\":\"dnevoma\":t||r?\"dni\":\"dnevi\");case\"M\":return t||r?\"en mesec\":\"enim mesecem\";case\"MM\":return i+(1===e?t||r?\"mesec\":\"mesecem\":2===e?t||r?\"meseca\":\"mesecema\":e<5?t||r?\"mesece\":\"meseci\":t||r?\"mesecev\":\"meseci\");case\"y\":return t||r?\"eno leto\":\"enim letom\";case\"yy\":return i+(1===e?t||r?\"leto\":\"letom\":2===e?t||r?\"leti\":\"letoma\":e<5?t||r?\"leta\":\"leti\":t||r?\"let\":\"leti\")}}e.defineLocale(\"sl\",{months:\"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljek_torek_sreda_\\u010detrtek_petek_sobota\".split(\"_\"),weekdaysShort:\"ned._pon._tor._sre._\\u010det._pet._sob.\".split(\"_\"),weekdaysMin:\"ne_po_to_sr_\\u010de_pe_so\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danes ob] LT\",nextDay:\"[jutri ob] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v] [nedeljo] [ob] LT\";case 3:return\"[v] [sredo] [ob] LT\";case 6:return\"[v] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[v] dddd [ob] LT\"}},lastDay:\"[v\\u010deraj ob] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[prej\\u0161njo] [nedeljo] [ob] LT\";case 3:return\"[prej\\u0161njo] [sredo] [ob] LT\";case 6:return\"[prej\\u0161njo] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[prej\\u0161nji] dddd [ob] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u010dez %s\",past:\"pred %s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},gekB:function(e,t,n){!function(e){\"use strict\";var t=\"nolla yksi kaksi kolme nelj\\xe4 viisi kuusi seitsem\\xe4n kahdeksan yhdeks\\xe4n\".split(\" \"),n=[\"nolla\",\"yhden\",\"kahden\",\"kolmen\",\"nelj\\xe4n\",\"viiden\",\"kuuden\",t[7],t[8],t[9]];function r(e,r,i,a){var o=\"\";switch(i){case\"s\":return a?\"muutaman sekunnin\":\"muutama sekunti\";case\"ss\":return a?\"sekunnin\":\"sekuntia\";case\"m\":return a?\"minuutin\":\"minuutti\";case\"mm\":o=a?\"minuutin\":\"minuuttia\";break;case\"h\":return a?\"tunnin\":\"tunti\";case\"hh\":o=a?\"tunnin\":\"tuntia\";break;case\"d\":return a?\"p\\xe4iv\\xe4n\":\"p\\xe4iv\\xe4\";case\"dd\":o=a?\"p\\xe4iv\\xe4n\":\"p\\xe4iv\\xe4\\xe4\";break;case\"M\":return a?\"kuukauden\":\"kuukausi\";case\"MM\":o=a?\"kuukauden\":\"kuukautta\";break;case\"y\":return a?\"vuoden\":\"vuosi\";case\"yy\":o=a?\"vuoden\":\"vuotta\"}return function(e,r){return e<10?r?n[e]:t[e]:e}(e,a)+\" \"+o}e.defineLocale(\"fi\",{months:\"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kes\\xe4kuu_hein\\xe4kuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu\".split(\"_\"),monthsShort:\"tammi_helmi_maalis_huhti_touko_kes\\xe4_hein\\xe4_elo_syys_loka_marras_joulu\".split(\"_\"),weekdays:\"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai\".split(\"_\"),weekdaysShort:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),weekdaysMin:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"Do MMMM[ta] YYYY\",LLL:\"Do MMMM[ta] YYYY, [klo] HH.mm\",LLLL:\"dddd, Do MMMM[ta] YYYY, [klo] HH.mm\",l:\"D.M.YYYY\",ll:\"Do MMM YYYY\",lll:\"Do MMM YYYY, [klo] HH.mm\",llll:\"ddd, Do MMM YYYY, [klo] HH.mm\"},calendar:{sameDay:\"[t\\xe4n\\xe4\\xe4n] [klo] LT\",nextDay:\"[huomenna] [klo] LT\",nextWeek:\"dddd [klo] LT\",lastDay:\"[eilen] [klo] LT\",lastWeek:\"[viime] dddd[na] [klo] LT\",sameElse:\"L\"},relativeTime:{future:\"%s p\\xe4\\xe4st\\xe4\",past:\"%s sitten\",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},gjCT:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"};e.defineLocale(\"ar-sa\",{months:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a\\u0648_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648_\\u0623\\u063a\\u0633\\u0637\\u0633_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a\\u0648_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648_\\u0623\\u063a\\u0633\\u0637\\u0633_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:0,doy:6}})}(n(\"wd/R\"))},hKrs:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bg\",{months:\"\\u044f\\u043d\\u0443\\u0430\\u0440\\u0438_\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0439_\\u044e\\u043d\\u0438_\\u044e\\u043b\\u0438_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438_\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438_\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438_\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0440_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u044e\\u043d\\u0438_\\u044e\\u043b\\u0438_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043f_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u0435_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u044f_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u044f\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u044a\\u0440\\u0442\\u044a\\u043a_\\u043f\\u0435\\u0442\\u044a\\u043a_\\u0441\\u044a\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434_\\u043f\\u043e\\u043d_\\u0432\\u0442\\u043e_\\u0441\\u0440\\u044f_\\u0447\\u0435\\u0442_\\u043f\\u0435\\u0442_\\u0441\\u044a\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0414\\u043d\\u0435\\u0441 \\u0432] LT\",nextDay:\"[\\u0423\\u0442\\u0440\\u0435 \\u0432] LT\",nextWeek:\"dddd [\\u0432] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430 \\u0432] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[\\u0412 \\u0438\\u0437\\u043c\\u0438\\u043d\\u0430\\u043b\\u0430\\u0442\\u0430] dddd [\\u0432] LT\";case 1:case 2:case 4:case 5:return\"[\\u0412 \\u0438\\u0437\\u043c\\u0438\\u043d\\u0430\\u043b\\u0438\\u044f] dddd [\\u0432] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u0441\\u043b\\u0435\\u0434 %s\",past:\"\\u043f\\u0440\\u0435\\u0434\\u0438 %s\",s:\"\\u043d\\u044f\\u043a\\u043e\\u043b\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",m:\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\\u0438\",h:\"\\u0447\\u0430\\u0441\",hh:\"%d \\u0447\\u0430\\u0441\\u0430\",d:\"\\u0434\\u0435\\u043d\",dd:\"%d \\u0434\\u043d\\u0438\",M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:\"%d \\u043c\\u0435\\u0441\\u0435\\u0446\\u0430\",y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",yy:\"%d \\u0433\\u043e\\u0434\\u0438\\u043d\\u0438\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0435\\u0432|\\u0435\\u043d|\\u0442\\u0438|\\u0432\\u0438|\\u0440\\u0438|\\u043c\\u0438)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-\\u0435\\u0432\":0===n?e+\"-\\u0435\\u043d\":n>10&&n<20?e+\"-\\u0442\\u0438\":1===t?e+\"-\\u0432\\u0438\":2===t?e+\"-\\u0440\\u0438\":7===t||8===t?e+\"-\\u043c\\u0438\":e+\"-\\u0442\\u0438\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},honF:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u1041\",2:\"\\u1042\",3:\"\\u1043\",4:\"\\u1044\",5:\"\\u1045\",6:\"\\u1046\",7:\"\\u1047\",8:\"\\u1048\",9:\"\\u1049\",0:\"\\u1040\"},n={\"\\u1041\":\"1\",\"\\u1042\":\"2\",\"\\u1043\":\"3\",\"\\u1044\":\"4\",\"\\u1045\":\"5\",\"\\u1046\":\"6\",\"\\u1047\":\"7\",\"\\u1048\":\"8\",\"\\u1049\":\"9\",\"\\u1040\":\"0\"};e.defineLocale(\"my\",{months:\"\\u1007\\u1014\\u103a\\u1014\\u101d\\u102b\\u101b\\u102e_\\u1016\\u1031\\u1016\\u1031\\u102c\\u103a\\u101d\\u102b\\u101b\\u102e_\\u1019\\u1010\\u103a_\\u1027\\u1015\\u103c\\u102e_\\u1019\\u1031_\\u1007\\u103d\\u1014\\u103a_\\u1007\\u1030\\u101c\\u102d\\u102f\\u1004\\u103a_\\u101e\\u103c\\u1002\\u102f\\u1010\\u103a_\\u1005\\u1000\\u103a\\u1010\\u1004\\u103a\\u1018\\u102c_\\u1021\\u1031\\u102c\\u1000\\u103a\\u1010\\u102d\\u102f\\u1018\\u102c_\\u1014\\u102d\\u102f\\u101d\\u1004\\u103a\\u1018\\u102c_\\u1012\\u102e\\u1007\\u1004\\u103a\\u1018\\u102c\".split(\"_\"),monthsShort:\"\\u1007\\u1014\\u103a_\\u1016\\u1031_\\u1019\\u1010\\u103a_\\u1015\\u103c\\u102e_\\u1019\\u1031_\\u1007\\u103d\\u1014\\u103a_\\u101c\\u102d\\u102f\\u1004\\u103a_\\u101e\\u103c_\\u1005\\u1000\\u103a_\\u1021\\u1031\\u102c\\u1000\\u103a_\\u1014\\u102d\\u102f_\\u1012\\u102e\".split(\"_\"),weekdays:\"\\u1010\\u1014\\u1004\\u103a\\u1039\\u1002\\u1014\\u103d\\u1031_\\u1010\\u1014\\u1004\\u103a\\u1039\\u101c\\u102c_\\u1021\\u1004\\u103a\\u1039\\u1002\\u102b_\\u1017\\u102f\\u1012\\u1039\\u1013\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c\\u101e\\u1015\\u1010\\u1031\\u1038_\\u101e\\u1031\\u102c\\u1000\\u103c\\u102c_\\u1005\\u1014\\u1031\".split(\"_\"),weekdaysShort:\"\\u1014\\u103d\\u1031_\\u101c\\u102c_\\u1002\\u102b_\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c_\\u101e\\u1031\\u102c_\\u1014\\u1031\".split(\"_\"),weekdaysMin:\"\\u1014\\u103d\\u1031_\\u101c\\u102c_\\u1002\\u102b_\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c_\\u101e\\u1031\\u102c_\\u1014\\u1031\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u101a\\u1014\\u1031.] LT [\\u1019\\u103e\\u102c]\",nextDay:\"[\\u1019\\u1014\\u1000\\u103a\\u1016\\u103c\\u1014\\u103a] LT [\\u1019\\u103e\\u102c]\",nextWeek:\"dddd LT [\\u1019\\u103e\\u102c]\",lastDay:\"[\\u1019\\u1014\\u1031.\\u1000] LT [\\u1019\\u103e\\u102c]\",lastWeek:\"[\\u1015\\u103c\\u102e\\u1038\\u1001\\u1032\\u1037\\u101e\\u1031\\u102c] dddd LT [\\u1019\\u103e\\u102c]\",sameElse:\"L\"},relativeTime:{future:\"\\u101c\\u102c\\u1019\\u100a\\u103a\\u1037 %s \\u1019\\u103e\\u102c\",past:\"\\u101c\\u103d\\u1014\\u103a\\u1001\\u1032\\u1037\\u101e\\u1031\\u102c %s \\u1000\",s:\"\\u1005\\u1000\\u1039\\u1000\\u1014\\u103a.\\u1021\\u1014\\u100a\\u103a\\u1038\\u1004\\u101a\\u103a\",ss:\"%d \\u1005\\u1000\\u1039\\u1000\\u1014\\u1037\\u103a\",m:\"\\u1010\\u1005\\u103a\\u1019\\u102d\\u1014\\u1005\\u103a\",mm:\"%d \\u1019\\u102d\\u1014\\u1005\\u103a\",h:\"\\u1010\\u1005\\u103a\\u1014\\u102c\\u101b\\u102e\",hh:\"%d \\u1014\\u102c\\u101b\\u102e\",d:\"\\u1010\\u1005\\u103a\\u101b\\u1000\\u103a\",dd:\"%d \\u101b\\u1000\\u103a\",M:\"\\u1010\\u1005\\u103a\\u101c\",MM:\"%d \\u101c\",y:\"\\u1010\\u1005\\u103a\\u1014\\u103e\\u1005\\u103a\",yy:\"%d \\u1014\\u103e\\u1005\\u103a\"},preparse:function(e){return e.replace(/[\\u1041\\u1042\\u1043\\u1044\\u1045\\u1046\\u1047\\u1048\\u1049\\u1040]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(\"wd/R\"))},iEDd:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"gl\",{months:\"xaneiro_febreiro_marzo_abril_maio_xu\\xf1o_xullo_agosto_setembro_outubro_novembro_decembro\".split(\"_\"),monthsShort:\"xan._feb._mar._abr._mai._xu\\xf1._xul._ago._set._out._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"domingo_luns_martes_m\\xe9rcores_xoves_venres_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._m\\xe9r._xov._ven._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_m\\xe9_xo_ve_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoxe \"+(1!==this.hours()?\"\\xe1s\":\"\\xe1\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1\\xe1 \"+(1!==this.hours()?\"\\xe1s\":\"\\xe1\")+\"] LT\"},nextWeek:function(){return\"dddd [\"+(1!==this.hours()?\"\\xe1s\":\"a\")+\"] LT\"},lastDay:function(){return\"[onte \"+(1!==this.hours()?\"\\xe1\":\"a\")+\"] LT\"},lastWeek:function(){return\"[o] dddd [pasado \"+(1!==this.hours()?\"\\xe1s\":\"a\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:function(e){return 0===e.indexOf(\"un\")?\"n\"+e:\"en \"+e},past:\"hai %s\",s:\"uns segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"unha hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},iYuL:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],i=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:\"domingo_lunes_martes_mi\\xe9rcoles_jueves_viernes_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mi\\xe9._jue._vie._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1ana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un a\\xf1o\",yy:\"%d a\\xf1os\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jUeY:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"el\",{monthsNominativeEl:\"\\u0399\\u03b1\\u03bd\\u03bf\\u03c5\\u03ac\\u03c1\\u03b9\\u03bf\\u03c2_\\u03a6\\u03b5\\u03b2\\u03c1\\u03bf\\u03c5\\u03ac\\u03c1\\u03b9\\u03bf\\u03c2_\\u039c\\u03ac\\u03c1\\u03c4\\u03b9\\u03bf\\u03c2_\\u0391\\u03c0\\u03c1\\u03af\\u03bb\\u03b9\\u03bf\\u03c2_\\u039c\\u03ac\\u03b9\\u03bf\\u03c2_\\u0399\\u03bf\\u03cd\\u03bd\\u03b9\\u03bf\\u03c2_\\u0399\\u03bf\\u03cd\\u03bb\\u03b9\\u03bf\\u03c2_\\u0391\\u03cd\\u03b3\\u03bf\\u03c5\\u03c3\\u03c4\\u03bf\\u03c2_\\u03a3\\u03b5\\u03c0\\u03c4\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u039f\\u03ba\\u03c4\\u03ce\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u039d\\u03bf\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u0394\\u03b5\\u03ba\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2\".split(\"_\"),monthsGenitiveEl:\"\\u0399\\u03b1\\u03bd\\u03bf\\u03c5\\u03b1\\u03c1\\u03af\\u03bf\\u03c5_\\u03a6\\u03b5\\u03b2\\u03c1\\u03bf\\u03c5\\u03b1\\u03c1\\u03af\\u03bf\\u03c5_\\u039c\\u03b1\\u03c1\\u03c4\\u03af\\u03bf\\u03c5_\\u0391\\u03c0\\u03c1\\u03b9\\u03bb\\u03af\\u03bf\\u03c5_\\u039c\\u03b1\\u0390\\u03bf\\u03c5_\\u0399\\u03bf\\u03c5\\u03bd\\u03af\\u03bf\\u03c5_\\u0399\\u03bf\\u03c5\\u03bb\\u03af\\u03bf\\u03c5_\\u0391\\u03c5\\u03b3\\u03bf\\u03cd\\u03c3\\u03c4\\u03bf\\u03c5_\\u03a3\\u03b5\\u03c0\\u03c4\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u039f\\u03ba\\u03c4\\u03c9\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u039d\\u03bf\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u0394\\u03b5\\u03ba\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5\".split(\"_\"),months:function(e,t){return e?\"string\"==typeof t&&/D/.test(t.substring(0,t.indexOf(\"MMMM\")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]:this._monthsNominativeEl},monthsShort:\"\\u0399\\u03b1\\u03bd_\\u03a6\\u03b5\\u03b2_\\u039c\\u03b1\\u03c1_\\u0391\\u03c0\\u03c1_\\u039c\\u03b1\\u03ca_\\u0399\\u03bf\\u03c5\\u03bd_\\u0399\\u03bf\\u03c5\\u03bb_\\u0391\\u03c5\\u03b3_\\u03a3\\u03b5\\u03c0_\\u039f\\u03ba\\u03c4_\\u039d\\u03bf\\u03b5_\\u0394\\u03b5\\u03ba\".split(\"_\"),weekdays:\"\\u039a\\u03c5\\u03c1\\u03b9\\u03b1\\u03ba\\u03ae_\\u0394\\u03b5\\u03c5\\u03c4\\u03ad\\u03c1\\u03b1_\\u03a4\\u03c1\\u03af\\u03c4\\u03b7_\\u03a4\\u03b5\\u03c4\\u03ac\\u03c1\\u03c4\\u03b7_\\u03a0\\u03ad\\u03bc\\u03c0\\u03c4\\u03b7_\\u03a0\\u03b1\\u03c1\\u03b1\\u03c3\\u03ba\\u03b5\\u03c5\\u03ae_\\u03a3\\u03ac\\u03b2\\u03b2\\u03b1\\u03c4\\u03bf\".split(\"_\"),weekdaysShort:\"\\u039a\\u03c5\\u03c1_\\u0394\\u03b5\\u03c5_\\u03a4\\u03c1\\u03b9_\\u03a4\\u03b5\\u03c4_\\u03a0\\u03b5\\u03bc_\\u03a0\\u03b1\\u03c1_\\u03a3\\u03b1\\u03b2\".split(\"_\"),weekdaysMin:\"\\u039a\\u03c5_\\u0394\\u03b5_\\u03a4\\u03c1_\\u03a4\\u03b5_\\u03a0\\u03b5_\\u03a0\\u03b1_\\u03a3\\u03b1\".split(\"_\"),meridiem:function(e,t,n){return e>11?n?\"\\u03bc\\u03bc\":\"\\u039c\\u039c\":n?\"\\u03c0\\u03bc\":\"\\u03a0\\u039c\"},isPM:function(e){return\"\\u03bc\"===(e+\"\").toLowerCase()[0]},meridiemParse:/[\\u03a0\\u039c]\\.?\\u039c?\\.?/i,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendarEl:{sameDay:\"[\\u03a3\\u03ae\\u03bc\\u03b5\\u03c1\\u03b1 {}] LT\",nextDay:\"[\\u0391\\u03cd\\u03c1\\u03b9\\u03bf {}] LT\",nextWeek:\"dddd [{}] LT\",lastDay:\"[\\u03a7\\u03b8\\u03b5\\u03c2 {}] LT\",lastWeek:function(){switch(this.day()){case 6:return\"[\\u03c4\\u03bf \\u03c0\\u03c1\\u03bf\\u03b7\\u03b3\\u03bf\\u03cd\\u03bc\\u03b5\\u03bd\\u03bf] dddd [{}] LT\";default:return\"[\\u03c4\\u03b7\\u03bd \\u03c0\\u03c1\\u03bf\\u03b7\\u03b3\\u03bf\\u03cd\\u03bc\\u03b5\\u03bd\\u03b7] dddd [{}] LT\"}},sameElse:\"L\"},calendar:function(e,t){var n,r=this._calendarEl[e],i=t&&t.hours();return((n=r)instanceof Function||\"[object Function]\"===Object.prototype.toString.call(n))&&(r=r.apply(t)),r.replace(\"{}\",i%12==1?\"\\u03c3\\u03c4\\u03b7\":\"\\u03c3\\u03c4\\u03b9\\u03c2\")},relativeTime:{future:\"\\u03c3\\u03b5 %s\",past:\"%s \\u03c0\\u03c1\\u03b9\\u03bd\",s:\"\\u03bb\\u03af\\u03b3\\u03b1 \\u03b4\\u03b5\\u03c5\\u03c4\\u03b5\\u03c1\\u03cc\\u03bb\\u03b5\\u03c0\\u03c4\\u03b1\",ss:\"%d \\u03b4\\u03b5\\u03c5\\u03c4\\u03b5\\u03c1\\u03cc\\u03bb\\u03b5\\u03c0\\u03c4\\u03b1\",m:\"\\u03ad\\u03bd\\u03b1 \\u03bb\\u03b5\\u03c0\\u03c4\\u03cc\",mm:\"%d \\u03bb\\u03b5\\u03c0\\u03c4\\u03ac\",h:\"\\u03bc\\u03af\\u03b1 \\u03ce\\u03c1\\u03b1\",hh:\"%d \\u03ce\\u03c1\\u03b5\\u03c2\",d:\"\\u03bc\\u03af\\u03b1 \\u03bc\\u03ad\\u03c1\\u03b1\",dd:\"%d \\u03bc\\u03ad\\u03c1\\u03b5\\u03c2\",M:\"\\u03ad\\u03bd\\u03b1\\u03c2 \\u03bc\\u03ae\\u03bd\\u03b1\\u03c2\",MM:\"%d \\u03bc\\u03ae\\u03bd\\u03b5\\u03c2\",y:\"\\u03ad\\u03bd\\u03b1\\u03c2 \\u03c7\\u03c1\\u03cc\\u03bd\\u03bf\\u03c2\",yy:\"%d \\u03c7\\u03c1\\u03cc\\u03bd\\u03b9\\u03b1\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u03b7/,ordinal:\"%d\\u03b7\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jVdC:function(e,t,n){!function(e){\"use strict\";var t=\"stycze\\u0144_luty_marzec_kwiecie\\u0144_maj_czerwiec_lipiec_sierpie\\u0144_wrzesie\\u0144_pa\\u017adziernik_listopad_grudzie\\u0144\".split(\"_\"),n=\"stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_wrze\\u015bnia_pa\\u017adziernika_listopada_grudnia\".split(\"_\");function r(e){return e%10<5&&e%10>1&&~~(e/10)%10!=1}function i(e,t,n){var i=e+\" \";switch(n){case\"ss\":return i+(r(e)?\"sekundy\":\"sekund\");case\"m\":return t?\"minuta\":\"minut\\u0119\";case\"mm\":return i+(r(e)?\"minuty\":\"minut\");case\"h\":return t?\"godzina\":\"godzin\\u0119\";case\"hh\":return i+(r(e)?\"godziny\":\"godzin\");case\"MM\":return i+(r(e)?\"miesi\\u0105ce\":\"miesi\\u0119cy\");case\"yy\":return i+(r(e)?\"lata\":\"lat\")}}e.defineLocale(\"pl\",{months:function(e,r){return e?\"\"===r?\"(\"+n[e.month()]+\"|\"+t[e.month()]+\")\":/D MMMM/.test(r)?n[e.month()]:t[e.month()]:t},monthsShort:\"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_pa\\u017a_lis_gru\".split(\"_\"),weekdays:\"niedziela_poniedzia\\u0142ek_wtorek_\\u015broda_czwartek_pi\\u0105tek_sobota\".split(\"_\"),weekdaysShort:\"ndz_pon_wt_\\u015br_czw_pt_sob\".split(\"_\"),weekdaysMin:\"Nd_Pn_Wt_\\u015ar_Cz_Pt_So\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Dzi\\u015b o] LT\",nextDay:\"[Jutro o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[W niedziel\\u0119 o] LT\";case 2:return\"[We wtorek o] LT\";case 3:return\"[W \\u015brod\\u0119 o] LT\";case 6:return\"[W sobot\\u0119 o] LT\";default:return\"[W] dddd [o] LT\"}},lastDay:\"[Wczoraj o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[W zesz\\u0142\\u0105 niedziel\\u0119 o] LT\";case 3:return\"[W zesz\\u0142\\u0105 \\u015brod\\u0119 o] LT\";case 6:return\"[W zesz\\u0142\\u0105 sobot\\u0119 o] LT\";default:return\"[W zesz\\u0142y] dddd [o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"%s temu\",s:\"kilka sekund\",ss:i,m:i,mm:i,h:i,hh:i,d:\"1 dzie\\u0144\",dd:\"%d dni\",M:\"miesi\\u0105c\",MM:i,y:\"rok\",yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jfSC:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u06f1\",2:\"\\u06f2\",3:\"\\u06f3\",4:\"\\u06f4\",5:\"\\u06f5\",6:\"\\u06f6\",7:\"\\u06f7\",8:\"\\u06f8\",9:\"\\u06f9\",0:\"\\u06f0\"},n={\"\\u06f1\":\"1\",\"\\u06f2\":\"2\",\"\\u06f3\":\"3\",\"\\u06f4\":\"4\",\"\\u06f5\":\"5\",\"\\u06f6\":\"6\",\"\\u06f7\":\"7\",\"\\u06f8\":\"8\",\"\\u06f9\":\"9\",\"\\u06f0\":\"0\"};e.defineLocale(\"fa\",{months:\"\\u0698\\u0627\\u0646\\u0648\\u06cc\\u0647_\\u0641\\u0648\\u0631\\u06cc\\u0647_\\u0645\\u0627\\u0631\\u0633_\\u0622\\u0648\\u0631\\u06cc\\u0644_\\u0645\\u0647_\\u0698\\u0648\\u0626\\u0646_\\u0698\\u0648\\u0626\\u06cc\\u0647_\\u0627\\u0648\\u062a_\\u0633\\u067e\\u062a\\u0627\\u0645\\u0628\\u0631_\\u0627\\u06a9\\u062a\\u0628\\u0631_\\u0646\\u0648\\u0627\\u0645\\u0628\\u0631_\\u062f\\u0633\\u0627\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u0698\\u0627\\u0646\\u0648\\u06cc\\u0647_\\u0641\\u0648\\u0631\\u06cc\\u0647_\\u0645\\u0627\\u0631\\u0633_\\u0622\\u0648\\u0631\\u06cc\\u0644_\\u0645\\u0647_\\u0698\\u0648\\u0626\\u0646_\\u0698\\u0648\\u0626\\u06cc\\u0647_\\u0627\\u0648\\u062a_\\u0633\\u067e\\u062a\\u0627\\u0645\\u0628\\u0631_\\u0627\\u06a9\\u062a\\u0628\\u0631_\\u0646\\u0648\\u0627\\u0645\\u0628\\u0631_\\u062f\\u0633\\u0627\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u06cc\\u06a9\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062f\\u0648\\u0634\\u0646\\u0628\\u0647_\\u0633\\u0647\\u200c\\u0634\\u0646\\u0628\\u0647_\\u0686\\u0647\\u0627\\u0631\\u0634\\u0646\\u0628\\u0647_\\u067e\\u0646\\u062c\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062c\\u0645\\u0639\\u0647_\\u0634\\u0646\\u0628\\u0647\".split(\"_\"),weekdaysShort:\"\\u06cc\\u06a9\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062f\\u0648\\u0634\\u0646\\u0628\\u0647_\\u0633\\u0647\\u200c\\u0634\\u0646\\u0628\\u0647_\\u0686\\u0647\\u0627\\u0631\\u0634\\u0646\\u0628\\u0647_\\u067e\\u0646\\u062c\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062c\\u0645\\u0639\\u0647_\\u0634\\u0646\\u0628\\u0647\".split(\"_\"),weekdaysMin:\"\\u06cc_\\u062f_\\u0633_\\u0686_\\u067e_\\u062c_\\u0634\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u0642\\u0628\\u0644 \\u0627\\u0632 \\u0638\\u0647\\u0631|\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631/,isPM:function(e){return/\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631/.test(e)},meridiem:function(e,t,n){return e<12?\"\\u0642\\u0628\\u0644 \\u0627\\u0632 \\u0638\\u0647\\u0631\":\"\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631\"},calendar:{sameDay:\"[\\u0627\\u0645\\u0631\\u0648\\u0632 \\u0633\\u0627\\u0639\\u062a] LT\",nextDay:\"[\\u0641\\u0631\\u062f\\u0627 \\u0633\\u0627\\u0639\\u062a] LT\",nextWeek:\"dddd [\\u0633\\u0627\\u0639\\u062a] LT\",lastDay:\"[\\u062f\\u06cc\\u0631\\u0648\\u0632 \\u0633\\u0627\\u0639\\u062a] LT\",lastWeek:\"dddd [\\u067e\\u06cc\\u0634] [\\u0633\\u0627\\u0639\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u062f\\u0631 %s\",past:\"%s \\u067e\\u06cc\\u0634\",s:\"\\u0686\\u0646\\u062f \\u062b\\u0627\\u0646\\u06cc\\u0647\",ss:\"\\u062b\\u0627\\u0646\\u06cc\\u0647 d%\",m:\"\\u06cc\\u06a9 \\u062f\\u0642\\u06cc\\u0642\\u0647\",mm:\"%d \\u062f\\u0642\\u06cc\\u0642\\u0647\",h:\"\\u06cc\\u06a9 \\u0633\\u0627\\u0639\\u062a\",hh:\"%d \\u0633\\u0627\\u0639\\u062a\",d:\"\\u06cc\\u06a9 \\u0631\\u0648\\u0632\",dd:\"%d \\u0631\\u0648\\u0632\",M:\"\\u06cc\\u06a9 \\u0645\\u0627\\u0647\",MM:\"%d \\u0645\\u0627\\u0647\",y:\"\\u06cc\\u06a9 \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/[\\u06f0-\\u06f9]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},dayOfMonthOrdinalParse:/\\d{1,2}\\u0645/,ordinal:\"%d\\u0645\",week:{dow:6,doy:12}})}(n(\"wd/R\"))},jnO4:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"},r=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},i={s:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062b\\u0627\\u0646\\u064a\\u0629\",\"\\u062b\\u0627\\u0646\\u064a\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u0627\\u0646\",\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u064a\\u0646\"],\"%d \\u062b\\u0648\\u0627\\u0646\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\"],m:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062f\\u0642\\u064a\\u0642\\u0629\",\"\\u062f\\u0642\\u064a\\u0642\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u0627\\u0646\",\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u064a\\u0646\"],\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\"],h:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0633\\u0627\\u0639\\u0629\",\"\\u0633\\u0627\\u0639\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u0633\\u0627\\u0639\\u062a\\u0627\\u0646\",\"\\u0633\\u0627\\u0639\\u062a\\u064a\\u0646\"],\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",\"%d \\u0633\\u0627\\u0639\\u0629\",\"%d \\u0633\\u0627\\u0639\\u0629\"],d:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u064a\\u0648\\u0645\",\"\\u064a\\u0648\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u064a\\u0648\\u0645\\u0627\\u0646\",\"\\u064a\\u0648\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u064a\\u0627\\u0645\",\"%d \\u064a\\u0648\\u0645\\u064b\\u0627\",\"%d \\u064a\\u0648\\u0645\"],M:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0634\\u0647\\u0631\",\"\\u0634\\u0647\\u0631 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0634\\u0647\\u0631\\u0627\\u0646\",\"\\u0634\\u0647\\u0631\\u064a\\u0646\"],\"%d \\u0623\\u0634\\u0647\\u0631\",\"%d \\u0634\\u0647\\u0631\\u0627\",\"%d \\u0634\\u0647\\u0631\"],y:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0639\\u0627\\u0645\",\"\\u0639\\u0627\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0639\\u0627\\u0645\\u0627\\u0646\",\"\\u0639\\u0627\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u0639\\u0648\\u0627\\u0645\",\"%d \\u0639\\u0627\\u0645\\u064b\\u0627\",\"%d \\u0639\\u0627\\u0645\"]},a=function(e){return function(t,n,a,o){var s=r(t),l=i[e][r(t)];return 2===s&&(l=l[n?0:1]),l.replace(/%d/i,t)}},o=[\"\\u064a\\u0646\\u0627\\u064a\\u0631\",\"\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631\",\"\\u0645\\u0627\\u0631\\u0633\",\"\\u0623\\u0628\\u0631\\u064a\\u0644\",\"\\u0645\\u0627\\u064a\\u0648\",\"\\u064a\\u0648\\u0646\\u064a\\u0648\",\"\\u064a\\u0648\\u0644\\u064a\\u0648\",\"\\u0623\\u063a\\u0633\\u0637\\u0633\",\"\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631\",\"\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631\",\"\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\"];e.defineLocale(\"ar\",{months:o,monthsShort:o,weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/\\u200fM/\\u200fYYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u064b\\u0627 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0628\\u0639\\u062f %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:a(\"s\"),ss:a(\"s\"),m:a(\"m\"),mm:a(\"m\"),h:a(\"h\"),hh:a(\"h\"),d:a(\"d\"),dd:a(\"d\"),M:a(\"M\"),MM:a(\"M\"),y:a(\"y\"),yy:a(\"y\")},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},kEOa:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u09e7\",2:\"\\u09e8\",3:\"\\u09e9\",4:\"\\u09ea\",5:\"\\u09eb\",6:\"\\u09ec\",7:\"\\u09ed\",8:\"\\u09ee\",9:\"\\u09ef\",0:\"\\u09e6\"},n={\"\\u09e7\":\"1\",\"\\u09e8\":\"2\",\"\\u09e9\":\"3\",\"\\u09ea\":\"4\",\"\\u09eb\":\"5\",\"\\u09ec\":\"6\",\"\\u09ed\":\"7\",\"\\u09ee\":\"8\",\"\\u09ef\":\"9\",\"\\u09e6\":\"0\"};e.defineLocale(\"bn\",{months:\"\\u099c\\u09be\\u09a8\\u09c1\\u09df\\u09be\\u09b0\\u09c0_\\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09c1\\u09df\\u09be\\u09b0\\u09bf_\\u09ae\\u09be\\u09b0\\u09cd\\u099a_\\u098f\\u09aa\\u09cd\\u09b0\\u09bf\\u09b2_\\u09ae\\u09c7_\\u099c\\u09c1\\u09a8_\\u099c\\u09c1\\u09b2\\u09be\\u0987_\\u0986\\u0997\\u09b8\\u09cd\\u099f_\\u09b8\\u09c7\\u09aa\\u09cd\\u099f\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0_\\u0985\\u0995\\u09cd\\u099f\\u09cb\\u09ac\\u09b0_\\u09a8\\u09ad\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0_\\u09a1\\u09bf\\u09b8\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0\".split(\"_\"),monthsShort:\"\\u099c\\u09be\\u09a8\\u09c1_\\u09ab\\u09c7\\u09ac_\\u09ae\\u09be\\u09b0\\u09cd\\u099a_\\u098f\\u09aa\\u09cd\\u09b0_\\u09ae\\u09c7_\\u099c\\u09c1\\u09a8_\\u099c\\u09c1\\u09b2_\\u0986\\u0997_\\u09b8\\u09c7\\u09aa\\u09cd\\u099f_\\u0985\\u0995\\u09cd\\u099f\\u09cb_\\u09a8\\u09ad\\u09c7_\\u09a1\\u09bf\\u09b8\\u09c7\".split(\"_\"),weekdays:\"\\u09b0\\u09ac\\u09bf\\u09ac\\u09be\\u09b0_\\u09b8\\u09cb\\u09ae\\u09ac\\u09be\\u09b0_\\u09ae\\u0999\\u09cd\\u0997\\u09b2\\u09ac\\u09be\\u09b0_\\u09ac\\u09c1\\u09a7\\u09ac\\u09be\\u09b0_\\u09ac\\u09c3\\u09b9\\u09b8\\u09cd\\u09aa\\u09a4\\u09bf\\u09ac\\u09be\\u09b0_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0\\u09ac\\u09be\\u09b0_\\u09b6\\u09a8\\u09bf\\u09ac\\u09be\\u09b0\".split(\"_\"),weekdaysShort:\"\\u09b0\\u09ac\\u09bf_\\u09b8\\u09cb\\u09ae_\\u09ae\\u0999\\u09cd\\u0997\\u09b2_\\u09ac\\u09c1\\u09a7_\\u09ac\\u09c3\\u09b9\\u09b8\\u09cd\\u09aa\\u09a4\\u09bf_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0_\\u09b6\\u09a8\\u09bf\".split(\"_\"),weekdaysMin:\"\\u09b0\\u09ac\\u09bf_\\u09b8\\u09cb\\u09ae_\\u09ae\\u0999\\u09cd\\u0997_\\u09ac\\u09c1\\u09a7_\\u09ac\\u09c3\\u09b9\\u0983_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0_\\u09b6\\u09a8\\u09bf\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u09b8\\u09ae\\u09df\",LTS:\"A h:mm:ss \\u09b8\\u09ae\\u09df\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u09b8\\u09ae\\u09df\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u09b8\\u09ae\\u09df\"},calendar:{sameDay:\"[\\u0986\\u099c] LT\",nextDay:\"[\\u0986\\u0997\\u09be\\u09ae\\u09c0\\u0995\\u09be\\u09b2] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0997\\u09a4\\u0995\\u09be\\u09b2] LT\",lastWeek:\"[\\u0997\\u09a4] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u09aa\\u09b0\\u09c7\",past:\"%s \\u0986\\u0997\\u09c7\",s:\"\\u0995\\u09df\\u09c7\\u0995 \\u09b8\\u09c7\\u0995\\u09c7\\u09a8\\u09cd\\u09a1\",ss:\"%d \\u09b8\\u09c7\\u0995\\u09c7\\u09a8\\u09cd\\u09a1\",m:\"\\u098f\\u0995 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f\",mm:\"%d \\u09ae\\u09bf\\u09a8\\u09bf\\u099f\",h:\"\\u098f\\u0995 \\u0998\\u09a8\\u09cd\\u099f\\u09be\",hh:\"%d \\u0998\\u09a8\\u09cd\\u099f\\u09be\",d:\"\\u098f\\u0995 \\u09a6\\u09bf\\u09a8\",dd:\"%d \\u09a6\\u09bf\\u09a8\",M:\"\\u098f\\u0995 \\u09ae\\u09be\\u09b8\",MM:\"%d \\u09ae\\u09be\\u09b8\",y:\"\\u098f\\u0995 \\u09ac\\u099b\\u09b0\",yy:\"%d \\u09ac\\u099b\\u09b0\"},preparse:function(e){return e.replace(/[\\u09e7\\u09e8\\u09e9\\u09ea\\u09eb\\u09ec\\u09ed\\u09ee\\u09ef\\u09e6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u09b0\\u09be\\u09a4|\\u09b8\\u0995\\u09be\\u09b2|\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0|\\u09ac\\u09bf\\u0995\\u09be\\u09b2|\\u09b0\\u09be\\u09a4/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u09b0\\u09be\\u09a4\"===t&&e>=4||\"\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0\"===t&&e<5||\"\\u09ac\\u09bf\\u0995\\u09be\\u09b2\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u09b0\\u09be\\u09a4\":e<10?\"\\u09b8\\u0995\\u09be\\u09b2\":e<17?\"\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0\":e<20?\"\\u09ac\\u09bf\\u0995\\u09be\\u09b2\":\"\\u09b0\\u09be\\u09a4\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},kOpN:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-tw\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u9031\\u65e5_\\u9031\\u4e00_\\u9031\\u4e8c_\\u9031\\u4e09_\\u9031\\u56db_\\u9031\\u4e94_\\u9031\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e2d\\u5348\"===t?e>=11?e:e+12:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:void 0},meridiem:function(e,t,n){var r=100*e+t;return r<600?\"\\u51cc\\u6668\":r<900?\"\\u65e9\\u4e0a\":r<1130?\"\\u4e0a\\u5348\":r<1230?\"\\u4e2d\\u5348\":r<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929] LT\",nextDay:\"[\\u660e\\u5929] LT\",nextWeek:\"[\\u4e0b]dddd LT\",lastDay:\"[\\u6628\\u5929] LT\",lastWeek:\"[\\u4e0a]dddd LT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u9031)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u9031\";default:return e}},relativeTime:{future:\"%s\\u5167\",past:\"%s\\u524d\",s:\"\\u5e7e\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u9418\",mm:\"%d \\u5206\\u9418\",h:\"1 \\u5c0f\\u6642\",hh:\"%d \\u5c0f\\u6642\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u500b\\u6708\",MM:\"%d \\u500b\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"}})}(n(\"wd/R\"))},l5ep:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cy\",{months:\"Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr\".split(\"_\"),monthsShort:\"Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag\".split(\"_\"),weekdays:\"Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn\".split(\"_\"),weekdaysShort:\"Sul_Llun_Maw_Mer_Iau_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Ll_Ma_Me_Ia_Gw_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Heddiw am] LT\",nextDay:\"[Yfory am] LT\",nextWeek:\"dddd [am] LT\",lastDay:\"[Ddoe am] LT\",lastWeek:\"dddd [diwethaf am] LT\",sameElse:\"L\"},relativeTime:{future:\"mewn %s\",past:\"%s yn \\xf4l\",s:\"ychydig eiliadau\",ss:\"%d eiliad\",m:\"munud\",mm:\"%d munud\",h:\"awr\",hh:\"%d awr\",d:\"diwrnod\",dd:\"%d diwrnod\",M:\"mis\",MM:\"%d mis\",y:\"blwyddyn\",yy:\"%d flynedd\"},dayOfMonthOrdinalParse:/\\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,ordinal:function(e){var t=\"\";return e>20?t=40===e||50===e||60===e||80===e||100===e?\"fed\":\"ain\":e>0&&(t=[\"\",\"af\",\"il\",\"ydd\",\"ydd\",\"ed\",\"ed\",\"ed\",\"fed\",\"fed\",\"fed\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"fed\"][e]),e+t},week:{dow:1,doy:4}})}(n(\"wd/R\"))},lXzo:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r,i;return\"m\"===n?t?\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\":\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0443\":e+\" \"+(r=+e,i={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430_\\u043c\\u0438\\u043d\\u0443\\u0442\\u044b_\\u043c\\u0438\\u043d\\u0443\\u0442\":\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0443_\\u043c\\u0438\\u043d\\u0443\\u0442\\u044b_\\u043c\\u0438\\u043d\\u0443\\u0442\",hh:\"\\u0447\\u0430\\u0441_\\u0447\\u0430\\u0441\\u0430_\\u0447\\u0430\\u0441\\u043e\\u0432\",dd:\"\\u0434\\u0435\\u043d\\u044c_\\u0434\\u043d\\u044f_\\u0434\\u043d\\u0435\\u0439\",MM:\"\\u043c\\u0435\\u0441\\u044f\\u0446_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0430_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0435\\u0432\",yy:\"\\u0433\\u043e\\u0434_\\u0433\\u043e\\u0434\\u0430_\\u043b\\u0435\\u0442\"}[n].split(\"_\"),r%10==1&&r%100!=11?i[0]:r%10>=2&&r%10<=4&&(r%100<10||r%100>=20)?i[1]:i[2])}var n=[/^\\u044f\\u043d\\u0432/i,/^\\u0444\\u0435\\u0432/i,/^\\u043c\\u0430\\u0440/i,/^\\u0430\\u043f\\u0440/i,/^\\u043c\\u0430[\\u0439\\u044f]/i,/^\\u0438\\u044e\\u043d/i,/^\\u0438\\u044e\\u043b/i,/^\\u0430\\u0432\\u0433/i,/^\\u0441\\u0435\\u043d/i,/^\\u043e\\u043a\\u0442/i,/^\\u043d\\u043e\\u044f/i,/^\\u0434\\u0435\\u043a/i];e.defineLocale(\"ru\",{months:{format:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044f_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044f_\\u043c\\u0430\\u0440\\u0442\\u0430_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044f_\\u043c\\u0430\\u044f_\\u0438\\u044e\\u043d\\u044f_\\u0438\\u044e\\u043b\\u044f_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044f_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044f_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044f_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044f\".split(\"_\"),standalone:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044c_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044c_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044c_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044c_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044c\".split(\"_\")},monthsShort:{format:\"\\u044f\\u043d\\u0432._\\u0444\\u0435\\u0432\\u0440._\\u043c\\u0430\\u0440._\\u0430\\u043f\\u0440._\\u043c\\u0430\\u044f_\\u0438\\u044e\\u043d\\u044f_\\u0438\\u044e\\u043b\\u044f_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043d\\u0442._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u044f\\u0431._\\u0434\\u0435\\u043a.\".split(\"_\"),standalone:\"\\u044f\\u043d\\u0432._\\u0444\\u0435\\u0432\\u0440._\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440._\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043d\\u0442._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u044f\\u0431._\\u0434\\u0435\\u043a.\".split(\"_\")},weekdays:{standalone:\"\\u0432\\u043e\\u0441\\u043a\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c\\u0435_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u044c\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433_\\u043f\\u044f\\u0442\\u043d\\u0438\\u0446\\u0430_\\u0441\\u0443\\u0431\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),format:\"\\u0432\\u043e\\u0441\\u043a\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c\\u0435_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u044c\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0443_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433_\\u043f\\u044f\\u0442\\u043d\\u0438\\u0446\\u0443_\\u0441\\u0443\\u0431\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),isFormat:/\\[ ?[\\u0412\\u0432] ?(?:\\u043f\\u0440\\u043e\\u0448\\u043b\\u0443\\u044e|\\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0443\\u044e|\\u044d\\u0442\\u0443)? ?\\] ?dddd/},weekdaysShort:\"\\u0432\\u0441_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u0432\\u0441_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),monthsParse:n,longMonthsParse:n,shortMonthsParse:n,monthsRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044c\\u044f]|\\u044f\\u043d\\u0432\\.?|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044c\\u044f]|\\u0444\\u0435\\u0432\\u0440?\\.?|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u043c\\u0430\\u0440\\.?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044c\\u044f]|\\u0430\\u043f\\u0440\\.?|\\u043c\\u0430[\\u0439\\u044f]|\\u0438\\u044e\\u043d[\\u044c\\u044f]|\\u0438\\u044e\\u043d\\.?|\\u0438\\u044e\\u043b[\\u044c\\u044f]|\\u0438\\u044e\\u043b\\.?|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0430\\u0432\\u0433\\.?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u0441\\u0435\\u043d\\u0442?\\.?|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043e\\u043a\\u0442\\.?|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043d\\u043e\\u044f\\u0431?\\.?|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044c\\u044f]|\\u0434\\u0435\\u043a\\.?)/i,monthsShortRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044c\\u044f]|\\u044f\\u043d\\u0432\\.?|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044c\\u044f]|\\u0444\\u0435\\u0432\\u0440?\\.?|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u043c\\u0430\\u0440\\.?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044c\\u044f]|\\u0430\\u043f\\u0440\\.?|\\u043c\\u0430[\\u0439\\u044f]|\\u0438\\u044e\\u043d[\\u044c\\u044f]|\\u0438\\u044e\\u043d\\.?|\\u0438\\u044e\\u043b[\\u044c\\u044f]|\\u0438\\u044e\\u043b\\.?|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0430\\u0432\\u0433\\.?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u0441\\u0435\\u043d\\u0442?\\.?|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043e\\u043a\\u0442\\.?|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043d\\u043e\\u044f\\u0431?\\.?|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044c\\u044f]|\\u0434\\u0435\\u043a\\.?)/i,monthsStrictRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044f\\u044c]|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044f\\u044c]|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044f\\u044c]|\\u043c\\u0430[\\u044f\\u0439]|\\u0438\\u044e\\u043d[\\u044f\\u044c]|\\u0438\\u044e\\u043b[\\u044f\\u044c]|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044f\\u044c])/i,monthsShortStrictRegex:/^(\\u044f\\u043d\\u0432\\.|\\u0444\\u0435\\u0432\\u0440?\\.|\\u043c\\u0430\\u0440[\\u0442.]|\\u0430\\u043f\\u0440\\.|\\u043c\\u0430[\\u044f\\u0439]|\\u0438\\u044e\\u043d[\\u044c\\u044f.]|\\u0438\\u044e\\u043b[\\u044c\\u044f.]|\\u0430\\u0432\\u0433\\.|\\u0441\\u0435\\u043d\\u0442?\\.|\\u043e\\u043a\\u0442\\.|\\u043d\\u043e\\u044f\\u0431?\\.|\\u0434\\u0435\\u043a\\.)/i,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0433.\",LLL:\"D MMMM YYYY \\u0433., H:mm\",LLLL:\"dddd, D MMMM YYYY \\u0433., H:mm\"},calendar:{sameDay:\"[\\u0421\\u0435\\u0433\\u043e\\u0434\\u043d\\u044f, \\u0432] LT\",nextDay:\"[\\u0417\\u0430\\u0432\\u0442\\u0440\\u0430, \\u0432] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430, \\u0432] LT\",nextWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[\\u0412\\u043e] dddd, [\\u0432] LT\":\"[\\u0412] dddd, [\\u0432] LT\";switch(this.day()){case 0:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0435\\u0435] dddd, [\\u0432] LT\";case 1:case 2:case 4:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0438\\u0439] dddd, [\\u0432] LT\";case 3:case 5:case 6:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0443\\u044e] dddd, [\\u0432] LT\"}},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[\\u0412\\u043e] dddd, [\\u0432] LT\":\"[\\u0412] dddd, [\\u0432] LT\";switch(this.day()){case 0:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0435] dddd, [\\u0432] LT\";case 1:case 2:case 4:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u044b\\u0439] dddd, [\\u0432] LT\";case 3:case 5:case 6:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u0443\\u044e] dddd, [\\u0432] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u0447\\u0435\\u0440\\u0435\\u0437 %s\",past:\"%s \\u043d\\u0430\\u0437\\u0430\\u0434\",s:\"\\u043d\\u0435\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:t,m:t,mm:t,h:\"\\u0447\\u0430\\u0441\",hh:t,d:\"\\u0434\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0435\\u0441\\u044f\\u0446\",MM:t,y:\"\\u0433\\u043e\\u0434\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u0438|\\u0443\\u0442\\u0440\\u0430|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430/i,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u0438\":e<12?\"\\u0443\\u0442\\u0440\\u0430\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0439|\\u0433\\u043e|\\u044f)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":return e+\"-\\u0439\";case\"D\":return e+\"-\\u0433\\u043e\";case\"w\":case\"W\":return e+\"-\\u044f\";default:return e}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},lYtQ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){switch(n){case\"s\":return t?\"\\u0445\\u044d\\u0434\\u0445\\u044d\\u043d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0445\\u044d\\u0434\\u0445\\u044d\\u043d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b\\u043d\";case\"ss\":return e+(t?\" \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\" \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b\\u043d\");case\"m\":case\"mm\":return e+(t?\" \\u043c\\u0438\\u043d\\u0443\\u0442\":\" \\u043c\\u0438\\u043d\\u0443\\u0442\\u044b\\u043d\");case\"h\":case\"hh\":return e+(t?\" \\u0446\\u0430\\u0433\":\" \\u0446\\u0430\\u0433\\u0438\\u0439\\u043d\");case\"d\":case\"dd\":return e+(t?\" \\u04e9\\u0434\\u04e9\\u0440\":\" \\u04e9\\u0434\\u0440\\u0438\\u0439\\u043d\");case\"M\":case\"MM\":return e+(t?\" \\u0441\\u0430\\u0440\":\" \\u0441\\u0430\\u0440\\u044b\\u043d\");case\"y\":case\"yy\":return e+(t?\" \\u0436\\u0438\\u043b\":\" \\u0436\\u0438\\u043b\\u0438\\u0439\\u043d\");default:return e}}e.defineLocale(\"mn\",{months:\"\\u041d\\u044d\\u0433\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0425\\u043e\\u0451\\u0440\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0413\\u0443\\u0440\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0414\\u04e9\\u0440\\u04e9\\u0432\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0422\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0417\\u0443\\u0440\\u0433\\u0430\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0414\\u043e\\u043b\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u041d\\u0430\\u0439\\u043c\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0415\\u0441\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0432\\u0430\\u043d \\u043d\\u044d\\u0433\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0432\\u0430\\u043d \\u0445\\u043e\\u0451\\u0440\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440\".split(\"_\"),monthsShort:\"1 \\u0441\\u0430\\u0440_2 \\u0441\\u0430\\u0440_3 \\u0441\\u0430\\u0440_4 \\u0441\\u0430\\u0440_5 \\u0441\\u0430\\u0440_6 \\u0441\\u0430\\u0440_7 \\u0441\\u0430\\u0440_8 \\u0441\\u0430\\u0440_9 \\u0441\\u0430\\u0440_10 \\u0441\\u0430\\u0440_11 \\u0441\\u0430\\u0440_12 \\u0441\\u0430\\u0440\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u041d\\u044f\\u043c_\\u0414\\u0430\\u0432\\u0430\\u0430_\\u041c\\u044f\\u0433\\u043c\\u0430\\u0440_\\u041b\\u0445\\u0430\\u0433\\u0432\\u0430_\\u041f\\u04af\\u0440\\u044d\\u0432_\\u0411\\u0430\\u0430\\u0441\\u0430\\u043d_\\u0411\\u044f\\u043c\\u0431\\u0430\".split(\"_\"),weekdaysShort:\"\\u041d\\u044f\\u043c_\\u0414\\u0430\\u0432_\\u041c\\u044f\\u0433_\\u041b\\u0445\\u0430_\\u041f\\u04af\\u0440_\\u0411\\u0430\\u0430_\\u0411\\u044f\\u043c\".split(\"_\"),weekdaysMin:\"\\u041d\\u044f_\\u0414\\u0430_\\u041c\\u044f_\\u041b\\u0445_\\u041f\\u04af_\\u0411\\u0430_\\u0411\\u044f\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D\",LLL:\"YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D HH:mm\",LLLL:\"dddd, YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D HH:mm\"},meridiemParse:/\\u04ae\\u04e8|\\u04ae\\u0425/i,isPM:function(e){return\"\\u04ae\\u0425\"===e},meridiem:function(e,t,n){return e<12?\"\\u04ae\\u04e8\":\"\\u04ae\\u0425\"},calendar:{sameDay:\"[\\u04e8\\u043d\\u04e9\\u04e9\\u0434\\u04e9\\u0440] LT\",nextDay:\"[\\u041c\\u0430\\u0440\\u0433\\u0430\\u0430\\u0448] LT\",nextWeek:\"[\\u0418\\u0440\\u044d\\u0445] dddd LT\",lastDay:\"[\\u04e8\\u0447\\u0438\\u0433\\u0434\\u04e9\\u0440] LT\",lastWeek:\"[\\u04e8\\u043d\\u0433\\u04e9\\u0440\\u0441\\u04e9\\u043d] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0434\\u0430\\u0440\\u0430\\u0430\",past:\"%s \\u04e9\\u043c\\u043d\\u04e9\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2} \\u04e9\\u0434\\u04e9\\u0440/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\" \\u04e9\\u0434\\u04e9\\u0440\";default:return e}}})}(n(\"wd/R\"))},lgnt:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0447\\u04af\",1:\"-\\u0447\\u0438\",2:\"-\\u0447\\u0438\",3:\"-\\u0447\\u04af\",4:\"-\\u0447\\u04af\",5:\"-\\u0447\\u0438\",6:\"-\\u0447\\u044b\",7:\"-\\u0447\\u0438\",8:\"-\\u0447\\u0438\",9:\"-\\u0447\\u0443\",10:\"-\\u0447\\u0443\",20:\"-\\u0447\\u044b\",30:\"-\\u0447\\u0443\",40:\"-\\u0447\\u044b\",50:\"-\\u0447\\u04af\",60:\"-\\u0447\\u044b\",70:\"-\\u0447\\u0438\",80:\"-\\u0447\\u0438\",90:\"-\\u0447\\u0443\",100:\"-\\u0447\\u04af\"};e.defineLocale(\"ky\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044c_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044c_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044c_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044c_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044c\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u0416\\u0435\\u043a\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0414\\u04af\\u0439\\u0448\\u04e9\\u043c\\u0431\\u04af_\\u0428\\u0435\\u0439\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0428\\u0430\\u0440\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0411\\u0435\\u0439\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0416\\u0443\\u043c\\u0430_\\u0418\\u0448\\u0435\\u043c\\u0431\\u0438\".split(\"_\"),weekdaysShort:\"\\u0416\\u0435\\u043a_\\u0414\\u04af\\u0439_\\u0428\\u0435\\u0439_\\u0428\\u0430\\u0440_\\u0411\\u0435\\u0439_\\u0416\\u0443\\u043c_\\u0418\\u0448\\u0435\".split(\"_\"),weekdaysMin:\"\\u0416\\u043a_\\u0414\\u0439_\\u0428\\u0439_\\u0428\\u0440_\\u0411\\u0439_\\u0416\\u043c_\\u0418\\u0448\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0411\\u04af\\u0433\\u04af\\u043d \\u0441\\u0430\\u0430\\u0442] LT\",nextDay:\"[\\u042d\\u0440\\u0442\\u0435\\u04a3 \\u0441\\u0430\\u0430\\u0442] LT\",nextWeek:\"dddd [\\u0441\\u0430\\u0430\\u0442] LT\",lastDay:\"[\\u041a\\u0435\\u0447\\u044d\\u044d \\u0441\\u0430\\u0430\\u0442] LT\",lastWeek:\"[\\u04e8\\u0442\\u043a\\u04e9\\u043d \\u0430\\u043f\\u0442\\u0430\\u043d\\u044b\\u043d] dddd [\\u043a\\u04af\\u043d\\u04af] [\\u0441\\u0430\\u0430\\u0442] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0438\\u0447\\u0438\\u043d\\u0434\\u0435\",past:\"%s \\u043c\\u0443\\u0440\\u0443\\u043d\",s:\"\\u0431\\u0438\\u0440\\u043d\\u0435\\u0447\\u0435 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:\"\\u0431\\u0438\\u0440 \\u043c\\u04af\\u043d\\u04e9\\u0442\",mm:\"%d \\u043c\\u04af\\u043d\\u04e9\\u0442\",h:\"\\u0431\\u0438\\u0440 \\u0441\\u0430\\u0430\\u0442\",hh:\"%d \\u0441\\u0430\\u0430\\u0442\",d:\"\\u0431\\u0438\\u0440 \\u043a\\u04af\\u043d\",dd:\"%d \\u043a\\u04af\\u043d\",M:\"\\u0431\\u0438\\u0440 \\u0430\\u0439\",MM:\"%d \\u0430\\u0439\",y:\"\\u0431\\u0438\\u0440 \\u0436\\u044b\\u043b\",yy:\"%d \\u0436\\u044b\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0447\\u0438|\\u0447\\u044b|\\u0447\\u04af|\\u0447\\u0443)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},lyxo:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r=\" \";return(e%100>=20||e>=100&&e%100==0)&&(r=\" de \"),e+r+{ss:\"secunde\",mm:\"minute\",hh:\"ore\",dd:\"zile\",MM:\"luni\",yy:\"ani\"}[n]}e.defineLocale(\"ro\",{months:\"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie\".split(\"_\"),monthsShort:\"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"duminic\\u0103_luni_mar\\u021bi_miercuri_joi_vineri_s\\xe2mb\\u0103t\\u0103\".split(\"_\"),weekdaysShort:\"Dum_Lun_Mar_Mie_Joi_Vin_S\\xe2m\".split(\"_\"),weekdaysMin:\"Du_Lu_Ma_Mi_Jo_Vi_S\\xe2\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[azi la] LT\",nextDay:\"[m\\xe2ine la] LT\",nextWeek:\"dddd [la] LT\",lastDay:\"[ieri la] LT\",lastWeek:\"[fosta] dddd [la] LT\",sameElse:\"L\"},relativeTime:{future:\"peste %s\",past:\"%s \\xeen urm\\u0103\",s:\"c\\xe2teva secunde\",ss:t,m:\"un minut\",mm:t,h:\"o or\\u0103\",hh:t,d:\"o zi\",dd:t,M:\"o lun\\u0103\",MM:t,y:\"un an\",yy:t},week:{dow:1,doy:7}})}(n(\"wd/R\"))},m4GZ:function(e,t){function n(e){this.message=e}(n.prototype=new Error).name=\"InvalidCharacterError\",e.exports=\"undefined\"!=typeof window&&window.atob&&window.atob.bind(window)||function(e){var t=String(e).replace(/=+$/,\"\");if(t.length%4==1)throw new n(\"'atob' failed: The string to be decoded is not correctly encoded.\");for(var r,i,a=0,o=0,s=\"\";i=t.charAt(o++);~i&&(r=a%4?64*r+i:i,a++%4)?s+=String.fromCharCode(255&r>>(-2*a&6)):0)i=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\".indexOf(i);return s}},nyYc:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|)/,ordinal:function(e,t){switch(t){case\"D\":return e+(1===e?\"er\":\"\");default:case\"M\":case\"Q\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},o1bE:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-dz\",{months:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0627\\u062d\\u062f_\\u0627\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u0623\\u062d_\\u0625\\u062b_\\u062b\\u0644\\u0627_\\u0623\\u0631_\\u062e\\u0645_\\u062c\\u0645_\\u0633\\u0628\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:0,doy:4}})}(n(\"wd/R\"))},\"p/rL\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bm\",{months:\"Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_M\\u025bkalo_Zuw\\u025bnkalo_Zuluyekalo_Utikalo_S\\u025btanburukalo_\\u0254kut\\u0254burukalo_Nowanburukalo_Desanburukalo\".split(\"_\"),monthsShort:\"Zan_Few_Mar_Awi_M\\u025b_Zuw_Zul_Uti_S\\u025bt_\\u0254ku_Now_Des\".split(\"_\"),weekdays:\"Kari_Nt\\u025bn\\u025bn_Tarata_Araba_Alamisa_Juma_Sibiri\".split(\"_\"),weekdaysShort:\"Kar_Nt\\u025b_Tar_Ara_Ala_Jum_Sib\".split(\"_\"),weekdaysMin:\"Ka_Nt_Ta_Ar_Al_Ju_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"MMMM [tile] D [san] YYYY\",LLL:\"MMMM [tile] D [san] YYYY [l\\u025br\\u025b] HH:mm\",LLLL:\"dddd MMMM [tile] D [san] YYYY [l\\u025br\\u025b] HH:mm\"},calendar:{sameDay:\"[Bi l\\u025br\\u025b] LT\",nextDay:\"[Sini l\\u025br\\u025b] LT\",nextWeek:\"dddd [don l\\u025br\\u025b] LT\",lastDay:\"[Kunu l\\u025br\\u025b] LT\",lastWeek:\"dddd [t\\u025bm\\u025bnen l\\u025br\\u025b] LT\",sameElse:\"L\"},relativeTime:{future:\"%s k\\u0254n\\u0254\",past:\"a b\\u025b %s b\\u0254\",s:\"sanga dama dama\",ss:\"sekondi %d\",m:\"miniti kelen\",mm:\"miniti %d\",h:\"l\\u025br\\u025b kelen\",hh:\"l\\u025br\\u025b %d\",d:\"tile kelen\",dd:\"tile %d\",M:\"kalo kelen\",MM:\"kalo %d\",y:\"san kelen\",yy:\"san %d\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},raLr:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r,i;return\"m\"===n?t?\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0430\":\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0443\":\"h\"===n?t?\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\":\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\":e+\" \"+(r=+e,i={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0430_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0438_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\":\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0443_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0438_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\",hh:t?\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430_\\u0433\\u043e\\u0434\\u0438\\u043d\\u0438_\\u0433\\u043e\\u0434\\u0438\\u043d\":\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443_\\u0433\\u043e\\u0434\\u0438\\u043d\\u0438_\\u0433\\u043e\\u0434\\u0438\\u043d\",dd:\"\\u0434\\u0435\\u043d\\u044c_\\u0434\\u043d\\u0456_\\u0434\\u043d\\u0456\\u0432\",MM:\"\\u043c\\u0456\\u0441\\u044f\\u0446\\u044c_\\u043c\\u0456\\u0441\\u044f\\u0446\\u0456_\\u043c\\u0456\\u0441\\u044f\\u0446\\u0456\\u0432\",yy:\"\\u0440\\u0456\\u043a_\\u0440\\u043e\\u043a\\u0438_\\u0440\\u043e\\u043a\\u0456\\u0432\"}[n].split(\"_\"),r%10==1&&r%100!=11?i[0]:r%10>=2&&r%10<=4&&(r%100<10||r%100>=20)?i[1]:i[2])}function n(e){return function(){return e+\"\\u043e\"+(11===this.hours()?\"\\u0431\":\"\")+\"] LT\"}}e.defineLocale(\"uk\",{months:{format:\"\\u0441\\u0456\\u0447\\u043d\\u044f_\\u043b\\u044e\\u0442\\u043e\\u0433\\u043e_\\u0431\\u0435\\u0440\\u0435\\u0437\\u043d\\u044f_\\u043a\\u0432\\u0456\\u0442\\u043d\\u044f_\\u0442\\u0440\\u0430\\u0432\\u043d\\u044f_\\u0447\\u0435\\u0440\\u0432\\u043d\\u044f_\\u043b\\u0438\\u043f\\u043d\\u044f_\\u0441\\u0435\\u0440\\u043f\\u043d\\u044f_\\u0432\\u0435\\u0440\\u0435\\u0441\\u043d\\u044f_\\u0436\\u043e\\u0432\\u0442\\u043d\\u044f_\\u043b\\u0438\\u0441\\u0442\\u043e\\u043f\\u0430\\u0434\\u0430_\\u0433\\u0440\\u0443\\u0434\\u043d\\u044f\".split(\"_\"),standalone:\"\\u0441\\u0456\\u0447\\u0435\\u043d\\u044c_\\u043b\\u044e\\u0442\\u0438\\u0439_\\u0431\\u0435\\u0440\\u0435\\u0437\\u0435\\u043d\\u044c_\\u043a\\u0432\\u0456\\u0442\\u0435\\u043d\\u044c_\\u0442\\u0440\\u0430\\u0432\\u0435\\u043d\\u044c_\\u0447\\u0435\\u0440\\u0432\\u0435\\u043d\\u044c_\\u043b\\u0438\\u043f\\u0435\\u043d\\u044c_\\u0441\\u0435\\u0440\\u043f\\u0435\\u043d\\u044c_\\u0432\\u0435\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c_\\u0436\\u043e\\u0432\\u0442\\u0435\\u043d\\u044c_\\u043b\\u0438\\u0441\\u0442\\u043e\\u043f\\u0430\\u0434_\\u0433\\u0440\\u0443\\u0434\\u0435\\u043d\\u044c\".split(\"_\")},monthsShort:\"\\u0441\\u0456\\u0447_\\u043b\\u044e\\u0442_\\u0431\\u0435\\u0440_\\u043a\\u0432\\u0456\\u0442_\\u0442\\u0440\\u0430\\u0432_\\u0447\\u0435\\u0440\\u0432_\\u043b\\u0438\\u043f_\\u0441\\u0435\\u0440\\u043f_\\u0432\\u0435\\u0440_\\u0436\\u043e\\u0432\\u0442_\\u043b\\u0438\\u0441\\u0442_\\u0433\\u0440\\u0443\\u0434\".split(\"_\"),weekdays:function(e,t){var n={nominative:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u044f_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043e\\u043a_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043e\\u043a_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u044f_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),accusative:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u044e_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043e\\u043a_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043e\\u043a_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0443_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u044e_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),genitive:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u0456_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043a\\u0430_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043a\\u0430_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0438_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433\\u0430_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u0456_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0438\".split(\"_\")};return!0===e?n.nominative.slice(1,7).concat(n.nominative.slice(0,1)):e?n[/(\\[[\\u0412\\u0432\\u0423\\u0443]\\]) ?dddd/.test(t)?\"accusative\":/\\[?(?:\\u043c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0457|\\u043d\\u0430\\u0441\\u0442\\u0443\\u043f\\u043d\\u043e\\u0457)? ?\\] ?dddd/.test(t)?\"genitive\":\"nominative\"][e.day()]:n.nominative},weekdaysShort:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0440.\",LLL:\"D MMMM YYYY \\u0440., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0440., HH:mm\"},calendar:{sameDay:n(\"[\\u0421\\u044c\\u043e\\u0433\\u043e\\u0434\\u043d\\u0456 \"),nextDay:n(\"[\\u0417\\u0430\\u0432\\u0442\\u0440\\u0430 \"),lastDay:n(\"[\\u0412\\u0447\\u043e\\u0440\\u0430 \"),nextWeek:n(\"[\\u0423] dddd [\"),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return n(\"[\\u041c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0457] dddd [\").call(this);case 1:case 2:case 4:return n(\"[\\u041c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0433\\u043e] dddd [\").call(this)}},sameElse:\"L\"},relativeTime:{future:\"\\u0437\\u0430 %s\",past:\"%s \\u0442\\u043e\\u043c\\u0443\",s:\"\\u0434\\u0435\\u043a\\u0456\\u043b\\u044c\\u043a\\u0430 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:t,m:t,mm:t,h:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\",hh:t,d:\"\\u0434\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0456\\u0441\\u044f\\u0446\\u044c\",MM:t,y:\"\\u0440\\u0456\\u043a\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u0456|\\u0440\\u0430\\u043d\\u043a\\u0443|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430/,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u0456\":e<12?\"\\u0440\\u0430\\u043d\\u043a\\u0443\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0439|\\u0433\\u043e)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e+\"-\\u0439\";case\"D\":return e+\"-\\u0433\\u043e\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"s+uk\":function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?i[n][0]:i[n][1]}e.defineLocale(\"de-at\",{months:\"J\\xe4nner_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"J\\xe4n._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},sp3z:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"lo\",{months:\"\\u0ea1\\u0eb1\\u0e87\\u0e81\\u0ead\\u0e99_\\u0e81\\u0eb8\\u0ea1\\u0e9e\\u0eb2_\\u0ea1\\u0eb5\\u0e99\\u0eb2_\\u0ec0\\u0ea1\\u0eaa\\u0eb2_\\u0e9e\\u0eb6\\u0e94\\u0eaa\\u0eb0\\u0e9e\\u0eb2_\\u0ea1\\u0eb4\\u0e96\\u0eb8\\u0e99\\u0eb2_\\u0e81\\u0ecd\\u0ea5\\u0eb0\\u0e81\\u0ebb\\u0e94_\\u0eaa\\u0eb4\\u0e87\\u0eab\\u0eb2_\\u0e81\\u0eb1\\u0e99\\u0e8d\\u0eb2_\\u0e95\\u0eb8\\u0ea5\\u0eb2_\\u0e9e\\u0eb0\\u0e88\\u0eb4\\u0e81_\\u0e97\\u0eb1\\u0e99\\u0ea7\\u0eb2\".split(\"_\"),monthsShort:\"\\u0ea1\\u0eb1\\u0e87\\u0e81\\u0ead\\u0e99_\\u0e81\\u0eb8\\u0ea1\\u0e9e\\u0eb2_\\u0ea1\\u0eb5\\u0e99\\u0eb2_\\u0ec0\\u0ea1\\u0eaa\\u0eb2_\\u0e9e\\u0eb6\\u0e94\\u0eaa\\u0eb0\\u0e9e\\u0eb2_\\u0ea1\\u0eb4\\u0e96\\u0eb8\\u0e99\\u0eb2_\\u0e81\\u0ecd\\u0ea5\\u0eb0\\u0e81\\u0ebb\\u0e94_\\u0eaa\\u0eb4\\u0e87\\u0eab\\u0eb2_\\u0e81\\u0eb1\\u0e99\\u0e8d\\u0eb2_\\u0e95\\u0eb8\\u0ea5\\u0eb2_\\u0e9e\\u0eb0\\u0e88\\u0eb4\\u0e81_\\u0e97\\u0eb1\\u0e99\\u0ea7\\u0eb2\".split(\"_\"),weekdays:\"\\u0ead\\u0eb2\\u0e97\\u0eb4\\u0e94_\\u0e88\\u0eb1\\u0e99_\\u0ead\\u0eb1\\u0e87\\u0e84\\u0eb2\\u0e99_\\u0e9e\\u0eb8\\u0e94_\\u0e9e\\u0eb0\\u0eab\\u0eb1\\u0e94_\\u0eaa\\u0eb8\\u0e81_\\u0ec0\\u0eaa\\u0ebb\\u0eb2\".split(\"_\"),weekdaysShort:\"\\u0e97\\u0eb4\\u0e94_\\u0e88\\u0eb1\\u0e99_\\u0ead\\u0eb1\\u0e87\\u0e84\\u0eb2\\u0e99_\\u0e9e\\u0eb8\\u0e94_\\u0e9e\\u0eb0\\u0eab\\u0eb1\\u0e94_\\u0eaa\\u0eb8\\u0e81_\\u0ec0\\u0eaa\\u0ebb\\u0eb2\".split(\"_\"),weekdaysMin:\"\\u0e97_\\u0e88_\\u0ead\\u0e84_\\u0e9e_\\u0e9e\\u0eab_\\u0eaa\\u0e81_\\u0eaa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"\\u0ea7\\u0eb1\\u0e99dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0e95\\u0ead\\u0e99\\u0ec0\\u0e8a\\u0ebb\\u0ec9\\u0eb2|\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87/,isPM:function(e){return\"\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87\"===e},meridiem:function(e,t,n){return e<12?\"\\u0e95\\u0ead\\u0e99\\u0ec0\\u0e8a\\u0ebb\\u0ec9\\u0eb2\":\"\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87\"},calendar:{sameDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",nextDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0ead\\u0eb7\\u0ec8\\u0e99\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",nextWeek:\"[\\u0ea7\\u0eb1\\u0e99]dddd[\\u0edc\\u0ec9\\u0eb2\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",lastDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0ea7\\u0eb2\\u0e99\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",lastWeek:\"[\\u0ea7\\u0eb1\\u0e99]dddd[\\u0ec1\\u0ea5\\u0ec9\\u0ea7\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0ead\\u0eb5\\u0e81 %s\",past:\"%s\\u0e9c\\u0ec8\\u0eb2\\u0e99\\u0ea1\\u0eb2\",s:\"\\u0e9a\\u0ecd\\u0ec8\\u0ec0\\u0e97\\u0ebb\\u0ec8\\u0eb2\\u0ec3\\u0e94\\u0ea7\\u0eb4\\u0e99\\u0eb2\\u0e97\\u0eb5\",ss:\"%d \\u0ea7\\u0eb4\\u0e99\\u0eb2\\u0e97\\u0eb5\",m:\"1 \\u0e99\\u0eb2\\u0e97\\u0eb5\",mm:\"%d \\u0e99\\u0eb2\\u0e97\\u0eb5\",h:\"1 \\u0e8a\\u0ebb\\u0ec8\\u0ea7\\u0ec2\\u0ea1\\u0e87\",hh:\"%d \\u0e8a\\u0ebb\\u0ec8\\u0ea7\\u0ec2\\u0ea1\\u0e87\",d:\"1 \\u0ea1\\u0eb7\\u0ec9\",dd:\"%d \\u0ea1\\u0eb7\\u0ec9\",M:\"1 \\u0ec0\\u0e94\\u0eb7\\u0ead\\u0e99\",MM:\"%d \\u0ec0\\u0e94\\u0eb7\\u0ead\\u0e99\",y:\"1 \\u0e9b\\u0eb5\",yy:\"%d \\u0e9b\\u0eb5\"},dayOfMonthOrdinalParse:/(\\u0e97\\u0eb5\\u0ec8)\\d{1,2}/,ordinal:function(e){return\"\\u0e97\\u0eb5\\u0ec8\"+e}})}(n(\"wd/R\"))},tGlX:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?i[n][0]:i[n][1]}e.defineLocale(\"de\",{months:\"Januar_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},tT3J:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm-latn\",{months:\"innayr_br\\u02e4ayr\\u02e4_mar\\u02e4s\\u02e4_ibrir_mayyw_ywnyw_ywlywz_\\u0263w\\u0161t_\\u0161wtanbir_kt\\u02e4wbr\\u02e4_nwwanbir_dwjnbir\".split(\"_\"),monthsShort:\"innayr_br\\u02e4ayr\\u02e4_mar\\u02e4s\\u02e4_ibrir_mayyw_ywnyw_ywlywz_\\u0263w\\u0161t_\\u0161wtanbir_kt\\u02e4wbr\\u02e4_nwwanbir_dwjnbir\".split(\"_\"),weekdays:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),weekdaysShort:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),weekdaysMin:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[asdkh g] LT\",nextDay:\"[aska g] LT\",nextWeek:\"dddd [g] LT\",lastDay:\"[assant g] LT\",lastWeek:\"dddd [g] LT\",sameElse:\"L\"},relativeTime:{future:\"dadkh s yan %s\",past:\"yan %s\",s:\"imik\",ss:\"%d imik\",m:\"minu\\u1e0d\",mm:\"%d minu\\u1e0d\",h:\"sa\\u025ba\",hh:\"%d tassa\\u025bin\",d:\"ass\",dd:\"%d ossan\",M:\"ayowr\",MM:\"%d iyyirn\",y:\"asgas\",yy:\"%d isgasn\"},week:{dow:6,doy:12}})}(n(\"wd/R\"))},tUCv:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"jv\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des\".split(\"_\"),weekdays:\"Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Reb_Kem_Jem_Sep\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sp\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/enjing|siyang|sonten|ndalu/,meridiemHour:function(e,t){return 12===e&&(e=0),\"enjing\"===t?e:\"siyang\"===t?e>=11?e:e+12:\"sonten\"===t||\"ndalu\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"enjing\":e<15?\"siyang\":e<19?\"sonten\":\"ndalu\"},calendar:{sameDay:\"[Dinten puniko pukul] LT\",nextDay:\"[Mbenjang pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kala wingi pukul] LT\",lastWeek:\"dddd [kepengker pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"wonten ing %s\",past:\"%s ingkang kepengker\",s:\"sawetawis detik\",ss:\"%d detik\",m:\"setunggal menit\",mm:\"%d menit\",h:\"setunggal jam\",hh:\"%d jam\",d:\"sedinten\",dd:\"%d dinten\",M:\"sewulan\",MM:\"%d wulan\",y:\"setaun\",yy:\"%d taun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},u3GI:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?i[n][0]:i[n][1]}e.defineLocale(\"de-ch\",{months:\"Januar_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},uEye:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nn\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\"),weekdays:\"sundag_m\\xe5ndag_tysdag_onsdag_torsdag_fredag_laurdag\".split(\"_\"),weekdaysShort:\"sun_m\\xe5n_tys_ons_tor_fre_lau\".split(\"_\"),weekdaysMin:\"su_m\\xe5_ty_on_to_fr_l\\xf8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] H:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[I dag klokka] LT\",nextDay:\"[I morgon klokka] LT\",nextWeek:\"dddd [klokka] LT\",lastDay:\"[I g\\xe5r klokka] LT\",lastWeek:\"[F\\xf8reg\\xe5ande] dddd [klokka] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s sidan\",s:\"nokre sekund\",ss:\"%d sekund\",m:\"eit minutt\",mm:\"%d minutt\",h:\"ein time\",hh:\"%d timar\",d:\"ein dag\",dd:\"%d dagar\",M:\"ein m\\xe5nad\",MM:\"%d m\\xe5nader\",y:\"eit \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},uXwI:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekundes_sekund\\u0113m_sekunde_sekundes\".split(\"_\"),m:\"min\\u016btes_min\\u016bt\\u0113m_min\\u016bte_min\\u016btes\".split(\"_\"),mm:\"min\\u016btes_min\\u016bt\\u0113m_min\\u016bte_min\\u016btes\".split(\"_\"),h:\"stundas_stund\\u0101m_stunda_stundas\".split(\"_\"),hh:\"stundas_stund\\u0101m_stunda_stundas\".split(\"_\"),d:\"dienas_dien\\u0101m_diena_dienas\".split(\"_\"),dd:\"dienas_dien\\u0101m_diena_dienas\".split(\"_\"),M:\"m\\u0113ne\\u0161a_m\\u0113ne\\u0161iem_m\\u0113nesis_m\\u0113ne\\u0161i\".split(\"_\"),MM:\"m\\u0113ne\\u0161a_m\\u0113ne\\u0161iem_m\\u0113nesis_m\\u0113ne\\u0161i\".split(\"_\"),y:\"gada_gadiem_gads_gadi\".split(\"_\"),yy:\"gada_gadiem_gads_gadi\".split(\"_\")};function n(e,t,n){return n?t%10==1&&t%100!=11?e[2]:e[3]:t%10==1&&t%100!=11?e[0]:e[1]}function r(e,r,i){return e+\" \"+n(t[i],e,r)}function i(e,r,i){return n(t[i],e,r)}e.defineLocale(\"lv\",{months:\"janv\\u0101ris_febru\\u0101ris_marts_apr\\u012blis_maijs_j\\u016bnijs_j\\u016blijs_augusts_septembris_oktobris_novembris_decembris\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_j\\u016bn_j\\u016bl_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"sv\\u0113tdiena_pirmdiena_otrdiena_tre\\u0161diena_ceturtdiena_piektdiena_sestdiena\".split(\"_\"),weekdaysShort:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysMin:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY.\",LL:\"YYYY. [gada] D. MMMM\",LLL:\"YYYY. [gada] D. MMMM, HH:mm\",LLLL:\"YYYY. [gada] D. MMMM, dddd, HH:mm\"},calendar:{sameDay:\"[\\u0160odien pulksten] LT\",nextDay:\"[R\\u012bt pulksten] LT\",nextWeek:\"dddd [pulksten] LT\",lastDay:\"[Vakar pulksten] LT\",lastWeek:\"[Pag\\u0101ju\\u0161\\u0101] dddd [pulksten] LT\",sameElse:\"L\"},relativeTime:{future:\"p\\u0113c %s\",past:\"pirms %s\",s:function(e,t){return t?\"da\\u017eas sekundes\":\"da\\u017e\\u0101m sekund\\u0113m\"},ss:r,m:i,mm:r,h:i,hh:r,d:i,dd:r,M:i,MM:r,y:i,yy:r},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},wQk9:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm\",{months:\"\\u2d49\\u2d4f\\u2d4f\\u2d30\\u2d62\\u2d54_\\u2d31\\u2d55\\u2d30\\u2d62\\u2d55_\\u2d4e\\u2d30\\u2d55\\u2d5a_\\u2d49\\u2d31\\u2d54\\u2d49\\u2d54_\\u2d4e\\u2d30\\u2d62\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4f\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4d\\u2d62\\u2d53\\u2d63_\\u2d56\\u2d53\\u2d5b\\u2d5c_\\u2d5b\\u2d53\\u2d5c\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d3d\\u2d5f\\u2d53\\u2d31\\u2d55_\\u2d4f\\u2d53\\u2d61\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d37\\u2d53\\u2d4a\\u2d4f\\u2d31\\u2d49\\u2d54\".split(\"_\"),monthsShort:\"\\u2d49\\u2d4f\\u2d4f\\u2d30\\u2d62\\u2d54_\\u2d31\\u2d55\\u2d30\\u2d62\\u2d55_\\u2d4e\\u2d30\\u2d55\\u2d5a_\\u2d49\\u2d31\\u2d54\\u2d49\\u2d54_\\u2d4e\\u2d30\\u2d62\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4f\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4d\\u2d62\\u2d53\\u2d63_\\u2d56\\u2d53\\u2d5b\\u2d5c_\\u2d5b\\u2d53\\u2d5c\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d3d\\u2d5f\\u2d53\\u2d31\\u2d55_\\u2d4f\\u2d53\\u2d61\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d37\\u2d53\\u2d4a\\u2d4f\\u2d31\\u2d49\\u2d54\".split(\"_\"),weekdays:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),weekdaysShort:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),weekdaysMin:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u2d30\\u2d59\\u2d37\\u2d45 \\u2d34] LT\",nextDay:\"[\\u2d30\\u2d59\\u2d3d\\u2d30 \\u2d34] LT\",nextWeek:\"dddd [\\u2d34] LT\",lastDay:\"[\\u2d30\\u2d5a\\u2d30\\u2d4f\\u2d5c \\u2d34] LT\",lastWeek:\"dddd [\\u2d34] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u2d37\\u2d30\\u2d37\\u2d45 \\u2d59 \\u2d62\\u2d30\\u2d4f %s\",past:\"\\u2d62\\u2d30\\u2d4f %s\",s:\"\\u2d49\\u2d4e\\u2d49\\u2d3d\",ss:\"%d \\u2d49\\u2d4e\\u2d49\\u2d3d\",m:\"\\u2d4e\\u2d49\\u2d4f\\u2d53\\u2d3a\",mm:\"%d \\u2d4e\\u2d49\\u2d4f\\u2d53\\u2d3a\",h:\"\\u2d59\\u2d30\\u2d44\\u2d30\",hh:\"%d \\u2d5c\\u2d30\\u2d59\\u2d59\\u2d30\\u2d44\\u2d49\\u2d4f\",d:\"\\u2d30\\u2d59\\u2d59\",dd:\"%d o\\u2d59\\u2d59\\u2d30\\u2d4f\",M:\"\\u2d30\\u2d62o\\u2d53\\u2d54\",MM:\"%d \\u2d49\\u2d62\\u2d62\\u2d49\\u2d54\\u2d4f\",y:\"\\u2d30\\u2d59\\u2d33\\u2d30\\u2d59\",yy:\"%d \\u2d49\\u2d59\\u2d33\\u2d30\\u2d59\\u2d4f\"},week:{dow:6,doy:12}})}(n(\"wd/R\"))},\"wd/R\":function(e,t,n){(function(e){e.exports=function(){\"use strict\";var t,r;function i(){return t.apply(null,arguments)}function a(e){return e instanceof Array||\"[object Array]\"===Object.prototype.toString.call(e)}function o(e){return null!=e&&\"[object Object]\"===Object.prototype.toString.call(e)}function s(e){return void 0===e}function l(e){return\"number\"==typeof e||\"[object Number]\"===Object.prototype.toString.call(e)}function u(e){return e instanceof Date||\"[object Date]\"===Object.prototype.toString.call(e)}function c(e,t){var n,r=[];for(n=0;n>>0,r=0;r0)for(n=0;n=0?n?\"+\":\"\":\"-\")+Math.pow(10,Math.max(0,t-r.length)).toString().substr(1)+r}var N=/(\\[[^\\[]*\\])|(\\\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,z=/(\\[[^\\[]*\\])|(\\\\)?(LTS|LT|LL?L?L?|l{1,4})/g,V={},W={};function U(e,t,n,r){var i=r;\"string\"==typeof r&&(i=function(){return this[r]()}),e&&(W[e]=i),t&&(W[t[0]]=function(){return F(i.apply(this,arguments),t[1],t[2])}),n&&(W[n]=function(){return this.localeData().ordinal(i.apply(this,arguments),e)})}function B(e,t){return e.isValid()?(t=q(t,e.localeData()),V[t]=V[t]||function(e){var t,n,r,i=e.match(N);for(t=0,n=i.length;t=0&&z.test(e);)e=e.replace(z,r),z.lastIndex=0,n-=1;return e}var G=/\\d/,$=/\\d\\d/,J=/\\d{3}/,K=/\\d{4}/,Z=/[+-]?\\d{6}/,Q=/\\d\\d?/,X=/\\d\\d\\d\\d?/,ee=/\\d\\d\\d\\d\\d\\d?/,te=/\\d{1,3}/,ne=/\\d{1,4}/,re=/[+-]?\\d{1,6}/,ie=/\\d+/,ae=/[+-]?\\d+/,oe=/Z|[+-]\\d\\d:?\\d\\d/gi,se=/Z|[+-]\\d\\d(?::?\\d\\d)?/gi,le=/[0-9]{0,256}['a-z\\u00A0-\\u05FF\\u0700-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFF07\\uFF10-\\uFFEF]{1,256}|[\\u0600-\\u06FF\\/]{1,256}(\\s*?[\\u0600-\\u06FF]{1,256}){1,2}/i,ue={};function ce(e,t,n){ue[e]=O(t)?t:function(e,r){return e&&n?n:t}}function de(e,t){return d(ue,e)?ue[e](t._strict,t._locale):new RegExp(he(e.replace(\"\\\\\",\"\").replace(/\\\\(\\[)|\\\\(\\])|\\[([^\\]\\[]*)\\]|\\\\(.)/g,(function(e,t,n,r,i){return t||n||r||i}))))}function he(e){return e.replace(/[-\\/\\\\^$*+?.()|[\\]{}]/g,\"\\\\$&\")}var fe={};function me(e,t){var n,r=t;for(\"string\"==typeof e&&(e=[e]),l(t)&&(r=function(e,n){n[t]=C(e)}),n=0;n68?1900:2e3)};var ye,be=ke(\"FullYear\",!0);function ke(e,t){return function(n){return null!=n?(Ce(this,e,n),i.updateOffset(this,t),this):we(this,e)}}function we(e,t){return e.isValid()?e._d[\"get\"+(e._isUTC?\"UTC\":\"\")+t]():NaN}function Ce(e,t,n){e.isValid()&&!isNaN(n)&&(\"FullYear\"===t&&ge(e.year())&&1===e.month()&&29===e.date()?e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n,e.month(),Me(n,e.month())):e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n))}function Me(e,t){if(isNaN(e)||isNaN(t))return NaN;var n=(t%12+12)%12;return e+=(t-n)/12,1===n?ge(e)?29:28:31-n%7%2}ye=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t=0?(s=new Date(e+400,t,n,r,i,a,o),isFinite(s.getFullYear())&&s.setFullYear(e)):s=new Date(e,t,n,r,i,a,o),s}function Pe(e){var t;if(e<100&&e>=0){var n=Array.prototype.slice.call(arguments);n[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)}else t=new Date(Date.UTC.apply(null,arguments));return t}function je(e,t,n){var r=7+t-n;return-(7+Pe(e,0,r).getUTCDay()-t)%7+r-1}function Re(e,t,n,r,i){var a,o,s=1+7*(t-1)+(7+n-r)%7+je(e,r,i);return s<=0?o=ve(a=e-1)+s:s>ve(e)?(a=e+1,o=s-ve(e)):(a=e,o=s),{year:a,dayOfYear:o}}function He(e,t,n){var r,i,a=je(e.year(),t,n),o=Math.floor((e.dayOfYear()-a-1)/7)+1;return o<1?r=o+Fe(i=e.year()-1,t,n):o>Fe(e.year(),t,n)?(r=o-Fe(e.year(),t,n),i=e.year()+1):(i=e.year(),r=o),{week:r,year:i}}function Fe(e,t,n){var r=je(e,t,n),i=je(e+1,t,n);return(ve(e)-r+i)/7}function Ne(e,t){return e.slice(t,7).concat(e.slice(0,t))}U(\"w\",[\"ww\",2],\"wo\",\"week\"),U(\"W\",[\"WW\",2],\"Wo\",\"isoWeek\"),A(\"week\",\"w\"),A(\"isoWeek\",\"W\"),H(\"week\",5),H(\"isoWeek\",5),ce(\"w\",Q),ce(\"ww\",Q,$),ce(\"W\",Q),ce(\"WW\",Q,$),pe([\"w\",\"ww\",\"W\",\"WW\"],(function(e,t,n,r){t[r.substr(0,1)]=C(e)})),U(\"d\",0,\"do\",\"day\"),U(\"dd\",0,0,(function(e){return this.localeData().weekdaysMin(this,e)})),U(\"ddd\",0,0,(function(e){return this.localeData().weekdaysShort(this,e)})),U(\"dddd\",0,0,(function(e){return this.localeData().weekdays(this,e)})),U(\"e\",0,0,\"weekday\"),U(\"E\",0,0,\"isoWeekday\"),A(\"day\",\"d\"),A(\"weekday\",\"e\"),A(\"isoWeekday\",\"E\"),H(\"day\",11),H(\"weekday\",11),H(\"isoWeekday\",11),ce(\"d\",Q),ce(\"e\",Q),ce(\"E\",Q),ce(\"dd\",(function(e,t){return t.weekdaysMinRegex(e)})),ce(\"ddd\",(function(e,t){return t.weekdaysShortRegex(e)})),ce(\"dddd\",(function(e,t){return t.weekdaysRegex(e)})),pe([\"dd\",\"ddd\",\"dddd\"],(function(e,t,n,r){var i=n._locale.weekdaysParse(e,r,n._strict);null!=i?t.d=i:m(n).invalidWeekday=e})),pe([\"d\",\"e\",\"E\"],(function(e,t,n,r){t[r]=C(e)}));var ze=\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),Ve=\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),We=\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\");function Ue(e,t,n){var r,i,a,o=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],r=0;r<7;++r)a=f([2e3,1]).day(r),this._minWeekdaysParse[r]=this.weekdaysMin(a,\"\").toLocaleLowerCase(),this._shortWeekdaysParse[r]=this.weekdaysShort(a,\"\").toLocaleLowerCase(),this._weekdaysParse[r]=this.weekdays(a,\"\").toLocaleLowerCase();return n?\"dddd\"===t?-1!==(i=ye.call(this._weekdaysParse,o))?i:null:\"ddd\"===t?-1!==(i=ye.call(this._shortWeekdaysParse,o))?i:null:-1!==(i=ye.call(this._minWeekdaysParse,o))?i:null:\"dddd\"===t?-1!==(i=ye.call(this._weekdaysParse,o))||-1!==(i=ye.call(this._shortWeekdaysParse,o))||-1!==(i=ye.call(this._minWeekdaysParse,o))?i:null:\"ddd\"===t?-1!==(i=ye.call(this._shortWeekdaysParse,o))||-1!==(i=ye.call(this._weekdaysParse,o))||-1!==(i=ye.call(this._minWeekdaysParse,o))?i:null:-1!==(i=ye.call(this._minWeekdaysParse,o))||-1!==(i=ye.call(this._weekdaysParse,o))||-1!==(i=ye.call(this._shortWeekdaysParse,o))?i:null}var Be=le,qe=le,Ge=le;function $e(){function e(e,t){return t.length-e.length}var t,n,r,i,a,o=[],s=[],l=[],u=[];for(t=0;t<7;t++)n=f([2e3,1]).day(t),r=this.weekdaysMin(n,\"\"),i=this.weekdaysShort(n,\"\"),a=this.weekdays(n,\"\"),o.push(r),s.push(i),l.push(a),u.push(r),u.push(i),u.push(a);for(o.sort(e),s.sort(e),l.sort(e),u.sort(e),t=0;t<7;t++)s[t]=he(s[t]),l[t]=he(l[t]),u[t]=he(u[t]);this._weekdaysRegex=new RegExp(\"^(\"+u.join(\"|\")+\")\",\"i\"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp(\"^(\"+l.join(\"|\")+\")\",\"i\"),this._weekdaysShortStrictRegex=new RegExp(\"^(\"+s.join(\"|\")+\")\",\"i\"),this._weekdaysMinStrictRegex=new RegExp(\"^(\"+o.join(\"|\")+\")\",\"i\")}function Je(){return this.hours()%12||12}function Ke(e,t){U(e,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)}))}function Ze(e,t){return t._meridiemParse}U(\"H\",[\"HH\",2],0,\"hour\"),U(\"h\",[\"hh\",2],0,Je),U(\"k\",[\"kk\",2],0,(function(){return this.hours()||24})),U(\"hmm\",0,0,(function(){return\"\"+Je.apply(this)+F(this.minutes(),2)})),U(\"hmmss\",0,0,(function(){return\"\"+Je.apply(this)+F(this.minutes(),2)+F(this.seconds(),2)})),U(\"Hmm\",0,0,(function(){return\"\"+this.hours()+F(this.minutes(),2)})),U(\"Hmmss\",0,0,(function(){return\"\"+this.hours()+F(this.minutes(),2)+F(this.seconds(),2)})),Ke(\"a\",!0),Ke(\"A\",!1),A(\"hour\",\"h\"),H(\"hour\",13),ce(\"a\",Ze),ce(\"A\",Ze),ce(\"H\",Q),ce(\"h\",Q),ce(\"k\",Q),ce(\"HH\",Q,$),ce(\"hh\",Q,$),ce(\"kk\",Q,$),ce(\"hmm\",X),ce(\"hmmss\",ee),ce(\"Hmm\",X),ce(\"Hmmss\",ee),me([\"H\",\"HH\"],3),me([\"k\",\"kk\"],(function(e,t,n){var r=C(e);t[3]=24===r?0:r})),me([\"a\",\"A\"],(function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e})),me([\"h\",\"hh\"],(function(e,t,n){t[3]=C(e),m(n).bigHour=!0})),me(\"hmm\",(function(e,t,n){var r=e.length-2;t[3]=C(e.substr(0,r)),t[4]=C(e.substr(r)),m(n).bigHour=!0})),me(\"hmmss\",(function(e,t,n){var r=e.length-4,i=e.length-2;t[3]=C(e.substr(0,r)),t[4]=C(e.substr(r,2)),t[5]=C(e.substr(i)),m(n).bigHour=!0})),me(\"Hmm\",(function(e,t,n){var r=e.length-2;t[3]=C(e.substr(0,r)),t[4]=C(e.substr(r))})),me(\"Hmmss\",(function(e,t,n){var r=e.length-4,i=e.length-2;t[3]=C(e.substr(0,r)),t[4]=C(e.substr(r,2)),t[5]=C(e.substr(i))}));var Qe,Xe=ke(\"Hours\",!0),et={calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},longDateFormat:{LTS:\"h:mm:ss A\",LT:\"h:mm A\",L:\"MM/DD/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"},invalidDate:\"Invalid date\",ordinal:\"%d\",dayOfMonthOrdinalParse:/\\d{1,2}/,relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},months:Le,monthsShort:Te,week:{dow:0,doy:6},weekdays:ze,weekdaysMin:We,weekdaysShort:Ve,meridiemParse:/[ap]\\.?m?\\.?/i},tt={},nt={};function rt(e){return e?e.toLowerCase().replace(\"_\",\"-\"):e}function it(t){var r=null;if(!tt[t]&&void 0!==e&&e&&e.exports)try{r=Qe._abbr,n(\"RnhZ\")(\"./\"+t),at(r)}catch(i){}return tt[t]}function at(e,t){var n;return e&&((n=s(t)?st(e):ot(e,t))?Qe=n:\"undefined\"!=typeof console&&console.warn&&console.warn(\"Locale \"+e+\" not found. Did you forget to load it?\")),Qe._abbr}function ot(e,t){if(null!==t){var n,r=et;if(t.abbr=e,null!=tt[e])D(\"defineLocaleOverride\",\"use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info.\"),r=tt[e]._config;else if(null!=t.parentLocale)if(null!=tt[t.parentLocale])r=tt[t.parentLocale]._config;else{if(null==(n=it(t.parentLocale)))return nt[t.parentLocale]||(nt[t.parentLocale]=[]),nt[t.parentLocale].push({name:e,config:t}),null;r=n._config}return tt[e]=new E(Y(r,t)),nt[e]&&nt[e].forEach((function(e){ot(e.name,e.config)})),at(e),tt[e]}return delete tt[e],null}function st(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return Qe;if(!a(e)){if(t=it(e))return t;e=[e]}return function(e){for(var t,n,r,i,a=0;a0;){if(r=it(i.slice(0,t).join(\"-\")))return r;if(n&&n.length>=t&&M(i,n,!0)>=t-1)break;t--}a++}return Qe}(e)}function lt(e){var t,n=e._a;return n&&-2===m(e).overflow&&(t=n[1]<0||n[1]>11?1:n[2]<1||n[2]>Me(n[0],n[1])?2:n[3]<0||n[3]>24||24===n[3]&&(0!==n[4]||0!==n[5]||0!==n[6])?3:n[4]<0||n[4]>59?4:n[5]<0||n[5]>59?5:n[6]<0||n[6]>999?6:-1,m(e)._overflowDayOfYear&&(t<0||t>2)&&(t=2),m(e)._overflowWeeks&&-1===t&&(t=7),m(e)._overflowWeekday&&-1===t&&(t=8),m(e).overflow=t),e}function ut(e,t,n){return null!=e?e:null!=t?t:n}function ct(e){var t,n,r,a,o,s=[];if(!e._d){for(r=function(e){var t=new Date(i.now());return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}(e),e._w&&null==e._a[2]&&null==e._a[1]&&function(e){var t,n,r,i,a,o,s,l;if(null!=(t=e._w).GG||null!=t.W||null!=t.E)a=1,o=4,n=ut(t.GG,e._a[0],He(Mt(),1,4).year),r=ut(t.W,1),((i=ut(t.E,1))<1||i>7)&&(l=!0);else{a=e._locale._week.dow,o=e._locale._week.doy;var u=He(Mt(),a,o);n=ut(t.gg,e._a[0],u.year),r=ut(t.w,u.week),null!=t.d?((i=t.d)<0||i>6)&&(l=!0):null!=t.e?(i=t.e+a,(t.e<0||t.e>6)&&(l=!0)):i=a}r<1||r>Fe(n,a,o)?m(e)._overflowWeeks=!0:null!=l?m(e)._overflowWeekday=!0:(s=Re(n,r,i,a,o),e._a[0]=s.year,e._dayOfYear=s.dayOfYear)}(e),null!=e._dayOfYear&&(o=ut(e._a[0],r[0]),(e._dayOfYear>ve(o)||0===e._dayOfYear)&&(m(e)._overflowDayOfYear=!0),n=Pe(o,0,e._dayOfYear),e._a[1]=n.getUTCMonth(),e._a[2]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=s[t]=r[t];for(;t<7;t++)e._a[t]=s[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[3]&&0===e._a[4]&&0===e._a[5]&&0===e._a[6]&&(e._nextDay=!0,e._a[3]=0),e._d=(e._useUTC?Pe:Ae).apply(null,s),a=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[3]=24),e._w&&void 0!==e._w.d&&e._w.d!==a&&(m(e).weekdayMismatch=!0)}}var dt=/^\\s*((?:[+-]\\d{6}|\\d{4})-(?:\\d\\d-\\d\\d|W\\d\\d-\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?::\\d\\d(?::\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,ht=/^\\s*((?:[+-]\\d{6}|\\d{4})(?:\\d\\d\\d\\d|W\\d\\d\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?:\\d\\d(?:\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,ft=/Z|[+-]\\d\\d(?::?\\d\\d)?/,mt=[[\"YYYYYY-MM-DD\",/[+-]\\d{6}-\\d\\d-\\d\\d/],[\"YYYY-MM-DD\",/\\d{4}-\\d\\d-\\d\\d/],[\"GGGG-[W]WW-E\",/\\d{4}-W\\d\\d-\\d/],[\"GGGG-[W]WW\",/\\d{4}-W\\d\\d/,!1],[\"YYYY-DDD\",/\\d{4}-\\d{3}/],[\"YYYY-MM\",/\\d{4}-\\d\\d/,!1],[\"YYYYYYMMDD\",/[+-]\\d{10}/],[\"YYYYMMDD\",/\\d{8}/],[\"GGGG[W]WWE\",/\\d{4}W\\d{3}/],[\"GGGG[W]WW\",/\\d{4}W\\d{2}/,!1],[\"YYYYDDD\",/\\d{7}/]],pt=[[\"HH:mm:ss.SSSS\",/\\d\\d:\\d\\d:\\d\\d\\.\\d+/],[\"HH:mm:ss,SSSS\",/\\d\\d:\\d\\d:\\d\\d,\\d+/],[\"HH:mm:ss\",/\\d\\d:\\d\\d:\\d\\d/],[\"HH:mm\",/\\d\\d:\\d\\d/],[\"HHmmss.SSSS\",/\\d\\d\\d\\d\\d\\d\\.\\d+/],[\"HHmmss,SSSS\",/\\d\\d\\d\\d\\d\\d,\\d+/],[\"HHmmss\",/\\d\\d\\d\\d\\d\\d/],[\"HHmm\",/\\d\\d\\d\\d/],[\"HH\",/\\d\\d/]],_t=/^\\/?Date\\((\\-?\\d+)/i;function vt(e){var t,n,r,i,a,o,s=e._i,l=dt.exec(s)||ht.exec(s);if(l){for(m(e).iso=!0,t=0,n=mt.length;t0&&m(e).unusedInput.push(o),s=s.slice(s.indexOf(n)+n.length),u+=n.length),W[a]?(n?m(e).empty=!1:m(e).unusedTokens.push(a),_e(a,n,e)):e._strict&&!n&&m(e).unusedTokens.push(a);m(e).charsLeftOver=l-u,s.length>0&&m(e).unusedInput.push(s),e._a[3]<=12&&!0===m(e).bigHour&&e._a[3]>0&&(m(e).bigHour=void 0),m(e).parsedDateParts=e._a.slice(0),m(e).meridiem=e._meridiem,e._a[3]=function(e,t,n){var r;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((r=e.isPM(n))&&t<12&&(t+=12),r||12!==t||(t=0),t):t}(e._locale,e._a[3],e._meridiem),ct(e),lt(e)}else bt(e);else vt(e)}function wt(e){var t=e._i,n=e._f;return e._locale=e._locale||st(e._l),null===t||void 0===n&&\"\"===t?_({nullInput:!0}):(\"string\"==typeof t&&(e._i=t=e._locale.preparse(t)),k(t)?new b(lt(t)):(u(t)?e._d=t:a(n)?function(e){var t,n,r,i,a;if(0===e._f.length)return m(e).invalidFormat=!0,void(e._d=new Date(NaN));for(i=0;ithis?this:e:_()}));function Tt(e,t){var n,r;if(1===t.length&&a(t[0])&&(t=t[0]),!t.length)return Mt();for(n=t[0],r=1;r=0?new Date(e+400,t,n)-126227808e5:new Date(e,t,n).valueOf()}function Xt(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-126227808e5:Date.UTC(e,t,n)}function en(e,t){U(0,[e,e.length],0,t)}function tn(e,t,n,r,i){var a;return null==e?He(this,r,i).year:(t>(a=Fe(e,r,i))&&(t=a),nn.call(this,e,t,n,r,i))}function nn(e,t,n,r,i){var a=Re(e,t,n,r,i),o=Pe(a.year,0,a.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}U(0,[\"gg\",2],0,(function(){return this.weekYear()%100})),U(0,[\"GG\",2],0,(function(){return this.isoWeekYear()%100})),en(\"gggg\",\"weekYear\"),en(\"ggggg\",\"weekYear\"),en(\"GGGG\",\"isoWeekYear\"),en(\"GGGGG\",\"isoWeekYear\"),A(\"weekYear\",\"gg\"),A(\"isoWeekYear\",\"GG\"),H(\"weekYear\",1),H(\"isoWeekYear\",1),ce(\"G\",ae),ce(\"g\",ae),ce(\"GG\",Q,$),ce(\"gg\",Q,$),ce(\"GGGG\",ne,K),ce(\"gggg\",ne,K),ce(\"GGGGG\",re,Z),ce(\"ggggg\",re,Z),pe([\"gggg\",\"ggggg\",\"GGGG\",\"GGGGG\"],(function(e,t,n,r){t[r.substr(0,2)]=C(e)})),pe([\"gg\",\"GG\"],(function(e,t,n,r){t[r]=i.parseTwoDigitYear(e)})),U(\"Q\",0,\"Qo\",\"quarter\"),A(\"quarter\",\"Q\"),H(\"quarter\",7),ce(\"Q\",G),me(\"Q\",(function(e,t){t[1]=3*(C(e)-1)})),U(\"D\",[\"DD\",2],\"Do\",\"date\"),A(\"date\",\"D\"),H(\"date\",9),ce(\"D\",Q),ce(\"DD\",Q,$),ce(\"Do\",(function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient})),me([\"D\",\"DD\"],2),me(\"Do\",(function(e,t){t[2]=C(e.match(Q)[0])}));var rn=ke(\"Date\",!0);U(\"DDD\",[\"DDDD\",3],\"DDDo\",\"dayOfYear\"),A(\"dayOfYear\",\"DDD\"),H(\"dayOfYear\",4),ce(\"DDD\",te),ce(\"DDDD\",J),me([\"DDD\",\"DDDD\"],(function(e,t,n){n._dayOfYear=C(e)})),U(\"m\",[\"mm\",2],0,\"minute\"),A(\"minute\",\"m\"),H(\"minute\",14),ce(\"m\",Q),ce(\"mm\",Q,$),me([\"m\",\"mm\"],4);var an=ke(\"Minutes\",!1);U(\"s\",[\"ss\",2],0,\"second\"),A(\"second\",\"s\"),H(\"second\",15),ce(\"s\",Q),ce(\"ss\",Q,$),me([\"s\",\"ss\"],5);var on,sn=ke(\"Seconds\",!1);for(U(\"S\",0,0,(function(){return~~(this.millisecond()/100)})),U(0,[\"SS\",2],0,(function(){return~~(this.millisecond()/10)})),U(0,[\"SSS\",3],0,\"millisecond\"),U(0,[\"SSSS\",4],0,(function(){return 10*this.millisecond()})),U(0,[\"SSSSS\",5],0,(function(){return 100*this.millisecond()})),U(0,[\"SSSSSS\",6],0,(function(){return 1e3*this.millisecond()})),U(0,[\"SSSSSSS\",7],0,(function(){return 1e4*this.millisecond()})),U(0,[\"SSSSSSSS\",8],0,(function(){return 1e5*this.millisecond()})),U(0,[\"SSSSSSSSS\",9],0,(function(){return 1e6*this.millisecond()})),A(\"millisecond\",\"ms\"),H(\"millisecond\",16),ce(\"S\",te,G),ce(\"SS\",te,$),ce(\"SSS\",te,J),on=\"SSSS\";on.length<=9;on+=\"S\")ce(on,ie);function ln(e,t){t[6]=C(1e3*(\"0.\"+e))}for(on=\"S\";on.length<=9;on+=\"S\")me(on,ln);var un=ke(\"Milliseconds\",!1);U(\"z\",0,0,\"zoneAbbr\"),U(\"zz\",0,0,\"zoneName\");var cn=b.prototype;function dn(e){return e}cn.add=Bt,cn.calendar=function(e,t){var n=e||Mt(),r=Pt(n,this).startOf(\"day\"),a=i.calendarFormat(this,r)||\"sameElse\",o=t&&(O(t[a])?t[a].call(this,n):t[a]);return this.format(o||this.localeData().calendar(a,this,Mt(n)))},cn.clone=function(){return new b(this)},cn.diff=function(e,t,n){var r,i,a;if(!this.isValid())return NaN;if(!(r=Pt(e,this)).isValid())return NaN;switch(i=6e4*(r.utcOffset()-this.utcOffset()),t=P(t)){case\"year\":a=Gt(this,r)/12;break;case\"month\":a=Gt(this,r);break;case\"quarter\":a=Gt(this,r)/3;break;case\"second\":a=(this-r)/1e3;break;case\"minute\":a=(this-r)/6e4;break;case\"hour\":a=(this-r)/36e5;break;case\"day\":a=(this-r-i)/864e5;break;case\"week\":a=(this-r-i)/6048e5;break;default:a=this-r}return n?a:w(a)},cn.endOf=function(e){var t;if(void 0===(e=P(e))||\"millisecond\"===e||!this.isValid())return this;var n=this._isUTC?Xt:Qt;switch(e){case\"year\":t=n(this.year()+1,0,1)-1;break;case\"quarter\":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case\"month\":t=n(this.year(),this.month()+1,1)-1;break;case\"week\":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case\"isoWeek\":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case\"day\":case\"date\":t=n(this.year(),this.month(),this.date()+1)-1;break;case\"hour\":t=this._d.valueOf(),t+=36e5-Zt(t+(this._isUTC?0:6e4*this.utcOffset()),36e5)-1;break;case\"minute\":t=this._d.valueOf(),t+=6e4-Zt(t,6e4)-1;break;case\"second\":t=this._d.valueOf(),t+=1e3-Zt(t,1e3)-1}return this._d.setTime(t),i.updateOffset(this,!0),this},cn.format=function(e){e||(e=this.isUtc()?i.defaultFormatUtc:i.defaultFormat);var t=B(this,e);return this.localeData().postformat(t)},cn.from=function(e,t){return this.isValid()&&(k(e)&&e.isValid()||Mt(e).isValid())?Nt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},cn.fromNow=function(e){return this.from(Mt(),e)},cn.to=function(e,t){return this.isValid()&&(k(e)&&e.isValid()||Mt(e).isValid())?Nt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},cn.toNow=function(e){return this.to(Mt(),e)},cn.get=function(e){return O(this[e=P(e)])?this[e]():this},cn.invalidAt=function(){return m(this).overflow},cn.isAfter=function(e,t){var n=k(e)?e:Mt(e);return!(!this.isValid()||!n.isValid())&&(\"millisecond\"===(t=P(t)||\"millisecond\")?this.valueOf()>n.valueOf():n.valueOf()9999?B(n,t?\"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ\"):O(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace(\"Z\",B(n,\"Z\")):B(n,t?\"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYY-MM-DD[T]HH:mm:ss.SSSZ\")},cn.inspect=function(){if(!this.isValid())return\"moment.invalid(/* \"+this._i+\" */)\";var e=\"moment\",t=\"\";this.isLocal()||(e=0===this.utcOffset()?\"moment.utc\":\"moment.parseZone\",t=\"Z\");var n=\"[\"+e+'(\"]',r=0<=this.year()&&this.year()<=9999?\"YYYY\":\"YYYYYY\";return this.format(n+r+\"-MM-DD[T]HH:mm:ss.SSS\"+t+'[\")]')},cn.toJSON=function(){return this.isValid()?this.toISOString():null},cn.toString=function(){return this.clone().locale(\"en\").format(\"ddd MMM DD YYYY HH:mm:ss [GMT]ZZ\")},cn.unix=function(){return Math.floor(this.valueOf()/1e3)},cn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},cn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},cn.year=be,cn.isLeapYear=function(){return ge(this.year())},cn.weekYear=function(e){return tn.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},cn.isoWeekYear=function(e){return tn.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)},cn.quarter=cn.quarters=function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},cn.month=Oe,cn.daysInMonth=function(){return Me(this.year(),this.month())},cn.week=cn.weeks=function(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),\"d\")},cn.isoWeek=cn.isoWeeks=function(e){var t=He(this,1,4).week;return null==e?t:this.add(7*(e-t),\"d\")},cn.weeksInYear=function(){var e=this.localeData()._week;return Fe(this.year(),e.dow,e.doy)},cn.isoWeeksInYear=function(){return Fe(this.year(),1,4)},cn.date=rn,cn.day=cn.days=function(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=function(e,t){return\"string\"!=typeof e?e:isNaN(e)?\"number\"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}(e,this.localeData()),this.add(e-t,\"d\")):t},cn.weekday=function(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,\"d\")},cn.isoWeekday=function(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=function(e,t){return\"string\"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7},cn.dayOfYear=function(e){var t=Math.round((this.clone().startOf(\"day\")-this.clone().startOf(\"year\"))/864e5)+1;return null==e?t:this.add(e-t,\"d\")},cn.hour=cn.hours=Xe,cn.minute=cn.minutes=an,cn.second=cn.seconds=sn,cn.millisecond=cn.milliseconds=un,cn.utcOffset=function(e,t,n){var r,a=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null!=e){if(\"string\"==typeof e){if(null===(e=At(se,e)))return this}else Math.abs(e)<16&&!n&&(e*=60);return!this._isUTC&&t&&(r=jt(this)),this._offset=e,this._isUTC=!0,null!=r&&this.add(r,\"m\"),a!==e&&(!t||this._changeInProgress?Ut(this,Nt(e-a,\"m\"),1,!1):this._changeInProgress||(this._changeInProgress=!0,i.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?a:jt(this)},cn.utc=function(e){return this.utcOffset(0,e)},cn.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(jt(this),\"m\")),this},cn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if(\"string\"==typeof this._i){var e=At(oe,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this},cn.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?Mt(e).utcOffset():0,(this.utcOffset()-e)%60==0)},cn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},cn.isLocal=function(){return!!this.isValid()&&!this._isUTC},cn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},cn.isUtc=Rt,cn.isUTC=Rt,cn.zoneAbbr=function(){return this._isUTC?\"UTC\":\"\"},cn.zoneName=function(){return this._isUTC?\"Coordinated Universal Time\":\"\"},cn.dates=L(\"dates accessor is deprecated. Use date instead.\",rn),cn.months=L(\"months accessor is deprecated. Use month instead\",Oe),cn.years=L(\"years accessor is deprecated. Use year instead\",be),cn.zone=L(\"moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/\",(function(e,t){return null!=e?(\"string\"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()})),cn.isDSTShifted=L(\"isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information\",(function(){if(!s(this._isDSTShifted))return this._isDSTShifted;var e={};if(g(e,this),(e=wt(e))._a){var t=e._isUTC?f(e._a):Mt(e._a);this._isDSTShifted=this.isValid()&&M(e._a,t.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}));var hn=E.prototype;function fn(e,t,n,r){var i=st(),a=f().set(r,t);return i[n](a,e)}function mn(e,t,n){if(l(e)&&(t=e,e=void 0),e=e||\"\",null!=t)return fn(e,t,n,\"month\");var r,i=[];for(r=0;r<12;r++)i[r]=fn(e,r,n,\"month\");return i}function pn(e,t,n,r){\"boolean\"==typeof e?(l(t)&&(n=t,t=void 0),t=t||\"\"):(n=t=e,e=!1,l(t)&&(n=t,t=void 0),t=t||\"\");var i,a=st(),o=e?a._week.dow:0;if(null!=n)return fn(t,(n+o)%7,r,\"day\");var s=[];for(i=0;i<7;i++)s[i]=fn(t,(i+o)%7,r,\"day\");return s}hn.calendar=function(e,t,n){var r=this._calendar[e]||this._calendar.sameElse;return O(r)?r.call(t,n):r},hn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.replace(/MMMM|MM|DD|dddd/g,(function(e){return e.slice(1)})),this._longDateFormat[e])},hn.invalidDate=function(){return this._invalidDate},hn.ordinal=function(e){return this._ordinal.replace(\"%d\",e)},hn.preparse=dn,hn.postformat=dn,hn.relativeTime=function(e,t,n,r){var i=this._relativeTime[n];return O(i)?i(e,t,n,r):i.replace(/%d/i,e)},hn.pastFuture=function(e,t){var n=this._relativeTime[e>0?\"future\":\"past\"];return O(n)?n(t):n.replace(/%s/i,t)},hn.set=function(e){var t,n;for(n in e)O(t=e[n])?this[n]=t:this[\"_\"+n]=t;this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+\"|\"+/\\d{1,2}/.source)},hn.months=function(e,t){return e?a(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||Se).test(t)?\"format\":\"standalone\"][e.month()]:a(this._months)?this._months:this._months.standalone},hn.monthsShort=function(e,t){return e?a(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[Se.test(t)?\"format\":\"standalone\"][e.month()]:a(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},hn.monthsParse=function(e,t,n){var r,i,a;if(this._monthsParseExact)return xe.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),r=0;r<12;r++){if(i=f([2e3,r]),n&&!this._longMonthsParse[r]&&(this._longMonthsParse[r]=new RegExp(\"^\"+this.months(i,\"\").replace(\".\",\"\")+\"$\",\"i\"),this._shortMonthsParse[r]=new RegExp(\"^\"+this.monthsShort(i,\"\").replace(\".\",\"\")+\"$\",\"i\")),n||this._monthsParse[r]||(a=\"^\"+this.months(i,\"\")+\"|^\"+this.monthsShort(i,\"\"),this._monthsParse[r]=new RegExp(a.replace(\".\",\"\"),\"i\")),n&&\"MMMM\"===t&&this._longMonthsParse[r].test(e))return r;if(n&&\"MMM\"===t&&this._shortMonthsParse[r].test(e))return r;if(!n&&this._monthsParse[r].test(e))return r}},hn.monthsRegex=function(e){return this._monthsParseExact?(d(this,\"_monthsRegex\")||Ie.call(this),e?this._monthsStrictRegex:this._monthsRegex):(d(this,\"_monthsRegex\")||(this._monthsRegex=Ee),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},hn.monthsShortRegex=function(e){return this._monthsParseExact?(d(this,\"_monthsRegex\")||Ie.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(d(this,\"_monthsShortRegex\")||(this._monthsShortRegex=Ye),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},hn.week=function(e){return He(e,this._week.dow,this._week.doy).week},hn.firstDayOfYear=function(){return this._week.doy},hn.firstDayOfWeek=function(){return this._week.dow},hn.weekdays=function(e,t){var n=a(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?\"format\":\"standalone\"];return!0===e?Ne(n,this._week.dow):e?n[e.day()]:n},hn.weekdaysMin=function(e){return!0===e?Ne(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin},hn.weekdaysShort=function(e){return!0===e?Ne(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort},hn.weekdaysParse=function(e,t,n){var r,i,a;if(this._weekdaysParseExact)return Ue.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++){if(i=f([2e3,1]).day(r),n&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp(\"^\"+this.weekdays(i,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._shortWeekdaysParse[r]=new RegExp(\"^\"+this.weekdaysShort(i,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._minWeekdaysParse[r]=new RegExp(\"^\"+this.weekdaysMin(i,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\")),this._weekdaysParse[r]||(a=\"^\"+this.weekdays(i,\"\")+\"|^\"+this.weekdaysShort(i,\"\")+\"|^\"+this.weekdaysMin(i,\"\"),this._weekdaysParse[r]=new RegExp(a.replace(\".\",\"\"),\"i\")),n&&\"dddd\"===t&&this._fullWeekdaysParse[r].test(e))return r;if(n&&\"ddd\"===t&&this._shortWeekdaysParse[r].test(e))return r;if(n&&\"dd\"===t&&this._minWeekdaysParse[r].test(e))return r;if(!n&&this._weekdaysParse[r].test(e))return r}},hn.weekdaysRegex=function(e){return this._weekdaysParseExact?(d(this,\"_weekdaysRegex\")||$e.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(d(this,\"_weekdaysRegex\")||(this._weekdaysRegex=Be),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},hn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(d(this,\"_weekdaysRegex\")||$e.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(d(this,\"_weekdaysShortRegex\")||(this._weekdaysShortRegex=qe),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},hn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(d(this,\"_weekdaysRegex\")||$e.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(d(this,\"_weekdaysMinRegex\")||(this._weekdaysMinRegex=Ge),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},hn.isPM=function(e){return\"p\"===(e+\"\").toLowerCase().charAt(0)},hn.meridiem=function(e,t,n){return e>11?n?\"pm\":\"PM\":n?\"am\":\"AM\"},at(\"en\",{dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===C(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}}),i.lang=L(\"moment.lang is deprecated. Use moment.locale instead.\",at),i.langData=L(\"moment.langData is deprecated. Use moment.localeData instead.\",st);var _n=Math.abs;function vn(e,t,n,r){var i=Nt(t,n);return e._milliseconds+=r*i._milliseconds,e._days+=r*i._days,e._months+=r*i._months,e._bubble()}function gn(e){return e<0?Math.floor(e):Math.ceil(e)}function yn(e){return 4800*e/146097}function bn(e){return 146097*e/4800}function kn(e){return function(){return this.as(e)}}var wn=kn(\"ms\"),Cn=kn(\"s\"),Mn=kn(\"m\"),Sn=kn(\"h\"),Ln=kn(\"d\"),Tn=kn(\"w\"),xn=kn(\"M\"),Dn=kn(\"Q\"),On=kn(\"y\");function Yn(e){return function(){return this.isValid()?this._data[e]:NaN}}var En=Yn(\"milliseconds\"),In=Yn(\"seconds\"),An=Yn(\"minutes\"),Pn=Yn(\"hours\"),jn=Yn(\"days\"),Rn=Yn(\"months\"),Hn=Yn(\"years\"),Fn=Math.round,Nn={ss:44,s:45,m:45,h:22,d:26,M:11};function zn(e,t,n,r,i){return i.relativeTime(t||1,!!n,e,r)}var Vn=Math.abs;function Wn(e){return(e>0)-(e<0)||+e}function Un(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n=Vn(this._milliseconds)/1e3,r=Vn(this._days),i=Vn(this._months);e=w(n/60),t=w(e/60),n%=60,e%=60;var a=w(i/12),o=i%=12,s=r,l=t,u=e,c=n?n.toFixed(3).replace(/\\.?0+$/,\"\"):\"\",d=this.asSeconds();if(!d)return\"P0D\";var h=d<0?\"-\":\"\",f=Wn(this._months)!==Wn(d)?\"-\":\"\",m=Wn(this._days)!==Wn(d)?\"-\":\"\",p=Wn(this._milliseconds)!==Wn(d)?\"-\":\"\";return h+\"P\"+(a?f+a+\"Y\":\"\")+(o?f+o+\"M\":\"\")+(s?m+s+\"D\":\"\")+(l||u||c?\"T\":\"\")+(l?p+l+\"H\":\"\")+(u?p+u+\"M\":\"\")+(c?p+c+\"S\":\"\")}var Bn=Dt.prototype;return Bn.isValid=function(){return this._isValid},Bn.abs=function(){var e=this._data;return this._milliseconds=_n(this._milliseconds),this._days=_n(this._days),this._months=_n(this._months),e.milliseconds=_n(e.milliseconds),e.seconds=_n(e.seconds),e.minutes=_n(e.minutes),e.hours=_n(e.hours),e.months=_n(e.months),e.years=_n(e.years),this},Bn.add=function(e,t){return vn(this,e,t,1)},Bn.subtract=function(e,t){return vn(this,e,t,-1)},Bn.as=function(e){if(!this.isValid())return NaN;var t,n,r=this._milliseconds;if(\"month\"===(e=P(e))||\"quarter\"===e||\"year\"===e)switch(n=this._months+yn(t=this._days+r/864e5),e){case\"month\":return n;case\"quarter\":return n/3;case\"year\":return n/12}else switch(t=this._days+Math.round(bn(this._months)),e){case\"week\":return t/7+r/6048e5;case\"day\":return t+r/864e5;case\"hour\":return 24*t+r/36e5;case\"minute\":return 1440*t+r/6e4;case\"second\":return 86400*t+r/1e3;case\"millisecond\":return Math.floor(864e5*t)+r;default:throw new Error(\"Unknown unit \"+e)}},Bn.asMilliseconds=wn,Bn.asSeconds=Cn,Bn.asMinutes=Mn,Bn.asHours=Sn,Bn.asDays=Ln,Bn.asWeeks=Tn,Bn.asMonths=xn,Bn.asQuarters=Dn,Bn.asYears=On,Bn.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*C(this._months/12):NaN},Bn._bubble=function(){var e,t,n,r,i,a=this._milliseconds,o=this._days,s=this._months,l=this._data;return a>=0&&o>=0&&s>=0||a<=0&&o<=0&&s<=0||(a+=864e5*gn(bn(s)+o),o=0,s=0),l.milliseconds=a%1e3,e=w(a/1e3),l.seconds=e%60,t=w(e/60),l.minutes=t%60,n=w(t/60),l.hours=n%24,o+=w(n/24),s+=i=w(yn(o)),o-=gn(bn(i)),r=w(s/12),s%=12,l.days=o,l.months=s,l.years=r,this},Bn.clone=function(){return Nt(this)},Bn.get=function(e){return e=P(e),this.isValid()?this[e+\"s\"]():NaN},Bn.milliseconds=En,Bn.seconds=In,Bn.minutes=An,Bn.hours=Pn,Bn.days=jn,Bn.weeks=function(){return w(this.days()/7)},Bn.months=Rn,Bn.years=Hn,Bn.humanize=function(e){if(!this.isValid())return this.localeData().invalidDate();var t=this.localeData(),n=function(e,t,n){var r=Nt(e).abs(),i=Fn(r.as(\"s\")),a=Fn(r.as(\"m\")),o=Fn(r.as(\"h\")),s=Fn(r.as(\"d\")),l=Fn(r.as(\"M\")),u=Fn(r.as(\"y\")),c=i<=Nn.ss&&[\"s\",i]||i0,c[4]=n,zn.apply(null,c)}(this,!e,t);return e&&(n=t.pastFuture(+this,n)),t.postformat(n)},Bn.toISOString=Un,Bn.toString=Un,Bn.toJSON=Un,Bn.locale=$t,Bn.localeData=Kt,Bn.toIsoString=L(\"toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)\",Un),Bn.lang=Jt,U(\"X\",0,0,\"unix\"),U(\"x\",0,0,\"valueOf\"),ce(\"x\",ae),ce(\"X\",/[+-]?\\d+(\\.\\d{1,3})?/),me(\"X\",(function(e,t,n){n._d=new Date(1e3*parseFloat(e,10))})),me(\"x\",(function(e,t,n){n._d=new Date(C(e))})),i.version=\"2.24.0\",t=Mt,i.fn=cn,i.min=function(){var e=[].slice.call(arguments,0);return Tt(\"isBefore\",e)},i.max=function(){var e=[].slice.call(arguments,0);return Tt(\"isAfter\",e)},i.now=function(){return Date.now?Date.now():+new Date},i.utc=f,i.unix=function(e){return Mt(1e3*e)},i.months=function(e,t){return mn(e,t,\"months\")},i.isDate=u,i.locale=at,i.invalid=_,i.duration=Nt,i.isMoment=k,i.weekdays=function(e,t,n){return pn(e,t,n,\"weekdays\")},i.parseZone=function(){return Mt.apply(null,arguments).parseZone()},i.localeData=st,i.isDuration=Ot,i.monthsShort=function(e,t){return mn(e,t,\"monthsShort\")},i.weekdaysMin=function(e,t,n){return pn(e,t,n,\"weekdaysMin\")},i.defineLocale=ot,i.updateLocale=function(e,t){if(null!=t){var n,r,i=et;null!=(r=it(e))&&(i=r._config),(n=new E(t=Y(i,t))).parentLocale=tt[e],tt[e]=n,at(e)}else null!=tt[e]&&(null!=tt[e].parentLocale?tt[e]=tt[e].parentLocale:null!=tt[e]&&delete tt[e]);return tt[e]},i.locales=function(){return T(tt)},i.weekdaysShort=function(e,t,n){return pn(e,t,n,\"weekdaysShort\")},i.normalizeUnits=P,i.relativeTimeRounding=function(e){return void 0===e?Fn:\"function\"==typeof e&&(Fn=e,!0)},i.relativeTimeThreshold=function(e,t){return void 0!==Nn[e]&&(void 0===t?Nn[e]:(Nn[e]=t,\"s\"===e&&(Nn.ss=t-1),!0))},i.calendarFormat=function(e,t){var n=e.diff(t,\"days\",!0);return n<-6?\"sameElse\":n<-1?\"lastWeek\":n<0?\"lastDay\":n<1?\"sameDay\":n<2?\"nextDay\":n<7?\"nextWeek\":\"sameElse\"},i.prototype=cn,i.HTML5_FMT={DATETIME_LOCAL:\"YYYY-MM-DDTHH:mm\",DATETIME_LOCAL_SECONDS:\"YYYY-MM-DDTHH:mm:ss\",DATETIME_LOCAL_MS:\"YYYY-MM-DDTHH:mm:ss.SSS\",DATE:\"YYYY-MM-DD\",TIME:\"HH:mm\",TIME_SECONDS:\"HH:mm:ss\",TIME_MS:\"HH:mm:ss.SSS\",WEEK:\"GGGG-[W]WW\",MONTH:\"YYYY-MM\"},i}()}).call(this,n(\"YuTi\")(e))},x6pH:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"he\",{months:\"\\u05d9\\u05e0\\u05d5\\u05d0\\u05e8_\\u05e4\\u05d1\\u05e8\\u05d5\\u05d0\\u05e8_\\u05de\\u05e8\\u05e5_\\u05d0\\u05e4\\u05e8\\u05d9\\u05dc_\\u05de\\u05d0\\u05d9_\\u05d9\\u05d5\\u05e0\\u05d9_\\u05d9\\u05d5\\u05dc\\u05d9_\\u05d0\\u05d5\\u05d2\\u05d5\\u05e1\\u05d8_\\u05e1\\u05e4\\u05d8\\u05de\\u05d1\\u05e8_\\u05d0\\u05d5\\u05e7\\u05d8\\u05d5\\u05d1\\u05e8_\\u05e0\\u05d5\\u05d1\\u05de\\u05d1\\u05e8_\\u05d3\\u05e6\\u05de\\u05d1\\u05e8\".split(\"_\"),monthsShort:\"\\u05d9\\u05e0\\u05d5\\u05f3_\\u05e4\\u05d1\\u05e8\\u05f3_\\u05de\\u05e8\\u05e5_\\u05d0\\u05e4\\u05e8\\u05f3_\\u05de\\u05d0\\u05d9_\\u05d9\\u05d5\\u05e0\\u05d9_\\u05d9\\u05d5\\u05dc\\u05d9_\\u05d0\\u05d5\\u05d2\\u05f3_\\u05e1\\u05e4\\u05d8\\u05f3_\\u05d0\\u05d5\\u05e7\\u05f3_\\u05e0\\u05d5\\u05d1\\u05f3_\\u05d3\\u05e6\\u05de\\u05f3\".split(\"_\"),weekdays:\"\\u05e8\\u05d0\\u05e9\\u05d5\\u05df_\\u05e9\\u05e0\\u05d9_\\u05e9\\u05dc\\u05d9\\u05e9\\u05d9_\\u05e8\\u05d1\\u05d9\\u05e2\\u05d9_\\u05d7\\u05de\\u05d9\\u05e9\\u05d9_\\u05e9\\u05d9\\u05e9\\u05d9_\\u05e9\\u05d1\\u05ea\".split(\"_\"),weekdaysShort:\"\\u05d0\\u05f3_\\u05d1\\u05f3_\\u05d2\\u05f3_\\u05d3\\u05f3_\\u05d4\\u05f3_\\u05d5\\u05f3_\\u05e9\\u05f3\".split(\"_\"),weekdaysMin:\"\\u05d0_\\u05d1_\\u05d2_\\u05d3_\\u05d4_\\u05d5_\\u05e9\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [\\u05d1]MMMM YYYY\",LLL:\"D [\\u05d1]MMMM YYYY HH:mm\",LLLL:\"dddd, D [\\u05d1]MMMM YYYY HH:mm\",l:\"D/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u05d4\\u05d9\\u05d5\\u05dd \\u05d1\\u05be]LT\",nextDay:\"[\\u05de\\u05d7\\u05e8 \\u05d1\\u05be]LT\",nextWeek:\"dddd [\\u05d1\\u05e9\\u05e2\\u05d4] LT\",lastDay:\"[\\u05d0\\u05ea\\u05de\\u05d5\\u05dc \\u05d1\\u05be]LT\",lastWeek:\"[\\u05d1\\u05d9\\u05d5\\u05dd] dddd [\\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05df \\u05d1\\u05e9\\u05e2\\u05d4] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u05d1\\u05e2\\u05d5\\u05d3 %s\",past:\"\\u05dc\\u05e4\\u05e0\\u05d9 %s\",s:\"\\u05de\\u05e1\\u05e4\\u05e8 \\u05e9\\u05e0\\u05d9\\u05d5\\u05ea\",ss:\"%d \\u05e9\\u05e0\\u05d9\\u05d5\\u05ea\",m:\"\\u05d3\\u05e7\\u05d4\",mm:\"%d \\u05d3\\u05e7\\u05d5\\u05ea\",h:\"\\u05e9\\u05e2\\u05d4\",hh:function(e){return 2===e?\"\\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd\":e+\" \\u05e9\\u05e2\\u05d5\\u05ea\"},d:\"\\u05d9\\u05d5\\u05dd\",dd:function(e){return 2===e?\"\\u05d9\\u05d5\\u05de\\u05d9\\u05d9\\u05dd\":e+\" \\u05d9\\u05de\\u05d9\\u05dd\"},M:\"\\u05d7\\u05d5\\u05d3\\u05e9\",MM:function(e){return 2===e?\"\\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05d9\\u05dd\":e+\" \\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05dd\"},y:\"\\u05e9\\u05e0\\u05d4\",yy:function(e){return 2===e?\"\\u05e9\\u05e0\\u05ea\\u05d9\\u05d9\\u05dd\":e%10==0&&10!==e?e+\" \\u05e9\\u05e0\\u05d4\":e+\" \\u05e9\\u05e0\\u05d9\\u05dd\"}},meridiemParse:/\\u05d0\\u05d7\\u05d4\"\\u05e6|\\u05dc\\u05e4\\u05e0\\u05d4\"\\u05e6|\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05dc\\u05e4\\u05e0\\u05d5\\u05ea \\u05d1\\u05d5\\u05e7\\u05e8|\\u05d1\\u05d1\\u05d5\\u05e7\\u05e8|\\u05d1\\u05e2\\u05e8\\u05d1/i,isPM:function(e){return/^(\\u05d0\\u05d7\\u05d4\"\\u05e6|\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05d1\\u05e2\\u05e8\\u05d1)$/.test(e)},meridiem:function(e,t,n){return e<5?\"\\u05dc\\u05e4\\u05e0\\u05d5\\u05ea \\u05d1\\u05d5\\u05e7\\u05e8\":e<10?\"\\u05d1\\u05d1\\u05d5\\u05e7\\u05e8\":e<12?n?'\\u05dc\\u05e4\\u05e0\\u05d4\"\\u05e6':\"\\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd\":e<18?n?'\\u05d0\\u05d7\\u05d4\"\\u05e6':\"\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd\":\"\\u05d1\\u05e2\\u05e8\\u05d1\"}})}(n(\"wd/R\"))},yPMs:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sq\",{months:\"Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_N\\xebntor_Dhjetor\".split(\"_\"),monthsShort:\"Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_N\\xebn_Dhj\".split(\"_\"),weekdays:\"E Diel_E H\\xebn\\xeb_E Mart\\xeb_E M\\xebrkur\\xeb_E Enjte_E Premte_E Shtun\\xeb\".split(\"_\"),weekdaysShort:\"Die_H\\xebn_Mar_M\\xebr_Enj_Pre_Sht\".split(\"_\"),weekdaysMin:\"D_H_Ma_M\\xeb_E_P_Sh\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/PD|MD/,isPM:function(e){return\"M\"===e.charAt(0)},meridiem:function(e,t,n){return e<12?\"PD\":\"MD\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Sot n\\xeb] LT\",nextDay:\"[Nes\\xebr n\\xeb] LT\",nextWeek:\"dddd [n\\xeb] LT\",lastDay:\"[Dje n\\xeb] LT\",lastWeek:\"dddd [e kaluar n\\xeb] LT\",sameElse:\"L\"},relativeTime:{future:\"n\\xeb %s\",past:\"%s m\\xeb par\\xeb\",s:\"disa sekonda\",ss:\"%d sekonda\",m:\"nj\\xeb minut\\xeb\",mm:\"%d minuta\",h:\"nj\\xeb or\\xeb\",hh:\"%d or\\xeb\",d:\"nj\\xeb dit\\xeb\",dd:\"%d dit\\xeb\",M:\"nj\\xeb muaj\",MM:\"%d muaj\",y:\"nj\\xeb vit\",yy:\"%d vite\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},z1FC:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={s:[\"viensas secunds\",\"'iensas secunds\"],ss:[e+\" secunds\",e+\" secunds\"],m:[\"'n m\\xedut\",\"'iens m\\xedut\"],mm:[e+\" m\\xeduts\",e+\" m\\xeduts\"],h:[\"'n \\xfeora\",\"'iensa \\xfeora\"],hh:[e+\" \\xfeoras\",e+\" \\xfeoras\"],d:[\"'n ziua\",\"'iensa ziua\"],dd:[e+\" ziuas\",e+\" ziuas\"],M:[\"'n mes\",\"'iens mes\"],MM:[e+\" mesen\",e+\" mesen\"],y:[\"'n ar\",\"'iens ar\"],yy:[e+\" ars\",e+\" ars\"]};return r||t?i[n][0]:i[n][1]}e.defineLocale(\"tzl\",{months:\"Januar_Fevraglh_Mar\\xe7_Avr\\xefu_Mai_G\\xfcn_Julia_Guscht_Setemvar_Listop\\xe4ts_Noemvar_Zecemvar\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Avr_Mai_G\\xfcn_Jul_Gus_Set_Lis_Noe_Zec\".split(\"_\"),weekdays:\"S\\xfaladi_L\\xfane\\xe7i_Maitzi_M\\xe1rcuri_Xh\\xfaadi_Vi\\xe9ner\\xe7i_S\\xe1turi\".split(\"_\"),weekdaysShort:\"S\\xfal_L\\xfan_Mai_M\\xe1r_Xh\\xfa_Vi\\xe9_S\\xe1t\".split(\"_\"),weekdaysMin:\"S\\xfa_L\\xfa_Ma_M\\xe1_Xh_Vi_S\\xe1\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM [dallas] YYYY\",LLL:\"D. MMMM [dallas] YYYY HH.mm\",LLLL:\"dddd, [li] D. MMMM [dallas] YYYY HH.mm\"},meridiemParse:/d\\'o|d\\'a/i,isPM:function(e){return\"d'o\"===e.toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"d'o\":\"D'O\":n?\"d'a\":\"D'A\"},calendar:{sameDay:\"[oxhi \\xe0] LT\",nextDay:\"[dem\\xe0 \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[ieiri \\xe0] LT\",lastWeek:\"[s\\xfcr el] dddd [lasteu \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"osprei %s\",past:\"ja%s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},z3Vd:function(e,t,n){!function(e){\"use strict\";var t=\"pagh_wa\\u2019_cha\\u2019_wej_loS_vagh_jav_Soch_chorgh_Hut\".split(\"_\");function n(e,n,r,i){var a=function(e){var n=Math.floor(e%1e3/100),r=Math.floor(e%100/10),i=e%10,a=\"\";return n>0&&(a+=t[n]+\"vatlh\"),r>0&&(a+=(\"\"!==a?\" \":\"\")+t[r]+\"maH\"),i>0&&(a+=(\"\"!==a?\" \":\"\")+t[i]),\"\"===a?\"pagh\":a}(e);switch(r){case\"ss\":return a+\" lup\";case\"mm\":return a+\" tup\";case\"hh\":return a+\" rep\";case\"dd\":return a+\" jaj\";case\"MM\":return a+\" jar\";case\"yy\":return a+\" DIS\"}}e.defineLocale(\"tlh\",{months:\"tera\\u2019 jar wa\\u2019_tera\\u2019 jar cha\\u2019_tera\\u2019 jar wej_tera\\u2019 jar loS_tera\\u2019 jar vagh_tera\\u2019 jar jav_tera\\u2019 jar Soch_tera\\u2019 jar chorgh_tera\\u2019 jar Hut_tera\\u2019 jar wa\\u2019maH_tera\\u2019 jar wa\\u2019maH wa\\u2019_tera\\u2019 jar wa\\u2019maH cha\\u2019\".split(\"_\"),monthsShort:\"jar wa\\u2019_jar cha\\u2019_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa\\u2019maH_jar wa\\u2019maH wa\\u2019_jar wa\\u2019maH cha\\u2019\".split(\"_\"),monthsParseExact:!0,weekdays:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysShort:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysMin:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[DaHjaj] LT\",nextDay:\"[wa\\u2019leS] LT\",nextWeek:\"LLL\",lastDay:\"[wa\\u2019Hu\\u2019] LT\",lastWeek:\"LLL\",sameElse:\"L\"},relativeTime:{future:function(e){var t=e;return-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"leS\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"waQ\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"nem\":t+\" pIq\"},past:function(e){var t=e;return-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"Hu\\u2019\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"wen\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"ben\":t+\" ret\"},s:\"puS lup\",ss:n,m:\"wa\\u2019 tup\",mm:n,h:\"wa\\u2019 rep\",hh:n,d:\"wa\\u2019 jaj\",dd:n,M:\"wa\\u2019 jar\",MM:n,y:\"wa\\u2019 DIS\",yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},zUnb:function(e,t,n){\"use strict\";function r(e){return\"function\"==typeof e}n.r(t);var i=!1,a={Promise:void 0,set useDeprecatedSynchronousErrorHandling(e){if(e){var t=new Error;console.warn(\"DEPRECATED! RxJS was set to use deprecated synchronous error handling behavior by code at: \\n\"+t.stack)}else i&&console.log(\"RxJS: Back to a better error behavior. Thank you. <3\");i=e},get useDeprecatedSynchronousErrorHandling(){return i}};function o(e){setTimeout((function(){throw e}),0)}var s={closed:!0,next:function(e){},error:function(e){if(a.useDeprecatedSynchronousErrorHandling)throw e;o(e)},complete:function(){}},l=Array.isArray||function(e){return e&&\"number\"==typeof e.length};function u(e){return null!==e&&\"object\"==typeof e}var c,d=function(){function e(e){return Error.call(this),this.message=e?\"\".concat(e.length,\" errors occurred during unsubscription:\\n\").concat(e.map((function(e,t){return\"\".concat(t+1,\") \").concat(e.toString())})).join(\"\\n \")):\"\",this.name=\"UnsubscriptionError\",this.errors=e,this}return e.prototype=Object.create(Error.prototype),e}(),h=((c=function(){function e(t){_classCallCheck(this,e),this.closed=!1,this._parentOrParents=null,this._subscriptions=null,t&&(this._unsubscribe=t)}return _createClass(e,[{key:\"unsubscribe\",value:function(){var t;if(!this.closed){var n=this._parentOrParents,i=this._unsubscribe,a=this._subscriptions;if(this.closed=!0,this._parentOrParents=null,this._subscriptions=null,n instanceof e)n.remove(this);else if(null!==n)for(var o=0;o4&&void 0!==arguments[4]?arguments[4]:new Y(e,n,r);if(!i.closed)return t instanceof w?t.subscribe(i):j(t)(i)}var H=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"notifyNext\",value:function(e,t,n,r,i){this.destination.next(t)}},{key:\"notifyError\",value:function(e,t){this.destination.error(e)}},{key:\"notifyComplete\",value:function(e){this.destination.complete()}}]),n}(p);function F(e,t){return function(n){if(\"function\"!=typeof e)throw new TypeError(\"argument is not a function. Are you looking for `mapTo()`?\");return n.lift(new N(e,t))}}var N=function(){function e(t,n){_classCallCheck(this,e),this.project=t,this.thisArg=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new z(e,this.project,this.thisArg))}}]),e}(),z=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).project=r,a.count=0,a.thisArg=i||_assertThisInitialized(a),a}return _createClass(n,[{key:\"_next\",value:function(e){var t;try{t=this.project.call(this.thisArg,e,this.count++)}catch(n){return void this.destination.error(n)}this.destination.next(t)}}]),n}(p);function V(e,t){return new w((function(n){var r=new h,i=0;return r.add(t.schedule((function(){i!==e.length?(n.next(e[i++]),n.closed||r.add(this.schedule())):n.complete()}))),r}))}function W(e,t){return t?function(e,t){if(null!=e){if(function(e){return e&&\"function\"==typeof e[v]}(e))return function(e,t){return new w((function(n){var r=new h;return r.add(t.schedule((function(){var i=e[v]();r.add(i.subscribe({next:function(e){r.add(t.schedule((function(){return n.next(e)})))},error:function(e){r.add(t.schedule((function(){return n.error(e)})))},complete:function(){r.add(t.schedule((function(){return n.complete()})))}}))}))),r}))}(e,t);if(P(e))return function(e,t){return new w((function(n){var r=new h;return r.add(t.schedule((function(){return e.then((function(e){r.add(t.schedule((function(){n.next(e),r.add(t.schedule((function(){return n.complete()})))})))}),(function(e){r.add(t.schedule((function(){return n.error(e)})))}))}))),r}))}(e,t);if(A(e))return V(e,t);if(function(e){return e&&\"function\"==typeof e[I]}(e)||\"string\"==typeof e)return function(e,t){if(!e)throw new Error(\"Iterable cannot be null\");return new w((function(n){var r,i=new h;return i.add((function(){r&&\"function\"==typeof r.return&&r.return()})),i.add(t.schedule((function(){r=e[I](),i.add(t.schedule((function(){if(!n.closed){var e,t;try{var i=r.next();e=i.value,t=i.done}catch(a){return void n.error(a)}t?n.complete():(n.next(e),this.schedule())}})))}))),i}))}(e,t)}throw new TypeError((null!==e&&typeof e||e)+\" is not observable\")}(e,t):e instanceof w?e:new w(j(e))}function U(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Number.POSITIVE_INFINITY;return\"function\"==typeof t?function(r){return r.pipe(U((function(n,r){return W(e(n,r)).pipe(F((function(e,i){return t(n,e,r,i)})))}),n))}:(\"number\"==typeof t&&(n=t),function(t){return t.lift(new B(e,n))})}var B=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.POSITIVE_INFINITY;_classCallCheck(this,e),this.project=t,this.concurrent=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new q(e,this.project,this.concurrent))}}]),e}(),q=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Number.POSITIVE_INFINITY;return _classCallCheck(this,n),(i=t.call(this,e)).project=r,i.concurrent=a,i.hasCompleted=!1,i.buffer=[],i.active=0,i.index=0,i}return _createClass(n,[{key:\"_next\",value:function(e){this.active0?this._next(t.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()}}]),n}(H);function G(e){return e}function $(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Number.POSITIVE_INFINITY;return U(G,e)}function J(e,t){return t?V(e,t):new w(E(e))}function K(){for(var e=arguments.length,t=new Array(e),n=0;n1&&\"number\"==typeof t[t.length-1]&&(r=t.pop())):\"number\"==typeof a&&(r=t.pop()),null===i&&1===t.length&&t[0]instanceof w?t[0]:$(r)(J(t,i))}function Z(){return function(e){return e.lift(new X(e))}}var Q,X=function(){function e(t){_classCallCheck(this,e),this.connectable=t}return _createClass(e,[{key:\"call\",value:function(e,t){var n=this.connectable;n._refCount++;var r=new ee(e,n),i=t.subscribe(r);return r.closed||(r.connection=n.connect()),i}}]),e}(),ee=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).connectable=r,i}return _createClass(n,[{key:\"_unsubscribe\",value:function(){var e=this.connectable;if(e){this.connectable=null;var t=e._refCount;if(t<=0)this.connection=null;else if(e._refCount=t-1,t>1)this.connection=null;else{var n=this.connection,r=e._connection;this.connection=null,!r||n&&r!==n||r.unsubscribe()}}else this.connection=null}}]),n}(p),te={operator:{value:null},_refCount:{value:0,writable:!0},_subject:{value:null,writable:!0},_connection:{value:null,writable:!0},_subscribe:{value:(Q=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this)).source=e,i.subjectFactory=r,i._refCount=0,i._isComplete=!1,i}return _createClass(n,[{key:\"_subscribe\",value:function(e){return this.getSubject().subscribe(e)}},{key:\"getSubject\",value:function(){var e=this._subject;return e&&!e.isStopped||(this._subject=this.subjectFactory()),this._subject}},{key:\"connect\",value:function(){var e=this._connection;return e||(this._isComplete=!1,(e=this._connection=new h).add(this.source.subscribe(new ne(this.getSubject(),this))),e.closed&&(this._connection=null,e=h.EMPTY)),e}},{key:\"refCount\",value:function(){return Z()(this)}}]),n}(w).prototype)._subscribe},_isComplete:{value:Q._isComplete,writable:!0},getSubject:{value:Q.getSubject},connect:{value:Q.connect},refCount:{value:Q.refCount}},ne=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).connectable=r,i}return _createClass(n,[{key:\"_error\",value:function(e){this._unsubscribe(),_get(_getPrototypeOf(n.prototype),\"_error\",this).call(this,e)}},{key:\"_complete\",value:function(){this.connectable._isComplete=!0,this._unsubscribe(),_get(_getPrototypeOf(n.prototype),\"_complete\",this).call(this)}},{key:\"_unsubscribe\",value:function(){var e=this.connectable;if(e){this.connectable=null;var t=e._connection;e._refCount=0,e._subject=null,e._connection=null,t&&t.unsubscribe()}}}]),n}(T);function re(e,t){return function(n){var r;if(r=\"function\"==typeof e?e:function(){return e},\"function\"==typeof t)return n.lift(new ie(r,t));var i=Object.create(n,te);return i.source=n,i.subjectFactory=r,i}}var ie=function(){function e(t,n){_classCallCheck(this,e),this.subjectFactory=t,this.selector=n}return _createClass(e,[{key:\"call\",value:function(e,t){var n=this.selector,r=this.subjectFactory(),i=n(r).subscribe(e);return i.add(t.subscribe(r)),i}}]),e}();function ae(){return new x}function oe(){return function(e){return Z()(re(ae)(e))}}function se(e){return{toString:e}.toString()}function le(e,t,n){return se((function(){var r=function(e){return function(){if(e){var t=e.apply(void 0,arguments);for(var n in t)this[n]=t[n]}}}(t);function i(){for(var e=arguments.length,t=new Array(e),n=0;n1&&void 0!==arguments[1]?arguments[1]:fe.Default;if(void 0===Ke)throw new Error(\"inject() must be called from an injection context\");return null===Ke?nt(e,void 0,t):Ke.get(e,t&fe.Optional?null:void 0,t)}function et(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:fe.Default;return(Ee||Xe)(Oe(e),t)}var tt=et;function nt(e,t,n){var r=ge(e);if(r&&\"root\"==r.providedIn)return void 0===r.value?r.value=r.factory():r.value;if(n&fe.Optional)return null;if(void 0!==t)return t;throw new Error(\"Injector: NOT_FOUND [\".concat(Le(e),\"]\"))}function rt(e){for(var t=[],n=0;n1&&void 0!==arguments[1]?arguments[1]:Ge;if(t===Ge){var n=new Error(\"NullInjectorError: No provider for \".concat(Le(e),\"!\"));throw n.name=\"NullInjectorError\",n}return t}}]),e}(),at=function e(){_classCallCheck(this,e)},ot=function e(){_classCallCheck(this,e)};function st(e,t){for(var n=0;n=e.length?e.push(n):e.splice(t,0,n)}function ct(e,t){return t>=e.length-1?e.pop():e.splice(t,1)[0]}function dt(e,t){for(var n=[],r=0;r=0?e[1|r]=n:function(e,t,n,r){var i=e.length;if(i==t)e.push(n,r);else if(1===i)e.push(r,e[0]),e[0]=n;else{for(i--,e.push(e[i-1],e[i]);i>t;)e[i]=e[i-2],i--;e[t]=n,e[t+1]=r}}(e,r=~r,t,n),r}function ft(e,t){var n=mt(e,t);if(n>=0)return e[1|n]}function mt(e,t){return function(e,t,n){for(var r=0,i=e.length>>1;i!==r;){var a=r+(i-r>>1),o=e[a<<1];if(t===o)return a<<1;o>t?i=a:r=a+1}return~(i<<1)}(e,t)}var pt=function(){var e={OnPush:0,Default:1};return e[e.OnPush]=\"OnPush\",e[e.Default]=\"Default\",e}(),_t=function(){var e={Emulated:0,Native:1,None:2,ShadowDom:3};return e[e.Emulated]=\"Emulated\",e[e.Native]=\"Native\",e[e.None]=\"None\",e[e.ShadowDom]=\"ShadowDom\",e}(),vt={},gt=[],yt=0;function bt(e){return se((function(){var t=e.type,n=t.prototype,r={},i={type:t,providersResolver:null,decls:e.decls,vars:e.vars,factory:null,template:e.template||null,consts:e.consts||null,ngContentSelectors:e.ngContentSelectors,hostBindings:e.hostBindings||null,hostVars:e.hostVars||0,hostAttrs:e.hostAttrs||null,contentQueries:e.contentQueries||null,declaredInputs:r,inputs:null,outputs:null,exportAs:e.exportAs||null,onChanges:null,onInit:n.ngOnInit||null,doCheck:n.ngDoCheck||null,afterContentInit:n.ngAfterContentInit||null,afterContentChecked:n.ngAfterContentChecked||null,afterViewInit:n.ngAfterViewInit||null,afterViewChecked:n.ngAfterViewChecked||null,onDestroy:n.ngOnDestroy||null,onPush:e.changeDetection===pt.OnPush,directiveDefs:null,pipeDefs:null,selectors:e.selectors||gt,viewQuery:e.viewQuery||null,features:e.features||null,data:e.data||{},encapsulation:e.encapsulation||_t.Emulated,id:\"c\",styles:e.styles||gt,_:null,setInput:null,schemas:e.schemas||null,tView:null},a=e.directives,o=e.features,s=e.pipes;return i.id+=yt++,i.inputs=St(e.inputs,r),i.outputs=St(e.outputs),o&&o.forEach((function(e){return e(i)})),i.directiveDefs=a?function(){return(\"function\"==typeof a?a():a).map(kt)}:null,i.pipeDefs=s?function(){return(\"function\"==typeof s?s():s).map(wt)}:null,i}))}function kt(e){return Tt(e)||function(e){return e[Fe]||null}(e)}function wt(e){return function(e){return e[Ne]||null}(e)}var Ct={};function Mt(e){var t={type:e.type,bootstrap:e.bootstrap||gt,declarations:e.declarations||gt,imports:e.imports||gt,exports:e.exports||gt,transitiveCompileScopes:null,schemas:e.schemas||null,id:e.id||null};return null!=e.id&&se((function(){Ct[e.id]=e.type})),t}function St(e,t){if(null==e)return vt;var n={};for(var r in e)if(e.hasOwnProperty(r)){var i=e[r],a=i;Array.isArray(i)&&(a=i[1],i=i[0]),n[i]=r,t&&(t[i]=a)}return n}var Lt=bt;function Tt(e){return e[He]||null}function xt(e,t){return e.hasOwnProperty(We)?e[We]:null}function Dt(e,t){var n=e[ze]||null;if(!n&&!0===t)throw new Error(\"Type \".concat(Le(e),\" does not have '\\u0275mod' property.\"));return n}function Ot(e){return Array.isArray(e)&&\"object\"==typeof e[1]}function Yt(e){return Array.isArray(e)&&!0===e[1]}function Et(e){return 0!=(8&e.flags)}function It(e){return 2==(2&e.flags)}function At(e){return 1==(1&e.flags)}function Pt(e){return null!==e.template}function jt(e){return 0!=(512&e[2])}var Rt=void 0;function Ht(){return void 0!==Rt?Rt:\"undefined\"!=typeof document?document:void 0}function Ft(e){return!!e.listen}var Nt={createRenderer:function(e,t){return Ht()}};function zt(e){for(;Array.isArray(e);)e=e[0];return e}function Vt(e,t){return zt(t[e+19])}function Wt(e,t){return zt(t[e.index])}function Ut(e,t){return e.data[t+19]}function Bt(e,t){return e[t+19]}function qt(e,t){var n=t[e];return Ot(n)?n:n[0]}function Gt(e){var t=function(e){return e.__ngContext__||null}(e);return t?Array.isArray(t)?t:t.lView:null}function $t(e){return 4==(4&e[2])}function Jt(e){return 128==(128&e[2])}function Kt(e,t){return null===e||null==t?null:e[t]}function Zt(e){e[18]=0}var Qt={lFrame:gn(null),bindingsEnabled:!0,checkNoChangesMode:!1};function Xt(){return Qt.bindingsEnabled}function en(){return Qt.lFrame.lView}function tn(){return Qt.lFrame.tView}function nn(e){Qt.lFrame.contextLView=e}function rn(){return Qt.lFrame.previousOrParentTNode}function an(e,t){Qt.lFrame.previousOrParentTNode=e,Qt.lFrame.isParent=t}function on(){return Qt.lFrame.isParent}function sn(){Qt.lFrame.isParent=!1}function ln(){return Qt.checkNoChangesMode}function un(e){Qt.checkNoChangesMode=e}function cn(){return Qt.lFrame.bindingIndex++}function dn(e){var t=Qt.lFrame,n=t.bindingIndex;return t.bindingIndex=t.bindingIndex+e,n}function hn(e,t){var n=Qt.lFrame;n.bindingIndex=n.bindingRootIndex=e,n.currentDirectiveIndex=t}function fn(){return Qt.lFrame.currentQueryIndex}function mn(e){Qt.lFrame.currentQueryIndex=e}function pn(e,t){var n=vn();Qt.lFrame=n,n.previousOrParentTNode=t,n.lView=e}function _n(e,t){var n=vn(),r=e[1];Qt.lFrame=n,n.previousOrParentTNode=t,n.lView=e,n.tView=r,n.contextLView=e,n.bindingIndex=r.bindingStartIndex}function vn(){var e=Qt.lFrame,t=null===e?null:e.child;return null===t?gn(e):t}function gn(e){var t={previousOrParentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:0,contextLView:null,elementDepthCount:0,currentNamespace:null,currentSanitizer:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:e,child:null};return null!==e&&(e.child=t),t}function yn(){var e=Qt.lFrame;return Qt.lFrame=e.parent,e.previousOrParentTNode=null,e.lView=null,e}var bn=yn;function kn(){var e=yn();e.isParent=!0,e.tView=null,e.selectedIndex=0,e.contextLView=null,e.elementDepthCount=0,e.currentDirectiveIndex=-1,e.currentNamespace=null,e.currentSanitizer=null,e.bindingRootIndex=-1,e.bindingIndex=-1,e.currentQueryIndex=0}function wn(){return Qt.lFrame.selectedIndex}function Cn(e){Qt.lFrame.selectedIndex=e}function Mn(){var e=Qt.lFrame;return Ut(e.tView,e.selectedIndex)}function Sn(){Qt.lFrame.currentNamespace=\"http://www.w3.org/2000/svg\"}function Ln(){Qt.lFrame.currentNamespace=null}function Tn(e,t){for(var n=t.directiveStart,r=t.directiveEnd;n=r)break}else t[o]<0&&(e[18]+=65536),(a>10>16&&(3&e[2])===t&&(e[2]+=1024,a.call(o)):a.call(o)}var In=function e(t,n,r){_classCallCheck(this,e),this.factory=t,this.resolving=!1,this.canSeeViewProviders=n,this.injectImpl=r};function An(e,t,n){for(var r=Ft(e),i=0;it){o=a-1;break}}}for(;a>16}function Vn(e,t){for(var n=zn(e),r=t;n>0;)r=r[15],n--;return r}function Wn(e){return\"string\"==typeof e?e:null==e?\"\":\"\"+e}function Un(e){return\"function\"==typeof e?e.name||e.toString():\"object\"==typeof e&&null!=e&&\"function\"==typeof e.type?e.type.name||e.type.toString():Wn(e)}var Bn=(\"undefined\"!=typeof requestAnimationFrame&&requestAnimationFrame||setTimeout).bind(Re);function qn(e){return{name:\"window\",target:e.ownerDocument.defaultView}}function Gn(e){return e instanceof Function?e():e}var $n=!0;function Jn(e){var t=$n;return $n=e,t}var Kn=0;function Zn(e,t){var n=Xn(e,t);if(-1!==n)return n;var r=t[1];r.firstCreatePass&&(e.injectorIndex=t.length,Qn(r.data,e),Qn(t,null),Qn(r.blueprint,null));var i=er(e,t),a=e.injectorIndex;if(Fn(i))for(var o=Nn(i),s=Vn(i,t),l=s[1].data,u=0;u<8;u++)t[a+u]=s[o+u]|l[o+u];return t[a+8]=i,a}function Qn(e,t){e.push(0,0,0,0,0,0,0,0,t)}function Xn(e,t){return-1===e.injectorIndex||e.parent&&e.parent.injectorIndex===e.injectorIndex||null==t[e.injectorIndex+8]?-1:e.injectorIndex}function er(e,t){if(e.parent&&-1!==e.parent.injectorIndex)return e.parent.injectorIndex;for(var n=t[6],r=1;n&&-1===n.injectorIndex;)n=(t=t[15])?t[6]:null,r++;return n?n.injectorIndex|r<<16:-1}function tr(e,t,n){!function(e,t,n){var r=\"string\"!=typeof n?n[Ue]:n.charCodeAt(0)||0;null==r&&(r=n[Ue]=Kn++);var i=255&r,a=1<3&&void 0!==arguments[3]?arguments[3]:fe.Default,i=arguments.length>4?arguments[4]:void 0;if(null!==e){var a=function(e){if(\"string\"==typeof e)return e.charCodeAt(0)||0;var t=e[Ue];return\"number\"==typeof t&&t>0?255&t:t}(n);if(\"function\"==typeof a){pn(t,e);try{var o=a();if(null!=o||r&fe.Optional)return o;throw new Error(\"No provider for \".concat(Un(n),\"!\"))}finally{bn()}}else if(\"number\"==typeof a){if(-1===a)return new ur(e,t);var s=null,l=Xn(e,t),u=-1,c=r&fe.Host?t[16][6]:null;for((-1===l||r&fe.SkipSelf)&&(u=-1===l?er(e,t):t[l+8],lr(r,!1)?(s=t[1],l=Nn(u),t=Vn(u,t)):l=-1);-1!==l;){u=t[l+8];var d=t[1];if(sr(a,l,d.data)){var h=ir(l,t,n,s,r,c);if(h!==rr)return h}lr(r,t[1].data[l+8]===c)&&sr(a,l,t)?(s=d,l=Nn(u),t=Vn(u,t)):l=-1}}}if(r&fe.Optional&&void 0===i&&(i=null),0==(r&(fe.Self|fe.Host))){var f=t[9],m=Qe(void 0);try{return f?f.get(n,i,r&fe.Optional):nt(n,i,r&fe.Optional)}finally{Qe(m)}}if(r&fe.Optional)return i;throw new Error(\"NodeInjector: NOT_FOUND [\".concat(Un(n),\"]\"))}var rr={};function ir(e,t,n,r,i,a){var o=t[1],s=o.data[e+8],l=ar(s,o,n,null==r?It(s)&&$n:r!=o&&3===s.type,i&fe.Host&&a===s);return null!==l?or(t,o,l,s):rr}function ar(e,t,n,r,i){for(var a=e.providerIndexes,o=t.data,s=65535&a,l=e.directiveStart,u=a>>16,c=i?s+u:e.directiveEnd,d=r?s:s+u;d=l&&h.type===n)return d}if(i){var f=o[l];if(f&&Pt(f)&&f.type===n)return l}return null}function or(e,t,n,r){var i=e[n],a=t.data;if(i instanceof In){var o=i;if(o.resolving)throw new Error(\"Circular dep for \".concat(Un(a[n])));var s,l=Jn(o.canSeeViewProviders);o.resolving=!0,o.injectImpl&&(s=Qe(o.injectImpl)),pn(e,r);try{i=e[n]=o.factory(void 0,a,e,r),t.firstCreatePass&&n>=r.directiveStart&&function(e,t,n){var r=t.onChanges,i=t.onInit,a=t.doCheck;r&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,r),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,r)),i&&(n.preOrderHooks||(n.preOrderHooks=[])).push(-e,i),a&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,a),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,a))}(n,a[n],t)}finally{o.injectImpl&&Qe(s),Jn(l),o.resolving=!1,bn()}}return i}function sr(e,t,n){var r=64&e,i=32&e;return!!((128&e?r?i?n[t+7]:n[t+6]:i?n[t+5]:n[t+4]:r?i?n[t+3]:n[t+2]:i?n[t+1]:n[t])&1<1?t-1:0),r=1;r',!n.querySelector||n.querySelector(\"svg\")?(n.innerHTML='

',this.getInertBodyElement=n.querySelector&&n.querySelector(\"svg img\")&&function(){try{return!!window.DOMParser}catch(e){return!1}}()?this.getInertBodyElement_DOMParser:this.getInertBodyElement_InertDocument):this.getInertBodyElement=this.getInertBodyElement_XHR}return _createClass(e,[{key:\"getInertBodyElement_XHR\",value:function(e){e=\"\"+e+\"\";try{e=encodeURI(e)}catch(r){return null}var t=new XMLHttpRequest;t.responseType=\"document\",t.open(\"GET\",\"data:text/html;charset=utf-8,\"+e,!1),t.send(void 0);var n=t.response.body;return n.removeChild(n.firstChild),n}},{key:\"getInertBodyElement_DOMParser\",value:function(e){e=\"\"+e+\"\";try{var t=(new window.DOMParser).parseFromString(e,\"text/html\").body;return t.removeChild(t.firstChild),t}catch(n){return null}}},{key:\"getInertBodyElement_InertDocument\",value:function(e){var t=this.inertDocument.createElement(\"template\");if(\"content\"in t)return t.innerHTML=e,t;var n=this.inertDocument.createElement(\"body\");return n.innerHTML=e,this.defaultDoc.documentMode&&this.stripCustomNsAttrs(n),n}},{key:\"stripCustomNsAttrs\",value:function(e){for(var t=e.attributes,n=t.length-1;0\"),!0}},{key:\"endElement\",value:function(e){var t=e.nodeName.toLowerCase();Fr.hasOwnProperty(t)&&!Pr.hasOwnProperty(t)&&(this.buf.push(\"\"))}},{key:\"chars\",value:function(e){this.buf.push(Gr(e))}},{key:\"checkClobberedElement\",value:function(e,t){if(t&&(e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error(\"Failed to sanitize html because the element is clobbered: \".concat(e.outerHTML));return t}}]),e}(),Br=/[\\uD800-\\uDBFF][\\uDC00-\\uDFFF]/g,qr=/([^\\#-~ |!])/g;function Gr(e){return e.replace(/&/g,\"&\").replace(Br,(function(e){return\"&#\"+(1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320)+65536)+\";\"})).replace(qr,(function(e){return\"&#\"+e.charCodeAt(0)+\";\"})).replace(//g,\">\")}function $r(e,t){var n=null;try{Ar=Ar||new Tr(e);var r=t?String(t):\"\";n=Ar.getInertBodyElement(r);var i=5,a=r;do{if(0===i)throw new Error(\"Failed to sanitize html because the input is unstable\");i--,r=a,a=n.innerHTML,n=Ar.getInertBodyElement(r)}while(r!==a);var o=new Ur,s=o.sanitizeChildren(Jr(n)||n);return Lr()&&o.sanitizedSomething&&console.warn(\"WARNING: sanitizing HTML stripped some content, see http://g.co/ng/security#xss\"),s}finally{if(n)for(var l=Jr(n)||n;l.firstChild;)l.removeChild(l.firstChild)}}function Jr(e){return\"content\"in e&&function(e){return e.nodeType===Node.ELEMENT_NODE&&\"TEMPLATE\"===e.nodeName}(e)?e.content:null}var Kr=function(){var e={NONE:0,HTML:1,STYLE:2,SCRIPT:3,URL:4,RESOURCE_URL:5};return e[e.NONE]=\"NONE\",e[e.HTML]=\"HTML\",e[e.STYLE]=\"STYLE\",e[e.SCRIPT]=\"SCRIPT\",e[e.URL]=\"URL\",e[e.RESOURCE_URL]=\"RESOURCE_URL\",e}(),Zr=new RegExp(\"^([-,.\\\"'%_!# a-zA-Z0-9]+|(?:(?:matrix|translate|scale|rotate|skew|perspective)(?:X|Y|Z|3d)?|(?:rgb|hsl)a?|(?:repeating-)?(?:linear|radial)-gradient|(?:attr|calc|var))\\\\([-0-9.%, #a-zA-Z]+\\\\))$\",\"g\"),Qr=/^url\\(([^)]+)\\)$/;function Xr(e){if(!(e=String(e).trim()))return\"\";var t=e.match(Qr);return t&&Or(t[1])===t[1]||e.match(Zr)&&function(e){for(var t=!0,n=!0,r=0;ra?\"\":i[c+1].toLowerCase();var h=8&r?d:null;if(h&&-1!==li(h,u,0)||2&r&&u!==d){if(hi(r))return!1;o=!0}}}}else{if(!o&&!hi(r)&&!hi(l))return!1;if(o&&hi(l))continue;o=!1,r=l|1&r}}return hi(r)||o}function hi(e){return 0==(1&e)}function fi(e,t,n,r){if(null===t)return-1;var i=0;if(r||!n){for(var a=!1;i-1)for(n++;n2&&void 0!==arguments[2]&&arguments[2],r=0;r0?'=\"'+s+'\"':\"\")+\"]\"}else 8&r?i+=\".\"+o:4&r&&(i+=\" \"+o);else\"\"===i||hi(o)||(t+=_i(a,i),i=\"\"),r=o,a=a||!hi(r);n++}return\"\"!==i&&(t+=_i(a,i)),t}var gi={};function yi(e){var t=e[3];return Yt(t)?t[3]:t}function bi(e){ki(tn(),en(),wn()+e,ln())}function ki(e,t,n,r){if(!r)if(3==(3&t[2])){var i=e.preOrderCheckHooks;null!==i&&xn(t,i,n)}else{var a=e.preOrderHooks;null!==a&&Dn(t,a,0,n)}Cn(n)}var wi={marker:\"element\"},Ci={marker:\"comment\"};function Mi(e,t){return e<<17|t<<2}function Si(e){return e>>17&32767}function Li(e){return 2|e}function Ti(e){return(131068&e)>>2}function xi(e,t){return-131069&e|t<<2}function Di(e){return 1|e}function Oi(e,t){var n=e.contentQueries;if(null!==n)for(var r=0;r>1==-1){for(var r=9;r19&&ki(e,t,0,ln()),n(r,i)}finally{Cn(a)}}function Hi(e,t,n){if(Et(t))for(var r=t.directiveEnd,i=t.directiveStart;i2&&void 0!==arguments[2]?arguments[2]:Wt,r=t.localNames;if(null!==r)for(var i=t.index+1,a=0;a0&&(e[n-1][4]=r[4]);var a=ct(e,9+t);Sa(r[1],r,!1,null);var o=a[5];null!==o&&o.detachView(a[1]),r[3]=null,r[4]=null,r[2]&=-129}return r}}function xa(e,t){if(!(256&t[2])){var n=t[11];Ft(n)&&n.destroyNode&&za(e,t,n,3,null,null),function(e){var t=e[13];if(!t)return Oa(e[1],e);for(;t;){var n=null;if(Ot(t))n=t[13];else{var r=t[9];r&&(n=r)}if(!n){for(;t&&!t[4]&&t!==e;)Ot(t)&&Oa(t[1],t),t=Da(t,e);null===t&&(t=e),Ot(t)&&Oa(t[1],t),n=t&&t[4]}t=n}}(t)}}function Da(e,t){var n;return Ot(e)&&(n=e[6])&&2===n.type?ka(n,e):e[3]===t?null:e[3]}function Oa(e,t){if(!(256&t[2])){t[2]&=-129,t[2]|=256,function(e,t){var n;if(null!=e&&null!=(n=e.destroyHooks))for(var r=0;r=0?r[l]():r[-l].unsubscribe(),i+=2}else n[i].call(r[n[i+1]]);t[7]=null}}(e,t);var n=t[6];n&&3===n.type&&Ft(t[11])&&t[11].destroy();var r=t[17];if(null!==r&&Yt(t[3])){r!==t[3]&&La(r,t);var i=t[5];null!==i&&i.detachView(e)}}}function Ya(e,t,n){for(var r=t.parent;null!=r&&(4===r.type||5===r.type);)r=(t=r).parent;if(null==r){var i=n[6];return 2===i.type?wa(i,n):n[0]}if(t&&5===t.type&&4&t.flags)return Wt(t,n).parentNode;if(2&r.flags){var a=e.data,o=a[a[r.index].directiveStart].encapsulation;if(o!==_t.ShadowDom&&o!==_t.Native)return null}return Wt(r,n)}function Ea(e,t,n,r){Ft(e)?e.insertBefore(t,n,r):t.insertBefore(n,r,!0)}function Ia(e,t,n){Ft(e)?e.appendChild(t,n):t.appendChild(n)}function Aa(e,t,n,r){null!==r?Ea(e,t,n,r):Ia(e,t,n)}function Pa(e,t){return Ft(e)?e.parentNode(t):t.parentNode}function ja(e,t){if(2===e.type){var n=ka(e,t);return null===n?null:Ha(n.indexOf(t,9)-9,n)}return 4===e.type||5===e.type?Wt(e,t):null}function Ra(e,t,n,r){var i=Ya(e,r,t);if(null!=i){var a=t[11],o=ja(r.parent||t[6],t);if(Array.isArray(n))for(var s=0;s-1&&this._viewContainerRef.detach(e),this._viewContainerRef=null}xa(this._lView[1],this._lView)}},{key:\"onDestroy\",value:function(e){var t,n,r;t=this._lView[1],r=e,pa(n=this._lView).push(r),t.firstCreatePass&&_a(t).push(n[7].length-1,null)}},{key:\"markForCheck\",value:function(){ca(this._cdRefInjectingView||this._lView)}},{key:\"detach\",value:function(){this._lView[2]&=-129}},{key:\"reattach\",value:function(){this._lView[2]|=128}},{key:\"detectChanges\",value:function(){da(this._lView[1],this._lView,this.context)}},{key:\"checkNoChanges\",value:function(){!function(e,t,n){un(!0);try{da(e,t,n)}finally{un(!1)}}(this._lView[1],this._lView,this.context)}},{key:\"attachToViewContainerRef\",value:function(e){if(this._appRef)throw new Error(\"This view is already attached directly to the ApplicationRef!\");this._viewContainerRef=e}},{key:\"detachFromAppRef\",value:function(){var e;this._appRef=null,za(this._lView[1],e=this._lView,e[11],2,null,null)}},{key:\"attachToAppRef\",value:function(e){if(this._viewContainerRef)throw new Error(\"This view is already attached to a ViewContainer!\");this._appRef=e}},{key:\"rootNodes\",get:function(){var e=this._lView;return null==e[0]?function e(t,n,r,i){for(var a=arguments.length>4&&void 0!==arguments[4]&&arguments[4];null!==r;){var o=n[r.index];if(null!==o&&i.push(zt(o)),Yt(o))for(var s=9;s0;)this.remove(this.length-1)}},{key:\"get\",value:function(e){return null!==this._lContainer[8]&&this._lContainer[8][e]||null}},{key:\"createEmbeddedView\",value:function(e,t,n){var r=e.createEmbeddedView(t||{});return this.insert(r,n),r}},{key:\"createComponent\",value:function(e,t,n,r,i){var a=n||this.parentInjector;if(!i&&null==e.ngModule&&a){var o=a.get(at,null);o&&(i=o)}var s=e.create(a,r,void 0,i);return this.insert(s.hostView,t),s}},{key:\"insert\",value:function(e,t){var n=e._lView,r=n[1];if(e.destroyed)throw new Error(\"Cannot insert a destroyed View in a ViewContainer!\");if(this.allocateContainerIfNeeded(),Yt(n[3])){var i=this.indexOf(e);if(-1!==i)this.detach(i);else{var a=n[3],o=new $a(a,a[6],a[3]);o.detach(o.indexOf(e))}}var s=this._adjustIndex(t);return function(e,t,n,r){var i=9+r,a=n.length;r>0&&(n[i-1][4]=t),r1&&void 0!==arguments[1]?arguments[1]:0;return null==e?this.length+t:e}},{key:\"allocateContainerIfNeeded\",value:function(){null===this._lContainer[8]&&(this._lContainer[8]=[])}},{key:\"element\",get:function(){return Za(t,this._hostTNode,this._hostView)}},{key:\"injector\",get:function(){return new ur(this._hostTNode,this._hostView)}},{key:\"parentInjector\",get:function(){var e=er(this._hostTNode,this._hostView),t=Vn(e,this._hostView),n=function(e,t,n){if(n.parent&&-1!==n.parent.injectorIndex){for(var r=n.parent.injectorIndex,i=n.parent;null!=i.parent&&r==i.parent.injectorIndex;)i=i.parent;return i}for(var a=zn(e),o=t,s=t[6];a>1;)s=(o=o[15])[6],a--;return s}(e,this._hostView,this._hostTNode);return Fn(e)&&null!=n?new ur(n,t):new ur(null,this._hostView)}},{key:\"length\",get:function(){return this._lContainer.length-9}}]),r}(e));var a=r[n.index];if(Yt(a))(function(e,t){e[2]=-2})(i=a);else{var o;if(4===n.type)o=zt(a);else if(o=r[11].createComment(\"\"),jt(r)){var s=r[11],l=Wt(n,r);Ea(s,Pa(s,l),o,function(e,t){return Ft(e)?e.nextSibling(t):t.nextSibling}(s,l))}else Ra(r[1],r,o,n);r[n.index]=i=aa(a,r,o,n),ua(r,i)}return new $a(i,n,r)}var eo=function(){var e=function e(){_classCallCheck(this,e)};return e.__NG_ELEMENT_ID__=function(){return to()},e}(),to=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return function(e,t,n){if(!n&&It(e)){var r=qt(e.index,t);return new Ja(r,r)}return 3===e.type||0===e.type||4===e.type||5===e.type?new Ja(t[16],t):null}(rn(),en(),e)},no=new Be(\"Set Injector scope.\"),ro={},io={},ao=[],oo=void 0;function so(){return void 0===oo&&(oo=new it),oo}function lo(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r=arguments.length>3?arguments[3]:void 0;return new uo(e,n,t||so(),r)}var uo=function(){function e(t,n,r){var i=this,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;_classCallCheck(this,e),this.parent=r,this.records=new Map,this.injectorDefTypes=new Set,this.onDestroy=new Set,this._destroyed=!1;var o=[];n&<(n,(function(e){return i.processProvider(e,t,n)})),lt([t],(function(e){return i.processInjectorType(e,[],o)})),this.records.set(qe,fo(void 0,this));var s=this.records.get(no);this.scope=null!=s?s.value:null,this.source=a||(\"object\"==typeof t?null:Le(t))}return _createClass(e,[{key:\"destroy\",value:function(){this.assertNotDestroyed(),this._destroyed=!0;try{this.onDestroy.forEach((function(e){return e.ngOnDestroy()}))}finally{this.records.clear(),this.onDestroy.clear(),this.injectorDefTypes.clear()}}},{key:\"get\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Ge,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:fe.Default;this.assertNotDestroyed();var r,i=Ze(this);try{if(!(n&fe.SkipSelf)){var a=this.records.get(e);if(void 0===a){var o=(\"function\"==typeof(r=e)||\"object\"==typeof r&&r instanceof Be)&&ge(e);a=o&&this.injectableDefInScope(o)?fo(co(e),ro):null,this.records.set(e,a)}if(null!=a)return this.hydrate(e,a)}return(n&fe.Self?so():this.parent).get(e,t=n&fe.Optional&&t===Ge?null:t)}catch(s){if(\"NullInjectorError\"===s.name){if((s.ngTempTokenPath=s.ngTempTokenPath||[]).unshift(Le(e)),i)throw s;return function(e,t,n,r){var i=e.ngTempTokenPath;throw t.__source&&i.unshift(t.__source),e.message=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;e=e&&\"\\n\"===e.charAt(0)&&\"\\u0275\"==e.charAt(1)?e.substr(2):e;var i=Le(t);if(Array.isArray(t))i=t.map(Le).join(\" -> \");else if(\"object\"==typeof t){var a=[];for(var o in t)if(t.hasOwnProperty(o)){var s=t[o];a.push(o+\":\"+(\"string\"==typeof s?JSON.stringify(s):Le(s)))}i=\"{\".concat(a.join(\", \"),\"}\")}return\"\".concat(n).concat(r?\"(\"+r+\")\":\"\",\"[\").concat(i,\"]: \").concat(e.replace($e,\"\\n \"))}(\"\\n\"+e.message,i,\"R3InjectorError\",r),e.ngTokenPath=i,e.ngTempTokenPath=null,e}(s,e,0,this.source)}throw s}finally{Ze(i)}}},{key:\"_resolveInjectorDefTypes\",value:function(){var e=this;this.injectorDefTypes.forEach((function(t){return e.get(t)}))}},{key:\"toString\",value:function(){var e=[];return this.records.forEach((function(t,n){return e.push(Le(n))})),\"R3Injector[\".concat(e.join(\", \"),\"]\")}},{key:\"assertNotDestroyed\",value:function(){if(this._destroyed)throw new Error(\"Injector has already been destroyed.\")}},{key:\"processInjectorType\",value:function(e,t,n){var r=this;if(!(e=Oe(e)))return!1;var i=be(e),a=null==i&&e.ngModule||void 0,o=void 0===a?e:a,s=-1!==n.indexOf(o);if(void 0!==a&&(i=be(a)),null==i)return!1;if(null!=i.imports&&!s){var l;n.push(o);try{lt(i.imports,(function(e){r.processInjectorType(e,t,n)&&(void 0===l&&(l=[]),l.push(e))}))}finally{}if(void 0!==l)for(var u=function(e){var t=l[e],n=t.ngModule,i=t.providers;lt(i,(function(e){return r.processProvider(e,n,i||ao)}))},c=0;c0){var n=dt(t,\"?\");throw new Error(\"Can't resolve all parameters for \".concat(Le(e),\": (\").concat(n.join(\", \"),\").\"))}var r=function(e){var t=e&&(e[ke]||e[Me]||e[Ce]&&e[Ce]());if(t){var n=function(e){if(e.hasOwnProperty(\"name\"))return e.name;var t=(\"\"+e).match(/^function\\s*([^\\s(]+)/);return null===t?\"\":t[1]}(e);return console.warn('DEPRECATED: DI is instantiating a token \"'.concat(n,'\" that inherits its @Injectable decorator but does not provide one itself.\\n')+'This will become an error in v10. Please add @Injectable() to the \"'.concat(n,'\" class.')),t}return null}(e);return null!==r?function(){return r.factory(e)}:function(){return new e}}(e);throw new Error(\"unreachable\")}function ho(e,t,n){var r,i=void 0;if(po(e)){var a=Oe(e);return xt(a)||co(a)}if(mo(e))i=function(){return Oe(e.useValue)};else if((r=e)&&r.useFactory)i=function(){return e.useFactory.apply(e,_toConsumableArray(rt(e.deps||[])))};else if(function(e){return!(!e||!e.useExisting)}(e))i=function(){return et(Oe(e.useExisting))};else{var o=Oe(e&&(e.useClass||e.provide));if(o||function(e,t,n){var r=\"\";throw e&&t&&(r=\" - only instances of Provider and Type are allowed, got: [\".concat(t.map((function(e){return e==n?\"?\"+n+\"?\":\"...\"})).join(\", \"),\"]\")),new Error(\"Invalid provider for the NgModule '\".concat(Le(e),\"'\")+r)}(t,n,e),!function(e){return!!e.deps}(e))return xt(o)||co(o);i=function(){return _construct(o,_toConsumableArray(rt(e.deps)))}}return i}function fo(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return{factory:e,value:t,multi:n?[]:void 0}}function mo(e){return null!==e&&\"object\"==typeof e&&Je in e}function po(e){return\"function\"==typeof e}var _o=function(e,t,n){return function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r=arguments.length>3?arguments[3]:void 0,i=lo(e,t,n,r);return i._resolveInjectorDefTypes(),i}({name:n},t,e,n)},vo=function(){var e=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"create\",value:function(e,t){return Array.isArray(e)?_o(e,t,\"\"):_o(e.providers,e.parent,e.name||\"\")}}]),e}();return e.THROW_IF_NOT_FOUND=Ge,e.NULL=new it,e.\\u0275prov=_e({token:e,providedIn:\"any\",factory:function(){return et(qe)}}),e.__NG_ELEMENT_ID__=-1,e}(),go=new Be(\"AnalyzeForEntryComponents\"),yo=new Map,bo=new Set;function ko(e){return\"string\"==typeof e?e:e.text()}function wo(e,t){for(var n=e.styles,r=e.classes,i=0,a=0;a1&&void 0!==arguments[1]?arguments[1]:fe.Default,n=en();return null==n?et(e,t):nr(rn(),n,Oe(e),t)}function Ao(e){return function(e,t){if(\"class\"===t)return e.classes;if(\"style\"===t)return e.styles;var n=e.attrs;if(n)for(var r=n.length,i=0;i2&&void 0!==arguments[2]&&arguments[2],r=arguments.length>3?arguments[3]:void 0,i=en(),a=tn(),o=rn();return $o(a,i,i[11],o,e,t,n,r),qo}function Go(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=arguments.length>3?arguments[3]:void 0,i=rn(),a=en(),o=va(i,a);return $o(tn(),a,o,i,e,t,n,r),Go}function $o(e,t,n,r,i,a){var o=arguments.length>6&&void 0!==arguments[6]&&arguments[6],s=arguments.length>7?arguments[7]:void 0,l=At(r),u=e.firstCreatePass&&(e.cleanup||(e.cleanup=[])),c=pa(t),d=!0;if(3===r.type){var h=Wt(r,t),f=s?s(h):vt,m=f.target||h,p=c.length,_=s?function(e){return s(zt(e[r.index])).target}:r.index;if(Ft(n)){var v=null;if(!s&&l&&(v=function(e,t,n,r){var i=e.cleanup;if(null!=i)for(var a=0;al?s[l]:null}\"string\"==typeof o&&(a+=2)}return null}(e,t,i,r.index)),null!==v)(v.__ngLastListenerFn__||v).__ngNextListenerFn__=a,v.__ngLastListenerFn__=a,d=!1;else{a=Ko(r,t,a,!1);var g=n.listen(f.name||m,i,a);c.push(a,g),u&&u.push(i,_,p,p+1)}}else a=Ko(r,t,a,!0),m.addEventListener(i,a,o),c.push(a),u&&u.push(i,_,p,o)}var y,b=r.outputs;if(d&&null!==b&&(y=b[i])){var k=y.length;if(k)for(var w=0;w0&&void 0!==arguments[0]?arguments[0]:1;return function(e){return(Qt.lFrame.contextLView=function(e,t){for(;e>0;)t=t[15],e--;return t}(e,Qt.lFrame.contextLView))[8]}(e)}function Qo(e,t){for(var n=null,r=function(e){var t=e.attrs;if(null!=t){var n=t.indexOf(5);if(0==(1&n))return t[n+1]}return null}(e),i=0;i1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2?arguments[2]:void 0,r=en(),i=tn(),a=Ii(i,r[6],e,1,null,n||null);null===a.projection&&(a.projection=t),sn(),es||Va(i,r,a)}function rs(e,t,n){return is(e,\"\",t,\"\",n),rs}function is(e,t,n,r,i){var a=en(),o=Oo(a,t,n,r);return o!==gi&&Bi(tn(),Mn(),a,e,o,a[11],i,!1),is}var as=[];function os(e,t,n,r,i){for(var a=e[n+1],o=null===t,s=r?Si(a):Ti(a),l=!1;0!==s&&(!1===l||o);){var u=e[s+1];ss(e[s],t)&&(l=!0,e[s+1]=r?Di(u):Li(u)),s=r?Si(u):Ti(u)}l&&(e[n+1]=r?Li(a):Di(a))}function ss(e,t){return null===e||null==t||(Array.isArray(e)?e[1]:e)===t||!(!Array.isArray(e)||\"string\"!=typeof t)&&mt(e,t)>=0}var ls={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function us(e){return e.substring(ls.key,ls.keyEnd)}function cs(e,t){var n=ls.textEnd;return n===t?-1:(t=ls.keyEnd=function(e,t,n){for(;t32;)t++;return t}(e,ls.key=t,n),ds(e,t,n))}function ds(e,t,n){for(;t=0;n=cs(t,n))ht(e,us(t),!0)}function _s(e,t,n,r){var i,a,o=en(),s=tn(),l=dn(2);(s.firstUpdatePass&&ys(s,e,l,r),t!==gi&&xo(o,l,t))&&(null==n&&(i=null===(a=Qt.lFrame)?null:a.currentSanitizer)&&(n=i),ws(s,s.data[wn()+19],o,o[11],e,o[l+1]=function(e,t){return null==e||(\"function\"==typeof t?e=t(e):\"string\"==typeof t?e+=t:\"object\"==typeof e&&(e=Le(kr(e)))),e}(t,n),r,l))}function vs(e,t,n,r){var i=tn(),a=dn(2);i.firstUpdatePass&&ys(i,null,a,r);var o=en();if(n!==gi&&xo(o,a,n)){var s=i.data[wn()+19];if(Ss(s,r)&&!gs(i,a)){var l=r?s.classes:s.styles;null!==l&&(n=Te(l,n||\"\")),Ro(i,s,o,n,r)}else!function(e,t,n,r,i,a,o,s){i===gi&&(i=as);for(var l=0,u=0,c=0=e.expandoStartIndex}function ys(e,t,n,r){var i=e.data;if(null===i[n+1]){var a=i[wn()+19],o=gs(e,n);Ss(a,r)&&null===t&&!o&&(t=!1),t=function(e,t,n,r){var i=function(e){var t=Qt.lFrame.currentDirectiveIndex;return-1===t?null:e[t]}(e),a=r?t.residualClasses:t.residualStyles;if(null===i)0===(r?t.classBindings:t.styleBindings)&&(n=ks(n=bs(null,e,t,n,r),t.attrs,r),a=null);else{var o=t.directiveStylingLast;if(-1===o||e[o]!==i)if(n=bs(i,e,t,n,r),null===a){var s=function(e,t,n){var r=n?t.classBindings:t.styleBindings;if(0!==Ti(r))return e[Si(r)]}(e,t,r);void 0!==s&&Array.isArray(s)&&function(e,t,n,r){e[Si(n?t.classBindings:t.styleBindings)]=r}(e,t,r,s=ks(s=bs(null,e,t,s[1],r),t.attrs,r))}else a=function(e,t,n){for(var r=void 0,i=t.directiveEnd,a=1+t.directiveStylingLast;a0)&&(c=!0)}else u=n;if(i)if(0!==l){var h=Si(e[s+1]);e[r+1]=Mi(h,s),0!==h&&(e[h+1]=xi(e[h+1],r)),e[s+1]=131071&e[s+1]|r<<17}else e[r+1]=Mi(s,0),0!==s&&(e[s+1]=xi(e[s+1],r)),s=r;else e[r+1]=Mi(l,0),0===s?s=r:e[l+1]=xi(e[l+1],r),l=r;c&&(e[r+1]=Li(e[r+1])),os(e,u,r,!0),os(e,u,r,!1),function(e,t,n,r,i){var a=i?e.residualClasses:e.residualStyles;null!=a&&\"string\"==typeof t&&mt(a,t)>=0&&(n[r+1]=Di(n[r+1]))}(t,u,e,r,a),o=Mi(s,l),a?t.classBindings=o:t.styleBindings=o}(i,a,t,n,o,r)}}function bs(e,t,n,r,i){var a=null,o=n.directiveEnd,s=n.directiveStylingLast;for(-1===s?s=n.directiveStart:s++;s0;){var l=e[i],u=Array.isArray(l),c=u?l[1]:l,d=null===c,h=n[i+1];h===gi&&(h=d?as:void 0);var f=d?ft(h,r):c===r?h:void 0;if(u&&!Ms(f)&&(f=ft(l,r)),Ms(f)&&(s=f,o))return s;var m=e[i+1];i=o?Si(m):Ti(m)}if(null!==t){var p=a?t.residualClasses:t.residualStyles;null!=p&&(s=ft(p,r))}return s}function Ms(e){return void 0!==e}function Ss(e,t){return 0!=(e.flags&(t?16:32))}function Ls(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\",n=en(),r=tn(),i=e+19,a=r.firstCreatePass?Ii(r,n[6],e,3,null,null):r.data[i],o=n[i]=Ma(t,n[11]);Ra(r,n,o,a),an(a,!1)}function Ts(e){return xs(\"\",e,\"\"),Ts}function xs(e,t,n){var r=en(),i=Oo(r,e,t,n);return i!==gi&&ba(r,wn(),i),xs}function Ds(e,t,n){var r=en();return xo(r,cn(),t)&&Bi(tn(),Mn(),r,e,t,r[11],n,!0),Ds}function Os(e,t,n){var r=en();if(xo(r,cn(),t)){var i=tn(),a=Mn();Bi(i,a,r,e,t,va(a,r),n,!0)}return Os}function Ys(e,t){var n=Gt(e)[1],r=n.data.length-1;Tn(n,{directiveStart:r,directiveEnd:r+1})}function Es(e){for(var t=Object.getPrototypeOf(e.type.prototype).constructor,n=!0,r=[e];t;){var i=void 0;if(Pt(e))i=t.\\u0275cmp||t.\\u0275dir;else{if(t.\\u0275cmp)throw new Error(\"Directives cannot inherit Components\");i=t.\\u0275dir}if(i){if(n){r.push(i);var a=e;a.inputs=Is(e.inputs),a.declaredInputs=Is(e.declaredInputs),a.outputs=Is(e.outputs);var o=i.hostBindings;o&&js(e,o);var s=i.viewQuery,l=i.contentQueries;if(s&&As(e,s),l&&Ps(e,l),pe(e.inputs,i.inputs),pe(e.declaredInputs,i.declaredInputs),pe(e.outputs,i.outputs),Pt(i)&&i.data.animation){var u=e.data;u.animation=(u.animation||[]).concat(i.data.animation)}a.afterContentChecked=a.afterContentChecked||i.afterContentChecked,a.afterContentInit=e.afterContentInit||i.afterContentInit,a.afterViewChecked=e.afterViewChecked||i.afterViewChecked,a.afterViewInit=e.afterViewInit||i.afterViewInit,a.doCheck=e.doCheck||i.doCheck,a.onDestroy=e.onDestroy||i.onDestroy,a.onInit=e.onInit||i.onInit}var c=i.features;if(c)for(var d=0;d=0;r--){var i=e[r];i.hostVars=t+=i.hostVars,i.hostAttrs=Rn(i.hostAttrs,n=Rn(n,i.hostAttrs))}}(r)}function Is(e){return e===vt?{}:e===gt?[]:e}function As(e,t){var n=e.viewQuery;e.viewQuery=n?function(e,r){t(e,r),n(e,r)}:t}function Ps(e,t){var n=e.contentQueries;e.contentQueries=n?function(e,r,i){t(e,r,i),n(e,r,i)}:t}function js(e,t){var n=e.hostBindings;e.hostBindings=n?function(e,r){t(e,r),n(e,r)}:t}var Rs=function(){function e(t,n,r){_classCallCheck(this,e),this.previousValue=t,this.currentValue=n,this.firstChange=r}return _createClass(e,[{key:\"isFirstChange\",value:function(){return this.firstChange}}]),e}();function Hs(e){e.type.prototype.ngOnChanges&&(e.setInput=Fs,e.onChanges=function(){var e=Ns(this),t=e&&e.current;if(t){var n=e.previous;if(n===vt)e.previous=t;else for(var r in t)n[r]=t[r];e.current=null,this.ngOnChanges(t)}})}function Fs(e,t,n,r){var i=Ns(e)||function(e,t){return e.__ngSimpleChanges__=t}(e,{previous:vt,current:null}),a=i.current||(i.current={}),o=i.previous,s=this.declaredInputs[n],l=o[s];a[s]=new Rs(l&&l.currentValue,t,o===vt),e[r]=t}function Ns(e){return e.__ngSimpleChanges__||null}function zs(e,t,n,r,i){if(e=Oe(e),Array.isArray(e))for(var a=0;a>16;if(po(e)||!e.multi){var m=new In(u,i,Io),p=Us(l,t,i?d:d+f,h);-1===p?(tr(Zn(c,s),o,l),Vs(o,e,t.length),t.push(l),c.directiveStart++,c.directiveEnd++,i&&(c.providerIndexes+=65536),n.push(m),s.push(m)):(n[p]=m,s[p]=m)}else{var _=Us(l,t,d+f,h),v=Us(l,t,d,d+f),g=_>=0&&n[_],y=v>=0&&n[v];if(i&&!y||!i&&!g){tr(Zn(c,s),o,l);var b=function(e,t,n,r,i){var a=new In(e,n,Io);return a.multi=[],a.index=t,a.componentProviders=0,Ws(a,i,r&&!n),a}(i?qs:Bs,n.length,i,r,u);!i&&y&&(n[v].providerFactory=b),Vs(o,e,t.length),t.push(l),c.directiveStart++,c.directiveEnd++,i&&(c.providerIndexes+=65536),n.push(b),s.push(b)}else Vs(o,e,_>-1?_:v),Ws(n[i?v:_],u,!i&&r);!i&&r&&y&&n[v].componentProviders++}}}function Vs(e,t,n){if(po(t)||t.useClass){var r=(t.useClass||t).prototype.ngOnDestroy;r&&(e.destroyHooks||(e.destroyHooks=[])).push(n,r)}}function Ws(e,t,n){e.multi.push(t),n&&e.componentProviders++}function Us(e,t,n,r){for(var i=n;i1&&void 0!==arguments[1]?arguments[1]:[];return function(n){n.providersResolver=function(n,r){return function(e,t,n){var r=tn();if(r.firstCreatePass){var i=Pt(e);zs(n,r.data,r.blueprint,i,!0),zs(t,r.data,r.blueprint,i,!1)}}(n,r?r(e):e,t)}}}Hs.ngInherit=!0;var Js=function e(){_classCallCheck(this,e)},Ks=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"resolveComponentFactory\",value:function(e){throw function(e){var t=Error(\"No component factory found for \".concat(Le(e),\". Did you add it to @NgModule.entryComponents?\"));return t.ngComponent=e,t}(e)}}]),e}(),Zs=function(){var e=function e(){_classCallCheck(this,e)};return e.NULL=new Ks,e}(),Qs=function(){var e=function e(t){_classCallCheck(this,e),this.nativeElement=t};return e.__NG_ELEMENT_ID__=function(){return Xs(e)},e}(),Xs=function(e){return Za(e,rn(),en())},el=function e(){_classCallCheck(this,e)},tl=function(){var e={Important:1,DashCase:2};return e[e.Important]=\"Important\",e[e.DashCase]=\"DashCase\",e}(),nl=function(){var e=function e(){_classCallCheck(this,e)};return e.__NG_ELEMENT_ID__=function(){return rl()},e}(),rl=function(){var e=en(),t=qt(rn().index,e);return function(e){var t=e[11];if(Ft(t))return t;throw new Error(\"Cannot inject Renderer2 when the application uses Renderer3!\")}(Ot(t)?t:e)},il=function(){var e=function e(){_classCallCheck(this,e)};return e.\\u0275prov=_e({token:e,providedIn:\"root\",factory:function(){return null}}),e}(),al=function e(t){_classCallCheck(this,e),this.full=t,this.major=t.split(\".\")[0],this.minor=t.split(\".\")[1],this.patch=t.split(\".\").slice(2).join(\".\")},ol=new al(\"9.0.7\"),sl=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"supports\",value:function(e){return Lo(e)}},{key:\"create\",value:function(e){return new ul(e)}}]),e}(),ll=function(e,t){return t},ul=function(){function e(t){_classCallCheck(this,e),this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=t||ll}return _createClass(e,[{key:\"forEachItem\",value:function(e){var t;for(t=this._itHead;null!==t;t=t._next)e(t)}},{key:\"forEachOperation\",value:function(e){for(var t=this._itHead,n=this._removalsHead,r=0,i=null;t||n;){var a=!n||t&&t.currentIndex0&&Ba(u,d,b.join(\" \"))}a=Ut(_[1],0),t&&(a.projection=t.map((function(e){return Array.from(e)}))),i=function(e,t,n,r,i){var a=n[1],o=function(e,t,n){var r=rn();e.firstCreatePass&&(n.providersResolver&&n.providersResolver(n),Ki(e,r,1),ea(e,t,n));var i=or(t,e,t.length-1,r);ai(i,t);var a=Wt(r,t);return a&&ai(a,t),i}(a,n,t);r.components.push(o),e[8]=o,i&&i.forEach((function(e){return e(o,t)})),t.contentQueries&&t.contentQueries(1,o,n.length-1);var s=rn();if(a.firstCreatePass&&(null!==t.hostBindings||null!==t.hostAttrs)){Cn(s.index-19);var l=n[1];Gi(l,t),$i(l,n,t.hostVars),Ji(t,o)}return o}(v,this.componentDef,_,m,[Ys]),Ai(p,_,null)}finally{kn()}var k=new Yl(this.componentType,i,Za(Qs,a,_),_,a);return n&&!f||(k.hostView._tViewNode.child=a),k}},{key:\"inputs\",get:function(){return xl(this.componentDef.inputs)}},{key:\"outputs\",get:function(){return xl(this.componentDef.outputs)}}]),n}(Js),Yl=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s,l,u,c;return _classCallCheck(this,n),(s=t.call(this)).location=i,s._rootLView=a,s._tNode=o,s.destroyCbs=[],s.instance=r,s.hostView=s.changeDetectorRef=new Ka(a),s.hostView._tViewNode=(l=a[1],u=a,null==(c=l.node)&&(l.node=c=Wi(0,null,2,-1,null,null)),u[6]=c),s.componentType=e,s}return _createClass(n,[{key:\"destroy\",value:function(){this.destroyCbs&&(this.destroyCbs.forEach((function(e){return e()})),this.destroyCbs=null,!this.hostView.destroyed&&this.hostView.destroy())}},{key:\"onDestroy\",value:function(e){this.destroyCbs&&this.destroyCbs.push(e)}},{key:\"injector\",get:function(){return new ur(this._tNode,this._rootLView)}}]),n}(function(){return function e(){_classCallCheck(this,e)}}()),El=void 0,Il=[\"en\",[[\"a\",\"p\"],[\"AM\",\"PM\"],El],[[\"AM\",\"PM\"],El,El],[[\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"],[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"]],El,[[\"J\",\"F\",\"M\",\"A\",\"M\",\"J\",\"J\",\"A\",\"S\",\"O\",\"N\",\"D\"],[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"]],El,[[\"B\",\"A\"],[\"BC\",\"AD\"],[\"Before Christ\",\"Anno Domini\"]],0,[6,0],[\"M/d/yy\",\"MMM d, y\",\"MMMM d, y\",\"EEEE, MMMM d, y\"],[\"h:mm a\",\"h:mm:ss a\",\"h:mm:ss a z\",\"h:mm:ss a zzzz\"],[\"{1}, {0}\",El,\"{1} 'at' {0}\",El],[\".\",\",\",\";\",\"%\",\"+\",\"-\",\"E\",\"\\xd7\",\"\\u2030\",\"\\u221e\",\"NaN\",\":\"],[\"#,##0.###\",\"#,##0%\",\"\\xa4#,##0.00\",\"#E0\"],\"USD\",\"$\",\"US Dollar\",{},function(e){var t=Math.floor(Math.abs(e)),n=e.toString().replace(/^[^.]*\\.?/,\"\").length;return 1===t&&0===n?1:5}],Al={};function Pl(e){return function(e){var t=function(e){return e.toLowerCase().replace(/_/g,\"-\")}(e),n=jl(t);if(n)return n;var r=t.split(\"-\")[0];if(n=jl(r))return n;if(\"en\"===r)return Il;throw new Error('Missing locale data for the locale \"'.concat(e,'\".'))}(e)[Rl.PluralCase]}function jl(e){return e in Al||(Al[e]=Re.ng&&Re.ng.common&&Re.ng.common.locales&&Re.ng.common.locales[e]),Al[e]}var Rl=function(){var e={LocaleId:0,DayPeriodsFormat:1,DayPeriodsStandalone:2,DaysFormat:3,DaysStandalone:4,MonthsFormat:5,MonthsStandalone:6,Eras:7,FirstDayOfWeek:8,WeekendRange:9,DateFormat:10,TimeFormat:11,DateTimeFormat:12,NumberSymbols:13,NumberFormats:14,CurrencyCode:15,CurrencySymbol:16,CurrencyName:17,Currencies:18,PluralCase:19,ExtraData:20};return e[e.LocaleId]=\"LocaleId\",e[e.DayPeriodsFormat]=\"DayPeriodsFormat\",e[e.DayPeriodsStandalone]=\"DayPeriodsStandalone\",e[e.DaysFormat]=\"DaysFormat\",e[e.DaysStandalone]=\"DaysStandalone\",e[e.MonthsFormat]=\"MonthsFormat\",e[e.MonthsStandalone]=\"MonthsStandalone\",e[e.Eras]=\"Eras\",e[e.FirstDayOfWeek]=\"FirstDayOfWeek\",e[e.WeekendRange]=\"WeekendRange\",e[e.DateFormat]=\"DateFormat\",e[e.TimeFormat]=\"TimeFormat\",e[e.DateTimeFormat]=\"DateTimeFormat\",e[e.NumberSymbols]=\"NumberSymbols\",e[e.NumberFormats]=\"NumberFormats\",e[e.CurrencyCode]=\"CurrencyCode\",e[e.CurrencySymbol]=\"CurrencySymbol\",e[e.CurrencyName]=\"CurrencyName\",e[e.Currencies]=\"Currencies\",e[e.PluralCase]=\"PluralCase\",e[e.ExtraData]=\"ExtraData\",e}(),Hl=/^\\s*(\\ufffd\\d+:?\\d*\\ufffd)\\s*,\\s*(select|plural)\\s*,/,Fl=/\\ufffd\\/?\\*(\\d+:\\d+)\\ufffd/gi,Nl=/\\ufffd(\\/?[#*!]\\d+):?\\d*\\ufffd/gi,zl=/\\ufffd(\\d+):?\\d*\\ufffd/gi,Vl=/({\\s*\\ufffd\\d+:?\\d*\\ufffd\\s*,\\s*\\S{6}\\s*,[\\s\\S]*})/gi;function Wl(e){if(!e)return[];var t,n=0,r=[],i=[],a=/[{}]/g;for(a.lastIndex=0;t=a.exec(e);){var o=t.index;if(\"}\"==t[0]){if(r.pop(),0==r.length){var s=e.substring(n,o);Hl.test(s)?i.push(Ul(s)):i.push(s),n=o+1}}else{if(0==r.length){var l=e.substring(n,o);i.push(l),n=o+1}r.push(\"{\")}}var u=e.substring(n);return i.push(u),i}function Ul(e){for(var t=[],n=[],r=1,i=0,a=Wl(e=e.replace(Hl,(function(e,t,n){return r=\"select\"===n?0:1,i=parseInt(t.substr(1),10),\"\"}))),o=0;on.length&&n.push(l)}return{type:r,mainBinding:i,cases:t,values:n}}function Bl(e){for(var t,n,r=\"\",i=0,a=!1;null!==(t=Fl.exec(e));)a?t[0]===\"\\ufffd/*\".concat(n,\"\\ufffd\")&&(i=t.index,a=!1):(r+=e.substring(i,t.index+t[0].length),n=t[1],a=!0);return r+=e.substr(i)}function ql(e,t,n){for(var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,i=[null,null],a=e.split(zl),o=0,s=0;s1&&void 0!==arguments[1]?arguments[1]:0;n|=Kl(e.mainBinding);for(var r=0;r>>17;o=Xl(n,a,h===e?r[6]:Ut(n,h),o,r);break;case 0:var f=u>=0,m=(f?u:~u)>>>3;s.push(m),o=a,(a=Ut(n,m))&&an(a,f);break;case 5:o=a=Ut(n,u>>>3),an(a,!1);break;case 4:var p=t[++l],_=t[++l];na(Ut(n,u>>>3),r,p,_,null,null);break;default:throw new Error('Unable to determine the type of mutate operation for \"'.concat(u,'\"'))}else switch(u){case Ci:var v=t[++l],g=t[++l],y=i.createComment(v);o=a,a=eu(n,r,g,5,y,null),s.push(g),ai(y,r),a.activeCaseIndex=null,sn();break;case wi:var b=t[++l],k=t[++l];o=a,a=eu(n,r,k,3,i.createElement(b),b),s.push(k);break;default:throw new Error('Unable to determine the type of mutate operation for \"'.concat(u,'\"'))}}return sn(),s}function nu(e,t,n,r){var i=Ut(e,n),a=Vt(n,t);a&&Fa(t[11],a);var o=Bt(t,n);if(Yt(o)){var s=o;0!==i.type&&Fa(t[11],s[7])}r&&(i.flags|=64)}function ru(e,t,n){var r;(function(e,t,n){var r=tn();$l[++Jl]=e,ts(!0),r.firstCreatePass&&null===r.data[e+19]&&function(e,t,n,r,i){var a=t.blueprint.length-19;Zl=0;var o=rn(),s=on()?o:o&&o.parent,l=s&&s!==e[6]?s.index-19:n,u=0;Ql[u]=l;var c=[];if(n>0&&o!==s){var d=o.index-19;on()||(d=~d),c.push(d<<3|0)}for(var h,f=[],m=[],p=function(e,t){if(\"number\"!=typeof t)return Bl(e);var n=e.indexOf(\":\".concat(t,\"\\ufffd\"))+2+t.toString().length,r=e.search(new RegExp(\"\\ufffd\\\\/\\\\*\\\\d+:\".concat(t,\"\\ufffd\")));return Bl(e.substring(n,r))}(r,i),_=(h=p,h.replace(fu,\" \")).split(Nl),v=0;v<_.length;v++){var g=_[v];if(1&v)if(\"/\"===g.charAt(0)){if(\"#\"===g.charAt(1)){var y=parseInt(g.substr(2),10);l=Ql[--u],c.push(y<<3|5)}}else{var b=parseInt(g.substr(1),10),k=\"#\"===g.charAt(0);c.push((k?b:~b)<<3|0,l<<17|1),k&&(Ql[++u]=l=b)}else for(var w=Wl(g),C=0;C0&&function(e,t,n){if(n>0&&e.firstCreatePass){for(var r=0;r>1),o++}}(tn(),r),ts(!1)}function iu(e,t){!function(e,t,n,r){for(var i=rn().index-19,a=[],o=0;o6&&void 0!==arguments[6]&&arguments[6],l=!1,u=0;u>>2,_=void 0,v=void 0;switch(3&m){case 1:var g=t[++f],y=t[++f];Bi(a,Ut(a,p),o,g,h,o[11],y,!1);break;case 0:ba(o,p,h);break;case 2:if(_=n[t[++f]],null!==(v=Ut(a,p)).activeCaseIndex)for(var b=_.remove[v.activeCaseIndex],k=0;k>>3,!1);break;case 6:var C=Ut(a,b[k+1]>>>3).activeCaseIndex;null!==C&&st(n[w>>>3].remove[C],b)}}var M=uu(_,h);v.activeCaseIndex=-1!==M?M:null,M>-1&&(tu(-1,_.create[M],a,o),l=!0);break;case 3:_=n[t[++f]],null!==(v=Ut(a,p)).activeCaseIndex&&e(_.update[v.activeCaseIndex],n,r,i,a,o,l)}}}u+=d}}(t,i,a,au,n,o),au=0,ou=0}}function uu(e,t){var n=e.cases.indexOf(t);if(-1===n)switch(e.type){case 1:var r=function(e,t){switch(Pl(t)(e)){case 0:return\"zero\";case 1:return\"one\";case 2:return\"two\";case 3:return\"few\";case 4:return\"many\";default:return\"other\"}}(t,mu);-1===(n=e.cases.indexOf(r))&&\"other\"!==r&&(n=e.cases.indexOf(\"other\"));break;case 0:n=e.cases.indexOf(\"other\")}return n}function cu(e,t,n,r){for(var i=[],a=[],o=[],s=[],l=[],u=0;u null != \".concat(t,\" <=Actual]\"))}(0,t),\"string\"==typeof e&&(mu=e.toLowerCase().replace(/_/g,\"-\"))}var _u=new Map,vu=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;_classCallCheck(this,n),(i=t.call(this))._parent=r,i._bootstrapComponents=[],i.injector=_assertThisInitialized(i),i.destroyCbs=[],i.componentFactoryResolver=new Tl(_assertThisInitialized(i));var a=Dt(e),o=e[Ve]||null;return o&&pu(o),i._bootstrapComponents=Gn(a.bootstrap),i._r3Injector=lo(e,r,[{provide:at,useValue:_assertThisInitialized(i)},{provide:Zs,useValue:i.componentFactoryResolver}],Le(e)),i._r3Injector._resolveInjectorDefTypes(),i.instance=i.get(e),i}return _createClass(n,[{key:\"get\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:vo.THROW_IF_NOT_FOUND,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:fe.Default;return e===vo||e===at||e===qe?this:this._r3Injector.get(e,t,n)}},{key:\"destroy\",value:function(){var e=this._r3Injector;!e.destroyed&&e.destroy(),this.destroyCbs.forEach((function(e){return e()})),this.destroyCbs=null}},{key:\"onDestroy\",value:function(e){this.destroyCbs.push(e)}}]),n}(at),gu=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this)).moduleType=e,null!==Dt(e)&&function e(t){if(null!==t.\\u0275mod.id){var n=t.\\u0275mod.id;(function(e,t,n){if(t&&t!==n)throw new Error(\"Duplicate module registered for \".concat(e,\" - \").concat(Le(t),\" vs \").concat(Le(t.name)))})(n,_u.get(n),t),_u.set(n,t)}var r=t.\\u0275mod.imports;r instanceof Function&&(r=r()),r&&r.forEach((function(t){return e(t)}))}(e),r}return _createClass(n,[{key:\"create\",value:function(e){return new vu(this.moduleType,e)}}]),n}(ot);function yu(e,t,n){var r,i,a=(r=Qt.lFrame,-1===(i=r.bindingRootIndex)&&(i=r.bindingRootIndex=r.tView.bindingStartIndex),i+e),o=en();return o[a]===gi?function(e,t,n){return e[t]=n}(o,a,n?t.call(n):t()):function(e,t){return e[t]}(o,a)}var bu=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return _classCallCheck(this,n),(e=t.call(this)).__isAsync=r,e}return _createClass(n,[{key:\"emit\",value:function(e){_get(_getPrototypeOf(n.prototype),\"next\",this).call(this,e)}},{key:\"subscribe\",value:function(e,t,r){var i,a=function(e){return null},o=function(){return null};e&&\"object\"==typeof e?(i=this.__isAsync?function(t){setTimeout((function(){return e.next(t)}))}:function(t){e.next(t)},e.error&&(a=this.__isAsync?function(t){setTimeout((function(){return e.error(t)}))}:function(t){e.error(t)}),e.complete&&(o=this.__isAsync?function(){setTimeout((function(){return e.complete()}))}:function(){e.complete()})):(i=this.__isAsync?function(t){setTimeout((function(){return e(t)}))}:function(t){e(t)},t&&(a=this.__isAsync?function(e){setTimeout((function(){return t(e)}))}:function(e){t(e)}),r&&(o=this.__isAsync?function(){setTimeout((function(){return r()}))}:function(){r()}));var s=_get(_getPrototypeOf(n.prototype),\"subscribe\",this).call(this,i,a,o);return e instanceof h&&e.add(s),s}}]),n}(x);function ku(){return this._results[Mo()]()}var wu=function(){function e(){_classCallCheck(this,e),this.dirty=!0,this._results=[],this.changes=new bu,this.length=0;var t=Mo(),n=e.prototype;n[t]||(n[t]=ku)}return _createClass(e,[{key:\"map\",value:function(e){return this._results.map(e)}},{key:\"filter\",value:function(e){return this._results.filter(e)}},{key:\"find\",value:function(e){return this._results.find(e)}},{key:\"reduce\",value:function(e,t){return this._results.reduce(e,t)}},{key:\"forEach\",value:function(e){this._results.forEach(e)}},{key:\"some\",value:function(e){return this._results.some(e)}},{key:\"toArray\",value:function(){return this._results.slice()}},{key:\"toString\",value:function(){return this._results.toString()}},{key:\"reset\",value:function(e){this._results=function e(t,n){void 0===n&&(n=t);for(var r=0;r0&&void 0!==arguments[0]?arguments[0]:[];_classCallCheck(this,e),this.queries=t}return _createClass(e,[{key:\"createEmbeddedView\",value:function(t){var n=t.queries;if(null!==n){for(var r=null!==t.contentQueries?t.contentQueries[0]:n.length,i=[],a=0;a3&&void 0!==arguments[3]?arguments[3]:null;_classCallCheck(this,e),this.predicate=t,this.descendants=n,this.isStatic=r,this.read=i},Lu=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];_classCallCheck(this,e),this.queries=t}return _createClass(e,[{key:\"elementStart\",value:function(e,t){for(var n=0;n1&&void 0!==arguments[1]?arguments[1]:-1;_classCallCheck(this,e),this.metadata=t,this.matches=null,this.indexInDeclarationView=-1,this.crossesNgTemplate=!1,this._appliesToNextNode=!0,this._declarationNodeIndex=n}return _createClass(e,[{key:\"elementStart\",value:function(e,t){this.isApplyingToNode(t)&&this.matchTNode(e,t)}},{key:\"elementEnd\",value:function(e){this._declarationNodeIndex===e.index&&(this._appliesToNextNode=!1)}},{key:\"template\",value:function(e,t){this.elementStart(e,t)}},{key:\"embeddedTView\",value:function(t,n){return this.isApplyingToNode(t)?(this.crossesNgTemplate=!0,this.addMatch(-t.index,n),new e(this.metadata)):null}},{key:\"isApplyingToNode\",value:function(e){if(this._appliesToNextNode&&!1===this.metadata.descendants){for(var t=this._declarationNodeIndex,n=e.parent;null!==n&&4===n.type&&n.index!==t;)n=n.parent;return t===(null!==n?n.index:-1)}return this._appliesToNextNode}},{key:\"matchTNode\",value:function(e,t){if(Array.isArray(this.metadata.predicate))for(var n=this.metadata.predicate,r=0;r0)i.push(s[l/2]);else{for(var c=o[l+1],d=n[-u],h=9;h0&&(i=setTimeout((function(){r._callbacks=r._callbacks.filter((function(e){return e.timeoutId!==i})),e(r._didWork,r.getPendingTasks())}),t)),this._callbacks.push({doneCb:e,timeoutId:i,updateCb:n})}},{key:\"whenStable\",value:function(e,t,n){if(n&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is \"zone.js/dist/task-tracking.js\" loaded?');this.addCallback(e,t,n),this._runCallbacksIfReady()}},{key:\"getPendingRequestCount\",value:function(){return this._pendingCount}},{key:\"findProviders\",value:function(e,t,n){return[]}}]),e}();return e.\\u0275fac=function(t){return new(t||e)(et(cc))},e.\\u0275prov=_e({token:e,factory:e.\\u0275fac}),e}(),bc=function(){var e=function(){function e(){_classCallCheck(this,e),this._applications=new Map,kc.addToWindow(this)}return _createClass(e,[{key:\"registerApplication\",value:function(e,t){this._applications.set(e,t)}},{key:\"unregisterApplication\",value:function(e){this._applications.delete(e)}},{key:\"unregisterAllApplications\",value:function(){this._applications.clear()}},{key:\"getTestability\",value:function(e){return this._applications.get(e)||null}},{key:\"getAllTestabilities\",value:function(){return Array.from(this._applications.values())}},{key:\"getAllRootElements\",value:function(){return Array.from(this._applications.keys())}},{key:\"findTestabilityInTree\",value:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return kc.findTestabilityInTree(this,e,t)}}]),e}();return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=_e({token:e,factory:e.\\u0275fac}),e}(),kc=new(function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"addToWindow\",value:function(e){}},{key:\"findTestabilityInTree\",value:function(e,t,n){return null}}]),e}()),wc=function(e,t,n){var r=new gu(n);if(0===yo.size)return Promise.resolve(r);var i,a,o=(i=e.get(sc,[]).concat(t).map((function(e){return e.providers})),a=[],i.forEach((function(e){return e&&a.push.apply(a,_toConsumableArray(e))})),a);if(0===o.length)return Promise.resolve(r);var s=function(){var e=Re.ng;if(!e||!e.\\u0275compilerFacade)throw new Error(\"Angular JIT compilation failed: '@angular/compiler' not loaded!\\n - JIT compilation is discouraged for production use-cases! Consider AOT mode instead.\\n - Did you bootstrap using '@angular/platform-browser-dynamic' or '@angular/platform-server'?\\n - Alternatively provide the compiler with 'import \\\"@angular/compiler\\\";' before bootstrapping.\");return e.\\u0275compilerFacade}(),l=vo.create({providers:o}).get(s.ResourceLoader);return function(e){var t=[],n=new Map;function r(e){var t=n.get(e);if(!t){var r=function(e){return Promise.resolve(l.get(e))}(e);n.set(e,t=r.then(ko))}return t}return yo.forEach((function(e,n){var i=[];e.templateUrl&&i.push(r(e.templateUrl).then((function(t){e.template=t})));var a=e.styleUrls,o=e.styles||(e.styles=[]),s=e.styles.length;a&&a.forEach((function(t,n){o.push(\"\"),i.push(r(t).then((function(r){o[s+n]=r,a.splice(a.indexOf(t),1),0==a.length&&(e.styleUrls=void 0)})))}));var l=Promise.all(i).then((function(){return function(e){bo.delete(e)}(n)}));t.push(l)})),yo=new Map,Promise.all(t).then((function(){}))}().then((function(){return r}))},Cc=new Be(\"AllowMultipleToken\"),Mc=function e(t,n){_classCallCheck(this,e),this.name=t,this.token=n};function Sc(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],r=\"Platform: \".concat(t),i=new Be(r);return function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],a=Lc();if(!a||a.injector.get(Cc,!1))if(e)e(n.concat(t).concat({provide:i,useValue:!0}));else{var o=n.concat(t).concat({provide:i,useValue:!0},{provide:no,useValue:\"platform\"});!function(e){if(vc&&!vc.destroyed&&!vc.injector.get(Cc,!1))throw new Error(\"There can be only one platform. Destroy the previous one to create a new one.\");vc=e.get(Tc);var t=e.get(Gu,null);t&&t.forEach((function(e){return e()}))}(vo.create({providers:o,name:r}))}return function(e){var t=Lc();if(!t)throw new Error(\"No platform exists!\");if(!t.injector.get(e,null))throw new Error(\"A platform with a different configuration has been created. Please destroy it first.\");return t}(i)}}function Lc(){return vc&&!vc.destroyed?vc:null}var Tc=function(){var e=function(){function e(t){_classCallCheck(this,e),this._injector=t,this._modules=[],this._destroyListeners=[],this._destroyed=!1}return _createClass(e,[{key:\"bootstrapModuleFactory\",value:function(e,t){var n,r,i=this,a=(n=t?t.ngZone:void 0,r=t&&t.ngZoneEventCoalescing||!1,\"noop\"===n?new gc:(\"zone.js\"===n?void 0:n)||new cc({enableLongStackTrace:Lr(),shouldCoalesceEventChangeDetection:r})),o=[{provide:cc,useValue:a}];return a.run((function(){var t=vo.create({providers:o,parent:i.injector,name:e.moduleType.name}),n=e.create(t),r=n.injector.get(mr,null);if(!r)throw new Error(\"No ErrorHandler. Is platform module (BrowserModule) included?\");return n.onDestroy((function(){return Yc(i._modules,n)})),a.runOutsideAngular((function(){return a.onError.subscribe({next:function(e){r.handleError(e)}})})),function(e,t,r){try{var a=((o=n.injector.get(Wu)).runInitializers(),o.donePromise.then((function(){return pu(n.injector.get(Zu,\"en-US\")||\"en-US\"),i._moduleDoBootstrap(n),n})));return Uo(a)?a.catch((function(n){throw t.runOutsideAngular((function(){return e.handleError(n)})),n})):a}catch(s){throw t.runOutsideAngular((function(){return e.handleError(s)})),s}var o}(r,a)}))}},{key:\"bootstrapModule\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],r=xc({},n);return wc(this.injector,r,e).then((function(e){return t.bootstrapModuleFactory(e,r)}))}},{key:\"_moduleDoBootstrap\",value:function(e){var t=e.injector.get(Oc);if(e._bootstrapComponents.length>0)e._bootstrapComponents.forEach((function(e){return t.bootstrap(e)}));else{if(!e.instance.ngDoBootstrap)throw new Error(\"The module \".concat(Le(e.instance.constructor),' was bootstrapped, but it does not declare \"@NgModule.bootstrap\" components nor a \"ngDoBootstrap\" method. ')+\"Please define one of these.\");e.instance.ngDoBootstrap(t)}this._modules.push(e)}},{key:\"onDestroy\",value:function(e){this._destroyListeners.push(e)}},{key:\"destroy\",value:function(){if(this._destroyed)throw new Error(\"The platform has already been destroyed!\");this._modules.slice().forEach((function(e){return e.destroy()})),this._destroyListeners.forEach((function(e){return e()})),this._destroyed=!0}},{key:\"injector\",get:function(){return this._injector}},{key:\"destroyed\",get:function(){return this._destroyed}}]),e}();return e.\\u0275fac=function(t){return new(t||e)(et(vo))},e.\\u0275prov=_e({token:e,factory:e.\\u0275fac}),e}();function xc(e,t){return Array.isArray(t)?t.reduce(xc,e):Object.assign(Object.assign({},e),t)}var Dc,Oc=((Dc=function(){function e(t,n,r,i,a,o){var s=this;_classCallCheck(this,e),this._zone=t,this._console=n,this._injector=r,this._exceptionHandler=i,this._componentFactoryResolver=a,this._initStatus=o,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._enforceNoNewChanges=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._enforceNoNewChanges=Lr(),this._zone.onMicrotaskEmpty.subscribe({next:function(){s._zone.run((function(){s.tick()}))}});var l=new w((function(e){s._stable=s._zone.isStable&&!s._zone.hasPendingMacrotasks&&!s._zone.hasPendingMicrotasks,s._zone.runOutsideAngular((function(){e.next(s._stable),e.complete()}))})),u=new w((function(e){var t;s._zone.runOutsideAngular((function(){t=s._zone.onStable.subscribe((function(){cc.assertNotInAngularZone(),uc((function(){s._stable||s._zone.hasPendingMacrotasks||s._zone.hasPendingMicrotasks||(s._stable=!0,e.next(!0))}))}))}));var n=s._zone.onUnstable.subscribe((function(){cc.assertInAngularZone(),s._stable&&(s._stable=!1,s._zone.runOutsideAngular((function(){e.next(!1)})))}));return function(){t.unsubscribe(),n.unsubscribe()}}));this.isStable=K(l,u.pipe(oe()))}return _createClass(e,[{key:\"bootstrap\",value:function(e,t){var n,r=this;if(!this._initStatus.done)throw new Error(\"Cannot bootstrap as there are still asynchronous initializers running. Bootstrap components in the `ngDoBootstrap` method of the root module.\");n=e instanceof Js?e:this._componentFactoryResolver.resolveComponentFactory(e),this.componentTypes.push(n.componentType);var i=n.isBoundToModule?void 0:this._injector.get(at),a=n.create(vo.NULL,[],t||n.selector,i);a.onDestroy((function(){r._unloadComponent(a)}));var o=a.injector.get(yc,null);return o&&a.injector.get(bc).registerApplication(a.location.nativeElement,o),this._loadComponent(a),Lr()&&this._console.log(\"Angular is running in the development mode. Call enableProdMode() to enable the production mode.\"),a}},{key:\"tick\",value:function(){var e=this;if(this._runningTick)throw new Error(\"ApplicationRef.tick is called recursively\");try{this._runningTick=!0;var t,n=_createForOfIteratorHelper(this._views);try{for(n.s();!(t=n.n()).done;)t.value.detectChanges()}catch(a){n.e(a)}finally{n.f()}if(this._enforceNoNewChanges){var r,i=_createForOfIteratorHelper(this._views);try{for(i.s();!(r=i.n()).done;)r.value.checkNoChanges()}catch(a){i.e(a)}finally{i.f()}}}catch(o){this._zone.runOutsideAngular((function(){return e._exceptionHandler.handleError(o)}))}finally{this._runningTick=!1}}},{key:\"attachView\",value:function(e){var t=e;this._views.push(t),t.attachToAppRef(this)}},{key:\"detachView\",value:function(e){var t=e;Yc(this._views,t),t.detachFromAppRef()}},{key:\"_loadComponent\",value:function(e){this.attachView(e.hostView),this.tick(),this.components.push(e),this._injector.get(Ju,[]).concat(this._bootstrapListeners).forEach((function(t){return t(e)}))}},{key:\"_unloadComponent\",value:function(e){this.detachView(e.hostView),Yc(this.components,e)}},{key:\"ngOnDestroy\",value:function(){this._views.slice().forEach((function(e){return e.destroy()}))}},{key:\"viewCount\",get:function(){return this._views.length}}]),e}()).\\u0275fac=function(e){return new(e||Dc)(et(cc),et(Ku),et(vo),et(mr),et(Zs),et(Wu))},Dc.\\u0275prov=_e({token:Dc,factory:Dc.\\u0275fac}),Dc);function Yc(e,t){var n=e.indexOf(t);n>-1&&e.splice(n,1)}var Ec=function e(){_classCallCheck(this,e)},Ic=function e(){_classCallCheck(this,e)},Ac={factoryPathPrefix:\"\",factoryPathSuffix:\".ngfactory\"},Pc=function(){var e=function(){function e(t,n){_classCallCheck(this,e),this._compiler=t,this._config=n||Ac}return _createClass(e,[{key:\"load\",value:function(e){return this.loadAndCompile(e)}},{key:\"loadAndCompile\",value:function(e){var t=this,r=_slicedToArray(e.split(\"#\"),2),i=r[0],a=r[1];return void 0===a&&(a=\"default\"),n(\"zn8P\")(i).then((function(e){return e[a]})).then((function(e){return jc(e,i,a)})).then((function(e){return t._compiler.compileModuleAsync(e)}))}},{key:\"loadFactory\",value:function(e){var t=_slicedToArray(e.split(\"#\"),2),r=t[0],i=t[1],a=\"NgFactory\";return void 0===i&&(i=\"default\",a=\"\"),n(\"zn8P\")(this._config.factoryPathPrefix+r+this._config.factoryPathSuffix).then((function(e){return e[i+a]})).then((function(e){return jc(e,r,i)}))}}]),e}();return e.\\u0275fac=function(t){return new(t||e)(et(oc),et(Ic,8))},e.\\u0275prov=_e({token:e,factory:e.\\u0275fac}),e}();function jc(e,t,n){if(!e)throw new Error(\"Cannot find '\".concat(n,\"' in '\").concat(t,\"'\"));return e}var Rc=Sc(null,\"core\",[{provide:$u,useValue:\"unknown\"},{provide:Tc,deps:[vo]},{provide:bc,deps:[]},{provide:Ku,deps:[]}]),Hc=[{provide:Oc,useClass:Oc,deps:[cc,Ku,vo,mr,Zs,Wu]},{provide:Dl,deps:[cc],useFactory:function(e){var t=[];return e.onStable.subscribe((function(){for(;t.length;)t.pop()()})),function(e){t.push(e)}}},{provide:Wu,useClass:Wu,deps:[[new ce,Vu]]},{provide:oc,useClass:oc,deps:[]},Bu,{provide:vl,useFactory:function(){return bl},deps:[]},{provide:gl,useFactory:function(){return kl},deps:[]},{provide:Zu,useFactory:function(e){return pu(e=e||\"undefined\"!=typeof $localize&&$localize.locale||\"en-US\"),e},deps:[[new ue(Zu),new ce,new he]]},{provide:Qu,useValue:\"USD\"}],Fc=function(){var e=function e(t){_classCallCheck(this,e)};return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=ve({factory:function(t){return new(t||e)(et(Oc))},providers:Hc}),e}(),Nc=null;function zc(){return Nc}var Vc,Wc=new Be(\"DocumentToken\"),Uc=((Vc=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Vc)},Vc.\\u0275prov=_e({factory:Bc,token:Vc,providedIn:\"platform\"}),Vc);function Bc(){return et($c)}var qc,Gc=new Be(\"Location Initialized\"),$c=((qc=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this))._doc=e,r._init(),r}return _createClass(n,[{key:\"_init\",value:function(){this.location=zc().getLocation(),this._history=zc().getHistory()}},{key:\"getBaseHrefFromDOM\",value:function(){return zc().getBaseHref(this._doc)}},{key:\"onPopState\",value:function(e){zc().getGlobalEventTarget(this._doc,\"window\").addEventListener(\"popstate\",e,!1)}},{key:\"onHashChange\",value:function(e){zc().getGlobalEventTarget(this._doc,\"window\").addEventListener(\"hashchange\",e,!1)}},{key:\"pushState\",value:function(e,t,n){Jc()?this._history.pushState(e,t,n):this.location.hash=n}},{key:\"replaceState\",value:function(e,t,n){Jc()?this._history.replaceState(e,t,n):this.location.hash=n}},{key:\"forward\",value:function(){this._history.forward()}},{key:\"back\",value:function(){this._history.back()}},{key:\"getState\",value:function(){return this._history.state}},{key:\"href\",get:function(){return this.location.href}},{key:\"protocol\",get:function(){return this.location.protocol}},{key:\"hostname\",get:function(){return this.location.hostname}},{key:\"port\",get:function(){return this.location.port}},{key:\"pathname\",get:function(){return this.location.pathname},set:function(e){this.location.pathname=e}},{key:\"search\",get:function(){return this.location.search}},{key:\"hash\",get:function(){return this.location.hash}}]),n}(Uc)).\\u0275fac=function(e){return new(e||qc)(et(Wc))},qc.\\u0275prov=_e({factory:Kc,token:qc,providedIn:\"platform\"}),qc);function Jc(){return!!window.history.pushState}function Kc(){return new $c(et(Wc))}function Zc(e,t){if(0==e.length)return t;if(0==t.length)return e;var n=0;return e.endsWith(\"/\")&&n++,t.startsWith(\"/\")&&n++,2==n?e+t.substring(1):1==n?e+t:e+\"/\"+t}function Qc(e){var t=e.match(/#|\\?|$/),n=t&&t.index||e.length;return e.slice(0,n-(\"/\"===e[n-1]?1:0))+e.slice(n)}function Xc(e){return e&&\"?\"!==e[0]?\"?\"+e:e}var ed,td=((ed=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||ed)},ed.\\u0275prov=_e({factory:nd,token:ed,providedIn:\"root\"}),ed);function nd(e){var t=et(Wc).location;return new sd(et(Uc),t&&t.origin||\"\")}var rd,id,ad,od=new Be(\"appBaseHref\"),sd=((ad=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;if(_classCallCheck(this,n),(i=t.call(this))._platformLocation=e,null==r&&(r=i._platformLocation.getBaseHrefFromDOM()),null==r)throw new Error(\"No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.\");return i._baseHref=r,_possibleConstructorReturn(i)}return _createClass(n,[{key:\"onPopState\",value:function(e){this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e)}},{key:\"getBaseHref\",value:function(){return this._baseHref}},{key:\"prepareExternalUrl\",value:function(e){return Zc(this._baseHref,e)}},{key:\"path\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=this._platformLocation.pathname+Xc(this._platformLocation.search),n=this._platformLocation.hash;return n&&e?\"\".concat(t).concat(n):t}},{key:\"pushState\",value:function(e,t,n,r){var i=this.prepareExternalUrl(n+Xc(r));this._platformLocation.pushState(e,t,i)}},{key:\"replaceState\",value:function(e,t,n,r){var i=this.prepareExternalUrl(n+Xc(r));this._platformLocation.replaceState(e,t,i)}},{key:\"forward\",value:function(){this._platformLocation.forward()}},{key:\"back\",value:function(){this._platformLocation.back()}}]),n}(td)).\\u0275fac=function(e){return new(e||ad)(et(Uc),et(od,8))},ad.\\u0275prov=_e({token:ad,factory:ad.\\u0275fac}),ad),ld=((id=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this))._platformLocation=e,i._baseHref=\"\",null!=r&&(i._baseHref=r),i}return _createClass(n,[{key:\"onPopState\",value:function(e){this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e)}},{key:\"getBaseHref\",value:function(){return this._baseHref}},{key:\"path\",value:function(){arguments.length>0&&void 0!==arguments[0]&&arguments[0];var e=this._platformLocation.hash;return null==e&&(e=\"#\"),e.length>0?e.substring(1):e}},{key:\"prepareExternalUrl\",value:function(e){var t=Zc(this._baseHref,e);return t.length>0?\"#\"+t:t}},{key:\"pushState\",value:function(e,t,n,r){var i=this.prepareExternalUrl(n+Xc(r));0==i.length&&(i=this._platformLocation.pathname),this._platformLocation.pushState(e,t,i)}},{key:\"replaceState\",value:function(e,t,n,r){var i=this.prepareExternalUrl(n+Xc(r));0==i.length&&(i=this._platformLocation.pathname),this._platformLocation.replaceState(e,t,i)}},{key:\"forward\",value:function(){this._platformLocation.forward()}},{key:\"back\",value:function(){this._platformLocation.back()}}]),n}(td)).\\u0275fac=function(e){return new(e||id)(et(Uc),et(od,8))},id.\\u0275prov=_e({token:id,factory:id.\\u0275fac}),id),ud=((rd=function(){function e(t,n){var r=this;_classCallCheck(this,e),this._subject=new bu,this._urlChangeListeners=[],this._platformStrategy=t;var i=this._platformStrategy.getBaseHref();this._platformLocation=n,this._baseHref=Qc(dd(i)),this._platformStrategy.onPopState((function(e){r._subject.emit({url:r.path(!0),pop:!0,state:e.state,type:e.type})}))}return _createClass(e,[{key:\"path\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return this.normalize(this._platformStrategy.path(e))}},{key:\"getState\",value:function(){return this._platformLocation.getState()}},{key:\"isCurrentPathEqualTo\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\";return this.path()==this.normalize(e+Xc(t))}},{key:\"normalize\",value:function(t){return e.stripTrailingSlash(function(e,t){return e&&t.startsWith(e)?t.substring(e.length):t}(this._baseHref,dd(t)))}},{key:\"prepareExternalUrl\",value:function(e){return e&&\"/\"!==e[0]&&(e=\"/\"+e),this._platformStrategy.prepareExternalUrl(e)}},{key:\"go\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;this._platformStrategy.pushState(n,\"\",e,t),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+Xc(t)),n)}},{key:\"replaceState\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;this._platformStrategy.replaceState(n,\"\",e,t),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+Xc(t)),n)}},{key:\"forward\",value:function(){this._platformStrategy.forward()}},{key:\"back\",value:function(){this._platformStrategy.back()}},{key:\"onUrlChange\",value:function(e){var t=this;this._urlChangeListeners.push(e),this.subscribe((function(e){t._notifyUrlChangeListeners(e.url,e.state)}))}},{key:\"_notifyUrlChangeListeners\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\",t=arguments.length>1?arguments[1]:void 0;this._urlChangeListeners.forEach((function(n){return n(e,t)}))}},{key:\"subscribe\",value:function(e,t,n){return this._subject.subscribe({next:e,error:t,complete:n})}}]),e}()).\\u0275fac=function(e){return new(e||rd)(et(td),et(Uc))},rd.normalizeQueryParams=Xc,rd.joinWithSlash=Zc,rd.stripTrailingSlash=Qc,rd.\\u0275prov=_e({factory:cd,token:rd,providedIn:\"root\"}),rd);function cd(){return new ud(et(td),et(Uc))}function dd(e){return e.replace(/\\/index.html$/,\"\")}var hd,fd=function(){var e={Zero:0,One:1,Two:2,Few:3,Many:4,Other:5};return e[e.Zero]=\"Zero\",e[e.One]=\"One\",e[e.Two]=\"Two\",e[e.Few]=\"Few\",e[e.Many]=\"Many\",e[e.Other]=\"Other\",e}(),md=Pl,pd=function e(){_classCallCheck(this,e)},_d=((hd=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this)).locale=e,r}return _createClass(n,[{key:\"getPluralCategory\",value:function(e,t){switch(md(t||this.locale)(e)){case fd.Zero:return\"zero\";case fd.One:return\"one\";case fd.Two:return\"two\";case fd.Few:return\"few\";case fd.Many:return\"many\";default:return\"other\"}}}]),n}(pd)).\\u0275fac=function(e){return new(e||hd)(et(Zu))},hd.\\u0275prov=_e({token:hd,factory:hd.\\u0275fac}),hd);function vd(e,t){t=encodeURIComponent(t);var n,r=_createForOfIteratorHelper(e.split(\";\"));try{for(r.s();!(n=r.n()).done;){var i=n.value,a=i.indexOf(\"=\"),o=_slicedToArray(-1==a?[i,\"\"]:[i.slice(0,a),i.slice(a+1)],2),s=o[0],l=o[1];if(s.trim()===t)return decodeURIComponent(l)}}catch(u){r.e(u)}finally{r.f()}return null}var gd,yd,bd,kd=((gd=function(){function e(t,n,r,i){_classCallCheck(this,e),this._iterableDiffers=t,this._keyValueDiffers=n,this._ngEl=r,this._renderer=i,this._iterableDiffer=null,this._keyValueDiffer=null,this._initialClasses=[],this._rawClass=null}return _createClass(e,[{key:\"ngDoCheck\",value:function(){if(this._iterableDiffer){var e=this._iterableDiffer.diff(this._rawClass);e&&this._applyIterableChanges(e)}else if(this._keyValueDiffer){var t=this._keyValueDiffer.diff(this._rawClass);t&&this._applyKeyValueChanges(t)}}},{key:\"_applyKeyValueChanges\",value:function(e){var t=this;e.forEachAddedItem((function(e){return t._toggleClass(e.key,e.currentValue)})),e.forEachChangedItem((function(e){return t._toggleClass(e.key,e.currentValue)})),e.forEachRemovedItem((function(e){e.previousValue&&t._toggleClass(e.key,!1)}))}},{key:\"_applyIterableChanges\",value:function(e){var t=this;e.forEachAddedItem((function(e){if(\"string\"!=typeof e.item)throw new Error(\"NgClass can only toggle CSS classes expressed as strings, got \".concat(Le(e.item)));t._toggleClass(e.item,!0)})),e.forEachRemovedItem((function(e){return t._toggleClass(e.item,!1)}))}},{key:\"_applyClasses\",value:function(e){var t=this;e&&(Array.isArray(e)||e instanceof Set?e.forEach((function(e){return t._toggleClass(e,!0)})):Object.keys(e).forEach((function(n){return t._toggleClass(n,!!e[n])})))}},{key:\"_removeClasses\",value:function(e){var t=this;e&&(Array.isArray(e)||e instanceof Set?e.forEach((function(e){return t._toggleClass(e,!1)})):Object.keys(e).forEach((function(e){return t._toggleClass(e,!1)})))}},{key:\"_toggleClass\",value:function(e,t){var n=this;(e=e.trim())&&e.split(/\\s+/g).forEach((function(e){t?n._renderer.addClass(n._ngEl.nativeElement,e):n._renderer.removeClass(n._ngEl.nativeElement,e)}))}},{key:\"klass\",set:function(e){this._removeClasses(this._initialClasses),this._initialClasses=\"string\"==typeof e?e.split(/\\s+/):[],this._applyClasses(this._initialClasses),this._applyClasses(this._rawClass)}},{key:\"ngClass\",set:function(e){this._removeClasses(this._rawClass),this._applyClasses(this._initialClasses),this._iterableDiffer=null,this._keyValueDiffer=null,this._rawClass=\"string\"==typeof e?e.split(/\\s+/):e,this._rawClass&&(Lo(this._rawClass)?this._iterableDiffer=this._iterableDiffers.find(this._rawClass).create():this._keyValueDiffer=this._keyValueDiffers.find(this._rawClass).create())}}]),e}()).\\u0275fac=function(e){return new(e||gd)(Io(vl),Io(gl),Io(Qs),Io(nl))},gd.\\u0275dir=Lt({type:gd,selectors:[[\"\",\"ngClass\",\"\"]],inputs:{klass:[\"class\",\"klass\"],ngClass:\"ngClass\"}}),gd),wd=function(){function e(t,n,r,i){_classCallCheck(this,e),this.$implicit=t,this.ngForOf=n,this.index=r,this.count=i}return _createClass(e,[{key:\"first\",get:function(){return 0===this.index}},{key:\"last\",get:function(){return this.index===this.count-1}},{key:\"even\",get:function(){return this.index%2==0}},{key:\"odd\",get:function(){return!this.even}}]),e}(),Cd=((yd=function(){function e(t,n,r){_classCallCheck(this,e),this._viewContainer=t,this._template=n,this._differs=r,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}return _createClass(e,[{key:\"ngDoCheck\",value:function(){if(this._ngForOfDirty){this._ngForOfDirty=!1;var e=this._ngForOf;if(!this._differ&&e)try{this._differ=this._differs.find(e).create(this.ngForTrackBy)}catch(r){throw new Error(\"Cannot find a differ supporting object '\".concat(e,\"' of type '\").concat((t=e).name||typeof t,\"'. NgFor only supports binding to Iterables such as Arrays.\"))}}var t;if(this._differ){var n=this._differ.diff(this._ngForOf);n&&this._applyChanges(n)}}},{key:\"_applyChanges\",value:function(e){var t=this,n=[];e.forEachOperation((function(e,r,i){if(null==e.previousIndex){var a=t._viewContainer.createEmbeddedView(t._template,new wd(null,t._ngForOf,-1,-1),null===i?void 0:i),o=new Md(e,a);n.push(o)}else if(null==i)t._viewContainer.remove(null===r?void 0:r);else if(null!==r){var s=t._viewContainer.get(r);t._viewContainer.move(s,i);var l=new Md(e,s);n.push(l)}}));for(var r=0;r0){var r=e.slice(0,t),i=r.toLowerCase(),a=e.slice(t+1).trim();n.maybeSetNormalizedName(r,i),n.headers.has(i)?n.headers.get(i).push(a):n.headers.set(i,[a])}}))}:function(){n.headers=new Map,Object.keys(t).forEach((function(e){var r=t[e],i=e.toLowerCase();\"string\"==typeof r&&(r=[r]),r.length>0&&(n.headers.set(i,r),n.maybeSetNormalizedName(e,i))}))}:this.headers=new Map}return _createClass(e,[{key:\"has\",value:function(e){return this.init(),this.headers.has(e.toLowerCase())}},{key:\"get\",value:function(e){this.init();var t=this.headers.get(e.toLowerCase());return t&&t.length>0?t[0]:null}},{key:\"keys\",value:function(){return this.init(),Array.from(this.normalizedNames.values())}},{key:\"getAll\",value:function(e){return this.init(),this.headers.get(e.toLowerCase())||null}},{key:\"append\",value:function(e,t){return this.clone({name:e,value:t,op:\"a\"})}},{key:\"set\",value:function(e,t){return this.clone({name:e,value:t,op:\"s\"})}},{key:\"delete\",value:function(e,t){return this.clone({name:e,value:t,op:\"d\"})}},{key:\"maybeSetNormalizedName\",value:function(e,t){this.normalizedNames.has(t)||this.normalizedNames.set(t,e)}},{key:\"init\",value:function(){var t=this;this.lazyInit&&(this.lazyInit instanceof e?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach((function(e){return t.applyUpdate(e)})),this.lazyUpdate=null))}},{key:\"copyFrom\",value:function(e){var t=this;e.init(),Array.from(e.headers.keys()).forEach((function(n){t.headers.set(n,e.headers.get(n)),t.normalizedNames.set(n,e.normalizedNames.get(n))}))}},{key:\"clone\",value:function(t){var n=new e;return n.lazyInit=this.lazyInit&&this.lazyInit instanceof e?this.lazyInit:this,n.lazyUpdate=(this.lazyUpdate||[]).concat([t]),n}},{key:\"applyUpdate\",value:function(e){var t=e.name.toLowerCase();switch(e.op){case\"a\":case\"s\":var n=e.value;if(\"string\"==typeof n&&(n=[n]),0===n.length)return;this.maybeSetNormalizedName(e.name,t);var r=(\"a\"===e.op?this.headers.get(t):void 0)||[];r.push.apply(r,_toConsumableArray(n)),this.headers.set(t,r);break;case\"d\":var i=e.value;if(i){var a=this.headers.get(t);if(!a)return;0===(a=a.filter((function(e){return-1===i.indexOf(e)}))).length?(this.headers.delete(t),this.normalizedNames.delete(t)):this.headers.set(t,a)}else this.headers.delete(t),this.normalizedNames.delete(t)}}},{key:\"forEach\",value:function(e){var t=this;this.init(),Array.from(this.normalizedNames.keys()).forEach((function(n){return e(t.normalizedNames.get(n),t.headers.get(n))}))}}]),e}(),Xd=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"encodeKey\",value:function(e){return eh(e)}},{key:\"encodeValue\",value:function(e){return eh(e)}},{key:\"decodeKey\",value:function(e){return decodeURIComponent(e)}},{key:\"decodeValue\",value:function(e){return decodeURIComponent(e)}}]),e}();function eh(e){return encodeURIComponent(e).replace(/%40/gi,\"@\").replace(/%3A/gi,\":\").replace(/%24/gi,\"$\").replace(/%2C/gi,\",\").replace(/%3B/gi,\";\").replace(/%2B/gi,\"+\").replace(/%3D/gi,\"=\").replace(/%3F/gi,\"?\").replace(/%2F/gi,\"/\")}var th=function(){function e(){var t=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(_classCallCheck(this,e),this.updates=null,this.cloneFrom=null,this.encoder=n.encoder||new Xd,n.fromString){if(n.fromObject)throw new Error(\"Cannot specify both fromString and fromObject.\");this.map=function(e,t){var n=new Map;return e.length>0&&e.split(\"&\").forEach((function(e){var r=e.indexOf(\"=\"),i=_slicedToArray(-1==r?[t.decodeKey(e),\"\"]:[t.decodeKey(e.slice(0,r)),t.decodeValue(e.slice(r+1))],2),a=i[0],o=i[1],s=n.get(a)||[];s.push(o),n.set(a,s)})),n}(n.fromString,this.encoder)}else n.fromObject?(this.map=new Map,Object.keys(n.fromObject).forEach((function(e){var r=n.fromObject[e];t.map.set(e,Array.isArray(r)?r:[r])}))):this.map=null}return _createClass(e,[{key:\"has\",value:function(e){return this.init(),this.map.has(e)}},{key:\"get\",value:function(e){this.init();var t=this.map.get(e);return t?t[0]:null}},{key:\"getAll\",value:function(e){return this.init(),this.map.get(e)||null}},{key:\"keys\",value:function(){return this.init(),Array.from(this.map.keys())}},{key:\"append\",value:function(e,t){return this.clone({param:e,value:t,op:\"a\"})}},{key:\"set\",value:function(e,t){return this.clone({param:e,value:t,op:\"s\"})}},{key:\"delete\",value:function(e,t){return this.clone({param:e,value:t,op:\"d\"})}},{key:\"toString\",value:function(){var e=this;return this.init(),this.keys().map((function(t){var n=e.encoder.encodeKey(t);return e.map.get(t).map((function(t){return n+\"=\"+e.encoder.encodeValue(t)})).join(\"&\")})).filter((function(e){return\"\"!==e})).join(\"&\")}},{key:\"clone\",value:function(t){var n=new e({encoder:this.encoder});return n.cloneFrom=this.cloneFrom||this,n.updates=(this.updates||[]).concat([t]),n}},{key:\"init\",value:function(){var e=this;null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach((function(t){return e.map.set(t,e.cloneFrom.map.get(t))})),this.updates.forEach((function(t){switch(t.op){case\"a\":case\"s\":var n=(\"a\"===t.op?e.map.get(t.param):void 0)||[];n.push(t.value),e.map.set(t.param,n);break;case\"d\":if(void 0===t.value){e.map.delete(t.param);break}var r=e.map.get(t.param)||[],i=r.indexOf(t.value);-1!==i&&r.splice(i,1),r.length>0?e.map.set(t.param,r):e.map.delete(t.param)}})),this.cloneFrom=this.updates=null)}}]),e}();function nh(e){return\"undefined\"!=typeof ArrayBuffer&&e instanceof ArrayBuffer}function rh(e){return\"undefined\"!=typeof Blob&&e instanceof Blob}function ih(e){return\"undefined\"!=typeof FormData&&e instanceof FormData}var ah=function(){function e(t,n,r,i){var a;if(_classCallCheck(this,e),this.url=n,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType=\"json\",this.method=t.toUpperCase(),function(e){switch(e){case\"DELETE\":case\"GET\":case\"HEAD\":case\"OPTIONS\":case\"JSONP\":return!1;default:return!0}}(this.method)||i?(this.body=void 0!==r?r:null,a=i):a=r,a&&(this.reportProgress=!!a.reportProgress,this.withCredentials=!!a.withCredentials,a.responseType&&(this.responseType=a.responseType),a.headers&&(this.headers=a.headers),a.params&&(this.params=a.params)),this.headers||(this.headers=new Qd),this.params){var o=this.params.toString();if(0===o.length)this.urlWithParams=n;else{var s=n.indexOf(\"?\");this.urlWithParams=n+(-1===s?\"?\":s0&&void 0!==arguments[0]?arguments[0]:{},n=t.method||this.method,r=t.url||this.url,i=t.responseType||this.responseType,a=void 0!==t.body?t.body:this.body,o=void 0!==t.withCredentials?t.withCredentials:this.withCredentials,s=void 0!==t.reportProgress?t.reportProgress:this.reportProgress,l=t.headers||this.headers,u=t.params||this.params;return void 0!==t.setHeaders&&(l=Object.keys(t.setHeaders).reduce((function(e,n){return e.set(n,t.setHeaders[n])}),l)),t.setParams&&(u=Object.keys(t.setParams).reduce((function(e,n){return e.set(n,t.setParams[n])}),u)),new e(n,r,a,{params:u,headers:l,reportProgress:s,responseType:i,withCredentials:o})}}]),e}(),oh=function(){var e={Sent:0,UploadProgress:1,ResponseHeader:2,DownloadProgress:3,Response:4,User:5};return e[e.Sent]=\"Sent\",e[e.UploadProgress]=\"UploadProgress\",e[e.ResponseHeader]=\"ResponseHeader\",e[e.DownloadProgress]=\"DownloadProgress\",e[e.Response]=\"Response\",e[e.User]=\"User\",e}(),sh=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:200,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:\"OK\";_classCallCheck(this,e),this.headers=t.headers||new Qd,this.status=void 0!==t.status?t.status:n,this.statusText=t.statusText||r,this.url=t.url||null,this.ok=this.status>=200&&this.status<300},lh=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return _classCallCheck(this,n),(e=t.call(this,r)).type=oh.ResponseHeader,e}return _createClass(n,[{key:\"clone\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new n({headers:e.headers||this.headers,status:void 0!==e.status?e.status:this.status,statusText:e.statusText||this.statusText,url:e.url||this.url||void 0})}}]),n}(sh),uh=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return _classCallCheck(this,n),(e=t.call(this,r)).type=oh.Response,e.body=void 0!==r.body?r.body:null,e}return _createClass(n,[{key:\"clone\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new n({body:void 0!==e.body?e.body:this.body,headers:e.headers||this.headers,status:void 0!==e.status?e.status:this.status,statusText:e.statusText||this.statusText,url:e.url||this.url||void 0})}}]),n}(sh),ch=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this,e,0,\"Unknown Error\")).name=\"HttpErrorResponse\",r.ok=!1,r.message=r.status>=200&&r.status<300?\"Http failure during parsing for \".concat(e.url||\"(unknown url)\"):\"Http failure response for \".concat(e.url||\"(unknown url)\",\": \").concat(e.status,\" \").concat(e.statusText),r.error=e.error||null,r}return n}(sh);function dh(e,t){return{body:t,headers:e.headers,observe:e.observe,params:e.params,reportProgress:e.reportProgress,responseType:e.responseType,withCredentials:e.withCredentials}}var hh,fh,mh,ph,_h,vh,gh,yh,bh,kh=((hh=function(){function e(t){_classCallCheck(this,e),this.handler=t}return _createClass(e,[{key:\"request\",value:function(e,t){var n,r=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(e instanceof ah)n=e;else{var a=void 0;a=i.headers instanceof Qd?i.headers:new Qd(i.headers);var o=void 0;i.params&&(o=i.params instanceof th?i.params:new th({fromObject:i.params})),n=new ah(e,t,void 0!==i.body?i.body:null,{headers:a,params:o,reportProgress:i.reportProgress,responseType:i.responseType||\"json\",withCredentials:i.withCredentials})}var s=Bd(n).pipe(qd((function(e){return r.handler.handle(e)})));if(e instanceof ah||\"events\"===i.observe)return s;var l=s.pipe(Gd((function(e){return e instanceof uh})));switch(i.observe||\"body\"){case\"body\":switch(n.responseType){case\"arraybuffer\":return l.pipe(F((function(e){if(null!==e.body&&!(e.body instanceof ArrayBuffer))throw new Error(\"Response is not an ArrayBuffer.\");return e.body})));case\"blob\":return l.pipe(F((function(e){if(null!==e.body&&!(e.body instanceof Blob))throw new Error(\"Response is not a Blob.\");return e.body})));case\"text\":return l.pipe(F((function(e){if(null!==e.body&&\"string\"!=typeof e.body)throw new Error(\"Response is not a string.\");return e.body})));case\"json\":default:return l.pipe(F((function(e){return e.body})))}case\"response\":return l;default:throw new Error(\"Unreachable: unhandled observe type \".concat(i.observe,\"}\"))}}},{key:\"delete\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request(\"DELETE\",e,t)}},{key:\"get\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request(\"GET\",e,t)}},{key:\"head\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request(\"HEAD\",e,t)}},{key:\"jsonp\",value:function(e,t){return this.request(\"JSONP\",e,{params:(new th).append(t,\"JSONP_CALLBACK\"),observe:\"body\",responseType:\"json\"})}},{key:\"options\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request(\"OPTIONS\",e,t)}},{key:\"patch\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.request(\"PATCH\",e,dh(n,t))}},{key:\"post\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.request(\"POST\",e,dh(n,t))}},{key:\"put\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.request(\"PUT\",e,dh(n,t))}}]),e}()).\\u0275fac=function(e){return new(e||hh)(et(Kd))},hh.\\u0275prov=_e({token:hh,factory:hh.\\u0275fac}),hh),wh=function(){function e(t,n){_classCallCheck(this,e),this.next=t,this.interceptor=n}return _createClass(e,[{key:\"handle\",value:function(e){return this.interceptor.intercept(e,this.next)}}]),e}(),Ch=new Be(\"HTTP_INTERCEPTORS\"),Mh=((fh=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"intercept\",value:function(e,t){return t.handle(e)}}]),e}()).\\u0275fac=function(e){return new(e||fh)},fh.\\u0275prov=_e({token:fh,factory:fh.\\u0275fac}),fh),Sh=/^\\)\\]\\}',?\\n/,Lh=function e(){_classCallCheck(this,e)},Th=((ph=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"build\",value:function(){return new XMLHttpRequest}}]),e}()).\\u0275fac=function(e){return new(e||ph)},ph.\\u0275prov=_e({token:ph,factory:ph.\\u0275fac}),ph),xh=((mh=function(){function e(t){_classCallCheck(this,e),this.xhrFactory=t}return _createClass(e,[{key:\"handle\",value:function(e){var t=this;if(\"JSONP\"===e.method)throw new Error(\"Attempted to construct Jsonp request without JsonpClientModule installed.\");return new w((function(n){var r=t.xhrFactory.build();if(r.open(e.method,e.urlWithParams),e.withCredentials&&(r.withCredentials=!0),e.headers.forEach((function(e,t){return r.setRequestHeader(e,t.join(\",\"))})),e.headers.has(\"Accept\")||r.setRequestHeader(\"Accept\",\"application/json, text/plain, */*\"),!e.headers.has(\"Content-Type\")){var i=e.detectContentTypeHeader();null!==i&&r.setRequestHeader(\"Content-Type\",i)}if(e.responseType){var a=e.responseType.toLowerCase();r.responseType=\"json\"!==a?a:\"text\"}var o=e.serializeBody(),s=null,l=function(){if(null!==s)return s;var t=1223===r.status?204:r.status,n=r.statusText||\"OK\",i=new Qd(r.getAllResponseHeaders()),a=function(e){return\"responseURL\"in e&&e.responseURL?e.responseURL:/^X-Request-URL:/m.test(e.getAllResponseHeaders())?e.getResponseHeader(\"X-Request-URL\"):null}(r)||e.url;return s=new lh({headers:i,status:t,statusText:n,url:a})},u=function(){var t=l(),i=t.headers,a=t.status,o=t.statusText,s=t.url,u=null;204!==a&&(u=void 0===r.response?r.responseText:r.response),0===a&&(a=u?200:0);var c=a>=200&&a<300;if(\"json\"===e.responseType&&\"string\"==typeof u){var d=u;u=u.replace(Sh,\"\");try{u=\"\"!==u?JSON.parse(u):null}catch(h){u=d,c&&(c=!1,u={error:h,text:u})}}c?(n.next(new uh({body:u,headers:i,status:a,statusText:o,url:s||void 0})),n.complete()):n.error(new ch({error:u,headers:i,status:a,statusText:o,url:s||void 0}))},c=function(e){var t=l().url,i=new ch({error:e,status:r.status||0,statusText:r.statusText||\"Unknown Error\",url:t||void 0});n.error(i)},d=!1,h=function(t){d||(n.next(l()),d=!0);var i={type:oh.DownloadProgress,loaded:t.loaded};t.lengthComputable&&(i.total=t.total),\"text\"===e.responseType&&r.responseText&&(i.partialText=r.responseText),n.next(i)},f=function(e){var t={type:oh.UploadProgress,loaded:e.loaded};e.lengthComputable&&(t.total=e.total),n.next(t)};return r.addEventListener(\"load\",u),r.addEventListener(\"error\",c),e.reportProgress&&(r.addEventListener(\"progress\",h),null!==o&&r.upload&&r.upload.addEventListener(\"progress\",f)),r.send(o),n.next({type:oh.Sent}),function(){r.removeEventListener(\"error\",c),r.removeEventListener(\"load\",u),e.reportProgress&&(r.removeEventListener(\"progress\",h),null!==o&&r.upload&&r.upload.removeEventListener(\"progress\",f)),r.abort()}}))}}]),e}()).\\u0275fac=function(e){return new(e||mh)(et(Lh))},mh.\\u0275prov=_e({token:mh,factory:mh.\\u0275fac}),mh),Dh=new Be(\"XSRF_COOKIE_NAME\"),Oh=new Be(\"XSRF_HEADER_NAME\"),Yh=function e(){_classCallCheck(this,e)},Eh=((bh=function(){function e(t,n,r){_classCallCheck(this,e),this.doc=t,this.platform=n,this.cookieName=r,this.lastCookieString=\"\",this.lastToken=null,this.parseCount=0}return _createClass(e,[{key:\"getToken\",value:function(){if(\"server\"===this.platform)return null;var e=this.doc.cookie||\"\";return e!==this.lastCookieString&&(this.parseCount++,this.lastToken=vd(e,this.cookieName),this.lastCookieString=e),this.lastToken}}]),e}()).\\u0275fac=function(e){return new(e||bh)(et(Wc),et($u),et(Dh))},bh.\\u0275prov=_e({token:bh,factory:bh.\\u0275fac}),bh),Ih=((yh=function(){function e(t,n){_classCallCheck(this,e),this.tokenService=t,this.headerName=n}return _createClass(e,[{key:\"intercept\",value:function(e,t){var n=e.url.toLowerCase();if(\"GET\"===e.method||\"HEAD\"===e.method||n.startsWith(\"http://\")||n.startsWith(\"https://\"))return t.handle(e);var r=this.tokenService.getToken();return null===r||e.headers.has(this.headerName)||(e=e.clone({headers:e.headers.set(this.headerName,r)})),t.handle(e)}}]),e}()).\\u0275fac=function(e){return new(e||yh)(et(Yh),et(Oh))},yh.\\u0275prov=_e({token:yh,factory:yh.\\u0275fac}),yh),Ah=((gh=function(){function e(t,n){_classCallCheck(this,e),this.backend=t,this.injector=n,this.chain=null}return _createClass(e,[{key:\"handle\",value:function(e){if(null===this.chain){var t=this.injector.get(Ch,[]);this.chain=t.reduceRight((function(e,t){return new wh(e,t)}),this.backend)}return this.chain.handle(e)}}]),e}()).\\u0275fac=function(e){return new(e||gh)(et(Zd),et(vo))},gh.\\u0275prov=_e({token:gh,factory:gh.\\u0275fac}),gh),Ph=((vh=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"disable\",value:function(){return{ngModule:e,providers:[{provide:Ih,useClass:Mh}]}}},{key:\"withOptions\",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{ngModule:e,providers:[t.cookieName?{provide:Dh,useValue:t.cookieName}:[],t.headerName?{provide:Oh,useValue:t.headerName}:[]]}}}]),e}()).\\u0275mod=Mt({type:vh}),vh.\\u0275inj=ve({factory:function(e){return new(e||vh)},providers:[Ih,{provide:Ch,useExisting:Ih,multi:!0},{provide:Yh,useClass:Eh},{provide:Dh,useValue:\"XSRF-TOKEN\"},{provide:Oh,useValue:\"X-XSRF-TOKEN\"}]}),vh),jh=((_h=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:_h}),_h.\\u0275inj=ve({factory:function(e){return new(e||_h)},providers:[kh,{provide:Kd,useClass:Ah},xh,{provide:Zd,useExisting:xh},Th,{provide:Lh,useExisting:Th}],imports:[[Ph.withOptions({cookieName:\"XSRF-TOKEN\",headerName:\"X-XSRF-TOKEN\"})]]}),_h);function Rh(){for(var e=arguments.length,t=new Array(e),n=0;ne?{max:{max:e,actual:t.value}}:null}}},{key:\"required\",value:function(e){return of(e.value)?{required:!0}:null}},{key:\"requiredTrue\",value:function(e){return!0===e.value?null:{required:!0}}},{key:\"email\",value:function(e){return of(e.value)||uf.test(e.value)?null:{email:!0}}},{key:\"minLength\",value:function(e){return function(t){if(of(t.value))return null;var n=t.value?t.value.length:0;return ne?{maxlength:{requiredLength:e,actualLength:n}}:null}}},{key:\"pattern\",value:function(t){return t?(\"string\"==typeof t?(r=\"\",\"^\"!==t.charAt(0)&&(r+=\"^\"),r+=t,\"$\"!==t.charAt(t.length-1)&&(r+=\"$\"),n=new RegExp(r)):(r=t.toString(),n=t),function(e){if(of(e.value))return null;var t=e.value;return n.test(t)?null:{pattern:{requiredPattern:r,actualValue:t}}}):e.nullValidator;var n,r}},{key:\"nullValidator\",value:function(e){return null}},{key:\"compose\",value:function(e){if(!e)return null;var t=e.filter(df);return 0==t.length?null:function(e){return ff(function(e,t){return t.map((function(t){return t(e)}))}(e,t))}}},{key:\"composeAsync\",value:function(e){if(!e)return null;var t=e.filter(df);return 0==t.length?null:function(e){return Rh(function(e,t){return t.map((function(t){return t(e)}))}(e,t).map(hf)).pipe(F(ff))}}}]),e}();function df(e){return null!=e}function hf(e){var t=Uo(e)?W(e):e;if(!Bo(t))throw new Error(\"Expected validator to return Promise or Observable.\");return t}function ff(e){var t={};return e.forEach((function(e){t=null!=e?Object.assign(Object.assign({},t),e):t})),0===Object.keys(t).length?null:t}function mf(e){return e.validate?function(t){return e.validate(t)}:e}function pf(e){return e.validate?function(t){return e.validate(t)}:e}var _f,vf,gf,yf,bf,kf,wf={provide:Wh,useExisting:De((function(){return Cf})),multi:!0},Cf=((_f=function(){function e(t,n){_classCallCheck(this,e),this._renderer=t,this._elementRef=n,this.onChange=function(e){},this.onTouched=function(){}}return _createClass(e,[{key:\"writeValue\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",null==e?\"\":e)}},{key:\"registerOnChange\",value:function(e){this.onChange=function(t){e(\"\"==t?null:parseFloat(t))}}},{key:\"registerOnTouched\",value:function(e){this.onTouched=e}},{key:\"setDisabledState\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}]),e}()).\\u0275fac=function(e){return new(e||_f)(Io(nl),Io(Qs))},_f.\\u0275dir=Lt({type:_f,selectors:[[\"input\",\"type\",\"number\",\"formControlName\",\"\"],[\"input\",\"type\",\"number\",\"formControl\",\"\"],[\"input\",\"type\",\"number\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"input\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},features:[$s([wf])]}),_f),Mf={provide:Wh,useExisting:De((function(){return Lf})),multi:!0},Sf=((gf=function(){function e(){_classCallCheck(this,e),this._accessors=[]}return _createClass(e,[{key:\"add\",value:function(e,t){this._accessors.push([e,t])}},{key:\"remove\",value:function(e){for(var t=this._accessors.length-1;t>=0;--t)if(this._accessors[t][1]===e)return void this._accessors.splice(t,1)}},{key:\"select\",value:function(e){var t=this;this._accessors.forEach((function(n){t._isSameGroup(n,e)&&n[1]!==e&&n[1].fireUncheck(e.value)}))}},{key:\"_isSameGroup\",value:function(e,t){return!!e[0].control&&e[0]._parent===t._control._parent&&e[1].name===t.name}}]),e}()).\\u0275fac=function(e){return new(e||gf)},gf.\\u0275prov=_e({token:gf,factory:gf.\\u0275fac}),gf),Lf=((vf=function(){function e(t,n,r,i){_classCallCheck(this,e),this._renderer=t,this._elementRef=n,this._registry=r,this._injector=i,this.onChange=function(){},this.onTouched=function(){}}return _createClass(e,[{key:\"ngOnInit\",value:function(){this._control=this._injector.get(tf),this._checkName(),this._registry.add(this._control,this)}},{key:\"ngOnDestroy\",value:function(){this._registry.remove(this)}},{key:\"writeValue\",value:function(e){this._state=e===this.value,this._renderer.setProperty(this._elementRef.nativeElement,\"checked\",this._state)}},{key:\"registerOnChange\",value:function(e){var t=this;this._fn=e,this.onChange=function(){e(t.value),t._registry.select(t)}}},{key:\"fireUncheck\",value:function(e){this.writeValue(e)}},{key:\"registerOnTouched\",value:function(e){this.onTouched=e}},{key:\"setDisabledState\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}},{key:\"_checkName\",value:function(){this.name&&this.formControlName&&this.name!==this.formControlName&&this._throwNameError(),!this.name&&this.formControlName&&(this.name=this.formControlName)}},{key:\"_throwNameError\",value:function(){throw new Error('\\n If you define both a name and a formControlName attribute on your radio button, their values\\n must match. Ex: \\n ')}}]),e}()).\\u0275fac=function(e){return new(e||vf)(Io(nl),Io(Qs),Io(Sf),Io(vo))},vf.\\u0275dir=Lt({type:vf,selectors:[[\"input\",\"type\",\"radio\",\"formControlName\",\"\"],[\"input\",\"type\",\"radio\",\"formControl\",\"\"],[\"input\",\"type\",\"radio\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"change\",(function(){return t.onChange()}))(\"blur\",(function(){return t.onTouched()}))},inputs:{name:\"name\",formControlName:\"formControlName\",value:\"value\"},features:[$s([Mf])]}),vf),Tf={provide:Wh,useExisting:De((function(){return xf})),multi:!0},xf=((yf=function(){function e(t,n){_classCallCheck(this,e),this._renderer=t,this._elementRef=n,this.onChange=function(e){},this.onTouched=function(){}}return _createClass(e,[{key:\"writeValue\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",parseFloat(e))}},{key:\"registerOnChange\",value:function(e){this.onChange=function(t){e(\"\"==t?null:parseFloat(t))}}},{key:\"registerOnTouched\",value:function(e){this.onTouched=e}},{key:\"setDisabledState\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}]),e}()).\\u0275fac=function(e){return new(e||yf)(Io(nl),Io(Qs))},yf.\\u0275dir=Lt({type:yf,selectors:[[\"input\",\"type\",\"range\",\"formControlName\",\"\"],[\"input\",\"type\",\"range\",\"formControl\",\"\"],[\"input\",\"type\",\"range\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"input\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},features:[$s([Tf])]}),yf),Df='\\n

\\n \\n
\\n\\n In your class:\\n\\n this.myGroup = new FormGroup({\\n firstName: new FormControl()\\n });',Of='\\n
\\n
\\n \\n
\\n
\\n\\n In your class:\\n\\n this.myGroup = new FormGroup({\\n person: new FormGroup({ firstName: new FormControl() })\\n });',Yf='\\n
\\n
\\n \\n
\\n
',Ef=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"controlParentException\",value:function(){throw new Error(\"formControlName must be used with a parent formGroup directive. You'll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n \".concat(Df))}},{key:\"ngModelGroupException\",value:function(){throw new Error('formControlName cannot be used with an ngModelGroup parent. It is only compatible with parents\\n that also have a \"form\" prefix: formGroupName, formArrayName, or formGroup.\\n\\n Option 1: Update the parent to be formGroupName (reactive form strategy)\\n\\n '.concat(Of,\"\\n\\n Option 2: Use ngModel instead of formControlName (template-driven strategy)\\n\\n \").concat(Yf))}},{key:\"missingFormException\",value:function(){throw new Error(\"formGroup expects a FormGroup instance. Please pass one in.\\n\\n Example:\\n\\n \".concat(Df))}},{key:\"groupParentException\",value:function(){throw new Error(\"formGroupName must be used with a parent formGroup directive. You'll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n \".concat(Of))}},{key:\"arrayParentException\",value:function(){throw new Error('formArrayName must be used with a parent formGroup directive. You\\'ll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n \\n
\\n
\\n
\\n \\n
\\n
\\n
\\n\\n In your class:\\n\\n this.cityArray = new FormArray([new FormControl(\\'SF\\')]);\\n this.myGroup = new FormGroup({\\n cities: this.cityArray\\n });')}},{key:\"disabledAttrWarning\",value:function(){console.warn(\"\\n It looks like you're using the disabled attribute with a reactive form directive. If you set disabled to true\\n when you set up this control in your component class, the disabled attribute will actually be set in the DOM for\\n you. We recommend using this approach to avoid 'changed after checked' errors.\\n \\n Example: \\n form = new FormGroup({\\n first: new FormControl({value: 'Nancy', disabled: true}, Validators.required),\\n last: new FormControl('Drew', Validators.required)\\n });\\n \")}},{key:\"ngModelWarning\",value:function(e){console.warn(\"\\n It looks like you're using ngModel on the same form field as \".concat(e,\". \\n Support for using the ngModel input property and ngModelChange event with \\n reactive form directives has been deprecated in Angular v6 and will be removed \\n in Angular v7.\\n \\n For more information on this, see our API docs here:\\n https://angular.io/api/forms/\").concat(\"formControl\"===e?\"FormControlDirective\":\"FormControlName\",\"#use-with-ngmodel\\n \"))}}]),e}(),If={provide:Wh,useExisting:De((function(){return Af})),multi:!0},Af=((bf=function(){function e(t,n){_classCallCheck(this,e),this._renderer=t,this._elementRef=n,this._optionMap=new Map,this._idCounter=0,this.onChange=function(e){},this.onTouched=function(){},this._compareWith=So}return _createClass(e,[{key:\"writeValue\",value:function(e){this.value=e;var t=this._getOptionId(e);null==t&&this._renderer.setProperty(this._elementRef.nativeElement,\"selectedIndex\",-1);var n=function(e,t){return null==e?\"\".concat(t):(t&&\"object\"==typeof t&&(t=\"Object\"),\"\".concat(e,\": \").concat(t).slice(0,50))}(t,e);this._renderer.setProperty(this._elementRef.nativeElement,\"value\",n)}},{key:\"registerOnChange\",value:function(e){var t=this;this.onChange=function(n){t.value=t._getOptionValue(n),e(t.value)}}},{key:\"registerOnTouched\",value:function(e){this.onTouched=e}},{key:\"setDisabledState\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}},{key:\"_registerOption\",value:function(){return(this._idCounter++).toString()}},{key:\"_getOptionId\",value:function(e){for(var t=0,n=Array.from(this._optionMap.keys());t-1)}}else t=function(e,t){e._setSelected(!1)};this._optionMap.forEach(t)}},{key:\"registerOnChange\",value:function(e){var t=this;this.onChange=function(n){var r=[];if(n.hasOwnProperty(\"selectedOptions\"))for(var i=n.selectedOptions,a=0;a1?\"path: '\".concat(e.path.join(\" -> \"),\"'\"):e.path[0]?\"name: '\".concat(e.path,\"'\"):\"unspecified name attribute\",new Error(\"\".concat(t,\" \").concat(n))}function Wf(e){return null!=e?cf.compose(e.map(mf)):null}function Uf(e){return null!=e?cf.composeAsync(e.map(pf)):null}function Bf(e,t){if(!e.hasOwnProperty(\"model\"))return!1;var n=e.model;return!!n.isFirstChange()||!So(t,n.currentValue)}var qf=[Bh,xf,Cf,Af,jf,Lf];function Gf(e,t){e._syncPendingControls(),t.forEach((function(e){var t=e.control;\"submit\"===t.updateOn&&t._pendingChange&&(e.viewToModelUpdate(t._pendingValue),t._pendingChange=!1)}))}function $f(e,t){if(!t)return null;Array.isArray(t)||Vf(e,\"Value accessor was not provided as an array for form control with\");var n=void 0,r=void 0,i=void 0;return t.forEach((function(t){var a;t.constructor===$h?n=t:(a=t,qf.some((function(e){return a.constructor===e}))?(r&&Vf(e,\"More than one built-in value accessor matches form control with\"),r=t):(i&&Vf(e,\"More than one custom value accessor matches form control with\"),i=t))})),i||r||n||(Vf(e,\"No valid value accessor for form control with\"),null)}function Jf(e,t){var n=e.indexOf(t);n>-1&&e.splice(n,1)}function Kf(e,t,n,r){Lr()&&\"never\"!==r&&((null!==r&&\"once\"!==r||t._ngModelWarningSentOnce)&&(\"always\"!==r||n._ngModelWarningSent)||(Ef.ngModelWarning(e),t._ngModelWarningSentOnce=!0,n._ngModelWarningSent=!0))}function Zf(e){var t=Xf(e)?e.validators:e;return Array.isArray(t)?Wf(t):t||null}function Qf(e,t){var n=Xf(t)?t.asyncValidators:e;return Array.isArray(n)?Uf(n):n||null}function Xf(e){return null!=e&&!Array.isArray(e)&&\"object\"==typeof e}var em,tm,nm,rm,im,am,om,sm,lm,um=function(){function e(t,n){_classCallCheck(this,e),this.validator=t,this.asyncValidator=n,this._onCollectionChange=function(){},this.pristine=!0,this.touched=!1,this._onDisabledChange=[]}return _createClass(e,[{key:\"setValidators\",value:function(e){this.validator=Zf(e)}},{key:\"setAsyncValidators\",value:function(e){this.asyncValidator=Qf(e)}},{key:\"clearValidators\",value:function(){this.validator=null}},{key:\"clearAsyncValidators\",value:function(){this.asyncValidator=null}},{key:\"markAsTouched\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.touched=!0,this._parent&&!e.onlySelf&&this._parent.markAsTouched(e)}},{key:\"markAllAsTouched\",value:function(){this.markAsTouched({onlySelf:!0}),this._forEachChild((function(e){return e.markAllAsTouched()}))}},{key:\"markAsUntouched\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.touched=!1,this._pendingTouched=!1,this._forEachChild((function(e){e.markAsUntouched({onlySelf:!0})})),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)}},{key:\"markAsDirty\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.pristine=!1,this._parent&&!e.onlySelf&&this._parent.markAsDirty(e)}},{key:\"markAsPristine\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.pristine=!0,this._pendingDirty=!1,this._forEachChild((function(e){e.markAsPristine({onlySelf:!0})})),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)}},{key:\"markAsPending\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.status=\"PENDING\",!1!==e.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!e.onlySelf&&this._parent.markAsPending(e)}},{key:\"disable\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this._parentMarkedDirty(e.onlySelf);this.status=\"DISABLED\",this.errors=null,this._forEachChild((function(t){t.disable(Object.assign(Object.assign({},e),{onlySelf:!0}))})),this._updateValue(),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(Object.assign(Object.assign({},e),{skipPristineCheck:t})),this._onDisabledChange.forEach((function(e){return e(!0)}))}},{key:\"enable\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this._parentMarkedDirty(e.onlySelf);this.status=\"VALID\",this._forEachChild((function(t){t.enable(Object.assign(Object.assign({},e),{onlySelf:!0}))})),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent}),this._updateAncestors(Object.assign(Object.assign({},e),{skipPristineCheck:t})),this._onDisabledChange.forEach((function(e){return e(!1)}))}},{key:\"_updateAncestors\",value:function(e){this._parent&&!e.onlySelf&&(this._parent.updateValueAndValidity(e),e.skipPristineCheck||this._parent._updatePristine(),this._parent._updateTouched())}},{key:\"setParent\",value:function(e){this._parent=e}},{key:\"updateValueAndValidity\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),\"VALID\"!==this.status&&\"PENDING\"!==this.status||this._runAsyncValidator(e.emitEvent)),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!e.onlySelf&&this._parent.updateValueAndValidity(e)}},{key:\"_updateTreeValidity\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{emitEvent:!0};this._forEachChild((function(t){return t._updateTreeValidity(e)})),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent})}},{key:\"_setInitialStatus\",value:function(){this.status=this._allControlsDisabled()?\"DISABLED\":\"VALID\"}},{key:\"_runValidator\",value:function(){return this.validator?this.validator(this):null}},{key:\"_runAsyncValidator\",value:function(e){var t=this;if(this.asyncValidator){this.status=\"PENDING\";var n=hf(this.asyncValidator(this));this._asyncValidationSubscription=n.subscribe((function(n){return t.setErrors(n,{emitEvent:e})}))}}},{key:\"_cancelExistingSubscription\",value:function(){this._asyncValidationSubscription&&this._asyncValidationSubscription.unsubscribe()}},{key:\"setErrors\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.errors=e,this._updateControlsErrors(!1!==t.emitEvent)}},{key:\"get\",value:function(e){return function(e,t,n){if(null==t)return null;if(Array.isArray(t)||(t=t.split(\".\")),Array.isArray(t)&&0===t.length)return null;var r=e;return t.forEach((function(e){r=r instanceof dm?r.controls.hasOwnProperty(e)?r.controls[e]:null:r instanceof hm&&r.at(e)||null})),r}(this,e)}},{key:\"getError\",value:function(e,t){var n=t?this.get(t):this;return n&&n.errors?n.errors[e]:null}},{key:\"hasError\",value:function(e,t){return!!this.getError(e,t)}},{key:\"_updateControlsErrors\",value:function(e){this.status=this._calculateStatus(),e&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(e)}},{key:\"_initObservables\",value:function(){this.valueChanges=new bu,this.statusChanges=new bu}},{key:\"_calculateStatus\",value:function(){return this._allControlsDisabled()?\"DISABLED\":this.errors?\"INVALID\":this._anyControlsHaveStatus(\"PENDING\")?\"PENDING\":this._anyControlsHaveStatus(\"INVALID\")?\"INVALID\":\"VALID\"}},{key:\"_anyControlsHaveStatus\",value:function(e){return this._anyControls((function(t){return t.status===e}))}},{key:\"_anyControlsDirty\",value:function(){return this._anyControls((function(e){return e.dirty}))}},{key:\"_anyControlsTouched\",value:function(){return this._anyControls((function(e){return e.touched}))}},{key:\"_updatePristine\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.pristine=!this._anyControlsDirty(),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)}},{key:\"_updateTouched\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.touched=this._anyControlsTouched(),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)}},{key:\"_isBoxedValue\",value:function(e){return\"object\"==typeof e&&null!==e&&2===Object.keys(e).length&&\"value\"in e&&\"disabled\"in e}},{key:\"_registerOnCollectionChange\",value:function(e){this._onCollectionChange=e}},{key:\"_setUpdateStrategy\",value:function(e){Xf(e)&&null!=e.updateOn&&(this._updateOn=e.updateOn)}},{key:\"_parentMarkedDirty\",value:function(e){return!e&&this._parent&&this._parent.dirty&&!this._parent._anyControlsDirty()}},{key:\"parent\",get:function(){return this._parent}},{key:\"valid\",get:function(){return\"VALID\"===this.status}},{key:\"invalid\",get:function(){return\"INVALID\"===this.status}},{key:\"pending\",get:function(){return\"PENDING\"==this.status}},{key:\"disabled\",get:function(){return\"DISABLED\"===this.status}},{key:\"enabled\",get:function(){return\"DISABLED\"!==this.status}},{key:\"dirty\",get:function(){return!this.pristine}},{key:\"untouched\",get:function(){return!this.touched}},{key:\"updateOn\",get:function(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:\"change\"}},{key:\"root\",get:function(){for(var e=this;e._parent;)e=e._parent;return e}}]),e}(),cm=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,i=arguments.length>1?arguments[1]:void 0,a=arguments.length>2?arguments[2]:void 0;return _classCallCheck(this,n),(e=t.call(this,Zf(i),Qf(a,i)))._onChange=[],e._applyFormState(r),e._setUpdateStrategy(i),e.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),e._initObservables(),e}return _createClass(n,[{key:\"setValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.value=this._pendingValue=e,this._onChange.length&&!1!==n.emitModelToViewChange&&this._onChange.forEach((function(e){return e(t.value,!1!==n.emitViewToModelChange)})),this.updateValueAndValidity(n)}},{key:\"patchValue\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.setValue(e,t)}},{key:\"reset\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._applyFormState(e),this.markAsPristine(t),this.markAsUntouched(t),this.setValue(this.value,t),this._pendingChange=!1}},{key:\"_updateValue\",value:function(){}},{key:\"_anyControls\",value:function(e){return!1}},{key:\"_allControlsDisabled\",value:function(){return this.disabled}},{key:\"registerOnChange\",value:function(e){this._onChange.push(e)}},{key:\"_clearChangeFns\",value:function(){this._onChange=[],this._onDisabledChange=[],this._onCollectionChange=function(){}}},{key:\"registerOnDisabledChange\",value:function(e){this._onDisabledChange.push(e)}},{key:\"_forEachChild\",value:function(e){}},{key:\"_syncPendingControls\",value:function(){return!(\"submit\"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))}},{key:\"_applyFormState\",value:function(e){this._isBoxedValue(e)?(this.value=this._pendingValue=e.value,e.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=e}}]),n}(um),dm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,Zf(r),Qf(i,r))).controls=e,a._initObservables(),a._setUpdateStrategy(r),a._setUpControls(),a.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),a}return _createClass(n,[{key:\"registerControl\",value:function(e,t){return this.controls[e]?this.controls[e]:(this.controls[e]=t,t.setParent(this),t._registerOnCollectionChange(this._onCollectionChange),t)}},{key:\"addControl\",value:function(e,t){this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"removeControl\",value:function(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange((function(){})),delete this.controls[e],this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"setControl\",value:function(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange((function(){})),delete this.controls[e],t&&this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"contains\",value:function(e){return this.controls.hasOwnProperty(e)&&this.controls[e].enabled}},{key:\"setValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._checkAllValuesPresent(e),Object.keys(e).forEach((function(r){t._throwIfControlMissing(r),t.controls[r].setValue(e[r],{onlySelf:!0,emitEvent:n.emitEvent})})),this.updateValueAndValidity(n)}},{key:\"patchValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};Object.keys(e).forEach((function(r){t.controls[r]&&t.controls[r].patchValue(e[r],{onlySelf:!0,emitEvent:n.emitEvent})})),this.updateValueAndValidity(n)}},{key:\"reset\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._forEachChild((function(n,r){n.reset(e[r],{onlySelf:!0,emitEvent:t.emitEvent})})),this._updatePristine(t),this._updateTouched(t),this.updateValueAndValidity(t)}},{key:\"getRawValue\",value:function(){return this._reduceChildren({},(function(e,t,n){return e[n]=t instanceof cm?t.value:t.getRawValue(),e}))}},{key:\"_syncPendingControls\",value:function(){var e=this._reduceChildren(!1,(function(e,t){return!!t._syncPendingControls()||e}));return e&&this.updateValueAndValidity({onlySelf:!0}),e}},{key:\"_throwIfControlMissing\",value:function(e){if(!Object.keys(this.controls).length)throw new Error(\"\\n There are no form controls registered with this group yet. If you're using ngModel,\\n you may want to check next tick (e.g. use setTimeout).\\n \");if(!this.controls[e])throw new Error(\"Cannot find form control with name: \".concat(e,\".\"))}},{key:\"_forEachChild\",value:function(e){var t=this;Object.keys(this.controls).forEach((function(n){return e(t.controls[n],n)}))}},{key:\"_setUpControls\",value:function(){var e=this;this._forEachChild((function(t){t.setParent(e),t._registerOnCollectionChange(e._onCollectionChange)}))}},{key:\"_updateValue\",value:function(){this.value=this._reduceValue()}},{key:\"_anyControls\",value:function(e){var t=this,n=!1;return this._forEachChild((function(r,i){n=n||t.contains(i)&&e(r)})),n}},{key:\"_reduceValue\",value:function(){var e=this;return this._reduceChildren({},(function(t,n,r){return(n.enabled||e.disabled)&&(t[r]=n.value),t}))}},{key:\"_reduceChildren\",value:function(e,t){var n=e;return this._forEachChild((function(e,r){n=t(n,e,r)})),n}},{key:\"_allControlsDisabled\",value:function(){for(var e=0,t=Object.keys(this.controls);e0||this.disabled}},{key:\"_checkAllValuesPresent\",value:function(e){this._forEachChild((function(t,n){if(void 0===e[n])throw new Error(\"Must supply a value for form control with name: '\".concat(n,\"'.\"))}))}}]),n}(um),hm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,Zf(r),Qf(i,r))).controls=e,a._initObservables(),a._setUpdateStrategy(r),a._setUpControls(),a.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),a}return _createClass(n,[{key:\"at\",value:function(e){return this.controls[e]}},{key:\"push\",value:function(e){this.controls.push(e),this._registerControl(e),this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"insert\",value:function(e,t){this.controls.splice(e,0,t),this._registerControl(t),this.updateValueAndValidity()}},{key:\"removeAt\",value:function(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange((function(){})),this.controls.splice(e,1),this.updateValueAndValidity()}},{key:\"setControl\",value:function(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange((function(){})),this.controls.splice(e,1),t&&(this.controls.splice(e,0,t),this._registerControl(t)),this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"setValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._checkAllValuesPresent(e),e.forEach((function(e,r){t._throwIfControlMissing(r),t.at(r).setValue(e,{onlySelf:!0,emitEvent:n.emitEvent})})),this.updateValueAndValidity(n)}},{key:\"patchValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};e.forEach((function(e,r){t.at(r)&&t.at(r).patchValue(e,{onlySelf:!0,emitEvent:n.emitEvent})})),this.updateValueAndValidity(n)}},{key:\"reset\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._forEachChild((function(n,r){n.reset(e[r],{onlySelf:!0,emitEvent:t.emitEvent})})),this._updatePristine(t),this._updateTouched(t),this.updateValueAndValidity(t)}},{key:\"getRawValue\",value:function(){return this.controls.map((function(e){return e instanceof cm?e.value:e.getRawValue()}))}},{key:\"clear\",value:function(){this.controls.length<1||(this._forEachChild((function(e){return e._registerOnCollectionChange((function(){}))})),this.controls.splice(0),this.updateValueAndValidity())}},{key:\"_syncPendingControls\",value:function(){var e=this.controls.reduce((function(e,t){return!!t._syncPendingControls()||e}),!1);return e&&this.updateValueAndValidity({onlySelf:!0}),e}},{key:\"_throwIfControlMissing\",value:function(e){if(!this.controls.length)throw new Error(\"\\n There are no form controls registered with this array yet. If you're using ngModel,\\n you may want to check next tick (e.g. use setTimeout).\\n \");if(!this.at(e))throw new Error(\"Cannot find form control at index \".concat(e))}},{key:\"_forEachChild\",value:function(e){this.controls.forEach((function(t,n){e(t,n)}))}},{key:\"_updateValue\",value:function(){var e=this;this.value=this.controls.filter((function(t){return t.enabled||e.disabled})).map((function(e){return e.value}))}},{key:\"_anyControls\",value:function(e){return this.controls.some((function(t){return t.enabled&&e(t)}))}},{key:\"_setUpControls\",value:function(){var e=this;this._forEachChild((function(t){return e._registerControl(t)}))}},{key:\"_checkAllValuesPresent\",value:function(e){this._forEachChild((function(t,n){if(void 0===e[n])throw new Error(\"Must supply a value for form control at index: \".concat(n,\".\"))}))}},{key:\"_allControlsDisabled\",value:function(){var e,t=_createForOfIteratorHelper(this.controls);try{for(t.s();!(e=t.n()).done;){if(e.value.enabled)return!1}}catch(n){t.e(n)}finally{t.f()}return this.controls.length>0||this.disabled}},{key:\"_registerControl\",value:function(e){e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange)}},{key:\"length\",get:function(){return this.controls.length}}]),n}(um),fm={provide:Kh,useExisting:De((function(){return pm}))},mm=Promise.resolve(null),pm=((tm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this)).submitted=!1,i._directives=[],i.ngSubmit=new bu,i.form=new dm({},Wf(e),Uf(r)),i}return _createClass(n,[{key:\"ngAfterViewInit\",value:function(){this._setUpdateStrategy()}},{key:\"addControl\",value:function(e){var t=this;mm.then((function(){var n=t._findContainer(e.path);e.control=n.registerControl(e.name,e.control),Hf(e.control,e),e.control.updateValueAndValidity({emitEvent:!1}),t._directives.push(e)}))}},{key:\"getControl\",value:function(e){return this.form.get(e.path)}},{key:\"removeControl\",value:function(e){var t=this;mm.then((function(){var n=t._findContainer(e.path);n&&n.removeControl(e.name),Jf(t._directives,e)}))}},{key:\"addFormGroup\",value:function(e){var t=this;mm.then((function(){var n=t._findContainer(e.path),r=new dm({});Nf(r,e),n.registerControl(e.name,r),r.updateValueAndValidity({emitEvent:!1})}))}},{key:\"removeFormGroup\",value:function(e){var t=this;mm.then((function(){var n=t._findContainer(e.path);n&&n.removeControl(e.name)}))}},{key:\"getFormGroup\",value:function(e){return this.form.get(e.path)}},{key:\"updateModel\",value:function(e,t){var n=this;mm.then((function(){n.form.get(e.path).setValue(t)}))}},{key:\"setValue\",value:function(e){this.control.setValue(e)}},{key:\"onSubmit\",value:function(e){return this.submitted=!0,Gf(this.form,this._directives),this.ngSubmit.emit(e),!1}},{key:\"onReset\",value:function(){this.resetForm()}},{key:\"resetForm\",value:function(e){this.form.reset(e),this.submitted=!1}},{key:\"_setUpdateStrategy\",value:function(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}},{key:\"_findContainer\",value:function(e){return e.pop(),e.length?this.form.get(e):this.form}},{key:\"formDirective\",get:function(){return this}},{key:\"control\",get:function(){return this.form}},{key:\"path\",get:function(){return[]}},{key:\"controls\",get:function(){return this.form.controls}}]),n}(Kh)).\\u0275fac=function(e){return new(e||tm)(Io(sf,10),Io(lf,10))},tm.\\u0275dir=Lt({type:tm,selectors:[[\"form\",3,\"ngNoForm\",\"\",3,\"formGroup\",\"\"],[\"ng-form\"],[\"\",\"ngForm\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"submit\",(function(e){return t.onSubmit(e)}))(\"reset\",(function(){return t.onReset()}))},inputs:{options:[\"ngFormOptions\",\"options\"]},outputs:{ngSubmit:\"ngSubmit\"},exportAs:[\"ngForm\"],features:[$s([fm]),Es]}),tm),_m=((em=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"ngOnInit\",value:function(){this._checkParentType(),this.formDirective.addFormGroup(this)}},{key:\"ngOnDestroy\",value:function(){this.formDirective&&this.formDirective.removeFormGroup(this)}},{key:\"_checkParentType\",value:function(){}},{key:\"control\",get:function(){return this.formDirective.getFormGroup(this)}},{key:\"path\",get:function(){return Rf(null==this.name?this.name:this.name.toString(),this._parent)}},{key:\"formDirective\",get:function(){return this._parent?this._parent.formDirective:null}},{key:\"validator\",get:function(){return Wf(this._validators)}},{key:\"asyncValidator\",get:function(){return Uf(this._asyncValidators)}}]),n}(Kh)).\\u0275fac=function(e){return vm(e||em)},em.\\u0275dir=Lt({type:em,features:[Es]}),em),vm=cr(_m),gm=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"modelParentException\",value:function(){throw new Error('\\n ngModel cannot be used to register form controls with a parent formGroup directive. Try using\\n formGroup\\'s partner directive \"formControlName\" instead. Example:\\n\\n '.concat(Df,'\\n\\n Or, if you\\'d like to avoid registering this form control, indicate that it\\'s standalone in ngModelOptions:\\n\\n Example:\\n\\n \\n
\\n \\n \\n
\\n '))}},{key:\"formGroupNameException\",value:function(){throw new Error(\"\\n ngModel cannot be used to register form controls with a parent formGroupName or formArrayName directive.\\n\\n Option 1: Use formControlName instead of ngModel (reactive strategy):\\n\\n \".concat(Of,\"\\n\\n Option 2: Update ngModel's parent be ngModelGroup (template-driven strategy):\\n\\n \").concat(Yf))}},{key:\"missingNameException\",value:function(){throw new Error('If ngModel is used within a form tag, either the name attribute must be set or the form\\n control must be defined as \\'standalone\\' in ngModelOptions.\\n\\n Example 1: \\n Example 2: ')}},{key:\"modelGroupParentException\",value:function(){throw new Error(\"\\n ngModelGroup cannot be used with a parent formGroup directive.\\n\\n Option 1: Use formGroupName instead of ngModelGroup (reactive strategy):\\n\\n \".concat(Of,\"\\n\\n Option 2: Use a regular form tag instead of the formGroup directive (template-driven strategy):\\n\\n \").concat(Yf))}}]),e}(),ym={provide:Kh,useExisting:De((function(){return bm}))},bm=((nm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this))._parent=e,a._validators=r,a._asyncValidators=i,a}return _createClass(n,[{key:\"_checkParentType\",value:function(){this._parent instanceof n||this._parent instanceof pm||gm.modelGroupParentException()}}]),n}(_m)).\\u0275fac=function(e){return new(e||nm)(Io(Kh,5),Io(sf,10),Io(lf,10))},nm.\\u0275dir=Lt({type:nm,selectors:[[\"\",\"ngModelGroup\",\"\"]],inputs:{name:[\"ngModelGroup\",\"name\"]},exportAs:[\"ngModelGroup\"],features:[$s([ym]),Es]}),nm),km={provide:tf,useExisting:De((function(){return Cm}))},wm=Promise.resolve(null),Cm=((im=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this)).control=new cm,o._registered=!1,o.update=new bu,o._parent=e,o._rawValidators=r||[],o._rawAsyncValidators=i||[],o.valueAccessor=$f(_assertThisInitialized(o),a),o}return _createClass(n,[{key:\"ngOnChanges\",value:function(e){this._checkForErrors(),this._registered||this._setUpControl(),\"isDisabled\"in e&&this._updateDisabled(e),Bf(e,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}},{key:\"ngOnDestroy\",value:function(){this.formDirective&&this.formDirective.removeControl(this)}},{key:\"viewToModelUpdate\",value:function(e){this.viewModel=e,this.update.emit(e)}},{key:\"_setUpControl\",value:function(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0}},{key:\"_setUpdateStrategy\",value:function(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)}},{key:\"_isStandalone\",value:function(){return!this._parent||!(!this.options||!this.options.standalone)}},{key:\"_setUpStandalone\",value:function(){Hf(this.control,this),this.control.updateValueAndValidity({emitEvent:!1})}},{key:\"_checkForErrors\",value:function(){this._isStandalone()||this._checkParentType(),this._checkName()}},{key:\"_checkParentType\",value:function(){!(this._parent instanceof bm)&&this._parent instanceof _m?gm.formGroupNameException():this._parent instanceof bm||this._parent instanceof pm||gm.modelParentException()}},{key:\"_checkName\",value:function(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()||this.name||gm.missingNameException()}},{key:\"_updateValue\",value:function(e){var t=this;wm.then((function(){t.control.setValue(e,{emitViewToModelChange:!1})}))}},{key:\"_updateDisabled\",value:function(e){var t=this,n=e.isDisabled.currentValue,r=\"\"===n||n&&\"false\"!==n;wm.then((function(){r&&!t.control.disabled?t.control.disable():!r&&t.control.disabled&&t.control.enable()}))}},{key:\"path\",get:function(){return this._parent?Rf(this.name,this._parent):[this.name]}},{key:\"formDirective\",get:function(){return this._parent?this._parent.formDirective:null}},{key:\"validator\",get:function(){return Wf(this._rawValidators)}},{key:\"asyncValidator\",get:function(){return Uf(this._rawAsyncValidators)}}]),n}(tf)).\\u0275fac=function(e){return new(e||im)(Io(Kh,9),Io(sf,10),Io(lf,10),Io(Wh,10))},im.\\u0275dir=Lt({type:im,selectors:[[\"\",\"ngModel\",\"\",3,\"formControlName\",\"\",3,\"formControl\",\"\"]],inputs:{name:\"name\",isDisabled:[\"disabled\",\"isDisabled\"],model:[\"ngModel\",\"model\"],options:[\"ngModelOptions\",\"options\"]},outputs:{update:\"ngModelChange\"},exportAs:[\"ngModel\"],features:[$s([km]),Es,Hs]}),im),Mm=((rm=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||rm)},rm.\\u0275dir=Lt({type:rm,selectors:[[\"form\",3,\"ngNoForm\",\"\",3,\"ngNativeValidate\",\"\"]],hostAttrs:[\"novalidate\",\"\"]}),rm),Sm=new Be(\"NgModelWithFormControlWarning\"),Lm={provide:tf,useExisting:De((function(){return Tm}))},Tm=((am=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this))._ngModelWarningConfig=a,o.update=new bu,o._ngModelWarningSent=!1,o._rawValidators=e||[],o._rawAsyncValidators=r||[],o.valueAccessor=$f(_assertThisInitialized(o),i),o}return _createClass(n,[{key:\"ngOnChanges\",value:function(e){this._isControlChanged(e)&&(Hf(this.form,this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this.form.updateValueAndValidity({emitEvent:!1})),Bf(e,this.viewModel)&&(Kf(\"formControl\",n,this,this._ngModelWarningConfig),this.form.setValue(this.model),this.viewModel=this.model)}},{key:\"viewToModelUpdate\",value:function(e){this.viewModel=e,this.update.emit(e)}},{key:\"_isControlChanged\",value:function(e){return e.hasOwnProperty(\"form\")}},{key:\"isDisabled\",set:function(e){Ef.disabledAttrWarning()}},{key:\"path\",get:function(){return[]}},{key:\"validator\",get:function(){return Wf(this._rawValidators)}},{key:\"asyncValidator\",get:function(){return Uf(this._rawAsyncValidators)}},{key:\"control\",get:function(){return this.form}}]),n}(tf)).\\u0275fac=function(e){return new(e||am)(Io(sf,10),Io(lf,10),Io(Wh,10),Io(Sm,8))},am.\\u0275dir=Lt({type:am,selectors:[[\"\",\"formControl\",\"\"]],inputs:{isDisabled:[\"disabled\",\"isDisabled\"],form:[\"formControl\",\"form\"],model:[\"ngModel\",\"model\"]},outputs:{update:\"ngModelChange\"},exportAs:[\"ngForm\"],features:[$s([Lm]),Es,Hs]}),am._ngModelWarningSentOnce=!1,am),xm={provide:Kh,useExisting:De((function(){return Dm}))},Dm=((om=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this))._validators=e,i._asyncValidators=r,i.submitted=!1,i.directives=[],i.form=null,i.ngSubmit=new bu,i}return _createClass(n,[{key:\"ngOnChanges\",value:function(e){this._checkFormPresent(),e.hasOwnProperty(\"form\")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations())}},{key:\"addControl\",value:function(e){var t=this.form.get(e.path);return Hf(t,e),t.updateValueAndValidity({emitEvent:!1}),this.directives.push(e),t}},{key:\"getControl\",value:function(e){return this.form.get(e.path)}},{key:\"removeControl\",value:function(e){Jf(this.directives,e)}},{key:\"addFormGroup\",value:function(e){var t=this.form.get(e.path);Nf(t,e),t.updateValueAndValidity({emitEvent:!1})}},{key:\"removeFormGroup\",value:function(e){}},{key:\"getFormGroup\",value:function(e){return this.form.get(e.path)}},{key:\"addFormArray\",value:function(e){var t=this.form.get(e.path);Nf(t,e),t.updateValueAndValidity({emitEvent:!1})}},{key:\"removeFormArray\",value:function(e){}},{key:\"getFormArray\",value:function(e){return this.form.get(e.path)}},{key:\"updateModel\",value:function(e,t){this.form.get(e.path).setValue(t)}},{key:\"onSubmit\",value:function(e){return this.submitted=!0,Gf(this.form,this.directives),this.ngSubmit.emit(e),!1}},{key:\"onReset\",value:function(){this.resetForm()}},{key:\"resetForm\",value:function(e){this.form.reset(e),this.submitted=!1}},{key:\"_updateDomValue\",value:function(){var e=this;this.directives.forEach((function(t){var n=e.form.get(t.path);t.control!==n&&(function(e,t){t.valueAccessor.registerOnChange((function(){return zf(t)})),t.valueAccessor.registerOnTouched((function(){return zf(t)})),t._rawValidators.forEach((function(e){e.registerOnValidatorChange&&e.registerOnValidatorChange(null)})),t._rawAsyncValidators.forEach((function(e){e.registerOnValidatorChange&&e.registerOnValidatorChange(null)})),e&&e._clearChangeFns()}(t.control,t),n&&Hf(n,t),t.control=n)})),this.form._updateTreeValidity({emitEvent:!1})}},{key:\"_updateRegistrations\",value:function(){var e=this;this.form._registerOnCollectionChange((function(){return e._updateDomValue()})),this._oldForm&&this._oldForm._registerOnCollectionChange((function(){})),this._oldForm=this.form}},{key:\"_updateValidators\",value:function(){var e=Wf(this._validators);this.form.validator=cf.compose([this.form.validator,e]);var t=Uf(this._asyncValidators);this.form.asyncValidator=cf.composeAsync([this.form.asyncValidator,t])}},{key:\"_checkFormPresent\",value:function(){this.form||Ef.missingFormException()}},{key:\"formDirective\",get:function(){return this}},{key:\"control\",get:function(){return this.form}},{key:\"path\",get:function(){return[]}}]),n}(Kh)).\\u0275fac=function(e){return new(e||om)(Io(sf,10),Io(lf,10))},om.\\u0275dir=Lt({type:om,selectors:[[\"\",\"formGroup\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"submit\",(function(e){return t.onSubmit(e)}))(\"reset\",(function(){return t.onReset()}))},inputs:{form:[\"formGroup\",\"form\"]},outputs:{ngSubmit:\"ngSubmit\"},exportAs:[\"ngForm\"],features:[$s([xm]),Es,Hs]}),om),Om={provide:Kh,useExisting:De((function(){return Ym}))},Ym=((sm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this))._parent=e,a._validators=r,a._asyncValidators=i,a}return _createClass(n,[{key:\"_checkParentType\",value:function(){Am(this._parent)&&Ef.groupParentException()}}]),n}(_m)).\\u0275fac=function(e){return new(e||sm)(Io(Kh,13),Io(sf,10),Io(lf,10))},sm.\\u0275dir=Lt({type:sm,selectors:[[\"\",\"formGroupName\",\"\"]],inputs:{name:[\"formGroupName\",\"name\"]},features:[$s([Om]),Es]}),sm),Em={provide:Kh,useExisting:De((function(){return Im}))},Im=((lm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this))._parent=e,a._validators=r,a._asyncValidators=i,a}return _createClass(n,[{key:\"ngOnInit\",value:function(){this._checkParentType(),this.formDirective.addFormArray(this)}},{key:\"ngOnDestroy\",value:function(){this.formDirective&&this.formDirective.removeFormArray(this)}},{key:\"_checkParentType\",value:function(){Am(this._parent)&&Ef.arrayParentException()}},{key:\"control\",get:function(){return this.formDirective.getFormArray(this)}},{key:\"formDirective\",get:function(){return this._parent?this._parent.formDirective:null}},{key:\"path\",get:function(){return Rf(null==this.name?this.name:this.name.toString(),this._parent)}},{key:\"validator\",get:function(){return Wf(this._validators)}},{key:\"asyncValidator\",get:function(){return Uf(this._asyncValidators)}}]),n}(Kh)).\\u0275fac=function(e){return new(e||lm)(Io(Kh,13),Io(sf,10),Io(lf,10))},lm.\\u0275dir=Lt({type:lm,selectors:[[\"\",\"formArrayName\",\"\"]],inputs:{name:[\"formArrayName\",\"name\"]},features:[$s([Em]),Es]}),lm);function Am(e){return!(e instanceof Ym||e instanceof Dm||e instanceof Im)}var Pm,jm,Rm,Hm,Fm,Nm,zm={provide:tf,useExisting:De((function(){return Vm}))},Vm=((Pm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this))._ngModelWarningConfig=o,s._added=!1,s.update=new bu,s._ngModelWarningSent=!1,s._parent=e,s._rawValidators=r||[],s._rawAsyncValidators=i||[],s.valueAccessor=$f(_assertThisInitialized(s),a),s}return _createClass(n,[{key:\"ngOnChanges\",value:function(e){this._added||this._setUpControl(),Bf(e,this.viewModel)&&(Kf(\"formControlName\",n,this,this._ngModelWarningConfig),this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}},{key:\"ngOnDestroy\",value:function(){this.formDirective&&this.formDirective.removeControl(this)}},{key:\"viewToModelUpdate\",value:function(e){this.viewModel=e,this.update.emit(e)}},{key:\"_checkParentType\",value:function(){!(this._parent instanceof Ym)&&this._parent instanceof _m?Ef.ngModelGroupException():this._parent instanceof Ym||this._parent instanceof Dm||this._parent instanceof Im||Ef.controlParentException()}},{key:\"_setUpControl\",value:function(){this._checkParentType(),this.control=this.formDirective.addControl(this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this._added=!0}},{key:\"isDisabled\",set:function(e){Ef.disabledAttrWarning()}},{key:\"path\",get:function(){return Rf(null==this.name?this.name:this.name.toString(),this._parent)}},{key:\"formDirective\",get:function(){return this._parent?this._parent.formDirective:null}},{key:\"validator\",get:function(){return Wf(this._rawValidators)}},{key:\"asyncValidator\",get:function(){return Uf(this._rawAsyncValidators)}}]),n}(tf)).\\u0275fac=function(e){return new(e||Pm)(Io(Kh,13),Io(sf,10),Io(lf,10),Io(Wh,10),Io(Sm,8))},Pm.\\u0275dir=Lt({type:Pm,selectors:[[\"\",\"formControlName\",\"\"]],inputs:{isDisabled:[\"disabled\",\"isDisabled\"],name:[\"formControlName\",\"name\"],model:[\"ngModel\",\"model\"]},outputs:{update:\"ngModelChange\"},features:[$s([zm]),Es,Hs]}),Pm._ngModelWarningSentOnce=!1,Pm),Wm={provide:sf,useExisting:De((function(){return Um})),multi:!0},Um=((Nm=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"validate\",value:function(e){return this.required?cf.required(e):null}},{key:\"registerOnValidatorChange\",value:function(e){this._onChange=e}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=null!=e&&!1!==e&&\"false\"!==\"\".concat(e),this._onChange&&this._onChange()}}]),e}()).\\u0275fac=function(e){return new(e||Nm)},Nm.\\u0275dir=Lt({type:Nm,selectors:[[\"\",\"required\",\"\",\"formControlName\",\"\",3,\"type\",\"checkbox\"],[\"\",\"required\",\"\",\"formControl\",\"\",3,\"type\",\"checkbox\"],[\"\",\"required\",\"\",\"ngModel\",\"\",3,\"type\",\"checkbox\"]],hostVars:1,hostBindings:function(e,t){2&e&&Do(\"required\",t.required?\"\":null)},inputs:{required:\"required\"},features:[$s([Wm])]}),Nm),Bm=((Fm=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Fm}),Fm.\\u0275inj=ve({factory:function(e){return new(e||Fm)}}),Fm),qm=((Hm=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"group\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=this._reduceControls(e),r=null,i=null,a=void 0;return null!=t&&(function(e){return void 0!==e.asyncValidators||void 0!==e.validators||void 0!==e.updateOn}(t)?(r=null!=t.validators?t.validators:null,i=null!=t.asyncValidators?t.asyncValidators:null,a=null!=t.updateOn?t.updateOn:void 0):(r=null!=t.validator?t.validator:null,i=null!=t.asyncValidator?t.asyncValidator:null)),new dm(n,{asyncValidators:i,updateOn:a,validators:r})}},{key:\"control\",value:function(e,t,n){return new cm(e,t,n)}},{key:\"array\",value:function(e,t,n){var r=this,i=e.map((function(e){return r._createControl(e)}));return new hm(i,t,n)}},{key:\"_reduceControls\",value:function(e){var t=this,n={};return Object.keys(e).forEach((function(r){n[r]=t._createControl(e[r])})),n}},{key:\"_createControl\",value:function(e){return e instanceof cm||e instanceof dm||e instanceof hm?e:Array.isArray(e)?this.control(e[0],e.length>1?e[1]:null,e.length>2?e[2]:null):this.control(e)}}]),e}()).\\u0275fac=function(e){return new(e||Hm)},Hm.\\u0275prov=_e({token:Hm,factory:Hm.\\u0275fac}),Hm),Gm=((Rm=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Rm}),Rm.\\u0275inj=ve({factory:function(e){return new(e||Rm)},providers:[Sf],imports:[Bm]}),Rm),$m=((jm=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"withConfig\",value:function(t){return{ngModule:e,providers:[{provide:Sm,useValue:t.warnOnNgModelWithFormControl}]}}}]),e}()).\\u0275mod=Mt({type:jm}),jm.\\u0275inj=ve({factory:function(e){return new(e||jm)},providers:[qm,Sf],imports:[Bm]}),jm);function Jm(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r1&&void 0!==arguments[1]?arguments[1]:0;if(this.closed)return this;this.state=e;var n=this.id,r=this.scheduler;return null!=n&&(this.id=this.recycleAsyncId(r,n,t)),this.pending=!0,this.delay=t,this.id=this.id||this.requestAsyncId(r,this.id,t),this}},{key:\"requestAsyncId\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return setInterval(e.flush.bind(e,this),n)}},{key:\"recycleAsyncId\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;if(null!==n&&this.delay===n&&!1===this.pending)return t;clearInterval(t)}},{key:\"execute\",value:function(e,t){if(this.closed)return new Error(\"executing a cancelled action\");this.pending=!1;var n=this._execute(e,t);if(n)return n;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}},{key:\"_execute\",value:function(e,t){var n=!1,r=void 0;try{this.work(e)}catch(i){n=!0,r=!!i&&i||new Error(i)}if(n)return this.unsubscribe(),r}},{key:\"_unsubscribe\",value:function(){var e=this.id,t=this.scheduler,n=t.actions,r=n.indexOf(this);this.work=null,this.state=null,this.pending=!1,this.scheduler=null,-1!==r&&n.splice(r,1),null!=e&&(this.id=this.recycleAsyncId(t,e,null)),this.delay=null}}]),n}(function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){return _classCallCheck(this,n),t.call(this)}return _createClass(n,[{key:\"schedule\",value:function(e){arguments.length>1&&void 0!==arguments[1]&&arguments[1];return this}}]),n}(h)),ep=function(){var e=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e.now;_classCallCheck(this,e),this.SchedulerAction=t,this.now=n}return _createClass(e,[{key:\"schedule\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2?arguments[2]:void 0;return new this.SchedulerAction(this,e).schedule(n,t)}}]),e}();return e.now=function(){return Date.now()},e}(),tp=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:ep.now;return _classCallCheck(this,n),(r=t.call(this,e,(function(){return n.delegate&&n.delegate!==_assertThisInitialized(r)?n.delegate.now():i()}))).actions=[],r.active=!1,r.scheduled=void 0,r}return _createClass(n,[{key:\"schedule\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=arguments.length>2?arguments[2]:void 0;return n.delegate&&n.delegate!==this?n.delegate.schedule(e,t,r):_get(_getPrototypeOf(n.prototype),\"schedule\",this).call(this,e,t,r)}},{key:\"flush\",value:function(e){var t=this.actions;if(this.active)t.push(e);else{var n;this.active=!0;do{if(n=e.execute(e.state,e.delay))break}while(e=t.shift());if(this.active=!1,n){for(;e=t.shift();)e.unsubscribe();throw n}}}}]),n}(ep),np=new tp(Xm);function rp(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:np;return function(n){return n.lift(new ip(e,t))}}var ip=function(){function e(t,n){_classCallCheck(this,e),this.dueTime=t,this.scheduler=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new ap(e,this.dueTime,this.scheduler))}}]),e}(),ap=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).dueTime=r,a.scheduler=i,a.debouncedSubscription=null,a.lastValue=null,a.hasValue=!1,a}return _createClass(n,[{key:\"_next\",value:function(e){this.clearDebounce(),this.lastValue=e,this.hasValue=!0,this.add(this.debouncedSubscription=this.scheduler.schedule(op,this.dueTime,this))}},{key:\"_complete\",value:function(){this.debouncedNext(),this.destination.complete()}},{key:\"debouncedNext\",value:function(){if(this.clearDebounce(),this.hasValue){var e=this.lastValue;this.lastValue=null,this.hasValue=!1,this.destination.next(e)}}},{key:\"clearDebounce\",value:function(){var e=this.debouncedSubscription;null!==e&&(this.remove(e),e.unsubscribe(),this.debouncedSubscription=null)}}]),n}(p);function op(e){e.debouncedNext()}var sp=function(){function e(){return Error.call(this),this.message=\"argument out of range\",this.name=\"ArgumentOutOfRangeError\",this}return e.prototype=Object.create(Error.prototype),e}(),lp=new w((function(e){return e.complete()}));function up(e){return e?function(e){return new w((function(t){return e.schedule((function(){return t.complete()}))}))}(e):lp}function cp(e){return function(t){return 0===e?up():t.lift(new hp(e))}}var dp,hp=function(){function e(t){if(_classCallCheck(this,e),this.total=t,this.total<0)throw new sp}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new fp(e,this.total))}}]),e}(),fp=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).total=r,i.count=0,i}return _createClass(n,[{key:\"_next\",value:function(e){var t=this.total,n=++this.count;n<=t&&(this.destination.next(e),n===t&&(this.destination.complete(),this.unsubscribe()))}}]),n}(p);function mp(e){return null!=e&&\"false\"!==\"\".concat(e)}function pp(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return function(e){return!isNaN(parseFloat(e))&&!isNaN(Number(e))}(e)?Number(e):t}function _p(e){return Array.isArray(e)?e:[e]}function vp(e){return null==e?\"\":\"string\"==typeof e?e:\"\".concat(e,\"px\")}function gp(e){return e instanceof Qs?e.nativeElement:e}try{dp=\"undefined\"!=typeof Intl&&Intl.v8BreakIterator}catch(KR){dp=!1}var yp,bp,kp,wp,Cp=((kp=function e(t){_classCallCheck(this,e),this._platformId=t,this.isBrowser=this._platformId?zd(this._platformId):\"object\"==typeof document&&!!document,this.EDGE=this.isBrowser&&/(edge)/i.test(navigator.userAgent),this.TRIDENT=this.isBrowser&&/(msie|trident)/i.test(navigator.userAgent),this.BLINK=this.isBrowser&&!(!window.chrome&&!dp)&&\"undefined\"!=typeof CSS&&!this.EDGE&&!this.TRIDENT,this.WEBKIT=this.isBrowser&&/AppleWebKit/i.test(navigator.userAgent)&&!this.BLINK&&!this.EDGE&&!this.TRIDENT,this.IOS=this.isBrowser&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!(\"MSStream\"in window),this.FIREFOX=this.isBrowser&&/(firefox|minefield)/i.test(navigator.userAgent),this.ANDROID=this.isBrowser&&/android/i.test(navigator.userAgent)&&!this.TRIDENT,this.SAFARI=this.isBrowser&&/safari/i.test(navigator.userAgent)&&this.WEBKIT}).\\u0275fac=function(e){return new(e||kp)(et($u,8))},kp.\\u0275prov=_e({factory:function(){return new kp(et($u,8))},token:kp,providedIn:\"root\"}),kp),Mp=((bp=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:bp}),bp.\\u0275inj=ve({factory:function(e){return new(e||bp)}}),bp),Sp=[\"color\",\"button\",\"checkbox\",\"date\",\"datetime-local\",\"email\",\"file\",\"hidden\",\"image\",\"month\",\"number\",\"password\",\"radio\",\"range\",\"reset\",\"search\",\"submit\",\"tel\",\"text\",\"time\",\"url\",\"week\"];function Lp(){if(yp)return yp;if(\"object\"!=typeof document||!document)return yp=new Set(Sp);var e=document.createElement(\"input\");return yp=new Set(Sp.filter((function(t){return e.setAttribute(\"type\",t),e.type===t})))}function Tp(e){return function(){if(null==wp&&\"undefined\"!=typeof window)try{window.addEventListener(\"test\",null,Object.defineProperty({},\"passive\",{get:function(){return wp=!0}}))}finally{wp=wp||!1}return wp}()?e:!!e.capture}var xp,Dp=function(){var e={NORMAL:0,NEGATED:1,INVERTED:2};return e[e.NORMAL]=\"NORMAL\",e[e.NEGATED]=\"NEGATED\",e[e.INVERTED]=\"INVERTED\",e}();function Op(){if(\"object\"!=typeof document||!document)return Dp.NORMAL;if(!xp){var e=document.createElement(\"div\"),t=e.style;e.dir=\"rtl\",t.height=\"1px\",t.width=\"1px\",t.overflow=\"auto\",t.visibility=\"hidden\",t.pointerEvents=\"none\",t.position=\"absolute\";var n=document.createElement(\"div\"),r=n.style;r.width=\"2px\",r.height=\"1px\",e.appendChild(n),document.body.appendChild(e),xp=Dp.NORMAL,0===e.scrollLeft&&(e.scrollLeft=1,xp=0===e.scrollLeft?Dp.NEGATED:Dp.INVERTED),e.parentNode.removeChild(e)}return xp}var Yp,Ep,Ip,Ap,Pp,jp=((Ap=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"create\",value:function(e){return\"undefined\"==typeof MutationObserver?null:new MutationObserver(e)}}]),e}()).\\u0275fac=function(e){return new(e||Ap)},Ap.\\u0275prov=_e({factory:function(){return new Ap},token:Ap,providedIn:\"root\"}),Ap),Rp=((Ip=function(){function e(t){_classCallCheck(this,e),this._mutationObserverFactory=t,this._observedElements=new Map}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){var e=this;this._observedElements.forEach((function(t,n){return e._cleanupObserver(n)}))}},{key:\"observe\",value:function(e){var t=this,n=gp(e);return new w((function(e){var r=t._observeElement(n).subscribe(e);return function(){r.unsubscribe(),t._unobserveElement(n)}}))}},{key:\"_observeElement\",value:function(e){if(this._observedElements.has(e))this._observedElements.get(e).count++;else{var t=new x,n=this._mutationObserverFactory.create((function(e){return t.next(e)}));n&&n.observe(e,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(e,{observer:n,stream:t,count:1})}return this._observedElements.get(e).stream}},{key:\"_unobserveElement\",value:function(e){this._observedElements.has(e)&&(this._observedElements.get(e).count--,this._observedElements.get(e).count||this._cleanupObserver(e))}},{key:\"_cleanupObserver\",value:function(e){if(this._observedElements.has(e)){var t=this._observedElements.get(e),n=t.observer,r=t.stream;n&&n.disconnect(),r.complete(),this._observedElements.delete(e)}}}]),e}()).\\u0275fac=function(e){return new(e||Ip)(et(jp))},Ip.\\u0275prov=_e({factory:function(){return new Ip(et(jp))},token:Ip,providedIn:\"root\"}),Ip),Hp=((Ep=function(){function e(t,n,r){_classCallCheck(this,e),this._contentObserver=t,this._elementRef=n,this._ngZone=r,this.event=new bu,this._disabled=!1,this._currentSubscription=null}return _createClass(e,[{key:\"ngAfterContentInit\",value:function(){this._currentSubscription||this.disabled||this._subscribe()}},{key:\"ngOnDestroy\",value:function(){this._unsubscribe()}},{key:\"_subscribe\",value:function(){var e=this;this._unsubscribe();var t=this._contentObserver.observe(this._elementRef);this._ngZone.runOutsideAngular((function(){e._currentSubscription=(e.debounce?t.pipe(rp(e.debounce)):t).subscribe(e.event)}))}},{key:\"_unsubscribe\",value:function(){this._currentSubscription&&this._currentSubscription.unsubscribe()}},{key:\"disabled\",get:function(){return this._disabled},set:function(e){this._disabled=mp(e),this._disabled?this._unsubscribe():this._subscribe()}},{key:\"debounce\",get:function(){return this._debounce},set:function(e){this._debounce=pp(e),this._subscribe()}}]),e}()).\\u0275fac=function(e){return new(e||Ep)(Io(Rp),Io(Qs),Io(cc))},Ep.\\u0275dir=Lt({type:Ep,selectors:[[\"\",\"cdkObserveContent\",\"\"]],inputs:{disabled:[\"cdkObserveContentDisabled\",\"disabled\"],debounce:\"debounce\"},outputs:{event:\"cdkObserveContent\"},exportAs:[\"cdkObserveContent\"]}),Ep),Fp=((Yp=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Yp}),Yp.\\u0275inj=ve({factory:function(e){return new(e||Yp)},providers:[jp]}),Yp),Np=function(){function e(t){var n=this;_classCallCheck(this,e),this._items=t,this._activeItemIndex=-1,this._activeItem=null,this._wrap=!1,this._letterKeyStream=new x,this._typeaheadSubscription=h.EMPTY,this._vertical=!0,this._allowedModifierKeys=[],this._skipPredicateFn=function(e){return e.disabled},this._pressedLetters=[],this.tabOut=new x,this.change=new x,t instanceof wu&&t.changes.subscribe((function(e){if(n._activeItem){var t=e.toArray().indexOf(n._activeItem);t>-1&&t!==n._activeItemIndex&&(n._activeItemIndex=t)}}))}return _createClass(e,[{key:\"skipPredicate\",value:function(e){return this._skipPredicateFn=e,this}},{key:\"withWrap\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._wrap=e,this}},{key:\"withVerticalOrientation\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._vertical=e,this}},{key:\"withHorizontalOrientation\",value:function(e){return this._horizontal=e,this}},{key:\"withAllowedModifierKeys\",value:function(e){return this._allowedModifierKeys=e,this}},{key:\"withTypeAhead\",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:200;if(this._items.length&&this._items.some((function(e){return\"function\"!=typeof e.getLabel})))throw Error(\"ListKeyManager items in typeahead mode must implement the `getLabel` method.\");return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe(Km((function(t){return e._pressedLetters.push(t)})),rp(t),Gd((function(){return e._pressedLetters.length>0})),F((function(){return e._pressedLetters.join(\"\")}))).subscribe((function(t){for(var n=e._getItemsArray(),r=1;r-1}));switch(n){case 9:return void this.tabOut.next();case 40:if(this._vertical&&r){this.setNextItemActive();break}return;case 38:if(this._vertical&&r){this.setPreviousItemActive();break}return;case 39:if(this._horizontal&&r){\"rtl\"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case 37:if(this._horizontal&&r){\"rtl\"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;default:return void((r||Jm(e,\"shiftKey\"))&&(e.key&&1===e.key.length?this._letterKeyStream.next(e.key.toLocaleUpperCase()):(n>=65&&n<=90||n>=48&&n<=57)&&this._letterKeyStream.next(String.fromCharCode(n))))}this._pressedLetters=[],e.preventDefault()}},{key:\"isTyping\",value:function(){return this._pressedLetters.length>0}},{key:\"setFirstItemActive\",value:function(){this._setActiveItemByIndex(0,1)}},{key:\"setLastItemActive\",value:function(){this._setActiveItemByIndex(this._items.length-1,-1)}},{key:\"setNextItemActive\",value:function(){this._activeItemIndex<0?this.setFirstItemActive():this._setActiveItemByDelta(1)}},{key:\"setPreviousItemActive\",value:function(){this._activeItemIndex<0&&this._wrap?this.setLastItemActive():this._setActiveItemByDelta(-1)}},{key:\"updateActiveItem\",value:function(e){var t=this._getItemsArray(),n=\"number\"==typeof e?e:t.indexOf(e),r=t[n];this._activeItem=null==r?null:r,this._activeItemIndex=n}},{key:\"_setActiveItemByDelta\",value:function(e){this._wrap?this._setActiveInWrapMode(e):this._setActiveInDefaultMode(e)}},{key:\"_setActiveInWrapMode\",value:function(e){for(var t=this._getItemsArray(),n=1;n<=t.length;n++){var r=(this._activeItemIndex+e*n+t.length)%t.length;if(!this._skipPredicateFn(t[r]))return void this.setActiveItem(r)}}},{key:\"_setActiveInDefaultMode\",value:function(e){this._setActiveItemByIndex(this._activeItemIndex+e,e)}},{key:\"_setActiveItemByIndex\",value:function(e,t){var n=this._getItemsArray();if(n[e]){for(;this._skipPredicateFn(n[e]);)if(!n[e+=t])return;this.setActiveItem(e)}}},{key:\"_getItemsArray\",value:function(){return this._items instanceof wu?this._items.toArray():this._items}},{key:\"activeItemIndex\",get:function(){return this._activeItemIndex}},{key:\"activeItem\",get:function(){return this._activeItem}}]),e}(),zp=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"setActiveItem\",value:function(e){this.activeItem&&this.activeItem.setInactiveStyles(),_get(_getPrototypeOf(n.prototype),\"setActiveItem\",this).call(this,e),this.activeItem&&this.activeItem.setActiveStyles()}}]),n}(Np),Vp=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e;return _classCallCheck(this,n),(e=t.apply(this,arguments))._origin=\"program\",e}return _createClass(n,[{key:\"setFocusOrigin\",value:function(e){return this._origin=e,this}},{key:\"setActiveItem\",value:function(e){_get(_getPrototypeOf(n.prototype),\"setActiveItem\",this).call(this,e),this.activeItem&&this.activeItem.focus(this._origin)}}]),n}(Np),Wp=((Pp=function(){function e(t){_classCallCheck(this,e),this._platform=t}return _createClass(e,[{key:\"isDisabled\",value:function(e){return e.hasAttribute(\"disabled\")}},{key:\"isVisible\",value:function(e){return function(e){return!!(e.offsetWidth||e.offsetHeight||\"function\"==typeof e.getClientRects&&e.getClientRects().length)}(e)&&\"visible\"===getComputedStyle(e).visibility}},{key:\"isTabbable\",value:function(e){if(!this._platform.isBrowser)return!1;var t,n=function(e){try{return e.frameElement}catch(KR){return null}}((t=e).ownerDocument&&t.ownerDocument.defaultView||window);if(n){var r=n&&n.nodeName.toLowerCase();if(-1===Bp(n))return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&\"object\"===r)return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&!this.isVisible(n))return!1}var i=e.nodeName.toLowerCase(),a=Bp(e);if(e.hasAttribute(\"contenteditable\"))return-1!==a;if(\"iframe\"===i)return!1;if(\"audio\"===i){if(!e.hasAttribute(\"controls\"))return!1;if(this._platform.BLINK)return!0}if(\"video\"===i){if(!e.hasAttribute(\"controls\")&&this._platform.TRIDENT)return!1;if(this._platform.BLINK||this._platform.FIREFOX)return!0}return(\"object\"!==i||!this._platform.BLINK&&!this._platform.WEBKIT)&&!(this._platform.WEBKIT&&this._platform.IOS&&!function(e){var t=e.nodeName.toLowerCase(),n=\"input\"===t&&e.type;return\"text\"===n||\"password\"===n||\"select\"===t||\"textarea\"===t}(e))&&e.tabIndex>=0}},{key:\"isFocusable\",value:function(e){return function(e){return!function(e){return function(e){return\"input\"==e.nodeName.toLowerCase()}(e)&&\"hidden\"==e.type}(e)&&(function(e){var t=e.nodeName.toLowerCase();return\"input\"===t||\"select\"===t||\"button\"===t||\"textarea\"===t}(e)||function(e){return function(e){return\"a\"==e.nodeName.toLowerCase()}(e)&&e.hasAttribute(\"href\")}(e)||e.hasAttribute(\"contenteditable\")||Up(e))}(e)&&!this.isDisabled(e)&&this.isVisible(e)}}]),e}()).\\u0275fac=function(e){return new(e||Pp)(et(Cp))},Pp.\\u0275prov=_e({factory:function(){return new Pp(et(Cp))},token:Pp,providedIn:\"root\"}),Pp);function Up(e){if(!e.hasAttribute(\"tabindex\")||void 0===e.tabIndex)return!1;var t=e.getAttribute(\"tabindex\");return\"-32768\"!=t&&!(!t||isNaN(parseInt(t,10)))}function Bp(e){if(!Up(e))return null;var t=parseInt(e.getAttribute(\"tabindex\")||\"\",10);return isNaN(t)?-1:t}var qp,Gp,$p,Jp=function(){function e(t,n,r,i){var a=this,o=arguments.length>4&&void 0!==arguments[4]&&arguments[4];_classCallCheck(this,e),this._element=t,this._checker=n,this._ngZone=r,this._document=i,this._hasAttached=!1,this.startAnchorListener=function(){return a.focusLastTabbableElement()},this.endAnchorListener=function(){return a.focusFirstTabbableElement()},this._enabled=!0,o||this.attachAnchors()}return _createClass(e,[{key:\"destroy\",value:function(){var e=this._startAnchor,t=this._endAnchor;e&&(e.removeEventListener(\"focus\",this.startAnchorListener),e.parentNode&&e.parentNode.removeChild(e)),t&&(t.removeEventListener(\"focus\",this.endAnchorListener),t.parentNode&&t.parentNode.removeChild(t)),this._startAnchor=this._endAnchor=null}},{key:\"attachAnchors\",value:function(){var e=this;return!!this._hasAttached||(this._ngZone.runOutsideAngular((function(){e._startAnchor||(e._startAnchor=e._createAnchor(),e._startAnchor.addEventListener(\"focus\",e.startAnchorListener)),e._endAnchor||(e._endAnchor=e._createAnchor(),e._endAnchor.addEventListener(\"focus\",e.endAnchorListener))})),this._element.parentNode&&(this._element.parentNode.insertBefore(this._startAnchor,this._element),this._element.parentNode.insertBefore(this._endAnchor,this._element.nextSibling),this._hasAttached=!0),this._hasAttached)}},{key:\"focusInitialElementWhenReady\",value:function(){var e=this;return new Promise((function(t){e._executeOnStable((function(){return t(e.focusInitialElement())}))}))}},{key:\"focusFirstTabbableElementWhenReady\",value:function(){var e=this;return new Promise((function(t){e._executeOnStable((function(){return t(e.focusFirstTabbableElement())}))}))}},{key:\"focusLastTabbableElementWhenReady\",value:function(){var e=this;return new Promise((function(t){e._executeOnStable((function(){return t(e.focusLastTabbableElement())}))}))}},{key:\"_getRegionBoundary\",value:function(e){for(var t=this._element.querySelectorAll(\"[cdk-focus-region-\".concat(e,\"], \")+\"[cdkFocusRegion\".concat(e,\"], \")+\"[cdk-focus-\".concat(e,\"]\")),n=0;n=0;n--){var r=t[n].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(t[n]):null;if(r)return r}return null}},{key:\"_createAnchor\",value:function(){var e=this._document.createElement(\"div\");return this._toggleAnchorTabIndex(this._enabled,e),e.classList.add(\"cdk-visually-hidden\"),e.classList.add(\"cdk-focus-trap-anchor\"),e.setAttribute(\"aria-hidden\",\"true\"),e}},{key:\"_toggleAnchorTabIndex\",value:function(e,t){e?t.setAttribute(\"tabindex\",\"0\"):t.removeAttribute(\"tabindex\")}},{key:\"_executeOnStable\",value:function(e){this._ngZone.isStable?e():this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(e)}},{key:\"enabled\",get:function(){return this._enabled},set:function(e){this._enabled=e,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(e,this._startAnchor),this._toggleAnchorTabIndex(e,this._endAnchor))}}]),e}(),Kp=((qp=function(){function e(t,n,r){_classCallCheck(this,e),this._checker=t,this._ngZone=n,this._document=r}return _createClass(e,[{key:\"create\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return new Jp(e,this._checker,this._ngZone,this._document,t)}}]),e}()).\\u0275fac=function(e){return new(e||qp)(et(Wp),et(cc),et(Wc))},qp.\\u0275prov=_e({factory:function(){return new qp(et(Wp),et(cc),et(Wc))},token:qp,providedIn:\"root\"}),qp),Zp=new Be(\"liveAnnouncerElement\",{providedIn:\"root\",factory:function(){return null}}),Qp=new Be(\"LIVE_ANNOUNCER_DEFAULT_OPTIONS\"),Xp=((Gp=function(){function e(t,n,r,i){_classCallCheck(this,e),this._ngZone=n,this._defaultOptions=i,this._document=r,this._liveElement=t||this._createLiveElement()}return _createClass(e,[{key:\"announce\",value:function(e){for(var t,n,r,i=this,a=this._defaultOptions,o=arguments.length,s=new Array(o>1?o-1:0),l=1;l1&&void 0!==arguments[1]&&arguments[1];if(!this._platform.isBrowser)return Bd(null);var r=gp(e);if(this._elementInfo.has(r)){var i=this._elementInfo.get(r);return i.checkChildren=n,i.subject.asObservable()}var a={unlisten:function(){},checkChildren:n,subject:new x};this._elementInfo.set(r,a),this._incrementMonitoredElementCount();var o=function(e){return t._onFocus(e,r)},s=function(e){return t._onBlur(e,r)};return this._ngZone.runOutsideAngular((function(){r.addEventListener(\"focus\",o,!0),r.addEventListener(\"blur\",s,!0)})),a.unlisten=function(){r.removeEventListener(\"focus\",o,!0),r.removeEventListener(\"blur\",s,!0)},a.subject.asObservable()}},{key:\"stopMonitoring\",value:function(e){var t=gp(e),n=this._elementInfo.get(t);n&&(n.unlisten(),n.subject.complete(),this._setClasses(t),this._elementInfo.delete(t),this._decrementMonitoredElementCount())}},{key:\"focusVia\",value:function(e,t,n){var r=gp(e);this._setOriginForCurrentEventQueue(t),\"function\"==typeof r.focus&&r.focus(n)}},{key:\"ngOnDestroy\",value:function(){var e=this;this._elementInfo.forEach((function(t,n){return e.stopMonitoring(n)}))}},{key:\"_toggleClass\",value:function(e,t,n){n?e.classList.add(t):e.classList.remove(t)}},{key:\"_setClasses\",value:function(e,t){this._elementInfo.get(e)&&(this._toggleClass(e,\"cdk-focused\",!!t),this._toggleClass(e,\"cdk-touch-focused\",\"touch\"===t),this._toggleClass(e,\"cdk-keyboard-focused\",\"keyboard\"===t),this._toggleClass(e,\"cdk-mouse-focused\",\"mouse\"===t),this._toggleClass(e,\"cdk-program-focused\",\"program\"===t))}},{key:\"_setOriginForCurrentEventQueue\",value:function(e){var t=this;this._ngZone.runOutsideAngular((function(){t._origin=e,t._originTimeoutId=setTimeout((function(){return t._origin=null}),1)}))}},{key:\"_wasCausedByTouch\",value:function(e){var t=e.target;return this._lastTouchTarget instanceof Node&&t instanceof Node&&(t===this._lastTouchTarget||t.contains(this._lastTouchTarget))}},{key:\"_onFocus\",value:function(e,t){var n=this._elementInfo.get(t);if(n&&(n.checkChildren||t===e.target)){var r=this._origin;r||(r=this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:this._wasCausedByTouch(e)?\"touch\":\"program\"),this._setClasses(t,r),this._emitOrigin(n.subject,r),this._lastFocusOrigin=r}}},{key:\"_onBlur\",value:function(e,t){var n=this._elementInfo.get(t);!n||n.checkChildren&&e.relatedTarget instanceof Node&&t.contains(e.relatedTarget)||(this._setClasses(t),this._emitOrigin(n.subject,null))}},{key:\"_emitOrigin\",value:function(e,t){this._ngZone.run((function(){return e.next(t)}))}},{key:\"_incrementMonitoredElementCount\",value:function(){var e=this;1==++this._monitoredElementCount&&this._platform.isBrowser&&this._ngZone.runOutsideAngular((function(){document.addEventListener(\"keydown\",e._documentKeydownListener,e_),document.addEventListener(\"mousedown\",e._documentMousedownListener,e_),document.addEventListener(\"touchstart\",e._documentTouchstartListener,e_),window.addEventListener(\"focus\",e._windowFocusListener)}))}},{key:\"_decrementMonitoredElementCount\",value:function(){--this._monitoredElementCount||(document.removeEventListener(\"keydown\",this._documentKeydownListener,e_),document.removeEventListener(\"mousedown\",this._documentMousedownListener,e_),document.removeEventListener(\"touchstart\",this._documentTouchstartListener,e_),window.removeEventListener(\"focus\",this._windowFocusListener),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._touchTimeoutId),clearTimeout(this._originTimeoutId))}}]),e}()).\\u0275fac=function(e){return new(e||$p)(et(cc),et(Cp))},$p.\\u0275prov=_e({factory:function(){return new $p(et(cc),et(Cp))},token:$p,providedIn:\"root\"}),$p);function n_(e){return 0===e.buttons}var r_,i_,a_,o_,s_,l_,u_,c_=((r_=function(){function e(t,n){_classCallCheck(this,e),this._platform=t,this._document=n}return _createClass(e,[{key:\"getHighContrastMode\",value:function(){if(!this._platform.isBrowser)return 0;var e=this._document.createElement(\"div\");e.style.backgroundColor=\"rgb(1,2,3)\",e.style.position=\"absolute\",this._document.body.appendChild(e);var t=(this._document.defaultView.getComputedStyle(e).backgroundColor||\"\").replace(/ /g,\"\");switch(this._document.body.removeChild(e),t){case\"rgb(0,0,0)\":return 2;case\"rgb(255,255,255)\":return 1}return 0}},{key:\"_applyBodyHighContrastModeCssClasses\",value:function(){if(this._platform.isBrowser&&this._document.body){var e=this._document.body.classList;e.remove(\"cdk-high-contrast-active\"),e.remove(\"cdk-high-contrast-black-on-white\"),e.remove(\"cdk-high-contrast-white-on-black\");var t=this.getHighContrastMode();1===t?(e.add(\"cdk-high-contrast-active\"),e.add(\"cdk-high-contrast-black-on-white\")):2===t&&(e.add(\"cdk-high-contrast-active\"),e.add(\"cdk-high-contrast-white-on-black\"))}}}]),e}()).\\u0275fac=function(e){return new(e||r_)(et(Cp),et(Wc))},r_.\\u0275prov=_e({factory:function(){return new r_(et(Cp),et(Wc))},token:r_,providedIn:\"root\"}),r_),d_=new Be(\"cdk-dir-doc\",{providedIn:\"root\",factory:function(){return tt(Wc)}}),h_=((a_=function(){function e(t){if(_classCallCheck(this,e),this.value=\"ltr\",this.change=new bu,t){var n=t.documentElement?t.documentElement.dir:null,r=(t.body?t.body.dir:null)||n;this.value=\"ltr\"===r||\"rtl\"===r?r:\"ltr\"}}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){this.change.complete()}}]),e}()).\\u0275fac=function(e){return new(e||a_)(et(d_,8))},a_.\\u0275prov=_e({factory:function(){return new a_(et(d_,8))},token:a_,providedIn:\"root\"}),a_),f_=((i_=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:i_}),i_.\\u0275inj=ve({factory:function(e){return new(e||i_)}}),i_),m_=new al(\"9.0.1\"),p_=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"getProperty\",value:function(e,t){return e[t]}},{key:\"log\",value:function(e){window.console&&window.console.log&&window.console.log(e)}},{key:\"logGroup\",value:function(e){window.console&&window.console.group&&window.console.group(e)}},{key:\"logGroupEnd\",value:function(){window.console&&window.console.groupEnd&&window.console.groupEnd()}},{key:\"onAndCancel\",value:function(e,t,n){return e.addEventListener(t,n,!1),function(){e.removeEventListener(t,n,!1)}}},{key:\"dispatchEvent\",value:function(e,t){e.dispatchEvent(t)}},{key:\"remove\",value:function(e){return e.parentNode&&e.parentNode.removeChild(e),e}},{key:\"getValue\",value:function(e){return e.value}},{key:\"createElement\",value:function(e,t){return(t=t||this.getDefaultDocument()).createElement(e)}},{key:\"createHtmlDocument\",value:function(){return document.implementation.createHTMLDocument(\"fakeTitle\")}},{key:\"getDefaultDocument\",value:function(){return document}},{key:\"isElementNode\",value:function(e){return e.nodeType===Node.ELEMENT_NODE}},{key:\"isShadowRoot\",value:function(e){return e instanceof DocumentFragment}},{key:\"getGlobalEventTarget\",value:function(e,t){return\"window\"===t?window:\"document\"===t?e:\"body\"===t?e.body:null}},{key:\"getHistory\",value:function(){return window.history}},{key:\"getLocation\",value:function(){return window.location}},{key:\"getBaseHref\",value:function(e){var t,n=__||(__=document.querySelector(\"base\"))?__.getAttribute(\"href\"):null;return null==n?null:(t=n,o_||(o_=document.createElement(\"a\")),o_.setAttribute(\"href\",t),\"/\"===o_.pathname.charAt(0)?o_.pathname:\"/\"+o_.pathname)}},{key:\"resetBaseElement\",value:function(){__=null}},{key:\"getUserAgent\",value:function(){return window.navigator.userAgent}},{key:\"performanceNow\",value:function(){return window.performance&&window.performance.now?window.performance.now():(new Date).getTime()}},{key:\"supportsCookies\",value:function(){return!0}},{key:\"getCookie\",value:function(e){return vd(document.cookie,e)}}],[{key:\"makeCurrent\",value:function(){var e;e=new n,Nc||(Nc=e)}}]),n}(function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.call(this)}return _createClass(n,[{key:\"supportsDOMEvents\",value:function(){return!0}}]),n}(function(){return function e(){_classCallCheck(this,e)}}())),__=null,v_=new Be(\"TRANSITION_ID\"),g_=[{provide:Vu,useFactory:function(e,t,n){return function(){n.get(Wu).donePromise.then((function(){var n=zc();Array.prototype.slice.apply(t.querySelectorAll(\"style[ng-transition]\")).filter((function(t){return t.getAttribute(\"ng-transition\")===e})).forEach((function(e){return n.remove(e)}))}))}},deps:[v_,Wc,vo],multi:!0}],y_=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"addToWindow\",value:function(e){Re.getAngularTestability=function(t){var n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],r=e.findTestabilityInTree(t,n);if(null==r)throw new Error(\"Could not find testability for element.\");return r},Re.getAllAngularTestabilities=function(){return e.getAllTestabilities()},Re.getAllAngularRootElements=function(){return e.getAllRootElements()},Re.frameworkStabilizers||(Re.frameworkStabilizers=[]),Re.frameworkStabilizers.push((function(e){var t=Re.getAllAngularTestabilities(),n=t.length,r=!1,i=function(t){r=r||t,0==--n&&e(r)};t.forEach((function(e){e.whenStable(i)}))}))}},{key:\"findTestabilityInTree\",value:function(e,t,n){if(null==t)return null;var r=e.getTestability(t);return null!=r?r:n?zc().isShadowRoot(t)?this.findTestabilityInTree(e,t.host,!0):this.findTestabilityInTree(e,t.parentElement,!0):null}}],[{key:\"init\",value:function(){var t;t=new e,kc=t}}]),e}(),b_=new Be(\"EventManagerPlugins\"),k_=((s_=function(){function e(t,n){var r=this;_classCallCheck(this,e),this._zone=n,this._eventNameToPlugin=new Map,t.forEach((function(e){return e.manager=r})),this._plugins=t.slice().reverse()}return _createClass(e,[{key:\"addEventListener\",value:function(e,t,n){return this._findPluginFor(t).addEventListener(e,t,n)}},{key:\"addGlobalEventListener\",value:function(e,t,n){return this._findPluginFor(t).addGlobalEventListener(e,t,n)}},{key:\"getZone\",value:function(){return this._zone}},{key:\"_findPluginFor\",value:function(e){var t=this._eventNameToPlugin.get(e);if(t)return t;for(var n=this._plugins,r=0;r-1}}]),n}(w_),E_.\\u0275fac=function(e){return new(e||E_)(et(Wc),et(U_),et(Ku),et(B_,8))},E_.\\u0275prov=_e({token:E_,factory:E_.\\u0275fac}),E_),multi:!0,deps:[Wc,U_,Ku,[new ce,B_]]},{provide:U_,useClass:q_,deps:[]}],$_=((I_=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:I_}),I_.\\u0275inj=ve({factory:function(e){return new(e||I_)},providers:G_}),I_),J_=[\"alt\",\"control\",\"meta\",\"shift\"],K_={\"\\b\":\"Backspace\",\"\\t\":\"Tab\",\"\\x7f\":\"Delete\",\"\\x1b\":\"Escape\",Del:\"Delete\",Esc:\"Escape\",Left:\"ArrowLeft\",Right:\"ArrowRight\",Up:\"ArrowUp\",Down:\"ArrowDown\",Menu:\"ContextMenu\",Scroll:\"ScrollLock\",Win:\"OS\"},Z_={A:\"1\",B:\"2\",C:\"3\",D:\"4\",E:\"5\",F:\"6\",G:\"7\",H:\"8\",I:\"9\",J:\"*\",K:\"+\",M:\"-\",N:\".\",O:\"/\",\"`\":\"0\",\"\\x90\":\"NumLock\"},Q_={alt:function(e){return e.altKey},control:function(e){return e.ctrlKey},meta:function(e){return e.metaKey},shift:function(e){return e.shiftKey}},X_=((j_=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){return _classCallCheck(this,n),t.call(this,e)}return _createClass(n,[{key:\"supports\",value:function(e){return null!=n.parseEventName(e)}},{key:\"addEventListener\",value:function(e,t,r){var i=n.parseEventName(t),a=n.eventCallback(i.fullKey,r,this.manager.getZone());return this.manager.getZone().runOutsideAngular((function(){return zc().onAndCancel(e,i.domEventName,a)}))}}],[{key:\"parseEventName\",value:function(e){var t=e.toLowerCase().split(\".\"),r=t.shift();if(0===t.length||\"keydown\"!==r&&\"keyup\"!==r)return null;var i=n._normalizeKey(t.pop()),a=\"\";if(J_.forEach((function(e){var n=t.indexOf(e);n>-1&&(t.splice(n,1),a+=e+\".\")})),a+=i,0!=t.length||0===i.length)return null;var o={};return o.domEventName=r,o.fullKey=a,o}},{key:\"getEventFullKey\",value:function(e){var t=\"\",n=function(e){var t=e.key;if(null==t){if(null==(t=e.keyIdentifier))return\"Unidentified\";t.startsWith(\"U+\")&&(t=String.fromCharCode(parseInt(t.substring(2),16)),3===e.location&&Z_.hasOwnProperty(t)&&(t=Z_[t]))}return K_[t]||t}(e);return\" \"===(n=n.toLowerCase())?n=\"space\":\".\"===n&&(n=\"dot\"),J_.forEach((function(r){r!=n&&(0,Q_[r])(e)&&(t+=r+\".\")})),t+=n}},{key:\"eventCallback\",value:function(e,t,r){return function(i){n.getEventFullKey(i)===e&&r.runGuarded((function(){return t(i)}))}}},{key:\"_normalizeKey\",value:function(e){switch(e){case\"esc\":return\"escape\";default:return e}}}]),n}(w_)).\\u0275fac=function(e){return new(e||j_)(et(Wc))},j_.\\u0275prov=_e({token:j_,factory:j_.\\u0275fac}),j_),ev=((P_=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||P_)},P_.\\u0275prov=_e({factory:function(){return et(tv)},token:P_,providedIn:\"root\"}),P_),tv=((A_=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this))._doc=e,r}return _createClass(n,[{key:\"sanitize\",value:function(e,t){if(null==t)return null;switch(e){case Kr.NONE:return t;case Kr.HTML:return wr(t,\"HTML\")?kr(t):$r(this._doc,String(t));case Kr.STYLE:return wr(t,\"Style\")?kr(t):Xr(t);case Kr.SCRIPT:if(wr(t,\"Script\"))return kr(t);throw new Error(\"unsafe value used in a script context\");case Kr.URL:return Cr(t),wr(t,\"URL\")?kr(t):Or(String(t));case Kr.RESOURCE_URL:if(wr(t,\"ResourceURL\"))return kr(t);throw new Error(\"unsafe value used in a resource URL context (see http://g.co/ng/security#xss)\");default:throw new Error(\"Unexpected SecurityContext \".concat(e,\" (see http://g.co/ng/security#xss)\"))}}},{key:\"bypassSecurityTrustHtml\",value:function(e){return new _r(e)}},{key:\"bypassSecurityTrustStyle\",value:function(e){return new vr(e)}},{key:\"bypassSecurityTrustScript\",value:function(e){return new gr(e)}},{key:\"bypassSecurityTrustUrl\",value:function(e){return new yr(e)}},{key:\"bypassSecurityTrustResourceUrl\",value:function(e){return new br(e)}}]),n}(ev)).\\u0275fac=function(e){return new(e||A_)(et(Wc))},A_.\\u0275prov=_e({factory:function(){return e=et(qe),new tv(e.get(Wc));var e},token:A_,providedIn:\"root\"}),A_),nv=Sc(Rc,\"browser\",[{provide:$u,useValue:\"browser\"},{provide:Gu,useValue:function(){p_.makeCurrent(),y_.init()},multi:!0},{provide:Wc,useFactory:function(){return function(e){Rt=e}(document),document},deps:[]}]),rv=[[],{provide:no,useValue:\"root\"},{provide:mr,useFactory:function(){return new mr},deps:[]},{provide:b_,useClass:V_,multi:!0,deps:[Wc,cc,$u]},{provide:b_,useClass:X_,multi:!0,deps:[Wc]},[],{provide:H_,useClass:H_,deps:[k_,M_,Uu]},{provide:el,useExisting:H_},{provide:C_,useExisting:M_},{provide:M_,useClass:M_,deps:[Wc]},{provide:yc,useClass:yc,deps:[cc]},{provide:k_,useClass:k_,deps:[b_,cc]},[]],iv=((R_=function(){function e(t){if(_classCallCheck(this,e),t)throw new Error(\"BrowserModule has already been loaded. If you need access to common directives such as NgIf and NgFor from a lazy loaded module, import CommonModule instead.\")}return _createClass(e,null,[{key:\"withServerTransition\",value:function(t){return{ngModule:e,providers:[{provide:Uu,useValue:t.appId},{provide:v_,useExisting:Uu},g_]}}}]),e}()).\\u0275mod=Mt({type:R_}),R_.\\u0275inj=ve({factory:function(e){return new(e||R_)(et(R_,12))},providers:rv,imports:[Nd,Fc]}),R_);function av(){return $(1)}function ov(){return av()(Bd.apply(void 0,arguments))}function sv(){for(var e=arguments.length,t=new Array(e),n=0;n1&&void 0!==arguments[1]?arguments[1]:null;return{type:4,styles:t,timings:e}}function dv(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return{type:2,steps:e,options:t}}function hv(e){return{type:6,styles:e,offset:null}}function fv(e,t,n){return{type:0,name:e,styles:t,options:n}}function mv(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return{type:1,expr:e,animation:t,options:n}}function pv(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return{type:11,selector:e,animation:t,options:n}}function _v(e){Promise.resolve(null).then(e)}var vv=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;_classCallCheck(this,e),this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this.parentPlayer=null,this.totalTime=t+n}return _createClass(e,[{key:\"_onFinish\",value:function(){this._finished||(this._finished=!0,this._onDoneFns.forEach((function(e){return e()})),this._onDoneFns=[])}},{key:\"onStart\",value:function(e){this._onStartFns.push(e)}},{key:\"onDone\",value:function(e){this._onDoneFns.push(e)}},{key:\"onDestroy\",value:function(e){this._onDestroyFns.push(e)}},{key:\"hasStarted\",value:function(){return this._started}},{key:\"init\",value:function(){}},{key:\"play\",value:function(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}},{key:\"triggerMicrotask\",value:function(){var e=this;_v((function(){return e._onFinish()}))}},{key:\"_onStart\",value:function(){this._onStartFns.forEach((function(e){return e()})),this._onStartFns=[]}},{key:\"pause\",value:function(){}},{key:\"restart\",value:function(){}},{key:\"finish\",value:function(){this._onFinish()}},{key:\"destroy\",value:function(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach((function(e){return e()})),this._onDestroyFns=[])}},{key:\"reset\",value:function(){}},{key:\"setPosition\",value:function(e){}},{key:\"getPosition\",value:function(){return 0}},{key:\"triggerCallback\",value:function(e){var t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach((function(e){return e()})),t.length=0}}]),e}(),gv=function(){function e(t){var n=this;_classCallCheck(this,e),this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=t;var r=0,i=0,a=0,o=this.players.length;0==o?_v((function(){return n._onFinish()})):this.players.forEach((function(e){e.onDone((function(){++r==o&&n._onFinish()})),e.onDestroy((function(){++i==o&&n._onDestroy()})),e.onStart((function(){++a==o&&n._onStart()}))})),this.totalTime=this.players.reduce((function(e,t){return Math.max(e,t.totalTime)}),0)}return _createClass(e,[{key:\"_onFinish\",value:function(){this._finished||(this._finished=!0,this._onDoneFns.forEach((function(e){return e()})),this._onDoneFns=[])}},{key:\"init\",value:function(){this.players.forEach((function(e){return e.init()}))}},{key:\"onStart\",value:function(e){this._onStartFns.push(e)}},{key:\"_onStart\",value:function(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach((function(e){return e()})),this._onStartFns=[])}},{key:\"onDone\",value:function(e){this._onDoneFns.push(e)}},{key:\"onDestroy\",value:function(e){this._onDestroyFns.push(e)}},{key:\"hasStarted\",value:function(){return this._started}},{key:\"play\",value:function(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach((function(e){return e.play()}))}},{key:\"pause\",value:function(){this.players.forEach((function(e){return e.pause()}))}},{key:\"restart\",value:function(){this.players.forEach((function(e){return e.restart()}))}},{key:\"finish\",value:function(){this._onFinish(),this.players.forEach((function(e){return e.finish()}))}},{key:\"destroy\",value:function(){this._onDestroy()}},{key:\"_onDestroy\",value:function(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach((function(e){return e.destroy()})),this._onDestroyFns.forEach((function(e){return e()})),this._onDestroyFns=[])}},{key:\"reset\",value:function(){this.players.forEach((function(e){return e.reset()})),this._destroyed=!1,this._finished=!1,this._started=!1}},{key:\"setPosition\",value:function(e){var t=e*this.totalTime;this.players.forEach((function(e){var n=e.totalTime?Math.min(1,t/e.totalTime):1;e.setPosition(n)}))}},{key:\"getPosition\",value:function(){var e=0;return this.players.forEach((function(t){var n=t.getPosition();e=Math.min(n,e)})),e}},{key:\"beforeDestroy\",value:function(){this.players.forEach((function(e){e.beforeDestroy&&e.beforeDestroy()}))}},{key:\"triggerCallback\",value:function(e){var t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach((function(e){return e()})),t.length=0}}]),e}();function yv(){return\"undefined\"!=typeof process&&\"[object process]\"==={}.toString.call(process)}function bv(e){switch(e.length){case 0:return new vv;case 1:return e[0];default:return new gv(e)}}function kv(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},o=[],s=[],l=-1,u=null;if(r.forEach((function(e){var n=e.offset,r=n==l,c=r&&u||{};Object.keys(e).forEach((function(n){var r=n,s=e[n];if(\"offset\"!==n)switch(r=t.normalizePropertyName(r,o),s){case\"!\":s=i[n];break;case\"*\":s=a[n];break;default:s=t.normalizeStyleValue(n,r,s,o)}c[r]=s})),r||s.push(c),u=c,l=n})),o.length){var c=\"\\n - \";throw new Error(\"Unable to animate due to the following errors:\".concat(c).concat(o.join(c)))}return s}function wv(e,t,n,r){switch(t){case\"start\":e.onStart((function(){return r(n&&Cv(n,\"start\",e))}));break;case\"done\":e.onDone((function(){return r(n&&Cv(n,\"done\",e))}));break;case\"destroy\":e.onDestroy((function(){return r(n&&Cv(n,\"destroy\",e))}))}}function Cv(e,t,n){var r=n.totalTime,i=Mv(e.element,e.triggerName,e.fromState,e.toState,t||e.phaseName,null==r?e.totalTime:r,!!n.disabled),a=e._data;return null!=a&&(i._data=a),i}function Mv(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:\"\",a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0,o=arguments.length>6?arguments[6]:void 0;return{element:e,triggerName:t,fromState:n,toState:r,phaseName:i,totalTime:a,disabled:!!o}}function Sv(e,t,n){var r;return e instanceof Map?(r=e.get(t))||e.set(t,r=n):(r=e[t])||(r=e[t]=n),r}function Lv(e){var t=e.indexOf(\":\");return[e.substring(1,t),e.substr(t+1)]}var Tv=function(e,t){return!1},xv=function(e,t){return!1},Dv=function(e,t,n){return[]},Ov=yv();(Ov||\"undefined\"!=typeof Element)&&(Tv=function(e,t){return e.contains(t)},xv=function(){if(Ov||Element.prototype.matches)return function(e,t){return e.matches(t)};var e=Element.prototype,t=e.matchesSelector||e.mozMatchesSelector||e.msMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;return t?function(e,n){return t.apply(e,[n])}:xv}(),Dv=function(e,t,n){var r=[];if(n)r.push.apply(r,_toConsumableArray(e.querySelectorAll(t)));else{var i=e.querySelector(t);i&&r.push(i)}return r});var Yv=null,Ev=!1;function Iv(e){Yv||(Yv=(\"undefined\"!=typeof document?document.body:null)||{},Ev=!!Yv.style&&\"WebkitAppearance\"in Yv.style);var t=!0;return Yv.style&&!function(e){return\"ebkit\"==e.substring(1,6)}(e)&&(!(t=e in Yv.style)&&Ev)&&(t=\"Webkit\"+e.charAt(0).toUpperCase()+e.substr(1)in Yv.style),t}var Av=xv,Pv=Tv,jv=Dv;function Rv(e){var t={};return Object.keys(e).forEach((function(n){var r=n.replace(/([a-z])([A-Z])/g,\"$1-$2\");t[r]=e[n]})),t}var Hv,Fv=((Hv=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"validateStyleProperty\",value:function(e){return Iv(e)}},{key:\"matchesElement\",value:function(e,t){return Av(e,t)}},{key:\"containsElement\",value:function(e,t){return Pv(e,t)}},{key:\"query\",value:function(e,t,n){return jv(e,t,n)}},{key:\"computeStyle\",value:function(e,t,n){return n||\"\"}},{key:\"animate\",value:function(e,t,n,r,i){return arguments.length>5&&void 0!==arguments[5]&&arguments[5],arguments.length>6&&arguments[6],new vv(n,r)}}]),e}()).\\u0275fac=function(e){return new(e||Hv)},Hv.\\u0275prov=_e({token:Hv,factory:Hv.\\u0275fac}),Hv),Nv=function(){var e=function e(){_classCallCheck(this,e)};return e.NOOP=new Fv,e}();function zv(e){if(\"number\"==typeof e)return e;var t=e.match(/^(-?[\\.\\d]+)(m?s)/);return!t||t.length<2?0:Vv(parseFloat(t[1]),t[2])}function Vv(e,t){switch(t){case\"s\":return 1e3*e;default:return e}}function Wv(e,t,n){return e.hasOwnProperty(\"duration\")?e:function(e,t,n){var r,i=0,a=\"\";if(\"string\"==typeof e){var o=e.match(/^(-?[\\.\\d]+)(m?s)(?:\\s+(-?[\\.\\d]+)(m?s))?(?:\\s+([-a-z]+(?:\\(.+?\\))?))?$/i);if(null===o)return t.push('The provided timing value \"'.concat(e,'\" is invalid.')),{duration:0,delay:0,easing:\"\"};r=Vv(parseFloat(o[1]),o[2]);var s=o[3];null!=s&&(i=Vv(parseFloat(s),o[4]));var l=o[5];l&&(a=l)}else r=e;if(!n){var u=!1,c=t.length;r<0&&(t.push(\"Duration values below 0 are not allowed for this animation step.\"),u=!0),i<0&&(t.push(\"Delay values below 0 are not allowed for this animation step.\"),u=!0),u&&t.splice(c,0,'The provided timing value \"'.concat(e,'\" is invalid.'))}return{duration:r,delay:i,easing:a}}(e,t,n)}function Uv(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Object.keys(e).forEach((function(n){t[n]=e[n]})),t}function Bv(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(t)for(var r in e)n[r]=e[r];else Uv(e,n);return n}function qv(e,t,n){return n?t+\":\"+n+\";\":\"\"}function Gv(e){for(var t=\"\",n=0;n *\";case\":leave\":return\"* => void\";case\":increment\":return function(e,t){return parseFloat(t)>parseFloat(e)};case\":decrement\":return function(e,t){return parseFloat(t) *\"}}(e,n);if(\"function\"==typeof r)return void t.push(r);e=r}var i=e.match(/^(\\*|[-\\w]+)\\s*()\\s*(\\*|[-\\w]+)$/);if(null==i||i.length<4)return n.push('The provided transition expression \"'.concat(e,'\" is not supported')),t;var a=i[1],o=i[2],s=i[3];t.push(ug(a,s)),\"<\"!=o[0]||\"*\"==a&&\"*\"==s||t.push(ug(s,a))}(e,i,r)})):i.push(n),i),animation:a,queryCount:t.queryCount,depCount:t.depCount,options:pg(e.options)}}},{key:\"visitSequence\",value:function(e,t){var n=this;return{type:2,steps:e.steps.map((function(e){return ag(n,e,t)})),options:pg(e.options)}}},{key:\"visitGroup\",value:function(e,t){var n=this,r=t.currentTime,i=0,a=e.steps.map((function(e){t.currentTime=r;var a=ag(n,e,t);return i=Math.max(i,t.currentTime),a}));return t.currentTime=i,{type:3,steps:a,options:pg(e.options)}}},{key:\"visitAnimate\",value:function(e,t){var n,r=function(e,t){var n=null;if(e.hasOwnProperty(\"duration\"))n=e;else if(\"number\"==typeof e)return _g(Wv(e,t).duration,0,\"\");var r=e;if(r.split(/\\s+/).some((function(e){return\"{\"==e.charAt(0)&&\"{\"==e.charAt(1)}))){var i=_g(0,0,\"\");return i.dynamic=!0,i.strValue=r,i}return _g((n=n||Wv(r,t)).duration,n.delay,n.easing)}(e.timings,t.errors);t.currentAnimateTimings=r;var i=e.styles?e.styles:hv({});if(5==i.type)n=this.visitKeyframes(i,t);else{var a=e.styles,o=!1;if(!a){o=!0;var s={};r.easing&&(s.easing=r.easing),a=hv(s)}t.currentTime+=r.duration+r.delay;var l=this.visitStyle(a,t);l.isEmptyStep=o,n=l}return t.currentAnimateTimings=null,{type:4,timings:r,style:n,options:null}}},{key:\"visitStyle\",value:function(e,t){var n=this._makeStyleAst(e,t);return this._validateStyleAst(n,t),n}},{key:\"_makeStyleAst\",value:function(e,t){var n=[];Array.isArray(e.styles)?e.styles.forEach((function(e){\"string\"==typeof e?\"*\"==e?n.push(e):t.errors.push(\"The provided style string value \".concat(e,\" is not allowed.\")):n.push(e)})):n.push(e.styles);var r=!1,i=null;return n.forEach((function(e){if(mg(e)){var t=e,n=t.easing;if(n&&(i=n,delete t.easing),!r)for(var a in t)if(t[a].toString().indexOf(\"{{\")>=0){r=!0;break}}})),{type:6,styles:n,easing:i,offset:e.offset,containsDynamicStyles:r,options:null}}},{key:\"_validateStyleAst\",value:function(e,t){var n=this,r=t.currentAnimateTimings,i=t.currentTime,a=t.currentTime;r&&a>0&&(a-=r.duration+r.delay),e.styles.forEach((function(e){\"string\"!=typeof e&&Object.keys(e).forEach((function(r){if(n._driver.validateStyleProperty(r)){var o,s,l,u,c,d=t.collectedStyles[t.currentQuerySelector],h=d[r],f=!0;h&&(a!=i&&a>=h.startTime&&i<=h.endTime&&(t.errors.push('The CSS property \"'.concat(r,'\" that exists between the times of \"').concat(h.startTime,'ms\" and \"').concat(h.endTime,'ms\" is also being animated in a parallel animation between the times of \"').concat(a,'ms\" and \"').concat(i,'ms\"')),f=!1),a=h.startTime),f&&(d[r]={startTime:a,endTime:i}),t.options&&(o=e[r],s=t.options,l=t.errors,u=s.params||{},(c=Qv(o)).length&&c.forEach((function(e){u.hasOwnProperty(e)||l.push(\"Unable to resolve the local animation param \".concat(e,\" in the given list of values\"))})))}else t.errors.push('The provided animation property \"'.concat(r,'\" is not a supported CSS property for animations'))}))}))}},{key:\"visitKeyframes\",value:function(e,t){var n=this,r={type:5,styles:[],options:null};if(!t.currentAnimateTimings)return t.errors.push(\"keyframes() must be placed inside of a call to animate()\"),r;var i=0,a=[],o=!1,s=!1,l=0,u=e.steps.map((function(e){var r=n._makeStyleAst(e,t),u=null!=r.offset?r.offset:function(e){if(\"string\"==typeof e)return null;var t=null;if(Array.isArray(e))e.forEach((function(e){if(mg(e)&&e.hasOwnProperty(\"offset\")){var n=e;t=parseFloat(n.offset),delete n.offset}}));else if(mg(e)&&e.hasOwnProperty(\"offset\")){var n=e;t=parseFloat(n.offset),delete n.offset}return t}(r.styles),c=0;return null!=u&&(i++,c=r.offset=u),s=s||c<0||c>1,o=o||c0&&i0?i==h?1:d*i:a[i],s=o*p;t.currentTime=f+m.delay+s,m.duration=s,n._validateStyleAst(e,t),e.offset=o,r.styles.push(e)})),r}},{key:\"visitReference\",value:function(e,t){return{type:8,animation:ag(this,Kv(e.animation),t),options:pg(e.options)}}},{key:\"visitAnimateChild\",value:function(e,t){return t.depCount++,{type:9,options:pg(e.options)}}},{key:\"visitAnimateRef\",value:function(e,t){return{type:10,animation:this.visitReference(e.animation,t),options:pg(e.options)}}},{key:\"visitQuery\",value:function(e,t){var n=t.currentQuerySelector,r=e.options||{};t.queryCount++,t.currentQuery=e;var i=_slicedToArray(function(e){var t=!!e.split(/\\s*,\\s*/).find((function(e){return\":self\"==e}));return t&&(e=e.replace(cg,\"\")),[e=e.replace(/@\\*/g,\".ng-trigger\").replace(/@\\w+/g,(function(e){return\".ng-trigger-\"+e.substr(1)})).replace(/:animating/g,\".ng-animating\"),t]}(e.selector),2),a=i[0],o=i[1];t.currentQuerySelector=n.length?n+\" \"+a:a,Sv(t.collectedStyles,t.currentQuerySelector,{});var s=ag(this,Kv(e.animation),t);return t.currentQuery=null,t.currentQuerySelector=n,{type:11,selector:a,limit:r.limit||0,optional:!!r.optional,includeSelf:o,animation:s,originalSelector:e.selector,options:pg(e.options)}}},{key:\"visitStagger\",value:function(e,t){t.currentQuery||t.errors.push(\"stagger() can only be used inside of query()\");var n=\"full\"===e.timings?{duration:0,delay:0,easing:\"full\"}:Wv(e.timings,t.errors,!0);return{type:12,animation:ag(this,Kv(e.animation),t),timings:n,options:null}}}]),e}(),fg=function e(t){_classCallCheck(this,e),this.errors=t,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles={},this.options=null};function mg(e){return!Array.isArray(e)&&\"object\"==typeof e}function pg(e){var t;return e?(e=Uv(e)).params&&(e.params=(t=e.params)?Uv(t):null):e={},e}function _g(e,t,n){return{duration:e,delay:t,easing:n}}function vg(e,t,n,r,i,a){var o=arguments.length>6&&void 0!==arguments[6]?arguments[6]:null,s=arguments.length>7&&void 0!==arguments[7]&&arguments[7];return{type:1,element:e,keyframes:t,preStyleProps:n,postStyleProps:r,duration:i,delay:a,totalTime:i+a,easing:o,subTimeline:s}}var gg=function(){function e(){_classCallCheck(this,e),this._map=new Map}return _createClass(e,[{key:\"consume\",value:function(e){var t=this._map.get(e);return t?this._map.delete(e):t=[],t}},{key:\"append\",value:function(e,t){var n,r=this._map.get(e);r||this._map.set(e,r=[]),(n=r).push.apply(n,_toConsumableArray(t))}},{key:\"has\",value:function(e){return this._map.has(e)}},{key:\"clear\",value:function(){this._map.clear()}}]),e}(),yg=new RegExp(\":enter\",\"g\"),bg=new RegExp(\":leave\",\"g\");function kg(e,t,n,r,i){var a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},o=arguments.length>6&&void 0!==arguments[6]?arguments[6]:{},s=arguments.length>7?arguments[7]:void 0,l=arguments.length>8?arguments[8]:void 0,u=arguments.length>9&&void 0!==arguments[9]?arguments[9]:[];return(new wg).buildKeyframes(e,t,n,r,i,a,o,s,l,u)}var wg=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"buildKeyframes\",value:function(e,t,n,r,i,a,o,s,l){var u=arguments.length>9&&void 0!==arguments[9]?arguments[9]:[];l=l||new gg;var c=new Mg(e,t,l,r,i,u,[]);c.options=s,c.currentTimeline.setStyles([a],null,c.errors,s),ag(this,n,c);var d=c.timelines.filter((function(e){return e.containsAnimation()}));if(d.length&&Object.keys(o).length){var h=d[d.length-1];h.allowOnlyTimelineStyles()||h.setStyles([o],null,c.errors,s)}return d.length?d.map((function(e){return e.buildKeyframes()})):[vg(t,[],[],[],0,0,\"\",!1)]}},{key:\"visitTrigger\",value:function(e,t){}},{key:\"visitState\",value:function(e,t){}},{key:\"visitTransition\",value:function(e,t){}},{key:\"visitAnimateChild\",value:function(e,t){var n=t.subInstructions.consume(t.element);if(n){var r=t.createSubContext(e.options),i=t.currentTimeline.currentTime,a=this._visitSubInstructions(n,r,r.options);i!=a&&t.transformIntoNewTimeline(a)}t.previousNode=e}},{key:\"visitAnimateRef\",value:function(e,t){var n=t.createSubContext(e.options);n.transformIntoNewTimeline(),this.visitReference(e.animation,n),t.transformIntoNewTimeline(n.currentTimeline.currentTime),t.previousNode=e}},{key:\"_visitSubInstructions\",value:function(e,t,n){var r=t.currentTimeline.currentTime,i=null!=n.duration?zv(n.duration):null,a=null!=n.delay?zv(n.delay):null;return 0!==i&&e.forEach((function(e){var n=t.appendInstructionToTimeline(e,i,a);r=Math.max(r,n.duration+n.delay)})),r}},{key:\"visitReference\",value:function(e,t){t.updateOptions(e.options,!0),ag(this,e.animation,t),t.previousNode=e}},{key:\"visitSequence\",value:function(e,t){var n=this,r=t.subContextCount,i=t,a=e.options;if(a&&(a.params||a.delay)&&((i=t.createSubContext(a)).transformIntoNewTimeline(),null!=a.delay)){6==i.previousNode.type&&(i.currentTimeline.snapshotCurrentStyles(),i.previousNode=Cg);var o=zv(a.delay);i.delayNextStep(o)}e.steps.length&&(e.steps.forEach((function(e){return ag(n,e,i)})),i.currentTimeline.applyStylesToKeyframe(),i.subContextCount>r&&i.transformIntoNewTimeline()),t.previousNode=e}},{key:\"visitGroup\",value:function(e,t){var n=this,r=[],i=t.currentTimeline.currentTime,a=e.options&&e.options.delay?zv(e.options.delay):0;e.steps.forEach((function(o){var s=t.createSubContext(e.options);a&&s.delayNextStep(a),ag(n,o,s),i=Math.max(i,s.currentTimeline.currentTime),r.push(s.currentTimeline)})),r.forEach((function(e){return t.currentTimeline.mergeTimelineCollectedStyles(e)})),t.transformIntoNewTimeline(i),t.previousNode=e}},{key:\"_visitTiming\",value:function(e,t){if(e.dynamic){var n=e.strValue;return Wv(t.params?Xv(n,t.params,t.errors):n,t.errors)}return{duration:e.duration,delay:e.delay,easing:e.easing}}},{key:\"visitAnimate\",value:function(e,t){var n=t.currentAnimateTimings=this._visitTiming(e.timings,t),r=t.currentTimeline;n.delay&&(t.incrementTime(n.delay),r.snapshotCurrentStyles());var i=e.style;5==i.type?this.visitKeyframes(i,t):(t.incrementTime(n.duration),this.visitStyle(i,t),r.applyStylesToKeyframe()),t.currentAnimateTimings=null,t.previousNode=e}},{key:\"visitStyle\",value:function(e,t){var n=t.currentTimeline,r=t.currentAnimateTimings;!r&&n.getCurrentStyleProperties().length&&n.forwardFrame();var i=r&&r.easing||e.easing;e.isEmptyStep?n.applyEmptyStep(i):n.setStyles(e.styles,i,t.errors,t.options),t.previousNode=e}},{key:\"visitKeyframes\",value:function(e,t){var n=t.currentAnimateTimings,r=t.currentTimeline.duration,i=n.duration,a=t.createSubContext().currentTimeline;a.easing=n.easing,e.styles.forEach((function(e){a.forwardTime((e.offset||0)*i),a.setStyles(e.styles,e.easing,t.errors,t.options),a.applyStylesToKeyframe()})),t.currentTimeline.mergeTimelineCollectedStyles(a),t.transformIntoNewTimeline(r+i),t.previousNode=e}},{key:\"visitQuery\",value:function(e,t){var n=this,r=t.currentTimeline.currentTime,i=e.options||{},a=i.delay?zv(i.delay):0;a&&(6===t.previousNode.type||0==r&&t.currentTimeline.getCurrentStyleProperties().length)&&(t.currentTimeline.snapshotCurrentStyles(),t.previousNode=Cg);var o=r,s=t.invokeQuery(e.selector,e.originalSelector,e.limit,e.includeSelf,!!i.optional,t.errors);t.currentQueryTotal=s.length;var l=null;s.forEach((function(r,i){t.currentQueryIndex=i;var s=t.createSubContext(e.options,r);a&&s.delayNextStep(a),r===t.element&&(l=s.currentTimeline),ag(n,e.animation,s),s.currentTimeline.applyStylesToKeyframe(),o=Math.max(o,s.currentTimeline.currentTime)})),t.currentQueryIndex=0,t.currentQueryTotal=0,t.transformIntoNewTimeline(o),l&&(t.currentTimeline.mergeTimelineCollectedStyles(l),t.currentTimeline.snapshotCurrentStyles()),t.previousNode=e}},{key:\"visitStagger\",value:function(e,t){var n=t.parentContext,r=t.currentTimeline,i=e.timings,a=Math.abs(i.duration),o=a*(t.currentQueryTotal-1),s=a*t.currentQueryIndex;switch(i.duration<0?\"reverse\":i.easing){case\"reverse\":s=o-s;break;case\"full\":s=n.currentStaggerTime}var l=t.currentTimeline;s&&l.delayNextStep(s);var u=l.currentTime;ag(this,e.animation,t),t.previousNode=e,n.currentStaggerTime=r.currentTime-u+(r.startTime-n.currentTimeline.startTime)}}]),e}(),Cg={},Mg=function(){function e(t,n,r,i,a,o,s,l){_classCallCheck(this,e),this._driver=t,this.element=n,this.subInstructions=r,this._enterClassName=i,this._leaveClassName=a,this.errors=o,this.timelines=s,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=Cg,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=l||new Sg(this._driver,n,0),s.push(this.currentTimeline)}return _createClass(e,[{key:\"updateOptions\",value:function(e,t){var n=this;if(e){var r=e,i=this.options;null!=r.duration&&(i.duration=zv(r.duration)),null!=r.delay&&(i.delay=zv(r.delay));var a=r.params;if(a){var o=i.params;o||(o=this.options.params={}),Object.keys(a).forEach((function(e){t&&o.hasOwnProperty(e)||(o[e]=Xv(a[e],o,n.errors))}))}}}},{key:\"_copyOptions\",value:function(){var e={};if(this.options){var t=this.options.params;if(t){var n=e.params={};Object.keys(t).forEach((function(e){n[e]=t[e]}))}}return e}},{key:\"createSubContext\",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,n=arguments.length>1?arguments[1]:void 0,r=arguments.length>2?arguments[2]:void 0,i=n||this.element,a=new e(this._driver,i,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(i,r||0));return a.previousNode=this.previousNode,a.currentAnimateTimings=this.currentAnimateTimings,a.options=this._copyOptions(),a.updateOptions(t),a.currentQueryIndex=this.currentQueryIndex,a.currentQueryTotal=this.currentQueryTotal,a.parentContext=this,this.subContextCount++,a}},{key:\"transformIntoNewTimeline\",value:function(e){return this.previousNode=Cg,this.currentTimeline=this.currentTimeline.fork(this.element,e),this.timelines.push(this.currentTimeline),this.currentTimeline}},{key:\"appendInstructionToTimeline\",value:function(e,t,n){var r={duration:null!=t?t:e.duration,delay:this.currentTimeline.currentTime+(null!=n?n:0)+e.delay,easing:\"\"},i=new Lg(this._driver,e.element,e.keyframes,e.preStyleProps,e.postStyleProps,r,e.stretchStartingKeyframe);return this.timelines.push(i),r}},{key:\"incrementTime\",value:function(e){this.currentTimeline.forwardTime(this.currentTimeline.duration+e)}},{key:\"delayNextStep\",value:function(e){e>0&&this.currentTimeline.delayNextStep(e)}},{key:\"invokeQuery\",value:function(e,t,n,r,i,a){var o=[];if(r&&o.push(this.element),e.length>0){e=(e=e.replace(yg,\".\"+this._enterClassName)).replace(bg,\".\"+this._leaveClassName);var s=this._driver.query(this.element,e,1!=n);0!==n&&(s=n<0?s.slice(s.length+n,s.length):s.slice(0,n)),o.push.apply(o,_toConsumableArray(s))}return i||0!=o.length||a.push('`query(\"'.concat(t,'\")` returned zero elements. (Use `query(\"').concat(t,'\", { optional: true })` if you wish to allow this.)')),o}},{key:\"params\",get:function(){return this.options.params}}]),e}(),Sg=function(){function e(t,n,r,i){_classCallCheck(this,e),this._driver=t,this.element=n,this.startTime=r,this._elementTimelineStylesLookup=i,this.duration=0,this._previousKeyframe={},this._currentKeyframe={},this._keyframes=new Map,this._styleSummary={},this._pendingStyles={},this._backFill={},this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._localTimelineStyles=Object.create(this._backFill,{}),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(n),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(n,this._localTimelineStyles)),this._loadKeyframe()}return _createClass(e,[{key:\"containsAnimation\",value:function(){switch(this._keyframes.size){case 0:return!1;case 1:return this.getCurrentStyleProperties().length>0;default:return!0}}},{key:\"getCurrentStyleProperties\",value:function(){return Object.keys(this._currentKeyframe)}},{key:\"delayNextStep\",value:function(e){var t=1==this._keyframes.size&&Object.keys(this._pendingStyles).length;this.duration||t?(this.forwardTime(this.currentTime+e),t&&this.snapshotCurrentStyles()):this.startTime+=e}},{key:\"fork\",value:function(t,n){return this.applyStylesToKeyframe(),new e(this._driver,t,n||this.currentTime,this._elementTimelineStylesLookup)}},{key:\"_loadKeyframe\",value:function(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=Object.create(this._backFill,{}),this._keyframes.set(this.duration,this._currentKeyframe))}},{key:\"forwardFrame\",value:function(){this.duration+=1,this._loadKeyframe()}},{key:\"forwardTime\",value:function(e){this.applyStylesToKeyframe(),this.duration=e,this._loadKeyframe()}},{key:\"_updateStyle\",value:function(e,t){this._localTimelineStyles[e]=t,this._globalTimelineStyles[e]=t,this._styleSummary[e]={time:this.currentTime,value:t}}},{key:\"allowOnlyTimelineStyles\",value:function(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}},{key:\"applyEmptyStep\",value:function(e){var t=this;e&&(this._previousKeyframe.easing=e),Object.keys(this._globalTimelineStyles).forEach((function(e){t._backFill[e]=t._globalTimelineStyles[e]||\"*\",t._currentKeyframe[e]=\"*\"})),this._currentEmptyStepKeyframe=this._currentKeyframe}},{key:\"setStyles\",value:function(e,t,n,r){var i=this;t&&(this._previousKeyframe.easing=t);var a=r&&r.params||{},o=function(e,t){var n,r={};return e.forEach((function(e){\"*\"===e?(n=n||Object.keys(t)).forEach((function(e){r[e]=\"*\"})):Bv(e,!1,r)})),r}(e,this._globalTimelineStyles);Object.keys(o).forEach((function(e){var t=Xv(o[e],a,n);i._pendingStyles[e]=t,i._localTimelineStyles.hasOwnProperty(e)||(i._backFill[e]=i._globalTimelineStyles.hasOwnProperty(e)?i._globalTimelineStyles[e]:\"*\"),i._updateStyle(e,t)}))}},{key:\"applyStylesToKeyframe\",value:function(){var e=this,t=this._pendingStyles,n=Object.keys(t);0!=n.length&&(this._pendingStyles={},n.forEach((function(n){e._currentKeyframe[n]=t[n]})),Object.keys(this._localTimelineStyles).forEach((function(t){e._currentKeyframe.hasOwnProperty(t)||(e._currentKeyframe[t]=e._localTimelineStyles[t])})))}},{key:\"snapshotCurrentStyles\",value:function(){var e=this;Object.keys(this._localTimelineStyles).forEach((function(t){var n=e._localTimelineStyles[t];e._pendingStyles[t]=n,e._updateStyle(t,n)}))}},{key:\"getFinalKeyframe\",value:function(){return this._keyframes.get(this.duration)}},{key:\"mergeTimelineCollectedStyles\",value:function(e){var t=this;Object.keys(e._styleSummary).forEach((function(n){var r=t._styleSummary[n],i=e._styleSummary[n];(!r||i.time>r.time)&&t._updateStyle(n,i.value)}))}},{key:\"buildKeyframes\",value:function(){var e=this;this.applyStylesToKeyframe();var t=new Set,n=new Set,r=1===this._keyframes.size&&0===this.duration,i=[];this._keyframes.forEach((function(a,o){var s=Bv(a,!0);Object.keys(s).forEach((function(e){var r=s[e];\"!\"==r?t.add(e):\"*\"==r&&n.add(e)})),r||(s.offset=o/e.duration),i.push(s)}));var a=t.size?eg(t.values()):[],o=n.size?eg(n.values()):[];if(r){var s=i[0],l=Uv(s);s.offset=0,l.offset=1,i=[s,l]}return vg(this.element,i,a,o,this.duration,this.startTime,this.easing,!1)}},{key:\"currentTime\",get:function(){return this.startTime+this.duration}},{key:\"properties\",get:function(){var e=[];for(var t in this._currentKeyframe)e.push(t);return e}}]),e}(),Lg=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s){var l,u=arguments.length>6&&void 0!==arguments[6]&&arguments[6];return _classCallCheck(this,n),(l=t.call(this,e,r,s.delay)).element=r,l.keyframes=i,l.preStyleProps=a,l.postStyleProps=o,l._stretchStartingKeyframe=u,l.timings={duration:s.duration,delay:s.delay,easing:s.easing},l}return _createClass(n,[{key:\"containsAnimation\",value:function(){return this.keyframes.length>1}},{key:\"buildKeyframes\",value:function(){var e=this.keyframes,t=this.timings,n=t.delay,r=t.duration,i=t.easing;if(this._stretchStartingKeyframe&&n){var a=[],o=r+n,s=n/o,l=Bv(e[0],!1);l.offset=0,a.push(l);var u=Bv(e[0],!1);u.offset=Tg(s),a.push(u);for(var c=e.length-1,d=1;d<=c;d++){var h=Bv(e[d],!1);h.offset=Tg((n+h.offset*r)/o),a.push(h)}r=o,n=0,i=\"\",e=a}return vg(this.element,e,this.preStyleProps,this.postStyleProps,r,n,i,!0)}}]),n}(Sg);function Tg(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:3,n=Math.pow(10,t-1);return Math.round(e*n)/n}var xg=function e(){_classCallCheck(this,e)},Dg=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"normalizePropertyName\",value:function(e,t){return ng(e)}},{key:\"normalizeStyleValue\",value:function(e,t,n,r){var i=\"\",a=n.toString().trim();if(Og[t]&&0!==n&&\"0\"!==n)if(\"number\"==typeof n)i=\"px\";else{var o=n.match(/^[+-]?[\\d\\.]+([a-z]*)$/);o&&0==o[1].length&&r.push(\"Please provide a CSS unit value for \".concat(e,\":\").concat(n))}return a+i}}]),n}(xg),Og=function(e){var t={};return e.forEach((function(e){return t[e]=!0})),t}(\"width,height,minWidth,minHeight,maxWidth,maxHeight,left,top,bottom,right,fontSize,outlineWidth,outlineOffset,paddingTop,paddingLeft,paddingBottom,paddingRight,marginTop,marginLeft,marginBottom,marginRight,borderRadius,borderWidth,borderTopWidth,borderLeftWidth,borderRightWidth,borderBottomWidth,textIndent,perspective\".split(\",\"));function Yg(e,t,n,r,i,a,o,s,l,u,c,d,h){return{type:0,element:e,triggerName:t,isRemovalTransition:i,fromState:n,fromStyles:a,toState:r,toStyles:o,timelines:s,queriedElements:l,preStyleProps:u,postStyleProps:c,totalTime:d,errors:h}}var Eg={},Ig=function(){function e(t,n,r){_classCallCheck(this,e),this._triggerName=t,this.ast=n,this._stateStyles=r}return _createClass(e,[{key:\"match\",value:function(e,t,n,r){return function(e,t,n,r,i){return e.some((function(e){return e(t,n,r,i)}))}(this.ast.matchers,e,t,n,r)}},{key:\"buildStyles\",value:function(e,t,n){var r=this._stateStyles[\"*\"],i=this._stateStyles[e],a=r?r.buildStyles(t,n):{};return i?i.buildStyles(t,n):a}},{key:\"build\",value:function(e,t,n,r,i,a,o,s,l,u){var c=[],d=this.ast.options&&this.ast.options.params||Eg,h=this.buildStyles(n,o&&o.params||Eg,c),f=s&&s.params||Eg,m=this.buildStyles(r,f,c),p=new Set,_=new Map,v=new Map,g=\"void\"===r,y={params:Object.assign(Object.assign({},d),f)},b=u?[]:kg(e,t,this.ast.animation,i,a,h,m,y,l,c),k=0;if(b.forEach((function(e){k=Math.max(e.duration+e.delay,k)})),c.length)return Yg(t,this._triggerName,n,r,g,h,m,[],[],_,v,k,c);b.forEach((function(e){var n=e.element,r=Sv(_,n,{});e.preStyleProps.forEach((function(e){return r[e]=!0}));var i=Sv(v,n,{});e.postStyleProps.forEach((function(e){return i[e]=!0})),n!==t&&p.add(n)}));var w=eg(p.values());return Yg(t,this._triggerName,n,r,g,h,m,b,w,_,v,k)}}]),e}(),Ag=function(){function e(t,n){_classCallCheck(this,e),this.styles=t,this.defaultParams=n}return _createClass(e,[{key:\"buildStyles\",value:function(e,t){var n={},r=Uv(this.defaultParams);return Object.keys(e).forEach((function(t){var n=e[t];null!=n&&(r[t]=n)})),this.styles.styles.forEach((function(e){if(\"string\"!=typeof e){var i=e;Object.keys(i).forEach((function(e){var a=i[e];a.length>1&&(a=Xv(a,r,t)),n[e]=a}))}})),n}}]),e}(),Pg=function(){function e(t,n){var r=this;_classCallCheck(this,e),this.name=t,this.ast=n,this.transitionFactories=[],this.states={},n.states.forEach((function(e){r.states[e.name]=new Ag(e.style,e.options&&e.options.params||{})})),jg(this.states,\"true\",\"1\"),jg(this.states,\"false\",\"0\"),n.transitions.forEach((function(e){r.transitionFactories.push(new Ig(t,e,r.states))})),this.fallbackTransition=new Ig(t,{type:1,animation:{type:2,steps:[],options:null},matchers:[function(e,t){return!0}],options:null,queryCount:0,depCount:0},this.states)}return _createClass(e,[{key:\"matchTransition\",value:function(e,t,n,r){return this.transitionFactories.find((function(i){return i.match(e,t,n,r)}))||null}},{key:\"matchStyles\",value:function(e,t,n){return this.fallbackTransition.buildStyles(e,t,n)}},{key:\"containsQueries\",get:function(){return this.ast.queryCount>0}}]),e}();function jg(e,t,n){e.hasOwnProperty(t)?e.hasOwnProperty(n)||(e[n]=e[t]):e.hasOwnProperty(n)&&(e[t]=e[n])}var Rg=new gg,Hg=function(){function e(t,n,r){_classCallCheck(this,e),this.bodyNode=t,this._driver=n,this._normalizer=r,this._animations={},this._playersById={},this.players=[]}return _createClass(e,[{key:\"register\",value:function(e,t){var n=[],r=dg(this._driver,t,n);if(n.length)throw new Error(\"Unable to build the animation due to the following errors: \".concat(n.join(\"\\n\")));this._animations[e]=r}},{key:\"_buildPlayer\",value:function(e,t,n){var r=e.element,i=kv(0,this._normalizer,0,e.keyframes,t,n);return this._driver.animate(r,i,e.duration,e.delay,e.easing,[],!0)}},{key:\"create\",value:function(e,t){var n,r=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=[],o=this._animations[e],s=new Map;if(o?(n=kg(this._driver,t,o,\"ng-enter\",\"ng-leave\",{},{},i,Rg,a)).forEach((function(e){var t=Sv(s,e.element,{});e.postStyleProps.forEach((function(e){return t[e]=null}))})):(a.push(\"The requested animation doesn't exist or has already been destroyed\"),n=[]),a.length)throw new Error(\"Unable to create the animation due to the following errors: \".concat(a.join(\"\\n\")));s.forEach((function(e,t){Object.keys(e).forEach((function(n){e[n]=r._driver.computeStyle(t,n,\"*\")}))}));var l=bv(n.map((function(e){var t=s.get(e.element);return r._buildPlayer(e,{},t)})));return this._playersById[e]=l,l.onDestroy((function(){return r.destroy(e)})),this.players.push(l),l}},{key:\"destroy\",value:function(e){var t=this._getPlayer(e);t.destroy(),delete this._playersById[e];var n=this.players.indexOf(t);n>=0&&this.players.splice(n,1)}},{key:\"_getPlayer\",value:function(e){var t=this._playersById[e];if(!t)throw new Error(\"Unable to find the timeline player referenced by \".concat(e));return t}},{key:\"listen\",value:function(e,t,n,r){var i=Mv(t,\"\",\"\",\"\");return wv(this._getPlayer(e),n,i,r),function(){}}},{key:\"command\",value:function(e,t,n,r){if(\"register\"!=n)if(\"create\"!=n){var i=this._getPlayer(e);switch(n){case\"play\":i.play();break;case\"pause\":i.pause();break;case\"reset\":i.reset();break;case\"restart\":i.restart();break;case\"finish\":i.finish();break;case\"init\":i.init();break;case\"setPosition\":i.setPosition(parseFloat(r[0]));break;case\"destroy\":this.destroy(e)}}else this.create(e,t,r[0]||{});else this.register(e,r[0])}}]),e}(),Fg=[],Ng={namespaceId:\"\",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},zg={namespaceId:\"\",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},Vg=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\";_classCallCheck(this,e),this.namespaceId=n;var r,i=t&&t.hasOwnProperty(\"value\");if(this.value=null!=(r=i?t.value:t)?r:null,i){var a=Uv(t);delete a.value,this.options=a}else this.options={};this.options.params||(this.options.params={})}return _createClass(e,[{key:\"absorbOptions\",value:function(e){var t=e.params;if(t){var n=this.options.params;Object.keys(t).forEach((function(e){null==n[e]&&(n[e]=t[e])}))}}},{key:\"params\",get:function(){return this.options.params}}]),e}(),Wg=new Vg(\"void\"),Ug=function(){function e(t,n,r){_classCallCheck(this,e),this.id=t,this.hostElement=n,this._engine=r,this.players=[],this._triggers={},this._queue=[],this._elementListeners=new Map,this._hostClassName=\"ng-tns-\"+t,Zg(n,this._hostClassName)}return _createClass(e,[{key:\"listen\",value:function(e,t,n,r){var i,a=this;if(!this._triggers.hasOwnProperty(t))throw new Error('Unable to listen on the animation trigger event \"'.concat(n,'\" because the animation trigger \"').concat(t,\"\\\" doesn't exist!\"));if(null==n||0==n.length)throw new Error('Unable to listen on the animation trigger \"'.concat(t,'\" because the provided event is undefined!'));if(\"start\"!=(i=n)&&\"done\"!=i)throw new Error('The provided animation trigger event \"'.concat(n,'\" for the animation trigger \"').concat(t,'\" is not supported!'));var o=Sv(this._elementListeners,e,[]),s={name:t,phase:n,callback:r};o.push(s);var l=Sv(this._engine.statesByElement,e,{});return l.hasOwnProperty(t)||(Zg(e,\"ng-trigger\"),Zg(e,\"ng-trigger-\"+t),l[t]=Wg),function(){a._engine.afterFlush((function(){var e=o.indexOf(s);e>=0&&o.splice(e,1),a._triggers[t]||delete l[t]}))}}},{key:\"register\",value:function(e,t){return!this._triggers[e]&&(this._triggers[e]=t,!0)}},{key:\"_getTrigger\",value:function(e){var t=this._triggers[e];if(!t)throw new Error('The provided animation trigger \"'.concat(e,'\" has not been registered!'));return t}},{key:\"trigger\",value:function(e,t,n){var r=this,i=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],a=this._getTrigger(t),o=new qg(this.id,t,e),s=this._engine.statesByElement.get(e);s||(Zg(e,\"ng-trigger\"),Zg(e,\"ng-trigger-\"+t),this._engine.statesByElement.set(e,s={}));var l=s[t],u=new Vg(n,this.id);if(!(n&&n.hasOwnProperty(\"value\"))&&l&&u.absorbOptions(l.options),s[t]=u,l||(l=Wg),\"void\"===u.value||l.value!==u.value){var c=Sv(this._engine.playersByElement,e,[]);c.forEach((function(e){e.namespaceId==r.id&&e.triggerName==t&&e.queued&&e.destroy()}));var d=a.matchTransition(l.value,u.value,e,u.params),h=!1;if(!d){if(!i)return;d=a.fallbackTransition,h=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:e,triggerName:t,transition:d,fromState:l,toState:u,player:o,isFallbackTransition:h}),h||(Zg(e,\"ng-animate-queued\"),o.onStart((function(){Qg(e,\"ng-animate-queued\")}))),o.onDone((function(){var t=r.players.indexOf(o);t>=0&&r.players.splice(t,1);var n=r._engine.playersByElement.get(e);if(n){var i=n.indexOf(o);i>=0&&n.splice(i,1)}})),this.players.push(o),c.push(o),o}if(!function(e,t){var n=Object.keys(e),r=Object.keys(t);if(n.length!=r.length)return!1;for(var i=0;i=0){for(var r=!1,i=n;i>=0;i--)if(this.driver.containsElement(this._namespaceList[i].hostElement,t)){this._namespaceList.splice(i+1,0,e),r=!0;break}r||this._namespaceList.splice(0,0,e)}else this._namespaceList.push(e);return this.namespacesByHostElement.set(t,e),e}},{key:\"register\",value:function(e,t){var n=this._namespaceLookup[e];return n||(n=this.createNamespace(e,t)),n}},{key:\"registerTrigger\",value:function(e,t,n){var r=this._namespaceLookup[e];r&&r.register(t,n)&&this.totalAnimations++}},{key:\"destroy\",value:function(e,t){var n=this;if(e){var r=this._fetchNamespace(e);this.afterFlush((function(){n.namespacesByHostElement.delete(r.hostElement),delete n._namespaceLookup[e];var t=n._namespaceList.indexOf(r);t>=0&&n._namespaceList.splice(t,1)})),this.afterFlushAnimationsDone((function(){return r.destroy(t)}))}}},{key:\"_fetchNamespace\",value:function(e){return this._namespaceLookup[e]}},{key:\"fetchNamespacesByElement\",value:function(e){var t=new Set,n=this.statesByElement.get(e);if(n)for(var r=Object.keys(n),i=0;i=0&&this.collectedLeaveElements.splice(a,1)}if(e){var o=this._fetchNamespace(e);o&&o.insertNode(t,n)}r&&this.collectEnterElement(t)}}},{key:\"collectEnterElement\",value:function(e){this.collectedEnterElements.push(e)}},{key:\"markElementAsDisabled\",value:function(e,t){t?this.disabledNodes.has(e)||(this.disabledNodes.add(e),Zg(e,\"ng-animate-disabled\")):this.disabledNodes.has(e)&&(this.disabledNodes.delete(e),Qg(e,\"ng-animate-disabled\"))}},{key:\"removeNode\",value:function(e,t,n,r){if(Gg(t)){var i=e?this._fetchNamespace(e):null;if(i?i.removeNode(t,r):this.markElementAsRemoved(e,t,!1,r),n){var a=this.namespacesByHostElement.get(t);a&&a.id!==e&&a.removeNode(t,r)}}else this._onRemovalComplete(t,r)}},{key:\"markElementAsRemoved\",value:function(e,t,n,r){this.collectedLeaveElements.push(t),t.__ng_removed={namespaceId:e,setForRemoval:r,hasAnimation:n,removedBeforeQueried:!1}}},{key:\"listen\",value:function(e,t,n,r,i){return Gg(t)?this._fetchNamespace(e).listen(t,n,r,i):function(){}}},{key:\"_buildInstruction\",value:function(e,t,n,r,i){return e.transition.build(this.driver,e.element,e.fromState.value,e.toState.value,n,r,e.fromState.options,e.toState.options,t,i)}},{key:\"destroyInnerAnimations\",value:function(e){var t=this,n=this.driver.query(e,\".ng-trigger\",!0);n.forEach((function(e){return t.destroyActiveAnimationsForElement(e)})),0!=this.playersByQueriedElement.size&&(n=this.driver.query(e,\".ng-animating\",!0)).forEach((function(e){return t.finishActiveQueriedAnimationOnElement(e)}))}},{key:\"destroyActiveAnimationsForElement\",value:function(e){var t=this.playersByElement.get(e);t&&t.forEach((function(e){e.queued?e.markedForDestroy=!0:e.destroy()}))}},{key:\"finishActiveQueriedAnimationOnElement\",value:function(e){var t=this.playersByQueriedElement.get(e);t&&t.forEach((function(e){return e.finish()}))}},{key:\"whenRenderingDone\",value:function(){var e=this;return new Promise((function(t){if(e.players.length)return bv(e.players).onDone((function(){return t()}));t()}))}},{key:\"processLeaveNode\",value:function(e){var t=this,n=e.__ng_removed;if(n&&n.setForRemoval){if(e.__ng_removed=Ng,n.namespaceId){this.destroyInnerAnimations(e);var r=this._fetchNamespace(n.namespaceId);r&&r.clearElementCache(e)}this._onRemovalComplete(e,n.setForRemoval)}this.driver.matchesElement(e,\".ng-animate-disabled\")&&this.markElementAsDisabled(e,!1),this.driver.query(e,\".ng-animate-disabled\",!0).forEach((function(e){t.markElementAsDisabled(e,!1)}))}},{key:\"flush\",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:-1,n=[];if(this.newHostElements.size&&(this.newHostElements.forEach((function(t,n){return e._balanceNamespaceList(t,n)})),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(var r=0;r=0;L--)this._namespaceList[L].drainQueuedTransitions(t).forEach((function(e){var t=e.player,a=e.element;if(M.push(t),n.collectedEnterElements.length){var c=a.__ng_removed;if(c&&c.setForMove)return void t.destroy()}var h=!d||!n.driver.containsElement(d,a),f=w.get(a),p=m.get(a),_=n._buildInstruction(e,r,p,f,h);if(!_.errors||!_.errors.length)return h||e.isFallbackTransition?(t.onStart((function(){return Jv(a,_.fromStyles)})),t.onDestroy((function(){return $v(a,_.toStyles)})),void i.push(t)):(_.timelines.forEach((function(e){return e.stretchStartingKeyframe=!0})),r.append(a,_.timelines),o.push({instruction:_,player:t,element:a}),_.queriedElements.forEach((function(e){return Sv(s,e,[]).push(t)})),_.preStyleProps.forEach((function(e,t){var n=Object.keys(e);if(n.length){var r=l.get(t);r||l.set(t,r=new Set),n.forEach((function(e){return r.add(e)}))}})),void _.postStyleProps.forEach((function(e,t){var n=Object.keys(e),r=u.get(t);r||u.set(t,r=new Set),n.forEach((function(e){return r.add(e)}))})));S.push(_)}));if(S.length){var T=[];S.forEach((function(e){T.push(\"@\".concat(e.triggerName,\" has failed due to:\\n\")),e.errors.forEach((function(e){return T.push(\"- \".concat(e,\"\\n\"))}))})),M.forEach((function(e){return e.destroy()})),this.reportError(T)}var x=new Map,D=new Map;o.forEach((function(e){var t=e.element;r.has(t)&&(D.set(t,t),n._beforeAnimationBuild(e.player.namespaceId,e.instruction,x))})),i.forEach((function(e){var t=e.element;n._getPreviousPlayers(t,!1,e.namespaceId,e.triggerName,null).forEach((function(e){Sv(x,t,[]).push(e),e.destroy()}))}));var O=_.filter((function(e){return ey(e,l,u)})),Y=new Map;Jg(Y,this.driver,g,u,\"*\").forEach((function(e){ey(e,l,u)&&O.push(e)}));var E=new Map;f.forEach((function(e,t){Jg(E,n.driver,new Set(e),l,\"!\")})),O.forEach((function(e){var t=Y.get(e),n=E.get(e);Y.set(e,Object.assign(Object.assign({},t),n))}));var I=[],A=[],P={};o.forEach((function(e){var t=e.element,o=e.player,s=e.instruction;if(r.has(t)){if(c.has(t))return o.onDestroy((function(){return $v(t,s.toStyles)})),o.disabled=!0,o.overrideTotalTime(s.totalTime),void i.push(o);var l=P;if(D.size>1){for(var u=t,d=[];u=u.parentNode;){var h=D.get(u);if(h){l=h;break}d.push(u)}d.forEach((function(e){return D.set(e,l)}))}var f=n._buildAnimation(o.namespaceId,s,x,a,E,Y);if(o.setRealPlayer(f),l===P)I.push(o);else{var m=n.playersByElement.get(l);m&&m.length&&(o.parentPlayer=bv(m)),i.push(o)}}else Jv(t,s.fromStyles),o.onDestroy((function(){return $v(t,s.toStyles)})),A.push(o),c.has(t)&&i.push(o)})),A.forEach((function(e){var t=a.get(e.element);if(t&&t.length){var n=bv(t);e.setRealPlayer(n)}})),i.forEach((function(e){e.parentPlayer?e.syncPlayerEvents(e.parentPlayer):e.destroy()}));for(var j=0;j<_.length;j++){var R=_[j],H=R.__ng_removed;if(Qg(R,\"ng-leave\"),!H||!H.hasAnimation){var F=[];if(s.size){var N=s.get(R);N&&N.length&&F.push.apply(F,_toConsumableArray(N));for(var z=this.driver.query(R,\".ng-animating\",!0),V=0;V0?this.driver.animate(e.element,t,e.duration,e.delay,e.easing,n):new vv(e.duration,e.delay)}},{key:\"queuedPlayers\",get:function(){var e=[];return this._namespaceList.forEach((function(t){t.players.forEach((function(t){t.queued&&e.push(t)}))})),e}}]),e}(),qg=function(){function e(t,n,r){_classCallCheck(this,e),this.namespaceId=t,this.triggerName=n,this.element=r,this._player=new vv,this._containsRealPlayer=!1,this._queuedCallbacks={},this.destroyed=!1,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}return _createClass(e,[{key:\"setRealPlayer\",value:function(e){var t=this;this._containsRealPlayer||(this._player=e,Object.keys(this._queuedCallbacks).forEach((function(n){t._queuedCallbacks[n].forEach((function(t){return wv(e,n,void 0,t)}))})),this._queuedCallbacks={},this._containsRealPlayer=!0,this.overrideTotalTime(e.totalTime),this.queued=!1)}},{key:\"getRealPlayer\",value:function(){return this._player}},{key:\"overrideTotalTime\",value:function(e){this.totalTime=e}},{key:\"syncPlayerEvents\",value:function(e){var t=this,n=this._player;n.triggerCallback&&e.onStart((function(){return n.triggerCallback(\"start\")})),e.onDone((function(){return t.finish()})),e.onDestroy((function(){return t.destroy()}))}},{key:\"_queueEvent\",value:function(e,t){Sv(this._queuedCallbacks,e,[]).push(t)}},{key:\"onDone\",value:function(e){this.queued&&this._queueEvent(\"done\",e),this._player.onDone(e)}},{key:\"onStart\",value:function(e){this.queued&&this._queueEvent(\"start\",e),this._player.onStart(e)}},{key:\"onDestroy\",value:function(e){this.queued&&this._queueEvent(\"destroy\",e),this._player.onDestroy(e)}},{key:\"init\",value:function(){this._player.init()}},{key:\"hasStarted\",value:function(){return!this.queued&&this._player.hasStarted()}},{key:\"play\",value:function(){!this.queued&&this._player.play()}},{key:\"pause\",value:function(){!this.queued&&this._player.pause()}},{key:\"restart\",value:function(){!this.queued&&this._player.restart()}},{key:\"finish\",value:function(){this._player.finish()}},{key:\"destroy\",value:function(){this.destroyed=!0,this._player.destroy()}},{key:\"reset\",value:function(){!this.queued&&this._player.reset()}},{key:\"setPosition\",value:function(e){this.queued||this._player.setPosition(e)}},{key:\"getPosition\",value:function(){return this.queued?0:this._player.getPosition()}},{key:\"triggerCallback\",value:function(e){var t=this._player;t.triggerCallback&&t.triggerCallback(e)}}]),e}();function Gg(e){return e&&1===e.nodeType}function $g(e,t){var n=e.style.display;return e.style.display=null!=t?t:\"none\",n}function Jg(e,t,n,r,i){var a=[];n.forEach((function(e){return a.push($g(e))}));var o=[];r.forEach((function(n,r){var a={};n.forEach((function(e){var n=a[e]=t.computeStyle(r,e,i);n&&0!=n.length||(r.__ng_removed=zg,o.push(r))})),e.set(r,a)}));var s=0;return n.forEach((function(e){return $g(e,a[s++])})),o}function Kg(e,t){var n=new Map;if(e.forEach((function(e){return n.set(e,[])})),0==t.length)return n;var r=new Set(t),i=new Map;return t.forEach((function(e){var t=function e(t){if(!t)return 1;var a=i.get(t);if(a)return a;var o=t.parentNode;return a=n.has(o)?o:r.has(o)?1:e(o),i.set(t,a),a}(e);1!==t&&n.get(t).push(e)})),n}function Zg(e,t){if(e.classList)e.classList.add(t);else{var n=e.$$classes;n||(n=e.$$classes={}),n[t]=!0}}function Qg(e,t){if(e.classList)e.classList.remove(t);else{var n=e.$$classes;n&&delete n[t]}}function Xg(e,t,n){bv(n).onDone((function(){return e.processLeaveNode(t)}))}function ey(e,t,n){var r=n.get(e);if(!r)return!1;var i=t.get(e);return i?r.forEach((function(e){return i.add(e)})):t.set(e,r),n.delete(e),!0}var ty=function(){function e(t,n,r){var i=this;_classCallCheck(this,e),this.bodyNode=t,this._driver=n,this._triggerCache={},this.onRemovalComplete=function(e,t){},this._transitionEngine=new Bg(t,n,r),this._timelineEngine=new Hg(t,n,r),this._transitionEngine.onRemovalComplete=function(e,t){return i.onRemovalComplete(e,t)}}return _createClass(e,[{key:\"registerTrigger\",value:function(e,t,n,r,i){var a=e+\"-\"+r,o=this._triggerCache[a];if(!o){var s=[],l=dg(this._driver,i,s);if(s.length)throw new Error('The animation trigger \"'.concat(r,'\" has failed to build due to the following errors:\\n - ').concat(s.join(\"\\n - \")));o=function(e,t){return new Pg(e,t)}(r,l),this._triggerCache[a]=o}this._transitionEngine.registerTrigger(t,r,o)}},{key:\"register\",value:function(e,t){this._transitionEngine.register(e,t)}},{key:\"destroy\",value:function(e,t){this._transitionEngine.destroy(e,t)}},{key:\"onInsert\",value:function(e,t,n,r){this._transitionEngine.insertNode(e,t,n,r)}},{key:\"onRemove\",value:function(e,t,n,r){this._transitionEngine.removeNode(e,t,r||!1,n)}},{key:\"disableAnimations\",value:function(e,t){this._transitionEngine.markElementAsDisabled(e,t)}},{key:\"process\",value:function(e,t,n,r){if(\"@\"==n.charAt(0)){var i=_slicedToArray(Lv(n),2),a=i[0],o=i[1];this._timelineEngine.command(a,t,o,r)}else this._transitionEngine.trigger(e,t,n,r)}},{key:\"listen\",value:function(e,t,n,r,i){if(\"@\"==n.charAt(0)){var a=_slicedToArray(Lv(n),2),o=a[0],s=a[1];return this._timelineEngine.listen(o,t,s,i)}return this._transitionEngine.listen(e,t,n,r,i)}},{key:\"flush\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:-1;this._transitionEngine.flush(e)}},{key:\"whenRenderingDone\",value:function(){return this._transitionEngine.whenRenderingDone()}},{key:\"players\",get:function(){return this._transitionEngine.players.concat(this._timelineEngine.players)}}]),e}();function ny(e,t){var n=null,r=null;return Array.isArray(t)&&t.length?(n=iy(t[0]),t.length>1&&(r=iy(t[t.length-1]))):t&&(n=iy(t)),n||r?new ry(e,n,r):null}var ry=function(){var e=function(){function e(t,n,r){_classCallCheck(this,e),this._element=t,this._startStyles=n,this._endStyles=r,this._state=0;var i=e.initialStylesByElement.get(t);i||e.initialStylesByElement.set(t,i={}),this._initialStyles=i}return _createClass(e,[{key:\"start\",value:function(){this._state<1&&(this._startStyles&&$v(this._element,this._startStyles,this._initialStyles),this._state=1)}},{key:\"finish\",value:function(){this.start(),this._state<2&&($v(this._element,this._initialStyles),this._endStyles&&($v(this._element,this._endStyles),this._endStyles=null),this._state=1)}},{key:\"destroy\",value:function(){this.finish(),this._state<3&&(e.initialStylesByElement.delete(this._element),this._startStyles&&(Jv(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(Jv(this._element,this._endStyles),this._endStyles=null),$v(this._element,this._initialStyles),this._state=3)}}]),e}();return e.initialStylesByElement=new WeakMap,e}();function iy(e){for(var t=null,n=Object.keys(e),r=0;r=this._delay&&n>=this._duration&&this.finish()}},{key:\"finish\",value:function(){this._finished||(this._finished=!0,this._onDoneFn(),cy(this._element,this._eventFn,!0))}},{key:\"destroy\",value:function(){var e,t,n,r;this._destroyed||(this._destroyed=!0,this.finish(),e=this._element,t=this._name,n=hy(e,\"\").split(\",\"),(r=uy(n,t))>=0&&(n.splice(r,1),dy(e,\"\",n.join(\",\"))))}}]),e}();function sy(e,t,n){dy(e,\"PlayState\",n,ly(e,t))}function ly(e,t){var n=hy(e,\"\");return n.indexOf(\",\")>0?uy(n.split(\",\"),t):uy([n],t)}function uy(e,t){for(var n=0;n=0)return n;return-1}function cy(e,t,n){n?e.removeEventListener(\"animationend\",t):e.addEventListener(\"animationend\",t)}function dy(e,t,n,r){var i=\"animation\"+t;if(null!=r){var a=e.style[i];if(a.length){var o=a.split(\",\");o[r]=n,n=o.join(\",\")}}e.style[i]=n}function hy(e,t){return e.style[\"animation\"+t]}var fy=function(){function e(t,n,r,i,a,o,s,l){_classCallCheck(this,e),this.element=t,this.keyframes=n,this.animationName=r,this._duration=i,this._delay=a,this._finalStyles=s,this._specialStyles=l,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this.currentSnapshot={},this._state=0,this.easing=o||\"linear\",this.totalTime=i+a,this._buildStyler()}return _createClass(e,[{key:\"onStart\",value:function(e){this._onStartFns.push(e)}},{key:\"onDone\",value:function(e){this._onDoneFns.push(e)}},{key:\"onDestroy\",value:function(e){this._onDestroyFns.push(e)}},{key:\"destroy\",value:function(){this.init(),this._state>=4||(this._state=4,this._styler.destroy(),this._flushStartFns(),this._flushDoneFns(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach((function(e){return e()})),this._onDestroyFns=[])}},{key:\"_flushDoneFns\",value:function(){this._onDoneFns.forEach((function(e){return e()})),this._onDoneFns=[]}},{key:\"_flushStartFns\",value:function(){this._onStartFns.forEach((function(e){return e()})),this._onStartFns=[]}},{key:\"finish\",value:function(){this.init(),this._state>=3||(this._state=3,this._styler.finish(),this._flushStartFns(),this._specialStyles&&this._specialStyles.finish(),this._flushDoneFns())}},{key:\"setPosition\",value:function(e){this._styler.setPosition(e)}},{key:\"getPosition\",value:function(){return this._styler.getPosition()}},{key:\"hasStarted\",value:function(){return this._state>=2}},{key:\"init\",value:function(){this._state>=1||(this._state=1,this._styler.apply(),this._delay&&this._styler.pause())}},{key:\"play\",value:function(){this.init(),this.hasStarted()||(this._flushStartFns(),this._state=2,this._specialStyles&&this._specialStyles.start()),this._styler.resume()}},{key:\"pause\",value:function(){this.init(),this._styler.pause()}},{key:\"restart\",value:function(){this.reset(),this.play()}},{key:\"reset\",value:function(){this._styler.destroy(),this._buildStyler(),this._styler.apply()}},{key:\"_buildStyler\",value:function(){var e=this;this._styler=new oy(this.element,this.animationName,this._duration,this._delay,this.easing,\"forwards\",(function(){return e.finish()}))}},{key:\"triggerCallback\",value:function(e){var t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach((function(e){return e()})),t.length=0}},{key:\"beforeDestroy\",value:function(){var e=this;this.init();var t={};if(this.hasStarted()){var n=this._state>=3;Object.keys(this._finalStyles).forEach((function(r){\"offset\"!=r&&(t[r]=n?e._finalStyles[r]:og(e.element,r))}))}this.currentSnapshot=t}}]),e}(),my=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this)).element=e,i._startingStyles={},i.__initialized=!1,i._styles=Rv(r),i}return _createClass(n,[{key:\"init\",value:function(){var e=this;!this.__initialized&&this._startingStyles&&(this.__initialized=!0,Object.keys(this._styles).forEach((function(t){e._startingStyles[t]=e.element.style[t]})),_get(_getPrototypeOf(n.prototype),\"init\",this).call(this))}},{key:\"play\",value:function(){var e=this;this._startingStyles&&(this.init(),Object.keys(this._styles).forEach((function(t){return e.element.style.setProperty(t,e._styles[t])})),_get(_getPrototypeOf(n.prototype),\"play\",this).call(this))}},{key:\"destroy\",value:function(){var e=this;this._startingStyles&&(Object.keys(this._startingStyles).forEach((function(t){var n=e._startingStyles[t];n?e.element.style.setProperty(t,n):e.element.style.removeProperty(t)})),this._startingStyles=null,_get(_getPrototypeOf(n.prototype),\"destroy\",this).call(this))}}]),n}(vv),py=function(){function e(){_classCallCheck(this,e),this._count=0,this._head=document.querySelector(\"head\"),this._warningIssued=!1}return _createClass(e,[{key:\"validateStyleProperty\",value:function(e){return Iv(e)}},{key:\"matchesElement\",value:function(e,t){return Av(e,t)}},{key:\"containsElement\",value:function(e,t){return Pv(e,t)}},{key:\"query\",value:function(e,t,n){return jv(e,t,n)}},{key:\"computeStyle\",value:function(e,t,n){return window.getComputedStyle(e)[t]}},{key:\"buildKeyframeElement\",value:function(e,t,n){n=n.map((function(e){return Rv(e)}));var r=\"@keyframes \".concat(t,\" {\\n\"),i=\"\";n.forEach((function(e){i=\" \";var t=parseFloat(e.offset);r+=\"\".concat(i).concat(100*t,\"% {\\n\"),i+=\" \",Object.keys(e).forEach((function(t){var n=e[t];switch(t){case\"offset\":return;case\"easing\":return void(n&&(r+=\"\".concat(i,\"animation-timing-function: \").concat(n,\";\\n\")));default:return void(r+=\"\".concat(i).concat(t,\": \").concat(n,\";\\n\"))}})),r+=\"\".concat(i,\"}\\n\")})),r+=\"}\\n\";var a=document.createElement(\"style\");return a.innerHTML=r,a}},{key:\"animate\",value:function(e,t,n,r,i){var a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:[],o=arguments.length>6?arguments[6]:void 0;o&&this._notifyFaultyScrubber();var s=a.filter((function(e){return e instanceof fy})),l={};rg(n,r)&&s.forEach((function(e){var t=e.currentSnapshot;Object.keys(t).forEach((function(e){return l[e]=t[e]}))}));var u=function(e){var t={};return e&&(Array.isArray(e)?e:[e]).forEach((function(e){Object.keys(e).forEach((function(n){\"offset\"!=n&&\"easing\"!=n&&(t[n]=e[n])}))})),t}(t=ig(e,t,l));if(0==n)return new my(e,u);var c=\"gen_css_kf_\".concat(this._count++),d=this.buildKeyframeElement(e,c,t);document.querySelector(\"head\").appendChild(d);var h=ny(e,t),f=new fy(e,t,c,n,r,i,u,h);return f.onDestroy((function(){var e;(e=d).parentNode.removeChild(e)})),f}},{key:\"_notifyFaultyScrubber\",value:function(){this._warningIssued||(console.warn(\"@angular/animations: please load the web-animations.js polyfill to allow programmatic access...\\n\",\" visit http://bit.ly/IWukam to learn more about using the web-animation-js polyfill.\"),this._warningIssued=!0)}}]),e}(),_y=function(){function e(t,n,r,i){_classCallCheck(this,e),this.element=t,this.keyframes=n,this.options=r,this._specialStyles=i,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._initialized=!1,this._finished=!1,this._started=!1,this._destroyed=!1,this.time=0,this.parentPlayer=null,this.currentSnapshot={},this._duration=r.duration,this._delay=r.delay||0,this.time=this._duration+this._delay}return _createClass(e,[{key:\"_onFinish\",value:function(){this._finished||(this._finished=!0,this._onDoneFns.forEach((function(e){return e()})),this._onDoneFns=[])}},{key:\"init\",value:function(){this._buildPlayer(),this._preparePlayerBeforeStart()}},{key:\"_buildPlayer\",value:function(){var e=this;if(!this._initialized){this._initialized=!0;var t=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,t,this.options),this._finalKeyframe=t.length?t[t.length-1]:{},this.domPlayer.addEventListener(\"finish\",(function(){return e._onFinish()}))}}},{key:\"_preparePlayerBeforeStart\",value:function(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}},{key:\"_triggerWebAnimation\",value:function(e,t,n){return e.animate(t,n)}},{key:\"onStart\",value:function(e){this._onStartFns.push(e)}},{key:\"onDone\",value:function(e){this._onDoneFns.push(e)}},{key:\"onDestroy\",value:function(e){this._onDestroyFns.push(e)}},{key:\"play\",value:function(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach((function(e){return e()})),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),this.domPlayer.play()}},{key:\"pause\",value:function(){this.init(),this.domPlayer.pause()}},{key:\"finish\",value:function(){this.init(),this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish()}},{key:\"reset\",value:function(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1}},{key:\"_resetDomPlayerState\",value:function(){this.domPlayer&&this.domPlayer.cancel()}},{key:\"restart\",value:function(){this.reset(),this.play()}},{key:\"hasStarted\",value:function(){return this._started}},{key:\"destroy\",value:function(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach((function(e){return e()})),this._onDestroyFns=[])}},{key:\"setPosition\",value:function(e){this.domPlayer.currentTime=e*this.time}},{key:\"getPosition\",value:function(){return this.domPlayer.currentTime/this.time}},{key:\"beforeDestroy\",value:function(){var e=this,t={};this.hasStarted()&&Object.keys(this._finalKeyframe).forEach((function(n){\"offset\"!=n&&(t[n]=e._finished?e._finalKeyframe[n]:og(e.element,n))})),this.currentSnapshot=t}},{key:\"triggerCallback\",value:function(e){var t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach((function(e){return e()})),t.length=0}},{key:\"totalTime\",get:function(){return this._delay+this._duration}}]),e}(),vy=function(){function e(){_classCallCheck(this,e),this._isNativeImpl=/\\{\\s*\\[native\\s+code\\]\\s*\\}/.test(gy().toString()),this._cssKeyframesDriver=new py}return _createClass(e,[{key:\"validateStyleProperty\",value:function(e){return Iv(e)}},{key:\"matchesElement\",value:function(e,t){return Av(e,t)}},{key:\"containsElement\",value:function(e,t){return Pv(e,t)}},{key:\"query\",value:function(e,t,n){return jv(e,t,n)}},{key:\"computeStyle\",value:function(e,t,n){return window.getComputedStyle(e)[t]}},{key:\"overrideWebAnimationsSupport\",value:function(e){this._isNativeImpl=e}},{key:\"animate\",value:function(e,t,n,r,i){var a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:[],o=arguments.length>6?arguments[6]:void 0;if(!o&&!this._isNativeImpl)return this._cssKeyframesDriver.animate(e,t,n,r,i,a);var s={duration:n,delay:r,fill:0==r?\"both\":\"forwards\"};i&&(s.easing=i);var l={},u=a.filter((function(e){return e instanceof _y}));rg(n,r)&&u.forEach((function(e){var t=e.currentSnapshot;Object.keys(t).forEach((function(e){return l[e]=t[e]}))}));var c=ny(e,t=ig(e,t=t.map((function(e){return Bv(e,!1)})),l));return new _y(e,t,s,c)}}]),e}();function gy(){return\"undefined\"!=typeof window&&void 0!==window.document&&Element.prototype.animate||{}}var yy,by=((yy=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this))._nextAnimationId=0,i._renderer=e.createRenderer(r.body,{id:\"0\",encapsulation:_t.None,styles:[],data:{animation:[]}}),i}return _createClass(n,[{key:\"build\",value:function(e){var t=this._nextAnimationId.toString();this._nextAnimationId++;var n=Array.isArray(e)?dv(e):e;return Cy(this._renderer,null,t,\"register\",[n]),new ky(t,this._renderer)}}]),n}(lv)).\\u0275fac=function(e){return new(e||yy)(et(el),et(Wc))},yy.\\u0275prov=_e({token:yy,factory:yy.\\u0275fac}),yy),ky=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this))._id=e,i._renderer=r,i}return _createClass(n,[{key:\"create\",value:function(e,t){return new wy(this._id,e,t||{},this._renderer)}}]),n}(function(){return function e(){_classCallCheck(this,e)}}()),wy=function(){function e(t,n,r,i){_classCallCheck(this,e),this.id=t,this.element=n,this._renderer=i,this.parentPlayer=null,this._started=!1,this.totalTime=0,this._command(\"create\",r)}return _createClass(e,[{key:\"_listen\",value:function(e,t){return this._renderer.listen(this.element,\"@@\".concat(this.id,\":\").concat(e),t)}},{key:\"_command\",value:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r=0&&e1&&void 0!==arguments[1]?arguments[1]:0;return(function(e){_inherits(r,e);var n=_createSuper(r);function r(){var e;_classCallCheck(this,r);for(var i=arguments.length,a=new Array(i),o=0;o2&&void 0!==arguments[2]?arguments[2]:{},i=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),a=Object.assign(Object.assign({},rb),r.animation);r.centered&&(e=i.left+i.width/2,t=i.top+i.height/2);var o=r.radius||function(e,t,n){var r=Math.max(Math.abs(e-n.left),Math.abs(e-n.right)),i=Math.max(Math.abs(t-n.top),Math.abs(t-n.bottom));return Math.sqrt(r*r+i*i)}(e,t,i),s=e-i.left,l=t-i.top,u=a.enterDuration,c=document.createElement(\"div\");c.classList.add(\"mat-ripple-element\"),c.style.left=\"\".concat(s-o,\"px\"),c.style.top=\"\".concat(l-o,\"px\"),c.style.height=\"\".concat(2*o,\"px\"),c.style.width=\"\".concat(2*o,\"px\"),null!=r.color&&(c.style.backgroundColor=r.color),c.style.transitionDuration=\"\".concat(u,\"ms\"),this._containerElement.appendChild(c),window.getComputedStyle(c).getPropertyValue(\"opacity\"),c.style.transform=\"scale(1)\";var d=new nb(this,c,r);return d.state=0,this._activeRipples.add(d),r.persistent||(this._mostRecentTransientRipple=d),this._runTimeoutOutsideZone((function(){var e=d===n._mostRecentTransientRipple;d.state=1,r.persistent||e&&n._isPointerDown||d.fadeOut()}),u),d}},{key:\"fadeOutRipple\",value:function(e){var t=this._activeRipples.delete(e);if(e===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),this._activeRipples.size||(this._containerRect=null),t){var n=e.element,r=Object.assign(Object.assign({},rb),e.config.animation);n.style.transitionDuration=\"\".concat(r.exitDuration,\"ms\"),n.style.opacity=\"0\",e.state=2,this._runTimeoutOutsideZone((function(){e.state=3,n.parentNode.removeChild(n)}),r.exitDuration)}}},{key:\"fadeOutAll\",value:function(){this._activeRipples.forEach((function(e){return e.fadeOut()}))}},{key:\"setupTriggerEvents\",value:function(e){var t=this,n=gp(e);n&&n!==this._triggerElement&&(this._removeTriggerEvents(),this._ngZone.runOutsideAngular((function(){t._triggerEvents.forEach((function(e,t){n.addEventListener(t,e,ib)}))})),this._triggerElement=n)}},{key:\"_runTimeoutOutsideZone\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;this._ngZone.runOutsideAngular((function(){return setTimeout(e,t)}))}},{key:\"_removeTriggerEvents\",value:function(){var e=this;this._triggerElement&&this._triggerEvents.forEach((function(t,n){e._triggerElement.removeEventListener(n,t,ib)}))}}]),e}(),ob=new Be(\"mat-ripple-global-options\"),sb=((Zy=function(){function e(t,n,r,i,a){_classCallCheck(this,e),this._elementRef=t,this.radius=0,this._disabled=!1,this._isInitialized=!1,this._globalOptions=i||{},this._rippleRenderer=new ab(this,n,t,r),\"NoopAnimations\"===a&&(this._globalOptions.animation={enterDuration:0,exitDuration:0})}return _createClass(e,[{key:\"ngOnInit\",value:function(){this._isInitialized=!0,this._setupTriggerEventsIfEnabled()}},{key:\"ngOnDestroy\",value:function(){this._rippleRenderer._removeTriggerEvents()}},{key:\"fadeOutAll\",value:function(){this._rippleRenderer.fadeOutAll()}},{key:\"_setupTriggerEventsIfEnabled\",value:function(){!this.disabled&&this._isInitialized&&this._rippleRenderer.setupTriggerEvents(this.trigger)}},{key:\"launch\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2?arguments[2]:void 0;return\"number\"==typeof e?this._rippleRenderer.fadeInRipple(e,t,Object.assign(Object.assign({},this.rippleConfig),n)):this._rippleRenderer.fadeInRipple(0,0,Object.assign(Object.assign({},this.rippleConfig),e))}},{key:\"disabled\",get:function(){return this._disabled},set:function(e){this._disabled=e,this._setupTriggerEventsIfEnabled()}},{key:\"trigger\",get:function(){return this._trigger||this._elementRef.nativeElement},set:function(e){this._trigger=e,this._setupTriggerEventsIfEnabled()}},{key:\"rippleConfig\",get:function(){return{centered:this.centered,radius:this.radius,color:this.color,animation:Object.assign(Object.assign({},this._globalOptions.animation),this.animation),terminateOnPointerUp:this._globalOptions.terminateOnPointerUp}}},{key:\"rippleDisabled\",get:function(){return this.disabled||!!this._globalOptions.disabled}}]),e}()).\\u0275fac=function(e){return new(e||Zy)(Io(Qs),Io(cc),Io(Cp),Io(ob,8),Io(Yy,8))},Zy.\\u0275dir=Lt({type:Zy,selectors:[[\"\",\"mat-ripple\",\"\"],[\"\",\"matRipple\",\"\"]],hostAttrs:[1,\"mat-ripple\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"mat-ripple-unbounded\",t.unbounded)},inputs:{radius:[\"matRippleRadius\",\"radius\"],disabled:[\"matRippleDisabled\",\"disabled\"],trigger:[\"matRippleTrigger\",\"trigger\"],color:[\"matRippleColor\",\"color\"],unbounded:[\"matRippleUnbounded\",\"unbounded\"],centered:[\"matRippleCentered\",\"centered\"],animation:[\"matRippleAnimation\",\"animation\"]},exportAs:[\"matRipple\"]}),Zy),lb=((Ky=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Ky}),Ky.\\u0275inj=ve({factory:function(e){return new(e||Ky)},imports:[[zy,Mp],zy]}),Ky),ub=((Jy=function e(t){_classCallCheck(this,e),this._animationMode=t,this.state=\"unchecked\",this.disabled=!1}).\\u0275fac=function(e){return new(e||Jy)(Io(Yy,8))},Jy.\\u0275cmp=bt({type:Jy,selectors:[[\"mat-pseudo-checkbox\"]],hostAttrs:[1,\"mat-pseudo-checkbox\"],hostVars:8,hostBindings:function(e,t){2&e&&fs(\"mat-pseudo-checkbox-indeterminate\",\"indeterminate\"===t.state)(\"mat-pseudo-checkbox-checked\",\"checked\"===t.state)(\"mat-pseudo-checkbox-disabled\",t.disabled)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode)},inputs:{state:\"state\",disabled:\"disabled\"},decls:0,vars:0,template:function(e,t){},styles:['.mat-pseudo-checkbox{width:16px;height:16px;border:2px solid;border-radius:2px;cursor:pointer;display:inline-block;vertical-align:middle;box-sizing:border-box;position:relative;flex-shrink:0;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1),background-color 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox::after{position:absolute;opacity:0;content:\"\";border-bottom:2px solid currentColor;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox.mat-pseudo-checkbox-indeterminate{border-color:transparent}._mat-animation-noopable.mat-pseudo-checkbox{transition:none;animation:none}._mat-animation-noopable.mat-pseudo-checkbox::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{top:5px;left:1px;width:10px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{top:2.4px;left:1px;width:8px;height:3px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}\\n'],encapsulation:2,changeDetection:0}),Jy),cb=(($y=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:$y}),$y.\\u0275inj=ve({factory:function(e){return new(e||$y)}}),$y),db=Vy((function e(){_classCallCheck(this,e)})),hb=0,fb=((Qy=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e;return _classCallCheck(this,n),(e=t.apply(this,arguments))._labelId=\"mat-optgroup-label-\".concat(hb++),e}return n}(db)).\\u0275fac=function(e){return mb(e||Qy)},Qy.\\u0275cmp=bt({type:Qy,selectors:[[\"mat-optgroup\"]],hostAttrs:[\"role\",\"group\",1,\"mat-optgroup\"],hostVars:4,hostBindings:function(e,t){2&e&&(Do(\"aria-disabled\",t.disabled.toString())(\"aria-labelledby\",t._labelId),fs(\"mat-optgroup-disabled\",t.disabled))},inputs:{disabled:\"disabled\",label:\"label\"},exportAs:[\"matOptgroup\"],features:[Es],ngContentSelectors:Py,decls:4,vars:2,consts:[[1,\"mat-optgroup-label\",3,\"id\"]],template:function(e,t){1&e&&(Xo(Ay),Ho(0,\"label\",0),Ls(1),ns(2),Fo(),ns(3,1)),2&e&&(jo(\"id\",t._labelId),bi(1),xs(\"\",t.label,\" \"))},styles:[\".mat-optgroup-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup-label[disabled]{cursor:default}[dir=rtl] .mat-optgroup-label{text-align:right}.mat-optgroup-label .mat-icon{margin-right:16px;vertical-align:middle}.mat-optgroup-label .mat-icon svg{vertical-align:top}[dir=rtl] .mat-optgroup-label .mat-icon{margin-left:16px;margin-right:0}\\n\"],encapsulation:2,changeDetection:0}),Qy),mb=cr(fb),pb=0,_b=function e(t){var n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];_classCallCheck(this,e),this.source=t,this.isUserInput=n},vb=new Be(\"MAT_OPTION_PARENT_COMPONENT\"),gb=((Xy=function(){function e(t,n,r,i){_classCallCheck(this,e),this._element=t,this._changeDetectorRef=n,this._parent=r,this.group=i,this._selected=!1,this._active=!1,this._disabled=!1,this._mostRecentViewValue=\"\",this.id=\"mat-option-\".concat(pb++),this.onSelectionChange=new bu,this._stateChanges=new x}return _createClass(e,[{key:\"select\",value:function(){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}},{key:\"deselect\",value:function(){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}},{key:\"focus\",value:function(e,t){var n=this._getHostElement();\"function\"==typeof n.focus&&n.focus(t)}},{key:\"setActiveStyles\",value:function(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}},{key:\"setInactiveStyles\",value:function(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}},{key:\"getLabel\",value:function(){return this.viewValue}},{key:\"_handleKeydown\",value:function(e){13!==e.keyCode&&32!==e.keyCode||Jm(e)||(this._selectViaInteraction(),e.preventDefault())}},{key:\"_selectViaInteraction\",value:function(){this.disabled||(this._selected=!this.multiple||!this._selected,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent(!0))}},{key:\"_getAriaSelected\",value:function(){return this.selected||!this.multiple&&null}},{key:\"_getTabIndex\",value:function(){return this.disabled?\"-1\":\"0\"}},{key:\"_getHostElement\",value:function(){return this._element.nativeElement}},{key:\"ngAfterViewChecked\",value:function(){if(this._selected){var e=this.viewValue;e!==this._mostRecentViewValue&&(this._mostRecentViewValue=e,this._stateChanges.next())}}},{key:\"ngOnDestroy\",value:function(){this._stateChanges.complete()}},{key:\"_emitSelectionChangeEvent\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.onSelectionChange.emit(new _b(this,e))}},{key:\"multiple\",get:function(){return this._parent&&this._parent.multiple}},{key:\"selected\",get:function(){return this._selected}},{key:\"disabled\",get:function(){return this.group&&this.group.disabled||this._disabled},set:function(e){this._disabled=mp(e)}},{key:\"disableRipple\",get:function(){return this._parent&&this._parent.disableRipple}},{key:\"active\",get:function(){return this._active}},{key:\"viewValue\",get:function(){return(this._getHostElement().textContent||\"\").trim()}}]),e}()).\\u0275fac=function(e){return new(e||Xy)(Io(Qs),Io(eo),Io(vb,8),Io(fb,8))},Xy.\\u0275cmp=bt({type:Xy,selectors:[[\"mat-option\"]],hostAttrs:[\"role\",\"option\",1,\"mat-option\",\"mat-focus-indicator\"],hostVars:12,hostBindings:function(e,t){1&e&&qo(\"click\",(function(){return t._selectViaInteraction()}))(\"keydown\",(function(e){return t._handleKeydown(e)})),2&e&&(Ds(\"id\",t.id),Do(\"tabindex\",t._getTabIndex())(\"aria-selected\",t._getAriaSelected())(\"aria-disabled\",t.disabled.toString()),fs(\"mat-selected\",t.selected)(\"mat-option-multiple\",t.multiple)(\"mat-active\",t.active)(\"mat-option-disabled\",t.disabled))},inputs:{id:\"id\",disabled:\"disabled\",value:\"value\"},outputs:{onSelectionChange:\"onSelectionChange\"},exportAs:[\"matOption\"],ngContentSelectors:Hy,decls:4,vars:3,consts:[[\"class\",\"mat-option-pseudo-checkbox\",3,\"state\",\"disabled\",4,\"ngIf\"],[1,\"mat-option-text\"],[\"mat-ripple\",\"\",1,\"mat-option-ripple\",3,\"matRippleTrigger\",\"matRippleDisabled\"],[1,\"mat-option-pseudo-checkbox\",3,\"state\",\"disabled\"]],template:function(e,t){1&e&&(Xo(),Yo(0,jy,1,2,\"mat-pseudo-checkbox\",0),Ho(1,\"span\",1),ns(2),Fo(),No(3,\"div\",2)),2&e&&(jo(\"ngIf\",t.multiple),bi(3),jo(\"matRippleTrigger\",t._getHostElement())(\"matRippleDisabled\",t.disabled||t.disableRipple))},directives:[Sd,sb,ub],styles:[\".mat-option{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative;cursor:pointer;outline:none;display:flex;flex-direction:row;max-width:100%;box-sizing:border-box;align-items:center;-webkit-tap-highlight-color:transparent}.mat-option[disabled]{cursor:default}[dir=rtl] .mat-option{text-align:right}.mat-option .mat-icon{margin-right:16px;vertical-align:middle}.mat-option .mat-icon svg{vertical-align:top}[dir=rtl] .mat-option .mat-icon{margin-left:16px;margin-right:0}.mat-option[aria-disabled=true]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:32px}[dir=rtl] .mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:16px;padding-right:32px}.cdk-high-contrast-active .mat-option{margin:0 1px}.cdk-high-contrast-active .mat-option.mat-active{border:solid 1px currentColor;margin:0}.mat-option-text{display:inline-block;flex-grow:1;overflow:hidden;text-overflow:ellipsis}.mat-option .mat-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.cdk-high-contrast-active .mat-option .mat-option-ripple{opacity:.5}.mat-option-pseudo-checkbox{margin-right:8px}[dir=rtl] .mat-option-pseudo-checkbox{margin-left:8px;margin-right:0}\\n\"],encapsulation:2,changeDetection:0}),Xy);function yb(e,t,n){if(n.length){for(var r=t.toArray(),i=n.toArray(),a=0,o=0;o0&&void 0!==arguments[0]?arguments[0]:\"program\",t=arguments.length>1?arguments[1]:void 0;this._focusMonitor.focusVia(this._getHostElement(),e,t)}},{key:\"_getHostElement\",value:function(){return this._elementRef.nativeElement}},{key:\"_isRippleDisabled\",value:function(){return this.disableRipple||this.disabled}},{key:\"_hasHostAttributes\",value:function(){for(var e=this,t=arguments.length,n=new Array(t),r=0;r*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}\\n\"],encapsulation:2,changeDetection:0}),Cb),Vb=((wb=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){return _classCallCheck(this,n),t.call(this,r,e,i)}return _createClass(n,[{key:\"_haltDisabledEvents\",value:function(e){this.disabled&&(e.preventDefault(),e.stopImmediatePropagation())}}]),n}(zb)).\\u0275fac=function(e){return new(e||wb)(Io(t_),Io(Qs),Io(Yy,8))},wb.\\u0275cmp=bt({type:wb,selectors:[[\"a\",\"mat-button\",\"\"],[\"a\",\"mat-raised-button\",\"\"],[\"a\",\"mat-icon-button\",\"\"],[\"a\",\"mat-fab\",\"\"],[\"a\",\"mat-mini-fab\",\"\"],[\"a\",\"mat-stroked-button\",\"\"],[\"a\",\"mat-flat-button\",\"\"]],hostAttrs:[1,\"mat-focus-indicator\"],hostVars:5,hostBindings:function(e,t){1&e&&qo(\"click\",(function(e){return t._haltDisabledEvents(e)})),2&e&&(Do(\"tabindex\",t.disabled?-1:t.tabIndex||0)(\"disabled\",t.disabled||null)(\"aria-disabled\",t.disabled.toString()),fs(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\"},exportAs:[\"matButton\",\"matAnchor\"],features:[Es],attrs:Rb,ngContentSelectors:Hb,decls:4,vars:5,consts:[[1,\"mat-button-wrapper\"],[\"matRipple\",\"\",1,\"mat-button-ripple\",3,\"matRippleDisabled\",\"matRippleCentered\",\"matRippleTrigger\"],[1,\"mat-button-focus-overlay\"]],template:function(e,t){1&e&&(Xo(),Ho(0,\"span\",0),ns(1),Fo(),No(2,\"div\",1),No(3,\"div\",2)),2&e&&(bi(2),fs(\"mat-button-ripple-round\",t.isRoundButton||t.isIconButton),jo(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleCentered\",t.isIconButton)(\"matRippleTrigger\",t._getHostElement()))},directives:[sb],styles:[\".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:.04}@media(hover: none){.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-button[disabled],.mat-icon-button[disabled],.mat-stroked-button[disabled],.mat-flat-button[disabled]{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button[disabled]{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}._mat-animation-noopable.mat-raised-button{transition:none;animation:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-ripple.mat-ripple,.mat-stroked-button .mat-button-focus-overlay{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab[disabled]{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-fab{transition:none;animation:none}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab[disabled]{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-mini-fab{transition:none;animation:none}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button i,.mat-icon-button .mat-icon{line-height:24px}.mat-button-ripple.mat-ripple,.mat-button-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-ripple.mat-ripple:not(:empty){transform:translateZ(0)}.mat-button-focus-overlay{opacity:0;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1),background-color 200ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}.cdk-high-contrast-active .mat-button-focus-overlay{background-color:#fff}.cdk-high-contrast-black-on-white .mat-button-focus-overlay{background-color:#000}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}\\n\"],encapsulation:2,changeDetection:0}),wb),Wb=((kb=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:kb}),kb.\\u0275inj=ve({factory:function(e){return new(e||kb)},imports:[[lb,zy],zy]}),kb),Ub=[\"*\",[[\"mat-card-footer\"]]],Bb=[\"*\",\"mat-card-footer\"],qb=[[[\"\",\"mat-card-avatar\",\"\"],[\"\",\"matCardAvatar\",\"\"]],[[\"mat-card-title\"],[\"mat-card-subtitle\"],[\"\",\"mat-card-title\",\"\"],[\"\",\"mat-card-subtitle\",\"\"],[\"\",\"matCardTitle\",\"\"],[\"\",\"matCardSubtitle\",\"\"]],\"*\"],Gb=[\"[mat-card-avatar], [matCardAvatar]\",\"mat-card-title, mat-card-subtitle,\\n [mat-card-title], [mat-card-subtitle],\\n [matCardTitle], [matCardSubtitle]\",\"*\"],$b=((Yb=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Yb)},Yb.\\u0275dir=Lt({type:Yb,selectors:[[\"mat-card-content\"],[\"\",\"mat-card-content\",\"\"],[\"\",\"matCardContent\",\"\"]],hostAttrs:[1,\"mat-card-content\"]}),Yb),Jb=((Ob=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Ob)},Ob.\\u0275dir=Lt({type:Ob,selectors:[[\"mat-card-title\"],[\"\",\"mat-card-title\",\"\"],[\"\",\"matCardTitle\",\"\"]],hostAttrs:[1,\"mat-card-title\"]}),Ob),Kb=((Db=function e(){_classCallCheck(this,e),this.align=\"start\"}).\\u0275fac=function(e){return new(e||Db)},Db.\\u0275dir=Lt({type:Db,selectors:[[\"mat-card-actions\"]],hostAttrs:[1,\"mat-card-actions\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"mat-card-actions-align-end\",\"end\"===t.align)},inputs:{align:\"align\"},exportAs:[\"matCardActions\"]}),Db),Zb=((xb=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||xb)},xb.\\u0275dir=Lt({type:xb,selectors:[[\"\",\"mat-card-image\",\"\"],[\"\",\"matCardImage\",\"\"]],hostAttrs:[1,\"mat-card-image\"]}),xb),Qb=((Tb=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Tb)},Tb.\\u0275dir=Lt({type:Tb,selectors:[[\"\",\"mat-card-avatar\",\"\"],[\"\",\"matCardAvatar\",\"\"]],hostAttrs:[1,\"mat-card-avatar\"]}),Tb),Xb=((Lb=function e(t){_classCallCheck(this,e),this._animationMode=t}).\\u0275fac=function(e){return new(e||Lb)(Io(Yy,8))},Lb.\\u0275cmp=bt({type:Lb,selectors:[[\"mat-card\"]],hostAttrs:[1,\"mat-card\",\"mat-focus-indicator\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode)},exportAs:[\"matCard\"],ngContentSelectors:Bb,decls:2,vars:0,template:function(e,t){1&e&&(Xo(Ub),ns(0),ns(1,1))},styles:[\".mat-card{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);display:block;position:relative;padding:16px;border-radius:4px}._mat-animation-noopable.mat-card{transition:none;animation:none}.mat-card .mat-divider-horizontal{position:absolute;left:0;width:100%}[dir=rtl] .mat-card .mat-divider-horizontal{left:auto;right:0}.mat-card .mat-divider-horizontal.mat-divider-inset{position:static;margin:0}[dir=rtl] .mat-card .mat-divider-horizontal.mat-divider-inset{margin-right:0}.cdk-high-contrast-active .mat-card{outline:solid 1px}.mat-card-actions,.mat-card-subtitle,.mat-card-content{display:block;margin-bottom:16px}.mat-card-title{display:block;margin-bottom:8px}.mat-card-actions{margin-left:-8px;margin-right:-8px;padding:8px 0}.mat-card-actions-align-end{display:flex;justify-content:flex-end}.mat-card-image{width:calc(100% + 32px);margin:0 -16px 16px -16px}.mat-card-footer{display:block;margin:0 -16px -16px -16px}.mat-card-actions .mat-button,.mat-card-actions .mat-raised-button,.mat-card-actions .mat-stroked-button{margin:0 8px}.mat-card-header{display:flex;flex-direction:row}.mat-card-header .mat-card-title{margin-bottom:12px}.mat-card-header-text{margin:0 16px}.mat-card-avatar{height:40px;width:40px;border-radius:50%;flex-shrink:0;object-fit:cover}.mat-card-title-group{display:flex;justify-content:space-between}.mat-card-sm-image{width:80px;height:80px}.mat-card-md-image{width:112px;height:112px}.mat-card-lg-image{width:152px;height:152px}.mat-card-xl-image{width:240px;height:240px;margin:-8px}.mat-card-title-group>.mat-card-xl-image{margin:-8px 0 8px}@media(max-width: 599px){.mat-card-title-group{margin:0}.mat-card-xl-image{margin-left:0;margin-right:0}}.mat-card>:first-child,.mat-card-content>:first-child{margin-top:0}.mat-card>:last-child:not(.mat-card-footer),.mat-card-content>:last-child:not(.mat-card-footer){margin-bottom:0}.mat-card-image:first-child{margin-top:-16px;border-top-left-radius:inherit;border-top-right-radius:inherit}.mat-card>.mat-card-actions:last-child{margin-bottom:-8px;padding-bottom:0}.mat-card-actions .mat-button:first-child,.mat-card-actions .mat-raised-button:first-child,.mat-card-actions .mat-stroked-button:first-child{margin-left:0;margin-right:0}.mat-card-title:not(:first-child),.mat-card-subtitle:not(:first-child){margin-top:-4px}.mat-card-header .mat-card-subtitle:not(:first-child){margin-top:-8px}.mat-card>.mat-card-xl-image:first-child{margin-top:-8px}.mat-card>.mat-card-xl-image:last-child{margin-bottom:-8px}\\n\"],encapsulation:2,changeDetection:0}),Lb),ek=((Sb=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Sb)},Sb.\\u0275cmp=bt({type:Sb,selectors:[[\"mat-card-header\"]],hostAttrs:[1,\"mat-card-header\"],ngContentSelectors:Gb,decls:4,vars:0,consts:[[1,\"mat-card-header-text\"]],template:function(e,t){1&e&&(Xo(qb),ns(0),Ho(1,\"div\",0),ns(2,1),Fo(),ns(3,2))},encapsulation:2,changeDetection:0}),Sb),tk=((Mb=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Mb}),Mb.\\u0275inj=ve({factory:function(e){return new(e||Mb)},imports:[[zy],zy]}),Mb),nk=[\"input\"],rk=function(){return{enterDuration:150}},ik=[\"*\"],ak=new Be(\"mat-checkbox-default-options\",{providedIn:\"root\",factory:function(){return{color:\"accent\",clickAction:\"check-indeterminate\"}}}),ok=new Be(\"mat-checkbox-click-action\"),sk=0,lk={provide:Wh,useExisting:De((function(){return dk})),multi:!0},uk=function e(){_classCallCheck(this,e)},ck=By(Wy(Uy(Vy((function e(t){_classCallCheck(this,e),this._elementRef=t}))))),dk=((Ab=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s,l,u){var c;return _classCallCheck(this,n),(c=t.call(this,e))._changeDetectorRef=r,c._focusMonitor=i,c._ngZone=a,c._clickAction=s,c._animationMode=l,c._options=u,c.ariaLabel=\"\",c.ariaLabelledby=null,c._uniqueId=\"mat-checkbox-\".concat(++sk),c.id=c._uniqueId,c.labelPosition=\"after\",c.name=null,c.change=new bu,c.indeterminateChange=new bu,c._onTouched=function(){},c._currentAnimationClass=\"\",c._currentCheckState=0,c._controlValueAccessorChangeFn=function(){},c._checked=!1,c._disabled=!1,c._indeterminate=!1,c._options=c._options||{},c._options.color&&(c.color=c._options.color),c.tabIndex=parseInt(o)||0,c._focusMonitor.monitor(e,!0).subscribe((function(e){e||Promise.resolve().then((function(){c._onTouched(),r.markForCheck()}))})),c._clickAction=c._clickAction||c._options.clickAction,c}return _createClass(n,[{key:\"ngAfterViewInit\",value:function(){this._syncIndeterminate(this._indeterminate)}},{key:\"ngAfterViewChecked\",value:function(){}},{key:\"ngOnDestroy\",value:function(){this._focusMonitor.stopMonitoring(this._elementRef)}},{key:\"_isRippleDisabled\",value:function(){return this.disableRipple||this.disabled}},{key:\"_onLabelTextChange\",value:function(){this._changeDetectorRef.detectChanges()}},{key:\"writeValue\",value:function(e){this.checked=!!e}},{key:\"registerOnChange\",value:function(e){this._controlValueAccessorChangeFn=e}},{key:\"registerOnTouched\",value:function(e){this._onTouched=e}},{key:\"setDisabledState\",value:function(e){this.disabled=e}},{key:\"_getAriaChecked\",value:function(){return this.checked?\"true\":this.indeterminate?\"mixed\":\"false\"}},{key:\"_transitionCheckState\",value:function(e){var t=this._currentCheckState,n=this._elementRef.nativeElement;if(t!==e&&(this._currentAnimationClass.length>0&&n.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(t,e),this._currentCheckState=e,this._currentAnimationClass.length>0)){n.classList.add(this._currentAnimationClass);var r=this._currentAnimationClass;this._ngZone.runOutsideAngular((function(){setTimeout((function(){n.classList.remove(r)}),1e3)}))}}},{key:\"_emitChangeEvent\",value:function(){var e=new uk;e.source=this,e.checked=this.checked,this._controlValueAccessorChangeFn(this.checked),this.change.emit(e)}},{key:\"toggle\",value:function(){this.checked=!this.checked}},{key:\"_onInputClick\",value:function(e){var t=this;e.stopPropagation(),this.disabled||\"noop\"===this._clickAction?this.disabled||\"noop\"!==this._clickAction||(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&\"check\"!==this._clickAction&&Promise.resolve().then((function(){t._indeterminate=!1,t.indeterminateChange.emit(t._indeterminate)})),this.toggle(),this._transitionCheckState(this._checked?1:2),this._emitChangeEvent())}},{key:\"focus\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"keyboard\",t=arguments.length>1?arguments[1]:void 0;this._focusMonitor.focusVia(this._inputElement,e,t)}},{key:\"_onInteractionEvent\",value:function(e){e.stopPropagation()}},{key:\"_getAnimationClassForCheckStateTransition\",value:function(e,t){if(\"NoopAnimations\"===this._animationMode)return\"\";var n=\"\";switch(e){case 0:if(1===t)n=\"unchecked-checked\";else{if(3!=t)return\"\";n=\"unchecked-indeterminate\"}break;case 2:n=1===t?\"unchecked-checked\":\"unchecked-indeterminate\";break;case 1:n=2===t?\"checked-unchecked\":\"checked-indeterminate\";break;case 3:n=1===t?\"indeterminate-checked\":\"indeterminate-unchecked\"}return\"mat-checkbox-anim-\".concat(n)}},{key:\"_syncIndeterminate\",value:function(e){var t=this._inputElement;t&&(t.nativeElement.indeterminate=e)}},{key:\"inputId\",get:function(){return\"\".concat(this.id||this._uniqueId,\"-input\")}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=mp(e)}},{key:\"checked\",get:function(){return this._checked},set:function(e){e!=this.checked&&(this._checked=e,this._changeDetectorRef.markForCheck())}},{key:\"disabled\",get:function(){return this._disabled},set:function(e){var t=mp(e);t!==this.disabled&&(this._disabled=t,this._changeDetectorRef.markForCheck())}},{key:\"indeterminate\",get:function(){return this._indeterminate},set:function(e){var t=e!=this._indeterminate;this._indeterminate=mp(e),t&&(this._transitionCheckState(this._indeterminate?3:this.checked?1:2),this.indeterminateChange.emit(this._indeterminate)),this._syncIndeterminate(this._indeterminate)}}]),n}(ck)).\\u0275fac=function(e){return new(e||Ab)(Io(Qs),Io(eo),Io(t_),Io(cc),Ao(\"tabindex\"),Io(ok,8),Io(Yy,8),Io(ak,8))},Ab.\\u0275cmp=bt({type:Ab,selectors:[[\"mat-checkbox\"]],viewQuery:function(e,t){var n;1&e&&(Iu(nk,!0),Iu(sb,!0)),2&e&&(Yu(n=Hu())&&(t._inputElement=n.first),Yu(n=Hu())&&(t.ripple=n.first))},hostAttrs:[1,\"mat-checkbox\"],hostVars:12,hostBindings:function(e,t){2&e&&(Ds(\"id\",t.id),Do(\"tabindex\",null),fs(\"mat-checkbox-indeterminate\",t.indeterminate)(\"mat-checkbox-checked\",t.checked)(\"mat-checkbox-disabled\",t.disabled)(\"mat-checkbox-label-before\",\"before\"==t.labelPosition)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],id:\"id\",labelPosition:\"labelPosition\",name:\"name\",required:\"required\",checked:\"checked\",disabled:\"disabled\",indeterminate:\"indeterminate\",value:\"value\"},outputs:{change:\"change\",indeterminateChange:\"indeterminateChange\"},exportAs:[\"matCheckbox\"],features:[$s([lk]),Es],ngContentSelectors:ik,decls:17,vars:19,consts:[[1,\"mat-checkbox-layout\"],[\"label\",\"\"],[1,\"mat-checkbox-inner-container\"],[\"type\",\"checkbox\",1,\"mat-checkbox-input\",\"cdk-visually-hidden\",3,\"id\",\"required\",\"checked\",\"disabled\",\"tabIndex\",\"change\",\"click\"],[\"input\",\"\"],[\"matRipple\",\"\",1,\"mat-checkbox-ripple\",\"mat-focus-indicator\",3,\"matRippleTrigger\",\"matRippleDisabled\",\"matRippleRadius\",\"matRippleCentered\",\"matRippleAnimation\"],[1,\"mat-ripple-element\",\"mat-checkbox-persistent-ripple\"],[1,\"mat-checkbox-frame\"],[1,\"mat-checkbox-background\"],[\"version\",\"1.1\",\"focusable\",\"false\",\"viewBox\",\"0 0 24 24\",0,\"xml\",\"space\",\"preserve\",1,\"mat-checkbox-checkmark\"],[\"fill\",\"none\",\"stroke\",\"white\",\"d\",\"M4.1,12.7 9,17.6 20.3,6.3\",1,\"mat-checkbox-checkmark-path\"],[1,\"mat-checkbox-mixedmark\"],[1,\"mat-checkbox-label\",3,\"cdkObserveContent\"],[\"checkboxLabel\",\"\"],[2,\"display\",\"none\"]],template:function(e,t){if(1&e&&(Xo(),Ho(0,\"label\",0,1),Ho(2,\"div\",2),Ho(3,\"input\",3,4),qo(\"change\",(function(e){return t._onInteractionEvent(e)}))(\"click\",(function(e){return t._onInputClick(e)})),Fo(),Ho(5,\"div\",5),No(6,\"div\",6),Fo(),No(7,\"div\",7),Ho(8,\"div\",8),Sn(),Ho(9,\"svg\",9),No(10,\"path\",10),Fo(),Ln(),No(11,\"div\",11),Fo(),Fo(),Ho(12,\"span\",12,13),qo(\"cdkObserveContent\",(function(){return t._onLabelTextChange()})),Ho(14,\"span\",14),Ls(15,\"\\xa0\"),Fo(),ns(16),Fo(),Fo()),2&e){var n=Eo(1),r=Eo(13);Do(\"for\",t.inputId),bi(2),fs(\"mat-checkbox-inner-container-no-side-margin\",!r.textContent||!r.textContent.trim()),bi(1),jo(\"id\",t.inputId)(\"required\",t.required)(\"checked\",t.checked)(\"disabled\",t.disabled)(\"tabIndex\",t.tabIndex),Do(\"value\",t.value)(\"name\",t.name)(\"aria-label\",t.ariaLabel||null)(\"aria-labelledby\",t.ariaLabelledby)(\"aria-checked\",t._getAriaChecked()),bi(2),jo(\"matRippleTrigger\",n)(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleRadius\",20)(\"matRippleCentered\",!0)(\"matRippleAnimation\",yu(18,rk))}},directives:[sb,Hp],styles:[\"@keyframes mat-checkbox-fade-in-background{0%{opacity:0}50%{opacity:1}}@keyframes mat-checkbox-fade-out-background{0%,50%{opacity:1}100%{opacity:0}}@keyframes mat-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:22.910259}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1)}100%{stroke-dashoffset:0}}@keyframes mat-checkbox-unchecked-indeterminate-mixedmark{0%,68.2%{transform:scaleX(0)}68.2%{animation-timing-function:cubic-bezier(0, 0, 0, 1)}100%{transform:scaleX(1)}}@keyframes mat-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);stroke-dashoffset:0}to{stroke-dashoffset:-22.910259}}@keyframes mat-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(45deg)}}@keyframes mat-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:0;transform:rotate(45deg)}to{opacity:1;transform:rotate(360deg)}}@keyframes mat-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:0;transform:rotate(-45deg)}to{opacity:1;transform:rotate(0deg)}}@keyframes mat-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(315deg)}}@keyframes mat-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;opacity:1;transform:scaleX(1)}32.8%,100%{opacity:0;transform:scaleX(0)}}.mat-checkbox-background,.mat-checkbox-frame{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:2px;box-sizing:border-box;pointer-events:none}.mat-checkbox{transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);cursor:pointer;-webkit-tap-highlight-color:transparent}._mat-animation-noopable.mat-checkbox{transition:none;animation:none}.mat-checkbox .mat-ripple-element:not(.mat-checkbox-persistent-ripple){opacity:.16}.mat-checkbox-layout{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:inherit;align-items:baseline;vertical-align:middle;display:inline-flex;white-space:nowrap}.mat-checkbox-label{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.mat-checkbox-inner-container{display:inline-block;height:16px;line-height:0;margin:auto;margin-right:8px;order:0;position:relative;vertical-align:middle;white-space:nowrap;width:16px;flex-shrink:0}[dir=rtl] .mat-checkbox-inner-container{margin-left:8px;margin-right:auto}.mat-checkbox-inner-container-no-side-margin{margin-left:0;margin-right:0}.mat-checkbox-frame{background-color:transparent;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1);border-width:2px;border-style:solid}._mat-animation-noopable .mat-checkbox-frame{transition:none}.mat-checkbox.cdk-keyboard-focused .cdk-high-contrast-active .mat-checkbox-frame{border-style:dotted}.mat-checkbox-background{align-items:center;display:inline-flex;justify-content:center;transition:background-color 90ms cubic-bezier(0, 0, 0.2, 0.1),opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}._mat-animation-noopable .mat-checkbox-background{transition:none}.cdk-high-contrast-active .mat-checkbox .mat-checkbox-background{background:none}.mat-checkbox-persistent-ripple{width:100%;height:100%;transform:none}.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:.04}.mat-checkbox.cdk-keyboard-focused .mat-checkbox-persistent-ripple{opacity:.12}.mat-checkbox-persistent-ripple,.mat-checkbox.mat-checkbox-disabled .mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:0}@media(hover: none){.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{display:none}}.mat-checkbox-checkmark{top:0;left:0;right:0;bottom:0;position:absolute;width:100%}.mat-checkbox-checkmark-path{stroke-dashoffset:22.910259;stroke-dasharray:22.910259;stroke-width:2.1333333333px}.cdk-high-contrast-black-on-white .mat-checkbox-checkmark-path{stroke:#000 !important}.mat-checkbox-mixedmark{width:calc(100% - 6px);height:2px;opacity:0;transform:scaleX(0) rotate(0deg);border-radius:2px}.cdk-high-contrast-active .mat-checkbox-mixedmark{height:0;border-top:solid 2px;margin-top:2px}.mat-checkbox-label-before .mat-checkbox-inner-container{order:1;margin-left:8px;margin-right:auto}[dir=rtl] .mat-checkbox-label-before .mat-checkbox-inner-container{margin-left:auto;margin-right:8px}.mat-checkbox-checked .mat-checkbox-checkmark{opacity:1}.mat-checkbox-checked .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-checked .mat-checkbox-mixedmark{transform:scaleX(1) rotate(-45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark{opacity:0;transform:rotate(45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-indeterminate .mat-checkbox-mixedmark{opacity:1;transform:scaleX(1) rotate(0deg)}.mat-checkbox-unchecked .mat-checkbox-background{background-color:transparent}.mat-checkbox-disabled{cursor:default}.cdk-high-contrast-active .mat-checkbox-disabled{opacity:.5}.mat-checkbox-anim-unchecked-checked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-checked .mat-checkbox-checkmark-path{animation:180ms linear 0ms mat-checkbox-unchecked-checked-checkmark-path}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-unchecked-indeterminate-mixedmark}.mat-checkbox-anim-checked-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-checked-unchecked .mat-checkbox-checkmark-path{animation:90ms linear 0ms mat-checkbox-checked-unchecked-checkmark-path}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-checkmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-checkmark}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-mixedmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-checkmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-checkmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-mixedmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-mixedmark}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-mixedmark{animation:300ms linear 0ms mat-checkbox-indeterminate-unchecked-mixedmark}.mat-checkbox-input{bottom:0;left:50%}.mat-checkbox .mat-checkbox-ripple{position:absolute;left:calc(50% - 20px);top:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}\\n\"],encapsulation:2,changeDetection:0}),Ab),hk=((Ib=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Ib}),Ib.\\u0275inj=ve({factory:function(e){return new(e||Ib)}}),Ib),fk=((Eb=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Eb}),Eb.\\u0275inj=ve({factory:function(e){return new(e||Eb)},imports:[[lb,zy,Fp,hk],zy,hk]}),Eb);function mk(e,t,n,i){return r(n)&&(i=n,n=void 0),i?mk(e,t,n).pipe(F((function(e){return l(e)?i.apply(void 0,_toConsumableArray(e)):i(e)}))):new w((function(r){!function e(t,n,r,i,a){var o;if(function(e){return e&&\"function\"==typeof e.addEventListener&&\"function\"==typeof e.removeEventListener}(t)){var s=t;t.addEventListener(n,r,a),o=function(){return s.removeEventListener(n,r,a)}}else if(function(e){return e&&\"function\"==typeof e.on&&\"function\"==typeof e.off}(t)){var l=t;t.on(n,r),o=function(){return l.off(n,r)}}else if(function(e){return e&&\"function\"==typeof e.addListener&&\"function\"==typeof e.removeListener}(t)){var u=t;t.addListener(n,r),o=function(){return u.removeListener(n,r)}}else{if(!t||!t.length)throw new TypeError(\"Invalid event target\");for(var c=0,d=t.length;c1?Array.prototype.slice.call(arguments):e)}),r,n)}))}var pk=1,_k=Promise.resolve(),vk={};function gk(e){return e in vk&&(delete vk[e],!0)}var yk=function(e){var t=pk++;return vk[t]=!0,_k.then((function(){return gk(t)&&e()})),t},bk=function(e){gk(e)},kk=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e,r)).scheduler=e,i.work=r,i}return _createClass(n,[{key:\"requestAsyncId\",value:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return null!==r&&r>0?_get(_getPrototypeOf(n.prototype),\"requestAsyncId\",this).call(this,e,t,r):(e.actions.push(this),e.scheduled||(e.scheduled=yk(e.flush.bind(e,null))))}},{key:\"recycleAsyncId\",value:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;if(null!==r&&r>0||null===r&&this.delay>0)return _get(_getPrototypeOf(n.prototype),\"recycleAsyncId\",this).call(this,e,t,r);0===e.actions.length&&(bk(t),e.scheduled=void 0)}}]),n}(Xm),wk=new(function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"flush\",value:function(e){this.active=!0,this.scheduled=void 0;var t,n=this.actions,r=-1,i=n.length;e=e||n.shift();do{if(t=e.execute(e.state,e.delay))break}while(++r=0}function Dk(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0,r=-1;return xk(t)?r=Number(t)<1?1:Number(t):O(t)&&(n=t),O(n)||(n=np),new w((function(t){var i=xk(e)?e:+e-n.now();return n.schedule(Ok,i,{index:0,period:r,subscriber:t})}))}function Ok(e){var t=e.index,n=e.period,r=e.subscriber;if(r.next(t),!r.closed){if(-1===n)return r.complete();e.index=t+1,this.schedule(e,n)}}function Yk(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:np;return t=function(){return Dk(e,n)},function(e){return e.lift(new Lk(t))}}function Ek(e){return function(t){return t.lift(new Ik(e))}}var Ik=function(){function e(t){_classCallCheck(this,e),this.notifier=t}return _createClass(e,[{key:\"call\",value:function(e,t){var n=new Ak(e),r=R(n,this.notifier);return r&&!n.seenValue?(n.add(r),t.subscribe(n)):n}}]),e}(),Ak=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this,e)).seenValue=!1,r}return _createClass(n,[{key:\"notifyNext\",value:function(e,t,n,r,i){this.seenValue=!0,this.complete()}},{key:\"notifyComplete\",value:function(){}}]),n}(H);function Pk(e,t){return\"function\"==typeof t?function(n){return n.pipe(Pk((function(n,r){return W(e(n,r)).pipe(F((function(e,i){return t(n,e,r,i)})))})))}:function(t){return t.lift(new jk(e))}}var jk=function(){function e(t){_classCallCheck(this,e),this.project=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new Rk(e,this.project))}}]),e}(),Rk=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).project=r,i.index=0,i}return _createClass(n,[{key:\"_next\",value:function(e){var t,n=this.index++;try{t=this.project(e,n)}catch(r){return void this.destination.error(r)}this._innerSub(t,e,n)}},{key:\"_innerSub\",value:function(e,t,n){var r=this.innerSubscription;r&&r.unsubscribe();var i=new Y(this,t,n),a=this.destination;a.add(i),this.innerSubscription=R(this,e,void 0,void 0,i),this.innerSubscription!==i&&a.add(this.innerSubscription)}},{key:\"_complete\",value:function(){var e=this.innerSubscription;e&&!e.closed||_get(_getPrototypeOf(n.prototype),\"_complete\",this).call(this),this.unsubscribe()}},{key:\"_unsubscribe\",value:function(){this.innerSubscription=null}},{key:\"notifyComplete\",value:function(e){this.destination.remove(e),this.innerSubscription=null,this.isStopped&&_get(_getPrototypeOf(n.prototype),\"_complete\",this).call(this)}},{key:\"notifyNext\",value:function(e,t,n,r,i){this.destination.next(t)}}]),n}(H),Hk=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e,r)).scheduler=e,i.work=r,i}return _createClass(n,[{key:\"schedule\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return t>0?_get(_getPrototypeOf(n.prototype),\"schedule\",this).call(this,e,t):(this.delay=t,this.state=e,this.scheduler.flush(this),this)}},{key:\"execute\",value:function(e,t){return t>0||this.closed?_get(_getPrototypeOf(n.prototype),\"execute\",this).call(this,e,t):this._execute(e,t)}},{key:\"requestAsyncId\",value:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return null!==r&&r>0||null===r&&this.delay>0?_get(_getPrototypeOf(n.prototype),\"requestAsyncId\",this).call(this,e,t,r):e.flush(this)}}]),n}(Xm),Fk=new(function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return n}(tp))(Hk);function Nk(e,t){return new w(t?function(n){return t.schedule(zk,0,{error:e,subscriber:n})}:function(t){return t.error(e)})}function zk(e){var t=e.error;e.subscriber.error(t)}var Vk=function(){var e=function(){function e(t,n,r){_classCallCheck(this,e),this.kind=t,this.value=n,this.error=r,this.hasValue=\"N\"===t}return _createClass(e,[{key:\"observe\",value:function(e){switch(this.kind){case\"N\":return e.next&&e.next(this.value);case\"E\":return e.error&&e.error(this.error);case\"C\":return e.complete&&e.complete()}}},{key:\"do\",value:function(e,t,n){switch(this.kind){case\"N\":return e&&e(this.value);case\"E\":return t&&t(this.error);case\"C\":return n&&n()}}},{key:\"accept\",value:function(e,t,n){return e&&\"function\"==typeof e.next?this.observe(e):this.do(e,t,n)}},{key:\"toObservable\",value:function(){switch(this.kind){case\"N\":return Bd(this.value);case\"E\":return Nk(this.error);case\"C\":return up()}throw new Error(\"unexpected notification kind value\")}}],[{key:\"createNext\",value:function(t){return void 0!==t?new e(\"N\",t):e.undefinedValueNotification}},{key:\"createError\",value:function(t){return new e(\"E\",void 0,t)}},{key:\"createComplete\",value:function(){return e.completeNotification}}]),e}();return e.completeNotification=new e(\"C\"),e.undefinedValueNotification=new e(\"N\",void 0),e}(),Wk=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return _classCallCheck(this,n),(i=t.call(this,e)).scheduler=r,i.delay=a,i}return _createClass(n,[{key:\"scheduleMessage\",value:function(e){this.destination.add(this.scheduler.schedule(n.dispatch,this.delay,new Uk(e,this.destination)))}},{key:\"_next\",value:function(e){this.scheduleMessage(Vk.createNext(e))}},{key:\"_error\",value:function(e){this.scheduleMessage(Vk.createError(e)),this.unsubscribe()}},{key:\"_complete\",value:function(){this.scheduleMessage(Vk.createComplete()),this.unsubscribe()}}],[{key:\"dispatch\",value:function(e){var t=e.notification,n=e.destination;t.observe(n),this.unsubscribe()}}]),n}(p),Uk=function e(t,n){_classCallCheck(this,e),this.notification=t,this.destination=n},Bk=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Number.POSITIVE_INFINITY,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.POSITIVE_INFINITY,a=arguments.length>2?arguments[2]:void 0;return _classCallCheck(this,n),(e=t.call(this)).scheduler=a,e._events=[],e._infiniteTimeWindow=!1,e._bufferSize=r<1?1:r,e._windowTime=i<1?1:i,i===Number.POSITIVE_INFINITY?(e._infiniteTimeWindow=!0,e.next=e.nextInfiniteTimeWindow):e.next=e.nextTimeWindow,e}return _createClass(n,[{key:\"nextInfiniteTimeWindow\",value:function(e){var t=this._events;t.push(e),t.length>this._bufferSize&&t.shift(),_get(_getPrototypeOf(n.prototype),\"next\",this).call(this,e)}},{key:\"nextTimeWindow\",value:function(e){this._events.push(new qk(this._getNow(),e)),this._trimBufferThenGetEvents(),_get(_getPrototypeOf(n.prototype),\"next\",this).call(this,e)}},{key:\"_subscribe\",value:function(e){var t,n=this._infiniteTimeWindow,r=n?this._events:this._trimBufferThenGetEvents(),i=this.scheduler,a=r.length;if(this.closed)throw new S;if(this.isStopped||this.hasError?t=h.EMPTY:(this.observers.push(e),t=new L(this,e)),i&&e.add(e=new Wk(e,i)),n)for(var o=0;ot&&(a=Math.max(a,i-t)),a>0&&r.splice(0,a),r}}]),n}(x),qk=function e(t,n){_classCallCheck(this,e),this.time=t,this.value=n};function Gk(e,t,n){var r;return r=e&&\"object\"==typeof e?e:{bufferSize:e,windowTime:t,refCount:!1,scheduler:n},function(e){return e.lift(function(e){var t,n,r=e.bufferSize,i=void 0===r?Number.POSITIVE_INFINITY:r,a=e.windowTime,o=void 0===a?Number.POSITIVE_INFINITY:a,s=e.refCount,l=e.scheduler,u=0,c=!1,d=!1;return function(e){u++,t&&!c||(c=!1,t=new Bk(i,o,l),n=e.subscribe({next:function(e){t.next(e)},error:function(e){c=!0,t.error(e)},complete:function(){d=!0,n=void 0,t.complete()}}));var r=t.subscribe(this);this.add((function(){u--,r.unsubscribe(),n&&!d&&s&&0===u&&(n.unsubscribe(),n=void 0,t=void 0)}))}}(r))}}var $k,Jk,Kk,Zk,Qk=function(){function e(){var t=this,n=arguments.length>0&&void 0!==arguments[0]&&arguments[0],r=arguments.length>1?arguments[1]:void 0,i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];_classCallCheck(this,e),this._multiple=n,this._emitChanges=i,this._selection=new Set,this._deselectedToEmit=[],this._selectedToEmit=[],this.changed=new x,r&&r.length&&(n?r.forEach((function(e){return t._markSelected(e)})):this._markSelected(r[0]),this._selectedToEmit.length=0)}return _createClass(e,[{key:\"select\",value:function(){for(var e=this,t=arguments.length,n=new Array(t),r=0;r1&&!this._multiple)throw Error(\"Cannot pass multiple values into SelectionModel with single-value mode.\")}},{key:\"selected\",get:function(){return this._selected||(this._selected=Array.from(this._selection.values())),this._selected}}]),e}(),Xk=((Zk=function(){function e(t,n){_classCallCheck(this,e),this._ngZone=t,this._platform=n,this._scrolled=new x,this._globalSubscription=null,this._scrolledCount=0,this.scrollContainers=new Map}return _createClass(e,[{key:\"register\",value:function(e){var t=this;this.scrollContainers.has(e)||this.scrollContainers.set(e,e.elementScrolled().subscribe((function(){return t._scrolled.next(e)})))}},{key:\"deregister\",value:function(e){var t=this.scrollContainers.get(e);t&&(t.unsubscribe(),this.scrollContainers.delete(e))}},{key:\"scrolled\",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:20;return this._platform.isBrowser?new w((function(n){e._globalSubscription||e._addGlobalListener();var r=t>0?e._scrolled.pipe(Yk(t)).subscribe(n):e._scrolled.subscribe(n);return e._scrolledCount++,function(){r.unsubscribe(),e._scrolledCount--,e._scrolledCount||e._removeGlobalListener()}})):Bd()}},{key:\"ngOnDestroy\",value:function(){var e=this;this._removeGlobalListener(),this.scrollContainers.forEach((function(t,n){return e.deregister(n)})),this._scrolled.complete()}},{key:\"ancestorScrolled\",value:function(e,t){var n=this.getAncestorScrollContainers(e);return this.scrolled(t).pipe(Gd((function(e){return!e||n.indexOf(e)>-1})))}},{key:\"getAncestorScrollContainers\",value:function(e){var t=this,n=[];return this.scrollContainers.forEach((function(r,i){t._scrollableContainsElement(i,e)&&n.push(i)})),n}},{key:\"_scrollableContainsElement\",value:function(e,t){var n=t.nativeElement,r=e.getElementRef().nativeElement;do{if(n==r)return!0}while(n=n.parentElement);return!1}},{key:\"_addGlobalListener\",value:function(){var e=this;this._globalSubscription=this._ngZone.runOutsideAngular((function(){return mk(window.document,\"scroll\").subscribe((function(){return e._scrolled.next()}))}))}},{key:\"_removeGlobalListener\",value:function(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)}}]),e}()).\\u0275fac=function(e){return new(e||Zk)(et(cc),et(Cp))},Zk.\\u0275prov=_e({factory:function(){return new Zk(et(cc),et(Cp))},token:Zk,providedIn:\"root\"}),Zk),ew=((Kk=function(){function e(t,n,r,i){var a=this;_classCallCheck(this,e),this.elementRef=t,this.scrollDispatcher=n,this.ngZone=r,this.dir=i,this._destroyed=new x,this._elementScrolled=new w((function(e){return a.ngZone.runOutsideAngular((function(){return mk(a.elementRef.nativeElement,\"scroll\").pipe(Ek(a._destroyed)).subscribe(e)}))}))}return _createClass(e,[{key:\"ngOnInit\",value:function(){this.scrollDispatcher.register(this)}},{key:\"ngOnDestroy\",value:function(){this.scrollDispatcher.deregister(this),this._destroyed.next(),this._destroyed.complete()}},{key:\"elementScrolled\",value:function(){return this._elementScrolled}},{key:\"getElementRef\",value:function(){return this.elementRef}},{key:\"scrollTo\",value:function(e){var t=this.elementRef.nativeElement,n=this.dir&&\"rtl\"==this.dir.value;e.left=null==e.left?n?e.end:e.start:e.left,e.right=null==e.right?n?e.start:e.end:e.right,null!=e.bottom&&(e.top=t.scrollHeight-t.clientHeight-e.bottom),n&&Op()!=Dp.NORMAL?(null!=e.left&&(e.right=t.scrollWidth-t.clientWidth-e.left),Op()==Dp.INVERTED?e.left=e.right:Op()==Dp.NEGATED&&(e.left=e.right?-e.right:e.right)):null!=e.right&&(e.left=t.scrollWidth-t.clientWidth-e.right),this._applyScrollToOptions(e)}},{key:\"_applyScrollToOptions\",value:function(e){var t=this.elementRef.nativeElement;\"object\"==typeof document&&\"scrollBehavior\"in document.documentElement.style?t.scrollTo(e):(null!=e.top&&(t.scrollTop=e.top),null!=e.left&&(t.scrollLeft=e.left))}},{key:\"measureScrollOffset\",value:function(e){var t=this.elementRef.nativeElement;if(\"top\"==e)return t.scrollTop;if(\"bottom\"==e)return t.scrollHeight-t.clientHeight-t.scrollTop;var n=this.dir&&\"rtl\"==this.dir.value;return\"start\"==e?e=n?\"right\":\"left\":\"end\"==e&&(e=n?\"left\":\"right\"),n&&Op()==Dp.INVERTED?\"left\"==e?t.scrollWidth-t.clientWidth-t.scrollLeft:t.scrollLeft:n&&Op()==Dp.NEGATED?\"left\"==e?t.scrollLeft+t.scrollWidth-t.clientWidth:-t.scrollLeft:\"left\"==e?t.scrollLeft:t.scrollWidth-t.clientWidth-t.scrollLeft}}]),e}()).\\u0275fac=function(e){return new(e||Kk)(Io(Qs),Io(Xk),Io(cc),Io(h_,8))},Kk.\\u0275dir=Lt({type:Kk,selectors:[[\"\",\"cdk-scrollable\",\"\"],[\"\",\"cdkScrollable\",\"\"]]}),Kk),tw=((Jk=function(){function e(t,n){var r=this;_classCallCheck(this,e),this._platform=t,n.runOutsideAngular((function(){r._change=t.isBrowser?K(mk(window,\"resize\"),mk(window,\"orientationchange\")):Bd(),r._invalidateCache=r.change().subscribe((function(){return r._updateViewportSize()}))}))}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){this._invalidateCache.unsubscribe()}},{key:\"getViewportSize\",value:function(){this._viewportSize||this._updateViewportSize();var e={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),e}},{key:\"getViewportRect\",value:function(){var e=this.getViewportScrollPosition(),t=this.getViewportSize(),n=t.width,r=t.height;return{top:e.top,left:e.left,bottom:e.top+r,right:e.left+n,height:r,width:n}}},{key:\"getViewportScrollPosition\",value:function(){if(!this._platform.isBrowser)return{top:0,left:0};var e=document.documentElement,t=e.getBoundingClientRect();return{top:-t.top||document.body.scrollTop||window.scrollY||e.scrollTop||0,left:-t.left||document.body.scrollLeft||window.scrollX||e.scrollLeft||0}}},{key:\"change\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:20;return e>0?this._change.pipe(Yk(e)):this._change}},{key:\"_updateViewportSize\",value:function(){this._viewportSize=this._platform.isBrowser?{width:window.innerWidth,height:window.innerHeight}:{width:0,height:0}}}]),e}()).\\u0275fac=function(e){return new(e||Jk)(et(Cp),et(cc))},Jk.\\u0275prov=_e({factory:function(){return new Jk(et(Cp),et(cc))},token:Jk,providedIn:\"root\"}),Jk),nw=(($k=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:$k}),$k.\\u0275inj=ve({factory:function(e){return new(e||$k)},imports:[[f_,Mp],f_]}),$k);function rw(){throw Error(\"Host already has a portal attached\")}var iw,aw,ow=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"attach\",value:function(e){return null==e&&function(){throw Error(\"Attempting to attach a portal to a null PortalOutlet\")}(),e.hasAttached()&&rw(),this._attachedHost=e,e.attach(this)}},{key:\"detach\",value:function(){var e=this._attachedHost;null==e?function(){throw Error(\"Attempting to detach a portal that is not attached to a host\")}():(this._attachedHost=null,e.detach())}},{key:\"setAttachedHost\",value:function(e){this._attachedHost=e}},{key:\"isAttached\",get:function(){return null!=this._attachedHost}}]),e}(),sw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this)).component=e,o.viewContainerRef=r,o.injector=i,o.componentFactoryResolver=a,o}return n}(ow),lw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this)).templateRef=e,a.viewContainerRef=r,a.context=i,a}return _createClass(n,[{key:\"attach\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.context;return this.context=t,_get(_getPrototypeOf(n.prototype),\"attach\",this).call(this,e)}},{key:\"detach\",value:function(){return this.context=void 0,_get(_getPrototypeOf(n.prototype),\"detach\",this).call(this)}},{key:\"origin\",get:function(){return this.templateRef.elementRef}}]),n}(ow),uw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this)).element=e instanceof Qs?e.nativeElement:e,r}return n}(ow),cw=function(){function e(){_classCallCheck(this,e),this._isDisposed=!1,this.attachDomPortal=null}return _createClass(e,[{key:\"hasAttached\",value:function(){return!!this._attachedPortal}},{key:\"attach\",value:function(e){return e||function(){throw Error(\"Must provide a portal to attach\")}(),this.hasAttached()&&rw(),this._isDisposed&&function(){throw Error(\"This PortalOutlet has already been disposed\")}(),e instanceof sw?(this._attachedPortal=e,this.attachComponentPortal(e)):e instanceof lw?(this._attachedPortal=e,this.attachTemplatePortal(e)):this.attachDomPortal&&e instanceof uw?(this._attachedPortal=e,this.attachDomPortal(e)):void function(){throw Error(\"Attempting to attach an unknown Portal type. BasePortalOutlet accepts either a ComponentPortal or a TemplatePortal.\")}()}},{key:\"detach\",value:function(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()}},{key:\"dispose\",value:function(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0}},{key:\"setDisposeFn\",value:function(e){this._disposeFn=e}},{key:\"_invokeDisposeFn\",value:function(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}]),e}(),dw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this)).outletElement=e,s._componentFactoryResolver=r,s._appRef=i,s._defaultInjector=a,s.attachDomPortal=function(e){if(!s._document)throw Error(\"Cannot attach DOM portal without _document constructor parameter\");var t=e.element;if(!t.parentNode)throw Error(\"DOM portal content must be attached to a parent node.\");var r=s._document.createComment(\"dom-portal\");t.parentNode.insertBefore(r,t),s.outletElement.appendChild(t),_get(_getPrototypeOf(n.prototype),\"setDisposeFn\",_assertThisInitialized(s)).call(_assertThisInitialized(s),(function(){r.parentNode&&r.parentNode.replaceChild(t,r)}))},s._document=o,s}return _createClass(n,[{key:\"attachComponentPortal\",value:function(e){var t,n=this,r=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component);return e.viewContainerRef?(t=e.viewContainerRef.createComponent(r,e.viewContainerRef.length,e.injector||e.viewContainerRef.injector),this.setDisposeFn((function(){return t.destroy()}))):(t=r.create(e.injector||this._defaultInjector),this._appRef.attachView(t.hostView),this.setDisposeFn((function(){n._appRef.detachView(t.hostView),t.destroy()}))),this.outletElement.appendChild(this._getComponentRootNode(t)),t}},{key:\"attachTemplatePortal\",value:function(e){var t=this,n=e.viewContainerRef,r=n.createEmbeddedView(e.templateRef,e.context);return r.detectChanges(),r.rootNodes.forEach((function(e){return t.outletElement.appendChild(e)})),this.setDisposeFn((function(){var e=n.indexOf(r);-1!==e&&n.remove(e)})),r}},{key:\"dispose\",value:function(){_get(_getPrototypeOf(n.prototype),\"dispose\",this).call(this),null!=this.outletElement.parentNode&&this.outletElement.parentNode.removeChild(this.outletElement)}},{key:\"_getComponentRootNode\",value:function(e){return e.hostView.rootNodes[0]}}]),n}(cw),hw=((aw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this))._componentFactoryResolver=e,a._viewContainerRef=r,a._isInitialized=!1,a.attached=new bu,a.attachDomPortal=function(e){if(!a._document)throw Error(\"Cannot attach DOM portal without _document constructor parameter\");var t=e.element;if(!t.parentNode)throw Error(\"DOM portal content must be attached to a parent node.\");var r=a._document.createComment(\"dom-portal\");e.setAttachedHost(_assertThisInitialized(a)),t.parentNode.insertBefore(r,t),a._getRootNode().appendChild(t),_get(_getPrototypeOf(n.prototype),\"setDisposeFn\",_assertThisInitialized(a)).call(_assertThisInitialized(a),(function(){r.parentNode&&r.parentNode.replaceChild(t,r)}))},a._document=i,a}return _createClass(n,[{key:\"ngOnInit\",value:function(){this._isInitialized=!0}},{key:\"ngOnDestroy\",value:function(){_get(_getPrototypeOf(n.prototype),\"dispose\",this).call(this),this._attachedPortal=null,this._attachedRef=null}},{key:\"attachComponentPortal\",value:function(e){e.setAttachedHost(this);var t=null!=e.viewContainerRef?e.viewContainerRef:this._viewContainerRef,r=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component),i=t.createComponent(r,t.length,e.injector||t.injector);return t!==this._viewContainerRef&&this._getRootNode().appendChild(i.hostView.rootNodes[0]),_get(_getPrototypeOf(n.prototype),\"setDisposeFn\",this).call(this,(function(){return i.destroy()})),this._attachedPortal=e,this._attachedRef=i,this.attached.emit(i),i}},{key:\"attachTemplatePortal\",value:function(e){var t=this;e.setAttachedHost(this);var r=this._viewContainerRef.createEmbeddedView(e.templateRef,e.context);return _get(_getPrototypeOf(n.prototype),\"setDisposeFn\",this).call(this,(function(){return t._viewContainerRef.clear()})),this._attachedPortal=e,this._attachedRef=r,this.attached.emit(r),r}},{key:\"_getRootNode\",value:function(){var e=this._viewContainerRef.element.nativeElement;return e.nodeType===e.ELEMENT_NODE?e:e.parentNode}},{key:\"portal\",get:function(){return this._attachedPortal},set:function(e){(!this.hasAttached()||e||this._isInitialized)&&(this.hasAttached()&&_get(_getPrototypeOf(n.prototype),\"detach\",this).call(this),e&&_get(_getPrototypeOf(n.prototype),\"attach\",this).call(this,e),this._attachedPortal=e)}},{key:\"attachedRef\",get:function(){return this._attachedRef}}]),n}(cw)).\\u0275fac=function(e){return new(e||aw)(Io(Zs),Io(Ml),Io(Wc))},aw.\\u0275dir=Lt({type:aw,selectors:[[\"\",\"cdkPortalOutlet\",\"\"]],inputs:{portal:[\"cdkPortalOutlet\",\"portal\"]},outputs:{attached:\"attached\"},exportAs:[\"cdkPortalOutlet\"],features:[Es]}),aw),fw=((iw=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:iw}),iw.\\u0275inj=ve({factory:function(e){return new(e||iw)}}),iw),mw=function(){function e(t,n){_classCallCheck(this,e),this._viewportRuler=t,this._previousHTMLStyles={top:\"\",left:\"\"},this._isEnabled=!1,this._document=n}return _createClass(e,[{key:\"attach\",value:function(){}},{key:\"enable\",value:function(){if(this._canBeEnabled()){var e=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=e.style.left||\"\",this._previousHTMLStyles.top=e.style.top||\"\",e.style.left=vp(-this._previousScrollPosition.left),e.style.top=vp(-this._previousScrollPosition.top),e.classList.add(\"cdk-global-scrollblock\"),this._isEnabled=!0}}},{key:\"disable\",value:function(){if(this._isEnabled){var e=this._document.documentElement,t=e.style,n=this._document.body.style,r=t.scrollBehavior||\"\",i=n.scrollBehavior||\"\";this._isEnabled=!1,t.left=this._previousHTMLStyles.left,t.top=this._previousHTMLStyles.top,e.classList.remove(\"cdk-global-scrollblock\"),t.scrollBehavior=n.scrollBehavior=\"auto\",window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),t.scrollBehavior=r,n.scrollBehavior=i}}},{key:\"_canBeEnabled\",value:function(){if(this._document.documentElement.classList.contains(\"cdk-global-scrollblock\")||this._isEnabled)return!1;var e=this._document.body,t=this._viewportRuler.getViewportSize();return e.scrollHeight>t.height||e.scrollWidth>t.width}}]),e}();function pw(){return Error(\"Scroll strategy has already been attached.\")}var _w=function(){function e(t,n,r,i){var a=this;_classCallCheck(this,e),this._scrollDispatcher=t,this._ngZone=n,this._viewportRuler=r,this._config=i,this._scrollSubscription=null,this._detach=function(){a.disable(),a._overlayRef.hasAttached()&&a._ngZone.run((function(){return a._overlayRef.detach()}))}}return _createClass(e,[{key:\"attach\",value:function(e){if(this._overlayRef)throw pw();this._overlayRef=e}},{key:\"enable\",value:function(){var e=this;if(!this._scrollSubscription){var t=this._scrollDispatcher.scrolled(0);this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=t.subscribe((function(){var t=e._viewportRuler.getViewportScrollPosition().top;Math.abs(t-e._initialScrollPosition)>e._config.threshold?e._detach():e._overlayRef.updatePosition()}))):this._scrollSubscription=t.subscribe(this._detach)}}},{key:\"disable\",value:function(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}},{key:\"detach\",value:function(){this.disable(),this._overlayRef=null}}]),e}(),vw=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"enable\",value:function(){}},{key:\"disable\",value:function(){}},{key:\"attach\",value:function(){}}]),e}();function gw(e,t){return t.some((function(t){return e.bottomt.bottom||e.rightt.right}))}function yw(e,t){return t.some((function(t){return e.topt.bottom||e.leftt.right}))}var bw,kw=function(){function e(t,n,r,i){_classCallCheck(this,e),this._scrollDispatcher=t,this._viewportRuler=n,this._ngZone=r,this._config=i,this._scrollSubscription=null}return _createClass(e,[{key:\"attach\",value:function(e){if(this._overlayRef)throw pw();this._overlayRef=e}},{key:\"enable\",value:function(){var e=this;this._scrollSubscription||(this._scrollSubscription=this._scrollDispatcher.scrolled(this._config?this._config.scrollThrottle:0).subscribe((function(){if(e._overlayRef.updatePosition(),e._config&&e._config.autoClose){var t=e._overlayRef.overlayElement.getBoundingClientRect(),n=e._viewportRuler.getViewportSize(),r=n.width,i=n.height;gw(t,[{width:r,height:i,bottom:i,right:r,top:0,left:0}])&&(e.disable(),e._ngZone.run((function(){return e._overlayRef.detach()})))}})))}},{key:\"disable\",value:function(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}},{key:\"detach\",value:function(){this.disable(),this._overlayRef=null}}]),e}(),ww=((bw=function e(t,n,r,i){var a=this;_classCallCheck(this,e),this._scrollDispatcher=t,this._viewportRuler=n,this._ngZone=r,this.noop=function(){return new vw},this.close=function(e){return new _w(a._scrollDispatcher,a._ngZone,a._viewportRuler,e)},this.block=function(){return new mw(a._viewportRuler,a._document)},this.reposition=function(e){return new kw(a._scrollDispatcher,a._viewportRuler,a._ngZone,e)},this._document=i}).\\u0275fac=function(e){return new(e||bw)(et(Xk),et(tw),et(cc),et(Wc))},bw.\\u0275prov=_e({factory:function(){return new bw(et(Xk),et(tw),et(cc),et(Wc))},token:bw,providedIn:\"root\"}),bw),Cw=function e(t){if(_classCallCheck(this,e),this.scrollStrategy=new vw,this.panelClass=\"\",this.hasBackdrop=!1,this.backdropClass=\"cdk-overlay-dark-backdrop\",this.disposeOnNavigation=!1,t)for(var n=0,r=Object.keys(t);n-1;r--)if(t[r]._keydownEventSubscriptions>0){t[r]._keydownEvents.next(e);break}},this._document=t}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){this._detach()}},{key:\"add\",value:function(e){this.remove(e),this._isAttached||(this._document.body.addEventListener(\"keydown\",this._keydownListener),this._isAttached=!0),this._attachedOverlays.push(e)}},{key:\"remove\",value:function(e){var t=this._attachedOverlays.indexOf(e);t>-1&&this._attachedOverlays.splice(t,1),0===this._attachedOverlays.length&&this._detach()}},{key:\"_detach\",value:function(){this._isAttached&&(this._document.body.removeEventListener(\"keydown\",this._keydownListener),this._isAttached=!1)}}]),e}()).\\u0275fac=function(e){return new(e||xw)(et(Wc))},xw.\\u0275prov=_e({factory:function(){return new xw(et(Wc))},token:xw,providedIn:\"root\"}),xw),Yw=!(\"undefined\"==typeof window||!window||!window.__karma__&&!window.jasmine),Ew=((Dw=function(){function e(t,n){_classCallCheck(this,e),this._platform=n,this._document=t}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){var e=this._containerElement;e&&e.parentNode&&e.parentNode.removeChild(e)}},{key:\"getContainerElement\",value:function(){return this._containerElement||this._createContainer(),this._containerElement}},{key:\"_createContainer\",value:function(){var e=this._platform?this._platform.isBrowser:\"undefined\"!=typeof window;if(e||Yw)for(var t=this._document.querySelectorAll('.cdk-overlay-container[platform=\"server\"], .cdk-overlay-container[platform=\"test\"]'),n=0;nf&&(f=_,h=p)}}catch(v){m.e(v)}finally{m.f()}return this._isPushed=!1,void this._applyPosition(h.position,h.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(e.position,e.originPoint);this._applyPosition(e.position,e.originPoint)}}},{key:\"detach\",value:function(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}},{key:\"dispose\",value:function(){this._isDisposed||(this._boundingBox&&Pw(this._boundingBox.style,{top:\"\",left:\"\",right:\"\",bottom:\"\",height:\"\",width:\"\",alignItems:\"\",justifyContent:\"\"}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(\"cdk-overlay-connected-position-bounding-box\"),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}},{key:\"reapplyLastPosition\",value:function(){if(!this._isDisposed&&(!this._platform||this._platform.isBrowser)){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect();var e=this._lastPosition||this._preferredPositions[0],t=this._getOriginPoint(this._originRect,e);this._applyPosition(e,t)}}},{key:\"withScrollableContainers\",value:function(e){return this._scrollables=e,this}},{key:\"withPositions\",value:function(e){return this._preferredPositions=e,-1===e.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}},{key:\"withViewportMargin\",value:function(e){return this._viewportMargin=e,this}},{key:\"withFlexibleDimensions\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._hasFlexibleDimensions=e,this}},{key:\"withGrowAfterOpen\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._growAfterOpen=e,this}},{key:\"withPush\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._canPush=e,this}},{key:\"withLockedPosition\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._positionLocked=e,this}},{key:\"setOrigin\",value:function(e){return this._origin=e,this}},{key:\"withDefaultOffsetX\",value:function(e){return this._offsetX=e,this}},{key:\"withDefaultOffsetY\",value:function(e){return this._offsetY=e,this}},{key:\"withTransformOriginOn\",value:function(e){return this._transformOriginSelector=e,this}},{key:\"_getOriginPoint\",value:function(e,t){var n;if(\"center\"==t.originX)n=e.left+e.width/2;else{var r=this._isRtl()?e.right:e.left,i=this._isRtl()?e.left:e.right;n=\"start\"==t.originX?r:i}return{x:n,y:\"center\"==t.originY?e.top+e.height/2:\"top\"==t.originY?e.top:e.bottom}}},{key:\"_getOverlayPoint\",value:function(e,t,n){var r,i;return r=\"center\"==n.overlayX?-t.width/2:\"start\"===n.overlayX?this._isRtl()?-t.width:0:this._isRtl()?0:-t.width,i=\"center\"==n.overlayY?-t.height/2:\"top\"==n.overlayY?0:-t.height,{x:e.x+r,y:e.y+i}}},{key:\"_getOverlayFit\",value:function(e,t,n,r){var i=e.x,a=e.y,o=this._getOffset(r,\"x\"),s=this._getOffset(r,\"y\");o&&(i+=o),s&&(a+=s);var l=0-a,u=a+t.height-n.height,c=this._subtractOverflows(t.width,0-i,i+t.width-n.width),d=this._subtractOverflows(t.height,l,u),h=c*d;return{visibleArea:h,isCompletelyWithinViewport:t.width*t.height===h,fitsInViewportVertically:d===t.height,fitsInViewportHorizontally:c==t.width}}},{key:\"_canFitWithFlexibleDimensions\",value:function(e,t,n){if(this._hasFlexibleDimensions){var r=n.bottom-t.y,i=n.right-t.x,a=this._overlayRef.getConfig().minHeight,o=this._overlayRef.getConfig().minWidth,s=e.fitsInViewportHorizontally||null!=o&&o<=i;return(e.fitsInViewportVertically||null!=a&&a<=r)&&s}return!1}},{key:\"_pushOverlayOnScreen\",value:function(e,t,n){if(this._previousPushAmount&&this._positionLocked)return{x:e.x+this._previousPushAmount.x,y:e.y+this._previousPushAmount.y};var r,i,a=this._viewportRect,o=Math.max(e.x+t.width-a.right,0),s=Math.max(e.y+t.height-a.bottom,0),l=Math.max(a.top-n.top-e.y,0),u=Math.max(a.left-n.left-e.x,0);return r=t.width<=a.width?u||-o:e.xd&&!this._isInitialRender&&!this._growAfterOpen&&(r=e.y-d/2)}if(\"end\"===t.overlayX&&!u||\"start\"===t.overlayX&&u)s=l.width-e.x+this._viewportMargin,a=e.x-this._viewportMargin;else if(\"start\"===t.overlayX&&!u||\"end\"===t.overlayX&&u)o=e.x,a=l.right-e.x;else{var h=Math.min(l.right-e.x+l.left,e.x),f=this._lastBoundingBoxSize.width;a=2*h,o=e.x-h,a>f&&!this._isInitialRender&&!this._growAfterOpen&&(o=e.x-f/2)}return{top:r,left:o,bottom:i,right:s,width:a,height:n}}},{key:\"_setBoundingBoxStyles\",value:function(e,t){var n=this._calculateBoundingBoxRect(e,t);this._isInitialRender||this._growAfterOpen||(n.height=Math.min(n.height,this._lastBoundingBoxSize.height),n.width=Math.min(n.width,this._lastBoundingBoxSize.width));var r={};if(this._hasExactPosition())r.top=r.left=\"0\",r.bottom=r.right=r.maxHeight=r.maxWidth=\"\",r.width=r.height=\"100%\";else{var i=this._overlayRef.getConfig().maxHeight,a=this._overlayRef.getConfig().maxWidth;r.height=vp(n.height),r.top=vp(n.top),r.bottom=vp(n.bottom),r.width=vp(n.width),r.left=vp(n.left),r.right=vp(n.right),r.alignItems=\"center\"===t.overlayX?\"center\":\"end\"===t.overlayX?\"flex-end\":\"flex-start\",r.justifyContent=\"center\"===t.overlayY?\"center\":\"bottom\"===t.overlayY?\"flex-end\":\"flex-start\",i&&(r.maxHeight=vp(i)),a&&(r.maxWidth=vp(a))}this._lastBoundingBoxSize=n,Pw(this._boundingBox.style,r)}},{key:\"_resetBoundingBoxStyles\",value:function(){Pw(this._boundingBox.style,{top:\"0\",left:\"0\",right:\"0\",bottom:\"0\",height:\"\",width:\"\",alignItems:\"\",justifyContent:\"\"})}},{key:\"_resetOverlayElementStyles\",value:function(){Pw(this._pane.style,{top:\"\",left:\"\",bottom:\"\",right:\"\",position:\"\",transform:\"\"})}},{key:\"_setOverlayElementStyles\",value:function(e,t){var n={},r=this._hasExactPosition(),i=this._hasFlexibleDimensions,a=this._overlayRef.getConfig();if(r){var o=this._viewportRuler.getViewportScrollPosition();Pw(n,this._getExactOverlayY(t,e,o)),Pw(n,this._getExactOverlayX(t,e,o))}else n.position=\"static\";var s=\"\",l=this._getOffset(t,\"x\"),u=this._getOffset(t,\"y\");l&&(s+=\"translateX(\".concat(l,\"px) \")),u&&(s+=\"translateY(\".concat(u,\"px)\")),n.transform=s.trim(),a.maxHeight&&(r?n.maxHeight=vp(a.maxHeight):i&&(n.maxHeight=\"\")),a.maxWidth&&(r?n.maxWidth=vp(a.maxWidth):i&&(n.maxWidth=\"\")),Pw(this._pane.style,n)}},{key:\"_getExactOverlayY\",value:function(e,t,n){var r={top:\"\",bottom:\"\"},i=this._getOverlayPoint(t,this._overlayRect,e);this._isPushed&&(i=this._pushOverlayOnScreen(i,this._overlayRect,n));var a=this._overlayContainer.getContainerElement().getBoundingClientRect().top;return i.y-=a,\"bottom\"===e.overlayY?r.bottom=\"\".concat(this._document.documentElement.clientHeight-(i.y+this._overlayRect.height),\"px\"):r.top=vp(i.y),r}},{key:\"_getExactOverlayX\",value:function(e,t,n){var r={left:\"\",right:\"\"},i=this._getOverlayPoint(t,this._overlayRect,e);return this._isPushed&&(i=this._pushOverlayOnScreen(i,this._overlayRect,n)),\"right\"===(this._isRtl()?\"end\"===e.overlayX?\"left\":\"right\":\"end\"===e.overlayX?\"right\":\"left\")?r.right=\"\".concat(this._document.documentElement.clientWidth-(i.x+this._overlayRect.width),\"px\"):r.left=vp(i.x),r}},{key:\"_getScrollVisibility\",value:function(){var e=this._getOriginRect(),t=this._pane.getBoundingClientRect(),n=this._scrollables.map((function(e){return e.getElementRef().nativeElement.getBoundingClientRect()}));return{isOriginClipped:yw(e,n),isOriginOutsideView:gw(e,n),isOverlayClipped:yw(t,n),isOverlayOutsideView:gw(t,n)}}},{key:\"_subtractOverflows\",value:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r0&&void 0!==arguments[0]?arguments[0]:\"\";return this._bottomOffset=\"\",this._topOffset=e,this._alignItems=\"flex-start\",this}},{key:\"left\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._rightOffset=\"\",this._leftOffset=e,this._justifyContent=\"flex-start\",this}},{key:\"bottom\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._topOffset=\"\",this._bottomOffset=e,this._alignItems=\"flex-end\",this}},{key:\"right\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._leftOffset=\"\",this._rightOffset=e,this._justifyContent=\"flex-end\",this}},{key:\"width\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._overlayRef?this._overlayRef.updateSize({width:e}):this._width=e,this}},{key:\"height\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._overlayRef?this._overlayRef.updateSize({height:e}):this._height=e,this}},{key:\"centerHorizontally\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this.left(e),this._justifyContent=\"center\",this}},{key:\"centerVertically\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this.top(e),this._alignItems=\"center\",this}},{key:\"apply\",value:function(){if(this._overlayRef&&this._overlayRef.hasAttached()){var e=this._overlayRef.overlayElement.style,t=this._overlayRef.hostElement.style,n=this._overlayRef.getConfig(),r=n.width,i=n.height,a=n.maxWidth,o=n.maxHeight,s=!(\"100%\"!==r&&\"100vw\"!==r||a&&\"100%\"!==a&&\"100vw\"!==a),l=!(\"100%\"!==i&&\"100vh\"!==i||o&&\"100%\"!==o&&\"100vh\"!==o);e.position=this._cssPosition,e.marginLeft=s?\"0\":this._leftOffset,e.marginTop=l?\"0\":this._topOffset,e.marginBottom=this._bottomOffset,e.marginRight=this._rightOffset,s?t.justifyContent=\"flex-start\":\"center\"===this._justifyContent?t.justifyContent=\"center\":\"rtl\"===this._overlayRef.getConfig().direction?\"flex-start\"===this._justifyContent?t.justifyContent=\"flex-end\":\"flex-end\"===this._justifyContent&&(t.justifyContent=\"flex-start\"):t.justifyContent=this._justifyContent,t.alignItems=l?\"flex-start\":this._alignItems}}},{key:\"dispose\",value:function(){if(!this._isDisposed&&this._overlayRef){var e=this._overlayRef.overlayElement.style,t=this._overlayRef.hostElement,n=t.style;t.classList.remove(\"cdk-global-overlay-wrapper\"),n.justifyContent=n.alignItems=e.marginTop=e.marginBottom=e.marginLeft=e.marginRight=e.position=\"\",this._overlayRef=null,this._isDisposed=!0}}}]),e}(),Ww=((Rw=function(){function e(t,n,r,i){_classCallCheck(this,e),this._viewportRuler=t,this._document=n,this._platform=r,this._overlayContainer=i}return _createClass(e,[{key:\"global\",value:function(){return new Vw}},{key:\"connectedTo\",value:function(e,t,n){return new zw(t,n,e,this._viewportRuler,this._document,this._platform,this._overlayContainer)}},{key:\"flexibleConnectedTo\",value:function(e){return new Aw(e,this._viewportRuler,this._document,this._platform,this._overlayContainer)}}]),e}()).\\u0275fac=function(e){return new(e||Rw)(et(tw),et(Wc),et(Cp),et(Ew))},Rw.\\u0275prov=_e({factory:function(){return new Rw(et(tw),et(Wc),et(Cp),et(Ew))},token:Rw,providedIn:\"root\"}),Rw),Uw=0,Bw=((jw=function(){function e(t,n,r,i,a,o,s,l,u,c){_classCallCheck(this,e),this.scrollStrategies=t,this._overlayContainer=n,this._componentFactoryResolver=r,this._positionBuilder=i,this._keyboardDispatcher=a,this._injector=o,this._ngZone=s,this._document=l,this._directionality=u,this._location=c}return _createClass(e,[{key:\"create\",value:function(e){var t=this._createHostElement(),n=this._createPaneElement(t),r=this._createPortalOutlet(n),i=new Cw(e);return i.direction=i.direction||this._directionality.value,new Iw(r,t,n,i,this._ngZone,this._keyboardDispatcher,this._document,this._location)}},{key:\"position\",value:function(){return this._positionBuilder}},{key:\"_createPaneElement\",value:function(e){var t=this._document.createElement(\"div\");return t.id=\"cdk-overlay-\".concat(Uw++),t.classList.add(\"cdk-overlay-pane\"),e.appendChild(t),t}},{key:\"_createHostElement\",value:function(){var e=this._document.createElement(\"div\");return this._overlayContainer.getContainerElement().appendChild(e),e}},{key:\"_createPortalOutlet\",value:function(e){return this._appRef||(this._appRef=this._injector.get(Oc)),new dw(e,this._componentFactoryResolver,this._appRef,this._injector,this._document)}}]),e}()).\\u0275fac=function(e){return new(e||jw)(et(ww),et(Ew),et(Zs),et(Ww),et(Ow),et(vo),et(cc),et(Wc),et(h_),et(ud,8))},jw.\\u0275prov=_e({token:jw,factory:jw.\\u0275fac}),jw),qw=[{originX:\"start\",originY:\"bottom\",overlayX:\"start\",overlayY:\"top\"},{originX:\"start\",originY:\"top\",overlayX:\"start\",overlayY:\"bottom\"},{originX:\"end\",originY:\"top\",overlayX:\"end\",overlayY:\"bottom\"},{originX:\"end\",originY:\"bottom\",overlayX:\"end\",overlayY:\"top\"}],Gw=new Be(\"cdk-connected-overlay-scroll-strategy\"),$w=((Fw=function e(t){_classCallCheck(this,e),this.elementRef=t}).\\u0275fac=function(e){return new(e||Fw)(Io(Qs))},Fw.\\u0275dir=Lt({type:Fw,selectors:[[\"\",\"cdk-overlay-origin\",\"\"],[\"\",\"overlay-origin\",\"\"],[\"\",\"cdkOverlayOrigin\",\"\"]],exportAs:[\"cdkOverlayOrigin\"]}),Fw),Jw=((Hw=function(){function e(t,n,r,i,a){_classCallCheck(this,e),this._overlay=t,this._dir=a,this._hasBackdrop=!1,this._lockPosition=!1,this._growAfterOpen=!1,this._flexibleDimensions=!1,this._push=!1,this._backdropSubscription=h.EMPTY,this.viewportMargin=0,this.open=!1,this.backdropClick=new bu,this.positionChange=new bu,this.attach=new bu,this.detach=new bu,this.overlayKeydown=new bu,this._templatePortal=new lw(n,r),this._scrollStrategyFactory=i,this.scrollStrategy=this._scrollStrategyFactory()}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){this._overlayRef&&this._overlayRef.dispose(),this._backdropSubscription.unsubscribe()}},{key:\"ngOnChanges\",value:function(e){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),e.origin&&this.open&&this._position.apply()),e.open&&(this.open?this._attachOverlay():this._detachOverlay())}},{key:\"_createOverlay\",value:function(){var e=this;this.positions&&this.positions.length||(this.positions=qw),this._overlayRef=this._overlay.create(this._buildConfig()),this._overlayRef.keydownEvents().subscribe((function(t){e.overlayKeydown.next(t),27!==t.keyCode||Jm(t)||(t.preventDefault(),e._detachOverlay())}))}},{key:\"_buildConfig\",value:function(){var e=this._position=this.positionStrategy||this._createPositionStrategy(),t=new Cw({direction:this._dir,positionStrategy:e,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop});return(this.width||0===this.width)&&(t.width=this.width),(this.height||0===this.height)&&(t.height=this.height),(this.minWidth||0===this.minWidth)&&(t.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(t.minHeight=this.minHeight),this.backdropClass&&(t.backdropClass=this.backdropClass),this.panelClass&&(t.panelClass=this.panelClass),t}},{key:\"_updatePositionStrategy\",value:function(e){var t=this,n=this.positions.map((function(e){return{originX:e.originX,originY:e.originY,overlayX:e.overlayX,overlayY:e.overlayY,offsetX:e.offsetX||t.offsetX,offsetY:e.offsetY||t.offsetY,panelClass:e.panelClass||void 0}}));return e.setOrigin(this.origin.elementRef).withPositions(n).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}},{key:\"_createPositionStrategy\",value:function(){var e=this,t=this._overlay.position().flexibleConnectedTo(this.origin.elementRef);return this._updatePositionStrategy(t),t.positionChanges.subscribe((function(t){return e.positionChange.emit(t)})),t}},{key:\"_attachOverlay\",value:function(){var e=this;this._overlayRef?this._overlayRef.getConfig().hasBackdrop=this.hasBackdrop:this._createOverlay(),this._overlayRef.hasAttached()||(this._overlayRef.attach(this._templatePortal),this.attach.emit()),this.hasBackdrop?this._backdropSubscription=this._overlayRef.backdropClick().subscribe((function(t){e.backdropClick.emit(t)})):this._backdropSubscription.unsubscribe()}},{key:\"_detachOverlay\",value:function(){this._overlayRef&&(this._overlayRef.detach(),this.detach.emit()),this._backdropSubscription.unsubscribe()}},{key:\"offsetX\",get:function(){return this._offsetX},set:function(e){this._offsetX=e,this._position&&this._updatePositionStrategy(this._position)}},{key:\"offsetY\",get:function(){return this._offsetY},set:function(e){this._offsetY=e,this._position&&this._updatePositionStrategy(this._position)}},{key:\"hasBackdrop\",get:function(){return this._hasBackdrop},set:function(e){this._hasBackdrop=mp(e)}},{key:\"lockPosition\",get:function(){return this._lockPosition},set:function(e){this._lockPosition=mp(e)}},{key:\"flexibleDimensions\",get:function(){return this._flexibleDimensions},set:function(e){this._flexibleDimensions=mp(e)}},{key:\"growAfterOpen\",get:function(){return this._growAfterOpen},set:function(e){this._growAfterOpen=mp(e)}},{key:\"push\",get:function(){return this._push},set:function(e){this._push=mp(e)}},{key:\"overlayRef\",get:function(){return this._overlayRef}},{key:\"dir\",get:function(){return this._dir?this._dir.value:\"ltr\"}}]),e}()).\\u0275fac=function(e){return new(e||Hw)(Io(Bw),Io(wl),Io(Ml),Io(Gw),Io(h_,8))},Hw.\\u0275dir=Lt({type:Hw,selectors:[[\"\",\"cdk-connected-overlay\",\"\"],[\"\",\"connected-overlay\",\"\"],[\"\",\"cdkConnectedOverlay\",\"\"]],inputs:{viewportMargin:[\"cdkConnectedOverlayViewportMargin\",\"viewportMargin\"],open:[\"cdkConnectedOverlayOpen\",\"open\"],scrollStrategy:[\"cdkConnectedOverlayScrollStrategy\",\"scrollStrategy\"],offsetX:[\"cdkConnectedOverlayOffsetX\",\"offsetX\"],offsetY:[\"cdkConnectedOverlayOffsetY\",\"offsetY\"],hasBackdrop:[\"cdkConnectedOverlayHasBackdrop\",\"hasBackdrop\"],lockPosition:[\"cdkConnectedOverlayLockPosition\",\"lockPosition\"],flexibleDimensions:[\"cdkConnectedOverlayFlexibleDimensions\",\"flexibleDimensions\"],growAfterOpen:[\"cdkConnectedOverlayGrowAfterOpen\",\"growAfterOpen\"],push:[\"cdkConnectedOverlayPush\",\"push\"],positions:[\"cdkConnectedOverlayPositions\",\"positions\"],origin:[\"cdkConnectedOverlayOrigin\",\"origin\"],positionStrategy:[\"cdkConnectedOverlayPositionStrategy\",\"positionStrategy\"],width:[\"cdkConnectedOverlayWidth\",\"width\"],height:[\"cdkConnectedOverlayHeight\",\"height\"],minWidth:[\"cdkConnectedOverlayMinWidth\",\"minWidth\"],minHeight:[\"cdkConnectedOverlayMinHeight\",\"minHeight\"],backdropClass:[\"cdkConnectedOverlayBackdropClass\",\"backdropClass\"],panelClass:[\"cdkConnectedOverlayPanelClass\",\"panelClass\"],transformOriginSelector:[\"cdkConnectedOverlayTransformOriginOn\",\"transformOriginSelector\"]},outputs:{backdropClick:\"backdropClick\",positionChange:\"positionChange\",attach:\"attach\",detach:\"detach\",overlayKeydown:\"overlayKeydown\"},exportAs:[\"cdkConnectedOverlay\"],features:[Hs]}),Hw),Kw={provide:Gw,deps:[Bw],useFactory:function(e){return function(){return e.scrollStrategies.reposition()}}},Zw=((Nw=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Nw}),Nw.\\u0275inj=ve({factory:function(e){return new(e||Nw)},providers:[Bw,Kw],imports:[[f_,fw,nw],nw]}),Nw);function Qw(e){return new w((function(t){var n;try{n=e()}catch(r){return void t.error(r)}return(n?W(n):up()).subscribe(t)}))}function Xw(e,t){}var eC=function e(){_classCallCheck(this,e),this.role=\"dialog\",this.panelClass=\"\",this.hasBackdrop=!0,this.backdropClass=\"\",this.disableClose=!1,this.width=\"\",this.height=\"\",this.maxWidth=\"80vw\",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.autoFocus=!0,this.restoreFocus=!0,this.closeOnNavigation=!0},tC={dialogContainer:uv(\"dialogContainer\",[fv(\"void, exit\",hv({opacity:0,transform:\"scale(0.7)\"})),fv(\"enter\",hv({transform:\"none\"})),mv(\"* => enter\",cv(\"150ms cubic-bezier(0, 0, 0.2, 1)\",hv({transform:\"none\",opacity:1}))),mv(\"* => void, * => exit\",cv(\"75ms cubic-bezier(0.4, 0.0, 0.2, 1)\",hv({opacity:0})))])};function nC(){throw Error(\"Attempting to attach dialog content after content is already attached\")}var rC,iC,aC,oC=((rC=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this))._elementRef=e,s._focusTrapFactory=r,s._changeDetectorRef=i,s._config=o,s._elementFocusedBeforeDialogWasOpened=null,s._state=\"enter\",s._animationStateChanged=new bu,s.attachDomPortal=function(e){return s._portalOutlet.hasAttached()&&nC(),s._savePreviouslyFocusedElement(),s._portalOutlet.attachDomPortal(e)},s._ariaLabelledBy=o.ariaLabelledBy||null,s._document=a,s}return _createClass(n,[{key:\"attachComponentPortal\",value:function(e){return this._portalOutlet.hasAttached()&&nC(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachComponentPortal(e)}},{key:\"attachTemplatePortal\",value:function(e){return this._portalOutlet.hasAttached()&&nC(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachTemplatePortal(e)}},{key:\"_trapFocus\",value:function(){var e=this._elementRef.nativeElement;if(this._focusTrap||(this._focusTrap=this._focusTrapFactory.create(e)),this._config.autoFocus)this._focusTrap.focusInitialElementWhenReady();else{var t=this._document.activeElement;t===e||e.contains(t)||e.focus()}}},{key:\"_restoreFocus\",value:function(){var e=this._elementFocusedBeforeDialogWasOpened;if(this._config.restoreFocus&&e&&\"function\"==typeof e.focus){var t=this._document.activeElement,n=this._elementRef.nativeElement;t&&t!==this._document.body&&t!==n&&!n.contains(t)||e.focus()}this._focusTrap&&this._focusTrap.destroy()}},{key:\"_savePreviouslyFocusedElement\",value:function(){var e=this;this._document&&(this._elementFocusedBeforeDialogWasOpened=this._document.activeElement,this._elementRef.nativeElement.focus&&Promise.resolve().then((function(){return e._elementRef.nativeElement.focus()})))}},{key:\"_onAnimationDone\",value:function(e){\"enter\"===e.toState?this._trapFocus():\"exit\"===e.toState&&this._restoreFocus(),this._animationStateChanged.emit(e)}},{key:\"_onAnimationStart\",value:function(e){this._animationStateChanged.emit(e)}},{key:\"_startExitAnimation\",value:function(){this._state=\"exit\",this._changeDetectorRef.markForCheck()}}]),n}(cw)).\\u0275fac=function(e){return new(e||rC)(Io(Qs),Io(Kp),Io(eo),Io(Wc,8),Io(eC))},rC.\\u0275cmp=bt({type:rC,selectors:[[\"mat-dialog-container\"]],viewQuery:function(e,t){var n;1&e&&Eu(hw,!0),2&e&&Yu(n=Hu())&&(t._portalOutlet=n.first)},hostAttrs:[\"tabindex\",\"-1\",\"aria-modal\",\"true\",1,\"mat-dialog-container\"],hostVars:6,hostBindings:function(e,t){1&e&&Go(\"@dialogContainer.start\",(function(e){return t._onAnimationStart(e)}))(\"@dialogContainer.done\",(function(e){return t._onAnimationDone(e)})),2&e&&(Do(\"id\",t._id)(\"role\",t._config.role)(\"aria-labelledby\",t._config.ariaLabel?null:t._ariaLabelledBy)(\"aria-label\",t._config.ariaLabel)(\"aria-describedby\",t._config.ariaDescribedBy||null),Os(\"@dialogContainer\",t._state))},features:[Es],decls:1,vars:0,consts:[[\"cdkPortalOutlet\",\"\"]],template:function(e,t){1&e&&Yo(0,Xw,0,0,\"ng-template\",0)},directives:[hw],styles:[\".mat-dialog-container{display:block;padding:24px;border-radius:4px;box-sizing:border-box;overflow:auto;outline:0;width:100%;height:100%;min-height:inherit;max-height:inherit}.cdk-high-contrast-active .mat-dialog-container{outline:solid 1px}.mat-dialog-content{display:block;margin:0 -24px;padding:0 24px;max-height:65vh;overflow:auto;-webkit-overflow-scrolling:touch}.mat-dialog-title{margin:0 0 20px;display:block}.mat-dialog-actions{padding:8px 0;display:flex;flex-wrap:wrap;min-height:52px;align-items:center;margin-bottom:-24px}.mat-dialog-actions[align=end]{justify-content:flex-end}.mat-dialog-actions[align=center]{justify-content:center}.mat-dialog-actions .mat-button-base+.mat-button-base,.mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}\\n\"],encapsulation:2,data:{animation:[tC.dialogContainer]}}),rC),sC=0,lC=function(){function e(t,n){var r=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:\"mat-dialog-\".concat(sC++);_classCallCheck(this,e),this._overlayRef=t,this._containerInstance=n,this.id=i,this.disableClose=this._containerInstance._config.disableClose,this._afterOpened=new x,this._afterClosed=new x,this._beforeClosed=new x,this._state=0,n._id=i,n._animationStateChanged.pipe(Gd((function(e){return\"done\"===e.phaseName&&\"enter\"===e.toState})),cp(1)).subscribe((function(){r._afterOpened.next(),r._afterOpened.complete()})),n._animationStateChanged.pipe(Gd((function(e){return\"done\"===e.phaseName&&\"exit\"===e.toState})),cp(1)).subscribe((function(){clearTimeout(r._closeFallbackTimeout),r._overlayRef.dispose()})),t.detachments().subscribe((function(){r._beforeClosed.next(r._result),r._beforeClosed.complete(),r._afterClosed.next(r._result),r._afterClosed.complete(),r.componentInstance=null,r._overlayRef.dispose()})),t.keydownEvents().pipe(Gd((function(e){return 27===e.keyCode&&!r.disableClose&&!Jm(e)}))).subscribe((function(e){e.preventDefault(),r.close()}))}return _createClass(e,[{key:\"close\",value:function(e){var t=this;this._result=e,this._containerInstance._animationStateChanged.pipe(Gd((function(e){return\"start\"===e.phaseName})),cp(1)).subscribe((function(n){t._beforeClosed.next(e),t._beforeClosed.complete(),t._state=2,t._overlayRef.detachBackdrop(),t._closeFallbackTimeout=setTimeout((function(){t._overlayRef.dispose()}),n.totalTime+100)})),this._containerInstance._startExitAnimation(),this._state=1}},{key:\"afterOpened\",value:function(){return this._afterOpened.asObservable()}},{key:\"afterClosed\",value:function(){return this._afterClosed.asObservable()}},{key:\"beforeClosed\",value:function(){return this._beforeClosed.asObservable()}},{key:\"backdropClick\",value:function(){return this._overlayRef.backdropClick()}},{key:\"keydownEvents\",value:function(){return this._overlayRef.keydownEvents()}},{key:\"updatePosition\",value:function(e){var t=this._getPositionStrategy();return e&&(e.left||e.right)?e.left?t.left(e.left):t.right(e.right):t.centerHorizontally(),e&&(e.top||e.bottom)?e.top?t.top(e.top):t.bottom(e.bottom):t.centerVertically(),this._overlayRef.updatePosition(),this}},{key:\"updateSize\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\";return this._getPositionStrategy().width(e).height(t),this._overlayRef.updatePosition(),this}},{key:\"addPanelClass\",value:function(e){return this._overlayRef.addPanelClass(e),this}},{key:\"removePanelClass\",value:function(e){return this._overlayRef.removePanelClass(e),this}},{key:\"getState\",value:function(){return this._state}},{key:\"_getPositionStrategy\",value:function(){return this._overlayRef.getConfig().positionStrategy}}]),e}(),uC=new Be(\"MatDialogData\"),cC=new Be(\"mat-dialog-default-options\"),dC=new Be(\"mat-dialog-scroll-strategy\"),hC={provide:dC,deps:[Bw],useFactory:function(e){return function(){return e.scrollStrategies.block()}}},fC=((aC=function(){function e(t,n,r,i,a,o,s){var l=this;_classCallCheck(this,e),this._overlay=t,this._injector=n,this._defaultOptions=i,this._parentDialog=o,this._overlayContainer=s,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new x,this._afterOpenedAtThisLevel=new x,this._ariaHiddenElements=new Map,this.afterAllClosed=Qw((function(){return l.openDialogs.length?l._afterAllClosed:l._afterAllClosed.pipe(sv(void 0))})),this._scrollStrategy=a}return _createClass(e,[{key:\"open\",value:function(e,t){var n=this;if((t=function(e,t){return Object.assign(Object.assign({},t),e)}(t,this._defaultOptions||new eC)).id&&this.getDialogById(t.id))throw Error('Dialog with id \"'.concat(t.id,'\" exists already. The dialog id must be unique.'));var r=this._createOverlay(t),i=this._attachDialogContainer(r,t),a=this._attachDialogContent(e,i,r,t);return this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(a),a.afterClosed().subscribe((function(){return n._removeOpenDialog(a)})),this.afterOpened.next(a),a}},{key:\"closeAll\",value:function(){this._closeDialogs(this.openDialogs)}},{key:\"getDialogById\",value:function(e){return this.openDialogs.find((function(t){return t.id===e}))}},{key:\"ngOnDestroy\",value:function(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}},{key:\"_createOverlay\",value:function(e){var t=this._getOverlayConfig(e);return this._overlay.create(t)}},{key:\"_getOverlayConfig\",value:function(e){var t=new Cw({positionStrategy:this._overlay.position().global(),scrollStrategy:e.scrollStrategy||this._scrollStrategy(),panelClass:e.panelClass,hasBackdrop:e.hasBackdrop,direction:e.direction,minWidth:e.minWidth,minHeight:e.minHeight,maxWidth:e.maxWidth,maxHeight:e.maxHeight,disposeOnNavigation:e.closeOnNavigation});return e.backdropClass&&(t.backdropClass=e.backdropClass),t}},{key:\"_attachDialogContainer\",value:function(e,t){var n=vo.create({parent:t&&t.viewContainerRef&&t.viewContainerRef.injector||this._injector,providers:[{provide:eC,useValue:t}]}),r=new sw(oC,t.viewContainerRef,n,t.componentFactoryResolver);return e.attach(r).instance}},{key:\"_attachDialogContent\",value:function(e,t,n,r){var i=new lC(n,t,r.id);if(r.hasBackdrop&&n.backdropClick().subscribe((function(){i.disableClose||i.close()})),e instanceof wl)t.attachTemplatePortal(new lw(e,null,{$implicit:r.data,dialogRef:i}));else{var a=this._createInjector(r,i,t),o=t.attachComponentPortal(new sw(e,r.viewContainerRef,a));i.componentInstance=o.instance}return i.updateSize(r.width,r.height).updatePosition(r.position),i}},{key:\"_createInjector\",value:function(e,t,n){var r=e&&e.viewContainerRef&&e.viewContainerRef.injector,i=[{provide:oC,useValue:n},{provide:uC,useValue:e.data},{provide:lC,useValue:t}];return!e.direction||r&&r.get(h_,null)||i.push({provide:h_,useValue:{value:e.direction,change:Bd()}}),vo.create({parent:r||this._injector,providers:i})}},{key:\"_removeOpenDialog\",value:function(e){var t=this.openDialogs.indexOf(e);t>-1&&(this.openDialogs.splice(t,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((function(e,t){e?t.setAttribute(\"aria-hidden\",e):t.removeAttribute(\"aria-hidden\")})),this._ariaHiddenElements.clear(),this._afterAllClosed.next()))}},{key:\"_hideNonDialogContentFromAssistiveTechnology\",value:function(){var e=this._overlayContainer.getContainerElement();if(e.parentElement)for(var t=e.parentElement.children,n=t.length-1;n>-1;n--){var r=t[n];r===e||\"SCRIPT\"===r.nodeName||\"STYLE\"===r.nodeName||r.hasAttribute(\"aria-live\")||(this._ariaHiddenElements.set(r,r.getAttribute(\"aria-hidden\")),r.setAttribute(\"aria-hidden\",\"true\"))}}},{key:\"_closeDialogs\",value:function(e){for(var t=e.length;t--;)e[t].close()}},{key:\"openDialogs\",get:function(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}},{key:\"afterOpened\",get:function(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}},{key:\"_afterAllClosed\",get:function(){var e=this._parentDialog;return e?e._afterAllClosed:this._afterAllClosedAtThisLevel}}]),e}()).\\u0275fac=function(e){return new(e||aC)(et(Bw),et(vo),et(ud,8),et(cC,8),et(dC),et(aC,12),et(Ew))},aC.\\u0275prov=_e({token:aC,factory:aC.\\u0275fac}),aC),mC=((iC=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:iC}),iC.\\u0275inj=ve({factory:function(e){return new(e||iC)},providers:[fC,hC],imports:[[Zw,fw,zy],zy]}),iC);function pC(e){return function(t){var n=new _C(e),r=t.lift(n);return n.caught=r}}var _C=function(){function e(t){_classCallCheck(this,e),this.selector=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new vC(e,this.selector,this.caught))}}]),e}(),vC=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).selector=r,a.caught=i,a}return _createClass(n,[{key:\"error\",value:function(e){if(!this.isStopped){var t;try{t=this.selector(e,this.caught)}catch(a){return void _get(_getPrototypeOf(n.prototype),\"error\",this).call(this,a)}this._unsubscribeAndRecycle();var r=new Y(this,void 0,void 0);this.add(r);var i=R(this,t,void 0,void 0,r);i!==r&&this.add(i)}}}]),n}(H);function gC(e){return function(t){return t.lift(new yC(e))}}var yC=function(){function e(t){_classCallCheck(this,e),this.callback=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new bC(e,this.callback))}}]),e}(),bC=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).add(new h(r)),i}return n}(p),kC=[\"*\"];function wC(e){return Error('Unable to find icon with the name \"'.concat(e,'\"'))}function CC(e){return Error(\"The URL provided to MatIconRegistry was not trusted as a resource URL \"+\"via Angular's DomSanitizer. Attempted URL was \\\"\".concat(e,'\".'))}function MC(e){return Error(\"The literal provided to MatIconRegistry was not trusted as safe HTML by \"+\"Angular's DomSanitizer. Attempted literal was \\\"\".concat(e,'\".'))}var SC,LC=function e(t,n){_classCallCheck(this,e),this.options=n,t.nodeName?this.svgElement=t:this.url=t},TC=((SC=function(){function e(t,n,r,i){_classCallCheck(this,e),this._httpClient=t,this._sanitizer=n,this._errorHandler=i,this._svgIconConfigs=new Map,this._iconSetConfigs=new Map,this._cachedIconsByUrl=new Map,this._inProgressUrlFetches=new Map,this._fontCssClassesByAlias=new Map,this._defaultFontSetClass=\"material-icons\",this._document=r}return _createClass(e,[{key:\"addSvgIcon\",value:function(e,t,n){return this.addSvgIconInNamespace(\"\",e,t,n)}},{key:\"addSvgIconLiteral\",value:function(e,t,n){return this.addSvgIconLiteralInNamespace(\"\",e,t,n)}},{key:\"addSvgIconInNamespace\",value:function(e,t,n,r){return this._addSvgIconConfig(e,t,new LC(n,r))}},{key:\"addSvgIconLiteralInNamespace\",value:function(e,t,n,r){var i=this._sanitizer.sanitize(Kr.HTML,n);if(!i)throw MC(n);var a=this._createSvgElementForSingleIcon(i,r);return this._addSvgIconConfig(e,t,new LC(a,r))}},{key:\"addSvgIconSet\",value:function(e,t){return this.addSvgIconSetInNamespace(\"\",e,t)}},{key:\"addSvgIconSetLiteral\",value:function(e,t){return this.addSvgIconSetLiteralInNamespace(\"\",e,t)}},{key:\"addSvgIconSetInNamespace\",value:function(e,t,n){return this._addSvgIconSetConfig(e,new LC(t,n))}},{key:\"addSvgIconSetLiteralInNamespace\",value:function(e,t,n){var r=this._sanitizer.sanitize(Kr.HTML,t);if(!r)throw MC(t);var i=this._svgElementFromString(r);return this._addSvgIconSetConfig(e,new LC(i,n))}},{key:\"registerFontClassAlias\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;return this._fontCssClassesByAlias.set(e,t),this}},{key:\"classNameForFontAlias\",value:function(e){return this._fontCssClassesByAlias.get(e)||e}},{key:\"setDefaultFontSetClass\",value:function(e){return this._defaultFontSetClass=e,this}},{key:\"getDefaultFontSetClass\",value:function(){return this._defaultFontSetClass}},{key:\"getSvgIconFromUrl\",value:function(e){var t=this,n=this._sanitizer.sanitize(Kr.RESOURCE_URL,e);if(!n)throw CC(e);var r=this._cachedIconsByUrl.get(n);return r?Bd(xC(r)):this._loadSvgIconFromConfig(new LC(e)).pipe(Km((function(e){return t._cachedIconsByUrl.set(n,e)})),F((function(e){return xC(e)})))}},{key:\"getNamedSvgIcon\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\",n=DC(t,e),r=this._svgIconConfigs.get(n);if(r)return this._getSvgFromConfig(r);var i=this._iconSetConfigs.get(t);return i?this._getSvgFromIconSetConfigs(e,i):Nk(wC(n))}},{key:\"ngOnDestroy\",value:function(){this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}},{key:\"_getSvgFromConfig\",value:function(e){return e.svgElement?Bd(xC(e.svgElement)):this._loadSvgIconFromConfig(e).pipe(Km((function(t){return e.svgElement=t})),F((function(e){return xC(e)})))}},{key:\"_getSvgFromIconSetConfigs\",value:function(e,t){var n=this,r=this._extractIconWithNameFromAnySet(e,t);return r?Bd(r):Rh(t.filter((function(e){return!e.svgElement})).map((function(e){return n._loadSvgIconSetFromConfig(e).pipe(pC((function(t){var r=\"Loading icon set URL: \".concat(n._sanitizer.sanitize(Kr.RESOURCE_URL,e.url),\" failed: \").concat(t.message);return n._errorHandler?n._errorHandler.handleError(new Error(r)):console.error(r),Bd(null)})))}))).pipe(F((function(){var r=n._extractIconWithNameFromAnySet(e,t);if(!r)throw wC(e);return r})))}},{key:\"_extractIconWithNameFromAnySet\",value:function(e,t){for(var n=t.length-1;n>=0;n--){var r=t[n];if(r.svgElement){var i=this._extractSvgIconFromSet(r.svgElement,e,r.options);if(i)return i}}return null}},{key:\"_loadSvgIconFromConfig\",value:function(e){var t=this;return this._fetchUrl(e.url).pipe(F((function(n){return t._createSvgElementForSingleIcon(n,e.options)})))}},{key:\"_loadSvgIconSetFromConfig\",value:function(e){var t=this;return e.svgElement?Bd(e.svgElement):this._fetchUrl(e.url).pipe(F((function(n){return e.svgElement||(e.svgElement=t._svgElementFromString(n)),e.svgElement})))}},{key:\"_createSvgElementForSingleIcon\",value:function(e,t){var n=this._svgElementFromString(e);return this._setSvgAttributes(n,t),n}},{key:\"_extractSvgIconFromSet\",value:function(e,t,n){var r=e.querySelector('[id=\"'.concat(t,'\"]'));if(!r)return null;var i=r.cloneNode(!0);if(i.removeAttribute(\"id\"),\"svg\"===i.nodeName.toLowerCase())return this._setSvgAttributes(i,n);if(\"symbol\"===i.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(i),n);var a=this._svgElementFromString(\"\");return a.appendChild(i),this._setSvgAttributes(a,n)}},{key:\"_svgElementFromString\",value:function(e){var t=this._document.createElement(\"DIV\");t.innerHTML=e;var n=t.querySelector(\"svg\");if(!n)throw Error(\" tag not found\");return n}},{key:\"_toSvgElement\",value:function(e){for(var t=this._svgElementFromString(\"\"),n=e.attributes,r=0;r enter\",[hv({opacity:0,transform:\"translateY(-100%)\"}),cv(\"300ms cubic-bezier(0.55, 0, 0.55, 0.2)\")])])},hM=((oM=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||oM)},oM.\\u0275dir=Lt({type:oM}),oM);function fM(e){return Error(\"A hint was already declared for 'align=\\\"\".concat(e,\"\\\"'.\"))}var mM,pM,_M,vM,gM,yM,bM,kM,wM,CM=0,MM=((gM=function e(){_classCallCheck(this,e),this.align=\"start\",this.id=\"mat-hint-\".concat(CM++)}).\\u0275fac=function(e){return new(e||gM)},gM.\\u0275dir=Lt({type:gM,selectors:[[\"mat-hint\"]],hostAttrs:[1,\"mat-hint\"],hostVars:4,hostBindings:function(e,t){2&e&&(Do(\"id\",t.id)(\"align\",null),fs(\"mat-right\",\"end\"==t.align))},inputs:{align:\"align\",id:\"id\"}}),gM),SM=((vM=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||vM)},vM.\\u0275dir=Lt({type:vM,selectors:[[\"mat-label\"]]}),vM),LM=((_M=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||_M)},_M.\\u0275dir=Lt({type:_M,selectors:[[\"mat-placeholder\"]]}),_M),TM=((pM=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||pM)},pM.\\u0275dir=Lt({type:pM,selectors:[[\"\",\"matPrefix\",\"\"]]}),pM),xM=((mM=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||mM)},mM.\\u0275dir=Lt({type:mM,selectors:[[\"\",\"matSuffix\",\"\"]]}),mM),DM=0,OM=Wy((function e(t){_classCallCheck(this,e),this._elementRef=t}),\"primary\"),YM=new Be(\"MAT_FORM_FIELD_DEFAULT_OPTIONS\"),EM=((bM=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s,l,u){var c;return _classCallCheck(this,n),(c=t.call(this,e))._elementRef=e,c._changeDetectorRef=r,c._dir=a,c._defaults=o,c._platform=s,c._ngZone=l,c._outlineGapCalculationNeededImmediately=!1,c._outlineGapCalculationNeededOnStable=!1,c._destroyed=new x,c._showAlwaysAnimate=!1,c._subscriptAnimationState=\"\",c._hintLabel=\"\",c._hintLabelId=\"mat-hint-\".concat(DM++),c._labelId=\"mat-form-field-label-\".concat(DM++),c._labelOptions=i||{},c.floatLabel=c._getDefaultFloatLabelState(),c._animationsEnabled=\"NoopAnimations\"!==u,c.appearance=o&&o.appearance?o.appearance:\"legacy\",c._hideRequiredMarker=!(!o||null==o.hideRequiredMarker)&&o.hideRequiredMarker,c}return _createClass(n,[{key:\"getConnectedOverlayOrigin\",value:function(){return this._connectionContainerRef||this._elementRef}},{key:\"ngAfterContentInit\",value:function(){var e=this;this._validateControlChild();var t=this._control;t.controlType&&this._elementRef.nativeElement.classList.add(\"mat-form-field-type-\".concat(t.controlType)),t.stateChanges.pipe(sv(null)).subscribe((function(){e._validatePlaceholders(),e._syncDescribedByIds(),e._changeDetectorRef.markForCheck()})),t.ngControl&&t.ngControl.valueChanges&&t.ngControl.valueChanges.pipe(Ek(this._destroyed)).subscribe((function(){return e._changeDetectorRef.markForCheck()})),this._ngZone.runOutsideAngular((function(){e._ngZone.onStable.asObservable().pipe(Ek(e._destroyed)).subscribe((function(){e._outlineGapCalculationNeededOnStable&&e.updateOutlineGap()}))})),K(this._prefixChildren.changes,this._suffixChildren.changes).subscribe((function(){e._outlineGapCalculationNeededOnStable=!0,e._changeDetectorRef.markForCheck()})),this._hintChildren.changes.pipe(sv(null)).subscribe((function(){e._processHints(),e._changeDetectorRef.markForCheck()})),this._errorChildren.changes.pipe(sv(null)).subscribe((function(){e._syncDescribedByIds(),e._changeDetectorRef.markForCheck()})),this._dir&&this._dir.change.pipe(Ek(this._destroyed)).subscribe((function(){\"function\"==typeof requestAnimationFrame?e._ngZone.runOutsideAngular((function(){requestAnimationFrame((function(){return e.updateOutlineGap()}))})):e.updateOutlineGap()}))}},{key:\"ngAfterContentChecked\",value:function(){this._validateControlChild(),this._outlineGapCalculationNeededImmediately&&this.updateOutlineGap()}},{key:\"ngAfterViewInit\",value:function(){this._subscriptAnimationState=\"enter\",this._changeDetectorRef.detectChanges()}},{key:\"ngOnDestroy\",value:function(){this._destroyed.next(),this._destroyed.complete()}},{key:\"_shouldForward\",value:function(e){var t=this._control?this._control.ngControl:null;return t&&t[e]}},{key:\"_hasPlaceholder\",value:function(){return!!(this._control&&this._control.placeholder||this._placeholderChild)}},{key:\"_hasLabel\",value:function(){return!!this._labelChild}},{key:\"_shouldLabelFloat\",value:function(){return this._canLabelFloat&&(this._control.shouldLabelFloat||this._shouldAlwaysFloat)}},{key:\"_hideControlPlaceholder\",value:function(){return\"legacy\"===this.appearance&&!this._hasLabel()||this._hasLabel()&&!this._shouldLabelFloat()}},{key:\"_hasFloatingLabel\",value:function(){return this._hasLabel()||\"legacy\"===this.appearance&&this._hasPlaceholder()}},{key:\"_getDisplayedMessages\",value:function(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?\"error\":\"hint\"}},{key:\"_animateAndLockLabel\",value:function(){var e=this;this._hasFloatingLabel()&&this._canLabelFloat&&(this._animationsEnabled&&this._label&&(this._showAlwaysAnimate=!0,mk(this._label.nativeElement,\"transitionend\").pipe(cp(1)).subscribe((function(){e._showAlwaysAnimate=!1}))),this.floatLabel=\"always\",this._changeDetectorRef.markForCheck())}},{key:\"_validatePlaceholders\",value:function(){if(this._control.placeholder&&this._placeholderChild)throw Error(\"Placeholder attribute and child element were both specified.\")}},{key:\"_processHints\",value:function(){this._validateHints(),this._syncDescribedByIds()}},{key:\"_validateHints\",value:function(){var e,t,n=this;this._hintChildren&&this._hintChildren.forEach((function(r){if(\"start\"===r.align){if(e||n.hintLabel)throw fM(\"start\");e=r}else if(\"end\"===r.align){if(t)throw fM(\"end\");t=r}}))}},{key:\"_getDefaultFloatLabelState\",value:function(){return this._defaults&&this._defaults.floatLabel||this._labelOptions.float||\"auto\"}},{key:\"_syncDescribedByIds\",value:function(){if(this._control){var e=[];if(\"hint\"===this._getDisplayedMessages()){var t=this._hintChildren?this._hintChildren.find((function(e){return\"start\"===e.align})):null,n=this._hintChildren?this._hintChildren.find((function(e){return\"end\"===e.align})):null;t?e.push(t.id):this._hintLabel&&e.push(this._hintLabelId),n&&e.push(n.id)}else this._errorChildren&&(e=this._errorChildren.map((function(e){return e.id})));this._control.setDescribedByIds(e)}}},{key:\"_validateControlChild\",value:function(){if(!this._control)throw Error(\"mat-form-field must contain a MatFormFieldControl.\")}},{key:\"updateOutlineGap\",value:function(){var e=this._label?this._label.nativeElement:null;if(\"outline\"===this.appearance&&e&&e.children.length&&e.textContent.trim()&&this._platform.isBrowser)if(this._isAttachedToDOM()){var t=0,n=0,r=this._connectionContainerRef.nativeElement,i=r.querySelectorAll(\".mat-form-field-outline-start\"),a=r.querySelectorAll(\".mat-form-field-outline-gap\");if(this._label&&this._label.nativeElement.children.length){var o=r.getBoundingClientRect();if(0===o.width&&0===o.height)return this._outlineGapCalculationNeededOnStable=!0,void(this._outlineGapCalculationNeededImmediately=!1);var s,l=this._getStartEnd(o),u=this._getStartEnd(e.children[0].getBoundingClientRect()),c=0,d=_createForOfIteratorHelper(e.children);try{for(d.s();!(s=d.n()).done;)c+=s.value.offsetWidth}catch(m){d.e(m)}finally{d.f()}t=u-l-5,n=c>0?.75*c+10:0}for(var h=0;h-1)throw Error('Input type \"'.concat(this._type,\"\\\" isn't supported by matInput.\"))}},{key:\"_isNeverEmpty\",value:function(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}},{key:\"_isBadInput\",value:function(){var e=this._elementRef.nativeElement.validity;return e&&e.badInput}},{key:\"setDescribedByIds\",value:function(e){this._ariaDescribedby=e.join(\" \")}},{key:\"onContainerClick\",value:function(){this.focused||this.focus()}},{key:\"disabled\",get:function(){return this.ngControl&&null!==this.ngControl.disabled?this.ngControl.disabled:this._disabled},set:function(e){this._disabled=mp(e),this.focused&&(this.focused=!1,this.stateChanges.next())}},{key:\"id\",get:function(){return this._id},set:function(e){this._id=e||this._uid}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=mp(e)}},{key:\"type\",get:function(){return this._type},set:function(e){this._type=e||\"text\",this._validateType(),!this._isTextarea()&&Lp().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}},{key:\"value\",get:function(){return this._inputValueAccessor.value},set:function(e){e!==this.value&&(this._inputValueAccessor.value=e,this.stateChanges.next())}},{key:\"readonly\",get:function(){return this._readonly},set:function(e){this._readonly=mp(e)}},{key:\"empty\",get:function(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}},{key:\"shouldLabelFloat\",get:function(){if(this._isNativeSelect){var e=this._elementRef.nativeElement,t=e.options[0];return this.focused||e.multiple||!this.empty||!!(e.selectedIndex>-1&&t&&t.label)}return this.focused||!this.empty}}]),n}(RM)).\\u0275fac=function(e){return new(e||wM)(Io(Qs),Io(Cp),Io(tf,10),Io(pm,8),Io(Dm,8),Io(eb),Io(AM,10),Io(VC),Io(cc))},wM.\\u0275dir=Lt({type:wM,selectors:[[\"input\",\"matInput\",\"\"],[\"textarea\",\"matInput\",\"\"],[\"select\",\"matNativeControl\",\"\"],[\"input\",\"matNativeControl\",\"\"],[\"textarea\",\"matNativeControl\",\"\"]],hostAttrs:[1,\"mat-input-element\",\"mat-form-field-autofill-control\"],hostVars:10,hostBindings:function(e,t){1&e&&qo(\"blur\",(function(){return t._focusChanged(!1)}))(\"focus\",(function(){return t._focusChanged(!0)}))(\"input\",(function(){return t._onInput()})),2&e&&(Ds(\"disabled\",t.disabled)(\"required\",t.required),Do(\"id\",t.id)(\"placeholder\",t.placeholder)(\"readonly\",t.readonly&&!t._isNativeSelect||null)(\"aria-describedby\",t._ariaDescribedby||null)(\"aria-invalid\",t.errorState)(\"aria-required\",t.required.toString()),fs(\"mat-input-server\",t._isServer))},inputs:{id:\"id\",disabled:\"disabled\",required:\"required\",type:\"type\",value:\"value\",readonly:\"readonly\",placeholder:\"placeholder\",errorStateMatcher:\"errorStateMatcher\"},exportAs:[\"matInput\"],features:[$s([{provide:hM,useExisting:wM}]),Es,Hs]}),wM),FM=((kM=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:kM}),kM.\\u0275inj=ve({factory:function(e){return new(e||kM)},providers:[eb],imports:[[WC,IM],WC,IM]}),kM);function NM(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:np,r=(t=e)instanceof Date&&!isNaN(+t)?+e-n.now():Math.abs(e);return function(e){return e.lift(new zM(r,n))}}var zM=function(){function e(t,n){_classCallCheck(this,e),this.delay=t,this.scheduler=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new VM(e,this.delay,this.scheduler))}}]),e}(),VM=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).delay=r,a.scheduler=i,a.queue=[],a.active=!1,a.errored=!1,a}return _createClass(n,[{key:\"_schedule\",value:function(e){this.active=!0,this.destination.add(e.schedule(n.dispatch,this.delay,{source:this,destination:this.destination,scheduler:e}))}},{key:\"scheduleNotification\",value:function(e){if(!0!==this.errored){var t=this.scheduler,n=new WM(t.now()+this.delay,e);this.queue.push(n),!1===this.active&&this._schedule(t)}}},{key:\"_next\",value:function(e){this.scheduleNotification(Vk.createNext(e))}},{key:\"_error\",value:function(e){this.errored=!0,this.queue=[],this.destination.error(e),this.unsubscribe()}},{key:\"_complete\",value:function(){this.scheduleNotification(Vk.createComplete()),this.unsubscribe()}}],[{key:\"dispatch\",value:function(e){for(var t=e.source,n=t.queue,r=e.scheduler,i=e.destination;n.length>0&&n[0].time-r.now()<=0;)n.shift().notification.observe(i);if(n.length>0){var a=Math.max(0,n[0].time-r.now());this.schedule(e,a)}else this.unsubscribe(),t.active=!1}}]),n}(p),WM=function e(t,n){_classCallCheck(this,e),this.time=t,this.notification=n},UM=[\"mat-menu-item\",\"\"],BM=[\"*\"];function qM(e,t){if(1&e){var n=Wo();Ho(0,\"div\",0),qo(\"keydown\",(function(e){return nn(n),Zo()._handleKeydown(e)}))(\"click\",(function(){return nn(n),Zo().closed.emit(\"click\")}))(\"@transformMenu.start\",(function(e){return nn(n),Zo()._onAnimationStart(e)}))(\"@transformMenu.done\",(function(e){return nn(n),Zo()._onAnimationDone(e)})),Ho(1,\"div\",1),ns(2),Fo(),Fo()}if(2&e){var r=Zo();jo(\"id\",r.panelId)(\"ngClass\",r._classList)(\"@transformMenu\",r._panelAnimationState),Do(\"aria-label\",r.ariaLabel||null)(\"aria-labelledby\",r.ariaLabelledby||null)(\"aria-describedby\",r.ariaDescribedby||null)}}var GM,$M,JM,KM,ZM,QM,XM,eS,tS,nS={transformMenu:uv(\"transformMenu\",[fv(\"void\",hv({opacity:0,transform:\"scale(0.8)\"})),mv(\"void => enter\",function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return{type:3,steps:e,options:t}}([pv(\".mat-menu-content, .mat-mdc-menu-content\",cv(\"100ms linear\",hv({opacity:1}))),cv(\"120ms cubic-bezier(0, 0, 0.2, 1)\",hv({transform:\"scale(1)\"}))])),mv(\"* => void\",cv(\"100ms 25ms linear\",hv({opacity:0})))]),fadeInItems:uv(\"fadeInItems\",[fv(\"showing\",hv({opacity:1})),mv(\"void => *\",[hv({opacity:0}),cv(\"400ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)\")])])},rS=((GM=function(){function e(t,n,r,i,a,o,s){_classCallCheck(this,e),this._template=t,this._componentFactoryResolver=n,this._appRef=r,this._injector=i,this._viewContainerRef=a,this._document=o,this._changeDetectorRef=s,this._attached=new x}return _createClass(e,[{key:\"attach\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this._portal||(this._portal=new lw(this._template,this._viewContainerRef)),this.detach(),this._outlet||(this._outlet=new dw(this._document.createElement(\"div\"),this._componentFactoryResolver,this._appRef,this._injector));var t=this._template.elementRef.nativeElement;t.parentNode.insertBefore(this._outlet.outletElement,t),this._changeDetectorRef&&this._changeDetectorRef.markForCheck(),this._portal.attach(this._outlet,e),this._attached.next()}},{key:\"detach\",value:function(){this._portal.isAttached&&this._portal.detach()}},{key:\"ngOnDestroy\",value:function(){this._outlet&&this._outlet.dispose()}}]),e}()).\\u0275fac=function(e){return new(e||GM)(Io(wl),Io(Zs),Io(Oc),Io(vo),Io(Ml),Io(Wc),Io(eo))},GM.\\u0275dir=Lt({type:GM,selectors:[[\"ng-template\",\"matMenuContent\",\"\"]]}),GM),iS=new Be(\"MAT_MENU_PANEL\"),aS=Uy(Vy((function e(){_classCallCheck(this,e)}))),oS=(($M=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this))._elementRef=e,o._focusMonitor=i,o._parentMenu=a,o.role=\"menuitem\",o._hovered=new x,o._focused=new x,o._highlighted=!1,o._triggersSubmenu=!1,i&&i.monitor(o._elementRef,!1),a&&a.addItem&&a.addItem(_assertThisInitialized(o)),o._document=r,o}return _createClass(n,[{key:\"focus\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"program\",t=arguments.length>1?arguments[1]:void 0;this._focusMonitor?this._focusMonitor.focusVia(this._getHostElement(),e,t):this._getHostElement().focus(t),this._focused.next(this)}},{key:\"ngOnDestroy\",value:function(){this._focusMonitor&&this._focusMonitor.stopMonitoring(this._elementRef),this._parentMenu&&this._parentMenu.removeItem&&this._parentMenu.removeItem(this),this._hovered.complete(),this._focused.complete()}},{key:\"_getTabIndex\",value:function(){return this.disabled?\"-1\":\"0\"}},{key:\"_getHostElement\",value:function(){return this._elementRef.nativeElement}},{key:\"_checkDisabled\",value:function(e){this.disabled&&(e.preventDefault(),e.stopPropagation())}},{key:\"_handleMouseEnter\",value:function(){this._hovered.next(this)}},{key:\"getLabel\",value:function(){var e=this._elementRef.nativeElement,t=this._document?this._document.TEXT_NODE:3,n=\"\";if(e.childNodes)for(var r=e.childNodes.length,i=0;i0&&void 0!==arguments[0]?arguments[0]:\"program\";this.lazyContent?this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe((function(){return e._focusFirstItem(t)})):this._focusFirstItem(t)}},{key:\"_focusFirstItem\",value:function(e){var t=this._keyManager;if(t.setFocusOrigin(e).setFirstItemActive(),!t.activeItem&&this._directDescendantItems.length)for(var n=this._directDescendantItems.first._getHostElement().parentElement;n;){if(\"menu\"===n.getAttribute(\"role\")){n.focus();break}n=n.parentElement}}},{key:\"resetActiveItem\",value:function(){this._keyManager.setActiveItem(-1)}},{key:\"setElevation\",value:function(e){var t=\"mat-elevation-z\".concat(Math.min(4+e,24)),n=Object.keys(this._classList).find((function(e){return e.startsWith(\"mat-elevation-z\")}));n&&n!==this._previousElevation||(this._previousElevation&&(this._classList[this._previousElevation]=!1),this._classList[t]=!0,this._previousElevation=t)}},{key:\"setPositionClasses\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.xPosition,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.yPosition,n=this._classList;n[\"mat-menu-before\"]=\"before\"===e,n[\"mat-menu-after\"]=\"after\"===e,n[\"mat-menu-above\"]=\"above\"===t,n[\"mat-menu-below\"]=\"below\"===t}},{key:\"_startAnimation\",value:function(){this._panelAnimationState=\"enter\"}},{key:\"_resetAnimation\",value:function(){this._panelAnimationState=\"void\"}},{key:\"_onAnimationDone\",value:function(e){this._animationDone.next(e),this._isAnimating=!1}},{key:\"_onAnimationStart\",value:function(e){this._isAnimating=!0,\"enter\"===e.toState&&0===this._keyManager.activeItemIndex&&(e.element.scrollTop=0)}},{key:\"_updateDirectDescendants\",value:function(){var e=this;this._allItems.changes.pipe(sv(this._allItems)).subscribe((function(t){e._directDescendantItems.reset(t.filter((function(t){return t._parentMenu===e}))),e._directDescendantItems.notifyOnChanges()}))}},{key:\"xPosition\",get:function(){return this._xPosition},set:function(e){\"before\"!==e&&\"after\"!==e&&function(){throw Error('xPosition value must be either \\'before\\' or after\\'.\\n Example: ')}(),this._xPosition=e,this.setPositionClasses()}},{key:\"yPosition\",get:function(){return this._yPosition},set:function(e){\"above\"!==e&&\"below\"!==e&&function(){throw Error('yPosition value must be either \\'above\\' or below\\'.\\n Example: ')}(),this._yPosition=e,this.setPositionClasses()}},{key:\"overlapTrigger\",get:function(){return this._overlapTrigger},set:function(e){this._overlapTrigger=mp(e)}},{key:\"hasBackdrop\",get:function(){return this._hasBackdrop},set:function(e){this._hasBackdrop=mp(e)}},{key:\"panelClass\",set:function(e){var t=this,n=this._previousPanelClass;n&&n.length&&n.split(\" \").forEach((function(e){t._classList[e]=!1})),this._previousPanelClass=e,e&&e.length&&(e.split(\" \").forEach((function(e){t._classList[e]=!0})),this._elementRef.nativeElement.className=\"\")}},{key:\"classList\",get:function(){return this.panelClass},set:function(e){this.panelClass=e}}]),e}()).\\u0275fac=function(e){return new(e||KM)(Io(Qs),Io(cc),Io(sS))},KM.\\u0275dir=Lt({type:KM,contentQueries:function(e,t,n){var r;1&e&&(Pu(n,rS,!0),Pu(n,oS,!0),Pu(n,oS,!1)),2&e&&(Yu(r=Hu())&&(t.lazyContent=r.first),Yu(r=Hu())&&(t._allItems=r),Yu(r=Hu())&&(t.items=r))},viewQuery:function(e,t){var n;1&e&&Iu(wl,!0),2&e&&Yu(n=Hu())&&(t.templateRef=n.first)},inputs:{backdropClass:\"backdropClass\",xPosition:\"xPosition\",yPosition:\"yPosition\",overlapTrigger:\"overlapTrigger\",hasBackdrop:\"hasBackdrop\",panelClass:[\"class\",\"panelClass\"],classList:\"classList\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],ariaDescribedby:[\"aria-describedby\",\"ariaDescribedby\"]},outputs:{closed:\"closed\",close:\"close\"}}),KM),cS=((JM=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return n}(uS)).\\u0275fac=function(e){return dS(e||JM)},JM.\\u0275dir=Lt({type:JM,features:[Es]}),JM),dS=cr(cS),hS=((ZM=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){return _classCallCheck(this,n),t.call(this,e,r,i)}return n}(cS)).\\u0275fac=function(e){return new(e||ZM)(Io(Qs),Io(cc),Io(sS))},ZM.\\u0275cmp=bt({type:ZM,selectors:[[\"mat-menu\"]],exportAs:[\"matMenu\"],features:[$s([{provide:iS,useExisting:cS},{provide:cS,useExisting:ZM}]),Es],ngContentSelectors:BM,decls:1,vars:0,consts:[[\"tabindex\",\"-1\",\"role\",\"menu\",1,\"mat-menu-panel\",3,\"id\",\"ngClass\",\"keydown\",\"click\"],[1,\"mat-menu-content\"]],template:function(e,t){1&e&&(Xo(),Yo(0,qM,3,6,\"ng-template\"))},directives:[kd],styles:['.mat-menu-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;max-height:calc(100vh - 48px);border-radius:4px;outline:0;min-height:64px}.mat-menu-panel.ng-animating{pointer-events:none}.cdk-high-contrast-active .mat-menu-panel{outline:solid 1px}.mat-menu-content:not(:empty){padding-top:8px;padding-bottom:8px}.mat-menu-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative}.mat-menu-item::-moz-focus-inner{border:0}.mat-menu-item[disabled]{cursor:default}[dir=rtl] .mat-menu-item{text-align:right}.mat-menu-item .mat-icon{margin-right:16px;vertical-align:middle}.mat-menu-item .mat-icon svg{vertical-align:top}[dir=rtl] .mat-menu-item .mat-icon{margin-left:16px;margin-right:0}.mat-menu-item[disabled]{pointer-events:none}.cdk-high-contrast-active .mat-menu-item.cdk-program-focused,.cdk-high-contrast-active .mat-menu-item.cdk-keyboard-focused,.cdk-high-contrast-active .mat-menu-item-highlighted{outline:dotted 1px}.mat-menu-item-submenu-trigger{padding-right:32px}.mat-menu-item-submenu-trigger::after{width:0;height:0;border-style:solid;border-width:5px 0 5px 5px;border-color:transparent transparent transparent currentColor;content:\"\";display:inline-block;position:absolute;top:50%;right:16px;transform:translateY(-50%)}[dir=rtl] .mat-menu-item-submenu-trigger{padding-right:16px;padding-left:32px}[dir=rtl] .mat-menu-item-submenu-trigger::after{right:auto;left:16px;transform:rotateY(180deg) translateY(-50%)}button.mat-menu-item{width:100%}.mat-menu-item .mat-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}\\n'],encapsulation:2,data:{animation:[nS.transformMenu,nS.fadeInItems]},changeDetection:0}),ZM),fS=new Be(\"mat-menu-scroll-strategy\"),mS={provide:fS,deps:[Bw],useFactory:function(e){return function(){return e.scrollStrategies.reposition()}}},pS=Tp({passive:!0}),_S=((eS=function(){function e(t,n,r,i,a,o,s,l){var u=this;_classCallCheck(this,e),this._overlay=t,this._element=n,this._viewContainerRef=r,this._parentMenu=a,this._menuItemInstance=o,this._dir=s,this._focusMonitor=l,this._overlayRef=null,this._menuOpen=!1,this._closingActionsSubscription=h.EMPTY,this._hoverSubscription=h.EMPTY,this._menuCloseSubscription=h.EMPTY,this._handleTouchStart=function(){return u._openedBy=\"touch\"},this._openedBy=null,this.restoreFocus=!0,this.menuOpened=new bu,this.onMenuOpen=this.menuOpened,this.menuClosed=new bu,this.onMenuClose=this.menuClosed,n.nativeElement.addEventListener(\"touchstart\",this._handleTouchStart,pS),o&&(o._triggersSubmenu=this.triggersSubmenu()),this._scrollStrategy=i}return _createClass(e,[{key:\"ngAfterContentInit\",value:function(){this._checkMenu(),this._handleHover()}},{key:\"ngOnDestroy\",value:function(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null),this._element.nativeElement.removeEventListener(\"touchstart\",this._handleTouchStart,pS),this._menuCloseSubscription.unsubscribe(),this._closingActionsSubscription.unsubscribe(),this._hoverSubscription.unsubscribe()}},{key:\"triggersSubmenu\",value:function(){return!(!this._menuItemInstance||!this._parentMenu)}},{key:\"toggleMenu\",value:function(){return this._menuOpen?this.closeMenu():this.openMenu()}},{key:\"openMenu\",value:function(){var e=this;if(!this._menuOpen){this._checkMenu();var t=this._createOverlay(),n=t.getConfig();this._setPosition(n.positionStrategy),n.hasBackdrop=null==this.menu.hasBackdrop?!this.triggersSubmenu():this.menu.hasBackdrop,t.attach(this._getPortal()),this.menu.lazyContent&&this.menu.lazyContent.attach(this.menuData),this._closingActionsSubscription=this._menuClosingActions().subscribe((function(){return e.closeMenu()})),this._initMenu(),this.menu instanceof cS&&this.menu._startAnimation()}}},{key:\"closeMenu\",value:function(){this.menu.close.emit()}},{key:\"focus\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"program\",t=arguments.length>1?arguments[1]:void 0;this._focusMonitor?this._focusMonitor.focusVia(this._element,e,t):this._element.nativeElement.focus(t)}},{key:\"_destroyMenu\",value:function(){var e=this;if(this._overlayRef&&this.menuOpen){var t=this.menu;this._closingActionsSubscription.unsubscribe(),this._overlayRef.detach(),this._restoreFocus(),t instanceof cS?(t._resetAnimation(),t.lazyContent?t._animationDone.pipe(Gd((function(e){return\"void\"===e.toState})),cp(1),Ek(t.lazyContent._attached)).subscribe({next:function(){return t.lazyContent.detach()},complete:function(){return e._setIsMenuOpen(!1)}}):this._setIsMenuOpen(!1)):(this._setIsMenuOpen(!1),t.lazyContent&&t.lazyContent.detach())}}},{key:\"_initMenu\",value:function(){this.menu.parentMenu=this.triggersSubmenu()?this._parentMenu:void 0,this.menu.direction=this.dir,this._setMenuElevation(),this._setIsMenuOpen(!0),this.menu.focusFirstItem(this._openedBy||\"program\")}},{key:\"_setMenuElevation\",value:function(){if(this.menu.setElevation){for(var e=0,t=this.menu.parentMenu;t;)e++,t=t.parentMenu;this.menu.setElevation(e)}}},{key:\"_restoreFocus\",value:function(){this.restoreFocus&&(this._openedBy?this.triggersSubmenu()||this.focus(this._openedBy):this.focus()),this._openedBy=null}},{key:\"_setIsMenuOpen\",value:function(e){this._menuOpen=e,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this.triggersSubmenu()&&(this._menuItemInstance._highlighted=e)}},{key:\"_checkMenu\",value:function(){this.menu||function(){throw Error('matMenuTriggerFor: must pass in an mat-menu instance.\\n\\n Example:\\n \\n ')}()}},{key:\"_createOverlay\",value:function(){if(!this._overlayRef){var e=this._getOverlayConfig();this._subscribeToPositions(e.positionStrategy),this._overlayRef=this._overlay.create(e),this._overlayRef.keydownEvents().subscribe()}return this._overlayRef}},{key:\"_getOverlayConfig\",value:function(){return new Cw({positionStrategy:this._overlay.position().flexibleConnectedTo(this._element).withLockedPosition().withTransformOriginOn(\".mat-menu-panel, .mat-mdc-menu-panel\"),backdropClass:this.menu.backdropClass||\"cdk-overlay-transparent-backdrop\",scrollStrategy:this._scrollStrategy(),direction:this._dir})}},{key:\"_subscribeToPositions\",value:function(e){var t=this;this.menu.setPositionClasses&&e.positionChanges.subscribe((function(e){t.menu.setPositionClasses(\"start\"===e.connectionPair.overlayX?\"after\":\"before\",\"top\"===e.connectionPair.overlayY?\"below\":\"above\")}))}},{key:\"_setPosition\",value:function(e){var t=_slicedToArray(\"before\"===this.menu.xPosition?[\"end\",\"start\"]:[\"start\",\"end\"],2),n=t[0],r=t[1],i=_slicedToArray(\"above\"===this.menu.yPosition?[\"bottom\",\"top\"]:[\"top\",\"bottom\"],2),a=i[0],o=i[1],s=a,l=o,u=n,c=r,d=0;this.triggersSubmenu()?(c=n=\"before\"===this.menu.xPosition?\"start\":\"end\",r=u=\"end\"===n?\"start\":\"end\",d=\"bottom\"===a?8:-8):this.menu.overlapTrigger||(s=\"top\"===a?\"bottom\":\"top\",l=\"top\"===o?\"bottom\":\"top\"),e.withPositions([{originX:n,originY:s,overlayX:u,overlayY:a,offsetY:d},{originX:r,originY:s,overlayX:c,overlayY:a,offsetY:d},{originX:n,originY:l,overlayX:u,overlayY:o,offsetY:-d},{originX:r,originY:l,overlayX:c,overlayY:o,offsetY:-d}])}},{key:\"_menuClosingActions\",value:function(){var e=this,t=this._overlayRef.backdropClick(),n=this._overlayRef.detachments();return K(t,this._parentMenu?this._parentMenu.closed:Bd(),this._parentMenu?this._parentMenu._hovered().pipe(Gd((function(t){return t!==e._menuItemInstance})),Gd((function(){return e._menuOpen}))):Bd(),n)}},{key:\"_handleMousedown\",value:function(e){n_(e)||(this._openedBy=0===e.button?\"mouse\":null,this.triggersSubmenu()&&e.preventDefault())}},{key:\"_handleKeydown\",value:function(e){var t=e.keyCode;this.triggersSubmenu()&&(39===t&&\"ltr\"===this.dir||37===t&&\"rtl\"===this.dir)&&this.openMenu()}},{key:\"_handleClick\",value:function(e){this.triggersSubmenu()?(e.stopPropagation(),this.openMenu()):this.toggleMenu()}},{key:\"_handleHover\",value:function(){var e=this;this.triggersSubmenu()&&(this._hoverSubscription=this._parentMenu._hovered().pipe(Gd((function(t){return t===e._menuItemInstance&&!t.disabled})),NM(0,wk)).subscribe((function(){e._openedBy=\"mouse\",e.menu instanceof cS&&e.menu._isAnimating?e.menu._animationDone.pipe(cp(1),NM(0,wk),Ek(e._parentMenu._hovered())).subscribe((function(){return e.openMenu()})):e.openMenu()})))}},{key:\"_getPortal\",value:function(){return this._portal&&this._portal.templateRef===this.menu.templateRef||(this._portal=new lw(this.menu.templateRef,this._viewContainerRef)),this._portal}},{key:\"_deprecatedMatMenuTriggerFor\",get:function(){return this.menu},set:function(e){this.menu=e}},{key:\"menu\",get:function(){return this._menu},set:function(e){var t=this;e!==this._menu&&(this._menu=e,this._menuCloseSubscription.unsubscribe(),e&&(this._menuCloseSubscription=e.close.asObservable().subscribe((function(e){t._destroyMenu(),\"click\"!==e&&\"tab\"!==e||!t._parentMenu||t._parentMenu.closed.emit(e)}))))}},{key:\"menuOpen\",get:function(){return this._menuOpen}},{key:\"dir\",get:function(){return this._dir&&\"rtl\"===this._dir.value?\"rtl\":\"ltr\"}}]),e}()).\\u0275fac=function(e){return new(e||eS)(Io(Bw),Io(Qs),Io(Ml),Io(fS),Io(cS,8),Io(oS,10),Io(h_,8),Io(t_))},eS.\\u0275dir=Lt({type:eS,selectors:[[\"\",\"mat-menu-trigger-for\",\"\"],[\"\",\"matMenuTriggerFor\",\"\"]],hostAttrs:[\"aria-haspopup\",\"true\",1,\"mat-menu-trigger\"],hostVars:2,hostBindings:function(e,t){1&e&&qo(\"mousedown\",(function(e){return t._handleMousedown(e)}))(\"keydown\",(function(e){return t._handleKeydown(e)}))(\"click\",(function(e){return t._handleClick(e)})),2&e&&Do(\"aria-expanded\",t.menuOpen||null)(\"aria-controls\",t.menuOpen?t.menu.panelId:null)},inputs:{restoreFocus:[\"matMenuTriggerRestoreFocus\",\"restoreFocus\"],_deprecatedMatMenuTriggerFor:[\"mat-menu-trigger-for\",\"_deprecatedMatMenuTriggerFor\"],menu:[\"matMenuTriggerFor\",\"menu\"],menuData:[\"matMenuTriggerData\",\"menuData\"]},outputs:{menuOpened:\"menuOpened\",onMenuOpen:\"onMenuOpen\",menuClosed:\"menuClosed\",onMenuClose:\"onMenuClose\"},exportAs:[\"matMenuTrigger\"]}),eS),vS=((XM=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:XM}),XM.\\u0275inj=ve({factory:function(e){return new(e||XM)},providers:[mS],imports:[zy]}),XM),gS=((QM=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:QM}),QM.\\u0275inj=ve({factory:function(e){return new(e||QM)},providers:[mS],imports:[[Nd,zy,lb,Zw,vS],vS]}),QM),yS=[\"primaryValueBar\"],bS=Wy((function e(t){_classCallCheck(this,e),this._elementRef=t}),\"primary\"),kS=new Be(\"mat-progress-bar-location\",{providedIn:\"root\",factory:function(){var e=tt(Wc),t=e?e.location:null;return{getPathname:function(){return t?t.pathname+t.search:\"\"}}}}),wS=0,CS=((tS=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;_classCallCheck(this,n),(o=t.call(this,e))._elementRef=e,o._ngZone=r,o._animationMode=i,o._isNoopAnimation=!1,o._value=0,o._bufferValue=0,o.animationEnd=new bu,o._animationEndSubscription=h.EMPTY,o.mode=\"determinate\",o.progressbarId=\"mat-progress-bar-\".concat(wS++);var s=a?a.getPathname().split(\"#\")[0]:\"\";return o._rectangleFillValue=\"url('\".concat(s,\"#\").concat(o.progressbarId,\"')\"),o._isNoopAnimation=\"NoopAnimations\"===i,o}return _createClass(n,[{key:\"_primaryTransform\",value:function(){return{transform:\"scaleX(\".concat(this.value/100,\")\")}}},{key:\"_bufferTransform\",value:function(){return\"buffer\"===this.mode?{transform:\"scaleX(\".concat(this.bufferValue/100,\")\")}:null}},{key:\"ngAfterViewInit\",value:function(){var e=this;this._ngZone.runOutsideAngular((function(){var t=e._primaryValueBar.nativeElement;e._animationEndSubscription=mk(t,\"transitionend\").pipe(Gd((function(e){return e.target===t}))).subscribe((function(){\"determinate\"!==e.mode&&\"buffer\"!==e.mode||e._ngZone.run((function(){return e.animationEnd.next({value:e.value})}))}))}))}},{key:\"ngOnDestroy\",value:function(){this._animationEndSubscription.unsubscribe()}},{key:\"value\",get:function(){return this._value},set:function(e){this._value=MS(pp(e)||0)}},{key:\"bufferValue\",get:function(){return this._bufferValue},set:function(e){this._bufferValue=MS(e||0)}}]),n}(bS)).\\u0275fac=function(e){return new(e||tS)(Io(Qs),Io(cc),Io(Yy,8),Io(kS,8))},tS.\\u0275cmp=bt({type:tS,selectors:[[\"mat-progress-bar\"]],viewQuery:function(e,t){var n;1&e&&Iu(yS,!0),2&e&&Yu(n=Hu())&&(t._primaryValueBar=n.first)},hostAttrs:[\"role\",\"progressbar\",\"aria-valuemin\",\"0\",\"aria-valuemax\",\"100\",1,\"mat-progress-bar\"],hostVars:4,hostBindings:function(e,t){2&e&&(Do(\"aria-valuenow\",\"indeterminate\"===t.mode||\"query\"===t.mode?null:t.value)(\"mode\",t.mode),fs(\"_mat-animation-noopable\",t._isNoopAnimation))},inputs:{color:\"color\",mode:\"mode\",value:\"value\",bufferValue:\"bufferValue\"},outputs:{animationEnd:\"animationEnd\"},exportAs:[\"matProgressBar\"],features:[Es],decls:9,vars:4,consts:[[\"width\",\"100%\",\"height\",\"4\",\"focusable\",\"false\",1,\"mat-progress-bar-background\",\"mat-progress-bar-element\"],[\"x\",\"4\",\"y\",\"0\",\"width\",\"8\",\"height\",\"4\",\"patternUnits\",\"userSpaceOnUse\",3,\"id\"],[\"cx\",\"2\",\"cy\",\"2\",\"r\",\"2\"],[\"width\",\"100%\",\"height\",\"100%\"],[1,\"mat-progress-bar-buffer\",\"mat-progress-bar-element\",3,\"ngStyle\"],[1,\"mat-progress-bar-primary\",\"mat-progress-bar-fill\",\"mat-progress-bar-element\",3,\"ngStyle\"],[\"primaryValueBar\",\"\"],[1,\"mat-progress-bar-secondary\",\"mat-progress-bar-fill\",\"mat-progress-bar-element\"]],template:function(e,t){1&e&&(Sn(),Ho(0,\"svg\",0),Ho(1,\"defs\"),Ho(2,\"pattern\",1),No(3,\"circle\",2),Fo(),Fo(),No(4,\"rect\",3),Fo(),Ln(),No(5,\"div\",4),No(6,\"div\",5,6),No(8,\"div\",7)),2&e&&(bi(2),jo(\"id\",t.progressbarId),bi(2),Do(\"fill\",t._rectangleFillValue),bi(1),jo(\"ngStyle\",t._bufferTransform()),bi(1),jo(\"ngStyle\",t._primaryTransform()))},directives:[Hd],styles:['.mat-progress-bar{display:block;height:4px;overflow:hidden;position:relative;transition:opacity 250ms linear;width:100%}._mat-animation-noopable.mat-progress-bar{transition:none;animation:none}.mat-progress-bar .mat-progress-bar-element,.mat-progress-bar .mat-progress-bar-fill::after{height:100%;position:absolute;width:100%}.mat-progress-bar .mat-progress-bar-background{width:calc(100% + 10px)}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-background{display:none}.mat-progress-bar .mat-progress-bar-buffer{transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-buffer{border-top:solid 5px;opacity:.5}.mat-progress-bar .mat-progress-bar-secondary{display:none}.mat-progress-bar .mat-progress-bar-fill{animation:none;transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-fill{border-top:solid 4px}.mat-progress-bar .mat-progress-bar-fill::after{animation:none;content:\"\";display:inline-block;left:0}.mat-progress-bar[dir=rtl],[dir=rtl] .mat-progress-bar{transform:rotateY(180deg)}.mat-progress-bar[mode=query]{transform:rotateZ(180deg)}.mat-progress-bar[mode=query][dir=rtl],[dir=rtl] .mat-progress-bar[mode=query]{transform:rotateZ(180deg) rotateY(180deg)}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-fill,.mat-progress-bar[mode=query] .mat-progress-bar-fill{transition:none}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary,.mat-progress-bar[mode=query] .mat-progress-bar-primary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-translate 2000ms infinite linear;left:-145.166611%}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-primary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary,.mat-progress-bar[mode=query] .mat-progress-bar-secondary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-translate 2000ms infinite linear;left:-54.888891%;display:block}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-secondary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=buffer] .mat-progress-bar-background{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-background-scroll 250ms infinite linear;display:block}.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-buffer,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-background{animation:none;transition-duration:1ms}@keyframes mat-progress-bar-primary-indeterminate-translate{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(83.67142%)}100%{transform:translateX(200.611057%)}}@keyframes mat-progress-bar-primary-indeterminate-scale{0%{transform:scaleX(0.08)}36.65%{animation-timing-function:cubic-bezier(0.334731, 0.12482, 0.785844, 1);transform:scaleX(0.08)}69.15%{animation-timing-function:cubic-bezier(0.06, 0.11, 0.6, 1);transform:scaleX(0.661479)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-secondary-indeterminate-translate{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(37.651913%)}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(84.386165%)}100%{transform:translateX(160.277782%)}}@keyframes mat-progress-bar-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-background-scroll{to{transform:translateX(-8px)}}\\n'],encapsulation:2,changeDetection:0}),tS);function MS(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:100;return Math.max(t,Math.min(n,e))}var SS,LS=((SS=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:SS}),SS.\\u0275inj=ve({factory:function(e){return new(e||SS)},imports:[[Nd,zy],zy]}),SS),TS=[\"trigger\"],xS=[\"panel\"];function DS(e,t){if(1&e&&(Ho(0,\"span\",8),Ls(1),Fo()),2&e){var n=Zo();bi(1),Ts(n.placeholder||\"\\xa0\")}}function OS(e,t){if(1&e&&(Ho(0,\"span\"),Ls(1),Fo()),2&e){var n=Zo(2);bi(1),Ts(n.triggerValue||\"\\xa0\")}}function YS(e,t){1&e&&ns(0,0,[\"*ngSwitchCase\",\"true\"])}function ES(e,t){1&e&&(Ho(0,\"span\",9),Yo(1,OS,2,1,\"span\",10),Yo(2,YS,1,0,void 0,11),Fo()),2&e&&(jo(\"ngSwitch\",!!Zo().customTrigger),bi(2),jo(\"ngSwitchCase\",!0))}function IS(e,t){if(1&e){var n=Wo();Ho(0,\"div\",12),Ho(1,\"div\",13,14),qo(\"@transformPanel.done\",(function(e){return nn(n),Zo()._panelDoneAnimatingStream.next(e.toState)}))(\"keydown\",(function(e){return nn(n),Zo()._handleKeydown(e)})),ns(3,1),Fo(),Fo()}if(2&e){var r=Zo();jo(\"@transformPanelWrap\",void 0),bi(1),i=r._getPanelTheme(),vs(ht,ps,Oo(en(),\"mat-select-panel \",i,\"\"),!0),hs(\"transform-origin\",r._transformOrigin)(\"font-size\",r._triggerFontSize,\"px\"),jo(\"ngClass\",r.panelClass)(\"@transformPanel\",r.multiple?\"showing-multiple\":\"showing\")}var i}var AS,PS,jS,RS=[[[\"mat-select-trigger\"]],\"*\"],HS=[\"mat-select-trigger\",\"*\"],FS={transformPanelWrap:uv(\"transformPanelWrap\",[mv(\"* => void\",pv(\"@transformPanel\",[function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return{type:9,options:e}}()],{optional:!0}))]),transformPanel:uv(\"transformPanel\",[fv(\"void\",hv({transform:\"scaleY(0.8)\",minWidth:\"100%\",opacity:0})),fv(\"showing\",hv({opacity:1,minWidth:\"calc(100% + 32px)\",transform:\"scaleY(1)\"})),fv(\"showing-multiple\",hv({opacity:1,minWidth:\"calc(100% + 64px)\",transform:\"scaleY(1)\"})),mv(\"void => *\",cv(\"120ms cubic-bezier(0, 0, 0.2, 1)\")),mv(\"* => void\",cv(\"100ms 25ms linear\",hv({opacity:0})))])},NS=0,zS=new Be(\"mat-select-scroll-strategy\"),VS=new Be(\"MAT_SELECT_CONFIG\"),WS={provide:zS,deps:[Bw],useFactory:function(e){return function(){return e.scrollStrategies.reposition()}}},US=function e(t,n){_classCallCheck(this,e),this.source=t,this.value=n},BS=Uy(By(Vy(qy((function e(t,n,r,i,a){_classCallCheck(this,e),this._elementRef=t,this._defaultErrorStateMatcher=n,this._parentForm=r,this._parentFormGroup=i,this.ngControl=a}))))),qS=((jS=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||jS)},jS.\\u0275dir=Lt({type:jS,selectors:[[\"mat-select-trigger\"]]}),jS),GS=((PS=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s,l,u,c,d,h,f,m,p){var _;return _classCallCheck(this,n),(_=t.call(this,o,a,l,u,d))._viewportRuler=e,_._changeDetectorRef=r,_._ngZone=i,_._dir=s,_._parentFormField=c,_.ngControl=d,_._liveAnnouncer=m,_._panelOpen=!1,_._required=!1,_._scrollTop=0,_._multiple=!1,_._compareWith=function(e,t){return e===t},_._uid=\"mat-select-\".concat(NS++),_._destroy=new x,_._triggerFontSize=0,_._onChange=function(){},_._onTouched=function(){},_._optionIds=\"\",_._transformOrigin=\"top\",_._panelDoneAnimatingStream=new x,_._offsetY=0,_._positions=[{originX:\"start\",originY:\"top\",overlayX:\"start\",overlayY:\"top\"},{originX:\"start\",originY:\"bottom\",overlayX:\"start\",overlayY:\"bottom\"}],_._disableOptionCentering=!1,_._focused=!1,_.controlType=\"mat-select\",_.ariaLabel=\"\",_.optionSelectionChanges=Qw((function(){var e=_.options;return e?e.changes.pipe(sv(e),Pk((function(){return K.apply(void 0,_toConsumableArray(e.map((function(e){return e.onSelectionChange}))))}))):_._ngZone.onStable.asObservable().pipe(cp(1),Pk((function(){return _.optionSelectionChanges})))})),_.openedChange=new bu,_._openedStream=_.openedChange.pipe(Gd((function(e){return e})),F((function(){}))),_._closedStream=_.openedChange.pipe(Gd((function(e){return!e})),F((function(){}))),_.selectionChange=new bu,_.valueChange=new bu,_.ngControl&&(_.ngControl.valueAccessor=_assertThisInitialized(_)),_._scrollStrategyFactory=f,_._scrollStrategy=_._scrollStrategyFactory(),_.tabIndex=parseInt(h)||0,_.id=_.id,p&&(null!=p.disableOptionCentering&&(_.disableOptionCentering=p.disableOptionCentering),null!=p.typeaheadDebounceInterval&&(_.typeaheadDebounceInterval=p.typeaheadDebounceInterval)),_}return _createClass(n,[{key:\"ngOnInit\",value:function(){var e=this;this._selectionModel=new Qk(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe(Ck(),Ek(this._destroy)).subscribe((function(){e.panelOpen?(e._scrollTop=0,e.openedChange.emit(!0)):(e.openedChange.emit(!1),e.overlayDir.offsetX=0,e._changeDetectorRef.markForCheck())})),this._viewportRuler.change().pipe(Ek(this._destroy)).subscribe((function(){e._panelOpen&&(e._triggerRect=e.trigger.nativeElement.getBoundingClientRect(),e._changeDetectorRef.markForCheck())}))}},{key:\"ngAfterContentInit\",value:function(){var e=this;this._initKeyManager(),this._selectionModel.changed.pipe(Ek(this._destroy)).subscribe((function(e){e.added.forEach((function(e){return e.select()})),e.removed.forEach((function(e){return e.deselect()}))})),this.options.changes.pipe(sv(null),Ek(this._destroy)).subscribe((function(){e._resetOptions(),e._initializeSelection()}))}},{key:\"ngDoCheck\",value:function(){this.ngControl&&this.updateErrorState()}},{key:\"ngOnChanges\",value:function(e){e.disabled&&this.stateChanges.next(),e.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this._typeaheadDebounceInterval)}},{key:\"ngOnDestroy\",value:function(){this._destroy.next(),this._destroy.complete(),this.stateChanges.complete()}},{key:\"toggle\",value:function(){this.panelOpen?this.close():this.open()}},{key:\"open\",value:function(){var e=this;!this.disabled&&this.options&&this.options.length&&!this._panelOpen&&(this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._triggerFontSize=parseInt(getComputedStyle(this.trigger.nativeElement).fontSize||\"0\"),this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._calculateOverlayPosition(),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck(),this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe((function(){e._triggerFontSize&&e.overlayDir.overlayRef&&e.overlayDir.overlayRef.overlayElement&&(e.overlayDir.overlayRef.overlayElement.style.fontSize=\"\".concat(e._triggerFontSize,\"px\"))})))}},{key:\"close\",value:function(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?\"rtl\":\"ltr\"),this._changeDetectorRef.markForCheck(),this._onTouched())}},{key:\"writeValue\",value:function(e){this.options&&this._setSelectionByValue(e)}},{key:\"registerOnChange\",value:function(e){this._onChange=e}},{key:\"registerOnTouched\",value:function(e){this._onTouched=e}},{key:\"setDisabledState\",value:function(e){this.disabled=e,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}},{key:\"_isRtl\",value:function(){return!!this._dir&&\"rtl\"===this._dir.value}},{key:\"_handleKeydown\",value:function(e){this.disabled||(this.panelOpen?this._handleOpenKeydown(e):this._handleClosedKeydown(e))}},{key:\"_handleClosedKeydown\",value:function(e){var t=e.keyCode,n=40===t||38===t||37===t||39===t,r=13===t||32===t,i=this._keyManager;if(!i.isTyping()&&r&&!Jm(e)||(this.multiple||e.altKey)&&n)e.preventDefault(),this.open();else if(!this.multiple){var a=this.selected;36===t||35===t?(36===t?i.setFirstItemActive():i.setLastItemActive(),e.preventDefault()):i.onKeydown(e);var o=this.selected;o&&a!==o&&this._liveAnnouncer.announce(o.viewValue,1e4)}}},{key:\"_handleOpenKeydown\",value:function(e){var t=this._keyManager,n=e.keyCode,r=40===n||38===n,i=t.isTyping();if(36===n||35===n)e.preventDefault(),36===n?t.setFirstItemActive():t.setLastItemActive();else if(r&&e.altKey)e.preventDefault(),this.close();else if(i||13!==n&&32!==n||!t.activeItem||Jm(e))if(!i&&this._multiple&&65===n&&e.ctrlKey){e.preventDefault();var a=this.options.some((function(e){return!e.disabled&&!e.selected}));this.options.forEach((function(e){e.disabled||(a?e.select():e.deselect())}))}else{var o=t.activeItemIndex;t.onKeydown(e),this._multiple&&r&&e.shiftKey&&t.activeItem&&t.activeItemIndex!==o&&t.activeItem._selectViaInteraction()}else e.preventDefault(),t.activeItem._selectViaInteraction()}},{key:\"_onFocus\",value:function(){this.disabled||(this._focused=!0,this.stateChanges.next())}},{key:\"_onBlur\",value:function(){this._focused=!1,this.disabled||this.panelOpen||(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}},{key:\"_onAttached\",value:function(){var e=this;this.overlayDir.positionChange.pipe(cp(1)).subscribe((function(){e._changeDetectorRef.detectChanges(),e._calculateOverlayOffsetX(),e.panel.nativeElement.scrollTop=e._scrollTop}))}},{key:\"_getPanelTheme\",value:function(){return this._parentFormField?\"mat-\".concat(this._parentFormField.color):\"\"}},{key:\"_initializeSelection\",value:function(){var e=this;Promise.resolve().then((function(){e._setSelectionByValue(e.ngControl?e.ngControl.value:e._value),e.stateChanges.next()}))}},{key:\"_setSelectionByValue\",value:function(e){var t=this;if(this.multiple&&e){if(!Array.isArray(e))throw Error(\"Value must be an array in multiple-selection mode.\");this._selectionModel.clear(),e.forEach((function(e){return t._selectValue(e)})),this._sortValues()}else{this._selectionModel.clear();var n=this._selectValue(e);n?this._keyManager.setActiveItem(n):this.panelOpen||this._keyManager.setActiveItem(-1)}this._changeDetectorRef.markForCheck()}},{key:\"_selectValue\",value:function(e){var t=this,n=this.options.find((function(n){try{return null!=n.value&&t._compareWith(n.value,e)}catch(r){return Lr()&&console.warn(r),!1}}));return n&&this._selectionModel.select(n),n}},{key:\"_initKeyManager\",value:function(){var e=this;this._keyManager=new zp(this.options).withTypeAhead(this._typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?\"rtl\":\"ltr\").withAllowedModifierKeys([\"shiftKey\"]),this._keyManager.tabOut.pipe(Ek(this._destroy)).subscribe((function(){!e.multiple&&e._keyManager.activeItem&&e._keyManager.activeItem._selectViaInteraction(),e.focus(),e.close()})),this._keyManager.change.pipe(Ek(this._destroy)).subscribe((function(){e._panelOpen&&e.panel?e._scrollActiveOptionIntoView():e._panelOpen||e.multiple||!e._keyManager.activeItem||e._keyManager.activeItem._selectViaInteraction()}))}},{key:\"_resetOptions\",value:function(){var e=this,t=K(this.options.changes,this._destroy);this.optionSelectionChanges.pipe(Ek(t)).subscribe((function(t){e._onSelect(t.source,t.isUserInput),t.isUserInput&&!e.multiple&&e._panelOpen&&(e.close(),e.focus())})),K.apply(void 0,_toConsumableArray(this.options.map((function(e){return e._stateChanges})))).pipe(Ek(t)).subscribe((function(){e._changeDetectorRef.markForCheck(),e.stateChanges.next()})),this._setOptionIds()}},{key:\"_onSelect\",value:function(e,t){var n=this._selectionModel.isSelected(e);null!=e.value||this._multiple?(n!==e.selected&&(e.selected?this._selectionModel.select(e):this._selectionModel.deselect(e)),t&&this._keyManager.setActiveItem(e),this.multiple&&(this._sortValues(),t&&this.focus())):(e.deselect(),this._selectionModel.clear(),this._propagateChanges(e.value)),n!==this._selectionModel.isSelected(e)&&this._propagateChanges(),this.stateChanges.next()}},{key:\"_sortValues\",value:function(){var e=this;if(this.multiple){var t=this.options.toArray();this._selectionModel.sort((function(n,r){return e.sortComparator?e.sortComparator(n,r,t):t.indexOf(n)-t.indexOf(r)})),this.stateChanges.next()}}},{key:\"_propagateChanges\",value:function(e){var t;t=this.multiple?this.selected.map((function(e){return e.value})):this.selected?this.selected.value:e,this._value=t,this.valueChange.emit(t),this._onChange(t),this.selectionChange.emit(new US(this,t)),this._changeDetectorRef.markForCheck()}},{key:\"_setOptionIds\",value:function(){this._optionIds=this.options.map((function(e){return e.id})).join(\" \")}},{key:\"_highlightCorrectOption\",value:function(){this._keyManager&&(this.empty?this._keyManager.setFirstItemActive():this._keyManager.setActiveItem(this._selectionModel.selected[0]))}},{key:\"_scrollActiveOptionIntoView\",value:function(){var e,t,n,r,i=this._keyManager.activeItemIndex||0,a=yb(i,this.options,this.optionGroups);this.panel.nativeElement.scrollTop=(e=i+a,t=this._getItemHeight(),n=this.panel.nativeElement.scrollTop,(r=e*t)n+256?Math.max(0,r-256+t):n)}},{key:\"focus\",value:function(e){this._elementRef.nativeElement.focus(e)}},{key:\"_getOptionIndex\",value:function(e){return this.options.reduce((function(t,n,r){return void 0!==t?t:e===n?r:void 0}),void 0)}},{key:\"_calculateOverlayPosition\",value:function(){var e=this._getItemHeight(),t=this._getItemCount(),n=Math.min(t*e,256),r=t*e-n,i=this.empty?0:this._getOptionIndex(this._selectionModel.selected[0]);i+=yb(i,this.options,this.optionGroups);var a=n/2;this._scrollTop=this._calculateOverlayScroll(i,a,r),this._offsetY=this._calculateOverlayOffsetY(i,a,r),this._checkOverlayWithinViewport(r)}},{key:\"_calculateOverlayScroll\",value:function(e,t,n){var r=this._getItemHeight();return Math.min(Math.max(0,r*e-t+r/2),n)}},{key:\"_getAriaLabel\",value:function(){return this.ariaLabelledby?null:this.ariaLabel||this.placeholder}},{key:\"_getAriaLabelledby\",value:function(){return this.ariaLabelledby?this.ariaLabelledby:this._parentFormField&&this._parentFormField._hasFloatingLabel()&&!this._getAriaLabel()&&this._parentFormField._labelId||null}},{key:\"_getAriaActiveDescendant\",value:function(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}},{key:\"_calculateOverlayOffsetX\",value:function(){var e,t=this.overlayDir.overlayRef.overlayElement.getBoundingClientRect(),n=this._viewportRuler.getViewportSize(),r=this._isRtl(),i=this.multiple?56:32;if(this.multiple)e=40;else{var a=this._selectionModel.selected[0]||this.options.first;e=a&&a.group?32:16}r||(e*=-1);var o=0-(t.left+e-(r?i:0)),s=t.right+e-n.width+(r?0:i);o>0?e+=o+8:s>0&&(e-=s+8),this.overlayDir.offsetX=Math.round(e),this.overlayDir.overlayRef.updatePosition()}},{key:\"_calculateOverlayOffsetY\",value:function(e,t,n){var r,i=this._getItemHeight(),a=(i-this._triggerRect.height)/2,o=Math.floor(256/i);return this._disableOptionCentering?0:(r=0===this._scrollTop?e*i:this._scrollTop===n?(e-(this._getItemCount()-o))*i+(i-(this._getItemCount()*i-256)%i):t-i/2,Math.round(-1*r-a))}},{key:\"_checkOverlayWithinViewport\",value:function(e){var t=this._getItemHeight(),n=this._viewportRuler.getViewportSize(),r=this._triggerRect.top-8,i=n.height-this._triggerRect.bottom-8,a=Math.abs(this._offsetY),o=Math.min(this._getItemCount()*t,256)-a-this._triggerRect.height;o>i?this._adjustPanelUp(o,i):a>r?this._adjustPanelDown(a,r,e):this._transformOrigin=this._getOriginBasedOnOption()}},{key:\"_adjustPanelUp\",value:function(e,t){var n=Math.round(e-t);this._scrollTop-=n,this._offsetY-=n,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop<=0&&(this._scrollTop=0,this._offsetY=0,this._transformOrigin=\"50% bottom 0px\")}},{key:\"_adjustPanelDown\",value:function(e,t,n){var r=Math.round(e-t);if(this._scrollTop+=r,this._offsetY+=r,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop>=n)return this._scrollTop=n,this._offsetY=0,void(this._transformOrigin=\"50% top 0px\")}},{key:\"_getOriginBasedOnOption\",value:function(){var e=this._getItemHeight(),t=(e-this._triggerRect.height)/2;return\"50% \".concat(Math.abs(this._offsetY)-t+e/2,\"px 0px\")}},{key:\"_getItemCount\",value:function(){return this.options.length+this.optionGroups.length}},{key:\"_getItemHeight\",value:function(){return 3*this._triggerFontSize}},{key:\"setDescribedByIds\",value:function(e){this._ariaDescribedby=e.join(\" \")}},{key:\"onContainerClick\",value:function(){this.focus(),this.open()}},{key:\"focused\",get:function(){return this._focused||this._panelOpen}},{key:\"placeholder\",get:function(){return this._placeholder},set:function(e){this._placeholder=e,this.stateChanges.next()}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=mp(e),this.stateChanges.next()}},{key:\"multiple\",get:function(){return this._multiple},set:function(e){if(this._selectionModel)throw Error(\"Cannot change `multiple` mode of select after initialization.\");this._multiple=mp(e)}},{key:\"disableOptionCentering\",get:function(){return this._disableOptionCentering},set:function(e){this._disableOptionCentering=mp(e)}},{key:\"compareWith\",get:function(){return this._compareWith},set:function(e){if(\"function\"!=typeof e)throw Error(\"`compareWith` must be a function.\");this._compareWith=e,this._selectionModel&&this._initializeSelection()}},{key:\"value\",get:function(){return this._value},set:function(e){e!==this._value&&(this.writeValue(e),this._value=e)}},{key:\"typeaheadDebounceInterval\",get:function(){return this._typeaheadDebounceInterval},set:function(e){this._typeaheadDebounceInterval=pp(e)}},{key:\"id\",get:function(){return this._id},set:function(e){this._id=e||this._uid,this.stateChanges.next()}},{key:\"panelOpen\",get:function(){return this._panelOpen}},{key:\"selected\",get:function(){return this.multiple?this._selectionModel.selected:this._selectionModel.selected[0]}},{key:\"triggerValue\",get:function(){if(this.empty)return\"\";if(this._multiple){var e=this._selectionModel.selected.map((function(e){return e.viewValue}));return this._isRtl()&&e.reverse(),e.join(\", \")}return this._selectionModel.selected[0].viewValue}},{key:\"empty\",get:function(){return!this._selectionModel||this._selectionModel.isEmpty()}},{key:\"shouldLabelFloat\",get:function(){return this._panelOpen||!this.empty}}]),n}(BS)).\\u0275fac=function(e){return new(e||PS)(Io(tw),Io(eo),Io(cc),Io(eb),Io(Qs),Io(h_,8),Io(pm,8),Io(Dm,8),Io(EM,8),Io(tf,10),Ao(\"tabindex\"),Io(zS),Io(Xp),Io(VS,8))},PS.\\u0275cmp=bt({type:PS,selectors:[[\"mat-select\"]],contentQueries:function(e,t,n){var r;1&e&&(Pu(n,qS,!0),Pu(n,gb,!0),Pu(n,fb,!0)),2&e&&(Yu(r=Hu())&&(t.customTrigger=r.first),Yu(r=Hu())&&(t.options=r),Yu(r=Hu())&&(t.optionGroups=r))},viewQuery:function(e,t){var n;1&e&&(Iu(TS,!0),Iu(xS,!0),Iu(Jw,!0)),2&e&&(Yu(n=Hu())&&(t.trigger=n.first),Yu(n=Hu())&&(t.panel=n.first),Yu(n=Hu())&&(t.overlayDir=n.first))},hostAttrs:[\"role\",\"listbox\",1,\"mat-select\"],hostVars:19,hostBindings:function(e,t){1&e&&qo(\"keydown\",(function(e){return t._handleKeydown(e)}))(\"focus\",(function(){return t._onFocus()}))(\"blur\",(function(){return t._onBlur()})),2&e&&(Do(\"id\",t.id)(\"tabindex\",t.tabIndex)(\"aria-label\",t._getAriaLabel())(\"aria-labelledby\",t._getAriaLabelledby())(\"aria-required\",t.required.toString())(\"aria-disabled\",t.disabled.toString())(\"aria-invalid\",t.errorState)(\"aria-owns\",t.panelOpen?t._optionIds:null)(\"aria-multiselectable\",t.multiple)(\"aria-describedby\",t._ariaDescribedby||null)(\"aria-activedescendant\",t._getAriaActiveDescendant()),fs(\"mat-select-disabled\",t.disabled)(\"mat-select-invalid\",t.errorState)(\"mat-select-required\",t.required)(\"mat-select-empty\",t.empty))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",tabIndex:\"tabIndex\",ariaLabel:[\"aria-label\",\"ariaLabel\"],id:\"id\",disableOptionCentering:\"disableOptionCentering\",typeaheadDebounceInterval:\"typeaheadDebounceInterval\",placeholder:\"placeholder\",required:\"required\",multiple:\"multiple\",compareWith:\"compareWith\",value:\"value\",panelClass:\"panelClass\",ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],errorStateMatcher:\"errorStateMatcher\",sortComparator:\"sortComparator\"},outputs:{openedChange:\"openedChange\",_openedStream:\"opened\",_closedStream:\"closed\",selectionChange:\"selectionChange\",valueChange:\"valueChange\"},exportAs:[\"matSelect\"],features:[$s([{provide:hM,useExisting:PS},{provide:vb,useExisting:PS}]),Es,Hs],ngContentSelectors:HS,decls:9,vars:9,consts:[[\"cdk-overlay-origin\",\"\",\"aria-hidden\",\"true\",1,\"mat-select-trigger\",3,\"click\"],[\"origin\",\"cdkOverlayOrigin\",\"trigger\",\"\"],[1,\"mat-select-value\",3,\"ngSwitch\"],[\"class\",\"mat-select-placeholder\",4,\"ngSwitchCase\"],[\"class\",\"mat-select-value-text\",3,\"ngSwitch\",4,\"ngSwitchCase\"],[1,\"mat-select-arrow-wrapper\"],[1,\"mat-select-arrow\"],[\"cdk-connected-overlay\",\"\",\"cdkConnectedOverlayLockPosition\",\"\",\"cdkConnectedOverlayHasBackdrop\",\"\",\"cdkConnectedOverlayBackdropClass\",\"cdk-overlay-transparent-backdrop\",3,\"cdkConnectedOverlayScrollStrategy\",\"cdkConnectedOverlayOrigin\",\"cdkConnectedOverlayOpen\",\"cdkConnectedOverlayPositions\",\"cdkConnectedOverlayMinWidth\",\"cdkConnectedOverlayOffsetY\",\"backdropClick\",\"attach\",\"detach\"],[1,\"mat-select-placeholder\"],[1,\"mat-select-value-text\",3,\"ngSwitch\"],[4,\"ngSwitchDefault\"],[4,\"ngSwitchCase\"],[1,\"mat-select-panel-wrap\"],[3,\"ngClass\",\"keydown\"],[\"panel\",\"\"]],template:function(e,t){if(1&e&&(Xo(RS),Ho(0,\"div\",0,1),qo(\"click\",(function(){return t.toggle()})),Ho(3,\"div\",2),Yo(4,DS,2,1,\"span\",3),Yo(5,ES,3,2,\"span\",4),Fo(),Ho(6,\"div\",5),No(7,\"div\",6),Fo(),Fo(),Yo(8,IS,4,10,\"ng-template\",7),qo(\"backdropClick\",(function(){return t.close()}))(\"attach\",(function(){return t._onAttached()}))(\"detach\",(function(){return t.close()}))),2&e){var n=Eo(1);bi(3),jo(\"ngSwitch\",t.empty),bi(1),jo(\"ngSwitchCase\",!0),bi(1),jo(\"ngSwitchCase\",!1),bi(3),jo(\"cdkConnectedOverlayScrollStrategy\",t._scrollStrategy)(\"cdkConnectedOverlayOrigin\",n)(\"cdkConnectedOverlayOpen\",t.panelOpen)(\"cdkConnectedOverlayPositions\",t._positions)(\"cdkConnectedOverlayMinWidth\",null==t._triggerRect?null:t._triggerRect.width)(\"cdkConnectedOverlayOffsetY\",t._offsetY)}},directives:[$w,Pd,jd,Jw,Rd,kd],styles:[\".mat-select{display:inline-block;width:100%;outline:none}.mat-select-trigger{display:inline-table;cursor:pointer;position:relative;box-sizing:border-box}.mat-select-disabled .mat-select-trigger{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-select-value{display:table-cell;max-width:0;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-select-arrow-wrapper{display:table-cell;vertical-align:middle}.mat-form-field-appearance-fill .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-outline .mat-select-arrow-wrapper{transform:translateY(-25%)}.mat-form-field-appearance-standard.mat-form-field-has-label .mat-select:not(.mat-select-empty) .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:none}.mat-select-arrow{width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;margin:0 4px}.mat-select-panel-wrap{flex-basis:100%}.mat-select-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;padding-top:0;padding-bottom:0;max-height:256px;min-width:100%;border-radius:4px}.cdk-high-contrast-active .mat-select-panel{outline:solid 1px}.mat-select-panel .mat-optgroup-label,.mat-select-panel .mat-option{font-size:inherit;line-height:3em;height:3em}.mat-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-form-field-flex{cursor:pointer}.mat-form-field-type-mat-select .mat-form-field-label{width:calc(100% - 18px)}.mat-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable .mat-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-select-placeholder{color:transparent;-webkit-text-fill-color:transparent;transition:none;display:block}\\n\"],encapsulation:2,data:{animation:[FS.transformPanelWrap,FS.transformPanel]},changeDetection:0}),PS),$S=((AS=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:AS}),AS.\\u0275inj=ve({factory:function(e){return new(e||AS)},providers:[WS],imports:[[Nd,Zw,Pb,zy],IM,Pb,zy]}),AS),JS=[\"*\"];function KS(e,t){if(1&e){var n=Wo();Ho(0,\"div\",2),qo(\"click\",(function(){return nn(n),Zo()._onBackdropClicked()})),Fo()}2&e&&fs(\"mat-drawer-shown\",Zo()._isShowingBackdrop())}function ZS(e,t){1&e&&(Ho(0,\"mat-drawer-content\"),ns(1,2),Fo())}var QS=[[[\"mat-drawer\"]],[[\"mat-drawer-content\"]],\"*\"],XS=[\"mat-drawer\",\"mat-drawer-content\",\"*\"];function eL(e,t){if(1&e){var n=Wo();Ho(0,\"div\",2),qo(\"click\",(function(){return nn(n),Zo()._onBackdropClicked()})),Fo()}2&e&&fs(\"mat-drawer-shown\",Zo()._isShowingBackdrop())}function tL(e,t){1&e&&(Ho(0,\"mat-sidenav-content\",3),ns(1,2),Fo())}var nL=[[[\"mat-sidenav\"]],[[\"mat-sidenav-content\"]],\"*\"],rL=[\"mat-sidenav\",\"mat-sidenav-content\",\"*\"],iL={transformDrawer:uv(\"transform\",[fv(\"open, open-instant\",hv({transform:\"none\",visibility:\"visible\"})),fv(\"void\",hv({\"box-shadow\":\"none\",visibility:\"hidden\"})),mv(\"void => open-instant\",cv(\"0ms\")),mv(\"void <=> open, open-instant => void\",cv(\"400ms cubic-bezier(0.25, 0.8, 0.25, 1)\"))])};function aL(e){throw Error(\"A drawer was already declared for 'position=\\\"\".concat(e,\"\\\"'\"))}var oL,sL,lL,uL,cL,dL,hL,fL,mL,pL,_L=new Be(\"MAT_DRAWER_DEFAULT_AUTOSIZE\",{providedIn:\"root\",factory:function(){return!1}}),vL=new Be(\"MAT_DRAWER_CONTAINER\"),gL=((cL=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this,i,a,o))._changeDetectorRef=e,s._container=r,s}return _createClass(n,[{key:\"ngAfterContentInit\",value:function(){var e=this;this._container._contentMarginChanges.subscribe((function(){e._changeDetectorRef.markForCheck()}))}}]),n}(ew)).\\u0275fac=function(e){return new(e||cL)(Io(eo),Io(De((function(){return bL}))),Io(Qs),Io(Xk),Io(cc))},cL.\\u0275cmp=bt({type:cL,selectors:[[\"mat-drawer-content\"]],hostAttrs:[1,\"mat-drawer-content\"],hostVars:4,hostBindings:function(e,t){2&e&&hs(\"margin-left\",t._container._contentMargins.left,\"px\")(\"margin-right\",t._container._contentMargins.right,\"px\")},features:[Es],ngContentSelectors:JS,decls:1,vars:0,template:function(e,t){1&e&&(Xo(),ns(0))},encapsulation:2,changeDetection:0}),cL),yL=((uL=function(){function e(t,n,r,i,a,o,s){var l=this;_classCallCheck(this,e),this._elementRef=t,this._focusTrapFactory=n,this._focusMonitor=r,this._platform=i,this._ngZone=a,this._doc=o,this._container=s,this._elementFocusedBeforeDrawerWasOpened=null,this._enableAnimations=!1,this._position=\"start\",this._mode=\"over\",this._disableClose=!1,this._opened=!1,this._animationStarted=new x,this._animationEnd=new x,this._animationState=\"void\",this.openedChange=new bu(!0),this._destroyed=new x,this.onPositionChanged=new bu,this._modeChanged=new x,this.openedChange.subscribe((function(e){e?(l._doc&&(l._elementFocusedBeforeDrawerWasOpened=l._doc.activeElement),l._takeFocus()):l._restoreFocus()})),this._ngZone.runOutsideAngular((function(){mk(l._elementRef.nativeElement,\"keydown\").pipe(Gd((function(e){return 27===e.keyCode&&!l.disableClose&&!Jm(e)})),Ek(l._destroyed)).subscribe((function(e){return l._ngZone.run((function(){l.close(),e.stopPropagation(),e.preventDefault()}))}))})),this._animationEnd.pipe(Ck((function(e,t){return e.fromState===t.fromState&&e.toState===t.toState}))).subscribe((function(e){var t=e.fromState,n=e.toState;(0===n.indexOf(\"open\")&&\"void\"===t||\"void\"===n&&0===t.indexOf(\"open\"))&&l.openedChange.emit(l._opened)}))}return _createClass(e,[{key:\"_takeFocus\",value:function(){var e=this;this.autoFocus&&this._focusTrap&&this._focusTrap.focusInitialElementWhenReady().then((function(t){t||\"function\"!=typeof e._elementRef.nativeElement.focus||e._elementRef.nativeElement.focus()}))}},{key:\"_restoreFocus\",value:function(){if(this.autoFocus){var e=this._doc&&this._doc.activeElement;e&&this._elementRef.nativeElement.contains(e)&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,this._openedVia):this._elementRef.nativeElement.blur()),this._elementFocusedBeforeDrawerWasOpened=null,this._openedVia=null}}},{key:\"ngAfterContentInit\",value:function(){this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState()}},{key:\"ngAfterContentChecked\",value:function(){this._platform.isBrowser&&(this._enableAnimations=!0)}},{key:\"ngOnDestroy\",value:function(){this._focusTrap&&this._focusTrap.destroy(),this._animationStarted.complete(),this._animationEnd.complete(),this._modeChanged.complete(),this._destroyed.next(),this._destroyed.complete()}},{key:\"open\",value:function(e){return this.toggle(!0,e)}},{key:\"close\",value:function(){return this.toggle(!1)}},{key:\"toggle\",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:!this.opened,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"program\";return this._opened=t,t?(this._animationState=this._enableAnimations?\"open\":\"open-instant\",this._openedVia=n):(this._animationState=\"void\",this._restoreFocus()),this._updateFocusTrapState(),new Promise((function(t){e.openedChange.pipe(cp(1)).subscribe((function(e){return t(e?\"open\":\"close\")}))}))}},{key:\"_updateFocusTrapState\",value:function(){this._focusTrap&&(this._focusTrap.enabled=this.opened&&\"side\"!==this.mode)}},{key:\"_animationStartListener\",value:function(e){this._animationStarted.next(e)}},{key:\"_animationDoneListener\",value:function(e){this._animationEnd.next(e)}},{key:\"position\",get:function(){return this._position},set:function(e){(e=\"end\"===e?\"end\":\"start\")!=this._position&&(this._position=e,this.onPositionChanged.emit())}},{key:\"mode\",get:function(){return this._mode},set:function(e){this._mode=e,this._updateFocusTrapState(),this._modeChanged.next()}},{key:\"disableClose\",get:function(){return this._disableClose},set:function(e){this._disableClose=mp(e)}},{key:\"autoFocus\",get:function(){var e=this._autoFocus;return null==e?\"side\"!==this.mode:e},set:function(e){this._autoFocus=mp(e)}},{key:\"opened\",get:function(){return this._opened},set:function(e){this.toggle(mp(e))}},{key:\"_openedStream\",get:function(){return this.openedChange.pipe(Gd((function(e){return e})),F((function(){})))}},{key:\"openedStart\",get:function(){return this._animationStarted.pipe(Gd((function(e){return e.fromState!==e.toState&&0===e.toState.indexOf(\"open\")})),F((function(){})))}},{key:\"_closedStream\",get:function(){return this.openedChange.pipe(Gd((function(e){return!e})),F((function(){})))}},{key:\"closedStart\",get:function(){return this._animationStarted.pipe(Gd((function(e){return e.fromState!==e.toState&&\"void\"===e.toState})),F((function(){})))}},{key:\"_width\",get:function(){return this._elementRef.nativeElement&&this._elementRef.nativeElement.offsetWidth||0}}]),e}()).\\u0275fac=function(e){return new(e||uL)(Io(Qs),Io(Kp),Io(t_),Io(Cp),Io(cc),Io(Wc,8),Io(vL,8))},uL.\\u0275cmp=bt({type:uL,selectors:[[\"mat-drawer\"]],hostAttrs:[\"tabIndex\",\"-1\",1,\"mat-drawer\"],hostVars:12,hostBindings:function(e,t){1&e&&Go(\"@transform.start\",(function(e){return t._animationStartListener(e)}))(\"@transform.done\",(function(e){return t._animationDoneListener(e)})),2&e&&(Do(\"align\",null),Os(\"@transform\",t._animationState),fs(\"mat-drawer-end\",\"end\"===t.position)(\"mat-drawer-over\",\"over\"===t.mode)(\"mat-drawer-push\",\"push\"===t.mode)(\"mat-drawer-side\",\"side\"===t.mode)(\"mat-drawer-opened\",t.opened))},inputs:{position:\"position\",mode:\"mode\",disableClose:\"disableClose\",autoFocus:\"autoFocus\",opened:\"opened\"},outputs:{openedChange:\"openedChange\",onPositionChanged:\"positionChanged\",_openedStream:\"opened\",openedStart:\"openedStart\",_closedStream:\"closed\",closedStart:\"closedStart\"},exportAs:[\"matDrawer\"],ngContentSelectors:JS,decls:2,vars:0,consts:[[1,\"mat-drawer-inner-container\"]],template:function(e,t){1&e&&(Xo(),Ho(0,\"div\",0),ns(1),Fo())},encapsulation:2,data:{animation:[iL.transformDrawer]},changeDetection:0}),uL),bL=((lL=function(){function e(t,n,r,i,a){var o=this,s=arguments.length>5&&void 0!==arguments[5]&&arguments[5],l=arguments.length>6?arguments[6]:void 0;_classCallCheck(this,e),this._dir=t,this._element=n,this._ngZone=r,this._changeDetectorRef=i,this._animationMode=l,this._drawers=new wu,this.backdropClick=new bu,this._destroyed=new x,this._doCheckSubject=new x,this._contentMargins={left:null,right:null},this._contentMarginChanges=new x,t&&t.change.pipe(Ek(this._destroyed)).subscribe((function(){o._validateDrawers(),o.updateContentMargins()})),a.change().pipe(Ek(this._destroyed)).subscribe((function(){return o.updateContentMargins()})),this._autosize=s}return _createClass(e,[{key:\"ngAfterContentInit\",value:function(){var e=this;this._allDrawers.changes.pipe(sv(this._allDrawers),Ek(this._destroyed)).subscribe((function(t){e._drawers.reset(t.filter((function(t){return!t._container||t._container===e}))),e._drawers.notifyOnChanges()})),this._drawers.changes.pipe(sv(null)).subscribe((function(){e._validateDrawers(),e._drawers.forEach((function(t){e._watchDrawerToggle(t),e._watchDrawerPosition(t),e._watchDrawerMode(t)})),(!e._drawers.length||e._isDrawerOpen(e._start)||e._isDrawerOpen(e._end))&&e.updateContentMargins(),e._changeDetectorRef.markForCheck()})),this._doCheckSubject.pipe(rp(10),Ek(this._destroyed)).subscribe((function(){return e.updateContentMargins()}))}},{key:\"ngOnDestroy\",value:function(){this._contentMarginChanges.complete(),this._doCheckSubject.complete(),this._drawers.destroy(),this._destroyed.next(),this._destroyed.complete()}},{key:\"open\",value:function(){this._drawers.forEach((function(e){return e.open()}))}},{key:\"close\",value:function(){this._drawers.forEach((function(e){return e.close()}))}},{key:\"updateContentMargins\",value:function(){var e=this,t=0,n=0;if(this._left&&this._left.opened)if(\"side\"==this._left.mode)t+=this._left._width;else if(\"push\"==this._left.mode){var r=this._left._width;t+=r,n-=r}if(this._right&&this._right.opened)if(\"side\"==this._right.mode)n+=this._right._width;else if(\"push\"==this._right.mode){var i=this._right._width;n+=i,t-=i}n=n||null,(t=t||null)===this._contentMargins.left&&n===this._contentMargins.right||(this._contentMargins={left:t,right:n},this._ngZone.run((function(){return e._contentMarginChanges.next(e._contentMargins)})))}},{key:\"ngDoCheck\",value:function(){var e=this;this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular((function(){return e._doCheckSubject.next()}))}},{key:\"_watchDrawerToggle\",value:function(e){var t=this;e._animationStarted.pipe(Gd((function(e){return e.fromState!==e.toState})),Ek(this._drawers.changes)).subscribe((function(e){\"open-instant\"!==e.toState&&\"NoopAnimations\"!==t._animationMode&&t._element.nativeElement.classList.add(\"mat-drawer-transition\"),t.updateContentMargins(),t._changeDetectorRef.markForCheck()})),\"side\"!==e.mode&&e.openedChange.pipe(Ek(this._drawers.changes)).subscribe((function(){return t._setContainerClass(e.opened)}))}},{key:\"_watchDrawerPosition\",value:function(e){var t=this;e&&e.onPositionChanged.pipe(Ek(this._drawers.changes)).subscribe((function(){t._ngZone.onMicrotaskEmpty.asObservable().pipe(cp(1)).subscribe((function(){t._validateDrawers()}))}))}},{key:\"_watchDrawerMode\",value:function(e){var t=this;e&&e._modeChanged.pipe(Ek(K(this._drawers.changes,this._destroyed))).subscribe((function(){t.updateContentMargins(),t._changeDetectorRef.markForCheck()}))}},{key:\"_setContainerClass\",value:function(e){var t=this._element.nativeElement.classList,n=\"mat-drawer-container-has-open\";e?t.add(n):t.remove(n)}},{key:\"_validateDrawers\",value:function(){var e=this;this._start=this._end=null,this._drawers.forEach((function(t){\"end\"==t.position?(null!=e._end&&aL(\"end\"),e._end=t):(null!=e._start&&aL(\"start\"),e._start=t)})),this._right=this._left=null,this._dir&&\"rtl\"===this._dir.value?(this._left=this._end,this._right=this._start):(this._left=this._start,this._right=this._end)}},{key:\"_isPushed\",value:function(){return this._isDrawerOpen(this._start)&&\"over\"!=this._start.mode||this._isDrawerOpen(this._end)&&\"over\"!=this._end.mode}},{key:\"_onBackdropClicked\",value:function(){this.backdropClick.emit(),this._closeModalDrawer()}},{key:\"_closeModalDrawer\",value:function(){var e=this;[this._start,this._end].filter((function(t){return t&&!t.disableClose&&e._canHaveBackdrop(t)})).forEach((function(e){return e.close()}))}},{key:\"_isShowingBackdrop\",value:function(){return this._isDrawerOpen(this._start)&&this._canHaveBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._canHaveBackdrop(this._end)}},{key:\"_canHaveBackdrop\",value:function(e){return\"side\"!==e.mode||!!this._backdropOverride}},{key:\"_isDrawerOpen\",value:function(e){return null!=e&&e.opened}},{key:\"start\",get:function(){return this._start}},{key:\"end\",get:function(){return this._end}},{key:\"autosize\",get:function(){return this._autosize},set:function(e){this._autosize=mp(e)}},{key:\"hasBackdrop\",get:function(){return null==this._backdropOverride?!this._start||\"side\"!==this._start.mode||!this._end||\"side\"!==this._end.mode:this._backdropOverride},set:function(e){this._backdropOverride=null==e?null:mp(e)}},{key:\"scrollable\",get:function(){return this._userContent||this._content}}]),e}()).\\u0275fac=function(e){return new(e||lL)(Io(h_,8),Io(Qs),Io(cc),Io(eo),Io(tw),Io(_L),Io(Yy,8))},lL.\\u0275cmp=bt({type:lL,selectors:[[\"mat-drawer-container\"]],contentQueries:function(e,t,n){var r;1&e&&(Pu(n,gL,!0),Pu(n,yL,!0)),2&e&&(Yu(r=Hu())&&(t._content=r.first),Yu(r=Hu())&&(t._allDrawers=r))},viewQuery:function(e,t){var n;1&e&&Iu(gL,!0),2&e&&Yu(n=Hu())&&(t._userContent=n.first)},hostAttrs:[1,\"mat-drawer-container\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"mat-drawer-container-explicit-backdrop\",t._backdropOverride)},inputs:{autosize:\"autosize\",hasBackdrop:\"hasBackdrop\"},outputs:{backdropClick:\"backdropClick\"},exportAs:[\"matDrawerContainer\"],features:[$s([{provide:vL,useExisting:lL}])],ngContentSelectors:XS,decls:4,vars:2,consts:[[\"class\",\"mat-drawer-backdrop\",3,\"mat-drawer-shown\",\"click\",4,\"ngIf\"],[4,\"ngIf\"],[1,\"mat-drawer-backdrop\",3,\"click\"]],template:function(e,t){1&e&&(Xo(QS),Yo(0,KS,1,2,\"div\",0),ns(1),ns(2,1),Yo(3,ZS,2,0,\"mat-drawer-content\",1)),2&e&&(jo(\"ngIf\",t.hasBackdrop),bi(3),jo(\"ngIf\",!t._content))},directives:[Sd,gL],styles:[\".mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\\n\"],encapsulation:2,changeDetection:0}),lL),kL=((sL=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){return _classCallCheck(this,n),t.call(this,e,r,i,a,o)}return n}(gL)).\\u0275fac=function(e){return new(e||sL)(Io(eo),Io(De((function(){return ML}))),Io(Qs),Io(Xk),Io(cc))},sL.\\u0275cmp=bt({type:sL,selectors:[[\"mat-sidenav-content\"]],hostAttrs:[1,\"mat-drawer-content\",\"mat-sidenav-content\"],hostVars:4,hostBindings:function(e,t){2&e&&hs(\"margin-left\",t._container._contentMargins.left,\"px\")(\"margin-right\",t._container._contentMargins.right,\"px\")},features:[Es],ngContentSelectors:JS,decls:1,vars:0,template:function(e,t){1&e&&(Xo(),ns(0))},encapsulation:2,changeDetection:0}),sL),wL=((oL=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e;return _classCallCheck(this,n),(e=t.apply(this,arguments))._fixedInViewport=!1,e._fixedTopGap=0,e._fixedBottomGap=0,e}return _createClass(n,[{key:\"fixedInViewport\",get:function(){return this._fixedInViewport},set:function(e){this._fixedInViewport=mp(e)}},{key:\"fixedTopGap\",get:function(){return this._fixedTopGap},set:function(e){this._fixedTopGap=pp(e)}},{key:\"fixedBottomGap\",get:function(){return this._fixedBottomGap},set:function(e){this._fixedBottomGap=pp(e)}}]),n}(yL)).\\u0275fac=function(e){return CL(e||oL)},oL.\\u0275cmp=bt({type:oL,selectors:[[\"mat-sidenav\"]],hostAttrs:[\"tabIndex\",\"-1\",1,\"mat-drawer\",\"mat-sidenav\"],hostVars:17,hostBindings:function(e,t){2&e&&(Do(\"align\",null),hs(\"top\",t.fixedInViewport?t.fixedTopGap:null,\"px\")(\"bottom\",t.fixedInViewport?t.fixedBottomGap:null,\"px\"),fs(\"mat-drawer-end\",\"end\"===t.position)(\"mat-drawer-over\",\"over\"===t.mode)(\"mat-drawer-push\",\"push\"===t.mode)(\"mat-drawer-side\",\"side\"===t.mode)(\"mat-drawer-opened\",t.opened)(\"mat-sidenav-fixed\",t.fixedInViewport))},inputs:{fixedInViewport:\"fixedInViewport\",fixedTopGap:\"fixedTopGap\",fixedBottomGap:\"fixedBottomGap\"},exportAs:[\"matSidenav\"],features:[Es],ngContentSelectors:JS,decls:2,vars:0,consts:[[1,\"mat-drawer-inner-container\"]],template:function(e,t){1&e&&(Xo(),Ho(0,\"div\",0),ns(1),Fo())},encapsulation:2,data:{animation:[iL.transformDrawer]},changeDetection:0}),oL),CL=cr(wL),ML=((dL=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return n}(bL)).\\u0275fac=function(e){return SL(e||dL)},dL.\\u0275cmp=bt({type:dL,selectors:[[\"mat-sidenav-container\"]],contentQueries:function(e,t,n){var r;1&e&&(Pu(n,kL,!0),Pu(n,wL,!0)),2&e&&(Yu(r=Hu())&&(t._content=r.first),Yu(r=Hu())&&(t._allDrawers=r))},hostAttrs:[1,\"mat-drawer-container\",\"mat-sidenav-container\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"mat-drawer-container-explicit-backdrop\",t._backdropOverride)},exportAs:[\"matSidenavContainer\"],features:[$s([{provide:vL,useExisting:dL}]),Es],ngContentSelectors:rL,decls:4,vars:2,consts:[[\"class\",\"mat-drawer-backdrop\",3,\"mat-drawer-shown\",\"click\",4,\"ngIf\"],[\"cdkScrollable\",\"\",4,\"ngIf\"],[1,\"mat-drawer-backdrop\",3,\"click\"],[\"cdkScrollable\",\"\"]],template:function(e,t){1&e&&(Xo(nL),Yo(0,eL,1,2,\"div\",0),ns(1),ns(2,1),Yo(3,tL,2,0,\"mat-sidenav-content\",1)),2&e&&(jo(\"ngIf\",t.hasBackdrop),bi(3),jo(\"ngIf\",!t._content))},directives:[Sd,kL,ew],styles:[\".mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\\n\"],encapsulation:2,changeDetection:0}),dL),SL=cr(ML),LL=((hL=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:hL}),hL.\\u0275inj=ve({factory:function(e){return new(e||hL)},imports:[[Nd,zy,nw,Mp],zy]}),hL),TL=[\"thumbContainer\"],xL=[\"toggleBar\"],DL=[\"input\"],OL=function(){return{enterDuration:150}},YL=[\"*\"],EL=new Be(\"mat-slide-toggle-default-options\",{providedIn:\"root\",factory:function(){return{disableToggleValue:!1}}}),IL=0,AL={provide:Wh,useExisting:De((function(){return RL})),multi:!0},PL=function e(t,n){_classCallCheck(this,e),this.source=t,this.checked=n},jL=By(Wy(Uy(Vy((function e(t){_classCallCheck(this,e),this._elementRef=t}))),\"accent\")),RL=((pL=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s,l,u){var c;return _classCallCheck(this,n),(c=t.call(this,e))._focusMonitor=r,c._changeDetectorRef=i,c.defaults=s,c._animationMode=l,c._onChange=function(e){},c._onTouched=function(){},c._uniqueId=\"mat-slide-toggle-\".concat(++IL),c._required=!1,c._checked=!1,c.name=null,c.id=c._uniqueId,c.labelPosition=\"after\",c.ariaLabel=null,c.ariaLabelledby=null,c.change=new bu,c.toggleChange=new bu,c.dragChange=new bu,c.tabIndex=parseInt(a)||0,c}return _createClass(n,[{key:\"ngAfterContentInit\",value:function(){var e=this;this._focusMonitor.monitor(this._elementRef,!0).subscribe((function(t){\"keyboard\"===t||\"program\"===t?e._inputElement.nativeElement.focus():t||Promise.resolve().then((function(){return e._onTouched()}))}))}},{key:\"ngOnDestroy\",value:function(){this._focusMonitor.stopMonitoring(this._elementRef)}},{key:\"_onChangeEvent\",value:function(e){e.stopPropagation(),this.toggleChange.emit(),this.defaults.disableToggleValue?this._inputElement.nativeElement.checked=this.checked:(this.checked=this._inputElement.nativeElement.checked,this._emitChangeEvent())}},{key:\"_onInputClick\",value:function(e){e.stopPropagation()}},{key:\"writeValue\",value:function(e){this.checked=!!e}},{key:\"registerOnChange\",value:function(e){this._onChange=e}},{key:\"registerOnTouched\",value:function(e){this._onTouched=e}},{key:\"setDisabledState\",value:function(e){this.disabled=e,this._changeDetectorRef.markForCheck()}},{key:\"focus\",value:function(e){this._focusMonitor.focusVia(this._inputElement,\"keyboard\",e)}},{key:\"toggle\",value:function(){this.checked=!this.checked,this._onChange(this.checked)}},{key:\"_emitChangeEvent\",value:function(){this._onChange(this.checked),this.change.emit(new PL(this,this.checked))}},{key:\"_onLabelTextChange\",value:function(){this._changeDetectorRef.detectChanges()}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=mp(e)}},{key:\"checked\",get:function(){return this._checked},set:function(e){this._checked=mp(e),this._changeDetectorRef.markForCheck()}},{key:\"inputId\",get:function(){return\"\".concat(this.id||this._uniqueId,\"-input\")}}]),n}(jL)).\\u0275fac=function(e){return new(e||pL)(Io(Qs),Io(t_),Io(eo),Ao(\"tabindex\"),Io(cc),Io(EL),Io(Yy,8),Io(h_,8))},pL.\\u0275cmp=bt({type:pL,selectors:[[\"mat-slide-toggle\"]],viewQuery:function(e,t){var n;1&e&&(Iu(TL,!0),Iu(xL,!0),Iu(DL,!0)),2&e&&(Yu(n=Hu())&&(t._thumbEl=n.first),Yu(n=Hu())&&(t._thumbBarEl=n.first),Yu(n=Hu())&&(t._inputElement=n.first))},hostAttrs:[1,\"mat-slide-toggle\"],hostVars:12,hostBindings:function(e,t){2&e&&(Ds(\"id\",t.id),Do(\"tabindex\",t.disabled?null:-1)(\"aria-label\",null)(\"aria-labelledby\",null),fs(\"mat-checked\",t.checked)(\"mat-disabled\",t.disabled)(\"mat-slide-toggle-label-before\",\"before\"==t.labelPosition)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\",name:\"name\",id:\"id\",labelPosition:\"labelPosition\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],required:\"required\",checked:\"checked\"},outputs:{change:\"change\",toggleChange:\"toggleChange\",dragChange:\"dragChange\"},exportAs:[\"matSlideToggle\"],features:[$s([AL]),Es],ngContentSelectors:YL,decls:16,vars:18,consts:[[1,\"mat-slide-toggle-label\"],[\"label\",\"\"],[1,\"mat-slide-toggle-bar\"],[\"toggleBar\",\"\"],[\"type\",\"checkbox\",\"role\",\"switch\",1,\"mat-slide-toggle-input\",\"cdk-visually-hidden\",3,\"id\",\"required\",\"tabIndex\",\"checked\",\"disabled\",\"change\",\"click\"],[\"input\",\"\"],[1,\"mat-slide-toggle-thumb-container\"],[\"thumbContainer\",\"\"],[1,\"mat-slide-toggle-thumb\"],[\"mat-ripple\",\"\",1,\"mat-slide-toggle-ripple\",\"mat-focus-indicator\",3,\"matRippleTrigger\",\"matRippleDisabled\",\"matRippleCentered\",\"matRippleRadius\",\"matRippleAnimation\"],[1,\"mat-ripple-element\",\"mat-slide-toggle-persistent-ripple\"],[1,\"mat-slide-toggle-content\",3,\"cdkObserveContent\"],[\"labelContent\",\"\"],[2,\"display\",\"none\"]],template:function(e,t){if(1&e&&(Xo(),Ho(0,\"label\",0,1),Ho(2,\"div\",2,3),Ho(4,\"input\",4,5),qo(\"change\",(function(e){return t._onChangeEvent(e)}))(\"click\",(function(e){return t._onInputClick(e)})),Fo(),Ho(6,\"div\",6,7),No(8,\"div\",8),Ho(9,\"div\",9),No(10,\"div\",10),Fo(),Fo(),Fo(),Ho(11,\"span\",11,12),qo(\"cdkObserveContent\",(function(){return t._onLabelTextChange()})),Ho(13,\"span\",13),Ls(14,\"\\xa0\"),Fo(),ns(15),Fo(),Fo()),2&e){var n=Eo(1),r=Eo(12);Do(\"for\",t.inputId),bi(2),fs(\"mat-slide-toggle-bar-no-side-margin\",!r.textContent||!r.textContent.trim()),bi(2),jo(\"id\",t.inputId)(\"required\",t.required)(\"tabIndex\",t.tabIndex)(\"checked\",t.checked)(\"disabled\",t.disabled),Do(\"name\",t.name)(\"aria-checked\",t.checked.toString())(\"aria-label\",t.ariaLabel)(\"aria-labelledby\",t.ariaLabelledby),bi(5),jo(\"matRippleTrigger\",n)(\"matRippleDisabled\",t.disableRipple||t.disabled)(\"matRippleCentered\",!0)(\"matRippleRadius\",20)(\"matRippleAnimation\",yu(17,OL))}},directives:[sb,Hp],styles:[\".mat-slide-toggle{display:inline-block;height:24px;max-width:100%;line-height:24px;white-space:nowrap;outline:none;-webkit-tap-highlight-color:transparent}.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(16px, 0, 0)}[dir=rtl] .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(-16px, 0, 0)}.mat-slide-toggle.mat-disabled{opacity:.38}.mat-slide-toggle.mat-disabled .mat-slide-toggle-label,.mat-slide-toggle.mat-disabled .mat-slide-toggle-thumb-container{cursor:default}.mat-slide-toggle-label{display:flex;flex:1;flex-direction:row;align-items:center;height:inherit;cursor:pointer}.mat-slide-toggle-content{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-slide-toggle-label-before .mat-slide-toggle-label{order:1}.mat-slide-toggle-label-before .mat-slide-toggle-bar{order:2}[dir=rtl] .mat-slide-toggle-label-before .mat-slide-toggle-bar,.mat-slide-toggle-bar{margin-right:8px;margin-left:0}[dir=rtl] .mat-slide-toggle-bar,.mat-slide-toggle-label-before .mat-slide-toggle-bar{margin-left:8px;margin-right:0}.mat-slide-toggle-bar-no-side-margin{margin-left:0;margin-right:0}.mat-slide-toggle-thumb-container{position:absolute;z-index:1;width:20px;height:20px;top:-3px;left:0;transform:translate3d(0, 0, 0);transition:all 80ms linear;transition-property:transform}._mat-animation-noopable .mat-slide-toggle-thumb-container{transition:none}[dir=rtl] .mat-slide-toggle-thumb-container{left:auto;right:0}.mat-slide-toggle-thumb{height:20px;width:20px;border-radius:50%}.mat-slide-toggle-bar{position:relative;width:36px;height:14px;flex-shrink:0;border-radius:8px}.mat-slide-toggle-input{bottom:0;left:10px}[dir=rtl] .mat-slide-toggle-input{left:auto;right:10px}.mat-slide-toggle-bar,.mat-slide-toggle-thumb{transition:all 80ms linear;transition-property:background-color;transition-delay:50ms}._mat-animation-noopable .mat-slide-toggle-bar,._mat-animation-noopable .mat-slide-toggle-thumb{transition:none}.mat-slide-toggle .mat-slide-toggle-ripple{position:absolute;top:calc(50% - 20px);left:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}.mat-slide-toggle .mat-slide-toggle-ripple .mat-ripple-element:not(.mat-slide-toggle-persistent-ripple){opacity:.12}.mat-slide-toggle-persistent-ripple{width:100%;height:100%;transform:none}.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:.04}.mat-slide-toggle:not(.mat-disabled).cdk-keyboard-focused .mat-slide-toggle-persistent-ripple{opacity:.12}.mat-slide-toggle-persistent-ripple,.mat-slide-toggle.mat-disabled .mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:0}@media(hover: none){.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{display:none}}.cdk-high-contrast-active .mat-slide-toggle-thumb,.cdk-high-contrast-active .mat-slide-toggle-bar{border:1px solid}.cdk-high-contrast-active .mat-slide-toggle.cdk-keyboard-focused .mat-slide-toggle-bar{outline:2px dotted;outline-offset:5px}\\n\"],encapsulation:2,changeDetection:0}),pL),HL=((mL=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:mL}),mL.\\u0275inj=ve({factory:function(e){return new(e||mL)}}),mL),FL=((fL=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:fL}),fL.\\u0275inj=ve({factory:function(e){return new(e||fL)},imports:[[HL,lb,zy,Fp],HL,zy]}),fL),NL={};function zL(){for(var e=arguments.length,t=new Array(e),n=0;n` elements explicitly or just place content inside of a `` for a single row.\")}()}}]),n}(ZL)).\\u0275fac=function(e){return new(e||UL)(Io(Qs),Io(Cp),Io(Wc))},UL.\\u0275cmp=bt({type:UL,selectors:[[\"mat-toolbar\"]],contentQueries:function(e,t,n){var r;1&e&&Pu(n,QL,!0),2&e&&Yu(r=Hu())&&(t._toolbarRows=r)},hostAttrs:[1,\"mat-toolbar\"],hostVars:4,hostBindings:function(e,t){2&e&&fs(\"mat-toolbar-multiple-rows\",t._toolbarRows.length>0)(\"mat-toolbar-single-row\",0===t._toolbarRows.length)},inputs:{color:\"color\"},exportAs:[\"matToolbar\"],features:[Es],ngContentSelectors:KL,decls:2,vars:0,template:function(e,t){1&e&&(Xo(JL),ns(0),ns(1,1))},styles:[\".cdk-high-contrast-active .mat-toolbar{outline:solid 1px}.mat-toolbar-row,.mat-toolbar-single-row{display:flex;box-sizing:border-box;padding:0 16px;width:100%;flex-direction:row;align-items:center;white-space:nowrap}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}\\n\"],encapsulation:2,changeDetection:0}),UL),eT=((WL=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:WL}),WL.\\u0275inj=ve({factory:function(e){return new(e||WL)},imports:[[zy],zy]}),WL),tT=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this))._value=e,r}return _createClass(n,[{key:\"_subscribe\",value:function(e){var t=_get(_getPrototypeOf(n.prototype),\"_subscribe\",this).call(this,e);return t&&!t.closed&&e.next(this._value),t}},{key:\"getValue\",value:function(){if(this.hasError)throw this.thrownError;if(this.closed)throw new S;return this._value}},{key:\"next\",value:function(e){_get(_getPrototypeOf(n.prototype),\"next\",this).call(this,this._value=e)}},{key:\"value\",get:function(){return this.getValue()}}]),n}(x),nT=new w(g);function rT(){return nT}function iT(){for(var e=arguments.length,t=new Array(e),n=0;n0){var o=a.indexOf(n);-1!==o&&a.splice(o,1)}}},{key:\"notifyComplete\",value:function(){}},{key:\"_next\",value:function(e){if(0===this.toRespond.length){var t=[e].concat(_toConsumableArray(this.values));this.project?this._tryProject(t):this.destination.next(t)}}},{key:\"_tryProject\",value:function(e){var t;try{t=this.project.apply(this,e)}catch(n){return void this.destination.error(n)}this.destination.next(t)}}]),n}(H),sT=[\"aria-label\",$localize(_templateObject())];function lT(e,t){if(1&e){var n=Wo();Ho(0,\"button\",1),iu(1,sT),qo(\"click\",(function(){return nn(n),Zo().closeHandler()})),Ho(2,\"span\",2),Ls(3,\"\\xd7\"),Fo(),Fo()}}var uT,cT,dT=[\"*\"];function hT(e,t){if(1&e){var n=Wo();Ho(0,\"li\",7),qo(\"click\",(function(){nn(n);var e=t.$implicit,r=Zo(2);return r.select(e.id,r.NgbSlideEventSource.INDICATOR)})),Fo()}if(2&e){var r=t.$implicit,i=Zo(2);fs(\"active\",r.id===i.activeId),jo(\"id\",r.id)}}function fT(e,t){if(1&e&&(Ho(0,\"ol\",5),Yo(1,hT,1,3,\"li\",6),Fo()),2&e){var n=Zo();bi(1),jo(\"ngForOf\",n.slides)}}function mT(e,t){}function pT(e,t){if(1&e&&(Ho(0,\"div\",8),Yo(1,mT,0,0,\"ng-template\",9),Fo()),2&e){var n=t.$implicit,r=Zo();fs(\"active\",n.id===r.activeId),bi(1),jo(\"ngTemplateOutlet\",n.tplRef)}}function _T(e,t){if(1&e){var n=Wo();Ho(0,\"a\",10),qo(\"click\",(function(){nn(n);var e=Zo();return e.prev(e.NgbSlideEventSource.ARROW_LEFT)})),No(1,\"span\",11),Ho(2,\"span\",12),ru(3,uT),Fo(),Fo()}}function vT(e,t){if(1&e){var n=Wo();Ho(0,\"a\",13),qo(\"click\",(function(){nn(n);var e=Zo();return e.next(e.NgbSlideEventSource.ARROW_RIGHT)})),No(1,\"span\",14),Ho(2,\"span\",12),ru(3,cT),Fo(),Fo()}}function gT(e){return null!=e}uT=$localize(_templateObject2()),cT=$localize(_templateObject3()),$localize(_templateObject4()),$localize(_templateObject5()),$localize(_templateObject6()),$localize(_templateObject7()),$localize(_templateObject8()),$localize(_templateObject9()),$localize(_templateObject10()),$localize(_templateObject11()),$localize(_templateObject12()),$localize(_templateObject13()),$localize(_templateObject14()),$localize(_templateObject15()),$localize(_templateObject16()),$localize(_templateObject17()),$localize(_templateObject18()),$localize(_templateObject19()),$localize(_templateObject20(),\"\\ufffd0\\ufffd\"),$localize(_templateObject21()),$localize(_templateObject22()),$localize(_templateObject23()),$localize(_templateObject24()),$localize(_templateObject25()),$localize(_templateObject26()),$localize(_templateObject27()),$localize(_templateObject28()),$localize(_templateObject29()),$localize(_templateObject30()),$localize(_templateObject31()),$localize(_templateObject32()),$localize(_templateObject33(),\"\\ufffd0\\ufffd\"),$localize(_templateObject34(),\"\\ufffd0\\ufffd\"),$localize(_templateObject35()),\"undefined\"==typeof Element||Element.prototype.closest||(Element.prototype.matches||(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector),Element.prototype.closest=function(e){var t=this;if(!document.documentElement.contains(t))return null;do{if(t.matches(e))return t;t=t.parentElement||t.parentNode}while(null!==t&&1===t.nodeType);return null});var yT,bT,kT,wT,CT,MT,ST,LT,TT,xT,DT,OT=((LT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:LT}),LT.\\u0275inj=ve({factory:function(e){return new(e||LT)},imports:[[Nd]]}),LT),YT=((ST=function e(){_classCallCheck(this,e),this.dismissible=!0,this.type=\"warning\"}).\\u0275prov=_e({token:ST,factory:ST.\\u0275fac=function(e){return new(e||ST)},providedIn:\"root\"}),ST.ngInjectableDef=_e({factory:function(){return new ST},token:ST,providedIn:\"root\"}),ST),ET=((MT=function(){function e(t,n,r){_classCallCheck(this,e),this._renderer=n,this._element=r,this.close=new bu,this.dismissible=t.dismissible,this.type=t.type}return _createClass(e,[{key:\"closeHandler\",value:function(){this.close.emit(null)}},{key:\"ngOnChanges\",value:function(e){var t=e.type;t&&!t.firstChange&&(this._renderer.removeClass(this._element.nativeElement,\"alert-\".concat(t.previousValue)),this._renderer.addClass(this._element.nativeElement,\"alert-\".concat(t.currentValue)))}},{key:\"ngOnInit\",value:function(){this._renderer.addClass(this._element.nativeElement,\"alert-\".concat(this.type))}}]),e}()).\\u0275fac=function(e){return new(e||MT)(Io(YT),Io(nl),Io(Qs))},MT.\\u0275cmp=bt({type:MT,selectors:[[\"ngb-alert\"]],hostAttrs:[\"role\",\"alert\",1,\"alert\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"alert-dismissible\",t.dismissible)},inputs:{dismissible:\"dismissible\",type:\"type\"},outputs:{close:\"close\"},features:[Hs],ngContentSelectors:dT,decls:2,vars:1,consts:[[\"type\",\"button\",\"class\",\"close\",\"aria-label\",\"Close\",3,\"click\",4,\"ngIf\"],[\"type\",\"button\",1,\"close\",3,\"click\",6,\"aria-label\"],[\"aria-hidden\",\"true\"]],template:function(e,t){1&e&&(Xo(),ns(0),Yo(1,lT,4,0,\"button\",0)),2&e&&(bi(1),jo(\"ngIf\",t.dismissible))},directives:[Sd],styles:[\"ngb-alert{display:block}\"],encapsulation:2,changeDetection:0}),MT),IT=((CT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:CT}),CT.\\u0275inj=ve({factory:function(e){return new(e||CT)},imports:[[Nd]]}),CT),AT=((wT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:wT}),wT.\\u0275inj=ve({factory:function(e){return new(e||wT)}}),wT),PT=((kT=function e(){_classCallCheck(this,e),this.interval=5e3,this.wrap=!0,this.keyboard=!0,this.pauseOnHover=!0,this.showNavigationArrows=!0,this.showNavigationIndicators=!0}).\\u0275prov=_e({token:kT,factory:kT.\\u0275fac=function(e){return new(e||kT)},providedIn:\"root\"}),kT.ngInjectableDef=_e({factory:function(){return new kT},token:kT,providedIn:\"root\"}),kT),jT=0,RT=((bT=function e(t){_classCallCheck(this,e),this.tplRef=t,this.id=\"ngb-slide-\".concat(jT++)}).\\u0275fac=function(e){return new(e||bT)(Io(wl))},bT.\\u0275dir=Lt({type:bT,selectors:[[\"ng-template\",\"ngbSlide\",\"\"]],inputs:{id:\"id\"}}),bT),HT=((yT=function(){function e(t,n,r,i){_classCallCheck(this,e),this._platformId=n,this._ngZone=r,this._cd=i,this.NgbSlideEventSource=NT,this._destroy$=new x,this._interval$=new tT(0),this._mouseHover$=new tT(!1),this._pauseOnHover$=new tT(!1),this._pause$=new tT(!1),this._wrap$=new tT(!1),this.slide=new bu,this.interval=t.interval,this.wrap=t.wrap,this.keyboard=t.keyboard,this.pauseOnHover=t.pauseOnHover,this.showNavigationArrows=t.showNavigationArrows,this.showNavigationIndicators=t.showNavigationIndicators}return _createClass(e,[{key:\"mouseEnter\",value:function(){this._mouseHover$.next(!0)}},{key:\"mouseLeave\",value:function(){this._mouseHover$.next(!1)}},{key:\"ngAfterContentInit\",value:function(){var e=this;zd(this._platformId)&&this._ngZone.runOutsideAngular((function(){var t=zL(e.slide.pipe(F((function(e){return e.current})),sv(e.activeId)),e._wrap$,e.slides.changes.pipe(sv(null))).pipe(F((function(t){var n=_slicedToArray(t,2),r=n[0],i=n[1],a=e.slides.toArray(),o=e._getSlideIdxById(r);return i?a.length>1:o0?Dk(e,e):nT})),Ek(e._destroy$)).subscribe((function(){return e._ngZone.run((function(){return e.next(NT.TIMER)}))}))})),this.slides.changes.pipe(Ek(this._destroy$)).subscribe((function(){return e._cd.markForCheck()}))}},{key:\"ngAfterContentChecked\",value:function(){var e=this._getSlideById(this.activeId);this.activeId=e?e.id:this.slides.length?this.slides.first.id:null}},{key:\"ngOnDestroy\",value:function(){this._destroy$.next()}},{key:\"select\",value:function(e,t){this._cycleToSelected(e,this._getSlideEventDirection(this.activeId,e),t)}},{key:\"prev\",value:function(e){this._cycleToSelected(this._getPrevSlide(this.activeId),FT.RIGHT,e)}},{key:\"next\",value:function(e){this._cycleToSelected(this._getNextSlide(this.activeId),FT.LEFT,e)}},{key:\"pause\",value:function(){this._pause$.next(!0)}},{key:\"cycle\",value:function(){this._pause$.next(!1)}},{key:\"_cycleToSelected\",value:function(e,t,n){var r=this._getSlideById(e);r&&r.id!==this.activeId&&(this.slide.emit({prev:this.activeId,current:r.id,direction:t,paused:this._pause$.value,source:n}),this.activeId=r.id),this._cd.markForCheck()}},{key:\"_getSlideEventDirection\",value:function(e,t){return this._getSlideIdxById(e)>this._getSlideIdxById(t)?FT.RIGHT:FT.LEFT}},{key:\"_getSlideById\",value:function(e){return this.slides.find((function(t){return t.id===e}))}},{key:\"_getSlideIdxById\",value:function(e){return this.slides.toArray().indexOf(this._getSlideById(e))}},{key:\"_getNextSlide\",value:function(e){var t=this.slides.toArray(),n=this._getSlideIdxById(e);return n===t.length-1?this.wrap?t[0].id:t[t.length-1].id:t[n+1].id}},{key:\"_getPrevSlide\",value:function(e){var t=this.slides.toArray(),n=this._getSlideIdxById(e);return 0===n?this.wrap?t[t.length-1].id:t[0].id:t[n-1].id}},{key:\"interval\",set:function(e){this._interval$.next(e)},get:function(){return this._interval$.value}},{key:\"wrap\",set:function(e){this._wrap$.next(e)},get:function(){return this._wrap$.value}},{key:\"pauseOnHover\",set:function(e){this._pauseOnHover$.next(e)},get:function(){return this._pauseOnHover$.value}}]),e}()).\\u0275fac=function(e){return new(e||yT)(Io(PT),Io($u),Io(cc),Io(eo))},yT.\\u0275cmp=bt({type:yT,selectors:[[\"ngb-carousel\"]],contentQueries:function(e,t,n){var r;1&e&&Pu(n,RT,!1),2&e&&Yu(r=Hu())&&(t.slides=r)},hostAttrs:[\"tabIndex\",\"0\",1,\"carousel\",\"slide\"],hostVars:2,hostBindings:function(e,t){1&e&&qo(\"keydown.arrowLeft\",(function(){return t.keyboard&&t.prev(t.NgbSlideEventSource.ARROW_LEFT)}))(\"keydown.arrowRight\",(function(){return t.keyboard&&t.next(t.NgbSlideEventSource.ARROW_RIGHT)}))(\"mouseenter\",(function(){return t.mouseEnter()}))(\"mouseleave\",(function(){return t.mouseLeave()})),2&e&&hs(\"display\",\"block\")},inputs:{interval:\"interval\",wrap:\"wrap\",keyboard:\"keyboard\",pauseOnHover:\"pauseOnHover\",showNavigationArrows:\"showNavigationArrows\",showNavigationIndicators:\"showNavigationIndicators\",activeId:\"activeId\"},outputs:{slide:\"slide\"},exportAs:[\"ngbCarousel\"],decls:5,vars:4,consts:[[\"class\",\"carousel-indicators\",4,\"ngIf\"],[1,\"carousel-inner\"],[\"class\",\"carousel-item\",3,\"active\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"carousel-control-prev\",\"role\",\"button\",3,\"click\",4,\"ngIf\"],[\"class\",\"carousel-control-next\",\"role\",\"button\",3,\"click\",4,\"ngIf\"],[1,\"carousel-indicators\"],[3,\"id\",\"active\",\"click\",4,\"ngFor\",\"ngForOf\"],[3,\"id\",\"click\"],[1,\"carousel-item\"],[3,\"ngTemplateOutlet\"],[\"role\",\"button\",1,\"carousel-control-prev\",3,\"click\"],[\"aria-hidden\",\"true\",1,\"carousel-control-prev-icon\"],[1,\"sr-only\"],[\"role\",\"button\",1,\"carousel-control-next\",3,\"click\"],[\"aria-hidden\",\"true\",1,\"carousel-control-next-icon\"]],template:function(e,t){1&e&&(Yo(0,fT,2,1,\"ol\",0),Ho(1,\"div\",1),Yo(2,pT,2,3,\"div\",2),Fo(),Yo(3,_T,4,0,\"a\",3),Yo(4,vT,4,0,\"a\",4)),2&e&&(jo(\"ngIf\",t.showNavigationIndicators),bi(2),jo(\"ngForOf\",t.slides),bi(1),jo(\"ngIf\",t.showNavigationArrows),bi(1),jo(\"ngIf\",t.showNavigationArrows))},directives:[Sd,Cd,Fd],encapsulation:2,changeDetection:0}),yT),FT={LEFT:\"left\",RIGHT:\"right\"},NT={TIMER:\"timer\",ARROW_LEFT:\"arrowLeft\",ARROW_RIGHT:\"arrowRight\",INDICATOR:\"indicator\"},zT=((DT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:DT}),DT.\\u0275inj=ve({factory:function(e){return new(e||DT)},imports:[[Nd]]}),DT),VT=((xT=function e(){_classCallCheck(this,e),this.collapsed=!1}).\\u0275fac=function(e){return new(e||xT)},xT.\\u0275dir=Lt({type:xT,selectors:[[\"\",\"ngbCollapse\",\"\"]],hostVars:4,hostBindings:function(e,t){2&e&&fs(\"collapse\",!0)(\"show\",!t.collapsed)},inputs:{collapsed:[\"ngbCollapse\",\"collapsed\"]},exportAs:[\"ngbCollapse\"]}),xT),WT=((TT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:TT}),TT.\\u0275inj=ve({factory:function(e){return new(e||TT)}}),TT),UT=function(){var e={Tab:9,Enter:13,Escape:27,Space:32,PageUp:33,PageDown:34,End:35,Home:36,ArrowLeft:37,ArrowUp:38,ArrowRight:39,ArrowDown:40};return e[e.Tab]=\"Tab\",e[e.Enter]=\"Enter\",e[e.Escape]=\"Escape\",e[e.Space]=\"Space\",e[e.PageUp]=\"PageUp\",e[e.PageDown]=\"PageDown\",e[e.End]=\"End\",e[e.Home]=\"Home\",e[e.ArrowLeft]=\"ArrowLeft\",e[e.ArrowUp]=\"ArrowUp\",e[e.ArrowRight]=\"ArrowRight\",e[e.ArrowDown]=\"ArrowDown\",e}();\"undefined\"!=typeof navigator&&navigator.userAgent&&navigator;var BT=[\"a[href]\",\"button:not([disabled])\",'input:not([disabled]):not([type=\"hidden\"])',\"select:not([disabled])\",\"textarea:not([disabled])\",\"[contenteditable]\",'[tabindex]:not([tabindex=\"-1\"])'].join(\", \");function qT(e){var t=Array.from(e.querySelectorAll(BT)).filter((function(e){return-1!==e.tabIndex}));return[t[0],t[t.length-1]]}var GT,$T,JT,KT,ZT,QT,XT,ex,tx,nx,rx,ix,ax,ox,sx,lx,ux,cx,dx,hx=((JT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:JT}),JT.\\u0275inj=ve({factory:function(e){return new(e||JT)},imports:[[Nd,Gm]]}),JT),fx=(($T=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:$T}),$T.\\u0275inj=ve({factory:function(e){return new(e||$T)}}),$T),mx=((GT=function e(){_classCallCheck(this,e),this.backdrop=!0,this.keyboard=!0}).\\u0275prov=_e({token:GT,factory:GT.\\u0275fac=function(e){return new(e||GT)},providedIn:\"root\"}),GT.ngInjectableDef=_e({factory:function(){return new GT},token:GT,providedIn:\"root\"}),GT),px=function e(t,n,r){_classCallCheck(this,e),this.nodes=t,this.viewRef=n,this.componentRef=r},_x=function(){},vx=((ZT=function(){function e(t){_classCallCheck(this,e),this._document=t}return _createClass(e,[{key:\"compensate\",value:function(){return this._isPresent()?this._adjustBody(this._getWidth()):_x}},{key:\"_adjustBody\",value:function(e){var t=this._document.body,n=t.style.paddingRight,r=parseFloat(window.getComputedStyle(t)[\"padding-right\"]);return t.style[\"padding-right\"]=\"\".concat(r+e,\"px\"),function(){return t.style[\"padding-right\"]=n}}},{key:\"_isPresent\",value:function(){var e=this._document.body.getBoundingClientRect();return e.left+e.right3&&void 0!==arguments[3]&&arguments[3];s._ngZone.runOutsideAngular((function(){var e=mk(t,\"focusin\").pipe(Ek(n),F((function(e){return e.target})));mk(t,\"keydown\").pipe(Ek(n),Gd((function(e){return e.which===UT.Tab})),iT(e)).subscribe((function(e){var n=_slicedToArray(e,2),r=n[0],i=n[1],a=_slicedToArray(qT(t),2),o=a[0],s=a[1];i!==o&&i!==t||!r.shiftKey||(s.focus(),r.preventDefault()),i!==s||r.shiftKey||(o.focus(),r.preventDefault())})),r&&mk(t,\"click\").pipe(Ek(n),iT(e),F((function(e){return e[1]}))).subscribe((function(e){return e.focus()}))}))})(0,e.location.nativeElement,s._activeWindowCmptHasChanged),s._revertAriaHidden(),s._setAriaHidden(e.location.nativeElement)}}))}return _createClass(e,[{key:\"open\",value:function(e,t,n,r){var i=this,a=gT(r.container)?this._document.querySelector(r.container):this._document.body,o=this._rendererFactory.createRenderer(null,null),s=this._scrollBar.compensate(),l=function(){i._modalRefs.length||(o.removeClass(i._document.body,\"modal-open\"),i._revertAriaHidden())};if(!a)throw new Error('The specified modal container \"'.concat(r.container||\"body\",'\" was not found in the DOM.'));var u=new yx,c=this._getContentRef(e,r.injector||t,n,u,r),d=!1!==r.backdrop?this._attachBackdrop(e,a):null,h=this._attachWindowComponent(e,a,c),f=new bx(h,c,d,r.beforeDismiss);return this._registerModalRef(f),this._registerWindowCmpt(h),f.result.then(s,s),f.result.then(l,l),u.close=function(e){f.close(e)},u.dismiss=function(e){f.dismiss(e)},this._applyWindowOptions(h.instance,r),1===this._modalRefs.length&&o.addClass(this._document.body,\"modal-open\"),d&&d.instance&&this._applyBackdropOptions(d.instance,r),f}},{key:\"dismissAll\",value:function(e){this._modalRefs.forEach((function(t){return t.dismiss(e)}))}},{key:\"hasOpenModals\",value:function(){return this._modalRefs.length>0}},{key:\"_attachBackdrop\",value:function(e,t){var n=e.resolveComponentFactory(gx).create(this._injector);return this._applicationRef.attachView(n.hostView),t.appendChild(n.location.nativeElement),n}},{key:\"_attachWindowComponent\",value:function(e,t,n){var r=e.resolveComponentFactory(wx).create(this._injector,n.nodes);return this._applicationRef.attachView(r.hostView),t.appendChild(r.location.nativeElement),r}},{key:\"_applyWindowOptions\",value:function(e,t){this._windowAttributes.forEach((function(n){gT(t[n])&&(e[n]=t[n])}))}},{key:\"_applyBackdropOptions\",value:function(e,t){this._backdropAttributes.forEach((function(n){gT(t[n])&&(e[n]=t[n])}))}},{key:\"_getContentRef\",value:function(e,t,n,r,i){return n?n instanceof wl?this._createFromTemplateRef(n,r):\"string\"==typeof n?this._createFromString(n):this._createFromComponent(e,t,n,r,i):new px([])}},{key:\"_createFromTemplateRef\",value:function(e,t){var n=e.createEmbeddedView({$implicit:t,close:function(e){t.close(e)},dismiss:function(e){t.dismiss(e)}});return this._applicationRef.attachView(n),new px([n.rootNodes],n)}},{key:\"_createFromString\",value:function(e){var t=this._document.createTextNode(\"\".concat(e));return new px([[t]])}},{key:\"_createFromComponent\",value:function(e,t,n,r,i){var a=e.resolveComponentFactory(n),o=vo.create({providers:[{provide:yx,useValue:r}],parent:t}),s=a.create(o),l=s.location.nativeElement;return i.scrollable&&l.classList.add(\"component-host-scrollable\"),this._applicationRef.attachView(s.hostView),new px([[l]],s.hostView,s)}},{key:\"_setAriaHidden\",value:function(e){var t=this,n=e.parentElement;n&&e!==this._document.body&&(Array.from(n.children).forEach((function(n){n!==e&&\"SCRIPT\"!==n.nodeName&&(t._ariaHiddenValues.set(n,n.getAttribute(\"aria-hidden\")),n.setAttribute(\"aria-hidden\",\"true\"))})),this._setAriaHidden(n))}},{key:\"_revertAriaHidden\",value:function(){this._ariaHiddenValues.forEach((function(e,t){e?t.setAttribute(\"aria-hidden\",e):t.removeAttribute(\"aria-hidden\")})),this._ariaHiddenValues.clear()}},{key:\"_registerModalRef\",value:function(e){var t=this,n=function(){var n=t._modalRefs.indexOf(e);n>-1&&t._modalRefs.splice(n,1)};this._modalRefs.push(e),e.result.then(n,n)}},{key:\"_registerWindowCmpt\",value:function(e){var t=this;this._windowCmpts.push(e),this._activeWindowCmptHasChanged.next(),e.onDestroy((function(){var n=t._windowCmpts.indexOf(e);n>-1&&(t._windowCmpts.splice(n,1),t._activeWindowCmptHasChanged.next())}))}}]),e}()).\\u0275fac=function(e){return new(e||ux)(et(Oc),et(vo),et(Wc),et(vx),et(el),et(cc))},ux.\\u0275prov=_e({token:ux,factory:ux.\\u0275fac,providedIn:\"root\"}),ux.ngInjectableDef=_e({factory:function(){return new ux(et(Oc),et(qe),et(Wc),et(vx),et(el),et(cc))},token:ux,providedIn:\"root\"}),ux),Mx=((lx=function(){function e(t,n,r,i){_classCallCheck(this,e),this._moduleCFR=t,this._injector=n,this._modalStack=r,this._config=i}return _createClass(e,[{key:\"open\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=Object.assign({},this._config,t);return this._modalStack.open(this._moduleCFR,this._injector,e,n)}},{key:\"dismissAll\",value:function(e){this._modalStack.dismissAll(e)}},{key:\"hasOpenModals\",value:function(){return this._modalStack.hasOpenModals()}}]),e}()).\\u0275fac=function(e){return new(e||lx)(et(Zs),et(vo),et(Cx),et(mx))},lx.\\u0275prov=_e({token:lx,factory:lx.\\u0275fac,providedIn:\"root\"}),lx.ngInjectableDef=_e({factory:function(){return new lx(et(Zs),et(qe),et(Cx),et(mx))},token:lx,providedIn:\"root\"}),lx),Sx=((sx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:sx}),sx.\\u0275inj=ve({factory:function(e){return new(e||sx)},providers:[Mx]}),sx),Lx=((ox=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:ox}),ox.\\u0275inj=ve({factory:function(e){return new(e||ox)},imports:[[Nd]]}),ox),Tx=((ax=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:ax}),ax.\\u0275inj=ve({factory:function(e){return new(e||ax)},imports:[[Nd]]}),ax),xx=((ix=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:ix}),ix.\\u0275inj=ve({factory:function(e){return new(e||ix)},imports:[[Nd]]}),ix),Dx=((rx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:rx}),rx.\\u0275inj=ve({factory:function(e){return new(e||rx)},imports:[[Nd]]}),rx),Ox=((nx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:nx}),nx.\\u0275inj=ve({factory:function(e){return new(e||nx)},imports:[[Nd]]}),nx),Yx=((tx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:tx}),tx.\\u0275inj=ve({factory:function(e){return new(e||tx)},imports:[[Nd]]}),tx),Ex=((ex=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:ex}),ex.\\u0275inj=ve({factory:function(e){return new(e||ex)},imports:[[Nd]]}),ex),Ix=((XT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:XT}),XT.\\u0275inj=ve({factory:function(e){return new(e||XT)}}),XT),Ax=((QT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:QT}),QT.\\u0275inj=ve({factory:function(e){return new(e||QT)},imports:[[Nd]]}),QT),Px=[OT,IT,AT,zT,WT,hx,fx,Sx,Lx,Tx,xx,Dx,Ox,Yx,Ex,Ix,Ax],jx=((dx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:dx}),dx.\\u0275inj=ve({factory:function(e){return new(e||dx)},imports:[Px,OT,IT,AT,zT,WT,hx,fx,Sx,Lx,Tx,xx,Dx,Ox,Yx,Ex,Ix,Ax]}),dx),Rx=n(\"aCrv\"),Hx=[\"header\"],Fx=[\"container\"],Nx=[\"content\"],zx=[\"invisiblePadding\"],Vx=[\"*\"];function Wx(){return{scrollThrottlingTime:0,scrollDebounceTime:0,scrollAnimationTime:750,checkResizeInterval:1e3,resizeBypassRefreshThreshold:5,modifyOverflowStyleOfParentScroll:!0,stripedTable:!1}}var Ux,Bx,qx,Gx=((Bx=function(){function e(t,n,r,i,a,o){_classCallCheck(this,e),this.element=t,this.renderer=n,this.zone=r,this.changeDetectorRef=i,this.window=window,this.executeRefreshOutsideAngularZone=!1,this._enableUnequalChildrenSizes=!1,this.useMarginInsteadOfTranslate=!1,this.ssrViewportWidth=1920,this.ssrViewportHeight=1080,this._bufferAmount=0,this._items=[],this.compareItems=function(e,t){return e===t},this.vsUpdate=new bu,this.vsChange=new bu,this.vsStart=new bu,this.vsEnd=new bu,this.calculatedScrollbarWidth=0,this.calculatedScrollbarHeight=0,this.padding=0,this.previousViewPort={},this.cachedPageSize=0,this.previousScrollNumberElements=0,this.isAngularUniversalSSR=function(e){return\"server\"===e}(a),this.scrollThrottlingTime=o.scrollThrottlingTime,this.scrollDebounceTime=o.scrollDebounceTime,this.scrollAnimationTime=o.scrollAnimationTime,this.scrollbarWidth=o.scrollbarWidth,this.scrollbarHeight=o.scrollbarHeight,this.checkResizeInterval=o.checkResizeInterval,this.resizeBypassRefreshThreshold=o.resizeBypassRefreshThreshold,this.modifyOverflowStyleOfParentScroll=o.modifyOverflowStyleOfParentScroll,this.stripedTable=o.stripedTable,this.horizontal=!1,this.resetWrapGroupDimensions()}return _createClass(e,[{key:\"updateOnScrollFunction\",value:function(){var e=this;this.onScroll=this.scrollDebounceTime?this.debounce((function(){e.refresh_internal(!1)}),this.scrollDebounceTime):this.scrollThrottlingTime?this.throttleTrailing((function(){e.refresh_internal(!1)}),this.scrollThrottlingTime):function(){e.refresh_internal(!1)}}},{key:\"revertParentOverscroll\",value:function(){var e=this.getScrollElement();e&&this.oldParentScrollOverflow&&(e.style[\"overflow-y\"]=this.oldParentScrollOverflow.y,e.style[\"overflow-x\"]=this.oldParentScrollOverflow.x),this.oldParentScrollOverflow=void 0}},{key:\"ngOnInit\",value:function(){this.addScrollEventHandlers()}},{key:\"ngOnDestroy\",value:function(){this.removeScrollEventHandlers(),this.revertParentOverscroll()}},{key:\"ngOnChanges\",value:function(e){var t=this.cachedItemsLength!==this.items.length;this.cachedItemsLength=this.items.length,this.refresh_internal(t||!e.items||!e.items.previousValue||0===e.items.previousValue.length)}},{key:\"ngDoCheck\",value:function(){if(this.cachedItemsLength!==this.items.length)return this.cachedItemsLength=this.items.length,void this.refresh_internal(!0);if(this.previousViewPort&&this.viewPortItems&&this.viewPortItems.length>0){for(var e=!1,t=0;t=0&&this.invalidateCachedMeasurementAtIndex(t)}else this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0;this.refresh_internal(!1)}},{key:\"invalidateCachedMeasurementAtIndex\",value:function(e){if(this.enableUnequalChildrenSizes){var t=this.wrapGroupDimensions.maxChildSizePerWrapGroup[e];t&&(this.wrapGroupDimensions.maxChildSizePerWrapGroup[e]=void 0,--this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes,this.wrapGroupDimensions.sumOfKnownWrapGroupChildWidths-=t.childWidth||0,this.wrapGroupDimensions.sumOfKnownWrapGroupChildHeights-=t.childHeight||0)}else this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0;this.refresh_internal(!1)}},{key:\"scrollInto\",value:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=arguments.length>3?arguments[3]:void 0,i=arguments.length>4?arguments[4]:void 0,a=this.items.indexOf(e);-1!==a&&this.scrollToIndex(a,t,n,r,i)}},{key:\"scrollToIndex\",value:function(e){var t=this,n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,i=arguments.length>3?arguments[3]:void 0,a=arguments.length>4?arguments[4]:void 0,o=5,s=function i(){if(--o<=0)a&&a();else{var s=t.calculateDimensions(),l=Math.min(Math.max(e,0),s.itemCount-1);t.previousViewPort.startIndex!==l?t.scrollToIndex_internal(e,n,r,0,i):a&&a()}};this.scrollToIndex_internal(e,n,r,i,s)}},{key:\"scrollToIndex_internal\",value:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=arguments.length>3?arguments[3]:void 0,i=arguments.length>4?arguments[4]:void 0;r=void 0===r?this.scrollAnimationTime:r;var a=this.calculateDimensions(),o=this.calculatePadding(e,a)+n;t||(o-=a.wrapGroupsPerPage*a[this._childScrollDim]),this.scrollToPosition(o,r,i)}},{key:\"scrollToPosition\",value:function(e,t,n){var r=this;e+=this.getElementsOffset(),t=void 0===t?this.scrollAnimationTime:t;var i,a=this.getScrollElement();if(this.currentTween&&(this.currentTween.stop(),this.currentTween=void 0),!t)return this.renderer.setProperty(a,this._scrollType,e),void this.refresh_internal(!1,n);var o={scrollPosition:a[this._scrollType]},s=new Rx.Tween(o).to({scrollPosition:e},t).easing(Rx.Easing.Quadratic.Out).onUpdate((function(e){isNaN(e.scrollPosition)||(r.renderer.setProperty(a,r._scrollType,e.scrollPosition),r.refresh_internal(!1))})).onStop((function(){cancelAnimationFrame(i)})).start();(function t(a){s.isPlaying()&&(s.update(a),o.scrollPosition!==e?r.zone.runOutsideAngular((function(){i=requestAnimationFrame(t)})):r.refresh_internal(!1,n))})(),this.currentTween=s}},{key:\"getElementSize\",value:function(e){var t=e.getBoundingClientRect(),n=getComputedStyle(e),r=parseInt(n[\"margin-top\"],10)||0,i=parseInt(n[\"margin-bottom\"],10)||0,a=parseInt(n[\"margin-left\"],10)||0,o=parseInt(n[\"margin-right\"],10)||0;return{top:t.top+r,bottom:t.bottom+i,left:t.left+a,right:t.right+o,width:t.width+a+o,height:t.height+r+i}}},{key:\"checkScrollElementResized\",value:function(){var e,t=this.getElementSize(this.getScrollElement());if(this.previousScrollBoundingRect){var n=Math.abs(t.width-this.previousScrollBoundingRect.width),r=Math.abs(t.height-this.previousScrollBoundingRect.height);e=n>this.resizeBypassRefreshThreshold||r>this.resizeBypassRefreshThreshold}else e=!0;e&&(this.previousScrollBoundingRect=t,t.width>0&&t.height>0&&this.refresh_internal(!1))}},{key:\"updateDirection\",value:function(){this.horizontal?(this._invisiblePaddingProperty=\"width\",this._offsetType=\"offsetLeft\",this._pageOffsetType=\"pageXOffset\",this._childScrollDim=\"childWidth\",this._marginDir=\"margin-left\",this._translateDir=\"translateX\",this._scrollType=\"scrollLeft\"):(this._invisiblePaddingProperty=\"height\",this._offsetType=\"offsetTop\",this._pageOffsetType=\"pageYOffset\",this._childScrollDim=\"childHeight\",this._marginDir=\"margin-top\",this._translateDir=\"translateY\",this._scrollType=\"scrollTop\")}},{key:\"debounce\",value:function(e,t){var n=this.throttleTrailing(e,t),r=function(){n.cancel(),n.apply(this,arguments)};return r.cancel=function(){n.cancel()},r}},{key:\"throttleTrailing\",value:function(e,t){var n=void 0,r=arguments,i=function(){var i=this;r=arguments,n||(t<=0?e.apply(i,r):n=setTimeout((function(){n=void 0,e.apply(i,r)}),t))};return i.cancel=function(){n&&(clearTimeout(n),n=void 0)},i}},{key:\"refresh_internal\",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:2;if(e&&this.previousViewPort&&this.previousViewPort.scrollStartPosition>0){var i=this.previousViewPort,a=this.viewPortItems,o=t;t=function(){var e=n.previousViewPort.scrollLength-i.scrollLength;if(e>0&&n.viewPortItems){var t=a[0],r=n.items.findIndex((function(e){return n.compareItems(t,e)}));if(r>n.previousViewPort.startIndexWithBuffer){for(var s=!1,l=1;l=0&&i.endIndexWithBuffer>=0?n.items.slice(i.startIndexWithBuffer,i.endIndexWithBuffer+1):[],n.vsUpdate.emit(n.viewPortItems),a&&n.vsStart.emit(f),o&&n.vsEnd.emit(f),(a||o)&&(n.changeDetectorRef.markForCheck(),n.vsChange.emit(f)),r>0?n.refresh_internal(!1,t,r-1):t&&t()};n.executeRefreshOutsideAngularZone?m():n.zone.run(m)}else{if(r>0&&(s||l))return void n.refresh_internal(!1,t,r-1);t&&t()}}))}))}},{key:\"getScrollElement\",value:function(){return this.parentScroll instanceof Window?document.scrollingElement||document.documentElement||document.body:this.parentScroll||this.element.nativeElement}},{key:\"addScrollEventHandlers\",value:function(){var e=this;if(!this.isAngularUniversalSSR){var t=this.getScrollElement();this.removeScrollEventHandlers(),this.zone.runOutsideAngular((function(){e.parentScroll instanceof Window?(e.disposeScrollHandler=e.renderer.listen(\"window\",\"scroll\",e.onScroll),e.disposeResizeHandler=e.renderer.listen(\"window\",\"resize\",e.onScroll)):(e.disposeScrollHandler=e.renderer.listen(t,\"scroll\",e.onScroll),e._checkResizeInterval>0&&(e.checkScrollElementResizedTimer=setInterval((function(){e.checkScrollElementResized()}),e._checkResizeInterval)))}))}}},{key:\"removeScrollEventHandlers\",value:function(){this.checkScrollElementResizedTimer&&clearInterval(this.checkScrollElementResizedTimer),this.disposeScrollHandler&&(this.disposeScrollHandler(),this.disposeScrollHandler=void 0),this.disposeResizeHandler&&(this.disposeResizeHandler(),this.disposeResizeHandler=void 0)}},{key:\"getElementsOffset\",value:function(){if(this.isAngularUniversalSSR)return 0;var e=0;if(this.containerElementRef&&this.containerElementRef.nativeElement&&(e+=this.containerElementRef.nativeElement[this._offsetType]),this.parentScroll){var t=this.getScrollElement(),n=this.getElementSize(this.element.nativeElement),r=this.getElementSize(t);e+=this.horizontal?n.left-r.left:n.top-r.top,this.parentScroll instanceof Window||(e+=t[this._scrollType])}return e}},{key:\"countItemsPerWrapGroup\",value:function(){if(this.isAngularUniversalSSR)return Math.round(this.horizontal?this.ssrViewportHeight/this.ssrChildHeight:this.ssrViewportWidth/this.ssrChildWidth);var e=this.horizontal?\"offsetLeft\":\"offsetTop\",t=(this.containerElementRef&&this.containerElementRef.nativeElement||this.contentElementRef.nativeElement).children,n=t?t.length:0;if(0===n)return 1;for(var r=t[0][e],i=1;i0){var w=Math.min(c,k);k-=w,c-=w}p+=k,k>0&&i>=p&&++t}else{var C=Math.min(m,Math.max(a-_,0));if(c>0){var M=Math.min(c,C);C-=M,c-=M}_+=C,C>0&&a>=_&&++t}++h,f=0,m=0}}var S=this.wrapGroupDimensions.sumOfKnownWrapGroupChildWidths/this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes,L=this.wrapGroupDimensions.sumOfKnownWrapGroupChildHeights/this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes;n=this.childWidth||S||i,r=this.childHeight||L||a,this.horizontal?i>p&&(t+=Math.ceil((i-p)/n)):a>_&&(t+=Math.ceil((a-_)/r))}else{if(o.children.length>0){this.childWidth&&this.childHeight||(!this.minMeasuredChildWidth&&i>0&&(this.minMeasuredChildWidth=i),!this.minMeasuredChildHeight&&a>0&&(this.minMeasuredChildHeight=a));var T=this.getElementSize(o.children[0]);this.minMeasuredChildWidth=Math.min(this.minMeasuredChildWidth,T.width),this.minMeasuredChildHeight=Math.min(this.minMeasuredChildHeight,T.height)}n=this.childWidth||this.minMeasuredChildWidth||i,r=this.childHeight||this.minMeasuredChildHeight||a;var x=Math.max(Math.ceil(i/n),1),D=Math.max(Math.ceil(a/r),1);t=this.horizontal?x:D}var O=this.items.length,Y=s*t,E=O/Y,I=Math.ceil(O/s),A=0,P=this.horizontal?n:r;if(this.enableUnequalChildrenSizes){for(var j=0,R=0;R0&&(d+=t.itemsPerWrapGroup-h),isNaN(u)&&(u=0),isNaN(d)&&(d=0),u=Math.min(Math.max(u,0),t.itemCount-1),d=Math.min(Math.max(d,0),t.itemCount-1);var f=this.bufferAmount*t.itemsPerWrapGroup;return{startIndex:u,endIndex:d,startIndexWithBuffer:Math.min(Math.max(u-f,0),t.itemCount-1),endIndexWithBuffer:Math.min(Math.max(d+f,0),t.itemCount-1),scrollStartPosition:e,scrollEndPosition:e+t.viewportLength,maxScrollPosition:t.maxScrollPosition}}},{key:\"calculateViewport\",value:function(){var e=this.calculateDimensions(),t=this.getElementsOffset(),n=this.getScrollStartPosition();n>e.scrollLength+t&&!(this.parentScroll instanceof Window)?n=e.scrollLength:n-=t,n=Math.max(0,n);var r=this.calculatePageInfo(n,e),i=this.calculatePadding(r.startIndexWithBuffer,e),a=e.scrollLength;return{startIndex:r.startIndex,endIndex:r.endIndex,startIndexWithBuffer:r.startIndexWithBuffer,endIndexWithBuffer:r.endIndexWithBuffer,padding:Math.round(i),scrollLength:Math.round(a),scrollStartPosition:r.scrollStartPosition,scrollEndPosition:r.scrollEndPosition,maxScrollPosition:r.maxScrollPosition}}},{key:\"viewPortInfo\",get:function(){var e=this.previousViewPort||{};return{startIndex:e.startIndex||0,endIndex:e.endIndex||0,scrollStartPosition:e.scrollStartPosition||0,scrollEndPosition:e.scrollEndPosition||0,maxScrollPosition:e.maxScrollPosition||0,startIndexWithBuffer:e.startIndexWithBuffer||0,endIndexWithBuffer:e.endIndexWithBuffer||0}}},{key:\"enableUnequalChildrenSizes\",get:function(){return this._enableUnequalChildrenSizes},set:function(e){this._enableUnequalChildrenSizes!==e&&(this._enableUnequalChildrenSizes=e,this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0)}},{key:\"bufferAmount\",get:function(){return\"number\"==typeof this._bufferAmount&&this._bufferAmount>=0?this._bufferAmount:this.enableUnequalChildrenSizes?5:0},set:function(e){this._bufferAmount=e}},{key:\"scrollThrottlingTime\",get:function(){return this._scrollThrottlingTime},set:function(e){this._scrollThrottlingTime=e,this.updateOnScrollFunction()}},{key:\"scrollDebounceTime\",get:function(){return this._scrollDebounceTime},set:function(e){this._scrollDebounceTime=e,this.updateOnScrollFunction()}},{key:\"checkResizeInterval\",get:function(){return this._checkResizeInterval},set:function(e){this._checkResizeInterval!==e&&(this._checkResizeInterval=e,this.addScrollEventHandlers())}},{key:\"items\",get:function(){return this._items},set:function(e){e!==this._items&&(this._items=e||[],this.refresh_internal(!0))}},{key:\"horizontal\",get:function(){return this._horizontal},set:function(e){this._horizontal=e,this.updateDirection()}},{key:\"parentScroll\",get:function(){return this._parentScroll},set:function(e){if(this._parentScroll!==e){this.revertParentOverscroll(),this._parentScroll=e,this.addScrollEventHandlers();var t=this.getScrollElement();this.modifyOverflowStyleOfParentScroll&&t!==this.element.nativeElement&&(this.oldParentScrollOverflow={x:t.style[\"overflow-x\"],y:t.style[\"overflow-y\"]},t.style[\"overflow-y\"]=this.horizontal?\"visible\":\"auto\",t.style[\"overflow-x\"]=this.horizontal?\"auto\":\"visible\")}}}]),e}()).\\u0275fac=function(e){return new(e||Bx)(Io(Qs),Io(nl),Io(cc),Io(eo),Io($u),Io(\"virtual-scroller-default-options\",8))},Bx.\\u0275cmp=bt({type:Bx,selectors:[[\"virtual-scroller\"],[\"\",\"virtualScroller\",\"\"]],contentQueries:function(e,t,n){var r;1&e&&(Pu(n,Hx,!0,Qs),Pu(n,Fx,!0,Qs)),2&e&&(Yu(r=Hu())&&(t.headerElementRef=r.first),Yu(r=Hu())&&(t.containerElementRef=r.first))},viewQuery:function(e,t){var n;1&e&&(Iu(Nx,!0,Qs),Iu(zx,!0,Qs)),2&e&&(Yu(n=Hu())&&(t.contentElementRef=n.first),Yu(n=Hu())&&(t.invisiblePaddingElementRef=n.first))},hostVars:6,hostBindings:function(e,t){2&e&&fs(\"horizontal\",t.horizontal)(\"vertical\",!t.horizontal)(\"selfScroll\",!t.parentScroll)},inputs:{executeRefreshOutsideAngularZone:\"executeRefreshOutsideAngularZone\",useMarginInsteadOfTranslate:\"useMarginInsteadOfTranslate\",ssrViewportWidth:\"ssrViewportWidth\",ssrViewportHeight:\"ssrViewportHeight\",compareItems:\"compareItems\",scrollThrottlingTime:\"scrollThrottlingTime\",scrollDebounceTime:\"scrollDebounceTime\",scrollAnimationTime:\"scrollAnimationTime\",scrollbarWidth:\"scrollbarWidth\",scrollbarHeight:\"scrollbarHeight\",checkResizeInterval:\"checkResizeInterval\",resizeBypassRefreshThreshold:\"resizeBypassRefreshThreshold\",modifyOverflowStyleOfParentScroll:\"modifyOverflowStyleOfParentScroll\",stripedTable:\"stripedTable\",horizontal:\"horizontal\",enableUnequalChildrenSizes:\"enableUnequalChildrenSizes\",bufferAmount:\"bufferAmount\",items:\"items\",parentScroll:\"parentScroll\",childWidth:\"childWidth\",childHeight:\"childHeight\",ssrChildWidth:\"ssrChildWidth\",ssrChildHeight:\"ssrChildHeight\"},outputs:{vsUpdate:\"vsUpdate\",vsChange:\"vsChange\",vsStart:\"vsStart\",vsEnd:\"vsEnd\"},exportAs:[\"virtualScroller\"],features:[Hs],ngContentSelectors:Vx,decls:5,vars:0,consts:[[1,\"total-padding\"],[\"invisiblePadding\",\"\"],[1,\"scrollable-content\"],[\"content\",\"\"]],template:function(e,t){1&e&&(Xo(),No(0,\"div\",0,1),Ho(2,\"div\",2,3),ns(4),Fo())},styles:[\"[_nghost-%COMP%] {\\n position: relative;\\n\\t display: block;\\n -webkit-overflow-scrolling: touch;\\n }\\n\\t\\n\\t.horizontal.selfScroll[_nghost-%COMP%] {\\n overflow-y: visible;\\n overflow-x: auto;\\n\\t}\\n\\t.vertical.selfScroll[_nghost-%COMP%] {\\n overflow-y: auto;\\n overflow-x: visible;\\n\\t}\\n\\t\\n .scrollable-content[_ngcontent-%COMP%] {\\n top: 0;\\n left: 0;\\n width: 100%;\\n height: 100%;\\n max-width: 100vw;\\n max-height: 100vh;\\n position: absolute;\\n }\\n\\n\\t.scrollable-content[_ngcontent-%COMP%] > * {\\n\\t\\tbox-sizing: border-box;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] {\\n\\t\\twhite-space: nowrap;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] .scrollable-content[_ngcontent-%COMP%] {\\n\\t\\tdisplay: flex;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] .scrollable-content[_ngcontent-%COMP%] > * {\\n\\t\\tflex-shrink: 0;\\n\\t\\tflex-grow: 0;\\n\\t\\twhite-space: initial;\\n\\t}\\n\\t\\n .total-padding[_ngcontent-%COMP%] {\\n width: 1px;\\n opacity: 0;\\n }\\n \\n .horizontal[_nghost-%COMP%] .total-padding[_ngcontent-%COMP%] {\\n height: 100%;\\n }\"]}),Bx),$x=((Ux=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Ux}),Ux.\\u0275inj=ve({factory:function(e){return new(e||Ux)},providers:[{provide:\"virtual-scroller-default-options\",useFactory:Wx}],imports:[[Nd]]}),Ux),Jx={on:function(){},off:function(){}},Kx=((qx=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this)).hammerOptions=e,r.events=[\"longpress\",\"slide\",\"slidestart\",\"slideend\",\"slideright\",\"slideleft\"],r}return _createClass(n,[{key:\"buildHammer\",value:function(e){var t=\"undefined\"!=typeof window?window.Hammer:null;if(!t)return Jx;var n=new t(e,this.hammerOptions||void 0),r=new t.Pan,i=new t.Swipe,a=new t.Press,o=this._createRecognizer(r,{event:\"slide\",threshold:0},i),s=this._createRecognizer(a,{event:\"longpress\",time:500});return r.recognizeWith(i),s.recognizeWith(o),n.add([i,a,r,o,s]),n}},{key:\"_createRecognizer\",value:function(e,t){for(var n=new e.constructor(t),r=arguments.length,i=new Array(r>2?r-2:0),a=2;a0)for(var n=this.count>=this.total?this.total:this.count,r=this.ring,i=0;i0&&void 0!==arguments[0]?arguments[0]:iD;return function(t){return t.lift(new nD(e))}}var nD=function(){function e(t){_classCallCheck(this,e),this.errorFactory=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new rD(e,this.errorFactory))}}]),e}(),rD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).errorFactory=r,i.hasValue=!1,i}return _createClass(n,[{key:\"_next\",value:function(e){this.hasValue=!0,this.destination.next(e)}},{key:\"_complete\",value:function(){if(this.hasValue)return this.destination.complete();var e;try{e=this.errorFactory()}catch(t){e=t}this.destination.error(e)}}]),n}(p);function iD(){return new Zx}function aD(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return function(t){return t.lift(new oD(e))}}var oD=function(){function e(t){_classCallCheck(this,e),this.defaultValue=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new sD(e,this.defaultValue))}}]),e}(),sD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).defaultValue=r,i.isEmpty=!0,i}return _createClass(n,[{key:\"_next\",value:function(e){this.isEmpty=!1,this.destination.next(e)}},{key:\"_complete\",value:function(){this.isEmpty&&this.destination.next(this.defaultValue),this.destination.complete()}}]),n}(p);function lD(e,t){var n=arguments.length>=2;return function(r){return r.pipe(e?Gd((function(t,n){return e(t,n,r)})):G,Qx(1),n?aD(t):tD((function(){return new Zx})))}}function uD(e,t){var n=arguments.length>=2;return function(r){return r.pipe(e?Gd((function(t,n){return e(t,n,r)})):G,cp(1),n?aD(t):tD((function(){return new Zx})))}}var cD=function(){function e(t,n,r){_classCallCheck(this,e),this.predicate=t,this.thisArg=n,this.source=r}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new dD(e,this.predicate,this.thisArg,this.source))}}]),e}(),dD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e)).predicate=r,o.thisArg=i,o.source=a,o.index=0,o.thisArg=i||_assertThisInitialized(o),o}return _createClass(n,[{key:\"notifyComplete\",value:function(e){this.destination.next(e),this.destination.complete()}},{key:\"_next\",value:function(e){var t=!1;try{t=this.predicate.call(this.thisArg,e,this.index++,this.source)}catch(n){return void this.destination.error(n)}t||this.notifyComplete(!1)}},{key:\"_complete\",value:function(){this.notifyComplete(!0)}}]),n}(p);function hD(e,t){var n=!1;return arguments.length>=2&&(n=!0),function(r){return r.lift(new mD(e,t,n))}}var fD,mD=function(){function e(t,n){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];_classCallCheck(this,e),this.accumulator=t,this.seed=n,this.hasSeed=r}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new pD(e,this.accumulator,this.seed,this.hasSeed))}}]),e}(),pD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e)).accumulator=r,o._seed=i,o.hasSeed=a,o.index=0,o}return _createClass(n,[{key:\"_next\",value:function(e){if(this.hasSeed)return this._tryNext(e);this.seed=e,this.destination.next(e)}},{key:\"_tryNext\",value:function(e){var t,n=this.index++;try{t=this.accumulator(this.seed,e,n)}catch(r){this.destination.error(r)}this.seed=t,this.destination.next(t)}},{key:\"seed\",get:function(){return this._seed},set:function(e){this.hasSeed=!0,this._seed=e}}]),n}(p),_D=function e(t,n){_classCallCheck(this,e),this.id=t,this.url=n},vD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:\"imperative\",o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;return _classCallCheck(this,n),(i=t.call(this,e,r)).navigationTrigger=a,i.restoredState=o,i}return _createClass(n,[{key:\"toString\",value:function(){return\"NavigationStart(id: \".concat(this.id,\", url: '\").concat(this.url,\"')\")}}]),n}(_D),gD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e,r)).urlAfterRedirects=i,a}return _createClass(n,[{key:\"toString\",value:function(){return\"NavigationEnd(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"')\")}}]),n}(_D),yD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e,r)).reason=i,a}return _createClass(n,[{key:\"toString\",value:function(){return\"NavigationCancel(id: \".concat(this.id,\", url: '\").concat(this.url,\"')\")}}]),n}(_D),bD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e,r)).error=i,a}return _createClass(n,[{key:\"toString\",value:function(){return\"NavigationError(id: \".concat(this.id,\", url: '\").concat(this.url,\"', error: \").concat(this.error,\")\")}}]),n}(_D),kD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e,r)).urlAfterRedirects=i,o.state=a,o}return _createClass(n,[{key:\"toString\",value:function(){return\"RoutesRecognized(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\")\")}}]),n}(_D),wD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e,r)).urlAfterRedirects=i,o.state=a,o}return _createClass(n,[{key:\"toString\",value:function(){return\"GuardsCheckStart(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\")\")}}]),n}(_D),CD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this,e,r)).urlAfterRedirects=i,s.state=a,s.shouldActivate=o,s}return _createClass(n,[{key:\"toString\",value:function(){return\"GuardsCheckEnd(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\", shouldActivate: \").concat(this.shouldActivate,\")\")}}]),n}(_D),MD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e,r)).urlAfterRedirects=i,o.state=a,o}return _createClass(n,[{key:\"toString\",value:function(){return\"ResolveStart(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\")\")}}]),n}(_D),SD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e,r)).urlAfterRedirects=i,o.state=a,o}return _createClass(n,[{key:\"toString\",value:function(){return\"ResolveEnd(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\")\")}}]),n}(_D),LD=function(){function e(t){_classCallCheck(this,e),this.route=t}return _createClass(e,[{key:\"toString\",value:function(){return\"RouteConfigLoadStart(path: \".concat(this.route.path,\")\")}}]),e}(),TD=function(){function e(t){_classCallCheck(this,e),this.route=t}return _createClass(e,[{key:\"toString\",value:function(){return\"RouteConfigLoadEnd(path: \".concat(this.route.path,\")\")}}]),e}(),xD=function(){function e(t){_classCallCheck(this,e),this.snapshot=t}return _createClass(e,[{key:\"toString\",value:function(){return\"ChildActivationStart(path: '\".concat(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\",\"')\")}}]),e}(),DD=function(){function e(t){_classCallCheck(this,e),this.snapshot=t}return _createClass(e,[{key:\"toString\",value:function(){return\"ChildActivationEnd(path: '\".concat(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\",\"')\")}}]),e}(),OD=function(){function e(t){_classCallCheck(this,e),this.snapshot=t}return _createClass(e,[{key:\"toString\",value:function(){return\"ActivationStart(path: '\".concat(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\",\"')\")}}]),e}(),YD=function(){function e(t){_classCallCheck(this,e),this.snapshot=t}return _createClass(e,[{key:\"toString\",value:function(){return\"ActivationEnd(path: '\".concat(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\",\"')\")}}]),e}(),ED=function(){function e(t,n,r){_classCallCheck(this,e),this.routerEvent=t,this.position=n,this.anchor=r}return _createClass(e,[{key:\"toString\",value:function(){return\"Scroll(anchor: '\".concat(this.anchor,\"', position: '\").concat(this.position?\"\".concat(this.position[0],\", \").concat(this.position[1]):null,\"')\")}}]),e}(),ID=((fD=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||fD)},fD.\\u0275cmp=bt({type:fD,selectors:[[\"ng-component\"]],decls:1,vars:0,template:function(e,t){1&e&&No(0,\"router-outlet\")},directives:function(){return[NY]},encapsulation:2}),fD),AD=function(){function e(t){_classCallCheck(this,e),this.params=t||{}}return _createClass(e,[{key:\"has\",value:function(e){return this.params.hasOwnProperty(e)}},{key:\"get\",value:function(e){if(this.has(e)){var t=this.params[e];return Array.isArray(t)?t[0]:t}return null}},{key:\"getAll\",value:function(e){if(this.has(e)){var t=this.params[e];return Array.isArray(t)?t:[t]}return[]}},{key:\"keys\",get:function(){return Object.keys(this.params)}}]),e}();function PD(e){return new AD(e)}function jD(e){var t=Error(\"NavigationCancelingError: \"+e);return t.ngNavigationCancelingError=!0,t}function RD(e,t,n){var r=n.path.split(\"/\");if(r.length>e.length)return null;if(\"full\"===n.pathMatch&&(t.hasChildren()||r.length1&&void 0!==arguments[1]?arguments[1]:\"\",n=0;n-1})):e===t}function BD(e){return Array.prototype.concat.apply([],e)}function qD(e){return e.length>0?e[e.length-1]:null}function GD(e,t){for(var n in e)e.hasOwnProperty(n)&&t(e[n],n)}function $D(e){return Bo(e)?e:Uo(e)?W(Promise.resolve(e)):Bd(e)}function JD(e,t,n){return n?function(e,t){return WD(e,t)}(e.queryParams,t.queryParams)&&function e(t,n){if(!XD(t.segments,n.segments))return!1;if(t.numberOfChildren!==n.numberOfChildren)return!1;for(var r in n.children){if(!t.children[r])return!1;if(!e(t.children[r],n.children[r]))return!1}return!0}(e.root,t.root):function(e,t){return Object.keys(t).length<=Object.keys(e).length&&Object.keys(t).every((function(n){return UD(e[n],t[n])}))}(e.queryParams,t.queryParams)&&function e(t,n){return function t(n,r,i){if(n.segments.length>i.length)return!!XD(n.segments.slice(0,i.length),i)&&!r.hasChildren();if(n.segments.length===i.length){if(!XD(n.segments,i))return!1;for(var a in r.children){if(!n.children[a])return!1;if(!e(n.children[a],r.children[a]))return!1}return!0}var o=i.slice(0,n.segments.length),s=i.slice(n.segments.length);return!!XD(n.segments,o)&&!!n.children.primary&&t(n.children.primary,r,s)}(t,n,n.segments)}(e.root,t.root)}var KD=function(){function e(t,n,r){_classCallCheck(this,e),this.root=t,this.queryParams=n,this.fragment=r}return _createClass(e,[{key:\"toString\",value:function(){return rO.serialize(this)}},{key:\"queryParamMap\",get:function(){return this._queryParamMap||(this._queryParamMap=PD(this.queryParams)),this._queryParamMap}}]),e}(),ZD=function(){function e(t,n){var r=this;_classCallCheck(this,e),this.segments=t,this.children=n,this.parent=null,GD(n,(function(e,t){return e.parent=r}))}return _createClass(e,[{key:\"hasChildren\",value:function(){return this.numberOfChildren>0}},{key:\"toString\",value:function(){return iO(this)}},{key:\"numberOfChildren\",get:function(){return Object.keys(this.children).length}}]),e}(),QD=function(){function e(t,n){_classCallCheck(this,e),this.path=t,this.parameters=n}return _createClass(e,[{key:\"toString\",value:function(){return cO(this)}},{key:\"parameterMap\",get:function(){return this._parameterMap||(this._parameterMap=PD(this.parameters)),this._parameterMap}}]),e}();function XD(e,t){return e.length===t.length&&e.every((function(e,n){return e.path===t[n].path}))}function eO(e,t){var n=[];return GD(e.children,(function(e,r){\"primary\"===r&&(n=n.concat(t(e,r)))})),GD(e.children,(function(e,r){\"primary\"!==r&&(n=n.concat(t(e,r)))})),n}var tO=function e(){_classCallCheck(this,e)},nO=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"parse\",value:function(e){var t=new pO(e);return new KD(t.parseRootSegment(),t.parseQueryParams(),t.parseFragment())}},{key:\"serialize\",value:function(e){var t,n,r;return\"\".concat(\"/\".concat(function e(t,n){if(!t.hasChildren())return iO(t);if(n){var r=t.children.primary?e(t.children.primary,!1):\"\",i=[];return GD(t.children,(function(t,n){\"primary\"!==n&&i.push(\"\".concat(n,\":\").concat(e(t,!1)))})),i.length>0?\"\".concat(r,\"(\").concat(i.join(\"//\"),\")\"):r}var a=eO(t,(function(n,r){return\"primary\"===r?[e(t.children.primary,!1)]:[\"\".concat(r,\":\").concat(e(n,!1))]}));return\"\".concat(iO(t),\"/(\").concat(a.join(\"//\"),\")\")}(e.root,!0)),(n=e.queryParams,r=Object.keys(n).map((function(e){var t=n[e];return Array.isArray(t)?t.map((function(t){return\"\".concat(oO(e),\"=\").concat(oO(t))})).join(\"&\"):\"\".concat(oO(e),\"=\").concat(oO(t))})),r.length?\"?\".concat(r.join(\"&\")):\"\")).concat(\"string\"==typeof e.fragment?\"#\".concat((t=e.fragment,encodeURI(t))):\"\")}}]),e}(),rO=new nO;function iO(e){return e.segments.map((function(e){return cO(e)})).join(\"/\")}function aO(e){return encodeURIComponent(e).replace(/%40/g,\"@\").replace(/%3A/gi,\":\").replace(/%24/g,\"$\").replace(/%2C/gi,\",\")}function oO(e){return aO(e).replace(/%3B/gi,\";\")}function sO(e){return aO(e).replace(/\\(/g,\"%28\").replace(/\\)/g,\"%29\").replace(/%26/gi,\"&\")}function lO(e){return decodeURIComponent(e)}function uO(e){return lO(e.replace(/\\+/g,\"%20\"))}function cO(e){return\"\".concat(sO(e.path)).concat((t=e.parameters,Object.keys(t).map((function(e){return\";\".concat(sO(e),\"=\").concat(sO(t[e]))})).join(\"\")));var t}var dO=/^[^\\/()?;=#]+/;function hO(e){var t=e.match(dO);return t?t[0]:\"\"}var fO=/^[^=?&#]+/,mO=/^[^?&#]+/,pO=function(){function e(t){_classCallCheck(this,e),this.url=t,this.remaining=t}return _createClass(e,[{key:\"parseRootSegment\",value:function(){return this.consumeOptional(\"/\"),\"\"===this.remaining||this.peekStartsWith(\"?\")||this.peekStartsWith(\"#\")?new ZD([],{}):new ZD([],this.parseChildren())}},{key:\"parseQueryParams\",value:function(){var e={};if(this.consumeOptional(\"?\"))do{this.parseQueryParam(e)}while(this.consumeOptional(\"&\"));return e}},{key:\"parseFragment\",value:function(){return this.consumeOptional(\"#\")?decodeURIComponent(this.remaining):null}},{key:\"parseChildren\",value:function(){if(\"\"===this.remaining)return{};this.consumeOptional(\"/\");var e=[];for(this.peekStartsWith(\"(\")||e.push(this.parseSegment());this.peekStartsWith(\"/\")&&!this.peekStartsWith(\"//\")&&!this.peekStartsWith(\"/(\");)this.capture(\"/\"),e.push(this.parseSegment());var t={};this.peekStartsWith(\"/(\")&&(this.capture(\"/\"),t=this.parseParens(!0));var n={};return this.peekStartsWith(\"(\")&&(n=this.parseParens(!1)),(e.length>0||Object.keys(t).length>0)&&(n.primary=new ZD(e,t)),n}},{key:\"parseSegment\",value:function(){var e=hO(this.remaining);if(\"\"===e&&this.peekStartsWith(\";\"))throw new Error(\"Empty path url segment cannot have parameters: '\".concat(this.remaining,\"'.\"));return this.capture(e),new QD(lO(e),this.parseMatrixParams())}},{key:\"parseMatrixParams\",value:function(){for(var e={};this.consumeOptional(\";\");)this.parseParam(e);return e}},{key:\"parseParam\",value:function(e){var t=hO(this.remaining);if(t){this.capture(t);var n=\"\";if(this.consumeOptional(\"=\")){var r=hO(this.remaining);r&&(n=r,this.capture(n))}e[lO(t)]=lO(n)}}},{key:\"parseQueryParam\",value:function(e){var t=function(e){var t=e.match(fO);return t?t[0]:\"\"}(this.remaining);if(t){this.capture(t);var n=\"\";if(this.consumeOptional(\"=\")){var r=function(e){var t=e.match(mO);return t?t[0]:\"\"}(this.remaining);r&&(n=r,this.capture(n))}var i=uO(t),a=uO(n);if(e.hasOwnProperty(i)){var o=e[i];Array.isArray(o)||(o=[o],e[i]=o),o.push(a)}else e[i]=a}}},{key:\"parseParens\",value:function(e){var t={};for(this.capture(\"(\");!this.consumeOptional(\")\")&&this.remaining.length>0;){var n=hO(this.remaining),r=this.remaining[n.length];if(\"/\"!==r&&\")\"!==r&&\";\"!==r)throw new Error(\"Cannot parse url '\".concat(this.url,\"'\"));var i=void 0;n.indexOf(\":\")>-1?(i=n.substr(0,n.indexOf(\":\")),this.capture(i),this.capture(\":\")):e&&(i=\"primary\");var a=this.parseChildren();t[i]=1===Object.keys(a).length?a.primary:new ZD([],a),this.consumeOptional(\"//\")}return t}},{key:\"peekStartsWith\",value:function(e){return this.remaining.startsWith(e)}},{key:\"consumeOptional\",value:function(e){return!!this.peekStartsWith(e)&&(this.remaining=this.remaining.substring(e.length),!0)}},{key:\"capture\",value:function(e){if(!this.consumeOptional(e))throw new Error('Expected \"'.concat(e,'\".'))}}]),e}(),_O=function(){function e(t){_classCallCheck(this,e),this._root=t}return _createClass(e,[{key:\"parent\",value:function(e){var t=this.pathFromRoot(e);return t.length>1?t[t.length-2]:null}},{key:\"children\",value:function(e){var t=vO(e,this._root);return t?t.children.map((function(e){return e.value})):[]}},{key:\"firstChild\",value:function(e){var t=vO(e,this._root);return t&&t.children.length>0?t.children[0].value:null}},{key:\"siblings\",value:function(e){var t=gO(e,this._root);return t.length<2?[]:t[t.length-2].children.map((function(e){return e.value})).filter((function(t){return t!==e}))}},{key:\"pathFromRoot\",value:function(e){return gO(e,this._root).map((function(e){return e.value}))}},{key:\"root\",get:function(){return this._root.value}}]),e}();function vO(e,t){if(e===t.value)return t;var n,r=_createForOfIteratorHelper(t.children);try{for(r.s();!(n=r.n()).done;){var i=vO(e,n.value);if(i)return i}}catch(a){r.e(a)}finally{r.f()}return null}function gO(e,t){if(e===t.value)return[t];var n,r=_createForOfIteratorHelper(t.children);try{for(r.s();!(n=r.n()).done;){var i=gO(e,n.value);if(i.length)return i.unshift(t),i}}catch(a){r.e(a)}finally{r.f()}return[]}var yO=function(){function e(t,n){_classCallCheck(this,e),this.value=t,this.children=n}return _createClass(e,[{key:\"toString\",value:function(){return\"TreeNode(\".concat(this.value,\")\")}}]),e}();function bO(e){var t={};return e&&e.children.forEach((function(e){return t[e.value.outlet]=e})),t}var kO=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).snapshot=r,TO(_assertThisInitialized(i),e),i}return _createClass(n,[{key:\"toString\",value:function(){return this.snapshot.toString()}}]),n}(_O);function wO(e,t){var n=function(e,t){var n=new SO([],{},{},\"\",{},\"primary\",t,null,e.root,-1,{});return new LO(\"\",new yO(n,[]))}(e,t),r=new tT([new QD(\"\",{})]),i=new tT({}),a=new tT({}),o=new tT({}),s=new tT(\"\"),l=new CO(r,i,o,s,a,\"primary\",t,n.root);return l.snapshot=n.root,new kO(new yO(l,[]),n)}var CO=function(){function e(t,n,r,i,a,o,s,l){_classCallCheck(this,e),this.url=t,this.params=n,this.queryParams=r,this.fragment=i,this.data=a,this.outlet=o,this.component=s,this._futureSnapshot=l}return _createClass(e,[{key:\"toString\",value:function(){return this.snapshot?this.snapshot.toString():\"Future(\".concat(this._futureSnapshot,\")\")}},{key:\"routeConfig\",get:function(){return this._futureSnapshot.routeConfig}},{key:\"root\",get:function(){return this._routerState.root}},{key:\"parent\",get:function(){return this._routerState.parent(this)}},{key:\"firstChild\",get:function(){return this._routerState.firstChild(this)}},{key:\"children\",get:function(){return this._routerState.children(this)}},{key:\"pathFromRoot\",get:function(){return this._routerState.pathFromRoot(this)}},{key:\"paramMap\",get:function(){return this._paramMap||(this._paramMap=this.params.pipe(F((function(e){return PD(e)})))),this._paramMap}},{key:\"queryParamMap\",get:function(){return this._queryParamMap||(this._queryParamMap=this.queryParams.pipe(F((function(e){return PD(e)})))),this._queryParamMap}}]),e}();function MO(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"emptyOnly\",n=e.pathFromRoot,r=0;if(\"always\"!==t)for(r=n.length-1;r>=1;){var i=n[r],a=n[r-1];if(i.routeConfig&&\"\"===i.routeConfig.path)r--;else{if(a.component)break;r--}}return function(e){return e.reduce((function(e,t){return{params:Object.assign(Object.assign({},e.params),t.params),data:Object.assign(Object.assign({},e.data),t.data),resolve:Object.assign(Object.assign({},e.resolve),t._resolvedData)}}),{params:{},data:{},resolve:{}})}(n.slice(r))}var SO=function(){function e(t,n,r,i,a,o,s,l,u,c,d){_classCallCheck(this,e),this.url=t,this.params=n,this.queryParams=r,this.fragment=i,this.data=a,this.outlet=o,this.component=s,this.routeConfig=l,this._urlSegment=u,this._lastPathIndex=c,this._resolve=d}return _createClass(e,[{key:\"toString\",value:function(){return\"Route(url:'\".concat(this.url.map((function(e){return e.toString()})).join(\"/\"),\"', path:'\").concat(this.routeConfig?this.routeConfig.path:\"\",\"')\")}},{key:\"root\",get:function(){return this._routerState.root}},{key:\"parent\",get:function(){return this._routerState.parent(this)}},{key:\"firstChild\",get:function(){return this._routerState.firstChild(this)}},{key:\"children\",get:function(){return this._routerState.children(this)}},{key:\"pathFromRoot\",get:function(){return this._routerState.pathFromRoot(this)}},{key:\"paramMap\",get:function(){return this._paramMap||(this._paramMap=PD(this.params)),this._paramMap}},{key:\"queryParamMap\",get:function(){return this._queryParamMap||(this._queryParamMap=PD(this.queryParams)),this._queryParamMap}}]),e}(),LO=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,r)).url=e,TO(_assertThisInitialized(i),r),i}return _createClass(n,[{key:\"toString\",value:function(){return xO(this._root)}}]),n}(_O);function TO(e,t){t.value._routerState=e,t.children.forEach((function(t){return TO(e,t)}))}function xO(e){var t=e.children.length>0?\" { \".concat(e.children.map(xO).join(\", \"),\" } \"):\"\";return\"\".concat(e.value).concat(t)}function DO(e){if(e.snapshot){var t=e.snapshot,n=e._futureSnapshot;e.snapshot=n,WD(t.queryParams,n.queryParams)||e.queryParams.next(n.queryParams),t.fragment!==n.fragment&&e.fragment.next(n.fragment),WD(t.params,n.params)||e.params.next(n.params),function(e,t){if(e.length!==t.length)return!1;for(var n=0;n0&&YO(r[0]))throw new Error(\"Root segment cannot have matrix parameters\");var i=r.find((function(e){return\"object\"==typeof e&&null!=e&&e.outlets}));if(i&&i!==qD(r))throw new Error(\"{outlets:{}} has to be the last command\")}return _createClass(e,[{key:\"toRoot\",value:function(){return this.isAbsolute&&1===this.commands.length&&\"/\"==this.commands[0]}}]),e}(),AO=function e(t,n,r){_classCallCheck(this,e),this.segmentGroup=t,this.processChildren=n,this.index=r};function PO(e){return\"object\"==typeof e&&null!=e&&e.outlets?e.outlets.primary:\"\".concat(e)}function jO(e,t,n){if(e||(e=new ZD([],{})),0===e.segments.length&&e.hasChildren())return RO(e,t,n);var r=function(e,t,n){for(var r=0,i=t,a={match:!1,pathIndex:0,commandIndex:0};i=n.length)return a;var o=e.segments[i],s=PO(n[r]),l=r0&&void 0===s)break;if(s&&l&&\"object\"==typeof l&&void 0===l.outlets){if(!zO(s,l,o))return a;r+=2}else{if(!zO(s,{},o))return a;r++}i++}return{match:!0,pathIndex:i,commandIndex:r}}(e,t,n),i=n.slice(r.commandIndex);if(r.match&&r.pathIndex0?new ZD([],{primary:e}):e;return new KD(r,t,n)}},{key:\"expandSegmentGroup\",value:function(e,t,n,r){return 0===n.segments.length&&n.hasChildren()?this.expandChildren(e,t,n).pipe(F((function(e){return new ZD([],e)}))):this.expandSegment(e,n,t,n.segments,r,!0)}},{key:\"expandChildren\",value:function(e,t,n){var r=this;return function(n,i){if(0===Object.keys(n).length)return Bd({});var a=[],o=[],s={};return GD(n,(function(n,i){var l,u,c=(l=i,u=n,r.expandSegmentGroup(e,t,u,l)).pipe(F((function(e){return s[i]=e})));\"primary\"===i?a.push(c):o.push(c)})),Bd.apply(null,a.concat(o)).pipe(av(),lD(),F((function(){return s})))}(n.children)}},{key:\"expandSegment\",value:function(e,t,n,r,i,a){var o=this;return Bd.apply(void 0,_toConsumableArray(n)).pipe(F((function(s){return o.expandSegmentAgainstRoute(e,t,n,s,r,i,a).pipe(pC((function(e){if(e instanceof qO)return Bd(null);throw e})))})),av(),uD((function(e){return!!e})),pC((function(e,n){if(e instanceof Zx||\"EmptyError\"===e.name){if(o.noLeftoversInUrl(t,r,i))return Bd(new ZD([],{}));throw new qO(t)}throw e})))}},{key:\"noLeftoversInUrl\",value:function(e,t,n){return 0===t.length&&!e.children[n]}},{key:\"expandSegmentAgainstRoute\",value:function(e,t,n,r,i,a,o){return tY(r)!==a?$O(t):void 0===r.redirectTo?this.matchSegmentAgainstRoute(e,t,r,i):o&&this.allowRedirects?this.expandSegmentAgainstRouteUsingRedirect(e,t,n,r,i,a):$O(t)}},{key:\"expandSegmentAgainstRouteUsingRedirect\",value:function(e,t,n,r,i,a){return\"**\"===r.path?this.expandWildCardWithParamsAgainstRouteUsingRedirect(e,n,r,a):this.expandRegularSegmentAgainstRouteUsingRedirect(e,t,n,r,i,a)}},{key:\"expandWildCardWithParamsAgainstRouteUsingRedirect\",value:function(e,t,n,r){var i=this,a=this.applyRedirectCommands([],n.redirectTo,{});return n.redirectTo.startsWith(\"/\")?JO(a):this.lineralizeSegments(n,a).pipe(U((function(n){var a=new ZD(n,{});return i.expandSegment(e,a,t,n,r,!1)})))}},{key:\"expandRegularSegmentAgainstRouteUsingRedirect\",value:function(e,t,n,r,i,a){var o=this,s=QO(t,r,i),l=s.matched,u=s.consumedSegments,c=s.lastChild,d=s.positionalParamSegments;if(!l)return $O(t);var h=this.applyRedirectCommands(u,r.redirectTo,d);return r.redirectTo.startsWith(\"/\")?JO(h):this.lineralizeSegments(r,h).pipe(U((function(r){return o.expandSegment(e,t,n,r.concat(i.slice(c)),a,!1)})))}},{key:\"matchSegmentAgainstRoute\",value:function(e,t,n,r){var i=this;if(\"**\"===n.path)return n.loadChildren?this.configLoader.load(e.injector,n).pipe(F((function(e){return n._loadedConfig=e,new ZD(r,{})}))):Bd(new ZD(r,{}));var a=QO(t,n,r),o=a.matched,s=a.consumedSegments,l=a.lastChild;if(!o)return $O(t);var u=r.slice(l);return this.getChildConfig(e,n,r).pipe(U((function(e){var n=e.module,r=e.routes,a=function(e,t,n,r){return n.length>0&&function(e,t,n){return n.some((function(n){return eY(e,t,n)&&\"primary\"!==tY(n)}))}(e,n,r)?{segmentGroup:XO(new ZD(t,function(e,t){var n={};n.primary=t;var r,i=_createForOfIteratorHelper(e);try{for(i.s();!(r=i.n()).done;){var a=r.value;\"\"===a.path&&\"primary\"!==tY(a)&&(n[tY(a)]=new ZD([],{}))}}catch(o){i.e(o)}finally{i.f()}return n}(r,new ZD(n,e.children)))),slicedSegments:[]}:0===n.length&&function(e,t,n){return n.some((function(n){return eY(e,t,n)}))}(e,n,r)?{segmentGroup:XO(new ZD(e.segments,function(e,t,n,r){var i,a={},o=_createForOfIteratorHelper(n);try{for(o.s();!(i=o.n()).done;){var s=i.value;eY(e,t,s)&&!r[tY(s)]&&(a[tY(s)]=new ZD([],{}))}}catch(l){o.e(l)}finally{o.f()}return Object.assign(Object.assign({},r),a)}(e,n,r,e.children))),slicedSegments:n}:{segmentGroup:e,slicedSegments:n}}(t,s,u,r),o=a.segmentGroup,l=a.slicedSegments;return 0===l.length&&o.hasChildren()?i.expandChildren(n,r,o).pipe(F((function(e){return new ZD(s,e)}))):0===r.length&&0===l.length?Bd(new ZD(s,{})):i.expandSegment(n,o,r,l,\"primary\",!0).pipe(F((function(e){return new ZD(s.concat(e.segments),e.children)})))})))}},{key:\"getChildConfig\",value:function(e,t,n){var r=this;return t.children?Bd(new HD(t.children,e)):t.loadChildren?void 0!==t._loadedConfig?Bd(t._loadedConfig):function(e,t,n){var r,i=t.canLoad;return i&&0!==i.length?W(i).pipe(F((function(r){var i,a=e.get(r);if(function(e){return e&&UO(e.canLoad)}(a))i=a.canLoad(t,n);else{if(!UO(a))throw new Error(\"Invalid CanLoad guard\");i=a(t,n)}return $D(i)}))).pipe(av(),(r=function(e){return!0===e},function(e){return e.lift(new cD(r,void 0,e))})):Bd(!0)}(e.injector,t,n).pipe(U((function(n){return n?r.configLoader.load(e.injector,t).pipe(F((function(e){return t._loadedConfig=e,e}))):function(e){return new w((function(t){return t.error(jD(\"Cannot load children because the guard of the route \\\"path: '\".concat(e.path,\"'\\\" returned false\")))}))}(t)}))):Bd(new HD([],e))}},{key:\"lineralizeSegments\",value:function(e,t){for(var n=[],r=t.root;;){if(n=n.concat(r.segments),0===r.numberOfChildren)return Bd(n);if(r.numberOfChildren>1||!r.children.primary)return KO(e.redirectTo);r=r.children.primary}}},{key:\"applyRedirectCommands\",value:function(e,t,n){return this.applyRedirectCreatreUrlTree(t,this.urlSerializer.parse(t),e,n)}},{key:\"applyRedirectCreatreUrlTree\",value:function(e,t,n,r){var i=this.createSegmentGroup(e,t.root,n,r);return new KD(i,this.createQueryParams(t.queryParams,this.urlTree.queryParams),t.fragment)}},{key:\"createQueryParams\",value:function(e,t){var n={};return GD(e,(function(e,r){if(\"string\"==typeof e&&e.startsWith(\":\")){var i=e.substring(1);n[r]=t[i]}else n[r]=e})),n}},{key:\"createSegmentGroup\",value:function(e,t,n,r){var i=this,a=this.createSegments(e,t.segments,n,r),o={};return GD(t.children,(function(t,a){o[a]=i.createSegmentGroup(e,t,n,r)})),new ZD(a,o)}},{key:\"createSegments\",value:function(e,t,n,r){var i=this;return t.map((function(t){return t.path.startsWith(\":\")?i.findPosParam(e,t,r):i.findOrReturn(t,n)}))}},{key:\"findPosParam\",value:function(e,t,n){var r=n[t.path.substring(1)];if(!r)throw new Error(\"Cannot redirect to '\".concat(e,\"'. Cannot find '\").concat(t.path,\"'.\"));return r}},{key:\"findOrReturn\",value:function(e,t){var n,r=0,i=_createForOfIteratorHelper(t);try{for(i.s();!(n=i.n()).done;){var a=n.value;if(a.path===e.path)return t.splice(r),a;r++}}catch(o){i.e(o)}finally{i.f()}return e}}]),e}();function QO(e,t,n){if(\"\"===t.path)return\"full\"===t.pathMatch&&(e.hasChildren()||n.length>0)?{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}:{matched:!0,consumedSegments:[],lastChild:0,positionalParamSegments:{}};var r=(t.matcher||RD)(n,e,t);return r?{matched:!0,consumedSegments:r.consumed,lastChild:r.consumed.length,positionalParamSegments:r.posParams}:{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}}function XO(e){if(1===e.numberOfChildren&&e.children.primary){var t=e.children.primary;return new ZD(e.segments.concat(t.segments),t.children)}return e}function eY(e,t,n){return(!(e.hasChildren()||t.length>0)||\"full\"!==n.pathMatch)&&\"\"===n.path&&void 0!==n.redirectTo}function tY(e){return e.outlet||\"primary\"}var nY=function e(t){_classCallCheck(this,e),this.path=t,this.route=this.path[this.path.length-1]},rY=function e(t,n){_classCallCheck(this,e),this.component=t,this.route=n};function iY(e,t,n){var r=function(e){if(!e)return null;for(var t=e.parent;t;t=t.parent){var n=t.routeConfig;if(n&&n._loadedConfig)return n._loadedConfig}return null}(t);return(r?r.module.injector:n).get(e)}function aY(e,t,n){var r=bO(e),i=e.value;GD(r,(function(e,r){aY(e,i.component?t?t.children.getContext(r):null:t,n)})),n.canDeactivateChecks.push(new rY(i.component&&t&&t.outlet&&t.outlet.isActivated?t.outlet.component:null,i))}var oY=Symbol(\"INITIAL_VALUE\");function sY(){return Pk((function(e){return zL.apply(void 0,_toConsumableArray(e.map((function(e){return e.pipe(cp(1),sv(oY))})))).pipe(hD((function(e,t){var n=!1;return t.reduce((function(e,r,i){if(e!==oY)return e;if(r===oY&&(n=!0),!n){if(!1===r)return r;if(i===t.length-1||BO(r))return r}return e}),e)}),oY),Gd((function(e){return e!==oY})),F((function(e){return BO(e)?e:!0===e})),cp(1))}))}function lY(e,t){return null!==e&&t&&t(new OD(e)),Bd(!0)}function uY(e,t){return null!==e&&t&&t(new xD(e)),Bd(!0)}function cY(e,t,n){var r=t.routeConfig?t.routeConfig.canActivate:null;return r&&0!==r.length?Bd(r.map((function(r){return Qw((function(){var i,a=iY(r,t,n);if(function(e){return e&&UO(e.canActivate)}(a))i=$D(a.canActivate(t,e));else{if(!UO(a))throw new Error(\"Invalid CanActivate guard\");i=$D(a(t,e))}return i.pipe(uD())}))}))).pipe(sY()):Bd(!0)}function dY(e,t,n){var r=t[t.length-1],i=t.slice(0,t.length-1).reverse().map((function(e){return function(e){var t=e.routeConfig?e.routeConfig.canActivateChild:null;return t&&0!==t.length?{node:e,guards:t}:null}(e)})).filter((function(e){return null!==e})).map((function(t){return Qw((function(){return Bd(t.guards.map((function(i){var a,o=iY(i,t.node,n);if(function(e){return e&&UO(e.canActivateChild)}(o))a=$D(o.canActivateChild(r,e));else{if(!UO(o))throw new Error(\"Invalid CanActivateChild guard\");a=$D(o(r,e))}return a.pipe(uD())}))).pipe(sY())}))}));return Bd(i).pipe(sY())}var hY=function e(){_classCallCheck(this,e)},fY=function(){function e(t,n,r,i,a,o){_classCallCheck(this,e),this.rootComponentType=t,this.config=n,this.urlTree=r,this.url=i,this.paramsInheritanceStrategy=a,this.relativeLinkResolution=o}return _createClass(e,[{key:\"recognize\",value:function(){try{var e=_Y(this.urlTree.root,[],[],this.config,this.relativeLinkResolution).segmentGroup,t=this.processSegmentGroup(this.config,e,\"primary\"),n=new SO([],Object.freeze({}),Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,{},\"primary\",this.rootComponentType,null,this.urlTree.root,-1,{}),r=new yO(n,t),i=new LO(this.url,r);return this.inheritParamsAndData(i._root),Bd(i)}catch(a){return new w((function(e){return e.error(a)}))}}},{key:\"inheritParamsAndData\",value:function(e){var t=this,n=e.value,r=MO(n,this.paramsInheritanceStrategy);n.params=Object.freeze(r.params),n.data=Object.freeze(r.data),e.children.forEach((function(e){return t.inheritParamsAndData(e)}))}},{key:\"processSegmentGroup\",value:function(e,t,n){return 0===t.segments.length&&t.hasChildren()?this.processChildren(e,t):this.processSegment(e,t,t.segments,n)}},{key:\"processChildren\",value:function(e,t){var n,r=this,i=eO(t,(function(t,n){return r.processSegmentGroup(e,t,n)}));return n={},i.forEach((function(e){var t=n[e.value.outlet];if(t){var r=t.url.map((function(e){return e.toString()})).join(\"/\"),i=e.value.url.map((function(e){return e.toString()})).join(\"/\");throw new Error(\"Two segments cannot have the same outlet name: '\".concat(r,\"' and '\").concat(i,\"'.\"))}n[e.value.outlet]=e.value})),i.sort((function(e,t){return\"primary\"===e.value.outlet?-1:\"primary\"===t.value.outlet?1:e.value.outlet.localeCompare(t.value.outlet)})),i}},{key:\"processSegment\",value:function(e,t,n,r){var i,a=_createForOfIteratorHelper(e);try{for(a.s();!(i=a.n()).done;){var o=i.value;try{return this.processSegmentAgainstRoute(o,t,n,r)}catch(s){if(!(s instanceof hY))throw s}}}catch(l){a.e(l)}finally{a.f()}if(this.noLeftoversInUrl(t,n,r))return[];throw new hY}},{key:\"noLeftoversInUrl\",value:function(e,t,n){return 0===t.length&&!e.children[n]}},{key:\"processSegmentAgainstRoute\",value:function(e,t,n,r){if(e.redirectTo)throw new hY;if((e.outlet||\"primary\")!==r)throw new hY;var i,a=[],o=[];if(\"**\"===e.path){var s=n.length>0?qD(n).parameters:{};i=new SO(n,s,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,yY(e),r,e.component,e,mY(t),pY(t)+n.length,bY(e))}else{var l=function(e,t,n){if(\"\"===t.path){if(\"full\"===t.pathMatch&&(e.hasChildren()||n.length>0))throw new hY;return{consumedSegments:[],lastChild:0,parameters:{}}}var r=(t.matcher||RD)(n,e,t);if(!r)throw new hY;var i={};GD(r.posParams,(function(e,t){i[t]=e.path}));var a=r.consumed.length>0?Object.assign(Object.assign({},i),r.consumed[r.consumed.length-1].parameters):i;return{consumedSegments:r.consumed,lastChild:r.consumed.length,parameters:a}}(t,e,n);a=l.consumedSegments,o=n.slice(l.lastChild),i=new SO(a,l.parameters,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,yY(e),r,e.component,e,mY(t),pY(t)+a.length,bY(e))}var u=function(e){return e.children?e.children:e.loadChildren?e._loadedConfig.routes:[]}(e),c=_Y(t,a,o,u,this.relativeLinkResolution),d=c.segmentGroup,h=c.slicedSegments;if(0===h.length&&d.hasChildren()){var f=this.processChildren(u,d);return[new yO(i,f)]}if(0===u.length&&0===h.length)return[new yO(i,[])];var m=this.processSegment(u,d,h,\"primary\");return[new yO(i,m)]}}]),e}();function mY(e){for(var t=e;t._sourceSegment;)t=t._sourceSegment;return t}function pY(e){for(var t=e,n=t._segmentIndexShift?t._segmentIndexShift:0;t._sourceSegment;)n+=(t=t._sourceSegment)._segmentIndexShift?t._segmentIndexShift:0;return n-1}function _Y(e,t,n,r,i){if(n.length>0&&function(e,t,n){return n.some((function(n){return vY(e,t,n)&&\"primary\"!==gY(n)}))}(e,n,r)){var a=new ZD(t,function(e,t,n,r){var i={};i.primary=r,r._sourceSegment=e,r._segmentIndexShift=t.length;var a,o=_createForOfIteratorHelper(n);try{for(o.s();!(a=o.n()).done;){var s=a.value;if(\"\"===s.path&&\"primary\"!==gY(s)){var l=new ZD([],{});l._sourceSegment=e,l._segmentIndexShift=t.length,i[gY(s)]=l}}}catch(u){o.e(u)}finally{o.f()}return i}(e,t,r,new ZD(n,e.children)));return a._sourceSegment=e,a._segmentIndexShift=t.length,{segmentGroup:a,slicedSegments:[]}}if(0===n.length&&function(e,t,n){return n.some((function(n){return vY(e,t,n)}))}(e,n,r)){var o=new ZD(e.segments,function(e,t,n,r,i,a){var o,s={},l=_createForOfIteratorHelper(r);try{for(l.s();!(o=l.n()).done;){var u=o.value;if(vY(e,n,u)&&!i[gY(u)]){var c=new ZD([],{});c._sourceSegment=e,c._segmentIndexShift=\"legacy\"===a?e.segments.length:t.length,s[gY(u)]=c}}}catch(d){l.e(d)}finally{l.f()}return Object.assign(Object.assign({},i),s)}(e,t,n,r,e.children,i));return o._sourceSegment=e,o._segmentIndexShift=t.length,{segmentGroup:o,slicedSegments:n}}var s=new ZD(e.segments,e.children);return s._sourceSegment=e,s._segmentIndexShift=t.length,{segmentGroup:s,slicedSegments:n}}function vY(e,t,n){return(!(e.hasChildren()||t.length>0)||\"full\"!==n.pathMatch)&&\"\"===n.path&&void 0===n.redirectTo}function gY(e){return e.outlet||\"primary\"}function yY(e){return e.data||{}}function bY(e){return e.resolve||{}}function kY(e,t,n,r){var i=iY(e,t,r);return $D(i.resolve?i.resolve(t,n):i(t,n))}function wY(e){return function(t){return t.pipe(Pk((function(t){var n=e(t);return n?W(n).pipe(F((function(){return t}))):W([t])})))}}var CY=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"shouldDetach\",value:function(e){return!1}},{key:\"store\",value:function(e,t){}},{key:\"shouldAttach\",value:function(e){return!1}},{key:\"retrieve\",value:function(e){return null}},{key:\"shouldReuseRoute\",value:function(e,t){return e.routeConfig===t.routeConfig}}]),e}(),MY=new Be(\"ROUTES\"),SY=function(){function e(t,n,r,i){_classCallCheck(this,e),this.loader=t,this.compiler=n,this.onLoadStartListener=r,this.onLoadEndListener=i}return _createClass(e,[{key:\"load\",value:function(e,t){var n=this;return this.onLoadStartListener&&this.onLoadStartListener(t),this.loadModuleFactory(t.loadChildren).pipe(F((function(r){n.onLoadEndListener&&n.onLoadEndListener(t);var i=r.create(e);return new HD(BD(i.injector.get(MY)).map(VD),i)})))}},{key:\"loadModuleFactory\",value:function(e){var t=this;return\"string\"==typeof e?W(this.loader.load(e)):$D(e()).pipe(U((function(e){return e instanceof ot?Bd(e):W(t.compiler.compileModuleAsync(e))})))}}]),e}(),LY=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"shouldProcessUrl\",value:function(e){return!0}},{key:\"extract\",value:function(e){return e}},{key:\"merge\",value:function(e,t){return e}}]),e}();function TY(e){throw e}function xY(e,t,n){return t.parse(\"/\")}function DY(e,t){return Bd(null)}var OY,YY,EY=((YY=function(){function e(t,n,r,i,a,o,s,l){var u=this;_classCallCheck(this,e),this.rootComponentType=t,this.urlSerializer=n,this.rootContexts=r,this.location=i,this.config=l,this.lastSuccessfulNavigation=null,this.currentNavigation=null,this.navigationId=0,this.isNgZoneEnabled=!1,this.events=new x,this.errorHandler=TY,this.malformedUriErrorHandler=xY,this.navigated=!1,this.lastSuccessfulId=-1,this.hooks={beforePreactivation:DY,afterPreactivation:DY},this.urlHandlingStrategy=new LY,this.routeReuseStrategy=new CY,this.onSameUrlNavigation=\"ignore\",this.paramsInheritanceStrategy=\"emptyOnly\",this.urlUpdateStrategy=\"deferred\",this.relativeLinkResolution=\"legacy\",this.ngModule=a.get(at),this.console=a.get(Ku);var c=a.get(cc);this.isNgZoneEnabled=c instanceof cc,this.resetConfig(l),this.currentUrlTree=new KD(new ZD([],{}),{},null),this.rawUrlTree=this.currentUrlTree,this.browserUrlTree=this.currentUrlTree,this.configLoader=new SY(o,s,(function(e){return u.triggerEvent(new LD(e))}),(function(e){return u.triggerEvent(new TD(e))})),this.routerState=wO(this.currentUrlTree,this.rootComponentType),this.transitions=new tT({id:0,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,extractedUrl:this.urlHandlingStrategy.extract(this.currentUrlTree),urlAfterRedirects:this.urlHandlingStrategy.extract(this.currentUrlTree),rawUrl:this.currentUrlTree,extras:{},resolve:null,reject:null,promise:Promise.resolve(!0),source:\"imperative\",restoredState:null,currentSnapshot:this.routerState.snapshot,targetSnapshot:null,currentRouterState:this.routerState,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.navigations=this.setupNavigations(this.transitions),this.processNavigations()}return _createClass(e,[{key:\"setupNavigations\",value:function(e){var t=this,n=this.events;return e.pipe(Gd((function(e){return 0!==e.id})),F((function(e){return Object.assign(Object.assign({},e),{extractedUrl:t.urlHandlingStrategy.extract(e.rawUrl)})})),Pk((function(e){var r,i,a,o=!1,s=!1;return Bd(e).pipe(Km((function(e){t.currentNavigation={id:e.id,initialUrl:e.currentRawUrl,extractedUrl:e.extractedUrl,trigger:e.source,extras:e.extras,previousNavigation:t.lastSuccessfulNavigation?Object.assign(Object.assign({},t.lastSuccessfulNavigation),{previousNavigation:null}):null}})),Pk((function(e){var r,i,a,o,s=!t.navigated||e.extractedUrl.toString()!==t.browserUrlTree.toString();if((\"reload\"===t.onSameUrlNavigation||s)&&t.urlHandlingStrategy.shouldProcessUrl(e.rawUrl))return Bd(e).pipe(Pk((function(e){var r=t.transitions.getValue();return n.next(new vD(e.id,t.serializeUrl(e.extractedUrl),e.source,e.restoredState)),r!==t.transitions.getValue()?lp:[e]})),Pk((function(e){return Promise.resolve(e)})),(r=t.ngModule.injector,i=t.configLoader,a=t.urlSerializer,o=t.config,function(e){return e.pipe(Pk((function(e){return function(e,t,n,r,i){return new ZO(e,t,n,r,i).apply()}(r,i,a,e.extractedUrl,o).pipe(F((function(t){return Object.assign(Object.assign({},e),{urlAfterRedirects:t})})))})))}),Km((function(e){t.currentNavigation=Object.assign(Object.assign({},t.currentNavigation),{finalUrl:e.urlAfterRedirects})})),function(e,n,r,i,a){return function(r){return r.pipe(U((function(r){return function(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:\"emptyOnly\",a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:\"legacy\";return new fY(e,t,n,r,i,a).recognize()}(e,n,r.urlAfterRedirects,(o=r.urlAfterRedirects,t.serializeUrl(o)),i,a).pipe(F((function(e){return Object.assign(Object.assign({},r),{targetSnapshot:e})})));var o})))}}(t.rootComponentType,t.config,0,t.paramsInheritanceStrategy,t.relativeLinkResolution),Km((function(e){\"eager\"===t.urlUpdateStrategy&&(e.extras.skipLocationChange||t.setBrowserUrl(e.urlAfterRedirects,!!e.extras.replaceUrl,e.id,e.extras.state),t.browserUrlTree=e.urlAfterRedirects)})),Km((function(e){var r=new kD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);n.next(r)})));if(s&&t.rawUrlTree&&t.urlHandlingStrategy.shouldProcessUrl(t.rawUrlTree)){var l=e.id,u=e.extractedUrl,c=e.source,d=e.restoredState,h=e.extras,f=new vD(l,t.serializeUrl(u),c,d);n.next(f);var m=wO(u,t.rootComponentType).snapshot;return Bd(Object.assign(Object.assign({},e),{targetSnapshot:m,urlAfterRedirects:u,extras:Object.assign(Object.assign({},h),{skipLocationChange:!1,replaceUrl:!1})}))}return t.rawUrlTree=e.rawUrl,t.browserUrlTree=e.urlAfterRedirects,e.resolve(null),lp})),wY((function(e){var n=e.targetSnapshot,r=e.id,i=e.extractedUrl,a=e.rawUrl,o=e.extras,s=o.skipLocationChange,l=o.replaceUrl;return t.hooks.beforePreactivation(n,{navigationId:r,appliedUrlTree:i,rawUrlTree:a,skipLocationChange:!!s,replaceUrl:!!l})})),Km((function(e){var n=new wD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);t.triggerEvent(n)})),F((function(e){return Object.assign(Object.assign({},e),{guards:(n=e.targetSnapshot,r=e.currentSnapshot,i=t.rootContexts,a=n._root,function e(t,n,r,i){var a=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{canDeactivateChecks:[],canActivateChecks:[]},o=bO(n);return t.children.forEach((function(t){!function(t,n,r,i){var a=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{canDeactivateChecks:[],canActivateChecks:[]},o=t.value,s=n?n.value:null,l=r?r.getContext(t.value.outlet):null;if(s&&o.routeConfig===s.routeConfig){var u=function(e,t,n){if(\"function\"==typeof n)return n(e,t);switch(n){case\"pathParamsChange\":return!XD(e.url,t.url);case\"pathParamsOrQueryParamsChange\":return!XD(e.url,t.url)||!WD(e.queryParams,t.queryParams);case\"always\":return!0;case\"paramsOrQueryParamsChange\":return!OO(e,t)||!WD(e.queryParams,t.queryParams);case\"paramsChange\":default:return!OO(e,t)}}(s,o,o.routeConfig.runGuardsAndResolvers);u?a.canActivateChecks.push(new nY(i)):(o.data=s.data,o._resolvedData=s._resolvedData),e(t,n,o.component?l?l.children:null:r,i,a),u&&a.canDeactivateChecks.push(new rY(l&&l.outlet&&l.outlet.component||null,s))}else s&&aY(n,l,a),a.canActivateChecks.push(new nY(i)),e(t,null,o.component?l?l.children:null:r,i,a)}(t,o[t.value.outlet],r,i.concat([t.value]),a),delete o[t.value.outlet]})),GD(o,(function(e,t){return aY(e,r.getContext(t),a)})),a}(a,r?r._root:null,i,[a.value]))});var n,r,i,a})),function(e,t){return function(n){return n.pipe(U((function(n){var r=n.targetSnapshot,i=n.currentSnapshot,a=n.guards,o=a.canActivateChecks,s=a.canDeactivateChecks;return 0===s.length&&0===o.length?Bd(Object.assign(Object.assign({},n),{guardsResult:!0})):function(e,t,n,r){return W(e).pipe(U((function(e){return function(e,t,n,r,i){var a=t&&t.routeConfig?t.routeConfig.canDeactivate:null;return a&&0!==a.length?Bd(a.map((function(a){var o,s=iY(a,t,i);if(function(e){return e&&UO(e.canDeactivate)}(s))o=$D(s.canDeactivate(e,t,n,r));else{if(!UO(s))throw new Error(\"Invalid CanDeactivate guard\");o=$D(s(e,t,n,r))}return o.pipe(uD())}))).pipe(sY()):Bd(!0)}(e.component,e.route,n,t,r)})),uD((function(e){return!0!==e}),!0))}(s,r,i,e).pipe(U((function(n){return n&&\"boolean\"==typeof n?function(e,t,n,r){return W(t).pipe(qd((function(t){return W([uY(t.route.parent,r),lY(t.route,r),dY(e,t.path,n),cY(e,t.route,n)]).pipe(av(),uD((function(e){return!0!==e}),!0))})),uD((function(e){return!0!==e}),!0))}(r,o,e,t):Bd(n)})),F((function(e){return Object.assign(Object.assign({},n),{guardsResult:e})})))})))}}(t.ngModule.injector,(function(e){return t.triggerEvent(e)})),Km((function(e){if(BO(e.guardsResult)){var n=jD('Redirecting to \"'.concat(t.serializeUrl(e.guardsResult),'\"'));throw n.url=e.guardsResult,n}})),Km((function(e){var n=new CD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot,!!e.guardsResult);t.triggerEvent(n)})),Gd((function(e){if(!e.guardsResult){t.resetUrlToCurrentUrlTree();var r=new yD(e.id,t.serializeUrl(e.extractedUrl),\"\");return n.next(r),e.resolve(!1),!1}return!0})),wY((function(e){if(e.guards.canActivateChecks.length)return Bd(e).pipe(Km((function(e){var n=new MD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);t.triggerEvent(n)})),(n=t.paramsInheritanceStrategy,r=t.ngModule.injector,function(e){return e.pipe(U((function(e){var t=e.targetSnapshot,i=e.guards.canActivateChecks;return i.length?W(i).pipe(qd((function(e){return function(e,t,n,r){return function(e,t,n,r){var i=Object.keys(e);if(0===i.length)return Bd({});if(1===i.length){var a=i[0];return kY(e[a],t,n,r).pipe(F((function(e){return _defineProperty({},a,e)})))}var o={};return W(i).pipe(U((function(i){return kY(e[i],t,n,r).pipe(F((function(e){return o[i]=e,e})))}))).pipe(lD(),F((function(){return o})))}(e._resolve,e,t,r).pipe(F((function(t){return e._resolvedData=t,e.data=Object.assign(Object.assign({},e.data),MO(e,n).resolve),null})))}(e.route,t,n,r)})),function(e,t){return arguments.length>=2?function(n){return y(hD(e,t),Qx(1),aD(t))(n)}:function(t){return y(hD((function(t,n,r){return e(t,n,r+1)})),Qx(1))(t)}}((function(e,t){return e})),F((function(t){return e}))):Bd(e)})))}),Km((function(e){var n=new SD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);t.triggerEvent(n)})));var n,r})),wY((function(e){var n=e.targetSnapshot,r=e.id,i=e.extractedUrl,a=e.rawUrl,o=e.extras,s=o.skipLocationChange,l=o.replaceUrl;return t.hooks.afterPreactivation(n,{navigationId:r,appliedUrlTree:i,rawUrlTree:a,skipLocationChange:!!s,replaceUrl:!!l})})),F((function(e){var n=function(e,t,n){var r=function e(t,n,r){if(r&&t.shouldReuseRoute(n.value,r.value.snapshot)){var i=r.value;i._futureSnapshot=n.value;var a=function(t,n,r){return n.children.map((function(n){var i,a=_createForOfIteratorHelper(r.children);try{for(a.s();!(i=a.n()).done;){var o=i.value;if(t.shouldReuseRoute(o.value.snapshot,n.value))return e(t,n,o)}}catch(s){a.e(s)}finally{a.f()}return e(t,n)}))}(t,n,r);return new yO(i,a)}var o=t.retrieve(n.value);if(o){var s=o.route;return function e(t,n){if(t.value.routeConfig!==n.value.routeConfig)throw new Error(\"Cannot reattach ActivatedRouteSnapshot created from a different route\");if(t.children.length!==n.children.length)throw new Error(\"Cannot reattach ActivatedRouteSnapshot with a different number of children\");n.value._futureSnapshot=t.value;for(var r=0;r1&&void 0!==arguments[1]?arguments[1]:{},n=t.relativeTo,r=t.queryParams,i=t.fragment,a=t.preserveQueryParams,o=t.queryParamsHandling,s=t.preserveFragment;Lr()&&a&&console&&console.warn&&console.warn(\"preserveQueryParams is deprecated, use queryParamsHandling instead.\");var l=n||this.routerState.root,u=s?this.currentUrlTree.fragment:i,c=null;if(o)switch(o){case\"merge\":c=Object.assign(Object.assign({},this.currentUrlTree.queryParams),r);break;case\"preserve\":c=this.currentUrlTree.queryParams;break;default:c=r||null}else c=a?this.currentUrlTree.queryParams:r||null;return null!==c&&(c=this.removeEmptyProps(c)),function(e,t,n,r,i){if(0===n.length)return EO(t.root,t.root,t,r,i);var a=function(e){if(\"string\"==typeof e[0]&&1===e.length&&\"/\"===e[0])return new IO(!0,0,e);var t=0,n=!1,r=e.reduce((function(e,r,i){if(\"object\"==typeof r&&null!=r){if(r.outlets){var a={};return GD(r.outlets,(function(e,t){a[t]=\"string\"==typeof e?e.split(\"/\"):e})),[].concat(_toConsumableArray(e),[{outlets:a}])}if(r.segmentPath)return[].concat(_toConsumableArray(e),[r.segmentPath])}return\"string\"!=typeof r?[].concat(_toConsumableArray(e),[r]):0===i?(r.split(\"/\").forEach((function(r,i){0==i&&\".\"===r||(0==i&&\"\"===r?n=!0:\"..\"===r?t++:\"\"!=r&&e.push(r))})),e):[].concat(_toConsumableArray(e),[r])}),[]);return new IO(n,t,r)}(n);if(a.toRoot())return EO(t.root,new ZD([],{}),t,r,i);var o=function(e,t,n){if(e.isAbsolute)return new AO(t.root,!0,0);if(-1===n.snapshot._lastPathIndex)return new AO(n.snapshot._urlSegment,!0,0);var r=YO(e.commands[0])?0:1;return function(e,t,n){for(var r=e,i=t,a=n;a>i;){if(a-=i,!(r=r.parent))throw new Error(\"Invalid number of '../'\");i=r.segments.length}return new AO(r,!1,i-a)}(n.snapshot._urlSegment,n.snapshot._lastPathIndex+r,e.numberOfDoubleDots)}(a,t,e),s=o.processChildren?RO(o.segmentGroup,o.index,a.commands):jO(o.segmentGroup,o.index,a.commands);return EO(o.segmentGroup,s,t,r,i)}(l,this.currentUrlTree,e,c,u)}},{key:\"navigateByUrl\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{skipLocationChange:!1};Lr()&&this.isNgZoneEnabled&&!cc.isInAngularZone()&&this.console.warn(\"Navigation triggered outside Angular zone, did you forget to call 'ngZone.run()'?\");var n=BO(e)?e:this.parseUrl(e),r=this.urlHandlingStrategy.merge(n,this.rawUrlTree);return this.scheduleNavigation(r,\"imperative\",null,t)}},{key:\"navigate\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{skipLocationChange:!1};return function(e){for(var t=0;t2&&void 0!==arguments[2]?arguments[2]:{};_classCallCheck(this,e),this.router=t,this.viewportScroller=n,this.options=r,this.lastId=0,this.lastSource=\"imperative\",this.restoredId=0,this.store={},r.scrollPositionRestoration=r.scrollPositionRestoration||\"disabled\",r.anchorScrolling=r.anchorScrolling||\"disabled\"}return _createClass(e,[{key:\"init\",value:function(){\"disabled\"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration(\"manual\"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}},{key:\"createScrollEvents\",value:function(){var e=this;return this.router.events.subscribe((function(t){t instanceof vD?(e.store[e.lastId]=e.viewportScroller.getScrollPosition(),e.lastSource=t.navigationTrigger,e.restoredId=t.restoredState?t.restoredState.navigationId:0):t instanceof gD&&(e.lastId=t.id,e.scheduleScrollEvent(t,e.router.parseUrl(t.urlAfterRedirects).fragment))}))}},{key:\"consumeScrollEvents\",value:function(){var e=this;return this.router.events.subscribe((function(t){t instanceof ED&&(t.position?\"top\"===e.options.scrollPositionRestoration?e.viewportScroller.scrollToPosition([0,0]):\"enabled\"===e.options.scrollPositionRestoration&&e.viewportScroller.scrollToPosition(t.position):t.anchor&&\"enabled\"===e.options.anchorScrolling?e.viewportScroller.scrollToAnchor(t.anchor):\"disabled\"!==e.options.scrollPositionRestoration&&e.viewportScroller.scrollToPosition([0,0]))}))}},{key:\"scheduleScrollEvent\",value:function(e,t){this.router.triggerEvent(new ED(e,\"popstate\"===this.lastSource?this.store[this.restoredId]:null,t))}},{key:\"ngOnDestroy\",value:function(){this.routerEventsSubscription&&this.routerEventsSubscription.unsubscribe(),this.scrollEventsSubscription&&this.scrollEventsSubscription.unsubscribe()}}]),e}()).\\u0275fac=function(e){Po()},jY.\\u0275dir=Lt({type:jY}),jY),qY=new Be(\"ROUTER_CONFIGURATION\"),GY=new Be(\"ROUTER_FORROOT_GUARD\"),$Y=[ud,{provide:tO,useClass:nO},{provide:EY,useFactory:function(e,t,n,r,i,a,o){var s=arguments.length>7&&void 0!==arguments[7]?arguments[7]:{},l=arguments.length>8?arguments[8]:void 0,u=arguments.length>9?arguments[9]:void 0,c=new EY(null,e,t,n,r,i,a,BD(o));if(l&&(c.urlHandlingStrategy=l),u&&(c.routeReuseStrategy=u),s.errorHandler&&(c.errorHandler=s.errorHandler),s.malformedUriErrorHandler&&(c.malformedUriErrorHandler=s.malformedUriErrorHandler),s.enableTracing){var d=zc();c.events.subscribe((function(e){d.logGroup(\"Router Event: \".concat(e.constructor.name)),d.log(e.toString()),d.log(e),d.logGroupEnd()}))}return s.onSameUrlNavigation&&(c.onSameUrlNavigation=s.onSameUrlNavigation),s.paramsInheritanceStrategy&&(c.paramsInheritanceStrategy=s.paramsInheritanceStrategy),s.urlUpdateStrategy&&(c.urlUpdateStrategy=s.urlUpdateStrategy),s.relativeLinkResolution&&(c.relativeLinkResolution=s.relativeLinkResolution),c},deps:[tO,FY,ud,vo,Ec,oc,MY,qY,[function(){return function e(){_classCallCheck(this,e)}}(),new ce],[function(){return function e(){_classCallCheck(this,e)}}(),new ce]]},FY,{provide:CO,useFactory:function(e){return e.routerState.root},deps:[EY]},{provide:Ec,useClass:Pc},UY,WY,function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"preload\",value:function(e,t){return t().pipe(pC((function(){return Bd(null)})))}}]),e}(),{provide:qY,useValue:{enableTracing:!1}}];function JY(){return new Mc(\"Router\",EY)}var KY,ZY=((KY=function(){function e(t,n){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"forRoot\",value:function(t,n){return{ngModule:e,providers:[$Y,tE(t),{provide:GY,useFactory:eE,deps:[[EY,new ce,new he]]},{provide:qY,useValue:n||{}},{provide:td,useFactory:XY,deps:[Uc,[new ue(od),new ce],qY]},{provide:BY,useFactory:QY,deps:[EY,Wd,qY]},{provide:VY,useExisting:n&&n.preloadingStrategy?n.preloadingStrategy:WY},{provide:Mc,multi:!0,useFactory:JY},[rE,{provide:Vu,multi:!0,useFactory:iE,deps:[rE]},{provide:oE,useFactory:aE,deps:[rE]},{provide:Ju,multi:!0,useExisting:oE}]]}}},{key:\"forChild\",value:function(t){return{ngModule:e,providers:[tE(t)]}}}]),e}()).\\u0275mod=Mt({type:KY}),KY.\\u0275inj=ve({factory:function(e){return new(e||KY)(et(GY,8),et(EY,8))}}),KY);function QY(e,t,n){return n.scrollOffset&&t.setOffset(n.scrollOffset),new BY(e,t,n)}function XY(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return n.useHash?new ld(e,t):new sd(e,t)}function eE(e){if(e)throw new Error(\"RouterModule.forRoot() called twice. Lazy loaded modules should use RouterModule.forChild() instead.\");return\"guarded\"}function tE(e){return[{provide:go,multi:!0,useValue:e},{provide:MY,multi:!0,useValue:e}]}var nE,rE=((nE=function(){function e(t){_classCallCheck(this,e),this.injector=t,this.initNavigation=!1,this.resultOfPreactivationDone=new x}return _createClass(e,[{key:\"appInitializer\",value:function(){var e=this;return this.injector.get(Gc,Promise.resolve(null)).then((function(){var t=null,n=new Promise((function(e){return t=e})),r=e.injector.get(EY),i=e.injector.get(qY);if(e.isLegacyDisabled(i)||e.isLegacyEnabled(i))t(!0);else if(\"disabled\"===i.initialNavigation)r.setUpLocationChangeListener(),t(!0);else{if(\"enabled\"!==i.initialNavigation)throw new Error(\"Invalid initialNavigation options: '\".concat(i.initialNavigation,\"'\"));r.hooks.afterPreactivation=function(){return e.initNavigation?Bd(null):(e.initNavigation=!0,t(!0),e.resultOfPreactivationDone)},r.initialNavigation()}return n}))}},{key:\"bootstrapListener\",value:function(e){var t=this.injector.get(qY),n=this.injector.get(UY),r=this.injector.get(BY),i=this.injector.get(EY),a=this.injector.get(Oc);e===a.components[0]&&(this.isLegacyEnabled(t)?i.initialNavigation():this.isLegacyDisabled(t)&&i.setUpLocationChangeListener(),n.setUpPreloading(),r.init(),i.resetRootComponentType(a.componentTypes[0]),this.resultOfPreactivationDone.next(null),this.resultOfPreactivationDone.complete())}},{key:\"isLegacyEnabled\",value:function(e){return\"legacy_enabled\"===e.initialNavigation||!0===e.initialNavigation||void 0===e.initialNavigation}},{key:\"isLegacyDisabled\",value:function(e){return\"legacy_disabled\"===e.initialNavigation||!1===e.initialNavigation}}]),e}()).\\u0275fac=function(e){return new(e||nE)(et(vo))},nE.\\u0275prov=_e({token:nE,factory:nE.\\u0275fac}),nE);function iE(e){return e.appInitializer.bind(e)}function aE(e){return e.bootstrapListener.bind(e)}var oE=new Be(\"Router Initializer\");function sE(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:np;return(!xk(e)||e<0)&&(e=0),t&&\"function\"==typeof t.schedule||(t=np),new w((function(n){return n.add(t.schedule(lE,e,{subscriber:n,counter:0,period:e})),n}))}function lE(e){var t=e.subscriber,n=e.counter,r=e.period;t.next(n),this.schedule({subscriber:t,counter:n+1,period:r},r)}var uE={leading:!0,trailing:!1},cE=function(){function e(t,n,r){_classCallCheck(this,e),this.durationSelector=t,this.leading=n,this.trailing=r}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new dE(e,this.durationSelector,this.leading,this.trailing))}}]),e}(),dE=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e)).destination=e,o.durationSelector=r,o._leading=i,o._trailing=a,o._hasValue=!1,o}return _createClass(n,[{key:\"_next\",value:function(e){this._hasValue=!0,this._sendValue=e,this._throttled||(this._leading?this.send():this.throttle(e))}},{key:\"send\",value:function(){var e=this._hasValue,t=this._sendValue;e&&(this.destination.next(t),this.throttle(t)),this._hasValue=!1,this._sendValue=null}},{key:\"throttle\",value:function(e){var t=this.tryDurationSelector(e);t&&this.add(this._throttled=R(this,t))}},{key:\"tryDurationSelector\",value:function(e){try{return this.durationSelector(e)}catch(t){return this.destination.error(t),null}}},{key:\"throttlingDone\",value:function(){var e=this._throttled,t=this._trailing;e&&e.unsubscribe(),this._throttled=null,t&&this.send()}},{key:\"notifyNext\",value:function(e,t,n,r,i){this.throttlingDone()}},{key:\"notifyComplete\",value:function(){this.throttlingDone()}}]),n}(H);function hE(e){var t=e.start,n=e.index,r=e.count,i=e.subscriber;n>=r?i.complete():(i.next(t),i.closed||(e.index=n+1,e.start=t+1,this.schedule(e)))}function fE(e){return function(t){return t.lift(new pE(e,t))}}var mE,pE=function(){function e(t,n){_classCallCheck(this,e),this.notifier=t,this.source=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new _E(e,this.notifier,this.source))}}]),e}(),_E=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).notifier=r,a.source=i,a}return _createClass(n,[{key:\"error\",value:function(e){if(!this.isStopped){var t=this.errors,r=this.retries,i=this.retriesSubscription;if(r)this.errors=null,this.retriesSubscription=null;else{t=new x;try{r=(0,this.notifier)(t)}catch(a){return _get(_getPrototypeOf(n.prototype),\"error\",this).call(this,a)}i=R(this,r)}this._unsubscribeAndRecycle(),this.errors=t,this.retries=r,this.retriesSubscription=i,t.next(e)}}},{key:\"_unsubscribe\",value:function(){var e=this.errors,t=this.retriesSubscription;e&&(e.unsubscribe(),this.errors=null),t&&(t.unsubscribe(),this.retriesSubscription=null),this.retries=null}},{key:\"notifyNext\",value:function(e,t,n,r,i){var a=this._unsubscribe;this._unsubscribe=null,this._unsubscribeAndRecycle(),this._unsubscribe=a,this.source.subscribe(this)}}]),n}(H),vE=function(){function e(t){_classCallCheck(this,e),this.resultSelector=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new gE(e,this.resultSelector))}}]),e}(),gE=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Object.create(null);return _classCallCheck(this,n),(i=t.call(this,e)).iterators=[],i.active=0,i.resultSelector=\"function\"==typeof r?r:null,i.values=a,i}return _createClass(n,[{key:\"_next\",value:function(e){var t=this.iterators;l(e)?t.push(new bE(e)):t.push(\"function\"==typeof e[I]?new yE(e[I]()):new kE(this.destination,this,e))}},{key:\"_complete\",value:function(){var e=this.iterators,t=e.length;if(this.unsubscribe(),0!==t){this.active=t;for(var n=0;nthis.index}},{key:\"hasCompleted\",value:function(){return this.array.length===this.index}}]),e}(),kE=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).parent=r,a.observable=i,a.stillUnsubscribed=!0,a.buffer=[],a.isComplete=!1,a}return _createClass(n,[{key:I,value:function(){return this}},{key:\"next\",value:function(){var e=this.buffer;return 0===e.length&&this.isComplete?{value:null,done:!0}:{value:e.shift(),done:!1}}},{key:\"hasValue\",value:function(){return this.buffer.length>0}},{key:\"hasCompleted\",value:function(){return 0===this.buffer.length&&this.isComplete}},{key:\"notifyComplete\",value:function(){this.buffer.length>0?(this.isComplete=!0,this.parent.notifyInactive()):this.destination.complete()}},{key:\"notifyNext\",value:function(e,t,n,r,i){this.buffer.push(t),this.parent.checkIterators()}},{key:\"subscribe\",value:function(e,t){return R(this,this.observable,this,t)}}]),n}(H),wE=((mE=function(){function e(t,n){_classCallCheck(this,e),this.http=t,this.router=n}return _createClass(e,[{key:\"get\",value:function(e,t){return this.http.get(TE(e),{headers:xE(t)}).pipe(pC(CE(this.router)),fE(ME()))}},{key:\"post\",value:function(e,t,n){return this.http.post(TE(e),t,{headers:xE(n)}).pipe(pC(CE(this.router)),fE(ME()))}},{key:\"rawPost\",value:function(e,t,n){return this.http.post(TE(e),t,{headers:xE(n),observe:\"response\",responseType:\"text\"}).pipe(pC(CE(this.router)),fE(ME()))}},{key:\"delete\",value:function(e,t){return this.http.delete(TE(e),{headers:xE(t)}).pipe(pC(CE(this.router)),fE(ME()))}},{key:\"put\",value:function(e,t,n){return this.http.put(TE(e),t,{headers:xE(n)}).pipe(pC(CE(this.router)),fE(ME()))}}]),e}()).\\u0275fac=function(e){return new(e||mE)(et(kh),et(EY))},mE.\\u0275prov=_e({token:mE,factory:mE.\\u0275fac,providedIn:\"root\"}),mE);function CE(e){return function(t,n){return Bd(t).pipe(U((function(t){if(403==t.status||401==t.status)return e.routerState.snapshot.url.startsWith(\"/login\")||e.navigate([\"/login\"],{queryParams:{returnUrl:e.url}}),up();throw t})))}}function ME(){return function(e){return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0;return new w((function(r){void 0===t&&(t=e,e=0);var i=0,a=e;if(n)return n.schedule(hE,0,{index:i,count:t,start:e,subscriber:r});for(;;){if(i++>=t){r.complete();break}if(r.next(a++),r.closed)break}}))}(1,10).pipe(function(){for(var e=arguments.length,t=new Array(e),n=0;n144e6})),Pk((function(e){return console.log(\"Renewing user token\"),r.api.rawPost(\"user/token\").pipe(F((function(e){return e.headers.get(\"Authorization\")})),Gd((function(e){return\"\"!=e})),pC((function(e){return console.log(\"Error generating new user token: \",e),rT()})))}))).subscribe((function(e){return r.tokenSubject.next(e)}))}return _createClass(e,[{key:\"create\",value:function(e,t){var n=this,r=new FormData;return r.append(\"user\",e),r.append(\"password\",t),this.http.post(\"/api/v2/token\",r,{observe:\"response\",responseType:\"text\"}).pipe(F((function(e){return e.headers.get(\"Authorization\")})),F((function(e){if(e)return n.tokenSubject.next(e),e;throw new OE(\"test\")})))}},{key:\"delete\",value:function(){this.tokenSubject.next(\"\")}},{key:\"tokenObservable\",value:function(){return this.tokenSubject.pipe(F((function(e){return(e||\"\").replace(\"Bearer \",\"\")})),function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:uE;return function(n){return n.lift(new cE(e,t.leading,t.trailing))}}((function(e){return sE(2e3)})))}},{key:\"tokenUser\",value:function(e){return e?JSON.parse(atob(e.split(\".\")[1])).sub:\"\"}}]),e}()).\\u0275fac=function(e){return new(e||SE)(et(kh),et(wE))},SE.\\u0275prov=_e({token:SE,factory:SE.\\u0275fac,providedIn:\"root\"}),SE),OE=function(e){_inherits(n,_wrapNativeSuper(Error));var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return n}(),YE=[\"placeholder\",$localize(_templateObject36())],EE=[\"placeholder\",$localize(_templateObject37())];function IE(e,t){1&e&&(Ho(0,\"ngb-alert\",7),Ls(1,\"Invalid username or password\"),Fo()),2&e&&jo(\"dismissible\",!1)(\"type\",\"danger\")}LE=$localize(_templateObject38());var AE,PE,jE=((AE=function(){function e(t,n,r){_classCallCheck(this,e),this.router=t,this.route=n,this.tokenService=r,this.loading=!1,this.invalidLogin=!1}return _createClass(e,[{key:\"ngOnInit\",value:function(){this.tokenService.delete(),this.returnURL=this.route.snapshot.queryParams.returnURL||\"/\"}},{key:\"login\",value:function(){var e=this;this.loading=!0,this.tokenService.create(this.user,this.password).subscribe((function(t){e.invalidLogin=!1,e.router.navigate([e.returnURL])}),(function(t){401==t.status&&(e.invalidLogin=!0),e.loading=!1}))}}]),e}()).\\u0275fac=function(e){return new(e||AE)(Io(EY),Io(CO),Io(DE))},AE.\\u0275cmp=bt({type:AE,selectors:[[\"ng-component\"]],decls:13,vars:4,consts:[[1,\"content\"],[\"novalidate\",\"\",1,\"login-form\",3,\"ngSubmit\"],[\"f\",\"ngForm\"],[\"matInput\",\"\",\"name\",\"user\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"password\",\"name\",\"password\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[\"mat-raised-button\",\"\",\"type\",\"submit\",3,\"disabled\"],[3,\"dismissible\",\"type\",4,\"ngIf\"],[3,\"dismissible\",\"type\"]],template:function(e,t){if(1&e&&(Ho(0,\"div\",0),Ho(1,\"form\",1,2),qo(\"ngSubmit\",(function(){return t.login()})),Ho(3,\"mat-form-field\"),Ho(4,\"input\",3),iu(5,YE),qo(\"ngModelChange\",(function(e){return t.user=e})),Fo(),Fo(),Ho(6,\"mat-form-field\"),Ho(7,\"input\",4),iu(8,EE),qo(\"ngModelChange\",(function(e){return t.password=e})),Fo(),Fo(),No(9,\"br\"),Ho(10,\"button\",5),ru(11,LE),Fo(),Yo(12,IE,2,2,\"ngb-alert\",6),Fo(),Fo()),2&e){var n=Eo(2);bi(4),jo(\"ngModel\",t.user),bi(3),jo(\"ngModel\",t.password),bi(3),jo(\"disabled\",t.loading||!n.valid),bi(2),jo(\"ngIf\",t.invalidLogin)}},directives:[Mm,af,pm,EM,HM,$h,Um,rf,Cm,zb,Sd,ET],styles:[\".content[_ngcontent-%COMP%]{display:flex;height:100vh;align-items:center;justify-content:center}button[_ngcontent-%COMP%]{margin-bottom:1rem}\"]}),AE),RE=n(\"BOF4\"),HE=((PE=function(){function e(t){_classCallCheck(this,e),this.router=t}return _createClass(e,[{key:\"canActivate\",value:function(e,t){var n=localStorage.getItem(\"token\");if(n){var r=RE(n);if((!r.exp||r.exp>=(new Date).getTime()/1e3)&&(!r.nbf||r.nbf<(new Date).getTime()/1e3))return!0}return this.router.navigate([\"/login\"],{queryParams:{returnUrl:t.url}}),!1}}]),e}()).\\u0275fac=function(e){return new(e||PE)(et(EY))},PE.\\u0275prov=_e({token:PE,factory:PE.\\u0275fac,providedIn:\"root\"}),PE);function FE(e){return e.events.pipe(Gd((function(e){return e instanceof gD})),F((function(t){return NE([e.routerState.snapshot.root])})),sv(NE([e.routerState.snapshot.root])),Ck(),Gk(1))}function NE(e){var t,n=_createForOfIteratorHelper(e);try{for(n.s();!(t=n.n()).done;){var r=t.value;if(\"primary\"in r.data)return r;var i=NE(r.children);if(null!=i)return i}}catch(a){n.e(a)}finally{n.f()}return null}function zE(e){return e.events.pipe(Gd((function(e){return e instanceof gD})),F((function(t){return VE([e.routerState.snapshot.root])})),sv(VE([e.routerState.snapshot.root])),Ck(),Gk(1))}function VE(e){var t,n=_createForOfIteratorHelper(e);try{for(n.s();!(t=n.n()).done;){var r=t.value;if(\"articleID\"in r.params)return r;var i=VE(r.children);if(null!=i)return i}}catch(a){n.e(a)}finally{n.f()}return null}function WE(){for(var e=arguments.length,t=new Array(e),n=0;n0&&(t.title=t.hits.fragments.title.join(\" \")),t.hits.fragments.description.length>0&&(t.stripped=t.hits.fragments.description.join(\" \"))),t.stripped||(t.stripped=t.description.replace(/<[^>]+>/g,\"\")),t.feed=e[0][t.feedID],t})),t})),hD((function(e,t){if(t.unreadIDs)for(var r=0;r=t.unreadIDRange[0]&&i<=t.unreadIDRange[1]&&(e.articles[r].read=!t.unreadIDs.has(i))}if(t.fromEvent){var a,o=new Array,s=_createForOfIteratorHelper(t.articles);try{for(s.s();!(a=s.n()).done;){var u=a.value;if(u.id in e.indexMap)o.push(u);else if(n.olderFirst){for(var c=e.articles.length-1;c>=0;c--)if(l.shouldInsert(u,e.articles[c],n)){e.articles.splice(c,0,u);break}}else for(var d=0;d0})),F((function(e){return e.map((function(e){return e.id}))})),F((function(e){return[Math.min.apply(Math,e),Math.max.apply(Math,e)]})),F((function(e){return l.preferences.olderFirst?[{afterID:e[1]},e[0]]:[{olderFirst:!0,afterID:e[1]},e[0]]}))).subscribe((function(e){return l.updateSubject.next(e)}),(function(e){return console.log(\"Error refreshing article list after reconnect: \",e)})),this.eventService.articleState.subscribe((function(e){return l.stateChange.next({options:e.options,name:e.state,value:e.value})}));var d=(new Date).getTime();Notification.requestPermission((function(e){\"granted\"==e&&c.pipe(WE(l.source,(function(e,t){return[e[0],e[1],t]})),Pk((function(e){return l.eventService.feedUpdate.pipe(Gd((function(t){return l.shouldUpdate(t,e[2],e[1])})),F((function(t){var n=e[0].get(t.feedID);return n?[\"readeef: updates\",\"Feed \".concat(n,\" has been updated\")]:null})),Gd((function(e){return null!=e})),NM(3e4))}))).subscribe((function(e){document.hasFocus()||(new Date).getTime()-d>3e4&&(new Notification(e[0],{body:e[1],icon:\"/en/readeef.png\",tag:\"readeef\"}),d=(new Date).getTime())}))}))}return _createClass(e,[{key:\"articleObservable\",value:function(){return this.articles}},{key:\"requestNextPage\",value:function(){this.paging.next(null)}},{key:\"ids\",value:function(e,t){return this.api.get(this.buildURL(\"article\".concat(e.url,\"/ids\"),t)).pipe(F((function(e){return e.ids})))}},{key:\"formatArticle\",value:function(e){return this.api.get(\"article/\".concat(e,\"/format\"))}},{key:\"refreshArticles\",value:function(){this.refresh.next(null)}},{key:\"favor\",value:function(e,t){return this.articleStateChange(e,\"favorite\",t)}},{key:\"read\",value:function(e,t){return this.articleStateChange(e,\"read\",t)}},{key:\"readAll\",value:function(){var e=this;this.source.pipe(cp(1),Gd((function(e){return e.updatable})),F((function(e){return\"article\"+e.url+\"/read\"})),U((function(t){return e.api.post(t)})),F((function(e){return e.success}))).subscribe((function(e){}),(function(e){return console.log(e)}))}},{key:\"articleStateChange\",value:function(e,t,n){var r=this,i=\"article/\".concat(e,\"/\").concat(t);return(n?this.api.post(i):this.api.delete(i)).pipe(F((function(e){return e.success})),F((function(i){return i&&r.stateChange.next({options:{ids:[e]},name:t,value:n}),i})))}},{key:\"getArticlesFor\",value:function(e,t,n,r){var i=this,a=Object.assign({},t,{limit:n}),o=Object.assign({},a),s=-1,l=0;r.unreadTime?(s=r.unreadTime,l=r.unreadScore,o.unreadOnly=!0):r.time&&(s=r.time,l=r.score),-1!=s&&(t.olderFirst?(o.afterTime=s,l&&(o.afterScore=l)):(o.beforeTime=s,l&&(o.beforeScore=l)));var u=this.api.get(this.buildURL(\"article\"+e.url,o)).pipe(F((function(e){return yI(e.articles)})));if(r.unreadTime&&((o=Object.assign({},a)).readOnly=!0,r.time&&(t.olderFirst?(o.afterTime=r.time,r.score&&(o.afterScore=r.score)):(o.beforeTime=r.time,r.score&&(o.beforeScore=r.score))),u=u.pipe(U((function(t){return t.length==n?Bd(t):(o.limit=n-t.length,i.api.get(i.buildURL(\"article\"+e.url,o)).pipe(F((function(e){return yI(e.articles)})),F((function(e){return t.concat(e)}))))})))),o.afterID&&(u=u.pipe(U((function(t){if(!t||!t.length)return Bd(t);var a=Math.max.apply(Math,t.map((function(e){return e.id}))),s=Object.assign({},o,{afterID:a});return i.getArticlesFor(e,s,n,r).pipe(F((function(e){return e&&e.length?e.concat(t):t})))})))),!this.initialFetched){this.initialFetched=!0;var c=VE([this.router.routerState.snapshot.root]);if(null!=c&&+c.params.articleID>-1){var d=+c.params.articleID;return this.api.get(this.buildURL(\"article\"+(new kI).url,{ids:[d]})).pipe(F((function(e){return yI(e.articles)[0]})),cp(1),U((function(e){return u.pipe(F((function(t){for(var n=0;n0?e+(-1==e.indexOf(\"?\")?\"?\":\"&\")+n.join(\"&\"):e}},{key:\"nameToSource\",value:function(e,t){var n,r;switch(\"string\"==typeof e?n=e:(n=e.primary,r=e.secondary),n){case\"user\":return new kI;case\"favorite\":return new wI;case\"popular\":return new CI(this.nameToSource(r,t));case\"search\":return new LI(decodeURIComponent(t.query),this.nameToSource(r,t));case\"feed\":return new MI(t.id);case\"tag\":return new SI(t.id)}}},{key:\"datePaging\",value:function(e,t){return this.articles.pipe(cp(1),F((function(n){if(0==n.length)return t?{unreadTime:-1}:{};var r=n[n.length-1],i={time:r.date.getTime()/1e3};if(e instanceof CI&&(i.score=r.score),t&&!(e instanceof LI)){if(!r.read)return i.unreadTime=i.time,e instanceof CI&&(i.unreadScore=i.score),i;for(var a=1;at.date)return!0;return!1}},{key:\"shouldSet\",value:function(e,t,n){return!(t.feedIDs&&-1==t.feedIDs.indexOf(e.feedID)||t.readOnly&&!e.read||t.unreadOnly&&e.read||t.favoriteOnly&&!e.favorite||t.untaggedOnly&&!n.has(e.feedID)||t.beforeID&&e.id>=t.beforeID||t.afterID&&e.id<=t.afterID||t.beforeDate&&e.date>=t.beforeDate||t.afterDate&&e.date<=t.afterDate)}}]),e}()).\\u0275fac=function(e){return new(e||bI)(et(wE),et(DE),et(pI),et(_I),et(vI),et(EY),et(gI))},bI.\\u0275prov=_e({token:bI,factory:bI.\\u0275fac,providedIn:\"root\"}),bI);function DI(e,t){1&e&&No(0,\"div\",9),2&e&&hs(\"background-image\",\"url(\"+Zo().item.thumbnail+\")\",ri)}function OI(e,t){if(1&e&&(Ho(0,\"div\",10),Ls(1),Fo()),2&e){var n=Zo();bi(1),xs(\" \",n.item.feed,\" \")}}var YI,EI,II=((YI=function(){function e(t,n,r){_classCallCheck(this,e),this.articleService=t,this.router=n,this.route=r}return _createClass(e,[{key:\"openArticle\",value:function(e){this.router.navigate([\"article\",e.id],{relativeTo:this.route})}},{key:\"favor\",value:function(e,t){this.articleService.favor(e,t).subscribe((function(e){}),(function(e){return console.log(e)}))}}]),e}()).\\u0275fac=function(e){return new(e||YI)(Io(xI),Io(EY),Io(CO))},YI.\\u0275cmp=bt({type:YI,selectors:[[\"list-item\"]],inputs:{item:\"item\"},decls:15,vars:11,consts:[[3,\"id\",\"click\"],[1,\"row\",\"align-items-center\"],[1,\"col\",\"title\"],[\"mat-card-avatar\",\"\",\"mat-icon-button\",\"\",3,\"click\"],[3,\"innerHTML\"],[\"mat-card-image\",\"\",3,\"backgroundImage\",4,\"ngIf\"],[1,\"row\",\"align-items-center\",\"info\"],[\"class\",\"col-mat-auto feed\",4,\"ngIf\"],[1,\"col\",\"time\"],[\"mat-card-image\",\"\"],[1,\"col-mat-auto\",\"feed\"]],template:function(e,t){1&e&&(Ho(0,\"mat-card\",0),qo(\"click\",(function(){return t.openArticle(t.item)})),Ho(1,\"mat-card-header\",1),Ho(2,\"mat-card-title\",2),Ho(3,\"button\",3),qo(\"click\",(function(e){return e.stopPropagation(),t.favor(t.item.id,!t.item.favorite)})),Ho(4,\"mat-icon\"),Ls(5),Fo(),Fo(),No(6,\"span\",4),Fo(),Fo(),Yo(7,DI,1,2,\"div\",5),Ho(8,\"mat-card-content\"),No(9,\"div\",4),Fo(),Ho(10,\"mat-card-actions\"),Ho(11,\"div\",6),Yo(12,OI,2,1,\"div\",7),Ho(13,\"div\",8),Ls(14),Fo(),Fo(),Fo(),Fo()),2&e&&(fs(\"read\",t.item.read),rs(\"id\",t.item.id),bi(5),xs(\" \",t.item.favorite?\"bookmark\":\"bookmark_border\",\" \"),bi(1),jo(\"innerHTML\",t.item.title,ei),bi(1),jo(\"ngIf\",t.item.thumbnail),bi(2),jo(\"innerHTML\",t.item.stripped,ei),bi(2),fs(\"read\",t.item.read),bi(1),jo(\"ngIf\",t.item.feed),bi(2),xs(\" \",t.item.time,\" \"))},directives:[Xb,ek,Jb,zb,Qb,FC,Sd,$b,Kb,Zb],styles:[\"[_nghost-%COMP%]{height:500px}mat-card[_ngcontent-%COMP%]{display:flex;flex-direction:column;max-height:calc(100% - 12px);cursor:pointer}mat-card-header[_ngcontent-%COMP%]{overflow:hidden;flex:0 0 auto}[mat-card-image][_ngcontent-%COMP%]{height:240px;flex:1 0 auto;background-position:50%;background-repeat:no-repeat}mat-card-content[_ngcontent-%COMP%]{flex:0 1 auto;overflow:hidden;text-overflow:ellipsis-lastline;font-size:12px}mat-card-actions[_ngcontent-%COMP%]{flex:0 0 auto}.read[_ngcontent-%COMP%]{font-weight:100;color:#666}.read[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{font-weight:300}.title[_ngcontent-%COMP%]{font-weight:700;font-size:14px;overflow:hidden;text-overflow:ellipsis;line-height:1;height:3.85em}.info[_ngcontent-%COMP%]{margin:0}.feed[_ngcontent-%COMP%]{font-weight:200;font-size:10px;text-align:start}.time[_ngcontent-%COMP%]{font-size:11px;text-align:end}button[_ngcontent-%COMP%]:focus, button[_ngcontent-%COMP%]:hover{outline:none;text-decoration:none}\"]}),YI);function AI(e,t){1&e&&No(0,\"list-item\",4),2&e&&jo(\"item\",t.$implicit)}function PI(e,t){1&e&&(Ho(0,\"div\",5),ru(1,EI),Fo())}EI=$localize(_templateObject63());var jI,RI,HI,FI,NI,zI=function e(t,n){_classCallCheck(this,e),this.iteration=t,this.articles=n},VI=((jI=function(){function e(t,n,r){_classCallCheck(this,e),this.articleService=t,this.router=n,this.route=r,this.items=[],this.finished=!1,this.limit=200}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.loading=!0,this.subscription=this.articleService.articleObservable().pipe(hD((function(t,n,r){return t.iteration>0&&t.articles.length==n.length&&(e.finished=!0),t.articles=[].concat(n),t.iteration++,t}),new zI(0,[])),F((function(e){return e.articles})),Pk((function(e){return sE(6e4).pipe(sv(0),F((function(t){return e.map((function(e){return e.time=uI(e.date).fromNow(),e}))})))}))).subscribe((function(t){e.loading=!1,e.items=t}),(function(t){e.loading=!1,console.log(t)}))}},{key:\"ngOnDestroy\",value:function(){this.subscription.unsubscribe()}},{key:\"fetchMore\",value:function(e){e.endIndex!==this.items.length-1||this.loading||this.finished||(this.loading=!0,this.articleService.requestNextPage())}},{key:\"firstUnread\",value:function(){if(!document.activeElement.matches(\"input\")){var e=this.items.find((function(e){return!e.read}));e&&this.router.navigate([\"article\",e.id],{relativeTo:this.route})}}},{key:\"lastUnread\",value:function(){if(!document.activeElement.matches(\"input\"))for(var e=this.items.length-1;e>-1;e--){var t=this.items[e];if(!t.read)return void this.router.navigate([\"article\",t.id],{relativeTo:this.route})}}},{key:\"refresh\",value:function(){document.activeElement.matches(\"input\")||this.articleService.refreshArticles()}}]),e}()).\\u0275fac=function(e){return new(e||jI)(Io(xI),Io(EY),Io(CO))},jI.\\u0275cmp=bt({type:jI,selectors:[[\"article-list\"]],hostBindings:function(e,t){1&e&&qo(\"keydown.arrowLeft\",(function(){return t.firstUnread()}),!1,qn)(\"keydown.shift.j\",(function(){return t.firstUnread()}),!1,qn)(\"keydown.arrowRight\",(function(){return t.lastUnread()}),!1,qn)(\"keydown.shift.k\",(function(){return t.lastUnread()}),!1,qn)(\"keydown.r\",(function(){return t.refresh()}),!1,qn)},decls:4,vars:3,consts:[[3,\"items\",\"vsEnd\"],[\"scroll\",\"\"],[3,\"item\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"loader\",4,\"ngIf\"],[3,\"item\"],[1,\"loader\"]],template:function(e,t){if(1&e&&(Ho(0,\"virtual-scroller\",0,1),qo(\"vsEnd\",(function(e){return t.fetchMore(e)})),Yo(2,AI,1,1,\"list-item\",2),Yo(3,PI,2,0,\"div\",3),Fo()),2&e){var n=Eo(1);jo(\"items\",t.items),bi(2),jo(\"ngForOf\",n.viewPortItems),bi(1),jo(\"ngIf\",t.loading)}},directives:[Gx,Cd,Sd,II],styles:['[_nghost-%COMP%]{flex-grow:1;display:flex;height:calc(100% - 64px)}virtual-scroller[_ngcontent-%COMP%]{overflow:hidden;overflow-y:auto;display:block;flex-grow:1;background:#eee}list-item[_ngcontent-%COMP%]{display:inline-block;overflow:hidden;vertical-align:top;border:0;width:calc(25% - 16px);margin:8px}@media (max-width:1350px){list-item[_ngcontent-%COMP%]{width:calc(33% - 16px)}}@media (max-width:900px){list-item[_ngcontent-%COMP%]{width:calc(50% - 16px)}}@media (max-width:600px){list-item[_ngcontent-%COMP%]{width:calc(100% - 16px)}}.loader[_ngcontent-%COMP%]{height:4em;display:block;line-height:4em;text-align:center;position:relative}.loader[_ngcontent-%COMP%]:before{content:\" \";position:absolute;top:0;left:0;width:20%;height:2px;background:red;-webkit-animation:loader-animation 2s ease-out infinite;animation:loader-animation 2s ease-out infinite}@-webkit-keyframes loader-animation{0%{transform:translate(0)}to{transform:translate(500%)}}@keyframes loader-animation{0%{transform:translate(0)}to{transform:translate(500%)}}']}),jI),WI=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new UI(e))}}]),e}(),UI=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"_next\",value:function(e){}}]),n}(p),BI=((RI=function(){function e(t,n){var r=this;_classCallCheck(this,e),this.api=t,this.tokenService=n;var i=this.tokenService.tokenObservable().pipe(Pk((function(e){return r.api.get(\"features\").pipe(F((function(e){return e.features})))})),cI(1));i.connect(),this.features=i}return _createClass(e,[{key:\"getFeatures\",value:function(){return this.features}}]),e}()).\\u0275fac=function(e){return new(e||RI)(et(wE),et(DE))},RI.\\u0275prov=_e({token:RI,factory:RI.\\u0275fac,providedIn:\"root\"}),RI),qI=[\"carousel\"];function GI(e,t){if(1&e&&(Ho(0,\"div\",17),Ls(1),Fo()),2&e){var n=Zo(2).$implicit;bi(1),xs(\" \",n.feed,\" \")}}function $I(e,t){if(1&e){var n=Wo();Ho(0,\"div\",18),Ho(1,\"button\",19),qo(\"click\",(function(){nn(n);var e=Zo(2).$implicit;return Zo().formatArticle(e)})),ru(2,FI),Fo(),Fo()}}function JI(e,t){if(1&e){var n=Wo();Ho(0,\"div\",18),Ho(1,\"button\",19),qo(\"click\",(function(){nn(n);var e=Zo(2).$implicit;return Zo().summarizeArticle(e)})),ru(2,NI),Fo(),Fo()}}function KI(e,t){if(1&e){var n=Wo();Ho(0,\"div\",4),Ho(1,\"h3\",5),Ho(2,\"button\",6),qo(\"click\",(function(){nn(n);var e=Zo().$implicit;return Zo().favorArticle(e)})),Ho(3,\"mat-icon\"),Ls(4),Fo(),Fo(),Ho(5,\"a\",7),qo(\"click\",(function(){return nn(n),Zo(2).viewActive()})),Fo(),Fo(),Ho(6,\"div\",8),Yo(7,GI,2,1,\"div\",9),Ho(8,\"div\",10),Ls(9),Fo(),Ho(10,\"div\",11),Ls(11),Fo(),Fo(),No(12,\"p\",12),Ho(13,\"div\",13),Ho(14,\"div\",14),Ho(15,\"a\",15),qo(\"click\",(function(){return nn(n),Zo(2).viewActive()})),ru(16,HI),Fo(),Fo(),Yo(17,$I,3,0,\"div\",16),Yo(18,JI,3,0,\"div\",16),Fo(),Fo()}if(2&e){var r=Zo().$implicit,i=Zo();bi(4),xs(\" \",r.favorite?\"bookmark\":\"bookmark_border\",\" \"),bi(1),rs(\"href\",r.link,ni),jo(\"innerHTML\",r.title,ei),bi(1),fs(\"read\",r.read),bi(1),jo(\"ngIf\",r.feed),bi(2),xs(\" \",i.index,\" \"),bi(2),xs(\" \",r.time,\" \"),bi(1),jo(\"innerHTML\",r.formatted,ei),bi(3),rs(\"href\",r.link,ni),bi(2),jo(\"ngIf\",i.canExtract),bi(1),jo(\"ngIf\",i.canExtract)}}function ZI(e,t){1&e&&Yo(0,KI,19,12,\"ng-template\",3),2&e&&jo(\"id\",t.$implicit.id.toString())}HI=$localize(_templateObject64()),FI=$localize(_templateObject65()),NI=$localize(_templateObject66());var QI,XI,eA,tA,nA,rA,iA,aA,oA=function(e){return e[e.DESCRIPTION=0]=\"DESCRIPTION\",e[e.FORMAT=1]=\"FORMAT\",e[e.SUMMARY=2]=\"SUMMARY\",e}({}),sA=((XI=function(){function e(t,n,r,i,a,o){_classCallCheck(this,e),this.route=n,this.router=r,this.articleService=i,this.featuresService=a,this.sanitizer=o,this.slides=[],this.offset=new x,this.stateChange=new tT([-1,oA.DESCRIPTION]),this.states=new Map,this.subscriptions=new Array,t.interval=0,t.wrap=!1,t.keyboard=!1}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.subscriptions.push(this.articleService.articleObservable().pipe(Pk((function(t){return e.stateChange.pipe(Pk((function(t){return e.offset.pipe(sv(0),F((function(e){return[e,t]})))})),F((function(n){var r=_slicedToArray(n,2),i=r[0],a=r[1],o=e.route.snapshot.params.articleID,s=[],l=t.findIndex((function(e){return e.id==o}));return-1==l?null:(0!=i&&(l+i!=-1&&l+i0&&s.push(t[l-1]),s.push(t[l]),l+10&&e[--n].read;);return e[n].read?t:e[n].id})),cp(1),Gd((function(e){return e!=t})),U((function(t){return W(e.router.navigate([\"../\",t],{relativeTo:e.route})).pipe(F((function(e){return t})))}))).subscribe((function(t){e.stateChange.next([t,oA.DESCRIPTION])}))}},{key:\"nextUnread\",value:function(){var e=this,t=this.route.snapshot.params.articleID;this.articleService.articleObservable().pipe(F((function(e){for(var n=e.findIndex((function(e){return e.id==t}));n
  • ')+e.keyPoints.join(\"
  • \")+\"
\"}},{key:\"getState\",value:function(e){return this.states.has(e)?this.states.get(e):oA.DESCRIPTION}},{key:\"setFormat\",value:function(e,t){var n=this,r=this.active;t!=oA.DESCRIPTION?(e.format?Bd(e.format):this.articleService.formatArticle(r.id)).subscribe((function(e){r.format=e,n.stateChange.next([r.id,t])}),(function(e){return console.log(e)})):this.stateChange.next([r.id,t])}},{key:\"formatSource\",value:function(e){return e.replace(\"0){var i=new Map;n.forEach((function(e){i.set(e.id,e)})),e.tags=r.map((function(e){return new yA(e.tag.id,\"/tag/\"+e.tag.id,e.tag.value,e.ids.map((function(e){return new bA(e,\"\".concat(e),i.get(e).title,i.get(e).link)})))})),e.tags.forEach((function(t){return e.collapses.set(t.id,!1)}))}}),(function(e){return console.log(e)}))}},{key:\"favicon\",value:function(e){return this.faviconService.iconURL(e)}}]),e}()).\\u0275fac=function(e){return new(e||pA)(Io(_I),Io(pI),Io(BI),Io(lA))},pA.\\u0275cmp=bt({type:pA,selectors:[[\"side-bar\"]],decls:22,vars:5,consts:[[\"color\",\"primary\"],[1,\"content\"],[\"mat-button\",\"\",\"routerLink\",\"/feed/favorite\"],[\"class\",\"group\",4,\"ngIf\"],[1,\"group\"],[1,\"category\"],[\"mat-button\",\"\",1,\"expander\",3,\"click\"],[\"mat-button\",\"\",\"routerLink\",\"/feed\"],[1,\"items\",3,\"ngbCollapse\"],[\"mat-button\",\"\",3,\"routerLink\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"group\",4,\"ngFor\",\"ngForOf\"],[\"mat-button\",\"\",\"routerLink\",\"/settings\"],[\"mat-button\",\"\",\"routerLink\",\"/login\"],[\"mat-button\",\"\",\"routerLink\",\"/feed/popular\"],[\"mat-button\",\"\",3,\"routerLink\"],[1,\"favicon\",3,\"src\"]],template:function(e,t){1&e&&(Ho(0,\"mat-toolbar\",0),ru(1,eA),Fo(),Ho(2,\"div\",1),Ho(3,\"a\",2),ru(4,tA),Fo(),Yo(5,dA,10,4,\"div\",3),No(6,\"hr\"),Ho(7,\"div\",4),Ho(8,\"div\",5),Ho(9,\"button\",6),qo(\"click\",(function(){return t.collapses.__all=!t.collapses.__all})),Ho(10,\"mat-icon\"),Ls(11),Fo(),Fo(),Ho(12,\"a\",7),ru(13,nA),Fo(),Fo(),Ho(14,\"div\",8),Yo(15,hA,3,3,\"a\",9),Fo(),Fo(),Yo(16,mA,9,5,\"div\",10),No(17,\"hr\"),Ho(18,\"a\",11),ru(19,rA),Fo(),Ho(20,\"a\",12),ru(21,iA),Fo(),Fo()),2&e&&(bi(5),jo(\"ngIf\",t.popularity),bi(6),Ts(t.collapses.__all?\"expand_less\":\"expand_more\"),bi(3),jo(\"ngbCollapse\",!t.collapses.__all),bi(1),jo(\"ngForOf\",t.allItems),bi(1),jo(\"ngForOf\",t.tags))},directives:[XL,Vb,IY,Sd,zb,FC,VT,Cd],styles:[\".content[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{margin-bottom:4px}.content[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex;font-size:16px}.items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:13px}.category[_ngcontent-%COMP%], .items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex}.category[_ngcontent-%COMP%] > .expander[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;min-width:24px;flex-shrink:1}.category[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{flex-grow:1;text-align:start}.category[_ngcontent-%COMP%] > .items[_ngcontent-%COMP%]{flex:0 1 100%}.content[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{margin:0}.favicon[_ngcontent-%COMP%]{padding-right:4px}\"]}),pA),yA=function e(t,n,r,i){_classCallCheck(this,e),this.id=t,this.link=n,this.title=r,this.items=i},bA=function e(t,n,r,i){_classCallCheck(this,e),this.id=t,this.link=n,this.title=r,this.url=i},kA=function(){function e(t){_classCallCheck(this,e),this.delayDurationSelector=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new wA(e,this.delayDurationSelector))}}]),e}(),wA=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).delayDurationSelector=r,i.completed=!1,i.delayNotifierSubscriptions=[],i.index=0,i}return _createClass(n,[{key:\"notifyNext\",value:function(e,t,n,r,i){this.destination.next(e),this.removeSubscription(i),this.tryComplete()}},{key:\"notifyError\",value:function(e,t){this._error(e)}},{key:\"notifyComplete\",value:function(e){var t=this.removeSubscription(e);t&&this.destination.next(t),this.tryComplete()}},{key:\"_next\",value:function(e){var t=this.index++;try{var n=this.delayDurationSelector(e,t);n&&this.tryDelay(n,e)}catch(r){this.destination.error(r)}}},{key:\"_complete\",value:function(){this.completed=!0,this.tryComplete(),this.unsubscribe()}},{key:\"removeSubscription\",value:function(e){e.unsubscribe();var t=this.delayNotifierSubscriptions.indexOf(e);return-1!==t&&this.delayNotifierSubscriptions.splice(t,1),e.outerValue}},{key:\"tryDelay\",value:function(e,t){var n=R(this,e,t);n&&!n.closed&&(this.destination.add(n),this.delayNotifierSubscriptions.push(n))}},{key:\"tryComplete\",value:function(){this.completed&&0===this.delayNotifierSubscriptions.length&&this.destination.complete()}}]),n}(H),CA=[\"search\"];function MA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){return nn(n),Zo().up()})),Ho(1,\"mat-icon\"),Ls(2,\"keyboard_backspace\"),Fo(),Fo()}}function SA(e,t){1&e&&(Ho(0,\"span\"),ru(1,_A),Fo())}function LA(e,t){1&e&&No(0,\"span\",12)}function TA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){nn(n),Zo();var e=Eo(3);return Zo().searchQuery=\"\",e.focus()})),Ho(1,\"mat-icon\"),Ls(2,\"clear\"),Fo(),Fo()}}function xA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){nn(n);var e=Zo(2);return e.performSearch(e.searchQuery)})),Ho(1,\"mat-icon\"),Ls(2,\"keyboard_return\"),Fo(),Fo()}}function DA(e,t){if(1&e){var n=Wo();Ho(0,\"div\",13),Yo(1,TA,3,0,\"button\",0),Ho(2,\"input\",14,15),qo(\"ngModelChange\",(function(e){return nn(n),Zo().searchQuery=e})),Fo(),Yo(4,xA,3,0,\"button\",0),Fo()}if(2&e){var r=Zo();bi(1),jo(\"ngIf\",r.searchQuery),bi(1),jo(\"ngModel\",r.searchQuery),bi(2),jo(\"ngIf\",r.searchQuery)}}function OA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){nn(n);var e=Zo();return e.searchEntry=!e.searchEntry})),Ho(1,\"mat-icon\"),Ls(2,\"search\"),Fo(),Fo()}}function YA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){return nn(n),Zo().refresh()})),Ho(1,\"mat-icon\"),Ls(2,\"refresh\"),Fo(),Fo()}}function EA(e,t){if(1&e){var n=Wo();Ho(0,\"mat-checkbox\",16),qo(\"ngModelChange\",(function(e){return nn(n),Zo().articleRead=e}))(\"click\",(function(){return nn(n),Zo().toggleRead()})),ru(1,vA),Fo()}2&e&&jo(\"ngModel\",Zo().articleRead)}function IA(e,t){1&e&&(Ho(0,\"button\",17),Ho(1,\"mat-icon\"),Ls(2,\"share\"),Fo(),Fo()),2&e&&(Zo(),jo(\"matMenuTriggerFor\",Eo(9)))}function AA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",10),qo(\"click\",(function(){nn(n);var e=t.$implicit;return Zo().shareArticleTo(e)})),Ls(1),Fo()}if(2&e){var r=t.$implicit;bi(1),xs(\" \",r.description,\" \")}}function PA(e,t){1&e&&(Ho(0,\"button\",17),Ho(1,\"mat-icon\"),Ls(2,\"more_vert\"),Fo(),Fo()),2&e&&(Zo(),jo(\"matMenuTriggerFor\",Eo(13)))}function jA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",10),qo(\"click\",(function(){return nn(n),Zo().toggleOlderFirst()})),Ho(1,\"span\"),Ls(2,\"Older first\"),Fo(),Fo()}}function RA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",10),qo(\"click\",(function(){return nn(n),Zo().toggleOlderFirst()})),Ho(1,\"span\"),Ls(2,\"Newer first\"),Fo(),Fo()}}function HA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",10),qo(\"click\",(function(){return nn(n),Zo().markAsRead()})),Ho(1,\"span\"),Ls(2,\"Mark all as read\"),Fo(),Fo()}}_A=$localize(_templateObject73()),vA=$localize(_templateObject74());var FA,NA,zA,VA,WA=((zA=function(){function e(t,n,r,i,a,o){_classCallCheck(this,e),this.articleService=t,this.featuresServices=n,this.preferences=r,this.router=i,this.location=a,this.sharingService=o,this.olderFirst=!1,this.showsArticle=!1,this.articleRead=!1,this.searchButton=!1,this.markAllRead=!1,this.inSearch=!1,this.enabledShares=!1,this.shareServices=new Array,this._searchQuery=\"\",this._searchEntry=!1,this.subscriptions=new Array,this.searchQuery=localStorage.getItem(e.key)||\"\"}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this,t=zE(this.router);this.subscriptions.push(t.pipe(F((function(e){return null!=e}))).subscribe((function(t){return e.showsArticle=t}))),this.articleID=t.pipe(F((function(e){return null==e?-1:+e.params.articleID})),Ck(),Gk(1)),this.subscriptions.push(this.articleID.pipe(Pk((function(t){if(-1==t)return Bd(!1);var n,r=!0;return e.articleService.articleObservable().pipe(F((function(e){var n,r=_createForOfIteratorHelper(e);try{for(r.s();!(n=r.n()).done;){var i=n.value;if(i.id==t)return i.read}}catch(a){r.e(a)}finally{r.f()}return!1})),(n=function(e){return e&&!r?Dk(1e3):(r=!1,Dk(0))},function(e){return e.lift(new kA(n))}))}))).subscribe((function(t){return e.articleRead=t}),(function(e){return console.log(e)}))),this.subscriptions.push(FE(this.router).pipe(F((function(e){return null!=e&&\"search\"==e.data.primary}))).subscribe((function(t){return e.inSearch=t}),(function(e){return console.log(e)}))),this.subscriptions.push(this.featuresServices.getFeatures().pipe(Gd((function(e){return e.search})),Pk((function(n){return t.pipe(F((function(e){return null==e})),Ck(),WE(FE(e.router),(function(t,n){var r=!1,i=!1,a=!1;if(t)switch(NE([e.router.routerState.snapshot.root]).data.primary){case\"favorite\":a=!0;case\"popular\":break;case\"search\":i=!0;default:r=!0,a=!0}return[r,i,a]})))}))).subscribe((function(t){e.searchButton=t[0],e.searchEntry=t[1],e.markAllRead=t[2]}),(function(e){return console.log(e)}))),this.subscriptions.push(this.sharingService.enabledServices().subscribe((function(t){e.enabledShares=t.length>0,e.shareServices=t}),(function(e){return console.log(e)})))}},{key:\"ngOnDestroy\",value:function(){this.subscriptions.forEach((function(e){return e.unsubscribe()}))}},{key:\"toggleOlderFirst\",value:function(){this.preferences.olderFirst=!this.preferences.olderFirst,this.olderFirst=this.preferences.olderFirst}},{key:\"toggleUnreadOnly\",value:function(){this.preferences.unreadOnly=!this.preferences.unreadOnly}},{key:\"markAsRead\",value:function(){this.articleService.readAll()}},{key:\"up\",value:function(){var e=this.location.path(),t=e.indexOf(\"/article/\");-1!=t?this.router.navigateByUrl(e.substring(0,t)):this.inSearch&&this.router.navigateByUrl(e.substring(0,e.indexOf(\"/search/\")))}},{key:\"toggleRead\",value:function(){var e=this;this.articleID.pipe(cp(1),Pk((function(t){return-1==t&&up(),e.articleService.articleObservable().pipe(F((function(e){var n,r=_createForOfIteratorHelper(e);try{for(r.s();!(n=r.n()).done;){var i=n.value;if(i.id==t)return i}}catch(a){r.e(a)}finally{r.f()}return null})),cp(1))})),U((function(t){return e.articleService.read(t.id,!t.read)}))).subscribe((function(e){}),(function(e){return console.log(e)}))}},{key:\"keyEnter\",value:function(){this.searchEntry&&this.searchQuery&&this.performSearch(this.searchQuery)}},{key:\"performSearch\",value:function(e){if(\"search\"==NE([this.router.routerState.snapshot.root]).data.primary){var t=this.location.path().indexOf(\"/search/\")+8;this.router.navigateByUrl(this.location.path().substring(0,t)+encodeURIComponent(e))}else this.router.navigateByUrl(this.location.path()+\"/search/\"+encodeURIComponent(e))}},{key:\"refresh\",value:function(){this.articleService.refreshArticles()}},{key:\"shareArticleTo\",value:function(e){var t=this;this.articleID.pipe(cp(1),Gd((function(e){return-1!=e})),Pk((function(e){return t.articleService.articleObservable().pipe(F((function(t){return t.filter((function(t){return t.id==e}))})),Gd((function(e){return e.length>0})),F((function(e){return e[0]})))})),cp(1)).subscribe((function(n){return t.sharingService.submit(e.id,n)}))}},{key:\"searchEntry\",get:function(){return this._searchEntry},set:function(e){var t=this;this._searchEntry=e,e&&setTimeout((function(){t.searchInput.nativeElement.focus()}),10)}},{key:\"searchQuery\",get:function(){return this._searchQuery},set:function(t){this._searchQuery=t,localStorage.setItem(e.key,t)}}]),e}()).key=\"searchQuery\",zA.\\u0275fac=function(e){return new(e||zA)(Io(xI),Io(BI),Io(gI),Io(EY),Io(ud),Io(qE))},zA.\\u0275cmp=bt({type:zA,selectors:[[\"ng-component\"]],viewQuery:function(e,t){var n;1&e&&Iu(CA,!0),2&e&&Yu(n=Hu())&&(t.searchInput=n.first)},hostBindings:function(e,t){1&e&&qo(\"keydown.enter\",(function(){return t.keyEnter()}))},decls:20,vars:13,consts:[[\"mat-icon-button\",\"\",3,\"click\",4,\"ngIf\"],[4,\"ngIf\"],[\"class\",\"spacer\",4,\"ngIf\"],[\"class\",\"input-group\",4,\"ngIf\"],[3,\"ngModel\",\"ngModelChange\",\"click\",4,\"ngIf\"],[\"mat-icon-button\",\"\",3,\"matMenuTriggerFor\",4,\"ngIf\"],[\"shares\",\"matMenu\"],[\"mat-menu-item\",\"\",3,\"click\",4,\"ngFor\",\"ngForOf\"],[\"other\",\"matMenu\"],[\"mat-menu-item\",\"\",3,\"click\",4,\"ngIf\"],[\"mat-menu-item\",\"\",3,\"click\"],[\"mat-icon-button\",\"\",3,\"click\"],[1,\"spacer\"],[1,\"input-group\"],[\"matInput\",\"\",\"focused\",\"\",1,\"spacer\",\"search\",\"mat-toolbar\",\"mat-primary\",\"form-control\",3,\"ngModel\",\"ngModelChange\"],[\"search\",\"\"],[3,\"ngModel\",\"ngModelChange\",\"click\"],[\"mat-icon-button\",\"\",3,\"matMenuTriggerFor\"]],template:function(e,t){1&e&&(Yo(0,MA,3,0,\"button\",0),Yo(1,SA,2,0,\"span\",1),Yo(2,LA,1,0,\"span\",2),Yo(3,DA,5,3,\"div\",3),Yo(4,OA,3,0,\"button\",0),Yo(5,YA,3,0,\"button\",0),Yo(6,EA,2,1,\"mat-checkbox\",4),Yo(7,IA,3,1,\"button\",5),Ho(8,\"mat-menu\",null,6),Yo(10,AA,2,1,\"button\",7),Fo(),Yo(11,PA,3,1,\"button\",5),Ho(12,\"mat-menu\",null,8),Yo(14,jA,3,0,\"button\",9),Yo(15,RA,3,0,\"button\",9),Ho(16,\"button\",10),qo(\"click\",(function(){return t.toggleUnreadOnly()})),Ho(17,\"span\"),Ls(18,\"Unread only\"),Fo(),Fo(),Yo(19,HA,3,0,\"button\",9),Fo()),2&e&&(jo(\"ngIf\",t.showsArticle||t.inSearch),bi(1),jo(\"ngIf\",!t.searchEntry),bi(1),jo(\"ngIf\",!t.searchEntry),bi(1),jo(\"ngIf\",t.searchEntry),bi(1),jo(\"ngIf\",t.searchButton),bi(1),jo(\"ngIf\",!t.showsArticle),bi(1),jo(\"ngIf\",t.showsArticle),bi(1),jo(\"ngIf\",t.showsArticle&&t.enabledShares),bi(3),jo(\"ngForOf\",t.shareServices),bi(1),jo(\"ngIf\",!t.showsArticle),bi(3),jo(\"ngIf\",!t.olderFirst),bi(1),jo(\"ngIf\",t.olderFirst),bi(4),jo(\"ngIf\",!t.inSearch&&t.markAllRead))},directives:[Sd,hS,Cd,oS,zb,FC,HM,$h,rf,Cm,dk,_S],styles:[\"[_nghost-%COMP%]{display:flex;align-items:center}.spacer[_ngcontent-%COMP%], [_nghost-%COMP%]{flex:1 1 auto}.search[_ngcontent-%COMP%]{min-height:0;border:none;background:transparent} label{margin-bottom:0}\"]}),zA),UA=((NA=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"ngOnInit\",value:function(){}}]),e}()).\\u0275fac=function(e){return new(e||NA)},NA.\\u0275cmp=bt({type:NA,selectors:[[\"settings-container\"]],decls:2,vars:0,consts:[[1,\"container\"]],template:function(e,t){1&e&&(Ho(0,\"div\",0),No(1,\"router-outlet\"),Fo())},directives:[NY],styles:[\"[_nghost-%COMP%]{overflow:auto}\"]}),NA),BA=((FA=function(){function e(t){_classCallCheck(this,e),this.api=t,this.user=this.api.get(\"user/current\").pipe(F((function(e){return e.user})),Gk(1))}return _createClass(e,[{key:\"getCurrentUser\",value:function(){return this.user}},{key:\"changeUserPassword\",value:function(e,t){return this.setUserSetting(\"password\",e,{current:t})}},{key:\"setUserSetting\",value:function(e,t,n){var r=\"value=\".concat(encodeURIComponent(t));if(n)for(var i in n)r+=\"&\".concat(i,\"=\").concat(encodeURIComponent(n[i]));return this.api.put(\"user/settings/\".concat(e),r,new Qd({\"Content-Type\":\"application/x-www-form-urlencoded\"})).pipe(F((function(e){return e.success})))}},{key:\"list\",value:function(){return this.api.get(\"user\").pipe(F((function(e){return e.users})))}},{key:\"addUser\",value:function(e,t){var n=new FormData;return n.append(\"login\",e),n.append(\"password\",t),this.api.post(\"user\",n).pipe(F((function(e){return e.success})))}},{key:\"deleteUser\",value:function(e){return this.api.delete(\"user/\".concat(e)).pipe(F((function(e){return e.success})))}},{key:\"toggleActive\",value:function(e,t){return this.api.put(\"user/\".concat(e,\"/settings/is-active\"),\"value=\".concat(t),new Qd({\"Content-Type\":\"application/x-www-form-urlencoded\"})).pipe(F((function(e){return e.success})))}}]),e}()).\\u0275fac=function(e){return new(e||FA)(et(wE))},FA.\\u0275prov=_e({token:FA,factory:FA.\\u0275fac,providedIn:\"root\"}),FA);VA=$localize(_templateObject75());var qA,GA,$A,JA=[\"placeholder\",$localize(_templateObject76())],KA=[\"placeholder\",$localize(_templateObject77())],ZA=[\"placeholder\",$localize(_templateObject78())],QA=[\"placeholder\",$localize(_templateObject79())];function XA(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,GA),Fo())}qA=$localize(_templateObject80()),GA=$localize(_templateObject81()),$A=$localize(_templateObject82());var eP,tP,nP,rP=[\"placeholder\",$localize(_templateObject83())],iP=[\"placeholder\",$localize(_templateObject84())];function aP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,tP),Fo())}function oP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,nP),Fo())}eP=$localize(_templateObject85()),tP=$localize(_templateObject86()),nP=$localize(_templateObject87());var sP,lP,uP,cP,dP=((lP=function(){function e(t,n){_classCallCheck(this,e),this.userService=t,this.dialog=n,this.emailFormControl=new cm(\"\",[cf.email]),this.language=localStorage.getItem(\"locale\")||\"en\"}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.userService.getCurrentUser().subscribe((function(t){e.firstName=t.firstName,e.lastName=t.lastName,e.emailFormControl.setValue(t.email)}),(function(e){return console.log(e)}))}},{key:\"firstNameChange\",value:function(){this.userService.setUserSetting(\"first-name\",this.firstName).subscribe((function(){}),(function(e){return console.log(e)}))}},{key:\"lastNameChange\",value:function(){this.userService.setUserSetting(\"last-name\",this.lastName).subscribe((function(){}),(function(e){return console.log(e)}))}},{key:\"emailChange\",value:function(){var e=this;this.emailFormControl.updateValueAndValidity(),this.emailFormControl.valid&&this.userService.setUserSetting(\"email\",this.emailFormControl.value).subscribe((function(t){t||e.emailFormControl.setErrors({email:!0})}),(function(e){return console.log(e)}))}},{key:\"languageChange\",value:function(e){location.href=\"/\"+e+\"/\"}},{key:\"changePassword\",value:function(){this.dialog.open(hP,{width:\"250px\"})}}]),e}()).\\u0275fac=function(e){return new(e||lP)(Io(BA),Io(fC))},lP.\\u0275cmp=bt({type:lP,selectors:[[\"settings-general\"]],decls:26,vars:7,consts:[[1,\"title\"],[\"matInput\",\"\",3,\"ngModel\",\"ngModelChange\",\"change\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"email\",3,\"formControl\",\"change\",6,\"placeholder\"],[4,\"ngIf\"],[3,\"ngModel\",\"change\",\"ngModelChange\",6,\"placeholder\"],[3,\"value\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,VA),Fo(),Ho(2,\"mat-form-field\"),Ho(3,\"input\",1),iu(4,JA),qo(\"ngModelChange\",(function(e){return t.firstName=e}))(\"change\",(function(){return t.firstNameChange()})),Fo(),Fo(),No(5,\"br\"),Ho(6,\"mat-form-field\"),Ho(7,\"input\",1),iu(8,KA),qo(\"ngModelChange\",(function(e){return t.lastName=e}))(\"change\",(function(){return t.lastNameChange()})),Fo(),Fo(),No(9,\"br\"),Ho(10,\"mat-form-field\"),Ho(11,\"input\",2),iu(12,ZA),qo(\"change\",(function(){return t.emailChange()})),Fo(),Yo(13,XA,2,0,\"mat-error\",3),Fo(),No(14,\"br\"),Ho(15,\"mat-form-field\"),Ho(16,\"mat-select\",4),iu(17,QA),qo(\"change\",(function(e){return t.languageChange(e.value)}))(\"ngModelChange\",(function(e){return t.language=e})),Ho(18,\"mat-option\",5),Ls(19,\"English\"),Fo(),Ho(20,\"mat-option\",5),Ls(21,\"\\u0411\\u044a\\u043b\\u0433\\u0430\\u0440\\u0441\\u043a\\u0438\"),Fo(),Fo(),Fo(),No(22,\"br\"),Ho(23,\"div\",6),Ho(24,\"button\",7),qo(\"click\",(function(){return t.changePassword()})),ru(25,qA),Fo(),Fo()),2&e&&(bi(3),jo(\"ngModel\",t.firstName),bi(4),jo(\"ngModel\",t.lastName),bi(4),jo(\"formControl\",t.emailFormControl),bi(2),jo(\"ngIf\",t.emailFormControl.hasError(\"email\")),bi(3),jo(\"ngModel\",t.language),bi(2),jo(\"value\",\"en\"),bi(2),jo(\"value\",\"bg\"))},directives:[EM,HM,$h,rf,Cm,Tm,Sd,GS,gb,zb,cM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),lP),hP=((sP=function(){function e(t,n){_classCallCheck(this,e),this.dialogRef=t,this.userService=n,this.currentFormControl=new cm(\"\",[cf.required]),this.passwordFormControl=new cm(\"\",[cf.required])}return _createClass(e,[{key:\"save\",value:function(){var e=this;this.passwordFormControl.value==this.passwordConfirm?(this.currentFormControl.updateValueAndValidity(),this.currentFormControl.valid&&this.userService.changeUserPassword(this.passwordFormControl.value,this.currentFormControl.value).subscribe((function(t){t?e.close():e.currentFormControl.setErrors({auth:!0})}),(function(t){400!=t.status?console.log(t):e.currentFormControl.setErrors({auth:!0})}))):this.passwordFormControl.setErrors({mismatch:!0})}},{key:\"close\",value:function(){this.dialogRef.close()}}]),e}()).\\u0275fac=function(e){return new(e||sP)(Io(lC),Io(BA))},sP.\\u0275cmp=bt({type:sP,selectors:[[\"ng-component\"]],decls:18,vars:5,consts:[[1,\"title\"],[\"matInput\",\"\",\"type\",\"password\",\"placeholder\",\"Current password\",\"required\",\"\",3,\"formControl\"],[4,\"ngIf\"],[\"matInput\",\"\",\"type\",\"password\",\"required\",\"\",3,\"formControl\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"password\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h6\",0),ru(1,$A),Fo(),Ho(2,\"mat-form-field\"),No(3,\"input\",1),Yo(4,aP,2,0,\"mat-error\",2),Fo(),No(5,\"br\"),Ho(6,\"mat-form-field\"),Ho(7,\"input\",3),iu(8,rP),Fo(),Yo(9,oP,2,0,\"mat-error\",2),Fo(),No(10,\"br\"),Ho(11,\"mat-form-field\"),Ho(12,\"input\",4),iu(13,iP),qo(\"ngModelChange\",(function(e){return t.passwordConfirm=e})),Fo(),Fo(),No(14,\"br\"),Ho(15,\"div\",5),Ho(16,\"button\",6),qo(\"click\",(function(){return t.save()})),ru(17,eP),Fo(),Fo()),2&e&&(bi(3),jo(\"formControl\",t.currentFormControl),bi(1),jo(\"ngIf\",t.currentFormControl.hasError(\"auth\")),bi(3),jo(\"formControl\",t.passwordFormControl),bi(2),jo(\"ngIf\",t.passwordFormControl.hasError(\"mismatch\")),bi(3),jo(\"ngModel\",t.passwordConfirm))},directives:[EM,HM,$h,Um,rf,Tm,Sd,Cm,zb,cM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),sP),fP=[\"opmlInput\"];uP=$localize(_templateObject88()),cP=$localize(_templateObject89());var mP,pP=[\"placeholder\",$localize(_templateObject90())];mP=$localize(_templateObject91());var _P,vP,gP,yP,bP,kP,wP,CP,MP,SP,LP=[\"placeholder\",$localize(_templateObject92())];function TP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,vP),Fo())}function xP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,gP),Fo())}function DP(e,t){1&e&&No(0,\"mat-progress-bar\",7)}function OP(e,t){if(1&e){var n=Wo();Ho(0,\"div\"),Ho(1,\"p\"),ru(2,cP),Fo(),Ho(3,\"mat-form-field\"),Ho(4,\"input\",2),iu(5,pP),qo(\"ngModelChange\",(function(e){return nn(n),Zo().query=e}))(\"keydown.Enter\",(function(){return nn(n),Zo().search()})),Fo(),Yo(6,TP,2,0,\"mat-error\",1),Yo(7,xP,2,0,\"mat-error\",1),Fo(),No(8,\"br\"),Ho(9,\"p\"),ru(10,mP),Fo(),Ho(11,\"input\",3,4),iu(13,LP),qo(\"keydown.Enter\",(function(){return nn(n),Zo().search()})),Fo(),No(14,\"br\"),Ho(15,\"button\",5),qo(\"click\",(function(){return nn(n),Zo().search()})),ru(16,_P),Fo(),No(17,\"br\"),Yo(18,DP,1,0,\"mat-progress-bar\",6),Fo()}if(2&e){var r=Zo();bi(4),jo(\"ngModel\",r.query),bi(2),jo(\"ngIf\",r.queryFormControl.hasError(\"empty\")),bi(1),jo(\"ngIf\",r.queryFormControl.hasError(\"search\")),bi(8),jo(\"disabled\",r.loading),bi(3),jo(\"ngIf\",r.loading)}}function YP(e,t){1&e&&(Ho(0,\"p\"),ru(1,yP),Fo())}function EP(e,t){if(1&e&&(Ho(0,\"div\"),Ho(1,\"mat-checkbox\"),Ls(2),Fo(),No(3,\"br\"),Ho(4,\"a\",11),Ls(5),Fo(),No(6,\"hr\"),Fo()),2&e){var n=t.$implicit,r=Zo(2);bi(2),Ts(n.title),bi(2),rs(\"href\",r.baseURL(n.link),ni),bi(1),Ts(n.description||n.title)}}function IP(e,t){1&e&&(Ho(0,\"p\"),Ls(1,\" No feeds selected \"),Fo())}function AP(e,t){if(1&e){var n=Wo();Ho(0,\"button\",5),qo(\"click\",(function(){return nn(n),Zo(2).add()})),ru(1,bP),Fo()}2&e&&jo(\"disabled\",Zo(2).loading)}function PP(e,t){if(1&e){var n=Wo();Ho(0,\"button\",12),qo(\"click\",(function(){return nn(n),Zo(2).phase=\"query\"})),ru(1,kP),Fo()}}function jP(e,t){if(1&e&&(Ho(0,\"div\"),Yo(1,YP,2,0,\"p\",1),Yo(2,EP,7,3,\"div\",8),Yo(3,IP,2,0,\"p\",1),Yo(4,AP,2,1,\"button\",9),Yo(5,PP,2,0,\"button\",10),Fo()),2&e){var n=Zo();bi(1),jo(\"ngIf\",0==n.feeds.length),bi(1),jo(\"ngForOf\",n.feeds),bi(1),jo(\"ngIf\",n.emptySelection),bi(1),jo(\"ngIf\",n.feeds.length>0),bi(1),jo(\"ngIf\",0==n.feeds.length)}}function RP(e,t){1&e&&(Ho(0,\"p\"),ru(1,CP),Fo())}function HP(e,t){1&e&&(Ho(0,\"p\"),ru(1,MP),Fo())}function FP(e,t){if(1&e&&(Ho(0,\"div\"),Ho(1,\"p\"),ru(2,SP),Fo(),Fo()),2&e){var n=t.$implicit;bi(2),su(n.title)(n.error),lu(2)}}function NP(e,t){if(1&e){var n=Wo();Ho(0,\"div\"),Yo(1,RP,2,0,\"p\",1),Yo(2,HP,2,0,\"p\",1),Yo(3,FP,3,2,\"div\",8),Ho(4,\"button\",12),qo(\"click\",(function(){return nn(n),Zo().phase=\"query\"})),ru(5,wP),Fo(),Fo()}if(2&e){var r=Zo();bi(1),jo(\"ngIf\",!r.addFeedResult.success),bi(1),jo(\"ngIf\",r.addFeedResult.success),bi(1),jo(\"ngForOf\",r.addFeedResult.errors)}}_P=$localize(_templateObject93()),vP=$localize(_templateObject94()),gP=$localize(_templateObject95()),yP=$localize(_templateObject96()),bP=$localize(_templateObject97()),kP=$localize(_templateObject98()),wP=$localize(_templateObject99()),CP=$localize(_templateObject100()),MP=$localize(_templateObject101()),SP=$localize(_templateObject102(),\"\\ufffd0\\ufffd\",\"\\ufffd1\\ufffd\");var zP,VP,WP,UP=((zP=function(){function e(t){_classCallCheck(this,e),this.feedService=t,this.query=\"\",this.phase=\"query\",this.loading=!1,this.feeds=new Array,this.emptySelection=!1,this.queryFormControl=new cm(\"\")}return _createClass(e,[{key:\"search\",value:function(){var e=this;if(!this.loading)if(\"\"!=this.query||this.opml.nativeElement.files.length){var t;if(this.loading=!0,this.opml.nativeElement.files.length){var n=this.opml.nativeElement.files[0];t=w.create((function(e){var t=new FileReader;t.onload=function(t){e.next({opml:t.target.result,dryRun:!0}),e.complete()},t.onerror=function(t){e.error(t)},t.readAsText(n)})).pipe(U((function(t){return e.feedService.importOPML(t)})))}else t=this.feedService.discover(this.query);t.subscribe((function(t){e.loading=!1,e.phase=\"search-result\",e.feeds=t}),(function(t){e.loading=!1,e.queryFormControl.setErrors({search:!0}),console.log(t)}))}else this.queryFormControl.setErrors({empty:!0})}},{key:\"add\",value:function(){var e=this;if(!this.loading){var t=new Array;this.feedChecks.forEach((function(n,r){n.checked&&t.push(e.feeds[r].link)})),0!=t.length?(this.loading=!0,this.feedService.addFeeds(t).subscribe((function(t){e.loading=!1,e.addFeedResult=t,e.phase=\"add-result\"}),(function(t){e.loading=!1,console.log(t)}))):this.emptySelection=!0}}},{key:\"baseURL\",value:function(e){var t=document.createElement(\"a\");return t.href=e,t.pathname=\"\",t.href}}]),e}()).\\u0275fac=function(e){return new(e||zP)(Io(pI))},zP.\\u0275cmp=bt({type:zP,selectors:[[\"settings-discovery\"]],viewQuery:function(e,t){var n;1&e&&(Iu(fP,!0),Iu(dk,!0)),2&e&&(Yu(n=Hu())&&(t.opml=n.first),Yu(n=Hu())&&(t.feedChecks=n))},decls:5,vars:3,consts:[[1,\"title\"],[4,\"ngIf\"],[\"matInput\",\"\",3,\"ngModel\",\"ngModelChange\",\"keydown.Enter\",6,\"placeholder\"],[\"type\",\"file\",\"accept\",\".opml\",3,\"keydown.Enter\",6,\"placeholder\"],[\"opmlInput\",\"\"],[\"mat-raised-button\",\"\",3,\"disabled\",\"click\"],[\"mode\",\"indeterminate\",4,\"ngIf\"],[\"mode\",\"indeterminate\"],[4,\"ngFor\",\"ngForOf\"],[\"mat-raised-button\",\"\",3,\"disabled\",\"click\",4,\"ngIf\"],[\"mat-raised-button\",\"\",3,\"click\",4,\"ngIf\"],[1,\"discovery-link\",3,\"href\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,uP),Fo(),Yo(2,OP,19,5,\"div\",1),Yo(3,jP,6,5,\"div\",1),Yo(4,NP,6,3,\"div\",1)),2&e&&(bi(2),jo(\"ngIf\",\"query\"==t.phase),bi(1),jo(\"ngIf\",\"search-result\"==t.phase),bi(1),jo(\"ngIf\",\"add-result\"==t.phase))},directives:[Sd,EM,HM,$h,rf,Cm,zb,cM,CS,Cd,dk],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}input[type=file][_ngcontent-%COMP%]{width:100%;border-bottom:1px solid grey;padding-bottom:4px;margin-bottom:1em}mat-progress-bar[_ngcontent-%COMP%]{margin-top:1em}.discovery-link[_ngcontent-%COMP%]{display:block;text-align:end}\"]}),zP),BP=[\"downloader\"];function qP(e,t){1&e&&(Ho(0,\"p\",7),Ls(1,\" No feeds have been added\\n\"),Fo())}VP=$localize(_templateObject103()),WP=$localize(_templateObject104());var GP,$P=[\"placeholder\",$localize(_templateObject105())];function JP(e,t){if(1&e){var n=Wo();Ho(0,\"div\",8),No(1,\"img\",9),Ho(2,\"a\",10),Ls(3),Fo(),Ho(4,\"button\",11),qo(\"click\",(function(){nn(n);var e=t.$implicit;return Zo().showError(e[0].updateError)})),Ho(5,\"mat-icon\"),Ls(6,\"warning\"),Fo(),Fo(),Ho(7,\"mat-form-field\",12),Ho(8,\"input\",13),iu(9,$P),qo(\"change\",(function(e){nn(n);var r=t.$implicit;return Zo().tagsChange(e,r[0].id)})),Fo(),Fo(),Ho(10,\"button\",14),qo(\"click\",(function(e){nn(n);var r=t.$implicit;return Zo().deleteFeed(e,r[0].id)})),Ho(11,\"mat-icon\"),Ls(12,\"delete\"),Fo(),Fo(),Fo()}if(2&e){var r=t.$implicit,i=Zo();bi(1),rs(\"src\",i.favicon(r[0].link),ni),bi(1),rs(\"href\",r[0].link,ni),bi(1),Ts(r[0].title),bi(1),fs(\"visible\",r[0].updateError),bi(4),rs(\"value\",r[1].join(\", \"))}}function KP(e,t){if(1&e&&(Ho(0,\"li\"),Ls(1),Fo()),2&e){var n=t.$implicit;bi(1),Ts(n)}}GP=$localize(_templateObject106());var ZP,QP,XP,ej,tj,nj,rj,ij,aj,oj,sj,lj,uj,cj,dj,hj,fj=((QP=function(){function e(t,n,r,i){_classCallCheck(this,e),this.feedService=t,this.tagService=n,this.faviconService=r,this.errorDialog=i,this.feeds=new Array}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.feedService.getFeeds().pipe(WE(this.tagService.getTagsFeedIDs(),(function(e,t){var n,r=new Map,i=_createForOfIteratorHelper(t);try{for(i.s();!(n=i.n()).done;){var a,o=n.value,s=_createForOfIteratorHelper(o.ids);try{for(s.s();!(a=s.n()).done;){var l=a.value;r.has(l)?r.get(l).push(o.tag.value):r.set(l,[o.tag.value])}}catch(u){s.e(u)}finally{s.f()}}}catch(u){i.e(u)}finally{i.f()}return e.map((function(e){return[e,r.get(e.id)||[]]}))}))).subscribe((function(t){return e.feeds=t||[]}),(function(e){return console.log(e)}))}},{key:\"favicon\",value:function(e){return this.faviconService.iconURL(e)}},{key:\"tagsChange\",value:function(e,t){this.feedService.updateTags(t,e.target.value.split(\",\").map((function(e){return e.trim()}))).subscribe((function(e){}),(function(e){return console.log(e)}))}},{key:\"showError\",value:function(e){this.errorDialog.open(mj,{width:\"300px\",data:e.split(\"\\n\").filter((function(e){return e}))})}},{key:\"deleteFeed\",value:function(e,t){this.feedService.deleteFeed(t).subscribe((function(t){if(t){for(var n=e.target.parentNode;(n=n.parentElement)&&!n.classList.contains(\"feed\"););n.parentNode.removeChild(n)}}),(function(e){return console.log(e)}))}},{key:\"exportOPML\",value:function(){var e=this;this.feedService.exportOPML().subscribe((function(t){e.downloader.nativeElement.href=\"data:text/x-opml+xml,\"+encodeURIComponent(t),e.downloader.nativeElement.click()}),(function(e){return console.log(e)}))}}]),e}()).\\u0275fac=function(e){return new(e||QP)(Io(pI),Io(_I),Io(lA),Io(fC))},QP.\\u0275cmp=bt({type:QP,selectors:[[\"settings-management\"]],viewQuery:function(e,t){var n;1&e&&Iu(BP,!0,Qs),2&e&&Yu(n=Hu())&&(t.downloader=n.first)},decls:9,vars:2,consts:[[1,\"title\"],[\"u18n\",\"\",4,\"ngIf\"],[\"class\",\"feed\",4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"hidden\",\"\",\"download\",\"feeds.opml\"],[\"downloader\",\"\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"u18n\",\"\"],[1,\"feed\"],[1,\"favicon\",3,\"src\"],[1,\"name\",3,\"href\"],[\"mat-icon-button\",\"\",1,\"error\",3,\"click\"],[1,\"tags\"],[\"matInput\",\"\",3,\"value\",\"change\",6,\"placeholder\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,VP),Fo(),Yo(2,qP,2,0,\"p\",1),Yo(3,JP,13,6,\"div\",2),Ho(4,\"div\",3),No(5,\"a\",4,5),Ho(7,\"button\",6),qo(\"click\",(function(){return t.exportOPML()})),ru(8,WP),Fo(),Fo()),2&e&&(bi(2),jo(\"ngIf\",0==t.feeds.length),bi(1),jo(\"ngForOf\",t.feeds))},directives:[Sd,Cd,zb,FC,EM,HM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".feed[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.favicon[_ngcontent-%COMP%]{width:16px;height:16px;margin-right:5px;flex-shrink:1}.name[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{flex:1 0 0;min-width:250px}.tags[_ngcontent-%COMP%]{width:auto}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}\"]}),QP),mj=((ZP=function(){function e(t,n){_classCallCheck(this,e),this.dialogRef=t,this.errors=n}return _createClass(e,[{key:\"close\",value:function(){this.dialogRef.close()}}]),e}()).\\u0275fac=function(e){return new(e||ZP)(Io(lC),Io(uC))},ZP.\\u0275cmp=bt({type:ZP,selectors:[[\"error-dialog\"]],decls:5,vars:1,consts:[[2,\"max-height\",\"85vh\",\"overflow\",\"auto\"],[4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"ul\",0),Yo(1,KP,2,1,\"li\",1),Fo(),Ho(2,\"div\",2),Ho(3,\"button\",3),qo(\"click\",(function(){return t.close()})),ru(4,GP),Fo(),Fo()),2&e&&(bi(1),jo(\"ngForOf\",t.errors))},directives:[Cd,zb],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".feed[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.favicon[_ngcontent-%COMP%]{width:16px;height:16px;margin-right:5px;flex-shrink:1}.name[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{flex:1 0 0;min-width:250px}.tags[_ngcontent-%COMP%]{width:auto}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}\"]}),ZP);function pj(e,t){1&e&&(Ho(0,\"p\"),ru(1,tj),Fo())}function _j(e,t){1&e&&(Ho(0,\"span\"),ru(1,rj),Fo())}function vj(e,t){1&e&&(Ho(0,\"span\"),ru(1,ij),Fo())}function gj(e,t){if(1&e&&(Ho(0,\"span\"),Yo(1,_j,2,0,\"span\",1),Yo(2,vj,2,0,\"span\",1),Ho(3,\"span\",13),Ls(4),Fo(),Ho(5,\"span\",14),ru(6,nj),Fo(),Fo()),2&e){var n=Zo().$implicit;bi(1),jo(\"ngIf\",!n.inverseURL),bi(1),jo(\"ngIf\",n.inverseURL),bi(2),Ts(n.urlTerm)}}function yj(e,t){1&e&&(Ho(0,\"span\",15),Ls(1,\" and \"),Fo())}function bj(e,t){1&e&&(Ho(0,\"span\"),ru(1,oj),Fo())}function kj(e,t){1&e&&(Ho(0,\"span\"),ru(1,sj),Fo())}function wj(e,t){if(1&e&&(Ho(0,\"span\"),Yo(1,bj,2,0,\"span\",1),Yo(2,kj,2,0,\"span\",1),Ho(3,\"span\",13),Ls(4),Fo(),Ho(5,\"span\",16),ru(6,aj),Fo(),Fo()),2&e){var n=Zo().$implicit;bi(1),jo(\"ngIf\",!n.inverseTitle),bi(1),jo(\"ngIf\",n.inverseTitle),bi(2),Ts(n.titleTerm)}}function Cj(e,t){1&e&&(Ho(0,\"span\",17),ru(1,lj),Fo())}function Mj(e,t){1&e&&(Ho(0,\"span\",18),ru(1,uj),Fo())}function Sj(e,t){1&e&&(Ho(0,\"span\",17),ru(1,cj),Fo())}function Lj(e,t){1&e&&(Ho(0,\"span\",18),ru(1,dj),Fo())}function Tj(e,t){if(1&e&&(Ho(0,\"span\",19),Ls(1),Fo()),2&e){var n=Zo().$implicit,r=Zo();bi(1),Ts(r.tagLabel(n.tagID))}}function xj(e,t){if(1&e&&(Ho(0,\"span\",20),Ls(1),Fo()),2&e){var n=Zo().$implicit,r=Zo();bi(1),Ts(r.feedsLabel(n.feedIDs))}}function Dj(e,t){if(1&e){var n=Wo();Ho(0,\"div\",5),Ho(1,\"div\",6),Yo(2,gj,7,3,\"span\",1),Yo(3,yj,2,0,\"span\",7),Yo(4,wj,7,3,\"span\",1),Yo(5,Cj,2,0,\"span\",8),Yo(6,Mj,2,0,\"span\",9),Yo(7,Sj,2,0,\"span\",8),Yo(8,Lj,2,0,\"span\",9),Yo(9,Tj,2,1,\"span\",10),Yo(10,xj,2,1,\"span\",11),Fo(),Ho(11,\"button\",12),qo(\"click\",(function(e){nn(n);var r=t.$implicit;return Zo().deleteFilter(e,r)})),Ho(12,\"mat-icon\"),Ls(13,\"delete\"),Fo(),Fo(),Fo()}if(2&e){var r=t.$implicit;bi(2),jo(\"ngIf\",r.urlTerm),bi(1),jo(\"ngIf\",r.urlTerm&&r.titleTerm),bi(1),jo(\"ngIf\",r.titleTerm),bi(1),jo(\"ngIf\",r.inverseFeeds&&r.tagID),bi(1),jo(\"ngIf\",r.inverseFeeds&&r.feedIDs&&!r.tagID),bi(1),jo(\"ngIf\",r.tagID),bi(1),jo(\"ngIf\",r.feedIDs&&!r.tagID),bi(1),jo(\"ngIf\",r.tagID),bi(1),jo(\"ngIf\",r.feedIDs)}}XP=$localize(_templateObject107()),ej=$localize(_templateObject108()),tj=$localize(_templateObject109()),nj=$localize(_templateObject110()),rj=$localize(_templateObject111()),ij=$localize(_templateObject112()),aj=$localize(_templateObject113()),oj=$localize(_templateObject114()),sj=$localize(_templateObject115()),lj=$localize(_templateObject116()),uj=$localize(_templateObject117()),cj=$localize(_templateObject118()),dj=$localize(_templateObject119()),hj=$localize(_templateObject120());var Oj,Yj=[\"placeholder\",$localize(_templateObject121())];Oj=$localize(_templateObject122());var Ej,Ij,Aj,Pj,jj,Rj,Hj,Fj,Nj=[\"placeholder\",$localize(_templateObject123())];function zj(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,Rj),Fo())}function Vj(e,t){1&e&&(Ho(0,\"span\"),ru(1,Hj),Fo())}function Wj(e,t){1&e&&(Ho(0,\"span\"),ru(1,Fj),Fo())}Ej=$localize(_templateObject124()),Ij=$localize(_templateObject125()),Aj=$localize(_templateObject126()),Pj=$localize(_templateObject127()),jj=$localize(_templateObject128()),Rj=$localize(_templateObject129()),Hj=$localize(_templateObject130()),Fj=$localize(_templateObject131());var Uj=[\"placeholder\",$localize(_templateObject132())];function Bj(e,t){if(1&e&&(Ho(0,\"mat-option\",12),Ls(1),Fo()),2&e){var n=t.$implicit;jo(\"value\",n.id),bi(1),xs(\" \",n.title,\" \")}}function qj(e,t){if(1&e&&(Ho(0,\"mat-form-field\"),Ho(1,\"mat-select\",10),iu(2,Uj),Yo(3,Bj,2,2,\"mat-option\",11),Fo(),Fo()),2&e){var n=Zo();bi(3),jo(\"ngForOf\",n.feeds)}}var Gj=[\"placeholder\",$localize(_templateObject133())];function $j(e,t){if(1&e&&(Ho(0,\"mat-option\",12),Ls(1),Fo()),2&e){var n=t.$implicit;jo(\"value\",n.id),bi(1),xs(\" \",n.value,\" \")}}function Jj(e,t){if(1&e&&(Ho(0,\"mat-form-field\"),Ho(1,\"mat-select\",13),iu(2,Gj),Yo(3,$j,2,2,\"mat-option\",11),Fo(),Fo()),2&e){var n=Zo();bi(3),jo(\"ngForOf\",n.tags)}}var Kj,Zj,Qj,Xj=((Zj=function(){function e(t,n,r,i){_classCallCheck(this,e),this.userService=t,this.feedService=n,this.tagService=r,this.dialog=i,this.filters=new Array}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.feedService.getFeeds().pipe(WE(this.tagService.getTags(),this.userService.getCurrentUser(),(function(e,t,n){return[e,t,n]}))).subscribe((function(t){e.feeds=t[0],e.tags=t[1],e.filters=t[2].profileData.filters||[]}),(function(e){return console.log(e)}))}},{key:\"addFilter\",value:function(){var e=this;this.dialog.open(eR,{width:\"350px\",data:{feeds:this.feeds,tags:this.tags}}).afterClosed().subscribe((function(t){return e.ngOnInit()}))}},{key:\"feedsLabel\",value:function(e){var t=this.feeds.filter((function(t){return-1!=e.indexOf(t.id)})).map((function(e){return e.title}));return t.length?t.join(\", \"):\"\".concat(e)}},{key:\"tagLabel\",value:function(e){var t=this.tags.filter((function(t){return t.id==e})).map((function(e){return e.value}));return t.length?t[0]:\"\".concat(e)}},{key:\"deleteFilter\",value:function(e,t){var n=this;this.userService.getCurrentUser().pipe(U((function(e){var r=e.profileData||new Map,i=r.filters||[],a=i.filter((function(e){return e.urlTerm!=t.urlTerm||e.inverseURL!=t.inverseURL||e.titleTerm!=t.titleTerm||e.inverseTitle!=t.inverseTitle||e.tagID!=t.tagID||e.feedIDs!=t.feedIDs||e.inverseFeeds!=t.inverseFeeds}));return a.length==i.length?Bd(!0):(r.filters=a,n.userService.setUserSetting(\"profile\",JSON.stringify(r)))}))).subscribe((function(t){if(t){for(var n=e.target.parentNode;(n=n.parentElement)&&!n.classList.contains(\"filter\"););n.parentNode.removeChild(n)}}),(function(e){return console.log(e)}))}}]),e}()).\\u0275fac=function(e){return new(e||Zj)(Io(BA),Io(pI),Io(_I),Io(fC))},Zj.\\u0275cmp=bt({type:Zj,selectors:[[\"settings-filters\"]],decls:7,vars:2,consts:[[1,\"title\"],[4,\"ngIf\"],[\"class\",\"filter\",4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[1,\"filter\"],[1,\"info\"],[\"class\",\"url-and-title\",4,\"ngIf\"],[\"class\",\"match-tag\",4,\"ngIf\"],[\"class\",\"match-feeds\",4,\"ngIf\"],[\"class\",\"tag\",4,\"ngIf\"],[\"class\",\"feeds\",4,\"ngIf\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"],[1,\"term\"],[1,\"match-url\"],[1,\"url-and-title\"],[1,\"match-title\"],[1,\"match-tag\"],[1,\"match-feeds\"],[1,\"tag\"],[1,\"feeds\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,XP),Fo(),Yo(2,pj,2,0,\"p\",1),Yo(3,Dj,14,9,\"div\",2),Ho(4,\"div\",3),Ho(5,\"button\",4),qo(\"click\",(function(){return t.addFilter()})),ru(6,ej),Fo(),Fo()),2&e&&(bi(2),jo(\"ngIf\",0==t.filters.length),bi(1),jo(\"ngForOf\",t.filters))},directives:[Sd,Cd,zb,FC],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".filter[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.filter[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{flex:1 0 0}.filter[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{padding-left:4px;padding-right:4px}.filter[_ngcontent-%COMP%] .feeds[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .tag[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .term[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;font-weight:700}.filter[_ngcontent-%COMP%] .url-and-title[_ngcontent-%COMP%]{font-style:italic}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}form[_ngcontent-%COMP%]{display:flex;flex-direction:column;margin-bottom:20px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{flex:1 0 auto}form[_ngcontent-%COMP%] mat-slide-toggle[_ngcontent-%COMP%]{align-self:center;flex:1 0 auto}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{font-size:14px}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%] .mat-checkbox-layout{white-space:normal}form[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{border-bottom:1px solid #ddd;margin-top:12px;margin-bottom:24px;font-size:13px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{width:100%}\"]}),Zj),eR=((Kj=function(){function e(t,n,r,i,a){_classCallCheck(this,e),this.dialogRef=t,this.userService=n,this.tagService=r,this.data=i,this.form=a.group({urlTerm:[\"\"],titleTerm:[\"\"],inverseURL:[!1],inverseTitle:[!1],useFeeds:[!0],feeds:[[]],tag:[],inverseFeeds:[!1]},{validator:function(e){return e.controls.urlTerm.value||e.controls.titleTerm.value?null:{nomatch:!0}}}),this.feeds=i.feeds,this.tags=i.tags}return _createClass(e,[{key:\"save\",value:function(){var e=this;if(this.form.valid){var t=this.form.value;this.userService.getCurrentUser().pipe(U((function(n){var r={urlTerm:t.urlTerm,inverseURL:t.inverseURL,titleTerm:t.titleTerm,inverseTitle:t.inverseTitle,inverseFeeds:t.inverseFeeds};return t.useFeeds?t.feeds&&t.feeds.length>0&&(r.feedIDs=t.feeds):t.tag&&(r.tagID=t.tag),(r.tagID>0?e.tagService.getFeedIDs({id:r.tagID}).pipe(F((function(e){return r.feedIDs=e,r}))):Bd(r)).pipe(U((function(t){var r=n.profileData||new Map,i=r.filters||[];return i.push(t),r.filters=i,e.userService.setUserSetting(\"profile\",JSON.stringify(r))})))}))).subscribe((function(t){return e.close()}),(function(e){return console.log(e)}))}}},{key:\"close\",value:function(){this.dialogRef.close()}}]),e}()).\\u0275fac=function(e){return new(e||Kj)(Io(lC),Io(BA),Io(_I),Io(uC),Io(qm))},Kj.\\u0275cmp=bt({type:Kj,selectors:[[\"new-filter-dialog\"]],decls:32,vars:6,consts:[[\"novalidate\",\"\",\"autocomplete\",\"off\",3,\"formGroup\",\"ngSubmit\"],[\"matInput\",\"\",\"formControlName\",\"titleTerm\",6,\"placeholder\"],[\"formControlName\",\"inverseTitle\"],[\"matInput\",\"\",\"formControlName\",\"urlTerm\",6,\"placeholder\"],[\"formControlName\",\"inverseURL\"],[4,\"ngIf\"],[\"formControlName\",\"useFeeds\"],[\"formControlName\",\"inverseFeeds\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"multiple\",\"\",\"formControlName\",\"feeds\",6,\"placeholder\"],[3,\"value\",4,\"ngFor\",\"ngForOf\"],[3,\"value\"],[\"formControlName\",\"tag\",6,\"placeholder\"]],template:function(e,t){1&e&&(Ho(0,\"div\"),Ho(1,\"form\",0),qo(\"ngSubmit\",(function(){return t.save()})),Ho(2,\"p\"),ru(3,hj),Fo(),Ho(4,\"mat-form-field\"),Ho(5,\"input\",1),iu(6,Yj),Fo(),Fo(),No(7,\"br\"),Ho(8,\"mat-checkbox\",2),ru(9,Oj),Fo(),Ho(10,\"mat-form-field\"),Ho(11,\"input\",3),iu(12,Nj),Fo(),Fo(),No(13,\"br\"),Ho(14,\"mat-checkbox\",4),ru(15,Ej),Fo(),Yo(16,zj,2,0,\"mat-error\",5),No(17,\"br\"),Ho(18,\"p\"),ru(19,Ij),Fo(),Ho(20,\"mat-slide-toggle\",6),Yo(21,Vj,2,0,\"span\",5),Yo(22,Wj,2,0,\"span\",5),Fo(),Yo(23,qj,4,1,\"mat-form-field\",5),Yo(24,Jj,4,1,\"mat-form-field\",5),Ho(25,\"mat-checkbox\",7),ru(26,Aj),Fo(),Fo(),Fo(),Ho(27,\"div\",8),Ho(28,\"button\",9),qo(\"click\",(function(){return t.save()})),ru(29,Pj),Fo(),Ho(30,\"button\",9),qo(\"click\",(function(){return t.close()})),ru(31,jj),Fo(),Fo()),2&e&&(bi(1),jo(\"formGroup\",t.form),bi(15),jo(\"ngIf\",t.form.hasError(\"nomatch\")),bi(5),jo(\"ngIf\",t.form.value.useFeeds),bi(1),jo(\"ngIf\",!t.form.value.useFeeds),bi(1),jo(\"ngIf\",t.form.value.useFeeds),bi(1),jo(\"ngIf\",!t.form.value.useFeeds))},directives:[Mm,af,Dm,EM,HM,$h,rf,Vm,dk,Sd,RL,zb,cM,GS,Cd,gb],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".filter[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.filter[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{flex:1 0 0}.filter[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{padding-left:4px;padding-right:4px}.filter[_ngcontent-%COMP%] .feeds[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .tag[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .term[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;font-weight:700}.filter[_ngcontent-%COMP%] .url-and-title[_ngcontent-%COMP%]{font-style:italic}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}form[_ngcontent-%COMP%]{display:flex;flex-direction:column;margin-bottom:20px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{flex:1 0 auto}form[_ngcontent-%COMP%] mat-slide-toggle[_ngcontent-%COMP%]{align-self:center;flex:1 0 auto}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{font-size:14px}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%] .mat-checkbox-layout{white-space:normal}form[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{border-bottom:1px solid #ddd;margin-top:12px;margin-bottom:24px;font-size:13px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{width:100%}\"]}),Kj);function tR(e,t){if(1&e){var n=Wo();Ho(0,\"div\",5),Ho(1,\"mat-slide-toggle\",6,7),qo(\"change\",(function(){nn(n);var e=t.$implicit,r=Eo(2);return Zo(2).toggleService(e[0].id,r.checked)})),Ls(3),Fo(),Fo()}if(2&e){var r=t.$implicit;bi(1),jo(\"checked\",r[1]),bi(2),Ts(r[0].description)}}function nR(e,t){if(1&e&&(Ho(0,\"mat-card\"),Ho(1,\"mat-card-header\"),Ho(2,\"mat-card-title\",3),Ho(3,\"h6\"),Ls(4),Fo(),Fo(),Fo(),Ho(5,\"mat-card-content\"),Yo(6,tR,4,2,\"div\",4),Fo(),Fo()),2&e){var n=t.$implicit;bi(4),xs(\" \",n[0][0].category,\" \"),bi(2),jo(\"ngForOf\",n)}}Qj=$localize(_templateObject134());var rR,iR,aR,oR,sR,lR,uR=((rR=function(){function e(t){_classCallCheck(this,e),this.sharingService=t}return _createClass(e,[{key:\"ngOnInit\",value:function(){this.services=this.sharingService.groupedList()}},{key:\"toggleService\",value:function(e,t){this.sharingService.toggle(e,t)}}]),e}()).\\u0275fac=function(e){return new(e||rR)(Io(qE))},rR.\\u0275cmp=bt({type:rR,selectors:[[\"settings-share-services\"]],decls:4,vars:1,consts:[[1,\"title\"],[1,\"cards-container\"],[4,\"ngFor\",\"ngForOf\"],[1,\"col\",\"title\"],[\"class\",\"service\",4,\"ngFor\",\"ngForOf\"],[1,\"service\"],[3,\"checked\",\"change\"],[\"toggle\",\"\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,Qj),Fo(),Ho(2,\"div\",1),Yo(3,nR,7,2,\"mat-card\",2),Fo()),2&e&&(bi(3),jo(\"ngForOf\",t.services))},directives:[Cd,Xb,ek,Jb,$b,RL],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".cards-container[_ngcontent-%COMP%]{display:flex;flex-direction:row;flex-wrap:wrap}mat-card[_ngcontent-%COMP%]{flex:1 0 0;margin:8px;min-width:250px}.service[_ngcontent-%COMP%]{margin-bottom:16px}\"]}),rR);function cR(e,t){if(1&e&&(Ho(0,\"p\"),ru(1,oR),Fo()),2&e){var n=Zo();bi(1),su(n.current.login),lu(1)}}function dR(e,t){if(1&e){var n=Wo();Ho(0,\"div\",5),Ho(1,\"mat-checkbox\",6,7),qo(\"change\",(function(){nn(n);var e=t.$implicit,r=Eo(2);return Zo(2).toggleActive(e.login,r.checked)}))(\"ngModelChange\",(function(e){return nn(n),t.$implicit.active=e})),Ls(3),Fo(),Ho(4,\"button\",8),qo(\"click\",(function(e){nn(n);var r=t.$implicit;return Zo(2).deleteUser(e,r.login)})),Ho(5,\"mat-icon\"),Ls(6,\"delete\"),Fo(),Fo(),Fo()}if(2&e){var r=t.$implicit;bi(1),jo(\"ngModel\",r.active),bi(2),Ts(r.login)}}function hR(e,t){if(1&e&&(Ho(0,\"div\"),Ho(1,\"h6\"),ru(2,sR),Fo(),Yo(3,dR,7,2,\"div\",4),Fo()),2&e){var n=Zo();bi(3),jo(\"ngForOf\",n.users)}}iR=$localize(_templateObject135()),aR=$localize(_templateObject136()),oR=$localize(_templateObject137(),\"\\ufffd0\\ufffd\"),sR=$localize(_templateObject138()),lR=$localize(_templateObject139());var fR,mR,pR,_R=[\"placeholder\",$localize(_templateObject140())],vR=[\"placeholder\",$localize(_templateObject141())];function gR(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,mR),Fo())}function yR(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,pR),Fo())}fR=$localize(_templateObject142()),mR=$localize(_templateObject143()),pR=$localize(_templateObject144());var bR,kR,wR,CR,MR,SR,LR,TR,xR,DR,OR,YR=function(){return[\"login\"]},ER=function(){return[\"password\"]},IR=((kR=function(){function e(t,n){_classCallCheck(this,e),this.userService=t,this.dialog=n,this.users=new Array,this.refresher=new x}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.refresher.pipe(sv(null),Pk((function(t){return e.userService.list()})),WE(this.userService.getCurrentUser(),(function(e,t){return e.filter((function(e){return e.login!=t.login}))}))).subscribe((function(t){return e.users=t}),(function(e){return console.log(e)})),this.userService.getCurrentUser().subscribe((function(t){return e.current=t}),(function(e){return console.log(e)}))}},{key:\"toggleActive\",value:function(e,t){this.userService.toggleActive(e,t).subscribe((function(e){}),(function(e){return console.log(e)}))}},{key:\"deleteUser\",value:function(e,t){confirm(\"Are you sure you want to delete user \"+t)&&this.userService.deleteUser(t).subscribe((function(t){if(t){for(var n=e.target.parentNode;(n=n.parentElement)&&!n.classList.contains(\"user\"););n.parentNode.removeChild(n)}}),(function(e){return console.log(e)}))}},{key:\"newUser\",value:function(){var e=this;this.dialog.open(AR,{width:\"250px\"}).afterClosed().subscribe((function(t){return e.refresher.next(null)}))}}]),e}()).\\u0275fac=function(e){return new(e||kR)(Io(BA),Io(fC))},kR.\\u0275cmp=bt({type:kR,selectors:[[\"settings-admin\"]],decls:7,vars:2,consts:[[1,\"title\"],[4,\"ngIf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"class\",\"user\",4,\"ngFor\",\"ngForOf\"],[1,\"user\"],[3,\"ngModel\",\"change\",\"ngModelChange\"],[\"check\",\"\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,iR),Fo(),Yo(2,cR,2,1,\"p\",1),Yo(3,hR,4,1,\"div\",1),Ho(4,\"div\",2),Ho(5,\"button\",3),qo(\"click\",(function(){return t.newUser()})),ru(6,aR),Fo(),Fo()),2&e&&(bi(2),jo(\"ngIf\",t.current),bi(1),jo(\"ngIf\",t.users.length))},directives:[Sd,zb,Cd,dk,rf,Cm,FC],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".user[_ngcontent-%COMP%]{display:flex;align-items:center;border-bottom:1px solid #ccc;padding-bottom:4px;margin-bottom:4px}.user[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{flex:1 0 0}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),kR),AR=((bR=function(){function e(t,n,r){_classCallCheck(this,e),this.dialogRef=t,this.userService=n,this.form=r.group({login:[\"\",cf.required],password:[\"\",cf.required]})}return _createClass(e,[{key:\"save\",value:function(){var e=this;if(this.form.valid){var t=this.form.value;this.userService.addUser(t.login,t.password).subscribe((function(t){t&&e.close()}),(function(e){return console.log(e)}))}}},{key:\"close\",value:function(){this.dialogRef.close()}}]),e}()).\\u0275fac=function(e){return new(e||bR)(Io(lC),Io(BA),Io(qm))},bR.\\u0275cmp=bt({type:bR,selectors:[[\"ng-component\"]],decls:16,vars:6,consts:[[1,\"title\"],[\"novalidate\",\"\",\"autocomplete\",\"off\",3,\"formGroup\",\"ngSubmit\"],[\"matInput\",\"\",\"formControlName\",\"login\",\"required\",\"\",6,\"placeholder\"],[4,\"ngIf\"],[\"matInput\",\"\",\"type\",\"password\",\"formControlName\",\"password\",\"required\",\"\",6,\"placeholder\"],[1,\"footer\"],[\"mat-raised-button\",\"\",\"type\",\"submit\",3,\"disabled\"]],template:function(e,t){1&e&&(Ho(0,\"h6\",0),ru(1,lR),Fo(),Ho(2,\"form\",1),qo(\"ngSubmit\",(function(){return t.save()})),Ho(3,\"mat-form-field\"),Ho(4,\"input\",2),iu(5,_R),Fo(),Yo(6,gR,2,0,\"mat-error\",3),Fo(),No(7,\"br\"),Ho(8,\"mat-form-field\"),Ho(9,\"input\",4),iu(10,vR),Fo(),Yo(11,yR,2,0,\"mat-error\",3),Fo(),No(12,\"br\"),Ho(13,\"div\",5),Ho(14,\"button\",6),ru(15,fR),Fo(),Fo(),Fo()),2&e&&(bi(2),jo(\"formGroup\",t.form),bi(4),jo(\"ngIf\",t.form.hasError(\"required\",yu(4,YR))),bi(5),jo(\"ngIf\",t.form.hasError(\"required\",yu(5,ER))),bi(3),jo(\"disabled\",t.form.pristine))},directives:[Mm,af,Dm,EM,HM,$h,rf,Vm,Um,Sd,zb,cM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".user[_ngcontent-%COMP%]{display:flex;align-items:center;border-bottom:1px solid #ccc;padding-bottom:4px;margin-bottom:4px}.user[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{flex:1 0 0}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),bR);wR=$localize(_templateObject145()),CR=$localize(_templateObject146()),MR=$localize(_templateObject147()),SR=$localize(_templateObject148()),LR=$localize(_templateObject149()),TR=$localize(_templateObject150()),xR=$localize(_templateObject151()),DR=$localize(_templateObject152()),OR=$localize(_templateObject153());var PR=function(){return[\"admin\"]};function jR(e,t){1&e&&(Ho(0,\"a\",2),ru(1,OR),Fo()),2&e&&jo(\"routerLink\",yu(1,PR))}var RR,HR=function(){return[\"general\"]},FR=function(){return[\"discovery\"]},NR=function(){return[\"management\"]},zR=function(){return[\"filters\"]},VR=function(){return[\"share-services\"]};RR=$localize(_templateObject154());var WR,UR,BR,qR,GR=ZY.forRoot([{path:\"\",canActivate:[HE],children:[{path:\"\",component:lI,children:[{path:\"feed\",children:[{path:\"\",children:[{path:\"\",data:{primary:\"user\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\"search/:query\",data:{primary:\"search\",secondary:\"user\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\"favorite\",data:{primary:\"favorite\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\"popular/tag/:id\",data:{primary:\"popular\",secondary:\"tag\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\"popular/:id\",data:{primary:\"popular\",secondary:\"feed\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\"popular\",data:{primary:\"popular\",secondary:\"user\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\"tag/:id\",data:{primary:\"tag\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\"tag/:id/search/:query\",data:{primary:\"search\",secondary:\"tag\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\":id\",data:{primary:\"feed\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]},{path:\":id/search/:query\",data:{primary:\"search\",secondary:\"feed\"},children:[{path:\"\",component:VI},{path:\"article/:articleID\",component:sA}]}]},{path:\"\",component:gA,outlet:\"sidebar\"},{path:\"\",component:WA,outlet:\"toolbar\"}]},{path:\"settings\",children:[{path:\"\",component:UA,children:[{path:\"general\",component:dP},{path:\"discovery\",component:UP},{path:\"management\",component:fj},{path:\"filters\",component:Xj},{path:\"share-services\",component:uR},{path:\"admin\",component:IR},{path:\"\",redirectTo:\"general\",pathMatch:\"full\"}]},{path:\"\",component:(UR=function(){function e(t){_classCallCheck(this,e),this.userService=t,this.subscriptions=new Array}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.subscriptions.push(this.userService.getCurrentUser().pipe(F((function(e){return e.admin}))).subscribe((function(t){return e.admin=t}),(function(e){return console.log(e)})))}},{key:\"ngOnDestroy\",value:function(){var e,t=_createForOfIteratorHelper(this.subscriptions);try{for(t.s();!(e=t.n()).done;)e.value.unsubscribe()}catch(n){t.e(n)}finally{t.f()}}}]),e}(),UR.\\u0275fac=function(e){return new(e||UR)(Io(BA))},UR.\\u0275cmp=bt({type:UR,selectors:[[\"side-bar\"]],decls:19,vars:11,consts:[[\"color\",\"primary\"],[1,\"content\"],[\"mat-button\",\"\",3,\"routerLink\"],[\"mat-button\",\"\",3,\"routerLink\",4,\"ngIf\"],[\"mat-button\",\"\",\"routerLink\",\"/feed\"],[\"mat-button\",\"\",\"routerLink\",\"/login\"]],template:function(e,t){1&e&&(Ho(0,\"mat-toolbar\",0),ru(1,wR),Fo(),Ho(2,\"div\",1),Ho(3,\"a\",2),ru(4,CR),Fo(),Ho(5,\"a\",2),ru(6,MR),Fo(),Ho(7,\"a\",2),ru(8,SR),Fo(),Ho(9,\"a\",2),ru(10,LR),Fo(),Ho(11,\"a\",2),ru(12,TR),Fo(),Yo(13,jR,2,2,\"a\",3),No(14,\"hr\"),Ho(15,\"a\",4),ru(16,xR),Fo(),Ho(17,\"a\",5),ru(18,DR),Fo(),Fo()),2&e&&(bi(3),jo(\"routerLink\",yu(6,HR)),bi(2),jo(\"routerLink\",yu(7,FR)),bi(2),jo(\"routerLink\",yu(8,NR)),bi(2),jo(\"routerLink\",yu(9,zR)),bi(2),jo(\"routerLink\",yu(10,VR)),bi(2),jo(\"ngIf\",t.admin))},directives:[XL,Vb,IY,Sd],styles:[\".content[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{margin-bottom:4px}.content[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex;font-size:16px}.items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:13px}.category[_ngcontent-%COMP%], .items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex}.category[_ngcontent-%COMP%] > .expander[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;min-width:24px;flex-shrink:1}.category[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{flex-grow:1;text-align:start}.category[_ngcontent-%COMP%] > .items[_ngcontent-%COMP%]{flex:0 1 100%}.content[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{margin:0}.favicon[_ngcontent-%COMP%]{padding-right:4px}\"]}),UR),outlet:\"sidebar\"},{path:\"\",component:(WR=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"ngOnInit\",value:function(){}}]),e}(),WR.\\u0275fac=function(e){return new(e||WR)},WR.\\u0275cmp=bt({type:WR,selectors:[[\"ng-component\"]],decls:2,vars:0,template:function(e,t){1&e&&(Ho(0,\"span\"),ru(1,RR),Fo())},styles:[\"[_nghost-%COMP%]{display:flex;align-items:center}.spacer[_ngcontent-%COMP%], [_nghost-%COMP%]{flex:1 1 auto}.search[_ngcontent-%COMP%]{min-height:0;border:none;background:transparent} label{margin-bottom:0}\"]}),WR),outlet:\"toolbar\"}]},{path:\"\",redirectTo:\"feed\",pathMatch:\"full\"}]}]},{path:\"login\",component:jE}],{enableTracing:!1}),$R=((qR=function e(){_classCallCheck(this,e),this.title=\"app\"}).\\u0275fac=function(e){return new(e||qR)},qR.\\u0275cmp=bt({type:qR,selectors:[[\"app-root\"]],decls:2,vars:0,consts:[[1,\"page\"]],template:function(e,t){1&e&&(Ho(0,\"div\",0),No(1,\"router-outlet\"),Fo())},directives:[NY],styles:[\"\"]}),qR),JR=((BR=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:BR,bootstrap:[$R]}),BR.\\u0275inj=ve({factory:function(e){return new(e||BR)},providers:[{provide:U_,useClass:Kx}],imports:[[iv,Iy,jh,GR,Nd,Gm,$m,Wb,tk,fk,mC,NC,FM,gS,LS,$S,$L,LL,FL,eT,jx,$x,$_]]}),BR);(function(){if(Sr)throw new Error(\"Cannot enable prod mode after platform setup.\");Mr=!1})(),nv().bootstrapModule(JR)},zavE:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-SG\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},zn8P:function(e,t){function n(e){return Promise.resolve().then((function(){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}))}n.keys=function(){return[]},n.resolve=n,e.exports=n,n.id=\"zn8P\"},zx6S:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekunda\",\"sekunde\",\"sekundi\"],m:[\"jedan minut\",\"jedne minute\"],mm:[\"minut\",\"minute\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mesec\",\"meseca\",\"meseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,r){var i=t.words[r];return 1===r.length?n?i[0]:i[1]:e+\" \"+t.correctGrammaticalCase(e,i)}};e.defineLocale(\"sr\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljak_utorak_sreda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sre._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedelju] [u] LT\";case 3:return\"[u] [sredu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010de u] LT\",lastWeek:function(){return[\"[pro\\u0161le] [nedelje] [u] LT\",\"[pro\\u0161log] [ponedeljka] [u] LT\",\"[pro\\u0161log] [utorka] [u] LT\",\"[pro\\u0161le] [srede] [u] LT\",\"[pro\\u0161log] [\\u010detvrtka] [u] LT\",\"[pro\\u0161log] [petka] [u] LT\",\"[pro\\u0161le] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pre %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))}},[[0,0]]]);"); err != nil { - return nil, errors.Wrap(err, fmt.Sprintf("packing file rf-ng/ui/en/main-es5.de4780925792b25f4c29.js")) + if err := fs.Add("rf-ng/ui/en/main-es5.12ca351b7933925b99f6.js", 1332996, os.FileMode(420), time.Unix(1587937607, 0), "function _templateObject154(){var e=_taggedTemplateLiteral([\":\\u241f121cc5391cd2a5115bc2b3160379ee5b36cd7716\\u241f4930506384627295710:Settings\"]);return _templateObject154=function(){return e},e}function _templateObject153(){var e=_taggedTemplateLiteral([\":\\u241fb7648e7aced164498aa843b5c4e8f2f1c36a7919\\u241f7844706011418789951:Administration\"]);return _templateObject153=function(){return e},e}function _templateObject152(){var e=_taggedTemplateLiteral([\":\\u241fbb694b49d408265c91c62799c2b3a7e3151c824d\\u241f3797778920049399855:Logout\"]);return _templateObject152=function(){return e},e}function _templateObject151(){var e=_taggedTemplateLiteral([\":\\u241f7b928f1d459648a4733d54d7fb0c7141ba6955af\\u241f1246086532983525846:Feeds\"]);return _templateObject151=function(){return e},e}function _templateObject150(){var e=_taggedTemplateLiteral([\":\\u241f7240bf47e6acc8685c4ebfc74ce0d5b4db6bde4f\\u241f5231214581506259059:Share Services\"]);return _templateObject150=function(){return e},e}function _templateObject149(){var e=_taggedTemplateLiteral([\":\\u241f1298c1d2bbbb7415f5494e800f6775fdb70f4df6\\u241f4163272119298020373:Filters\"]);return _templateObject149=function(){return e},e}function _templateObject148(){var e=_taggedTemplateLiteral([\":\\u241f446bc7942ed7cd24d6b84079bb82bd7f1d4d280b\\u241f8187273895031232465:Manage Feeds\"]);return _templateObject148=function(){return e},e}function _templateObject147(){var e=_taggedTemplateLiteral([\":\\u241fb6e9d3a76584feec84c2204f11301598fb90d7ef\\u241f6372201297165580832:Add Feed\"]);return _templateObject147=function(){return e},e}function _templateObject146(){var e=_taggedTemplateLiteral([\":\\u241f3d53f64033c4b76fdc1076ba15955d913209866c\\u241f6439365426343089851:General\"]);return _templateObject146=function(){return e},e}function _templateObject145(){var e=_taggedTemplateLiteral([\":\\u241f2efe5a11c535986f60fd32bb171de59c85ec357d\\u241f6537591722407885569: Settings\\n\"]);return _templateObject145=function(){return e},e}function _templateObject144(){var e=_taggedTemplateLiteral([\":\\u241f2985844c6198518d1b99c84e29e1c8795754cf8b\\u241f4960000650285755818: Empty password \"]);return _templateObject144=function(){return e},e}function _templateObject143(){var e=_taggedTemplateLiteral([\":\\u241f81300fcfd7313522c85ffe86cc04a5c19278bf12\\u241f2191339029246291489: Empty user name \"]);return _templateObject143=function(){return e},e}function _templateObject142(){var e=_taggedTemplateLiteral([\":\\u241f52c9a103b812f258bcddc3d90a6e3f46871d25fe\\u241f3768927257183755959:Save\"]);return _templateObject142=function(){return e},e}function _templateObject141(){var e=_taggedTemplateLiteral([\":\\u241fc32ef07f8803a223a83ed17024b38e8d82292407\\u241f1431416938026210429:Password\"]);return _templateObject141=function(){return e},e}function _templateObject140(){var e=_taggedTemplateLiteral([\":\\u241f024886ca34a6f309e3e51c2ed849320592c3faaa\\u241f5312727456282218392:User name\"]);return _templateObject140=function(){return e},e}function _templateObject139(){var e=_taggedTemplateLiteral([\":\\u241ffab6f6aad7a682400356ad9ba30f1c25e80c8930\\u241f4425649962450500073:Add a new user\"]);return _templateObject139=function(){return e},e}function _templateObject138(){var e=_taggedTemplateLiteral([\":\\u241f75bff245ba90b410bd49da2788c55f572ce7f784\\u241f6033168733730940341:List of users:\"]);return _templateObject138=function(){return e},e}function _templateObject137(){var e=_taggedTemplateLiteral([\":\\u241f1df08418100ac5e70836b8adf5fa12d4c1b4b0dd\\u241f5195095583184627775: Current user: \",\":INTERPOLATION:\\n\"]);return _templateObject137=function(){return e},e}function _templateObject136(){var e=_taggedTemplateLiteral([\":\\u241ff8c7e16da78e5daf06335e60dd27f03ec30530f4\\u241f5918723526444903137:Add user\"]);return _templateObject136=function(){return e},e}function _templateObject135(){var e=_taggedTemplateLiteral([\":\\u241fcb593cb234b63428439631044bdf77fc3452357c\\u241f2108091748797172929:Manage Users\"]);return _templateObject135=function(){return e},e}function _templateObject134(){var e=_taggedTemplateLiteral([\":\\u241f7240bf47e6acc8685c4ebfc74ce0d5b4db6bde4f\\u241f5231214581506259059:Share Services\"]);return _templateObject134=function(){return e},e}function _templateObject133(){var e=_taggedTemplateLiteral([\":\\u241f337ca2e5eeea28eaca91e8511eb5eaafdb385ce6\\u241f1825829511397926879:Tag\"]);return _templateObject133=function(){return e},e}function _templateObject132(){var e=_taggedTemplateLiteral([\":\\u241f7b928f1d459648a4733d54d7fb0c7141ba6955af\\u241f1246086532983525846:Feeds\"]);return _templateObject132=function(){return e},e}function _templateObject131(){var e=_taggedTemplateLiteral([\":\\u241f48568468ed7a42b94708b89595e8e0ba4c5c4880\\u241f7921030750033180197:Limit to tag\"]);return _templateObject131=function(){return e},e}function _templateObject130(){var e=_taggedTemplateLiteral([\":\\u241f7b00e7c2dacd433e78459995668de3ae88faed6f\\u241f1943233524922375568:Limit to feeds\"]);return _templateObject130=function(){return e},e}function _templateObject129(){var e=_taggedTemplateLiteral([\":\\u241ffc9c1cf53b31d0f5bd0a8e28b56b83797a536101\\u241f1576866399027630699: A filter must match at least a URL or title \"]);return _templateObject129=function(){return e},e}function _templateObject128(){var e=_taggedTemplateLiteral([\":\\u241ff4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8\\u241f7819314041543176992:Close\"]);return _templateObject128=function(){return e},e}function _templateObject127(){var e=_taggedTemplateLiteral([\":\\u241f52c9a103b812f258bcddc3d90a6e3f46871d25fe\\u241f3768927257183755959:Save\"]);return _templateObject127=function(){return e},e}function _templateObject126(){var e=_taggedTemplateLiteral([\":\\u241f80de392929f7cade444426837fc6a322091e8143\\u241f6200388742841208230: Match filter if article is not part of the selected feeds/tag. \"]);return _templateObject126=function(){return e},e}function _templateObject125(){var e=_taggedTemplateLiteral([\":\\u241f421759c8d438a7e13844a18b48945cf1cf425769\\u241f7389317586710764363: Optional parameters \"]);return _templateObject125=function(){return e},e}function _templateObject124(){var e=_taggedTemplateLiteral([\":\\u241f1ee7e26019fd1e347d1e23443cf6895a02d62d9c\\u241f8226028651876528843: Match filter if URL term does not match. \"]);return _templateObject124=function(){return e},e}function _templateObject123(){var e=_taggedTemplateLiteral([\":\\u241f3664165270130fd3d4f89f5f7e4c56fb7c485375\\u241f215401851945683133:Filter by URL\"]);return _templateObject123=function(){return e},e}function _templateObject122(){var e=_taggedTemplateLiteral([\":\\u241f12a3c6674683fc857378e516d09535cfe6030f50\\u241f7902335185780042053: Match filter if title term does not match. \"]);return _templateObject122=function(){return e},e}function _templateObject121(){var e=_taggedTemplateLiteral([\":\\u241f34501d547e3d70233dfcc545621b3f9524046c76\\u241f1890297221031788927:Filter by title\"]);return _templateObject121=function(){return e},e}function _templateObject120(){var e=_taggedTemplateLiteral([\":\\u241f760d27bbd4821e0c2c36328a956b7e2a548af1b2\\u241f3366129698268834789: Filters can be applied to article URLs and title. At least one target must be selected: \"]);return _templateObject120=function(){return e},e}function _templateObject119(){var e=_taggedTemplateLiteral([\":\\u241fee5dbbdc2ddbcc6b9aa7262b6d6b1fd93f4a7667\\u241f1717622304171392571:on feeds:\"]);return _templateObject119=function(){return e},e}function _templateObject118(){var e=_taggedTemplateLiteral([\":\\u241f567eded396fef0222ca8ab79c661062ea2d0b0ba\\u241f2325552724815119037:on tag:\"]);return _templateObject118=function(){return e},e}function _templateObject117(){var e=_taggedTemplateLiteral([\":\\u241fa01b7cd68dedce110e9721fe35c8447aa6c7addf\\u241f2844382219174700059:excluding feeds:\"]);return _templateObject117=function(){return e},e}function _templateObject116(){var e=_taggedTemplateLiteral([\":\\u241f5ec699eaa79e1ac10b6ce2a16bfc89436bcb7120\\u241f560382346117673180:excluding tag:\"]);return _templateObject116=function(){return e},e}function _templateObject115(){var e=_taggedTemplateLiteral([\":\\u241f84bbbe38f927eaeddf081648c8783d06b4348b24\\u241f2940383431828435625:Does not match\"]);return _templateObject115=function(){return e},e}function _templateObject114(){var e=_taggedTemplateLiteral([\":\\u241f01aa5508abb4473531a18c605c1c41ae4b6074d0\\u241f1567940090040631427:Matches\"]);return _templateObject114=function(){return e},e}function _templateObject113(){var e=_taggedTemplateLiteral([\":\\u241f7bd342c384e331d17e60ccdf6eb0c23152317d51\\u241f2443387025535922739:by title\"]);return _templateObject113=function(){return e},e}function _templateObject112(){var e=_taggedTemplateLiteral([\":\\u241f84bbbe38f927eaeddf081648c8783d06b4348b24\\u241f2940383431828435625:Does not match\"]);return _templateObject112=function(){return e},e}function _templateObject111(){var e=_taggedTemplateLiteral([\":\\u241f01aa5508abb4473531a18c605c1c41ae4b6074d0\\u241f1567940090040631427:Matches\"]);return _templateObject111=function(){return e},e}function _templateObject110(){var e=_taggedTemplateLiteral([\":\\u241f583cfbb9fc11b6d18ba2859c6f6ef9801f01303a\\u241f7250849074184621975:by URL\"]);return _templateObject110=function(){return e},e}function _templateObject109(){var e=_taggedTemplateLiteral([\":\\u241f58225eba05594edb2dbf2227edcf972c45484190\\u241f3151928432395495376: No filters have been defined\\n\"]);return _templateObject109=function(){return e},e}function _templateObject108(){var e=_taggedTemplateLiteral([\":\\u241ff0296c99c29c326e114d9b5e586e525ced19acb7\\u241f910026778839409110:Add filter\"]);return _templateObject108=function(){return e},e}function _templateObject107(){var e=_taggedTemplateLiteral([\":\\u241f78a6f89ed9e0cf32497131786780cb1849d06450\\u241f1387635138150410380:Manage Filters\"]);return _templateObject107=function(){return e},e}function _templateObject106(){var e=_taggedTemplateLiteral([\":\\u241ff4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8\\u241f7819314041543176992:Close\"]);return _templateObject106=function(){return e},e}function _templateObject105(){var e=_taggedTemplateLiteral([\":\\u241f9f12050a433d9709f2231916ecfb33c4f2ed1c01\\u241f4975748273657042999:tags\"]);return _templateObject105=function(){return e},e}function _templateObject104(){var e=_taggedTemplateLiteral([\":\\u241fcf59c3b27a0d7b925f32cd1c1e2785a1bf73f829\\u241f5929451610563023881:Export OPML\"]);return _templateObject104=function(){return e},e}function _templateObject103(){var e=_taggedTemplateLiteral([\":\\u241f446bc7942ed7cd24d6b84079bb82bd7f1d4d280b\\u241f8187273895031232465:Manage Feeds\"]);return _templateObject103=function(){return e},e}function _templateObject102(){var e=_taggedTemplateLiteral([\":\\u241f51a0b2a443f1b6b1ceab1a868605d7b0f2065e28\\u241f562151600459726773: Error adding feed \",\":INTERPOLATION:: \",\":INTERPOLATION_1: \"]);return _templateObject102=function(){return e},e}function _templateObject101(){var e=_taggedTemplateLiteral([\":\\u241fccd3b9334639513fbd609704f4ec8536a15aeb97\\u241f4228842406796887022: Feeds were added successfully. \"]);return _templateObject101=function(){return e},e}function _templateObject100(){var e=_taggedTemplateLiteral([\":\\u241ff1910eaad1af7b9e7635f930ddc55586f157e3bd\\u241f5085881954406181280: No feeds added. \"]);return _templateObject100=function(){return e},e}function _templateObject99(){var e=_taggedTemplateLiteral([\":\\u241f9d9bc3eecf1610ec05a5c2b63bb7c1324529cba5\\u241f5997521680245778675:Discover more feeds\"]);return _templateObject99=function(){return e},e}function _templateObject98(){var e=_taggedTemplateLiteral([\":\\u241f9d9bc3eecf1610ec05a5c2b63bb7c1324529cba5\\u241f5997521680245778675:Discover more feeds\"]);return _templateObject98=function(){return e},e}function _templateObject97(){var e=_taggedTemplateLiteral([\":\\u241ff6755cff4957d5c3c89bafce5651f1b6fa2b1fd9\\u241f3249513483374643425:Add\"]);return _templateObject97=function(){return e},e}function _templateObject96(){var e=_taggedTemplateLiteral([\":\\u241fd95b1d4402bbe08c4ab7c089005abb260bf0fb62\\u241f4956883923261490175: No new feeds found \"]);return _templateObject96=function(){return e},e}function _templateObject95(){var e=_taggedTemplateLiteral([\":\\u241f8350af72cf77a2936cd54ac59cc1ab9adec34f74\\u241f5089003889507327516: Error during search \"]);return _templateObject95=function(){return e},e}function _templateObject94(){var e=_taggedTemplateLiteral([\":\\u241fbd2cda3ba20b1a481578e587ff255c5dd69226bb\\u241f107334190959015127: No query or opml file specified \"]);return _templateObject94=function(){return e},e}function _templateObject93(){var e=_taggedTemplateLiteral([\":\\u241f7e892ba15f2c6c17e83510e273b3e10fc32ea016\\u241f4580988005648117665:Search\"]);return _templateObject93=function(){return e},e}function _templateObject92(){var e=_taggedTemplateLiteral([\":\\u241f62eb4be126bc452812fe66b9675417704c09123a\\u241f2641672822784307275:OPML import\"]);return _templateObject92=function(){return e},e}function _templateObject91(){var e=_taggedTemplateLiteral([\":\\u241f0e6f6d047ad0445f95577c3886f5cb462ecfd614\\u241f4419855417700414171: Alternatively, upload an OPML file. \"]);return _templateObject91=function(){return e},e}function _templateObject90(){var e=_taggedTemplateLiteral([\":\\u241fc09f5d00683d3ea7a0bac506894a81c47075628f\\u241f7800294050526433264:URL/query\"]);return _templateObject90=function(){return e},e}function _templateObject89(){var e=_taggedTemplateLiteral([\":\\u241f79bf2166191aab07aa1524f2d1350fab472c468a\\u241f1179108510865870171: You can enter the url of a feed directly, as well as a url of a site that may contain one or more feeds, or a search query. \"]);return _templateObject89=function(){return e},e}function _templateObject88(){var e=_taggedTemplateLiteral([\":\\u241f2fa6619f44220045d57d900966a51c211caad6fc\\u241f8307427112695611410:Discover/import feeds\"]);return _templateObject88=function(){return e},e}function _templateObject87(){var e=_taggedTemplateLiteral([\":\\u241f71980fe48d948363935aab88e2077c7c76de93bd\\u241f4018700129027778932: Passwords do not match \"]);return _templateObject87=function(){return e},e}function _templateObject86(){var e=_taggedTemplateLiteral([\":\\u241fd4ee9c4a4fe08d273b716bf0a399570466bbd87c\\u241f5382495681765079471: Invalid password \"]);return _templateObject86=function(){return e},e}function _templateObject85(){var e=_taggedTemplateLiteral([\":\\u241f52c9a103b812f258bcddc3d90a6e3f46871d25fe\\u241f3768927257183755959:Save\"]);return _templateObject85=function(){return e},e}function _templateObject84(){var e=_taggedTemplateLiteral([\":\\u241fede41f01c781b168a783cfcefc6fb67d48780d9b\\u241f8656126574213649581:Confirm new password\"]);return _templateObject84=function(){return e},e}function _templateObject83(){var e=_taggedTemplateLiteral([\":\\u241fe70e209561583f360b1e9cefd2cbb1fe434b6229\\u241f3588415639242079458:New password\"]);return _templateObject83=function(){return e},e}function _templateObject82(){var e=_taggedTemplateLiteral([\":\\u241f6d6539a26b432fb1906f9fda102cf3ac332c8b8a\\u241f1375188762769896369:Change your password\"]);return _templateObject82=function(){return e},e}function _templateObject81(){var e=_taggedTemplateLiteral([\":\\u241f782e37fb591e59a26363f1558db22cd373660ca9\\u241f5224830667201919132: Please enter a valid email address \"]);return _templateObject81=function(){return e},e}function _templateObject80(){var e=_taggedTemplateLiteral([\":\\u241f739516c2ca75843d5aec9cf0e6b3e4335c4227b9\\u241f6309828574111583895:Change password\"]);return _templateObject80=function(){return e},e}function _templateObject79(){var e=_taggedTemplateLiteral([\":\\u241ffe46ccaae902ce974e2441abe752399288298619\\u241f2826581353496868063:Language\"]);return _templateObject79=function(){return e},e}function _templateObject78(){var e=_taggedTemplateLiteral([\":\\u241f244aae9346da82b0922506c2d2581373a15641cc\\u241f4768749765465246664:Email\"]);return _templateObject78=function(){return e},e}function _templateObject77(){var e=_taggedTemplateLiteral([\":\\u241f6ce3dadf53dda1a1ab0c3167a8ed8dced471b0dc\\u241f3586674587150281199:Last name\"]);return _templateObject77=function(){return e},e}function _templateObject76(){var e=_taggedTemplateLiteral([\":\\u241f62b6c66981335ca6eecc36b331103c60f09d1026\\u241f5342432350421167093:First name\"]);return _templateObject76=function(){return e},e}function _templateObject75(){var e=_taggedTemplateLiteral([\":\\u241f2034c9a8ec1a387f9614599aed924afedba51287\\u241f3044746121698042511:Personalize your feed reader\"]);return _templateObject75=function(){return e},e}function _templateObject74(){var e=_taggedTemplateLiteral([\":\\u241f9b1d5e95f6bdcfb4b737413f5fa157e0dcb103d5\\u241f2327592562693301723:Read\"]);return _templateObject74=function(){return e},e}function _templateObject73(){var e=_taggedTemplateLiteral([\":\\u241f3b6143a528c6f4586e60e9af4ced8ac0fbe08251\\u241f5539833462297888878:Articles\"]);return _templateObject73=function(){return e},e}function _templateObject72(){var e=_taggedTemplateLiteral([\":\\u241f8fc026bb4b317bf3a6159c364818202f5bb95a4e\\u241f7375243393535212946:Popular\"]);return _templateObject72=function(){return e},e}function _templateObject71(){var e=_taggedTemplateLiteral([\":\\u241fbb694b49d408265c91c62799c2b3a7e3151c824d\\u241f3797778920049399855:Logout\"]);return _templateObject71=function(){return e},e}function _templateObject70(){var e=_taggedTemplateLiteral([\":\\u241f121cc5391cd2a5115bc2b3160379ee5b36cd7716\\u241f4930506384627295710:Settings\"]);return _templateObject70=function(){return e},e}function _templateObject69(){var e=_taggedTemplateLiteral([\":\\u241fdfc3c34e182ea73c5d784ff7c8135f087992dac1\\u241f1616102757855967475:All\"]);return _templateObject69=function(){return e},e}function _templateObject68(){var e=_taggedTemplateLiteral([\":\\u241f11a0771f88158a540a54e0e4ec5d25733d65fc0e\\u241f5787671382322865445:Favorite\"]);return _templateObject68=function(){return e},e}function _templateObject67(){var e=_taggedTemplateLiteral([\":\\u241f416441a4532345eaa0c5cab38f0aeb148c8566e0\\u241f4648504262060403687: Feeds\\n\"]);return _templateObject67=function(){return e},e}function _templateObject66(){var e=_taggedTemplateLiteral([\":\\u241f170d0510bd494799bed6a127fc04eabc9f8bed23\\u241f97023127247629182: Summary \"]);return _templateObject66=function(){return e},e}function _templateObject65(){var e=_taggedTemplateLiteral([\":\\u241fd5e281892feed2ccbc7c3135846913de48ed7876\\u241f7925939516256734638: Format \"]);return _templateObject65=function(){return e},e}function _templateObject64(){var e=_taggedTemplateLiteral([\":\\u241fbba44ce85e0028ddbc8b0e38d5a04fabc13c8f61\\u241f342997967009162383: View \"]);return _templateObject64=function(){return e},e}function _templateObject63(){var e=_taggedTemplateLiteral([\":\\u241f94516fa213706c67ce5a5b5765681d7fb032033a\\u241f3894950702316166331:Loading...\"]);return _templateObject63=function(){return e},e}function _templateObject62(){var e=_taggedTemplateLiteral([\":\\u241f244aae9346da82b0922506c2d2581373a15641cc\\u241f4768749765465246664:Email\"]);return _templateObject62=function(){return e},e}function _templateObject61(){var e=_taggedTemplateLiteral([\":\\u241ff381d5239a6369e5f4b8582a35e135c8e3d9dfc8\\u241f1092044965355425322:Gmail\"]);return _templateObject61=function(){return e},e}function _templateObject60(){var e=_taggedTemplateLiteral([\":\\u241f244aae9346da82b0922506c2d2581373a15641cc\\u241f4768749765465246664:Email\"]);return _templateObject60=function(){return e},e}function _templateObject59(){var e=_taggedTemplateLiteral([\":\\u241f244aae9346da82b0922506c2d2581373a15641cc\\u241f4768749765465246664:Email\"]);return _templateObject59=function(){return e},e}function _templateObject58(){var e=_taggedTemplateLiteral([\":\\u241f889e1152e6351fd7607f7547eb5547f6c7a7f3df\\u241f1814818426021413844:Blogging\"]);return _templateObject58=function(){return e},e}function _templateObject57(){var e=_taggedTemplateLiteral([\":\\u241f9ed5758c5418a3aa0ecbf9c043a8d89b96852680\\u241f2394265441963394390:Flipboard\"]);return _templateObject57=function(){return e},e}function _templateObject56(){var e=_taggedTemplateLiteral([\":\\u241f889e1152e6351fd7607f7547eb5547f6c7a7f3df\\u241f1814818426021413844:Blogging\"]);return _templateObject56=function(){return e},e}function _templateObject55(){var e=_taggedTemplateLiteral([\":\\u241f8df49d58c2d6296211e3a4d6a7dcbb2256cad458\\u241f3508115160503405698:Tumblr\"]);return _templateObject55=function(){return e},e}function _templateObject54(){var e=_taggedTemplateLiteral([\":\\u241f81baa3357bebcb29271c8121a87c17915bdbb41f\\u241f3841619436439332072:Social network\"]);return _templateObject54=function(){return e},e}function _templateObject53(){var e=_taggedTemplateLiteral([\":\\u241f77ce98fa8988bd33011b2221a28c373dd35a5db1\\u241f5073753467039594647:Pinterest\"]);return _templateObject53=function(){return e},e}function _templateObject52(){var e=_taggedTemplateLiteral([\":\\u241f81baa3357bebcb29271c8121a87c17915bdbb41f\\u241f3841619436439332072:Social network\"]);return _templateObject52=function(){return e},e}function _templateObject51(){var e=_taggedTemplateLiteral([\":\\u241f99cb827741e93125476a0f5b676372d85d15b5fc\\u241f1715373473261069991:Twitter\"]);return _templateObject51=function(){return e},e}function _templateObject50(){var e=_taggedTemplateLiteral([\":\\u241f81baa3357bebcb29271c8121a87c17915bdbb41f\\u241f3841619436439332072:Social network\"]);return _templateObject50=function(){return e},e}function _templateObject49(){var e=_taggedTemplateLiteral([\":\\u241f838a46816b130c73fe73b96e69176da9eb3b1190\\u241f8790918354594417962:Facebook\"]);return _templateObject49=function(){return e},e}function _templateObject48(){var e=_taggedTemplateLiteral([\":\\u241f81baa3357bebcb29271c8121a87c17915bdbb41f\\u241f3841619436439332072:Social network\"]);return _templateObject48=function(){return e},e}function _templateObject47(){var e=_taggedTemplateLiteral([\":\\u241f6ff575335272d7e0a6843ba597216f8201b57991\\u241f7677669941581940117:Google+\"]);return _templateObject47=function(){return e},e}function _templateObject46(){var e=_taggedTemplateLiteral([\":\\u241fded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e\\u241f4957012645000249772:Read-it-later\"]);return _templateObject46=function(){return e},e}function _templateObject45(){var e=_taggedTemplateLiteral([\":\\u241f3031c36d6183f1bb68d18b5ee4aea8ae31bb0eeb\\u241f8042803930279457976:Pocket\"]);return _templateObject45=function(){return e},e}function _templateObject44(){var e=_taggedTemplateLiteral([\":\\u241fded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e\\u241f4957012645000249772:Read-it-later\"]);return _templateObject44=function(){return e},e}function _templateObject43(){var e=_taggedTemplateLiteral([\":\\u241febe46a6ad0c84110be6b37c800f3d3663eeb6aba\\u241f9204054824887609742:Readability\"]);return _templateObject43=function(){return e},e}function _templateObject42(){var e=_taggedTemplateLiteral([\":\\u241fded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e\\u241f4957012645000249772:Read-it-later\"]);return _templateObject42=function(){return e},e}function _templateObject41(){var e=_taggedTemplateLiteral([\":\\u241f35009adf932b9b5ef2c030703e87fc8837c69eb3\\u241f418690784356586368:Instapaper\"]);return _templateObject41=function(){return e},e}function _templateObject40(){var e=_taggedTemplateLiteral([\":\\u241fded8d756f6ae7dbe4a6d936f6cc3c4aab891fa1e\\u241f4957012645000249772:Read-it-later\"]);return _templateObject40=function(){return e},e}function _templateObject39(){var e=_taggedTemplateLiteral([\":\\u241f692e44560646c0bdeea893155ffcc76928378a1e\\u241f7811507103524633661:Evernote\"]);return _templateObject39=function(){return e},e}function _templateObject38(){var e=_taggedTemplateLiteral([\":\\u241f71c77bb8cecdf11ec3eead24dd1ba506573fa9cd\\u241f935187492052582731:Submit\"]);return _templateObject38=function(){return e},e}function _templateObject37(){var e=_taggedTemplateLiteral([\":\\u241fc32ef07f8803a223a83ed17024b38e8d82292407\\u241f1431416938026210429:Password\"]);return _templateObject37=function(){return e},e}function _templateObject36(){var e=_taggedTemplateLiteral([\":\\u241f024886ca34a6f309e3e51c2ed849320592c3faaa\\u241f5312727456282218392:User name\"]);return _templateObject36=function(){return e},e}function _wrapNativeSuper(e){var t=\"function\"==typeof Map?new Map:void 0;return(_wrapNativeSuper=function(e){if(null===e||!_isNativeFunction(e))return e;if(\"function\"!=typeof e)throw new TypeError(\"Super expression must either be null or a function\");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,n)}function n(){return _construct(e,arguments,_getPrototypeOf(this).constructor)}return n.prototype=Object.create(e.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),_setPrototypeOf(n,e)})(e)}function _isNativeFunction(e){return-1!==Function.toString.call(e).indexOf(\"[native code]\")}function _defineProperty(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function _templateObject35(){var e=_taggedTemplateLiteral([\":@@ngb.toast.close-aria\\u241ff4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8\\u241f7819314041543176992:Close\"]);return _templateObject35=function(){return e},e}function _templateObject34(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.AM\\u241f69a1f176a93998876952adac57c3bc3863b6105e\\u241f4592818992509942761:\",\":INTERPOLATION:\"]);return _templateObject34=function(){return e},e}function _templateObject33(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.PM\\u241f8d6e691e10306c1b34c6b26805151aaea320ef7f\\u241f3564199131264287502:\",\":INTERPOLATION:\"]);return _templateObject33=function(){return e},e}function _templateObject32(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.decrement-seconds\\u241f5db47ac104294243a70eb9124fbea9d0004ddf69\\u241f753633511487974857:Decrement seconds\"]);return _templateObject32=function(){return e},e}function _templateObject31(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.increment-seconds\\u241f912322ecee7d659d04dcf494a70e22e49d334b26\\u241f5364772110539092174:Increment seconds\"]);return _templateObject31=function(){return e},e}function _templateObject30(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.seconds\\u241f4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c\\u241f8874012390997067175:Seconds\"]);return _templateObject30=function(){return e},e}function _templateObject29(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.SS\\u241febe38d36a40a2383c5fefa9b4608ffbda08bd4a3\\u241f3628127143071124194:SS\"]);return _templateObject29=function(){return e},e}function _templateObject28(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.decrement-minutes\\u241fc1a6899e529c096da5b660385d4e77fe1f7ad271\\u241f7447789825403243588:Decrement minutes\"]);return _templateObject28=function(){return e},e}function _templateObject27(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.increment-minutes\\u241ff5a4a3bc05e053f6732475d0e74875ec01c3a348\\u241f180147720391025024:Increment minutes\"]);return _templateObject27=function(){return e},e}function _templateObject26(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.decrement-hours\\u241f147c7a19429da7d999e247d22e33fee370b1691b\\u241f3651829882940481818:Decrement hours\"]);return _templateObject26=function(){return e},e}function _templateObject25(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.increment-hours\\u241fcb74bc1d625a6c1742f0d7d47306cf495780c218\\u241f5939278348542933629:Increment hours\"]);return _templateObject25=function(){return e},e}function _templateObject24(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.minutes\\u241f41e62daa962947c0d23ded0981975d1bddf0bf38\\u241f5531237363767747080:Minutes\"]);return _templateObject24=function(){return e},e}function _templateObject23(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.MM\\u241f72c8edf6a50068a05bde70991e36b1e881f4ca54\\u241f1647282246509919852:MM\"]);return _templateObject23=function(){return e},e}function _templateObject22(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.hours\\u241f3bbce5fef7e1151da052a4e529453edb340e3912\\u241f8070396816726827304:Hours\"]);return _templateObject22=function(){return e},e}function _templateObject21(){var e=_taggedTemplateLiteral([\":@@ngb.timepicker.HH\\u241fce676ab1d6d98f85c836381cf100a4a91ef95a1f\\u241f4043638465245303811:HH\"]);return _templateObject21=function(){return e},e}function _templateObject20(){var e=_taggedTemplateLiteral([\":@@ngb.progressbar.value\\u241f04d611d19c117c60c9e14d0a04399a027184bc77\\u241f5214781723415385277:\",\":INTERPOLATION:%\"]);return _templateObject20=function(){return e},e}function _templateObject19(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.last-aria\\u241f5c729788ba138508aca1bec050b610f7bf81db3e\\u241f4882268002141858767:Last\"]);return _templateObject19=function(){return e},e}function _templateObject18(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.next-aria\\u241ff732c304c7433e5a83ffcd862c3dce709a0f4982\\u241f3885497195825665706:Next\"]);return _templateObject18=function(){return e},e}function _templateObject17(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.previous-aria\\u241f680d5c75b7fd8d37961083608b9fcdc4167b4c43\\u241f4452427314943113135:Previous\"]);return _templateObject17=function(){return e},e}function _templateObject16(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.first-aria\\u241ff2f852318759c6396b5d3d17031d53817d7b38cc\\u241f2241508602425256033:First\"]);return _templateObject16=function(){return e},e}function _templateObject15(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.last\\u241f49f27a460bc97e7e00be5b37098bfa79884fc7d9\\u241f5277020320267646988:\\xbb\\xbb\"]);return _templateObject15=function(){return e},e}function _templateObject14(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.next\\u241fba9cbb4ff311464308a3627e4f1c3345d9fe6d7d\\u241f5458177150283468089:\\xbb\"]);return _templateObject14=function(){return e},e}function _templateObject13(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.previous\\u241f6e52b6ee77a4848d899dd21b591c6fd499e3aef3\\u241f6479320895410098858:\\xab\"]);return _templateObject13=function(){return e},e}function _templateObject12(){var e=_taggedTemplateLiteral([\":@@ngb.pagination.first\\u241f656506dfd46380956a655f919f1498d018f75ca0\\u241f6867721956102594380:\\xab\\xab\"]);return _templateObject12=function(){return e},e}function _templateObject11(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.select-year\\u241f8ceb09d002bf0c5d1cac171dfbffe1805d2b3962\\u241f8852264961585484321:Select year\"]);return _templateObject11=function(){return e},e}function _templateObject10(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.select-year\\u241f8ceb09d002bf0c5d1cac171dfbffe1805d2b3962\\u241f8852264961585484321:Select year\"]);return _templateObject10=function(){return e},e}function _templateObject9(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.select-month\\u241f1dbc84807f35518112f62e5775d1daebd3d8462b\\u241f2253869508135064750:Select month\"]);return _templateObject9=function(){return e},e}function _templateObject8(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.select-month\\u241f1dbc84807f35518112f62e5775d1daebd3d8462b\\u241f2253869508135064750:Select month\"]);return _templateObject8=function(){return e},e}function _templateObject7(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.next-month\\u241f4bd046985cfe13040d5ef0cd881edce0968a111a\\u241f3628374603023447227:Next month\"]);return _templateObject7=function(){return e},e}function _templateObject6(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.next-month\\u241f4bd046985cfe13040d5ef0cd881edce0968a111a\\u241f3628374603023447227:Next month\"]);return _templateObject6=function(){return e},e}function _templateObject5(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.previous-month\\u241fc3b08b07b5ab98e7cdcf18df39355690ab7d3884\\u241f8586908745456864217:Previous month\"]);return _templateObject5=function(){return e},e}function _templateObject4(){var e=_taggedTemplateLiteral([\":@@ngb.datepicker.previous-month\\u241fc3b08b07b5ab98e7cdcf18df39355690ab7d3884\\u241f8586908745456864217:Previous month\"]);return _templateObject4=function(){return e},e}function _templateObject3(){var e=_taggedTemplateLiteral([\":@@ngb.carousel.next\\u241ff732c304c7433e5a83ffcd862c3dce709a0f4982\\u241f3885497195825665706:Next\"]);return _templateObject3=function(){return e},e}function _templateObject2(){var e=_taggedTemplateLiteral([\":@@ngb.carousel.previous\\u241f680d5c75b7fd8d37961083608b9fcdc4167b4c43\\u241f4452427314943113135:Previous\"]);return _templateObject2=function(){return e},e}function _templateObject(){var e=_taggedTemplateLiteral([\":@@ngb.alert.close\\u241ff4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8\\u241f7819314041543176992:Close\"]);return _templateObject=function(){return e},e}function _taggedTemplateLiteral(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))}function _slicedToArray(e,t){return _arrayWithHoles(e)||_iterableToArrayLimit(e,t)||_unsupportedIterableToArray(e,t)||_nonIterableRest()}function _nonIterableRest(){throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}function _iterableToArrayLimit(e,t){if(\"undefined\"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,i=!1,a=void 0;try{for(var o,s=e[Symbol.iterator]();!(r=(o=s.next()).done)&&(n.push(o.value),!t||n.length!==t);r=!0);}catch(l){i=!0,a=l}finally{try{r||null==s.return||s.return()}finally{if(i)throw a}}return n}}function _arrayWithHoles(e){if(Array.isArray(e))return e}function _toConsumableArray(e){return _arrayWithoutHoles(e)||_iterableToArray(e)||_unsupportedIterableToArray(e)||_nonIterableSpread()}function _nonIterableSpread(){throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}function _iterableToArray(e){if(\"undefined\"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}function _arrayWithoutHoles(e){if(Array.isArray(e))return _arrayLikeToArray(e)}function _createForOfIteratorHelper(e){if(\"undefined\"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(e=_unsupportedIterableToArray(e))){var t=0,n=function(){};return{s:n,n:function(){return t>=e.length?{done:!0}:{done:!1,value:e[t++]}},e:function(e){throw e},f:n}}throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}var r,i,a=!0,o=!1;return{s:function(){r=e[Symbol.iterator]()},n:function(){var e=r.next();return a=e.done,e},e:function(e){o=!0,i=e},f:function(){try{a||null==r.return||r.return()}finally{if(o)throw i}}}}function _unsupportedIterableToArray(e,t){if(e){if(\"string\"==typeof e)return _arrayLikeToArray(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return\"Object\"===n&&e.constructor&&(n=e.constructor.name),\"Map\"===n||\"Set\"===n?Array.from(n):\"Arguments\"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?_arrayLikeToArray(e,t):void 0}}function _arrayLikeToArray(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"//9w\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"se\",{months:\"o\\u0111\\u0111ajagem\\xe1nnu_guovvam\\xe1nnu_njuk\\u010dam\\xe1nnu_cuo\\u014bom\\xe1nnu_miessem\\xe1nnu_geassem\\xe1nnu_suoidnem\\xe1nnu_borgem\\xe1nnu_\\u010dak\\u010dam\\xe1nnu_golggotm\\xe1nnu_sk\\xe1bmam\\xe1nnu_juovlam\\xe1nnu\".split(\"_\"),monthsShort:\"o\\u0111\\u0111j_guov_njuk_cuo_mies_geas_suoi_borg_\\u010dak\\u010d_golg_sk\\xe1b_juov\".split(\"_\"),weekdays:\"sotnabeaivi_vuoss\\xe1rga_ma\\u014b\\u014beb\\xe1rga_gaskavahkku_duorastat_bearjadat_l\\xe1vvardat\".split(\"_\"),weekdaysShort:\"sotn_vuos_ma\\u014b_gask_duor_bear_l\\xe1v\".split(\"_\"),weekdaysMin:\"s_v_m_g_d_b_L\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"MMMM D. [b.] YYYY\",LLL:\"MMMM D. [b.] YYYY [ti.] HH:mm\",LLLL:\"dddd, MMMM D. [b.] YYYY [ti.] HH:mm\"},calendar:{sameDay:\"[otne ti] LT\",nextDay:\"[ihttin ti] LT\",nextWeek:\"dddd [ti] LT\",lastDay:\"[ikte ti] LT\",lastWeek:\"[ovddit] dddd [ti] LT\",sameElse:\"L\"},relativeTime:{future:\"%s gea\\u017ees\",past:\"ma\\u014bit %s\",s:\"moadde sekunddat\",ss:\"%d sekunddat\",m:\"okta minuhta\",mm:\"%d minuhtat\",h:\"okta diimmu\",hh:\"%d diimmut\",d:\"okta beaivi\",dd:\"%d beaivvit\",M:\"okta m\\xe1nnu\",MM:\"%d m\\xe1nut\",y:\"okta jahki\",yy:\"%d jagit\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"/X5v\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"x-pseudo\",{months:\"J~\\xe1\\xf1\\xfa\\xe1~r\\xfd_F~\\xe9br\\xfa~\\xe1r\\xfd_~M\\xe1rc~h_\\xc1p~r\\xedl_~M\\xe1\\xfd_~J\\xfa\\xf1\\xe9~_J\\xfal~\\xfd_\\xc1\\xfa~g\\xfast~_S\\xe9p~t\\xe9mb~\\xe9r_\\xd3~ct\\xf3b~\\xe9r_\\xd1~\\xf3v\\xe9m~b\\xe9r_~D\\xe9c\\xe9~mb\\xe9r\".split(\"_\"),monthsShort:\"J~\\xe1\\xf1_~F\\xe9b_~M\\xe1r_~\\xc1pr_~M\\xe1\\xfd_~J\\xfa\\xf1_~J\\xfal_~\\xc1\\xfag_~S\\xe9p_~\\xd3ct_~\\xd1\\xf3v_~D\\xe9c\".split(\"_\"),monthsParseExact:!0,weekdays:\"S~\\xfa\\xf1d\\xe1~\\xfd_M\\xf3~\\xf1d\\xe1\\xfd~_T\\xfa\\xe9~sd\\xe1\\xfd~_W\\xe9d~\\xf1\\xe9sd~\\xe1\\xfd_T~h\\xfars~d\\xe1\\xfd_~Fr\\xedd~\\xe1\\xfd_S~\\xe1t\\xfar~d\\xe1\\xfd\".split(\"_\"),weekdaysShort:\"S~\\xfa\\xf1_~M\\xf3\\xf1_~T\\xfa\\xe9_~W\\xe9d_~Th\\xfa_~Fr\\xed_~S\\xe1t\".split(\"_\"),weekdaysMin:\"S~\\xfa_M\\xf3~_T\\xfa_~W\\xe9_T~h_Fr~_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[T~\\xf3d\\xe1~\\xfd \\xe1t] LT\",nextDay:\"[T~\\xf3m\\xf3~rr\\xf3~w \\xe1t] LT\",nextWeek:\"dddd [\\xe1t] LT\",lastDay:\"[\\xdd~\\xe9st~\\xe9rd\\xe1~\\xfd \\xe1t] LT\",lastWeek:\"[L~\\xe1st] dddd [\\xe1t] LT\",sameElse:\"L\"},relativeTime:{future:\"\\xed~\\xf1 %s\",past:\"%s \\xe1~g\\xf3\",s:\"\\xe1 ~f\\xe9w ~s\\xe9c\\xf3~\\xf1ds\",ss:\"%d s~\\xe9c\\xf3\\xf1~ds\",m:\"\\xe1 ~m\\xed\\xf1~\\xfat\\xe9\",mm:\"%d m~\\xed\\xf1\\xfa~t\\xe9s\",h:\"\\xe1~\\xf1 h\\xf3~\\xfar\",hh:\"%d h~\\xf3\\xfars\",d:\"\\xe1 ~d\\xe1\\xfd\",dd:\"%d d~\\xe1\\xfds\",M:\"\\xe1 ~m\\xf3\\xf1~th\",MM:\"%d m~\\xf3\\xf1t~hs\",y:\"\\xe1 ~\\xfd\\xe9\\xe1r\",yy:\"%d \\xfd~\\xe9\\xe1rs\"},dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},0:function(e,t,n){e.exports=n(\"zUnb\")},\"0mo+\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0f21\",2:\"\\u0f22\",3:\"\\u0f23\",4:\"\\u0f24\",5:\"\\u0f25\",6:\"\\u0f26\",7:\"\\u0f27\",8:\"\\u0f28\",9:\"\\u0f29\",0:\"\\u0f20\"},n={\"\\u0f21\":\"1\",\"\\u0f22\":\"2\",\"\\u0f23\":\"3\",\"\\u0f24\":\"4\",\"\\u0f25\":\"5\",\"\\u0f26\":\"6\",\"\\u0f27\":\"7\",\"\\u0f28\":\"8\",\"\\u0f29\":\"9\",\"\\u0f20\":\"0\"};e.defineLocale(\"bo\",{months:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f44\\u0f0b\\u0f54\\u0f7c_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f66\\u0f74\\u0f58\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f5e\\u0f72\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f63\\u0f94\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0fb2\\u0f74\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f62\\u0f92\\u0fb1\\u0f51\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f42\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54\".split(\"_\"),monthsShort:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f44\\u0f0b\\u0f54\\u0f7c_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f66\\u0f74\\u0f58\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f5e\\u0f72\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f63\\u0f94\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0fb2\\u0f74\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f62\\u0f92\\u0fb1\\u0f51\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f51\\u0f42\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\\u0f0b\\u0f54_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f56\\u0f45\\u0f74\\u0f0b\\u0f42\\u0f49\\u0f72\\u0f66\\u0f0b\\u0f54\".split(\"_\"),weekdays:\"\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f42\\u0f5f\\u0f60\\u0f0b\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),weekdaysShort:\"\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),weekdaysMin:\"\\u0f49\\u0f72\\u0f0b\\u0f58\\u0f0b_\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b_\\u0f58\\u0f72\\u0f42\\u0f0b\\u0f51\\u0f58\\u0f62\\u0f0b_\\u0f63\\u0fb7\\u0f42\\u0f0b\\u0f54\\u0f0b_\\u0f55\\u0f74\\u0f62\\u0f0b\\u0f56\\u0f74_\\u0f54\\u0f0b\\u0f66\\u0f44\\u0f66\\u0f0b_\\u0f66\\u0fa4\\u0f7a\\u0f53\\u0f0b\\u0f54\\u0f0b\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0f51\\u0f72\\u0f0b\\u0f62\\u0f72\\u0f44] LT\",nextDay:\"[\\u0f66\\u0f44\\u0f0b\\u0f49\\u0f72\\u0f53] LT\",nextWeek:\"[\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f55\\u0fb2\\u0f42\\u0f0b\\u0f62\\u0f97\\u0f7a\\u0f66\\u0f0b\\u0f58], LT\",lastDay:\"[\\u0f41\\u0f0b\\u0f66\\u0f44] LT\",lastWeek:\"[\\u0f56\\u0f51\\u0f74\\u0f53\\u0f0b\\u0f55\\u0fb2\\u0f42\\u0f0b\\u0f58\\u0f50\\u0f60\\u0f0b\\u0f58] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0f63\\u0f0b\",past:\"%s \\u0f66\\u0f94\\u0f53\\u0f0b\\u0f63\",s:\"\\u0f63\\u0f58\\u0f0b\\u0f66\\u0f44\",ss:\"%d \\u0f66\\u0f90\\u0f62\\u0f0b\\u0f46\\u0f0d\",m:\"\\u0f66\\u0f90\\u0f62\\u0f0b\\u0f58\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",mm:\"%d \\u0f66\\u0f90\\u0f62\\u0f0b\\u0f58\",h:\"\\u0f46\\u0f74\\u0f0b\\u0f5a\\u0f7c\\u0f51\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",hh:\"%d \\u0f46\\u0f74\\u0f0b\\u0f5a\\u0f7c\\u0f51\",d:\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",dd:\"%d \\u0f49\\u0f72\\u0f53\\u0f0b\",M:\"\\u0f5f\\u0fb3\\u0f0b\\u0f56\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",MM:\"%d \\u0f5f\\u0fb3\\u0f0b\\u0f56\",y:\"\\u0f63\\u0f7c\\u0f0b\\u0f42\\u0f45\\u0f72\\u0f42\",yy:\"%d \\u0f63\\u0f7c\"},preparse:function(e){return e.replace(/[\\u0f21\\u0f22\\u0f23\\u0f24\\u0f25\\u0f26\\u0f27\\u0f28\\u0f29\\u0f20]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c|\\u0f5e\\u0f7c\\u0f42\\u0f66\\u0f0b\\u0f40\\u0f66|\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44|\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42|\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\"===t&&e>=4||\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44\"===t&&e<5||\"\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\":e<10?\"\\u0f5e\\u0f7c\\u0f42\\u0f66\\u0f0b\\u0f40\\u0f66\":e<17?\"\\u0f49\\u0f72\\u0f53\\u0f0b\\u0f42\\u0f74\\u0f44\":e<20?\"\\u0f51\\u0f42\\u0f7c\\u0f44\\u0f0b\\u0f51\\u0f42\":\"\\u0f58\\u0f5a\\u0f53\\u0f0b\\u0f58\\u0f7c\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"0tRk\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt-br\",{months:\"Janeiro_Fevereiro_Mar\\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingo_Segunda-feira_Ter\\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\\xe1bado\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ter_Qua_Qui_Sex_S\\xe1b\".split(\"_\"),weekdaysMin:\"Do_2\\xaa_3\\xaa_4\\xaa_5\\xaa_6\\xaa_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY [\\xe0s] HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY [\\xe0s] HH:mm\"},calendar:{sameDay:\"[Hoje \\xe0s] LT\",nextDay:\"[Amanh\\xe3 \\xe0s] LT\",nextWeek:\"dddd [\\xe0s] LT\",lastDay:\"[Ontem \\xe0s] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[\\xdaltimo] dddd [\\xe0s] LT\":\"[\\xdaltima] dddd [\\xe0s] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"h\\xe1 %s\",s:\"poucos segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",M:\"um m\\xeas\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\"})}(n(\"wd/R\"))},\"1rYy\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"hy-am\",{months:{format:\"\\u0570\\u0578\\u0582\\u0576\\u057e\\u0561\\u0580\\u056b_\\u0583\\u0565\\u057f\\u0580\\u057e\\u0561\\u0580\\u056b_\\u0574\\u0561\\u0580\\u057f\\u056b_\\u0561\\u057a\\u0580\\u056b\\u056c\\u056b_\\u0574\\u0561\\u0575\\u056b\\u057d\\u056b_\\u0570\\u0578\\u0582\\u0576\\u056b\\u057d\\u056b_\\u0570\\u0578\\u0582\\u056c\\u056b\\u057d\\u056b_\\u0585\\u0563\\u0578\\u057d\\u057f\\u0578\\u057d\\u056b_\\u057d\\u0565\\u057a\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0570\\u0578\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0576\\u0578\\u0575\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b_\\u0564\\u0565\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\\u056b\".split(\"_\"),standalone:\"\\u0570\\u0578\\u0582\\u0576\\u057e\\u0561\\u0580_\\u0583\\u0565\\u057f\\u0580\\u057e\\u0561\\u0580_\\u0574\\u0561\\u0580\\u057f_\\u0561\\u057a\\u0580\\u056b\\u056c_\\u0574\\u0561\\u0575\\u056b\\u057d_\\u0570\\u0578\\u0582\\u0576\\u056b\\u057d_\\u0570\\u0578\\u0582\\u056c\\u056b\\u057d_\\u0585\\u0563\\u0578\\u057d\\u057f\\u0578\\u057d_\\u057d\\u0565\\u057a\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0570\\u0578\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0576\\u0578\\u0575\\u0565\\u0574\\u0562\\u0565\\u0580_\\u0564\\u0565\\u056f\\u057f\\u0565\\u0574\\u0562\\u0565\\u0580\".split(\"_\")},monthsShort:\"\\u0570\\u0576\\u057e_\\u0583\\u057f\\u0580_\\u0574\\u0580\\u057f_\\u0561\\u057a\\u0580_\\u0574\\u0575\\u057d_\\u0570\\u0576\\u057d_\\u0570\\u056c\\u057d_\\u0585\\u0563\\u057d_\\u057d\\u057a\\u057f_\\u0570\\u056f\\u057f_\\u0576\\u0574\\u0562_\\u0564\\u056f\\u057f\".split(\"_\"),weekdays:\"\\u056f\\u056b\\u0580\\u0561\\u056f\\u056b_\\u0565\\u0580\\u056f\\u0578\\u0582\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0565\\u0580\\u0565\\u0584\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0579\\u0578\\u0580\\u0565\\u0584\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0570\\u056b\\u0576\\u0563\\u0577\\u0561\\u0562\\u0569\\u056b_\\u0578\\u0582\\u0580\\u0562\\u0561\\u0569_\\u0577\\u0561\\u0562\\u0561\\u0569\".split(\"_\"),weekdaysShort:\"\\u056f\\u0580\\u056f_\\u0565\\u0580\\u056f_\\u0565\\u0580\\u0584_\\u0579\\u0580\\u0584_\\u0570\\u0576\\u0563_\\u0578\\u0582\\u0580\\u0562_\\u0577\\u0562\\u0569\".split(\"_\"),weekdaysMin:\"\\u056f\\u0580\\u056f_\\u0565\\u0580\\u056f_\\u0565\\u0580\\u0584_\\u0579\\u0580\\u0584_\\u0570\\u0576\\u0563_\\u0578\\u0582\\u0580\\u0562_\\u0577\\u0562\\u0569\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0569.\",LLL:\"D MMMM YYYY \\u0569., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0569., HH:mm\"},calendar:{sameDay:\"[\\u0561\\u0575\\u057d\\u0585\\u0580] LT\",nextDay:\"[\\u057e\\u0561\\u0572\\u0568] LT\",lastDay:\"[\\u0565\\u0580\\u0565\\u056f] LT\",nextWeek:function(){return\"dddd [\\u0585\\u0580\\u0568 \\u056a\\u0561\\u0574\\u0568] LT\"},lastWeek:function(){return\"[\\u0561\\u0576\\u0581\\u0561\\u056e] dddd [\\u0585\\u0580\\u0568 \\u056a\\u0561\\u0574\\u0568] LT\"},sameElse:\"L\"},relativeTime:{future:\"%s \\u0570\\u0565\\u057f\\u0578\",past:\"%s \\u0561\\u057c\\u0561\\u057b\",s:\"\\u0574\\u056b \\u0584\\u0561\\u0576\\u056b \\u057e\\u0561\\u0575\\u0580\\u056f\\u0575\\u0561\\u0576\",ss:\"%d \\u057e\\u0561\\u0575\\u0580\\u056f\\u0575\\u0561\\u0576\",m:\"\\u0580\\u0578\\u057a\\u0565\",mm:\"%d \\u0580\\u0578\\u057a\\u0565\",h:\"\\u056a\\u0561\\u0574\",hh:\"%d \\u056a\\u0561\\u0574\",d:\"\\u0585\\u0580\",dd:\"%d \\u0585\\u0580\",M:\"\\u0561\\u0574\\u056b\\u057d\",MM:\"%d \\u0561\\u0574\\u056b\\u057d\",y:\"\\u057f\\u0561\\u0580\\u056b\",yy:\"%d \\u057f\\u0561\\u0580\\u056b\"},meridiemParse:/\\u0563\\u056b\\u0577\\u0565\\u0580\\u057e\\u0561|\\u0561\\u057c\\u0561\\u057e\\u0578\\u057f\\u057e\\u0561|\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561|\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576/,isPM:function(e){return/^(\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561|\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576)$/.test(e)},meridiem:function(e){return e<4?\"\\u0563\\u056b\\u0577\\u0565\\u0580\\u057e\\u0561\":e<12?\"\\u0561\\u057c\\u0561\\u057e\\u0578\\u057f\\u057e\\u0561\":e<17?\"\\u0581\\u0565\\u0580\\u0565\\u056f\\u057e\\u0561\":\"\\u0565\\u0580\\u0565\\u056f\\u0578\\u0575\\u0561\\u0576\"},dayOfMonthOrdinalParse:/\\d{1,2}|\\d{1,2}-(\\u056b\\u0576|\\u0580\\u0564)/,ordinal:function(e,t){switch(t){case\"DDD\":case\"w\":case\"W\":case\"DDDo\":return 1===e?e+\"-\\u056b\\u0576\":e+\"-\\u0580\\u0564\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"1xZ4\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ca\",{months:{standalone:\"gener_febrer_mar\\xe7_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre\".split(\"_\"),format:\"de gener_de febrer_de mar\\xe7_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre\".split(\"_\"),isFormat:/D[oD]?(\\s)+MMMM/},monthsShort:\"gen._febr._mar\\xe7_abr._maig_juny_jul._ag._set._oct._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte\".split(\"_\"),weekdaysShort:\"dg._dl._dt._dc._dj._dv._ds.\".split(\"_\"),weekdaysMin:\"dg_dl_dt_dc_dj_dv_ds\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [de] YYYY\",ll:\"D MMM YYYY\",LLL:\"D MMMM [de] YYYY [a les] H:mm\",lll:\"D MMM YYYY, H:mm\",LLLL:\"dddd D MMMM [de] YYYY [a les] H:mm\",llll:\"ddd D MMM YYYY, H:mm\"},calendar:{sameDay:function(){return\"[avui a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextDay:function(){return\"[dem\\xe0 a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},nextWeek:function(){return\"dddd [a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastDay:function(){return\"[ahir a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [passat a \"+(1!==this.hours()?\"les\":\"la\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"d'aqu\\xed %s\",past:\"fa %s\",s:\"uns segons\",ss:\"%d segons\",m:\"un minut\",mm:\"%d minuts\",h:\"una hora\",hh:\"%d hores\",d:\"un dia\",dd:\"%d dies\",M:\"un mes\",MM:\"%d mesos\",y:\"un any\",yy:\"%d anys\"},dayOfMonthOrdinalParse:/\\d{1,2}(r|n|t|\\xe8|a)/,ordinal:function(e,t){var n=1===e?\"r\":2===e?\"n\":3===e?\"r\":4===e?\"t\":\"\\xe8\";return\"w\"!==t&&\"W\"!==t||(n=\"a\"),e+n},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"2fjn\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ca\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}}})}(n(\"wd/R\"))},\"2ykv\":function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),n=\"jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),r=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],i=/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\\.?|feb\\.?|mrt\\.?|apr\\.?|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i;e.defineLocale(\"nl-be\",{months:\"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december\".split(\"_\"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\\.?|feb\\.?|mrt\\.?|apr\\.?|mei|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:\"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag\".split(\"_\"),weekdaysShort:\"zo._ma._di._wo._do._vr._za.\".split(\"_\"),weekdaysMin:\"zo_ma_di_wo_do_vr_za\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[vandaag om] LT\",nextDay:\"[morgen om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[gisteren om] LT\",lastWeek:\"[afgelopen] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"over %s\",past:\"%s geleden\",s:\"een paar seconden\",ss:\"%d seconden\",m:\"\\xe9\\xe9n minuut\",mm:\"%d minuten\",h:\"\\xe9\\xe9n uur\",hh:\"%d uur\",d:\"\\xe9\\xe9n dag\",dd:\"%d dagen\",M:\"\\xe9\\xe9n maand\",MM:\"%d maanden\",y:\"\\xe9\\xe9n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"3E1r\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};e.defineLocale(\"hi\",{months:\"\\u091c\\u0928\\u0935\\u0930\\u0940_\\u092b\\u093c\\u0930\\u0935\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u0948\\u0932_\\u092e\\u0908_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908_\\u0905\\u0917\\u0938\\u094d\\u0924_\\u0938\\u093f\\u0924\\u092e\\u094d\\u092c\\u0930_\\u0905\\u0915\\u094d\\u091f\\u0942\\u092c\\u0930_\\u0928\\u0935\\u092e\\u094d\\u092c\\u0930_\\u0926\\u093f\\u0938\\u092e\\u094d\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u0928._\\u092b\\u093c\\u0930._\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u0948._\\u092e\\u0908_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932._\\u0905\\u0917._\\u0938\\u093f\\u0924._\\u0905\\u0915\\u094d\\u091f\\u0942._\\u0928\\u0935._\\u0926\\u093f\\u0938.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0930\\u0935\\u093f\\u0935\\u093e\\u0930_\\u0938\\u094b\\u092e\\u0935\\u093e\\u0930_\\u092e\\u0902\\u0917\\u0932\\u0935\\u093e\\u0930_\\u092c\\u0941\\u0927\\u0935\\u093e\\u0930_\\u0917\\u0941\\u0930\\u0942\\u0935\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u0935\\u093e\\u0930_\\u0936\\u0928\\u093f\\u0935\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0930\\u0935\\u093f_\\u0938\\u094b\\u092e_\\u092e\\u0902\\u0917\\u0932_\\u092c\\u0941\\u0927_\\u0917\\u0941\\u0930\\u0942_\\u0936\\u0941\\u0915\\u094d\\u0930_\\u0936\\u0928\\u093f\".split(\"_\"),weekdaysMin:\"\\u0930_\\u0938\\u094b_\\u092e\\u0902_\\u092c\\u0941_\\u0917\\u0941_\\u0936\\u0941_\\u0936\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u092c\\u091c\\u0947\",LTS:\"A h:mm:ss \\u092c\\u091c\\u0947\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u092c\\u091c\\u0947\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u092c\\u091c\\u0947\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u0915\\u0932] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0915\\u0932] LT\",lastWeek:\"[\\u092a\\u093f\\u091b\\u0932\\u0947] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u092e\\u0947\\u0902\",past:\"%s \\u092a\\u0939\\u0932\\u0947\",s:\"\\u0915\\u0941\\u091b \\u0939\\u0940 \\u0915\\u094d\\u0937\\u0923\",ss:\"%d \\u0938\\u0947\\u0915\\u0902\\u0921\",m:\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u091f\",mm:\"%d \\u092e\\u093f\\u0928\\u091f\",h:\"\\u090f\\u0915 \\u0918\\u0902\\u091f\\u093e\",hh:\"%d \\u0918\\u0902\\u091f\\u0947\",d:\"\\u090f\\u0915 \\u0926\\u093f\\u0928\",dd:\"%d \\u0926\\u093f\\u0928\",M:\"\\u090f\\u0915 \\u092e\\u0939\\u0940\\u0928\\u0947\",MM:\"%d \\u092e\\u0939\\u0940\\u0928\\u0947\",y:\"\\u090f\\u0915 \\u0935\\u0930\\u094d\\u0937\",yy:\"%d \\u0935\\u0930\\u094d\\u0937\"},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924|\\u0938\\u0941\\u092c\\u0939|\\u0926\\u094b\\u092a\\u0939\\u0930|\\u0936\\u093e\\u092e/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\"===t?e<4?e:e+12:\"\\u0938\\u0941\\u092c\\u0939\"===t?e:\"\\u0926\\u094b\\u092a\\u0939\\u0930\"===t?e>=10?e:e+12:\"\\u0936\\u093e\\u092e\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0930\\u093e\\u0924\":e<10?\"\\u0938\\u0941\\u092c\\u0939\":e<17?\"\\u0926\\u094b\\u092a\\u0939\\u0930\":e<20?\"\\u0936\\u093e\\u092e\":\"\\u0930\\u093e\\u0924\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"4MV3\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0ae7\",2:\"\\u0ae8\",3:\"\\u0ae9\",4:\"\\u0aea\",5:\"\\u0aeb\",6:\"\\u0aec\",7:\"\\u0aed\",8:\"\\u0aee\",9:\"\\u0aef\",0:\"\\u0ae6\"},n={\"\\u0ae7\":\"1\",\"\\u0ae8\":\"2\",\"\\u0ae9\":\"3\",\"\\u0aea\":\"4\",\"\\u0aeb\":\"5\",\"\\u0aec\":\"6\",\"\\u0aed\":\"7\",\"\\u0aee\":\"8\",\"\\u0aef\":\"9\",\"\\u0ae6\":\"0\"};e.defineLocale(\"gu\",{months:\"\\u0a9c\\u0abe\\u0aa8\\u0acd\\u0aaf\\u0ac1\\u0a86\\u0ab0\\u0ac0_\\u0aab\\u0ac7\\u0aac\\u0acd\\u0ab0\\u0ac1\\u0a86\\u0ab0\\u0ac0_\\u0aae\\u0abe\\u0ab0\\u0acd\\u0a9a_\\u0a8f\\u0aaa\\u0acd\\u0ab0\\u0abf\\u0ab2_\\u0aae\\u0ac7_\\u0a9c\\u0ac2\\u0aa8_\\u0a9c\\u0ac1\\u0ab2\\u0abe\\u0a88_\\u0a91\\u0a97\\u0ab8\\u0acd\\u0a9f_\\u0ab8\\u0aaa\\u0acd\\u0a9f\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0_\\u0a91\\u0a95\\u0acd\\u0a9f\\u0acd\\u0aac\\u0ab0_\\u0aa8\\u0ab5\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0_\\u0aa1\\u0abf\\u0ab8\\u0ac7\\u0aae\\u0acd\\u0aac\\u0ab0\".split(\"_\"),monthsShort:\"\\u0a9c\\u0abe\\u0aa8\\u0acd\\u0aaf\\u0ac1._\\u0aab\\u0ac7\\u0aac\\u0acd\\u0ab0\\u0ac1._\\u0aae\\u0abe\\u0ab0\\u0acd\\u0a9a_\\u0a8f\\u0aaa\\u0acd\\u0ab0\\u0abf._\\u0aae\\u0ac7_\\u0a9c\\u0ac2\\u0aa8_\\u0a9c\\u0ac1\\u0ab2\\u0abe._\\u0a91\\u0a97._\\u0ab8\\u0aaa\\u0acd\\u0a9f\\u0ac7._\\u0a91\\u0a95\\u0acd\\u0a9f\\u0acd._\\u0aa8\\u0ab5\\u0ac7._\\u0aa1\\u0abf\\u0ab8\\u0ac7.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0ab0\\u0ab5\\u0abf\\u0ab5\\u0abe\\u0ab0_\\u0ab8\\u0acb\\u0aae\\u0ab5\\u0abe\\u0ab0_\\u0aae\\u0a82\\u0a97\\u0ab3\\u0ab5\\u0abe\\u0ab0_\\u0aac\\u0ac1\\u0aa7\\u0acd\\u0ab5\\u0abe\\u0ab0_\\u0a97\\u0ac1\\u0ab0\\u0ac1\\u0ab5\\u0abe\\u0ab0_\\u0ab6\\u0ac1\\u0a95\\u0acd\\u0ab0\\u0ab5\\u0abe\\u0ab0_\\u0ab6\\u0aa8\\u0abf\\u0ab5\\u0abe\\u0ab0\".split(\"_\"),weekdaysShort:\"\\u0ab0\\u0ab5\\u0abf_\\u0ab8\\u0acb\\u0aae_\\u0aae\\u0a82\\u0a97\\u0ab3_\\u0aac\\u0ac1\\u0aa7\\u0acd_\\u0a97\\u0ac1\\u0ab0\\u0ac1_\\u0ab6\\u0ac1\\u0a95\\u0acd\\u0ab0_\\u0ab6\\u0aa8\\u0abf\".split(\"_\"),weekdaysMin:\"\\u0ab0_\\u0ab8\\u0acb_\\u0aae\\u0a82_\\u0aac\\u0ac1_\\u0a97\\u0ac1_\\u0ab6\\u0ac1_\\u0ab6\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",LTS:\"A h:mm:ss \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0ab5\\u0abe\\u0a97\\u0acd\\u0aaf\\u0ac7\"},calendar:{sameDay:\"[\\u0a86\\u0a9c] LT\",nextDay:\"[\\u0a95\\u0abe\\u0ab2\\u0ac7] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0a97\\u0a87\\u0a95\\u0abe\\u0ab2\\u0ac7] LT\",lastWeek:\"[\\u0aaa\\u0abe\\u0a9b\\u0ab2\\u0abe] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0aae\\u0abe\",past:\"%s \\u0aaa\\u0ac7\\u0ab9\\u0ab2\\u0abe\",s:\"\\u0a85\\u0aae\\u0ac1\\u0a95 \\u0aaa\\u0ab3\\u0acb\",ss:\"%d \\u0ab8\\u0ac7\\u0a95\\u0a82\\u0aa1\",m:\"\\u0a8f\\u0a95 \\u0aae\\u0abf\\u0aa8\\u0abf\\u0a9f\",mm:\"%d \\u0aae\\u0abf\\u0aa8\\u0abf\\u0a9f\",h:\"\\u0a8f\\u0a95 \\u0a95\\u0ab2\\u0abe\\u0a95\",hh:\"%d \\u0a95\\u0ab2\\u0abe\\u0a95\",d:\"\\u0a8f\\u0a95 \\u0aa6\\u0abf\\u0ab5\\u0ab8\",dd:\"%d \\u0aa6\\u0abf\\u0ab5\\u0ab8\",M:\"\\u0a8f\\u0a95 \\u0aae\\u0ab9\\u0abf\\u0aa8\\u0acb\",MM:\"%d \\u0aae\\u0ab9\\u0abf\\u0aa8\\u0acb\",y:\"\\u0a8f\\u0a95 \\u0ab5\\u0ab0\\u0acd\\u0ab7\",yy:\"%d \\u0ab5\\u0ab0\\u0acd\\u0ab7\"},preparse:function(e){return e.replace(/[\\u0ae7\\u0ae8\\u0ae9\\u0aea\\u0aeb\\u0aec\\u0aed\\u0aee\\u0aef\\u0ae6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0ab0\\u0abe\\u0aa4|\\u0aac\\u0aaa\\u0acb\\u0ab0|\\u0ab8\\u0ab5\\u0abe\\u0ab0|\\u0ab8\\u0abe\\u0a82\\u0a9c/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0ab0\\u0abe\\u0aa4\"===t?e<4?e:e+12:\"\\u0ab8\\u0ab5\\u0abe\\u0ab0\"===t?e:\"\\u0aac\\u0aaa\\u0acb\\u0ab0\"===t?e>=10?e:e+12:\"\\u0ab8\\u0abe\\u0a82\\u0a9c\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0ab0\\u0abe\\u0aa4\":e<10?\"\\u0ab8\\u0ab5\\u0abe\\u0ab0\":e<17?\"\\u0aac\\u0aaa\\u0acb\\u0ab0\":e<20?\"\\u0ab8\\u0abe\\u0a82\\u0a9c\":\"\\u0ab0\\u0abe\\u0aa4\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"4dOw\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ie\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"6+QB\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"6B0Y\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u17e1\",2:\"\\u17e2\",3:\"\\u17e3\",4:\"\\u17e4\",5:\"\\u17e5\",6:\"\\u17e6\",7:\"\\u17e7\",8:\"\\u17e8\",9:\"\\u17e9\",0:\"\\u17e0\"},n={\"\\u17e1\":\"1\",\"\\u17e2\":\"2\",\"\\u17e3\":\"3\",\"\\u17e4\":\"4\",\"\\u17e5\":\"5\",\"\\u17e6\":\"6\",\"\\u17e7\":\"7\",\"\\u17e8\":\"8\",\"\\u17e9\":\"9\",\"\\u17e0\":\"0\"};e.defineLocale(\"km\",{months:\"\\u1798\\u1780\\u179a\\u17b6_\\u1780\\u17bb\\u1798\\u17d2\\u1797\\u17c8_\\u1798\\u17b8\\u1793\\u17b6_\\u1798\\u17c1\\u179f\\u17b6_\\u17a7\\u179f\\u1797\\u17b6_\\u1798\\u17b7\\u1790\\u17bb\\u1793\\u17b6_\\u1780\\u1780\\u17d2\\u1780\\u178a\\u17b6_\\u179f\\u17b8\\u17a0\\u17b6_\\u1780\\u1789\\u17d2\\u1789\\u17b6_\\u178f\\u17bb\\u179b\\u17b6_\\u179c\\u17b7\\u1785\\u17d2\\u1786\\u17b7\\u1780\\u17b6_\\u1792\\u17d2\\u1793\\u17bc\".split(\"_\"),monthsShort:\"\\u1798\\u1780\\u179a\\u17b6_\\u1780\\u17bb\\u1798\\u17d2\\u1797\\u17c8_\\u1798\\u17b8\\u1793\\u17b6_\\u1798\\u17c1\\u179f\\u17b6_\\u17a7\\u179f\\u1797\\u17b6_\\u1798\\u17b7\\u1790\\u17bb\\u1793\\u17b6_\\u1780\\u1780\\u17d2\\u1780\\u178a\\u17b6_\\u179f\\u17b8\\u17a0\\u17b6_\\u1780\\u1789\\u17d2\\u1789\\u17b6_\\u178f\\u17bb\\u179b\\u17b6_\\u179c\\u17b7\\u1785\\u17d2\\u1786\\u17b7\\u1780\\u17b6_\\u1792\\u17d2\\u1793\\u17bc\".split(\"_\"),weekdays:\"\\u17a2\\u17b6\\u1791\\u17b7\\u178f\\u17d2\\u1799_\\u1785\\u17d0\\u1793\\u17d2\\u1791_\\u17a2\\u1784\\u17d2\\u1782\\u17b6\\u179a_\\u1796\\u17bb\\u1792_\\u1796\\u17d2\\u179a\\u17a0\\u179f\\u17d2\\u1794\\u178f\\u17b7\\u17cd_\\u179f\\u17bb\\u1780\\u17d2\\u179a_\\u179f\\u17c5\\u179a\\u17cd\".split(\"_\"),weekdaysShort:\"\\u17a2\\u17b6_\\u1785_\\u17a2_\\u1796_\\u1796\\u17d2\\u179a_\\u179f\\u17bb_\\u179f\".split(\"_\"),weekdaysMin:\"\\u17a2\\u17b6_\\u1785_\\u17a2_\\u1796_\\u1796\\u17d2\\u179a_\\u179f\\u17bb_\\u179f\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u1796\\u17d2\\u179a\\u17b9\\u1780|\\u179b\\u17d2\\u1784\\u17b6\\u1785/,isPM:function(e){return\"\\u179b\\u17d2\\u1784\\u17b6\\u1785\"===e},meridiem:function(e,t,n){return e<12?\"\\u1796\\u17d2\\u179a\\u17b9\\u1780\":\"\\u179b\\u17d2\\u1784\\u17b6\\u1785\"},calendar:{sameDay:\"[\\u1790\\u17d2\\u1784\\u17c3\\u1793\\u17c1\\u17c7 \\u1798\\u17c9\\u17c4\\u1784] LT\",nextDay:\"[\\u179f\\u17d2\\u17a2\\u17c2\\u1780 \\u1798\\u17c9\\u17c4\\u1784] LT\",nextWeek:\"dddd [\\u1798\\u17c9\\u17c4\\u1784] LT\",lastDay:\"[\\u1798\\u17d2\\u179f\\u17b7\\u179b\\u1798\\u17b7\\u1789 \\u1798\\u17c9\\u17c4\\u1784] LT\",lastWeek:\"dddd [\\u179f\\u1794\\u17d2\\u178f\\u17b6\\u17a0\\u17cd\\u1798\\u17bb\\u1793] [\\u1798\\u17c9\\u17c4\\u1784] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u1791\\u17c0\\u178f\",past:\"%s\\u1798\\u17bb\\u1793\",s:\"\\u1794\\u17c9\\u17bb\\u1793\\u17d2\\u1798\\u17b6\\u1793\\u179c\\u17b7\\u1793\\u17b6\\u1791\\u17b8\",ss:\"%d \\u179c\\u17b7\\u1793\\u17b6\\u1791\\u17b8\",m:\"\\u1798\\u17bd\\u1799\\u1793\\u17b6\\u1791\\u17b8\",mm:\"%d \\u1793\\u17b6\\u1791\\u17b8\",h:\"\\u1798\\u17bd\\u1799\\u1798\\u17c9\\u17c4\\u1784\",hh:\"%d \\u1798\\u17c9\\u17c4\\u1784\",d:\"\\u1798\\u17bd\\u1799\\u1790\\u17d2\\u1784\\u17c3\",dd:\"%d \\u1790\\u17d2\\u1784\\u17c3\",M:\"\\u1798\\u17bd\\u1799\\u1781\\u17c2\",MM:\"%d \\u1781\\u17c2\",y:\"\\u1798\\u17bd\\u1799\\u1786\\u17d2\\u1793\\u17b6\\u17c6\",yy:\"%d \\u1786\\u17d2\\u1793\\u17b6\\u17c6\"},dayOfMonthOrdinalParse:/\\u1791\\u17b8\\d{1,2}/,ordinal:\"\\u1791\\u17b8%d\",preparse:function(e){return e.replace(/[\\u17e1\\u17e2\\u17e3\\u17e4\\u17e5\\u17e6\\u17e7\\u17e8\\u17e9\\u17e0]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"7BjC\":function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={s:[\"m\\xf5ne sekundi\",\"m\\xf5ni sekund\",\"paar sekundit\"],ss:[e+\"sekundi\",e+\"sekundit\"],m:[\"\\xfche minuti\",\"\\xfcks minut\"],mm:[e+\" minuti\",e+\" minutit\"],h:[\"\\xfche tunni\",\"tund aega\",\"\\xfcks tund\"],hh:[e+\" tunni\",e+\" tundi\"],d:[\"\\xfche p\\xe4eva\",\"\\xfcks p\\xe4ev\"],M:[\"kuu aja\",\"kuu aega\",\"\\xfcks kuu\"],MM:[e+\" kuu\",e+\" kuud\"],y:[\"\\xfche aasta\",\"aasta\",\"\\xfcks aasta\"],yy:[e+\" aasta\",e+\" aastat\"]};return t?i[n][2]?i[n][2]:i[n][1]:r?i[n][0]:i[n][1]}e.defineLocale(\"et\",{months:\"jaanuar_veebruar_m\\xe4rts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember\".split(\"_\"),monthsShort:\"jaan_veebr_m\\xe4rts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets\".split(\"_\"),weekdays:\"p\\xfchap\\xe4ev_esmasp\\xe4ev_teisip\\xe4ev_kolmap\\xe4ev_neljap\\xe4ev_reede_laup\\xe4ev\".split(\"_\"),weekdaysShort:\"P_E_T_K_N_R_L\".split(\"_\"),weekdaysMin:\"P_E_T_K_N_R_L\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[T\\xe4na,] LT\",nextDay:\"[Homme,] LT\",nextWeek:\"[J\\xe4rgmine] dddd LT\",lastDay:\"[Eile,] LT\",lastWeek:\"[Eelmine] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s p\\xe4rast\",past:\"%s tagasi\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:\"%d p\\xe4eva\",M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"7aV9\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"si\",{months:\"\\u0da2\\u0db1\\u0dc0\\u0dcf\\u0dbb\\u0dd2_\\u0db4\\u0dd9\\u0db6\\u0dbb\\u0dc0\\u0dcf\\u0dbb\\u0dd2_\\u0db8\\u0dcf\\u0dbb\\u0dca\\u0dad\\u0dd4_\\u0d85\\u0db4\\u0dca\\u200d\\u0dbb\\u0dda\\u0dbd\\u0dca_\\u0db8\\u0dd0\\u0dba\\u0dd2_\\u0da2\\u0dd6\\u0db1\\u0dd2_\\u0da2\\u0dd6\\u0dbd\\u0dd2_\\u0d85\\u0d9c\\u0ddd\\u0dc3\\u0dca\\u0dad\\u0dd4_\\u0dc3\\u0dd0\\u0db4\\u0dca\\u0dad\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca_\\u0d94\\u0d9a\\u0dca\\u0dad\\u0ddd\\u0db6\\u0dbb\\u0dca_\\u0db1\\u0ddc\\u0dc0\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca_\\u0daf\\u0dd9\\u0dc3\\u0dd0\\u0db8\\u0dca\\u0db6\\u0dbb\\u0dca\".split(\"_\"),monthsShort:\"\\u0da2\\u0db1_\\u0db4\\u0dd9\\u0db6_\\u0db8\\u0dcf\\u0dbb\\u0dca_\\u0d85\\u0db4\\u0dca_\\u0db8\\u0dd0\\u0dba\\u0dd2_\\u0da2\\u0dd6\\u0db1\\u0dd2_\\u0da2\\u0dd6\\u0dbd\\u0dd2_\\u0d85\\u0d9c\\u0ddd_\\u0dc3\\u0dd0\\u0db4\\u0dca_\\u0d94\\u0d9a\\u0dca_\\u0db1\\u0ddc\\u0dc0\\u0dd0_\\u0daf\\u0dd9\\u0dc3\\u0dd0\".split(\"_\"),weekdays:\"\\u0d89\\u0dbb\\u0dd2\\u0daf\\u0dcf_\\u0dc3\\u0db3\\u0dd4\\u0daf\\u0dcf_\\u0d85\\u0d9f\\u0dc4\\u0dbb\\u0dd4\\u0dc0\\u0dcf\\u0daf\\u0dcf_\\u0db6\\u0daf\\u0dcf\\u0daf\\u0dcf_\\u0db6\\u0dca\\u200d\\u0dbb\\u0dc4\\u0dc3\\u0dca\\u0db4\\u0dad\\u0dd2\\u0db1\\u0dca\\u0daf\\u0dcf_\\u0dc3\\u0dd2\\u0d9a\\u0dd4\\u0dbb\\u0dcf\\u0daf\\u0dcf_\\u0dc3\\u0dd9\\u0db1\\u0dc3\\u0dd4\\u0dbb\\u0dcf\\u0daf\\u0dcf\".split(\"_\"),weekdaysShort:\"\\u0d89\\u0dbb\\u0dd2_\\u0dc3\\u0db3\\u0dd4_\\u0d85\\u0d9f_\\u0db6\\u0daf\\u0dcf_\\u0db6\\u0dca\\u200d\\u0dbb\\u0dc4_\\u0dc3\\u0dd2\\u0d9a\\u0dd4_\\u0dc3\\u0dd9\\u0db1\".split(\"_\"),weekdaysMin:\"\\u0d89_\\u0dc3_\\u0d85_\\u0db6_\\u0db6\\u0dca\\u200d\\u0dbb_\\u0dc3\\u0dd2_\\u0dc3\\u0dd9\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"a h:mm\",LTS:\"a h:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY MMMM D\",LLL:\"YYYY MMMM D, a h:mm\",LLLL:\"YYYY MMMM D [\\u0dc0\\u0dd0\\u0db1\\u0dd2] dddd, a h:mm:ss\"},calendar:{sameDay:\"[\\u0d85\\u0daf] LT[\\u0da7]\",nextDay:\"[\\u0dc4\\u0dd9\\u0da7] LT[\\u0da7]\",nextWeek:\"dddd LT[\\u0da7]\",lastDay:\"[\\u0d8a\\u0dba\\u0dda] LT[\\u0da7]\",lastWeek:\"[\\u0db4\\u0dc3\\u0dd4\\u0d9c\\u0dd2\\u0dba] dddd LT[\\u0da7]\",sameElse:\"L\"},relativeTime:{future:\"%s\\u0d9a\\u0dd2\\u0db1\\u0dca\",past:\"%s\\u0d9a\\u0da7 \\u0db4\\u0dd9\\u0dbb\",s:\"\\u0dad\\u0dad\\u0dca\\u0db4\\u0dbb \\u0d9a\\u0dd2\\u0dc4\\u0dd2\\u0db4\\u0dba\",ss:\"\\u0dad\\u0dad\\u0dca\\u0db4\\u0dbb %d\",m:\"\\u0db8\\u0dd2\\u0db1\\u0dd2\\u0dad\\u0dca\\u0dad\\u0dd4\\u0dc0\",mm:\"\\u0db8\\u0dd2\\u0db1\\u0dd2\\u0dad\\u0dca\\u0dad\\u0dd4 %d\",h:\"\\u0db4\\u0dd0\\u0dba\",hh:\"\\u0db4\\u0dd0\\u0dba %d\",d:\"\\u0daf\\u0dd2\\u0db1\\u0dba\",dd:\"\\u0daf\\u0dd2\\u0db1 %d\",M:\"\\u0db8\\u0dcf\\u0dc3\\u0dba\",MM:\"\\u0db8\\u0dcf\\u0dc3 %d\",y:\"\\u0dc0\\u0dc3\\u0dbb\",yy:\"\\u0dc0\\u0dc3\\u0dbb %d\"},dayOfMonthOrdinalParse:/\\d{1,2} \\u0dc0\\u0dd0\\u0db1\\u0dd2/,ordinal:function(e){return e+\" \\u0dc0\\u0dd0\\u0db1\\u0dd2\"},meridiemParse:/\\u0db4\\u0dd9\\u0dbb \\u0dc0\\u0dbb\\u0dd4|\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4|\\u0db4\\u0dd9.\\u0dc0|\\u0db4.\\u0dc0./,isPM:function(e){return\"\\u0db4.\\u0dc0.\"===e||\"\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4\"===e},meridiem:function(e,t,n){return e>11?n?\"\\u0db4.\\u0dc0.\":\"\\u0db4\\u0dc3\\u0dca \\u0dc0\\u0dbb\\u0dd4\":n?\"\\u0db4\\u0dd9.\\u0dc0.\":\"\\u0db4\\u0dd9\\u0dbb \\u0dc0\\u0dbb\\u0dd4\"}})}(n(\"wd/R\"))},\"8/+R\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0a67\",2:\"\\u0a68\",3:\"\\u0a69\",4:\"\\u0a6a\",5:\"\\u0a6b\",6:\"\\u0a6c\",7:\"\\u0a6d\",8:\"\\u0a6e\",9:\"\\u0a6f\",0:\"\\u0a66\"},n={\"\\u0a67\":\"1\",\"\\u0a68\":\"2\",\"\\u0a69\":\"3\",\"\\u0a6a\":\"4\",\"\\u0a6b\":\"5\",\"\\u0a6c\":\"6\",\"\\u0a6d\":\"7\",\"\\u0a6e\":\"8\",\"\\u0a6f\":\"9\",\"\\u0a66\":\"0\"};e.defineLocale(\"pa-in\",{months:\"\\u0a1c\\u0a28\\u0a35\\u0a30\\u0a40_\\u0a2b\\u0a3c\\u0a30\\u0a35\\u0a30\\u0a40_\\u0a2e\\u0a3e\\u0a30\\u0a1a_\\u0a05\\u0a2a\\u0a4d\\u0a30\\u0a48\\u0a32_\\u0a2e\\u0a08_\\u0a1c\\u0a42\\u0a28_\\u0a1c\\u0a41\\u0a32\\u0a3e\\u0a08_\\u0a05\\u0a17\\u0a38\\u0a24_\\u0a38\\u0a24\\u0a70\\u0a2c\\u0a30_\\u0a05\\u0a15\\u0a24\\u0a42\\u0a2c\\u0a30_\\u0a28\\u0a35\\u0a70\\u0a2c\\u0a30_\\u0a26\\u0a38\\u0a70\\u0a2c\\u0a30\".split(\"_\"),monthsShort:\"\\u0a1c\\u0a28\\u0a35\\u0a30\\u0a40_\\u0a2b\\u0a3c\\u0a30\\u0a35\\u0a30\\u0a40_\\u0a2e\\u0a3e\\u0a30\\u0a1a_\\u0a05\\u0a2a\\u0a4d\\u0a30\\u0a48\\u0a32_\\u0a2e\\u0a08_\\u0a1c\\u0a42\\u0a28_\\u0a1c\\u0a41\\u0a32\\u0a3e\\u0a08_\\u0a05\\u0a17\\u0a38\\u0a24_\\u0a38\\u0a24\\u0a70\\u0a2c\\u0a30_\\u0a05\\u0a15\\u0a24\\u0a42\\u0a2c\\u0a30_\\u0a28\\u0a35\\u0a70\\u0a2c\\u0a30_\\u0a26\\u0a38\\u0a70\\u0a2c\\u0a30\".split(\"_\"),weekdays:\"\\u0a10\\u0a24\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a4b\\u0a2e\\u0a35\\u0a3e\\u0a30_\\u0a2e\\u0a70\\u0a17\\u0a32\\u0a35\\u0a3e\\u0a30_\\u0a2c\\u0a41\\u0a27\\u0a35\\u0a3e\\u0a30_\\u0a35\\u0a40\\u0a30\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a71\\u0a15\\u0a30\\u0a35\\u0a3e\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\\u0a1a\\u0a30\\u0a35\\u0a3e\\u0a30\".split(\"_\"),weekdaysShort:\"\\u0a10\\u0a24_\\u0a38\\u0a4b\\u0a2e_\\u0a2e\\u0a70\\u0a17\\u0a32_\\u0a2c\\u0a41\\u0a27_\\u0a35\\u0a40\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a15\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\".split(\"_\"),weekdaysMin:\"\\u0a10\\u0a24_\\u0a38\\u0a4b\\u0a2e_\\u0a2e\\u0a70\\u0a17\\u0a32_\\u0a2c\\u0a41\\u0a27_\\u0a35\\u0a40\\u0a30_\\u0a38\\u0a3c\\u0a41\\u0a15\\u0a30_\\u0a38\\u0a3c\\u0a28\\u0a40\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0a35\\u0a1c\\u0a47\",LTS:\"A h:mm:ss \\u0a35\\u0a1c\\u0a47\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0a35\\u0a1c\\u0a47\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0a35\\u0a1c\\u0a47\"},calendar:{sameDay:\"[\\u0a05\\u0a1c] LT\",nextDay:\"[\\u0a15\\u0a32] LT\",nextWeek:\"[\\u0a05\\u0a17\\u0a32\\u0a3e] dddd, LT\",lastDay:\"[\\u0a15\\u0a32] LT\",lastWeek:\"[\\u0a2a\\u0a3f\\u0a1b\\u0a32\\u0a47] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0a35\\u0a3f\\u0a71\\u0a1a\",past:\"%s \\u0a2a\\u0a3f\\u0a1b\\u0a32\\u0a47\",s:\"\\u0a15\\u0a41\\u0a1d \\u0a38\\u0a15\\u0a3f\\u0a70\\u0a1f\",ss:\"%d \\u0a38\\u0a15\\u0a3f\\u0a70\\u0a1f\",m:\"\\u0a07\\u0a15 \\u0a2e\\u0a3f\\u0a70\\u0a1f\",mm:\"%d \\u0a2e\\u0a3f\\u0a70\\u0a1f\",h:\"\\u0a07\\u0a71\\u0a15 \\u0a18\\u0a70\\u0a1f\\u0a3e\",hh:\"%d \\u0a18\\u0a70\\u0a1f\\u0a47\",d:\"\\u0a07\\u0a71\\u0a15 \\u0a26\\u0a3f\\u0a28\",dd:\"%d \\u0a26\\u0a3f\\u0a28\",M:\"\\u0a07\\u0a71\\u0a15 \\u0a2e\\u0a39\\u0a40\\u0a28\\u0a3e\",MM:\"%d \\u0a2e\\u0a39\\u0a40\\u0a28\\u0a47\",y:\"\\u0a07\\u0a71\\u0a15 \\u0a38\\u0a3e\\u0a32\",yy:\"%d \\u0a38\\u0a3e\\u0a32\"},preparse:function(e){return e.replace(/[\\u0a67\\u0a68\\u0a69\\u0a6a\\u0a6b\\u0a6c\\u0a6d\\u0a6e\\u0a6f\\u0a66]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0a30\\u0a3e\\u0a24|\\u0a38\\u0a35\\u0a47\\u0a30|\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30|\\u0a38\\u0a3c\\u0a3e\\u0a2e/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0a30\\u0a3e\\u0a24\"===t?e<4?e:e+12:\"\\u0a38\\u0a35\\u0a47\\u0a30\"===t?e:\"\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30\"===t?e>=10?e:e+12:\"\\u0a38\\u0a3c\\u0a3e\\u0a2e\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0a30\\u0a3e\\u0a24\":e<10?\"\\u0a38\\u0a35\\u0a47\\u0a30\":e<17?\"\\u0a26\\u0a41\\u0a2a\\u0a39\\u0a3f\\u0a30\":e<20?\"\\u0a38\\u0a3c\\u0a3e\\u0a2e\":\"\\u0a30\\u0a3e\\u0a24\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},\"8mBD\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"pt\",{months:\"Janeiro_Fevereiro_Mar\\xe7o_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingo_Segunda-feira_Ter\\xe7a-feira_Quarta-feira_Quinta-feira_Sexta-feira_S\\xe1bado\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ter_Qua_Qui_Sex_S\\xe1b\".split(\"_\"),weekdaysMin:\"Do_2\\xaa_3\\xaa_4\\xaa_5\\xaa_6\\xaa_S\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY HH:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY HH:mm\"},calendar:{sameDay:\"[Hoje \\xe0s] LT\",nextDay:\"[Amanh\\xe3 \\xe0s] LT\",nextWeek:\"dddd [\\xe0s] LT\",lastDay:\"[Ontem \\xe0s] LT\",lastWeek:function(){return 0===this.day()||6===this.day()?\"[\\xdaltimo] dddd [\\xe0s] LT\":\"[\\xdaltima] dddd [\\xe0s] LT\"},sameElse:\"L\"},relativeTime:{future:\"em %s\",past:\"h\\xe1 %s\",s:\"segundos\",ss:\"%d segundos\",m:\"um minuto\",mm:\"%d minutos\",h:\"uma hora\",hh:\"%d horas\",d:\"um dia\",dd:\"%d dias\",M:\"um m\\xeas\",MM:\"%d meses\",y:\"um ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"9rRi\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"gd\",{months:[\"Am Faoilleach\",\"An Gearran\",\"Am M\\xe0rt\",\"An Giblean\",\"An C\\xe8itean\",\"An t-\\xd2gmhios\",\"An t-Iuchar\",\"An L\\xf9nastal\",\"An t-Sultain\",\"An D\\xe0mhair\",\"An t-Samhain\",\"An D\\xf9bhlachd\"],monthsShort:[\"Faoi\",\"Gear\",\"M\\xe0rt\",\"Gibl\",\"C\\xe8it\",\"\\xd2gmh\",\"Iuch\",\"L\\xf9n\",\"Sult\",\"D\\xe0mh\",\"Samh\",\"D\\xf9bh\"],monthsParseExact:!0,weekdays:[\"Did\\xf2mhnaich\",\"Diluain\",\"Dim\\xe0irt\",\"Diciadain\",\"Diardaoin\",\"Dihaoine\",\"Disathairne\"],weekdaysShort:[\"Did\",\"Dil\",\"Dim\",\"Dic\",\"Dia\",\"Dih\",\"Dis\"],weekdaysMin:[\"D\\xf2\",\"Lu\",\"M\\xe0\",\"Ci\",\"Ar\",\"Ha\",\"Sa\"],longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[An-diugh aig] LT\",nextDay:\"[A-m\\xe0ireach aig] LT\",nextWeek:\"dddd [aig] LT\",lastDay:\"[An-d\\xe8 aig] LT\",lastWeek:\"dddd [seo chaidh] [aig] LT\",sameElse:\"L\"},relativeTime:{future:\"ann an %s\",past:\"bho chionn %s\",s:\"beagan diogan\",ss:\"%d diogan\",m:\"mionaid\",mm:\"%d mionaidean\",h:\"uair\",hh:\"%d uairean\",d:\"latha\",dd:\"%d latha\",M:\"m\\xecos\",MM:\"%d m\\xecosan\",y:\"bliadhna\",yy:\"%d bliadhna\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"A+xa\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cv\",{months:\"\\u043a\\u04d1\\u0440\\u043b\\u0430\\u0447_\\u043d\\u0430\\u0440\\u04d1\\u0441_\\u043f\\u0443\\u0448_\\u0430\\u043a\\u0430_\\u043c\\u0430\\u0439_\\u04ab\\u04d7\\u0440\\u0442\\u043c\\u0435_\\u0443\\u0442\\u04d1_\\u04ab\\u0443\\u0440\\u043b\\u0430_\\u0430\\u0432\\u04d1\\u043d_\\u044e\\u043f\\u0430_\\u0447\\u04f3\\u043a_\\u0440\\u0430\\u0448\\u0442\\u0430\\u0432\".split(\"_\"),monthsShort:\"\\u043a\\u04d1\\u0440_\\u043d\\u0430\\u0440_\\u043f\\u0443\\u0448_\\u0430\\u043a\\u0430_\\u043c\\u0430\\u0439_\\u04ab\\u04d7\\u0440_\\u0443\\u0442\\u04d1_\\u04ab\\u0443\\u0440_\\u0430\\u0432\\u043d_\\u044e\\u043f\\u0430_\\u0447\\u04f3\\u043a_\\u0440\\u0430\\u0448\".split(\"_\"),weekdays:\"\\u0432\\u044b\\u0440\\u0441\\u0430\\u0440\\u043d\\u0438\\u043a\\u0443\\u043d_\\u0442\\u0443\\u043d\\u0442\\u0438\\u043a\\u0443\\u043d_\\u044b\\u0442\\u043b\\u0430\\u0440\\u0438\\u043a\\u0443\\u043d_\\u044e\\u043d\\u043a\\u0443\\u043d_\\u043a\\u04d7\\u04ab\\u043d\\u0435\\u0440\\u043d\\u0438\\u043a\\u0443\\u043d_\\u044d\\u0440\\u043d\\u0435\\u043a\\u0443\\u043d_\\u0448\\u04d1\\u043c\\u0430\\u0442\\u043a\\u0443\\u043d\".split(\"_\"),weekdaysShort:\"\\u0432\\u044b\\u0440_\\u0442\\u0443\\u043d_\\u044b\\u0442\\u043b_\\u044e\\u043d_\\u043a\\u04d7\\u04ab_\\u044d\\u0440\\u043d_\\u0448\\u04d1\\u043c\".split(\"_\"),weekdaysMin:\"\\u0432\\u0440_\\u0442\\u043d_\\u044b\\u0442_\\u044e\\u043d_\\u043a\\u04ab_\\u044d\\u0440_\\u0448\\u043c\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7]\",LLL:\"YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7], HH:mm\",LLLL:\"dddd, YYYY [\\u04ab\\u0443\\u043b\\u0445\\u0438] MMMM [\\u0443\\u0439\\u04d1\\u0445\\u04d7\\u043d] D[-\\u043c\\u04d7\\u0448\\u04d7], HH:mm\"},calendar:{sameDay:\"[\\u041f\\u0430\\u044f\\u043d] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",nextDay:\"[\\u042b\\u0440\\u0430\\u043d] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",lastDay:\"[\\u04d6\\u043d\\u0435\\u0440] LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",nextWeek:\"[\\u04aa\\u0438\\u0442\\u0435\\u0441] dddd LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",lastWeek:\"[\\u0418\\u0440\\u0442\\u043d\\u04d7] dddd LT [\\u0441\\u0435\\u0445\\u0435\\u0442\\u0440\\u0435]\",sameElse:\"L\"},relativeTime:{future:function(e){return e+(/\\u0441\\u0435\\u0445\\u0435\\u0442$/i.exec(e)?\"\\u0440\\u0435\\u043d\":/\\u04ab\\u0443\\u043b$/i.exec(e)?\"\\u0442\\u0430\\u043d\":\"\\u0440\\u0430\\u043d\")},past:\"%s \\u043a\\u0430\\u044f\\u043b\\u043b\\u0430\",s:\"\\u043f\\u04d7\\u0440-\\u0438\\u043a \\u04ab\\u0435\\u043a\\u043a\\u0443\\u043d\\u0442\",ss:\"%d \\u04ab\\u0435\\u043a\\u043a\\u0443\\u043d\\u0442\",m:\"\\u043f\\u04d7\\u0440 \\u043c\\u0438\\u043d\\u0443\\u0442\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\",h:\"\\u043f\\u04d7\\u0440 \\u0441\\u0435\\u0445\\u0435\\u0442\",hh:\"%d \\u0441\\u0435\\u0445\\u0435\\u0442\",d:\"\\u043f\\u04d7\\u0440 \\u043a\\u0443\\u043d\",dd:\"%d \\u043a\\u0443\\u043d\",M:\"\\u043f\\u04d7\\u0440 \\u0443\\u0439\\u04d1\\u0445\",MM:\"%d \\u0443\\u0439\\u04d1\\u0445\",y:\"\\u043f\\u04d7\\u0440 \\u04ab\\u0443\\u043b\",yy:\"%d \\u04ab\\u0443\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-\\u043c\\u04d7\\u0448/,ordinal:\"%d-\\u043c\\u04d7\\u0448\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},AQ68:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz-latn\",{months:\"Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr\".split(\"_\"),monthsShort:\"Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek\".split(\"_\"),weekdays:\"Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba\".split(\"_\"),weekdaysShort:\"Yak_Dush_Sesh_Chor_Pay_Jum_Shan\".split(\"_\"),weekdaysMin:\"Ya_Du_Se_Cho_Pa_Ju_Sha\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[Bugun soat] LT [da]\",nextDay:\"[Ertaga] LT [da]\",nextWeek:\"dddd [kuni soat] LT [da]\",lastDay:\"[Kecha soat] LT [da]\",lastWeek:\"[O'tgan] dddd [kuni soat] LT [da]\",sameElse:\"L\"},relativeTime:{future:\"Yaqin %s ichida\",past:\"Bir necha %s oldin\",s:\"soniya\",ss:\"%d soniya\",m:\"bir daqiqa\",mm:\"%d daqiqa\",h:\"bir soat\",hh:\"%d soat\",d:\"bir kun\",dd:\"%d kun\",M:\"bir oy\",MM:\"%d oy\",y:\"bir yil\",yy:\"%d yil\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},AvvY:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ml\",{months:\"\\u0d1c\\u0d28\\u0d41\\u0d35\\u0d30\\u0d3f_\\u0d2b\\u0d46\\u0d2c\\u0d4d\\u0d30\\u0d41\\u0d35\\u0d30\\u0d3f_\\u0d2e\\u0d3e\\u0d7c\\u0d1a\\u0d4d\\u0d1a\\u0d4d_\\u0d0f\\u0d2a\\u0d4d\\u0d30\\u0d3f\\u0d7d_\\u0d2e\\u0d47\\u0d2f\\u0d4d_\\u0d1c\\u0d42\\u0d7a_\\u0d1c\\u0d42\\u0d32\\u0d48_\\u0d13\\u0d17\\u0d38\\u0d4d\\u0d31\\u0d4d\\u0d31\\u0d4d_\\u0d38\\u0d46\\u0d2a\\u0d4d\\u0d31\\u0d4d\\u0d31\\u0d02\\u0d2c\\u0d7c_\\u0d12\\u0d15\\u0d4d\\u0d1f\\u0d4b\\u0d2c\\u0d7c_\\u0d28\\u0d35\\u0d02\\u0d2c\\u0d7c_\\u0d21\\u0d3f\\u0d38\\u0d02\\u0d2c\\u0d7c\".split(\"_\"),monthsShort:\"\\u0d1c\\u0d28\\u0d41._\\u0d2b\\u0d46\\u0d2c\\u0d4d\\u0d30\\u0d41._\\u0d2e\\u0d3e\\u0d7c._\\u0d0f\\u0d2a\\u0d4d\\u0d30\\u0d3f._\\u0d2e\\u0d47\\u0d2f\\u0d4d_\\u0d1c\\u0d42\\u0d7a_\\u0d1c\\u0d42\\u0d32\\u0d48._\\u0d13\\u0d17._\\u0d38\\u0d46\\u0d2a\\u0d4d\\u0d31\\u0d4d\\u0d31._\\u0d12\\u0d15\\u0d4d\\u0d1f\\u0d4b._\\u0d28\\u0d35\\u0d02._\\u0d21\\u0d3f\\u0d38\\u0d02.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0d1e\\u0d3e\\u0d2f\\u0d31\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d24\\u0d3f\\u0d19\\u0d4d\\u0d15\\u0d33\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d1a\\u0d4a\\u0d35\\u0d4d\\u0d35\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d2c\\u0d41\\u0d27\\u0d28\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d35\\u0d4d\\u0d2f\\u0d3e\\u0d34\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d35\\u0d46\\u0d33\\u0d4d\\u0d33\\u0d3f\\u0d2f\\u0d3e\\u0d34\\u0d4d\\u0d1a_\\u0d36\\u0d28\\u0d3f\\u0d2f\\u0d3e\\u0d34\\u0d4d\\u0d1a\".split(\"_\"),weekdaysShort:\"\\u0d1e\\u0d3e\\u0d2f\\u0d7c_\\u0d24\\u0d3f\\u0d19\\u0d4d\\u0d15\\u0d7e_\\u0d1a\\u0d4a\\u0d35\\u0d4d\\u0d35_\\u0d2c\\u0d41\\u0d27\\u0d7b_\\u0d35\\u0d4d\\u0d2f\\u0d3e\\u0d34\\u0d02_\\u0d35\\u0d46\\u0d33\\u0d4d\\u0d33\\u0d3f_\\u0d36\\u0d28\\u0d3f\".split(\"_\"),weekdaysMin:\"\\u0d1e\\u0d3e_\\u0d24\\u0d3f_\\u0d1a\\u0d4a_\\u0d2c\\u0d41_\\u0d35\\u0d4d\\u0d2f\\u0d3e_\\u0d35\\u0d46_\\u0d36\".split(\"_\"),longDateFormat:{LT:\"A h:mm -\\u0d28\\u0d41\",LTS:\"A h:mm:ss -\\u0d28\\u0d41\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm -\\u0d28\\u0d41\",LLLL:\"dddd, D MMMM YYYY, A h:mm -\\u0d28\\u0d41\"},calendar:{sameDay:\"[\\u0d07\\u0d28\\u0d4d\\u0d28\\u0d4d] LT\",nextDay:\"[\\u0d28\\u0d3e\\u0d33\\u0d46] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0d07\\u0d28\\u0d4d\\u0d28\\u0d32\\u0d46] LT\",lastWeek:\"[\\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\",past:\"%s \\u0d2e\\u0d41\\u0d7b\\u0d2a\\u0d4d\",s:\"\\u0d05\\u0d7d\\u0d2a \\u0d28\\u0d3f\\u0d2e\\u0d3f\\u0d37\\u0d19\\u0d4d\\u0d19\\u0d7e\",ss:\"%d \\u0d38\\u0d46\\u0d15\\u0d4d\\u0d15\\u0d7b\\u0d21\\u0d4d\",m:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d3f\\u0d28\\u0d3f\\u0d31\\u0d4d\\u0d31\\u0d4d\",mm:\"%d \\u0d2e\\u0d3f\\u0d28\\u0d3f\\u0d31\\u0d4d\\u0d31\\u0d4d\",h:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d23\\u0d3f\\u0d15\\u0d4d\\u0d15\\u0d42\\u0d7c\",hh:\"%d \\u0d2e\\u0d23\\u0d3f\\u0d15\\u0d4d\\u0d15\\u0d42\\u0d7c\",d:\"\\u0d12\\u0d30\\u0d41 \\u0d26\\u0d3f\\u0d35\\u0d38\\u0d02\",dd:\"%d \\u0d26\\u0d3f\\u0d35\\u0d38\\u0d02\",M:\"\\u0d12\\u0d30\\u0d41 \\u0d2e\\u0d3e\\u0d38\\u0d02\",MM:\"%d \\u0d2e\\u0d3e\\u0d38\\u0d02\",y:\"\\u0d12\\u0d30\\u0d41 \\u0d35\\u0d7c\\u0d37\\u0d02\",yy:\"%d \\u0d35\\u0d7c\\u0d37\\u0d02\"},meridiemParse:/\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f|\\u0d30\\u0d3e\\u0d35\\u0d3f\\u0d32\\u0d46|\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d|\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02|\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f/i,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\"===t&&e>=4||\"\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\"===t||\"\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\":e<12?\"\\u0d30\\u0d3e\\u0d35\\u0d3f\\u0d32\\u0d46\":e<17?\"\\u0d09\\u0d1a\\u0d4d\\u0d1a \\u0d15\\u0d34\\u0d3f\\u0d1e\\u0d4d\\u0d1e\\u0d4d\":e<20?\"\\u0d35\\u0d48\\u0d15\\u0d41\\u0d28\\u0d4d\\u0d28\\u0d47\\u0d30\\u0d02\":\"\\u0d30\\u0d3e\\u0d24\\u0d4d\\u0d30\\u0d3f\"}})}(n(\"wd/R\"))},B55N:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ja\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u65e5\\u66dc\\u65e5_\\u6708\\u66dc\\u65e5_\\u706b\\u66dc\\u65e5_\\u6c34\\u66dc\\u65e5_\\u6728\\u66dc\\u65e5_\\u91d1\\u66dc\\u65e5_\\u571f\\u66dc\\u65e5\".split(\"_\"),weekdaysShort:\"\\u65e5_\\u6708_\\u706b_\\u6c34_\\u6728_\\u91d1_\\u571f\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u6708_\\u706b_\\u6c34_\\u6728_\\u91d1_\\u571f\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5 dddd HH:mm\",l:\"YYYY/MM/DD\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5(ddd) HH:mm\"},meridiemParse:/\\u5348\\u524d|\\u5348\\u5f8c/i,isPM:function(e){return\"\\u5348\\u5f8c\"===e},meridiem:function(e,t,n){return e<12?\"\\u5348\\u524d\":\"\\u5348\\u5f8c\"},calendar:{sameDay:\"[\\u4eca\\u65e5] LT\",nextDay:\"[\\u660e\\u65e5] LT\",nextWeek:function(e){return e.week()12?e:e+12:\"sanje\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"rati\":e<12?\"sokalli\":e<16?\"donparam\":e<20?\"sanje\":\"rati\"}})}(n(\"wd/R\"))},Dkky:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr-ch\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|e)/,ordinal:function(e,t){switch(t){default:case\"M\":case\"Q\":case\"D\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Dmvi:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-au\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},DoHr:function(e,t,n){!function(e){\"use strict\";var t={1:\"'inci\",5:\"'inci\",8:\"'inci\",70:\"'inci\",80:\"'inci\",2:\"'nci\",7:\"'nci\",20:\"'nci\",50:\"'nci\",3:\"'\\xfcnc\\xfc\",4:\"'\\xfcnc\\xfc\",100:\"'\\xfcnc\\xfc\",6:\"'nc\\u0131\",9:\"'uncu\",10:\"'uncu\",30:\"'uncu\",60:\"'\\u0131nc\\u0131\",90:\"'\\u0131nc\\u0131\"};e.defineLocale(\"tr\",{months:\"Ocak_\\u015eubat_Mart_Nisan_May\\u0131s_Haziran_Temmuz_A\\u011fustos_Eyl\\xfcl_Ekim_Kas\\u0131m_Aral\\u0131k\".split(\"_\"),monthsShort:\"Oca_\\u015eub_Mar_Nis_May_Haz_Tem_A\\u011fu_Eyl_Eki_Kas_Ara\".split(\"_\"),weekdays:\"Pazar_Pazartesi_Sal\\u0131_\\xc7ar\\u015famba_Per\\u015fembe_Cuma_Cumartesi\".split(\"_\"),weekdaysShort:\"Paz_Pts_Sal_\\xc7ar_Per_Cum_Cts\".split(\"_\"),weekdaysMin:\"Pz_Pt_Sa_\\xc7a_Pe_Cu_Ct\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bug\\xfcn saat] LT\",nextDay:\"[yar\\u0131n saat] LT\",nextWeek:\"[gelecek] dddd [saat] LT\",lastDay:\"[d\\xfcn] LT\",lastWeek:\"[ge\\xe7en] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s \\xf6nce\",s:\"birka\\xe7 saniye\",ss:\"%d saniye\",m:\"bir dakika\",mm:\"%d dakika\",h:\"bir saat\",hh:\"%d saat\",d:\"bir g\\xfcn\",dd:\"%d g\\xfcn\",M:\"bir ay\",MM:\"%d ay\",y:\"bir y\\u0131l\",yy:\"%d y\\u0131l\"},ordinal:function(e,n){switch(n){case\"d\":case\"D\":case\"Do\":case\"DD\":return e;default:if(0===e)return e+\"'\\u0131nc\\u0131\";var r=e%10;return e+(t[r]||t[e%100-r]||t[e>=100?100:null])}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},DxQv:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"da\",{months:\"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"s\\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\\xf8rdag\".split(\"_\"),weekdaysShort:\"s\\xf8n_man_tir_ons_tor_fre_l\\xf8r\".split(\"_\"),weekdaysMin:\"s\\xf8_ma_ti_on_to_fr_l\\xf8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd [d.] D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"p\\xe5 dddd [kl.] LT\",lastDay:\"[i g\\xe5r kl.] LT\",lastWeek:\"[i] dddd[s kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"f\\xe5 sekunder\",ss:\"%d sekunder\",m:\"et minut\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dage\",M:\"en m\\xe5ned\",MM:\"%d m\\xe5neder\",y:\"et \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},Dzi0:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tl-ph\",{months:\"Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre\".split(\"_\"),monthsShort:\"Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis\".split(\"_\"),weekdays:\"Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado\".split(\"_\"),weekdaysShort:\"Lin_Lun_Mar_Miy_Huw_Biy_Sab\".split(\"_\"),weekdaysMin:\"Li_Lu_Ma_Mi_Hu_Bi_Sab\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"MM/D/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY HH:mm\",LLLL:\"dddd, MMMM DD, YYYY HH:mm\"},calendar:{sameDay:\"LT [ngayong araw]\",nextDay:\"[Bukas ng] LT\",nextWeek:\"LT [sa susunod na] dddd\",lastDay:\"LT [kahapon]\",lastWeek:\"LT [noong nakaraang] dddd\",sameElse:\"L\"},relativeTime:{future:\"sa loob ng %s\",past:\"%s ang nakalipas\",s:\"ilang segundo\",ss:\"%d segundo\",m:\"isang minuto\",mm:\"%d minuto\",h:\"isang oras\",hh:\"%d oras\",d:\"isang araw\",dd:\"%d araw\",M:\"isang buwan\",MM:\"%d buwan\",y:\"isang taon\",yy:\"%d taon\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"E+lV\":function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430\",\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0435\",\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\"],m:[\"\\u0458\\u0435\\u0434\\u0430\\u043d \\u043c\\u0438\\u043d\\u0443\\u0442\",\"\\u0458\\u0435\\u0434\\u043d\\u0435 \\u043c\\u0438\\u043d\\u0443\\u0442\\u0435\"],mm:[\"\\u043c\\u0438\\u043d\\u0443\\u0442\",\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0435\",\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\"],h:[\"\\u0458\\u0435\\u0434\\u0430\\u043d \\u0441\\u0430\\u0442\",\"\\u0458\\u0435\\u0434\\u043d\\u043e\\u0433 \\u0441\\u0430\\u0442\\u0430\"],hh:[\"\\u0441\\u0430\\u0442\",\"\\u0441\\u0430\\u0442\\u0430\",\"\\u0441\\u0430\\u0442\\u0438\"],dd:[\"\\u0434\\u0430\\u043d\",\"\\u0434\\u0430\\u043d\\u0430\",\"\\u0434\\u0430\\u043d\\u0430\"],MM:[\"\\u043c\\u0435\\u0441\\u0435\\u0446\",\"\\u043c\\u0435\\u0441\\u0435\\u0446\\u0430\",\"\\u043c\\u0435\\u0441\\u0435\\u0446\\u0438\"],yy:[\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0435\",\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,r){var i=t.words[r];return 1===r.length?n?i[0]:i[1]:e+\" \"+t.correctGrammaticalCase(e,i)}};e.defineLocale(\"sr-cyrl\",{months:\"\\u0458\\u0430\\u043d\\u0443\\u0430\\u0440_\\u0444\\u0435\\u0431\\u0440\\u0443\\u0430\\u0440_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0431\\u0430\\u0440_\\u043e\\u043a\\u0442\\u043e\\u0431\\u0430\\u0440_\\u043d\\u043e\\u0432\\u0435\\u043c\\u0431\\u0430\\u0440_\\u0434\\u0435\\u0446\\u0435\\u043c\\u0431\\u0430\\u0440\".split(\"_\"),monthsShort:\"\\u0458\\u0430\\u043d._\\u0444\\u0435\\u0431._\\u043c\\u0430\\u0440._\\u0430\\u043f\\u0440._\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043f._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u0432._\\u0434\\u0435\\u0446.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u0459\\u0430_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u0459\\u0430\\u043a_\\u0443\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u0430\\u043a_\\u043f\\u0435\\u0442\\u0430\\u043a_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434._\\u043f\\u043e\\u043d._\\u0443\\u0442\\u043e._\\u0441\\u0440\\u0435._\\u0447\\u0435\\u0442._\\u043f\\u0435\\u0442._\\u0441\\u0443\\u0431.\".split(\"_\"),weekdaysMin:\"\\u043d\\u0435_\\u043f\\u043e_\\u0443\\u0442_\\u0441\\u0440_\\u0447\\u0435_\\u043f\\u0435_\\u0441\\u0443\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0434\\u0430\\u043d\\u0430\\u0441 \\u0443] LT\",nextDay:\"[\\u0441\\u0443\\u0442\\u0440\\u0430 \\u0443] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[\\u0443] [\\u043d\\u0435\\u0434\\u0435\\u0459\\u0443] [\\u0443] LT\";case 3:return\"[\\u0443] [\\u0441\\u0440\\u0435\\u0434\\u0443] [\\u0443] LT\";case 6:return\"[\\u0443] [\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443] [\\u0443] LT\";case 1:case 2:case 4:case 5:return\"[\\u0443] dddd [\\u0443] LT\"}},lastDay:\"[\\u0458\\u0443\\u0447\\u0435 \\u0443] LT\",lastWeek:function(){return[\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u043d\\u0435\\u0434\\u0435\\u0459\\u0435] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u0459\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u0443\\u0442\\u043e\\u0440\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u0441\\u0440\\u0435\\u0434\\u0435] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0433] [\\u043f\\u0435\\u0442\\u043a\\u0430] [\\u0443] LT\",\"[\\u043f\\u0440\\u043e\\u0448\\u043b\\u0435] [\\u0441\\u0443\\u0431\\u043e\\u0442\\u0435] [\\u0443] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"\\u0437\\u0430 %s\",past:\"\\u043f\\u0440\\u0435 %s\",s:\"\\u043d\\u0435\\u043a\\u043e\\u043b\\u0438\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"\\u0434\\u0430\\u043d\",dd:t.translate,M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:t.translate,y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},EOgW:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"th\",{months:\"\\u0e21\\u0e01\\u0e23\\u0e32\\u0e04\\u0e21_\\u0e01\\u0e38\\u0e21\\u0e20\\u0e32\\u0e1e\\u0e31\\u0e19\\u0e18\\u0e4c_\\u0e21\\u0e35\\u0e19\\u0e32\\u0e04\\u0e21_\\u0e40\\u0e21\\u0e29\\u0e32\\u0e22\\u0e19_\\u0e1e\\u0e24\\u0e29\\u0e20\\u0e32\\u0e04\\u0e21_\\u0e21\\u0e34\\u0e16\\u0e38\\u0e19\\u0e32\\u0e22\\u0e19_\\u0e01\\u0e23\\u0e01\\u0e0e\\u0e32\\u0e04\\u0e21_\\u0e2a\\u0e34\\u0e07\\u0e2b\\u0e32\\u0e04\\u0e21_\\u0e01\\u0e31\\u0e19\\u0e22\\u0e32\\u0e22\\u0e19_\\u0e15\\u0e38\\u0e25\\u0e32\\u0e04\\u0e21_\\u0e1e\\u0e24\\u0e28\\u0e08\\u0e34\\u0e01\\u0e32\\u0e22\\u0e19_\\u0e18\\u0e31\\u0e19\\u0e27\\u0e32\\u0e04\\u0e21\".split(\"_\"),monthsShort:\"\\u0e21.\\u0e04._\\u0e01.\\u0e1e._\\u0e21\\u0e35.\\u0e04._\\u0e40\\u0e21.\\u0e22._\\u0e1e.\\u0e04._\\u0e21\\u0e34.\\u0e22._\\u0e01.\\u0e04._\\u0e2a.\\u0e04._\\u0e01.\\u0e22._\\u0e15.\\u0e04._\\u0e1e.\\u0e22._\\u0e18.\\u0e04.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0e2d\\u0e32\\u0e17\\u0e34\\u0e15\\u0e22\\u0e4c_\\u0e08\\u0e31\\u0e19\\u0e17\\u0e23\\u0e4c_\\u0e2d\\u0e31\\u0e07\\u0e04\\u0e32\\u0e23_\\u0e1e\\u0e38\\u0e18_\\u0e1e\\u0e24\\u0e2b\\u0e31\\u0e2a\\u0e1a\\u0e14\\u0e35_\\u0e28\\u0e38\\u0e01\\u0e23\\u0e4c_\\u0e40\\u0e2a\\u0e32\\u0e23\\u0e4c\".split(\"_\"),weekdaysShort:\"\\u0e2d\\u0e32\\u0e17\\u0e34\\u0e15\\u0e22\\u0e4c_\\u0e08\\u0e31\\u0e19\\u0e17\\u0e23\\u0e4c_\\u0e2d\\u0e31\\u0e07\\u0e04\\u0e32\\u0e23_\\u0e1e\\u0e38\\u0e18_\\u0e1e\\u0e24\\u0e2b\\u0e31\\u0e2a_\\u0e28\\u0e38\\u0e01\\u0e23\\u0e4c_\\u0e40\\u0e2a\\u0e32\\u0e23\\u0e4c\".split(\"_\"),weekdaysMin:\"\\u0e2d\\u0e32._\\u0e08._\\u0e2d._\\u0e1e._\\u0e1e\\u0e24._\\u0e28._\\u0e2a.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY \\u0e40\\u0e27\\u0e25\\u0e32 H:mm\",LLLL:\"\\u0e27\\u0e31\\u0e19dddd\\u0e17\\u0e35\\u0e48 D MMMM YYYY \\u0e40\\u0e27\\u0e25\\u0e32 H:mm\"},meridiemParse:/\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07|\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07/,isPM:function(e){return\"\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\"===e},meridiem:function(e,t,n){return e<12?\"\\u0e01\\u0e48\\u0e2d\\u0e19\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\":\"\\u0e2b\\u0e25\\u0e31\\u0e07\\u0e40\\u0e17\\u0e35\\u0e48\\u0e22\\u0e07\"},calendar:{sameDay:\"[\\u0e27\\u0e31\\u0e19\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",nextDay:\"[\\u0e1e\\u0e23\\u0e38\\u0e48\\u0e07\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",nextWeek:\"dddd[\\u0e2b\\u0e19\\u0e49\\u0e32 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",lastDay:\"[\\u0e40\\u0e21\\u0e37\\u0e48\\u0e2d\\u0e27\\u0e32\\u0e19\\u0e19\\u0e35\\u0e49 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",lastWeek:\"[\\u0e27\\u0e31\\u0e19]dddd[\\u0e17\\u0e35\\u0e48\\u0e41\\u0e25\\u0e49\\u0e27 \\u0e40\\u0e27\\u0e25\\u0e32] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0e2d\\u0e35\\u0e01 %s\",past:\"%s\\u0e17\\u0e35\\u0e48\\u0e41\\u0e25\\u0e49\\u0e27\",s:\"\\u0e44\\u0e21\\u0e48\\u0e01\\u0e35\\u0e48\\u0e27\\u0e34\\u0e19\\u0e32\\u0e17\\u0e35\",ss:\"%d \\u0e27\\u0e34\\u0e19\\u0e32\\u0e17\\u0e35\",m:\"1 \\u0e19\\u0e32\\u0e17\\u0e35\",mm:\"%d \\u0e19\\u0e32\\u0e17\\u0e35\",h:\"1 \\u0e0a\\u0e31\\u0e48\\u0e27\\u0e42\\u0e21\\u0e07\",hh:\"%d \\u0e0a\\u0e31\\u0e48\\u0e27\\u0e42\\u0e21\\u0e07\",d:\"1 \\u0e27\\u0e31\\u0e19\",dd:\"%d \\u0e27\\u0e31\\u0e19\",M:\"1 \\u0e40\\u0e14\\u0e37\\u0e2d\\u0e19\",MM:\"%d \\u0e40\\u0e14\\u0e37\\u0e2d\\u0e19\",y:\"1 \\u0e1b\\u0e35\",yy:\"%d \\u0e1b\\u0e35\"}})}(n(\"wd/R\"))},G0Uy:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mt\",{months:\"Jannar_Frar_Marzu_April_Mejju_\\u0120unju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Di\\u010bembru\".split(\"_\"),monthsShort:\"Jan_Fra_Mar_Apr_Mej_\\u0120un_Lul_Aww_Set_Ott_Nov_Di\\u010b\".split(\"_\"),weekdays:\"Il-\\u0126add_It-Tnejn_It-Tlieta_L-Erbg\\u0127a_Il-\\u0126amis_Il-\\u0120img\\u0127a_Is-Sibt\".split(\"_\"),weekdaysShort:\"\\u0126ad_Tne_Tli_Erb_\\u0126am_\\u0120im_Sib\".split(\"_\"),weekdaysMin:\"\\u0126a_Tn_Tl_Er_\\u0126a_\\u0120i_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Illum fil-]LT\",nextDay:\"[G\\u0127ada fil-]LT\",nextWeek:\"dddd [fil-]LT\",lastDay:\"[Il-biera\\u0127 fil-]LT\",lastWeek:\"dddd [li g\\u0127adda] [fil-]LT\",sameElse:\"L\"},relativeTime:{future:\"f\\u2019 %s\",past:\"%s ilu\",s:\"ftit sekondi\",ss:\"%d sekondi\",m:\"minuta\",mm:\"%d minuti\",h:\"sieg\\u0127a\",hh:\"%d sieg\\u0127at\",d:\"\\u0121urnata\",dd:\"%d \\u0121ranet\",M:\"xahar\",MM:\"%d xhur\",y:\"sena\",yy:\"%d sni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},H8ED:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r,i;return\"m\"===n?t?\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0430\":\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0443\":\"h\"===n?t?\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0430\":\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0443\":e+\" \"+(r=+e,i={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0430_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u044b_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\":\"\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u0443_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\\u044b_\\u0445\\u0432\\u0456\\u043b\\u0456\\u043d\",hh:t?\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0430_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u044b_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\":\"\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u0443_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\\u044b_\\u0433\\u0430\\u0434\\u0437\\u0456\\u043d\",dd:\"\\u0434\\u0437\\u0435\\u043d\\u044c_\\u0434\\u043d\\u0456_\\u0434\\u0437\\u0451\\u043d\",MM:\"\\u043c\\u0435\\u0441\\u044f\\u0446_\\u043c\\u0435\\u0441\\u044f\\u0446\\u044b_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0430\\u045e\",yy:\"\\u0433\\u043e\\u0434_\\u0433\\u0430\\u0434\\u044b_\\u0433\\u0430\\u0434\\u043e\\u045e\"}[n].split(\"_\"),r%10==1&&r%100!=11?i[0]:r%10>=2&&r%10<=4&&(r%100<10||r%100>=20)?i[1]:i[2])}e.defineLocale(\"be\",{months:{format:\"\\u0441\\u0442\\u0443\\u0434\\u0437\\u0435\\u043d\\u044f_\\u043b\\u044e\\u0442\\u0430\\u0433\\u0430_\\u0441\\u0430\\u043a\\u0430\\u0432\\u0456\\u043a\\u0430_\\u043a\\u0440\\u0430\\u0441\\u0430\\u0432\\u0456\\u043a\\u0430_\\u0442\\u0440\\u0430\\u045e\\u043d\\u044f_\\u0447\\u044d\\u0440\\u0432\\u0435\\u043d\\u044f_\\u043b\\u0456\\u043f\\u0435\\u043d\\u044f_\\u0436\\u043d\\u0456\\u045e\\u043d\\u044f_\\u0432\\u0435\\u0440\\u0430\\u0441\\u043d\\u044f_\\u043a\\u0430\\u0441\\u0442\\u0440\\u044b\\u0447\\u043d\\u0456\\u043a\\u0430_\\u043b\\u0456\\u0441\\u0442\\u0430\\u043f\\u0430\\u0434\\u0430_\\u0441\\u043d\\u0435\\u0436\\u043d\\u044f\".split(\"_\"),standalone:\"\\u0441\\u0442\\u0443\\u0434\\u0437\\u0435\\u043d\\u044c_\\u043b\\u044e\\u0442\\u044b_\\u0441\\u0430\\u043a\\u0430\\u0432\\u0456\\u043a_\\u043a\\u0440\\u0430\\u0441\\u0430\\u0432\\u0456\\u043a_\\u0442\\u0440\\u0430\\u0432\\u0435\\u043d\\u044c_\\u0447\\u044d\\u0440\\u0432\\u0435\\u043d\\u044c_\\u043b\\u0456\\u043f\\u0435\\u043d\\u044c_\\u0436\\u043d\\u0456\\u0432\\u0435\\u043d\\u044c_\\u0432\\u0435\\u0440\\u0430\\u0441\\u0435\\u043d\\u044c_\\u043a\\u0430\\u0441\\u0442\\u0440\\u044b\\u0447\\u043d\\u0456\\u043a_\\u043b\\u0456\\u0441\\u0442\\u0430\\u043f\\u0430\\u0434_\\u0441\\u043d\\u0435\\u0436\\u0430\\u043d\\u044c\".split(\"_\")},monthsShort:\"\\u0441\\u0442\\u0443\\u0434_\\u043b\\u044e\\u0442_\\u0441\\u0430\\u043a_\\u043a\\u0440\\u0430\\u0441_\\u0442\\u0440\\u0430\\u0432_\\u0447\\u044d\\u0440\\u0432_\\u043b\\u0456\\u043f_\\u0436\\u043d\\u0456\\u0432_\\u0432\\u0435\\u0440_\\u043a\\u0430\\u0441\\u0442_\\u043b\\u0456\\u0441\\u0442_\\u0441\\u043d\\u0435\\u0436\".split(\"_\"),weekdays:{format:\"\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u044e_\\u043f\\u0430\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u0430\\u043a_\\u0430\\u045e\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0435\\u0440\\u0430\\u0434\\u0443_\\u0447\\u0430\\u0446\\u0432\\u0435\\u0440_\\u043f\\u044f\\u0442\\u043d\\u0456\\u0446\\u0443_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),standalone:\"\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u044f_\\u043f\\u0430\\u043d\\u044f\\u0434\\u0437\\u0435\\u043b\\u0430\\u043a_\\u0430\\u045e\\u0442\\u043e\\u0440\\u0430\\u043a_\\u0441\\u0435\\u0440\\u0430\\u0434\\u0430_\\u0447\\u0430\\u0446\\u0432\\u0435\\u0440_\\u043f\\u044f\\u0442\\u043d\\u0456\\u0446\\u0430_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),isFormat:/\\[ ?[\\u0423\\u0443\\u045e] ?(?:\\u043c\\u0456\\u043d\\u0443\\u043b\\u0443\\u044e|\\u043d\\u0430\\u0441\\u0442\\u0443\\u043f\\u043d\\u0443\\u044e)? ?\\] ?dddd/},weekdaysShort:\"\\u043d\\u0434_\\u043f\\u043d_\\u0430\\u0442_\\u0441\\u0440_\\u0447\\u0446_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0430\\u0442_\\u0441\\u0440_\\u0447\\u0446_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0433.\",LLL:\"D MMMM YYYY \\u0433., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0433., HH:mm\"},calendar:{sameDay:\"[\\u0421\\u0451\\u043d\\u043d\\u044f \\u045e] LT\",nextDay:\"[\\u0417\\u0430\\u045e\\u0442\\u0440\\u0430 \\u045e] LT\",lastDay:\"[\\u0423\\u0447\\u043e\\u0440\\u0430 \\u045e] LT\",nextWeek:function(){return\"[\\u0423] dddd [\\u045e] LT\"},lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return\"[\\u0423 \\u043c\\u0456\\u043d\\u0443\\u043b\\u0443\\u044e] dddd [\\u045e] LT\";case 1:case 2:case 4:return\"[\\u0423 \\u043c\\u0456\\u043d\\u0443\\u043b\\u044b] dddd [\\u045e] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u043f\\u0440\\u0430\\u0437 %s\",past:\"%s \\u0442\\u0430\\u043c\\u0443\",s:\"\\u043d\\u0435\\u043a\\u0430\\u043b\\u044c\\u043a\\u0456 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:t,mm:t,h:t,hh:t,d:\"\\u0434\\u0437\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0435\\u0441\\u044f\\u0446\",MM:t,y:\"\\u0433\\u043e\\u0434\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u044b|\\u0440\\u0430\\u043d\\u0456\\u0446\\u044b|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430/,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u044b\":e<12?\"\\u0440\\u0430\\u043d\\u0456\\u0446\\u044b\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u0430\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0456|\\u044b|\\u0433\\u0430)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e%10!=2&&e%10!=3||e%100==12||e%100==13?e+\"-\\u044b\":e+\"-\\u0456\";case\"D\":return e+\"-\\u0433\\u0430\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},HP3h:function(e,t,n){!function(e){\"use strict\";var t={1:\"1\",2:\"2\",3:\"3\",4:\"4\",5:\"5\",6:\"6\",7:\"7\",8:\"8\",9:\"9\",0:\"0\"},n=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},r={s:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062b\\u0627\\u0646\\u064a\\u0629\",\"\\u062b\\u0627\\u0646\\u064a\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u0627\\u0646\",\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u064a\\u0646\"],\"%d \\u062b\\u0648\\u0627\\u0646\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\"],m:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062f\\u0642\\u064a\\u0642\\u0629\",\"\\u062f\\u0642\\u064a\\u0642\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u0627\\u0646\",\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u064a\\u0646\"],\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\"],h:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0633\\u0627\\u0639\\u0629\",\"\\u0633\\u0627\\u0639\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u0633\\u0627\\u0639\\u062a\\u0627\\u0646\",\"\\u0633\\u0627\\u0639\\u062a\\u064a\\u0646\"],\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",\"%d \\u0633\\u0627\\u0639\\u0629\",\"%d \\u0633\\u0627\\u0639\\u0629\"],d:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u064a\\u0648\\u0645\",\"\\u064a\\u0648\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u064a\\u0648\\u0645\\u0627\\u0646\",\"\\u064a\\u0648\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u064a\\u0627\\u0645\",\"%d \\u064a\\u0648\\u0645\\u064b\\u0627\",\"%d \\u064a\\u0648\\u0645\"],M:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0634\\u0647\\u0631\",\"\\u0634\\u0647\\u0631 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0634\\u0647\\u0631\\u0627\\u0646\",\"\\u0634\\u0647\\u0631\\u064a\\u0646\"],\"%d \\u0623\\u0634\\u0647\\u0631\",\"%d \\u0634\\u0647\\u0631\\u0627\",\"%d \\u0634\\u0647\\u0631\"],y:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0639\\u0627\\u0645\",\"\\u0639\\u0627\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0639\\u0627\\u0645\\u0627\\u0646\",\"\\u0639\\u0627\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u0639\\u0648\\u0627\\u0645\",\"%d \\u0639\\u0627\\u0645\\u064b\\u0627\",\"%d \\u0639\\u0627\\u0645\"]},i=function(e){return function(t,i,a,o){var s=n(t),l=r[e][n(t)];return 2===s&&(l=l[i?0:1]),l.replace(/%d/i,t)}},a=[\"\\u064a\\u0646\\u0627\\u064a\\u0631\",\"\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631\",\"\\u0645\\u0627\\u0631\\u0633\",\"\\u0623\\u0628\\u0631\\u064a\\u0644\",\"\\u0645\\u0627\\u064a\\u0648\",\"\\u064a\\u0648\\u0646\\u064a\\u0648\",\"\\u064a\\u0648\\u0644\\u064a\\u0648\",\"\\u0623\\u063a\\u0633\\u0637\\u0633\",\"\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631\",\"\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631\",\"\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\"];e.defineLocale(\"ar-ly\",{months:a,monthsShort:a,weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/\\u200fM/\\u200fYYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u064b\\u0627 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0628\\u0639\\u062f %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:i(\"s\"),ss:i(\"s\"),m:i(\"m\"),mm:i(\"m\"),h:i(\"h\"),hh:i(\"h\"),d:i(\"d\"),dd:i(\"d\"),M:i(\"M\"),MM:i(\"M\"),y:i(\"y\"),yy:i(\"y\")},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},IBtZ:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ka\",{months:{standalone:\"\\u10d8\\u10d0\\u10dc\\u10d5\\u10d0\\u10e0\\u10d8_\\u10d7\\u10d4\\u10d1\\u10d4\\u10e0\\u10d5\\u10d0\\u10da\\u10d8_\\u10db\\u10d0\\u10e0\\u10e2\\u10d8_\\u10d0\\u10de\\u10e0\\u10d8\\u10da\\u10d8_\\u10db\\u10d0\\u10d8\\u10e1\\u10d8_\\u10d8\\u10d5\\u10dc\\u10d8\\u10e1\\u10d8_\\u10d8\\u10d5\\u10da\\u10d8\\u10e1\\u10d8_\\u10d0\\u10d2\\u10d5\\u10d8\\u10e1\\u10e2\\u10dd_\\u10e1\\u10d4\\u10e5\\u10e2\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10dd\\u10e5\\u10e2\\u10dd\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10dc\\u10dd\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8_\\u10d3\\u10d4\\u10d9\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10d8\".split(\"_\"),format:\"\\u10d8\\u10d0\\u10dc\\u10d5\\u10d0\\u10e0\\u10e1_\\u10d7\\u10d4\\u10d1\\u10d4\\u10e0\\u10d5\\u10d0\\u10da\\u10e1_\\u10db\\u10d0\\u10e0\\u10e2\\u10e1_\\u10d0\\u10de\\u10e0\\u10d8\\u10da\\u10d8\\u10e1_\\u10db\\u10d0\\u10d8\\u10e1\\u10e1_\\u10d8\\u10d5\\u10dc\\u10d8\\u10e1\\u10e1_\\u10d8\\u10d5\\u10da\\u10d8\\u10e1\\u10e1_\\u10d0\\u10d2\\u10d5\\u10d8\\u10e1\\u10e2\\u10e1_\\u10e1\\u10d4\\u10e5\\u10e2\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10dd\\u10e5\\u10e2\\u10dd\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10dc\\u10dd\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1_\\u10d3\\u10d4\\u10d9\\u10d4\\u10db\\u10d1\\u10d4\\u10e0\\u10e1\".split(\"_\")},monthsShort:\"\\u10d8\\u10d0\\u10dc_\\u10d7\\u10d4\\u10d1_\\u10db\\u10d0\\u10e0_\\u10d0\\u10de\\u10e0_\\u10db\\u10d0\\u10d8_\\u10d8\\u10d5\\u10dc_\\u10d8\\u10d5\\u10da_\\u10d0\\u10d2\\u10d5_\\u10e1\\u10d4\\u10e5_\\u10dd\\u10e5\\u10e2_\\u10dc\\u10dd\\u10d4_\\u10d3\\u10d4\\u10d9\".split(\"_\"),weekdays:{standalone:\"\\u10d9\\u10d5\\u10d8\\u10e0\\u10d0_\\u10dd\\u10e0\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10e1\\u10d0\\u10db\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10dd\\u10d7\\u10ee\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10ee\\u10e3\\u10d7\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8_\\u10de\\u10d0\\u10e0\\u10d0\\u10e1\\u10d9\\u10d4\\u10d5\\u10d8_\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10d8\".split(\"_\"),format:\"\\u10d9\\u10d5\\u10d8\\u10e0\\u10d0\\u10e1_\\u10dd\\u10e0\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10e1\\u10d0\\u10db\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10dd\\u10d7\\u10ee\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10ee\\u10e3\\u10d7\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1_\\u10de\\u10d0\\u10e0\\u10d0\\u10e1\\u10d9\\u10d4\\u10d5\\u10e1_\\u10e8\\u10d0\\u10d1\\u10d0\\u10d7\\u10e1\".split(\"_\"),isFormat:/(\\u10ec\\u10d8\\u10dc\\u10d0|\\u10e8\\u10d4\\u10db\\u10d3\\u10d4\\u10d2)/},weekdaysShort:\"\\u10d9\\u10d5\\u10d8_\\u10dd\\u10e0\\u10e8_\\u10e1\\u10d0\\u10db_\\u10dd\\u10d7\\u10ee_\\u10ee\\u10e3\\u10d7_\\u10de\\u10d0\\u10e0_\\u10e8\\u10d0\\u10d1\".split(\"_\"),weekdaysMin:\"\\u10d9\\u10d5_\\u10dd\\u10e0_\\u10e1\\u10d0_\\u10dd\\u10d7_\\u10ee\\u10e3_\\u10de\\u10d0_\\u10e8\\u10d0\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[\\u10d3\\u10e6\\u10d4\\u10e1] LT[-\\u10d6\\u10d4]\",nextDay:\"[\\u10ee\\u10d5\\u10d0\\u10da] LT[-\\u10d6\\u10d4]\",lastDay:\"[\\u10d2\\u10e3\\u10e8\\u10d8\\u10dc] LT[-\\u10d6\\u10d4]\",nextWeek:\"[\\u10e8\\u10d4\\u10db\\u10d3\\u10d4\\u10d2] dddd LT[-\\u10d6\\u10d4]\",lastWeek:\"[\\u10ec\\u10d8\\u10dc\\u10d0] dddd LT-\\u10d6\\u10d4\",sameElse:\"L\"},relativeTime:{future:function(e){return/(\\u10ec\\u10d0\\u10db\\u10d8|\\u10ec\\u10e3\\u10d7\\u10d8|\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8|\\u10ec\\u10d4\\u10da\\u10d8)/.test(e)?e.replace(/\\u10d8$/,\"\\u10e8\\u10d8\"):e+\"\\u10e8\\u10d8\"},past:function(e){return/(\\u10ec\\u10d0\\u10db\\u10d8|\\u10ec\\u10e3\\u10d7\\u10d8|\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8|\\u10d3\\u10e6\\u10d4|\\u10d7\\u10d5\\u10d4)/.test(e)?e.replace(/(\\u10d8|\\u10d4)$/,\"\\u10d8\\u10e1 \\u10ec\\u10d8\\u10dc\"):/\\u10ec\\u10d4\\u10da\\u10d8/.test(e)?e.replace(/\\u10ec\\u10d4\\u10da\\u10d8$/,\"\\u10ec\\u10da\\u10d8\\u10e1 \\u10ec\\u10d8\\u10dc\"):void 0},s:\"\\u10e0\\u10d0\\u10db\\u10d3\\u10d4\\u10dc\\u10d8\\u10db\\u10d4 \\u10ec\\u10d0\\u10db\\u10d8\",ss:\"%d \\u10ec\\u10d0\\u10db\\u10d8\",m:\"\\u10ec\\u10e3\\u10d7\\u10d8\",mm:\"%d \\u10ec\\u10e3\\u10d7\\u10d8\",h:\"\\u10e1\\u10d0\\u10d0\\u10d7\\u10d8\",hh:\"%d \\u10e1\\u10d0\\u10d0\\u10d7\\u10d8\",d:\"\\u10d3\\u10e6\\u10d4\",dd:\"%d \\u10d3\\u10e6\\u10d4\",M:\"\\u10d7\\u10d5\\u10d4\",MM:\"%d \\u10d7\\u10d5\\u10d4\",y:\"\\u10ec\\u10d4\\u10da\\u10d8\",yy:\"%d \\u10ec\\u10d4\\u10da\\u10d8\"},dayOfMonthOrdinalParse:/0|1-\\u10da\\u10d8|\\u10db\\u10d4-\\d{1,2}|\\d{1,2}-\\u10d4/,ordinal:function(e){return 0===e?e:1===e?e+\"-\\u10da\\u10d8\":e<20||e<=100&&e%20==0||e%100==0?\"\\u10db\\u10d4-\"+e:e+\"-\\u10d4\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"Ivi+\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ko\",{months:\"1\\uc6d4_2\\uc6d4_3\\uc6d4_4\\uc6d4_5\\uc6d4_6\\uc6d4_7\\uc6d4_8\\uc6d4_9\\uc6d4_10\\uc6d4_11\\uc6d4_12\\uc6d4\".split(\"_\"),monthsShort:\"1\\uc6d4_2\\uc6d4_3\\uc6d4_4\\uc6d4_5\\uc6d4_6\\uc6d4_7\\uc6d4_8\\uc6d4_9\\uc6d4_10\\uc6d4_11\\uc6d4_12\\uc6d4\".split(\"_\"),weekdays:\"\\uc77c\\uc694\\uc77c_\\uc6d4\\uc694\\uc77c_\\ud654\\uc694\\uc77c_\\uc218\\uc694\\uc77c_\\ubaa9\\uc694\\uc77c_\\uae08\\uc694\\uc77c_\\ud1a0\\uc694\\uc77c\".split(\"_\"),weekdaysShort:\"\\uc77c_\\uc6d4_\\ud654_\\uc218_\\ubaa9_\\uae08_\\ud1a0\".split(\"_\"),weekdaysMin:\"\\uc77c_\\uc6d4_\\ud654_\\uc218_\\ubaa9_\\uae08_\\ud1a0\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY\\ub144 MMMM D\\uc77c\",LLL:\"YYYY\\ub144 MMMM D\\uc77c A h:mm\",LLLL:\"YYYY\\ub144 MMMM D\\uc77c dddd A h:mm\",l:\"YYYY.MM.DD.\",ll:\"YYYY\\ub144 MMMM D\\uc77c\",lll:\"YYYY\\ub144 MMMM D\\uc77c A h:mm\",llll:\"YYYY\\ub144 MMMM D\\uc77c dddd A h:mm\"},calendar:{sameDay:\"\\uc624\\ub298 LT\",nextDay:\"\\ub0b4\\uc77c LT\",nextWeek:\"dddd LT\",lastDay:\"\\uc5b4\\uc81c LT\",lastWeek:\"\\uc9c0\\ub09c\\uc8fc dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\ud6c4\",past:\"%s \\uc804\",s:\"\\uba87 \\ucd08\",ss:\"%d\\ucd08\",m:\"1\\ubd84\",mm:\"%d\\ubd84\",h:\"\\ud55c \\uc2dc\\uac04\",hh:\"%d\\uc2dc\\uac04\",d:\"\\ud558\\ub8e8\",dd:\"%d\\uc77c\",M:\"\\ud55c \\ub2ec\",MM:\"%d\\ub2ec\",y:\"\\uc77c \\ub144\",yy:\"%d\\ub144\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\uc77c|\\uc6d4|\\uc8fc)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\uc77c\";case\"M\":return e+\"\\uc6d4\";case\"w\":case\"W\":return e+\"\\uc8fc\";default:return e}},meridiemParse:/\\uc624\\uc804|\\uc624\\ud6c4/,isPM:function(e){return\"\\uc624\\ud6c4\"===e},meridiem:function(e,t,n){return e<12?\"\\uc624\\uc804\":\"\\uc624\\ud6c4\"}})}(n(\"wd/R\"))},\"JCF/\":function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"},r=[\"\\u06a9\\u0627\\u0646\\u0648\\u0646\\u06cc \\u062f\\u0648\\u0648\\u06d5\\u0645\",\"\\u0634\\u0648\\u0628\\u0627\\u062a\",\"\\u0626\\u0627\\u0632\\u0627\\u0631\",\"\\u0646\\u06cc\\u0633\\u0627\\u0646\",\"\\u0626\\u0627\\u06cc\\u0627\\u0631\",\"\\u062d\\u0648\\u0632\\u06d5\\u06cc\\u0631\\u0627\\u0646\",\"\\u062a\\u06d5\\u0645\\u0645\\u0648\\u0632\",\"\\u0626\\u0627\\u0628\",\"\\u0626\\u06d5\\u06cc\\u0644\\u0648\\u0648\\u0644\",\"\\u062a\\u0634\\u0631\\u06cc\\u0646\\u06cc \\u06cc\\u06d5\\u0643\\u06d5\\u0645\",\"\\u062a\\u0634\\u0631\\u06cc\\u0646\\u06cc \\u062f\\u0648\\u0648\\u06d5\\u0645\",\"\\u0643\\u0627\\u0646\\u0648\\u0646\\u06cc \\u06cc\\u06d5\\u06a9\\u06d5\\u0645\"];e.defineLocale(\"ku\",{months:r,monthsShort:r,weekdays:\"\\u06cc\\u0647\\u200c\\u0643\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u062f\\u0648\\u0648\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0633\\u06ce\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0686\\u0648\\u0627\\u0631\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u067e\\u06ce\\u0646\\u062c\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c_\\u0647\\u0647\\u200c\\u06cc\\u0646\\u06cc_\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c\".split(\"_\"),weekdaysShort:\"\\u06cc\\u0647\\u200c\\u0643\\u0634\\u0647\\u200c\\u0645_\\u062f\\u0648\\u0648\\u0634\\u0647\\u200c\\u0645_\\u0633\\u06ce\\u0634\\u0647\\u200c\\u0645_\\u0686\\u0648\\u0627\\u0631\\u0634\\u0647\\u200c\\u0645_\\u067e\\u06ce\\u0646\\u062c\\u0634\\u0647\\u200c\\u0645_\\u0647\\u0647\\u200c\\u06cc\\u0646\\u06cc_\\u0634\\u0647\\u200c\\u0645\\u0645\\u0647\\u200c\".split(\"_\"),weekdaysMin:\"\\u06cc_\\u062f_\\u0633_\\u0686_\\u067e_\\u0647_\\u0634\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c|\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc/,isPM:function(e){return/\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c/.test(e)},meridiem:function(e,t,n){return e<12?\"\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc\":\"\\u0626\\u06ce\\u0648\\u0627\\u0631\\u0647\\u200c\"},calendar:{sameDay:\"[\\u0626\\u0647\\u200c\\u0645\\u0631\\u06c6 \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",nextDay:\"[\\u0628\\u0647\\u200c\\u06cc\\u0627\\u0646\\u06cc \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",nextWeek:\"dddd [\\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",lastDay:\"[\\u062f\\u0648\\u06ce\\u0646\\u06ce \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",lastWeek:\"dddd [\\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0644\\u0647\\u200c %s\",past:\"%s\",s:\"\\u0686\\u0647\\u200c\\u0646\\u062f \\u0686\\u0631\\u0643\\u0647\\u200c\\u06cc\\u0647\\u200c\\u0643\",ss:\"\\u0686\\u0631\\u0643\\u0647\\u200c %d\",m:\"\\u06cc\\u0647\\u200c\\u0643 \\u062e\\u0648\\u0644\\u0647\\u200c\\u0643\",mm:\"%d \\u062e\\u0648\\u0644\\u0647\\u200c\\u0643\",h:\"\\u06cc\\u0647\\u200c\\u0643 \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631\",hh:\"%d \\u0643\\u0627\\u062a\\u0698\\u0645\\u06ce\\u0631\",d:\"\\u06cc\\u0647\\u200c\\u0643 \\u0695\\u06c6\\u0698\",dd:\"%d \\u0695\\u06c6\\u0698\",M:\"\\u06cc\\u0647\\u200c\\u0643 \\u0645\\u0627\\u0646\\u06af\",MM:\"%d \\u0645\\u0627\\u0646\\u06af\",y:\"\\u06cc\\u0647\\u200c\\u0643 \\u0633\\u0627\\u06b5\",yy:\"%d \\u0633\\u0627\\u06b5\"},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},JVSJ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r=e+\" \";switch(n){case\"ss\":return r+(1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\");case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return r+(1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\");case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return r+(1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\");case\"dd\":return r+(1===e?\"dan\":\"dana\");case\"MM\":return r+(1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\");case\"yy\":return r+(1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\")}}e.defineLocale(\"bs\",{months:\"januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010der u] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:return\"[pro\\u0161lu] dddd [u] LT\";case 6:return\"[pro\\u0161le] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[pro\\u0161li] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},JvlW:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekund\\u0117_sekund\\u017ei\\u0173_sekundes\",m:\"minut\\u0117_minut\\u0117s_minut\\u0119\",mm:\"minut\\u0117s_minu\\u010di\\u0173_minutes\",h:\"valanda_valandos_valand\\u0105\",hh:\"valandos_valand\\u0173_valandas\",d:\"diena_dienos_dien\\u0105\",dd:\"dienos_dien\\u0173_dienas\",M:\"m\\u0117nuo_m\\u0117nesio_m\\u0117nes\\u012f\",MM:\"m\\u0117nesiai_m\\u0117nesi\\u0173_m\\u0117nesius\",y:\"metai_met\\u0173_metus\",yy:\"metai_met\\u0173_metus\"};function n(e,t,n,r){return t?i(n)[0]:r?i(n)[1]:i(n)[2]}function r(e){return e%10==0||e>10&&e<20}function i(e){return t[e].split(\"_\")}function a(e,t,a,o){var s=e+\" \";return 1===e?s+n(0,t,a[0],o):t?s+(r(e)?i(a)[1]:i(a)[0]):o?s+i(a)[1]:s+(r(e)?i(a)[1]:i(a)[2])}e.defineLocale(\"lt\",{months:{format:\"sausio_vasario_kovo_baland\\u017eio_gegu\\u017e\\u0117s_bir\\u017eelio_liepos_rugpj\\u016b\\u010dio_rugs\\u0117jo_spalio_lapkri\\u010dio_gruod\\u017eio\".split(\"_\"),standalone:\"sausis_vasaris_kovas_balandis_gegu\\u017e\\u0117_bir\\u017eelis_liepa_rugpj\\u016btis_rugs\\u0117jis_spalis_lapkritis_gruodis\".split(\"_\"),isFormat:/D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?|MMMM?(\\[[^\\[\\]]*\\]|\\s)+D[oD]?/},monthsShort:\"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd\".split(\"_\"),weekdays:{format:\"sekmadien\\u012f_pirmadien\\u012f_antradien\\u012f_tre\\u010diadien\\u012f_ketvirtadien\\u012f_penktadien\\u012f_\\u0161e\\u0161tadien\\u012f\".split(\"_\"),standalone:\"sekmadienis_pirmadienis_antradienis_tre\\u010diadienis_ketvirtadienis_penktadienis_\\u0161e\\u0161tadienis\".split(\"_\"),isFormat:/dddd HH:mm/},weekdaysShort:\"Sek_Pir_Ant_Tre_Ket_Pen_\\u0160e\\u0161\".split(\"_\"),weekdaysMin:\"S_P_A_T_K_Pn_\\u0160\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY [m.] MMMM D [d.]\",LLL:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",LLLL:\"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]\",l:\"YYYY-MM-DD\",ll:\"YYYY [m.] MMMM D [d.]\",lll:\"YYYY [m.] MMMM D [d.], HH:mm [val.]\",llll:\"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]\"},calendar:{sameDay:\"[\\u0160iandien] LT\",nextDay:\"[Rytoj] LT\",nextWeek:\"dddd LT\",lastDay:\"[Vakar] LT\",lastWeek:\"[Pra\\u0117jus\\u012f] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"po %s\",past:\"prie\\u0161 %s\",s:function(e,t,n,r){return t?\"kelios sekund\\u0117s\":r?\"keli\\u0173 sekund\\u017ei\\u0173\":\"kelias sekundes\"},ss:a,m:n,mm:a,h:n,hh:a,d:n,dd:a,M:n,MM:a,y:n,yy:a},dayOfMonthOrdinalParse:/\\d{1,2}-oji/,ordinal:function(e){return e+\"-oji\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},\"K/tc\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"af\",{months:\"Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag\".split(\"_\"),weekdaysShort:\"Son_Maa_Din_Woe_Don_Vry_Sat\".split(\"_\"),weekdaysMin:\"So_Ma_Di_Wo_Do_Vr_Sa\".split(\"_\"),meridiemParse:/vm|nm/i,isPM:function(e){return/^nm$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"vm\":\"VM\":n?\"nm\":\"NM\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Vandag om] LT\",nextDay:\"[M\\xf4re om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[Gister om] LT\",lastWeek:\"[Laas] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oor %s\",past:\"%s gelede\",s:\"'n paar sekondes\",ss:\"%d sekondes\",m:\"'n minuut\",mm:\"%d minute\",h:\"'n uur\",hh:\"%d ure\",d:\"'n dag\",dd:\"%d dae\",M:\"'n maand\",MM:\"%d maande\",y:\"'n jaar\",yy:\"%d jaar\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},KSF8:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"vi\",{months:\"th\\xe1ng 1_th\\xe1ng 2_th\\xe1ng 3_th\\xe1ng 4_th\\xe1ng 5_th\\xe1ng 6_th\\xe1ng 7_th\\xe1ng 8_th\\xe1ng 9_th\\xe1ng 10_th\\xe1ng 11_th\\xe1ng 12\".split(\"_\"),monthsShort:\"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12\".split(\"_\"),monthsParseExact:!0,weekdays:\"ch\\u1ee7 nh\\u1eadt_th\\u1ee9 hai_th\\u1ee9 ba_th\\u1ee9 t\\u01b0_th\\u1ee9 n\\u0103m_th\\u1ee9 s\\xe1u_th\\u1ee9 b\\u1ea3y\".split(\"_\"),weekdaysShort:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysMin:\"CN_T2_T3_T4_T5_T6_T7\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/sa|ch/i,isPM:function(e){return/^ch$/i.test(e)},meridiem:function(e,t,n){return e<12?n?\"sa\":\"SA\":n?\"ch\":\"CH\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM [n\\u0103m] YYYY\",LLL:\"D MMMM [n\\u0103m] YYYY HH:mm\",LLLL:\"dddd, D MMMM [n\\u0103m] YYYY HH:mm\",l:\"DD/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[H\\xf4m nay l\\xfac] LT\",nextDay:\"[Ng\\xe0y mai l\\xfac] LT\",nextWeek:\"dddd [tu\\u1ea7n t\\u1edbi l\\xfac] LT\",lastDay:\"[H\\xf4m qua l\\xfac] LT\",lastWeek:\"dddd [tu\\u1ea7n r\\u1ed3i l\\xfac] LT\",sameElse:\"L\"},relativeTime:{future:\"%s t\\u1edbi\",past:\"%s tr\\u01b0\\u1edbc\",s:\"v\\xe0i gi\\xe2y\",ss:\"%d gi\\xe2y\",m:\"m\\u1ed9t ph\\xfat\",mm:\"%d ph\\xfat\",h:\"m\\u1ed9t gi\\u1edd\",hh:\"%d gi\\u1edd\",d:\"m\\u1ed9t ng\\xe0y\",dd:\"%d ng\\xe0y\",M:\"m\\u1ed9t th\\xe1ng\",MM:\"%d th\\xe1ng\",y:\"m\\u1ed9t n\\u0103m\",yy:\"%d n\\u0103m\"},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}})}(n(\"wd/R\"))},KTz0:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekund\",\"sekunda\",\"sekundi\"],m:[\"jedan minut\",\"jednog minuta\"],mm:[\"minut\",\"minuta\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mjesec\",\"mjeseca\",\"mjeseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,r){var i=t.words[r];return 1===r.length?n?i[0]:i[1]:e+\" \"+t.correctGrammaticalCase(e,i)}};e.defineLocale(\"me\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sjutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010de u] LT\",lastWeek:function(){return[\"[pro\\u0161le] [nedjelje] [u] LT\",\"[pro\\u0161log] [ponedjeljka] [u] LT\",\"[pro\\u0161log] [utorka] [u] LT\",\"[pro\\u0161le] [srijede] [u] LT\",\"[pro\\u0161log] [\\u010detvrtka] [u] LT\",\"[pro\\u0161log] [petka] [u] LT\",\"[pro\\u0161le] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mjesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},Loxo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"uz\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440_\\u043d\\u043e\\u044f\\u0431\\u0440_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u042f\\u043a\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0414\\u0443\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0421\\u0435\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0427\\u043e\\u0440\\u0448\\u0430\\u043d\\u0431\\u0430_\\u041f\\u0430\\u0439\\u0448\\u0430\\u043d\\u0431\\u0430_\\u0416\\u0443\\u043c\\u0430_\\u0428\\u0430\\u043d\\u0431\\u0430\".split(\"_\"),weekdaysShort:\"\\u042f\\u043a\\u0448_\\u0414\\u0443\\u0448_\\u0421\\u0435\\u0448_\\u0427\\u043e\\u0440_\\u041f\\u0430\\u0439_\\u0416\\u0443\\u043c_\\u0428\\u0430\\u043d\".split(\"_\"),weekdaysMin:\"\\u042f\\u043a_\\u0414\\u0443_\\u0421\\u0435_\\u0427\\u043e_\\u041f\\u0430_\\u0416\\u0443_\\u0428\\u0430\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"D MMMM YYYY, dddd HH:mm\"},calendar:{sameDay:\"[\\u0411\\u0443\\u0433\\u0443\\u043d \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",nextDay:\"[\\u042d\\u0440\\u0442\\u0430\\u0433\\u0430] LT [\\u0434\\u0430]\",nextWeek:\"dddd [\\u043a\\u0443\\u043d\\u0438 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",lastDay:\"[\\u041a\\u0435\\u0447\\u0430 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",lastWeek:\"[\\u0423\\u0442\\u0433\\u0430\\u043d] dddd [\\u043a\\u0443\\u043d\\u0438 \\u0441\\u043e\\u0430\\u0442] LT [\\u0434\\u0430]\",sameElse:\"L\"},relativeTime:{future:\"\\u042f\\u043a\\u0438\\u043d %s \\u0438\\u0447\\u0438\\u0434\\u0430\",past:\"\\u0411\\u0438\\u0440 \\u043d\\u0435\\u0447\\u0430 %s \\u043e\\u043b\\u0434\\u0438\\u043d\",s:\"\\u0444\\u0443\\u0440\\u0441\\u0430\\u0442\",ss:\"%d \\u0444\\u0443\\u0440\\u0441\\u0430\\u0442\",m:\"\\u0431\\u0438\\u0440 \\u0434\\u0430\\u043a\\u0438\\u043a\\u0430\",mm:\"%d \\u0434\\u0430\\u043a\\u0438\\u043a\\u0430\",h:\"\\u0431\\u0438\\u0440 \\u0441\\u043e\\u0430\\u0442\",hh:\"%d \\u0441\\u043e\\u0430\\u0442\",d:\"\\u0431\\u0438\\u0440 \\u043a\\u0443\\u043d\",dd:\"%d \\u043a\\u0443\\u043d\",M:\"\\u0431\\u0438\\u0440 \\u043e\\u0439\",MM:\"%d \\u043e\\u0439\",y:\"\\u0431\\u0438\\u0440 \\u0439\\u0438\\u043b\",yy:\"%d \\u0439\\u0438\\u043b\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},OIYi:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-ca\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"YYYY-MM-DD\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(\"wd/R\"))},Oaa7:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-gb\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Ob0Z:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};function r(e,t,n,r){var i=\"\";if(t)switch(n){case\"s\":i=\"\\u0915\\u093e\\u0939\\u0940 \\u0938\\u0947\\u0915\\u0902\\u0926\";break;case\"ss\":i=\"%d \\u0938\\u0947\\u0915\\u0902\\u0926\";break;case\"m\":i=\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u093f\\u091f\";break;case\"mm\":i=\"%d \\u092e\\u093f\\u0928\\u093f\\u091f\\u0947\";break;case\"h\":i=\"\\u090f\\u0915 \\u0924\\u093e\\u0938\";break;case\"hh\":i=\"%d \\u0924\\u093e\\u0938\";break;case\"d\":i=\"\\u090f\\u0915 \\u0926\\u093f\\u0935\\u0938\";break;case\"dd\":i=\"%d \\u0926\\u093f\\u0935\\u0938\";break;case\"M\":i=\"\\u090f\\u0915 \\u092e\\u0939\\u093f\\u0928\\u093e\";break;case\"MM\":i=\"%d \\u092e\\u0939\\u093f\\u0928\\u0947\";break;case\"y\":i=\"\\u090f\\u0915 \\u0935\\u0930\\u094d\\u0937\";break;case\"yy\":i=\"%d \\u0935\\u0930\\u094d\\u0937\\u0947\"}else switch(n){case\"s\":i=\"\\u0915\\u093e\\u0939\\u0940 \\u0938\\u0947\\u0915\\u0902\\u0926\\u093e\\u0902\";break;case\"ss\":i=\"%d \\u0938\\u0947\\u0915\\u0902\\u0926\\u093e\\u0902\";break;case\"m\":i=\"\\u090f\\u0915\\u093e \\u092e\\u093f\\u0928\\u093f\\u091f\\u093e\";break;case\"mm\":i=\"%d \\u092e\\u093f\\u0928\\u093f\\u091f\\u093e\\u0902\";break;case\"h\":i=\"\\u090f\\u0915\\u093e \\u0924\\u093e\\u0938\\u093e\";break;case\"hh\":i=\"%d \\u0924\\u093e\\u0938\\u093e\\u0902\";break;case\"d\":i=\"\\u090f\\u0915\\u093e \\u0926\\u093f\\u0935\\u0938\\u093e\";break;case\"dd\":i=\"%d \\u0926\\u093f\\u0935\\u0938\\u093e\\u0902\";break;case\"M\":i=\"\\u090f\\u0915\\u093e \\u092e\\u0939\\u093f\\u0928\\u094d\\u092f\\u093e\";break;case\"MM\":i=\"%d \\u092e\\u0939\\u093f\\u0928\\u094d\\u092f\\u093e\\u0902\";break;case\"y\":i=\"\\u090f\\u0915\\u093e \\u0935\\u0930\\u094d\\u0937\\u093e\";break;case\"yy\":i=\"%d \\u0935\\u0930\\u094d\\u0937\\u093e\\u0902\"}return i.replace(/%d/i,e)}e.defineLocale(\"mr\",{months:\"\\u091c\\u093e\\u0928\\u0947\\u0935\\u093e\\u0930\\u0940_\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941\\u0935\\u093e\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u090f\\u092a\\u094d\\u0930\\u093f\\u0932_\\u092e\\u0947_\\u091c\\u0942\\u0928_\\u091c\\u0941\\u0932\\u0948_\\u0911\\u0917\\u0938\\u094d\\u091f_\\u0938\\u092a\\u094d\\u091f\\u0947\\u0902\\u092c\\u0930_\\u0911\\u0915\\u094d\\u091f\\u094b\\u092c\\u0930_\\u0928\\u094b\\u0935\\u094d\\u0939\\u0947\\u0902\\u092c\\u0930_\\u0921\\u093f\\u0938\\u0947\\u0902\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u093e\\u0928\\u0947._\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941._\\u092e\\u093e\\u0930\\u094d\\u091a._\\u090f\\u092a\\u094d\\u0930\\u093f._\\u092e\\u0947._\\u091c\\u0942\\u0928._\\u091c\\u0941\\u0932\\u0948._\\u0911\\u0917._\\u0938\\u092a\\u094d\\u091f\\u0947\\u0902._\\u0911\\u0915\\u094d\\u091f\\u094b._\\u0928\\u094b\\u0935\\u094d\\u0939\\u0947\\u0902._\\u0921\\u093f\\u0938\\u0947\\u0902.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0930\\u0935\\u093f\\u0935\\u093e\\u0930_\\u0938\\u094b\\u092e\\u0935\\u093e\\u0930_\\u092e\\u0902\\u0917\\u0933\\u0935\\u093e\\u0930_\\u092c\\u0941\\u0927\\u0935\\u093e\\u0930_\\u0917\\u0941\\u0930\\u0942\\u0935\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u0935\\u093e\\u0930_\\u0936\\u0928\\u093f\\u0935\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0930\\u0935\\u093f_\\u0938\\u094b\\u092e_\\u092e\\u0902\\u0917\\u0933_\\u092c\\u0941\\u0927_\\u0917\\u0941\\u0930\\u0942_\\u0936\\u0941\\u0915\\u094d\\u0930_\\u0936\\u0928\\u093f\".split(\"_\"),weekdaysMin:\"\\u0930_\\u0938\\u094b_\\u092e\\u0902_\\u092c\\u0941_\\u0917\\u0941_\\u0936\\u0941_\\u0936\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\",LTS:\"A h:mm:ss \\u0935\\u093e\\u091c\\u0924\\u093e\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u0935\\u093e\\u091c\\u0924\\u093e\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u0909\\u0926\\u094d\\u092f\\u093e] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0915\\u093e\\u0932] LT\",lastWeek:\"[\\u092e\\u093e\\u0917\\u0940\\u0932] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u092e\\u0927\\u094d\\u092f\\u0947\",past:\"%s\\u092a\\u0942\\u0930\\u094d\\u0935\\u0940\",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940|\\u0938\\u0915\\u093e\\u0933\\u0940|\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940|\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\"===t?e<4?e:e+12:\"\\u0938\\u0915\\u093e\\u0933\\u0940\"===t?e:\"\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940\"===t?e>=10?e:e+12:\"\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\":e<10?\"\\u0938\\u0915\\u093e\\u0933\\u0940\":e<17?\"\\u0926\\u0941\\u092a\\u093e\\u0930\\u0940\":e<20?\"\\u0938\\u093e\\u092f\\u0902\\u0915\\u093e\\u0933\\u0940\":\"\\u0930\\u093e\\u0924\\u094d\\u0930\\u0940\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},OjkT:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0967\",2:\"\\u0968\",3:\"\\u0969\",4:\"\\u096a\",5:\"\\u096b\",6:\"\\u096c\",7:\"\\u096d\",8:\"\\u096e\",9:\"\\u096f\",0:\"\\u0966\"},n={\"\\u0967\":\"1\",\"\\u0968\":\"2\",\"\\u0969\":\"3\",\"\\u096a\":\"4\",\"\\u096b\":\"5\",\"\\u096c\":\"6\",\"\\u096d\":\"7\",\"\\u096e\":\"8\",\"\\u096f\":\"9\",\"\\u0966\":\"0\"};e.defineLocale(\"ne\",{months:\"\\u091c\\u0928\\u0935\\u0930\\u0940_\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941\\u0935\\u0930\\u0940_\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u093f\\u0932_\\u092e\\u0908_\\u091c\\u0941\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908_\\u0905\\u0917\\u0937\\u094d\\u091f_\\u0938\\u0947\\u092a\\u094d\\u091f\\u0947\\u092e\\u094d\\u092c\\u0930_\\u0905\\u0915\\u094d\\u091f\\u094b\\u092c\\u0930_\\u0928\\u094b\\u092d\\u0947\\u092e\\u094d\\u092c\\u0930_\\u0921\\u093f\\u0938\\u0947\\u092e\\u094d\\u092c\\u0930\".split(\"_\"),monthsShort:\"\\u091c\\u0928._\\u092b\\u0947\\u092c\\u094d\\u0930\\u0941._\\u092e\\u093e\\u0930\\u094d\\u091a_\\u0905\\u092a\\u094d\\u0930\\u093f._\\u092e\\u0908_\\u091c\\u0941\\u0928_\\u091c\\u0941\\u0932\\u093e\\u0908._\\u0905\\u0917._\\u0938\\u0947\\u092a\\u094d\\u091f._\\u0905\\u0915\\u094d\\u091f\\u094b._\\u0928\\u094b\\u092d\\u0947._\\u0921\\u093f\\u0938\\u0947.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0906\\u0907\\u0924\\u092c\\u093e\\u0930_\\u0938\\u094b\\u092e\\u092c\\u093e\\u0930_\\u092e\\u0919\\u094d\\u0917\\u0932\\u092c\\u093e\\u0930_\\u092c\\u0941\\u0927\\u092c\\u093e\\u0930_\\u092c\\u093f\\u0939\\u093f\\u092c\\u093e\\u0930_\\u0936\\u0941\\u0915\\u094d\\u0930\\u092c\\u093e\\u0930_\\u0936\\u0928\\u093f\\u092c\\u093e\\u0930\".split(\"_\"),weekdaysShort:\"\\u0906\\u0907\\u0924._\\u0938\\u094b\\u092e._\\u092e\\u0919\\u094d\\u0917\\u0932._\\u092c\\u0941\\u0927._\\u092c\\u093f\\u0939\\u093f._\\u0936\\u0941\\u0915\\u094d\\u0930._\\u0936\\u0928\\u093f.\".split(\"_\"),weekdaysMin:\"\\u0906._\\u0938\\u094b._\\u092e\\u0902._\\u092c\\u0941._\\u092c\\u093f._\\u0936\\u0941._\\u0936.\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\",LTS:\"A\\u0915\\u094b h:mm:ss \\u092c\\u091c\\u0947\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\",LLLL:\"dddd, D MMMM YYYY, A\\u0915\\u094b h:mm \\u092c\\u091c\\u0947\"},preparse:function(e){return e.replace(/[\\u0967\\u0968\\u0969\\u096a\\u096b\\u096c\\u096d\\u096e\\u096f\\u0966]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0930\\u093e\\u0924\\u093f|\\u092c\\u093f\\u0939\\u093e\\u0928|\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b|\\u0938\\u093e\\u0901\\u091d/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0930\\u093e\\u0924\\u093f\"===t?e<4?e:e+12:\"\\u092c\\u093f\\u0939\\u093e\\u0928\"===t?e:\"\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b\"===t?e>=10?e:e+12:\"\\u0938\\u093e\\u0901\\u091d\"===t?e+12:void 0},meridiem:function(e,t,n){return e<3?\"\\u0930\\u093e\\u0924\\u093f\":e<12?\"\\u092c\\u093f\\u0939\\u093e\\u0928\":e<16?\"\\u0926\\u093f\\u0909\\u0901\\u0938\\u094b\":e<20?\"\\u0938\\u093e\\u0901\\u091d\":\"\\u0930\\u093e\\u0924\\u093f\"},calendar:{sameDay:\"[\\u0906\\u091c] LT\",nextDay:\"[\\u092d\\u094b\\u0932\\u093f] LT\",nextWeek:\"[\\u0906\\u0909\\u0901\\u0926\\u094b] dddd[,] LT\",lastDay:\"[\\u0939\\u093f\\u091c\\u094b] LT\",lastWeek:\"[\\u0917\\u090f\\u0915\\u094b] dddd[,] LT\",sameElse:\"L\"},relativeTime:{future:\"%s\\u092e\\u093e\",past:\"%s \\u0905\\u0917\\u093e\\u0921\\u093f\",s:\"\\u0915\\u0947\\u0939\\u0940 \\u0915\\u094d\\u0937\\u0923\",ss:\"%d \\u0938\\u0947\\u0915\\u0947\\u0923\\u094d\\u0921\",m:\"\\u090f\\u0915 \\u092e\\u093f\\u0928\\u0947\\u091f\",mm:\"%d \\u092e\\u093f\\u0928\\u0947\\u091f\",h:\"\\u090f\\u0915 \\u0918\\u0923\\u094d\\u091f\\u093e\",hh:\"%d \\u0918\\u0923\\u094d\\u091f\\u093e\",d:\"\\u090f\\u0915 \\u0926\\u093f\\u0928\",dd:\"%d \\u0926\\u093f\\u0928\",M:\"\\u090f\\u0915 \\u092e\\u0939\\u093f\\u0928\\u093e\",MM:\"%d \\u092e\\u0939\\u093f\\u0928\\u093e\",y:\"\\u090f\\u0915 \\u092c\\u0930\\u094d\\u0937\",yy:\"%d \\u092c\\u0930\\u094d\\u0937\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},Oxv6:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0443\\u043c\",1:\"-\\u0443\\u043c\",2:\"-\\u044e\\u043c\",3:\"-\\u044e\\u043c\",4:\"-\\u0443\\u043c\",5:\"-\\u0443\\u043c\",6:\"-\\u0443\\u043c\",7:\"-\\u0443\\u043c\",8:\"-\\u0443\\u043c\",9:\"-\\u0443\\u043c\",10:\"-\\u0443\\u043c\",12:\"-\\u0443\\u043c\",13:\"-\\u0443\\u043c\",20:\"-\\u0443\\u043c\",30:\"-\\u044e\\u043c\",40:\"-\\u0443\\u043c\",50:\"-\\u0443\\u043c\",60:\"-\\u0443\\u043c\",70:\"-\\u0443\\u043c\",80:\"-\\u0443\\u043c\",90:\"-\\u0443\\u043c\",100:\"-\\u0443\\u043c\"};e.defineLocale(\"tg\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440_\\u043d\\u043e\\u044f\\u0431\\u0440_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d_\\u0438\\u044e\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u044f\\u043a\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0434\\u0443\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0441\\u0435\\u0448\\u0430\\u043d\\u0431\\u0435_\\u0447\\u043e\\u0440\\u0448\\u0430\\u043d\\u0431\\u0435_\\u043f\\u0430\\u043d\\u04b7\\u0448\\u0430\\u043d\\u0431\\u0435_\\u04b7\\u0443\\u043c\\u044a\\u0430_\\u0448\\u0430\\u043d\\u0431\\u0435\".split(\"_\"),weekdaysShort:\"\\u044f\\u0448\\u0431_\\u0434\\u0448\\u0431_\\u0441\\u0448\\u0431_\\u0447\\u0448\\u0431_\\u043f\\u0448\\u0431_\\u04b7\\u0443\\u043c_\\u0448\\u043d\\u0431\".split(\"_\"),weekdaysMin:\"\\u044f\\u0448_\\u0434\\u0448_\\u0441\\u0448_\\u0447\\u0448_\\u043f\\u0448_\\u04b7\\u043c_\\u0448\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0418\\u043c\\u0440\\u04ef\\u0437 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",nextDay:\"[\\u041f\\u0430\\u0433\\u043e\\u04b3 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",lastDay:\"[\\u0414\\u0438\\u0440\\u04ef\\u0437 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",nextWeek:\"dddd[\\u0438] [\\u04b3\\u0430\\u0444\\u0442\\u0430\\u0438 \\u043e\\u044f\\u043d\\u0434\\u0430 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",lastWeek:\"dddd[\\u0438] [\\u04b3\\u0430\\u0444\\u0442\\u0430\\u0438 \\u0433\\u0443\\u0437\\u0430\\u0448\\u0442\\u0430 \\u0441\\u043e\\u0430\\u0442\\u0438] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0431\\u0430\\u044a\\u0434\\u0438 %s\",past:\"%s \\u043f\\u0435\\u0448\",s:\"\\u044f\\u043a\\u0447\\u0430\\u043d\\u0434 \\u0441\\u043e\\u043d\\u0438\\u044f\",m:\"\\u044f\\u043a \\u0434\\u0430\\u049b\\u0438\\u049b\\u0430\",mm:\"%d \\u0434\\u0430\\u049b\\u0438\\u049b\\u0430\",h:\"\\u044f\\u043a \\u0441\\u043e\\u0430\\u0442\",hh:\"%d \\u0441\\u043e\\u0430\\u0442\",d:\"\\u044f\\u043a \\u0440\\u04ef\\u0437\",dd:\"%d \\u0440\\u04ef\\u0437\",M:\"\\u044f\\u043a \\u043c\\u043e\\u04b3\",MM:\"%d \\u043c\\u043e\\u04b3\",y:\"\\u044f\\u043a \\u0441\\u043e\\u043b\",yy:\"%d \\u0441\\u043e\\u043b\"},meridiemParse:/\\u0448\\u0430\\u0431|\\u0441\\u0443\\u0431\\u04b3|\\u0440\\u04ef\\u0437|\\u0431\\u0435\\u0433\\u043e\\u04b3/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0448\\u0430\\u0431\"===t?e<4?e:e+12:\"\\u0441\\u0443\\u0431\\u04b3\"===t?e:\"\\u0440\\u04ef\\u0437\"===t?e>=11?e:e+12:\"\\u0431\\u0435\\u0433\\u043e\\u04b3\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0448\\u0430\\u0431\":e<11?\"\\u0441\\u0443\\u0431\\u04b3\":e<16?\"\\u0440\\u04ef\\u0437\":e<19?\"\\u0431\\u0435\\u0433\\u043e\\u04b3\":\"\\u0448\\u0430\\u0431\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0443\\u043c|\\u044e\\u043c)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},PA2r:function(e,t,n){!function(e){\"use strict\";var t=\"leden_\\xfanor_b\\u0159ezen_duben_kv\\u011bten_\\u010derven_\\u010dervenec_srpen_z\\xe1\\u0159\\xed_\\u0159\\xedjen_listopad_prosinec\".split(\"_\"),n=\"led_\\xfano_b\\u0159e_dub_kv\\u011b_\\u010dvn_\\u010dvc_srp_z\\xe1\\u0159_\\u0159\\xedj_lis_pro\".split(\"_\"),r=[/^led/i,/^\\xfano/i,/^b\\u0159e/i,/^dub/i,/^kv\\u011b/i,/^(\\u010dvn|\\u010derven$|\\u010dervna)/i,/^(\\u010dvc|\\u010dervenec|\\u010dervence)/i,/^srp/i,/^z\\xe1\\u0159/i,/^\\u0159\\xedj/i,/^lis/i,/^pro/i],i=/^(leden|\\xfanor|b\\u0159ezen|duben|kv\\u011bten|\\u010dervenec|\\u010dervence|\\u010derven|\\u010dervna|srpen|z\\xe1\\u0159\\xed|\\u0159\\xedjen|listopad|prosinec|led|\\xfano|b\\u0159e|dub|kv\\u011b|\\u010dvn|\\u010dvc|srp|z\\xe1\\u0159|\\u0159\\xedj|lis|pro)/i;function a(e){return e>1&&e<5&&1!=~~(e/10)}function o(e,t,n,r){var i=e+\" \";switch(n){case\"s\":return t||r?\"p\\xe1r sekund\":\"p\\xe1r sekundami\";case\"ss\":return t||r?i+(a(e)?\"sekundy\":\"sekund\"):i+\"sekundami\";case\"m\":return t?\"minuta\":r?\"minutu\":\"minutou\";case\"mm\":return t||r?i+(a(e)?\"minuty\":\"minut\"):i+\"minutami\";case\"h\":return t?\"hodina\":r?\"hodinu\":\"hodinou\";case\"hh\":return t||r?i+(a(e)?\"hodiny\":\"hodin\"):i+\"hodinami\";case\"d\":return t||r?\"den\":\"dnem\";case\"dd\":return t||r?i+(a(e)?\"dny\":\"dn\\xed\"):i+\"dny\";case\"M\":return t||r?\"m\\u011bs\\xedc\":\"m\\u011bs\\xedcem\";case\"MM\":return t||r?i+(a(e)?\"m\\u011bs\\xedce\":\"m\\u011bs\\xedc\\u016f\"):i+\"m\\u011bs\\xedci\";case\"y\":return t||r?\"rok\":\"rokem\";case\"yy\":return t||r?i+(a(e)?\"roky\":\"let\"):i+\"lety\"}}e.defineLocale(\"cs\",{months:t,monthsShort:n,monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(leden|ledna|\\xfanora|\\xfanor|b\\u0159ezen|b\\u0159ezna|duben|dubna|kv\\u011bten|kv\\u011btna|\\u010dervenec|\\u010dervence|\\u010derven|\\u010dervna|srpen|srpna|z\\xe1\\u0159\\xed|\\u0159\\xedjen|\\u0159\\xedjna|listopadu|listopad|prosinec|prosince)/i,monthsShortStrictRegex:/^(led|\\xfano|b\\u0159e|dub|kv\\u011b|\\u010dvn|\\u010dvc|srp|z\\xe1\\u0159|\\u0159\\xedj|lis|pro)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:\"ned\\u011ble_pond\\u011bl\\xed_\\xfater\\xfd_st\\u0159eda_\\u010dtvrtek_p\\xe1tek_sobota\".split(\"_\"),weekdaysShort:\"ne_po_\\xfat_st_\\u010dt_p\\xe1_so\".split(\"_\"),weekdaysMin:\"ne_po_\\xfat_st_\\u010dt_p\\xe1_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\",l:\"D. M. YYYY\"},calendar:{sameDay:\"[dnes v] LT\",nextDay:\"[z\\xedtra v] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v ned\\u011bli v] LT\";case 1:case 2:return\"[v] dddd [v] LT\";case 3:return\"[ve st\\u0159edu v] LT\";case 4:return\"[ve \\u010dtvrtek v] LT\";case 5:return\"[v p\\xe1tek v] LT\";case 6:return\"[v sobotu v] LT\"}},lastDay:\"[v\\u010dera v] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minulou ned\\u011bli v] LT\";case 1:case 2:return\"[minul\\xe9] dddd [v] LT\";case 3:return\"[minulou st\\u0159edu v] LT\";case 4:case 5:return\"[minul\\xfd] dddd [v] LT\";case 6:return\"[minulou sobotu v] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"p\\u0159ed %s\",s:o,ss:o,m:o,mm:o,h:o,hh:o,d:o,dd:o,M:o,MM:o,y:o,yy:o},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},PeUW:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0be7\",2:\"\\u0be8\",3:\"\\u0be9\",4:\"\\u0bea\",5:\"\\u0beb\",6:\"\\u0bec\",7:\"\\u0bed\",8:\"\\u0bee\",9:\"\\u0bef\",0:\"\\u0be6\"},n={\"\\u0be7\":\"1\",\"\\u0be8\":\"2\",\"\\u0be9\":\"3\",\"\\u0bea\":\"4\",\"\\u0beb\":\"5\",\"\\u0bec\":\"6\",\"\\u0bed\":\"7\",\"\\u0bee\":\"8\",\"\\u0bef\":\"9\",\"\\u0be6\":\"0\"};e.defineLocale(\"ta\",{months:\"\\u0b9c\\u0ba9\\u0bb5\\u0bb0\\u0bbf_\\u0baa\\u0bbf\\u0baa\\u0bcd\\u0bb0\\u0bb5\\u0bb0\\u0bbf_\\u0bae\\u0bbe\\u0bb0\\u0bcd\\u0b9a\\u0bcd_\\u0b8f\\u0baa\\u0bcd\\u0bb0\\u0bb2\\u0bcd_\\u0bae\\u0bc7_\\u0b9c\\u0bc2\\u0ba9\\u0bcd_\\u0b9c\\u0bc2\\u0bb2\\u0bc8_\\u0b86\\u0b95\\u0bb8\\u0bcd\\u0b9f\\u0bcd_\\u0b9a\\u0bc6\\u0baa\\u0bcd\\u0b9f\\u0bc6\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b85\\u0b95\\u0bcd\\u0b9f\\u0bc7\\u0bbe\\u0baa\\u0bb0\\u0bcd_\\u0ba8\\u0bb5\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b9f\\u0bbf\\u0b9a\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd\".split(\"_\"),monthsShort:\"\\u0b9c\\u0ba9\\u0bb5\\u0bb0\\u0bbf_\\u0baa\\u0bbf\\u0baa\\u0bcd\\u0bb0\\u0bb5\\u0bb0\\u0bbf_\\u0bae\\u0bbe\\u0bb0\\u0bcd\\u0b9a\\u0bcd_\\u0b8f\\u0baa\\u0bcd\\u0bb0\\u0bb2\\u0bcd_\\u0bae\\u0bc7_\\u0b9c\\u0bc2\\u0ba9\\u0bcd_\\u0b9c\\u0bc2\\u0bb2\\u0bc8_\\u0b86\\u0b95\\u0bb8\\u0bcd\\u0b9f\\u0bcd_\\u0b9a\\u0bc6\\u0baa\\u0bcd\\u0b9f\\u0bc6\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b85\\u0b95\\u0bcd\\u0b9f\\u0bc7\\u0bbe\\u0baa\\u0bb0\\u0bcd_\\u0ba8\\u0bb5\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd_\\u0b9f\\u0bbf\\u0b9a\\u0bae\\u0bcd\\u0baa\\u0bb0\\u0bcd\".split(\"_\"),weekdays:\"\\u0b9e\\u0bbe\\u0baf\\u0bbf\\u0bb1\\u0bcd\\u0bb1\\u0bc1\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0ba4\\u0bbf\\u0b99\\u0bcd\\u0b95\\u0b9f\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0b9a\\u0bc6\\u0bb5\\u0bcd\\u0bb5\\u0bbe\\u0baf\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0baa\\u0bc1\\u0ba4\\u0ba9\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0bb5\\u0bbf\\u0baf\\u0bbe\\u0bb4\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0bb5\\u0bc6\\u0bb3\\u0bcd\\u0bb3\\u0bbf\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8_\\u0b9a\\u0ba9\\u0bbf\\u0b95\\u0bcd\\u0b95\\u0bbf\\u0bb4\\u0bae\\u0bc8\".split(\"_\"),weekdaysShort:\"\\u0b9e\\u0bbe\\u0baf\\u0bbf\\u0bb1\\u0bc1_\\u0ba4\\u0bbf\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd_\\u0b9a\\u0bc6\\u0bb5\\u0bcd\\u0bb5\\u0bbe\\u0baf\\u0bcd_\\u0baa\\u0bc1\\u0ba4\\u0ba9\\u0bcd_\\u0bb5\\u0bbf\\u0baf\\u0bbe\\u0bb4\\u0ba9\\u0bcd_\\u0bb5\\u0bc6\\u0bb3\\u0bcd\\u0bb3\\u0bbf_\\u0b9a\\u0ba9\\u0bbf\".split(\"_\"),weekdaysMin:\"\\u0b9e\\u0bbe_\\u0ba4\\u0bbf_\\u0b9a\\u0bc6_\\u0baa\\u0bc1_\\u0bb5\\u0bbf_\\u0bb5\\u0bc6_\\u0b9a\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, HH:mm\",LLLL:\"dddd, D MMMM YYYY, HH:mm\"},calendar:{sameDay:\"[\\u0b87\\u0ba9\\u0bcd\\u0bb1\\u0bc1] LT\",nextDay:\"[\\u0ba8\\u0bbe\\u0bb3\\u0bc8] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0ba8\\u0bc7\\u0bb1\\u0bcd\\u0bb1\\u0bc1] LT\",lastWeek:\"[\\u0b95\\u0b9f\\u0ba8\\u0bcd\\u0ba4 \\u0bb5\\u0bbe\\u0bb0\\u0bae\\u0bcd] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0b87\\u0bb2\\u0bcd\",past:\"%s \\u0bae\\u0bc1\\u0ba9\\u0bcd\",s:\"\\u0b92\\u0bb0\\u0bc1 \\u0b9a\\u0bbf\\u0bb2 \\u0bb5\\u0bbf\\u0ba8\\u0bbe\\u0b9f\\u0bbf\\u0b95\\u0bb3\\u0bcd\",ss:\"%d \\u0bb5\\u0bbf\\u0ba8\\u0bbe\\u0b9f\\u0bbf\\u0b95\\u0bb3\\u0bcd\",m:\"\\u0b92\\u0bb0\\u0bc1 \\u0ba8\\u0bbf\\u0bae\\u0bbf\\u0b9f\\u0bae\\u0bcd\",mm:\"%d \\u0ba8\\u0bbf\\u0bae\\u0bbf\\u0b9f\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd\",h:\"\\u0b92\\u0bb0\\u0bc1 \\u0bae\\u0ba3\\u0bbf \\u0ba8\\u0bc7\\u0bb0\\u0bae\\u0bcd\",hh:\"%d \\u0bae\\u0ba3\\u0bbf \\u0ba8\\u0bc7\\u0bb0\\u0bae\\u0bcd\",d:\"\\u0b92\\u0bb0\\u0bc1 \\u0ba8\\u0bbe\\u0bb3\\u0bcd\",dd:\"%d \\u0ba8\\u0bbe\\u0b9f\\u0bcd\\u0b95\\u0bb3\\u0bcd\",M:\"\\u0b92\\u0bb0\\u0bc1 \\u0bae\\u0bbe\\u0ba4\\u0bae\\u0bcd\",MM:\"%d \\u0bae\\u0bbe\\u0ba4\\u0b99\\u0bcd\\u0b95\\u0bb3\\u0bcd\",y:\"\\u0b92\\u0bb0\\u0bc1 \\u0bb5\\u0bb0\\u0bc1\\u0b9f\\u0bae\\u0bcd\",yy:\"%d \\u0b86\\u0ba3\\u0bcd\\u0b9f\\u0bc1\\u0b95\\u0bb3\\u0bcd\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u0bb5\\u0ba4\\u0bc1/,ordinal:function(e){return e+\"\\u0bb5\\u0ba4\\u0bc1\"},preparse:function(e){return e.replace(/[\\u0be7\\u0be8\\u0be9\\u0bea\\u0beb\\u0bec\\u0bed\\u0bee\\u0bef\\u0be6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd|\\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8|\\u0b95\\u0bbe\\u0bb2\\u0bc8|\\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd|\\u0b8e\\u0bb1\\u0bcd\\u0baa\\u0bbe\\u0b9f\\u0bc1|\\u0bae\\u0bbe\\u0bb2\\u0bc8/,meridiem:function(e,t,n){return e<2?\" \\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\":e<6?\" \\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8\":e<10?\" \\u0b95\\u0bbe\\u0bb2\\u0bc8\":e<14?\" \\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd\":e<18?\" \\u0b8e\\u0bb1\\u0bcd\\u0baa\\u0bbe\\u0b9f\\u0bc1\":e<22?\" \\u0bae\\u0bbe\\u0bb2\\u0bc8\":\" \\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0baf\\u0bbe\\u0bae\\u0bae\\u0bcd\"===t?e<2?e:e+12:\"\\u0bb5\\u0bc8\\u0b95\\u0bb1\\u0bc8\"===t||\"\\u0b95\\u0bbe\\u0bb2\\u0bc8\"===t||\"\\u0ba8\\u0ba3\\u0bcd\\u0baa\\u0b95\\u0bb2\\u0bcd\"===t&&e>=10?e:e+12},week:{dow:0,doy:6}})}(n(\"wd/R\"))},PpIw:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0ce7\",2:\"\\u0ce8\",3:\"\\u0ce9\",4:\"\\u0cea\",5:\"\\u0ceb\",6:\"\\u0cec\",7:\"\\u0ced\",8:\"\\u0cee\",9:\"\\u0cef\",0:\"\\u0ce6\"},n={\"\\u0ce7\":\"1\",\"\\u0ce8\":\"2\",\"\\u0ce9\":\"3\",\"\\u0cea\":\"4\",\"\\u0ceb\":\"5\",\"\\u0cec\":\"6\",\"\\u0ced\":\"7\",\"\\u0cee\":\"8\",\"\\u0cef\":\"9\",\"\\u0ce6\":\"0\"};e.defineLocale(\"kn\",{months:\"\\u0c9c\\u0ca8\\u0cb5\\u0cb0\\u0cbf_\\u0cab\\u0cc6\\u0cac\\u0ccd\\u0cb0\\u0cb5\\u0cb0\\u0cbf_\\u0cae\\u0cbe\\u0cb0\\u0ccd\\u0c9a\\u0ccd_\\u0c8f\\u0caa\\u0ccd\\u0cb0\\u0cbf\\u0cb2\\u0ccd_\\u0cae\\u0cc6\\u0cd5_\\u0c9c\\u0cc2\\u0ca8\\u0ccd_\\u0c9c\\u0cc1\\u0cb2\\u0cc6\\u0cd6_\\u0c86\\u0c97\\u0cb8\\u0ccd\\u0c9f\\u0ccd_\\u0cb8\\u0cc6\\u0caa\\u0ccd\\u0c9f\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd_\\u0c85\\u0c95\\u0ccd\\u0c9f\\u0cc6\\u0cc2\\u0cd5\\u0cac\\u0cb0\\u0ccd_\\u0ca8\\u0cb5\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd_\\u0ca1\\u0cbf\\u0cb8\\u0cc6\\u0c82\\u0cac\\u0cb0\\u0ccd\".split(\"_\"),monthsShort:\"\\u0c9c\\u0ca8_\\u0cab\\u0cc6\\u0cac\\u0ccd\\u0cb0_\\u0cae\\u0cbe\\u0cb0\\u0ccd\\u0c9a\\u0ccd_\\u0c8f\\u0caa\\u0ccd\\u0cb0\\u0cbf\\u0cb2\\u0ccd_\\u0cae\\u0cc6\\u0cd5_\\u0c9c\\u0cc2\\u0ca8\\u0ccd_\\u0c9c\\u0cc1\\u0cb2\\u0cc6\\u0cd6_\\u0c86\\u0c97\\u0cb8\\u0ccd\\u0c9f\\u0ccd_\\u0cb8\\u0cc6\\u0caa\\u0ccd\\u0c9f\\u0cc6\\u0c82_\\u0c85\\u0c95\\u0ccd\\u0c9f\\u0cc6\\u0cc2\\u0cd5_\\u0ca8\\u0cb5\\u0cc6\\u0c82_\\u0ca1\\u0cbf\\u0cb8\\u0cc6\\u0c82\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0cad\\u0cbe\\u0ca8\\u0cc1\\u0cb5\\u0cbe\\u0cb0_\\u0cb8\\u0cc6\\u0cc2\\u0cd5\\u0cae\\u0cb5\\u0cbe\\u0cb0_\\u0cae\\u0c82\\u0c97\\u0cb3\\u0cb5\\u0cbe\\u0cb0_\\u0cac\\u0cc1\\u0ca7\\u0cb5\\u0cbe\\u0cb0_\\u0c97\\u0cc1\\u0cb0\\u0cc1\\u0cb5\\u0cbe\\u0cb0_\\u0cb6\\u0cc1\\u0c95\\u0ccd\\u0cb0\\u0cb5\\u0cbe\\u0cb0_\\u0cb6\\u0ca8\\u0cbf\\u0cb5\\u0cbe\\u0cb0\".split(\"_\"),weekdaysShort:\"\\u0cad\\u0cbe\\u0ca8\\u0cc1_\\u0cb8\\u0cc6\\u0cc2\\u0cd5\\u0cae_\\u0cae\\u0c82\\u0c97\\u0cb3_\\u0cac\\u0cc1\\u0ca7_\\u0c97\\u0cc1\\u0cb0\\u0cc1_\\u0cb6\\u0cc1\\u0c95\\u0ccd\\u0cb0_\\u0cb6\\u0ca8\\u0cbf\".split(\"_\"),weekdaysMin:\"\\u0cad\\u0cbe_\\u0cb8\\u0cc6\\u0cc2\\u0cd5_\\u0cae\\u0c82_\\u0cac\\u0cc1_\\u0c97\\u0cc1_\\u0cb6\\u0cc1_\\u0cb6\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0c87\\u0c82\\u0ca6\\u0cc1] LT\",nextDay:\"[\\u0ca8\\u0cbe\\u0cb3\\u0cc6] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0ca8\\u0cbf\\u0ca8\\u0ccd\\u0ca8\\u0cc6] LT\",lastWeek:\"[\\u0c95\\u0cc6\\u0cc2\\u0ca8\\u0cc6\\u0caf] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0ca8\\u0c82\\u0ca4\\u0cb0\",past:\"%s \\u0cb9\\u0cbf\\u0c82\\u0ca6\\u0cc6\",s:\"\\u0c95\\u0cc6\\u0cb2\\u0cb5\\u0cc1 \\u0c95\\u0ccd\\u0cb7\\u0ca3\\u0c97\\u0cb3\\u0cc1\",ss:\"%d \\u0cb8\\u0cc6\\u0c95\\u0cc6\\u0c82\\u0ca1\\u0cc1\\u0c97\\u0cb3\\u0cc1\",m:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca8\\u0cbf\\u0cae\\u0cbf\\u0cb7\",mm:\"%d \\u0ca8\\u0cbf\\u0cae\\u0cbf\\u0cb7\",h:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0c97\\u0c82\\u0c9f\\u0cc6\",hh:\"%d \\u0c97\\u0c82\\u0c9f\\u0cc6\",d:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca6\\u0cbf\\u0ca8\",dd:\"%d \\u0ca6\\u0cbf\\u0ca8\",M:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0ca4\\u0cbf\\u0c82\\u0c97\\u0cb3\\u0cc1\",MM:\"%d \\u0ca4\\u0cbf\\u0c82\\u0c97\\u0cb3\\u0cc1\",y:\"\\u0c92\\u0c82\\u0ca6\\u0cc1 \\u0cb5\\u0cb0\\u0ccd\\u0cb7\",yy:\"%d \\u0cb5\\u0cb0\\u0ccd\\u0cb7\"},preparse:function(e){return e.replace(/[\\u0ce7\\u0ce8\\u0ce9\\u0cea\\u0ceb\\u0cec\\u0ced\\u0cee\\u0cef\\u0ce6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf|\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6|\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8|\\u0cb8\\u0c82\\u0c9c\\u0cc6/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\"===t?e<4?e:e+12:\"\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6\"===t?e:\"\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8\"===t?e>=10?e:e+12:\"\\u0cb8\\u0c82\\u0c9c\\u0cc6\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\":e<10?\"\\u0cac\\u0cc6\\u0cb3\\u0cbf\\u0c97\\u0ccd\\u0c97\\u0cc6\":e<17?\"\\u0cae\\u0ca7\\u0ccd\\u0caf\\u0cbe\\u0cb9\\u0ccd\\u0ca8\":e<20?\"\\u0cb8\\u0c82\\u0c9c\\u0cc6\":\"\\u0cb0\\u0cbe\\u0ca4\\u0ccd\\u0cb0\\u0cbf\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u0ca8\\u0cc6\\u0cd5)/,ordinal:function(e){return e+\"\\u0ca8\\u0cc6\\u0cd5\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},Qj4J:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-kw\",{months:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648\\u0632_\\u063a\\u0634\\u062a_\\u0634\\u062a\\u0646\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0646\\u0628\\u0631_\\u062f\\u062c\\u0646\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648\\u0632_\\u063a\\u0634\\u062a_\\u0634\\u062a\\u0646\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0646\\u0628\\u0631_\\u062f\\u062c\\u0646\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062a\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0627\\u062d\\u062f_\\u0627\\u062a\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:0,doy:12}})}(n(\"wd/R\"))},RAwQ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={m:[\"eng Minutt\",\"enger Minutt\"],h:[\"eng Stonn\",\"enger Stonn\"],d:[\"een Dag\",\"engem Dag\"],M:[\"ee Mount\",\"engem Mount\"],y:[\"ee Joer\",\"engem Joer\"]};return t?i[n][0]:i[n][1]}function n(e){if(e=parseInt(e,10),isNaN(e))return!1;if(e<0)return!0;if(e<10)return 4<=e&&e<=7;if(e<100){var t=e%10;return n(0===t?e/10:t)}if(e<1e4){for(;e>=10;)e/=10;return n(e)}return n(e/=1e3)}e.defineLocale(\"lb\",{months:\"Januar_Februar_M\\xe4erz_Abr\\xebll_Mee_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonndeg_M\\xe9indeg_D\\xebnschdeg_M\\xebttwoch_Donneschdeg_Freideg_Samschdeg\".split(\"_\"),weekdaysShort:\"So._M\\xe9._D\\xeb._M\\xeb._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_M\\xe9_D\\xeb_M\\xeb_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm [Auer]\",LTS:\"H:mm:ss [Auer]\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm [Auer]\",LLLL:\"dddd, D. MMMM YYYY H:mm [Auer]\"},calendar:{sameDay:\"[Haut um] LT\",sameElse:\"L\",nextDay:\"[Muer um] LT\",nextWeek:\"dddd [um] LT\",lastDay:\"[G\\xebschter um] LT\",lastWeek:function(){switch(this.day()){case 2:case 4:return\"[Leschten] dddd [um] LT\";default:return\"[Leschte] dddd [um] LT\"}}},relativeTime:{future:function(e){return n(e.substr(0,e.indexOf(\" \")))?\"a \"+e:\"an \"+e},past:function(e){return n(e.substr(0,e.indexOf(\" \")))?\"viru \"+e:\"virun \"+e},s:\"e puer Sekonnen\",ss:\"%d Sekonnen\",m:t,mm:\"%d Minutten\",h:t,hh:\"%d Stonnen\",d:t,dd:\"%d Deeg\",M:t,MM:\"%d M\\xe9int\",y:t,yy:\"%d Joer\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},RnhZ:function(e,t,n){var r={\"./af\":\"K/tc\",\"./af.js\":\"K/tc\",\"./ar\":\"jnO4\",\"./ar-dz\":\"o1bE\",\"./ar-dz.js\":\"o1bE\",\"./ar-kw\":\"Qj4J\",\"./ar-kw.js\":\"Qj4J\",\"./ar-ly\":\"HP3h\",\"./ar-ly.js\":\"HP3h\",\"./ar-ma\":\"CoRJ\",\"./ar-ma.js\":\"CoRJ\",\"./ar-sa\":\"gjCT\",\"./ar-sa.js\":\"gjCT\",\"./ar-tn\":\"bYM6\",\"./ar-tn.js\":\"bYM6\",\"./ar.js\":\"jnO4\",\"./az\":\"SFxW\",\"./az.js\":\"SFxW\",\"./be\":\"H8ED\",\"./be.js\":\"H8ED\",\"./bg\":\"hKrs\",\"./bg.js\":\"hKrs\",\"./bm\":\"p/rL\",\"./bm.js\":\"p/rL\",\"./bn\":\"kEOa\",\"./bn.js\":\"kEOa\",\"./bo\":\"0mo+\",\"./bo.js\":\"0mo+\",\"./br\":\"aIdf\",\"./br.js\":\"aIdf\",\"./bs\":\"JVSJ\",\"./bs.js\":\"JVSJ\",\"./ca\":\"1xZ4\",\"./ca.js\":\"1xZ4\",\"./cs\":\"PA2r\",\"./cs.js\":\"PA2r\",\"./cv\":\"A+xa\",\"./cv.js\":\"A+xa\",\"./cy\":\"l5ep\",\"./cy.js\":\"l5ep\",\"./da\":\"DxQv\",\"./da.js\":\"DxQv\",\"./de\":\"tGlX\",\"./de-at\":\"s+uk\",\"./de-at.js\":\"s+uk\",\"./de-ch\":\"u3GI\",\"./de-ch.js\":\"u3GI\",\"./de.js\":\"tGlX\",\"./dv\":\"WYrj\",\"./dv.js\":\"WYrj\",\"./el\":\"jUeY\",\"./el.js\":\"jUeY\",\"./en-SG\":\"zavE\",\"./en-SG.js\":\"zavE\",\"./en-au\":\"Dmvi\",\"./en-au.js\":\"Dmvi\",\"./en-ca\":\"OIYi\",\"./en-ca.js\":\"OIYi\",\"./en-gb\":\"Oaa7\",\"./en-gb.js\":\"Oaa7\",\"./en-ie\":\"4dOw\",\"./en-ie.js\":\"4dOw\",\"./en-il\":\"czMo\",\"./en-il.js\":\"czMo\",\"./en-nz\":\"b1Dy\",\"./en-nz.js\":\"b1Dy\",\"./eo\":\"Zduo\",\"./eo.js\":\"Zduo\",\"./es\":\"iYuL\",\"./es-do\":\"CjzT\",\"./es-do.js\":\"CjzT\",\"./es-us\":\"Vclq\",\"./es-us.js\":\"Vclq\",\"./es.js\":\"iYuL\",\"./et\":\"7BjC\",\"./et.js\":\"7BjC\",\"./eu\":\"D/JM\",\"./eu.js\":\"D/JM\",\"./fa\":\"jfSC\",\"./fa.js\":\"jfSC\",\"./fi\":\"gekB\",\"./fi.js\":\"gekB\",\"./fo\":\"ByF4\",\"./fo.js\":\"ByF4\",\"./fr\":\"nyYc\",\"./fr-ca\":\"2fjn\",\"./fr-ca.js\":\"2fjn\",\"./fr-ch\":\"Dkky\",\"./fr-ch.js\":\"Dkky\",\"./fr.js\":\"nyYc\",\"./fy\":\"cRix\",\"./fy.js\":\"cRix\",\"./ga\":\"USCx\",\"./ga.js\":\"USCx\",\"./gd\":\"9rRi\",\"./gd.js\":\"9rRi\",\"./gl\":\"iEDd\",\"./gl.js\":\"iEDd\",\"./gom-latn\":\"DKr+\",\"./gom-latn.js\":\"DKr+\",\"./gu\":\"4MV3\",\"./gu.js\":\"4MV3\",\"./he\":\"x6pH\",\"./he.js\":\"x6pH\",\"./hi\":\"3E1r\",\"./hi.js\":\"3E1r\",\"./hr\":\"S6ln\",\"./hr.js\":\"S6ln\",\"./hu\":\"WxRl\",\"./hu.js\":\"WxRl\",\"./hy-am\":\"1rYy\",\"./hy-am.js\":\"1rYy\",\"./id\":\"UDhR\",\"./id.js\":\"UDhR\",\"./is\":\"BVg3\",\"./is.js\":\"BVg3\",\"./it\":\"bpih\",\"./it-ch\":\"bxKX\",\"./it-ch.js\":\"bxKX\",\"./it.js\":\"bpih\",\"./ja\":\"B55N\",\"./ja.js\":\"B55N\",\"./jv\":\"tUCv\",\"./jv.js\":\"tUCv\",\"./ka\":\"IBtZ\",\"./ka.js\":\"IBtZ\",\"./kk\":\"bXm7\",\"./kk.js\":\"bXm7\",\"./km\":\"6B0Y\",\"./km.js\":\"6B0Y\",\"./kn\":\"PpIw\",\"./kn.js\":\"PpIw\",\"./ko\":\"Ivi+\",\"./ko.js\":\"Ivi+\",\"./ku\":\"JCF/\",\"./ku.js\":\"JCF/\",\"./ky\":\"lgnt\",\"./ky.js\":\"lgnt\",\"./lb\":\"RAwQ\",\"./lb.js\":\"RAwQ\",\"./lo\":\"sp3z\",\"./lo.js\":\"sp3z\",\"./lt\":\"JvlW\",\"./lt.js\":\"JvlW\",\"./lv\":\"uXwI\",\"./lv.js\":\"uXwI\",\"./me\":\"KTz0\",\"./me.js\":\"KTz0\",\"./mi\":\"aIsn\",\"./mi.js\":\"aIsn\",\"./mk\":\"aQkU\",\"./mk.js\":\"aQkU\",\"./ml\":\"AvvY\",\"./ml.js\":\"AvvY\",\"./mn\":\"lYtQ\",\"./mn.js\":\"lYtQ\",\"./mr\":\"Ob0Z\",\"./mr.js\":\"Ob0Z\",\"./ms\":\"6+QB\",\"./ms-my\":\"ZAMP\",\"./ms-my.js\":\"ZAMP\",\"./ms.js\":\"6+QB\",\"./mt\":\"G0Uy\",\"./mt.js\":\"G0Uy\",\"./my\":\"honF\",\"./my.js\":\"honF\",\"./nb\":\"bOMt\",\"./nb.js\":\"bOMt\",\"./ne\":\"OjkT\",\"./ne.js\":\"OjkT\",\"./nl\":\"+s0g\",\"./nl-be\":\"2ykv\",\"./nl-be.js\":\"2ykv\",\"./nl.js\":\"+s0g\",\"./nn\":\"uEye\",\"./nn.js\":\"uEye\",\"./pa-in\":\"8/+R\",\"./pa-in.js\":\"8/+R\",\"./pl\":\"jVdC\",\"./pl.js\":\"jVdC\",\"./pt\":\"8mBD\",\"./pt-br\":\"0tRk\",\"./pt-br.js\":\"0tRk\",\"./pt.js\":\"8mBD\",\"./ro\":\"lyxo\",\"./ro.js\":\"lyxo\",\"./ru\":\"lXzo\",\"./ru.js\":\"lXzo\",\"./sd\":\"Z4QM\",\"./sd.js\":\"Z4QM\",\"./se\":\"//9w\",\"./se.js\":\"//9w\",\"./si\":\"7aV9\",\"./si.js\":\"7aV9\",\"./sk\":\"e+ae\",\"./sk.js\":\"e+ae\",\"./sl\":\"gVVK\",\"./sl.js\":\"gVVK\",\"./sq\":\"yPMs\",\"./sq.js\":\"yPMs\",\"./sr\":\"zx6S\",\"./sr-cyrl\":\"E+lV\",\"./sr-cyrl.js\":\"E+lV\",\"./sr.js\":\"zx6S\",\"./ss\":\"Ur1D\",\"./ss.js\":\"Ur1D\",\"./sv\":\"X709\",\"./sv.js\":\"X709\",\"./sw\":\"dNwA\",\"./sw.js\":\"dNwA\",\"./ta\":\"PeUW\",\"./ta.js\":\"PeUW\",\"./te\":\"XLvN\",\"./te.js\":\"XLvN\",\"./tet\":\"V2x9\",\"./tet.js\":\"V2x9\",\"./tg\":\"Oxv6\",\"./tg.js\":\"Oxv6\",\"./th\":\"EOgW\",\"./th.js\":\"EOgW\",\"./tl-ph\":\"Dzi0\",\"./tl-ph.js\":\"Dzi0\",\"./tlh\":\"z3Vd\",\"./tlh.js\":\"z3Vd\",\"./tr\":\"DoHr\",\"./tr.js\":\"DoHr\",\"./tzl\":\"z1FC\",\"./tzl.js\":\"z1FC\",\"./tzm\":\"wQk9\",\"./tzm-latn\":\"tT3J\",\"./tzm-latn.js\":\"tT3J\",\"./tzm.js\":\"wQk9\",\"./ug-cn\":\"YRex\",\"./ug-cn.js\":\"YRex\",\"./uk\":\"raLr\",\"./uk.js\":\"raLr\",\"./ur\":\"UpQW\",\"./ur.js\":\"UpQW\",\"./uz\":\"Loxo\",\"./uz-latn\":\"AQ68\",\"./uz-latn.js\":\"AQ68\",\"./uz.js\":\"Loxo\",\"./vi\":\"KSF8\",\"./vi.js\":\"KSF8\",\"./x-pseudo\":\"/X5v\",\"./x-pseudo.js\":\"/X5v\",\"./yo\":\"fzPg\",\"./yo.js\":\"fzPg\",\"./zh-cn\":\"XDpg\",\"./zh-cn.js\":\"XDpg\",\"./zh-hk\":\"SatO\",\"./zh-hk.js\":\"SatO\",\"./zh-tw\":\"kOpN\",\"./zh-tw.js\":\"kOpN\"};function i(e){var t=a(e);return n(t)}function a(e){if(!n.o(r,e)){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}return r[e]}i.keys=function(){return Object.keys(r)},i.resolve=a,e.exports=i,i.id=\"RnhZ\"},S6ln:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r=e+\" \";switch(n){case\"ss\":return r+(1===e?\"sekunda\":2===e||3===e||4===e?\"sekunde\":\"sekundi\");case\"m\":return t?\"jedna minuta\":\"jedne minute\";case\"mm\":return r+(1===e?\"minuta\":2===e||3===e||4===e?\"minute\":\"minuta\");case\"h\":return t?\"jedan sat\":\"jednog sata\";case\"hh\":return r+(1===e?\"sat\":2===e||3===e||4===e?\"sata\":\"sati\");case\"dd\":return r+(1===e?\"dan\":\"dana\");case\"MM\":return r+(1===e?\"mjesec\":2===e||3===e||4===e?\"mjeseca\":\"mjeseci\");case\"yy\":return r+(1===e?\"godina\":2===e||3===e||4===e?\"godine\":\"godina\")}}e.defineLocale(\"hr\",{months:{format:\"sije\\u010dnja_velja\\u010de_o\\u017eujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca\".split(\"_\"),standalone:\"sije\\u010danj_velja\\u010da_o\\u017eujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac\".split(\"_\")},monthsShort:\"sij._velj._o\\u017eu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedjelja_ponedjeljak_utorak_srijeda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sri._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedjelju] [u] LT\";case 3:return\"[u] [srijedu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010der u] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:return\"[pro\\u0161lu] dddd [u] LT\";case 6:return\"[pro\\u0161le] [subote] [u] LT\";case 1:case 2:case 4:case 5:return\"[pro\\u0161li] dddd [u] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"prije %s\",s:\"par sekundi\",ss:t,m:t,mm:t,h:t,hh:t,d:\"dan\",dd:t,M:\"mjesec\",MM:t,y:\"godinu\",yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},SFxW:function(e,t,n){!function(e){\"use strict\";var t={1:\"-inci\",5:\"-inci\",8:\"-inci\",70:\"-inci\",80:\"-inci\",2:\"-nci\",7:\"-nci\",20:\"-nci\",50:\"-nci\",3:\"-\\xfcnc\\xfc\",4:\"-\\xfcnc\\xfc\",100:\"-\\xfcnc\\xfc\",6:\"-nc\\u0131\",9:\"-uncu\",10:\"-uncu\",30:\"-uncu\",60:\"-\\u0131nc\\u0131\",90:\"-\\u0131nc\\u0131\"};e.defineLocale(\"az\",{months:\"yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr\".split(\"_\"),monthsShort:\"yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek\".split(\"_\"),weekdays:\"Bazar_Bazar ert\\u0259si_\\xc7\\u0259r\\u015f\\u0259nb\\u0259 ax\\u015fam\\u0131_\\xc7\\u0259r\\u015f\\u0259nb\\u0259_C\\xfcm\\u0259 ax\\u015fam\\u0131_C\\xfcm\\u0259_\\u015e\\u0259nb\\u0259\".split(\"_\"),weekdaysShort:\"Baz_BzE_\\xc7Ax_\\xc7\\u0259r_CAx_C\\xfcm_\\u015e\\u0259n\".split(\"_\"),weekdaysMin:\"Bz_BE_\\xc7A_\\xc7\\u0259_CA_C\\xfc_\\u015e\\u0259\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[bug\\xfcn saat] LT\",nextDay:\"[sabah saat] LT\",nextWeek:\"[g\\u0259l\\u0259n h\\u0259ft\\u0259] dddd [saat] LT\",lastDay:\"[d\\xfcn\\u0259n] LT\",lastWeek:\"[ke\\xe7\\u0259n h\\u0259ft\\u0259] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s sonra\",past:\"%s \\u0259vv\\u0259l\",s:\"birne\\xe7\\u0259 saniy\\u0259\",ss:\"%d saniy\\u0259\",m:\"bir d\\u0259qiq\\u0259\",mm:\"%d d\\u0259qiq\\u0259\",h:\"bir saat\",hh:\"%d saat\",d:\"bir g\\xfcn\",dd:\"%d g\\xfcn\",M:\"bir ay\",MM:\"%d ay\",y:\"bir il\",yy:\"%d il\"},meridiemParse:/gec\\u0259|s\\u0259h\\u0259r|g\\xfcnd\\xfcz|ax\\u015fam/,isPM:function(e){return/^(g\\xfcnd\\xfcz|ax\\u015fam)$/.test(e)},meridiem:function(e,t,n){return e<4?\"gec\\u0259\":e<12?\"s\\u0259h\\u0259r\":e<17?\"g\\xfcnd\\xfcz\":\"ax\\u015fam\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0131nc\\u0131|inci|nci|\\xfcnc\\xfc|nc\\u0131|uncu)/,ordinal:function(e){if(0===e)return e+\"-\\u0131nc\\u0131\";var n=e%10;return e+(t[n]||t[e%100-n]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},SatO:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-hk\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u9031\\u65e5_\\u9031\\u4e00_\\u9031\\u4e8c_\\u9031\\u4e09_\\u9031\\u56db_\\u9031\\u4e94_\\u9031\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e2d\\u5348\"===t?e>=11?e:e+12:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:void 0},meridiem:function(e,t,n){var r=100*e+t;return r<600?\"\\u51cc\\u6668\":r<900?\"\\u65e9\\u4e0a\":r<1130?\"\\u4e0a\\u5348\":r<1230?\"\\u4e2d\\u5348\":r<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929]LT\",nextDay:\"[\\u660e\\u5929]LT\",nextWeek:\"[\\u4e0b]ddddLT\",lastDay:\"[\\u6628\\u5929]LT\",lastWeek:\"[\\u4e0a]ddddLT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u9031)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u9031\";default:return e}},relativeTime:{future:\"%s\\u5167\",past:\"%s\\u524d\",s:\"\\u5e7e\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u9418\",mm:\"%d \\u5206\\u9418\",h:\"1 \\u5c0f\\u6642\",hh:\"%d \\u5c0f\\u6642\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u500b\\u6708\",MM:\"%d \\u500b\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"}})}(n(\"wd/R\"))},UDhR:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"id\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agt_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Rab_Kam_Jum_Sab\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"siang\"===t?e>=11?e:e+12:\"sore\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"siang\":e<19?\"sore\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Besok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kemarin pukul] LT\",lastWeek:\"dddd [lalu pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lalu\",s:\"beberapa detik\",ss:\"%d detik\",m:\"semenit\",mm:\"%d menit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},USCx:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ga\",{months:[\"Ean\\xe1ir\",\"Feabhra\",\"M\\xe1rta\",\"Aibre\\xe1n\",\"Bealtaine\",\"M\\xe9itheamh\",\"I\\xfail\",\"L\\xfanasa\",\"Me\\xe1n F\\xf3mhair\",\"Deaireadh F\\xf3mhair\",\"Samhain\",\"Nollaig\"],monthsShort:[\"Ean\\xe1\",\"Feab\",\"M\\xe1rt\",\"Aibr\",\"Beal\",\"M\\xe9it\",\"I\\xfail\",\"L\\xfana\",\"Me\\xe1n\",\"Deai\",\"Samh\",\"Noll\"],monthsParseExact:!0,weekdays:[\"D\\xe9 Domhnaigh\",\"D\\xe9 Luain\",\"D\\xe9 M\\xe1irt\",\"D\\xe9 C\\xe9adaoin\",\"D\\xe9ardaoin\",\"D\\xe9 hAoine\",\"D\\xe9 Satharn\"],weekdaysShort:[\"Dom\",\"Lua\",\"M\\xe1i\",\"C\\xe9a\",\"D\\xe9a\",\"hAo\",\"Sat\"],weekdaysMin:[\"Do\",\"Lu\",\"M\\xe1\",\"Ce\",\"D\\xe9\",\"hA\",\"Sa\"],longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Inniu ag] LT\",nextDay:\"[Am\\xe1rach ag] LT\",nextWeek:\"dddd [ag] LT\",lastDay:\"[Inn\\xe9 aig] LT\",lastWeek:\"dddd [seo caite] [ag] LT\",sameElse:\"L\"},relativeTime:{future:\"i %s\",past:\"%s \\xf3 shin\",s:\"c\\xfapla soicind\",ss:\"%d soicind\",m:\"n\\xf3im\\xe9ad\",mm:\"%d n\\xf3im\\xe9ad\",h:\"uair an chloig\",hh:\"%d uair an chloig\",d:\"l\\xe1\",dd:\"%d l\\xe1\",M:\"m\\xed\",MM:\"%d m\\xed\",y:\"bliain\",yy:\"%d bliain\"},dayOfMonthOrdinalParse:/\\d{1,2}(d|na|mh)/,ordinal:function(e){return e+(1===e?\"d\":e%10==2?\"na\":\"mh\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},UpQW:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u062c\\u0646\\u0648\\u0631\\u06cc\",\"\\u0641\\u0631\\u0648\\u0631\\u06cc\",\"\\u0645\\u0627\\u0631\\u0686\",\"\\u0627\\u067e\\u0631\\u06cc\\u0644\",\"\\u0645\\u0626\\u06cc\",\"\\u062c\\u0648\\u0646\",\"\\u062c\\u0648\\u0644\\u0627\\u0626\\u06cc\",\"\\u0627\\u06af\\u0633\\u062a\",\"\\u0633\\u062a\\u0645\\u0628\\u0631\",\"\\u0627\\u06a9\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0645\\u0628\\u0631\",\"\\u062f\\u0633\\u0645\\u0628\\u0631\"],n=[\"\\u0627\\u062a\\u0648\\u0627\\u0631\",\"\\u067e\\u06cc\\u0631\",\"\\u0645\\u0646\\u06af\\u0644\",\"\\u0628\\u062f\\u06be\",\"\\u062c\\u0645\\u0639\\u0631\\u0627\\u062a\",\"\\u062c\\u0645\\u0639\\u06c1\",\"\\u06c1\\u0641\\u062a\\u06c1\"];e.defineLocale(\"ur\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd\\u060c D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635\\u0628\\u062d|\\u0634\\u0627\\u0645/,isPM:function(e){return\"\\u0634\\u0627\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\\u0628\\u062d\":\"\\u0634\\u0627\\u0645\"},calendar:{sameDay:\"[\\u0622\\u062c \\u0628\\u0648\\u0642\\u062a] LT\",nextDay:\"[\\u06a9\\u0644 \\u0628\\u0648\\u0642\\u062a] LT\",nextWeek:\"dddd [\\u0628\\u0648\\u0642\\u062a] LT\",lastDay:\"[\\u06af\\u0630\\u0634\\u062a\\u06c1 \\u0631\\u0648\\u0632 \\u0628\\u0648\\u0642\\u062a] LT\",lastWeek:\"[\\u06af\\u0630\\u0634\\u062a\\u06c1] dddd [\\u0628\\u0648\\u0642\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0628\\u0639\\u062f\",past:\"%s \\u0642\\u0628\\u0644\",s:\"\\u0686\\u0646\\u062f \\u0633\\u06cc\\u06a9\\u0646\\u0688\",ss:\"%d \\u0633\\u06cc\\u06a9\\u0646\\u0688\",m:\"\\u0627\\u06cc\\u06a9 \\u0645\\u0646\\u0679\",mm:\"%d \\u0645\\u0646\\u0679\",h:\"\\u0627\\u06cc\\u06a9 \\u06af\\u06be\\u0646\\u0679\\u06c1\",hh:\"%d \\u06af\\u06be\\u0646\\u0679\\u06d2\",d:\"\\u0627\\u06cc\\u06a9 \\u062f\\u0646\",dd:\"%d \\u062f\\u0646\",M:\"\\u0627\\u06cc\\u06a9 \\u0645\\u0627\\u06c1\",MM:\"%d \\u0645\\u0627\\u06c1\",y:\"\\u0627\\u06cc\\u06a9 \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Ur1D:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ss\",{months:\"Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni\".split(\"_\"),monthsShort:\"Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo\".split(\"_\"),weekdays:\"Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo\".split(\"_\"),weekdaysShort:\"Lis_Umb_Lsb_Les_Lsi_Lsh_Umg\".split(\"_\"),weekdaysMin:\"Li_Us_Lb_Lt_Ls_Lh_Ug\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Namuhla nga] LT\",nextDay:\"[Kusasa nga] LT\",nextWeek:\"dddd [nga] LT\",lastDay:\"[Itolo nga] LT\",lastWeek:\"dddd [leliphelile] [nga] LT\",sameElse:\"L\"},relativeTime:{future:\"nga %s\",past:\"wenteka nga %s\",s:\"emizuzwana lomcane\",ss:\"%d mzuzwana\",m:\"umzuzu\",mm:\"%d emizuzu\",h:\"lihora\",hh:\"%d emahora\",d:\"lilanga\",dd:\"%d emalanga\",M:\"inyanga\",MM:\"%d tinyanga\",y:\"umnyaka\",yy:\"%d iminyaka\"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(e,t,n){return e<11?\"ekuseni\":e<15?\"emini\":e<19?\"entsambama\":\"ebusuku\"},meridiemHour:function(e,t){return 12===e&&(e=0),\"ekuseni\"===t?e:\"emini\"===t?e>=11?e:e+12:\"entsambama\"===t||\"ebusuku\"===t?0===e?0:e+12:void 0},dayOfMonthOrdinalParse:/\\d{1,2}/,ordinal:\"%d\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},V2x9:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tet\",{months:\"Janeiru_Fevereiru_Marsu_Abril_Maiu_Ju\\xf1u_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez\".split(\"_\"),weekdays:\"Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu\".split(\"_\"),weekdaysShort:\"Dom_Seg_Ters_Kua_Kint_Sest_Sab\".split(\"_\"),weekdaysMin:\"Do_Seg_Te_Ku_Ki_Ses_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Ohin iha] LT\",nextDay:\"[Aban iha] LT\",nextWeek:\"dddd [iha] LT\",lastDay:\"[Horiseik iha] LT\",lastWeek:\"dddd [semana kotuk] [iha] LT\",sameElse:\"L\"},relativeTime:{future:\"iha %s\",past:\"%s liuba\",s:\"minutu balun\",ss:\"minutu %d\",m:\"minutu ida\",mm:\"minutu %d\",h:\"oras ida\",hh:\"oras %d\",d:\"loron ida\",dd:\"loron %d\",M:\"fulan ida\",MM:\"fulan %d\",y:\"tinan ida\",yy:\"tinan %d\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},Vclq:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],i=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es-us\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:\"domingo_lunes_martes_mi\\xe9rcoles_jueves_viernes_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mi\\xe9._jue._vie._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"MM/DD/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY h:mm A\",LLLL:\"dddd, D [de] MMMM [de] YYYY h:mm A\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1ana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un a\\xf1o\",yy:\"%d a\\xf1os\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:0,doy:6}})}(n(\"wd/R\"))},WYrj:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u0796\\u07ac\\u0782\\u07aa\\u0787\\u07a6\\u0783\\u07a9\",\"\\u078a\\u07ac\\u0784\\u07b0\\u0783\\u07aa\\u0787\\u07a6\\u0783\\u07a9\",\"\\u0789\\u07a7\\u0783\\u07a8\\u0797\\u07aa\",\"\\u0787\\u07ad\\u0795\\u07b0\\u0783\\u07a9\\u078d\\u07aa\",\"\\u0789\\u07ad\",\"\\u0796\\u07ab\\u0782\\u07b0\",\"\\u0796\\u07aa\\u078d\\u07a6\\u0787\\u07a8\",\"\\u0787\\u07af\\u078e\\u07a6\\u0790\\u07b0\\u0793\\u07aa\",\"\\u0790\\u07ac\\u0795\\u07b0\\u0793\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0787\\u07ae\\u0786\\u07b0\\u0793\\u07af\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0782\\u07ae\\u0788\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\",\"\\u0791\\u07a8\\u0790\\u07ac\\u0789\\u07b0\\u0784\\u07a6\\u0783\\u07aa\"],n=[\"\\u0787\\u07a7\\u078b\\u07a8\\u0787\\u07b0\\u078c\\u07a6\",\"\\u0780\\u07af\\u0789\\u07a6\",\"\\u0787\\u07a6\\u0782\\u07b0\\u078e\\u07a7\\u0783\\u07a6\",\"\\u0784\\u07aa\\u078b\\u07a6\",\"\\u0784\\u07aa\\u0783\\u07a7\\u0790\\u07b0\\u078a\\u07a6\\u078c\\u07a8\",\"\\u0780\\u07aa\\u0786\\u07aa\\u0783\\u07aa\",\"\\u0780\\u07ae\\u0782\\u07a8\\u0780\\u07a8\\u0783\\u07aa\"];e.defineLocale(\"dv\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:\"\\u0787\\u07a7\\u078b\\u07a8_\\u0780\\u07af\\u0789\\u07a6_\\u0787\\u07a6\\u0782\\u07b0_\\u0784\\u07aa\\u078b\\u07a6_\\u0784\\u07aa\\u0783\\u07a7_\\u0780\\u07aa\\u0786\\u07aa_\\u0780\\u07ae\\u0782\\u07a8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/M/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0789\\u0786|\\u0789\\u078a/,isPM:function(e){return\"\\u0789\\u078a\"===e},meridiem:function(e,t,n){return e<12?\"\\u0789\\u0786\":\"\\u0789\\u078a\"},calendar:{sameDay:\"[\\u0789\\u07a8\\u0787\\u07a6\\u078b\\u07aa] LT\",nextDay:\"[\\u0789\\u07a7\\u078b\\u07a6\\u0789\\u07a7] LT\",nextWeek:\"dddd LT\",lastDay:\"[\\u0787\\u07a8\\u0787\\u07b0\\u0794\\u07ac] LT\",lastWeek:\"[\\u078a\\u07a7\\u0787\\u07a8\\u078c\\u07aa\\u0788\\u07a8] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"\\u078c\\u07ac\\u0783\\u07ad\\u078e\\u07a6\\u0787\\u07a8 %s\",past:\"\\u0786\\u07aa\\u0783\\u07a8\\u0782\\u07b0 %s\",s:\"\\u0790\\u07a8\\u0786\\u07aa\\u0782\\u07b0\\u078c\\u07aa\\u0786\\u07ae\\u0785\\u07ac\\u0787\\u07b0\",ss:\"d% \\u0790\\u07a8\\u0786\\u07aa\\u0782\\u07b0\\u078c\\u07aa\",m:\"\\u0789\\u07a8\\u0782\\u07a8\\u0793\\u07ac\\u0787\\u07b0\",mm:\"\\u0789\\u07a8\\u0782\\u07a8\\u0793\\u07aa %d\",h:\"\\u078e\\u07a6\\u0791\\u07a8\\u0787\\u07a8\\u0783\\u07ac\\u0787\\u07b0\",hh:\"\\u078e\\u07a6\\u0791\\u07a8\\u0787\\u07a8\\u0783\\u07aa %d\",d:\"\\u078b\\u07aa\\u0788\\u07a6\\u0780\\u07ac\\u0787\\u07b0\",dd:\"\\u078b\\u07aa\\u0788\\u07a6\\u0790\\u07b0 %d\",M:\"\\u0789\\u07a6\\u0780\\u07ac\\u0787\\u07b0\",MM:\"\\u0789\\u07a6\\u0790\\u07b0 %d\",y:\"\\u0787\\u07a6\\u0780\\u07a6\\u0783\\u07ac\\u0787\\u07b0\",yy:\"\\u0787\\u07a6\\u0780\\u07a6\\u0783\\u07aa %d\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:7,doy:12}})}(n(\"wd/R\"))},WxRl:function(e,t,n){!function(e){\"use strict\";var t=\"vas\\xe1rnap h\\xe9tf\\u0151n kedden szerd\\xe1n cs\\xfct\\xf6rt\\xf6k\\xf6n p\\xe9nteken szombaton\".split(\" \");function n(e,t,n,r){var i=e;switch(n){case\"s\":return r||t?\"n\\xe9h\\xe1ny m\\xe1sodperc\":\"n\\xe9h\\xe1ny m\\xe1sodperce\";case\"ss\":return i+(r||t)?\" m\\xe1sodperc\":\" m\\xe1sodperce\";case\"m\":return\"egy\"+(r||t?\" perc\":\" perce\");case\"mm\":return i+(r||t?\" perc\":\" perce\");case\"h\":return\"egy\"+(r||t?\" \\xf3ra\":\" \\xf3r\\xe1ja\");case\"hh\":return i+(r||t?\" \\xf3ra\":\" \\xf3r\\xe1ja\");case\"d\":return\"egy\"+(r||t?\" nap\":\" napja\");case\"dd\":return i+(r||t?\" nap\":\" napja\");case\"M\":return\"egy\"+(r||t?\" h\\xf3nap\":\" h\\xf3napja\");case\"MM\":return i+(r||t?\" h\\xf3nap\":\" h\\xf3napja\");case\"y\":return\"egy\"+(r||t?\" \\xe9v\":\" \\xe9ve\");case\"yy\":return i+(r||t?\" \\xe9v\":\" \\xe9ve\")}return\"\"}function r(e){return(e?\"\":\"[m\\xfalt] \")+\"[\"+t[this.day()]+\"] LT[-kor]\"}e.defineLocale(\"hu\",{months:\"janu\\xe1r_febru\\xe1r_m\\xe1rcius_\\xe1prilis_m\\xe1jus_j\\xfanius_j\\xfalius_augusztus_szeptember_okt\\xf3ber_november_december\".split(\"_\"),monthsShort:\"jan_feb_m\\xe1rc_\\xe1pr_m\\xe1j_j\\xfan_j\\xfal_aug_szept_okt_nov_dec\".split(\"_\"),weekdays:\"vas\\xe1rnap_h\\xe9tf\\u0151_kedd_szerda_cs\\xfct\\xf6rt\\xf6k_p\\xe9ntek_szombat\".split(\"_\"),weekdaysShort:\"vas_h\\xe9t_kedd_sze_cs\\xfct_p\\xe9n_szo\".split(\"_\"),weekdaysMin:\"v_h_k_sze_cs_p_szo\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"YYYY.MM.DD.\",LL:\"YYYY. MMMM D.\",LLL:\"YYYY. MMMM D. H:mm\",LLLL:\"YYYY. MMMM D., dddd H:mm\"},meridiemParse:/de|du/i,isPM:function(e){return\"u\"===e.charAt(1).toLowerCase()},meridiem:function(e,t,n){return e<12?!0===n?\"de\":\"DE\":!0===n?\"du\":\"DU\"},calendar:{sameDay:\"[ma] LT[-kor]\",nextDay:\"[holnap] LT[-kor]\",nextWeek:function(){return r.call(this,!0)},lastDay:\"[tegnap] LT[-kor]\",lastWeek:function(){return r.call(this,!1)},sameElse:\"L\"},relativeTime:{future:\"%s m\\xfalva\",past:\"%s\",s:n,ss:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},X709:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sv\",{months:\"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"s\\xf6ndag_m\\xe5ndag_tisdag_onsdag_torsdag_fredag_l\\xf6rdag\".split(\"_\"),weekdaysShort:\"s\\xf6n_m\\xe5n_tis_ons_tor_fre_l\\xf6r\".split(\"_\"),weekdaysMin:\"s\\xf6_m\\xe5_ti_on_to_fr_l\\xf6\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D MMMM YYYY [kl.] HH:mm\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd D MMM YYYY HH:mm\"},calendar:{sameDay:\"[Idag] LT\",nextDay:\"[Imorgon] LT\",lastDay:\"[Ig\\xe5r] LT\",nextWeek:\"[P\\xe5] dddd LT\",lastWeek:\"[I] dddd[s] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"f\\xf6r %s sedan\",s:\"n\\xe5gra sekunder\",ss:\"%d sekunder\",m:\"en minut\",mm:\"%d minuter\",h:\"en timme\",hh:\"%d timmar\",d:\"en dag\",dd:\"%d dagar\",M:\"en m\\xe5nad\",MM:\"%d m\\xe5nader\",y:\"ett \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}(e|a)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"e\":1===t||2===t?\"a\":\"e\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},XDpg:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-cn\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u5468\\u65e5_\\u5468\\u4e00_\\u5468\\u4e8c_\\u5468\\u4e09_\\u5468\\u56db_\\u5468\\u4e94_\\u5468\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5Ah\\u70b9mm\\u5206\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5ddddAh\\u70b9mm\\u5206\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var r=100*e+t;return r<600?\"\\u51cc\\u6668\":r<900?\"\\u65e9\\u4e0a\":r<1130?\"\\u4e0a\\u5348\":r<1230?\"\\u4e2d\\u5348\":r<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929]LT\",nextDay:\"[\\u660e\\u5929]LT\",nextWeek:\"[\\u4e0b]ddddLT\",lastDay:\"[\\u6628\\u5929]LT\",lastWeek:\"[\\u4e0a]ddddLT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u5468)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u5468\";default:return e}},relativeTime:{future:\"%s\\u5185\",past:\"%s\\u524d\",s:\"\\u51e0\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u949f\",mm:\"%d \\u5206\\u949f\",h:\"1 \\u5c0f\\u65f6\",hh:\"%d \\u5c0f\\u65f6\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u4e2a\\u6708\",MM:\"%d \\u4e2a\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},XLvN:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"te\",{months:\"\\u0c1c\\u0c28\\u0c35\\u0c30\\u0c3f_\\u0c2b\\u0c3f\\u0c2c\\u0c4d\\u0c30\\u0c35\\u0c30\\u0c3f_\\u0c2e\\u0c3e\\u0c30\\u0c4d\\u0c1a\\u0c3f_\\u0c0f\\u0c2a\\u0c4d\\u0c30\\u0c3f\\u0c32\\u0c4d_\\u0c2e\\u0c47_\\u0c1c\\u0c42\\u0c28\\u0c4d_\\u0c1c\\u0c41\\u0c32\\u0c48_\\u0c06\\u0c17\\u0c38\\u0c4d\\u0c1f\\u0c41_\\u0c38\\u0c46\\u0c2a\\u0c4d\\u0c1f\\u0c46\\u0c02\\u0c2c\\u0c30\\u0c4d_\\u0c05\\u0c15\\u0c4d\\u0c1f\\u0c4b\\u0c2c\\u0c30\\u0c4d_\\u0c28\\u0c35\\u0c02\\u0c2c\\u0c30\\u0c4d_\\u0c21\\u0c3f\\u0c38\\u0c46\\u0c02\\u0c2c\\u0c30\\u0c4d\".split(\"_\"),monthsShort:\"\\u0c1c\\u0c28._\\u0c2b\\u0c3f\\u0c2c\\u0c4d\\u0c30._\\u0c2e\\u0c3e\\u0c30\\u0c4d\\u0c1a\\u0c3f_\\u0c0f\\u0c2a\\u0c4d\\u0c30\\u0c3f._\\u0c2e\\u0c47_\\u0c1c\\u0c42\\u0c28\\u0c4d_\\u0c1c\\u0c41\\u0c32\\u0c48_\\u0c06\\u0c17._\\u0c38\\u0c46\\u0c2a\\u0c4d._\\u0c05\\u0c15\\u0c4d\\u0c1f\\u0c4b._\\u0c28\\u0c35._\\u0c21\\u0c3f\\u0c38\\u0c46.\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u0c06\\u0c26\\u0c3f\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c38\\u0c4b\\u0c2e\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c2e\\u0c02\\u0c17\\u0c33\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c2c\\u0c41\\u0c27\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c17\\u0c41\\u0c30\\u0c41\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c36\\u0c41\\u0c15\\u0c4d\\u0c30\\u0c35\\u0c3e\\u0c30\\u0c02_\\u0c36\\u0c28\\u0c3f\\u0c35\\u0c3e\\u0c30\\u0c02\".split(\"_\"),weekdaysShort:\"\\u0c06\\u0c26\\u0c3f_\\u0c38\\u0c4b\\u0c2e_\\u0c2e\\u0c02\\u0c17\\u0c33_\\u0c2c\\u0c41\\u0c27_\\u0c17\\u0c41\\u0c30\\u0c41_\\u0c36\\u0c41\\u0c15\\u0c4d\\u0c30_\\u0c36\\u0c28\\u0c3f\".split(\"_\"),weekdaysMin:\"\\u0c06_\\u0c38\\u0c4b_\\u0c2e\\u0c02_\\u0c2c\\u0c41_\\u0c17\\u0c41_\\u0c36\\u0c41_\\u0c36\".split(\"_\"),longDateFormat:{LT:\"A h:mm\",LTS:\"A h:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm\",LLLL:\"dddd, D MMMM YYYY, A h:mm\"},calendar:{sameDay:\"[\\u0c28\\u0c47\\u0c21\\u0c41] LT\",nextDay:\"[\\u0c30\\u0c47\\u0c2a\\u0c41] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0c28\\u0c3f\\u0c28\\u0c4d\\u0c28] LT\",lastWeek:\"[\\u0c17\\u0c24] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0c32\\u0c4b\",past:\"%s \\u0c15\\u0c4d\\u0c30\\u0c3f\\u0c24\\u0c02\",s:\"\\u0c15\\u0c4a\\u0c28\\u0c4d\\u0c28\\u0c3f \\u0c15\\u0c4d\\u0c37\\u0c23\\u0c3e\\u0c32\\u0c41\",ss:\"%d \\u0c38\\u0c46\\u0c15\\u0c28\\u0c4d\\u0c32\\u0c41\",m:\"\\u0c12\\u0c15 \\u0c28\\u0c3f\\u0c2e\\u0c3f\\u0c37\\u0c02\",mm:\"%d \\u0c28\\u0c3f\\u0c2e\\u0c3f\\u0c37\\u0c3e\\u0c32\\u0c41\",h:\"\\u0c12\\u0c15 \\u0c17\\u0c02\\u0c1f\",hh:\"%d \\u0c17\\u0c02\\u0c1f\\u0c32\\u0c41\",d:\"\\u0c12\\u0c15 \\u0c30\\u0c4b\\u0c1c\\u0c41\",dd:\"%d \\u0c30\\u0c4b\\u0c1c\\u0c41\\u0c32\\u0c41\",M:\"\\u0c12\\u0c15 \\u0c28\\u0c46\\u0c32\",MM:\"%d \\u0c28\\u0c46\\u0c32\\u0c32\\u0c41\",y:\"\\u0c12\\u0c15 \\u0c38\\u0c02\\u0c35\\u0c24\\u0c4d\\u0c38\\u0c30\\u0c02\",yy:\"%d \\u0c38\\u0c02\\u0c35\\u0c24\\u0c4d\\u0c38\\u0c30\\u0c3e\\u0c32\\u0c41\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u0c35/,ordinal:\"%d\\u0c35\",meridiemParse:/\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f|\\u0c09\\u0c26\\u0c2f\\u0c02|\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02|\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\"===t?e<4?e:e+12:\"\\u0c09\\u0c26\\u0c2f\\u0c02\"===t?e:\"\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02\"===t?e>=10?e:e+12:\"\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02\"===t?e+12:void 0},meridiem:function(e,t,n){return e<4?\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\":e<10?\"\\u0c09\\u0c26\\u0c2f\\u0c02\":e<17?\"\\u0c2e\\u0c27\\u0c4d\\u0c2f\\u0c3e\\u0c39\\u0c4d\\u0c28\\u0c02\":e<20?\"\\u0c38\\u0c3e\\u0c2f\\u0c02\\u0c24\\u0c4d\\u0c30\\u0c02\":\"\\u0c30\\u0c3e\\u0c24\\u0c4d\\u0c30\\u0c3f\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},YRex:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ug-cn\",{months:\"\\u064a\\u0627\\u0646\\u06cb\\u0627\\u0631_\\u0641\\u06d0\\u06cb\\u0631\\u0627\\u0644_\\u0645\\u0627\\u0631\\u062a_\\u0626\\u0627\\u067e\\u0631\\u06d0\\u0644_\\u0645\\u0627\\u064a_\\u0626\\u0649\\u064a\\u06c7\\u0646_\\u0626\\u0649\\u064a\\u06c7\\u0644_\\u0626\\u0627\\u06cb\\u063a\\u06c7\\u0633\\u062a_\\u0633\\u06d0\\u0646\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0626\\u06c6\\u0643\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0646\\u0648\\u064a\\u0627\\u0628\\u0649\\u0631_\\u062f\\u06d0\\u0643\\u0627\\u0628\\u0649\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0627\\u0646\\u06cb\\u0627\\u0631_\\u0641\\u06d0\\u06cb\\u0631\\u0627\\u0644_\\u0645\\u0627\\u0631\\u062a_\\u0626\\u0627\\u067e\\u0631\\u06d0\\u0644_\\u0645\\u0627\\u064a_\\u0626\\u0649\\u064a\\u06c7\\u0646_\\u0626\\u0649\\u064a\\u06c7\\u0644_\\u0626\\u0627\\u06cb\\u063a\\u06c7\\u0633\\u062a_\\u0633\\u06d0\\u0646\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0626\\u06c6\\u0643\\u062a\\u06d5\\u0628\\u0649\\u0631_\\u0646\\u0648\\u064a\\u0627\\u0628\\u0649\\u0631_\\u062f\\u06d0\\u0643\\u0627\\u0628\\u0649\\u0631\".split(\"_\"),weekdays:\"\\u064a\\u06d5\\u0643\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u062f\\u06c8\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u0633\\u06d5\\u064a\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u0686\\u0627\\u0631\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u067e\\u06d5\\u064a\\u0634\\u06d5\\u0646\\u0628\\u06d5_\\u062c\\u06c8\\u0645\\u06d5_\\u0634\\u06d5\\u0646\\u0628\\u06d5\".split(\"_\"),weekdaysShort:\"\\u064a\\u06d5_\\u062f\\u06c8_\\u0633\\u06d5_\\u0686\\u0627_\\u067e\\u06d5_\\u062c\\u06c8_\\u0634\\u06d5\".split(\"_\"),weekdaysMin:\"\\u064a\\u06d5_\\u062f\\u06c8_\\u0633\\u06d5_\\u0686\\u0627_\\u067e\\u06d5_\\u062c\\u06c8_\\u0634\\u06d5\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\",LLL:\"YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\\u060c HH:mm\",LLLL:\"dddd\\u060c YYYY-\\u064a\\u0649\\u0644\\u0649M-\\u0626\\u0627\\u064a\\u0646\\u0649\\u06adD-\\u0643\\u06c8\\u0646\\u0649\\u060c HH:mm\"},meridiemParse:/\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5|\\u0633\\u06d5\\u06be\\u06d5\\u0631|\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646|\\u0686\\u06c8\\u0634|\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646|\\u0643\\u06d5\\u0686/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5\"===t||\"\\u0633\\u06d5\\u06be\\u06d5\\u0631\"===t||\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646\"===t?e:\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646\"===t||\"\\u0643\\u06d5\\u0686\"===t?e+12:e>=11?e:e+12},meridiem:function(e,t,n){var r=100*e+t;return r<600?\"\\u064a\\u06d0\\u0631\\u0649\\u0645 \\u0643\\u06d0\\u0686\\u06d5\":r<900?\"\\u0633\\u06d5\\u06be\\u06d5\\u0631\":r<1130?\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0628\\u06c7\\u0631\\u06c7\\u0646\":r<1230?\"\\u0686\\u06c8\\u0634\":r<1800?\"\\u0686\\u06c8\\u0634\\u062a\\u0649\\u0646 \\u0643\\u06d0\\u064a\\u0649\\u0646\":\"\\u0643\\u06d5\\u0686\"},calendar:{sameDay:\"[\\u0628\\u06c8\\u06af\\u06c8\\u0646 \\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",nextDay:\"[\\u0626\\u06d5\\u062a\\u06d5 \\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",nextWeek:\"[\\u0643\\u06d0\\u0644\\u06d5\\u0631\\u0643\\u0649] dddd [\\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",lastDay:\"[\\u062a\\u06c6\\u0646\\u06c8\\u06af\\u06c8\\u0646] LT\",lastWeek:\"[\\u0626\\u0627\\u0644\\u062f\\u0649\\u0646\\u0642\\u0649] dddd [\\u0633\\u0627\\u0626\\u06d5\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0643\\u06d0\\u064a\\u0649\\u0646\",past:\"%s \\u0628\\u06c7\\u0631\\u06c7\\u0646\",s:\"\\u0646\\u06d5\\u0686\\u0686\\u06d5 \\u0633\\u06d0\\u0643\\u0648\\u0646\\u062a\",ss:\"%d \\u0633\\u06d0\\u0643\\u0648\\u0646\\u062a\",m:\"\\u0628\\u0649\\u0631 \\u0645\\u0649\\u0646\\u06c7\\u062a\",mm:\"%d \\u0645\\u0649\\u0646\\u06c7\\u062a\",h:\"\\u0628\\u0649\\u0631 \\u0633\\u0627\\u0626\\u06d5\\u062a\",hh:\"%d \\u0633\\u0627\\u0626\\u06d5\\u062a\",d:\"\\u0628\\u0649\\u0631 \\u0643\\u06c8\\u0646\",dd:\"%d \\u0643\\u06c8\\u0646\",M:\"\\u0628\\u0649\\u0631 \\u0626\\u0627\\u064a\",MM:\"%d \\u0626\\u0627\\u064a\",y:\"\\u0628\\u0649\\u0631 \\u064a\\u0649\\u0644\",yy:\"%d \\u064a\\u0649\\u0644\"},dayOfMonthOrdinalParse:/\\d{1,2}(-\\u0643\\u06c8\\u0646\\u0649|-\\u0626\\u0627\\u064a|-\\u06be\\u06d5\\u067e\\u062a\\u06d5)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"-\\u0643\\u06c8\\u0646\\u0649\";case\"w\":case\"W\":return e+\"-\\u06be\\u06d5\\u067e\\u062a\\u06d5\";default:return e}},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:7}})}(n(\"wd/R\"))},YuTi:function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,\"loaded\",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,\"id\",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},Z4QM:function(e,t,n){!function(e){\"use strict\";var t=[\"\\u062c\\u0646\\u0648\\u0631\\u064a\",\"\\u0641\\u064a\\u0628\\u0631\\u0648\\u0631\\u064a\",\"\\u0645\\u0627\\u0631\\u0686\",\"\\u0627\\u067e\\u0631\\u064a\\u0644\",\"\\u0645\\u0626\\u064a\",\"\\u062c\\u0648\\u0646\",\"\\u062c\\u0648\\u0644\\u0627\\u0621\\u0650\",\"\\u0622\\u06af\\u0633\\u067d\",\"\\u0633\\u064a\\u067e\\u067d\\u0645\\u0628\\u0631\",\"\\u0622\\u06aa\\u067d\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0645\\u0628\\u0631\",\"\\u068a\\u0633\\u0645\\u0628\\u0631\"],n=[\"\\u0622\\u0686\\u0631\",\"\\u0633\\u0648\\u0645\\u0631\",\"\\u0627\\u06b1\\u0627\\u0631\\u0648\",\"\\u0627\\u0631\\u0628\\u0639\",\"\\u062e\\u0645\\u064a\\u0633\",\"\\u062c\\u0645\\u0639\",\"\\u0687\\u0646\\u0687\\u0631\"];e.defineLocale(\"sd\",{months:t,monthsShort:t,weekdays:n,weekdaysShort:n,weekdaysMin:n,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd\\u060c D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635\\u0628\\u062d|\\u0634\\u0627\\u0645/,isPM:function(e){return\"\\u0634\\u0627\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\\u0628\\u062d\":\"\\u0634\\u0627\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0684] LT\",nextDay:\"[\\u0633\\u0680\\u0627\\u06bb\\u064a] LT\",nextWeek:\"dddd [\\u0627\\u06b3\\u064a\\u0646 \\u0647\\u0641\\u062a\\u064a \\u062a\\u064a] LT\",lastDay:\"[\\u06aa\\u0627\\u0644\\u0647\\u0647] LT\",lastWeek:\"[\\u06af\\u0632\\u0631\\u064a\\u0644 \\u0647\\u0641\\u062a\\u064a] dddd [\\u062a\\u064a] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u067e\\u0648\\u0621\",past:\"%s \\u0627\\u06b3\",s:\"\\u0686\\u0646\\u062f \\u0633\\u064a\\u06aa\\u0646\\u068a\",ss:\"%d \\u0633\\u064a\\u06aa\\u0646\\u068a\",m:\"\\u0647\\u06aa \\u0645\\u0646\\u067d\",mm:\"%d \\u0645\\u0646\\u067d\",h:\"\\u0647\\u06aa \\u06aa\\u0644\\u0627\\u06aa\",hh:\"%d \\u06aa\\u0644\\u0627\\u06aa\",d:\"\\u0647\\u06aa \\u068f\\u064a\\u0646\\u0647\\u0646\",dd:\"%d \\u068f\\u064a\\u0646\\u0647\\u0646\",M:\"\\u0647\\u06aa \\u0645\\u0647\\u064a\\u0646\\u0648\",MM:\"%d \\u0645\\u0647\\u064a\\u0646\\u0627\",y:\"\\u0647\\u06aa \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/,/g,\"\\u060c\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},ZAMP:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ms-my\",{months:\"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis\".split(\"_\"),weekdays:\"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu\".split(\"_\"),weekdaysShort:\"Ahd_Isn_Sel_Rab_Kha_Jum_Sab\".split(\"_\"),weekdaysMin:\"Ah_Is_Sl_Rb_Km_Jm_Sb\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),\"pagi\"===t?e:\"tengahari\"===t?e>=11?e:e+12:\"petang\"===t||\"malam\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"pagi\":e<15?\"tengahari\":e<19?\"petang\":\"malam\"},calendar:{sameDay:\"[Hari ini pukul] LT\",nextDay:\"[Esok pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kelmarin pukul] LT\",lastWeek:\"dddd [lepas pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"dalam %s\",past:\"%s yang lepas\",s:\"beberapa saat\",ss:\"%d saat\",m:\"seminit\",mm:\"%d minit\",h:\"sejam\",hh:\"%d jam\",d:\"sehari\",dd:\"%d hari\",M:\"sebulan\",MM:\"%d bulan\",y:\"setahun\",yy:\"%d tahun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},Zduo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"eo\",{months:\"januaro_februaro_marto_aprilo_majo_junio_julio_a\\u016dgusto_septembro_oktobro_novembro_decembro\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_maj_jun_jul_a\\u016dg_sep_okt_nov_dec\".split(\"_\"),weekdays:\"diman\\u0109o_lundo_mardo_merkredo_\\u0135a\\u016ddo_vendredo_sabato\".split(\"_\"),weekdaysShort:\"dim_lun_mard_merk_\\u0135a\\u016d_ven_sab\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_\\u0135a_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"D[-a de] MMMM, YYYY\",LLL:\"D[-a de] MMMM, YYYY HH:mm\",LLLL:\"dddd, [la] D[-a de] MMMM, YYYY HH:mm\"},meridiemParse:/[ap]\\.t\\.m/i,isPM:function(e){return\"p\"===e.charAt(0).toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"p.t.m.\":\"P.T.M.\":n?\"a.t.m.\":\"A.T.M.\"},calendar:{sameDay:\"[Hodia\\u016d je] LT\",nextDay:\"[Morga\\u016d je] LT\",nextWeek:\"dddd [je] LT\",lastDay:\"[Hiera\\u016d je] LT\",lastWeek:\"[pasinta] dddd [je] LT\",sameElse:\"L\"},relativeTime:{future:\"post %s\",past:\"anta\\u016d %s\",s:\"sekundoj\",ss:\"%d sekundoj\",m:\"minuto\",mm:\"%d minutoj\",h:\"horo\",hh:\"%d horoj\",d:\"tago\",dd:\"%d tagoj\",M:\"monato\",MM:\"%d monatoj\",y:\"jaro\",yy:\"%d jaroj\"},dayOfMonthOrdinalParse:/\\d{1,2}a/,ordinal:\"%da\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},aCrv:function(e,t,n){var r,i=function(){this._tweens={},this._tweensAddedDuringUpdate={}};i.prototype={getAll:function(){return Object.keys(this._tweens).map((function(e){return this._tweens[e]}).bind(this))},removeAll:function(){this._tweens={}},add:function(e){this._tweens[e.getId()]=e,this._tweensAddedDuringUpdate[e.getId()]=e},remove:function(e){delete this._tweens[e.getId()],delete this._tweensAddedDuringUpdate[e.getId()]},update:function(e,t){var n=Object.keys(this._tweens);if(0===n.length)return!1;for(e=void 0!==e?e:o.now();n.length>0;){this._tweensAddedDuringUpdate={};for(var r=0;r1?1:n),this._valuesEnd)if(void 0!==this._valuesStart[t]){var i=this._valuesStart[t]||0,a=this._valuesEnd[t];a instanceof Array?this._object[t]=this._interpolationFunction(a,r):(\"string\"==typeof a&&(a=\"+\"===a.charAt(0)||\"-\"===a.charAt(0)?i+parseFloat(a):parseFloat(a)),\"number\"==typeof a&&(this._object[t]=i+(a-i)*r))}if(null!==this._onUpdateCallback&&this._onUpdateCallback(this._object,n),1===n){if(this._repeat>0){for(t in isFinite(this._repeat)&&this._repeat--,this._valuesStartRepeat){if(\"string\"==typeof this._valuesEnd[t]&&(this._valuesStartRepeat[t]=this._valuesStartRepeat[t]+parseFloat(this._valuesEnd[t])),this._yoyo){var o=this._valuesStartRepeat[t];this._valuesStartRepeat[t]=this._valuesEnd[t],this._valuesEnd[t]=o}this._valuesStart[t]=this._valuesStartRepeat[t]}return this._yoyo&&(this._reversed=!this._reversed),this._startTime=void 0!==this._repeatDelayTime?e+this._repeatDelayTime:e+this._delayTime,null!==this._onRepeatCallback&&this._onRepeatCallback(this._object),!0}null!==this._onCompleteCallback&&this._onCompleteCallback(this._object);for(var s=0,l=this._chainedTweens.length;s1?a(e[n],e[n-1],n-r):a(e[i],e[i+1>n?n:i+1],r-i)},Bezier:function(e,t){for(var n=0,r=e.length-1,i=Math.pow,a=o.Interpolation.Utils.Bernstein,s=0;s<=r;s++)n+=i(1-t,r-s)*i(t,s)*e[s]*a(r,s);return n},CatmullRom:function(e,t){var n=e.length-1,r=n*t,i=Math.floor(r),a=o.Interpolation.Utils.CatmullRom;return e[0]===e[n]?(t<0&&(i=Math.floor(r=n*(1+t))),a(e[(i-1+n)%n],e[i],e[(i+1)%n],e[(i+2)%n],r-i)):t<0?e[0]-(a(e[0],e[0],e[1],e[1],-r)-e[0]):t>1?e[n]-(a(e[n],e[n],e[n-1],e[n-1],r-n)-e[n]):a(e[i?i-1:0],e[i],e[n1;n--)t*=n;return a[e]=t,t}),CatmullRom:function(e,t,n,r,i){var a=.5*(n-e),o=.5*(r-t),s=i*i;return(2*t-2*n+a+o)*(i*s)+(-3*t+3*n-2*a-o)*s+a*i+t}}},void 0===(r=(function(){return o}).apply(t,[]))||(e.exports=r)},aIdf:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){return e+\" \"+function(e,t){return 2===t?function(e){var t={m:\"v\",b:\"v\",d:\"z\"};return void 0===t[e.charAt(0)]?e:t[e.charAt(0)]+e.substring(1)}(e):e}({mm:\"munutenn\",MM:\"miz\",dd:\"devezh\"}[n],e)}e.defineLocale(\"br\",{months:\"Genver_C'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu\".split(\"_\"),monthsShort:\"Gen_C'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker\".split(\"_\"),weekdays:\"Sul_Lun_Meurzh_Merc'her_Yaou_Gwener_Sadorn\".split(\"_\"),weekdaysShort:\"Sul_Lun_Meu_Mer_Yao_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Lu_Me_Mer_Ya_Gw_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"h[e]mm A\",LTS:\"h[e]mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D [a viz] MMMM YYYY\",LLL:\"D [a viz] MMMM YYYY h[e]mm A\",LLLL:\"dddd, D [a viz] MMMM YYYY h[e]mm A\"},calendar:{sameDay:\"[Hiziv da] LT\",nextDay:\"[Warc'hoazh da] LT\",nextWeek:\"dddd [da] LT\",lastDay:\"[Dec'h da] LT\",lastWeek:\"dddd [paset da] LT\",sameElse:\"L\"},relativeTime:{future:\"a-benn %s\",past:\"%s 'zo\",s:\"un nebeud segondenno\\xf9\",ss:\"%d eilenn\",m:\"ur vunutenn\",mm:t,h:\"un eur\",hh:\"%d eur\",d:\"un devezh\",dd:t,M:\"ur miz\",MM:t,y:\"ur bloaz\",yy:function(e){switch(function e(t){return t>9?e(t%10):t}(e)){case 1:case 3:case 4:case 5:case 9:return e+\" bloaz\";default:return e+\" vloaz\"}}},dayOfMonthOrdinalParse:/\\d{1,2}(a\\xf1|vet)/,ordinal:function(e){return e+(1===e?\"a\\xf1\":\"vet\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},aIsn:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mi\",{months:\"Kohi-t\\u0101te_Hui-tanguru_Pout\\u016b-te-rangi_Paenga-wh\\u0101wh\\u0101_Haratua_Pipiri_H\\u014dngoingoi_Here-turi-k\\u014dk\\u0101_Mahuru_Whiringa-\\u0101-nuku_Whiringa-\\u0101-rangi_Hakihea\".split(\"_\"),monthsShort:\"Kohi_Hui_Pou_Pae_Hara_Pipi_H\\u014dngoi_Here_Mahu_Whi-nu_Whi-ra_Haki\".split(\"_\"),monthsRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\\u0101\\u014D\\u016B]+\\-?){1,2}/i,weekdays:\"R\\u0101tapu_Mane_T\\u016brei_Wenerei_T\\u0101ite_Paraire_H\\u0101tarei\".split(\"_\"),weekdaysShort:\"Ta_Ma_T\\u016b_We_T\\u0101i_Pa_H\\u0101\".split(\"_\"),weekdaysMin:\"Ta_Ma_T\\u016b_We_T\\u0101i_Pa_H\\u0101\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [i] HH:mm\",LLLL:\"dddd, D MMMM YYYY [i] HH:mm\"},calendar:{sameDay:\"[i teie mahana, i] LT\",nextDay:\"[apopo i] LT\",nextWeek:\"dddd [i] LT\",lastDay:\"[inanahi i] LT\",lastWeek:\"dddd [whakamutunga i] LT\",sameElse:\"L\"},relativeTime:{future:\"i roto i %s\",past:\"%s i mua\",s:\"te h\\u0113kona ruarua\",ss:\"%d h\\u0113kona\",m:\"he meneti\",mm:\"%d meneti\",h:\"te haora\",hh:\"%d haora\",d:\"he ra\",dd:\"%d ra\",M:\"he marama\",MM:\"%d marama\",y:\"he tau\",yy:\"%d tau\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},aQkU:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"mk\",{months:\"\\u0458\\u0430\\u043d\\u0443\\u0430\\u0440\\u0438_\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d\\u0438_\\u0458\\u0443\\u043b\\u0438_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438_\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438_\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438_\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\".split(\"_\"),monthsShort:\"\\u0458\\u0430\\u043d_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0458_\\u0458\\u0443\\u043d_\\u0458\\u0443\\u043b_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043f_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u0435_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u0430_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0440\\u0442\\u043e\\u043a_\\u043f\\u0435\\u0442\\u043e\\u043a_\\u0441\\u0430\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434_\\u043f\\u043e\\u043d_\\u0432\\u0442\\u043e_\\u0441\\u0440\\u0435_\\u0447\\u0435\\u0442_\\u043f\\u0435\\u0442_\\u0441\\u0430\\u0431\".split(\"_\"),weekdaysMin:\"\\u043de_\\u043fo_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0435_\\u043f\\u0435_\\u0441a\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0414\\u0435\\u043d\\u0435\\u0441 \\u0432\\u043e] LT\",nextDay:\"[\\u0423\\u0442\\u0440\\u0435 \\u0432\\u043e] LT\",nextWeek:\"[\\u0412\\u043e] dddd [\\u0432\\u043e] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430 \\u0432\\u043e] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[\\u0418\\u0437\\u043c\\u0438\\u043d\\u0430\\u0442\\u0430\\u0442\\u0430] dddd [\\u0432\\u043e] LT\";case 1:case 2:case 4:case 5:return\"[\\u0418\\u0437\\u043c\\u0438\\u043d\\u0430\\u0442\\u0438\\u043e\\u0442] dddd [\\u0432\\u043e] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u043f\\u043e\\u0441\\u043b\\u0435 %s\",past:\"\\u043f\\u0440\\u0435\\u0434 %s\",s:\"\\u043d\\u0435\\u043a\\u043e\\u043b\\u043a\\u0443 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",m:\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\\u0438\",h:\"\\u0447\\u0430\\u0441\",hh:\"%d \\u0447\\u0430\\u0441\\u0430\",d:\"\\u0434\\u0435\\u043d\",dd:\"%d \\u0434\\u0435\\u043d\\u0430\",M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:\"%d \\u043c\\u0435\\u0441\\u0435\\u0446\\u0438\",y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",yy:\"%d \\u0433\\u043e\\u0434\\u0438\\u043d\\u0438\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0435\\u0432|\\u0435\\u043d|\\u0442\\u0438|\\u0432\\u0438|\\u0440\\u0438|\\u043c\\u0438)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-\\u0435\\u0432\":0===n?e+\"-\\u0435\\u043d\":n>10&&n<20?e+\"-\\u0442\\u0438\":1===t?e+\"-\\u0432\\u0438\":2===t?e+\"-\\u0440\\u0438\":7===t||8===t?e+\"-\\u043c\\u0438\":e+\"-\\u0442\\u0438\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},b1Dy:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-nz\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},bOMt:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nb\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.\".split(\"_\"),monthsParseExact:!0,weekdays:\"s\\xf8ndag_mandag_tirsdag_onsdag_torsdag_fredag_l\\xf8rdag\".split(\"_\"),weekdaysShort:\"s\\xf8._ma._ti._on._to._fr._l\\xf8.\".split(\"_\"),weekdaysMin:\"s\\xf8_ma_ti_on_to_fr_l\\xf8\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] HH:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[i dag kl.] LT\",nextDay:\"[i morgen kl.] LT\",nextWeek:\"dddd [kl.] LT\",lastDay:\"[i g\\xe5r kl.] LT\",lastWeek:\"[forrige] dddd [kl.] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s siden\",s:\"noen sekunder\",ss:\"%d sekunder\",m:\"ett minutt\",mm:\"%d minutter\",h:\"en time\",hh:\"%d timer\",d:\"en dag\",dd:\"%d dager\",M:\"en m\\xe5ned\",MM:\"%d m\\xe5neder\",y:\"ett \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},bXm7:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0448\\u0456\",1:\"-\\u0448\\u0456\",2:\"-\\u0448\\u0456\",3:\"-\\u0448\\u0456\",4:\"-\\u0448\\u0456\",5:\"-\\u0448\\u0456\",6:\"-\\u0448\\u044b\",7:\"-\\u0448\\u0456\",8:\"-\\u0448\\u0456\",9:\"-\\u0448\\u044b\",10:\"-\\u0448\\u044b\",20:\"-\\u0448\\u044b\",30:\"-\\u0448\\u044b\",40:\"-\\u0448\\u044b\",50:\"-\\u0448\\u0456\",60:\"-\\u0448\\u044b\",70:\"-\\u0448\\u0456\",80:\"-\\u0448\\u0456\",90:\"-\\u0448\\u044b\",100:\"-\\u0448\\u0456\"};e.defineLocale(\"kk\",{months:\"\\u049b\\u0430\\u04a3\\u0442\\u0430\\u0440_\\u0430\\u049b\\u043f\\u0430\\u043d_\\u043d\\u0430\\u0443\\u0440\\u044b\\u0437_\\u0441\\u04d9\\u0443\\u0456\\u0440_\\u043c\\u0430\\u043c\\u044b\\u0440_\\u043c\\u0430\\u0443\\u0441\\u044b\\u043c_\\u0448\\u0456\\u043b\\u0434\\u0435_\\u0442\\u0430\\u043c\\u044b\\u0437_\\u049b\\u044b\\u0440\\u043a\\u04af\\u0439\\u0435\\u043a_\\u049b\\u0430\\u0437\\u0430\\u043d_\\u049b\\u0430\\u0440\\u0430\\u0448\\u0430_\\u0436\\u0435\\u043b\\u0442\\u043e\\u049b\\u0441\\u0430\\u043d\".split(\"_\"),monthsShort:\"\\u049b\\u0430\\u04a3_\\u0430\\u049b\\u043f_\\u043d\\u0430\\u0443_\\u0441\\u04d9\\u0443_\\u043c\\u0430\\u043c_\\u043c\\u0430\\u0443_\\u0448\\u0456\\u043b_\\u0442\\u0430\\u043c_\\u049b\\u044b\\u0440_\\u049b\\u0430\\u0437_\\u049b\\u0430\\u0440_\\u0436\\u0435\\u043b\".split(\"_\"),weekdays:\"\\u0436\\u0435\\u043a\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0434\\u04af\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0441\\u0435\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0441\\u04d9\\u0440\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0431\\u0435\\u0439\\u0441\\u0435\\u043d\\u0431\\u0456_\\u0436\\u04b1\\u043c\\u0430_\\u0441\\u0435\\u043d\\u0431\\u0456\".split(\"_\"),weekdaysShort:\"\\u0436\\u0435\\u043a_\\u0434\\u04af\\u0439_\\u0441\\u0435\\u0439_\\u0441\\u04d9\\u0440_\\u0431\\u0435\\u0439_\\u0436\\u04b1\\u043c_\\u0441\\u0435\\u043d\".split(\"_\"),weekdaysMin:\"\\u0436\\u043a_\\u0434\\u0439_\\u0441\\u0439_\\u0441\\u0440_\\u0431\\u0439_\\u0436\\u043c_\\u0441\\u043d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0411\\u04af\\u0433\\u0456\\u043d \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",nextDay:\"[\\u0415\\u0440\\u0442\\u0435\\u04a3 \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",nextWeek:\"dddd [\\u0441\\u0430\\u0493\\u0430\\u0442] LT\",lastDay:\"[\\u041a\\u0435\\u0448\\u0435 \\u0441\\u0430\\u0493\\u0430\\u0442] LT\",lastWeek:\"[\\u04e8\\u0442\\u043a\\u0435\\u043d \\u0430\\u043f\\u0442\\u0430\\u043d\\u044b\\u04a3] dddd [\\u0441\\u0430\\u0493\\u0430\\u0442] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0456\\u0448\\u0456\\u043d\\u0434\\u0435\",past:\"%s \\u0431\\u04b1\\u0440\\u044b\\u043d\",s:\"\\u0431\\u0456\\u0440\\u043d\\u0435\\u0448\\u0435 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:\"\\u0431\\u0456\\u0440 \\u043c\\u0438\\u043d\\u0443\\u0442\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\",h:\"\\u0431\\u0456\\u0440 \\u0441\\u0430\\u0493\\u0430\\u0442\",hh:\"%d \\u0441\\u0430\\u0493\\u0430\\u0442\",d:\"\\u0431\\u0456\\u0440 \\u043a\\u04af\\u043d\",dd:\"%d \\u043a\\u04af\\u043d\",M:\"\\u0431\\u0456\\u0440 \\u0430\\u0439\",MM:\"%d \\u0430\\u0439\",y:\"\\u0431\\u0456\\u0440 \\u0436\\u044b\\u043b\",yy:\"%d \\u0436\\u044b\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0448\\u0456|\\u0448\\u044b)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},bYM6:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-tn\",{months:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},bpih:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_luned\\xec_marted\\xec_mercoled\\xec_gioved\\xec_venerd\\xec_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Oggi alle] LT\",nextDay:\"[Domani alle] LT\",nextWeek:\"dddd [alle] LT\",lastDay:\"[Ieri alle] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[la scorsa] dddd [alle] LT\";default:return\"[lo scorso] dddd [alle] LT\"}},sameElse:\"L\"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?\"tra\":\"in\")+\" \"+e},past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},bxKX:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"it-ch\",{months:\"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre\".split(\"_\"),monthsShort:\"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic\".split(\"_\"),weekdays:\"domenica_luned\\xec_marted\\xec_mercoled\\xec_gioved\\xec_venerd\\xec_sabato\".split(\"_\"),weekdaysShort:\"dom_lun_mar_mer_gio_ven_sab\".split(\"_\"),weekdaysMin:\"do_lu_ma_me_gi_ve_sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Oggi alle] LT\",nextDay:\"[Domani alle] LT\",nextWeek:\"dddd [alle] LT\",lastDay:\"[Ieri alle] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[la scorsa] dddd [alle] LT\";default:return\"[lo scorso] dddd [alle] LT\"}},sameElse:\"L\"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?\"tra\":\"in\")+\" \"+e},past:\"%s fa\",s:\"alcuni secondi\",ss:\"%d secondi\",m:\"un minuto\",mm:\"%d minuti\",h:\"un'ora\",hh:\"%d ore\",d:\"un giorno\",dd:\"%d giorni\",M:\"un mese\",MM:\"%d mesi\",y:\"un anno\",yy:\"%d anni\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},cRix:function(e,t,n){!function(e){\"use strict\";var t=\"jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.\".split(\"_\"),n=\"jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\");e.defineLocale(\"fy\",{months:\"jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber\".split(\"_\"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsParseExact:!0,weekdays:\"snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon\".split(\"_\"),weekdaysShort:\"si._mo._ti._wo._to._fr._so.\".split(\"_\"),weekdaysMin:\"Si_Mo_Ti_Wo_To_Fr_So\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD-MM-YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[hjoed om] LT\",nextDay:\"[moarn om] LT\",nextWeek:\"dddd [om] LT\",lastDay:\"[juster om] LT\",lastWeek:\"[\\xf4fr\\xfbne] dddd [om] LT\",sameElse:\"L\"},relativeTime:{future:\"oer %s\",past:\"%s lyn\",s:\"in pear sekonden\",ss:\"%d sekonden\",m:\"ien min\\xfat\",mm:\"%d minuten\",h:\"ien oere\",hh:\"%d oeren\",d:\"ien dei\",dd:\"%d dagen\",M:\"ien moanne\",MM:\"%d moannen\",y:\"ien jier\",yy:\"%d jierren\"},dayOfMonthOrdinalParse:/\\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?\"ste\":\"de\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},czMo:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-il\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}})}(n(\"wd/R\"))},dNwA:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sw\",{months:\"Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba\".split(\"_\"),monthsShort:\"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des\".split(\"_\"),weekdays:\"Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi\".split(\"_\"),weekdaysShort:\"Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos\".split(\"_\"),weekdaysMin:\"J2_J3_J4_J5_Al_Ij_J1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[leo saa] LT\",nextDay:\"[kesho saa] LT\",nextWeek:\"[wiki ijayo] dddd [saat] LT\",lastDay:\"[jana] LT\",lastWeek:\"[wiki iliyopita] dddd [saat] LT\",sameElse:\"L\"},relativeTime:{future:\"%s baadaye\",past:\"tokea %s\",s:\"hivi punde\",ss:\"sekunde %d\",m:\"dakika moja\",mm:\"dakika %d\",h:\"saa limoja\",hh:\"masaa %d\",d:\"siku moja\",dd:\"masiku %d\",M:\"mwezi mmoja\",MM:\"miezi %d\",y:\"mwaka mmoja\",yy:\"miaka %d\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"e+ae\":function(e,t,n){!function(e){\"use strict\";var t=\"janu\\xe1r_febru\\xe1r_marec_apr\\xedl_m\\xe1j_j\\xfan_j\\xfal_august_september_okt\\xf3ber_november_december\".split(\"_\"),n=\"jan_feb_mar_apr_m\\xe1j_j\\xfan_j\\xfal_aug_sep_okt_nov_dec\".split(\"_\");function r(e){return e>1&&e<5}function i(e,t,n,i){var a=e+\" \";switch(n){case\"s\":return t||i?\"p\\xe1r sek\\xfand\":\"p\\xe1r sekundami\";case\"ss\":return t||i?a+(r(e)?\"sekundy\":\"sek\\xfand\"):a+\"sekundami\";case\"m\":return t?\"min\\xfata\":i?\"min\\xfatu\":\"min\\xfatou\";case\"mm\":return t||i?a+(r(e)?\"min\\xfaty\":\"min\\xfat\"):a+\"min\\xfatami\";case\"h\":return t?\"hodina\":i?\"hodinu\":\"hodinou\";case\"hh\":return t||i?a+(r(e)?\"hodiny\":\"hod\\xedn\"):a+\"hodinami\";case\"d\":return t||i?\"de\\u0148\":\"d\\u0148om\";case\"dd\":return t||i?a+(r(e)?\"dni\":\"dn\\xed\"):a+\"d\\u0148ami\";case\"M\":return t||i?\"mesiac\":\"mesiacom\";case\"MM\":return t||i?a+(r(e)?\"mesiace\":\"mesiacov\"):a+\"mesiacmi\";case\"y\":return t||i?\"rok\":\"rokom\";case\"yy\":return t||i?a+(r(e)?\"roky\":\"rokov\"):a+\"rokmi\"}}e.defineLocale(\"sk\",{months:t,monthsShort:n,weekdays:\"nede\\u013ea_pondelok_utorok_streda_\\u0161tvrtok_piatok_sobota\".split(\"_\"),weekdaysShort:\"ne_po_ut_st_\\u0161t_pi_so\".split(\"_\"),weekdaysMin:\"ne_po_ut_st_\\u0161t_pi_so\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[dnes o] LT\",nextDay:\"[zajtra o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v nede\\u013eu o] LT\";case 1:case 2:return\"[v] dddd [o] LT\";case 3:return\"[v stredu o] LT\";case 4:return\"[vo \\u0161tvrtok o] LT\";case 5:return\"[v piatok o] LT\";case 6:return\"[v sobotu o] LT\"}},lastDay:\"[v\\u010dera o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[minul\\xfa nede\\u013eu o] LT\";case 1:case 2:return\"[minul\\xfd] dddd [o] LT\";case 3:return\"[minul\\xfa stredu o] LT\";case 4:case 5:return\"[minul\\xfd] dddd [o] LT\";case 6:return\"[minul\\xfa sobotu o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pred %s\",s:i,ss:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},evrj:function(e,t,n){var r=n(\"m4GZ\");e.exports=function(e){var t=e.replace(/-/g,\"+\").replace(/_/g,\"/\");switch(t.length%4){case 0:break;case 2:t+=\"==\";break;case 3:t+=\"=\";break;default:throw\"Illegal base64url string!\"}try{return function(e){return decodeURIComponent(r(e).replace(/(.)/g,(function(e,t){var n=t.charCodeAt(0).toString(16).toUpperCase();return n.length<2&&(n=\"0\"+n),\"%\"+n})))}(t)}catch(n){return r(t)}}},fzPg:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"yo\",{months:\"S\\u1eb9\\u0301r\\u1eb9\\u0301_E\\u0300re\\u0300le\\u0300_\\u1eb8r\\u1eb9\\u0300na\\u0300_I\\u0300gbe\\u0301_E\\u0300bibi_O\\u0300ku\\u0300du_Ag\\u1eb9mo_O\\u0300gu\\u0301n_Owewe_\\u1ecc\\u0300wa\\u0300ra\\u0300_Be\\u0301lu\\u0301_\\u1ecc\\u0300p\\u1eb9\\u0300\\u0300\".split(\"_\"),monthsShort:\"S\\u1eb9\\u0301r_E\\u0300rl_\\u1eb8rn_I\\u0300gb_E\\u0300bi_O\\u0300ku\\u0300_Ag\\u1eb9_O\\u0300gu\\u0301_Owe_\\u1ecc\\u0300wa\\u0300_Be\\u0301l_\\u1ecc\\u0300p\\u1eb9\\u0300\\u0300\".split(\"_\"),weekdays:\"A\\u0300i\\u0300ku\\u0301_Aje\\u0301_I\\u0300s\\u1eb9\\u0301gun_\\u1eccj\\u1ecd\\u0301ru\\u0301_\\u1eccj\\u1ecd\\u0301b\\u1ecd_\\u1eb8ti\\u0300_A\\u0300ba\\u0301m\\u1eb9\\u0301ta\".split(\"_\"),weekdaysShort:\"A\\u0300i\\u0300k_Aje\\u0301_I\\u0300s\\u1eb9\\u0301_\\u1eccjr_\\u1eccjb_\\u1eb8ti\\u0300_A\\u0300ba\\u0301\".split(\"_\"),weekdaysMin:\"A\\u0300i\\u0300_Aj_I\\u0300s_\\u1eccr_\\u1eccb_\\u1eb8t_A\\u0300b\".split(\"_\"),longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendar:{sameDay:\"[O\\u0300ni\\u0300 ni] LT\",nextDay:\"[\\u1ecc\\u0300la ni] LT\",nextWeek:\"dddd [\\u1eccs\\u1eb9\\u0300 to\\u0301n'b\\u1ecd] [ni] LT\",lastDay:\"[A\\u0300na ni] LT\",lastWeek:\"dddd [\\u1eccs\\u1eb9\\u0300 to\\u0301l\\u1ecd\\u0301] [ni] LT\",sameElse:\"L\"},relativeTime:{future:\"ni\\u0301 %s\",past:\"%s k\\u1ecdja\\u0301\",s:\"i\\u0300s\\u1eb9ju\\u0301 aaya\\u0301 die\",ss:\"aaya\\u0301 %d\",m:\"i\\u0300s\\u1eb9ju\\u0301 kan\",mm:\"i\\u0300s\\u1eb9ju\\u0301 %d\",h:\"wa\\u0301kati kan\",hh:\"wa\\u0301kati %d\",d:\"\\u1ecdj\\u1ecd\\u0301 kan\",dd:\"\\u1ecdj\\u1ecd\\u0301 %d\",M:\"osu\\u0300 kan\",MM:\"osu\\u0300 %d\",y:\"\\u1ecddu\\u0301n kan\",yy:\"\\u1ecddu\\u0301n %d\"},dayOfMonthOrdinalParse:/\\u1ecdj\\u1ecd\\u0301\\s\\d{1,2}/,ordinal:\"\\u1ecdj\\u1ecd\\u0301 %d\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},gVVK:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i=e+\" \";switch(n){case\"s\":return t||r?\"nekaj sekund\":\"nekaj sekundami\";case\"ss\":return i+(1===e?t?\"sekundo\":\"sekundi\":2===e?t||r?\"sekundi\":\"sekundah\":e<5?t||r?\"sekunde\":\"sekundah\":\"sekund\");case\"m\":return t?\"ena minuta\":\"eno minuto\";case\"mm\":return i+(1===e?t?\"minuta\":\"minuto\":2===e?t||r?\"minuti\":\"minutama\":e<5?t||r?\"minute\":\"minutami\":t||r?\"minut\":\"minutami\");case\"h\":return t?\"ena ura\":\"eno uro\";case\"hh\":return i+(1===e?t?\"ura\":\"uro\":2===e?t||r?\"uri\":\"urama\":e<5?t||r?\"ure\":\"urami\":t||r?\"ur\":\"urami\");case\"d\":return t||r?\"en dan\":\"enim dnem\";case\"dd\":return i+(1===e?t||r?\"dan\":\"dnem\":2===e?t||r?\"dni\":\"dnevoma\":t||r?\"dni\":\"dnevi\");case\"M\":return t||r?\"en mesec\":\"enim mesecem\";case\"MM\":return i+(1===e?t||r?\"mesec\":\"mesecem\":2===e?t||r?\"meseca\":\"mesecema\":e<5?t||r?\"mesece\":\"meseci\":t||r?\"mesecev\":\"meseci\");case\"y\":return t||r?\"eno leto\":\"enim letom\";case\"yy\":return i+(1===e?t||r?\"leto\":\"letom\":2===e?t||r?\"leti\":\"letoma\":e<5?t||r?\"leta\":\"leti\":t||r?\"let\":\"leti\")}}e.defineLocale(\"sl\",{months:\"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljek_torek_sreda_\\u010detrtek_petek_sobota\".split(\"_\"),weekdaysShort:\"ned._pon._tor._sre._\\u010det._pet._sob.\".split(\"_\"),weekdaysMin:\"ne_po_to_sr_\\u010de_pe_so\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danes ob] LT\",nextDay:\"[jutri ob] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[v] [nedeljo] [ob] LT\";case 3:return\"[v] [sredo] [ob] LT\";case 6:return\"[v] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[v] dddd [ob] LT\"}},lastDay:\"[v\\u010deraj ob] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[prej\\u0161njo] [nedeljo] [ob] LT\";case 3:return\"[prej\\u0161njo] [sredo] [ob] LT\";case 6:return\"[prej\\u0161njo] [soboto] [ob] LT\";case 1:case 2:case 4:case 5:return\"[prej\\u0161nji] dddd [ob] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u010dez %s\",past:\"pred %s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))},gekB:function(e,t,n){!function(e){\"use strict\";var t=\"nolla yksi kaksi kolme nelj\\xe4 viisi kuusi seitsem\\xe4n kahdeksan yhdeks\\xe4n\".split(\" \"),n=[\"nolla\",\"yhden\",\"kahden\",\"kolmen\",\"nelj\\xe4n\",\"viiden\",\"kuuden\",t[7],t[8],t[9]];function r(e,r,i,a){var o=\"\";switch(i){case\"s\":return a?\"muutaman sekunnin\":\"muutama sekunti\";case\"ss\":return a?\"sekunnin\":\"sekuntia\";case\"m\":return a?\"minuutin\":\"minuutti\";case\"mm\":o=a?\"minuutin\":\"minuuttia\";break;case\"h\":return a?\"tunnin\":\"tunti\";case\"hh\":o=a?\"tunnin\":\"tuntia\";break;case\"d\":return a?\"p\\xe4iv\\xe4n\":\"p\\xe4iv\\xe4\";case\"dd\":o=a?\"p\\xe4iv\\xe4n\":\"p\\xe4iv\\xe4\\xe4\";break;case\"M\":return a?\"kuukauden\":\"kuukausi\";case\"MM\":o=a?\"kuukauden\":\"kuukautta\";break;case\"y\":return a?\"vuoden\":\"vuosi\";case\"yy\":o=a?\"vuoden\":\"vuotta\"}return function(e,r){return e<10?r?n[e]:t[e]:e}(e,a)+\" \"+o}e.defineLocale(\"fi\",{months:\"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kes\\xe4kuu_hein\\xe4kuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu\".split(\"_\"),monthsShort:\"tammi_helmi_maalis_huhti_touko_kes\\xe4_hein\\xe4_elo_syys_loka_marras_joulu\".split(\"_\"),weekdays:\"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai\".split(\"_\"),weekdaysShort:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),weekdaysMin:\"su_ma_ti_ke_to_pe_la\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"Do MMMM[ta] YYYY\",LLL:\"Do MMMM[ta] YYYY, [klo] HH.mm\",LLLL:\"dddd, Do MMMM[ta] YYYY, [klo] HH.mm\",l:\"D.M.YYYY\",ll:\"Do MMM YYYY\",lll:\"Do MMM YYYY, [klo] HH.mm\",llll:\"ddd, Do MMM YYYY, [klo] HH.mm\"},calendar:{sameDay:\"[t\\xe4n\\xe4\\xe4n] [klo] LT\",nextDay:\"[huomenna] [klo] LT\",nextWeek:\"dddd [klo] LT\",lastDay:\"[eilen] [klo] LT\",lastWeek:\"[viime] dddd[na] [klo] LT\",sameElse:\"L\"},relativeTime:{future:\"%s p\\xe4\\xe4st\\xe4\",past:\"%s sitten\",s:r,ss:r,m:r,mm:r,h:r,hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},gjCT:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"};e.defineLocale(\"ar-sa\",{months:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a\\u0648_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648_\\u0623\\u063a\\u0633\\u0637\\u0633_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u064a\\u0646\\u0627\\u064a\\u0631_\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0628\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a\\u0648_\\u064a\\u0648\\u0646\\u064a\\u0648_\\u064a\\u0648\\u0644\\u064a\\u0648_\\u0623\\u063a\\u0633\\u0637\\u0633_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:0,doy:6}})}(n(\"wd/R\"))},hKrs:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bg\",{months:\"\\u044f\\u043d\\u0443\\u0430\\u0440\\u0438_\\u0444\\u0435\\u0432\\u0440\\u0443\\u0430\\u0440\\u0438_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0438\\u043b_\\u043c\\u0430\\u0439_\\u044e\\u043d\\u0438_\\u044e\\u043b\\u0438_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043f\\u0442\\u0435\\u043c\\u0432\\u0440\\u0438_\\u043e\\u043a\\u0442\\u043e\\u043c\\u0432\\u0440\\u0438_\\u043d\\u043e\\u0435\\u043c\\u0432\\u0440\\u0438_\\u0434\\u0435\\u043a\\u0435\\u043c\\u0432\\u0440\\u0438\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0440_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u044e\\u043d\\u0438_\\u044e\\u043b\\u0438_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043f_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u0435_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u043d\\u0435\\u0434\\u0435\\u043b\\u044f_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u044f\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u044a\\u0440\\u0442\\u044a\\u043a_\\u043f\\u0435\\u0442\\u044a\\u043a_\\u0441\\u044a\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),weekdaysShort:\"\\u043d\\u0435\\u0434_\\u043f\\u043e\\u043d_\\u0432\\u0442\\u043e_\\u0441\\u0440\\u044f_\\u0447\\u0435\\u0442_\\u043f\\u0435\\u0442_\\u0441\\u044a\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"D.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[\\u0414\\u043d\\u0435\\u0441 \\u0432] LT\",nextDay:\"[\\u0423\\u0442\\u0440\\u0435 \\u0432] LT\",nextWeek:\"dddd [\\u0432] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430 \\u0432] LT\",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return\"[\\u0412 \\u0438\\u0437\\u043c\\u0438\\u043d\\u0430\\u043b\\u0430\\u0442\\u0430] dddd [\\u0432] LT\";case 1:case 2:case 4:case 5:return\"[\\u0412 \\u0438\\u0437\\u043c\\u0438\\u043d\\u0430\\u043b\\u0438\\u044f] dddd [\\u0432] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u0441\\u043b\\u0435\\u0434 %s\",past:\"\\u043f\\u0440\\u0435\\u0434\\u0438 %s\",s:\"\\u043d\\u044f\\u043a\\u043e\\u043b\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438\",m:\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\",mm:\"%d \\u043c\\u0438\\u043d\\u0443\\u0442\\u0438\",h:\"\\u0447\\u0430\\u0441\",hh:\"%d \\u0447\\u0430\\u0441\\u0430\",d:\"\\u0434\\u0435\\u043d\",dd:\"%d \\u0434\\u043d\\u0438\",M:\"\\u043c\\u0435\\u0441\\u0435\\u0446\",MM:\"%d \\u043c\\u0435\\u0441\\u0435\\u0446\\u0430\",y:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\",yy:\"%d \\u0433\\u043e\\u0434\\u0438\\u043d\\u0438\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0435\\u0432|\\u0435\\u043d|\\u0442\\u0438|\\u0432\\u0438|\\u0440\\u0438|\\u043c\\u0438)/,ordinal:function(e){var t=e%10,n=e%100;return 0===e?e+\"-\\u0435\\u0432\":0===n?e+\"-\\u0435\\u043d\":n>10&&n<20?e+\"-\\u0442\\u0438\":1===t?e+\"-\\u0432\\u0438\":2===t?e+\"-\\u0440\\u0438\":7===t||8===t?e+\"-\\u043c\\u0438\":e+\"-\\u0442\\u0438\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},honF:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u1041\",2:\"\\u1042\",3:\"\\u1043\",4:\"\\u1044\",5:\"\\u1045\",6:\"\\u1046\",7:\"\\u1047\",8:\"\\u1048\",9:\"\\u1049\",0:\"\\u1040\"},n={\"\\u1041\":\"1\",\"\\u1042\":\"2\",\"\\u1043\":\"3\",\"\\u1044\":\"4\",\"\\u1045\":\"5\",\"\\u1046\":\"6\",\"\\u1047\":\"7\",\"\\u1048\":\"8\",\"\\u1049\":\"9\",\"\\u1040\":\"0\"};e.defineLocale(\"my\",{months:\"\\u1007\\u1014\\u103a\\u1014\\u101d\\u102b\\u101b\\u102e_\\u1016\\u1031\\u1016\\u1031\\u102c\\u103a\\u101d\\u102b\\u101b\\u102e_\\u1019\\u1010\\u103a_\\u1027\\u1015\\u103c\\u102e_\\u1019\\u1031_\\u1007\\u103d\\u1014\\u103a_\\u1007\\u1030\\u101c\\u102d\\u102f\\u1004\\u103a_\\u101e\\u103c\\u1002\\u102f\\u1010\\u103a_\\u1005\\u1000\\u103a\\u1010\\u1004\\u103a\\u1018\\u102c_\\u1021\\u1031\\u102c\\u1000\\u103a\\u1010\\u102d\\u102f\\u1018\\u102c_\\u1014\\u102d\\u102f\\u101d\\u1004\\u103a\\u1018\\u102c_\\u1012\\u102e\\u1007\\u1004\\u103a\\u1018\\u102c\".split(\"_\"),monthsShort:\"\\u1007\\u1014\\u103a_\\u1016\\u1031_\\u1019\\u1010\\u103a_\\u1015\\u103c\\u102e_\\u1019\\u1031_\\u1007\\u103d\\u1014\\u103a_\\u101c\\u102d\\u102f\\u1004\\u103a_\\u101e\\u103c_\\u1005\\u1000\\u103a_\\u1021\\u1031\\u102c\\u1000\\u103a_\\u1014\\u102d\\u102f_\\u1012\\u102e\".split(\"_\"),weekdays:\"\\u1010\\u1014\\u1004\\u103a\\u1039\\u1002\\u1014\\u103d\\u1031_\\u1010\\u1014\\u1004\\u103a\\u1039\\u101c\\u102c_\\u1021\\u1004\\u103a\\u1039\\u1002\\u102b_\\u1017\\u102f\\u1012\\u1039\\u1013\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c\\u101e\\u1015\\u1010\\u1031\\u1038_\\u101e\\u1031\\u102c\\u1000\\u103c\\u102c_\\u1005\\u1014\\u1031\".split(\"_\"),weekdaysShort:\"\\u1014\\u103d\\u1031_\\u101c\\u102c_\\u1002\\u102b_\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c_\\u101e\\u1031\\u102c_\\u1014\\u1031\".split(\"_\"),weekdaysMin:\"\\u1014\\u103d\\u1031_\\u101c\\u102c_\\u1002\\u102b_\\u101f\\u1030\\u1038_\\u1000\\u103c\\u102c_\\u101e\\u1031\\u102c_\\u1014\\u1031\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u101a\\u1014\\u1031.] LT [\\u1019\\u103e\\u102c]\",nextDay:\"[\\u1019\\u1014\\u1000\\u103a\\u1016\\u103c\\u1014\\u103a] LT [\\u1019\\u103e\\u102c]\",nextWeek:\"dddd LT [\\u1019\\u103e\\u102c]\",lastDay:\"[\\u1019\\u1014\\u1031.\\u1000] LT [\\u1019\\u103e\\u102c]\",lastWeek:\"[\\u1015\\u103c\\u102e\\u1038\\u1001\\u1032\\u1037\\u101e\\u1031\\u102c] dddd LT [\\u1019\\u103e\\u102c]\",sameElse:\"L\"},relativeTime:{future:\"\\u101c\\u102c\\u1019\\u100a\\u103a\\u1037 %s \\u1019\\u103e\\u102c\",past:\"\\u101c\\u103d\\u1014\\u103a\\u1001\\u1032\\u1037\\u101e\\u1031\\u102c %s \\u1000\",s:\"\\u1005\\u1000\\u1039\\u1000\\u1014\\u103a.\\u1021\\u1014\\u100a\\u103a\\u1038\\u1004\\u101a\\u103a\",ss:\"%d \\u1005\\u1000\\u1039\\u1000\\u1014\\u1037\\u103a\",m:\"\\u1010\\u1005\\u103a\\u1019\\u102d\\u1014\\u1005\\u103a\",mm:\"%d \\u1019\\u102d\\u1014\\u1005\\u103a\",h:\"\\u1010\\u1005\\u103a\\u1014\\u102c\\u101b\\u102e\",hh:\"%d \\u1014\\u102c\\u101b\\u102e\",d:\"\\u1010\\u1005\\u103a\\u101b\\u1000\\u103a\",dd:\"%d \\u101b\\u1000\\u103a\",M:\"\\u1010\\u1005\\u103a\\u101c\",MM:\"%d \\u101c\",y:\"\\u1010\\u1005\\u103a\\u1014\\u103e\\u1005\\u103a\",yy:\"%d \\u1014\\u103e\\u1005\\u103a\"},preparse:function(e){return e.replace(/[\\u1041\\u1042\\u1043\\u1044\\u1045\\u1046\\u1047\\u1048\\u1049\\u1040]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},week:{dow:1,doy:4}})}(n(\"wd/R\"))},iEDd:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"gl\",{months:\"xaneiro_febreiro_marzo_abril_maio_xu\\xf1o_xullo_agosto_setembro_outubro_novembro_decembro\".split(\"_\"),monthsShort:\"xan._feb._mar._abr._mai._xu\\xf1._xul._ago._set._out._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"domingo_luns_martes_m\\xe9rcores_xoves_venres_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._m\\xe9r._xov._ven._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_m\\xe9_xo_ve_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoxe \"+(1!==this.hours()?\"\\xe1s\":\"\\xe1\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1\\xe1 \"+(1!==this.hours()?\"\\xe1s\":\"\\xe1\")+\"] LT\"},nextWeek:function(){return\"dddd [\"+(1!==this.hours()?\"\\xe1s\":\"a\")+\"] LT\"},lastDay:function(){return\"[onte \"+(1!==this.hours()?\"\\xe1\":\"a\")+\"] LT\"},lastWeek:function(){return\"[o] dddd [pasado \"+(1!==this.hours()?\"\\xe1s\":\"a\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:function(e){return 0===e.indexOf(\"un\")?\"n\"+e:\"en \"+e},past:\"hai %s\",s:\"uns segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"unha hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un ano\",yy:\"%d anos\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},iYuL:function(e,t,n){!function(e){\"use strict\";var t=\"ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.\".split(\"_\"),n=\"ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic\".split(\"_\"),r=[/^ene/i,/^feb/i,/^mar/i,/^abr/i,/^may/i,/^jun/i,/^jul/i,/^ago/i,/^sep/i,/^oct/i,/^nov/i,/^dic/i],i=/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;e.defineLocale(\"es\",{months:\"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre\".split(\"_\"),monthsShort:function(e,r){return e?/-MMM-/.test(r)?n[e.month()]:t[e.month()]:t},monthsRegex:i,monthsShortRegex:i,monthsStrictRegex:/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,monthsShortStrictRegex:/^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,monthsParse:r,longMonthsParse:r,shortMonthsParse:r,weekdays:\"domingo_lunes_martes_mi\\xe9rcoles_jueves_viernes_s\\xe1bado\".split(\"_\"),weekdaysShort:\"dom._lun._mar._mi\\xe9._jue._vie._s\\xe1b.\".split(\"_\"),weekdaysMin:\"do_lu_ma_mi_ju_vi_s\\xe1\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [de] MMMM [de] YYYY\",LLL:\"D [de] MMMM [de] YYYY H:mm\",LLLL:\"dddd, D [de] MMMM [de] YYYY H:mm\"},calendar:{sameDay:function(){return\"[hoy a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextDay:function(){return\"[ma\\xf1ana a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},nextWeek:function(){return\"dddd [a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastDay:function(){return\"[ayer a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},lastWeek:function(){return\"[el] dddd [pasado a la\"+(1!==this.hours()?\"s\":\"\")+\"] LT\"},sameElse:\"L\"},relativeTime:{future:\"en %s\",past:\"hace %s\",s:\"unos segundos\",ss:\"%d segundos\",m:\"un minuto\",mm:\"%d minutos\",h:\"una hora\",hh:\"%d horas\",d:\"un d\\xeda\",dd:\"%d d\\xedas\",M:\"un mes\",MM:\"%d meses\",y:\"un a\\xf1o\",yy:\"%d a\\xf1os\"},dayOfMonthOrdinalParse:/\\d{1,2}\\xba/,ordinal:\"%d\\xba\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jUeY:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"el\",{monthsNominativeEl:\"\\u0399\\u03b1\\u03bd\\u03bf\\u03c5\\u03ac\\u03c1\\u03b9\\u03bf\\u03c2_\\u03a6\\u03b5\\u03b2\\u03c1\\u03bf\\u03c5\\u03ac\\u03c1\\u03b9\\u03bf\\u03c2_\\u039c\\u03ac\\u03c1\\u03c4\\u03b9\\u03bf\\u03c2_\\u0391\\u03c0\\u03c1\\u03af\\u03bb\\u03b9\\u03bf\\u03c2_\\u039c\\u03ac\\u03b9\\u03bf\\u03c2_\\u0399\\u03bf\\u03cd\\u03bd\\u03b9\\u03bf\\u03c2_\\u0399\\u03bf\\u03cd\\u03bb\\u03b9\\u03bf\\u03c2_\\u0391\\u03cd\\u03b3\\u03bf\\u03c5\\u03c3\\u03c4\\u03bf\\u03c2_\\u03a3\\u03b5\\u03c0\\u03c4\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u039f\\u03ba\\u03c4\\u03ce\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u039d\\u03bf\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2_\\u0394\\u03b5\\u03ba\\u03ad\\u03bc\\u03b2\\u03c1\\u03b9\\u03bf\\u03c2\".split(\"_\"),monthsGenitiveEl:\"\\u0399\\u03b1\\u03bd\\u03bf\\u03c5\\u03b1\\u03c1\\u03af\\u03bf\\u03c5_\\u03a6\\u03b5\\u03b2\\u03c1\\u03bf\\u03c5\\u03b1\\u03c1\\u03af\\u03bf\\u03c5_\\u039c\\u03b1\\u03c1\\u03c4\\u03af\\u03bf\\u03c5_\\u0391\\u03c0\\u03c1\\u03b9\\u03bb\\u03af\\u03bf\\u03c5_\\u039c\\u03b1\\u0390\\u03bf\\u03c5_\\u0399\\u03bf\\u03c5\\u03bd\\u03af\\u03bf\\u03c5_\\u0399\\u03bf\\u03c5\\u03bb\\u03af\\u03bf\\u03c5_\\u0391\\u03c5\\u03b3\\u03bf\\u03cd\\u03c3\\u03c4\\u03bf\\u03c5_\\u03a3\\u03b5\\u03c0\\u03c4\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u039f\\u03ba\\u03c4\\u03c9\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u039d\\u03bf\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5_\\u0394\\u03b5\\u03ba\\u03b5\\u03bc\\u03b2\\u03c1\\u03af\\u03bf\\u03c5\".split(\"_\"),months:function(e,t){return e?\"string\"==typeof t&&/D/.test(t.substring(0,t.indexOf(\"MMMM\")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]:this._monthsNominativeEl},monthsShort:\"\\u0399\\u03b1\\u03bd_\\u03a6\\u03b5\\u03b2_\\u039c\\u03b1\\u03c1_\\u0391\\u03c0\\u03c1_\\u039c\\u03b1\\u03ca_\\u0399\\u03bf\\u03c5\\u03bd_\\u0399\\u03bf\\u03c5\\u03bb_\\u0391\\u03c5\\u03b3_\\u03a3\\u03b5\\u03c0_\\u039f\\u03ba\\u03c4_\\u039d\\u03bf\\u03b5_\\u0394\\u03b5\\u03ba\".split(\"_\"),weekdays:\"\\u039a\\u03c5\\u03c1\\u03b9\\u03b1\\u03ba\\u03ae_\\u0394\\u03b5\\u03c5\\u03c4\\u03ad\\u03c1\\u03b1_\\u03a4\\u03c1\\u03af\\u03c4\\u03b7_\\u03a4\\u03b5\\u03c4\\u03ac\\u03c1\\u03c4\\u03b7_\\u03a0\\u03ad\\u03bc\\u03c0\\u03c4\\u03b7_\\u03a0\\u03b1\\u03c1\\u03b1\\u03c3\\u03ba\\u03b5\\u03c5\\u03ae_\\u03a3\\u03ac\\u03b2\\u03b2\\u03b1\\u03c4\\u03bf\".split(\"_\"),weekdaysShort:\"\\u039a\\u03c5\\u03c1_\\u0394\\u03b5\\u03c5_\\u03a4\\u03c1\\u03b9_\\u03a4\\u03b5\\u03c4_\\u03a0\\u03b5\\u03bc_\\u03a0\\u03b1\\u03c1_\\u03a3\\u03b1\\u03b2\".split(\"_\"),weekdaysMin:\"\\u039a\\u03c5_\\u0394\\u03b5_\\u03a4\\u03c1_\\u03a4\\u03b5_\\u03a0\\u03b5_\\u03a0\\u03b1_\\u03a3\\u03b1\".split(\"_\"),meridiem:function(e,t,n){return e>11?n?\"\\u03bc\\u03bc\":\"\\u039c\\u039c\":n?\"\\u03c0\\u03bc\":\"\\u03a0\\u039c\"},isPM:function(e){return\"\\u03bc\"===(e+\"\").toLowerCase()[0]},meridiemParse:/[\\u03a0\\u039c]\\.?\\u039c?\\.?/i,longDateFormat:{LT:\"h:mm A\",LTS:\"h:mm:ss A\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY h:mm A\",LLLL:\"dddd, D MMMM YYYY h:mm A\"},calendarEl:{sameDay:\"[\\u03a3\\u03ae\\u03bc\\u03b5\\u03c1\\u03b1 {}] LT\",nextDay:\"[\\u0391\\u03cd\\u03c1\\u03b9\\u03bf {}] LT\",nextWeek:\"dddd [{}] LT\",lastDay:\"[\\u03a7\\u03b8\\u03b5\\u03c2 {}] LT\",lastWeek:function(){switch(this.day()){case 6:return\"[\\u03c4\\u03bf \\u03c0\\u03c1\\u03bf\\u03b7\\u03b3\\u03bf\\u03cd\\u03bc\\u03b5\\u03bd\\u03bf] dddd [{}] LT\";default:return\"[\\u03c4\\u03b7\\u03bd \\u03c0\\u03c1\\u03bf\\u03b7\\u03b3\\u03bf\\u03cd\\u03bc\\u03b5\\u03bd\\u03b7] dddd [{}] LT\"}},sameElse:\"L\"},calendar:function(e,t){var n,r=this._calendarEl[e],i=t&&t.hours();return((n=r)instanceof Function||\"[object Function]\"===Object.prototype.toString.call(n))&&(r=r.apply(t)),r.replace(\"{}\",i%12==1?\"\\u03c3\\u03c4\\u03b7\":\"\\u03c3\\u03c4\\u03b9\\u03c2\")},relativeTime:{future:\"\\u03c3\\u03b5 %s\",past:\"%s \\u03c0\\u03c1\\u03b9\\u03bd\",s:\"\\u03bb\\u03af\\u03b3\\u03b1 \\u03b4\\u03b5\\u03c5\\u03c4\\u03b5\\u03c1\\u03cc\\u03bb\\u03b5\\u03c0\\u03c4\\u03b1\",ss:\"%d \\u03b4\\u03b5\\u03c5\\u03c4\\u03b5\\u03c1\\u03cc\\u03bb\\u03b5\\u03c0\\u03c4\\u03b1\",m:\"\\u03ad\\u03bd\\u03b1 \\u03bb\\u03b5\\u03c0\\u03c4\\u03cc\",mm:\"%d \\u03bb\\u03b5\\u03c0\\u03c4\\u03ac\",h:\"\\u03bc\\u03af\\u03b1 \\u03ce\\u03c1\\u03b1\",hh:\"%d \\u03ce\\u03c1\\u03b5\\u03c2\",d:\"\\u03bc\\u03af\\u03b1 \\u03bc\\u03ad\\u03c1\\u03b1\",dd:\"%d \\u03bc\\u03ad\\u03c1\\u03b5\\u03c2\",M:\"\\u03ad\\u03bd\\u03b1\\u03c2 \\u03bc\\u03ae\\u03bd\\u03b1\\u03c2\",MM:\"%d \\u03bc\\u03ae\\u03bd\\u03b5\\u03c2\",y:\"\\u03ad\\u03bd\\u03b1\\u03c2 \\u03c7\\u03c1\\u03cc\\u03bd\\u03bf\\u03c2\",yy:\"%d \\u03c7\\u03c1\\u03cc\\u03bd\\u03b9\\u03b1\"},dayOfMonthOrdinalParse:/\\d{1,2}\\u03b7/,ordinal:\"%d\\u03b7\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jVdC:function(e,t,n){!function(e){\"use strict\";var t=\"stycze\\u0144_luty_marzec_kwiecie\\u0144_maj_czerwiec_lipiec_sierpie\\u0144_wrzesie\\u0144_pa\\u017adziernik_listopad_grudzie\\u0144\".split(\"_\"),n=\"stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_wrze\\u015bnia_pa\\u017adziernika_listopada_grudnia\".split(\"_\");function r(e){return e%10<5&&e%10>1&&~~(e/10)%10!=1}function i(e,t,n){var i=e+\" \";switch(n){case\"ss\":return i+(r(e)?\"sekundy\":\"sekund\");case\"m\":return t?\"minuta\":\"minut\\u0119\";case\"mm\":return i+(r(e)?\"minuty\":\"minut\");case\"h\":return t?\"godzina\":\"godzin\\u0119\";case\"hh\":return i+(r(e)?\"godziny\":\"godzin\");case\"MM\":return i+(r(e)?\"miesi\\u0105ce\":\"miesi\\u0119cy\");case\"yy\":return i+(r(e)?\"lata\":\"lat\")}}e.defineLocale(\"pl\",{months:function(e,r){return e?\"\"===r?\"(\"+n[e.month()]+\"|\"+t[e.month()]+\")\":/D MMMM/.test(r)?n[e.month()]:t[e.month()]:t},monthsShort:\"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_pa\\u017a_lis_gru\".split(\"_\"),weekdays:\"niedziela_poniedzia\\u0142ek_wtorek_\\u015broda_czwartek_pi\\u0105tek_sobota\".split(\"_\"),weekdaysShort:\"ndz_pon_wt_\\u015br_czw_pt_sob\".split(\"_\"),weekdaysMin:\"Nd_Pn_Wt_\\u015ar_Cz_Pt_So\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Dzi\\u015b o] LT\",nextDay:\"[Jutro o] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[W niedziel\\u0119 o] LT\";case 2:return\"[We wtorek o] LT\";case 3:return\"[W \\u015brod\\u0119 o] LT\";case 6:return\"[W sobot\\u0119 o] LT\";default:return\"[W] dddd [o] LT\"}},lastDay:\"[Wczoraj o] LT\",lastWeek:function(){switch(this.day()){case 0:return\"[W zesz\\u0142\\u0105 niedziel\\u0119 o] LT\";case 3:return\"[W zesz\\u0142\\u0105 \\u015brod\\u0119 o] LT\";case 6:return\"[W zesz\\u0142\\u0105 sobot\\u0119 o] LT\";default:return\"[W zesz\\u0142y] dddd [o] LT\"}},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"%s temu\",s:\"kilka sekund\",ss:i,m:i,mm:i,h:i,hh:i,d:\"1 dzie\\u0144\",dd:\"%d dni\",M:\"miesi\\u0105c\",MM:i,y:\"rok\",yy:i},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},jfSC:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u06f1\",2:\"\\u06f2\",3:\"\\u06f3\",4:\"\\u06f4\",5:\"\\u06f5\",6:\"\\u06f6\",7:\"\\u06f7\",8:\"\\u06f8\",9:\"\\u06f9\",0:\"\\u06f0\"},n={\"\\u06f1\":\"1\",\"\\u06f2\":\"2\",\"\\u06f3\":\"3\",\"\\u06f4\":\"4\",\"\\u06f5\":\"5\",\"\\u06f6\":\"6\",\"\\u06f7\":\"7\",\"\\u06f8\":\"8\",\"\\u06f9\":\"9\",\"\\u06f0\":\"0\"};e.defineLocale(\"fa\",{months:\"\\u0698\\u0627\\u0646\\u0648\\u06cc\\u0647_\\u0641\\u0648\\u0631\\u06cc\\u0647_\\u0645\\u0627\\u0631\\u0633_\\u0622\\u0648\\u0631\\u06cc\\u0644_\\u0645\\u0647_\\u0698\\u0648\\u0626\\u0646_\\u0698\\u0648\\u0626\\u06cc\\u0647_\\u0627\\u0648\\u062a_\\u0633\\u067e\\u062a\\u0627\\u0645\\u0628\\u0631_\\u0627\\u06a9\\u062a\\u0628\\u0631_\\u0646\\u0648\\u0627\\u0645\\u0628\\u0631_\\u062f\\u0633\\u0627\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u0698\\u0627\\u0646\\u0648\\u06cc\\u0647_\\u0641\\u0648\\u0631\\u06cc\\u0647_\\u0645\\u0627\\u0631\\u0633_\\u0622\\u0648\\u0631\\u06cc\\u0644_\\u0645\\u0647_\\u0698\\u0648\\u0626\\u0646_\\u0698\\u0648\\u0626\\u06cc\\u0647_\\u0627\\u0648\\u062a_\\u0633\\u067e\\u062a\\u0627\\u0645\\u0628\\u0631_\\u0627\\u06a9\\u062a\\u0628\\u0631_\\u0646\\u0648\\u0627\\u0645\\u0628\\u0631_\\u062f\\u0633\\u0627\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u06cc\\u06a9\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062f\\u0648\\u0634\\u0646\\u0628\\u0647_\\u0633\\u0647\\u200c\\u0634\\u0646\\u0628\\u0647_\\u0686\\u0647\\u0627\\u0631\\u0634\\u0646\\u0628\\u0647_\\u067e\\u0646\\u062c\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062c\\u0645\\u0639\\u0647_\\u0634\\u0646\\u0628\\u0647\".split(\"_\"),weekdaysShort:\"\\u06cc\\u06a9\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062f\\u0648\\u0634\\u0646\\u0628\\u0647_\\u0633\\u0647\\u200c\\u0634\\u0646\\u0628\\u0647_\\u0686\\u0647\\u0627\\u0631\\u0634\\u0646\\u0628\\u0647_\\u067e\\u0646\\u062c\\u200c\\u0634\\u0646\\u0628\\u0647_\\u062c\\u0645\\u0639\\u0647_\\u0634\\u0646\\u0628\\u0647\".split(\"_\"),weekdaysMin:\"\\u06cc_\\u062f_\\u0633_\\u0686_\\u067e_\\u062c_\\u0634\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},meridiemParse:/\\u0642\\u0628\\u0644 \\u0627\\u0632 \\u0638\\u0647\\u0631|\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631/,isPM:function(e){return/\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631/.test(e)},meridiem:function(e,t,n){return e<12?\"\\u0642\\u0628\\u0644 \\u0627\\u0632 \\u0638\\u0647\\u0631\":\"\\u0628\\u0639\\u062f \\u0627\\u0632 \\u0638\\u0647\\u0631\"},calendar:{sameDay:\"[\\u0627\\u0645\\u0631\\u0648\\u0632 \\u0633\\u0627\\u0639\\u062a] LT\",nextDay:\"[\\u0641\\u0631\\u062f\\u0627 \\u0633\\u0627\\u0639\\u062a] LT\",nextWeek:\"dddd [\\u0633\\u0627\\u0639\\u062a] LT\",lastDay:\"[\\u062f\\u06cc\\u0631\\u0648\\u0632 \\u0633\\u0627\\u0639\\u062a] LT\",lastWeek:\"dddd [\\u067e\\u06cc\\u0634] [\\u0633\\u0627\\u0639\\u062a] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u062f\\u0631 %s\",past:\"%s \\u067e\\u06cc\\u0634\",s:\"\\u0686\\u0646\\u062f \\u062b\\u0627\\u0646\\u06cc\\u0647\",ss:\"\\u062b\\u0627\\u0646\\u06cc\\u0647 d%\",m:\"\\u06cc\\u06a9 \\u062f\\u0642\\u06cc\\u0642\\u0647\",mm:\"%d \\u062f\\u0642\\u06cc\\u0642\\u0647\",h:\"\\u06cc\\u06a9 \\u0633\\u0627\\u0639\\u062a\",hh:\"%d \\u0633\\u0627\\u0639\\u062a\",d:\"\\u06cc\\u06a9 \\u0631\\u0648\\u0632\",dd:\"%d \\u0631\\u0648\\u0632\",M:\"\\u06cc\\u06a9 \\u0645\\u0627\\u0647\",MM:\"%d \\u0645\\u0627\\u0647\",y:\"\\u06cc\\u06a9 \\u0633\\u0627\\u0644\",yy:\"%d \\u0633\\u0627\\u0644\"},preparse:function(e){return e.replace(/[\\u06f0-\\u06f9]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},dayOfMonthOrdinalParse:/\\d{1,2}\\u0645/,ordinal:\"%d\\u0645\",week:{dow:6,doy:12}})}(n(\"wd/R\"))},jnO4:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u0661\",2:\"\\u0662\",3:\"\\u0663\",4:\"\\u0664\",5:\"\\u0665\",6:\"\\u0666\",7:\"\\u0667\",8:\"\\u0668\",9:\"\\u0669\",0:\"\\u0660\"},n={\"\\u0661\":\"1\",\"\\u0662\":\"2\",\"\\u0663\":\"3\",\"\\u0664\":\"4\",\"\\u0665\":\"5\",\"\\u0666\":\"6\",\"\\u0667\":\"7\",\"\\u0668\":\"8\",\"\\u0669\":\"9\",\"\\u0660\":\"0\"},r=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5},i={s:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062b\\u0627\\u0646\\u064a\\u0629\",\"\\u062b\\u0627\\u0646\\u064a\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u0627\\u0646\",\"\\u062b\\u0627\\u0646\\u064a\\u062a\\u064a\\u0646\"],\"%d \\u062b\\u0648\\u0627\\u0646\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\"],m:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u062f\\u0642\\u064a\\u0642\\u0629\",\"\\u062f\\u0642\\u064a\\u0642\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u0627\\u0646\",\"\\u062f\\u0642\\u064a\\u0642\\u062a\\u064a\\u0646\"],\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\",\"%d \\u062f\\u0642\\u064a\\u0642\\u0629\"],h:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0633\\u0627\\u0639\\u0629\",\"\\u0633\\u0627\\u0639\\u0629 \\u0648\\u0627\\u062d\\u062f\\u0629\",[\"\\u0633\\u0627\\u0639\\u062a\\u0627\\u0646\",\"\\u0633\\u0627\\u0639\\u062a\\u064a\\u0646\"],\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",\"%d \\u0633\\u0627\\u0639\\u0629\",\"%d \\u0633\\u0627\\u0639\\u0629\"],d:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u064a\\u0648\\u0645\",\"\\u064a\\u0648\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u064a\\u0648\\u0645\\u0627\\u0646\",\"\\u064a\\u0648\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u064a\\u0627\\u0645\",\"%d \\u064a\\u0648\\u0645\\u064b\\u0627\",\"%d \\u064a\\u0648\\u0645\"],M:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0634\\u0647\\u0631\",\"\\u0634\\u0647\\u0631 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0634\\u0647\\u0631\\u0627\\u0646\",\"\\u0634\\u0647\\u0631\\u064a\\u0646\"],\"%d \\u0623\\u0634\\u0647\\u0631\",\"%d \\u0634\\u0647\\u0631\\u0627\",\"%d \\u0634\\u0647\\u0631\"],y:[\"\\u0623\\u0642\\u0644 \\u0645\\u0646 \\u0639\\u0627\\u0645\",\"\\u0639\\u0627\\u0645 \\u0648\\u0627\\u062d\\u062f\",[\"\\u0639\\u0627\\u0645\\u0627\\u0646\",\"\\u0639\\u0627\\u0645\\u064a\\u0646\"],\"%d \\u0623\\u0639\\u0648\\u0627\\u0645\",\"%d \\u0639\\u0627\\u0645\\u064b\\u0627\",\"%d \\u0639\\u0627\\u0645\"]},a=function(e){return function(t,n,a,o){var s=r(t),l=i[e][r(t)];return 2===s&&(l=l[n?0:1]),l.replace(/%d/i,t)}},o=[\"\\u064a\\u0646\\u0627\\u064a\\u0631\",\"\\u0641\\u0628\\u0631\\u0627\\u064a\\u0631\",\"\\u0645\\u0627\\u0631\\u0633\",\"\\u0623\\u0628\\u0631\\u064a\\u0644\",\"\\u0645\\u0627\\u064a\\u0648\",\"\\u064a\\u0648\\u0646\\u064a\\u0648\",\"\\u064a\\u0648\\u0644\\u064a\\u0648\",\"\\u0623\\u063a\\u0633\\u0637\\u0633\",\"\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631\",\"\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631\",\"\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631\",\"\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\"];e.defineLocale(\"ar\",{months:o,monthsShort:o,weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0623\\u062d\\u062f_\\u0625\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u062d_\\u0646_\\u062b_\\u0631_\\u062e_\\u062c_\\u0633\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"D/\\u200fM/\\u200fYYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0635|\\u0645/,isPM:function(e){return\"\\u0645\"===e},meridiem:function(e,t,n){return e<12?\"\\u0635\":\"\\u0645\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u064b\\u0627 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0646\\u062f \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0628\\u0639\\u062f %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:a(\"s\"),ss:a(\"s\"),m:a(\"m\"),mm:a(\"m\"),h:a(\"h\"),hh:a(\"h\"),d:a(\"d\"),dd:a(\"d\"),M:a(\"M\"),MM:a(\"M\"),y:a(\"y\"),yy:a(\"y\")},preparse:function(e){return e.replace(/[\\u0661\\u0662\\u0663\\u0664\\u0665\\u0666\\u0667\\u0668\\u0669\\u0660]/g,(function(e){return n[e]})).replace(/\\u060c/g,\",\")},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]})).replace(/,/g,\"\\u060c\")},week:{dow:6,doy:12}})}(n(\"wd/R\"))},kEOa:function(e,t,n){!function(e){\"use strict\";var t={1:\"\\u09e7\",2:\"\\u09e8\",3:\"\\u09e9\",4:\"\\u09ea\",5:\"\\u09eb\",6:\"\\u09ec\",7:\"\\u09ed\",8:\"\\u09ee\",9:\"\\u09ef\",0:\"\\u09e6\"},n={\"\\u09e7\":\"1\",\"\\u09e8\":\"2\",\"\\u09e9\":\"3\",\"\\u09ea\":\"4\",\"\\u09eb\":\"5\",\"\\u09ec\":\"6\",\"\\u09ed\":\"7\",\"\\u09ee\":\"8\",\"\\u09ef\":\"9\",\"\\u09e6\":\"0\"};e.defineLocale(\"bn\",{months:\"\\u099c\\u09be\\u09a8\\u09c1\\u09df\\u09be\\u09b0\\u09c0_\\u09ab\\u09c7\\u09ac\\u09cd\\u09b0\\u09c1\\u09df\\u09be\\u09b0\\u09bf_\\u09ae\\u09be\\u09b0\\u09cd\\u099a_\\u098f\\u09aa\\u09cd\\u09b0\\u09bf\\u09b2_\\u09ae\\u09c7_\\u099c\\u09c1\\u09a8_\\u099c\\u09c1\\u09b2\\u09be\\u0987_\\u0986\\u0997\\u09b8\\u09cd\\u099f_\\u09b8\\u09c7\\u09aa\\u09cd\\u099f\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0_\\u0985\\u0995\\u09cd\\u099f\\u09cb\\u09ac\\u09b0_\\u09a8\\u09ad\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0_\\u09a1\\u09bf\\u09b8\\u09c7\\u09ae\\u09cd\\u09ac\\u09b0\".split(\"_\"),monthsShort:\"\\u099c\\u09be\\u09a8\\u09c1_\\u09ab\\u09c7\\u09ac_\\u09ae\\u09be\\u09b0\\u09cd\\u099a_\\u098f\\u09aa\\u09cd\\u09b0_\\u09ae\\u09c7_\\u099c\\u09c1\\u09a8_\\u099c\\u09c1\\u09b2_\\u0986\\u0997_\\u09b8\\u09c7\\u09aa\\u09cd\\u099f_\\u0985\\u0995\\u09cd\\u099f\\u09cb_\\u09a8\\u09ad\\u09c7_\\u09a1\\u09bf\\u09b8\\u09c7\".split(\"_\"),weekdays:\"\\u09b0\\u09ac\\u09bf\\u09ac\\u09be\\u09b0_\\u09b8\\u09cb\\u09ae\\u09ac\\u09be\\u09b0_\\u09ae\\u0999\\u09cd\\u0997\\u09b2\\u09ac\\u09be\\u09b0_\\u09ac\\u09c1\\u09a7\\u09ac\\u09be\\u09b0_\\u09ac\\u09c3\\u09b9\\u09b8\\u09cd\\u09aa\\u09a4\\u09bf\\u09ac\\u09be\\u09b0_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0\\u09ac\\u09be\\u09b0_\\u09b6\\u09a8\\u09bf\\u09ac\\u09be\\u09b0\".split(\"_\"),weekdaysShort:\"\\u09b0\\u09ac\\u09bf_\\u09b8\\u09cb\\u09ae_\\u09ae\\u0999\\u09cd\\u0997\\u09b2_\\u09ac\\u09c1\\u09a7_\\u09ac\\u09c3\\u09b9\\u09b8\\u09cd\\u09aa\\u09a4\\u09bf_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0_\\u09b6\\u09a8\\u09bf\".split(\"_\"),weekdaysMin:\"\\u09b0\\u09ac\\u09bf_\\u09b8\\u09cb\\u09ae_\\u09ae\\u0999\\u09cd\\u0997_\\u09ac\\u09c1\\u09a7_\\u09ac\\u09c3\\u09b9\\u0983_\\u09b6\\u09c1\\u0995\\u09cd\\u09b0_\\u09b6\\u09a8\\u09bf\".split(\"_\"),longDateFormat:{LT:\"A h:mm \\u09b8\\u09ae\\u09df\",LTS:\"A h:mm:ss \\u09b8\\u09ae\\u09df\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY, A h:mm \\u09b8\\u09ae\\u09df\",LLLL:\"dddd, D MMMM YYYY, A h:mm \\u09b8\\u09ae\\u09df\"},calendar:{sameDay:\"[\\u0986\\u099c] LT\",nextDay:\"[\\u0986\\u0997\\u09be\\u09ae\\u09c0\\u0995\\u09be\\u09b2] LT\",nextWeek:\"dddd, LT\",lastDay:\"[\\u0997\\u09a4\\u0995\\u09be\\u09b2] LT\",lastWeek:\"[\\u0997\\u09a4] dddd, LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u09aa\\u09b0\\u09c7\",past:\"%s \\u0986\\u0997\\u09c7\",s:\"\\u0995\\u09df\\u09c7\\u0995 \\u09b8\\u09c7\\u0995\\u09c7\\u09a8\\u09cd\\u09a1\",ss:\"%d \\u09b8\\u09c7\\u0995\\u09c7\\u09a8\\u09cd\\u09a1\",m:\"\\u098f\\u0995 \\u09ae\\u09bf\\u09a8\\u09bf\\u099f\",mm:\"%d \\u09ae\\u09bf\\u09a8\\u09bf\\u099f\",h:\"\\u098f\\u0995 \\u0998\\u09a8\\u09cd\\u099f\\u09be\",hh:\"%d \\u0998\\u09a8\\u09cd\\u099f\\u09be\",d:\"\\u098f\\u0995 \\u09a6\\u09bf\\u09a8\",dd:\"%d \\u09a6\\u09bf\\u09a8\",M:\"\\u098f\\u0995 \\u09ae\\u09be\\u09b8\",MM:\"%d \\u09ae\\u09be\\u09b8\",y:\"\\u098f\\u0995 \\u09ac\\u099b\\u09b0\",yy:\"%d \\u09ac\\u099b\\u09b0\"},preparse:function(e){return e.replace(/[\\u09e7\\u09e8\\u09e9\\u09ea\\u09eb\\u09ec\\u09ed\\u09ee\\u09ef\\u09e6]/g,(function(e){return n[e]}))},postformat:function(e){return e.replace(/\\d/g,(function(e){return t[e]}))},meridiemParse:/\\u09b0\\u09be\\u09a4|\\u09b8\\u0995\\u09be\\u09b2|\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0|\\u09ac\\u09bf\\u0995\\u09be\\u09b2|\\u09b0\\u09be\\u09a4/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u09b0\\u09be\\u09a4\"===t&&e>=4||\"\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0\"===t&&e<5||\"\\u09ac\\u09bf\\u0995\\u09be\\u09b2\"===t?e+12:e},meridiem:function(e,t,n){return e<4?\"\\u09b0\\u09be\\u09a4\":e<10?\"\\u09b8\\u0995\\u09be\\u09b2\":e<17?\"\\u09a6\\u09c1\\u09aa\\u09c1\\u09b0\":e<20?\"\\u09ac\\u09bf\\u0995\\u09be\\u09b2\":\"\\u09b0\\u09be\\u09a4\"},week:{dow:0,doy:6}})}(n(\"wd/R\"))},kOpN:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"zh-tw\",{months:\"\\u4e00\\u6708_\\u4e8c\\u6708_\\u4e09\\u6708_\\u56db\\u6708_\\u4e94\\u6708_\\u516d\\u6708_\\u4e03\\u6708_\\u516b\\u6708_\\u4e5d\\u6708_\\u5341\\u6708_\\u5341\\u4e00\\u6708_\\u5341\\u4e8c\\u6708\".split(\"_\"),monthsShort:\"1\\u6708_2\\u6708_3\\u6708_4\\u6708_5\\u6708_6\\u6708_7\\u6708_8\\u6708_9\\u6708_10\\u6708_11\\u6708_12\\u6708\".split(\"_\"),weekdays:\"\\u661f\\u671f\\u65e5_\\u661f\\u671f\\u4e00_\\u661f\\u671f\\u4e8c_\\u661f\\u671f\\u4e09_\\u661f\\u671f\\u56db_\\u661f\\u671f\\u4e94_\\u661f\\u671f\\u516d\".split(\"_\"),weekdaysShort:\"\\u9031\\u65e5_\\u9031\\u4e00_\\u9031\\u4e8c_\\u9031\\u4e09_\\u9031\\u56db_\\u9031\\u4e94_\\u9031\\u516d\".split(\"_\"),weekdaysMin:\"\\u65e5_\\u4e00_\\u4e8c_\\u4e09_\\u56db_\\u4e94_\\u516d\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY/MM/DD\",LL:\"YYYY\\u5e74M\\u6708D\\u65e5\",LLL:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",LLLL:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\",l:\"YYYY/M/D\",ll:\"YYYY\\u5e74M\\u6708D\\u65e5\",lll:\"YYYY\\u5e74M\\u6708D\\u65e5 HH:mm\",llll:\"YYYY\\u5e74M\\u6708D\\u65e5dddd HH:mm\"},meridiemParse:/\\u51cc\\u6668|\\u65e9\\u4e0a|\\u4e0a\\u5348|\\u4e2d\\u5348|\\u4e0b\\u5348|\\u665a\\u4e0a/,meridiemHour:function(e,t){return 12===e&&(e=0),\"\\u51cc\\u6668\"===t||\"\\u65e9\\u4e0a\"===t||\"\\u4e0a\\u5348\"===t?e:\"\\u4e2d\\u5348\"===t?e>=11?e:e+12:\"\\u4e0b\\u5348\"===t||\"\\u665a\\u4e0a\"===t?e+12:void 0},meridiem:function(e,t,n){var r=100*e+t;return r<600?\"\\u51cc\\u6668\":r<900?\"\\u65e9\\u4e0a\":r<1130?\"\\u4e0a\\u5348\":r<1230?\"\\u4e2d\\u5348\":r<1800?\"\\u4e0b\\u5348\":\"\\u665a\\u4e0a\"},calendar:{sameDay:\"[\\u4eca\\u5929] LT\",nextDay:\"[\\u660e\\u5929] LT\",nextWeek:\"[\\u4e0b]dddd LT\",lastDay:\"[\\u6628\\u5929] LT\",lastWeek:\"[\\u4e0a]dddd LT\",sameElse:\"L\"},dayOfMonthOrdinalParse:/\\d{1,2}(\\u65e5|\\u6708|\\u9031)/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\"\\u65e5\";case\"M\":return e+\"\\u6708\";case\"w\":case\"W\":return e+\"\\u9031\";default:return e}},relativeTime:{future:\"%s\\u5167\",past:\"%s\\u524d\",s:\"\\u5e7e\\u79d2\",ss:\"%d \\u79d2\",m:\"1 \\u5206\\u9418\",mm:\"%d \\u5206\\u9418\",h:\"1 \\u5c0f\\u6642\",hh:\"%d \\u5c0f\\u6642\",d:\"1 \\u5929\",dd:\"%d \\u5929\",M:\"1 \\u500b\\u6708\",MM:\"%d \\u500b\\u6708\",y:\"1 \\u5e74\",yy:\"%d \\u5e74\"}})}(n(\"wd/R\"))},l5ep:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"cy\",{months:\"Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr\".split(\"_\"),monthsShort:\"Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag\".split(\"_\"),weekdays:\"Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn\".split(\"_\"),weekdaysShort:\"Sul_Llun_Maw_Mer_Iau_Gwe_Sad\".split(\"_\"),weekdaysMin:\"Su_Ll_Ma_Me_Ia_Gw_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Heddiw am] LT\",nextDay:\"[Yfory am] LT\",nextWeek:\"dddd [am] LT\",lastDay:\"[Ddoe am] LT\",lastWeek:\"dddd [diwethaf am] LT\",sameElse:\"L\"},relativeTime:{future:\"mewn %s\",past:\"%s yn \\xf4l\",s:\"ychydig eiliadau\",ss:\"%d eiliad\",m:\"munud\",mm:\"%d munud\",h:\"awr\",hh:\"%d awr\",d:\"diwrnod\",dd:\"%d diwrnod\",M:\"mis\",MM:\"%d mis\",y:\"blwyddyn\",yy:\"%d flynedd\"},dayOfMonthOrdinalParse:/\\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,ordinal:function(e){var t=\"\";return e>20?t=40===e||50===e||60===e||80===e||100===e?\"fed\":\"ain\":e>0&&(t=[\"\",\"af\",\"il\",\"ydd\",\"ydd\",\"ed\",\"ed\",\"ed\",\"fed\",\"fed\",\"fed\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"eg\",\"fed\",\"eg\",\"fed\"][e]),e+t},week:{dow:1,doy:4}})}(n(\"wd/R\"))},lXzo:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r,i;return\"m\"===n?t?\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430\":\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0443\":e+\" \"+(r=+e,i={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0430_\\u043c\\u0438\\u043d\\u0443\\u0442\\u044b_\\u043c\\u0438\\u043d\\u0443\\u0442\":\"\\u043c\\u0438\\u043d\\u0443\\u0442\\u0443_\\u043c\\u0438\\u043d\\u0443\\u0442\\u044b_\\u043c\\u0438\\u043d\\u0443\\u0442\",hh:\"\\u0447\\u0430\\u0441_\\u0447\\u0430\\u0441\\u0430_\\u0447\\u0430\\u0441\\u043e\\u0432\",dd:\"\\u0434\\u0435\\u043d\\u044c_\\u0434\\u043d\\u044f_\\u0434\\u043d\\u0435\\u0439\",MM:\"\\u043c\\u0435\\u0441\\u044f\\u0446_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0430_\\u043c\\u0435\\u0441\\u044f\\u0446\\u0435\\u0432\",yy:\"\\u0433\\u043e\\u0434_\\u0433\\u043e\\u0434\\u0430_\\u043b\\u0435\\u0442\"}[n].split(\"_\"),r%10==1&&r%100!=11?i[0]:r%10>=2&&r%10<=4&&(r%100<10||r%100>=20)?i[1]:i[2])}var n=[/^\\u044f\\u043d\\u0432/i,/^\\u0444\\u0435\\u0432/i,/^\\u043c\\u0430\\u0440/i,/^\\u0430\\u043f\\u0440/i,/^\\u043c\\u0430[\\u0439\\u044f]/i,/^\\u0438\\u044e\\u043d/i,/^\\u0438\\u044e\\u043b/i,/^\\u0430\\u0432\\u0433/i,/^\\u0441\\u0435\\u043d/i,/^\\u043e\\u043a\\u0442/i,/^\\u043d\\u043e\\u044f/i,/^\\u0434\\u0435\\u043a/i];e.defineLocale(\"ru\",{months:{format:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044f_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044f_\\u043c\\u0430\\u0440\\u0442\\u0430_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044f_\\u043c\\u0430\\u044f_\\u0438\\u044e\\u043d\\u044f_\\u0438\\u044e\\u043b\\u044f_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044f_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044f_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044f_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044f\".split(\"_\"),standalone:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044c_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044c_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044c_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044c_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044c\".split(\"_\")},monthsShort:{format:\"\\u044f\\u043d\\u0432._\\u0444\\u0435\\u0432\\u0440._\\u043c\\u0430\\u0440._\\u0430\\u043f\\u0440._\\u043c\\u0430\\u044f_\\u0438\\u044e\\u043d\\u044f_\\u0438\\u044e\\u043b\\u044f_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043d\\u0442._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u044f\\u0431._\\u0434\\u0435\\u043a.\".split(\"_\"),standalone:\"\\u044f\\u043d\\u0432._\\u0444\\u0435\\u0432\\u0440._\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440._\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433._\\u0441\\u0435\\u043d\\u0442._\\u043e\\u043a\\u0442._\\u043d\\u043e\\u044f\\u0431._\\u0434\\u0435\\u043a.\".split(\"_\")},weekdays:{standalone:\"\\u0432\\u043e\\u0441\\u043a\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c\\u0435_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u044c\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433_\\u043f\\u044f\\u0442\\u043d\\u0438\\u0446\\u0430_\\u0441\\u0443\\u0431\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),format:\"\\u0432\\u043e\\u0441\\u043a\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c\\u0435_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0435\\u043b\\u044c\\u043d\\u0438\\u043a_\\u0432\\u0442\\u043e\\u0440\\u043d\\u0438\\u043a_\\u0441\\u0440\\u0435\\u0434\\u0443_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433_\\u043f\\u044f\\u0442\\u043d\\u0438\\u0446\\u0443_\\u0441\\u0443\\u0431\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),isFormat:/\\[ ?[\\u0412\\u0432] ?(?:\\u043f\\u0440\\u043e\\u0448\\u043b\\u0443\\u044e|\\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0443\\u044e|\\u044d\\u0442\\u0443)? ?\\] ?dddd/},weekdaysShort:\"\\u0432\\u0441_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u0432\\u0441_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),monthsParse:n,longMonthsParse:n,shortMonthsParse:n,monthsRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044c\\u044f]|\\u044f\\u043d\\u0432\\.?|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044c\\u044f]|\\u0444\\u0435\\u0432\\u0440?\\.?|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u043c\\u0430\\u0440\\.?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044c\\u044f]|\\u0430\\u043f\\u0440\\.?|\\u043c\\u0430[\\u0439\\u044f]|\\u0438\\u044e\\u043d[\\u044c\\u044f]|\\u0438\\u044e\\u043d\\.?|\\u0438\\u044e\\u043b[\\u044c\\u044f]|\\u0438\\u044e\\u043b\\.?|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0430\\u0432\\u0433\\.?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u0441\\u0435\\u043d\\u0442?\\.?|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043e\\u043a\\u0442\\.?|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043d\\u043e\\u044f\\u0431?\\.?|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044c\\u044f]|\\u0434\\u0435\\u043a\\.?)/i,monthsShortRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044c\\u044f]|\\u044f\\u043d\\u0432\\.?|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044c\\u044f]|\\u0444\\u0435\\u0432\\u0440?\\.?|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u043c\\u0430\\u0440\\.?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044c\\u044f]|\\u0430\\u043f\\u0440\\.?|\\u043c\\u0430[\\u0439\\u044f]|\\u0438\\u044e\\u043d[\\u044c\\u044f]|\\u0438\\u044e\\u043d\\.?|\\u0438\\u044e\\u043b[\\u044c\\u044f]|\\u0438\\u044e\\u043b\\.?|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0430\\u0432\\u0433\\.?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u0441\\u0435\\u043d\\u0442?\\.?|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043e\\u043a\\u0442\\.?|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044c\\u044f]|\\u043d\\u043e\\u044f\\u0431?\\.?|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044c\\u044f]|\\u0434\\u0435\\u043a\\.?)/i,monthsStrictRegex:/^(\\u044f\\u043d\\u0432\\u0430\\u0440[\\u044f\\u044c]|\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b[\\u044f\\u044c]|\\u043c\\u0430\\u0440\\u0442\\u0430?|\\u0430\\u043f\\u0440\\u0435\\u043b[\\u044f\\u044c]|\\u043c\\u0430[\\u044f\\u0439]|\\u0438\\u044e\\u043d[\\u044f\\u044c]|\\u0438\\u044e\\u043b[\\u044f\\u044c]|\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442\\u0430?|\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u043d\\u043e\\u044f\\u0431\\u0440[\\u044f\\u044c]|\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440[\\u044f\\u044c])/i,monthsShortStrictRegex:/^(\\u044f\\u043d\\u0432\\.|\\u0444\\u0435\\u0432\\u0440?\\.|\\u043c\\u0430\\u0440[\\u0442.]|\\u0430\\u043f\\u0440\\.|\\u043c\\u0430[\\u044f\\u0439]|\\u0438\\u044e\\u043d[\\u044c\\u044f.]|\\u0438\\u044e\\u043b[\\u044c\\u044f.]|\\u0430\\u0432\\u0433\\.|\\u0441\\u0435\\u043d\\u0442?\\.|\\u043e\\u043a\\u0442\\.|\\u043d\\u043e\\u044f\\u0431?\\.|\\u0434\\u0435\\u043a\\.)/i,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0433.\",LLL:\"D MMMM YYYY \\u0433., H:mm\",LLLL:\"dddd, D MMMM YYYY \\u0433., H:mm\"},calendar:{sameDay:\"[\\u0421\\u0435\\u0433\\u043e\\u0434\\u043d\\u044f, \\u0432] LT\",nextDay:\"[\\u0417\\u0430\\u0432\\u0442\\u0440\\u0430, \\u0432] LT\",lastDay:\"[\\u0412\\u0447\\u0435\\u0440\\u0430, \\u0432] LT\",nextWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[\\u0412\\u043e] dddd, [\\u0432] LT\":\"[\\u0412] dddd, [\\u0432] LT\";switch(this.day()){case 0:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0435\\u0435] dddd, [\\u0432] LT\";case 1:case 2:case 4:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0438\\u0439] dddd, [\\u0432] LT\";case 3:case 5:case 6:return\"[\\u0412 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0443\\u044e] dddd, [\\u0432] LT\"}},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?\"[\\u0412\\u043e] dddd, [\\u0432] LT\":\"[\\u0412] dddd, [\\u0432] LT\";switch(this.day()){case 0:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u043e\\u0435] dddd, [\\u0432] LT\";case 1:case 2:case 4:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u044b\\u0439] dddd, [\\u0432] LT\";case 3:case 5:case 6:return\"[\\u0412 \\u043f\\u0440\\u043e\\u0448\\u043b\\u0443\\u044e] dddd, [\\u0432] LT\"}},sameElse:\"L\"},relativeTime:{future:\"\\u0447\\u0435\\u0440\\u0435\\u0437 %s\",past:\"%s \\u043d\\u0430\\u0437\\u0430\\u0434\",s:\"\\u043d\\u0435\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u043e \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:t,m:t,mm:t,h:\"\\u0447\\u0430\\u0441\",hh:t,d:\"\\u0434\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0435\\u0441\\u044f\\u0446\",MM:t,y:\"\\u0433\\u043e\\u0434\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u0438|\\u0443\\u0442\\u0440\\u0430|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430/i,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u0438\":e<12?\"\\u0443\\u0442\\u0440\\u0430\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u0435\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0439|\\u0433\\u043e|\\u044f)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":return e+\"-\\u0439\";case\"D\":return e+\"-\\u0433\\u043e\";case\"w\":case\"W\":return e+\"-\\u044f\";default:return e}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},lYtQ:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){switch(n){case\"s\":return t?\"\\u0445\\u044d\\u0434\\u0445\\u044d\\u043d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0445\\u044d\\u0434\\u0445\\u044d\\u043d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b\\u043d\";case\"ss\":return e+(t?\" \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\" \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u044b\\u043d\");case\"m\":case\"mm\":return e+(t?\" \\u043c\\u0438\\u043d\\u0443\\u0442\":\" \\u043c\\u0438\\u043d\\u0443\\u0442\\u044b\\u043d\");case\"h\":case\"hh\":return e+(t?\" \\u0446\\u0430\\u0433\":\" \\u0446\\u0430\\u0433\\u0438\\u0439\\u043d\");case\"d\":case\"dd\":return e+(t?\" \\u04e9\\u0434\\u04e9\\u0440\":\" \\u04e9\\u0434\\u0440\\u0438\\u0439\\u043d\");case\"M\":case\"MM\":return e+(t?\" \\u0441\\u0430\\u0440\":\" \\u0441\\u0430\\u0440\\u044b\\u043d\");case\"y\":case\"yy\":return e+(t?\" \\u0436\\u0438\\u043b\":\" \\u0436\\u0438\\u043b\\u0438\\u0439\\u043d\");default:return e}}e.defineLocale(\"mn\",{months:\"\\u041d\\u044d\\u0433\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0425\\u043e\\u0451\\u0440\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0413\\u0443\\u0440\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0414\\u04e9\\u0440\\u04e9\\u0432\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0422\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0417\\u0443\\u0440\\u0433\\u0430\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0414\\u043e\\u043b\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u041d\\u0430\\u0439\\u043c\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0415\\u0441\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0430\\u0432\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0432\\u0430\\u043d \\u043d\\u044d\\u0433\\u0434\\u04af\\u0433\\u044d\\u044d\\u0440 \\u0441\\u0430\\u0440_\\u0410\\u0440\\u0432\\u0430\\u043d \\u0445\\u043e\\u0451\\u0440\\u0434\\u0443\\u0433\\u0430\\u0430\\u0440 \\u0441\\u0430\\u0440\".split(\"_\"),monthsShort:\"1 \\u0441\\u0430\\u0440_2 \\u0441\\u0430\\u0440_3 \\u0441\\u0430\\u0440_4 \\u0441\\u0430\\u0440_5 \\u0441\\u0430\\u0440_6 \\u0441\\u0430\\u0440_7 \\u0441\\u0430\\u0440_8 \\u0441\\u0430\\u0440_9 \\u0441\\u0430\\u0440_10 \\u0441\\u0430\\u0440_11 \\u0441\\u0430\\u0440_12 \\u0441\\u0430\\u0440\".split(\"_\"),monthsParseExact:!0,weekdays:\"\\u041d\\u044f\\u043c_\\u0414\\u0430\\u0432\\u0430\\u0430_\\u041c\\u044f\\u0433\\u043c\\u0430\\u0440_\\u041b\\u0445\\u0430\\u0433\\u0432\\u0430_\\u041f\\u04af\\u0440\\u044d\\u0432_\\u0411\\u0430\\u0430\\u0441\\u0430\\u043d_\\u0411\\u044f\\u043c\\u0431\\u0430\".split(\"_\"),weekdaysShort:\"\\u041d\\u044f\\u043c_\\u0414\\u0430\\u0432_\\u041c\\u044f\\u0433_\\u041b\\u0445\\u0430_\\u041f\\u04af\\u0440_\\u0411\\u0430\\u0430_\\u0411\\u044f\\u043c\".split(\"_\"),weekdaysMin:\"\\u041d\\u044f_\\u0414\\u0430_\\u041c\\u044f_\\u041b\\u0445_\\u041f\\u04af_\\u0411\\u0430_\\u0411\\u044f\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"YYYY-MM-DD\",LL:\"YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D\",LLL:\"YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D HH:mm\",LLLL:\"dddd, YYYY \\u043e\\u043d\\u044b MMMM\\u044b\\u043d D HH:mm\"},meridiemParse:/\\u04ae\\u04e8|\\u04ae\\u0425/i,isPM:function(e){return\"\\u04ae\\u0425\"===e},meridiem:function(e,t,n){return e<12?\"\\u04ae\\u04e8\":\"\\u04ae\\u0425\"},calendar:{sameDay:\"[\\u04e8\\u043d\\u04e9\\u04e9\\u0434\\u04e9\\u0440] LT\",nextDay:\"[\\u041c\\u0430\\u0440\\u0433\\u0430\\u0430\\u0448] LT\",nextWeek:\"[\\u0418\\u0440\\u044d\\u0445] dddd LT\",lastDay:\"[\\u04e8\\u0447\\u0438\\u0433\\u0434\\u04e9\\u0440] LT\",lastWeek:\"[\\u04e8\\u043d\\u0433\\u04e9\\u0440\\u0441\\u04e9\\u043d] dddd LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0434\\u0430\\u0440\\u0430\\u0430\",past:\"%s \\u04e9\\u043c\\u043d\\u04e9\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2} \\u04e9\\u0434\\u04e9\\u0440/,ordinal:function(e,t){switch(t){case\"d\":case\"D\":case\"DDD\":return e+\" \\u04e9\\u0434\\u04e9\\u0440\";default:return e}}})}(n(\"wd/R\"))},lgnt:function(e,t,n){!function(e){\"use strict\";var t={0:\"-\\u0447\\u04af\",1:\"-\\u0447\\u0438\",2:\"-\\u0447\\u0438\",3:\"-\\u0447\\u04af\",4:\"-\\u0447\\u04af\",5:\"-\\u0447\\u0438\",6:\"-\\u0447\\u044b\",7:\"-\\u0447\\u0438\",8:\"-\\u0447\\u0438\",9:\"-\\u0447\\u0443\",10:\"-\\u0447\\u0443\",20:\"-\\u0447\\u044b\",30:\"-\\u0447\\u0443\",40:\"-\\u0447\\u044b\",50:\"-\\u0447\\u04af\",60:\"-\\u0447\\u044b\",70:\"-\\u0447\\u0438\",80:\"-\\u0447\\u0438\",90:\"-\\u0447\\u0443\",100:\"-\\u0447\\u04af\"};e.defineLocale(\"ky\",{months:\"\\u044f\\u043d\\u0432\\u0430\\u0440\\u044c_\\u0444\\u0435\\u0432\\u0440\\u0430\\u043b\\u044c_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440\\u0435\\u043b\\u044c_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433\\u0443\\u0441\\u0442_\\u0441\\u0435\\u043d\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043e\\u043a\\u0442\\u044f\\u0431\\u0440\\u044c_\\u043d\\u043e\\u044f\\u0431\\u0440\\u044c_\\u0434\\u0435\\u043a\\u0430\\u0431\\u0440\\u044c\".split(\"_\"),monthsShort:\"\\u044f\\u043d\\u0432_\\u0444\\u0435\\u0432_\\u043c\\u0430\\u0440\\u0442_\\u0430\\u043f\\u0440_\\u043c\\u0430\\u0439_\\u0438\\u044e\\u043d\\u044c_\\u0438\\u044e\\u043b\\u044c_\\u0430\\u0432\\u0433_\\u0441\\u0435\\u043d_\\u043e\\u043a\\u0442_\\u043d\\u043e\\u044f_\\u0434\\u0435\\u043a\".split(\"_\"),weekdays:\"\\u0416\\u0435\\u043a\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0414\\u04af\\u0439\\u0448\\u04e9\\u043c\\u0431\\u04af_\\u0428\\u0435\\u0439\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0428\\u0430\\u0440\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0411\\u0435\\u0439\\u0448\\u0435\\u043c\\u0431\\u0438_\\u0416\\u0443\\u043c\\u0430_\\u0418\\u0448\\u0435\\u043c\\u0431\\u0438\".split(\"_\"),weekdaysShort:\"\\u0416\\u0435\\u043a_\\u0414\\u04af\\u0439_\\u0428\\u0435\\u0439_\\u0428\\u0430\\u0440_\\u0411\\u0435\\u0439_\\u0416\\u0443\\u043c_\\u0418\\u0448\\u0435\".split(\"_\"),weekdaysMin:\"\\u0416\\u043a_\\u0414\\u0439_\\u0428\\u0439_\\u0428\\u0440_\\u0411\\u0439_\\u0416\\u043c_\\u0418\\u0448\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0411\\u04af\\u0433\\u04af\\u043d \\u0441\\u0430\\u0430\\u0442] LT\",nextDay:\"[\\u042d\\u0440\\u0442\\u0435\\u04a3 \\u0441\\u0430\\u0430\\u0442] LT\",nextWeek:\"dddd [\\u0441\\u0430\\u0430\\u0442] LT\",lastDay:\"[\\u041a\\u0435\\u0447\\u044d\\u044d \\u0441\\u0430\\u0430\\u0442] LT\",lastWeek:\"[\\u04e8\\u0442\\u043a\\u04e9\\u043d \\u0430\\u043f\\u0442\\u0430\\u043d\\u044b\\u043d] dddd [\\u043a\\u04af\\u043d\\u04af] [\\u0441\\u0430\\u0430\\u0442] LT\",sameElse:\"L\"},relativeTime:{future:\"%s \\u0438\\u0447\\u0438\\u043d\\u0434\\u0435\",past:\"%s \\u043c\\u0443\\u0440\\u0443\\u043d\",s:\"\\u0431\\u0438\\u0440\\u043d\\u0435\\u0447\\u0435 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:\"%d \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",m:\"\\u0431\\u0438\\u0440 \\u043c\\u04af\\u043d\\u04e9\\u0442\",mm:\"%d \\u043c\\u04af\\u043d\\u04e9\\u0442\",h:\"\\u0431\\u0438\\u0440 \\u0441\\u0430\\u0430\\u0442\",hh:\"%d \\u0441\\u0430\\u0430\\u0442\",d:\"\\u0431\\u0438\\u0440 \\u043a\\u04af\\u043d\",dd:\"%d \\u043a\\u04af\\u043d\",M:\"\\u0431\\u0438\\u0440 \\u0430\\u0439\",MM:\"%d \\u0430\\u0439\",y:\"\\u0431\\u0438\\u0440 \\u0436\\u044b\\u043b\",yy:\"%d \\u0436\\u044b\\u043b\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0447\\u0438|\\u0447\\u044b|\\u0447\\u04af|\\u0447\\u0443)/,ordinal:function(e){return e+(t[e]||t[e%10]||t[e>=100?100:null])},week:{dow:1,doy:7}})}(n(\"wd/R\"))},lyxo:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r=\" \";return(e%100>=20||e>=100&&e%100==0)&&(r=\" de \"),e+r+{ss:\"secunde\",mm:\"minute\",hh:\"ore\",dd:\"zile\",MM:\"luni\",yy:\"ani\"}[n]}e.defineLocale(\"ro\",{months:\"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie\".split(\"_\"),monthsShort:\"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"duminic\\u0103_luni_mar\\u021bi_miercuri_joi_vineri_s\\xe2mb\\u0103t\\u0103\".split(\"_\"),weekdaysShort:\"Dum_Lun_Mar_Mie_Joi_Vin_S\\xe2m\".split(\"_\"),weekdaysMin:\"Du_Lu_Ma_Mi_Jo_Vi_S\\xe2\".split(\"_\"),longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY H:mm\",LLLL:\"dddd, D MMMM YYYY H:mm\"},calendar:{sameDay:\"[azi la] LT\",nextDay:\"[m\\xe2ine la] LT\",nextWeek:\"dddd [la] LT\",lastDay:\"[ieri la] LT\",lastWeek:\"[fosta] dddd [la] LT\",sameElse:\"L\"},relativeTime:{future:\"peste %s\",past:\"%s \\xeen urm\\u0103\",s:\"c\\xe2teva secunde\",ss:t,m:\"un minut\",mm:t,h:\"o or\\u0103\",hh:t,d:\"o zi\",dd:t,M:\"o lun\\u0103\",MM:t,y:\"un an\",yy:t},week:{dow:1,doy:7}})}(n(\"wd/R\"))},m4GZ:function(e,t){function n(e){this.message=e}(n.prototype=new Error).name=\"InvalidCharacterError\",e.exports=\"undefined\"!=typeof window&&window.atob&&window.atob.bind(window)||function(e){var t=String(e).replace(/=+$/,\"\");if(t.length%4==1)throw new n(\"'atob' failed: The string to be decoded is not correctly encoded.\");for(var r,i,a=0,o=0,s=\"\";i=t.charAt(o++);~i&&(r=a%4?64*r+i:i,a++%4)?s+=String.fromCharCode(255&r>>(-2*a&6)):0)i=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\".indexOf(i);return s}},nyYc:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"fr\",{months:\"janvier_f\\xe9vrier_mars_avril_mai_juin_juillet_ao\\xfbt_septembre_octobre_novembre_d\\xe9cembre\".split(\"_\"),monthsShort:\"janv._f\\xe9vr._mars_avr._mai_juin_juil._ao\\xfbt_sept._oct._nov._d\\xe9c.\".split(\"_\"),monthsParseExact:!0,weekdays:\"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi\".split(\"_\"),weekdaysShort:\"dim._lun._mar._mer._jeu._ven._sam.\".split(\"_\"),weekdaysMin:\"di_lu_ma_me_je_ve_sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Aujourd\\u2019hui \\xe0] LT\",nextDay:\"[Demain \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[Hier \\xe0] LT\",lastWeek:\"dddd [dernier \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"dans %s\",past:\"il y a %s\",s:\"quelques secondes\",ss:\"%d secondes\",m:\"une minute\",mm:\"%d minutes\",h:\"une heure\",hh:\"%d heures\",d:\"un jour\",dd:\"%d jours\",M:\"un mois\",MM:\"%d mois\",y:\"un an\",yy:\"%d ans\"},dayOfMonthOrdinalParse:/\\d{1,2}(er|)/,ordinal:function(e,t){switch(t){case\"D\":return e+(1===e?\"er\":\"\");default:case\"M\":case\"Q\":case\"DDD\":case\"d\":return e+(1===e?\"er\":\"e\");case\"w\":case\"W\":return e+(1===e?\"re\":\"e\")}},week:{dow:1,doy:4}})}(n(\"wd/R\"))},o1bE:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"ar-dz\",{months:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),monthsShort:\"\\u062c\\u0627\\u0646\\u0641\\u064a_\\u0641\\u064a\\u0641\\u0631\\u064a_\\u0645\\u0627\\u0631\\u0633_\\u0623\\u0641\\u0631\\u064a\\u0644_\\u0645\\u0627\\u064a_\\u062c\\u0648\\u0627\\u0646_\\u062c\\u0648\\u064a\\u0644\\u064a\\u0629_\\u0623\\u0648\\u062a_\\u0633\\u0628\\u062a\\u0645\\u0628\\u0631_\\u0623\\u0643\\u062a\\u0648\\u0628\\u0631_\\u0646\\u0648\\u0641\\u0645\\u0628\\u0631_\\u062f\\u064a\\u0633\\u0645\\u0628\\u0631\".split(\"_\"),weekdays:\"\\u0627\\u0644\\u0623\\u062d\\u062f_\\u0627\\u0644\\u0625\\u062b\\u0646\\u064a\\u0646_\\u0627\\u0644\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0644\\u0623\\u0631\\u0628\\u0639\\u0627\\u0621_\\u0627\\u0644\\u062e\\u0645\\u064a\\u0633_\\u0627\\u0644\\u062c\\u0645\\u0639\\u0629_\\u0627\\u0644\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysShort:\"\\u0627\\u062d\\u062f_\\u0627\\u062b\\u0646\\u064a\\u0646_\\u062b\\u0644\\u0627\\u062b\\u0627\\u0621_\\u0627\\u0631\\u0628\\u0639\\u0627\\u0621_\\u062e\\u0645\\u064a\\u0633_\\u062c\\u0645\\u0639\\u0629_\\u0633\\u0628\\u062a\".split(\"_\"),weekdaysMin:\"\\u0623\\u062d_\\u0625\\u062b_\\u062b\\u0644\\u0627_\\u0623\\u0631_\\u062e\\u0645_\\u062c\\u0645_\\u0633\\u0628\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u0627\\u0644\\u064a\\u0648\\u0645 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextDay:\"[\\u063a\\u062f\\u0627 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",nextWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastDay:\"[\\u0623\\u0645\\u0633 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",lastWeek:\"dddd [\\u0639\\u0644\\u0649 \\u0627\\u0644\\u0633\\u0627\\u0639\\u0629] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0641\\u064a %s\",past:\"\\u0645\\u0646\\u0630 %s\",s:\"\\u062b\\u0648\\u0627\\u0646\",ss:\"%d \\u062b\\u0627\\u0646\\u064a\\u0629\",m:\"\\u062f\\u0642\\u064a\\u0642\\u0629\",mm:\"%d \\u062f\\u0642\\u0627\\u0626\\u0642\",h:\"\\u0633\\u0627\\u0639\\u0629\",hh:\"%d \\u0633\\u0627\\u0639\\u0627\\u062a\",d:\"\\u064a\\u0648\\u0645\",dd:\"%d \\u0623\\u064a\\u0627\\u0645\",M:\"\\u0634\\u0647\\u0631\",MM:\"%d \\u0623\\u0634\\u0647\\u0631\",y:\"\\u0633\\u0646\\u0629\",yy:\"%d \\u0633\\u0646\\u0648\\u0627\\u062a\"},week:{dow:0,doy:4}})}(n(\"wd/R\"))},\"p/rL\":function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"bm\",{months:\"Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_M\\u025bkalo_Zuw\\u025bnkalo_Zuluyekalo_Utikalo_S\\u025btanburukalo_\\u0254kut\\u0254burukalo_Nowanburukalo_Desanburukalo\".split(\"_\"),monthsShort:\"Zan_Few_Mar_Awi_M\\u025b_Zuw_Zul_Uti_S\\u025bt_\\u0254ku_Now_Des\".split(\"_\"),weekdays:\"Kari_Nt\\u025bn\\u025bn_Tarata_Araba_Alamisa_Juma_Sibiri\".split(\"_\"),weekdaysShort:\"Kar_Nt\\u025b_Tar_Ara_Ala_Jum_Sib\".split(\"_\"),weekdaysMin:\"Ka_Nt_Ta_Ar_Al_Ju_Si\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"MMMM [tile] D [san] YYYY\",LLL:\"MMMM [tile] D [san] YYYY [l\\u025br\\u025b] HH:mm\",LLLL:\"dddd MMMM [tile] D [san] YYYY [l\\u025br\\u025b] HH:mm\"},calendar:{sameDay:\"[Bi l\\u025br\\u025b] LT\",nextDay:\"[Sini l\\u025br\\u025b] LT\",nextWeek:\"dddd [don l\\u025br\\u025b] LT\",lastDay:\"[Kunu l\\u025br\\u025b] LT\",lastWeek:\"dddd [t\\u025bm\\u025bnen l\\u025br\\u025b] LT\",sameElse:\"L\"},relativeTime:{future:\"%s k\\u0254n\\u0254\",past:\"a b\\u025b %s b\\u0254\",s:\"sanga dama dama\",ss:\"sekondi %d\",m:\"miniti kelen\",mm:\"miniti %d\",h:\"l\\u025br\\u025b kelen\",hh:\"l\\u025br\\u025b %d\",d:\"tile kelen\",dd:\"tile %d\",M:\"kalo kelen\",MM:\"kalo %d\",y:\"san kelen\",yy:\"san %d\"},week:{dow:1,doy:4}})}(n(\"wd/R\"))},raLr:function(e,t,n){!function(e){\"use strict\";function t(e,t,n){var r,i;return\"m\"===n?t?\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0430\":\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0443\":\"h\"===n?t?\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430\":\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\":e+\" \"+(r=+e,i={ss:t?\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\":\"\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0443_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0438_\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",mm:t?\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0430_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0438_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\":\"\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0443_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\\u0438_\\u0445\\u0432\\u0438\\u043b\\u0438\\u043d\",hh:t?\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0430_\\u0433\\u043e\\u0434\\u0438\\u043d\\u0438_\\u0433\\u043e\\u0434\\u0438\\u043d\":\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443_\\u0433\\u043e\\u0434\\u0438\\u043d\\u0438_\\u0433\\u043e\\u0434\\u0438\\u043d\",dd:\"\\u0434\\u0435\\u043d\\u044c_\\u0434\\u043d\\u0456_\\u0434\\u043d\\u0456\\u0432\",MM:\"\\u043c\\u0456\\u0441\\u044f\\u0446\\u044c_\\u043c\\u0456\\u0441\\u044f\\u0446\\u0456_\\u043c\\u0456\\u0441\\u044f\\u0446\\u0456\\u0432\",yy:\"\\u0440\\u0456\\u043a_\\u0440\\u043e\\u043a\\u0438_\\u0440\\u043e\\u043a\\u0456\\u0432\"}[n].split(\"_\"),r%10==1&&r%100!=11?i[0]:r%10>=2&&r%10<=4&&(r%100<10||r%100>=20)?i[1]:i[2])}function n(e){return function(){return e+\"\\u043e\"+(11===this.hours()?\"\\u0431\":\"\")+\"] LT\"}}e.defineLocale(\"uk\",{months:{format:\"\\u0441\\u0456\\u0447\\u043d\\u044f_\\u043b\\u044e\\u0442\\u043e\\u0433\\u043e_\\u0431\\u0435\\u0440\\u0435\\u0437\\u043d\\u044f_\\u043a\\u0432\\u0456\\u0442\\u043d\\u044f_\\u0442\\u0440\\u0430\\u0432\\u043d\\u044f_\\u0447\\u0435\\u0440\\u0432\\u043d\\u044f_\\u043b\\u0438\\u043f\\u043d\\u044f_\\u0441\\u0435\\u0440\\u043f\\u043d\\u044f_\\u0432\\u0435\\u0440\\u0435\\u0441\\u043d\\u044f_\\u0436\\u043e\\u0432\\u0442\\u043d\\u044f_\\u043b\\u0438\\u0441\\u0442\\u043e\\u043f\\u0430\\u0434\\u0430_\\u0433\\u0440\\u0443\\u0434\\u043d\\u044f\".split(\"_\"),standalone:\"\\u0441\\u0456\\u0447\\u0435\\u043d\\u044c_\\u043b\\u044e\\u0442\\u0438\\u0439_\\u0431\\u0435\\u0440\\u0435\\u0437\\u0435\\u043d\\u044c_\\u043a\\u0432\\u0456\\u0442\\u0435\\u043d\\u044c_\\u0442\\u0440\\u0430\\u0432\\u0435\\u043d\\u044c_\\u0447\\u0435\\u0440\\u0432\\u0435\\u043d\\u044c_\\u043b\\u0438\\u043f\\u0435\\u043d\\u044c_\\u0441\\u0435\\u0440\\u043f\\u0435\\u043d\\u044c_\\u0432\\u0435\\u0440\\u0435\\u0441\\u0435\\u043d\\u044c_\\u0436\\u043e\\u0432\\u0442\\u0435\\u043d\\u044c_\\u043b\\u0438\\u0441\\u0442\\u043e\\u043f\\u0430\\u0434_\\u0433\\u0440\\u0443\\u0434\\u0435\\u043d\\u044c\".split(\"_\")},monthsShort:\"\\u0441\\u0456\\u0447_\\u043b\\u044e\\u0442_\\u0431\\u0435\\u0440_\\u043a\\u0432\\u0456\\u0442_\\u0442\\u0440\\u0430\\u0432_\\u0447\\u0435\\u0440\\u0432_\\u043b\\u0438\\u043f_\\u0441\\u0435\\u0440\\u043f_\\u0432\\u0435\\u0440_\\u0436\\u043e\\u0432\\u0442_\\u043b\\u0438\\u0441\\u0442_\\u0433\\u0440\\u0443\\u0434\".split(\"_\"),weekdays:function(e,t){var n={nominative:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u044f_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043e\\u043a_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043e\\u043a_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0430_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u044f_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0430\".split(\"_\"),accusative:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u044e_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043e\\u043a_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043e\\u043a_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0443_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u044e_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0443\".split(\"_\"),genitive:\"\\u043d\\u0435\\u0434\\u0456\\u043b\\u0456_\\u043f\\u043e\\u043d\\u0435\\u0434\\u0456\\u043b\\u043a\\u0430_\\u0432\\u0456\\u0432\\u0442\\u043e\\u0440\\u043a\\u0430_\\u0441\\u0435\\u0440\\u0435\\u0434\\u0438_\\u0447\\u0435\\u0442\\u0432\\u0435\\u0440\\u0433\\u0430_\\u043f\\u2019\\u044f\\u0442\\u043d\\u0438\\u0446\\u0456_\\u0441\\u0443\\u0431\\u043e\\u0442\\u0438\".split(\"_\")};return!0===e?n.nominative.slice(1,7).concat(n.nominative.slice(0,1)):e?n[/(\\[[\\u0412\\u0432\\u0423\\u0443]\\]) ?dddd/.test(t)?\"accusative\":/\\[?(?:\\u043c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0457|\\u043d\\u0430\\u0441\\u0442\\u0443\\u043f\\u043d\\u043e\\u0457)? ?\\] ?dddd/.test(t)?\"genitive\":\"nominative\"][e.day()]:n.nominative},weekdaysShort:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),weekdaysMin:\"\\u043d\\u0434_\\u043f\\u043d_\\u0432\\u0442_\\u0441\\u0440_\\u0447\\u0442_\\u043f\\u0442_\\u0441\\u0431\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY \\u0440.\",LLL:\"D MMMM YYYY \\u0440., HH:mm\",LLLL:\"dddd, D MMMM YYYY \\u0440., HH:mm\"},calendar:{sameDay:n(\"[\\u0421\\u044c\\u043e\\u0433\\u043e\\u0434\\u043d\\u0456 \"),nextDay:n(\"[\\u0417\\u0430\\u0432\\u0442\\u0440\\u0430 \"),lastDay:n(\"[\\u0412\\u0447\\u043e\\u0440\\u0430 \"),nextWeek:n(\"[\\u0423] dddd [\"),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return n(\"[\\u041c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0457] dddd [\").call(this);case 1:case 2:case 4:return n(\"[\\u041c\\u0438\\u043d\\u0443\\u043b\\u043e\\u0433\\u043e] dddd [\").call(this)}},sameElse:\"L\"},relativeTime:{future:\"\\u0437\\u0430 %s\",past:\"%s \\u0442\\u043e\\u043c\\u0443\",s:\"\\u0434\\u0435\\u043a\\u0456\\u043b\\u044c\\u043a\\u0430 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\",ss:t,m:t,mm:t,h:\"\\u0433\\u043e\\u0434\\u0438\\u043d\\u0443\",hh:t,d:\"\\u0434\\u0435\\u043d\\u044c\",dd:t,M:\"\\u043c\\u0456\\u0441\\u044f\\u0446\\u044c\",MM:t,y:\"\\u0440\\u0456\\u043a\",yy:t},meridiemParse:/\\u043d\\u043e\\u0447\\u0456|\\u0440\\u0430\\u043d\\u043a\\u0443|\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430/,isPM:function(e){return/^(\\u0434\\u043d\\u044f|\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430)$/.test(e)},meridiem:function(e,t,n){return e<4?\"\\u043d\\u043e\\u0447\\u0456\":e<12?\"\\u0440\\u0430\\u043d\\u043a\\u0443\":e<17?\"\\u0434\\u043d\\u044f\":\"\\u0432\\u0435\\u0447\\u043e\\u0440\\u0430\"},dayOfMonthOrdinalParse:/\\d{1,2}-(\\u0439|\\u0433\\u043e)/,ordinal:function(e,t){switch(t){case\"M\":case\"d\":case\"DDD\":case\"w\":case\"W\":return e+\"-\\u0439\";case\"D\":return e+\"-\\u0433\\u043e\";default:return e}},week:{dow:1,doy:7}})}(n(\"wd/R\"))},\"s+uk\":function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?i[n][0]:i[n][1]}e.defineLocale(\"de-at\",{months:\"J\\xe4nner_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"J\\xe4n._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},sp3z:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"lo\",{months:\"\\u0ea1\\u0eb1\\u0e87\\u0e81\\u0ead\\u0e99_\\u0e81\\u0eb8\\u0ea1\\u0e9e\\u0eb2_\\u0ea1\\u0eb5\\u0e99\\u0eb2_\\u0ec0\\u0ea1\\u0eaa\\u0eb2_\\u0e9e\\u0eb6\\u0e94\\u0eaa\\u0eb0\\u0e9e\\u0eb2_\\u0ea1\\u0eb4\\u0e96\\u0eb8\\u0e99\\u0eb2_\\u0e81\\u0ecd\\u0ea5\\u0eb0\\u0e81\\u0ebb\\u0e94_\\u0eaa\\u0eb4\\u0e87\\u0eab\\u0eb2_\\u0e81\\u0eb1\\u0e99\\u0e8d\\u0eb2_\\u0e95\\u0eb8\\u0ea5\\u0eb2_\\u0e9e\\u0eb0\\u0e88\\u0eb4\\u0e81_\\u0e97\\u0eb1\\u0e99\\u0ea7\\u0eb2\".split(\"_\"),monthsShort:\"\\u0ea1\\u0eb1\\u0e87\\u0e81\\u0ead\\u0e99_\\u0e81\\u0eb8\\u0ea1\\u0e9e\\u0eb2_\\u0ea1\\u0eb5\\u0e99\\u0eb2_\\u0ec0\\u0ea1\\u0eaa\\u0eb2_\\u0e9e\\u0eb6\\u0e94\\u0eaa\\u0eb0\\u0e9e\\u0eb2_\\u0ea1\\u0eb4\\u0e96\\u0eb8\\u0e99\\u0eb2_\\u0e81\\u0ecd\\u0ea5\\u0eb0\\u0e81\\u0ebb\\u0e94_\\u0eaa\\u0eb4\\u0e87\\u0eab\\u0eb2_\\u0e81\\u0eb1\\u0e99\\u0e8d\\u0eb2_\\u0e95\\u0eb8\\u0ea5\\u0eb2_\\u0e9e\\u0eb0\\u0e88\\u0eb4\\u0e81_\\u0e97\\u0eb1\\u0e99\\u0ea7\\u0eb2\".split(\"_\"),weekdays:\"\\u0ead\\u0eb2\\u0e97\\u0eb4\\u0e94_\\u0e88\\u0eb1\\u0e99_\\u0ead\\u0eb1\\u0e87\\u0e84\\u0eb2\\u0e99_\\u0e9e\\u0eb8\\u0e94_\\u0e9e\\u0eb0\\u0eab\\u0eb1\\u0e94_\\u0eaa\\u0eb8\\u0e81_\\u0ec0\\u0eaa\\u0ebb\\u0eb2\".split(\"_\"),weekdaysShort:\"\\u0e97\\u0eb4\\u0e94_\\u0e88\\u0eb1\\u0e99_\\u0ead\\u0eb1\\u0e87\\u0e84\\u0eb2\\u0e99_\\u0e9e\\u0eb8\\u0e94_\\u0e9e\\u0eb0\\u0eab\\u0eb1\\u0e94_\\u0eaa\\u0eb8\\u0e81_\\u0ec0\\u0eaa\\u0ebb\\u0eb2\".split(\"_\"),weekdaysMin:\"\\u0e97_\\u0e88_\\u0ead\\u0e84_\\u0e9e_\\u0e9e\\u0eab_\\u0eaa\\u0e81_\\u0eaa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"\\u0ea7\\u0eb1\\u0e99dddd D MMMM YYYY HH:mm\"},meridiemParse:/\\u0e95\\u0ead\\u0e99\\u0ec0\\u0e8a\\u0ebb\\u0ec9\\u0eb2|\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87/,isPM:function(e){return\"\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87\"===e},meridiem:function(e,t,n){return e<12?\"\\u0e95\\u0ead\\u0e99\\u0ec0\\u0e8a\\u0ebb\\u0ec9\\u0eb2\":\"\\u0e95\\u0ead\\u0e99\\u0ec1\\u0ea5\\u0e87\"},calendar:{sameDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",nextDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0ead\\u0eb7\\u0ec8\\u0e99\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",nextWeek:\"[\\u0ea7\\u0eb1\\u0e99]dddd[\\u0edc\\u0ec9\\u0eb2\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",lastDay:\"[\\u0ea1\\u0eb7\\u0ec9\\u0ea7\\u0eb2\\u0e99\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",lastWeek:\"[\\u0ea7\\u0eb1\\u0e99]dddd[\\u0ec1\\u0ea5\\u0ec9\\u0ea7\\u0e99\\u0eb5\\u0ec9\\u0ec0\\u0ea7\\u0ea5\\u0eb2] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u0ead\\u0eb5\\u0e81 %s\",past:\"%s\\u0e9c\\u0ec8\\u0eb2\\u0e99\\u0ea1\\u0eb2\",s:\"\\u0e9a\\u0ecd\\u0ec8\\u0ec0\\u0e97\\u0ebb\\u0ec8\\u0eb2\\u0ec3\\u0e94\\u0ea7\\u0eb4\\u0e99\\u0eb2\\u0e97\\u0eb5\",ss:\"%d \\u0ea7\\u0eb4\\u0e99\\u0eb2\\u0e97\\u0eb5\",m:\"1 \\u0e99\\u0eb2\\u0e97\\u0eb5\",mm:\"%d \\u0e99\\u0eb2\\u0e97\\u0eb5\",h:\"1 \\u0e8a\\u0ebb\\u0ec8\\u0ea7\\u0ec2\\u0ea1\\u0e87\",hh:\"%d \\u0e8a\\u0ebb\\u0ec8\\u0ea7\\u0ec2\\u0ea1\\u0e87\",d:\"1 \\u0ea1\\u0eb7\\u0ec9\",dd:\"%d \\u0ea1\\u0eb7\\u0ec9\",M:\"1 \\u0ec0\\u0e94\\u0eb7\\u0ead\\u0e99\",MM:\"%d \\u0ec0\\u0e94\\u0eb7\\u0ead\\u0e99\",y:\"1 \\u0e9b\\u0eb5\",yy:\"%d \\u0e9b\\u0eb5\"},dayOfMonthOrdinalParse:/(\\u0e97\\u0eb5\\u0ec8)\\d{1,2}/,ordinal:function(e){return\"\\u0e97\\u0eb5\\u0ec8\"+e}})}(n(\"wd/R\"))},tGlX:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?i[n][0]:i[n][1]}e.defineLocale(\"de\",{months:\"Januar_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So._Mo._Di._Mi._Do._Fr._Sa.\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},tT3J:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm-latn\",{months:\"innayr_br\\u02e4ayr\\u02e4_mar\\u02e4s\\u02e4_ibrir_mayyw_ywnyw_ywlywz_\\u0263w\\u0161t_\\u0161wtanbir_kt\\u02e4wbr\\u02e4_nwwanbir_dwjnbir\".split(\"_\"),monthsShort:\"innayr_br\\u02e4ayr\\u02e4_mar\\u02e4s\\u02e4_ibrir_mayyw_ywnyw_ywlywz_\\u0263w\\u0161t_\\u0161wtanbir_kt\\u02e4wbr\\u02e4_nwwanbir_dwjnbir\".split(\"_\"),weekdays:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),weekdaysShort:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),weekdaysMin:\"asamas_aynas_asinas_akras_akwas_asimwas_asi\\u1e0dyas\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[asdkh g] LT\",nextDay:\"[aska g] LT\",nextWeek:\"dddd [g] LT\",lastDay:\"[assant g] LT\",lastWeek:\"dddd [g] LT\",sameElse:\"L\"},relativeTime:{future:\"dadkh s yan %s\",past:\"yan %s\",s:\"imik\",ss:\"%d imik\",m:\"minu\\u1e0d\",mm:\"%d minu\\u1e0d\",h:\"sa\\u025ba\",hh:\"%d tassa\\u025bin\",d:\"ass\",dd:\"%d ossan\",M:\"ayowr\",MM:\"%d iyyirn\",y:\"asgas\",yy:\"%d isgasn\"},week:{dow:6,doy:12}})}(n(\"wd/R\"))},tUCv:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"jv\",{months:\"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des\".split(\"_\"),weekdays:\"Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu\".split(\"_\"),weekdaysShort:\"Min_Sen_Sel_Reb_Kem_Jem_Sep\".split(\"_\"),weekdaysMin:\"Mg_Sn_Sl_Rb_Km_Jm_Sp\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY [pukul] HH.mm\",LLLL:\"dddd, D MMMM YYYY [pukul] HH.mm\"},meridiemParse:/enjing|siyang|sonten|ndalu/,meridiemHour:function(e,t){return 12===e&&(e=0),\"enjing\"===t?e:\"siyang\"===t?e>=11?e:e+12:\"sonten\"===t||\"ndalu\"===t?e+12:void 0},meridiem:function(e,t,n){return e<11?\"enjing\":e<15?\"siyang\":e<19?\"sonten\":\"ndalu\"},calendar:{sameDay:\"[Dinten puniko pukul] LT\",nextDay:\"[Mbenjang pukul] LT\",nextWeek:\"dddd [pukul] LT\",lastDay:\"[Kala wingi pukul] LT\",lastWeek:\"dddd [kepengker pukul] LT\",sameElse:\"L\"},relativeTime:{future:\"wonten ing %s\",past:\"%s ingkang kepengker\",s:\"sawetawis detik\",ss:\"%d detik\",m:\"setunggal menit\",mm:\"%d menit\",h:\"setunggal jam\",hh:\"%d jam\",d:\"sedinten\",dd:\"%d dinten\",M:\"sewulan\",MM:\"%d wulan\",y:\"setaun\",yy:\"%d taun\"},week:{dow:1,doy:7}})}(n(\"wd/R\"))},u3GI:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={m:[\"eine Minute\",\"einer Minute\"],h:[\"eine Stunde\",\"einer Stunde\"],d:[\"ein Tag\",\"einem Tag\"],dd:[e+\" Tage\",e+\" Tagen\"],M:[\"ein Monat\",\"einem Monat\"],MM:[e+\" Monate\",e+\" Monaten\"],y:[\"ein Jahr\",\"einem Jahr\"],yy:[e+\" Jahre\",e+\" Jahren\"]};return t?i[n][0]:i[n][1]}e.defineLocale(\"de-ch\",{months:\"Januar_Februar_M\\xe4rz_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember\".split(\"_\"),monthsShort:\"Jan._Feb._M\\xe4rz_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.\".split(\"_\"),monthsParseExact:!0,weekdays:\"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag\".split(\"_\"),weekdaysShort:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysMin:\"So_Mo_Di_Mi_Do_Fr_Sa\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY HH:mm\",LLLL:\"dddd, D. MMMM YYYY HH:mm\"},calendar:{sameDay:\"[heute um] LT [Uhr]\",sameElse:\"L\",nextDay:\"[morgen um] LT [Uhr]\",nextWeek:\"dddd [um] LT [Uhr]\",lastDay:\"[gestern um] LT [Uhr]\",lastWeek:\"[letzten] dddd [um] LT [Uhr]\"},relativeTime:{future:\"in %s\",past:\"vor %s\",s:\"ein paar Sekunden\",ss:\"%d Sekunden\",m:t,mm:\"%d Minuten\",h:t,hh:\"%d Stunden\",d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},uEye:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"nn\",{months:\"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des\".split(\"_\"),weekdays:\"sundag_m\\xe5ndag_tysdag_onsdag_torsdag_fredag_laurdag\".split(\"_\"),weekdaysShort:\"sun_m\\xe5n_tys_ons_tor_fre_lau\".split(\"_\"),weekdaysMin:\"su_m\\xe5_ty_on_to_fr_l\\xf8\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY [kl.] H:mm\",LLLL:\"dddd D. MMMM YYYY [kl.] HH:mm\"},calendar:{sameDay:\"[I dag klokka] LT\",nextDay:\"[I morgon klokka] LT\",nextWeek:\"dddd [klokka] LT\",lastDay:\"[I g\\xe5r klokka] LT\",lastWeek:\"[F\\xf8reg\\xe5ande] dddd [klokka] LT\",sameElse:\"L\"},relativeTime:{future:\"om %s\",past:\"%s sidan\",s:\"nokre sekund\",ss:\"%d sekund\",m:\"eit minutt\",mm:\"%d minutt\",h:\"ein time\",hh:\"%d timar\",d:\"ein dag\",dd:\"%d dagar\",M:\"ein m\\xe5nad\",MM:\"%d m\\xe5nader\",y:\"eit \\xe5r\",yy:\"%d \\xe5r\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},uXwI:function(e,t,n){!function(e){\"use strict\";var t={ss:\"sekundes_sekund\\u0113m_sekunde_sekundes\".split(\"_\"),m:\"min\\u016btes_min\\u016bt\\u0113m_min\\u016bte_min\\u016btes\".split(\"_\"),mm:\"min\\u016btes_min\\u016bt\\u0113m_min\\u016bte_min\\u016btes\".split(\"_\"),h:\"stundas_stund\\u0101m_stunda_stundas\".split(\"_\"),hh:\"stundas_stund\\u0101m_stunda_stundas\".split(\"_\"),d:\"dienas_dien\\u0101m_diena_dienas\".split(\"_\"),dd:\"dienas_dien\\u0101m_diena_dienas\".split(\"_\"),M:\"m\\u0113ne\\u0161a_m\\u0113ne\\u0161iem_m\\u0113nesis_m\\u0113ne\\u0161i\".split(\"_\"),MM:\"m\\u0113ne\\u0161a_m\\u0113ne\\u0161iem_m\\u0113nesis_m\\u0113ne\\u0161i\".split(\"_\"),y:\"gada_gadiem_gads_gadi\".split(\"_\"),yy:\"gada_gadiem_gads_gadi\".split(\"_\")};function n(e,t,n){return n?t%10==1&&t%100!=11?e[2]:e[3]:t%10==1&&t%100!=11?e[0]:e[1]}function r(e,r,i){return e+\" \"+n(t[i],e,r)}function i(e,r,i){return n(t[i],e,r)}e.defineLocale(\"lv\",{months:\"janv\\u0101ris_febru\\u0101ris_marts_apr\\u012blis_maijs_j\\u016bnijs_j\\u016blijs_augusts_septembris_oktobris_novembris_decembris\".split(\"_\"),monthsShort:\"jan_feb_mar_apr_mai_j\\u016bn_j\\u016bl_aug_sep_okt_nov_dec\".split(\"_\"),weekdays:\"sv\\u0113tdiena_pirmdiena_otrdiena_tre\\u0161diena_ceturtdiena_piektdiena_sestdiena\".split(\"_\"),weekdaysShort:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysMin:\"Sv_P_O_T_C_Pk_S\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY.\",LL:\"YYYY. [gada] D. MMMM\",LLL:\"YYYY. [gada] D. MMMM, HH:mm\",LLLL:\"YYYY. [gada] D. MMMM, dddd, HH:mm\"},calendar:{sameDay:\"[\\u0160odien pulksten] LT\",nextDay:\"[R\\u012bt pulksten] LT\",nextWeek:\"dddd [pulksten] LT\",lastDay:\"[Vakar pulksten] LT\",lastWeek:\"[Pag\\u0101ju\\u0161\\u0101] dddd [pulksten] LT\",sameElse:\"L\"},relativeTime:{future:\"p\\u0113c %s\",past:\"pirms %s\",s:function(e,t){return t?\"da\\u017eas sekundes\":\"da\\u017e\\u0101m sekund\\u0113m\"},ss:r,m:i,mm:r,h:i,hh:r,d:i,dd:r,M:i,MM:r,y:i,yy:r},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},wQk9:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"tzm\",{months:\"\\u2d49\\u2d4f\\u2d4f\\u2d30\\u2d62\\u2d54_\\u2d31\\u2d55\\u2d30\\u2d62\\u2d55_\\u2d4e\\u2d30\\u2d55\\u2d5a_\\u2d49\\u2d31\\u2d54\\u2d49\\u2d54_\\u2d4e\\u2d30\\u2d62\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4f\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4d\\u2d62\\u2d53\\u2d63_\\u2d56\\u2d53\\u2d5b\\u2d5c_\\u2d5b\\u2d53\\u2d5c\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d3d\\u2d5f\\u2d53\\u2d31\\u2d55_\\u2d4f\\u2d53\\u2d61\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d37\\u2d53\\u2d4a\\u2d4f\\u2d31\\u2d49\\u2d54\".split(\"_\"),monthsShort:\"\\u2d49\\u2d4f\\u2d4f\\u2d30\\u2d62\\u2d54_\\u2d31\\u2d55\\u2d30\\u2d62\\u2d55_\\u2d4e\\u2d30\\u2d55\\u2d5a_\\u2d49\\u2d31\\u2d54\\u2d49\\u2d54_\\u2d4e\\u2d30\\u2d62\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4f\\u2d62\\u2d53_\\u2d62\\u2d53\\u2d4d\\u2d62\\u2d53\\u2d63_\\u2d56\\u2d53\\u2d5b\\u2d5c_\\u2d5b\\u2d53\\u2d5c\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d3d\\u2d5f\\u2d53\\u2d31\\u2d55_\\u2d4f\\u2d53\\u2d61\\u2d30\\u2d4f\\u2d31\\u2d49\\u2d54_\\u2d37\\u2d53\\u2d4a\\u2d4f\\u2d31\\u2d49\\u2d54\".split(\"_\"),weekdays:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),weekdaysShort:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),weekdaysMin:\"\\u2d30\\u2d59\\u2d30\\u2d4e\\u2d30\\u2d59_\\u2d30\\u2d62\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4f\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d54\\u2d30\\u2d59_\\u2d30\\u2d3d\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d4e\\u2d61\\u2d30\\u2d59_\\u2d30\\u2d59\\u2d49\\u2d39\\u2d62\\u2d30\\u2d59\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u2d30\\u2d59\\u2d37\\u2d45 \\u2d34] LT\",nextDay:\"[\\u2d30\\u2d59\\u2d3d\\u2d30 \\u2d34] LT\",nextWeek:\"dddd [\\u2d34] LT\",lastDay:\"[\\u2d30\\u2d5a\\u2d30\\u2d4f\\u2d5c \\u2d34] LT\",lastWeek:\"dddd [\\u2d34] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u2d37\\u2d30\\u2d37\\u2d45 \\u2d59 \\u2d62\\u2d30\\u2d4f %s\",past:\"\\u2d62\\u2d30\\u2d4f %s\",s:\"\\u2d49\\u2d4e\\u2d49\\u2d3d\",ss:\"%d \\u2d49\\u2d4e\\u2d49\\u2d3d\",m:\"\\u2d4e\\u2d49\\u2d4f\\u2d53\\u2d3a\",mm:\"%d \\u2d4e\\u2d49\\u2d4f\\u2d53\\u2d3a\",h:\"\\u2d59\\u2d30\\u2d44\\u2d30\",hh:\"%d \\u2d5c\\u2d30\\u2d59\\u2d59\\u2d30\\u2d44\\u2d49\\u2d4f\",d:\"\\u2d30\\u2d59\\u2d59\",dd:\"%d o\\u2d59\\u2d59\\u2d30\\u2d4f\",M:\"\\u2d30\\u2d62o\\u2d53\\u2d54\",MM:\"%d \\u2d49\\u2d62\\u2d62\\u2d49\\u2d54\\u2d4f\",y:\"\\u2d30\\u2d59\\u2d33\\u2d30\\u2d59\",yy:\"%d \\u2d49\\u2d59\\u2d33\\u2d30\\u2d59\\u2d4f\"},week:{dow:6,doy:12}})}(n(\"wd/R\"))},\"wd/R\":function(e,t,n){(function(e){e.exports=function(){\"use strict\";var t,r;function i(){return t.apply(null,arguments)}function a(e){return e instanceof Array||\"[object Array]\"===Object.prototype.toString.call(e)}function o(e){return null!=e&&\"[object Object]\"===Object.prototype.toString.call(e)}function s(e){return void 0===e}function l(e){return\"number\"==typeof e||\"[object Number]\"===Object.prototype.toString.call(e)}function u(e){return e instanceof Date||\"[object Date]\"===Object.prototype.toString.call(e)}function c(e,t){var n,r=[];for(n=0;n>>0,r=0;r0)for(n=0;n=0?n?\"+\":\"\":\"-\")+Math.pow(10,Math.max(0,t-r.length)).toString().substr(1)+r}var N=/(\\[[^\\[]*\\])|(\\\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,z=/(\\[[^\\[]*\\])|(\\\\)?(LTS|LT|LL?L?L?|l{1,4})/g,V={},W={};function U(e,t,n,r){var i=r;\"string\"==typeof r&&(i=function(){return this[r]()}),e&&(W[e]=i),t&&(W[t[0]]=function(){return F(i.apply(this,arguments),t[1],t[2])}),n&&(W[n]=function(){return this.localeData().ordinal(i.apply(this,arguments),e)})}function B(e,t){return e.isValid()?(t=q(t,e.localeData()),V[t]=V[t]||function(e){var t,n,r,i=e.match(N);for(t=0,n=i.length;t=0&&z.test(e);)e=e.replace(z,r),z.lastIndex=0,n-=1;return e}var G=/\\d/,$=/\\d\\d/,J=/\\d{3}/,K=/\\d{4}/,Z=/[+-]?\\d{6}/,Q=/\\d\\d?/,X=/\\d\\d\\d\\d?/,ee=/\\d\\d\\d\\d\\d\\d?/,te=/\\d{1,3}/,ne=/\\d{1,4}/,re=/[+-]?\\d{1,6}/,ie=/\\d+/,ae=/[+-]?\\d+/,oe=/Z|[+-]\\d\\d:?\\d\\d/gi,se=/Z|[+-]\\d\\d(?::?\\d\\d)?/gi,le=/[0-9]{0,256}['a-z\\u00A0-\\u05FF\\u0700-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFF07\\uFF10-\\uFFEF]{1,256}|[\\u0600-\\u06FF\\/]{1,256}(\\s*?[\\u0600-\\u06FF]{1,256}){1,2}/i,ue={};function ce(e,t,n){ue[e]=O(t)?t:function(e,r){return e&&n?n:t}}function de(e,t){return d(ue,e)?ue[e](t._strict,t._locale):new RegExp(he(e.replace(\"\\\\\",\"\").replace(/\\\\(\\[)|\\\\(\\])|\\[([^\\]\\[]*)\\]|\\\\(.)/g,(function(e,t,n,r,i){return t||n||r||i}))))}function he(e){return e.replace(/[-\\/\\\\^$*+?.()|[\\]{}]/g,\"\\\\$&\")}var fe={};function me(e,t){var n,r=t;for(\"string\"==typeof e&&(e=[e]),l(t)&&(r=function(e,n){n[t]=C(e)}),n=0;n68?1900:2e3)};var ye,be=ke(\"FullYear\",!0);function ke(e,t){return function(n){return null!=n?(Ce(this,e,n),i.updateOffset(this,t),this):we(this,e)}}function we(e,t){return e.isValid()?e._d[\"get\"+(e._isUTC?\"UTC\":\"\")+t]():NaN}function Ce(e,t,n){e.isValid()&&!isNaN(n)&&(\"FullYear\"===t&&ge(e.year())&&1===e.month()&&29===e.date()?e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n,e.month(),Me(n,e.month())):e._d[\"set\"+(e._isUTC?\"UTC\":\"\")+t](n))}function Me(e,t){if(isNaN(e)||isNaN(t))return NaN;var n=(t%12+12)%12;return e+=(t-n)/12,1===n?ge(e)?29:28:31-n%7%2}ye=Array.prototype.indexOf?Array.prototype.indexOf:function(e){var t;for(t=0;t=0?(s=new Date(e+400,t,n,r,i,a,o),isFinite(s.getFullYear())&&s.setFullYear(e)):s=new Date(e,t,n,r,i,a,o),s}function Pe(e){var t;if(e<100&&e>=0){var n=Array.prototype.slice.call(arguments);n[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)}else t=new Date(Date.UTC.apply(null,arguments));return t}function je(e,t,n){var r=7+t-n;return-(7+Pe(e,0,r).getUTCDay()-t)%7+r-1}function Re(e,t,n,r,i){var a,o,s=1+7*(t-1)+(7+n-r)%7+je(e,r,i);return s<=0?o=ve(a=e-1)+s:s>ve(e)?(a=e+1,o=s-ve(e)):(a=e,o=s),{year:a,dayOfYear:o}}function He(e,t,n){var r,i,a=je(e.year(),t,n),o=Math.floor((e.dayOfYear()-a-1)/7)+1;return o<1?r=o+Fe(i=e.year()-1,t,n):o>Fe(e.year(),t,n)?(r=o-Fe(e.year(),t,n),i=e.year()+1):(i=e.year(),r=o),{week:r,year:i}}function Fe(e,t,n){var r=je(e,t,n),i=je(e+1,t,n);return(ve(e)-r+i)/7}function Ne(e,t){return e.slice(t,7).concat(e.slice(0,t))}U(\"w\",[\"ww\",2],\"wo\",\"week\"),U(\"W\",[\"WW\",2],\"Wo\",\"isoWeek\"),A(\"week\",\"w\"),A(\"isoWeek\",\"W\"),H(\"week\",5),H(\"isoWeek\",5),ce(\"w\",Q),ce(\"ww\",Q,$),ce(\"W\",Q),ce(\"WW\",Q,$),pe([\"w\",\"ww\",\"W\",\"WW\"],(function(e,t,n,r){t[r.substr(0,1)]=C(e)})),U(\"d\",0,\"do\",\"day\"),U(\"dd\",0,0,(function(e){return this.localeData().weekdaysMin(this,e)})),U(\"ddd\",0,0,(function(e){return this.localeData().weekdaysShort(this,e)})),U(\"dddd\",0,0,(function(e){return this.localeData().weekdays(this,e)})),U(\"e\",0,0,\"weekday\"),U(\"E\",0,0,\"isoWeekday\"),A(\"day\",\"d\"),A(\"weekday\",\"e\"),A(\"isoWeekday\",\"E\"),H(\"day\",11),H(\"weekday\",11),H(\"isoWeekday\",11),ce(\"d\",Q),ce(\"e\",Q),ce(\"E\",Q),ce(\"dd\",(function(e,t){return t.weekdaysMinRegex(e)})),ce(\"ddd\",(function(e,t){return t.weekdaysShortRegex(e)})),ce(\"dddd\",(function(e,t){return t.weekdaysRegex(e)})),pe([\"dd\",\"ddd\",\"dddd\"],(function(e,t,n,r){var i=n._locale.weekdaysParse(e,r,n._strict);null!=i?t.d=i:m(n).invalidWeekday=e})),pe([\"d\",\"e\",\"E\"],(function(e,t,n,r){t[r]=C(e)}));var ze=\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),Ve=\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),We=\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\");function Ue(e,t,n){var r,i,a,o=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],r=0;r<7;++r)a=f([2e3,1]).day(r),this._minWeekdaysParse[r]=this.weekdaysMin(a,\"\").toLocaleLowerCase(),this._shortWeekdaysParse[r]=this.weekdaysShort(a,\"\").toLocaleLowerCase(),this._weekdaysParse[r]=this.weekdays(a,\"\").toLocaleLowerCase();return n?\"dddd\"===t?-1!==(i=ye.call(this._weekdaysParse,o))?i:null:\"ddd\"===t?-1!==(i=ye.call(this._shortWeekdaysParse,o))?i:null:-1!==(i=ye.call(this._minWeekdaysParse,o))?i:null:\"dddd\"===t?-1!==(i=ye.call(this._weekdaysParse,o))||-1!==(i=ye.call(this._shortWeekdaysParse,o))||-1!==(i=ye.call(this._minWeekdaysParse,o))?i:null:\"ddd\"===t?-1!==(i=ye.call(this._shortWeekdaysParse,o))||-1!==(i=ye.call(this._weekdaysParse,o))||-1!==(i=ye.call(this._minWeekdaysParse,o))?i:null:-1!==(i=ye.call(this._minWeekdaysParse,o))||-1!==(i=ye.call(this._weekdaysParse,o))||-1!==(i=ye.call(this._shortWeekdaysParse,o))?i:null}var Be=le,qe=le,Ge=le;function $e(){function e(e,t){return t.length-e.length}var t,n,r,i,a,o=[],s=[],l=[],u=[];for(t=0;t<7;t++)n=f([2e3,1]).day(t),r=this.weekdaysMin(n,\"\"),i=this.weekdaysShort(n,\"\"),a=this.weekdays(n,\"\"),o.push(r),s.push(i),l.push(a),u.push(r),u.push(i),u.push(a);for(o.sort(e),s.sort(e),l.sort(e),u.sort(e),t=0;t<7;t++)s[t]=he(s[t]),l[t]=he(l[t]),u[t]=he(u[t]);this._weekdaysRegex=new RegExp(\"^(\"+u.join(\"|\")+\")\",\"i\"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp(\"^(\"+l.join(\"|\")+\")\",\"i\"),this._weekdaysShortStrictRegex=new RegExp(\"^(\"+s.join(\"|\")+\")\",\"i\"),this._weekdaysMinStrictRegex=new RegExp(\"^(\"+o.join(\"|\")+\")\",\"i\")}function Je(){return this.hours()%12||12}function Ke(e,t){U(e,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)}))}function Ze(e,t){return t._meridiemParse}U(\"H\",[\"HH\",2],0,\"hour\"),U(\"h\",[\"hh\",2],0,Je),U(\"k\",[\"kk\",2],0,(function(){return this.hours()||24})),U(\"hmm\",0,0,(function(){return\"\"+Je.apply(this)+F(this.minutes(),2)})),U(\"hmmss\",0,0,(function(){return\"\"+Je.apply(this)+F(this.minutes(),2)+F(this.seconds(),2)})),U(\"Hmm\",0,0,(function(){return\"\"+this.hours()+F(this.minutes(),2)})),U(\"Hmmss\",0,0,(function(){return\"\"+this.hours()+F(this.minutes(),2)+F(this.seconds(),2)})),Ke(\"a\",!0),Ke(\"A\",!1),A(\"hour\",\"h\"),H(\"hour\",13),ce(\"a\",Ze),ce(\"A\",Ze),ce(\"H\",Q),ce(\"h\",Q),ce(\"k\",Q),ce(\"HH\",Q,$),ce(\"hh\",Q,$),ce(\"kk\",Q,$),ce(\"hmm\",X),ce(\"hmmss\",ee),ce(\"Hmm\",X),ce(\"Hmmss\",ee),me([\"H\",\"HH\"],3),me([\"k\",\"kk\"],(function(e,t,n){var r=C(e);t[3]=24===r?0:r})),me([\"a\",\"A\"],(function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e})),me([\"h\",\"hh\"],(function(e,t,n){t[3]=C(e),m(n).bigHour=!0})),me(\"hmm\",(function(e,t,n){var r=e.length-2;t[3]=C(e.substr(0,r)),t[4]=C(e.substr(r)),m(n).bigHour=!0})),me(\"hmmss\",(function(e,t,n){var r=e.length-4,i=e.length-2;t[3]=C(e.substr(0,r)),t[4]=C(e.substr(r,2)),t[5]=C(e.substr(i)),m(n).bigHour=!0})),me(\"Hmm\",(function(e,t,n){var r=e.length-2;t[3]=C(e.substr(0,r)),t[4]=C(e.substr(r))})),me(\"Hmmss\",(function(e,t,n){var r=e.length-4,i=e.length-2;t[3]=C(e.substr(0,r)),t[4]=C(e.substr(r,2)),t[5]=C(e.substr(i))}));var Qe,Xe=ke(\"Hours\",!0),et={calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},longDateFormat:{LTS:\"h:mm:ss A\",LT:\"h:mm A\",L:\"MM/DD/YYYY\",LL:\"MMMM D, YYYY\",LLL:\"MMMM D, YYYY h:mm A\",LLLL:\"dddd, MMMM D, YYYY h:mm A\"},invalidDate:\"Invalid date\",ordinal:\"%d\",dayOfMonthOrdinalParse:/\\d{1,2}/,relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},months:Le,monthsShort:Te,week:{dow:0,doy:6},weekdays:ze,weekdaysMin:We,weekdaysShort:Ve,meridiemParse:/[ap]\\.?m?\\.?/i},tt={},nt={};function rt(e){return e?e.toLowerCase().replace(\"_\",\"-\"):e}function it(t){var r=null;if(!tt[t]&&void 0!==e&&e&&e.exports)try{r=Qe._abbr,n(\"RnhZ\")(\"./\"+t),at(r)}catch(i){}return tt[t]}function at(e,t){var n;return e&&((n=s(t)?st(e):ot(e,t))?Qe=n:\"undefined\"!=typeof console&&console.warn&&console.warn(\"Locale \"+e+\" not found. Did you forget to load it?\")),Qe._abbr}function ot(e,t){if(null!==t){var n,r=et;if(t.abbr=e,null!=tt[e])D(\"defineLocaleOverride\",\"use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info.\"),r=tt[e]._config;else if(null!=t.parentLocale)if(null!=tt[t.parentLocale])r=tt[t.parentLocale]._config;else{if(null==(n=it(t.parentLocale)))return nt[t.parentLocale]||(nt[t.parentLocale]=[]),nt[t.parentLocale].push({name:e,config:t}),null;r=n._config}return tt[e]=new E(Y(r,t)),nt[e]&&nt[e].forEach((function(e){ot(e.name,e.config)})),at(e),tt[e]}return delete tt[e],null}function st(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return Qe;if(!a(e)){if(t=it(e))return t;e=[e]}return function(e){for(var t,n,r,i,a=0;a0;){if(r=it(i.slice(0,t).join(\"-\")))return r;if(n&&n.length>=t&&M(i,n,!0)>=t-1)break;t--}a++}return Qe}(e)}function lt(e){var t,n=e._a;return n&&-2===m(e).overflow&&(t=n[1]<0||n[1]>11?1:n[2]<1||n[2]>Me(n[0],n[1])?2:n[3]<0||n[3]>24||24===n[3]&&(0!==n[4]||0!==n[5]||0!==n[6])?3:n[4]<0||n[4]>59?4:n[5]<0||n[5]>59?5:n[6]<0||n[6]>999?6:-1,m(e)._overflowDayOfYear&&(t<0||t>2)&&(t=2),m(e)._overflowWeeks&&-1===t&&(t=7),m(e)._overflowWeekday&&-1===t&&(t=8),m(e).overflow=t),e}function ut(e,t,n){return null!=e?e:null!=t?t:n}function ct(e){var t,n,r,a,o,s=[];if(!e._d){for(r=function(e){var t=new Date(i.now());return e._useUTC?[t.getUTCFullYear(),t.getUTCMonth(),t.getUTCDate()]:[t.getFullYear(),t.getMonth(),t.getDate()]}(e),e._w&&null==e._a[2]&&null==e._a[1]&&function(e){var t,n,r,i,a,o,s,l;if(null!=(t=e._w).GG||null!=t.W||null!=t.E)a=1,o=4,n=ut(t.GG,e._a[0],He(Mt(),1,4).year),r=ut(t.W,1),((i=ut(t.E,1))<1||i>7)&&(l=!0);else{a=e._locale._week.dow,o=e._locale._week.doy;var u=He(Mt(),a,o);n=ut(t.gg,e._a[0],u.year),r=ut(t.w,u.week),null!=t.d?((i=t.d)<0||i>6)&&(l=!0):null!=t.e?(i=t.e+a,(t.e<0||t.e>6)&&(l=!0)):i=a}r<1||r>Fe(n,a,o)?m(e)._overflowWeeks=!0:null!=l?m(e)._overflowWeekday=!0:(s=Re(n,r,i,a,o),e._a[0]=s.year,e._dayOfYear=s.dayOfYear)}(e),null!=e._dayOfYear&&(o=ut(e._a[0],r[0]),(e._dayOfYear>ve(o)||0===e._dayOfYear)&&(m(e)._overflowDayOfYear=!0),n=Pe(o,0,e._dayOfYear),e._a[1]=n.getUTCMonth(),e._a[2]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=s[t]=r[t];for(;t<7;t++)e._a[t]=s[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[3]&&0===e._a[4]&&0===e._a[5]&&0===e._a[6]&&(e._nextDay=!0,e._a[3]=0),e._d=(e._useUTC?Pe:Ae).apply(null,s),a=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[3]=24),e._w&&void 0!==e._w.d&&e._w.d!==a&&(m(e).weekdayMismatch=!0)}}var dt=/^\\s*((?:[+-]\\d{6}|\\d{4})-(?:\\d\\d-\\d\\d|W\\d\\d-\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?::\\d\\d(?::\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,ht=/^\\s*((?:[+-]\\d{6}|\\d{4})(?:\\d\\d\\d\\d|W\\d\\d\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?:\\d\\d(?:\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/,ft=/Z|[+-]\\d\\d(?::?\\d\\d)?/,mt=[[\"YYYYYY-MM-DD\",/[+-]\\d{6}-\\d\\d-\\d\\d/],[\"YYYY-MM-DD\",/\\d{4}-\\d\\d-\\d\\d/],[\"GGGG-[W]WW-E\",/\\d{4}-W\\d\\d-\\d/],[\"GGGG-[W]WW\",/\\d{4}-W\\d\\d/,!1],[\"YYYY-DDD\",/\\d{4}-\\d{3}/],[\"YYYY-MM\",/\\d{4}-\\d\\d/,!1],[\"YYYYYYMMDD\",/[+-]\\d{10}/],[\"YYYYMMDD\",/\\d{8}/],[\"GGGG[W]WWE\",/\\d{4}W\\d{3}/],[\"GGGG[W]WW\",/\\d{4}W\\d{2}/,!1],[\"YYYYDDD\",/\\d{7}/]],pt=[[\"HH:mm:ss.SSSS\",/\\d\\d:\\d\\d:\\d\\d\\.\\d+/],[\"HH:mm:ss,SSSS\",/\\d\\d:\\d\\d:\\d\\d,\\d+/],[\"HH:mm:ss\",/\\d\\d:\\d\\d:\\d\\d/],[\"HH:mm\",/\\d\\d:\\d\\d/],[\"HHmmss.SSSS\",/\\d\\d\\d\\d\\d\\d\\.\\d+/],[\"HHmmss,SSSS\",/\\d\\d\\d\\d\\d\\d,\\d+/],[\"HHmmss\",/\\d\\d\\d\\d\\d\\d/],[\"HHmm\",/\\d\\d\\d\\d/],[\"HH\",/\\d\\d/]],_t=/^\\/?Date\\((\\-?\\d+)/i;function vt(e){var t,n,r,i,a,o,s=e._i,l=dt.exec(s)||ht.exec(s);if(l){for(m(e).iso=!0,t=0,n=mt.length;t0&&m(e).unusedInput.push(o),s=s.slice(s.indexOf(n)+n.length),u+=n.length),W[a]?(n?m(e).empty=!1:m(e).unusedTokens.push(a),_e(a,n,e)):e._strict&&!n&&m(e).unusedTokens.push(a);m(e).charsLeftOver=l-u,s.length>0&&m(e).unusedInput.push(s),e._a[3]<=12&&!0===m(e).bigHour&&e._a[3]>0&&(m(e).bigHour=void 0),m(e).parsedDateParts=e._a.slice(0),m(e).meridiem=e._meridiem,e._a[3]=function(e,t,n){var r;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((r=e.isPM(n))&&t<12&&(t+=12),r||12!==t||(t=0),t):t}(e._locale,e._a[3],e._meridiem),ct(e),lt(e)}else bt(e);else vt(e)}function wt(e){var t=e._i,n=e._f;return e._locale=e._locale||st(e._l),null===t||void 0===n&&\"\"===t?_({nullInput:!0}):(\"string\"==typeof t&&(e._i=t=e._locale.preparse(t)),k(t)?new b(lt(t)):(u(t)?e._d=t:a(n)?function(e){var t,n,r,i,a;if(0===e._f.length)return m(e).invalidFormat=!0,void(e._d=new Date(NaN));for(i=0;ithis?this:e:_()}));function Tt(e,t){var n,r;if(1===t.length&&a(t[0])&&(t=t[0]),!t.length)return Mt();for(n=t[0],r=1;r=0?new Date(e+400,t,n)-126227808e5:new Date(e,t,n).valueOf()}function Xt(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-126227808e5:Date.UTC(e,t,n)}function en(e,t){U(0,[e,e.length],0,t)}function tn(e,t,n,r,i){var a;return null==e?He(this,r,i).year:(t>(a=Fe(e,r,i))&&(t=a),nn.call(this,e,t,n,r,i))}function nn(e,t,n,r,i){var a=Re(e,t,n,r,i),o=Pe(a.year,0,a.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}U(0,[\"gg\",2],0,(function(){return this.weekYear()%100})),U(0,[\"GG\",2],0,(function(){return this.isoWeekYear()%100})),en(\"gggg\",\"weekYear\"),en(\"ggggg\",\"weekYear\"),en(\"GGGG\",\"isoWeekYear\"),en(\"GGGGG\",\"isoWeekYear\"),A(\"weekYear\",\"gg\"),A(\"isoWeekYear\",\"GG\"),H(\"weekYear\",1),H(\"isoWeekYear\",1),ce(\"G\",ae),ce(\"g\",ae),ce(\"GG\",Q,$),ce(\"gg\",Q,$),ce(\"GGGG\",ne,K),ce(\"gggg\",ne,K),ce(\"GGGGG\",re,Z),ce(\"ggggg\",re,Z),pe([\"gggg\",\"ggggg\",\"GGGG\",\"GGGGG\"],(function(e,t,n,r){t[r.substr(0,2)]=C(e)})),pe([\"gg\",\"GG\"],(function(e,t,n,r){t[r]=i.parseTwoDigitYear(e)})),U(\"Q\",0,\"Qo\",\"quarter\"),A(\"quarter\",\"Q\"),H(\"quarter\",7),ce(\"Q\",G),me(\"Q\",(function(e,t){t[1]=3*(C(e)-1)})),U(\"D\",[\"DD\",2],\"Do\",\"date\"),A(\"date\",\"D\"),H(\"date\",9),ce(\"D\",Q),ce(\"DD\",Q,$),ce(\"Do\",(function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient})),me([\"D\",\"DD\"],2),me(\"Do\",(function(e,t){t[2]=C(e.match(Q)[0])}));var rn=ke(\"Date\",!0);U(\"DDD\",[\"DDDD\",3],\"DDDo\",\"dayOfYear\"),A(\"dayOfYear\",\"DDD\"),H(\"dayOfYear\",4),ce(\"DDD\",te),ce(\"DDDD\",J),me([\"DDD\",\"DDDD\"],(function(e,t,n){n._dayOfYear=C(e)})),U(\"m\",[\"mm\",2],0,\"minute\"),A(\"minute\",\"m\"),H(\"minute\",14),ce(\"m\",Q),ce(\"mm\",Q,$),me([\"m\",\"mm\"],4);var an=ke(\"Minutes\",!1);U(\"s\",[\"ss\",2],0,\"second\"),A(\"second\",\"s\"),H(\"second\",15),ce(\"s\",Q),ce(\"ss\",Q,$),me([\"s\",\"ss\"],5);var on,sn=ke(\"Seconds\",!1);for(U(\"S\",0,0,(function(){return~~(this.millisecond()/100)})),U(0,[\"SS\",2],0,(function(){return~~(this.millisecond()/10)})),U(0,[\"SSS\",3],0,\"millisecond\"),U(0,[\"SSSS\",4],0,(function(){return 10*this.millisecond()})),U(0,[\"SSSSS\",5],0,(function(){return 100*this.millisecond()})),U(0,[\"SSSSSS\",6],0,(function(){return 1e3*this.millisecond()})),U(0,[\"SSSSSSS\",7],0,(function(){return 1e4*this.millisecond()})),U(0,[\"SSSSSSSS\",8],0,(function(){return 1e5*this.millisecond()})),U(0,[\"SSSSSSSSS\",9],0,(function(){return 1e6*this.millisecond()})),A(\"millisecond\",\"ms\"),H(\"millisecond\",16),ce(\"S\",te,G),ce(\"SS\",te,$),ce(\"SSS\",te,J),on=\"SSSS\";on.length<=9;on+=\"S\")ce(on,ie);function ln(e,t){t[6]=C(1e3*(\"0.\"+e))}for(on=\"S\";on.length<=9;on+=\"S\")me(on,ln);var un=ke(\"Milliseconds\",!1);U(\"z\",0,0,\"zoneAbbr\"),U(\"zz\",0,0,\"zoneName\");var cn=b.prototype;function dn(e){return e}cn.add=Bt,cn.calendar=function(e,t){var n=e||Mt(),r=Pt(n,this).startOf(\"day\"),a=i.calendarFormat(this,r)||\"sameElse\",o=t&&(O(t[a])?t[a].call(this,n):t[a]);return this.format(o||this.localeData().calendar(a,this,Mt(n)))},cn.clone=function(){return new b(this)},cn.diff=function(e,t,n){var r,i,a;if(!this.isValid())return NaN;if(!(r=Pt(e,this)).isValid())return NaN;switch(i=6e4*(r.utcOffset()-this.utcOffset()),t=P(t)){case\"year\":a=Gt(this,r)/12;break;case\"month\":a=Gt(this,r);break;case\"quarter\":a=Gt(this,r)/3;break;case\"second\":a=(this-r)/1e3;break;case\"minute\":a=(this-r)/6e4;break;case\"hour\":a=(this-r)/36e5;break;case\"day\":a=(this-r-i)/864e5;break;case\"week\":a=(this-r-i)/6048e5;break;default:a=this-r}return n?a:w(a)},cn.endOf=function(e){var t;if(void 0===(e=P(e))||\"millisecond\"===e||!this.isValid())return this;var n=this._isUTC?Xt:Qt;switch(e){case\"year\":t=n(this.year()+1,0,1)-1;break;case\"quarter\":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case\"month\":t=n(this.year(),this.month()+1,1)-1;break;case\"week\":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case\"isoWeek\":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case\"day\":case\"date\":t=n(this.year(),this.month(),this.date()+1)-1;break;case\"hour\":t=this._d.valueOf(),t+=36e5-Zt(t+(this._isUTC?0:6e4*this.utcOffset()),36e5)-1;break;case\"minute\":t=this._d.valueOf(),t+=6e4-Zt(t,6e4)-1;break;case\"second\":t=this._d.valueOf(),t+=1e3-Zt(t,1e3)-1}return this._d.setTime(t),i.updateOffset(this,!0),this},cn.format=function(e){e||(e=this.isUtc()?i.defaultFormatUtc:i.defaultFormat);var t=B(this,e);return this.localeData().postformat(t)},cn.from=function(e,t){return this.isValid()&&(k(e)&&e.isValid()||Mt(e).isValid())?Nt({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},cn.fromNow=function(e){return this.from(Mt(),e)},cn.to=function(e,t){return this.isValid()&&(k(e)&&e.isValid()||Mt(e).isValid())?Nt({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},cn.toNow=function(e){return this.to(Mt(),e)},cn.get=function(e){return O(this[e=P(e)])?this[e]():this},cn.invalidAt=function(){return m(this).overflow},cn.isAfter=function(e,t){var n=k(e)?e:Mt(e);return!(!this.isValid()||!n.isValid())&&(\"millisecond\"===(t=P(t)||\"millisecond\")?this.valueOf()>n.valueOf():n.valueOf()9999?B(n,t?\"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ\"):O(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace(\"Z\",B(n,\"Z\")):B(n,t?\"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]\":\"YYYY-MM-DD[T]HH:mm:ss.SSSZ\")},cn.inspect=function(){if(!this.isValid())return\"moment.invalid(/* \"+this._i+\" */)\";var e=\"moment\",t=\"\";this.isLocal()||(e=0===this.utcOffset()?\"moment.utc\":\"moment.parseZone\",t=\"Z\");var n=\"[\"+e+'(\"]',r=0<=this.year()&&this.year()<=9999?\"YYYY\":\"YYYYYY\";return this.format(n+r+\"-MM-DD[T]HH:mm:ss.SSS\"+t+'[\")]')},cn.toJSON=function(){return this.isValid()?this.toISOString():null},cn.toString=function(){return this.clone().locale(\"en\").format(\"ddd MMM DD YYYY HH:mm:ss [GMT]ZZ\")},cn.unix=function(){return Math.floor(this.valueOf()/1e3)},cn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},cn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},cn.year=be,cn.isLeapYear=function(){return ge(this.year())},cn.weekYear=function(e){return tn.call(this,e,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},cn.isoWeekYear=function(e){return tn.call(this,e,this.isoWeek(),this.isoWeekday(),1,4)},cn.quarter=cn.quarters=function(e){return null==e?Math.ceil((this.month()+1)/3):this.month(3*(e-1)+this.month()%3)},cn.month=Oe,cn.daysInMonth=function(){return Me(this.year(),this.month())},cn.week=cn.weeks=function(e){var t=this.localeData().week(this);return null==e?t:this.add(7*(e-t),\"d\")},cn.isoWeek=cn.isoWeeks=function(e){var t=He(this,1,4).week;return null==e?t:this.add(7*(e-t),\"d\")},cn.weeksInYear=function(){var e=this.localeData()._week;return Fe(this.year(),e.dow,e.doy)},cn.isoWeeksInYear=function(){return Fe(this.year(),1,4)},cn.date=rn,cn.day=cn.days=function(e){if(!this.isValid())return null!=e?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=e?(e=function(e,t){return\"string\"!=typeof e?e:isNaN(e)?\"number\"==typeof(e=t.weekdaysParse(e))?e:null:parseInt(e,10)}(e,this.localeData()),this.add(e-t,\"d\")):t},cn.weekday=function(e){if(!this.isValid())return null!=e?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return null==e?t:this.add(e-t,\"d\")},cn.isoWeekday=function(e){if(!this.isValid())return null!=e?this:NaN;if(null!=e){var t=function(e,t){return\"string\"==typeof e?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}(e,this.localeData());return this.day(this.day()%7?t:t-7)}return this.day()||7},cn.dayOfYear=function(e){var t=Math.round((this.clone().startOf(\"day\")-this.clone().startOf(\"year\"))/864e5)+1;return null==e?t:this.add(e-t,\"d\")},cn.hour=cn.hours=Xe,cn.minute=cn.minutes=an,cn.second=cn.seconds=sn,cn.millisecond=cn.milliseconds=un,cn.utcOffset=function(e,t,n){var r,a=this._offset||0;if(!this.isValid())return null!=e?this:NaN;if(null!=e){if(\"string\"==typeof e){if(null===(e=At(se,e)))return this}else Math.abs(e)<16&&!n&&(e*=60);return!this._isUTC&&t&&(r=jt(this)),this._offset=e,this._isUTC=!0,null!=r&&this.add(r,\"m\"),a!==e&&(!t||this._changeInProgress?Ut(this,Nt(e-a,\"m\"),1,!1):this._changeInProgress||(this._changeInProgress=!0,i.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?a:jt(this)},cn.utc=function(e){return this.utcOffset(0,e)},cn.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(jt(this),\"m\")),this},cn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if(\"string\"==typeof this._i){var e=At(oe,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this},cn.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?Mt(e).utcOffset():0,(this.utcOffset()-e)%60==0)},cn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},cn.isLocal=function(){return!!this.isValid()&&!this._isUTC},cn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},cn.isUtc=Rt,cn.isUTC=Rt,cn.zoneAbbr=function(){return this._isUTC?\"UTC\":\"\"},cn.zoneName=function(){return this._isUTC?\"Coordinated Universal Time\":\"\"},cn.dates=L(\"dates accessor is deprecated. Use date instead.\",rn),cn.months=L(\"months accessor is deprecated. Use month instead\",Oe),cn.years=L(\"years accessor is deprecated. Use year instead\",be),cn.zone=L(\"moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/\",(function(e,t){return null!=e?(\"string\"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()})),cn.isDSTShifted=L(\"isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information\",(function(){if(!s(this._isDSTShifted))return this._isDSTShifted;var e={};if(g(e,this),(e=wt(e))._a){var t=e._isUTC?f(e._a):Mt(e._a);this._isDSTShifted=this.isValid()&&M(e._a,t.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}));var hn=E.prototype;function fn(e,t,n,r){var i=st(),a=f().set(r,t);return i[n](a,e)}function mn(e,t,n){if(l(e)&&(t=e,e=void 0),e=e||\"\",null!=t)return fn(e,t,n,\"month\");var r,i=[];for(r=0;r<12;r++)i[r]=fn(e,r,n,\"month\");return i}function pn(e,t,n,r){\"boolean\"==typeof e?(l(t)&&(n=t,t=void 0),t=t||\"\"):(n=t=e,e=!1,l(t)&&(n=t,t=void 0),t=t||\"\");var i,a=st(),o=e?a._week.dow:0;if(null!=n)return fn(t,(n+o)%7,r,\"day\");var s=[];for(i=0;i<7;i++)s[i]=fn(t,(i+o)%7,r,\"day\");return s}hn.calendar=function(e,t,n){var r=this._calendar[e]||this._calendar.sameElse;return O(r)?r.call(t,n):r},hn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.replace(/MMMM|MM|DD|dddd/g,(function(e){return e.slice(1)})),this._longDateFormat[e])},hn.invalidDate=function(){return this._invalidDate},hn.ordinal=function(e){return this._ordinal.replace(\"%d\",e)},hn.preparse=dn,hn.postformat=dn,hn.relativeTime=function(e,t,n,r){var i=this._relativeTime[n];return O(i)?i(e,t,n,r):i.replace(/%d/i,e)},hn.pastFuture=function(e,t){var n=this._relativeTime[e>0?\"future\":\"past\"];return O(n)?n(t):n.replace(/%s/i,t)},hn.set=function(e){var t,n;for(n in e)O(t=e[n])?this[n]=t:this[\"_\"+n]=t;this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+\"|\"+/\\d{1,2}/.source)},hn.months=function(e,t){return e?a(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||Se).test(t)?\"format\":\"standalone\"][e.month()]:a(this._months)?this._months:this._months.standalone},hn.monthsShort=function(e,t){return e?a(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[Se.test(t)?\"format\":\"standalone\"][e.month()]:a(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},hn.monthsParse=function(e,t,n){var r,i,a;if(this._monthsParseExact)return xe.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),r=0;r<12;r++){if(i=f([2e3,r]),n&&!this._longMonthsParse[r]&&(this._longMonthsParse[r]=new RegExp(\"^\"+this.months(i,\"\").replace(\".\",\"\")+\"$\",\"i\"),this._shortMonthsParse[r]=new RegExp(\"^\"+this.monthsShort(i,\"\").replace(\".\",\"\")+\"$\",\"i\")),n||this._monthsParse[r]||(a=\"^\"+this.months(i,\"\")+\"|^\"+this.monthsShort(i,\"\"),this._monthsParse[r]=new RegExp(a.replace(\".\",\"\"),\"i\")),n&&\"MMMM\"===t&&this._longMonthsParse[r].test(e))return r;if(n&&\"MMM\"===t&&this._shortMonthsParse[r].test(e))return r;if(!n&&this._monthsParse[r].test(e))return r}},hn.monthsRegex=function(e){return this._monthsParseExact?(d(this,\"_monthsRegex\")||Ie.call(this),e?this._monthsStrictRegex:this._monthsRegex):(d(this,\"_monthsRegex\")||(this._monthsRegex=Ee),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},hn.monthsShortRegex=function(e){return this._monthsParseExact?(d(this,\"_monthsRegex\")||Ie.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(d(this,\"_monthsShortRegex\")||(this._monthsShortRegex=Ye),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},hn.week=function(e){return He(e,this._week.dow,this._week.doy).week},hn.firstDayOfYear=function(){return this._week.doy},hn.firstDayOfWeek=function(){return this._week.dow},hn.weekdays=function(e,t){var n=a(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?\"format\":\"standalone\"];return!0===e?Ne(n,this._week.dow):e?n[e.day()]:n},hn.weekdaysMin=function(e){return!0===e?Ne(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin},hn.weekdaysShort=function(e){return!0===e?Ne(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort},hn.weekdaysParse=function(e,t,n){var r,i,a;if(this._weekdaysParseExact)return Ue.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++){if(i=f([2e3,1]).day(r),n&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp(\"^\"+this.weekdays(i,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._shortWeekdaysParse[r]=new RegExp(\"^\"+this.weekdaysShort(i,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\"),this._minWeekdaysParse[r]=new RegExp(\"^\"+this.weekdaysMin(i,\"\").replace(\".\",\"\\\\.?\")+\"$\",\"i\")),this._weekdaysParse[r]||(a=\"^\"+this.weekdays(i,\"\")+\"|^\"+this.weekdaysShort(i,\"\")+\"|^\"+this.weekdaysMin(i,\"\"),this._weekdaysParse[r]=new RegExp(a.replace(\".\",\"\"),\"i\")),n&&\"dddd\"===t&&this._fullWeekdaysParse[r].test(e))return r;if(n&&\"ddd\"===t&&this._shortWeekdaysParse[r].test(e))return r;if(n&&\"dd\"===t&&this._minWeekdaysParse[r].test(e))return r;if(!n&&this._weekdaysParse[r].test(e))return r}},hn.weekdaysRegex=function(e){return this._weekdaysParseExact?(d(this,\"_weekdaysRegex\")||$e.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(d(this,\"_weekdaysRegex\")||(this._weekdaysRegex=Be),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},hn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(d(this,\"_weekdaysRegex\")||$e.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(d(this,\"_weekdaysShortRegex\")||(this._weekdaysShortRegex=qe),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},hn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(d(this,\"_weekdaysRegex\")||$e.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(d(this,\"_weekdaysMinRegex\")||(this._weekdaysMinRegex=Ge),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},hn.isPM=function(e){return\"p\"===(e+\"\").toLowerCase().charAt(0)},hn.meridiem=function(e,t,n){return e>11?n?\"pm\":\"PM\":n?\"am\":\"AM\"},at(\"en\",{dayOfMonthOrdinalParse:/\\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===C(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")}}),i.lang=L(\"moment.lang is deprecated. Use moment.locale instead.\",at),i.langData=L(\"moment.langData is deprecated. Use moment.localeData instead.\",st);var _n=Math.abs;function vn(e,t,n,r){var i=Nt(t,n);return e._milliseconds+=r*i._milliseconds,e._days+=r*i._days,e._months+=r*i._months,e._bubble()}function gn(e){return e<0?Math.floor(e):Math.ceil(e)}function yn(e){return 4800*e/146097}function bn(e){return 146097*e/4800}function kn(e){return function(){return this.as(e)}}var wn=kn(\"ms\"),Cn=kn(\"s\"),Mn=kn(\"m\"),Sn=kn(\"h\"),Ln=kn(\"d\"),Tn=kn(\"w\"),xn=kn(\"M\"),Dn=kn(\"Q\"),On=kn(\"y\");function Yn(e){return function(){return this.isValid()?this._data[e]:NaN}}var En=Yn(\"milliseconds\"),In=Yn(\"seconds\"),An=Yn(\"minutes\"),Pn=Yn(\"hours\"),jn=Yn(\"days\"),Rn=Yn(\"months\"),Hn=Yn(\"years\"),Fn=Math.round,Nn={ss:44,s:45,m:45,h:22,d:26,M:11};function zn(e,t,n,r,i){return i.relativeTime(t||1,!!n,e,r)}var Vn=Math.abs;function Wn(e){return(e>0)-(e<0)||+e}function Un(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n=Vn(this._milliseconds)/1e3,r=Vn(this._days),i=Vn(this._months);e=w(n/60),t=w(e/60),n%=60,e%=60;var a=w(i/12),o=i%=12,s=r,l=t,u=e,c=n?n.toFixed(3).replace(/\\.?0+$/,\"\"):\"\",d=this.asSeconds();if(!d)return\"P0D\";var h=d<0?\"-\":\"\",f=Wn(this._months)!==Wn(d)?\"-\":\"\",m=Wn(this._days)!==Wn(d)?\"-\":\"\",p=Wn(this._milliseconds)!==Wn(d)?\"-\":\"\";return h+\"P\"+(a?f+a+\"Y\":\"\")+(o?f+o+\"M\":\"\")+(s?m+s+\"D\":\"\")+(l||u||c?\"T\":\"\")+(l?p+l+\"H\":\"\")+(u?p+u+\"M\":\"\")+(c?p+c+\"S\":\"\")}var Bn=Dt.prototype;return Bn.isValid=function(){return this._isValid},Bn.abs=function(){var e=this._data;return this._milliseconds=_n(this._milliseconds),this._days=_n(this._days),this._months=_n(this._months),e.milliseconds=_n(e.milliseconds),e.seconds=_n(e.seconds),e.minutes=_n(e.minutes),e.hours=_n(e.hours),e.months=_n(e.months),e.years=_n(e.years),this},Bn.add=function(e,t){return vn(this,e,t,1)},Bn.subtract=function(e,t){return vn(this,e,t,-1)},Bn.as=function(e){if(!this.isValid())return NaN;var t,n,r=this._milliseconds;if(\"month\"===(e=P(e))||\"quarter\"===e||\"year\"===e)switch(n=this._months+yn(t=this._days+r/864e5),e){case\"month\":return n;case\"quarter\":return n/3;case\"year\":return n/12}else switch(t=this._days+Math.round(bn(this._months)),e){case\"week\":return t/7+r/6048e5;case\"day\":return t+r/864e5;case\"hour\":return 24*t+r/36e5;case\"minute\":return 1440*t+r/6e4;case\"second\":return 86400*t+r/1e3;case\"millisecond\":return Math.floor(864e5*t)+r;default:throw new Error(\"Unknown unit \"+e)}},Bn.asMilliseconds=wn,Bn.asSeconds=Cn,Bn.asMinutes=Mn,Bn.asHours=Sn,Bn.asDays=Ln,Bn.asWeeks=Tn,Bn.asMonths=xn,Bn.asQuarters=Dn,Bn.asYears=On,Bn.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*C(this._months/12):NaN},Bn._bubble=function(){var e,t,n,r,i,a=this._milliseconds,o=this._days,s=this._months,l=this._data;return a>=0&&o>=0&&s>=0||a<=0&&o<=0&&s<=0||(a+=864e5*gn(bn(s)+o),o=0,s=0),l.milliseconds=a%1e3,e=w(a/1e3),l.seconds=e%60,t=w(e/60),l.minutes=t%60,n=w(t/60),l.hours=n%24,o+=w(n/24),s+=i=w(yn(o)),o-=gn(bn(i)),r=w(s/12),s%=12,l.days=o,l.months=s,l.years=r,this},Bn.clone=function(){return Nt(this)},Bn.get=function(e){return e=P(e),this.isValid()?this[e+\"s\"]():NaN},Bn.milliseconds=En,Bn.seconds=In,Bn.minutes=An,Bn.hours=Pn,Bn.days=jn,Bn.weeks=function(){return w(this.days()/7)},Bn.months=Rn,Bn.years=Hn,Bn.humanize=function(e){if(!this.isValid())return this.localeData().invalidDate();var t=this.localeData(),n=function(e,t,n){var r=Nt(e).abs(),i=Fn(r.as(\"s\")),a=Fn(r.as(\"m\")),o=Fn(r.as(\"h\")),s=Fn(r.as(\"d\")),l=Fn(r.as(\"M\")),u=Fn(r.as(\"y\")),c=i<=Nn.ss&&[\"s\",i]||i0,c[4]=n,zn.apply(null,c)}(this,!e,t);return e&&(n=t.pastFuture(+this,n)),t.postformat(n)},Bn.toISOString=Un,Bn.toString=Un,Bn.toJSON=Un,Bn.locale=$t,Bn.localeData=Kt,Bn.toIsoString=L(\"toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)\",Un),Bn.lang=Jt,U(\"X\",0,0,\"unix\"),U(\"x\",0,0,\"valueOf\"),ce(\"x\",ae),ce(\"X\",/[+-]?\\d+(\\.\\d{1,3})?/),me(\"X\",(function(e,t,n){n._d=new Date(1e3*parseFloat(e,10))})),me(\"x\",(function(e,t,n){n._d=new Date(C(e))})),i.version=\"2.24.0\",t=Mt,i.fn=cn,i.min=function(){var e=[].slice.call(arguments,0);return Tt(\"isBefore\",e)},i.max=function(){var e=[].slice.call(arguments,0);return Tt(\"isAfter\",e)},i.now=function(){return Date.now?Date.now():+new Date},i.utc=f,i.unix=function(e){return Mt(1e3*e)},i.months=function(e,t){return mn(e,t,\"months\")},i.isDate=u,i.locale=at,i.invalid=_,i.duration=Nt,i.isMoment=k,i.weekdays=function(e,t,n){return pn(e,t,n,\"weekdays\")},i.parseZone=function(){return Mt.apply(null,arguments).parseZone()},i.localeData=st,i.isDuration=Ot,i.monthsShort=function(e,t){return mn(e,t,\"monthsShort\")},i.weekdaysMin=function(e,t,n){return pn(e,t,n,\"weekdaysMin\")},i.defineLocale=ot,i.updateLocale=function(e,t){if(null!=t){var n,r,i=et;null!=(r=it(e))&&(i=r._config),(n=new E(t=Y(i,t))).parentLocale=tt[e],tt[e]=n,at(e)}else null!=tt[e]&&(null!=tt[e].parentLocale?tt[e]=tt[e].parentLocale:null!=tt[e]&&delete tt[e]);return tt[e]},i.locales=function(){return T(tt)},i.weekdaysShort=function(e,t,n){return pn(e,t,n,\"weekdaysShort\")},i.normalizeUnits=P,i.relativeTimeRounding=function(e){return void 0===e?Fn:\"function\"==typeof e&&(Fn=e,!0)},i.relativeTimeThreshold=function(e,t){return void 0!==Nn[e]&&(void 0===t?Nn[e]:(Nn[e]=t,\"s\"===e&&(Nn.ss=t-1),!0))},i.calendarFormat=function(e,t){var n=e.diff(t,\"days\",!0);return n<-6?\"sameElse\":n<-1?\"lastWeek\":n<0?\"lastDay\":n<1?\"sameDay\":n<2?\"nextDay\":n<7?\"nextWeek\":\"sameElse\"},i.prototype=cn,i.HTML5_FMT={DATETIME_LOCAL:\"YYYY-MM-DDTHH:mm\",DATETIME_LOCAL_SECONDS:\"YYYY-MM-DDTHH:mm:ss\",DATETIME_LOCAL_MS:\"YYYY-MM-DDTHH:mm:ss.SSS\",DATE:\"YYYY-MM-DD\",TIME:\"HH:mm\",TIME_SECONDS:\"HH:mm:ss\",TIME_MS:\"HH:mm:ss.SSS\",WEEK:\"GGGG-[W]WW\",MONTH:\"YYYY-MM\"},i}()}).call(this,n(\"YuTi\")(e))},x6pH:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"he\",{months:\"\\u05d9\\u05e0\\u05d5\\u05d0\\u05e8_\\u05e4\\u05d1\\u05e8\\u05d5\\u05d0\\u05e8_\\u05de\\u05e8\\u05e5_\\u05d0\\u05e4\\u05e8\\u05d9\\u05dc_\\u05de\\u05d0\\u05d9_\\u05d9\\u05d5\\u05e0\\u05d9_\\u05d9\\u05d5\\u05dc\\u05d9_\\u05d0\\u05d5\\u05d2\\u05d5\\u05e1\\u05d8_\\u05e1\\u05e4\\u05d8\\u05de\\u05d1\\u05e8_\\u05d0\\u05d5\\u05e7\\u05d8\\u05d5\\u05d1\\u05e8_\\u05e0\\u05d5\\u05d1\\u05de\\u05d1\\u05e8_\\u05d3\\u05e6\\u05de\\u05d1\\u05e8\".split(\"_\"),monthsShort:\"\\u05d9\\u05e0\\u05d5\\u05f3_\\u05e4\\u05d1\\u05e8\\u05f3_\\u05de\\u05e8\\u05e5_\\u05d0\\u05e4\\u05e8\\u05f3_\\u05de\\u05d0\\u05d9_\\u05d9\\u05d5\\u05e0\\u05d9_\\u05d9\\u05d5\\u05dc\\u05d9_\\u05d0\\u05d5\\u05d2\\u05f3_\\u05e1\\u05e4\\u05d8\\u05f3_\\u05d0\\u05d5\\u05e7\\u05f3_\\u05e0\\u05d5\\u05d1\\u05f3_\\u05d3\\u05e6\\u05de\\u05f3\".split(\"_\"),weekdays:\"\\u05e8\\u05d0\\u05e9\\u05d5\\u05df_\\u05e9\\u05e0\\u05d9_\\u05e9\\u05dc\\u05d9\\u05e9\\u05d9_\\u05e8\\u05d1\\u05d9\\u05e2\\u05d9_\\u05d7\\u05de\\u05d9\\u05e9\\u05d9_\\u05e9\\u05d9\\u05e9\\u05d9_\\u05e9\\u05d1\\u05ea\".split(\"_\"),weekdaysShort:\"\\u05d0\\u05f3_\\u05d1\\u05f3_\\u05d2\\u05f3_\\u05d3\\u05f3_\\u05d4\\u05f3_\\u05d5\\u05f3_\\u05e9\\u05f3\".split(\"_\"),weekdaysMin:\"\\u05d0_\\u05d1_\\u05d2_\\u05d3_\\u05d4_\\u05d5_\\u05e9\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D [\\u05d1]MMMM YYYY\",LLL:\"D [\\u05d1]MMMM YYYY HH:mm\",LLLL:\"dddd, D [\\u05d1]MMMM YYYY HH:mm\",l:\"D/M/YYYY\",ll:\"D MMM YYYY\",lll:\"D MMM YYYY HH:mm\",llll:\"ddd, D MMM YYYY HH:mm\"},calendar:{sameDay:\"[\\u05d4\\u05d9\\u05d5\\u05dd \\u05d1\\u05be]LT\",nextDay:\"[\\u05de\\u05d7\\u05e8 \\u05d1\\u05be]LT\",nextWeek:\"dddd [\\u05d1\\u05e9\\u05e2\\u05d4] LT\",lastDay:\"[\\u05d0\\u05ea\\u05de\\u05d5\\u05dc \\u05d1\\u05be]LT\",lastWeek:\"[\\u05d1\\u05d9\\u05d5\\u05dd] dddd [\\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05df \\u05d1\\u05e9\\u05e2\\u05d4] LT\",sameElse:\"L\"},relativeTime:{future:\"\\u05d1\\u05e2\\u05d5\\u05d3 %s\",past:\"\\u05dc\\u05e4\\u05e0\\u05d9 %s\",s:\"\\u05de\\u05e1\\u05e4\\u05e8 \\u05e9\\u05e0\\u05d9\\u05d5\\u05ea\",ss:\"%d \\u05e9\\u05e0\\u05d9\\u05d5\\u05ea\",m:\"\\u05d3\\u05e7\\u05d4\",mm:\"%d \\u05d3\\u05e7\\u05d5\\u05ea\",h:\"\\u05e9\\u05e2\\u05d4\",hh:function(e){return 2===e?\"\\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd\":e+\" \\u05e9\\u05e2\\u05d5\\u05ea\"},d:\"\\u05d9\\u05d5\\u05dd\",dd:function(e){return 2===e?\"\\u05d9\\u05d5\\u05de\\u05d9\\u05d9\\u05dd\":e+\" \\u05d9\\u05de\\u05d9\\u05dd\"},M:\"\\u05d7\\u05d5\\u05d3\\u05e9\",MM:function(e){return 2===e?\"\\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05d9\\u05dd\":e+\" \\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05dd\"},y:\"\\u05e9\\u05e0\\u05d4\",yy:function(e){return 2===e?\"\\u05e9\\u05e0\\u05ea\\u05d9\\u05d9\\u05dd\":e%10==0&&10!==e?e+\" \\u05e9\\u05e0\\u05d4\":e+\" \\u05e9\\u05e0\\u05d9\\u05dd\"}},meridiemParse:/\\u05d0\\u05d7\\u05d4\"\\u05e6|\\u05dc\\u05e4\\u05e0\\u05d4\"\\u05e6|\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05dc\\u05e4\\u05e0\\u05d5\\u05ea \\u05d1\\u05d5\\u05e7\\u05e8|\\u05d1\\u05d1\\u05d5\\u05e7\\u05e8|\\u05d1\\u05e2\\u05e8\\u05d1/i,isPM:function(e){return/^(\\u05d0\\u05d7\\u05d4\"\\u05e6|\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd|\\u05d1\\u05e2\\u05e8\\u05d1)$/.test(e)},meridiem:function(e,t,n){return e<5?\"\\u05dc\\u05e4\\u05e0\\u05d5\\u05ea \\u05d1\\u05d5\\u05e7\\u05e8\":e<10?\"\\u05d1\\u05d1\\u05d5\\u05e7\\u05e8\":e<12?n?'\\u05dc\\u05e4\\u05e0\\u05d4\"\\u05e6':\"\\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd\":e<18?n?'\\u05d0\\u05d7\\u05d4\"\\u05e6':\"\\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e6\\u05d4\\u05e8\\u05d9\\u05d9\\u05dd\":\"\\u05d1\\u05e2\\u05e8\\u05d1\"}})}(n(\"wd/R\"))},yPMs:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"sq\",{months:\"Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_N\\xebntor_Dhjetor\".split(\"_\"),monthsShort:\"Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_N\\xebn_Dhj\".split(\"_\"),weekdays:\"E Diel_E H\\xebn\\xeb_E Mart\\xeb_E M\\xebrkur\\xeb_E Enjte_E Premte_E Shtun\\xeb\".split(\"_\"),weekdaysShort:\"Die_H\\xebn_Mar_M\\xebr_Enj_Pre_Sht\".split(\"_\"),weekdaysMin:\"D_H_Ma_M\\xeb_E_P_Sh\".split(\"_\"),weekdaysParseExact:!0,meridiemParse:/PD|MD/,isPM:function(e){return\"M\"===e.charAt(0)},meridiem:function(e,t,n){return e<12?\"PD\":\"MD\"},longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Sot n\\xeb] LT\",nextDay:\"[Nes\\xebr n\\xeb] LT\",nextWeek:\"dddd [n\\xeb] LT\",lastDay:\"[Dje n\\xeb] LT\",lastWeek:\"dddd [e kaluar n\\xeb] LT\",sameElse:\"L\"},relativeTime:{future:\"n\\xeb %s\",past:\"%s m\\xeb par\\xeb\",s:\"disa sekonda\",ss:\"%d sekonda\",m:\"nj\\xeb minut\\xeb\",mm:\"%d minuta\",h:\"nj\\xeb or\\xeb\",hh:\"%d or\\xeb\",d:\"nj\\xeb dit\\xeb\",dd:\"%d dit\\xeb\",M:\"nj\\xeb muaj\",MM:\"%d muaj\",y:\"nj\\xeb vit\",yy:\"%d vite\"},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},z1FC:function(e,t,n){!function(e){\"use strict\";function t(e,t,n,r){var i={s:[\"viensas secunds\",\"'iensas secunds\"],ss:[e+\" secunds\",e+\" secunds\"],m:[\"'n m\\xedut\",\"'iens m\\xedut\"],mm:[e+\" m\\xeduts\",e+\" m\\xeduts\"],h:[\"'n \\xfeora\",\"'iensa \\xfeora\"],hh:[e+\" \\xfeoras\",e+\" \\xfeoras\"],d:[\"'n ziua\",\"'iensa ziua\"],dd:[e+\" ziuas\",e+\" ziuas\"],M:[\"'n mes\",\"'iens mes\"],MM:[e+\" mesen\",e+\" mesen\"],y:[\"'n ar\",\"'iens ar\"],yy:[e+\" ars\",e+\" ars\"]};return r||t?i[n][0]:i[n][1]}e.defineLocale(\"tzl\",{months:\"Januar_Fevraglh_Mar\\xe7_Avr\\xefu_Mai_G\\xfcn_Julia_Guscht_Setemvar_Listop\\xe4ts_Noemvar_Zecemvar\".split(\"_\"),monthsShort:\"Jan_Fev_Mar_Avr_Mai_G\\xfcn_Jul_Gus_Set_Lis_Noe_Zec\".split(\"_\"),weekdays:\"S\\xfaladi_L\\xfane\\xe7i_Maitzi_M\\xe1rcuri_Xh\\xfaadi_Vi\\xe9ner\\xe7i_S\\xe1turi\".split(\"_\"),weekdaysShort:\"S\\xfal_L\\xfan_Mai_M\\xe1r_Xh\\xfa_Vi\\xe9_S\\xe1t\".split(\"_\"),weekdaysMin:\"S\\xfa_L\\xfa_Ma_M\\xe1_Xh_Vi_S\\xe1\".split(\"_\"),longDateFormat:{LT:\"HH.mm\",LTS:\"HH.mm.ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM [dallas] YYYY\",LLL:\"D. MMMM [dallas] YYYY HH.mm\",LLLL:\"dddd, [li] D. MMMM [dallas] YYYY HH.mm\"},meridiemParse:/d\\'o|d\\'a/i,isPM:function(e){return\"d'o\"===e.toLowerCase()},meridiem:function(e,t,n){return e>11?n?\"d'o\":\"D'O\":n?\"d'a\":\"D'A\"},calendar:{sameDay:\"[oxhi \\xe0] LT\",nextDay:\"[dem\\xe0 \\xe0] LT\",nextWeek:\"dddd [\\xe0] LT\",lastDay:\"[ieiri \\xe0] LT\",lastWeek:\"[s\\xfcr el] dddd [lasteu \\xe0] LT\",sameElse:\"L\"},relativeTime:{future:\"osprei %s\",past:\"ja%s\",s:t,ss:t,m:t,mm:t,h:t,hh:t,d:t,dd:t,M:t,MM:t,y:t,yy:t},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},z3Vd:function(e,t,n){!function(e){\"use strict\";var t=\"pagh_wa\\u2019_cha\\u2019_wej_loS_vagh_jav_Soch_chorgh_Hut\".split(\"_\");function n(e,n,r,i){var a=function(e){var n=Math.floor(e%1e3/100),r=Math.floor(e%100/10),i=e%10,a=\"\";return n>0&&(a+=t[n]+\"vatlh\"),r>0&&(a+=(\"\"!==a?\" \":\"\")+t[r]+\"maH\"),i>0&&(a+=(\"\"!==a?\" \":\"\")+t[i]),\"\"===a?\"pagh\":a}(e);switch(r){case\"ss\":return a+\" lup\";case\"mm\":return a+\" tup\";case\"hh\":return a+\" rep\";case\"dd\":return a+\" jaj\";case\"MM\":return a+\" jar\";case\"yy\":return a+\" DIS\"}}e.defineLocale(\"tlh\",{months:\"tera\\u2019 jar wa\\u2019_tera\\u2019 jar cha\\u2019_tera\\u2019 jar wej_tera\\u2019 jar loS_tera\\u2019 jar vagh_tera\\u2019 jar jav_tera\\u2019 jar Soch_tera\\u2019 jar chorgh_tera\\u2019 jar Hut_tera\\u2019 jar wa\\u2019maH_tera\\u2019 jar wa\\u2019maH wa\\u2019_tera\\u2019 jar wa\\u2019maH cha\\u2019\".split(\"_\"),monthsShort:\"jar wa\\u2019_jar cha\\u2019_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa\\u2019maH_jar wa\\u2019maH wa\\u2019_jar wa\\u2019maH cha\\u2019\".split(\"_\"),monthsParseExact:!0,weekdays:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysShort:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),weekdaysMin:\"lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[DaHjaj] LT\",nextDay:\"[wa\\u2019leS] LT\",nextWeek:\"LLL\",lastDay:\"[wa\\u2019Hu\\u2019] LT\",lastWeek:\"LLL\",sameElse:\"L\"},relativeTime:{future:function(e){var t=e;return-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"leS\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"waQ\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"nem\":t+\" pIq\"},past:function(e){var t=e;return-1!==e.indexOf(\"jaj\")?t.slice(0,-3)+\"Hu\\u2019\":-1!==e.indexOf(\"jar\")?t.slice(0,-3)+\"wen\":-1!==e.indexOf(\"DIS\")?t.slice(0,-3)+\"ben\":t+\" ret\"},s:\"puS lup\",ss:n,m:\"wa\\u2019 tup\",mm:n,h:\"wa\\u2019 rep\",hh:n,d:\"wa\\u2019 jaj\",dd:n,M:\"wa\\u2019 jar\",MM:n,y:\"wa\\u2019 DIS\",yy:n},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:4}})}(n(\"wd/R\"))},zUnb:function(e,t,n){\"use strict\";function r(e){return\"function\"==typeof e}n.r(t);var i=!1,a={Promise:void 0,set useDeprecatedSynchronousErrorHandling(e){if(e){var t=new Error;console.warn(\"DEPRECATED! RxJS was set to use deprecated synchronous error handling behavior by code at: \\n\"+t.stack)}else i&&console.log(\"RxJS: Back to a better error behavior. Thank you. <3\");i=e},get useDeprecatedSynchronousErrorHandling(){return i}};function o(e){setTimeout((function(){throw e}),0)}var s={closed:!0,next:function(e){},error:function(e){if(a.useDeprecatedSynchronousErrorHandling)throw e;o(e)},complete:function(){}},l=Array.isArray||function(e){return e&&\"number\"==typeof e.length};function u(e){return null!==e&&\"object\"==typeof e}var c,d=function(){function e(e){return Error.call(this),this.message=e?\"\".concat(e.length,\" errors occurred during unsubscription:\\n\").concat(e.map((function(e,t){return\"\".concat(t+1,\") \").concat(e.toString())})).join(\"\\n \")):\"\",this.name=\"UnsubscriptionError\",this.errors=e,this}return e.prototype=Object.create(Error.prototype),e}(),h=((c=function(){function e(t){_classCallCheck(this,e),this.closed=!1,this._parentOrParents=null,this._subscriptions=null,t&&(this._unsubscribe=t)}return _createClass(e,[{key:\"unsubscribe\",value:function(){var t;if(!this.closed){var n=this._parentOrParents,i=this._unsubscribe,a=this._subscriptions;if(this.closed=!0,this._parentOrParents=null,this._subscriptions=null,n instanceof e)n.remove(this);else if(null!==n)for(var o=0;o4&&void 0!==arguments[4]?arguments[4]:new Y(e,n,r);if(!i.closed)return t instanceof w?t.subscribe(i):j(t)(i)}var H=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"notifyNext\",value:function(e,t,n,r,i){this.destination.next(t)}},{key:\"notifyError\",value:function(e,t){this.destination.error(e)}},{key:\"notifyComplete\",value:function(e){this.destination.complete()}}]),n}(p);function F(e,t){return function(n){if(\"function\"!=typeof e)throw new TypeError(\"argument is not a function. Are you looking for `mapTo()`?\");return n.lift(new N(e,t))}}var N=function(){function e(t,n){_classCallCheck(this,e),this.project=t,this.thisArg=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new z(e,this.project,this.thisArg))}}]),e}(),z=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).project=r,a.count=0,a.thisArg=i||_assertThisInitialized(a),a}return _createClass(n,[{key:\"_next\",value:function(e){var t;try{t=this.project.call(this.thisArg,e,this.count++)}catch(n){return void this.destination.error(n)}this.destination.next(t)}}]),n}(p);function V(e,t){return new w((function(n){var r=new h,i=0;return r.add(t.schedule((function(){i!==e.length?(n.next(e[i++]),n.closed||r.add(this.schedule())):n.complete()}))),r}))}function W(e,t){return t?function(e,t){if(null!=e){if(function(e){return e&&\"function\"==typeof e[v]}(e))return function(e,t){return new w((function(n){var r=new h;return r.add(t.schedule((function(){var i=e[v]();r.add(i.subscribe({next:function(e){r.add(t.schedule((function(){return n.next(e)})))},error:function(e){r.add(t.schedule((function(){return n.error(e)})))},complete:function(){r.add(t.schedule((function(){return n.complete()})))}}))}))),r}))}(e,t);if(P(e))return function(e,t){return new w((function(n){var r=new h;return r.add(t.schedule((function(){return e.then((function(e){r.add(t.schedule((function(){n.next(e),r.add(t.schedule((function(){return n.complete()})))})))}),(function(e){r.add(t.schedule((function(){return n.error(e)})))}))}))),r}))}(e,t);if(A(e))return V(e,t);if(function(e){return e&&\"function\"==typeof e[I]}(e)||\"string\"==typeof e)return function(e,t){if(!e)throw new Error(\"Iterable cannot be null\");return new w((function(n){var r,i=new h;return i.add((function(){r&&\"function\"==typeof r.return&&r.return()})),i.add(t.schedule((function(){r=e[I](),i.add(t.schedule((function(){if(!n.closed){var e,t;try{var i=r.next();e=i.value,t=i.done}catch(a){return void n.error(a)}t?n.complete():(n.next(e),this.schedule())}})))}))),i}))}(e,t)}throw new TypeError((null!==e&&typeof e||e)+\" is not observable\")}(e,t):e instanceof w?e:new w(j(e))}function U(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Number.POSITIVE_INFINITY;return\"function\"==typeof t?function(r){return r.pipe(U((function(n,r){return W(e(n,r)).pipe(F((function(e,i){return t(n,e,r,i)})))}),n))}:(\"number\"==typeof t&&(n=t),function(t){return t.lift(new B(e,n))})}var B=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.POSITIVE_INFINITY;_classCallCheck(this,e),this.project=t,this.concurrent=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new q(e,this.project,this.concurrent))}}]),e}(),q=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Number.POSITIVE_INFINITY;return _classCallCheck(this,n),(i=t.call(this,e)).project=r,i.concurrent=a,i.hasCompleted=!1,i.buffer=[],i.active=0,i.index=0,i}return _createClass(n,[{key:\"_next\",value:function(e){this.active0?this._next(t.shift()):0===this.active&&this.hasCompleted&&this.destination.complete()}}]),n}(H);function G(e){return e}function $(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Number.POSITIVE_INFINITY;return U(G,e)}function J(e,t){return t?V(e,t):new w(E(e))}function K(){for(var e=arguments.length,t=new Array(e),n=0;n1&&\"number\"==typeof t[t.length-1]&&(r=t.pop())):\"number\"==typeof a&&(r=t.pop()),null===i&&1===t.length&&t[0]instanceof w?t[0]:$(r)(J(t,i))}function Z(){return function(e){return e.lift(new X(e))}}var Q,X=function(){function e(t){_classCallCheck(this,e),this.connectable=t}return _createClass(e,[{key:\"call\",value:function(e,t){var n=this.connectable;n._refCount++;var r=new ee(e,n),i=t.subscribe(r);return r.closed||(r.connection=n.connect()),i}}]),e}(),ee=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).connectable=r,i}return _createClass(n,[{key:\"_unsubscribe\",value:function(){var e=this.connectable;if(e){this.connectable=null;var t=e._refCount;if(t<=0)this.connection=null;else if(e._refCount=t-1,t>1)this.connection=null;else{var n=this.connection,r=e._connection;this.connection=null,!r||n&&r!==n||r.unsubscribe()}}else this.connection=null}}]),n}(p),te={operator:{value:null},_refCount:{value:0,writable:!0},_subject:{value:null,writable:!0},_connection:{value:null,writable:!0},_subscribe:{value:(Q=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this)).source=e,i.subjectFactory=r,i._refCount=0,i._isComplete=!1,i}return _createClass(n,[{key:\"_subscribe\",value:function(e){return this.getSubject().subscribe(e)}},{key:\"getSubject\",value:function(){var e=this._subject;return e&&!e.isStopped||(this._subject=this.subjectFactory()),this._subject}},{key:\"connect\",value:function(){var e=this._connection;return e||(this._isComplete=!1,(e=this._connection=new h).add(this.source.subscribe(new ne(this.getSubject(),this))),e.closed&&(this._connection=null,e=h.EMPTY)),e}},{key:\"refCount\",value:function(){return Z()(this)}}]),n}(w).prototype)._subscribe},_isComplete:{value:Q._isComplete,writable:!0},getSubject:{value:Q.getSubject},connect:{value:Q.connect},refCount:{value:Q.refCount}},ne=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).connectable=r,i}return _createClass(n,[{key:\"_error\",value:function(e){this._unsubscribe(),_get(_getPrototypeOf(n.prototype),\"_error\",this).call(this,e)}},{key:\"_complete\",value:function(){this.connectable._isComplete=!0,this._unsubscribe(),_get(_getPrototypeOf(n.prototype),\"_complete\",this).call(this)}},{key:\"_unsubscribe\",value:function(){var e=this.connectable;if(e){this.connectable=null;var t=e._connection;e._refCount=0,e._subject=null,e._connection=null,t&&t.unsubscribe()}}}]),n}(T);function re(e,t){return function(n){var r;if(r=\"function\"==typeof e?e:function(){return e},\"function\"==typeof t)return n.lift(new ie(r,t));var i=Object.create(n,te);return i.source=n,i.subjectFactory=r,i}}var ie=function(){function e(t,n){_classCallCheck(this,e),this.subjectFactory=t,this.selector=n}return _createClass(e,[{key:\"call\",value:function(e,t){var n=this.selector,r=this.subjectFactory(),i=n(r).subscribe(e);return i.add(t.subscribe(r)),i}}]),e}();function ae(){return new x}function oe(){return function(e){return Z()(re(ae)(e))}}function se(e){return{toString:e}.toString()}function le(e,t,n){return se((function(){var r=function(e){return function(){if(e){var t=e.apply(void 0,arguments);for(var n in t)this[n]=t[n]}}}(t);function i(){for(var e=arguments.length,t=new Array(e),n=0;n1&&void 0!==arguments[1]?arguments[1]:fe.Default;if(void 0===Ke)throw new Error(\"inject() must be called from an injection context\");return null===Ke?nt(e,void 0,t):Ke.get(e,t&fe.Optional?null:void 0,t)}function et(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:fe.Default;return(Ee||Xe)(Oe(e),t)}var tt=et;function nt(e,t,n){var r=ge(e);if(r&&\"root\"==r.providedIn)return void 0===r.value?r.value=r.factory():r.value;if(n&fe.Optional)return null;if(void 0!==t)return t;throw new Error(\"Injector: NOT_FOUND [\".concat(Le(e),\"]\"))}function rt(e){for(var t=[],n=0;n1&&void 0!==arguments[1]?arguments[1]:Ge;if(t===Ge){var n=new Error(\"NullInjectorError: No provider for \".concat(Le(e),\"!\"));throw n.name=\"NullInjectorError\",n}return t}}]),e}(),at=function e(){_classCallCheck(this,e)},ot=function e(){_classCallCheck(this,e)};function st(e,t){for(var n=0;n=e.length?e.push(n):e.splice(t,0,n)}function ct(e,t){return t>=e.length-1?e.pop():e.splice(t,1)[0]}function dt(e,t){for(var n=[],r=0;r=0?e[1|r]=n:function(e,t,n,r){var i=e.length;if(i==t)e.push(n,r);else if(1===i)e.push(r,e[0]),e[0]=n;else{for(i--,e.push(e[i-1],e[i]);i>t;)e[i]=e[i-2],i--;e[t]=n,e[t+1]=r}}(e,r=~r,t,n),r}function ft(e,t){var n=mt(e,t);if(n>=0)return e[1|n]}function mt(e,t){return function(e,t,n){for(var r=0,i=e.length>>1;i!==r;){var a=r+(i-r>>1),o=e[a<<1];if(t===o)return a<<1;o>t?i=a:r=a+1}return~(i<<1)}(e,t)}var pt=function(){var e={OnPush:0,Default:1};return e[e.OnPush]=\"OnPush\",e[e.Default]=\"Default\",e}(),_t=function(){var e={Emulated:0,Native:1,None:2,ShadowDom:3};return e[e.Emulated]=\"Emulated\",e[e.Native]=\"Native\",e[e.None]=\"None\",e[e.ShadowDom]=\"ShadowDom\",e}(),vt={},gt=[],yt=0;function bt(e){return se((function(){var t=e.type,n=t.prototype,r={},i={type:t,providersResolver:null,decls:e.decls,vars:e.vars,factory:null,template:e.template||null,consts:e.consts||null,ngContentSelectors:e.ngContentSelectors,hostBindings:e.hostBindings||null,hostVars:e.hostVars||0,hostAttrs:e.hostAttrs||null,contentQueries:e.contentQueries||null,declaredInputs:r,inputs:null,outputs:null,exportAs:e.exportAs||null,onChanges:null,onInit:n.ngOnInit||null,doCheck:n.ngDoCheck||null,afterContentInit:n.ngAfterContentInit||null,afterContentChecked:n.ngAfterContentChecked||null,afterViewInit:n.ngAfterViewInit||null,afterViewChecked:n.ngAfterViewChecked||null,onDestroy:n.ngOnDestroy||null,onPush:e.changeDetection===pt.OnPush,directiveDefs:null,pipeDefs:null,selectors:e.selectors||gt,viewQuery:e.viewQuery||null,features:e.features||null,data:e.data||{},encapsulation:e.encapsulation||_t.Emulated,id:\"c\",styles:e.styles||gt,_:null,setInput:null,schemas:e.schemas||null,tView:null},a=e.directives,o=e.features,s=e.pipes;return i.id+=yt++,i.inputs=St(e.inputs,r),i.outputs=St(e.outputs),o&&o.forEach((function(e){return e(i)})),i.directiveDefs=a?function(){return(\"function\"==typeof a?a():a).map(kt)}:null,i.pipeDefs=s?function(){return(\"function\"==typeof s?s():s).map(wt)}:null,i}))}function kt(e){return Tt(e)||function(e){return e[Fe]||null}(e)}function wt(e){return function(e){return e[Ne]||null}(e)}var Ct={};function Mt(e){var t={type:e.type,bootstrap:e.bootstrap||gt,declarations:e.declarations||gt,imports:e.imports||gt,exports:e.exports||gt,transitiveCompileScopes:null,schemas:e.schemas||null,id:e.id||null};return null!=e.id&&se((function(){Ct[e.id]=e.type})),t}function St(e,t){if(null==e)return vt;var n={};for(var r in e)if(e.hasOwnProperty(r)){var i=e[r],a=i;Array.isArray(i)&&(a=i[1],i=i[0]),n[i]=r,t&&(t[i]=a)}return n}var Lt=bt;function Tt(e){return e[He]||null}function xt(e,t){return e.hasOwnProperty(We)?e[We]:null}function Dt(e,t){var n=e[ze]||null;if(!n&&!0===t)throw new Error(\"Type \".concat(Le(e),\" does not have '\\u0275mod' property.\"));return n}function Ot(e){return Array.isArray(e)&&\"object\"==typeof e[1]}function Yt(e){return Array.isArray(e)&&!0===e[1]}function Et(e){return 0!=(8&e.flags)}function It(e){return 2==(2&e.flags)}function At(e){return 1==(1&e.flags)}function Pt(e){return null!==e.template}function jt(e){return 0!=(512&e[2])}var Rt=void 0;function Ht(){return void 0!==Rt?Rt:\"undefined\"!=typeof document?document:void 0}function Ft(e){return!!e.listen}var Nt={createRenderer:function(e,t){return Ht()}};function zt(e){for(;Array.isArray(e);)e=e[0];return e}function Vt(e,t){return zt(t[e+19])}function Wt(e,t){return zt(t[e.index])}function Ut(e,t){return e.data[t+19]}function Bt(e,t){return e[t+19]}function qt(e,t){var n=t[e];return Ot(n)?n:n[0]}function Gt(e){var t=function(e){return e.__ngContext__||null}(e);return t?Array.isArray(t)?t:t.lView:null}function $t(e){return 4==(4&e[2])}function Jt(e){return 128==(128&e[2])}function Kt(e,t){return null===e||null==t?null:e[t]}function Zt(e){e[18]=0}var Qt={lFrame:gn(null),bindingsEnabled:!0,checkNoChangesMode:!1};function Xt(){return Qt.bindingsEnabled}function en(){return Qt.lFrame.lView}function tn(){return Qt.lFrame.tView}function nn(e){Qt.lFrame.contextLView=e}function rn(){return Qt.lFrame.previousOrParentTNode}function an(e,t){Qt.lFrame.previousOrParentTNode=e,Qt.lFrame.isParent=t}function on(){return Qt.lFrame.isParent}function sn(){Qt.lFrame.isParent=!1}function ln(){return Qt.checkNoChangesMode}function un(e){Qt.checkNoChangesMode=e}function cn(){return Qt.lFrame.bindingIndex++}function dn(e){var t=Qt.lFrame,n=t.bindingIndex;return t.bindingIndex=t.bindingIndex+e,n}function hn(e,t){var n=Qt.lFrame;n.bindingIndex=n.bindingRootIndex=e,n.currentDirectiveIndex=t}function fn(){return Qt.lFrame.currentQueryIndex}function mn(e){Qt.lFrame.currentQueryIndex=e}function pn(e,t){var n=vn();Qt.lFrame=n,n.previousOrParentTNode=t,n.lView=e}function _n(e,t){var n=vn(),r=e[1];Qt.lFrame=n,n.previousOrParentTNode=t,n.lView=e,n.tView=r,n.contextLView=e,n.bindingIndex=r.bindingStartIndex}function vn(){var e=Qt.lFrame,t=null===e?null:e.child;return null===t?gn(e):t}function gn(e){var t={previousOrParentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:0,contextLView:null,elementDepthCount:0,currentNamespace:null,currentSanitizer:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:e,child:null};return null!==e&&(e.child=t),t}function yn(){var e=Qt.lFrame;return Qt.lFrame=e.parent,e.previousOrParentTNode=null,e.lView=null,e}var bn=yn;function kn(){var e=yn();e.isParent=!0,e.tView=null,e.selectedIndex=0,e.contextLView=null,e.elementDepthCount=0,e.currentDirectiveIndex=-1,e.currentNamespace=null,e.currentSanitizer=null,e.bindingRootIndex=-1,e.bindingIndex=-1,e.currentQueryIndex=0}function wn(){return Qt.lFrame.selectedIndex}function Cn(e){Qt.lFrame.selectedIndex=e}function Mn(){var e=Qt.lFrame;return Ut(e.tView,e.selectedIndex)}function Sn(){Qt.lFrame.currentNamespace=\"http://www.w3.org/2000/svg\"}function Ln(){Qt.lFrame.currentNamespace=null}function Tn(e,t){for(var n=t.directiveStart,r=t.directiveEnd;n=r)break}else t[o]<0&&(e[18]+=65536),(a>10>16&&(3&e[2])===t&&(e[2]+=1024,a.call(o)):a.call(o)}var In=function e(t,n,r){_classCallCheck(this,e),this.factory=t,this.resolving=!1,this.canSeeViewProviders=n,this.injectImpl=r};function An(e,t,n){for(var r=Ft(e),i=0;it){o=a-1;break}}}for(;a>16}function Vn(e,t){for(var n=zn(e),r=t;n>0;)r=r[15],n--;return r}function Wn(e){return\"string\"==typeof e?e:null==e?\"\":\"\"+e}function Un(e){return\"function\"==typeof e?e.name||e.toString():\"object\"==typeof e&&null!=e&&\"function\"==typeof e.type?e.type.name||e.type.toString():Wn(e)}var Bn=(\"undefined\"!=typeof requestAnimationFrame&&requestAnimationFrame||setTimeout).bind(Re);function qn(e){return{name:\"window\",target:e.ownerDocument.defaultView}}function Gn(e){return e instanceof Function?e():e}var $n=!0;function Jn(e){var t=$n;return $n=e,t}var Kn=0;function Zn(e,t){var n=Xn(e,t);if(-1!==n)return n;var r=t[1];r.firstCreatePass&&(e.injectorIndex=t.length,Qn(r.data,e),Qn(t,null),Qn(r.blueprint,null));var i=er(e,t),a=e.injectorIndex;if(Fn(i))for(var o=Nn(i),s=Vn(i,t),l=s[1].data,u=0;u<8;u++)t[a+u]=s[o+u]|l[o+u];return t[a+8]=i,a}function Qn(e,t){e.push(0,0,0,0,0,0,0,0,t)}function Xn(e,t){return-1===e.injectorIndex||e.parent&&e.parent.injectorIndex===e.injectorIndex||null==t[e.injectorIndex+8]?-1:e.injectorIndex}function er(e,t){if(e.parent&&-1!==e.parent.injectorIndex)return e.parent.injectorIndex;for(var n=t[6],r=1;n&&-1===n.injectorIndex;)n=(t=t[15])?t[6]:null,r++;return n?n.injectorIndex|r<<16:-1}function tr(e,t,n){!function(e,t,n){var r=\"string\"!=typeof n?n[Ue]:n.charCodeAt(0)||0;null==r&&(r=n[Ue]=Kn++);var i=255&r,a=1<3&&void 0!==arguments[3]?arguments[3]:fe.Default,i=arguments.length>4?arguments[4]:void 0;if(null!==e){var a=function(e){if(\"string\"==typeof e)return e.charCodeAt(0)||0;var t=e[Ue];return\"number\"==typeof t&&t>0?255&t:t}(n);if(\"function\"==typeof a){pn(t,e);try{var o=a();if(null!=o||r&fe.Optional)return o;throw new Error(\"No provider for \".concat(Un(n),\"!\"))}finally{bn()}}else if(\"number\"==typeof a){if(-1===a)return new ur(e,t);var s=null,l=Xn(e,t),u=-1,c=r&fe.Host?t[16][6]:null;for((-1===l||r&fe.SkipSelf)&&(u=-1===l?er(e,t):t[l+8],lr(r,!1)?(s=t[1],l=Nn(u),t=Vn(u,t)):l=-1);-1!==l;){u=t[l+8];var d=t[1];if(sr(a,l,d.data)){var h=ir(l,t,n,s,r,c);if(h!==rr)return h}lr(r,t[1].data[l+8]===c)&&sr(a,l,t)?(s=d,l=Nn(u),t=Vn(u,t)):l=-1}}}if(r&fe.Optional&&void 0===i&&(i=null),0==(r&(fe.Self|fe.Host))){var f=t[9],m=Qe(void 0);try{return f?f.get(n,i,r&fe.Optional):nt(n,i,r&fe.Optional)}finally{Qe(m)}}if(r&fe.Optional)return i;throw new Error(\"NodeInjector: NOT_FOUND [\".concat(Un(n),\"]\"))}var rr={};function ir(e,t,n,r,i,a){var o=t[1],s=o.data[e+8],l=ar(s,o,n,null==r?It(s)&&$n:r!=o&&3===s.type,i&fe.Host&&a===s);return null!==l?or(t,o,l,s):rr}function ar(e,t,n,r,i){for(var a=e.providerIndexes,o=t.data,s=65535&a,l=e.directiveStart,u=a>>16,c=i?s+u:e.directiveEnd,d=r?s:s+u;d=l&&h.type===n)return d}if(i){var f=o[l];if(f&&Pt(f)&&f.type===n)return l}return null}function or(e,t,n,r){var i=e[n],a=t.data;if(i instanceof In){var o=i;if(o.resolving)throw new Error(\"Circular dep for \".concat(Un(a[n])));var s,l=Jn(o.canSeeViewProviders);o.resolving=!0,o.injectImpl&&(s=Qe(o.injectImpl)),pn(e,r);try{i=e[n]=o.factory(void 0,a,e,r),t.firstCreatePass&&n>=r.directiveStart&&function(e,t,n){var r=t.onChanges,i=t.onInit,a=t.doCheck;r&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,r),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,r)),i&&(n.preOrderHooks||(n.preOrderHooks=[])).push(-e,i),a&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,a),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,a))}(n,a[n],t)}finally{o.injectImpl&&Qe(s),Jn(l),o.resolving=!1,bn()}}return i}function sr(e,t,n){var r=64&e,i=32&e;return!!((128&e?r?i?n[t+7]:n[t+6]:i?n[t+5]:n[t+4]:r?i?n[t+3]:n[t+2]:i?n[t+1]:n[t])&1<1?t-1:0),r=1;r',!n.querySelector||n.querySelector(\"svg\")?(n.innerHTML='

',this.getInertBodyElement=n.querySelector&&n.querySelector(\"svg img\")&&function(){try{return!!window.DOMParser}catch(e){return!1}}()?this.getInertBodyElement_DOMParser:this.getInertBodyElement_InertDocument):this.getInertBodyElement=this.getInertBodyElement_XHR}return _createClass(e,[{key:\"getInertBodyElement_XHR\",value:function(e){e=\"\"+e+\"\";try{e=encodeURI(e)}catch(r){return null}var t=new XMLHttpRequest;t.responseType=\"document\",t.open(\"GET\",\"data:text/html;charset=utf-8,\"+e,!1),t.send(void 0);var n=t.response.body;return n.removeChild(n.firstChild),n}},{key:\"getInertBodyElement_DOMParser\",value:function(e){e=\"\"+e+\"\";try{var t=(new window.DOMParser).parseFromString(e,\"text/html\").body;return t.removeChild(t.firstChild),t}catch(n){return null}}},{key:\"getInertBodyElement_InertDocument\",value:function(e){var t=this.inertDocument.createElement(\"template\");if(\"content\"in t)return t.innerHTML=e,t;var n=this.inertDocument.createElement(\"body\");return n.innerHTML=e,this.defaultDoc.documentMode&&this.stripCustomNsAttrs(n),n}},{key:\"stripCustomNsAttrs\",value:function(e){for(var t=e.attributes,n=t.length-1;0\"),!0}},{key:\"endElement\",value:function(e){var t=e.nodeName.toLowerCase();Fr.hasOwnProperty(t)&&!Pr.hasOwnProperty(t)&&(this.buf.push(\"\"))}},{key:\"chars\",value:function(e){this.buf.push(Gr(e))}},{key:\"checkClobberedElement\",value:function(e,t){if(t&&(e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error(\"Failed to sanitize html because the element is clobbered: \".concat(e.outerHTML));return t}}]),e}(),Br=/[\\uD800-\\uDBFF][\\uDC00-\\uDFFF]/g,qr=/([^\\#-~ |!])/g;function Gr(e){return e.replace(/&/g,\"&\").replace(Br,(function(e){return\"&#\"+(1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320)+65536)+\";\"})).replace(qr,(function(e){return\"&#\"+e.charCodeAt(0)+\";\"})).replace(//g,\">\")}function $r(e,t){var n=null;try{Ar=Ar||new Tr(e);var r=t?String(t):\"\";n=Ar.getInertBodyElement(r);var i=5,a=r;do{if(0===i)throw new Error(\"Failed to sanitize html because the input is unstable\");i--,r=a,a=n.innerHTML,n=Ar.getInertBodyElement(r)}while(r!==a);var o=new Ur,s=o.sanitizeChildren(Jr(n)||n);return Lr()&&o.sanitizedSomething&&console.warn(\"WARNING: sanitizing HTML stripped some content, see http://g.co/ng/security#xss\"),s}finally{if(n)for(var l=Jr(n)||n;l.firstChild;)l.removeChild(l.firstChild)}}function Jr(e){return\"content\"in e&&function(e){return e.nodeType===Node.ELEMENT_NODE&&\"TEMPLATE\"===e.nodeName}(e)?e.content:null}var Kr=function(){var e={NONE:0,HTML:1,STYLE:2,SCRIPT:3,URL:4,RESOURCE_URL:5};return e[e.NONE]=\"NONE\",e[e.HTML]=\"HTML\",e[e.STYLE]=\"STYLE\",e[e.SCRIPT]=\"SCRIPT\",e[e.URL]=\"URL\",e[e.RESOURCE_URL]=\"RESOURCE_URL\",e}(),Zr=new RegExp(\"^([-,.\\\"'%_!# a-zA-Z0-9]+|(?:(?:matrix|translate|scale|rotate|skew|perspective)(?:X|Y|Z|3d)?|(?:rgb|hsl)a?|(?:repeating-)?(?:linear|radial)-gradient|(?:attr|calc|var))\\\\([-0-9.%, #a-zA-Z]+\\\\))$\",\"g\"),Qr=/^url\\(([^)]+)\\)$/;function Xr(e){if(!(e=String(e).trim()))return\"\";var t=e.match(Qr);return t&&Or(t[1])===t[1]||e.match(Zr)&&function(e){for(var t=!0,n=!0,r=0;ra?\"\":i[c+1].toLowerCase();var h=8&r?d:null;if(h&&-1!==li(h,u,0)||2&r&&u!==d){if(hi(r))return!1;o=!0}}}}else{if(!o&&!hi(r)&&!hi(l))return!1;if(o&&hi(l))continue;o=!1,r=l|1&r}}return hi(r)||o}function hi(e){return 0==(1&e)}function fi(e,t,n,r){if(null===t)return-1;var i=0;if(r||!n){for(var a=!1;i-1)for(n++;n2&&void 0!==arguments[2]&&arguments[2],r=0;r0?'=\"'+s+'\"':\"\")+\"]\"}else 8&r?i+=\".\"+o:4&r&&(i+=\" \"+o);else\"\"===i||hi(o)||(t+=_i(a,i),i=\"\"),r=o,a=a||!hi(r);n++}return\"\"!==i&&(t+=_i(a,i)),t}var gi={};function yi(e){var t=e[3];return Yt(t)?t[3]:t}function bi(e){ki(tn(),en(),wn()+e,ln())}function ki(e,t,n,r){if(!r)if(3==(3&t[2])){var i=e.preOrderCheckHooks;null!==i&&xn(t,i,n)}else{var a=e.preOrderHooks;null!==a&&Dn(t,a,0,n)}Cn(n)}var wi={marker:\"element\"},Ci={marker:\"comment\"};function Mi(e,t){return e<<17|t<<2}function Si(e){return e>>17&32767}function Li(e){return 2|e}function Ti(e){return(131068&e)>>2}function xi(e,t){return-131069&e|t<<2}function Di(e){return 1|e}function Oi(e,t){var n=e.contentQueries;if(null!==n)for(var r=0;r>1==-1){for(var r=9;r19&&ki(e,t,0,ln()),n(r,i)}finally{Cn(a)}}function Hi(e,t,n){if(Et(t))for(var r=t.directiveEnd,i=t.directiveStart;i2&&void 0!==arguments[2]?arguments[2]:Wt,r=t.localNames;if(null!==r)for(var i=t.index+1,a=0;a0&&(e[n-1][4]=r[4]);var a=ct(e,9+t);Sa(r[1],r,!1,null);var o=a[5];null!==o&&o.detachView(a[1]),r[3]=null,r[4]=null,r[2]&=-129}return r}}function xa(e,t){if(!(256&t[2])){var n=t[11];Ft(n)&&n.destroyNode&&za(e,t,n,3,null,null),function(e){var t=e[13];if(!t)return Oa(e[1],e);for(;t;){var n=null;if(Ot(t))n=t[13];else{var r=t[9];r&&(n=r)}if(!n){for(;t&&!t[4]&&t!==e;)Ot(t)&&Oa(t[1],t),t=Da(t,e);null===t&&(t=e),Ot(t)&&Oa(t[1],t),n=t&&t[4]}t=n}}(t)}}function Da(e,t){var n;return Ot(e)&&(n=e[6])&&2===n.type?ka(n,e):e[3]===t?null:e[3]}function Oa(e,t){if(!(256&t[2])){t[2]&=-129,t[2]|=256,function(e,t){var n;if(null!=e&&null!=(n=e.destroyHooks))for(var r=0;r=0?r[l]():r[-l].unsubscribe(),i+=2}else n[i].call(r[n[i+1]]);t[7]=null}}(e,t);var n=t[6];n&&3===n.type&&Ft(t[11])&&t[11].destroy();var r=t[17];if(null!==r&&Yt(t[3])){r!==t[3]&&La(r,t);var i=t[5];null!==i&&i.detachView(e)}}}function Ya(e,t,n){for(var r=t.parent;null!=r&&(4===r.type||5===r.type);)r=(t=r).parent;if(null==r){var i=n[6];return 2===i.type?wa(i,n):n[0]}if(t&&5===t.type&&4&t.flags)return Wt(t,n).parentNode;if(2&r.flags){var a=e.data,o=a[a[r.index].directiveStart].encapsulation;if(o!==_t.ShadowDom&&o!==_t.Native)return null}return Wt(r,n)}function Ea(e,t,n,r){Ft(e)?e.insertBefore(t,n,r):t.insertBefore(n,r,!0)}function Ia(e,t,n){Ft(e)?e.appendChild(t,n):t.appendChild(n)}function Aa(e,t,n,r){null!==r?Ea(e,t,n,r):Ia(e,t,n)}function Pa(e,t){return Ft(e)?e.parentNode(t):t.parentNode}function ja(e,t){if(2===e.type){var n=ka(e,t);return null===n?null:Ha(n.indexOf(t,9)-9,n)}return 4===e.type||5===e.type?Wt(e,t):null}function Ra(e,t,n,r){var i=Ya(e,r,t);if(null!=i){var a=t[11],o=ja(r.parent||t[6],t);if(Array.isArray(n))for(var s=0;s-1&&this._viewContainerRef.detach(e),this._viewContainerRef=null}xa(this._lView[1],this._lView)}},{key:\"onDestroy\",value:function(e){var t,n,r;t=this._lView[1],r=e,pa(n=this._lView).push(r),t.firstCreatePass&&_a(t).push(n[7].length-1,null)}},{key:\"markForCheck\",value:function(){ca(this._cdRefInjectingView||this._lView)}},{key:\"detach\",value:function(){this._lView[2]&=-129}},{key:\"reattach\",value:function(){this._lView[2]|=128}},{key:\"detectChanges\",value:function(){da(this._lView[1],this._lView,this.context)}},{key:\"checkNoChanges\",value:function(){!function(e,t,n){un(!0);try{da(e,t,n)}finally{un(!1)}}(this._lView[1],this._lView,this.context)}},{key:\"attachToViewContainerRef\",value:function(e){if(this._appRef)throw new Error(\"This view is already attached directly to the ApplicationRef!\");this._viewContainerRef=e}},{key:\"detachFromAppRef\",value:function(){var e;this._appRef=null,za(this._lView[1],e=this._lView,e[11],2,null,null)}},{key:\"attachToAppRef\",value:function(e){if(this._viewContainerRef)throw new Error(\"This view is already attached to a ViewContainer!\");this._appRef=e}},{key:\"rootNodes\",get:function(){var e=this._lView;return null==e[0]?function e(t,n,r,i){for(var a=arguments.length>4&&void 0!==arguments[4]&&arguments[4];null!==r;){var o=n[r.index];if(null!==o&&i.push(zt(o)),Yt(o))for(var s=9;s0;)this.remove(this.length-1)}},{key:\"get\",value:function(e){return null!==this._lContainer[8]&&this._lContainer[8][e]||null}},{key:\"createEmbeddedView\",value:function(e,t,n){var r=e.createEmbeddedView(t||{});return this.insert(r,n),r}},{key:\"createComponent\",value:function(e,t,n,r,i){var a=n||this.parentInjector;if(!i&&null==e.ngModule&&a){var o=a.get(at,null);o&&(i=o)}var s=e.create(a,r,void 0,i);return this.insert(s.hostView,t),s}},{key:\"insert\",value:function(e,t){var n=e._lView,r=n[1];if(e.destroyed)throw new Error(\"Cannot insert a destroyed View in a ViewContainer!\");if(this.allocateContainerIfNeeded(),Yt(n[3])){var i=this.indexOf(e);if(-1!==i)this.detach(i);else{var a=n[3],o=new $a(a,a[6],a[3]);o.detach(o.indexOf(e))}}var s=this._adjustIndex(t);return function(e,t,n,r){var i=9+r,a=n.length;r>0&&(n[i-1][4]=t),r1&&void 0!==arguments[1]?arguments[1]:0;return null==e?this.length+t:e}},{key:\"allocateContainerIfNeeded\",value:function(){null===this._lContainer[8]&&(this._lContainer[8]=[])}},{key:\"element\",get:function(){return Za(t,this._hostTNode,this._hostView)}},{key:\"injector\",get:function(){return new ur(this._hostTNode,this._hostView)}},{key:\"parentInjector\",get:function(){var e=er(this._hostTNode,this._hostView),t=Vn(e,this._hostView),n=function(e,t,n){if(n.parent&&-1!==n.parent.injectorIndex){for(var r=n.parent.injectorIndex,i=n.parent;null!=i.parent&&r==i.parent.injectorIndex;)i=i.parent;return i}for(var a=zn(e),o=t,s=t[6];a>1;)s=(o=o[15])[6],a--;return s}(e,this._hostView,this._hostTNode);return Fn(e)&&null!=n?new ur(n,t):new ur(null,this._hostView)}},{key:\"length\",get:function(){return this._lContainer.length-9}}]),r}(e));var a=r[n.index];if(Yt(a))(function(e,t){e[2]=-2})(i=a);else{var o;if(4===n.type)o=zt(a);else if(o=r[11].createComment(\"\"),jt(r)){var s=r[11],l=Wt(n,r);Ea(s,Pa(s,l),o,function(e,t){return Ft(e)?e.nextSibling(t):t.nextSibling}(s,l))}else Ra(r[1],r,o,n);r[n.index]=i=aa(a,r,o,n),ua(r,i)}return new $a(i,n,r)}var eo=function(){var e=function e(){_classCallCheck(this,e)};return e.__NG_ELEMENT_ID__=function(){return to()},e}(),to=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return function(e,t,n){if(!n&&It(e)){var r=qt(e.index,t);return new Ja(r,r)}return 3===e.type||0===e.type||4===e.type||5===e.type?new Ja(t[16],t):null}(rn(),en(),e)},no=new Be(\"Set Injector scope.\"),ro={},io={},ao=[],oo=void 0;function so(){return void 0===oo&&(oo=new it),oo}function lo(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r=arguments.length>3?arguments[3]:void 0;return new uo(e,n,t||so(),r)}var uo=function(){function e(t,n,r){var i=this,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;_classCallCheck(this,e),this.parent=r,this.records=new Map,this.injectorDefTypes=new Set,this.onDestroy=new Set,this._destroyed=!1;var o=[];n&<(n,(function(e){return i.processProvider(e,t,n)})),lt([t],(function(e){return i.processInjectorType(e,[],o)})),this.records.set(qe,fo(void 0,this));var s=this.records.get(no);this.scope=null!=s?s.value:null,this.source=a||(\"object\"==typeof t?null:Le(t))}return _createClass(e,[{key:\"destroy\",value:function(){this.assertNotDestroyed(),this._destroyed=!0;try{this.onDestroy.forEach((function(e){return e.ngOnDestroy()}))}finally{this.records.clear(),this.onDestroy.clear(),this.injectorDefTypes.clear()}}},{key:\"get\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Ge,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:fe.Default;this.assertNotDestroyed();var r,i=Ze(this);try{if(!(n&fe.SkipSelf)){var a=this.records.get(e);if(void 0===a){var o=(\"function\"==typeof(r=e)||\"object\"==typeof r&&r instanceof Be)&&ge(e);a=o&&this.injectableDefInScope(o)?fo(co(e),ro):null,this.records.set(e,a)}if(null!=a)return this.hydrate(e,a)}return(n&fe.Self?so():this.parent).get(e,t=n&fe.Optional&&t===Ge?null:t)}catch(s){if(\"NullInjectorError\"===s.name){if((s.ngTempTokenPath=s.ngTempTokenPath||[]).unshift(Le(e)),i)throw s;return function(e,t,n,r){var i=e.ngTempTokenPath;throw t.__source&&i.unshift(t.__source),e.message=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;e=e&&\"\\n\"===e.charAt(0)&&\"\\u0275\"==e.charAt(1)?e.substr(2):e;var i=Le(t);if(Array.isArray(t))i=t.map(Le).join(\" -> \");else if(\"object\"==typeof t){var a=[];for(var o in t)if(t.hasOwnProperty(o)){var s=t[o];a.push(o+\":\"+(\"string\"==typeof s?JSON.stringify(s):Le(s)))}i=\"{\".concat(a.join(\", \"),\"}\")}return\"\".concat(n).concat(r?\"(\"+r+\")\":\"\",\"[\").concat(i,\"]: \").concat(e.replace($e,\"\\n \"))}(\"\\n\"+e.message,i,\"R3InjectorError\",r),e.ngTokenPath=i,e.ngTempTokenPath=null,e}(s,e,0,this.source)}throw s}finally{Ze(i)}}},{key:\"_resolveInjectorDefTypes\",value:function(){var e=this;this.injectorDefTypes.forEach((function(t){return e.get(t)}))}},{key:\"toString\",value:function(){var e=[];return this.records.forEach((function(t,n){return e.push(Le(n))})),\"R3Injector[\".concat(e.join(\", \"),\"]\")}},{key:\"assertNotDestroyed\",value:function(){if(this._destroyed)throw new Error(\"Injector has already been destroyed.\")}},{key:\"processInjectorType\",value:function(e,t,n){var r=this;if(!(e=Oe(e)))return!1;var i=be(e),a=null==i&&e.ngModule||void 0,o=void 0===a?e:a,s=-1!==n.indexOf(o);if(void 0!==a&&(i=be(a)),null==i)return!1;if(null!=i.imports&&!s){var l;n.push(o);try{lt(i.imports,(function(e){r.processInjectorType(e,t,n)&&(void 0===l&&(l=[]),l.push(e))}))}finally{}if(void 0!==l)for(var u=function(e){var t=l[e],n=t.ngModule,i=t.providers;lt(i,(function(e){return r.processProvider(e,n,i||ao)}))},c=0;c0){var n=dt(t,\"?\");throw new Error(\"Can't resolve all parameters for \".concat(Le(e),\": (\").concat(n.join(\", \"),\").\"))}var r=function(e){var t=e&&(e[ke]||e[Me]||e[Ce]&&e[Ce]());if(t){var n=function(e){if(e.hasOwnProperty(\"name\"))return e.name;var t=(\"\"+e).match(/^function\\s*([^\\s(]+)/);return null===t?\"\":t[1]}(e);return console.warn('DEPRECATED: DI is instantiating a token \"'.concat(n,'\" that inherits its @Injectable decorator but does not provide one itself.\\n')+'This will become an error in v10. Please add @Injectable() to the \"'.concat(n,'\" class.')),t}return null}(e);return null!==r?function(){return r.factory(e)}:function(){return new e}}(e);throw new Error(\"unreachable\")}function ho(e,t,n){var r,i=void 0;if(po(e)){var a=Oe(e);return xt(a)||co(a)}if(mo(e))i=function(){return Oe(e.useValue)};else if((r=e)&&r.useFactory)i=function(){return e.useFactory.apply(e,_toConsumableArray(rt(e.deps||[])))};else if(function(e){return!(!e||!e.useExisting)}(e))i=function(){return et(Oe(e.useExisting))};else{var o=Oe(e&&(e.useClass||e.provide));if(o||function(e,t,n){var r=\"\";throw e&&t&&(r=\" - only instances of Provider and Type are allowed, got: [\".concat(t.map((function(e){return e==n?\"?\"+n+\"?\":\"...\"})).join(\", \"),\"]\")),new Error(\"Invalid provider for the NgModule '\".concat(Le(e),\"'\")+r)}(t,n,e),!function(e){return!!e.deps}(e))return xt(o)||co(o);i=function(){return _construct(o,_toConsumableArray(rt(e.deps)))}}return i}function fo(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return{factory:e,value:t,multi:n?[]:void 0}}function mo(e){return null!==e&&\"object\"==typeof e&&Je in e}function po(e){return\"function\"==typeof e}var _o=function(e,t,n){return function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,r=arguments.length>3?arguments[3]:void 0,i=lo(e,t,n,r);return i._resolveInjectorDefTypes(),i}({name:n},t,e,n)},vo=function(){var e=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"create\",value:function(e,t){return Array.isArray(e)?_o(e,t,\"\"):_o(e.providers,e.parent,e.name||\"\")}}]),e}();return e.THROW_IF_NOT_FOUND=Ge,e.NULL=new it,e.\\u0275prov=_e({token:e,providedIn:\"any\",factory:function(){return et(qe)}}),e.__NG_ELEMENT_ID__=-1,e}(),go=new Be(\"AnalyzeForEntryComponents\"),yo=new Map,bo=new Set;function ko(e){return\"string\"==typeof e?e:e.text()}function wo(e,t){for(var n=e.styles,r=e.classes,i=0,a=0;a1&&void 0!==arguments[1]?arguments[1]:fe.Default,n=en();return null==n?et(e,t):nr(rn(),n,Oe(e),t)}function Ao(e){return function(e,t){if(\"class\"===t)return e.classes;if(\"style\"===t)return e.styles;var n=e.attrs;if(n)for(var r=n.length,i=0;i2&&void 0!==arguments[2]&&arguments[2],r=arguments.length>3?arguments[3]:void 0,i=en(),a=tn(),o=rn();return $o(a,i,i[11],o,e,t,n,r),qo}function Go(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=arguments.length>3?arguments[3]:void 0,i=rn(),a=en(),o=va(i,a);return $o(tn(),a,o,i,e,t,n,r),Go}function $o(e,t,n,r,i,a){var o=arguments.length>6&&void 0!==arguments[6]&&arguments[6],s=arguments.length>7?arguments[7]:void 0,l=At(r),u=e.firstCreatePass&&(e.cleanup||(e.cleanup=[])),c=pa(t),d=!0;if(3===r.type){var h=Wt(r,t),f=s?s(h):vt,m=f.target||h,p=c.length,_=s?function(e){return s(zt(e[r.index])).target}:r.index;if(Ft(n)){var v=null;if(!s&&l&&(v=function(e,t,n,r){var i=e.cleanup;if(null!=i)for(var a=0;al?s[l]:null}\"string\"==typeof o&&(a+=2)}return null}(e,t,i,r.index)),null!==v)(v.__ngLastListenerFn__||v).__ngNextListenerFn__=a,v.__ngLastListenerFn__=a,d=!1;else{a=Ko(r,t,a,!1);var g=n.listen(f.name||m,i,a);c.push(a,g),u&&u.push(i,_,p,p+1)}}else a=Ko(r,t,a,!0),m.addEventListener(i,a,o),c.push(a),u&&u.push(i,_,p,o)}var y,b=r.outputs;if(d&&null!==b&&(y=b[i])){var k=y.length;if(k)for(var w=0;w0&&void 0!==arguments[0]?arguments[0]:1;return function(e){return(Qt.lFrame.contextLView=function(e,t){for(;e>0;)t=t[15],e--;return t}(e,Qt.lFrame.contextLView))[8]}(e)}function Qo(e,t){for(var n=null,r=function(e){var t=e.attrs;if(null!=t){var n=t.indexOf(5);if(0==(1&n))return t[n+1]}return null}(e),i=0;i1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2?arguments[2]:void 0,r=en(),i=tn(),a=Ii(i,r[6],e,1,null,n||null);null===a.projection&&(a.projection=t),sn(),es||Va(i,r,a)}function rs(e,t,n){return is(e,\"\",t,\"\",n),rs}function is(e,t,n,r,i){var a=en(),o=Oo(a,t,n,r);return o!==gi&&Bi(tn(),Mn(),a,e,o,a[11],i,!1),is}var as=[];function os(e,t,n,r,i){for(var a=e[n+1],o=null===t,s=r?Si(a):Ti(a),l=!1;0!==s&&(!1===l||o);){var u=e[s+1];ss(e[s],t)&&(l=!0,e[s+1]=r?Di(u):Li(u)),s=r?Si(u):Ti(u)}l&&(e[n+1]=r?Li(a):Di(a))}function ss(e,t){return null===e||null==t||(Array.isArray(e)?e[1]:e)===t||!(!Array.isArray(e)||\"string\"!=typeof t)&&mt(e,t)>=0}var ls={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function us(e){return e.substring(ls.key,ls.keyEnd)}function cs(e,t){var n=ls.textEnd;return n===t?-1:(t=ls.keyEnd=function(e,t,n){for(;t32;)t++;return t}(e,ls.key=t,n),ds(e,t,n))}function ds(e,t,n){for(;t=0;n=cs(t,n))ht(e,us(t),!0)}function _s(e,t,n,r){var i,a,o=en(),s=tn(),l=dn(2);(s.firstUpdatePass&&ys(s,e,l,r),t!==gi&&xo(o,l,t))&&(null==n&&(i=null===(a=Qt.lFrame)?null:a.currentSanitizer)&&(n=i),ws(s,s.data[wn()+19],o,o[11],e,o[l+1]=function(e,t){return null==e||(\"function\"==typeof t?e=t(e):\"string\"==typeof t?e+=t:\"object\"==typeof e&&(e=Le(kr(e)))),e}(t,n),r,l))}function vs(e,t,n,r){var i=tn(),a=dn(2);i.firstUpdatePass&&ys(i,null,a,r);var o=en();if(n!==gi&&xo(o,a,n)){var s=i.data[wn()+19];if(Ss(s,r)&&!gs(i,a)){var l=r?s.classes:s.styles;null!==l&&(n=Te(l,n||\"\")),Ro(i,s,o,n,r)}else!function(e,t,n,r,i,a,o,s){i===gi&&(i=as);for(var l=0,u=0,c=0=e.expandoStartIndex}function ys(e,t,n,r){var i=e.data;if(null===i[n+1]){var a=i[wn()+19],o=gs(e,n);Ss(a,r)&&null===t&&!o&&(t=!1),t=function(e,t,n,r){var i=function(e){var t=Qt.lFrame.currentDirectiveIndex;return-1===t?null:e[t]}(e),a=r?t.residualClasses:t.residualStyles;if(null===i)0===(r?t.classBindings:t.styleBindings)&&(n=ks(n=bs(null,e,t,n,r),t.attrs,r),a=null);else{var o=t.directiveStylingLast;if(-1===o||e[o]!==i)if(n=bs(i,e,t,n,r),null===a){var s=function(e,t,n){var r=n?t.classBindings:t.styleBindings;if(0!==Ti(r))return e[Si(r)]}(e,t,r);void 0!==s&&Array.isArray(s)&&function(e,t,n,r){e[Si(n?t.classBindings:t.styleBindings)]=r}(e,t,r,s=ks(s=bs(null,e,t,s[1],r),t.attrs,r))}else a=function(e,t,n){for(var r=void 0,i=t.directiveEnd,a=1+t.directiveStylingLast;a0)&&(c=!0)}else u=n;if(i)if(0!==l){var h=Si(e[s+1]);e[r+1]=Mi(h,s),0!==h&&(e[h+1]=xi(e[h+1],r)),e[s+1]=131071&e[s+1]|r<<17}else e[r+1]=Mi(s,0),0!==s&&(e[s+1]=xi(e[s+1],r)),s=r;else e[r+1]=Mi(l,0),0===s?s=r:e[l+1]=xi(e[l+1],r),l=r;c&&(e[r+1]=Li(e[r+1])),os(e,u,r,!0),os(e,u,r,!1),function(e,t,n,r,i){var a=i?e.residualClasses:e.residualStyles;null!=a&&\"string\"==typeof t&&mt(a,t)>=0&&(n[r+1]=Di(n[r+1]))}(t,u,e,r,a),o=Mi(s,l),a?t.classBindings=o:t.styleBindings=o}(i,a,t,n,o,r)}}function bs(e,t,n,r,i){var a=null,o=n.directiveEnd,s=n.directiveStylingLast;for(-1===s?s=n.directiveStart:s++;s0;){var l=e[i],u=Array.isArray(l),c=u?l[1]:l,d=null===c,h=n[i+1];h===gi&&(h=d?as:void 0);var f=d?ft(h,r):c===r?h:void 0;if(u&&!Ms(f)&&(f=ft(l,r)),Ms(f)&&(s=f,o))return s;var m=e[i+1];i=o?Si(m):Ti(m)}if(null!==t){var p=a?t.residualClasses:t.residualStyles;null!=p&&(s=ft(p,r))}return s}function Ms(e){return void 0!==e}function Ss(e,t){return 0!=(e.flags&(t?16:32))}function Ls(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\",n=en(),r=tn(),i=e+19,a=r.firstCreatePass?Ii(r,n[6],e,3,null,null):r.data[i],o=n[i]=Ma(t,n[11]);Ra(r,n,o,a),an(a,!1)}function Ts(e){return xs(\"\",e,\"\"),Ts}function xs(e,t,n){var r=en(),i=Oo(r,e,t,n);return i!==gi&&ba(r,wn(),i),xs}function Ds(e,t,n){var r=en();return xo(r,cn(),t)&&Bi(tn(),Mn(),r,e,t,r[11],n,!0),Ds}function Os(e,t,n){var r=en();if(xo(r,cn(),t)){var i=tn(),a=Mn();Bi(i,a,r,e,t,va(a,r),n,!0)}return Os}function Ys(e,t){var n=Gt(e)[1],r=n.data.length-1;Tn(n,{directiveStart:r,directiveEnd:r+1})}function Es(e){for(var t=Object.getPrototypeOf(e.type.prototype).constructor,n=!0,r=[e];t;){var i=void 0;if(Pt(e))i=t.\\u0275cmp||t.\\u0275dir;else{if(t.\\u0275cmp)throw new Error(\"Directives cannot inherit Components\");i=t.\\u0275dir}if(i){if(n){r.push(i);var a=e;a.inputs=Is(e.inputs),a.declaredInputs=Is(e.declaredInputs),a.outputs=Is(e.outputs);var o=i.hostBindings;o&&js(e,o);var s=i.viewQuery,l=i.contentQueries;if(s&&As(e,s),l&&Ps(e,l),pe(e.inputs,i.inputs),pe(e.declaredInputs,i.declaredInputs),pe(e.outputs,i.outputs),Pt(i)&&i.data.animation){var u=e.data;u.animation=(u.animation||[]).concat(i.data.animation)}a.afterContentChecked=a.afterContentChecked||i.afterContentChecked,a.afterContentInit=e.afterContentInit||i.afterContentInit,a.afterViewChecked=e.afterViewChecked||i.afterViewChecked,a.afterViewInit=e.afterViewInit||i.afterViewInit,a.doCheck=e.doCheck||i.doCheck,a.onDestroy=e.onDestroy||i.onDestroy,a.onInit=e.onInit||i.onInit}var c=i.features;if(c)for(var d=0;d=0;r--){var i=e[r];i.hostVars=t+=i.hostVars,i.hostAttrs=Rn(i.hostAttrs,n=Rn(n,i.hostAttrs))}}(r)}function Is(e){return e===vt?{}:e===gt?[]:e}function As(e,t){var n=e.viewQuery;e.viewQuery=n?function(e,r){t(e,r),n(e,r)}:t}function Ps(e,t){var n=e.contentQueries;e.contentQueries=n?function(e,r,i){t(e,r,i),n(e,r,i)}:t}function js(e,t){var n=e.hostBindings;e.hostBindings=n?function(e,r){t(e,r),n(e,r)}:t}var Rs=function(){function e(t,n,r){_classCallCheck(this,e),this.previousValue=t,this.currentValue=n,this.firstChange=r}return _createClass(e,[{key:\"isFirstChange\",value:function(){return this.firstChange}}]),e}();function Hs(e){e.type.prototype.ngOnChanges&&(e.setInput=Fs,e.onChanges=function(){var e=Ns(this),t=e&&e.current;if(t){var n=e.previous;if(n===vt)e.previous=t;else for(var r in t)n[r]=t[r];e.current=null,this.ngOnChanges(t)}})}function Fs(e,t,n,r){var i=Ns(e)||function(e,t){return e.__ngSimpleChanges__=t}(e,{previous:vt,current:null}),a=i.current||(i.current={}),o=i.previous,s=this.declaredInputs[n],l=o[s];a[s]=new Rs(l&&l.currentValue,t,o===vt),e[r]=t}function Ns(e){return e.__ngSimpleChanges__||null}function zs(e,t,n,r,i){if(e=Oe(e),Array.isArray(e))for(var a=0;a>16;if(po(e)||!e.multi){var m=new In(u,i,Io),p=Us(l,t,i?d:d+f,h);-1===p?(tr(Zn(c,s),o,l),Vs(o,e,t.length),t.push(l),c.directiveStart++,c.directiveEnd++,i&&(c.providerIndexes+=65536),n.push(m),s.push(m)):(n[p]=m,s[p]=m)}else{var _=Us(l,t,d+f,h),v=Us(l,t,d,d+f),g=_>=0&&n[_],y=v>=0&&n[v];if(i&&!y||!i&&!g){tr(Zn(c,s),o,l);var b=function(e,t,n,r,i){var a=new In(e,n,Io);return a.multi=[],a.index=t,a.componentProviders=0,Ws(a,i,r&&!n),a}(i?qs:Bs,n.length,i,r,u);!i&&y&&(n[v].providerFactory=b),Vs(o,e,t.length),t.push(l),c.directiveStart++,c.directiveEnd++,i&&(c.providerIndexes+=65536),n.push(b),s.push(b)}else Vs(o,e,_>-1?_:v),Ws(n[i?v:_],u,!i&&r);!i&&r&&y&&n[v].componentProviders++}}}function Vs(e,t,n){if(po(t)||t.useClass){var r=(t.useClass||t).prototype.ngOnDestroy;r&&(e.destroyHooks||(e.destroyHooks=[])).push(n,r)}}function Ws(e,t,n){e.multi.push(t),n&&e.componentProviders++}function Us(e,t,n,r){for(var i=n;i1&&void 0!==arguments[1]?arguments[1]:[];return function(n){n.providersResolver=function(n,r){return function(e,t,n){var r=tn();if(r.firstCreatePass){var i=Pt(e);zs(n,r.data,r.blueprint,i,!0),zs(t,r.data,r.blueprint,i,!1)}}(n,r?r(e):e,t)}}}Hs.ngInherit=!0;var Js=function e(){_classCallCheck(this,e)},Ks=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"resolveComponentFactory\",value:function(e){throw function(e){var t=Error(\"No component factory found for \".concat(Le(e),\". Did you add it to @NgModule.entryComponents?\"));return t.ngComponent=e,t}(e)}}]),e}(),Zs=function(){var e=function e(){_classCallCheck(this,e)};return e.NULL=new Ks,e}(),Qs=function(){var e=function e(t){_classCallCheck(this,e),this.nativeElement=t};return e.__NG_ELEMENT_ID__=function(){return Xs(e)},e}(),Xs=function(e){return Za(e,rn(),en())},el=function e(){_classCallCheck(this,e)},tl=function(){var e={Important:1,DashCase:2};return e[e.Important]=\"Important\",e[e.DashCase]=\"DashCase\",e}(),nl=function(){var e=function e(){_classCallCheck(this,e)};return e.__NG_ELEMENT_ID__=function(){return rl()},e}(),rl=function(){var e=en(),t=qt(rn().index,e);return function(e){var t=e[11];if(Ft(t))return t;throw new Error(\"Cannot inject Renderer2 when the application uses Renderer3!\")}(Ot(t)?t:e)},il=function(){var e=function e(){_classCallCheck(this,e)};return e.\\u0275prov=_e({token:e,providedIn:\"root\",factory:function(){return null}}),e}(),al=function e(t){_classCallCheck(this,e),this.full=t,this.major=t.split(\".\")[0],this.minor=t.split(\".\")[1],this.patch=t.split(\".\").slice(2).join(\".\")},ol=new al(\"9.0.7\"),sl=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"supports\",value:function(e){return Lo(e)}},{key:\"create\",value:function(e){return new ul(e)}}]),e}(),ll=function(e,t){return t},ul=function(){function e(t){_classCallCheck(this,e),this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=t||ll}return _createClass(e,[{key:\"forEachItem\",value:function(e){var t;for(t=this._itHead;null!==t;t=t._next)e(t)}},{key:\"forEachOperation\",value:function(e){for(var t=this._itHead,n=this._removalsHead,r=0,i=null;t||n;){var a=!n||t&&t.currentIndex0&&Ba(u,d,b.join(\" \"))}a=Ut(_[1],0),t&&(a.projection=t.map((function(e){return Array.from(e)}))),i=function(e,t,n,r,i){var a=n[1],o=function(e,t,n){var r=rn();e.firstCreatePass&&(n.providersResolver&&n.providersResolver(n),Ki(e,r,1),ea(e,t,n));var i=or(t,e,t.length-1,r);ai(i,t);var a=Wt(r,t);return a&&ai(a,t),i}(a,n,t);r.components.push(o),e[8]=o,i&&i.forEach((function(e){return e(o,t)})),t.contentQueries&&t.contentQueries(1,o,n.length-1);var s=rn();if(a.firstCreatePass&&(null!==t.hostBindings||null!==t.hostAttrs)){Cn(s.index-19);var l=n[1];Gi(l,t),$i(l,n,t.hostVars),Ji(t,o)}return o}(v,this.componentDef,_,m,[Ys]),Ai(p,_,null)}finally{kn()}var k=new Yl(this.componentType,i,Za(Qs,a,_),_,a);return n&&!f||(k.hostView._tViewNode.child=a),k}},{key:\"inputs\",get:function(){return xl(this.componentDef.inputs)}},{key:\"outputs\",get:function(){return xl(this.componentDef.outputs)}}]),n}(Js),Yl=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s,l,u,c;return _classCallCheck(this,n),(s=t.call(this)).location=i,s._rootLView=a,s._tNode=o,s.destroyCbs=[],s.instance=r,s.hostView=s.changeDetectorRef=new Ka(a),s.hostView._tViewNode=(l=a[1],u=a,null==(c=l.node)&&(l.node=c=Wi(0,null,2,-1,null,null)),u[6]=c),s.componentType=e,s}return _createClass(n,[{key:\"destroy\",value:function(){this.destroyCbs&&(this.destroyCbs.forEach((function(e){return e()})),this.destroyCbs=null,!this.hostView.destroyed&&this.hostView.destroy())}},{key:\"onDestroy\",value:function(e){this.destroyCbs&&this.destroyCbs.push(e)}},{key:\"injector\",get:function(){return new ur(this._tNode,this._rootLView)}}]),n}(function(){return function e(){_classCallCheck(this,e)}}()),El=void 0,Il=[\"en\",[[\"a\",\"p\"],[\"AM\",\"PM\"],El],[[\"AM\",\"PM\"],El,El],[[\"S\",\"M\",\"T\",\"W\",\"T\",\"F\",\"S\"],[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"]],El,[[\"J\",\"F\",\"M\",\"A\",\"M\",\"J\",\"J\",\"A\",\"S\",\"O\",\"N\",\"D\"],[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"]],El,[[\"B\",\"A\"],[\"BC\",\"AD\"],[\"Before Christ\",\"Anno Domini\"]],0,[6,0],[\"M/d/yy\",\"MMM d, y\",\"MMMM d, y\",\"EEEE, MMMM d, y\"],[\"h:mm a\",\"h:mm:ss a\",\"h:mm:ss a z\",\"h:mm:ss a zzzz\"],[\"{1}, {0}\",El,\"{1} 'at' {0}\",El],[\".\",\",\",\";\",\"%\",\"+\",\"-\",\"E\",\"\\xd7\",\"\\u2030\",\"\\u221e\",\"NaN\",\":\"],[\"#,##0.###\",\"#,##0%\",\"\\xa4#,##0.00\",\"#E0\"],\"USD\",\"$\",\"US Dollar\",{},function(e){var t=Math.floor(Math.abs(e)),n=e.toString().replace(/^[^.]*\\.?/,\"\").length;return 1===t&&0===n?1:5}],Al={};function Pl(e){return function(e){var t=function(e){return e.toLowerCase().replace(/_/g,\"-\")}(e),n=jl(t);if(n)return n;var r=t.split(\"-\")[0];if(n=jl(r))return n;if(\"en\"===r)return Il;throw new Error('Missing locale data for the locale \"'.concat(e,'\".'))}(e)[Rl.PluralCase]}function jl(e){return e in Al||(Al[e]=Re.ng&&Re.ng.common&&Re.ng.common.locales&&Re.ng.common.locales[e]),Al[e]}var Rl=function(){var e={LocaleId:0,DayPeriodsFormat:1,DayPeriodsStandalone:2,DaysFormat:3,DaysStandalone:4,MonthsFormat:5,MonthsStandalone:6,Eras:7,FirstDayOfWeek:8,WeekendRange:9,DateFormat:10,TimeFormat:11,DateTimeFormat:12,NumberSymbols:13,NumberFormats:14,CurrencyCode:15,CurrencySymbol:16,CurrencyName:17,Currencies:18,PluralCase:19,ExtraData:20};return e[e.LocaleId]=\"LocaleId\",e[e.DayPeriodsFormat]=\"DayPeriodsFormat\",e[e.DayPeriodsStandalone]=\"DayPeriodsStandalone\",e[e.DaysFormat]=\"DaysFormat\",e[e.DaysStandalone]=\"DaysStandalone\",e[e.MonthsFormat]=\"MonthsFormat\",e[e.MonthsStandalone]=\"MonthsStandalone\",e[e.Eras]=\"Eras\",e[e.FirstDayOfWeek]=\"FirstDayOfWeek\",e[e.WeekendRange]=\"WeekendRange\",e[e.DateFormat]=\"DateFormat\",e[e.TimeFormat]=\"TimeFormat\",e[e.DateTimeFormat]=\"DateTimeFormat\",e[e.NumberSymbols]=\"NumberSymbols\",e[e.NumberFormats]=\"NumberFormats\",e[e.CurrencyCode]=\"CurrencyCode\",e[e.CurrencySymbol]=\"CurrencySymbol\",e[e.CurrencyName]=\"CurrencyName\",e[e.Currencies]=\"Currencies\",e[e.PluralCase]=\"PluralCase\",e[e.ExtraData]=\"ExtraData\",e}(),Hl=/^\\s*(\\ufffd\\d+:?\\d*\\ufffd)\\s*,\\s*(select|plural)\\s*,/,Fl=/\\ufffd\\/?\\*(\\d+:\\d+)\\ufffd/gi,Nl=/\\ufffd(\\/?[#*!]\\d+):?\\d*\\ufffd/gi,zl=/\\ufffd(\\d+):?\\d*\\ufffd/gi,Vl=/({\\s*\\ufffd\\d+:?\\d*\\ufffd\\s*,\\s*\\S{6}\\s*,[\\s\\S]*})/gi;function Wl(e){if(!e)return[];var t,n=0,r=[],i=[],a=/[{}]/g;for(a.lastIndex=0;t=a.exec(e);){var o=t.index;if(\"}\"==t[0]){if(r.pop(),0==r.length){var s=e.substring(n,o);Hl.test(s)?i.push(Ul(s)):i.push(s),n=o+1}}else{if(0==r.length){var l=e.substring(n,o);i.push(l),n=o+1}r.push(\"{\")}}var u=e.substring(n);return i.push(u),i}function Ul(e){for(var t=[],n=[],r=1,i=0,a=Wl(e=e.replace(Hl,(function(e,t,n){return r=\"select\"===n?0:1,i=parseInt(t.substr(1),10),\"\"}))),o=0;on.length&&n.push(l)}return{type:r,mainBinding:i,cases:t,values:n}}function Bl(e){for(var t,n,r=\"\",i=0,a=!1;null!==(t=Fl.exec(e));)a?t[0]===\"\\ufffd/*\".concat(n,\"\\ufffd\")&&(i=t.index,a=!1):(r+=e.substring(i,t.index+t[0].length),n=t[1],a=!0);return r+=e.substr(i)}function ql(e,t,n){for(var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,i=[null,null],a=e.split(zl),o=0,s=0;s1&&void 0!==arguments[1]?arguments[1]:0;n|=Kl(e.mainBinding);for(var r=0;r>>17;o=Xl(n,a,h===e?r[6]:Ut(n,h),o,r);break;case 0:var f=u>=0,m=(f?u:~u)>>>3;s.push(m),o=a,(a=Ut(n,m))&&an(a,f);break;case 5:o=a=Ut(n,u>>>3),an(a,!1);break;case 4:var p=t[++l],_=t[++l];na(Ut(n,u>>>3),r,p,_,null,null);break;default:throw new Error('Unable to determine the type of mutate operation for \"'.concat(u,'\"'))}else switch(u){case Ci:var v=t[++l],g=t[++l],y=i.createComment(v);o=a,a=eu(n,r,g,5,y,null),s.push(g),ai(y,r),a.activeCaseIndex=null,sn();break;case wi:var b=t[++l],k=t[++l];o=a,a=eu(n,r,k,3,i.createElement(b),b),s.push(k);break;default:throw new Error('Unable to determine the type of mutate operation for \"'.concat(u,'\"'))}}return sn(),s}function nu(e,t,n,r){var i=Ut(e,n),a=Vt(n,t);a&&Fa(t[11],a);var o=Bt(t,n);if(Yt(o)){var s=o;0!==i.type&&Fa(t[11],s[7])}r&&(i.flags|=64)}function ru(e,t,n){var r;(function(e,t,n){var r=tn();$l[++Jl]=e,ts(!0),r.firstCreatePass&&null===r.data[e+19]&&function(e,t,n,r,i){var a=t.blueprint.length-19;Zl=0;var o=rn(),s=on()?o:o&&o.parent,l=s&&s!==e[6]?s.index-19:n,u=0;Ql[u]=l;var c=[];if(n>0&&o!==s){var d=o.index-19;on()||(d=~d),c.push(d<<3|0)}for(var h,f=[],m=[],p=function(e,t){if(\"number\"!=typeof t)return Bl(e);var n=e.indexOf(\":\".concat(t,\"\\ufffd\"))+2+t.toString().length,r=e.search(new RegExp(\"\\ufffd\\\\/\\\\*\\\\d+:\".concat(t,\"\\ufffd\")));return Bl(e.substring(n,r))}(r,i),_=(h=p,h.replace(fu,\" \")).split(Nl),v=0;v<_.length;v++){var g=_[v];if(1&v)if(\"/\"===g.charAt(0)){if(\"#\"===g.charAt(1)){var y=parseInt(g.substr(2),10);l=Ql[--u],c.push(y<<3|5)}}else{var b=parseInt(g.substr(1),10),k=\"#\"===g.charAt(0);c.push((k?b:~b)<<3|0,l<<17|1),k&&(Ql[++u]=l=b)}else for(var w=Wl(g),C=0;C0&&function(e,t,n){if(n>0&&e.firstCreatePass){for(var r=0;r>1),o++}}(tn(),r),ts(!1)}function iu(e,t){!function(e,t,n,r){for(var i=rn().index-19,a=[],o=0;o6&&void 0!==arguments[6]&&arguments[6],l=!1,u=0;u>>2,_=void 0,v=void 0;switch(3&m){case 1:var g=t[++f],y=t[++f];Bi(a,Ut(a,p),o,g,h,o[11],y,!1);break;case 0:ba(o,p,h);break;case 2:if(_=n[t[++f]],null!==(v=Ut(a,p)).activeCaseIndex)for(var b=_.remove[v.activeCaseIndex],k=0;k>>3,!1);break;case 6:var C=Ut(a,b[k+1]>>>3).activeCaseIndex;null!==C&&st(n[w>>>3].remove[C],b)}}var M=uu(_,h);v.activeCaseIndex=-1!==M?M:null,M>-1&&(tu(-1,_.create[M],a,o),l=!0);break;case 3:_=n[t[++f]],null!==(v=Ut(a,p)).activeCaseIndex&&e(_.update[v.activeCaseIndex],n,r,i,a,o,l)}}}u+=d}}(t,i,a,au,n,o),au=0,ou=0}}function uu(e,t){var n=e.cases.indexOf(t);if(-1===n)switch(e.type){case 1:var r=function(e,t){switch(Pl(t)(e)){case 0:return\"zero\";case 1:return\"one\";case 2:return\"two\";case 3:return\"few\";case 4:return\"many\";default:return\"other\"}}(t,mu);-1===(n=e.cases.indexOf(r))&&\"other\"!==r&&(n=e.cases.indexOf(\"other\"));break;case 0:n=e.cases.indexOf(\"other\")}return n}function cu(e,t,n,r){for(var i=[],a=[],o=[],s=[],l=[],u=0;u null != \".concat(t,\" <=Actual]\"))}(0,t),\"string\"==typeof e&&(mu=e.toLowerCase().replace(/_/g,\"-\"))}var _u=new Map,vu=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;_classCallCheck(this,n),(i=t.call(this))._parent=r,i._bootstrapComponents=[],i.injector=_assertThisInitialized(i),i.destroyCbs=[],i.componentFactoryResolver=new Tl(_assertThisInitialized(i));var a=Dt(e),o=e[Ve]||null;return o&&pu(o),i._bootstrapComponents=Gn(a.bootstrap),i._r3Injector=lo(e,r,[{provide:at,useValue:_assertThisInitialized(i)},{provide:Zs,useValue:i.componentFactoryResolver}],Le(e)),i._r3Injector._resolveInjectorDefTypes(),i.instance=i.get(e),i}return _createClass(n,[{key:\"get\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:vo.THROW_IF_NOT_FOUND,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:fe.Default;return e===vo||e===at||e===qe?this:this._r3Injector.get(e,t,n)}},{key:\"destroy\",value:function(){var e=this._r3Injector;!e.destroyed&&e.destroy(),this.destroyCbs.forEach((function(e){return e()})),this.destroyCbs=null}},{key:\"onDestroy\",value:function(e){this.destroyCbs.push(e)}}]),n}(at),gu=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this)).moduleType=e,null!==Dt(e)&&function e(t){if(null!==t.\\u0275mod.id){var n=t.\\u0275mod.id;(function(e,t,n){if(t&&t!==n)throw new Error(\"Duplicate module registered for \".concat(e,\" - \").concat(Le(t),\" vs \").concat(Le(t.name)))})(n,_u.get(n),t),_u.set(n,t)}var r=t.\\u0275mod.imports;r instanceof Function&&(r=r()),r&&r.forEach((function(t){return e(t)}))}(e),r}return _createClass(n,[{key:\"create\",value:function(e){return new vu(this.moduleType,e)}}]),n}(ot);function yu(e,t,n){var r,i,a=(r=Qt.lFrame,-1===(i=r.bindingRootIndex)&&(i=r.bindingRootIndex=r.tView.bindingStartIndex),i+e),o=en();return o[a]===gi?function(e,t,n){return e[t]=n}(o,a,n?t.call(n):t()):function(e,t){return e[t]}(o,a)}var bu=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return _classCallCheck(this,n),(e=t.call(this)).__isAsync=r,e}return _createClass(n,[{key:\"emit\",value:function(e){_get(_getPrototypeOf(n.prototype),\"next\",this).call(this,e)}},{key:\"subscribe\",value:function(e,t,r){var i,a=function(e){return null},o=function(){return null};e&&\"object\"==typeof e?(i=this.__isAsync?function(t){setTimeout((function(){return e.next(t)}))}:function(t){e.next(t)},e.error&&(a=this.__isAsync?function(t){setTimeout((function(){return e.error(t)}))}:function(t){e.error(t)}),e.complete&&(o=this.__isAsync?function(){setTimeout((function(){return e.complete()}))}:function(){e.complete()})):(i=this.__isAsync?function(t){setTimeout((function(){return e(t)}))}:function(t){e(t)},t&&(a=this.__isAsync?function(e){setTimeout((function(){return t(e)}))}:function(e){t(e)}),r&&(o=this.__isAsync?function(){setTimeout((function(){return r()}))}:function(){r()}));var s=_get(_getPrototypeOf(n.prototype),\"subscribe\",this).call(this,i,a,o);return e instanceof h&&e.add(s),s}}]),n}(x);function ku(){return this._results[Mo()]()}var wu=function(){function e(){_classCallCheck(this,e),this.dirty=!0,this._results=[],this.changes=new bu,this.length=0;var t=Mo(),n=e.prototype;n[t]||(n[t]=ku)}return _createClass(e,[{key:\"map\",value:function(e){return this._results.map(e)}},{key:\"filter\",value:function(e){return this._results.filter(e)}},{key:\"find\",value:function(e){return this._results.find(e)}},{key:\"reduce\",value:function(e,t){return this._results.reduce(e,t)}},{key:\"forEach\",value:function(e){this._results.forEach(e)}},{key:\"some\",value:function(e){return this._results.some(e)}},{key:\"toArray\",value:function(){return this._results.slice()}},{key:\"toString\",value:function(){return this._results.toString()}},{key:\"reset\",value:function(e){this._results=function e(t,n){void 0===n&&(n=t);for(var r=0;r0&&void 0!==arguments[0]?arguments[0]:[];_classCallCheck(this,e),this.queries=t}return _createClass(e,[{key:\"createEmbeddedView\",value:function(t){var n=t.queries;if(null!==n){for(var r=null!==t.contentQueries?t.contentQueries[0]:n.length,i=[],a=0;a3&&void 0!==arguments[3]?arguments[3]:null;_classCallCheck(this,e),this.predicate=t,this.descendants=n,this.isStatic=r,this.read=i},Lu=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];_classCallCheck(this,e),this.queries=t}return _createClass(e,[{key:\"elementStart\",value:function(e,t){for(var n=0;n1&&void 0!==arguments[1]?arguments[1]:-1;_classCallCheck(this,e),this.metadata=t,this.matches=null,this.indexInDeclarationView=-1,this.crossesNgTemplate=!1,this._appliesToNextNode=!0,this._declarationNodeIndex=n}return _createClass(e,[{key:\"elementStart\",value:function(e,t){this.isApplyingToNode(t)&&this.matchTNode(e,t)}},{key:\"elementEnd\",value:function(e){this._declarationNodeIndex===e.index&&(this._appliesToNextNode=!1)}},{key:\"template\",value:function(e,t){this.elementStart(e,t)}},{key:\"embeddedTView\",value:function(t,n){return this.isApplyingToNode(t)?(this.crossesNgTemplate=!0,this.addMatch(-t.index,n),new e(this.metadata)):null}},{key:\"isApplyingToNode\",value:function(e){if(this._appliesToNextNode&&!1===this.metadata.descendants){for(var t=this._declarationNodeIndex,n=e.parent;null!==n&&4===n.type&&n.index!==t;)n=n.parent;return t===(null!==n?n.index:-1)}return this._appliesToNextNode}},{key:\"matchTNode\",value:function(e,t){if(Array.isArray(this.metadata.predicate))for(var n=this.metadata.predicate,r=0;r0)i.push(s[l/2]);else{for(var c=o[l+1],d=n[-u],h=9;h0&&(i=setTimeout((function(){r._callbacks=r._callbacks.filter((function(e){return e.timeoutId!==i})),e(r._didWork,r.getPendingTasks())}),t)),this._callbacks.push({doneCb:e,timeoutId:i,updateCb:n})}},{key:\"whenStable\",value:function(e,t,n){if(n&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is \"zone.js/dist/task-tracking.js\" loaded?');this.addCallback(e,t,n),this._runCallbacksIfReady()}},{key:\"getPendingRequestCount\",value:function(){return this._pendingCount}},{key:\"findProviders\",value:function(e,t,n){return[]}}]),e}();return e.\\u0275fac=function(t){return new(t||e)(et(cc))},e.\\u0275prov=_e({token:e,factory:e.\\u0275fac}),e}(),bc=function(){var e=function(){function e(){_classCallCheck(this,e),this._applications=new Map,kc.addToWindow(this)}return _createClass(e,[{key:\"registerApplication\",value:function(e,t){this._applications.set(e,t)}},{key:\"unregisterApplication\",value:function(e){this._applications.delete(e)}},{key:\"unregisterAllApplications\",value:function(){this._applications.clear()}},{key:\"getTestability\",value:function(e){return this._applications.get(e)||null}},{key:\"getAllTestabilities\",value:function(){return Array.from(this._applications.values())}},{key:\"getAllRootElements\",value:function(){return Array.from(this._applications.keys())}},{key:\"findTestabilityInTree\",value:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return kc.findTestabilityInTree(this,e,t)}}]),e}();return e.\\u0275fac=function(t){return new(t||e)},e.\\u0275prov=_e({token:e,factory:e.\\u0275fac}),e}(),kc=new(function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"addToWindow\",value:function(e){}},{key:\"findTestabilityInTree\",value:function(e,t,n){return null}}]),e}()),wc=function(e,t,n){var r=new gu(n);if(0===yo.size)return Promise.resolve(r);var i,a,o=(i=e.get(sc,[]).concat(t).map((function(e){return e.providers})),a=[],i.forEach((function(e){return e&&a.push.apply(a,_toConsumableArray(e))})),a);if(0===o.length)return Promise.resolve(r);var s=function(){var e=Re.ng;if(!e||!e.\\u0275compilerFacade)throw new Error(\"Angular JIT compilation failed: '@angular/compiler' not loaded!\\n - JIT compilation is discouraged for production use-cases! Consider AOT mode instead.\\n - Did you bootstrap using '@angular/platform-browser-dynamic' or '@angular/platform-server'?\\n - Alternatively provide the compiler with 'import \\\"@angular/compiler\\\";' before bootstrapping.\");return e.\\u0275compilerFacade}(),l=vo.create({providers:o}).get(s.ResourceLoader);return function(e){var t=[],n=new Map;function r(e){var t=n.get(e);if(!t){var r=function(e){return Promise.resolve(l.get(e))}(e);n.set(e,t=r.then(ko))}return t}return yo.forEach((function(e,n){var i=[];e.templateUrl&&i.push(r(e.templateUrl).then((function(t){e.template=t})));var a=e.styleUrls,o=e.styles||(e.styles=[]),s=e.styles.length;a&&a.forEach((function(t,n){o.push(\"\"),i.push(r(t).then((function(r){o[s+n]=r,a.splice(a.indexOf(t),1),0==a.length&&(e.styleUrls=void 0)})))}));var l=Promise.all(i).then((function(){return function(e){bo.delete(e)}(n)}));t.push(l)})),yo=new Map,Promise.all(t).then((function(){}))}().then((function(){return r}))},Cc=new Be(\"AllowMultipleToken\"),Mc=function e(t,n){_classCallCheck(this,e),this.name=t,this.token=n};function Sc(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],r=\"Platform: \".concat(t),i=new Be(r);return function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],a=Lc();if(!a||a.injector.get(Cc,!1))if(e)e(n.concat(t).concat({provide:i,useValue:!0}));else{var o=n.concat(t).concat({provide:i,useValue:!0},{provide:no,useValue:\"platform\"});!function(e){if(vc&&!vc.destroyed&&!vc.injector.get(Cc,!1))throw new Error(\"There can be only one platform. Destroy the previous one to create a new one.\");vc=e.get(Tc);var t=e.get(Gu,null);t&&t.forEach((function(e){return e()}))}(vo.create({providers:o,name:r}))}return function(e){var t=Lc();if(!t)throw new Error(\"No platform exists!\");if(!t.injector.get(e,null))throw new Error(\"A platform with a different configuration has been created. Please destroy it first.\");return t}(i)}}function Lc(){return vc&&!vc.destroyed?vc:null}var Tc=function(){var e=function(){function e(t){_classCallCheck(this,e),this._injector=t,this._modules=[],this._destroyListeners=[],this._destroyed=!1}return _createClass(e,[{key:\"bootstrapModuleFactory\",value:function(e,t){var n,r,i=this,a=(n=t?t.ngZone:void 0,r=t&&t.ngZoneEventCoalescing||!1,\"noop\"===n?new gc:(\"zone.js\"===n?void 0:n)||new cc({enableLongStackTrace:Lr(),shouldCoalesceEventChangeDetection:r})),o=[{provide:cc,useValue:a}];return a.run((function(){var t=vo.create({providers:o,parent:i.injector,name:e.moduleType.name}),n=e.create(t),r=n.injector.get(mr,null);if(!r)throw new Error(\"No ErrorHandler. Is platform module (BrowserModule) included?\");return n.onDestroy((function(){return Yc(i._modules,n)})),a.runOutsideAngular((function(){return a.onError.subscribe({next:function(e){r.handleError(e)}})})),function(e,t,r){try{var a=((o=n.injector.get(Wu)).runInitializers(),o.donePromise.then((function(){return pu(n.injector.get(Zu,\"en-US\")||\"en-US\"),i._moduleDoBootstrap(n),n})));return Uo(a)?a.catch((function(n){throw t.runOutsideAngular((function(){return e.handleError(n)})),n})):a}catch(s){throw t.runOutsideAngular((function(){return e.handleError(s)})),s}var o}(r,a)}))}},{key:\"bootstrapModule\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],r=xc({},n);return wc(this.injector,r,e).then((function(e){return t.bootstrapModuleFactory(e,r)}))}},{key:\"_moduleDoBootstrap\",value:function(e){var t=e.injector.get(Oc);if(e._bootstrapComponents.length>0)e._bootstrapComponents.forEach((function(e){return t.bootstrap(e)}));else{if(!e.instance.ngDoBootstrap)throw new Error(\"The module \".concat(Le(e.instance.constructor),' was bootstrapped, but it does not declare \"@NgModule.bootstrap\" components nor a \"ngDoBootstrap\" method. ')+\"Please define one of these.\");e.instance.ngDoBootstrap(t)}this._modules.push(e)}},{key:\"onDestroy\",value:function(e){this._destroyListeners.push(e)}},{key:\"destroy\",value:function(){if(this._destroyed)throw new Error(\"The platform has already been destroyed!\");this._modules.slice().forEach((function(e){return e.destroy()})),this._destroyListeners.forEach((function(e){return e()})),this._destroyed=!0}},{key:\"injector\",get:function(){return this._injector}},{key:\"destroyed\",get:function(){return this._destroyed}}]),e}();return e.\\u0275fac=function(t){return new(t||e)(et(vo))},e.\\u0275prov=_e({token:e,factory:e.\\u0275fac}),e}();function xc(e,t){return Array.isArray(t)?t.reduce(xc,e):Object.assign(Object.assign({},e),t)}var Dc,Oc=((Dc=function(){function e(t,n,r,i,a,o){var s=this;_classCallCheck(this,e),this._zone=t,this._console=n,this._injector=r,this._exceptionHandler=i,this._componentFactoryResolver=a,this._initStatus=o,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._enforceNoNewChanges=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._enforceNoNewChanges=Lr(),this._zone.onMicrotaskEmpty.subscribe({next:function(){s._zone.run((function(){s.tick()}))}});var l=new w((function(e){s._stable=s._zone.isStable&&!s._zone.hasPendingMacrotasks&&!s._zone.hasPendingMicrotasks,s._zone.runOutsideAngular((function(){e.next(s._stable),e.complete()}))})),u=new w((function(e){var t;s._zone.runOutsideAngular((function(){t=s._zone.onStable.subscribe((function(){cc.assertNotInAngularZone(),uc((function(){s._stable||s._zone.hasPendingMacrotasks||s._zone.hasPendingMicrotasks||(s._stable=!0,e.next(!0))}))}))}));var n=s._zone.onUnstable.subscribe((function(){cc.assertInAngularZone(),s._stable&&(s._stable=!1,s._zone.runOutsideAngular((function(){e.next(!1)})))}));return function(){t.unsubscribe(),n.unsubscribe()}}));this.isStable=K(l,u.pipe(oe()))}return _createClass(e,[{key:\"bootstrap\",value:function(e,t){var n,r=this;if(!this._initStatus.done)throw new Error(\"Cannot bootstrap as there are still asynchronous initializers running. Bootstrap components in the `ngDoBootstrap` method of the root module.\");n=e instanceof Js?e:this._componentFactoryResolver.resolveComponentFactory(e),this.componentTypes.push(n.componentType);var i=n.isBoundToModule?void 0:this._injector.get(at),a=n.create(vo.NULL,[],t||n.selector,i);a.onDestroy((function(){r._unloadComponent(a)}));var o=a.injector.get(yc,null);return o&&a.injector.get(bc).registerApplication(a.location.nativeElement,o),this._loadComponent(a),Lr()&&this._console.log(\"Angular is running in the development mode. Call enableProdMode() to enable the production mode.\"),a}},{key:\"tick\",value:function(){var e=this;if(this._runningTick)throw new Error(\"ApplicationRef.tick is called recursively\");try{this._runningTick=!0;var t,n=_createForOfIteratorHelper(this._views);try{for(n.s();!(t=n.n()).done;)t.value.detectChanges()}catch(a){n.e(a)}finally{n.f()}if(this._enforceNoNewChanges){var r,i=_createForOfIteratorHelper(this._views);try{for(i.s();!(r=i.n()).done;)r.value.checkNoChanges()}catch(a){i.e(a)}finally{i.f()}}}catch(o){this._zone.runOutsideAngular((function(){return e._exceptionHandler.handleError(o)}))}finally{this._runningTick=!1}}},{key:\"attachView\",value:function(e){var t=e;this._views.push(t),t.attachToAppRef(this)}},{key:\"detachView\",value:function(e){var t=e;Yc(this._views,t),t.detachFromAppRef()}},{key:\"_loadComponent\",value:function(e){this.attachView(e.hostView),this.tick(),this.components.push(e),this._injector.get(Ju,[]).concat(this._bootstrapListeners).forEach((function(t){return t(e)}))}},{key:\"_unloadComponent\",value:function(e){this.detachView(e.hostView),Yc(this.components,e)}},{key:\"ngOnDestroy\",value:function(){this._views.slice().forEach((function(e){return e.destroy()}))}},{key:\"viewCount\",get:function(){return this._views.length}}]),e}()).\\u0275fac=function(e){return new(e||Dc)(et(cc),et(Ku),et(vo),et(mr),et(Zs),et(Wu))},Dc.\\u0275prov=_e({token:Dc,factory:Dc.\\u0275fac}),Dc);function Yc(e,t){var n=e.indexOf(t);n>-1&&e.splice(n,1)}var Ec=function e(){_classCallCheck(this,e)},Ic=function e(){_classCallCheck(this,e)},Ac={factoryPathPrefix:\"\",factoryPathSuffix:\".ngfactory\"},Pc=function(){var e=function(){function e(t,n){_classCallCheck(this,e),this._compiler=t,this._config=n||Ac}return _createClass(e,[{key:\"load\",value:function(e){return this.loadAndCompile(e)}},{key:\"loadAndCompile\",value:function(e){var t=this,r=_slicedToArray(e.split(\"#\"),2),i=r[0],a=r[1];return void 0===a&&(a=\"default\"),n(\"zn8P\")(i).then((function(e){return e[a]})).then((function(e){return jc(e,i,a)})).then((function(e){return t._compiler.compileModuleAsync(e)}))}},{key:\"loadFactory\",value:function(e){var t=_slicedToArray(e.split(\"#\"),2),r=t[0],i=t[1],a=\"NgFactory\";return void 0===i&&(i=\"default\",a=\"\"),n(\"zn8P\")(this._config.factoryPathPrefix+r+this._config.factoryPathSuffix).then((function(e){return e[i+a]})).then((function(e){return jc(e,r,i)}))}}]),e}();return e.\\u0275fac=function(t){return new(t||e)(et(oc),et(Ic,8))},e.\\u0275prov=_e({token:e,factory:e.\\u0275fac}),e}();function jc(e,t,n){if(!e)throw new Error(\"Cannot find '\".concat(n,\"' in '\").concat(t,\"'\"));return e}var Rc=Sc(null,\"core\",[{provide:$u,useValue:\"unknown\"},{provide:Tc,deps:[vo]},{provide:bc,deps:[]},{provide:Ku,deps:[]}]),Hc=[{provide:Oc,useClass:Oc,deps:[cc,Ku,vo,mr,Zs,Wu]},{provide:Dl,deps:[cc],useFactory:function(e){var t=[];return e.onStable.subscribe((function(){for(;t.length;)t.pop()()})),function(e){t.push(e)}}},{provide:Wu,useClass:Wu,deps:[[new ce,Vu]]},{provide:oc,useClass:oc,deps:[]},Bu,{provide:vl,useFactory:function(){return bl},deps:[]},{provide:gl,useFactory:function(){return kl},deps:[]},{provide:Zu,useFactory:function(e){return pu(e=e||\"undefined\"!=typeof $localize&&$localize.locale||\"en-US\"),e},deps:[[new ue(Zu),new ce,new he]]},{provide:Qu,useValue:\"USD\"}],Fc=function(){var e=function e(t){_classCallCheck(this,e)};return e.\\u0275mod=Mt({type:e}),e.\\u0275inj=ve({factory:function(t){return new(t||e)(et(Oc))},providers:Hc}),e}(),Nc=null;function zc(){return Nc}var Vc,Wc=new Be(\"DocumentToken\"),Uc=((Vc=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Vc)},Vc.\\u0275prov=_e({factory:Bc,token:Vc,providedIn:\"platform\"}),Vc);function Bc(){return et($c)}var qc,Gc=new Be(\"Location Initialized\"),$c=((qc=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this))._doc=e,r._init(),r}return _createClass(n,[{key:\"_init\",value:function(){this.location=zc().getLocation(),this._history=zc().getHistory()}},{key:\"getBaseHrefFromDOM\",value:function(){return zc().getBaseHref(this._doc)}},{key:\"onPopState\",value:function(e){zc().getGlobalEventTarget(this._doc,\"window\").addEventListener(\"popstate\",e,!1)}},{key:\"onHashChange\",value:function(e){zc().getGlobalEventTarget(this._doc,\"window\").addEventListener(\"hashchange\",e,!1)}},{key:\"pushState\",value:function(e,t,n){Jc()?this._history.pushState(e,t,n):this.location.hash=n}},{key:\"replaceState\",value:function(e,t,n){Jc()?this._history.replaceState(e,t,n):this.location.hash=n}},{key:\"forward\",value:function(){this._history.forward()}},{key:\"back\",value:function(){this._history.back()}},{key:\"getState\",value:function(){return this._history.state}},{key:\"href\",get:function(){return this.location.href}},{key:\"protocol\",get:function(){return this.location.protocol}},{key:\"hostname\",get:function(){return this.location.hostname}},{key:\"port\",get:function(){return this.location.port}},{key:\"pathname\",get:function(){return this.location.pathname},set:function(e){this.location.pathname=e}},{key:\"search\",get:function(){return this.location.search}},{key:\"hash\",get:function(){return this.location.hash}}]),n}(Uc)).\\u0275fac=function(e){return new(e||qc)(et(Wc))},qc.\\u0275prov=_e({factory:Kc,token:qc,providedIn:\"platform\"}),qc);function Jc(){return!!window.history.pushState}function Kc(){return new $c(et(Wc))}function Zc(e,t){if(0==e.length)return t;if(0==t.length)return e;var n=0;return e.endsWith(\"/\")&&n++,t.startsWith(\"/\")&&n++,2==n?e+t.substring(1):1==n?e+t:e+\"/\"+t}function Qc(e){var t=e.match(/#|\\?|$/),n=t&&t.index||e.length;return e.slice(0,n-(\"/\"===e[n-1]?1:0))+e.slice(n)}function Xc(e){return e&&\"?\"!==e[0]?\"?\"+e:e}var ed,td=((ed=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||ed)},ed.\\u0275prov=_e({factory:nd,token:ed,providedIn:\"root\"}),ed);function nd(e){var t=et(Wc).location;return new sd(et(Uc),t&&t.origin||\"\")}var rd,id,ad,od=new Be(\"appBaseHref\"),sd=((ad=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;if(_classCallCheck(this,n),(i=t.call(this))._platformLocation=e,null==r&&(r=i._platformLocation.getBaseHrefFromDOM()),null==r)throw new Error(\"No base href set. Please provide a value for the APP_BASE_HREF token or add a base element to the document.\");return i._baseHref=r,_possibleConstructorReturn(i)}return _createClass(n,[{key:\"onPopState\",value:function(e){this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e)}},{key:\"getBaseHref\",value:function(){return this._baseHref}},{key:\"prepareExternalUrl\",value:function(e){return Zc(this._baseHref,e)}},{key:\"path\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=this._platformLocation.pathname+Xc(this._platformLocation.search),n=this._platformLocation.hash;return n&&e?\"\".concat(t).concat(n):t}},{key:\"pushState\",value:function(e,t,n,r){var i=this.prepareExternalUrl(n+Xc(r));this._platformLocation.pushState(e,t,i)}},{key:\"replaceState\",value:function(e,t,n,r){var i=this.prepareExternalUrl(n+Xc(r));this._platformLocation.replaceState(e,t,i)}},{key:\"forward\",value:function(){this._platformLocation.forward()}},{key:\"back\",value:function(){this._platformLocation.back()}}]),n}(td)).\\u0275fac=function(e){return new(e||ad)(et(Uc),et(od,8))},ad.\\u0275prov=_e({token:ad,factory:ad.\\u0275fac}),ad),ld=((id=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this))._platformLocation=e,i._baseHref=\"\",null!=r&&(i._baseHref=r),i}return _createClass(n,[{key:\"onPopState\",value:function(e){this._platformLocation.onPopState(e),this._platformLocation.onHashChange(e)}},{key:\"getBaseHref\",value:function(){return this._baseHref}},{key:\"path\",value:function(){arguments.length>0&&void 0!==arguments[0]&&arguments[0];var e=this._platformLocation.hash;return null==e&&(e=\"#\"),e.length>0?e.substring(1):e}},{key:\"prepareExternalUrl\",value:function(e){var t=Zc(this._baseHref,e);return t.length>0?\"#\"+t:t}},{key:\"pushState\",value:function(e,t,n,r){var i=this.prepareExternalUrl(n+Xc(r));0==i.length&&(i=this._platformLocation.pathname),this._platformLocation.pushState(e,t,i)}},{key:\"replaceState\",value:function(e,t,n,r){var i=this.prepareExternalUrl(n+Xc(r));0==i.length&&(i=this._platformLocation.pathname),this._platformLocation.replaceState(e,t,i)}},{key:\"forward\",value:function(){this._platformLocation.forward()}},{key:\"back\",value:function(){this._platformLocation.back()}}]),n}(td)).\\u0275fac=function(e){return new(e||id)(et(Uc),et(od,8))},id.\\u0275prov=_e({token:id,factory:id.\\u0275fac}),id),ud=((rd=function(){function e(t,n){var r=this;_classCallCheck(this,e),this._subject=new bu,this._urlChangeListeners=[],this._platformStrategy=t;var i=this._platformStrategy.getBaseHref();this._platformLocation=n,this._baseHref=Qc(dd(i)),this._platformStrategy.onPopState((function(e){r._subject.emit({url:r.path(!0),pop:!0,state:e.state,type:e.type})}))}return _createClass(e,[{key:\"path\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return this.normalize(this._platformStrategy.path(e))}},{key:\"getState\",value:function(){return this._platformLocation.getState()}},{key:\"isCurrentPathEqualTo\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\";return this.path()==this.normalize(e+Xc(t))}},{key:\"normalize\",value:function(t){return e.stripTrailingSlash(function(e,t){return e&&t.startsWith(e)?t.substring(e.length):t}(this._baseHref,dd(t)))}},{key:\"prepareExternalUrl\",value:function(e){return e&&\"/\"!==e[0]&&(e=\"/\"+e),this._platformStrategy.prepareExternalUrl(e)}},{key:\"go\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;this._platformStrategy.pushState(n,\"\",e,t),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+Xc(t)),n)}},{key:\"replaceState\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;this._platformStrategy.replaceState(n,\"\",e,t),this._notifyUrlChangeListeners(this.prepareExternalUrl(e+Xc(t)),n)}},{key:\"forward\",value:function(){this._platformStrategy.forward()}},{key:\"back\",value:function(){this._platformStrategy.back()}},{key:\"onUrlChange\",value:function(e){var t=this;this._urlChangeListeners.push(e),this.subscribe((function(e){t._notifyUrlChangeListeners(e.url,e.state)}))}},{key:\"_notifyUrlChangeListeners\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\",t=arguments.length>1?arguments[1]:void 0;this._urlChangeListeners.forEach((function(n){return n(e,t)}))}},{key:\"subscribe\",value:function(e,t,n){return this._subject.subscribe({next:e,error:t,complete:n})}}]),e}()).\\u0275fac=function(e){return new(e||rd)(et(td),et(Uc))},rd.normalizeQueryParams=Xc,rd.joinWithSlash=Zc,rd.stripTrailingSlash=Qc,rd.\\u0275prov=_e({factory:cd,token:rd,providedIn:\"root\"}),rd);function cd(){return new ud(et(td),et(Uc))}function dd(e){return e.replace(/\\/index.html$/,\"\")}var hd,fd=function(){var e={Zero:0,One:1,Two:2,Few:3,Many:4,Other:5};return e[e.Zero]=\"Zero\",e[e.One]=\"One\",e[e.Two]=\"Two\",e[e.Few]=\"Few\",e[e.Many]=\"Many\",e[e.Other]=\"Other\",e}(),md=Pl,pd=function e(){_classCallCheck(this,e)},_d=((hd=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this)).locale=e,r}return _createClass(n,[{key:\"getPluralCategory\",value:function(e,t){switch(md(t||this.locale)(e)){case fd.Zero:return\"zero\";case fd.One:return\"one\";case fd.Two:return\"two\";case fd.Few:return\"few\";case fd.Many:return\"many\";default:return\"other\"}}}]),n}(pd)).\\u0275fac=function(e){return new(e||hd)(et(Zu))},hd.\\u0275prov=_e({token:hd,factory:hd.\\u0275fac}),hd);function vd(e,t){t=encodeURIComponent(t);var n,r=_createForOfIteratorHelper(e.split(\";\"));try{for(r.s();!(n=r.n()).done;){var i=n.value,a=i.indexOf(\"=\"),o=_slicedToArray(-1==a?[i,\"\"]:[i.slice(0,a),i.slice(a+1)],2),s=o[0],l=o[1];if(s.trim()===t)return decodeURIComponent(l)}}catch(u){r.e(u)}finally{r.f()}return null}var gd,yd,bd,kd=((gd=function(){function e(t,n,r,i){_classCallCheck(this,e),this._iterableDiffers=t,this._keyValueDiffers=n,this._ngEl=r,this._renderer=i,this._iterableDiffer=null,this._keyValueDiffer=null,this._initialClasses=[],this._rawClass=null}return _createClass(e,[{key:\"ngDoCheck\",value:function(){if(this._iterableDiffer){var e=this._iterableDiffer.diff(this._rawClass);e&&this._applyIterableChanges(e)}else if(this._keyValueDiffer){var t=this._keyValueDiffer.diff(this._rawClass);t&&this._applyKeyValueChanges(t)}}},{key:\"_applyKeyValueChanges\",value:function(e){var t=this;e.forEachAddedItem((function(e){return t._toggleClass(e.key,e.currentValue)})),e.forEachChangedItem((function(e){return t._toggleClass(e.key,e.currentValue)})),e.forEachRemovedItem((function(e){e.previousValue&&t._toggleClass(e.key,!1)}))}},{key:\"_applyIterableChanges\",value:function(e){var t=this;e.forEachAddedItem((function(e){if(\"string\"!=typeof e.item)throw new Error(\"NgClass can only toggle CSS classes expressed as strings, got \".concat(Le(e.item)));t._toggleClass(e.item,!0)})),e.forEachRemovedItem((function(e){return t._toggleClass(e.item,!1)}))}},{key:\"_applyClasses\",value:function(e){var t=this;e&&(Array.isArray(e)||e instanceof Set?e.forEach((function(e){return t._toggleClass(e,!0)})):Object.keys(e).forEach((function(n){return t._toggleClass(n,!!e[n])})))}},{key:\"_removeClasses\",value:function(e){var t=this;e&&(Array.isArray(e)||e instanceof Set?e.forEach((function(e){return t._toggleClass(e,!1)})):Object.keys(e).forEach((function(e){return t._toggleClass(e,!1)})))}},{key:\"_toggleClass\",value:function(e,t){var n=this;(e=e.trim())&&e.split(/\\s+/g).forEach((function(e){t?n._renderer.addClass(n._ngEl.nativeElement,e):n._renderer.removeClass(n._ngEl.nativeElement,e)}))}},{key:\"klass\",set:function(e){this._removeClasses(this._initialClasses),this._initialClasses=\"string\"==typeof e?e.split(/\\s+/):[],this._applyClasses(this._initialClasses),this._applyClasses(this._rawClass)}},{key:\"ngClass\",set:function(e){this._removeClasses(this._rawClass),this._applyClasses(this._initialClasses),this._iterableDiffer=null,this._keyValueDiffer=null,this._rawClass=\"string\"==typeof e?e.split(/\\s+/):e,this._rawClass&&(Lo(this._rawClass)?this._iterableDiffer=this._iterableDiffers.find(this._rawClass).create():this._keyValueDiffer=this._keyValueDiffers.find(this._rawClass).create())}}]),e}()).\\u0275fac=function(e){return new(e||gd)(Io(vl),Io(gl),Io(Qs),Io(nl))},gd.\\u0275dir=Lt({type:gd,selectors:[[\"\",\"ngClass\",\"\"]],inputs:{klass:[\"class\",\"klass\"],ngClass:\"ngClass\"}}),gd),wd=function(){function e(t,n,r,i){_classCallCheck(this,e),this.$implicit=t,this.ngForOf=n,this.index=r,this.count=i}return _createClass(e,[{key:\"first\",get:function(){return 0===this.index}},{key:\"last\",get:function(){return this.index===this.count-1}},{key:\"even\",get:function(){return this.index%2==0}},{key:\"odd\",get:function(){return!this.even}}]),e}(),Cd=((yd=function(){function e(t,n,r){_classCallCheck(this,e),this._viewContainer=t,this._template=n,this._differs=r,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}return _createClass(e,[{key:\"ngDoCheck\",value:function(){if(this._ngForOfDirty){this._ngForOfDirty=!1;var e=this._ngForOf;if(!this._differ&&e)try{this._differ=this._differs.find(e).create(this.ngForTrackBy)}catch(r){throw new Error(\"Cannot find a differ supporting object '\".concat(e,\"' of type '\").concat((t=e).name||typeof t,\"'. NgFor only supports binding to Iterables such as Arrays.\"))}}var t;if(this._differ){var n=this._differ.diff(this._ngForOf);n&&this._applyChanges(n)}}},{key:\"_applyChanges\",value:function(e){var t=this,n=[];e.forEachOperation((function(e,r,i){if(null==e.previousIndex){var a=t._viewContainer.createEmbeddedView(t._template,new wd(null,t._ngForOf,-1,-1),null===i?void 0:i),o=new Md(e,a);n.push(o)}else if(null==i)t._viewContainer.remove(null===r?void 0:r);else if(null!==r){var s=t._viewContainer.get(r);t._viewContainer.move(s,i);var l=new Md(e,s);n.push(l)}}));for(var r=0;r0){var r=e.slice(0,t),i=r.toLowerCase(),a=e.slice(t+1).trim();n.maybeSetNormalizedName(r,i),n.headers.has(i)?n.headers.get(i).push(a):n.headers.set(i,[a])}}))}:function(){n.headers=new Map,Object.keys(t).forEach((function(e){var r=t[e],i=e.toLowerCase();\"string\"==typeof r&&(r=[r]),r.length>0&&(n.headers.set(i,r),n.maybeSetNormalizedName(e,i))}))}:this.headers=new Map}return _createClass(e,[{key:\"has\",value:function(e){return this.init(),this.headers.has(e.toLowerCase())}},{key:\"get\",value:function(e){this.init();var t=this.headers.get(e.toLowerCase());return t&&t.length>0?t[0]:null}},{key:\"keys\",value:function(){return this.init(),Array.from(this.normalizedNames.values())}},{key:\"getAll\",value:function(e){return this.init(),this.headers.get(e.toLowerCase())||null}},{key:\"append\",value:function(e,t){return this.clone({name:e,value:t,op:\"a\"})}},{key:\"set\",value:function(e,t){return this.clone({name:e,value:t,op:\"s\"})}},{key:\"delete\",value:function(e,t){return this.clone({name:e,value:t,op:\"d\"})}},{key:\"maybeSetNormalizedName\",value:function(e,t){this.normalizedNames.has(t)||this.normalizedNames.set(t,e)}},{key:\"init\",value:function(){var t=this;this.lazyInit&&(this.lazyInit instanceof e?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach((function(e){return t.applyUpdate(e)})),this.lazyUpdate=null))}},{key:\"copyFrom\",value:function(e){var t=this;e.init(),Array.from(e.headers.keys()).forEach((function(n){t.headers.set(n,e.headers.get(n)),t.normalizedNames.set(n,e.normalizedNames.get(n))}))}},{key:\"clone\",value:function(t){var n=new e;return n.lazyInit=this.lazyInit&&this.lazyInit instanceof e?this.lazyInit:this,n.lazyUpdate=(this.lazyUpdate||[]).concat([t]),n}},{key:\"applyUpdate\",value:function(e){var t=e.name.toLowerCase();switch(e.op){case\"a\":case\"s\":var n=e.value;if(\"string\"==typeof n&&(n=[n]),0===n.length)return;this.maybeSetNormalizedName(e.name,t);var r=(\"a\"===e.op?this.headers.get(t):void 0)||[];r.push.apply(r,_toConsumableArray(n)),this.headers.set(t,r);break;case\"d\":var i=e.value;if(i){var a=this.headers.get(t);if(!a)return;0===(a=a.filter((function(e){return-1===i.indexOf(e)}))).length?(this.headers.delete(t),this.normalizedNames.delete(t)):this.headers.set(t,a)}else this.headers.delete(t),this.normalizedNames.delete(t)}}},{key:\"forEach\",value:function(e){var t=this;this.init(),Array.from(this.normalizedNames.keys()).forEach((function(n){return e(t.normalizedNames.get(n),t.headers.get(n))}))}}]),e}(),Xd=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"encodeKey\",value:function(e){return eh(e)}},{key:\"encodeValue\",value:function(e){return eh(e)}},{key:\"decodeKey\",value:function(e){return decodeURIComponent(e)}},{key:\"decodeValue\",value:function(e){return decodeURIComponent(e)}}]),e}();function eh(e){return encodeURIComponent(e).replace(/%40/gi,\"@\").replace(/%3A/gi,\":\").replace(/%24/gi,\"$\").replace(/%2C/gi,\",\").replace(/%3B/gi,\";\").replace(/%2B/gi,\"+\").replace(/%3D/gi,\"=\").replace(/%3F/gi,\"?\").replace(/%2F/gi,\"/\")}var th=function(){function e(){var t=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(_classCallCheck(this,e),this.updates=null,this.cloneFrom=null,this.encoder=n.encoder||new Xd,n.fromString){if(n.fromObject)throw new Error(\"Cannot specify both fromString and fromObject.\");this.map=function(e,t){var n=new Map;return e.length>0&&e.split(\"&\").forEach((function(e){var r=e.indexOf(\"=\"),i=_slicedToArray(-1==r?[t.decodeKey(e),\"\"]:[t.decodeKey(e.slice(0,r)),t.decodeValue(e.slice(r+1))],2),a=i[0],o=i[1],s=n.get(a)||[];s.push(o),n.set(a,s)})),n}(n.fromString,this.encoder)}else n.fromObject?(this.map=new Map,Object.keys(n.fromObject).forEach((function(e){var r=n.fromObject[e];t.map.set(e,Array.isArray(r)?r:[r])}))):this.map=null}return _createClass(e,[{key:\"has\",value:function(e){return this.init(),this.map.has(e)}},{key:\"get\",value:function(e){this.init();var t=this.map.get(e);return t?t[0]:null}},{key:\"getAll\",value:function(e){return this.init(),this.map.get(e)||null}},{key:\"keys\",value:function(){return this.init(),Array.from(this.map.keys())}},{key:\"append\",value:function(e,t){return this.clone({param:e,value:t,op:\"a\"})}},{key:\"set\",value:function(e,t){return this.clone({param:e,value:t,op:\"s\"})}},{key:\"delete\",value:function(e,t){return this.clone({param:e,value:t,op:\"d\"})}},{key:\"toString\",value:function(){var e=this;return this.init(),this.keys().map((function(t){var n=e.encoder.encodeKey(t);return e.map.get(t).map((function(t){return n+\"=\"+e.encoder.encodeValue(t)})).join(\"&\")})).filter((function(e){return\"\"!==e})).join(\"&\")}},{key:\"clone\",value:function(t){var n=new e({encoder:this.encoder});return n.cloneFrom=this.cloneFrom||this,n.updates=(this.updates||[]).concat([t]),n}},{key:\"init\",value:function(){var e=this;null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach((function(t){return e.map.set(t,e.cloneFrom.map.get(t))})),this.updates.forEach((function(t){switch(t.op){case\"a\":case\"s\":var n=(\"a\"===t.op?e.map.get(t.param):void 0)||[];n.push(t.value),e.map.set(t.param,n);break;case\"d\":if(void 0===t.value){e.map.delete(t.param);break}var r=e.map.get(t.param)||[],i=r.indexOf(t.value);-1!==i&&r.splice(i,1),r.length>0?e.map.set(t.param,r):e.map.delete(t.param)}})),this.cloneFrom=this.updates=null)}}]),e}();function nh(e){return\"undefined\"!=typeof ArrayBuffer&&e instanceof ArrayBuffer}function rh(e){return\"undefined\"!=typeof Blob&&e instanceof Blob}function ih(e){return\"undefined\"!=typeof FormData&&e instanceof FormData}var ah=function(){function e(t,n,r,i){var a;if(_classCallCheck(this,e),this.url=n,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType=\"json\",this.method=t.toUpperCase(),function(e){switch(e){case\"DELETE\":case\"GET\":case\"HEAD\":case\"OPTIONS\":case\"JSONP\":return!1;default:return!0}}(this.method)||i?(this.body=void 0!==r?r:null,a=i):a=r,a&&(this.reportProgress=!!a.reportProgress,this.withCredentials=!!a.withCredentials,a.responseType&&(this.responseType=a.responseType),a.headers&&(this.headers=a.headers),a.params&&(this.params=a.params)),this.headers||(this.headers=new Qd),this.params){var o=this.params.toString();if(0===o.length)this.urlWithParams=n;else{var s=n.indexOf(\"?\");this.urlWithParams=n+(-1===s?\"?\":s0&&void 0!==arguments[0]?arguments[0]:{},n=t.method||this.method,r=t.url||this.url,i=t.responseType||this.responseType,a=void 0!==t.body?t.body:this.body,o=void 0!==t.withCredentials?t.withCredentials:this.withCredentials,s=void 0!==t.reportProgress?t.reportProgress:this.reportProgress,l=t.headers||this.headers,u=t.params||this.params;return void 0!==t.setHeaders&&(l=Object.keys(t.setHeaders).reduce((function(e,n){return e.set(n,t.setHeaders[n])}),l)),t.setParams&&(u=Object.keys(t.setParams).reduce((function(e,n){return e.set(n,t.setParams[n])}),u)),new e(n,r,a,{params:u,headers:l,reportProgress:s,responseType:i,withCredentials:o})}}]),e}(),oh=function(){var e={Sent:0,UploadProgress:1,ResponseHeader:2,DownloadProgress:3,Response:4,User:5};return e[e.Sent]=\"Sent\",e[e.UploadProgress]=\"UploadProgress\",e[e.ResponseHeader]=\"ResponseHeader\",e[e.DownloadProgress]=\"DownloadProgress\",e[e.Response]=\"Response\",e[e.User]=\"User\",e}(),sh=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:200,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:\"OK\";_classCallCheck(this,e),this.headers=t.headers||new Qd,this.status=void 0!==t.status?t.status:n,this.statusText=t.statusText||r,this.url=t.url||null,this.ok=this.status>=200&&this.status<300},lh=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return _classCallCheck(this,n),(e=t.call(this,r)).type=oh.ResponseHeader,e}return _createClass(n,[{key:\"clone\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new n({headers:e.headers||this.headers,status:void 0!==e.status?e.status:this.status,statusText:e.statusText||this.statusText,url:e.url||this.url||void 0})}}]),n}(sh),uh=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return _classCallCheck(this,n),(e=t.call(this,r)).type=oh.Response,e.body=void 0!==r.body?r.body:null,e}return _createClass(n,[{key:\"clone\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return new n({body:void 0!==e.body?e.body:this.body,headers:e.headers||this.headers,status:void 0!==e.status?e.status:this.status,statusText:e.statusText||this.statusText,url:e.url||this.url||void 0})}}]),n}(sh),ch=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this,e,0,\"Unknown Error\")).name=\"HttpErrorResponse\",r.ok=!1,r.message=r.status>=200&&r.status<300?\"Http failure during parsing for \".concat(e.url||\"(unknown url)\"):\"Http failure response for \".concat(e.url||\"(unknown url)\",\": \").concat(e.status,\" \").concat(e.statusText),r.error=e.error||null,r}return n}(sh);function dh(e,t){return{body:t,headers:e.headers,observe:e.observe,params:e.params,reportProgress:e.reportProgress,responseType:e.responseType,withCredentials:e.withCredentials}}var hh,fh,mh,ph,_h,vh,gh,yh,bh,kh=((hh=function(){function e(t){_classCallCheck(this,e),this.handler=t}return _createClass(e,[{key:\"request\",value:function(e,t){var n,r=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(e instanceof ah)n=e;else{var a=void 0;a=i.headers instanceof Qd?i.headers:new Qd(i.headers);var o=void 0;i.params&&(o=i.params instanceof th?i.params:new th({fromObject:i.params})),n=new ah(e,t,void 0!==i.body?i.body:null,{headers:a,params:o,reportProgress:i.reportProgress,responseType:i.responseType||\"json\",withCredentials:i.withCredentials})}var s=Bd(n).pipe(qd((function(e){return r.handler.handle(e)})));if(e instanceof ah||\"events\"===i.observe)return s;var l=s.pipe(Gd((function(e){return e instanceof uh})));switch(i.observe||\"body\"){case\"body\":switch(n.responseType){case\"arraybuffer\":return l.pipe(F((function(e){if(null!==e.body&&!(e.body instanceof ArrayBuffer))throw new Error(\"Response is not an ArrayBuffer.\");return e.body})));case\"blob\":return l.pipe(F((function(e){if(null!==e.body&&!(e.body instanceof Blob))throw new Error(\"Response is not a Blob.\");return e.body})));case\"text\":return l.pipe(F((function(e){if(null!==e.body&&\"string\"!=typeof e.body)throw new Error(\"Response is not a string.\");return e.body})));case\"json\":default:return l.pipe(F((function(e){return e.body})))}case\"response\":return l;default:throw new Error(\"Unreachable: unhandled observe type \".concat(i.observe,\"}\"))}}},{key:\"delete\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request(\"DELETE\",e,t)}},{key:\"get\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request(\"GET\",e,t)}},{key:\"head\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request(\"HEAD\",e,t)}},{key:\"jsonp\",value:function(e,t){return this.request(\"JSONP\",e,{params:(new th).append(t,\"JSONP_CALLBACK\"),observe:\"body\",responseType:\"json\"})}},{key:\"options\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.request(\"OPTIONS\",e,t)}},{key:\"patch\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.request(\"PATCH\",e,dh(n,t))}},{key:\"post\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.request(\"POST\",e,dh(n,t))}},{key:\"put\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.request(\"PUT\",e,dh(n,t))}}]),e}()).\\u0275fac=function(e){return new(e||hh)(et(Kd))},hh.\\u0275prov=_e({token:hh,factory:hh.\\u0275fac}),hh),wh=function(){function e(t,n){_classCallCheck(this,e),this.next=t,this.interceptor=n}return _createClass(e,[{key:\"handle\",value:function(e){return this.interceptor.intercept(e,this.next)}}]),e}(),Ch=new Be(\"HTTP_INTERCEPTORS\"),Mh=((fh=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"intercept\",value:function(e,t){return t.handle(e)}}]),e}()).\\u0275fac=function(e){return new(e||fh)},fh.\\u0275prov=_e({token:fh,factory:fh.\\u0275fac}),fh),Sh=/^\\)\\]\\}',?\\n/,Lh=function e(){_classCallCheck(this,e)},Th=((ph=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"build\",value:function(){return new XMLHttpRequest}}]),e}()).\\u0275fac=function(e){return new(e||ph)},ph.\\u0275prov=_e({token:ph,factory:ph.\\u0275fac}),ph),xh=((mh=function(){function e(t){_classCallCheck(this,e),this.xhrFactory=t}return _createClass(e,[{key:\"handle\",value:function(e){var t=this;if(\"JSONP\"===e.method)throw new Error(\"Attempted to construct Jsonp request without JsonpClientModule installed.\");return new w((function(n){var r=t.xhrFactory.build();if(r.open(e.method,e.urlWithParams),e.withCredentials&&(r.withCredentials=!0),e.headers.forEach((function(e,t){return r.setRequestHeader(e,t.join(\",\"))})),e.headers.has(\"Accept\")||r.setRequestHeader(\"Accept\",\"application/json, text/plain, */*\"),!e.headers.has(\"Content-Type\")){var i=e.detectContentTypeHeader();null!==i&&r.setRequestHeader(\"Content-Type\",i)}if(e.responseType){var a=e.responseType.toLowerCase();r.responseType=\"json\"!==a?a:\"text\"}var o=e.serializeBody(),s=null,l=function(){if(null!==s)return s;var t=1223===r.status?204:r.status,n=r.statusText||\"OK\",i=new Qd(r.getAllResponseHeaders()),a=function(e){return\"responseURL\"in e&&e.responseURL?e.responseURL:/^X-Request-URL:/m.test(e.getAllResponseHeaders())?e.getResponseHeader(\"X-Request-URL\"):null}(r)||e.url;return s=new lh({headers:i,status:t,statusText:n,url:a})},u=function(){var t=l(),i=t.headers,a=t.status,o=t.statusText,s=t.url,u=null;204!==a&&(u=void 0===r.response?r.responseText:r.response),0===a&&(a=u?200:0);var c=a>=200&&a<300;if(\"json\"===e.responseType&&\"string\"==typeof u){var d=u;u=u.replace(Sh,\"\");try{u=\"\"!==u?JSON.parse(u):null}catch(h){u=d,c&&(c=!1,u={error:h,text:u})}}c?(n.next(new uh({body:u,headers:i,status:a,statusText:o,url:s||void 0})),n.complete()):n.error(new ch({error:u,headers:i,status:a,statusText:o,url:s||void 0}))},c=function(e){var t=l().url,i=new ch({error:e,status:r.status||0,statusText:r.statusText||\"Unknown Error\",url:t||void 0});n.error(i)},d=!1,h=function(t){d||(n.next(l()),d=!0);var i={type:oh.DownloadProgress,loaded:t.loaded};t.lengthComputable&&(i.total=t.total),\"text\"===e.responseType&&r.responseText&&(i.partialText=r.responseText),n.next(i)},f=function(e){var t={type:oh.UploadProgress,loaded:e.loaded};e.lengthComputable&&(t.total=e.total),n.next(t)};return r.addEventListener(\"load\",u),r.addEventListener(\"error\",c),e.reportProgress&&(r.addEventListener(\"progress\",h),null!==o&&r.upload&&r.upload.addEventListener(\"progress\",f)),r.send(o),n.next({type:oh.Sent}),function(){r.removeEventListener(\"error\",c),r.removeEventListener(\"load\",u),e.reportProgress&&(r.removeEventListener(\"progress\",h),null!==o&&r.upload&&r.upload.removeEventListener(\"progress\",f)),r.abort()}}))}}]),e}()).\\u0275fac=function(e){return new(e||mh)(et(Lh))},mh.\\u0275prov=_e({token:mh,factory:mh.\\u0275fac}),mh),Dh=new Be(\"XSRF_COOKIE_NAME\"),Oh=new Be(\"XSRF_HEADER_NAME\"),Yh=function e(){_classCallCheck(this,e)},Eh=((bh=function(){function e(t,n,r){_classCallCheck(this,e),this.doc=t,this.platform=n,this.cookieName=r,this.lastCookieString=\"\",this.lastToken=null,this.parseCount=0}return _createClass(e,[{key:\"getToken\",value:function(){if(\"server\"===this.platform)return null;var e=this.doc.cookie||\"\";return e!==this.lastCookieString&&(this.parseCount++,this.lastToken=vd(e,this.cookieName),this.lastCookieString=e),this.lastToken}}]),e}()).\\u0275fac=function(e){return new(e||bh)(et(Wc),et($u),et(Dh))},bh.\\u0275prov=_e({token:bh,factory:bh.\\u0275fac}),bh),Ih=((yh=function(){function e(t,n){_classCallCheck(this,e),this.tokenService=t,this.headerName=n}return _createClass(e,[{key:\"intercept\",value:function(e,t){var n=e.url.toLowerCase();if(\"GET\"===e.method||\"HEAD\"===e.method||n.startsWith(\"http://\")||n.startsWith(\"https://\"))return t.handle(e);var r=this.tokenService.getToken();return null===r||e.headers.has(this.headerName)||(e=e.clone({headers:e.headers.set(this.headerName,r)})),t.handle(e)}}]),e}()).\\u0275fac=function(e){return new(e||yh)(et(Yh),et(Oh))},yh.\\u0275prov=_e({token:yh,factory:yh.\\u0275fac}),yh),Ah=((gh=function(){function e(t,n){_classCallCheck(this,e),this.backend=t,this.injector=n,this.chain=null}return _createClass(e,[{key:\"handle\",value:function(e){if(null===this.chain){var t=this.injector.get(Ch,[]);this.chain=t.reduceRight((function(e,t){return new wh(e,t)}),this.backend)}return this.chain.handle(e)}}]),e}()).\\u0275fac=function(e){return new(e||gh)(et(Zd),et(vo))},gh.\\u0275prov=_e({token:gh,factory:gh.\\u0275fac}),gh),Ph=((vh=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"disable\",value:function(){return{ngModule:e,providers:[{provide:Ih,useClass:Mh}]}}},{key:\"withOptions\",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{ngModule:e,providers:[t.cookieName?{provide:Dh,useValue:t.cookieName}:[],t.headerName?{provide:Oh,useValue:t.headerName}:[]]}}}]),e}()).\\u0275mod=Mt({type:vh}),vh.\\u0275inj=ve({factory:function(e){return new(e||vh)},providers:[Ih,{provide:Ch,useExisting:Ih,multi:!0},{provide:Yh,useClass:Eh},{provide:Dh,useValue:\"XSRF-TOKEN\"},{provide:Oh,useValue:\"X-XSRF-TOKEN\"}]}),vh),jh=((_h=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:_h}),_h.\\u0275inj=ve({factory:function(e){return new(e||_h)},providers:[kh,{provide:Kd,useClass:Ah},xh,{provide:Zd,useExisting:xh},Th,{provide:Lh,useExisting:Th}],imports:[[Ph.withOptions({cookieName:\"XSRF-TOKEN\",headerName:\"X-XSRF-TOKEN\"})]]}),_h);function Rh(){for(var e=arguments.length,t=new Array(e),n=0;ne?{max:{max:e,actual:t.value}}:null}}},{key:\"required\",value:function(e){return of(e.value)?{required:!0}:null}},{key:\"requiredTrue\",value:function(e){return!0===e.value?null:{required:!0}}},{key:\"email\",value:function(e){return of(e.value)||uf.test(e.value)?null:{email:!0}}},{key:\"minLength\",value:function(e){return function(t){if(of(t.value))return null;var n=t.value?t.value.length:0;return ne?{maxlength:{requiredLength:e,actualLength:n}}:null}}},{key:\"pattern\",value:function(t){return t?(\"string\"==typeof t?(r=\"\",\"^\"!==t.charAt(0)&&(r+=\"^\"),r+=t,\"$\"!==t.charAt(t.length-1)&&(r+=\"$\"),n=new RegExp(r)):(r=t.toString(),n=t),function(e){if(of(e.value))return null;var t=e.value;return n.test(t)?null:{pattern:{requiredPattern:r,actualValue:t}}}):e.nullValidator;var n,r}},{key:\"nullValidator\",value:function(e){return null}},{key:\"compose\",value:function(e){if(!e)return null;var t=e.filter(df);return 0==t.length?null:function(e){return ff(function(e,t){return t.map((function(t){return t(e)}))}(e,t))}}},{key:\"composeAsync\",value:function(e){if(!e)return null;var t=e.filter(df);return 0==t.length?null:function(e){return Rh(function(e,t){return t.map((function(t){return t(e)}))}(e,t).map(hf)).pipe(F(ff))}}}]),e}();function df(e){return null!=e}function hf(e){var t=Uo(e)?W(e):e;if(!Bo(t))throw new Error(\"Expected validator to return Promise or Observable.\");return t}function ff(e){var t={};return e.forEach((function(e){t=null!=e?Object.assign(Object.assign({},t),e):t})),0===Object.keys(t).length?null:t}function mf(e){return e.validate?function(t){return e.validate(t)}:e}function pf(e){return e.validate?function(t){return e.validate(t)}:e}var _f,vf,gf,yf,bf,kf,wf={provide:Wh,useExisting:De((function(){return Cf})),multi:!0},Cf=((_f=function(){function e(t,n){_classCallCheck(this,e),this._renderer=t,this._elementRef=n,this.onChange=function(e){},this.onTouched=function(){}}return _createClass(e,[{key:\"writeValue\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",null==e?\"\":e)}},{key:\"registerOnChange\",value:function(e){this.onChange=function(t){e(\"\"==t?null:parseFloat(t))}}},{key:\"registerOnTouched\",value:function(e){this.onTouched=e}},{key:\"setDisabledState\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}]),e}()).\\u0275fac=function(e){return new(e||_f)(Io(nl),Io(Qs))},_f.\\u0275dir=Lt({type:_f,selectors:[[\"input\",\"type\",\"number\",\"formControlName\",\"\"],[\"input\",\"type\",\"number\",\"formControl\",\"\"],[\"input\",\"type\",\"number\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"input\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},features:[$s([wf])]}),_f),Mf={provide:Wh,useExisting:De((function(){return Lf})),multi:!0},Sf=((gf=function(){function e(){_classCallCheck(this,e),this._accessors=[]}return _createClass(e,[{key:\"add\",value:function(e,t){this._accessors.push([e,t])}},{key:\"remove\",value:function(e){for(var t=this._accessors.length-1;t>=0;--t)if(this._accessors[t][1]===e)return void this._accessors.splice(t,1)}},{key:\"select\",value:function(e){var t=this;this._accessors.forEach((function(n){t._isSameGroup(n,e)&&n[1]!==e&&n[1].fireUncheck(e.value)}))}},{key:\"_isSameGroup\",value:function(e,t){return!!e[0].control&&e[0]._parent===t._control._parent&&e[1].name===t.name}}]),e}()).\\u0275fac=function(e){return new(e||gf)},gf.\\u0275prov=_e({token:gf,factory:gf.\\u0275fac}),gf),Lf=((vf=function(){function e(t,n,r,i){_classCallCheck(this,e),this._renderer=t,this._elementRef=n,this._registry=r,this._injector=i,this.onChange=function(){},this.onTouched=function(){}}return _createClass(e,[{key:\"ngOnInit\",value:function(){this._control=this._injector.get(tf),this._checkName(),this._registry.add(this._control,this)}},{key:\"ngOnDestroy\",value:function(){this._registry.remove(this)}},{key:\"writeValue\",value:function(e){this._state=e===this.value,this._renderer.setProperty(this._elementRef.nativeElement,\"checked\",this._state)}},{key:\"registerOnChange\",value:function(e){var t=this;this._fn=e,this.onChange=function(){e(t.value),t._registry.select(t)}}},{key:\"fireUncheck\",value:function(e){this.writeValue(e)}},{key:\"registerOnTouched\",value:function(e){this.onTouched=e}},{key:\"setDisabledState\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}},{key:\"_checkName\",value:function(){this.name&&this.formControlName&&this.name!==this.formControlName&&this._throwNameError(),!this.name&&this.formControlName&&(this.name=this.formControlName)}},{key:\"_throwNameError\",value:function(){throw new Error('\\n If you define both a name and a formControlName attribute on your radio button, their values\\n must match. Ex: \\n ')}}]),e}()).\\u0275fac=function(e){return new(e||vf)(Io(nl),Io(Qs),Io(Sf),Io(vo))},vf.\\u0275dir=Lt({type:vf,selectors:[[\"input\",\"type\",\"radio\",\"formControlName\",\"\"],[\"input\",\"type\",\"radio\",\"formControl\",\"\"],[\"input\",\"type\",\"radio\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"change\",(function(){return t.onChange()}))(\"blur\",(function(){return t.onTouched()}))},inputs:{name:\"name\",formControlName:\"formControlName\",value:\"value\"},features:[$s([Mf])]}),vf),Tf={provide:Wh,useExisting:De((function(){return xf})),multi:!0},xf=((yf=function(){function e(t,n){_classCallCheck(this,e),this._renderer=t,this._elementRef=n,this.onChange=function(e){},this.onTouched=function(){}}return _createClass(e,[{key:\"writeValue\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"value\",parseFloat(e))}},{key:\"registerOnChange\",value:function(e){this.onChange=function(t){e(\"\"==t?null:parseFloat(t))}}},{key:\"registerOnTouched\",value:function(e){this.onTouched=e}},{key:\"setDisabledState\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}}]),e}()).\\u0275fac=function(e){return new(e||yf)(Io(nl),Io(Qs))},yf.\\u0275dir=Lt({type:yf,selectors:[[\"input\",\"type\",\"range\",\"formControlName\",\"\"],[\"input\",\"type\",\"range\",\"formControl\",\"\"],[\"input\",\"type\",\"range\",\"ngModel\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"change\",(function(e){return t.onChange(e.target.value)}))(\"input\",(function(e){return t.onChange(e.target.value)}))(\"blur\",(function(){return t.onTouched()}))},features:[$s([Tf])]}),yf),Df='\\n

\\n \\n
\\n\\n In your class:\\n\\n this.myGroup = new FormGroup({\\n firstName: new FormControl()\\n });',Of='\\n
\\n
\\n \\n
\\n
\\n\\n In your class:\\n\\n this.myGroup = new FormGroup({\\n person: new FormGroup({ firstName: new FormControl() })\\n });',Yf='\\n
\\n
\\n \\n
\\n
',Ef=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"controlParentException\",value:function(){throw new Error(\"formControlName must be used with a parent formGroup directive. You'll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n \".concat(Df))}},{key:\"ngModelGroupException\",value:function(){throw new Error('formControlName cannot be used with an ngModelGroup parent. It is only compatible with parents\\n that also have a \"form\" prefix: formGroupName, formArrayName, or formGroup.\\n\\n Option 1: Update the parent to be formGroupName (reactive form strategy)\\n\\n '.concat(Of,\"\\n\\n Option 2: Use ngModel instead of formControlName (template-driven strategy)\\n\\n \").concat(Yf))}},{key:\"missingFormException\",value:function(){throw new Error(\"formGroup expects a FormGroup instance. Please pass one in.\\n\\n Example:\\n\\n \".concat(Df))}},{key:\"groupParentException\",value:function(){throw new Error(\"formGroupName must be used with a parent formGroup directive. You'll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n \".concat(Of))}},{key:\"arrayParentException\",value:function(){throw new Error('formArrayName must be used with a parent formGroup directive. You\\'ll want to add a formGroup\\n directive and pass it an existing FormGroup instance (you can create one in your class).\\n\\n Example:\\n\\n \\n
\\n
\\n
\\n \\n
\\n
\\n
\\n\\n In your class:\\n\\n this.cityArray = new FormArray([new FormControl(\\'SF\\')]);\\n this.myGroup = new FormGroup({\\n cities: this.cityArray\\n });')}},{key:\"disabledAttrWarning\",value:function(){console.warn(\"\\n It looks like you're using the disabled attribute with a reactive form directive. If you set disabled to true\\n when you set up this control in your component class, the disabled attribute will actually be set in the DOM for\\n you. We recommend using this approach to avoid 'changed after checked' errors.\\n \\n Example: \\n form = new FormGroup({\\n first: new FormControl({value: 'Nancy', disabled: true}, Validators.required),\\n last: new FormControl('Drew', Validators.required)\\n });\\n \")}},{key:\"ngModelWarning\",value:function(e){console.warn(\"\\n It looks like you're using ngModel on the same form field as \".concat(e,\". \\n Support for using the ngModel input property and ngModelChange event with \\n reactive form directives has been deprecated in Angular v6 and will be removed \\n in Angular v7.\\n \\n For more information on this, see our API docs here:\\n https://angular.io/api/forms/\").concat(\"formControl\"===e?\"FormControlDirective\":\"FormControlName\",\"#use-with-ngmodel\\n \"))}}]),e}(),If={provide:Wh,useExisting:De((function(){return Af})),multi:!0},Af=((bf=function(){function e(t,n){_classCallCheck(this,e),this._renderer=t,this._elementRef=n,this._optionMap=new Map,this._idCounter=0,this.onChange=function(e){},this.onTouched=function(){},this._compareWith=So}return _createClass(e,[{key:\"writeValue\",value:function(e){this.value=e;var t=this._getOptionId(e);null==t&&this._renderer.setProperty(this._elementRef.nativeElement,\"selectedIndex\",-1);var n=function(e,t){return null==e?\"\".concat(t):(t&&\"object\"==typeof t&&(t=\"Object\"),\"\".concat(e,\": \").concat(t).slice(0,50))}(t,e);this._renderer.setProperty(this._elementRef.nativeElement,\"value\",n)}},{key:\"registerOnChange\",value:function(e){var t=this;this.onChange=function(n){t.value=t._getOptionValue(n),e(t.value)}}},{key:\"registerOnTouched\",value:function(e){this.onTouched=e}},{key:\"setDisabledState\",value:function(e){this._renderer.setProperty(this._elementRef.nativeElement,\"disabled\",e)}},{key:\"_registerOption\",value:function(){return(this._idCounter++).toString()}},{key:\"_getOptionId\",value:function(e){for(var t=0,n=Array.from(this._optionMap.keys());t-1)}}else t=function(e,t){e._setSelected(!1)};this._optionMap.forEach(t)}},{key:\"registerOnChange\",value:function(e){var t=this;this.onChange=function(n){var r=[];if(n.hasOwnProperty(\"selectedOptions\"))for(var i=n.selectedOptions,a=0;a1?\"path: '\".concat(e.path.join(\" -> \"),\"'\"):e.path[0]?\"name: '\".concat(e.path,\"'\"):\"unspecified name attribute\",new Error(\"\".concat(t,\" \").concat(n))}function Wf(e){return null!=e?cf.compose(e.map(mf)):null}function Uf(e){return null!=e?cf.composeAsync(e.map(pf)):null}function Bf(e,t){if(!e.hasOwnProperty(\"model\"))return!1;var n=e.model;return!!n.isFirstChange()||!So(t,n.currentValue)}var qf=[Bh,xf,Cf,Af,jf,Lf];function Gf(e,t){e._syncPendingControls(),t.forEach((function(e){var t=e.control;\"submit\"===t.updateOn&&t._pendingChange&&(e.viewToModelUpdate(t._pendingValue),t._pendingChange=!1)}))}function $f(e,t){if(!t)return null;Array.isArray(t)||Vf(e,\"Value accessor was not provided as an array for form control with\");var n=void 0,r=void 0,i=void 0;return t.forEach((function(t){var a;t.constructor===$h?n=t:(a=t,qf.some((function(e){return a.constructor===e}))?(r&&Vf(e,\"More than one built-in value accessor matches form control with\"),r=t):(i&&Vf(e,\"More than one custom value accessor matches form control with\"),i=t))})),i||r||n||(Vf(e,\"No valid value accessor for form control with\"),null)}function Jf(e,t){var n=e.indexOf(t);n>-1&&e.splice(n,1)}function Kf(e,t,n,r){Lr()&&\"never\"!==r&&((null!==r&&\"once\"!==r||t._ngModelWarningSentOnce)&&(\"always\"!==r||n._ngModelWarningSent)||(Ef.ngModelWarning(e),t._ngModelWarningSentOnce=!0,n._ngModelWarningSent=!0))}function Zf(e){var t=Xf(e)?e.validators:e;return Array.isArray(t)?Wf(t):t||null}function Qf(e,t){var n=Xf(t)?t.asyncValidators:e;return Array.isArray(n)?Uf(n):n||null}function Xf(e){return null!=e&&!Array.isArray(e)&&\"object\"==typeof e}var em,tm,nm,rm,im,am,om,sm,lm,um=function(){function e(t,n){_classCallCheck(this,e),this.validator=t,this.asyncValidator=n,this._onCollectionChange=function(){},this.pristine=!0,this.touched=!1,this._onDisabledChange=[]}return _createClass(e,[{key:\"setValidators\",value:function(e){this.validator=Zf(e)}},{key:\"setAsyncValidators\",value:function(e){this.asyncValidator=Qf(e)}},{key:\"clearValidators\",value:function(){this.validator=null}},{key:\"clearAsyncValidators\",value:function(){this.asyncValidator=null}},{key:\"markAsTouched\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.touched=!0,this._parent&&!e.onlySelf&&this._parent.markAsTouched(e)}},{key:\"markAllAsTouched\",value:function(){this.markAsTouched({onlySelf:!0}),this._forEachChild((function(e){return e.markAllAsTouched()}))}},{key:\"markAsUntouched\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.touched=!1,this._pendingTouched=!1,this._forEachChild((function(e){e.markAsUntouched({onlySelf:!0})})),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)}},{key:\"markAsDirty\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.pristine=!1,this._parent&&!e.onlySelf&&this._parent.markAsDirty(e)}},{key:\"markAsPristine\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.pristine=!0,this._pendingDirty=!1,this._forEachChild((function(e){e.markAsPristine({onlySelf:!0})})),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)}},{key:\"markAsPending\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.status=\"PENDING\",!1!==e.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!e.onlySelf&&this._parent.markAsPending(e)}},{key:\"disable\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this._parentMarkedDirty(e.onlySelf);this.status=\"DISABLED\",this.errors=null,this._forEachChild((function(t){t.disable(Object.assign(Object.assign({},e),{onlySelf:!0}))})),this._updateValue(),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(Object.assign(Object.assign({},e),{skipPristineCheck:t})),this._onDisabledChange.forEach((function(e){return e(!0)}))}},{key:\"enable\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=this._parentMarkedDirty(e.onlySelf);this.status=\"VALID\",this._forEachChild((function(t){t.enable(Object.assign(Object.assign({},e),{onlySelf:!0}))})),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent}),this._updateAncestors(Object.assign(Object.assign({},e),{skipPristineCheck:t})),this._onDisabledChange.forEach((function(e){return e(!1)}))}},{key:\"_updateAncestors\",value:function(e){this._parent&&!e.onlySelf&&(this._parent.updateValueAndValidity(e),e.skipPristineCheck||this._parent._updatePristine(),this._parent._updateTouched())}},{key:\"setParent\",value:function(e){this._parent=e}},{key:\"updateValueAndValidity\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),\"VALID\"!==this.status&&\"PENDING\"!==this.status||this._runAsyncValidator(e.emitEvent)),!1!==e.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!e.onlySelf&&this._parent.updateValueAndValidity(e)}},{key:\"_updateTreeValidity\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{emitEvent:!0};this._forEachChild((function(t){return t._updateTreeValidity(e)})),this.updateValueAndValidity({onlySelf:!0,emitEvent:e.emitEvent})}},{key:\"_setInitialStatus\",value:function(){this.status=this._allControlsDisabled()?\"DISABLED\":\"VALID\"}},{key:\"_runValidator\",value:function(){return this.validator?this.validator(this):null}},{key:\"_runAsyncValidator\",value:function(e){var t=this;if(this.asyncValidator){this.status=\"PENDING\";var n=hf(this.asyncValidator(this));this._asyncValidationSubscription=n.subscribe((function(n){return t.setErrors(n,{emitEvent:e})}))}}},{key:\"_cancelExistingSubscription\",value:function(){this._asyncValidationSubscription&&this._asyncValidationSubscription.unsubscribe()}},{key:\"setErrors\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.errors=e,this._updateControlsErrors(!1!==t.emitEvent)}},{key:\"get\",value:function(e){return function(e,t,n){if(null==t)return null;if(Array.isArray(t)||(t=t.split(\".\")),Array.isArray(t)&&0===t.length)return null;var r=e;return t.forEach((function(e){r=r instanceof dm?r.controls.hasOwnProperty(e)?r.controls[e]:null:r instanceof hm&&r.at(e)||null})),r}(this,e)}},{key:\"getError\",value:function(e,t){var n=t?this.get(t):this;return n&&n.errors?n.errors[e]:null}},{key:\"hasError\",value:function(e,t){return!!this.getError(e,t)}},{key:\"_updateControlsErrors\",value:function(e){this.status=this._calculateStatus(),e&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(e)}},{key:\"_initObservables\",value:function(){this.valueChanges=new bu,this.statusChanges=new bu}},{key:\"_calculateStatus\",value:function(){return this._allControlsDisabled()?\"DISABLED\":this.errors?\"INVALID\":this._anyControlsHaveStatus(\"PENDING\")?\"PENDING\":this._anyControlsHaveStatus(\"INVALID\")?\"INVALID\":\"VALID\"}},{key:\"_anyControlsHaveStatus\",value:function(e){return this._anyControls((function(t){return t.status===e}))}},{key:\"_anyControlsDirty\",value:function(){return this._anyControls((function(e){return e.dirty}))}},{key:\"_anyControlsTouched\",value:function(){return this._anyControls((function(e){return e.touched}))}},{key:\"_updatePristine\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.pristine=!this._anyControlsDirty(),this._parent&&!e.onlySelf&&this._parent._updatePristine(e)}},{key:\"_updateTouched\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.touched=this._anyControlsTouched(),this._parent&&!e.onlySelf&&this._parent._updateTouched(e)}},{key:\"_isBoxedValue\",value:function(e){return\"object\"==typeof e&&null!==e&&2===Object.keys(e).length&&\"value\"in e&&\"disabled\"in e}},{key:\"_registerOnCollectionChange\",value:function(e){this._onCollectionChange=e}},{key:\"_setUpdateStrategy\",value:function(e){Xf(e)&&null!=e.updateOn&&(this._updateOn=e.updateOn)}},{key:\"_parentMarkedDirty\",value:function(e){return!e&&this._parent&&this._parent.dirty&&!this._parent._anyControlsDirty()}},{key:\"parent\",get:function(){return this._parent}},{key:\"valid\",get:function(){return\"VALID\"===this.status}},{key:\"invalid\",get:function(){return\"INVALID\"===this.status}},{key:\"pending\",get:function(){return\"PENDING\"==this.status}},{key:\"disabled\",get:function(){return\"DISABLED\"===this.status}},{key:\"enabled\",get:function(){return\"DISABLED\"!==this.status}},{key:\"dirty\",get:function(){return!this.pristine}},{key:\"untouched\",get:function(){return!this.touched}},{key:\"updateOn\",get:function(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:\"change\"}},{key:\"root\",get:function(){for(var e=this;e._parent;)e=e._parent;return e}}]),e}(),cm=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,i=arguments.length>1?arguments[1]:void 0,a=arguments.length>2?arguments[2]:void 0;return _classCallCheck(this,n),(e=t.call(this,Zf(i),Qf(a,i)))._onChange=[],e._applyFormState(r),e._setUpdateStrategy(i),e.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),e._initObservables(),e}return _createClass(n,[{key:\"setValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.value=this._pendingValue=e,this._onChange.length&&!1!==n.emitModelToViewChange&&this._onChange.forEach((function(e){return e(t.value,!1!==n.emitViewToModelChange)})),this.updateValueAndValidity(n)}},{key:\"patchValue\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.setValue(e,t)}},{key:\"reset\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._applyFormState(e),this.markAsPristine(t),this.markAsUntouched(t),this.setValue(this.value,t),this._pendingChange=!1}},{key:\"_updateValue\",value:function(){}},{key:\"_anyControls\",value:function(e){return!1}},{key:\"_allControlsDisabled\",value:function(){return this.disabled}},{key:\"registerOnChange\",value:function(e){this._onChange.push(e)}},{key:\"_clearChangeFns\",value:function(){this._onChange=[],this._onDisabledChange=[],this._onCollectionChange=function(){}}},{key:\"registerOnDisabledChange\",value:function(e){this._onDisabledChange.push(e)}},{key:\"_forEachChild\",value:function(e){}},{key:\"_syncPendingControls\",value:function(){return!(\"submit\"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))}},{key:\"_applyFormState\",value:function(e){this._isBoxedValue(e)?(this.value=this._pendingValue=e.value,e.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=e}}]),n}(um),dm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,Zf(r),Qf(i,r))).controls=e,a._initObservables(),a._setUpdateStrategy(r),a._setUpControls(),a.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),a}return _createClass(n,[{key:\"registerControl\",value:function(e,t){return this.controls[e]?this.controls[e]:(this.controls[e]=t,t.setParent(this),t._registerOnCollectionChange(this._onCollectionChange),t)}},{key:\"addControl\",value:function(e,t){this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"removeControl\",value:function(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange((function(){})),delete this.controls[e],this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"setControl\",value:function(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange((function(){})),delete this.controls[e],t&&this.registerControl(e,t),this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"contains\",value:function(e){return this.controls.hasOwnProperty(e)&&this.controls[e].enabled}},{key:\"setValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._checkAllValuesPresent(e),Object.keys(e).forEach((function(r){t._throwIfControlMissing(r),t.controls[r].setValue(e[r],{onlySelf:!0,emitEvent:n.emitEvent})})),this.updateValueAndValidity(n)}},{key:\"patchValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};Object.keys(e).forEach((function(r){t.controls[r]&&t.controls[r].patchValue(e[r],{onlySelf:!0,emitEvent:n.emitEvent})})),this.updateValueAndValidity(n)}},{key:\"reset\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._forEachChild((function(n,r){n.reset(e[r],{onlySelf:!0,emitEvent:t.emitEvent})})),this._updatePristine(t),this._updateTouched(t),this.updateValueAndValidity(t)}},{key:\"getRawValue\",value:function(){return this._reduceChildren({},(function(e,t,n){return e[n]=t instanceof cm?t.value:t.getRawValue(),e}))}},{key:\"_syncPendingControls\",value:function(){var e=this._reduceChildren(!1,(function(e,t){return!!t._syncPendingControls()||e}));return e&&this.updateValueAndValidity({onlySelf:!0}),e}},{key:\"_throwIfControlMissing\",value:function(e){if(!Object.keys(this.controls).length)throw new Error(\"\\n There are no form controls registered with this group yet. If you're using ngModel,\\n you may want to check next tick (e.g. use setTimeout).\\n \");if(!this.controls[e])throw new Error(\"Cannot find form control with name: \".concat(e,\".\"))}},{key:\"_forEachChild\",value:function(e){var t=this;Object.keys(this.controls).forEach((function(n){return e(t.controls[n],n)}))}},{key:\"_setUpControls\",value:function(){var e=this;this._forEachChild((function(t){t.setParent(e),t._registerOnCollectionChange(e._onCollectionChange)}))}},{key:\"_updateValue\",value:function(){this.value=this._reduceValue()}},{key:\"_anyControls\",value:function(e){var t=this,n=!1;return this._forEachChild((function(r,i){n=n||t.contains(i)&&e(r)})),n}},{key:\"_reduceValue\",value:function(){var e=this;return this._reduceChildren({},(function(t,n,r){return(n.enabled||e.disabled)&&(t[r]=n.value),t}))}},{key:\"_reduceChildren\",value:function(e,t){var n=e;return this._forEachChild((function(e,r){n=t(n,e,r)})),n}},{key:\"_allControlsDisabled\",value:function(){for(var e=0,t=Object.keys(this.controls);e0||this.disabled}},{key:\"_checkAllValuesPresent\",value:function(e){this._forEachChild((function(t,n){if(void 0===e[n])throw new Error(\"Must supply a value for form control with name: '\".concat(n,\"'.\"))}))}}]),n}(um),hm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,Zf(r),Qf(i,r))).controls=e,a._initObservables(),a._setUpdateStrategy(r),a._setUpControls(),a.updateValueAndValidity({onlySelf:!0,emitEvent:!1}),a}return _createClass(n,[{key:\"at\",value:function(e){return this.controls[e]}},{key:\"push\",value:function(e){this.controls.push(e),this._registerControl(e),this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"insert\",value:function(e,t){this.controls.splice(e,0,t),this._registerControl(t),this.updateValueAndValidity()}},{key:\"removeAt\",value:function(e){this.controls[e]&&this.controls[e]._registerOnCollectionChange((function(){})),this.controls.splice(e,1),this.updateValueAndValidity()}},{key:\"setControl\",value:function(e,t){this.controls[e]&&this.controls[e]._registerOnCollectionChange((function(){})),this.controls.splice(e,1),t&&(this.controls.splice(e,0,t),this._registerControl(t)),this.updateValueAndValidity(),this._onCollectionChange()}},{key:\"setValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._checkAllValuesPresent(e),e.forEach((function(e,r){t._throwIfControlMissing(r),t.at(r).setValue(e,{onlySelf:!0,emitEvent:n.emitEvent})})),this.updateValueAndValidity(n)}},{key:\"patchValue\",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};e.forEach((function(e,r){t.at(r)&&t.at(r).patchValue(e,{onlySelf:!0,emitEvent:n.emitEvent})})),this.updateValueAndValidity(n)}},{key:\"reset\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this._forEachChild((function(n,r){n.reset(e[r],{onlySelf:!0,emitEvent:t.emitEvent})})),this._updatePristine(t),this._updateTouched(t),this.updateValueAndValidity(t)}},{key:\"getRawValue\",value:function(){return this.controls.map((function(e){return e instanceof cm?e.value:e.getRawValue()}))}},{key:\"clear\",value:function(){this.controls.length<1||(this._forEachChild((function(e){return e._registerOnCollectionChange((function(){}))})),this.controls.splice(0),this.updateValueAndValidity())}},{key:\"_syncPendingControls\",value:function(){var e=this.controls.reduce((function(e,t){return!!t._syncPendingControls()||e}),!1);return e&&this.updateValueAndValidity({onlySelf:!0}),e}},{key:\"_throwIfControlMissing\",value:function(e){if(!this.controls.length)throw new Error(\"\\n There are no form controls registered with this array yet. If you're using ngModel,\\n you may want to check next tick (e.g. use setTimeout).\\n \");if(!this.at(e))throw new Error(\"Cannot find form control at index \".concat(e))}},{key:\"_forEachChild\",value:function(e){this.controls.forEach((function(t,n){e(t,n)}))}},{key:\"_updateValue\",value:function(){var e=this;this.value=this.controls.filter((function(t){return t.enabled||e.disabled})).map((function(e){return e.value}))}},{key:\"_anyControls\",value:function(e){return this.controls.some((function(t){return t.enabled&&e(t)}))}},{key:\"_setUpControls\",value:function(){var e=this;this._forEachChild((function(t){return e._registerControl(t)}))}},{key:\"_checkAllValuesPresent\",value:function(e){this._forEachChild((function(t,n){if(void 0===e[n])throw new Error(\"Must supply a value for form control at index: \".concat(n,\".\"))}))}},{key:\"_allControlsDisabled\",value:function(){var e,t=_createForOfIteratorHelper(this.controls);try{for(t.s();!(e=t.n()).done;){if(e.value.enabled)return!1}}catch(n){t.e(n)}finally{t.f()}return this.controls.length>0||this.disabled}},{key:\"_registerControl\",value:function(e){e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange)}},{key:\"length\",get:function(){return this.controls.length}}]),n}(um),fm={provide:Kh,useExisting:De((function(){return pm}))},mm=Promise.resolve(null),pm=((tm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this)).submitted=!1,i._directives=[],i.ngSubmit=new bu,i.form=new dm({},Wf(e),Uf(r)),i}return _createClass(n,[{key:\"ngAfterViewInit\",value:function(){this._setUpdateStrategy()}},{key:\"addControl\",value:function(e){var t=this;mm.then((function(){var n=t._findContainer(e.path);e.control=n.registerControl(e.name,e.control),Hf(e.control,e),e.control.updateValueAndValidity({emitEvent:!1}),t._directives.push(e)}))}},{key:\"getControl\",value:function(e){return this.form.get(e.path)}},{key:\"removeControl\",value:function(e){var t=this;mm.then((function(){var n=t._findContainer(e.path);n&&n.removeControl(e.name),Jf(t._directives,e)}))}},{key:\"addFormGroup\",value:function(e){var t=this;mm.then((function(){var n=t._findContainer(e.path),r=new dm({});Nf(r,e),n.registerControl(e.name,r),r.updateValueAndValidity({emitEvent:!1})}))}},{key:\"removeFormGroup\",value:function(e){var t=this;mm.then((function(){var n=t._findContainer(e.path);n&&n.removeControl(e.name)}))}},{key:\"getFormGroup\",value:function(e){return this.form.get(e.path)}},{key:\"updateModel\",value:function(e,t){var n=this;mm.then((function(){n.form.get(e.path).setValue(t)}))}},{key:\"setValue\",value:function(e){this.control.setValue(e)}},{key:\"onSubmit\",value:function(e){return this.submitted=!0,Gf(this.form,this._directives),this.ngSubmit.emit(e),!1}},{key:\"onReset\",value:function(){this.resetForm()}},{key:\"resetForm\",value:function(e){this.form.reset(e),this.submitted=!1}},{key:\"_setUpdateStrategy\",value:function(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}},{key:\"_findContainer\",value:function(e){return e.pop(),e.length?this.form.get(e):this.form}},{key:\"formDirective\",get:function(){return this}},{key:\"control\",get:function(){return this.form}},{key:\"path\",get:function(){return[]}},{key:\"controls\",get:function(){return this.form.controls}}]),n}(Kh)).\\u0275fac=function(e){return new(e||tm)(Io(sf,10),Io(lf,10))},tm.\\u0275dir=Lt({type:tm,selectors:[[\"form\",3,\"ngNoForm\",\"\",3,\"formGroup\",\"\"],[\"ng-form\"],[\"\",\"ngForm\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"submit\",(function(e){return t.onSubmit(e)}))(\"reset\",(function(){return t.onReset()}))},inputs:{options:[\"ngFormOptions\",\"options\"]},outputs:{ngSubmit:\"ngSubmit\"},exportAs:[\"ngForm\"],features:[$s([fm]),Es]}),tm),_m=((em=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"ngOnInit\",value:function(){this._checkParentType(),this.formDirective.addFormGroup(this)}},{key:\"ngOnDestroy\",value:function(){this.formDirective&&this.formDirective.removeFormGroup(this)}},{key:\"_checkParentType\",value:function(){}},{key:\"control\",get:function(){return this.formDirective.getFormGroup(this)}},{key:\"path\",get:function(){return Rf(null==this.name?this.name:this.name.toString(),this._parent)}},{key:\"formDirective\",get:function(){return this._parent?this._parent.formDirective:null}},{key:\"validator\",get:function(){return Wf(this._validators)}},{key:\"asyncValidator\",get:function(){return Uf(this._asyncValidators)}}]),n}(Kh)).\\u0275fac=function(e){return vm(e||em)},em.\\u0275dir=Lt({type:em,features:[Es]}),em),vm=cr(_m),gm=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"modelParentException\",value:function(){throw new Error('\\n ngModel cannot be used to register form controls with a parent formGroup directive. Try using\\n formGroup\\'s partner directive \"formControlName\" instead. Example:\\n\\n '.concat(Df,'\\n\\n Or, if you\\'d like to avoid registering this form control, indicate that it\\'s standalone in ngModelOptions:\\n\\n Example:\\n\\n \\n
\\n \\n \\n
\\n '))}},{key:\"formGroupNameException\",value:function(){throw new Error(\"\\n ngModel cannot be used to register form controls with a parent formGroupName or formArrayName directive.\\n\\n Option 1: Use formControlName instead of ngModel (reactive strategy):\\n\\n \".concat(Of,\"\\n\\n Option 2: Update ngModel's parent be ngModelGroup (template-driven strategy):\\n\\n \").concat(Yf))}},{key:\"missingNameException\",value:function(){throw new Error('If ngModel is used within a form tag, either the name attribute must be set or the form\\n control must be defined as \\'standalone\\' in ngModelOptions.\\n\\n Example 1: \\n Example 2: ')}},{key:\"modelGroupParentException\",value:function(){throw new Error(\"\\n ngModelGroup cannot be used with a parent formGroup directive.\\n\\n Option 1: Use formGroupName instead of ngModelGroup (reactive strategy):\\n\\n \".concat(Of,\"\\n\\n Option 2: Use a regular form tag instead of the formGroup directive (template-driven strategy):\\n\\n \").concat(Yf))}}]),e}(),ym={provide:Kh,useExisting:De((function(){return bm}))},bm=((nm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this))._parent=e,a._validators=r,a._asyncValidators=i,a}return _createClass(n,[{key:\"_checkParentType\",value:function(){this._parent instanceof n||this._parent instanceof pm||gm.modelGroupParentException()}}]),n}(_m)).\\u0275fac=function(e){return new(e||nm)(Io(Kh,5),Io(sf,10),Io(lf,10))},nm.\\u0275dir=Lt({type:nm,selectors:[[\"\",\"ngModelGroup\",\"\"]],inputs:{name:[\"ngModelGroup\",\"name\"]},exportAs:[\"ngModelGroup\"],features:[$s([ym]),Es]}),nm),km={provide:tf,useExisting:De((function(){return Cm}))},wm=Promise.resolve(null),Cm=((im=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this)).control=new cm,o._registered=!1,o.update=new bu,o._parent=e,o._rawValidators=r||[],o._rawAsyncValidators=i||[],o.valueAccessor=$f(_assertThisInitialized(o),a),o}return _createClass(n,[{key:\"ngOnChanges\",value:function(e){this._checkForErrors(),this._registered||this._setUpControl(),\"isDisabled\"in e&&this._updateDisabled(e),Bf(e,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}},{key:\"ngOnDestroy\",value:function(){this.formDirective&&this.formDirective.removeControl(this)}},{key:\"viewToModelUpdate\",value:function(e){this.viewModel=e,this.update.emit(e)}},{key:\"_setUpControl\",value:function(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0}},{key:\"_setUpdateStrategy\",value:function(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)}},{key:\"_isStandalone\",value:function(){return!this._parent||!(!this.options||!this.options.standalone)}},{key:\"_setUpStandalone\",value:function(){Hf(this.control,this),this.control.updateValueAndValidity({emitEvent:!1})}},{key:\"_checkForErrors\",value:function(){this._isStandalone()||this._checkParentType(),this._checkName()}},{key:\"_checkParentType\",value:function(){!(this._parent instanceof bm)&&this._parent instanceof _m?gm.formGroupNameException():this._parent instanceof bm||this._parent instanceof pm||gm.modelParentException()}},{key:\"_checkName\",value:function(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()||this.name||gm.missingNameException()}},{key:\"_updateValue\",value:function(e){var t=this;wm.then((function(){t.control.setValue(e,{emitViewToModelChange:!1})}))}},{key:\"_updateDisabled\",value:function(e){var t=this,n=e.isDisabled.currentValue,r=\"\"===n||n&&\"false\"!==n;wm.then((function(){r&&!t.control.disabled?t.control.disable():!r&&t.control.disabled&&t.control.enable()}))}},{key:\"path\",get:function(){return this._parent?Rf(this.name,this._parent):[this.name]}},{key:\"formDirective\",get:function(){return this._parent?this._parent.formDirective:null}},{key:\"validator\",get:function(){return Wf(this._rawValidators)}},{key:\"asyncValidator\",get:function(){return Uf(this._rawAsyncValidators)}}]),n}(tf)).\\u0275fac=function(e){return new(e||im)(Io(Kh,9),Io(sf,10),Io(lf,10),Io(Wh,10))},im.\\u0275dir=Lt({type:im,selectors:[[\"\",\"ngModel\",\"\",3,\"formControlName\",\"\",3,\"formControl\",\"\"]],inputs:{name:\"name\",isDisabled:[\"disabled\",\"isDisabled\"],model:[\"ngModel\",\"model\"],options:[\"ngModelOptions\",\"options\"]},outputs:{update:\"ngModelChange\"},exportAs:[\"ngModel\"],features:[$s([km]),Es,Hs]}),im),Mm=((rm=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||rm)},rm.\\u0275dir=Lt({type:rm,selectors:[[\"form\",3,\"ngNoForm\",\"\",3,\"ngNativeValidate\",\"\"]],hostAttrs:[\"novalidate\",\"\"]}),rm),Sm=new Be(\"NgModelWithFormControlWarning\"),Lm={provide:tf,useExisting:De((function(){return Tm}))},Tm=((am=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this))._ngModelWarningConfig=a,o.update=new bu,o._ngModelWarningSent=!1,o._rawValidators=e||[],o._rawAsyncValidators=r||[],o.valueAccessor=$f(_assertThisInitialized(o),i),o}return _createClass(n,[{key:\"ngOnChanges\",value:function(e){this._isControlChanged(e)&&(Hf(this.form,this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this.form.updateValueAndValidity({emitEvent:!1})),Bf(e,this.viewModel)&&(Kf(\"formControl\",n,this,this._ngModelWarningConfig),this.form.setValue(this.model),this.viewModel=this.model)}},{key:\"viewToModelUpdate\",value:function(e){this.viewModel=e,this.update.emit(e)}},{key:\"_isControlChanged\",value:function(e){return e.hasOwnProperty(\"form\")}},{key:\"isDisabled\",set:function(e){Ef.disabledAttrWarning()}},{key:\"path\",get:function(){return[]}},{key:\"validator\",get:function(){return Wf(this._rawValidators)}},{key:\"asyncValidator\",get:function(){return Uf(this._rawAsyncValidators)}},{key:\"control\",get:function(){return this.form}}]),n}(tf)).\\u0275fac=function(e){return new(e||am)(Io(sf,10),Io(lf,10),Io(Wh,10),Io(Sm,8))},am.\\u0275dir=Lt({type:am,selectors:[[\"\",\"formControl\",\"\"]],inputs:{isDisabled:[\"disabled\",\"isDisabled\"],form:[\"formControl\",\"form\"],model:[\"ngModel\",\"model\"]},outputs:{update:\"ngModelChange\"},exportAs:[\"ngForm\"],features:[$s([Lm]),Es,Hs]}),am._ngModelWarningSentOnce=!1,am),xm={provide:Kh,useExisting:De((function(){return Dm}))},Dm=((om=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this))._validators=e,i._asyncValidators=r,i.submitted=!1,i.directives=[],i.form=null,i.ngSubmit=new bu,i}return _createClass(n,[{key:\"ngOnChanges\",value:function(e){this._checkFormPresent(),e.hasOwnProperty(\"form\")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations())}},{key:\"addControl\",value:function(e){var t=this.form.get(e.path);return Hf(t,e),t.updateValueAndValidity({emitEvent:!1}),this.directives.push(e),t}},{key:\"getControl\",value:function(e){return this.form.get(e.path)}},{key:\"removeControl\",value:function(e){Jf(this.directives,e)}},{key:\"addFormGroup\",value:function(e){var t=this.form.get(e.path);Nf(t,e),t.updateValueAndValidity({emitEvent:!1})}},{key:\"removeFormGroup\",value:function(e){}},{key:\"getFormGroup\",value:function(e){return this.form.get(e.path)}},{key:\"addFormArray\",value:function(e){var t=this.form.get(e.path);Nf(t,e),t.updateValueAndValidity({emitEvent:!1})}},{key:\"removeFormArray\",value:function(e){}},{key:\"getFormArray\",value:function(e){return this.form.get(e.path)}},{key:\"updateModel\",value:function(e,t){this.form.get(e.path).setValue(t)}},{key:\"onSubmit\",value:function(e){return this.submitted=!0,Gf(this.form,this.directives),this.ngSubmit.emit(e),!1}},{key:\"onReset\",value:function(){this.resetForm()}},{key:\"resetForm\",value:function(e){this.form.reset(e),this.submitted=!1}},{key:\"_updateDomValue\",value:function(){var e=this;this.directives.forEach((function(t){var n=e.form.get(t.path);t.control!==n&&(function(e,t){t.valueAccessor.registerOnChange((function(){return zf(t)})),t.valueAccessor.registerOnTouched((function(){return zf(t)})),t._rawValidators.forEach((function(e){e.registerOnValidatorChange&&e.registerOnValidatorChange(null)})),t._rawAsyncValidators.forEach((function(e){e.registerOnValidatorChange&&e.registerOnValidatorChange(null)})),e&&e._clearChangeFns()}(t.control,t),n&&Hf(n,t),t.control=n)})),this.form._updateTreeValidity({emitEvent:!1})}},{key:\"_updateRegistrations\",value:function(){var e=this;this.form._registerOnCollectionChange((function(){return e._updateDomValue()})),this._oldForm&&this._oldForm._registerOnCollectionChange((function(){})),this._oldForm=this.form}},{key:\"_updateValidators\",value:function(){var e=Wf(this._validators);this.form.validator=cf.compose([this.form.validator,e]);var t=Uf(this._asyncValidators);this.form.asyncValidator=cf.composeAsync([this.form.asyncValidator,t])}},{key:\"_checkFormPresent\",value:function(){this.form||Ef.missingFormException()}},{key:\"formDirective\",get:function(){return this}},{key:\"control\",get:function(){return this.form}},{key:\"path\",get:function(){return[]}}]),n}(Kh)).\\u0275fac=function(e){return new(e||om)(Io(sf,10),Io(lf,10))},om.\\u0275dir=Lt({type:om,selectors:[[\"\",\"formGroup\",\"\"]],hostBindings:function(e,t){1&e&&qo(\"submit\",(function(e){return t.onSubmit(e)}))(\"reset\",(function(){return t.onReset()}))},inputs:{form:[\"formGroup\",\"form\"]},outputs:{ngSubmit:\"ngSubmit\"},exportAs:[\"ngForm\"],features:[$s([xm]),Es,Hs]}),om),Om={provide:Kh,useExisting:De((function(){return Ym}))},Ym=((sm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this))._parent=e,a._validators=r,a._asyncValidators=i,a}return _createClass(n,[{key:\"_checkParentType\",value:function(){Am(this._parent)&&Ef.groupParentException()}}]),n}(_m)).\\u0275fac=function(e){return new(e||sm)(Io(Kh,13),Io(sf,10),Io(lf,10))},sm.\\u0275dir=Lt({type:sm,selectors:[[\"\",\"formGroupName\",\"\"]],inputs:{name:[\"formGroupName\",\"name\"]},features:[$s([Om]),Es]}),sm),Em={provide:Kh,useExisting:De((function(){return Im}))},Im=((lm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this))._parent=e,a._validators=r,a._asyncValidators=i,a}return _createClass(n,[{key:\"ngOnInit\",value:function(){this._checkParentType(),this.formDirective.addFormArray(this)}},{key:\"ngOnDestroy\",value:function(){this.formDirective&&this.formDirective.removeFormArray(this)}},{key:\"_checkParentType\",value:function(){Am(this._parent)&&Ef.arrayParentException()}},{key:\"control\",get:function(){return this.formDirective.getFormArray(this)}},{key:\"formDirective\",get:function(){return this._parent?this._parent.formDirective:null}},{key:\"path\",get:function(){return Rf(null==this.name?this.name:this.name.toString(),this._parent)}},{key:\"validator\",get:function(){return Wf(this._validators)}},{key:\"asyncValidator\",get:function(){return Uf(this._asyncValidators)}}]),n}(Kh)).\\u0275fac=function(e){return new(e||lm)(Io(Kh,13),Io(sf,10),Io(lf,10))},lm.\\u0275dir=Lt({type:lm,selectors:[[\"\",\"formArrayName\",\"\"]],inputs:{name:[\"formArrayName\",\"name\"]},features:[$s([Em]),Es]}),lm);function Am(e){return!(e instanceof Ym||e instanceof Dm||e instanceof Im)}var Pm,jm,Rm,Hm,Fm,Nm,zm={provide:tf,useExisting:De((function(){return Vm}))},Vm=((Pm=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this))._ngModelWarningConfig=o,s._added=!1,s.update=new bu,s._ngModelWarningSent=!1,s._parent=e,s._rawValidators=r||[],s._rawAsyncValidators=i||[],s.valueAccessor=$f(_assertThisInitialized(s),a),s}return _createClass(n,[{key:\"ngOnChanges\",value:function(e){this._added||this._setUpControl(),Bf(e,this.viewModel)&&(Kf(\"formControlName\",n,this,this._ngModelWarningConfig),this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}},{key:\"ngOnDestroy\",value:function(){this.formDirective&&this.formDirective.removeControl(this)}},{key:\"viewToModelUpdate\",value:function(e){this.viewModel=e,this.update.emit(e)}},{key:\"_checkParentType\",value:function(){!(this._parent instanceof Ym)&&this._parent instanceof _m?Ef.ngModelGroupException():this._parent instanceof Ym||this._parent instanceof Dm||this._parent instanceof Im||Ef.controlParentException()}},{key:\"_setUpControl\",value:function(){this._checkParentType(),this.control=this.formDirective.addControl(this),this.control.disabled&&this.valueAccessor.setDisabledState&&this.valueAccessor.setDisabledState(!0),this._added=!0}},{key:\"isDisabled\",set:function(e){Ef.disabledAttrWarning()}},{key:\"path\",get:function(){return Rf(null==this.name?this.name:this.name.toString(),this._parent)}},{key:\"formDirective\",get:function(){return this._parent?this._parent.formDirective:null}},{key:\"validator\",get:function(){return Wf(this._rawValidators)}},{key:\"asyncValidator\",get:function(){return Uf(this._rawAsyncValidators)}}]),n}(tf)).\\u0275fac=function(e){return new(e||Pm)(Io(Kh,13),Io(sf,10),Io(lf,10),Io(Wh,10),Io(Sm,8))},Pm.\\u0275dir=Lt({type:Pm,selectors:[[\"\",\"formControlName\",\"\"]],inputs:{isDisabled:[\"disabled\",\"isDisabled\"],name:[\"formControlName\",\"name\"],model:[\"ngModel\",\"model\"]},outputs:{update:\"ngModelChange\"},features:[$s([zm]),Es,Hs]}),Pm._ngModelWarningSentOnce=!1,Pm),Wm={provide:sf,useExisting:De((function(){return Um})),multi:!0},Um=((Nm=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"validate\",value:function(e){return this.required?cf.required(e):null}},{key:\"registerOnValidatorChange\",value:function(e){this._onChange=e}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=null!=e&&!1!==e&&\"false\"!==\"\".concat(e),this._onChange&&this._onChange()}}]),e}()).\\u0275fac=function(e){return new(e||Nm)},Nm.\\u0275dir=Lt({type:Nm,selectors:[[\"\",\"required\",\"\",\"formControlName\",\"\",3,\"type\",\"checkbox\"],[\"\",\"required\",\"\",\"formControl\",\"\",3,\"type\",\"checkbox\"],[\"\",\"required\",\"\",\"ngModel\",\"\",3,\"type\",\"checkbox\"]],hostVars:1,hostBindings:function(e,t){2&e&&Do(\"required\",t.required?\"\":null)},inputs:{required:\"required\"},features:[$s([Wm])]}),Nm),Bm=((Fm=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Fm}),Fm.\\u0275inj=ve({factory:function(e){return new(e||Fm)}}),Fm),qm=((Hm=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"group\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=this._reduceControls(e),r=null,i=null,a=void 0;return null!=t&&(function(e){return void 0!==e.asyncValidators||void 0!==e.validators||void 0!==e.updateOn}(t)?(r=null!=t.validators?t.validators:null,i=null!=t.asyncValidators?t.asyncValidators:null,a=null!=t.updateOn?t.updateOn:void 0):(r=null!=t.validator?t.validator:null,i=null!=t.asyncValidator?t.asyncValidator:null)),new dm(n,{asyncValidators:i,updateOn:a,validators:r})}},{key:\"control\",value:function(e,t,n){return new cm(e,t,n)}},{key:\"array\",value:function(e,t,n){var r=this,i=e.map((function(e){return r._createControl(e)}));return new hm(i,t,n)}},{key:\"_reduceControls\",value:function(e){var t=this,n={};return Object.keys(e).forEach((function(r){n[r]=t._createControl(e[r])})),n}},{key:\"_createControl\",value:function(e){return e instanceof cm||e instanceof dm||e instanceof hm?e:Array.isArray(e)?this.control(e[0],e.length>1?e[1]:null,e.length>2?e[2]:null):this.control(e)}}]),e}()).\\u0275fac=function(e){return new(e||Hm)},Hm.\\u0275prov=_e({token:Hm,factory:Hm.\\u0275fac}),Hm),Gm=((Rm=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Rm}),Rm.\\u0275inj=ve({factory:function(e){return new(e||Rm)},providers:[Sf],imports:[Bm]}),Rm),$m=((jm=function(){function e(){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"withConfig\",value:function(t){return{ngModule:e,providers:[{provide:Sm,useValue:t.warnOnNgModelWithFormControl}]}}}]),e}()).\\u0275mod=Mt({type:jm}),jm.\\u0275inj=ve({factory:function(e){return new(e||jm)},providers:[qm,Sf],imports:[Bm]}),jm);function Jm(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r1&&void 0!==arguments[1]?arguments[1]:0;if(this.closed)return this;this.state=e;var n=this.id,r=this.scheduler;return null!=n&&(this.id=this.recycleAsyncId(r,n,t)),this.pending=!0,this.delay=t,this.id=this.id||this.requestAsyncId(r,this.id,t),this}},{key:\"requestAsyncId\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return setInterval(e.flush.bind(e,this),n)}},{key:\"recycleAsyncId\",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;if(null!==n&&this.delay===n&&!1===this.pending)return t;clearInterval(t)}},{key:\"execute\",value:function(e,t){if(this.closed)return new Error(\"executing a cancelled action\");this.pending=!1;var n=this._execute(e,t);if(n)return n;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}},{key:\"_execute\",value:function(e,t){var n=!1,r=void 0;try{this.work(e)}catch(i){n=!0,r=!!i&&i||new Error(i)}if(n)return this.unsubscribe(),r}},{key:\"_unsubscribe\",value:function(){var e=this.id,t=this.scheduler,n=t.actions,r=n.indexOf(this);this.work=null,this.state=null,this.pending=!1,this.scheduler=null,-1!==r&&n.splice(r,1),null!=e&&(this.id=this.recycleAsyncId(t,e,null)),this.delay=null}}]),n}(function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){return _classCallCheck(this,n),t.call(this)}return _createClass(n,[{key:\"schedule\",value:function(e){arguments.length>1&&void 0!==arguments[1]&&arguments[1];return this}}]),n}(h)),ep=function(){var e=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e.now;_classCallCheck(this,e),this.SchedulerAction=t,this.now=n}return _createClass(e,[{key:\"schedule\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2?arguments[2]:void 0;return new this.SchedulerAction(this,e).schedule(n,t)}}]),e}();return e.now=function(){return Date.now()},e}(),tp=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:ep.now;return _classCallCheck(this,n),(r=t.call(this,e,(function(){return n.delegate&&n.delegate!==_assertThisInitialized(r)?n.delegate.now():i()}))).actions=[],r.active=!1,r.scheduled=void 0,r}return _createClass(n,[{key:\"schedule\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=arguments.length>2?arguments[2]:void 0;return n.delegate&&n.delegate!==this?n.delegate.schedule(e,t,r):_get(_getPrototypeOf(n.prototype),\"schedule\",this).call(this,e,t,r)}},{key:\"flush\",value:function(e){var t=this.actions;if(this.active)t.push(e);else{var n;this.active=!0;do{if(n=e.execute(e.state,e.delay))break}while(e=t.shift());if(this.active=!1,n){for(;e=t.shift();)e.unsubscribe();throw n}}}}]),n}(ep),np=new tp(Xm);function rp(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:np;return function(n){return n.lift(new ip(e,t))}}var ip=function(){function e(t,n){_classCallCheck(this,e),this.dueTime=t,this.scheduler=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new ap(e,this.dueTime,this.scheduler))}}]),e}(),ap=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).dueTime=r,a.scheduler=i,a.debouncedSubscription=null,a.lastValue=null,a.hasValue=!1,a}return _createClass(n,[{key:\"_next\",value:function(e){this.clearDebounce(),this.lastValue=e,this.hasValue=!0,this.add(this.debouncedSubscription=this.scheduler.schedule(op,this.dueTime,this))}},{key:\"_complete\",value:function(){this.debouncedNext(),this.destination.complete()}},{key:\"debouncedNext\",value:function(){if(this.clearDebounce(),this.hasValue){var e=this.lastValue;this.lastValue=null,this.hasValue=!1,this.destination.next(e)}}},{key:\"clearDebounce\",value:function(){var e=this.debouncedSubscription;null!==e&&(this.remove(e),e.unsubscribe(),this.debouncedSubscription=null)}}]),n}(p);function op(e){e.debouncedNext()}var sp=function(){function e(){return Error.call(this),this.message=\"argument out of range\",this.name=\"ArgumentOutOfRangeError\",this}return e.prototype=Object.create(Error.prototype),e}(),lp=new w((function(e){return e.complete()}));function up(e){return e?function(e){return new w((function(t){return e.schedule((function(){return t.complete()}))}))}(e):lp}function cp(e){return function(t){return 0===e?up():t.lift(new hp(e))}}var dp,hp=function(){function e(t){if(_classCallCheck(this,e),this.total=t,this.total<0)throw new sp}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new fp(e,this.total))}}]),e}(),fp=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).total=r,i.count=0,i}return _createClass(n,[{key:\"_next\",value:function(e){var t=this.total,n=++this.count;n<=t&&(this.destination.next(e),n===t&&(this.destination.complete(),this.unsubscribe()))}}]),n}(p);function mp(e){return null!=e&&\"false\"!==\"\".concat(e)}function pp(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return function(e){return!isNaN(parseFloat(e))&&!isNaN(Number(e))}(e)?Number(e):t}function _p(e){return Array.isArray(e)?e:[e]}function vp(e){return null==e?\"\":\"string\"==typeof e?e:\"\".concat(e,\"px\")}function gp(e){return e instanceof Qs?e.nativeElement:e}try{dp=\"undefined\"!=typeof Intl&&Intl.v8BreakIterator}catch(ZR){dp=!1}var yp,bp,kp,wp,Cp=((kp=function e(t){_classCallCheck(this,e),this._platformId=t,this.isBrowser=this._platformId?zd(this._platformId):\"object\"==typeof document&&!!document,this.EDGE=this.isBrowser&&/(edge)/i.test(navigator.userAgent),this.TRIDENT=this.isBrowser&&/(msie|trident)/i.test(navigator.userAgent),this.BLINK=this.isBrowser&&!(!window.chrome&&!dp)&&\"undefined\"!=typeof CSS&&!this.EDGE&&!this.TRIDENT,this.WEBKIT=this.isBrowser&&/AppleWebKit/i.test(navigator.userAgent)&&!this.BLINK&&!this.EDGE&&!this.TRIDENT,this.IOS=this.isBrowser&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!(\"MSStream\"in window),this.FIREFOX=this.isBrowser&&/(firefox|minefield)/i.test(navigator.userAgent),this.ANDROID=this.isBrowser&&/android/i.test(navigator.userAgent)&&!this.TRIDENT,this.SAFARI=this.isBrowser&&/safari/i.test(navigator.userAgent)&&this.WEBKIT}).\\u0275fac=function(e){return new(e||kp)(et($u,8))},kp.\\u0275prov=_e({factory:function(){return new kp(et($u,8))},token:kp,providedIn:\"root\"}),kp),Mp=((bp=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:bp}),bp.\\u0275inj=ve({factory:function(e){return new(e||bp)}}),bp),Sp=[\"color\",\"button\",\"checkbox\",\"date\",\"datetime-local\",\"email\",\"file\",\"hidden\",\"image\",\"month\",\"number\",\"password\",\"radio\",\"range\",\"reset\",\"search\",\"submit\",\"tel\",\"text\",\"time\",\"url\",\"week\"];function Lp(){if(yp)return yp;if(\"object\"!=typeof document||!document)return yp=new Set(Sp);var e=document.createElement(\"input\");return yp=new Set(Sp.filter((function(t){return e.setAttribute(\"type\",t),e.type===t})))}function Tp(e){return function(){if(null==wp&&\"undefined\"!=typeof window)try{window.addEventListener(\"test\",null,Object.defineProperty({},\"passive\",{get:function(){return wp=!0}}))}finally{wp=wp||!1}return wp}()?e:!!e.capture}var xp,Dp=function(){var e={NORMAL:0,NEGATED:1,INVERTED:2};return e[e.NORMAL]=\"NORMAL\",e[e.NEGATED]=\"NEGATED\",e[e.INVERTED]=\"INVERTED\",e}();function Op(){if(\"object\"!=typeof document||!document)return Dp.NORMAL;if(!xp){var e=document.createElement(\"div\"),t=e.style;e.dir=\"rtl\",t.height=\"1px\",t.width=\"1px\",t.overflow=\"auto\",t.visibility=\"hidden\",t.pointerEvents=\"none\",t.position=\"absolute\";var n=document.createElement(\"div\"),r=n.style;r.width=\"2px\",r.height=\"1px\",e.appendChild(n),document.body.appendChild(e),xp=Dp.NORMAL,0===e.scrollLeft&&(e.scrollLeft=1,xp=0===e.scrollLeft?Dp.NEGATED:Dp.INVERTED),e.parentNode.removeChild(e)}return xp}var Yp,Ep,Ip,Ap,Pp,jp=((Ap=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"create\",value:function(e){return\"undefined\"==typeof MutationObserver?null:new MutationObserver(e)}}]),e}()).\\u0275fac=function(e){return new(e||Ap)},Ap.\\u0275prov=_e({factory:function(){return new Ap},token:Ap,providedIn:\"root\"}),Ap),Rp=((Ip=function(){function e(t){_classCallCheck(this,e),this._mutationObserverFactory=t,this._observedElements=new Map}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){var e=this;this._observedElements.forEach((function(t,n){return e._cleanupObserver(n)}))}},{key:\"observe\",value:function(e){var t=this,n=gp(e);return new w((function(e){var r=t._observeElement(n).subscribe(e);return function(){r.unsubscribe(),t._unobserveElement(n)}}))}},{key:\"_observeElement\",value:function(e){if(this._observedElements.has(e))this._observedElements.get(e).count++;else{var t=new x,n=this._mutationObserverFactory.create((function(e){return t.next(e)}));n&&n.observe(e,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(e,{observer:n,stream:t,count:1})}return this._observedElements.get(e).stream}},{key:\"_unobserveElement\",value:function(e){this._observedElements.has(e)&&(this._observedElements.get(e).count--,this._observedElements.get(e).count||this._cleanupObserver(e))}},{key:\"_cleanupObserver\",value:function(e){if(this._observedElements.has(e)){var t=this._observedElements.get(e),n=t.observer,r=t.stream;n&&n.disconnect(),r.complete(),this._observedElements.delete(e)}}}]),e}()).\\u0275fac=function(e){return new(e||Ip)(et(jp))},Ip.\\u0275prov=_e({factory:function(){return new Ip(et(jp))},token:Ip,providedIn:\"root\"}),Ip),Hp=((Ep=function(){function e(t,n,r){_classCallCheck(this,e),this._contentObserver=t,this._elementRef=n,this._ngZone=r,this.event=new bu,this._disabled=!1,this._currentSubscription=null}return _createClass(e,[{key:\"ngAfterContentInit\",value:function(){this._currentSubscription||this.disabled||this._subscribe()}},{key:\"ngOnDestroy\",value:function(){this._unsubscribe()}},{key:\"_subscribe\",value:function(){var e=this;this._unsubscribe();var t=this._contentObserver.observe(this._elementRef);this._ngZone.runOutsideAngular((function(){e._currentSubscription=(e.debounce?t.pipe(rp(e.debounce)):t).subscribe(e.event)}))}},{key:\"_unsubscribe\",value:function(){this._currentSubscription&&this._currentSubscription.unsubscribe()}},{key:\"disabled\",get:function(){return this._disabled},set:function(e){this._disabled=mp(e),this._disabled?this._unsubscribe():this._subscribe()}},{key:\"debounce\",get:function(){return this._debounce},set:function(e){this._debounce=pp(e),this._subscribe()}}]),e}()).\\u0275fac=function(e){return new(e||Ep)(Io(Rp),Io(Qs),Io(cc))},Ep.\\u0275dir=Lt({type:Ep,selectors:[[\"\",\"cdkObserveContent\",\"\"]],inputs:{disabled:[\"cdkObserveContentDisabled\",\"disabled\"],debounce:\"debounce\"},outputs:{event:\"cdkObserveContent\"},exportAs:[\"cdkObserveContent\"]}),Ep),Fp=((Yp=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Yp}),Yp.\\u0275inj=ve({factory:function(e){return new(e||Yp)},providers:[jp]}),Yp),Np=function(){function e(t){var n=this;_classCallCheck(this,e),this._items=t,this._activeItemIndex=-1,this._activeItem=null,this._wrap=!1,this._letterKeyStream=new x,this._typeaheadSubscription=h.EMPTY,this._vertical=!0,this._allowedModifierKeys=[],this._skipPredicateFn=function(e){return e.disabled},this._pressedLetters=[],this.tabOut=new x,this.change=new x,t instanceof wu&&t.changes.subscribe((function(e){if(n._activeItem){var t=e.toArray().indexOf(n._activeItem);t>-1&&t!==n._activeItemIndex&&(n._activeItemIndex=t)}}))}return _createClass(e,[{key:\"skipPredicate\",value:function(e){return this._skipPredicateFn=e,this}},{key:\"withWrap\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._wrap=e,this}},{key:\"withVerticalOrientation\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._vertical=e,this}},{key:\"withHorizontalOrientation\",value:function(e){return this._horizontal=e,this}},{key:\"withAllowedModifierKeys\",value:function(e){return this._allowedModifierKeys=e,this}},{key:\"withTypeAhead\",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:200;if(this._items.length&&this._items.some((function(e){return\"function\"!=typeof e.getLabel})))throw Error(\"ListKeyManager items in typeahead mode must implement the `getLabel` method.\");return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe(Km((function(t){return e._pressedLetters.push(t)})),rp(t),Gd((function(){return e._pressedLetters.length>0})),F((function(){return e._pressedLetters.join(\"\")}))).subscribe((function(t){for(var n=e._getItemsArray(),r=1;r-1}));switch(n){case 9:return void this.tabOut.next();case 40:if(this._vertical&&r){this.setNextItemActive();break}return;case 38:if(this._vertical&&r){this.setPreviousItemActive();break}return;case 39:if(this._horizontal&&r){\"rtl\"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case 37:if(this._horizontal&&r){\"rtl\"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;default:return void((r||Jm(e,\"shiftKey\"))&&(e.key&&1===e.key.length?this._letterKeyStream.next(e.key.toLocaleUpperCase()):(n>=65&&n<=90||n>=48&&n<=57)&&this._letterKeyStream.next(String.fromCharCode(n))))}this._pressedLetters=[],e.preventDefault()}},{key:\"isTyping\",value:function(){return this._pressedLetters.length>0}},{key:\"setFirstItemActive\",value:function(){this._setActiveItemByIndex(0,1)}},{key:\"setLastItemActive\",value:function(){this._setActiveItemByIndex(this._items.length-1,-1)}},{key:\"setNextItemActive\",value:function(){this._activeItemIndex<0?this.setFirstItemActive():this._setActiveItemByDelta(1)}},{key:\"setPreviousItemActive\",value:function(){this._activeItemIndex<0&&this._wrap?this.setLastItemActive():this._setActiveItemByDelta(-1)}},{key:\"updateActiveItem\",value:function(e){var t=this._getItemsArray(),n=\"number\"==typeof e?e:t.indexOf(e),r=t[n];this._activeItem=null==r?null:r,this._activeItemIndex=n}},{key:\"_setActiveItemByDelta\",value:function(e){this._wrap?this._setActiveInWrapMode(e):this._setActiveInDefaultMode(e)}},{key:\"_setActiveInWrapMode\",value:function(e){for(var t=this._getItemsArray(),n=1;n<=t.length;n++){var r=(this._activeItemIndex+e*n+t.length)%t.length;if(!this._skipPredicateFn(t[r]))return void this.setActiveItem(r)}}},{key:\"_setActiveInDefaultMode\",value:function(e){this._setActiveItemByIndex(this._activeItemIndex+e,e)}},{key:\"_setActiveItemByIndex\",value:function(e,t){var n=this._getItemsArray();if(n[e]){for(;this._skipPredicateFn(n[e]);)if(!n[e+=t])return;this.setActiveItem(e)}}},{key:\"_getItemsArray\",value:function(){return this._items instanceof wu?this._items.toArray():this._items}},{key:\"activeItemIndex\",get:function(){return this._activeItemIndex}},{key:\"activeItem\",get:function(){return this._activeItem}}]),e}(),zp=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"setActiveItem\",value:function(e){this.activeItem&&this.activeItem.setInactiveStyles(),_get(_getPrototypeOf(n.prototype),\"setActiveItem\",this).call(this,e),this.activeItem&&this.activeItem.setActiveStyles()}}]),n}(Np),Vp=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e;return _classCallCheck(this,n),(e=t.apply(this,arguments))._origin=\"program\",e}return _createClass(n,[{key:\"setFocusOrigin\",value:function(e){return this._origin=e,this}},{key:\"setActiveItem\",value:function(e){_get(_getPrototypeOf(n.prototype),\"setActiveItem\",this).call(this,e),this.activeItem&&this.activeItem.focus(this._origin)}}]),n}(Np),Wp=((Pp=function(){function e(t){_classCallCheck(this,e),this._platform=t}return _createClass(e,[{key:\"isDisabled\",value:function(e){return e.hasAttribute(\"disabled\")}},{key:\"isVisible\",value:function(e){return function(e){return!!(e.offsetWidth||e.offsetHeight||\"function\"==typeof e.getClientRects&&e.getClientRects().length)}(e)&&\"visible\"===getComputedStyle(e).visibility}},{key:\"isTabbable\",value:function(e){if(!this._platform.isBrowser)return!1;var t,n=function(e){try{return e.frameElement}catch(ZR){return null}}((t=e).ownerDocument&&t.ownerDocument.defaultView||window);if(n){var r=n&&n.nodeName.toLowerCase();if(-1===Bp(n))return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&\"object\"===r)return!1;if((this._platform.BLINK||this._platform.WEBKIT)&&!this.isVisible(n))return!1}var i=e.nodeName.toLowerCase(),a=Bp(e);if(e.hasAttribute(\"contenteditable\"))return-1!==a;if(\"iframe\"===i)return!1;if(\"audio\"===i){if(!e.hasAttribute(\"controls\"))return!1;if(this._platform.BLINK)return!0}if(\"video\"===i){if(!e.hasAttribute(\"controls\")&&this._platform.TRIDENT)return!1;if(this._platform.BLINK||this._platform.FIREFOX)return!0}return(\"object\"!==i||!this._platform.BLINK&&!this._platform.WEBKIT)&&!(this._platform.WEBKIT&&this._platform.IOS&&!function(e){var t=e.nodeName.toLowerCase(),n=\"input\"===t&&e.type;return\"text\"===n||\"password\"===n||\"select\"===t||\"textarea\"===t}(e))&&e.tabIndex>=0}},{key:\"isFocusable\",value:function(e){return function(e){return!function(e){return function(e){return\"input\"==e.nodeName.toLowerCase()}(e)&&\"hidden\"==e.type}(e)&&(function(e){var t=e.nodeName.toLowerCase();return\"input\"===t||\"select\"===t||\"button\"===t||\"textarea\"===t}(e)||function(e){return function(e){return\"a\"==e.nodeName.toLowerCase()}(e)&&e.hasAttribute(\"href\")}(e)||e.hasAttribute(\"contenteditable\")||Up(e))}(e)&&!this.isDisabled(e)&&this.isVisible(e)}}]),e}()).\\u0275fac=function(e){return new(e||Pp)(et(Cp))},Pp.\\u0275prov=_e({factory:function(){return new Pp(et(Cp))},token:Pp,providedIn:\"root\"}),Pp);function Up(e){if(!e.hasAttribute(\"tabindex\")||void 0===e.tabIndex)return!1;var t=e.getAttribute(\"tabindex\");return\"-32768\"!=t&&!(!t||isNaN(parseInt(t,10)))}function Bp(e){if(!Up(e))return null;var t=parseInt(e.getAttribute(\"tabindex\")||\"\",10);return isNaN(t)?-1:t}var qp,Gp,$p,Jp=function(){function e(t,n,r,i){var a=this,o=arguments.length>4&&void 0!==arguments[4]&&arguments[4];_classCallCheck(this,e),this._element=t,this._checker=n,this._ngZone=r,this._document=i,this._hasAttached=!1,this.startAnchorListener=function(){return a.focusLastTabbableElement()},this.endAnchorListener=function(){return a.focusFirstTabbableElement()},this._enabled=!0,o||this.attachAnchors()}return _createClass(e,[{key:\"destroy\",value:function(){var e=this._startAnchor,t=this._endAnchor;e&&(e.removeEventListener(\"focus\",this.startAnchorListener),e.parentNode&&e.parentNode.removeChild(e)),t&&(t.removeEventListener(\"focus\",this.endAnchorListener),t.parentNode&&t.parentNode.removeChild(t)),this._startAnchor=this._endAnchor=null}},{key:\"attachAnchors\",value:function(){var e=this;return!!this._hasAttached||(this._ngZone.runOutsideAngular((function(){e._startAnchor||(e._startAnchor=e._createAnchor(),e._startAnchor.addEventListener(\"focus\",e.startAnchorListener)),e._endAnchor||(e._endAnchor=e._createAnchor(),e._endAnchor.addEventListener(\"focus\",e.endAnchorListener))})),this._element.parentNode&&(this._element.parentNode.insertBefore(this._startAnchor,this._element),this._element.parentNode.insertBefore(this._endAnchor,this._element.nextSibling),this._hasAttached=!0),this._hasAttached)}},{key:\"focusInitialElementWhenReady\",value:function(){var e=this;return new Promise((function(t){e._executeOnStable((function(){return t(e.focusInitialElement())}))}))}},{key:\"focusFirstTabbableElementWhenReady\",value:function(){var e=this;return new Promise((function(t){e._executeOnStable((function(){return t(e.focusFirstTabbableElement())}))}))}},{key:\"focusLastTabbableElementWhenReady\",value:function(){var e=this;return new Promise((function(t){e._executeOnStable((function(){return t(e.focusLastTabbableElement())}))}))}},{key:\"_getRegionBoundary\",value:function(e){for(var t=this._element.querySelectorAll(\"[cdk-focus-region-\".concat(e,\"], \")+\"[cdkFocusRegion\".concat(e,\"], \")+\"[cdk-focus-\".concat(e,\"]\")),n=0;n=0;n--){var r=t[n].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(t[n]):null;if(r)return r}return null}},{key:\"_createAnchor\",value:function(){var e=this._document.createElement(\"div\");return this._toggleAnchorTabIndex(this._enabled,e),e.classList.add(\"cdk-visually-hidden\"),e.classList.add(\"cdk-focus-trap-anchor\"),e.setAttribute(\"aria-hidden\",\"true\"),e}},{key:\"_toggleAnchorTabIndex\",value:function(e,t){e?t.setAttribute(\"tabindex\",\"0\"):t.removeAttribute(\"tabindex\")}},{key:\"_executeOnStable\",value:function(e){this._ngZone.isStable?e():this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe(e)}},{key:\"enabled\",get:function(){return this._enabled},set:function(e){this._enabled=e,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(e,this._startAnchor),this._toggleAnchorTabIndex(e,this._endAnchor))}}]),e}(),Kp=((qp=function(){function e(t,n,r){_classCallCheck(this,e),this._checker=t,this._ngZone=n,this._document=r}return _createClass(e,[{key:\"create\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return new Jp(e,this._checker,this._ngZone,this._document,t)}}]),e}()).\\u0275fac=function(e){return new(e||qp)(et(Wp),et(cc),et(Wc))},qp.\\u0275prov=_e({factory:function(){return new qp(et(Wp),et(cc),et(Wc))},token:qp,providedIn:\"root\"}),qp),Zp=new Be(\"liveAnnouncerElement\",{providedIn:\"root\",factory:function(){return null}}),Qp=new Be(\"LIVE_ANNOUNCER_DEFAULT_OPTIONS\"),Xp=((Gp=function(){function e(t,n,r,i){_classCallCheck(this,e),this._ngZone=n,this._defaultOptions=i,this._document=r,this._liveElement=t||this._createLiveElement()}return _createClass(e,[{key:\"announce\",value:function(e){for(var t,n,r,i=this,a=this._defaultOptions,o=arguments.length,s=new Array(o>1?o-1:0),l=1;l1&&void 0!==arguments[1]&&arguments[1];if(!this._platform.isBrowser)return Bd(null);var r=gp(e);if(this._elementInfo.has(r)){var i=this._elementInfo.get(r);return i.checkChildren=n,i.subject.asObservable()}var a={unlisten:function(){},checkChildren:n,subject:new x};this._elementInfo.set(r,a),this._incrementMonitoredElementCount();var o=function(e){return t._onFocus(e,r)},s=function(e){return t._onBlur(e,r)};return this._ngZone.runOutsideAngular((function(){r.addEventListener(\"focus\",o,!0),r.addEventListener(\"blur\",s,!0)})),a.unlisten=function(){r.removeEventListener(\"focus\",o,!0),r.removeEventListener(\"blur\",s,!0)},a.subject.asObservable()}},{key:\"stopMonitoring\",value:function(e){var t=gp(e),n=this._elementInfo.get(t);n&&(n.unlisten(),n.subject.complete(),this._setClasses(t),this._elementInfo.delete(t),this._decrementMonitoredElementCount())}},{key:\"focusVia\",value:function(e,t,n){var r=gp(e);this._setOriginForCurrentEventQueue(t),\"function\"==typeof r.focus&&r.focus(n)}},{key:\"ngOnDestroy\",value:function(){var e=this;this._elementInfo.forEach((function(t,n){return e.stopMonitoring(n)}))}},{key:\"_toggleClass\",value:function(e,t,n){n?e.classList.add(t):e.classList.remove(t)}},{key:\"_setClasses\",value:function(e,t){this._elementInfo.get(e)&&(this._toggleClass(e,\"cdk-focused\",!!t),this._toggleClass(e,\"cdk-touch-focused\",\"touch\"===t),this._toggleClass(e,\"cdk-keyboard-focused\",\"keyboard\"===t),this._toggleClass(e,\"cdk-mouse-focused\",\"mouse\"===t),this._toggleClass(e,\"cdk-program-focused\",\"program\"===t))}},{key:\"_setOriginForCurrentEventQueue\",value:function(e){var t=this;this._ngZone.runOutsideAngular((function(){t._origin=e,t._originTimeoutId=setTimeout((function(){return t._origin=null}),1)}))}},{key:\"_wasCausedByTouch\",value:function(e){var t=e.target;return this._lastTouchTarget instanceof Node&&t instanceof Node&&(t===this._lastTouchTarget||t.contains(this._lastTouchTarget))}},{key:\"_onFocus\",value:function(e,t){var n=this._elementInfo.get(t);if(n&&(n.checkChildren||t===e.target)){var r=this._origin;r||(r=this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:this._wasCausedByTouch(e)?\"touch\":\"program\"),this._setClasses(t,r),this._emitOrigin(n.subject,r),this._lastFocusOrigin=r}}},{key:\"_onBlur\",value:function(e,t){var n=this._elementInfo.get(t);!n||n.checkChildren&&e.relatedTarget instanceof Node&&t.contains(e.relatedTarget)||(this._setClasses(t),this._emitOrigin(n.subject,null))}},{key:\"_emitOrigin\",value:function(e,t){this._ngZone.run((function(){return e.next(t)}))}},{key:\"_incrementMonitoredElementCount\",value:function(){var e=this;1==++this._monitoredElementCount&&this._platform.isBrowser&&this._ngZone.runOutsideAngular((function(){document.addEventListener(\"keydown\",e._documentKeydownListener,e_),document.addEventListener(\"mousedown\",e._documentMousedownListener,e_),document.addEventListener(\"touchstart\",e._documentTouchstartListener,e_),window.addEventListener(\"focus\",e._windowFocusListener)}))}},{key:\"_decrementMonitoredElementCount\",value:function(){--this._monitoredElementCount||(document.removeEventListener(\"keydown\",this._documentKeydownListener,e_),document.removeEventListener(\"mousedown\",this._documentMousedownListener,e_),document.removeEventListener(\"touchstart\",this._documentTouchstartListener,e_),window.removeEventListener(\"focus\",this._windowFocusListener),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._touchTimeoutId),clearTimeout(this._originTimeoutId))}}]),e}()).\\u0275fac=function(e){return new(e||$p)(et(cc),et(Cp))},$p.\\u0275prov=_e({factory:function(){return new $p(et(cc),et(Cp))},token:$p,providedIn:\"root\"}),$p);function n_(e){return 0===e.buttons}var r_,i_,a_,o_,s_,l_,u_,c_=((r_=function(){function e(t,n){_classCallCheck(this,e),this._platform=t,this._document=n}return _createClass(e,[{key:\"getHighContrastMode\",value:function(){if(!this._platform.isBrowser)return 0;var e=this._document.createElement(\"div\");e.style.backgroundColor=\"rgb(1,2,3)\",e.style.position=\"absolute\",this._document.body.appendChild(e);var t=(this._document.defaultView.getComputedStyle(e).backgroundColor||\"\").replace(/ /g,\"\");switch(this._document.body.removeChild(e),t){case\"rgb(0,0,0)\":return 2;case\"rgb(255,255,255)\":return 1}return 0}},{key:\"_applyBodyHighContrastModeCssClasses\",value:function(){if(this._platform.isBrowser&&this._document.body){var e=this._document.body.classList;e.remove(\"cdk-high-contrast-active\"),e.remove(\"cdk-high-contrast-black-on-white\"),e.remove(\"cdk-high-contrast-white-on-black\");var t=this.getHighContrastMode();1===t?(e.add(\"cdk-high-contrast-active\"),e.add(\"cdk-high-contrast-black-on-white\")):2===t&&(e.add(\"cdk-high-contrast-active\"),e.add(\"cdk-high-contrast-white-on-black\"))}}}]),e}()).\\u0275fac=function(e){return new(e||r_)(et(Cp),et(Wc))},r_.\\u0275prov=_e({factory:function(){return new r_(et(Cp),et(Wc))},token:r_,providedIn:\"root\"}),r_),d_=new Be(\"cdk-dir-doc\",{providedIn:\"root\",factory:function(){return tt(Wc)}}),h_=((a_=function(){function e(t){if(_classCallCheck(this,e),this.value=\"ltr\",this.change=new bu,t){var n=t.documentElement?t.documentElement.dir:null,r=(t.body?t.body.dir:null)||n;this.value=\"ltr\"===r||\"rtl\"===r?r:\"ltr\"}}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){this.change.complete()}}]),e}()).\\u0275fac=function(e){return new(e||a_)(et(d_,8))},a_.\\u0275prov=_e({factory:function(){return new a_(et(d_,8))},token:a_,providedIn:\"root\"}),a_),f_=((i_=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:i_}),i_.\\u0275inj=ve({factory:function(e){return new(e||i_)}}),i_),m_=new al(\"9.0.1\"),p_=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"getProperty\",value:function(e,t){return e[t]}},{key:\"log\",value:function(e){window.console&&window.console.log&&window.console.log(e)}},{key:\"logGroup\",value:function(e){window.console&&window.console.group&&window.console.group(e)}},{key:\"logGroupEnd\",value:function(){window.console&&window.console.groupEnd&&window.console.groupEnd()}},{key:\"onAndCancel\",value:function(e,t,n){return e.addEventListener(t,n,!1),function(){e.removeEventListener(t,n,!1)}}},{key:\"dispatchEvent\",value:function(e,t){e.dispatchEvent(t)}},{key:\"remove\",value:function(e){return e.parentNode&&e.parentNode.removeChild(e),e}},{key:\"getValue\",value:function(e){return e.value}},{key:\"createElement\",value:function(e,t){return(t=t||this.getDefaultDocument()).createElement(e)}},{key:\"createHtmlDocument\",value:function(){return document.implementation.createHTMLDocument(\"fakeTitle\")}},{key:\"getDefaultDocument\",value:function(){return document}},{key:\"isElementNode\",value:function(e){return e.nodeType===Node.ELEMENT_NODE}},{key:\"isShadowRoot\",value:function(e){return e instanceof DocumentFragment}},{key:\"getGlobalEventTarget\",value:function(e,t){return\"window\"===t?window:\"document\"===t?e:\"body\"===t?e.body:null}},{key:\"getHistory\",value:function(){return window.history}},{key:\"getLocation\",value:function(){return window.location}},{key:\"getBaseHref\",value:function(e){var t,n=__||(__=document.querySelector(\"base\"))?__.getAttribute(\"href\"):null;return null==n?null:(t=n,o_||(o_=document.createElement(\"a\")),o_.setAttribute(\"href\",t),\"/\"===o_.pathname.charAt(0)?o_.pathname:\"/\"+o_.pathname)}},{key:\"resetBaseElement\",value:function(){__=null}},{key:\"getUserAgent\",value:function(){return window.navigator.userAgent}},{key:\"performanceNow\",value:function(){return window.performance&&window.performance.now?window.performance.now():(new Date).getTime()}},{key:\"supportsCookies\",value:function(){return!0}},{key:\"getCookie\",value:function(e){return vd(document.cookie,e)}}],[{key:\"makeCurrent\",value:function(){var e;e=new n,Nc||(Nc=e)}}]),n}(function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.call(this)}return _createClass(n,[{key:\"supportsDOMEvents\",value:function(){return!0}}]),n}(function(){return function e(){_classCallCheck(this,e)}}())),__=null,v_=new Be(\"TRANSITION_ID\"),g_=[{provide:Vu,useFactory:function(e,t,n){return function(){n.get(Wu).donePromise.then((function(){var n=zc();Array.prototype.slice.apply(t.querySelectorAll(\"style[ng-transition]\")).filter((function(t){return t.getAttribute(\"ng-transition\")===e})).forEach((function(e){return n.remove(e)}))}))}},deps:[v_,Wc,vo],multi:!0}],y_=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"addToWindow\",value:function(e){Re.getAngularTestability=function(t){var n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],r=e.findTestabilityInTree(t,n);if(null==r)throw new Error(\"Could not find testability for element.\");return r},Re.getAllAngularTestabilities=function(){return e.getAllTestabilities()},Re.getAllAngularRootElements=function(){return e.getAllRootElements()},Re.frameworkStabilizers||(Re.frameworkStabilizers=[]),Re.frameworkStabilizers.push((function(e){var t=Re.getAllAngularTestabilities(),n=t.length,r=!1,i=function(t){r=r||t,0==--n&&e(r)};t.forEach((function(e){e.whenStable(i)}))}))}},{key:\"findTestabilityInTree\",value:function(e,t,n){if(null==t)return null;var r=e.getTestability(t);return null!=r?r:n?zc().isShadowRoot(t)?this.findTestabilityInTree(e,t.host,!0):this.findTestabilityInTree(e,t.parentElement,!0):null}}],[{key:\"init\",value:function(){var t;t=new e,kc=t}}]),e}(),b_=new Be(\"EventManagerPlugins\"),k_=((s_=function(){function e(t,n){var r=this;_classCallCheck(this,e),this._zone=n,this._eventNameToPlugin=new Map,t.forEach((function(e){return e.manager=r})),this._plugins=t.slice().reverse()}return _createClass(e,[{key:\"addEventListener\",value:function(e,t,n){return this._findPluginFor(t).addEventListener(e,t,n)}},{key:\"addGlobalEventListener\",value:function(e,t,n){return this._findPluginFor(t).addGlobalEventListener(e,t,n)}},{key:\"getZone\",value:function(){return this._zone}},{key:\"_findPluginFor\",value:function(e){var t=this._eventNameToPlugin.get(e);if(t)return t;for(var n=this._plugins,r=0;r-1}}]),n}(w_),E_.\\u0275fac=function(e){return new(e||E_)(et(Wc),et(U_),et(Ku),et(B_,8))},E_.\\u0275prov=_e({token:E_,factory:E_.\\u0275fac}),E_),multi:!0,deps:[Wc,U_,Ku,[new ce,B_]]},{provide:U_,useClass:q_,deps:[]}],$_=((I_=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:I_}),I_.\\u0275inj=ve({factory:function(e){return new(e||I_)},providers:G_}),I_),J_=[\"alt\",\"control\",\"meta\",\"shift\"],K_={\"\\b\":\"Backspace\",\"\\t\":\"Tab\",\"\\x7f\":\"Delete\",\"\\x1b\":\"Escape\",Del:\"Delete\",Esc:\"Escape\",Left:\"ArrowLeft\",Right:\"ArrowRight\",Up:\"ArrowUp\",Down:\"ArrowDown\",Menu:\"ContextMenu\",Scroll:\"ScrollLock\",Win:\"OS\"},Z_={A:\"1\",B:\"2\",C:\"3\",D:\"4\",E:\"5\",F:\"6\",G:\"7\",H:\"8\",I:\"9\",J:\"*\",K:\"+\",M:\"-\",N:\".\",O:\"/\",\"`\":\"0\",\"\\x90\":\"NumLock\"},Q_={alt:function(e){return e.altKey},control:function(e){return e.ctrlKey},meta:function(e){return e.metaKey},shift:function(e){return e.shiftKey}},X_=((j_=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){return _classCallCheck(this,n),t.call(this,e)}return _createClass(n,[{key:\"supports\",value:function(e){return null!=n.parseEventName(e)}},{key:\"addEventListener\",value:function(e,t,r){var i=n.parseEventName(t),a=n.eventCallback(i.fullKey,r,this.manager.getZone());return this.manager.getZone().runOutsideAngular((function(){return zc().onAndCancel(e,i.domEventName,a)}))}}],[{key:\"parseEventName\",value:function(e){var t=e.toLowerCase().split(\".\"),r=t.shift();if(0===t.length||\"keydown\"!==r&&\"keyup\"!==r)return null;var i=n._normalizeKey(t.pop()),a=\"\";if(J_.forEach((function(e){var n=t.indexOf(e);n>-1&&(t.splice(n,1),a+=e+\".\")})),a+=i,0!=t.length||0===i.length)return null;var o={};return o.domEventName=r,o.fullKey=a,o}},{key:\"getEventFullKey\",value:function(e){var t=\"\",n=function(e){var t=e.key;if(null==t){if(null==(t=e.keyIdentifier))return\"Unidentified\";t.startsWith(\"U+\")&&(t=String.fromCharCode(parseInt(t.substring(2),16)),3===e.location&&Z_.hasOwnProperty(t)&&(t=Z_[t]))}return K_[t]||t}(e);return\" \"===(n=n.toLowerCase())?n=\"space\":\".\"===n&&(n=\"dot\"),J_.forEach((function(r){r!=n&&(0,Q_[r])(e)&&(t+=r+\".\")})),t+=n}},{key:\"eventCallback\",value:function(e,t,r){return function(i){n.getEventFullKey(i)===e&&r.runGuarded((function(){return t(i)}))}}},{key:\"_normalizeKey\",value:function(e){switch(e){case\"esc\":return\"escape\";default:return e}}}]),n}(w_)).\\u0275fac=function(e){return new(e||j_)(et(Wc))},j_.\\u0275prov=_e({token:j_,factory:j_.\\u0275fac}),j_),ev=((P_=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||P_)},P_.\\u0275prov=_e({factory:function(){return et(tv)},token:P_,providedIn:\"root\"}),P_),tv=((A_=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this))._doc=e,r}return _createClass(n,[{key:\"sanitize\",value:function(e,t){if(null==t)return null;switch(e){case Kr.NONE:return t;case Kr.HTML:return wr(t,\"HTML\")?kr(t):$r(this._doc,String(t));case Kr.STYLE:return wr(t,\"Style\")?kr(t):Xr(t);case Kr.SCRIPT:if(wr(t,\"Script\"))return kr(t);throw new Error(\"unsafe value used in a script context\");case Kr.URL:return Cr(t),wr(t,\"URL\")?kr(t):Or(String(t));case Kr.RESOURCE_URL:if(wr(t,\"ResourceURL\"))return kr(t);throw new Error(\"unsafe value used in a resource URL context (see http://g.co/ng/security#xss)\");default:throw new Error(\"Unexpected SecurityContext \".concat(e,\" (see http://g.co/ng/security#xss)\"))}}},{key:\"bypassSecurityTrustHtml\",value:function(e){return new _r(e)}},{key:\"bypassSecurityTrustStyle\",value:function(e){return new vr(e)}},{key:\"bypassSecurityTrustScript\",value:function(e){return new gr(e)}},{key:\"bypassSecurityTrustUrl\",value:function(e){return new yr(e)}},{key:\"bypassSecurityTrustResourceUrl\",value:function(e){return new br(e)}}]),n}(ev)).\\u0275fac=function(e){return new(e||A_)(et(Wc))},A_.\\u0275prov=_e({factory:function(){return e=et(qe),new tv(e.get(Wc));var e},token:A_,providedIn:\"root\"}),A_),nv=Sc(Rc,\"browser\",[{provide:$u,useValue:\"browser\"},{provide:Gu,useValue:function(){p_.makeCurrent(),y_.init()},multi:!0},{provide:Wc,useFactory:function(){return function(e){Rt=e}(document),document},deps:[]}]),rv=[[],{provide:no,useValue:\"root\"},{provide:mr,useFactory:function(){return new mr},deps:[]},{provide:b_,useClass:V_,multi:!0,deps:[Wc,cc,$u]},{provide:b_,useClass:X_,multi:!0,deps:[Wc]},[],{provide:H_,useClass:H_,deps:[k_,M_,Uu]},{provide:el,useExisting:H_},{provide:C_,useExisting:M_},{provide:M_,useClass:M_,deps:[Wc]},{provide:yc,useClass:yc,deps:[cc]},{provide:k_,useClass:k_,deps:[b_,cc]},[]],iv=((R_=function(){function e(t){if(_classCallCheck(this,e),t)throw new Error(\"BrowserModule has already been loaded. If you need access to common directives such as NgIf and NgFor from a lazy loaded module, import CommonModule instead.\")}return _createClass(e,null,[{key:\"withServerTransition\",value:function(t){return{ngModule:e,providers:[{provide:Uu,useValue:t.appId},{provide:v_,useExisting:Uu},g_]}}}]),e}()).\\u0275mod=Mt({type:R_}),R_.\\u0275inj=ve({factory:function(e){return new(e||R_)(et(R_,12))},providers:rv,imports:[Nd,Fc]}),R_);function av(){return $(1)}function ov(){return av()(Bd.apply(void 0,arguments))}function sv(){for(var e=arguments.length,t=new Array(e),n=0;n1&&void 0!==arguments[1]?arguments[1]:null;return{type:4,styles:t,timings:e}}function dv(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return{type:2,steps:e,options:t}}function hv(e){return{type:6,styles:e,offset:null}}function fv(e,t,n){return{type:0,name:e,styles:t,options:n}}function mv(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return{type:1,expr:e,animation:t,options:n}}function pv(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return{type:11,selector:e,animation:t,options:n}}function _v(e){Promise.resolve(null).then(e)}var vv=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;_classCallCheck(this,e),this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this.parentPlayer=null,this.totalTime=t+n}return _createClass(e,[{key:\"_onFinish\",value:function(){this._finished||(this._finished=!0,this._onDoneFns.forEach((function(e){return e()})),this._onDoneFns=[])}},{key:\"onStart\",value:function(e){this._onStartFns.push(e)}},{key:\"onDone\",value:function(e){this._onDoneFns.push(e)}},{key:\"onDestroy\",value:function(e){this._onDestroyFns.push(e)}},{key:\"hasStarted\",value:function(){return this._started}},{key:\"init\",value:function(){}},{key:\"play\",value:function(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}},{key:\"triggerMicrotask\",value:function(){var e=this;_v((function(){return e._onFinish()}))}},{key:\"_onStart\",value:function(){this._onStartFns.forEach((function(e){return e()})),this._onStartFns=[]}},{key:\"pause\",value:function(){}},{key:\"restart\",value:function(){}},{key:\"finish\",value:function(){this._onFinish()}},{key:\"destroy\",value:function(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach((function(e){return e()})),this._onDestroyFns=[])}},{key:\"reset\",value:function(){}},{key:\"setPosition\",value:function(e){}},{key:\"getPosition\",value:function(){return 0}},{key:\"triggerCallback\",value:function(e){var t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach((function(e){return e()})),t.length=0}}]),e}(),gv=function(){function e(t){var n=this;_classCallCheck(this,e),this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=t;var r=0,i=0,a=0,o=this.players.length;0==o?_v((function(){return n._onFinish()})):this.players.forEach((function(e){e.onDone((function(){++r==o&&n._onFinish()})),e.onDestroy((function(){++i==o&&n._onDestroy()})),e.onStart((function(){++a==o&&n._onStart()}))})),this.totalTime=this.players.reduce((function(e,t){return Math.max(e,t.totalTime)}),0)}return _createClass(e,[{key:\"_onFinish\",value:function(){this._finished||(this._finished=!0,this._onDoneFns.forEach((function(e){return e()})),this._onDoneFns=[])}},{key:\"init\",value:function(){this.players.forEach((function(e){return e.init()}))}},{key:\"onStart\",value:function(e){this._onStartFns.push(e)}},{key:\"_onStart\",value:function(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach((function(e){return e()})),this._onStartFns=[])}},{key:\"onDone\",value:function(e){this._onDoneFns.push(e)}},{key:\"onDestroy\",value:function(e){this._onDestroyFns.push(e)}},{key:\"hasStarted\",value:function(){return this._started}},{key:\"play\",value:function(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach((function(e){return e.play()}))}},{key:\"pause\",value:function(){this.players.forEach((function(e){return e.pause()}))}},{key:\"restart\",value:function(){this.players.forEach((function(e){return e.restart()}))}},{key:\"finish\",value:function(){this._onFinish(),this.players.forEach((function(e){return e.finish()}))}},{key:\"destroy\",value:function(){this._onDestroy()}},{key:\"_onDestroy\",value:function(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach((function(e){return e.destroy()})),this._onDestroyFns.forEach((function(e){return e()})),this._onDestroyFns=[])}},{key:\"reset\",value:function(){this.players.forEach((function(e){return e.reset()})),this._destroyed=!1,this._finished=!1,this._started=!1}},{key:\"setPosition\",value:function(e){var t=e*this.totalTime;this.players.forEach((function(e){var n=e.totalTime?Math.min(1,t/e.totalTime):1;e.setPosition(n)}))}},{key:\"getPosition\",value:function(){var e=0;return this.players.forEach((function(t){var n=t.getPosition();e=Math.min(n,e)})),e}},{key:\"beforeDestroy\",value:function(){this.players.forEach((function(e){e.beforeDestroy&&e.beforeDestroy()}))}},{key:\"triggerCallback\",value:function(e){var t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach((function(e){return e()})),t.length=0}}]),e}();function yv(){return\"undefined\"!=typeof process&&\"[object process]\"==={}.toString.call(process)}function bv(e){switch(e.length){case 0:return new vv;case 1:return e[0];default:return new gv(e)}}function kv(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},o=[],s=[],l=-1,u=null;if(r.forEach((function(e){var n=e.offset,r=n==l,c=r&&u||{};Object.keys(e).forEach((function(n){var r=n,s=e[n];if(\"offset\"!==n)switch(r=t.normalizePropertyName(r,o),s){case\"!\":s=i[n];break;case\"*\":s=a[n];break;default:s=t.normalizeStyleValue(n,r,s,o)}c[r]=s})),r||s.push(c),u=c,l=n})),o.length){var c=\"\\n - \";throw new Error(\"Unable to animate due to the following errors:\".concat(c).concat(o.join(c)))}return s}function wv(e,t,n,r){switch(t){case\"start\":e.onStart((function(){return r(n&&Cv(n,\"start\",e))}));break;case\"done\":e.onDone((function(){return r(n&&Cv(n,\"done\",e))}));break;case\"destroy\":e.onDestroy((function(){return r(n&&Cv(n,\"destroy\",e))}))}}function Cv(e,t,n){var r=n.totalTime,i=Mv(e.element,e.triggerName,e.fromState,e.toState,t||e.phaseName,null==r?e.totalTime:r,!!n.disabled),a=e._data;return null!=a&&(i._data=a),i}function Mv(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:\"\",a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0,o=arguments.length>6?arguments[6]:void 0;return{element:e,triggerName:t,fromState:n,toState:r,phaseName:i,totalTime:a,disabled:!!o}}function Sv(e,t,n){var r;return e instanceof Map?(r=e.get(t))||e.set(t,r=n):(r=e[t])||(r=e[t]=n),r}function Lv(e){var t=e.indexOf(\":\");return[e.substring(1,t),e.substr(t+1)]}var Tv=function(e,t){return!1},xv=function(e,t){return!1},Dv=function(e,t,n){return[]},Ov=yv();(Ov||\"undefined\"!=typeof Element)&&(Tv=function(e,t){return e.contains(t)},xv=function(){if(Ov||Element.prototype.matches)return function(e,t){return e.matches(t)};var e=Element.prototype,t=e.matchesSelector||e.mozMatchesSelector||e.msMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;return t?function(e,n){return t.apply(e,[n])}:xv}(),Dv=function(e,t,n){var r=[];if(n)r.push.apply(r,_toConsumableArray(e.querySelectorAll(t)));else{var i=e.querySelector(t);i&&r.push(i)}return r});var Yv=null,Ev=!1;function Iv(e){Yv||(Yv=(\"undefined\"!=typeof document?document.body:null)||{},Ev=!!Yv.style&&\"WebkitAppearance\"in Yv.style);var t=!0;return Yv.style&&!function(e){return\"ebkit\"==e.substring(1,6)}(e)&&(!(t=e in Yv.style)&&Ev)&&(t=\"Webkit\"+e.charAt(0).toUpperCase()+e.substr(1)in Yv.style),t}var Av=xv,Pv=Tv,jv=Dv;function Rv(e){var t={};return Object.keys(e).forEach((function(n){var r=n.replace(/([a-z])([A-Z])/g,\"$1-$2\");t[r]=e[n]})),t}var Hv,Fv=((Hv=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"validateStyleProperty\",value:function(e){return Iv(e)}},{key:\"matchesElement\",value:function(e,t){return Av(e,t)}},{key:\"containsElement\",value:function(e,t){return Pv(e,t)}},{key:\"query\",value:function(e,t,n){return jv(e,t,n)}},{key:\"computeStyle\",value:function(e,t,n){return n||\"\"}},{key:\"animate\",value:function(e,t,n,r,i){return arguments.length>5&&void 0!==arguments[5]&&arguments[5],arguments.length>6&&arguments[6],new vv(n,r)}}]),e}()).\\u0275fac=function(e){return new(e||Hv)},Hv.\\u0275prov=_e({token:Hv,factory:Hv.\\u0275fac}),Hv),Nv=function(){var e=function e(){_classCallCheck(this,e)};return e.NOOP=new Fv,e}();function zv(e){if(\"number\"==typeof e)return e;var t=e.match(/^(-?[\\.\\d]+)(m?s)/);return!t||t.length<2?0:Vv(parseFloat(t[1]),t[2])}function Vv(e,t){switch(t){case\"s\":return 1e3*e;default:return e}}function Wv(e,t,n){return e.hasOwnProperty(\"duration\")?e:function(e,t,n){var r,i=0,a=\"\";if(\"string\"==typeof e){var o=e.match(/^(-?[\\.\\d]+)(m?s)(?:\\s+(-?[\\.\\d]+)(m?s))?(?:\\s+([-a-z]+(?:\\(.+?\\))?))?$/i);if(null===o)return t.push('The provided timing value \"'.concat(e,'\" is invalid.')),{duration:0,delay:0,easing:\"\"};r=Vv(parseFloat(o[1]),o[2]);var s=o[3];null!=s&&(i=Vv(parseFloat(s),o[4]));var l=o[5];l&&(a=l)}else r=e;if(!n){var u=!1,c=t.length;r<0&&(t.push(\"Duration values below 0 are not allowed for this animation step.\"),u=!0),i<0&&(t.push(\"Delay values below 0 are not allowed for this animation step.\"),u=!0),u&&t.splice(c,0,'The provided timing value \"'.concat(e,'\" is invalid.'))}return{duration:r,delay:i,easing:a}}(e,t,n)}function Uv(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Object.keys(e).forEach((function(n){t[n]=e[n]})),t}function Bv(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(t)for(var r in e)n[r]=e[r];else Uv(e,n);return n}function qv(e,t,n){return n?t+\":\"+n+\";\":\"\"}function Gv(e){for(var t=\"\",n=0;n *\";case\":leave\":return\"* => void\";case\":increment\":return function(e,t){return parseFloat(t)>parseFloat(e)};case\":decrement\":return function(e,t){return parseFloat(t) *\"}}(e,n);if(\"function\"==typeof r)return void t.push(r);e=r}var i=e.match(/^(\\*|[-\\w]+)\\s*()\\s*(\\*|[-\\w]+)$/);if(null==i||i.length<4)return n.push('The provided transition expression \"'.concat(e,'\" is not supported')),t;var a=i[1],o=i[2],s=i[3];t.push(ug(a,s)),\"<\"!=o[0]||\"*\"==a&&\"*\"==s||t.push(ug(s,a))}(e,i,r)})):i.push(n),i),animation:a,queryCount:t.queryCount,depCount:t.depCount,options:pg(e.options)}}},{key:\"visitSequence\",value:function(e,t){var n=this;return{type:2,steps:e.steps.map((function(e){return ag(n,e,t)})),options:pg(e.options)}}},{key:\"visitGroup\",value:function(e,t){var n=this,r=t.currentTime,i=0,a=e.steps.map((function(e){t.currentTime=r;var a=ag(n,e,t);return i=Math.max(i,t.currentTime),a}));return t.currentTime=i,{type:3,steps:a,options:pg(e.options)}}},{key:\"visitAnimate\",value:function(e,t){var n,r=function(e,t){var n=null;if(e.hasOwnProperty(\"duration\"))n=e;else if(\"number\"==typeof e)return _g(Wv(e,t).duration,0,\"\");var r=e;if(r.split(/\\s+/).some((function(e){return\"{\"==e.charAt(0)&&\"{\"==e.charAt(1)}))){var i=_g(0,0,\"\");return i.dynamic=!0,i.strValue=r,i}return _g((n=n||Wv(r,t)).duration,n.delay,n.easing)}(e.timings,t.errors);t.currentAnimateTimings=r;var i=e.styles?e.styles:hv({});if(5==i.type)n=this.visitKeyframes(i,t);else{var a=e.styles,o=!1;if(!a){o=!0;var s={};r.easing&&(s.easing=r.easing),a=hv(s)}t.currentTime+=r.duration+r.delay;var l=this.visitStyle(a,t);l.isEmptyStep=o,n=l}return t.currentAnimateTimings=null,{type:4,timings:r,style:n,options:null}}},{key:\"visitStyle\",value:function(e,t){var n=this._makeStyleAst(e,t);return this._validateStyleAst(n,t),n}},{key:\"_makeStyleAst\",value:function(e,t){var n=[];Array.isArray(e.styles)?e.styles.forEach((function(e){\"string\"==typeof e?\"*\"==e?n.push(e):t.errors.push(\"The provided style string value \".concat(e,\" is not allowed.\")):n.push(e)})):n.push(e.styles);var r=!1,i=null;return n.forEach((function(e){if(mg(e)){var t=e,n=t.easing;if(n&&(i=n,delete t.easing),!r)for(var a in t)if(t[a].toString().indexOf(\"{{\")>=0){r=!0;break}}})),{type:6,styles:n,easing:i,offset:e.offset,containsDynamicStyles:r,options:null}}},{key:\"_validateStyleAst\",value:function(e,t){var n=this,r=t.currentAnimateTimings,i=t.currentTime,a=t.currentTime;r&&a>0&&(a-=r.duration+r.delay),e.styles.forEach((function(e){\"string\"!=typeof e&&Object.keys(e).forEach((function(r){if(n._driver.validateStyleProperty(r)){var o,s,l,u,c,d=t.collectedStyles[t.currentQuerySelector],h=d[r],f=!0;h&&(a!=i&&a>=h.startTime&&i<=h.endTime&&(t.errors.push('The CSS property \"'.concat(r,'\" that exists between the times of \"').concat(h.startTime,'ms\" and \"').concat(h.endTime,'ms\" is also being animated in a parallel animation between the times of \"').concat(a,'ms\" and \"').concat(i,'ms\"')),f=!1),a=h.startTime),f&&(d[r]={startTime:a,endTime:i}),t.options&&(o=e[r],s=t.options,l=t.errors,u=s.params||{},(c=Qv(o)).length&&c.forEach((function(e){u.hasOwnProperty(e)||l.push(\"Unable to resolve the local animation param \".concat(e,\" in the given list of values\"))})))}else t.errors.push('The provided animation property \"'.concat(r,'\" is not a supported CSS property for animations'))}))}))}},{key:\"visitKeyframes\",value:function(e,t){var n=this,r={type:5,styles:[],options:null};if(!t.currentAnimateTimings)return t.errors.push(\"keyframes() must be placed inside of a call to animate()\"),r;var i=0,a=[],o=!1,s=!1,l=0,u=e.steps.map((function(e){var r=n._makeStyleAst(e,t),u=null!=r.offset?r.offset:function(e){if(\"string\"==typeof e)return null;var t=null;if(Array.isArray(e))e.forEach((function(e){if(mg(e)&&e.hasOwnProperty(\"offset\")){var n=e;t=parseFloat(n.offset),delete n.offset}}));else if(mg(e)&&e.hasOwnProperty(\"offset\")){var n=e;t=parseFloat(n.offset),delete n.offset}return t}(r.styles),c=0;return null!=u&&(i++,c=r.offset=u),s=s||c<0||c>1,o=o||c0&&i0?i==h?1:d*i:a[i],s=o*p;t.currentTime=f+m.delay+s,m.duration=s,n._validateStyleAst(e,t),e.offset=o,r.styles.push(e)})),r}},{key:\"visitReference\",value:function(e,t){return{type:8,animation:ag(this,Kv(e.animation),t),options:pg(e.options)}}},{key:\"visitAnimateChild\",value:function(e,t){return t.depCount++,{type:9,options:pg(e.options)}}},{key:\"visitAnimateRef\",value:function(e,t){return{type:10,animation:this.visitReference(e.animation,t),options:pg(e.options)}}},{key:\"visitQuery\",value:function(e,t){var n=t.currentQuerySelector,r=e.options||{};t.queryCount++,t.currentQuery=e;var i=_slicedToArray(function(e){var t=!!e.split(/\\s*,\\s*/).find((function(e){return\":self\"==e}));return t&&(e=e.replace(cg,\"\")),[e=e.replace(/@\\*/g,\".ng-trigger\").replace(/@\\w+/g,(function(e){return\".ng-trigger-\"+e.substr(1)})).replace(/:animating/g,\".ng-animating\"),t]}(e.selector),2),a=i[0],o=i[1];t.currentQuerySelector=n.length?n+\" \"+a:a,Sv(t.collectedStyles,t.currentQuerySelector,{});var s=ag(this,Kv(e.animation),t);return t.currentQuery=null,t.currentQuerySelector=n,{type:11,selector:a,limit:r.limit||0,optional:!!r.optional,includeSelf:o,animation:s,originalSelector:e.selector,options:pg(e.options)}}},{key:\"visitStagger\",value:function(e,t){t.currentQuery||t.errors.push(\"stagger() can only be used inside of query()\");var n=\"full\"===e.timings?{duration:0,delay:0,easing:\"full\"}:Wv(e.timings,t.errors,!0);return{type:12,animation:ag(this,Kv(e.animation),t),timings:n,options:null}}}]),e}(),fg=function e(t){_classCallCheck(this,e),this.errors=t,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles={},this.options=null};function mg(e){return!Array.isArray(e)&&\"object\"==typeof e}function pg(e){var t;return e?(e=Uv(e)).params&&(e.params=(t=e.params)?Uv(t):null):e={},e}function _g(e,t,n){return{duration:e,delay:t,easing:n}}function vg(e,t,n,r,i,a){var o=arguments.length>6&&void 0!==arguments[6]?arguments[6]:null,s=arguments.length>7&&void 0!==arguments[7]&&arguments[7];return{type:1,element:e,keyframes:t,preStyleProps:n,postStyleProps:r,duration:i,delay:a,totalTime:i+a,easing:o,subTimeline:s}}var gg=function(){function e(){_classCallCheck(this,e),this._map=new Map}return _createClass(e,[{key:\"consume\",value:function(e){var t=this._map.get(e);return t?this._map.delete(e):t=[],t}},{key:\"append\",value:function(e,t){var n,r=this._map.get(e);r||this._map.set(e,r=[]),(n=r).push.apply(n,_toConsumableArray(t))}},{key:\"has\",value:function(e){return this._map.has(e)}},{key:\"clear\",value:function(){this._map.clear()}}]),e}(),yg=new RegExp(\":enter\",\"g\"),bg=new RegExp(\":leave\",\"g\");function kg(e,t,n,r,i){var a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},o=arguments.length>6&&void 0!==arguments[6]?arguments[6]:{},s=arguments.length>7?arguments[7]:void 0,l=arguments.length>8?arguments[8]:void 0,u=arguments.length>9&&void 0!==arguments[9]?arguments[9]:[];return(new wg).buildKeyframes(e,t,n,r,i,a,o,s,l,u)}var wg=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"buildKeyframes\",value:function(e,t,n,r,i,a,o,s,l){var u=arguments.length>9&&void 0!==arguments[9]?arguments[9]:[];l=l||new gg;var c=new Mg(e,t,l,r,i,u,[]);c.options=s,c.currentTimeline.setStyles([a],null,c.errors,s),ag(this,n,c);var d=c.timelines.filter((function(e){return e.containsAnimation()}));if(d.length&&Object.keys(o).length){var h=d[d.length-1];h.allowOnlyTimelineStyles()||h.setStyles([o],null,c.errors,s)}return d.length?d.map((function(e){return e.buildKeyframes()})):[vg(t,[],[],[],0,0,\"\",!1)]}},{key:\"visitTrigger\",value:function(e,t){}},{key:\"visitState\",value:function(e,t){}},{key:\"visitTransition\",value:function(e,t){}},{key:\"visitAnimateChild\",value:function(e,t){var n=t.subInstructions.consume(t.element);if(n){var r=t.createSubContext(e.options),i=t.currentTimeline.currentTime,a=this._visitSubInstructions(n,r,r.options);i!=a&&t.transformIntoNewTimeline(a)}t.previousNode=e}},{key:\"visitAnimateRef\",value:function(e,t){var n=t.createSubContext(e.options);n.transformIntoNewTimeline(),this.visitReference(e.animation,n),t.transformIntoNewTimeline(n.currentTimeline.currentTime),t.previousNode=e}},{key:\"_visitSubInstructions\",value:function(e,t,n){var r=t.currentTimeline.currentTime,i=null!=n.duration?zv(n.duration):null,a=null!=n.delay?zv(n.delay):null;return 0!==i&&e.forEach((function(e){var n=t.appendInstructionToTimeline(e,i,a);r=Math.max(r,n.duration+n.delay)})),r}},{key:\"visitReference\",value:function(e,t){t.updateOptions(e.options,!0),ag(this,e.animation,t),t.previousNode=e}},{key:\"visitSequence\",value:function(e,t){var n=this,r=t.subContextCount,i=t,a=e.options;if(a&&(a.params||a.delay)&&((i=t.createSubContext(a)).transformIntoNewTimeline(),null!=a.delay)){6==i.previousNode.type&&(i.currentTimeline.snapshotCurrentStyles(),i.previousNode=Cg);var o=zv(a.delay);i.delayNextStep(o)}e.steps.length&&(e.steps.forEach((function(e){return ag(n,e,i)})),i.currentTimeline.applyStylesToKeyframe(),i.subContextCount>r&&i.transformIntoNewTimeline()),t.previousNode=e}},{key:\"visitGroup\",value:function(e,t){var n=this,r=[],i=t.currentTimeline.currentTime,a=e.options&&e.options.delay?zv(e.options.delay):0;e.steps.forEach((function(o){var s=t.createSubContext(e.options);a&&s.delayNextStep(a),ag(n,o,s),i=Math.max(i,s.currentTimeline.currentTime),r.push(s.currentTimeline)})),r.forEach((function(e){return t.currentTimeline.mergeTimelineCollectedStyles(e)})),t.transformIntoNewTimeline(i),t.previousNode=e}},{key:\"_visitTiming\",value:function(e,t){if(e.dynamic){var n=e.strValue;return Wv(t.params?Xv(n,t.params,t.errors):n,t.errors)}return{duration:e.duration,delay:e.delay,easing:e.easing}}},{key:\"visitAnimate\",value:function(e,t){var n=t.currentAnimateTimings=this._visitTiming(e.timings,t),r=t.currentTimeline;n.delay&&(t.incrementTime(n.delay),r.snapshotCurrentStyles());var i=e.style;5==i.type?this.visitKeyframes(i,t):(t.incrementTime(n.duration),this.visitStyle(i,t),r.applyStylesToKeyframe()),t.currentAnimateTimings=null,t.previousNode=e}},{key:\"visitStyle\",value:function(e,t){var n=t.currentTimeline,r=t.currentAnimateTimings;!r&&n.getCurrentStyleProperties().length&&n.forwardFrame();var i=r&&r.easing||e.easing;e.isEmptyStep?n.applyEmptyStep(i):n.setStyles(e.styles,i,t.errors,t.options),t.previousNode=e}},{key:\"visitKeyframes\",value:function(e,t){var n=t.currentAnimateTimings,r=t.currentTimeline.duration,i=n.duration,a=t.createSubContext().currentTimeline;a.easing=n.easing,e.styles.forEach((function(e){a.forwardTime((e.offset||0)*i),a.setStyles(e.styles,e.easing,t.errors,t.options),a.applyStylesToKeyframe()})),t.currentTimeline.mergeTimelineCollectedStyles(a),t.transformIntoNewTimeline(r+i),t.previousNode=e}},{key:\"visitQuery\",value:function(e,t){var n=this,r=t.currentTimeline.currentTime,i=e.options||{},a=i.delay?zv(i.delay):0;a&&(6===t.previousNode.type||0==r&&t.currentTimeline.getCurrentStyleProperties().length)&&(t.currentTimeline.snapshotCurrentStyles(),t.previousNode=Cg);var o=r,s=t.invokeQuery(e.selector,e.originalSelector,e.limit,e.includeSelf,!!i.optional,t.errors);t.currentQueryTotal=s.length;var l=null;s.forEach((function(r,i){t.currentQueryIndex=i;var s=t.createSubContext(e.options,r);a&&s.delayNextStep(a),r===t.element&&(l=s.currentTimeline),ag(n,e.animation,s),s.currentTimeline.applyStylesToKeyframe(),o=Math.max(o,s.currentTimeline.currentTime)})),t.currentQueryIndex=0,t.currentQueryTotal=0,t.transformIntoNewTimeline(o),l&&(t.currentTimeline.mergeTimelineCollectedStyles(l),t.currentTimeline.snapshotCurrentStyles()),t.previousNode=e}},{key:\"visitStagger\",value:function(e,t){var n=t.parentContext,r=t.currentTimeline,i=e.timings,a=Math.abs(i.duration),o=a*(t.currentQueryTotal-1),s=a*t.currentQueryIndex;switch(i.duration<0?\"reverse\":i.easing){case\"reverse\":s=o-s;break;case\"full\":s=n.currentStaggerTime}var l=t.currentTimeline;s&&l.delayNextStep(s);var u=l.currentTime;ag(this,e.animation,t),t.previousNode=e,n.currentStaggerTime=r.currentTime-u+(r.startTime-n.currentTimeline.startTime)}}]),e}(),Cg={},Mg=function(){function e(t,n,r,i,a,o,s,l){_classCallCheck(this,e),this._driver=t,this.element=n,this.subInstructions=r,this._enterClassName=i,this._leaveClassName=a,this.errors=o,this.timelines=s,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=Cg,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=l||new Sg(this._driver,n,0),s.push(this.currentTimeline)}return _createClass(e,[{key:\"updateOptions\",value:function(e,t){var n=this;if(e){var r=e,i=this.options;null!=r.duration&&(i.duration=zv(r.duration)),null!=r.delay&&(i.delay=zv(r.delay));var a=r.params;if(a){var o=i.params;o||(o=this.options.params={}),Object.keys(a).forEach((function(e){t&&o.hasOwnProperty(e)||(o[e]=Xv(a[e],o,n.errors))}))}}}},{key:\"_copyOptions\",value:function(){var e={};if(this.options){var t=this.options.params;if(t){var n=e.params={};Object.keys(t).forEach((function(e){n[e]=t[e]}))}}return e}},{key:\"createSubContext\",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,n=arguments.length>1?arguments[1]:void 0,r=arguments.length>2?arguments[2]:void 0,i=n||this.element,a=new e(this._driver,i,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(i,r||0));return a.previousNode=this.previousNode,a.currentAnimateTimings=this.currentAnimateTimings,a.options=this._copyOptions(),a.updateOptions(t),a.currentQueryIndex=this.currentQueryIndex,a.currentQueryTotal=this.currentQueryTotal,a.parentContext=this,this.subContextCount++,a}},{key:\"transformIntoNewTimeline\",value:function(e){return this.previousNode=Cg,this.currentTimeline=this.currentTimeline.fork(this.element,e),this.timelines.push(this.currentTimeline),this.currentTimeline}},{key:\"appendInstructionToTimeline\",value:function(e,t,n){var r={duration:null!=t?t:e.duration,delay:this.currentTimeline.currentTime+(null!=n?n:0)+e.delay,easing:\"\"},i=new Lg(this._driver,e.element,e.keyframes,e.preStyleProps,e.postStyleProps,r,e.stretchStartingKeyframe);return this.timelines.push(i),r}},{key:\"incrementTime\",value:function(e){this.currentTimeline.forwardTime(this.currentTimeline.duration+e)}},{key:\"delayNextStep\",value:function(e){e>0&&this.currentTimeline.delayNextStep(e)}},{key:\"invokeQuery\",value:function(e,t,n,r,i,a){var o=[];if(r&&o.push(this.element),e.length>0){e=(e=e.replace(yg,\".\"+this._enterClassName)).replace(bg,\".\"+this._leaveClassName);var s=this._driver.query(this.element,e,1!=n);0!==n&&(s=n<0?s.slice(s.length+n,s.length):s.slice(0,n)),o.push.apply(o,_toConsumableArray(s))}return i||0!=o.length||a.push('`query(\"'.concat(t,'\")` returned zero elements. (Use `query(\"').concat(t,'\", { optional: true })` if you wish to allow this.)')),o}},{key:\"params\",get:function(){return this.options.params}}]),e}(),Sg=function(){function e(t,n,r,i){_classCallCheck(this,e),this._driver=t,this.element=n,this.startTime=r,this._elementTimelineStylesLookup=i,this.duration=0,this._previousKeyframe={},this._currentKeyframe={},this._keyframes=new Map,this._styleSummary={},this._pendingStyles={},this._backFill={},this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._localTimelineStyles=Object.create(this._backFill,{}),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(n),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(n,this._localTimelineStyles)),this._loadKeyframe()}return _createClass(e,[{key:\"containsAnimation\",value:function(){switch(this._keyframes.size){case 0:return!1;case 1:return this.getCurrentStyleProperties().length>0;default:return!0}}},{key:\"getCurrentStyleProperties\",value:function(){return Object.keys(this._currentKeyframe)}},{key:\"delayNextStep\",value:function(e){var t=1==this._keyframes.size&&Object.keys(this._pendingStyles).length;this.duration||t?(this.forwardTime(this.currentTime+e),t&&this.snapshotCurrentStyles()):this.startTime+=e}},{key:\"fork\",value:function(t,n){return this.applyStylesToKeyframe(),new e(this._driver,t,n||this.currentTime,this._elementTimelineStylesLookup)}},{key:\"_loadKeyframe\",value:function(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=Object.create(this._backFill,{}),this._keyframes.set(this.duration,this._currentKeyframe))}},{key:\"forwardFrame\",value:function(){this.duration+=1,this._loadKeyframe()}},{key:\"forwardTime\",value:function(e){this.applyStylesToKeyframe(),this.duration=e,this._loadKeyframe()}},{key:\"_updateStyle\",value:function(e,t){this._localTimelineStyles[e]=t,this._globalTimelineStyles[e]=t,this._styleSummary[e]={time:this.currentTime,value:t}}},{key:\"allowOnlyTimelineStyles\",value:function(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}},{key:\"applyEmptyStep\",value:function(e){var t=this;e&&(this._previousKeyframe.easing=e),Object.keys(this._globalTimelineStyles).forEach((function(e){t._backFill[e]=t._globalTimelineStyles[e]||\"*\",t._currentKeyframe[e]=\"*\"})),this._currentEmptyStepKeyframe=this._currentKeyframe}},{key:\"setStyles\",value:function(e,t,n,r){var i=this;t&&(this._previousKeyframe.easing=t);var a=r&&r.params||{},o=function(e,t){var n,r={};return e.forEach((function(e){\"*\"===e?(n=n||Object.keys(t)).forEach((function(e){r[e]=\"*\"})):Bv(e,!1,r)})),r}(e,this._globalTimelineStyles);Object.keys(o).forEach((function(e){var t=Xv(o[e],a,n);i._pendingStyles[e]=t,i._localTimelineStyles.hasOwnProperty(e)||(i._backFill[e]=i._globalTimelineStyles.hasOwnProperty(e)?i._globalTimelineStyles[e]:\"*\"),i._updateStyle(e,t)}))}},{key:\"applyStylesToKeyframe\",value:function(){var e=this,t=this._pendingStyles,n=Object.keys(t);0!=n.length&&(this._pendingStyles={},n.forEach((function(n){e._currentKeyframe[n]=t[n]})),Object.keys(this._localTimelineStyles).forEach((function(t){e._currentKeyframe.hasOwnProperty(t)||(e._currentKeyframe[t]=e._localTimelineStyles[t])})))}},{key:\"snapshotCurrentStyles\",value:function(){var e=this;Object.keys(this._localTimelineStyles).forEach((function(t){var n=e._localTimelineStyles[t];e._pendingStyles[t]=n,e._updateStyle(t,n)}))}},{key:\"getFinalKeyframe\",value:function(){return this._keyframes.get(this.duration)}},{key:\"mergeTimelineCollectedStyles\",value:function(e){var t=this;Object.keys(e._styleSummary).forEach((function(n){var r=t._styleSummary[n],i=e._styleSummary[n];(!r||i.time>r.time)&&t._updateStyle(n,i.value)}))}},{key:\"buildKeyframes\",value:function(){var e=this;this.applyStylesToKeyframe();var t=new Set,n=new Set,r=1===this._keyframes.size&&0===this.duration,i=[];this._keyframes.forEach((function(a,o){var s=Bv(a,!0);Object.keys(s).forEach((function(e){var r=s[e];\"!\"==r?t.add(e):\"*\"==r&&n.add(e)})),r||(s.offset=o/e.duration),i.push(s)}));var a=t.size?eg(t.values()):[],o=n.size?eg(n.values()):[];if(r){var s=i[0],l=Uv(s);s.offset=0,l.offset=1,i=[s,l]}return vg(this.element,i,a,o,this.duration,this.startTime,this.easing,!1)}},{key:\"currentTime\",get:function(){return this.startTime+this.duration}},{key:\"properties\",get:function(){var e=[];for(var t in this._currentKeyframe)e.push(t);return e}}]),e}(),Lg=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s){var l,u=arguments.length>6&&void 0!==arguments[6]&&arguments[6];return _classCallCheck(this,n),(l=t.call(this,e,r,s.delay)).element=r,l.keyframes=i,l.preStyleProps=a,l.postStyleProps=o,l._stretchStartingKeyframe=u,l.timings={duration:s.duration,delay:s.delay,easing:s.easing},l}return _createClass(n,[{key:\"containsAnimation\",value:function(){return this.keyframes.length>1}},{key:\"buildKeyframes\",value:function(){var e=this.keyframes,t=this.timings,n=t.delay,r=t.duration,i=t.easing;if(this._stretchStartingKeyframe&&n){var a=[],o=r+n,s=n/o,l=Bv(e[0],!1);l.offset=0,a.push(l);var u=Bv(e[0],!1);u.offset=Tg(s),a.push(u);for(var c=e.length-1,d=1;d<=c;d++){var h=Bv(e[d],!1);h.offset=Tg((n+h.offset*r)/o),a.push(h)}r=o,n=0,i=\"\",e=a}return vg(this.element,e,this.preStyleProps,this.postStyleProps,r,n,i,!0)}}]),n}(Sg);function Tg(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:3,n=Math.pow(10,t-1);return Math.round(e*n)/n}var xg=function e(){_classCallCheck(this,e)},Dg=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"normalizePropertyName\",value:function(e,t){return ng(e)}},{key:\"normalizeStyleValue\",value:function(e,t,n,r){var i=\"\",a=n.toString().trim();if(Og[t]&&0!==n&&\"0\"!==n)if(\"number\"==typeof n)i=\"px\";else{var o=n.match(/^[+-]?[\\d\\.]+([a-z]*)$/);o&&0==o[1].length&&r.push(\"Please provide a CSS unit value for \".concat(e,\":\").concat(n))}return a+i}}]),n}(xg),Og=function(e){var t={};return e.forEach((function(e){return t[e]=!0})),t}(\"width,height,minWidth,minHeight,maxWidth,maxHeight,left,top,bottom,right,fontSize,outlineWidth,outlineOffset,paddingTop,paddingLeft,paddingBottom,paddingRight,marginTop,marginLeft,marginBottom,marginRight,borderRadius,borderWidth,borderTopWidth,borderLeftWidth,borderRightWidth,borderBottomWidth,textIndent,perspective\".split(\",\"));function Yg(e,t,n,r,i,a,o,s,l,u,c,d,h){return{type:0,element:e,triggerName:t,isRemovalTransition:i,fromState:n,fromStyles:a,toState:r,toStyles:o,timelines:s,queriedElements:l,preStyleProps:u,postStyleProps:c,totalTime:d,errors:h}}var Eg={},Ig=function(){function e(t,n,r){_classCallCheck(this,e),this._triggerName=t,this.ast=n,this._stateStyles=r}return _createClass(e,[{key:\"match\",value:function(e,t,n,r){return function(e,t,n,r,i){return e.some((function(e){return e(t,n,r,i)}))}(this.ast.matchers,e,t,n,r)}},{key:\"buildStyles\",value:function(e,t,n){var r=this._stateStyles[\"*\"],i=this._stateStyles[e],a=r?r.buildStyles(t,n):{};return i?i.buildStyles(t,n):a}},{key:\"build\",value:function(e,t,n,r,i,a,o,s,l,u){var c=[],d=this.ast.options&&this.ast.options.params||Eg,h=this.buildStyles(n,o&&o.params||Eg,c),f=s&&s.params||Eg,m=this.buildStyles(r,f,c),p=new Set,_=new Map,v=new Map,g=\"void\"===r,y={params:Object.assign(Object.assign({},d),f)},b=u?[]:kg(e,t,this.ast.animation,i,a,h,m,y,l,c),k=0;if(b.forEach((function(e){k=Math.max(e.duration+e.delay,k)})),c.length)return Yg(t,this._triggerName,n,r,g,h,m,[],[],_,v,k,c);b.forEach((function(e){var n=e.element,r=Sv(_,n,{});e.preStyleProps.forEach((function(e){return r[e]=!0}));var i=Sv(v,n,{});e.postStyleProps.forEach((function(e){return i[e]=!0})),n!==t&&p.add(n)}));var w=eg(p.values());return Yg(t,this._triggerName,n,r,g,h,m,b,w,_,v,k)}}]),e}(),Ag=function(){function e(t,n){_classCallCheck(this,e),this.styles=t,this.defaultParams=n}return _createClass(e,[{key:\"buildStyles\",value:function(e,t){var n={},r=Uv(this.defaultParams);return Object.keys(e).forEach((function(t){var n=e[t];null!=n&&(r[t]=n)})),this.styles.styles.forEach((function(e){if(\"string\"!=typeof e){var i=e;Object.keys(i).forEach((function(e){var a=i[e];a.length>1&&(a=Xv(a,r,t)),n[e]=a}))}})),n}}]),e}(),Pg=function(){function e(t,n){var r=this;_classCallCheck(this,e),this.name=t,this.ast=n,this.transitionFactories=[],this.states={},n.states.forEach((function(e){r.states[e.name]=new Ag(e.style,e.options&&e.options.params||{})})),jg(this.states,\"true\",\"1\"),jg(this.states,\"false\",\"0\"),n.transitions.forEach((function(e){r.transitionFactories.push(new Ig(t,e,r.states))})),this.fallbackTransition=new Ig(t,{type:1,animation:{type:2,steps:[],options:null},matchers:[function(e,t){return!0}],options:null,queryCount:0,depCount:0},this.states)}return _createClass(e,[{key:\"matchTransition\",value:function(e,t,n,r){return this.transitionFactories.find((function(i){return i.match(e,t,n,r)}))||null}},{key:\"matchStyles\",value:function(e,t,n){return this.fallbackTransition.buildStyles(e,t,n)}},{key:\"containsQueries\",get:function(){return this.ast.queryCount>0}}]),e}();function jg(e,t,n){e.hasOwnProperty(t)?e.hasOwnProperty(n)||(e[n]=e[t]):e.hasOwnProperty(n)&&(e[t]=e[n])}var Rg=new gg,Hg=function(){function e(t,n,r){_classCallCheck(this,e),this.bodyNode=t,this._driver=n,this._normalizer=r,this._animations={},this._playersById={},this.players=[]}return _createClass(e,[{key:\"register\",value:function(e,t){var n=[],r=dg(this._driver,t,n);if(n.length)throw new Error(\"Unable to build the animation due to the following errors: \".concat(n.join(\"\\n\")));this._animations[e]=r}},{key:\"_buildPlayer\",value:function(e,t,n){var r=e.element,i=kv(0,this._normalizer,0,e.keyframes,t,n);return this._driver.animate(r,i,e.duration,e.delay,e.easing,[],!0)}},{key:\"create\",value:function(e,t){var n,r=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=[],o=this._animations[e],s=new Map;if(o?(n=kg(this._driver,t,o,\"ng-enter\",\"ng-leave\",{},{},i,Rg,a)).forEach((function(e){var t=Sv(s,e.element,{});e.postStyleProps.forEach((function(e){return t[e]=null}))})):(a.push(\"The requested animation doesn't exist or has already been destroyed\"),n=[]),a.length)throw new Error(\"Unable to create the animation due to the following errors: \".concat(a.join(\"\\n\")));s.forEach((function(e,t){Object.keys(e).forEach((function(n){e[n]=r._driver.computeStyle(t,n,\"*\")}))}));var l=bv(n.map((function(e){var t=s.get(e.element);return r._buildPlayer(e,{},t)})));return this._playersById[e]=l,l.onDestroy((function(){return r.destroy(e)})),this.players.push(l),l}},{key:\"destroy\",value:function(e){var t=this._getPlayer(e);t.destroy(),delete this._playersById[e];var n=this.players.indexOf(t);n>=0&&this.players.splice(n,1)}},{key:\"_getPlayer\",value:function(e){var t=this._playersById[e];if(!t)throw new Error(\"Unable to find the timeline player referenced by \".concat(e));return t}},{key:\"listen\",value:function(e,t,n,r){var i=Mv(t,\"\",\"\",\"\");return wv(this._getPlayer(e),n,i,r),function(){}}},{key:\"command\",value:function(e,t,n,r){if(\"register\"!=n)if(\"create\"!=n){var i=this._getPlayer(e);switch(n){case\"play\":i.play();break;case\"pause\":i.pause();break;case\"reset\":i.reset();break;case\"restart\":i.restart();break;case\"finish\":i.finish();break;case\"init\":i.init();break;case\"setPosition\":i.setPosition(parseFloat(r[0]));break;case\"destroy\":this.destroy(e)}}else this.create(e,t,r[0]||{});else this.register(e,r[0])}}]),e}(),Fg=[],Ng={namespaceId:\"\",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},zg={namespaceId:\"\",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},Vg=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\";_classCallCheck(this,e),this.namespaceId=n;var r,i=t&&t.hasOwnProperty(\"value\");if(this.value=null!=(r=i?t.value:t)?r:null,i){var a=Uv(t);delete a.value,this.options=a}else this.options={};this.options.params||(this.options.params={})}return _createClass(e,[{key:\"absorbOptions\",value:function(e){var t=e.params;if(t){var n=this.options.params;Object.keys(t).forEach((function(e){null==n[e]&&(n[e]=t[e])}))}}},{key:\"params\",get:function(){return this.options.params}}]),e}(),Wg=new Vg(\"void\"),Ug=function(){function e(t,n,r){_classCallCheck(this,e),this.id=t,this.hostElement=n,this._engine=r,this.players=[],this._triggers={},this._queue=[],this._elementListeners=new Map,this._hostClassName=\"ng-tns-\"+t,Zg(n,this._hostClassName)}return _createClass(e,[{key:\"listen\",value:function(e,t,n,r){var i,a=this;if(!this._triggers.hasOwnProperty(t))throw new Error('Unable to listen on the animation trigger event \"'.concat(n,'\" because the animation trigger \"').concat(t,\"\\\" doesn't exist!\"));if(null==n||0==n.length)throw new Error('Unable to listen on the animation trigger \"'.concat(t,'\" because the provided event is undefined!'));if(\"start\"!=(i=n)&&\"done\"!=i)throw new Error('The provided animation trigger event \"'.concat(n,'\" for the animation trigger \"').concat(t,'\" is not supported!'));var o=Sv(this._elementListeners,e,[]),s={name:t,phase:n,callback:r};o.push(s);var l=Sv(this._engine.statesByElement,e,{});return l.hasOwnProperty(t)||(Zg(e,\"ng-trigger\"),Zg(e,\"ng-trigger-\"+t),l[t]=Wg),function(){a._engine.afterFlush((function(){var e=o.indexOf(s);e>=0&&o.splice(e,1),a._triggers[t]||delete l[t]}))}}},{key:\"register\",value:function(e,t){return!this._triggers[e]&&(this._triggers[e]=t,!0)}},{key:\"_getTrigger\",value:function(e){var t=this._triggers[e];if(!t)throw new Error('The provided animation trigger \"'.concat(e,'\" has not been registered!'));return t}},{key:\"trigger\",value:function(e,t,n){var r=this,i=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],a=this._getTrigger(t),o=new qg(this.id,t,e),s=this._engine.statesByElement.get(e);s||(Zg(e,\"ng-trigger\"),Zg(e,\"ng-trigger-\"+t),this._engine.statesByElement.set(e,s={}));var l=s[t],u=new Vg(n,this.id);if(!(n&&n.hasOwnProperty(\"value\"))&&l&&u.absorbOptions(l.options),s[t]=u,l||(l=Wg),\"void\"===u.value||l.value!==u.value){var c=Sv(this._engine.playersByElement,e,[]);c.forEach((function(e){e.namespaceId==r.id&&e.triggerName==t&&e.queued&&e.destroy()}));var d=a.matchTransition(l.value,u.value,e,u.params),h=!1;if(!d){if(!i)return;d=a.fallbackTransition,h=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:e,triggerName:t,transition:d,fromState:l,toState:u,player:o,isFallbackTransition:h}),h||(Zg(e,\"ng-animate-queued\"),o.onStart((function(){Qg(e,\"ng-animate-queued\")}))),o.onDone((function(){var t=r.players.indexOf(o);t>=0&&r.players.splice(t,1);var n=r._engine.playersByElement.get(e);if(n){var i=n.indexOf(o);i>=0&&n.splice(i,1)}})),this.players.push(o),c.push(o),o}if(!function(e,t){var n=Object.keys(e),r=Object.keys(t);if(n.length!=r.length)return!1;for(var i=0;i=0){for(var r=!1,i=n;i>=0;i--)if(this.driver.containsElement(this._namespaceList[i].hostElement,t)){this._namespaceList.splice(i+1,0,e),r=!0;break}r||this._namespaceList.splice(0,0,e)}else this._namespaceList.push(e);return this.namespacesByHostElement.set(t,e),e}},{key:\"register\",value:function(e,t){var n=this._namespaceLookup[e];return n||(n=this.createNamespace(e,t)),n}},{key:\"registerTrigger\",value:function(e,t,n){var r=this._namespaceLookup[e];r&&r.register(t,n)&&this.totalAnimations++}},{key:\"destroy\",value:function(e,t){var n=this;if(e){var r=this._fetchNamespace(e);this.afterFlush((function(){n.namespacesByHostElement.delete(r.hostElement),delete n._namespaceLookup[e];var t=n._namespaceList.indexOf(r);t>=0&&n._namespaceList.splice(t,1)})),this.afterFlushAnimationsDone((function(){return r.destroy(t)}))}}},{key:\"_fetchNamespace\",value:function(e){return this._namespaceLookup[e]}},{key:\"fetchNamespacesByElement\",value:function(e){var t=new Set,n=this.statesByElement.get(e);if(n)for(var r=Object.keys(n),i=0;i=0&&this.collectedLeaveElements.splice(a,1)}if(e){var o=this._fetchNamespace(e);o&&o.insertNode(t,n)}r&&this.collectEnterElement(t)}}},{key:\"collectEnterElement\",value:function(e){this.collectedEnterElements.push(e)}},{key:\"markElementAsDisabled\",value:function(e,t){t?this.disabledNodes.has(e)||(this.disabledNodes.add(e),Zg(e,\"ng-animate-disabled\")):this.disabledNodes.has(e)&&(this.disabledNodes.delete(e),Qg(e,\"ng-animate-disabled\"))}},{key:\"removeNode\",value:function(e,t,n,r){if(Gg(t)){var i=e?this._fetchNamespace(e):null;if(i?i.removeNode(t,r):this.markElementAsRemoved(e,t,!1,r),n){var a=this.namespacesByHostElement.get(t);a&&a.id!==e&&a.removeNode(t,r)}}else this._onRemovalComplete(t,r)}},{key:\"markElementAsRemoved\",value:function(e,t,n,r){this.collectedLeaveElements.push(t),t.__ng_removed={namespaceId:e,setForRemoval:r,hasAnimation:n,removedBeforeQueried:!1}}},{key:\"listen\",value:function(e,t,n,r,i){return Gg(t)?this._fetchNamespace(e).listen(t,n,r,i):function(){}}},{key:\"_buildInstruction\",value:function(e,t,n,r,i){return e.transition.build(this.driver,e.element,e.fromState.value,e.toState.value,n,r,e.fromState.options,e.toState.options,t,i)}},{key:\"destroyInnerAnimations\",value:function(e){var t=this,n=this.driver.query(e,\".ng-trigger\",!0);n.forEach((function(e){return t.destroyActiveAnimationsForElement(e)})),0!=this.playersByQueriedElement.size&&(n=this.driver.query(e,\".ng-animating\",!0)).forEach((function(e){return t.finishActiveQueriedAnimationOnElement(e)}))}},{key:\"destroyActiveAnimationsForElement\",value:function(e){var t=this.playersByElement.get(e);t&&t.forEach((function(e){e.queued?e.markedForDestroy=!0:e.destroy()}))}},{key:\"finishActiveQueriedAnimationOnElement\",value:function(e){var t=this.playersByQueriedElement.get(e);t&&t.forEach((function(e){return e.finish()}))}},{key:\"whenRenderingDone\",value:function(){var e=this;return new Promise((function(t){if(e.players.length)return bv(e.players).onDone((function(){return t()}));t()}))}},{key:\"processLeaveNode\",value:function(e){var t=this,n=e.__ng_removed;if(n&&n.setForRemoval){if(e.__ng_removed=Ng,n.namespaceId){this.destroyInnerAnimations(e);var r=this._fetchNamespace(n.namespaceId);r&&r.clearElementCache(e)}this._onRemovalComplete(e,n.setForRemoval)}this.driver.matchesElement(e,\".ng-animate-disabled\")&&this.markElementAsDisabled(e,!1),this.driver.query(e,\".ng-animate-disabled\",!0).forEach((function(e){t.markElementAsDisabled(e,!1)}))}},{key:\"flush\",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:-1,n=[];if(this.newHostElements.size&&(this.newHostElements.forEach((function(t,n){return e._balanceNamespaceList(t,n)})),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(var r=0;r=0;L--)this._namespaceList[L].drainQueuedTransitions(t).forEach((function(e){var t=e.player,a=e.element;if(M.push(t),n.collectedEnterElements.length){var c=a.__ng_removed;if(c&&c.setForMove)return void t.destroy()}var h=!d||!n.driver.containsElement(d,a),f=w.get(a),p=m.get(a),_=n._buildInstruction(e,r,p,f,h);if(!_.errors||!_.errors.length)return h||e.isFallbackTransition?(t.onStart((function(){return Jv(a,_.fromStyles)})),t.onDestroy((function(){return $v(a,_.toStyles)})),void i.push(t)):(_.timelines.forEach((function(e){return e.stretchStartingKeyframe=!0})),r.append(a,_.timelines),o.push({instruction:_,player:t,element:a}),_.queriedElements.forEach((function(e){return Sv(s,e,[]).push(t)})),_.preStyleProps.forEach((function(e,t){var n=Object.keys(e);if(n.length){var r=l.get(t);r||l.set(t,r=new Set),n.forEach((function(e){return r.add(e)}))}})),void _.postStyleProps.forEach((function(e,t){var n=Object.keys(e),r=u.get(t);r||u.set(t,r=new Set),n.forEach((function(e){return r.add(e)}))})));S.push(_)}));if(S.length){var T=[];S.forEach((function(e){T.push(\"@\".concat(e.triggerName,\" has failed due to:\\n\")),e.errors.forEach((function(e){return T.push(\"- \".concat(e,\"\\n\"))}))})),M.forEach((function(e){return e.destroy()})),this.reportError(T)}var x=new Map,D=new Map;o.forEach((function(e){var t=e.element;r.has(t)&&(D.set(t,t),n._beforeAnimationBuild(e.player.namespaceId,e.instruction,x))})),i.forEach((function(e){var t=e.element;n._getPreviousPlayers(t,!1,e.namespaceId,e.triggerName,null).forEach((function(e){Sv(x,t,[]).push(e),e.destroy()}))}));var O=_.filter((function(e){return ey(e,l,u)})),Y=new Map;Jg(Y,this.driver,g,u,\"*\").forEach((function(e){ey(e,l,u)&&O.push(e)}));var E=new Map;f.forEach((function(e,t){Jg(E,n.driver,new Set(e),l,\"!\")})),O.forEach((function(e){var t=Y.get(e),n=E.get(e);Y.set(e,Object.assign(Object.assign({},t),n))}));var I=[],A=[],P={};o.forEach((function(e){var t=e.element,o=e.player,s=e.instruction;if(r.has(t)){if(c.has(t))return o.onDestroy((function(){return $v(t,s.toStyles)})),o.disabled=!0,o.overrideTotalTime(s.totalTime),void i.push(o);var l=P;if(D.size>1){for(var u=t,d=[];u=u.parentNode;){var h=D.get(u);if(h){l=h;break}d.push(u)}d.forEach((function(e){return D.set(e,l)}))}var f=n._buildAnimation(o.namespaceId,s,x,a,E,Y);if(o.setRealPlayer(f),l===P)I.push(o);else{var m=n.playersByElement.get(l);m&&m.length&&(o.parentPlayer=bv(m)),i.push(o)}}else Jv(t,s.fromStyles),o.onDestroy((function(){return $v(t,s.toStyles)})),A.push(o),c.has(t)&&i.push(o)})),A.forEach((function(e){var t=a.get(e.element);if(t&&t.length){var n=bv(t);e.setRealPlayer(n)}})),i.forEach((function(e){e.parentPlayer?e.syncPlayerEvents(e.parentPlayer):e.destroy()}));for(var j=0;j<_.length;j++){var R=_[j],H=R.__ng_removed;if(Qg(R,\"ng-leave\"),!H||!H.hasAnimation){var F=[];if(s.size){var N=s.get(R);N&&N.length&&F.push.apply(F,_toConsumableArray(N));for(var z=this.driver.query(R,\".ng-animating\",!0),V=0;V0?this.driver.animate(e.element,t,e.duration,e.delay,e.easing,n):new vv(e.duration,e.delay)}},{key:\"queuedPlayers\",get:function(){var e=[];return this._namespaceList.forEach((function(t){t.players.forEach((function(t){t.queued&&e.push(t)}))})),e}}]),e}(),qg=function(){function e(t,n,r){_classCallCheck(this,e),this.namespaceId=t,this.triggerName=n,this.element=r,this._player=new vv,this._containsRealPlayer=!1,this._queuedCallbacks={},this.destroyed=!1,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}return _createClass(e,[{key:\"setRealPlayer\",value:function(e){var t=this;this._containsRealPlayer||(this._player=e,Object.keys(this._queuedCallbacks).forEach((function(n){t._queuedCallbacks[n].forEach((function(t){return wv(e,n,void 0,t)}))})),this._queuedCallbacks={},this._containsRealPlayer=!0,this.overrideTotalTime(e.totalTime),this.queued=!1)}},{key:\"getRealPlayer\",value:function(){return this._player}},{key:\"overrideTotalTime\",value:function(e){this.totalTime=e}},{key:\"syncPlayerEvents\",value:function(e){var t=this,n=this._player;n.triggerCallback&&e.onStart((function(){return n.triggerCallback(\"start\")})),e.onDone((function(){return t.finish()})),e.onDestroy((function(){return t.destroy()}))}},{key:\"_queueEvent\",value:function(e,t){Sv(this._queuedCallbacks,e,[]).push(t)}},{key:\"onDone\",value:function(e){this.queued&&this._queueEvent(\"done\",e),this._player.onDone(e)}},{key:\"onStart\",value:function(e){this.queued&&this._queueEvent(\"start\",e),this._player.onStart(e)}},{key:\"onDestroy\",value:function(e){this.queued&&this._queueEvent(\"destroy\",e),this._player.onDestroy(e)}},{key:\"init\",value:function(){this._player.init()}},{key:\"hasStarted\",value:function(){return!this.queued&&this._player.hasStarted()}},{key:\"play\",value:function(){!this.queued&&this._player.play()}},{key:\"pause\",value:function(){!this.queued&&this._player.pause()}},{key:\"restart\",value:function(){!this.queued&&this._player.restart()}},{key:\"finish\",value:function(){this._player.finish()}},{key:\"destroy\",value:function(){this.destroyed=!0,this._player.destroy()}},{key:\"reset\",value:function(){!this.queued&&this._player.reset()}},{key:\"setPosition\",value:function(e){this.queued||this._player.setPosition(e)}},{key:\"getPosition\",value:function(){return this.queued?0:this._player.getPosition()}},{key:\"triggerCallback\",value:function(e){var t=this._player;t.triggerCallback&&t.triggerCallback(e)}}]),e}();function Gg(e){return e&&1===e.nodeType}function $g(e,t){var n=e.style.display;return e.style.display=null!=t?t:\"none\",n}function Jg(e,t,n,r,i){var a=[];n.forEach((function(e){return a.push($g(e))}));var o=[];r.forEach((function(n,r){var a={};n.forEach((function(e){var n=a[e]=t.computeStyle(r,e,i);n&&0!=n.length||(r.__ng_removed=zg,o.push(r))})),e.set(r,a)}));var s=0;return n.forEach((function(e){return $g(e,a[s++])})),o}function Kg(e,t){var n=new Map;if(e.forEach((function(e){return n.set(e,[])})),0==t.length)return n;var r=new Set(t),i=new Map;return t.forEach((function(e){var t=function e(t){if(!t)return 1;var a=i.get(t);if(a)return a;var o=t.parentNode;return a=n.has(o)?o:r.has(o)?1:e(o),i.set(t,a),a}(e);1!==t&&n.get(t).push(e)})),n}function Zg(e,t){if(e.classList)e.classList.add(t);else{var n=e.$$classes;n||(n=e.$$classes={}),n[t]=!0}}function Qg(e,t){if(e.classList)e.classList.remove(t);else{var n=e.$$classes;n&&delete n[t]}}function Xg(e,t,n){bv(n).onDone((function(){return e.processLeaveNode(t)}))}function ey(e,t,n){var r=n.get(e);if(!r)return!1;var i=t.get(e);return i?r.forEach((function(e){return i.add(e)})):t.set(e,r),n.delete(e),!0}var ty=function(){function e(t,n,r){var i=this;_classCallCheck(this,e),this.bodyNode=t,this._driver=n,this._triggerCache={},this.onRemovalComplete=function(e,t){},this._transitionEngine=new Bg(t,n,r),this._timelineEngine=new Hg(t,n,r),this._transitionEngine.onRemovalComplete=function(e,t){return i.onRemovalComplete(e,t)}}return _createClass(e,[{key:\"registerTrigger\",value:function(e,t,n,r,i){var a=e+\"-\"+r,o=this._triggerCache[a];if(!o){var s=[],l=dg(this._driver,i,s);if(s.length)throw new Error('The animation trigger \"'.concat(r,'\" has failed to build due to the following errors:\\n - ').concat(s.join(\"\\n - \")));o=function(e,t){return new Pg(e,t)}(r,l),this._triggerCache[a]=o}this._transitionEngine.registerTrigger(t,r,o)}},{key:\"register\",value:function(e,t){this._transitionEngine.register(e,t)}},{key:\"destroy\",value:function(e,t){this._transitionEngine.destroy(e,t)}},{key:\"onInsert\",value:function(e,t,n,r){this._transitionEngine.insertNode(e,t,n,r)}},{key:\"onRemove\",value:function(e,t,n,r){this._transitionEngine.removeNode(e,t,r||!1,n)}},{key:\"disableAnimations\",value:function(e,t){this._transitionEngine.markElementAsDisabled(e,t)}},{key:\"process\",value:function(e,t,n,r){if(\"@\"==n.charAt(0)){var i=_slicedToArray(Lv(n),2),a=i[0],o=i[1];this._timelineEngine.command(a,t,o,r)}else this._transitionEngine.trigger(e,t,n,r)}},{key:\"listen\",value:function(e,t,n,r,i){if(\"@\"==n.charAt(0)){var a=_slicedToArray(Lv(n),2),o=a[0],s=a[1];return this._timelineEngine.listen(o,t,s,i)}return this._transitionEngine.listen(e,t,n,r,i)}},{key:\"flush\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:-1;this._transitionEngine.flush(e)}},{key:\"whenRenderingDone\",value:function(){return this._transitionEngine.whenRenderingDone()}},{key:\"players\",get:function(){return this._transitionEngine.players.concat(this._timelineEngine.players)}}]),e}();function ny(e,t){var n=null,r=null;return Array.isArray(t)&&t.length?(n=iy(t[0]),t.length>1&&(r=iy(t[t.length-1]))):t&&(n=iy(t)),n||r?new ry(e,n,r):null}var ry=function(){var e=function(){function e(t,n,r){_classCallCheck(this,e),this._element=t,this._startStyles=n,this._endStyles=r,this._state=0;var i=e.initialStylesByElement.get(t);i||e.initialStylesByElement.set(t,i={}),this._initialStyles=i}return _createClass(e,[{key:\"start\",value:function(){this._state<1&&(this._startStyles&&$v(this._element,this._startStyles,this._initialStyles),this._state=1)}},{key:\"finish\",value:function(){this.start(),this._state<2&&($v(this._element,this._initialStyles),this._endStyles&&($v(this._element,this._endStyles),this._endStyles=null),this._state=1)}},{key:\"destroy\",value:function(){this.finish(),this._state<3&&(e.initialStylesByElement.delete(this._element),this._startStyles&&(Jv(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(Jv(this._element,this._endStyles),this._endStyles=null),$v(this._element,this._initialStyles),this._state=3)}}]),e}();return e.initialStylesByElement=new WeakMap,e}();function iy(e){for(var t=null,n=Object.keys(e),r=0;r=this._delay&&n>=this._duration&&this.finish()}},{key:\"finish\",value:function(){this._finished||(this._finished=!0,this._onDoneFn(),cy(this._element,this._eventFn,!0))}},{key:\"destroy\",value:function(){var e,t,n,r;this._destroyed||(this._destroyed=!0,this.finish(),e=this._element,t=this._name,n=hy(e,\"\").split(\",\"),(r=uy(n,t))>=0&&(n.splice(r,1),dy(e,\"\",n.join(\",\"))))}}]),e}();function sy(e,t,n){dy(e,\"PlayState\",n,ly(e,t))}function ly(e,t){var n=hy(e,\"\");return n.indexOf(\",\")>0?uy(n.split(\",\"),t):uy([n],t)}function uy(e,t){for(var n=0;n=0)return n;return-1}function cy(e,t,n){n?e.removeEventListener(\"animationend\",t):e.addEventListener(\"animationend\",t)}function dy(e,t,n,r){var i=\"animation\"+t;if(null!=r){var a=e.style[i];if(a.length){var o=a.split(\",\");o[r]=n,n=o.join(\",\")}}e.style[i]=n}function hy(e,t){return e.style[\"animation\"+t]}var fy=function(){function e(t,n,r,i,a,o,s,l){_classCallCheck(this,e),this.element=t,this.keyframes=n,this.animationName=r,this._duration=i,this._delay=a,this._finalStyles=s,this._specialStyles=l,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._started=!1,this.currentSnapshot={},this._state=0,this.easing=o||\"linear\",this.totalTime=i+a,this._buildStyler()}return _createClass(e,[{key:\"onStart\",value:function(e){this._onStartFns.push(e)}},{key:\"onDone\",value:function(e){this._onDoneFns.push(e)}},{key:\"onDestroy\",value:function(e){this._onDestroyFns.push(e)}},{key:\"destroy\",value:function(){this.init(),this._state>=4||(this._state=4,this._styler.destroy(),this._flushStartFns(),this._flushDoneFns(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach((function(e){return e()})),this._onDestroyFns=[])}},{key:\"_flushDoneFns\",value:function(){this._onDoneFns.forEach((function(e){return e()})),this._onDoneFns=[]}},{key:\"_flushStartFns\",value:function(){this._onStartFns.forEach((function(e){return e()})),this._onStartFns=[]}},{key:\"finish\",value:function(){this.init(),this._state>=3||(this._state=3,this._styler.finish(),this._flushStartFns(),this._specialStyles&&this._specialStyles.finish(),this._flushDoneFns())}},{key:\"setPosition\",value:function(e){this._styler.setPosition(e)}},{key:\"getPosition\",value:function(){return this._styler.getPosition()}},{key:\"hasStarted\",value:function(){return this._state>=2}},{key:\"init\",value:function(){this._state>=1||(this._state=1,this._styler.apply(),this._delay&&this._styler.pause())}},{key:\"play\",value:function(){this.init(),this.hasStarted()||(this._flushStartFns(),this._state=2,this._specialStyles&&this._specialStyles.start()),this._styler.resume()}},{key:\"pause\",value:function(){this.init(),this._styler.pause()}},{key:\"restart\",value:function(){this.reset(),this.play()}},{key:\"reset\",value:function(){this._styler.destroy(),this._buildStyler(),this._styler.apply()}},{key:\"_buildStyler\",value:function(){var e=this;this._styler=new oy(this.element,this.animationName,this._duration,this._delay,this.easing,\"forwards\",(function(){return e.finish()}))}},{key:\"triggerCallback\",value:function(e){var t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach((function(e){return e()})),t.length=0}},{key:\"beforeDestroy\",value:function(){var e=this;this.init();var t={};if(this.hasStarted()){var n=this._state>=3;Object.keys(this._finalStyles).forEach((function(r){\"offset\"!=r&&(t[r]=n?e._finalStyles[r]:og(e.element,r))}))}this.currentSnapshot=t}}]),e}(),my=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this)).element=e,i._startingStyles={},i.__initialized=!1,i._styles=Rv(r),i}return _createClass(n,[{key:\"init\",value:function(){var e=this;!this.__initialized&&this._startingStyles&&(this.__initialized=!0,Object.keys(this._styles).forEach((function(t){e._startingStyles[t]=e.element.style[t]})),_get(_getPrototypeOf(n.prototype),\"init\",this).call(this))}},{key:\"play\",value:function(){var e=this;this._startingStyles&&(this.init(),Object.keys(this._styles).forEach((function(t){return e.element.style.setProperty(t,e._styles[t])})),_get(_getPrototypeOf(n.prototype),\"play\",this).call(this))}},{key:\"destroy\",value:function(){var e=this;this._startingStyles&&(Object.keys(this._startingStyles).forEach((function(t){var n=e._startingStyles[t];n?e.element.style.setProperty(t,n):e.element.style.removeProperty(t)})),this._startingStyles=null,_get(_getPrototypeOf(n.prototype),\"destroy\",this).call(this))}}]),n}(vv),py=function(){function e(){_classCallCheck(this,e),this._count=0,this._head=document.querySelector(\"head\"),this._warningIssued=!1}return _createClass(e,[{key:\"validateStyleProperty\",value:function(e){return Iv(e)}},{key:\"matchesElement\",value:function(e,t){return Av(e,t)}},{key:\"containsElement\",value:function(e,t){return Pv(e,t)}},{key:\"query\",value:function(e,t,n){return jv(e,t,n)}},{key:\"computeStyle\",value:function(e,t,n){return window.getComputedStyle(e)[t]}},{key:\"buildKeyframeElement\",value:function(e,t,n){n=n.map((function(e){return Rv(e)}));var r=\"@keyframes \".concat(t,\" {\\n\"),i=\"\";n.forEach((function(e){i=\" \";var t=parseFloat(e.offset);r+=\"\".concat(i).concat(100*t,\"% {\\n\"),i+=\" \",Object.keys(e).forEach((function(t){var n=e[t];switch(t){case\"offset\":return;case\"easing\":return void(n&&(r+=\"\".concat(i,\"animation-timing-function: \").concat(n,\";\\n\")));default:return void(r+=\"\".concat(i).concat(t,\": \").concat(n,\";\\n\"))}})),r+=\"\".concat(i,\"}\\n\")})),r+=\"}\\n\";var a=document.createElement(\"style\");return a.innerHTML=r,a}},{key:\"animate\",value:function(e,t,n,r,i){var a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:[],o=arguments.length>6?arguments[6]:void 0;o&&this._notifyFaultyScrubber();var s=a.filter((function(e){return e instanceof fy})),l={};rg(n,r)&&s.forEach((function(e){var t=e.currentSnapshot;Object.keys(t).forEach((function(e){return l[e]=t[e]}))}));var u=function(e){var t={};return e&&(Array.isArray(e)?e:[e]).forEach((function(e){Object.keys(e).forEach((function(n){\"offset\"!=n&&\"easing\"!=n&&(t[n]=e[n])}))})),t}(t=ig(e,t,l));if(0==n)return new my(e,u);var c=\"gen_css_kf_\".concat(this._count++),d=this.buildKeyframeElement(e,c,t);document.querySelector(\"head\").appendChild(d);var h=ny(e,t),f=new fy(e,t,c,n,r,i,u,h);return f.onDestroy((function(){var e;(e=d).parentNode.removeChild(e)})),f}},{key:\"_notifyFaultyScrubber\",value:function(){this._warningIssued||(console.warn(\"@angular/animations: please load the web-animations.js polyfill to allow programmatic access...\\n\",\" visit http://bit.ly/IWukam to learn more about using the web-animation-js polyfill.\"),this._warningIssued=!0)}}]),e}(),_y=function(){function e(t,n,r,i){_classCallCheck(this,e),this.element=t,this.keyframes=n,this.options=r,this._specialStyles=i,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._initialized=!1,this._finished=!1,this._started=!1,this._destroyed=!1,this.time=0,this.parentPlayer=null,this.currentSnapshot={},this._duration=r.duration,this._delay=r.delay||0,this.time=this._duration+this._delay}return _createClass(e,[{key:\"_onFinish\",value:function(){this._finished||(this._finished=!0,this._onDoneFns.forEach((function(e){return e()})),this._onDoneFns=[])}},{key:\"init\",value:function(){this._buildPlayer(),this._preparePlayerBeforeStart()}},{key:\"_buildPlayer\",value:function(){var e=this;if(!this._initialized){this._initialized=!0;var t=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,t,this.options),this._finalKeyframe=t.length?t[t.length-1]:{},this.domPlayer.addEventListener(\"finish\",(function(){return e._onFinish()}))}}},{key:\"_preparePlayerBeforeStart\",value:function(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}},{key:\"_triggerWebAnimation\",value:function(e,t,n){return e.animate(t,n)}},{key:\"onStart\",value:function(e){this._onStartFns.push(e)}},{key:\"onDone\",value:function(e){this._onDoneFns.push(e)}},{key:\"onDestroy\",value:function(e){this._onDestroyFns.push(e)}},{key:\"play\",value:function(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach((function(e){return e()})),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),this.domPlayer.play()}},{key:\"pause\",value:function(){this.init(),this.domPlayer.pause()}},{key:\"finish\",value:function(){this.init(),this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish()}},{key:\"reset\",value:function(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1}},{key:\"_resetDomPlayerState\",value:function(){this.domPlayer&&this.domPlayer.cancel()}},{key:\"restart\",value:function(){this.reset(),this.play()}},{key:\"hasStarted\",value:function(){return this._started}},{key:\"destroy\",value:function(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach((function(e){return e()})),this._onDestroyFns=[])}},{key:\"setPosition\",value:function(e){this.domPlayer.currentTime=e*this.time}},{key:\"getPosition\",value:function(){return this.domPlayer.currentTime/this.time}},{key:\"beforeDestroy\",value:function(){var e=this,t={};this.hasStarted()&&Object.keys(this._finalKeyframe).forEach((function(n){\"offset\"!=n&&(t[n]=e._finished?e._finalKeyframe[n]:og(e.element,n))})),this.currentSnapshot=t}},{key:\"triggerCallback\",value:function(e){var t=\"start\"==e?this._onStartFns:this._onDoneFns;t.forEach((function(e){return e()})),t.length=0}},{key:\"totalTime\",get:function(){return this._delay+this._duration}}]),e}(),vy=function(){function e(){_classCallCheck(this,e),this._isNativeImpl=/\\{\\s*\\[native\\s+code\\]\\s*\\}/.test(gy().toString()),this._cssKeyframesDriver=new py}return _createClass(e,[{key:\"validateStyleProperty\",value:function(e){return Iv(e)}},{key:\"matchesElement\",value:function(e,t){return Av(e,t)}},{key:\"containsElement\",value:function(e,t){return Pv(e,t)}},{key:\"query\",value:function(e,t,n){return jv(e,t,n)}},{key:\"computeStyle\",value:function(e,t,n){return window.getComputedStyle(e)[t]}},{key:\"overrideWebAnimationsSupport\",value:function(e){this._isNativeImpl=e}},{key:\"animate\",value:function(e,t,n,r,i){var a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:[],o=arguments.length>6?arguments[6]:void 0;if(!o&&!this._isNativeImpl)return this._cssKeyframesDriver.animate(e,t,n,r,i,a);var s={duration:n,delay:r,fill:0==r?\"both\":\"forwards\"};i&&(s.easing=i);var l={},u=a.filter((function(e){return e instanceof _y}));rg(n,r)&&u.forEach((function(e){var t=e.currentSnapshot;Object.keys(t).forEach((function(e){return l[e]=t[e]}))}));var c=ny(e,t=ig(e,t=t.map((function(e){return Bv(e,!1)})),l));return new _y(e,t,s,c)}}]),e}();function gy(){return\"undefined\"!=typeof window&&void 0!==window.document&&Element.prototype.animate||{}}var yy,by=((yy=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this))._nextAnimationId=0,i._renderer=e.createRenderer(r.body,{id:\"0\",encapsulation:_t.None,styles:[],data:{animation:[]}}),i}return _createClass(n,[{key:\"build\",value:function(e){var t=this._nextAnimationId.toString();this._nextAnimationId++;var n=Array.isArray(e)?dv(e):e;return Cy(this._renderer,null,t,\"register\",[n]),new ky(t,this._renderer)}}]),n}(lv)).\\u0275fac=function(e){return new(e||yy)(et(el),et(Wc))},yy.\\u0275prov=_e({token:yy,factory:yy.\\u0275fac}),yy),ky=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this))._id=e,i._renderer=r,i}return _createClass(n,[{key:\"create\",value:function(e,t){return new wy(this._id,e,t||{},this._renderer)}}]),n}(function(){return function e(){_classCallCheck(this,e)}}()),wy=function(){function e(t,n,r,i){_classCallCheck(this,e),this.id=t,this.element=n,this._renderer=i,this.parentPlayer=null,this._started=!1,this.totalTime=0,this._command(\"create\",r)}return _createClass(e,[{key:\"_listen\",value:function(e,t){return this._renderer.listen(this.element,\"@@\".concat(this.id,\":\").concat(e),t)}},{key:\"_command\",value:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r=0&&e1&&void 0!==arguments[1]?arguments[1]:0;return(function(e){_inherits(r,e);var n=_createSuper(r);function r(){var e;_classCallCheck(this,r);for(var i=arguments.length,a=new Array(i),o=0;o2&&void 0!==arguments[2]?arguments[2]:{},i=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),a=Object.assign(Object.assign({},rb),r.animation);r.centered&&(e=i.left+i.width/2,t=i.top+i.height/2);var o=r.radius||function(e,t,n){var r=Math.max(Math.abs(e-n.left),Math.abs(e-n.right)),i=Math.max(Math.abs(t-n.top),Math.abs(t-n.bottom));return Math.sqrt(r*r+i*i)}(e,t,i),s=e-i.left,l=t-i.top,u=a.enterDuration,c=document.createElement(\"div\");c.classList.add(\"mat-ripple-element\"),c.style.left=\"\".concat(s-o,\"px\"),c.style.top=\"\".concat(l-o,\"px\"),c.style.height=\"\".concat(2*o,\"px\"),c.style.width=\"\".concat(2*o,\"px\"),null!=r.color&&(c.style.backgroundColor=r.color),c.style.transitionDuration=\"\".concat(u,\"ms\"),this._containerElement.appendChild(c),window.getComputedStyle(c).getPropertyValue(\"opacity\"),c.style.transform=\"scale(1)\";var d=new nb(this,c,r);return d.state=0,this._activeRipples.add(d),r.persistent||(this._mostRecentTransientRipple=d),this._runTimeoutOutsideZone((function(){var e=d===n._mostRecentTransientRipple;d.state=1,r.persistent||e&&n._isPointerDown||d.fadeOut()}),u),d}},{key:\"fadeOutRipple\",value:function(e){var t=this._activeRipples.delete(e);if(e===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),this._activeRipples.size||(this._containerRect=null),t){var n=e.element,r=Object.assign(Object.assign({},rb),e.config.animation);n.style.transitionDuration=\"\".concat(r.exitDuration,\"ms\"),n.style.opacity=\"0\",e.state=2,this._runTimeoutOutsideZone((function(){e.state=3,n.parentNode.removeChild(n)}),r.exitDuration)}}},{key:\"fadeOutAll\",value:function(){this._activeRipples.forEach((function(e){return e.fadeOut()}))}},{key:\"setupTriggerEvents\",value:function(e){var t=this,n=gp(e);n&&n!==this._triggerElement&&(this._removeTriggerEvents(),this._ngZone.runOutsideAngular((function(){t._triggerEvents.forEach((function(e,t){n.addEventListener(t,e,ib)}))})),this._triggerElement=n)}},{key:\"_runTimeoutOutsideZone\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;this._ngZone.runOutsideAngular((function(){return setTimeout(e,t)}))}},{key:\"_removeTriggerEvents\",value:function(){var e=this;this._triggerElement&&this._triggerEvents.forEach((function(t,n){e._triggerElement.removeEventListener(n,t,ib)}))}}]),e}(),ob=new Be(\"mat-ripple-global-options\"),sb=((Zy=function(){function e(t,n,r,i,a){_classCallCheck(this,e),this._elementRef=t,this.radius=0,this._disabled=!1,this._isInitialized=!1,this._globalOptions=i||{},this._rippleRenderer=new ab(this,n,t,r),\"NoopAnimations\"===a&&(this._globalOptions.animation={enterDuration:0,exitDuration:0})}return _createClass(e,[{key:\"ngOnInit\",value:function(){this._isInitialized=!0,this._setupTriggerEventsIfEnabled()}},{key:\"ngOnDestroy\",value:function(){this._rippleRenderer._removeTriggerEvents()}},{key:\"fadeOutAll\",value:function(){this._rippleRenderer.fadeOutAll()}},{key:\"_setupTriggerEventsIfEnabled\",value:function(){!this.disabled&&this._isInitialized&&this._rippleRenderer.setupTriggerEvents(this.trigger)}},{key:\"launch\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2?arguments[2]:void 0;return\"number\"==typeof e?this._rippleRenderer.fadeInRipple(e,t,Object.assign(Object.assign({},this.rippleConfig),n)):this._rippleRenderer.fadeInRipple(0,0,Object.assign(Object.assign({},this.rippleConfig),e))}},{key:\"disabled\",get:function(){return this._disabled},set:function(e){this._disabled=e,this._setupTriggerEventsIfEnabled()}},{key:\"trigger\",get:function(){return this._trigger||this._elementRef.nativeElement},set:function(e){this._trigger=e,this._setupTriggerEventsIfEnabled()}},{key:\"rippleConfig\",get:function(){return{centered:this.centered,radius:this.radius,color:this.color,animation:Object.assign(Object.assign({},this._globalOptions.animation),this.animation),terminateOnPointerUp:this._globalOptions.terminateOnPointerUp}}},{key:\"rippleDisabled\",get:function(){return this.disabled||!!this._globalOptions.disabled}}]),e}()).\\u0275fac=function(e){return new(e||Zy)(Io(Qs),Io(cc),Io(Cp),Io(ob,8),Io(Yy,8))},Zy.\\u0275dir=Lt({type:Zy,selectors:[[\"\",\"mat-ripple\",\"\"],[\"\",\"matRipple\",\"\"]],hostAttrs:[1,\"mat-ripple\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"mat-ripple-unbounded\",t.unbounded)},inputs:{radius:[\"matRippleRadius\",\"radius\"],disabled:[\"matRippleDisabled\",\"disabled\"],trigger:[\"matRippleTrigger\",\"trigger\"],color:[\"matRippleColor\",\"color\"],unbounded:[\"matRippleUnbounded\",\"unbounded\"],centered:[\"matRippleCentered\",\"centered\"],animation:[\"matRippleAnimation\",\"animation\"]},exportAs:[\"matRipple\"]}),Zy),lb=((Ky=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Ky}),Ky.\\u0275inj=ve({factory:function(e){return new(e||Ky)},imports:[[zy,Mp],zy]}),Ky),ub=((Jy=function e(t){_classCallCheck(this,e),this._animationMode=t,this.state=\"unchecked\",this.disabled=!1}).\\u0275fac=function(e){return new(e||Jy)(Io(Yy,8))},Jy.\\u0275cmp=bt({type:Jy,selectors:[[\"mat-pseudo-checkbox\"]],hostAttrs:[1,\"mat-pseudo-checkbox\"],hostVars:8,hostBindings:function(e,t){2&e&&fs(\"mat-pseudo-checkbox-indeterminate\",\"indeterminate\"===t.state)(\"mat-pseudo-checkbox-checked\",\"checked\"===t.state)(\"mat-pseudo-checkbox-disabled\",t.disabled)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode)},inputs:{state:\"state\",disabled:\"disabled\"},decls:0,vars:0,template:function(e,t){},styles:['.mat-pseudo-checkbox{width:16px;height:16px;border:2px solid;border-radius:2px;cursor:pointer;display:inline-block;vertical-align:middle;box-sizing:border-box;position:relative;flex-shrink:0;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1),background-color 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox::after{position:absolute;opacity:0;content:\"\";border-bottom:2px solid currentColor;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox.mat-pseudo-checkbox-indeterminate{border-color:transparent}._mat-animation-noopable.mat-pseudo-checkbox{transition:none;animation:none}._mat-animation-noopable.mat-pseudo-checkbox::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{top:5px;left:1px;width:10px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{top:2.4px;left:1px;width:8px;height:3px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}\\n'],encapsulation:2,changeDetection:0}),Jy),cb=(($y=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:$y}),$y.\\u0275inj=ve({factory:function(e){return new(e||$y)}}),$y),db=Vy((function e(){_classCallCheck(this,e)})),hb=0,fb=((Qy=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e;return _classCallCheck(this,n),(e=t.apply(this,arguments))._labelId=\"mat-optgroup-label-\".concat(hb++),e}return n}(db)).\\u0275fac=function(e){return mb(e||Qy)},Qy.\\u0275cmp=bt({type:Qy,selectors:[[\"mat-optgroup\"]],hostAttrs:[\"role\",\"group\",1,\"mat-optgroup\"],hostVars:4,hostBindings:function(e,t){2&e&&(Do(\"aria-disabled\",t.disabled.toString())(\"aria-labelledby\",t._labelId),fs(\"mat-optgroup-disabled\",t.disabled))},inputs:{disabled:\"disabled\",label:\"label\"},exportAs:[\"matOptgroup\"],features:[Es],ngContentSelectors:Py,decls:4,vars:2,consts:[[1,\"mat-optgroup-label\",3,\"id\"]],template:function(e,t){1&e&&(Xo(Ay),Ho(0,\"label\",0),Ls(1),ns(2),Fo(),ns(3,1)),2&e&&(jo(\"id\",t._labelId),bi(1),xs(\"\",t.label,\" \"))},styles:[\".mat-optgroup-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup-label[disabled]{cursor:default}[dir=rtl] .mat-optgroup-label{text-align:right}.mat-optgroup-label .mat-icon{margin-right:16px;vertical-align:middle}.mat-optgroup-label .mat-icon svg{vertical-align:top}[dir=rtl] .mat-optgroup-label .mat-icon{margin-left:16px;margin-right:0}\\n\"],encapsulation:2,changeDetection:0}),Qy),mb=cr(fb),pb=0,_b=function e(t){var n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];_classCallCheck(this,e),this.source=t,this.isUserInput=n},vb=new Be(\"MAT_OPTION_PARENT_COMPONENT\"),gb=((Xy=function(){function e(t,n,r,i){_classCallCheck(this,e),this._element=t,this._changeDetectorRef=n,this._parent=r,this.group=i,this._selected=!1,this._active=!1,this._disabled=!1,this._mostRecentViewValue=\"\",this.id=\"mat-option-\".concat(pb++),this.onSelectionChange=new bu,this._stateChanges=new x}return _createClass(e,[{key:\"select\",value:function(){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}},{key:\"deselect\",value:function(){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent())}},{key:\"focus\",value:function(e,t){var n=this._getHostElement();\"function\"==typeof n.focus&&n.focus(t)}},{key:\"setActiveStyles\",value:function(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}},{key:\"setInactiveStyles\",value:function(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}},{key:\"getLabel\",value:function(){return this.viewValue}},{key:\"_handleKeydown\",value:function(e){13!==e.keyCode&&32!==e.keyCode||Jm(e)||(this._selectViaInteraction(),e.preventDefault())}},{key:\"_selectViaInteraction\",value:function(){this.disabled||(this._selected=!this.multiple||!this._selected,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent(!0))}},{key:\"_getAriaSelected\",value:function(){return this.selected||!this.multiple&&null}},{key:\"_getTabIndex\",value:function(){return this.disabled?\"-1\":\"0\"}},{key:\"_getHostElement\",value:function(){return this._element.nativeElement}},{key:\"ngAfterViewChecked\",value:function(){if(this._selected){var e=this.viewValue;e!==this._mostRecentViewValue&&(this._mostRecentViewValue=e,this._stateChanges.next())}}},{key:\"ngOnDestroy\",value:function(){this._stateChanges.complete()}},{key:\"_emitSelectionChangeEvent\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.onSelectionChange.emit(new _b(this,e))}},{key:\"multiple\",get:function(){return this._parent&&this._parent.multiple}},{key:\"selected\",get:function(){return this._selected}},{key:\"disabled\",get:function(){return this.group&&this.group.disabled||this._disabled},set:function(e){this._disabled=mp(e)}},{key:\"disableRipple\",get:function(){return this._parent&&this._parent.disableRipple}},{key:\"active\",get:function(){return this._active}},{key:\"viewValue\",get:function(){return(this._getHostElement().textContent||\"\").trim()}}]),e}()).\\u0275fac=function(e){return new(e||Xy)(Io(Qs),Io(eo),Io(vb,8),Io(fb,8))},Xy.\\u0275cmp=bt({type:Xy,selectors:[[\"mat-option\"]],hostAttrs:[\"role\",\"option\",1,\"mat-option\",\"mat-focus-indicator\"],hostVars:12,hostBindings:function(e,t){1&e&&qo(\"click\",(function(){return t._selectViaInteraction()}))(\"keydown\",(function(e){return t._handleKeydown(e)})),2&e&&(Ds(\"id\",t.id),Do(\"tabindex\",t._getTabIndex())(\"aria-selected\",t._getAriaSelected())(\"aria-disabled\",t.disabled.toString()),fs(\"mat-selected\",t.selected)(\"mat-option-multiple\",t.multiple)(\"mat-active\",t.active)(\"mat-option-disabled\",t.disabled))},inputs:{id:\"id\",disabled:\"disabled\",value:\"value\"},outputs:{onSelectionChange:\"onSelectionChange\"},exportAs:[\"matOption\"],ngContentSelectors:Hy,decls:4,vars:3,consts:[[\"class\",\"mat-option-pseudo-checkbox\",3,\"state\",\"disabled\",4,\"ngIf\"],[1,\"mat-option-text\"],[\"mat-ripple\",\"\",1,\"mat-option-ripple\",3,\"matRippleTrigger\",\"matRippleDisabled\"],[1,\"mat-option-pseudo-checkbox\",3,\"state\",\"disabled\"]],template:function(e,t){1&e&&(Xo(),Yo(0,jy,1,2,\"mat-pseudo-checkbox\",0),Ho(1,\"span\",1),ns(2),Fo(),No(3,\"div\",2)),2&e&&(jo(\"ngIf\",t.multiple),bi(3),jo(\"matRippleTrigger\",t._getHostElement())(\"matRippleDisabled\",t.disabled||t.disableRipple))},directives:[Sd,sb,ub],styles:[\".mat-option{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative;cursor:pointer;outline:none;display:flex;flex-direction:row;max-width:100%;box-sizing:border-box;align-items:center;-webkit-tap-highlight-color:transparent}.mat-option[disabled]{cursor:default}[dir=rtl] .mat-option{text-align:right}.mat-option .mat-icon{margin-right:16px;vertical-align:middle}.mat-option .mat-icon svg{vertical-align:top}[dir=rtl] .mat-option .mat-icon{margin-left:16px;margin-right:0}.mat-option[aria-disabled=true]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:32px}[dir=rtl] .mat-optgroup .mat-option:not(.mat-option-multiple){padding-left:16px;padding-right:32px}.cdk-high-contrast-active .mat-option{margin:0 1px}.cdk-high-contrast-active .mat-option.mat-active{border:solid 1px currentColor;margin:0}.mat-option-text{display:inline-block;flex-grow:1;overflow:hidden;text-overflow:ellipsis}.mat-option .mat-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.cdk-high-contrast-active .mat-option .mat-option-ripple{opacity:.5}.mat-option-pseudo-checkbox{margin-right:8px}[dir=rtl] .mat-option-pseudo-checkbox{margin-left:8px;margin-right:0}\\n\"],encapsulation:2,changeDetection:0}),Xy);function yb(e,t,n){if(n.length){for(var r=t.toArray(),i=n.toArray(),a=0,o=0;o0&&void 0!==arguments[0]?arguments[0]:\"program\",t=arguments.length>1?arguments[1]:void 0;this._focusMonitor.focusVia(this._getHostElement(),e,t)}},{key:\"_getHostElement\",value:function(){return this._elementRef.nativeElement}},{key:\"_isRippleDisabled\",value:function(){return this.disableRipple||this.disabled}},{key:\"_hasHostAttributes\",value:function(){for(var e=this,t=arguments.length,n=new Array(t),r=0;r*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}\\n\"],encapsulation:2,changeDetection:0}),Cb),Vb=((wb=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){return _classCallCheck(this,n),t.call(this,r,e,i)}return _createClass(n,[{key:\"_haltDisabledEvents\",value:function(e){this.disabled&&(e.preventDefault(),e.stopImmediatePropagation())}}]),n}(zb)).\\u0275fac=function(e){return new(e||wb)(Io(t_),Io(Qs),Io(Yy,8))},wb.\\u0275cmp=bt({type:wb,selectors:[[\"a\",\"mat-button\",\"\"],[\"a\",\"mat-raised-button\",\"\"],[\"a\",\"mat-icon-button\",\"\"],[\"a\",\"mat-fab\",\"\"],[\"a\",\"mat-mini-fab\",\"\"],[\"a\",\"mat-stroked-button\",\"\"],[\"a\",\"mat-flat-button\",\"\"]],hostAttrs:[1,\"mat-focus-indicator\"],hostVars:5,hostBindings:function(e,t){1&e&&qo(\"click\",(function(e){return t._haltDisabledEvents(e)})),2&e&&(Do(\"tabindex\",t.disabled?-1:t.tabIndex||0)(\"disabled\",t.disabled||null)(\"aria-disabled\",t.disabled.toString()),fs(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\"},exportAs:[\"matButton\",\"matAnchor\"],features:[Es],attrs:Rb,ngContentSelectors:Hb,decls:4,vars:5,consts:[[1,\"mat-button-wrapper\"],[\"matRipple\",\"\",1,\"mat-button-ripple\",3,\"matRippleDisabled\",\"matRippleCentered\",\"matRippleTrigger\"],[1,\"mat-button-focus-overlay\"]],template:function(e,t){1&e&&(Xo(),Ho(0,\"span\",0),ns(1),Fo(),No(2,\"div\",1),No(3,\"div\",2)),2&e&&(bi(2),fs(\"mat-button-ripple-round\",t.isRoundButton||t.isIconButton),jo(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleCentered\",t.isIconButton)(\"matRippleTrigger\",t._getHostElement()))},directives:[sb],styles:[\".mat-button .mat-button-focus-overlay,.mat-icon-button .mat-button-focus-overlay{opacity:0}.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:.04}@media(hover: none){.mat-button:hover .mat-button-focus-overlay,.mat-stroked-button:hover .mat-button-focus-overlay{opacity:0}}.mat-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-button[disabled],.mat-icon-button[disabled],.mat-stroked-button[disabled],.mat-flat-button[disabled]{cursor:default}.mat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-button.cdk-program-focused .mat-button-focus-overlay,.mat-icon-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-icon-button.cdk-program-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-stroked-button.cdk-program-focused .mat-button-focus-overlay,.mat-flat-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-flat-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-button::-moz-focus-inner,.mat-icon-button::-moz-focus-inner,.mat-stroked-button::-moz-focus-inner,.mat-flat-button::-moz-focus-inner{border:0}.mat-raised-button{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-raised-button::-moz-focus-inner{border:0}.mat-raised-button[disabled]{cursor:default}.mat-raised-button.cdk-keyboard-focused .mat-button-focus-overlay,.mat-raised-button.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-raised-button::-moz-focus-inner{border:0}._mat-animation-noopable.mat-raised-button{transition:none;animation:none}.mat-stroked-button{border:1px solid currentColor;padding:0 15px;line-height:34px}.mat-stroked-button .mat-button-ripple.mat-ripple,.mat-stroked-button .mat-button-focus-overlay{top:-1px;left:-1px;right:-1px;bottom:-1px}.mat-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:56px;height:56px;padding:0;flex-shrink:0}.mat-fab::-moz-focus-inner{border:0}.mat-fab[disabled]{cursor:default}.mat-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-fab{transition:none;animation:none}.mat-fab .mat-button-wrapper{padding:16px 0;display:inline-block;line-height:24px}.mat-mini-fab{box-sizing:border-box;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;display:inline-block;white-space:nowrap;text-decoration:none;vertical-align:baseline;text-align:center;margin:0;min-width:64px;line-height:36px;padding:0 16px;border-radius:4px;overflow:visible;transform:translate3d(0, 0, 0);transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);min-width:0;border-radius:50%;width:40px;height:40px;padding:0;flex-shrink:0}.mat-mini-fab::-moz-focus-inner{border:0}.mat-mini-fab[disabled]{cursor:default}.mat-mini-fab.cdk-keyboard-focused .mat-button-focus-overlay,.mat-mini-fab.cdk-program-focused .mat-button-focus-overlay{opacity:.12}.mat-mini-fab::-moz-focus-inner{border:0}._mat-animation-noopable.mat-mini-fab{transition:none;animation:none}.mat-mini-fab .mat-button-wrapper{padding:8px 0;display:inline-block;line-height:24px}.mat-icon-button{padding:0;min-width:0;width:40px;height:40px;flex-shrink:0;line-height:40px;border-radius:50%}.mat-icon-button i,.mat-icon-button .mat-icon{line-height:24px}.mat-button-ripple.mat-ripple,.mat-button-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-button-ripple.mat-ripple:not(:empty){transform:translateZ(0)}.mat-button-focus-overlay{opacity:0;transition:opacity 200ms cubic-bezier(0.35, 0, 0.25, 1),background-color 200ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-button-focus-overlay{transition:none}.cdk-high-contrast-active .mat-button-focus-overlay{background-color:#fff}.cdk-high-contrast-black-on-white .mat-button-focus-overlay{background-color:#000}.mat-button-ripple-round{border-radius:50%;z-index:1}.mat-button .mat-button-wrapper>*,.mat-flat-button .mat-button-wrapper>*,.mat-stroked-button .mat-button-wrapper>*,.mat-raised-button .mat-button-wrapper>*,.mat-icon-button .mat-button-wrapper>*,.mat-fab .mat-button-wrapper>*,.mat-mini-fab .mat-button-wrapper>*{vertical-align:middle}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button{display:block;font-size:inherit;width:2.5em;height:2.5em}.cdk-high-contrast-active .mat-button,.cdk-high-contrast-active .mat-flat-button,.cdk-high-contrast-active .mat-raised-button,.cdk-high-contrast-active .mat-icon-button,.cdk-high-contrast-active .mat-fab,.cdk-high-contrast-active .mat-mini-fab{outline:solid 1px}\\n\"],encapsulation:2,changeDetection:0}),wb),Wb=((kb=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:kb}),kb.\\u0275inj=ve({factory:function(e){return new(e||kb)},imports:[[lb,zy],zy]}),kb),Ub=[\"*\",[[\"mat-card-footer\"]]],Bb=[\"*\",\"mat-card-footer\"],qb=[[[\"\",\"mat-card-avatar\",\"\"],[\"\",\"matCardAvatar\",\"\"]],[[\"mat-card-title\"],[\"mat-card-subtitle\"],[\"\",\"mat-card-title\",\"\"],[\"\",\"mat-card-subtitle\",\"\"],[\"\",\"matCardTitle\",\"\"],[\"\",\"matCardSubtitle\",\"\"]],\"*\"],Gb=[\"[mat-card-avatar], [matCardAvatar]\",\"mat-card-title, mat-card-subtitle,\\n [mat-card-title], [mat-card-subtitle],\\n [matCardTitle], [matCardSubtitle]\",\"*\"],$b=((Yb=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Yb)},Yb.\\u0275dir=Lt({type:Yb,selectors:[[\"mat-card-content\"],[\"\",\"mat-card-content\",\"\"],[\"\",\"matCardContent\",\"\"]],hostAttrs:[1,\"mat-card-content\"]}),Yb),Jb=((Ob=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Ob)},Ob.\\u0275dir=Lt({type:Ob,selectors:[[\"mat-card-title\"],[\"\",\"mat-card-title\",\"\"],[\"\",\"matCardTitle\",\"\"]],hostAttrs:[1,\"mat-card-title\"]}),Ob),Kb=((Db=function e(){_classCallCheck(this,e),this.align=\"start\"}).\\u0275fac=function(e){return new(e||Db)},Db.\\u0275dir=Lt({type:Db,selectors:[[\"mat-card-actions\"]],hostAttrs:[1,\"mat-card-actions\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"mat-card-actions-align-end\",\"end\"===t.align)},inputs:{align:\"align\"},exportAs:[\"matCardActions\"]}),Db),Zb=((xb=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||xb)},xb.\\u0275dir=Lt({type:xb,selectors:[[\"\",\"mat-card-image\",\"\"],[\"\",\"matCardImage\",\"\"]],hostAttrs:[1,\"mat-card-image\"]}),xb),Qb=((Tb=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Tb)},Tb.\\u0275dir=Lt({type:Tb,selectors:[[\"\",\"mat-card-avatar\",\"\"],[\"\",\"matCardAvatar\",\"\"]],hostAttrs:[1,\"mat-card-avatar\"]}),Tb),Xb=((Lb=function e(t){_classCallCheck(this,e),this._animationMode=t}).\\u0275fac=function(e){return new(e||Lb)(Io(Yy,8))},Lb.\\u0275cmp=bt({type:Lb,selectors:[[\"mat-card\"]],hostAttrs:[1,\"mat-card\",\"mat-focus-indicator\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode)},exportAs:[\"matCard\"],ngContentSelectors:Bb,decls:2,vars:0,template:function(e,t){1&e&&(Xo(Ub),ns(0),ns(1,1))},styles:[\".mat-card{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);display:block;position:relative;padding:16px;border-radius:4px}._mat-animation-noopable.mat-card{transition:none;animation:none}.mat-card .mat-divider-horizontal{position:absolute;left:0;width:100%}[dir=rtl] .mat-card .mat-divider-horizontal{left:auto;right:0}.mat-card .mat-divider-horizontal.mat-divider-inset{position:static;margin:0}[dir=rtl] .mat-card .mat-divider-horizontal.mat-divider-inset{margin-right:0}.cdk-high-contrast-active .mat-card{outline:solid 1px}.mat-card-actions,.mat-card-subtitle,.mat-card-content{display:block;margin-bottom:16px}.mat-card-title{display:block;margin-bottom:8px}.mat-card-actions{margin-left:-8px;margin-right:-8px;padding:8px 0}.mat-card-actions-align-end{display:flex;justify-content:flex-end}.mat-card-image{width:calc(100% + 32px);margin:0 -16px 16px -16px}.mat-card-footer{display:block;margin:0 -16px -16px -16px}.mat-card-actions .mat-button,.mat-card-actions .mat-raised-button,.mat-card-actions .mat-stroked-button{margin:0 8px}.mat-card-header{display:flex;flex-direction:row}.mat-card-header .mat-card-title{margin-bottom:12px}.mat-card-header-text{margin:0 16px}.mat-card-avatar{height:40px;width:40px;border-radius:50%;flex-shrink:0;object-fit:cover}.mat-card-title-group{display:flex;justify-content:space-between}.mat-card-sm-image{width:80px;height:80px}.mat-card-md-image{width:112px;height:112px}.mat-card-lg-image{width:152px;height:152px}.mat-card-xl-image{width:240px;height:240px;margin:-8px}.mat-card-title-group>.mat-card-xl-image{margin:-8px 0 8px}@media(max-width: 599px){.mat-card-title-group{margin:0}.mat-card-xl-image{margin-left:0;margin-right:0}}.mat-card>:first-child,.mat-card-content>:first-child{margin-top:0}.mat-card>:last-child:not(.mat-card-footer),.mat-card-content>:last-child:not(.mat-card-footer){margin-bottom:0}.mat-card-image:first-child{margin-top:-16px;border-top-left-radius:inherit;border-top-right-radius:inherit}.mat-card>.mat-card-actions:last-child{margin-bottom:-8px;padding-bottom:0}.mat-card-actions .mat-button:first-child,.mat-card-actions .mat-raised-button:first-child,.mat-card-actions .mat-stroked-button:first-child{margin-left:0;margin-right:0}.mat-card-title:not(:first-child),.mat-card-subtitle:not(:first-child){margin-top:-4px}.mat-card-header .mat-card-subtitle:not(:first-child){margin-top:-8px}.mat-card>.mat-card-xl-image:first-child{margin-top:-8px}.mat-card>.mat-card-xl-image:last-child{margin-bottom:-8px}\\n\"],encapsulation:2,changeDetection:0}),Lb),ek=((Sb=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||Sb)},Sb.\\u0275cmp=bt({type:Sb,selectors:[[\"mat-card-header\"]],hostAttrs:[1,\"mat-card-header\"],ngContentSelectors:Gb,decls:4,vars:0,consts:[[1,\"mat-card-header-text\"]],template:function(e,t){1&e&&(Xo(qb),ns(0),Ho(1,\"div\",0),ns(2,1),Fo(),ns(3,2))},encapsulation:2,changeDetection:0}),Sb),tk=((Mb=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Mb}),Mb.\\u0275inj=ve({factory:function(e){return new(e||Mb)},imports:[[zy],zy]}),Mb),nk=[\"input\"],rk=function(){return{enterDuration:150}},ik=[\"*\"],ak=new Be(\"mat-checkbox-default-options\",{providedIn:\"root\",factory:function(){return{color:\"accent\",clickAction:\"check-indeterminate\"}}}),ok=new Be(\"mat-checkbox-click-action\"),sk=0,lk={provide:Wh,useExisting:De((function(){return dk})),multi:!0},uk=function e(){_classCallCheck(this,e)},ck=By(Wy(Uy(Vy((function e(t){_classCallCheck(this,e),this._elementRef=t}))))),dk=((Ab=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s,l,u){var c;return _classCallCheck(this,n),(c=t.call(this,e))._changeDetectorRef=r,c._focusMonitor=i,c._ngZone=a,c._clickAction=s,c._animationMode=l,c._options=u,c.ariaLabel=\"\",c.ariaLabelledby=null,c._uniqueId=\"mat-checkbox-\".concat(++sk),c.id=c._uniqueId,c.labelPosition=\"after\",c.name=null,c.change=new bu,c.indeterminateChange=new bu,c._onTouched=function(){},c._currentAnimationClass=\"\",c._currentCheckState=0,c._controlValueAccessorChangeFn=function(){},c._checked=!1,c._disabled=!1,c._indeterminate=!1,c._options=c._options||{},c._options.color&&(c.color=c._options.color),c.tabIndex=parseInt(o)||0,c._focusMonitor.monitor(e,!0).subscribe((function(e){e||Promise.resolve().then((function(){c._onTouched(),r.markForCheck()}))})),c._clickAction=c._clickAction||c._options.clickAction,c}return _createClass(n,[{key:\"ngAfterViewInit\",value:function(){this._syncIndeterminate(this._indeterminate)}},{key:\"ngAfterViewChecked\",value:function(){}},{key:\"ngOnDestroy\",value:function(){this._focusMonitor.stopMonitoring(this._elementRef)}},{key:\"_isRippleDisabled\",value:function(){return this.disableRipple||this.disabled}},{key:\"_onLabelTextChange\",value:function(){this._changeDetectorRef.detectChanges()}},{key:\"writeValue\",value:function(e){this.checked=!!e}},{key:\"registerOnChange\",value:function(e){this._controlValueAccessorChangeFn=e}},{key:\"registerOnTouched\",value:function(e){this._onTouched=e}},{key:\"setDisabledState\",value:function(e){this.disabled=e}},{key:\"_getAriaChecked\",value:function(){return this.checked?\"true\":this.indeterminate?\"mixed\":\"false\"}},{key:\"_transitionCheckState\",value:function(e){var t=this._currentCheckState,n=this._elementRef.nativeElement;if(t!==e&&(this._currentAnimationClass.length>0&&n.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(t,e),this._currentCheckState=e,this._currentAnimationClass.length>0)){n.classList.add(this._currentAnimationClass);var r=this._currentAnimationClass;this._ngZone.runOutsideAngular((function(){setTimeout((function(){n.classList.remove(r)}),1e3)}))}}},{key:\"_emitChangeEvent\",value:function(){var e=new uk;e.source=this,e.checked=this.checked,this._controlValueAccessorChangeFn(this.checked),this.change.emit(e)}},{key:\"toggle\",value:function(){this.checked=!this.checked}},{key:\"_onInputClick\",value:function(e){var t=this;e.stopPropagation(),this.disabled||\"noop\"===this._clickAction?this.disabled||\"noop\"!==this._clickAction||(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&\"check\"!==this._clickAction&&Promise.resolve().then((function(){t._indeterminate=!1,t.indeterminateChange.emit(t._indeterminate)})),this.toggle(),this._transitionCheckState(this._checked?1:2),this._emitChangeEvent())}},{key:\"focus\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"keyboard\",t=arguments.length>1?arguments[1]:void 0;this._focusMonitor.focusVia(this._inputElement,e,t)}},{key:\"_onInteractionEvent\",value:function(e){e.stopPropagation()}},{key:\"_getAnimationClassForCheckStateTransition\",value:function(e,t){if(\"NoopAnimations\"===this._animationMode)return\"\";var n=\"\";switch(e){case 0:if(1===t)n=\"unchecked-checked\";else{if(3!=t)return\"\";n=\"unchecked-indeterminate\"}break;case 2:n=1===t?\"unchecked-checked\":\"unchecked-indeterminate\";break;case 1:n=2===t?\"checked-unchecked\":\"checked-indeterminate\";break;case 3:n=1===t?\"indeterminate-checked\":\"indeterminate-unchecked\"}return\"mat-checkbox-anim-\".concat(n)}},{key:\"_syncIndeterminate\",value:function(e){var t=this._inputElement;t&&(t.nativeElement.indeterminate=e)}},{key:\"inputId\",get:function(){return\"\".concat(this.id||this._uniqueId,\"-input\")}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=mp(e)}},{key:\"checked\",get:function(){return this._checked},set:function(e){e!=this.checked&&(this._checked=e,this._changeDetectorRef.markForCheck())}},{key:\"disabled\",get:function(){return this._disabled},set:function(e){var t=mp(e);t!==this.disabled&&(this._disabled=t,this._changeDetectorRef.markForCheck())}},{key:\"indeterminate\",get:function(){return this._indeterminate},set:function(e){var t=e!=this._indeterminate;this._indeterminate=mp(e),t&&(this._transitionCheckState(this._indeterminate?3:this.checked?1:2),this.indeterminateChange.emit(this._indeterminate)),this._syncIndeterminate(this._indeterminate)}}]),n}(ck)).\\u0275fac=function(e){return new(e||Ab)(Io(Qs),Io(eo),Io(t_),Io(cc),Ao(\"tabindex\"),Io(ok,8),Io(Yy,8),Io(ak,8))},Ab.\\u0275cmp=bt({type:Ab,selectors:[[\"mat-checkbox\"]],viewQuery:function(e,t){var n;1&e&&(Iu(nk,!0),Iu(sb,!0)),2&e&&(Yu(n=Hu())&&(t._inputElement=n.first),Yu(n=Hu())&&(t.ripple=n.first))},hostAttrs:[1,\"mat-checkbox\"],hostVars:12,hostBindings:function(e,t){2&e&&(Ds(\"id\",t.id),Do(\"tabindex\",null),fs(\"mat-checkbox-indeterminate\",t.indeterminate)(\"mat-checkbox-checked\",t.checked)(\"mat-checkbox-disabled\",t.disabled)(\"mat-checkbox-label-before\",\"before\"==t.labelPosition)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],id:\"id\",labelPosition:\"labelPosition\",name:\"name\",required:\"required\",checked:\"checked\",disabled:\"disabled\",indeterminate:\"indeterminate\",value:\"value\"},outputs:{change:\"change\",indeterminateChange:\"indeterminateChange\"},exportAs:[\"matCheckbox\"],features:[$s([lk]),Es],ngContentSelectors:ik,decls:17,vars:19,consts:[[1,\"mat-checkbox-layout\"],[\"label\",\"\"],[1,\"mat-checkbox-inner-container\"],[\"type\",\"checkbox\",1,\"mat-checkbox-input\",\"cdk-visually-hidden\",3,\"id\",\"required\",\"checked\",\"disabled\",\"tabIndex\",\"change\",\"click\"],[\"input\",\"\"],[\"matRipple\",\"\",1,\"mat-checkbox-ripple\",\"mat-focus-indicator\",3,\"matRippleTrigger\",\"matRippleDisabled\",\"matRippleRadius\",\"matRippleCentered\",\"matRippleAnimation\"],[1,\"mat-ripple-element\",\"mat-checkbox-persistent-ripple\"],[1,\"mat-checkbox-frame\"],[1,\"mat-checkbox-background\"],[\"version\",\"1.1\",\"focusable\",\"false\",\"viewBox\",\"0 0 24 24\",0,\"xml\",\"space\",\"preserve\",1,\"mat-checkbox-checkmark\"],[\"fill\",\"none\",\"stroke\",\"white\",\"d\",\"M4.1,12.7 9,17.6 20.3,6.3\",1,\"mat-checkbox-checkmark-path\"],[1,\"mat-checkbox-mixedmark\"],[1,\"mat-checkbox-label\",3,\"cdkObserveContent\"],[\"checkboxLabel\",\"\"],[2,\"display\",\"none\"]],template:function(e,t){if(1&e&&(Xo(),Ho(0,\"label\",0,1),Ho(2,\"div\",2),Ho(3,\"input\",3,4),qo(\"change\",(function(e){return t._onInteractionEvent(e)}))(\"click\",(function(e){return t._onInputClick(e)})),Fo(),Ho(5,\"div\",5),No(6,\"div\",6),Fo(),No(7,\"div\",7),Ho(8,\"div\",8),Sn(),Ho(9,\"svg\",9),No(10,\"path\",10),Fo(),Ln(),No(11,\"div\",11),Fo(),Fo(),Ho(12,\"span\",12,13),qo(\"cdkObserveContent\",(function(){return t._onLabelTextChange()})),Ho(14,\"span\",14),Ls(15,\"\\xa0\"),Fo(),ns(16),Fo(),Fo()),2&e){var n=Eo(1),r=Eo(13);Do(\"for\",t.inputId),bi(2),fs(\"mat-checkbox-inner-container-no-side-margin\",!r.textContent||!r.textContent.trim()),bi(1),jo(\"id\",t.inputId)(\"required\",t.required)(\"checked\",t.checked)(\"disabled\",t.disabled)(\"tabIndex\",t.tabIndex),Do(\"value\",t.value)(\"name\",t.name)(\"aria-label\",t.ariaLabel||null)(\"aria-labelledby\",t.ariaLabelledby)(\"aria-checked\",t._getAriaChecked()),bi(2),jo(\"matRippleTrigger\",n)(\"matRippleDisabled\",t._isRippleDisabled())(\"matRippleRadius\",20)(\"matRippleCentered\",!0)(\"matRippleAnimation\",yu(18,rk))}},directives:[sb,Hp],styles:[\"@keyframes mat-checkbox-fade-in-background{0%{opacity:0}50%{opacity:1}}@keyframes mat-checkbox-fade-out-background{0%,50%{opacity:1}100%{opacity:0}}@keyframes mat-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:22.910259}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1)}100%{stroke-dashoffset:0}}@keyframes mat-checkbox-unchecked-indeterminate-mixedmark{0%,68.2%{transform:scaleX(0)}68.2%{animation-timing-function:cubic-bezier(0, 0, 0, 1)}100%{transform:scaleX(1)}}@keyframes mat-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);stroke-dashoffset:0}to{stroke-dashoffset:-22.910259}}@keyframes mat-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(45deg)}}@keyframes mat-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:0;transform:rotate(45deg)}to{opacity:1;transform:rotate(360deg)}}@keyframes mat-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 0.1);opacity:0;transform:rotate(-45deg)}to{opacity:1;transform:rotate(0deg)}}@keyframes mat-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);opacity:1;transform:rotate(0deg)}to{opacity:0;transform:rotate(315deg)}}@keyframes mat-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;opacity:1;transform:scaleX(1)}32.8%,100%{opacity:0;transform:scaleX(0)}}.mat-checkbox-background,.mat-checkbox-frame{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:2px;box-sizing:border-box;pointer-events:none}.mat-checkbox{transition:background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);cursor:pointer;-webkit-tap-highlight-color:transparent}._mat-animation-noopable.mat-checkbox{transition:none;animation:none}.mat-checkbox .mat-ripple-element:not(.mat-checkbox-persistent-ripple){opacity:.16}.mat-checkbox-layout{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:inherit;align-items:baseline;vertical-align:middle;display:inline-flex;white-space:nowrap}.mat-checkbox-label{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.mat-checkbox-inner-container{display:inline-block;height:16px;line-height:0;margin:auto;margin-right:8px;order:0;position:relative;vertical-align:middle;white-space:nowrap;width:16px;flex-shrink:0}[dir=rtl] .mat-checkbox-inner-container{margin-left:8px;margin-right:auto}.mat-checkbox-inner-container-no-side-margin{margin-left:0;margin-right:0}.mat-checkbox-frame{background-color:transparent;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1);border-width:2px;border-style:solid}._mat-animation-noopable .mat-checkbox-frame{transition:none}.mat-checkbox.cdk-keyboard-focused .cdk-high-contrast-active .mat-checkbox-frame{border-style:dotted}.mat-checkbox-background{align-items:center;display:inline-flex;justify-content:center;transition:background-color 90ms cubic-bezier(0, 0, 0.2, 0.1),opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}._mat-animation-noopable .mat-checkbox-background{transition:none}.cdk-high-contrast-active .mat-checkbox .mat-checkbox-background{background:none}.mat-checkbox-persistent-ripple{width:100%;height:100%;transform:none}.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:.04}.mat-checkbox.cdk-keyboard-focused .mat-checkbox-persistent-ripple{opacity:.12}.mat-checkbox-persistent-ripple,.mat-checkbox.mat-checkbox-disabled .mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{opacity:0}@media(hover: none){.mat-checkbox-inner-container:hover .mat-checkbox-persistent-ripple{display:none}}.mat-checkbox-checkmark{top:0;left:0;right:0;bottom:0;position:absolute;width:100%}.mat-checkbox-checkmark-path{stroke-dashoffset:22.910259;stroke-dasharray:22.910259;stroke-width:2.1333333333px}.cdk-high-contrast-black-on-white .mat-checkbox-checkmark-path{stroke:#000 !important}.mat-checkbox-mixedmark{width:calc(100% - 6px);height:2px;opacity:0;transform:scaleX(0) rotate(0deg);border-radius:2px}.cdk-high-contrast-active .mat-checkbox-mixedmark{height:0;border-top:solid 2px;margin-top:2px}.mat-checkbox-label-before .mat-checkbox-inner-container{order:1;margin-left:8px;margin-right:auto}[dir=rtl] .mat-checkbox-label-before .mat-checkbox-inner-container{margin-left:auto;margin-right:8px}.mat-checkbox-checked .mat-checkbox-checkmark{opacity:1}.mat-checkbox-checked .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-checked .mat-checkbox-mixedmark{transform:scaleX(1) rotate(-45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark{opacity:0;transform:rotate(45deg)}.mat-checkbox-indeterminate .mat-checkbox-checkmark-path{stroke-dashoffset:0}.mat-checkbox-indeterminate .mat-checkbox-mixedmark{opacity:1;transform:scaleX(1) rotate(0deg)}.mat-checkbox-unchecked .mat-checkbox-background{background-color:transparent}.mat-checkbox-disabled{cursor:default}.cdk-high-contrast-active .mat-checkbox-disabled{opacity:.5}.mat-checkbox-anim-unchecked-checked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-checked .mat-checkbox-checkmark-path{animation:180ms linear 0ms mat-checkbox-unchecked-checked-checkmark-path}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-in-background}.mat-checkbox-anim-unchecked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-unchecked-indeterminate-mixedmark}.mat-checkbox-anim-checked-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-checked-unchecked .mat-checkbox-checkmark-path{animation:90ms linear 0ms mat-checkbox-checked-unchecked-checkmark-path}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-checkmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-checkmark}.mat-checkbox-anim-checked-indeterminate .mat-checkbox-mixedmark{animation:90ms linear 0ms mat-checkbox-checked-indeterminate-mixedmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-checkmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-checkmark}.mat-checkbox-anim-indeterminate-checked .mat-checkbox-mixedmark{animation:500ms linear 0ms mat-checkbox-indeterminate-checked-mixedmark}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-background{animation:180ms linear 0ms mat-checkbox-fade-out-background}.mat-checkbox-anim-indeterminate-unchecked .mat-checkbox-mixedmark{animation:300ms linear 0ms mat-checkbox-indeterminate-unchecked-mixedmark}.mat-checkbox-input{bottom:0;left:50%}.mat-checkbox .mat-checkbox-ripple{position:absolute;left:calc(50% - 20px);top:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}\\n\"],encapsulation:2,changeDetection:0}),Ab),hk=((Ib=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Ib}),Ib.\\u0275inj=ve({factory:function(e){return new(e||Ib)}}),Ib),fk=((Eb=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Eb}),Eb.\\u0275inj=ve({factory:function(e){return new(e||Eb)},imports:[[lb,zy,Fp,hk],zy,hk]}),Eb);function mk(e,t,n,i){return r(n)&&(i=n,n=void 0),i?mk(e,t,n).pipe(F((function(e){return l(e)?i.apply(void 0,_toConsumableArray(e)):i(e)}))):new w((function(r){!function e(t,n,r,i,a){var o;if(function(e){return e&&\"function\"==typeof e.addEventListener&&\"function\"==typeof e.removeEventListener}(t)){var s=t;t.addEventListener(n,r,a),o=function(){return s.removeEventListener(n,r,a)}}else if(function(e){return e&&\"function\"==typeof e.on&&\"function\"==typeof e.off}(t)){var l=t;t.on(n,r),o=function(){return l.off(n,r)}}else if(function(e){return e&&\"function\"==typeof e.addListener&&\"function\"==typeof e.removeListener}(t)){var u=t;t.addListener(n,r),o=function(){return u.removeListener(n,r)}}else{if(!t||!t.length)throw new TypeError(\"Invalid event target\");for(var c=0,d=t.length;c1?Array.prototype.slice.call(arguments):e)}),r,n)}))}var pk=1,_k=Promise.resolve(),vk={};function gk(e){return e in vk&&(delete vk[e],!0)}var yk=function(e){var t=pk++;return vk[t]=!0,_k.then((function(){return gk(t)&&e()})),t},bk=function(e){gk(e)},kk=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e,r)).scheduler=e,i.work=r,i}return _createClass(n,[{key:\"requestAsyncId\",value:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return null!==r&&r>0?_get(_getPrototypeOf(n.prototype),\"requestAsyncId\",this).call(this,e,t,r):(e.actions.push(this),e.scheduled||(e.scheduled=yk(e.flush.bind(e,null))))}},{key:\"recycleAsyncId\",value:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;if(null!==r&&r>0||null===r&&this.delay>0)return _get(_getPrototypeOf(n.prototype),\"recycleAsyncId\",this).call(this,e,t,r);0===e.actions.length&&(bk(t),e.scheduled=void 0)}}]),n}(Xm),wk=new(function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"flush\",value:function(e){this.active=!0,this.scheduled=void 0;var t,n=this.actions,r=-1,i=n.length;e=e||n.shift();do{if(t=e.execute(e.state,e.delay))break}while(++r=0}function Dk(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0,r=-1;return xk(t)?r=Number(t)<1?1:Number(t):O(t)&&(n=t),O(n)||(n=np),new w((function(t){var i=xk(e)?e:+e-n.now();return n.schedule(Ok,i,{index:0,period:r,subscriber:t})}))}function Ok(e){var t=e.index,n=e.period,r=e.subscriber;if(r.next(t),!r.closed){if(-1===n)return r.complete();e.index=t+1,this.schedule(e,n)}}function Yk(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:np;return t=function(){return Dk(e,n)},function(e){return e.lift(new Lk(t))}}function Ek(e){return function(t){return t.lift(new Ik(e))}}var Ik=function(){function e(t){_classCallCheck(this,e),this.notifier=t}return _createClass(e,[{key:\"call\",value:function(e,t){var n=new Ak(e),r=R(n,this.notifier);return r&&!n.seenValue?(n.add(r),t.subscribe(n)):n}}]),e}(),Ak=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this,e)).seenValue=!1,r}return _createClass(n,[{key:\"notifyNext\",value:function(e,t,n,r,i){this.seenValue=!0,this.complete()}},{key:\"notifyComplete\",value:function(){}}]),n}(H);function Pk(e,t){return\"function\"==typeof t?function(n){return n.pipe(Pk((function(n,r){return W(e(n,r)).pipe(F((function(e,i){return t(n,e,r,i)})))})))}:function(t){return t.lift(new jk(e))}}var jk=function(){function e(t){_classCallCheck(this,e),this.project=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new Rk(e,this.project))}}]),e}(),Rk=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).project=r,i.index=0,i}return _createClass(n,[{key:\"_next\",value:function(e){var t,n=this.index++;try{t=this.project(e,n)}catch(r){return void this.destination.error(r)}this._innerSub(t,e,n)}},{key:\"_innerSub\",value:function(e,t,n){var r=this.innerSubscription;r&&r.unsubscribe();var i=new Y(this,t,n),a=this.destination;a.add(i),this.innerSubscription=R(this,e,void 0,void 0,i),this.innerSubscription!==i&&a.add(this.innerSubscription)}},{key:\"_complete\",value:function(){var e=this.innerSubscription;e&&!e.closed||_get(_getPrototypeOf(n.prototype),\"_complete\",this).call(this),this.unsubscribe()}},{key:\"_unsubscribe\",value:function(){this.innerSubscription=null}},{key:\"notifyComplete\",value:function(e){this.destination.remove(e),this.innerSubscription=null,this.isStopped&&_get(_getPrototypeOf(n.prototype),\"_complete\",this).call(this)}},{key:\"notifyNext\",value:function(e,t,n,r,i){this.destination.next(t)}}]),n}(H),Hk=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e,r)).scheduler=e,i.work=r,i}return _createClass(n,[{key:\"schedule\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return t>0?_get(_getPrototypeOf(n.prototype),\"schedule\",this).call(this,e,t):(this.delay=t,this.state=e,this.scheduler.flush(this),this)}},{key:\"execute\",value:function(e,t){return t>0||this.closed?_get(_getPrototypeOf(n.prototype),\"execute\",this).call(this,e,t):this._execute(e,t)}},{key:\"requestAsyncId\",value:function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return null!==r&&r>0||null===r&&this.delay>0?_get(_getPrototypeOf(n.prototype),\"requestAsyncId\",this).call(this,e,t,r):e.flush(this)}}]),n}(Xm),Fk=new(function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return n}(tp))(Hk);function Nk(e,t){return new w(t?function(n){return t.schedule(zk,0,{error:e,subscriber:n})}:function(t){return t.error(e)})}function zk(e){var t=e.error;e.subscriber.error(t)}var Vk=function(){var e=function(){function e(t,n,r){_classCallCheck(this,e),this.kind=t,this.value=n,this.error=r,this.hasValue=\"N\"===t}return _createClass(e,[{key:\"observe\",value:function(e){switch(this.kind){case\"N\":return e.next&&e.next(this.value);case\"E\":return e.error&&e.error(this.error);case\"C\":return e.complete&&e.complete()}}},{key:\"do\",value:function(e,t,n){switch(this.kind){case\"N\":return e&&e(this.value);case\"E\":return t&&t(this.error);case\"C\":return n&&n()}}},{key:\"accept\",value:function(e,t,n){return e&&\"function\"==typeof e.next?this.observe(e):this.do(e,t,n)}},{key:\"toObservable\",value:function(){switch(this.kind){case\"N\":return Bd(this.value);case\"E\":return Nk(this.error);case\"C\":return up()}throw new Error(\"unexpected notification kind value\")}}],[{key:\"createNext\",value:function(t){return void 0!==t?new e(\"N\",t):e.undefinedValueNotification}},{key:\"createError\",value:function(t){return new e(\"E\",void 0,t)}},{key:\"createComplete\",value:function(){return e.completeNotification}}]),e}();return e.completeNotification=new e(\"C\"),e.undefinedValueNotification=new e(\"N\",void 0),e}(),Wk=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return _classCallCheck(this,n),(i=t.call(this,e)).scheduler=r,i.delay=a,i}return _createClass(n,[{key:\"scheduleMessage\",value:function(e){this.destination.add(this.scheduler.schedule(n.dispatch,this.delay,new Uk(e,this.destination)))}},{key:\"_next\",value:function(e){this.scheduleMessage(Vk.createNext(e))}},{key:\"_error\",value:function(e){this.scheduleMessage(Vk.createError(e)),this.unsubscribe()}},{key:\"_complete\",value:function(){this.scheduleMessage(Vk.createComplete()),this.unsubscribe()}}],[{key:\"dispatch\",value:function(e){var t=e.notification,n=e.destination;t.observe(n),this.unsubscribe()}}]),n}(p),Uk=function e(t,n){_classCallCheck(this,e),this.notification=t,this.destination=n},Bk=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Number.POSITIVE_INFINITY,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.POSITIVE_INFINITY,a=arguments.length>2?arguments[2]:void 0;return _classCallCheck(this,n),(e=t.call(this)).scheduler=a,e._events=[],e._infiniteTimeWindow=!1,e._bufferSize=r<1?1:r,e._windowTime=i<1?1:i,i===Number.POSITIVE_INFINITY?(e._infiniteTimeWindow=!0,e.next=e.nextInfiniteTimeWindow):e.next=e.nextTimeWindow,e}return _createClass(n,[{key:\"nextInfiniteTimeWindow\",value:function(e){var t=this._events;t.push(e),t.length>this._bufferSize&&t.shift(),_get(_getPrototypeOf(n.prototype),\"next\",this).call(this,e)}},{key:\"nextTimeWindow\",value:function(e){this._events.push(new qk(this._getNow(),e)),this._trimBufferThenGetEvents(),_get(_getPrototypeOf(n.prototype),\"next\",this).call(this,e)}},{key:\"_subscribe\",value:function(e){var t,n=this._infiniteTimeWindow,r=n?this._events:this._trimBufferThenGetEvents(),i=this.scheduler,a=r.length;if(this.closed)throw new S;if(this.isStopped||this.hasError?t=h.EMPTY:(this.observers.push(e),t=new L(this,e)),i&&e.add(e=new Wk(e,i)),n)for(var o=0;ot&&(a=Math.max(a,i-t)),a>0&&r.splice(0,a),r}}]),n}(x),qk=function e(t,n){_classCallCheck(this,e),this.time=t,this.value=n};function Gk(e,t,n){var r;return r=e&&\"object\"==typeof e?e:{bufferSize:e,windowTime:t,refCount:!1,scheduler:n},function(e){return e.lift(function(e){var t,n,r=e.bufferSize,i=void 0===r?Number.POSITIVE_INFINITY:r,a=e.windowTime,o=void 0===a?Number.POSITIVE_INFINITY:a,s=e.refCount,l=e.scheduler,u=0,c=!1,d=!1;return function(e){u++,t&&!c||(c=!1,t=new Bk(i,o,l),n=e.subscribe({next:function(e){t.next(e)},error:function(e){c=!0,t.error(e)},complete:function(){d=!0,n=void 0,t.complete()}}));var r=t.subscribe(this);this.add((function(){u--,r.unsubscribe(),n&&!d&&s&&0===u&&(n.unsubscribe(),n=void 0,t=void 0)}))}}(r))}}var $k,Jk,Kk,Zk,Qk=function(){function e(){var t=this,n=arguments.length>0&&void 0!==arguments[0]&&arguments[0],r=arguments.length>1?arguments[1]:void 0,i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];_classCallCheck(this,e),this._multiple=n,this._emitChanges=i,this._selection=new Set,this._deselectedToEmit=[],this._selectedToEmit=[],this.changed=new x,r&&r.length&&(n?r.forEach((function(e){return t._markSelected(e)})):this._markSelected(r[0]),this._selectedToEmit.length=0)}return _createClass(e,[{key:\"select\",value:function(){for(var e=this,t=arguments.length,n=new Array(t),r=0;r1&&!this._multiple)throw Error(\"Cannot pass multiple values into SelectionModel with single-value mode.\")}},{key:\"selected\",get:function(){return this._selected||(this._selected=Array.from(this._selection.values())),this._selected}}]),e}(),Xk=((Zk=function(){function e(t,n){_classCallCheck(this,e),this._ngZone=t,this._platform=n,this._scrolled=new x,this._globalSubscription=null,this._scrolledCount=0,this.scrollContainers=new Map}return _createClass(e,[{key:\"register\",value:function(e){var t=this;this.scrollContainers.has(e)||this.scrollContainers.set(e,e.elementScrolled().subscribe((function(){return t._scrolled.next(e)})))}},{key:\"deregister\",value:function(e){var t=this.scrollContainers.get(e);t&&(t.unsubscribe(),this.scrollContainers.delete(e))}},{key:\"scrolled\",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:20;return this._platform.isBrowser?new w((function(n){e._globalSubscription||e._addGlobalListener();var r=t>0?e._scrolled.pipe(Yk(t)).subscribe(n):e._scrolled.subscribe(n);return e._scrolledCount++,function(){r.unsubscribe(),e._scrolledCount--,e._scrolledCount||e._removeGlobalListener()}})):Bd()}},{key:\"ngOnDestroy\",value:function(){var e=this;this._removeGlobalListener(),this.scrollContainers.forEach((function(t,n){return e.deregister(n)})),this._scrolled.complete()}},{key:\"ancestorScrolled\",value:function(e,t){var n=this.getAncestorScrollContainers(e);return this.scrolled(t).pipe(Gd((function(e){return!e||n.indexOf(e)>-1})))}},{key:\"getAncestorScrollContainers\",value:function(e){var t=this,n=[];return this.scrollContainers.forEach((function(r,i){t._scrollableContainsElement(i,e)&&n.push(i)})),n}},{key:\"_scrollableContainsElement\",value:function(e,t){var n=t.nativeElement,r=e.getElementRef().nativeElement;do{if(n==r)return!0}while(n=n.parentElement);return!1}},{key:\"_addGlobalListener\",value:function(){var e=this;this._globalSubscription=this._ngZone.runOutsideAngular((function(){return mk(window.document,\"scroll\").subscribe((function(){return e._scrolled.next()}))}))}},{key:\"_removeGlobalListener\",value:function(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)}}]),e}()).\\u0275fac=function(e){return new(e||Zk)(et(cc),et(Cp))},Zk.\\u0275prov=_e({factory:function(){return new Zk(et(cc),et(Cp))},token:Zk,providedIn:\"root\"}),Zk),ew=((Kk=function(){function e(t,n,r,i){var a=this;_classCallCheck(this,e),this.elementRef=t,this.scrollDispatcher=n,this.ngZone=r,this.dir=i,this._destroyed=new x,this._elementScrolled=new w((function(e){return a.ngZone.runOutsideAngular((function(){return mk(a.elementRef.nativeElement,\"scroll\").pipe(Ek(a._destroyed)).subscribe(e)}))}))}return _createClass(e,[{key:\"ngOnInit\",value:function(){this.scrollDispatcher.register(this)}},{key:\"ngOnDestroy\",value:function(){this.scrollDispatcher.deregister(this),this._destroyed.next(),this._destroyed.complete()}},{key:\"elementScrolled\",value:function(){return this._elementScrolled}},{key:\"getElementRef\",value:function(){return this.elementRef}},{key:\"scrollTo\",value:function(e){var t=this.elementRef.nativeElement,n=this.dir&&\"rtl\"==this.dir.value;e.left=null==e.left?n?e.end:e.start:e.left,e.right=null==e.right?n?e.start:e.end:e.right,null!=e.bottom&&(e.top=t.scrollHeight-t.clientHeight-e.bottom),n&&Op()!=Dp.NORMAL?(null!=e.left&&(e.right=t.scrollWidth-t.clientWidth-e.left),Op()==Dp.INVERTED?e.left=e.right:Op()==Dp.NEGATED&&(e.left=e.right?-e.right:e.right)):null!=e.right&&(e.left=t.scrollWidth-t.clientWidth-e.right),this._applyScrollToOptions(e)}},{key:\"_applyScrollToOptions\",value:function(e){var t=this.elementRef.nativeElement;\"object\"==typeof document&&\"scrollBehavior\"in document.documentElement.style?t.scrollTo(e):(null!=e.top&&(t.scrollTop=e.top),null!=e.left&&(t.scrollLeft=e.left))}},{key:\"measureScrollOffset\",value:function(e){var t=this.elementRef.nativeElement;if(\"top\"==e)return t.scrollTop;if(\"bottom\"==e)return t.scrollHeight-t.clientHeight-t.scrollTop;var n=this.dir&&\"rtl\"==this.dir.value;return\"start\"==e?e=n?\"right\":\"left\":\"end\"==e&&(e=n?\"left\":\"right\"),n&&Op()==Dp.INVERTED?\"left\"==e?t.scrollWidth-t.clientWidth-t.scrollLeft:t.scrollLeft:n&&Op()==Dp.NEGATED?\"left\"==e?t.scrollLeft+t.scrollWidth-t.clientWidth:-t.scrollLeft:\"left\"==e?t.scrollLeft:t.scrollWidth-t.clientWidth-t.scrollLeft}}]),e}()).\\u0275fac=function(e){return new(e||Kk)(Io(Qs),Io(Xk),Io(cc),Io(h_,8))},Kk.\\u0275dir=Lt({type:Kk,selectors:[[\"\",\"cdk-scrollable\",\"\"],[\"\",\"cdkScrollable\",\"\"]]}),Kk),tw=((Jk=function(){function e(t,n){var r=this;_classCallCheck(this,e),this._platform=t,n.runOutsideAngular((function(){r._change=t.isBrowser?K(mk(window,\"resize\"),mk(window,\"orientationchange\")):Bd(),r._invalidateCache=r.change().subscribe((function(){return r._updateViewportSize()}))}))}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){this._invalidateCache.unsubscribe()}},{key:\"getViewportSize\",value:function(){this._viewportSize||this._updateViewportSize();var e={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),e}},{key:\"getViewportRect\",value:function(){var e=this.getViewportScrollPosition(),t=this.getViewportSize(),n=t.width,r=t.height;return{top:e.top,left:e.left,bottom:e.top+r,right:e.left+n,height:r,width:n}}},{key:\"getViewportScrollPosition\",value:function(){if(!this._platform.isBrowser)return{top:0,left:0};var e=document.documentElement,t=e.getBoundingClientRect();return{top:-t.top||document.body.scrollTop||window.scrollY||e.scrollTop||0,left:-t.left||document.body.scrollLeft||window.scrollX||e.scrollLeft||0}}},{key:\"change\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:20;return e>0?this._change.pipe(Yk(e)):this._change}},{key:\"_updateViewportSize\",value:function(){this._viewportSize=this._platform.isBrowser?{width:window.innerWidth,height:window.innerHeight}:{width:0,height:0}}}]),e}()).\\u0275fac=function(e){return new(e||Jk)(et(Cp),et(cc))},Jk.\\u0275prov=_e({factory:function(){return new Jk(et(Cp),et(cc))},token:Jk,providedIn:\"root\"}),Jk),nw=(($k=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:$k}),$k.\\u0275inj=ve({factory:function(e){return new(e||$k)},imports:[[f_,Mp],f_]}),$k);function rw(){throw Error(\"Host already has a portal attached\")}var iw,aw,ow=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"attach\",value:function(e){return null==e&&function(){throw Error(\"Attempting to attach a portal to a null PortalOutlet\")}(),e.hasAttached()&&rw(),this._attachedHost=e,e.attach(this)}},{key:\"detach\",value:function(){var e=this._attachedHost;null==e?function(){throw Error(\"Attempting to detach a portal that is not attached to a host\")}():(this._attachedHost=null,e.detach())}},{key:\"setAttachedHost\",value:function(e){this._attachedHost=e}},{key:\"isAttached\",get:function(){return null!=this._attachedHost}}]),e}(),sw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this)).component=e,o.viewContainerRef=r,o.injector=i,o.componentFactoryResolver=a,o}return n}(ow),lw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this)).templateRef=e,a.viewContainerRef=r,a.context=i,a}return _createClass(n,[{key:\"attach\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.context;return this.context=t,_get(_getPrototypeOf(n.prototype),\"attach\",this).call(this,e)}},{key:\"detach\",value:function(){return this.context=void 0,_get(_getPrototypeOf(n.prototype),\"detach\",this).call(this)}},{key:\"origin\",get:function(){return this.templateRef.elementRef}}]),n}(ow),uw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this)).element=e instanceof Qs?e.nativeElement:e,r}return n}(ow),cw=function(){function e(){_classCallCheck(this,e),this._isDisposed=!1,this.attachDomPortal=null}return _createClass(e,[{key:\"hasAttached\",value:function(){return!!this._attachedPortal}},{key:\"attach\",value:function(e){return e||function(){throw Error(\"Must provide a portal to attach\")}(),this.hasAttached()&&rw(),this._isDisposed&&function(){throw Error(\"This PortalOutlet has already been disposed\")}(),e instanceof sw?(this._attachedPortal=e,this.attachComponentPortal(e)):e instanceof lw?(this._attachedPortal=e,this.attachTemplatePortal(e)):this.attachDomPortal&&e instanceof uw?(this._attachedPortal=e,this.attachDomPortal(e)):void function(){throw Error(\"Attempting to attach an unknown Portal type. BasePortalOutlet accepts either a ComponentPortal or a TemplatePortal.\")}()}},{key:\"detach\",value:function(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()}},{key:\"dispose\",value:function(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0}},{key:\"setDisposeFn\",value:function(e){this._disposeFn=e}},{key:\"_invokeDisposeFn\",value:function(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}]),e}(),dw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this)).outletElement=e,s._componentFactoryResolver=r,s._appRef=i,s._defaultInjector=a,s.attachDomPortal=function(e){if(!s._document)throw Error(\"Cannot attach DOM portal without _document constructor parameter\");var t=e.element;if(!t.parentNode)throw Error(\"DOM portal content must be attached to a parent node.\");var r=s._document.createComment(\"dom-portal\");t.parentNode.insertBefore(r,t),s.outletElement.appendChild(t),_get(_getPrototypeOf(n.prototype),\"setDisposeFn\",_assertThisInitialized(s)).call(_assertThisInitialized(s),(function(){r.parentNode&&r.parentNode.replaceChild(t,r)}))},s._document=o,s}return _createClass(n,[{key:\"attachComponentPortal\",value:function(e){var t,n=this,r=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component);return e.viewContainerRef?(t=e.viewContainerRef.createComponent(r,e.viewContainerRef.length,e.injector||e.viewContainerRef.injector),this.setDisposeFn((function(){return t.destroy()}))):(t=r.create(e.injector||this._defaultInjector),this._appRef.attachView(t.hostView),this.setDisposeFn((function(){n._appRef.detachView(t.hostView),t.destroy()}))),this.outletElement.appendChild(this._getComponentRootNode(t)),t}},{key:\"attachTemplatePortal\",value:function(e){var t=this,n=e.viewContainerRef,r=n.createEmbeddedView(e.templateRef,e.context);return r.detectChanges(),r.rootNodes.forEach((function(e){return t.outletElement.appendChild(e)})),this.setDisposeFn((function(){var e=n.indexOf(r);-1!==e&&n.remove(e)})),r}},{key:\"dispose\",value:function(){_get(_getPrototypeOf(n.prototype),\"dispose\",this).call(this),null!=this.outletElement.parentNode&&this.outletElement.parentNode.removeChild(this.outletElement)}},{key:\"_getComponentRootNode\",value:function(e){return e.hostView.rootNodes[0]}}]),n}(cw),hw=((aw=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this))._componentFactoryResolver=e,a._viewContainerRef=r,a._isInitialized=!1,a.attached=new bu,a.attachDomPortal=function(e){if(!a._document)throw Error(\"Cannot attach DOM portal without _document constructor parameter\");var t=e.element;if(!t.parentNode)throw Error(\"DOM portal content must be attached to a parent node.\");var r=a._document.createComment(\"dom-portal\");e.setAttachedHost(_assertThisInitialized(a)),t.parentNode.insertBefore(r,t),a._getRootNode().appendChild(t),_get(_getPrototypeOf(n.prototype),\"setDisposeFn\",_assertThisInitialized(a)).call(_assertThisInitialized(a),(function(){r.parentNode&&r.parentNode.replaceChild(t,r)}))},a._document=i,a}return _createClass(n,[{key:\"ngOnInit\",value:function(){this._isInitialized=!0}},{key:\"ngOnDestroy\",value:function(){_get(_getPrototypeOf(n.prototype),\"dispose\",this).call(this),this._attachedPortal=null,this._attachedRef=null}},{key:\"attachComponentPortal\",value:function(e){e.setAttachedHost(this);var t=null!=e.viewContainerRef?e.viewContainerRef:this._viewContainerRef,r=(e.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(e.component),i=t.createComponent(r,t.length,e.injector||t.injector);return t!==this._viewContainerRef&&this._getRootNode().appendChild(i.hostView.rootNodes[0]),_get(_getPrototypeOf(n.prototype),\"setDisposeFn\",this).call(this,(function(){return i.destroy()})),this._attachedPortal=e,this._attachedRef=i,this.attached.emit(i),i}},{key:\"attachTemplatePortal\",value:function(e){var t=this;e.setAttachedHost(this);var r=this._viewContainerRef.createEmbeddedView(e.templateRef,e.context);return _get(_getPrototypeOf(n.prototype),\"setDisposeFn\",this).call(this,(function(){return t._viewContainerRef.clear()})),this._attachedPortal=e,this._attachedRef=r,this.attached.emit(r),r}},{key:\"_getRootNode\",value:function(){var e=this._viewContainerRef.element.nativeElement;return e.nodeType===e.ELEMENT_NODE?e:e.parentNode}},{key:\"portal\",get:function(){return this._attachedPortal},set:function(e){(!this.hasAttached()||e||this._isInitialized)&&(this.hasAttached()&&_get(_getPrototypeOf(n.prototype),\"detach\",this).call(this),e&&_get(_getPrototypeOf(n.prototype),\"attach\",this).call(this,e),this._attachedPortal=e)}},{key:\"attachedRef\",get:function(){return this._attachedRef}}]),n}(cw)).\\u0275fac=function(e){return new(e||aw)(Io(Zs),Io(Ml),Io(Wc))},aw.\\u0275dir=Lt({type:aw,selectors:[[\"\",\"cdkPortalOutlet\",\"\"]],inputs:{portal:[\"cdkPortalOutlet\",\"portal\"]},outputs:{attached:\"attached\"},exportAs:[\"cdkPortalOutlet\"],features:[Es]}),aw),fw=((iw=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:iw}),iw.\\u0275inj=ve({factory:function(e){return new(e||iw)}}),iw),mw=function(){function e(t,n){_classCallCheck(this,e),this._viewportRuler=t,this._previousHTMLStyles={top:\"\",left:\"\"},this._isEnabled=!1,this._document=n}return _createClass(e,[{key:\"attach\",value:function(){}},{key:\"enable\",value:function(){if(this._canBeEnabled()){var e=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=e.style.left||\"\",this._previousHTMLStyles.top=e.style.top||\"\",e.style.left=vp(-this._previousScrollPosition.left),e.style.top=vp(-this._previousScrollPosition.top),e.classList.add(\"cdk-global-scrollblock\"),this._isEnabled=!0}}},{key:\"disable\",value:function(){if(this._isEnabled){var e=this._document.documentElement,t=e.style,n=this._document.body.style,r=t.scrollBehavior||\"\",i=n.scrollBehavior||\"\";this._isEnabled=!1,t.left=this._previousHTMLStyles.left,t.top=this._previousHTMLStyles.top,e.classList.remove(\"cdk-global-scrollblock\"),t.scrollBehavior=n.scrollBehavior=\"auto\",window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),t.scrollBehavior=r,n.scrollBehavior=i}}},{key:\"_canBeEnabled\",value:function(){if(this._document.documentElement.classList.contains(\"cdk-global-scrollblock\")||this._isEnabled)return!1;var e=this._document.body,t=this._viewportRuler.getViewportSize();return e.scrollHeight>t.height||e.scrollWidth>t.width}}]),e}();function pw(){return Error(\"Scroll strategy has already been attached.\")}var _w=function(){function e(t,n,r,i){var a=this;_classCallCheck(this,e),this._scrollDispatcher=t,this._ngZone=n,this._viewportRuler=r,this._config=i,this._scrollSubscription=null,this._detach=function(){a.disable(),a._overlayRef.hasAttached()&&a._ngZone.run((function(){return a._overlayRef.detach()}))}}return _createClass(e,[{key:\"attach\",value:function(e){if(this._overlayRef)throw pw();this._overlayRef=e}},{key:\"enable\",value:function(){var e=this;if(!this._scrollSubscription){var t=this._scrollDispatcher.scrolled(0);this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=t.subscribe((function(){var t=e._viewportRuler.getViewportScrollPosition().top;Math.abs(t-e._initialScrollPosition)>e._config.threshold?e._detach():e._overlayRef.updatePosition()}))):this._scrollSubscription=t.subscribe(this._detach)}}},{key:\"disable\",value:function(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}},{key:\"detach\",value:function(){this.disable(),this._overlayRef=null}}]),e}(),vw=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"enable\",value:function(){}},{key:\"disable\",value:function(){}},{key:\"attach\",value:function(){}}]),e}();function gw(e,t){return t.some((function(t){return e.bottomt.bottom||e.rightt.right}))}function yw(e,t){return t.some((function(t){return e.topt.bottom||e.leftt.right}))}var bw,kw=function(){function e(t,n,r,i){_classCallCheck(this,e),this._scrollDispatcher=t,this._viewportRuler=n,this._ngZone=r,this._config=i,this._scrollSubscription=null}return _createClass(e,[{key:\"attach\",value:function(e){if(this._overlayRef)throw pw();this._overlayRef=e}},{key:\"enable\",value:function(){var e=this;this._scrollSubscription||(this._scrollSubscription=this._scrollDispatcher.scrolled(this._config?this._config.scrollThrottle:0).subscribe((function(){if(e._overlayRef.updatePosition(),e._config&&e._config.autoClose){var t=e._overlayRef.overlayElement.getBoundingClientRect(),n=e._viewportRuler.getViewportSize(),r=n.width,i=n.height;gw(t,[{width:r,height:i,bottom:i,right:r,top:0,left:0}])&&(e.disable(),e._ngZone.run((function(){return e._overlayRef.detach()})))}})))}},{key:\"disable\",value:function(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}},{key:\"detach\",value:function(){this.disable(),this._overlayRef=null}}]),e}(),ww=((bw=function e(t,n,r,i){var a=this;_classCallCheck(this,e),this._scrollDispatcher=t,this._viewportRuler=n,this._ngZone=r,this.noop=function(){return new vw},this.close=function(e){return new _w(a._scrollDispatcher,a._ngZone,a._viewportRuler,e)},this.block=function(){return new mw(a._viewportRuler,a._document)},this.reposition=function(e){return new kw(a._scrollDispatcher,a._viewportRuler,a._ngZone,e)},this._document=i}).\\u0275fac=function(e){return new(e||bw)(et(Xk),et(tw),et(cc),et(Wc))},bw.\\u0275prov=_e({factory:function(){return new bw(et(Xk),et(tw),et(cc),et(Wc))},token:bw,providedIn:\"root\"}),bw),Cw=function e(t){if(_classCallCheck(this,e),this.scrollStrategy=new vw,this.panelClass=\"\",this.hasBackdrop=!1,this.backdropClass=\"cdk-overlay-dark-backdrop\",this.disposeOnNavigation=!1,t)for(var n=0,r=Object.keys(t);n-1;r--)if(t[r]._keydownEventSubscriptions>0){t[r]._keydownEvents.next(e);break}},this._document=t}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){this._detach()}},{key:\"add\",value:function(e){this.remove(e),this._isAttached||(this._document.body.addEventListener(\"keydown\",this._keydownListener),this._isAttached=!0),this._attachedOverlays.push(e)}},{key:\"remove\",value:function(e){var t=this._attachedOverlays.indexOf(e);t>-1&&this._attachedOverlays.splice(t,1),0===this._attachedOverlays.length&&this._detach()}},{key:\"_detach\",value:function(){this._isAttached&&(this._document.body.removeEventListener(\"keydown\",this._keydownListener),this._isAttached=!1)}}]),e}()).\\u0275fac=function(e){return new(e||xw)(et(Wc))},xw.\\u0275prov=_e({factory:function(){return new xw(et(Wc))},token:xw,providedIn:\"root\"}),xw),Yw=!(\"undefined\"==typeof window||!window||!window.__karma__&&!window.jasmine),Ew=((Dw=function(){function e(t,n){_classCallCheck(this,e),this._platform=n,this._document=t}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){var e=this._containerElement;e&&e.parentNode&&e.parentNode.removeChild(e)}},{key:\"getContainerElement\",value:function(){return this._containerElement||this._createContainer(),this._containerElement}},{key:\"_createContainer\",value:function(){var e=this._platform?this._platform.isBrowser:\"undefined\"!=typeof window;if(e||Yw)for(var t=this._document.querySelectorAll('.cdk-overlay-container[platform=\"server\"], .cdk-overlay-container[platform=\"test\"]'),n=0;nf&&(f=_,h=p)}}catch(v){m.e(v)}finally{m.f()}return this._isPushed=!1,void this._applyPosition(h.position,h.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(e.position,e.originPoint);this._applyPosition(e.position,e.originPoint)}}},{key:\"detach\",value:function(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}},{key:\"dispose\",value:function(){this._isDisposed||(this._boundingBox&&Pw(this._boundingBox.style,{top:\"\",left:\"\",right:\"\",bottom:\"\",height:\"\",width:\"\",alignItems:\"\",justifyContent:\"\"}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(\"cdk-overlay-connected-position-bounding-box\"),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}},{key:\"reapplyLastPosition\",value:function(){if(!this._isDisposed&&(!this._platform||this._platform.isBrowser)){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect();var e=this._lastPosition||this._preferredPositions[0],t=this._getOriginPoint(this._originRect,e);this._applyPosition(e,t)}}},{key:\"withScrollableContainers\",value:function(e){return this._scrollables=e,this}},{key:\"withPositions\",value:function(e){return this._preferredPositions=e,-1===e.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}},{key:\"withViewportMargin\",value:function(e){return this._viewportMargin=e,this}},{key:\"withFlexibleDimensions\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._hasFlexibleDimensions=e,this}},{key:\"withGrowAfterOpen\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._growAfterOpen=e,this}},{key:\"withPush\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._canPush=e,this}},{key:\"withLockedPosition\",value:function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this._positionLocked=e,this}},{key:\"setOrigin\",value:function(e){return this._origin=e,this}},{key:\"withDefaultOffsetX\",value:function(e){return this._offsetX=e,this}},{key:\"withDefaultOffsetY\",value:function(e){return this._offsetY=e,this}},{key:\"withTransformOriginOn\",value:function(e){return this._transformOriginSelector=e,this}},{key:\"_getOriginPoint\",value:function(e,t){var n;if(\"center\"==t.originX)n=e.left+e.width/2;else{var r=this._isRtl()?e.right:e.left,i=this._isRtl()?e.left:e.right;n=\"start\"==t.originX?r:i}return{x:n,y:\"center\"==t.originY?e.top+e.height/2:\"top\"==t.originY?e.top:e.bottom}}},{key:\"_getOverlayPoint\",value:function(e,t,n){var r,i;return r=\"center\"==n.overlayX?-t.width/2:\"start\"===n.overlayX?this._isRtl()?-t.width:0:this._isRtl()?0:-t.width,i=\"center\"==n.overlayY?-t.height/2:\"top\"==n.overlayY?0:-t.height,{x:e.x+r,y:e.y+i}}},{key:\"_getOverlayFit\",value:function(e,t,n,r){var i=e.x,a=e.y,o=this._getOffset(r,\"x\"),s=this._getOffset(r,\"y\");o&&(i+=o),s&&(a+=s);var l=0-a,u=a+t.height-n.height,c=this._subtractOverflows(t.width,0-i,i+t.width-n.width),d=this._subtractOverflows(t.height,l,u),h=c*d;return{visibleArea:h,isCompletelyWithinViewport:t.width*t.height===h,fitsInViewportVertically:d===t.height,fitsInViewportHorizontally:c==t.width}}},{key:\"_canFitWithFlexibleDimensions\",value:function(e,t,n){if(this._hasFlexibleDimensions){var r=n.bottom-t.y,i=n.right-t.x,a=this._overlayRef.getConfig().minHeight,o=this._overlayRef.getConfig().minWidth,s=e.fitsInViewportHorizontally||null!=o&&o<=i;return(e.fitsInViewportVertically||null!=a&&a<=r)&&s}return!1}},{key:\"_pushOverlayOnScreen\",value:function(e,t,n){if(this._previousPushAmount&&this._positionLocked)return{x:e.x+this._previousPushAmount.x,y:e.y+this._previousPushAmount.y};var r,i,a=this._viewportRect,o=Math.max(e.x+t.width-a.right,0),s=Math.max(e.y+t.height-a.bottom,0),l=Math.max(a.top-n.top-e.y,0),u=Math.max(a.left-n.left-e.x,0);return r=t.width<=a.width?u||-o:e.xd&&!this._isInitialRender&&!this._growAfterOpen&&(r=e.y-d/2)}if(\"end\"===t.overlayX&&!u||\"start\"===t.overlayX&&u)s=l.width-e.x+this._viewportMargin,a=e.x-this._viewportMargin;else if(\"start\"===t.overlayX&&!u||\"end\"===t.overlayX&&u)o=e.x,a=l.right-e.x;else{var h=Math.min(l.right-e.x+l.left,e.x),f=this._lastBoundingBoxSize.width;a=2*h,o=e.x-h,a>f&&!this._isInitialRender&&!this._growAfterOpen&&(o=e.x-f/2)}return{top:r,left:o,bottom:i,right:s,width:a,height:n}}},{key:\"_setBoundingBoxStyles\",value:function(e,t){var n=this._calculateBoundingBoxRect(e,t);this._isInitialRender||this._growAfterOpen||(n.height=Math.min(n.height,this._lastBoundingBoxSize.height),n.width=Math.min(n.width,this._lastBoundingBoxSize.width));var r={};if(this._hasExactPosition())r.top=r.left=\"0\",r.bottom=r.right=r.maxHeight=r.maxWidth=\"\",r.width=r.height=\"100%\";else{var i=this._overlayRef.getConfig().maxHeight,a=this._overlayRef.getConfig().maxWidth;r.height=vp(n.height),r.top=vp(n.top),r.bottom=vp(n.bottom),r.width=vp(n.width),r.left=vp(n.left),r.right=vp(n.right),r.alignItems=\"center\"===t.overlayX?\"center\":\"end\"===t.overlayX?\"flex-end\":\"flex-start\",r.justifyContent=\"center\"===t.overlayY?\"center\":\"bottom\"===t.overlayY?\"flex-end\":\"flex-start\",i&&(r.maxHeight=vp(i)),a&&(r.maxWidth=vp(a))}this._lastBoundingBoxSize=n,Pw(this._boundingBox.style,r)}},{key:\"_resetBoundingBoxStyles\",value:function(){Pw(this._boundingBox.style,{top:\"0\",left:\"0\",right:\"0\",bottom:\"0\",height:\"\",width:\"\",alignItems:\"\",justifyContent:\"\"})}},{key:\"_resetOverlayElementStyles\",value:function(){Pw(this._pane.style,{top:\"\",left:\"\",bottom:\"\",right:\"\",position:\"\",transform:\"\"})}},{key:\"_setOverlayElementStyles\",value:function(e,t){var n={},r=this._hasExactPosition(),i=this._hasFlexibleDimensions,a=this._overlayRef.getConfig();if(r){var o=this._viewportRuler.getViewportScrollPosition();Pw(n,this._getExactOverlayY(t,e,o)),Pw(n,this._getExactOverlayX(t,e,o))}else n.position=\"static\";var s=\"\",l=this._getOffset(t,\"x\"),u=this._getOffset(t,\"y\");l&&(s+=\"translateX(\".concat(l,\"px) \")),u&&(s+=\"translateY(\".concat(u,\"px)\")),n.transform=s.trim(),a.maxHeight&&(r?n.maxHeight=vp(a.maxHeight):i&&(n.maxHeight=\"\")),a.maxWidth&&(r?n.maxWidth=vp(a.maxWidth):i&&(n.maxWidth=\"\")),Pw(this._pane.style,n)}},{key:\"_getExactOverlayY\",value:function(e,t,n){var r={top:\"\",bottom:\"\"},i=this._getOverlayPoint(t,this._overlayRect,e);this._isPushed&&(i=this._pushOverlayOnScreen(i,this._overlayRect,n));var a=this._overlayContainer.getContainerElement().getBoundingClientRect().top;return i.y-=a,\"bottom\"===e.overlayY?r.bottom=\"\".concat(this._document.documentElement.clientHeight-(i.y+this._overlayRect.height),\"px\"):r.top=vp(i.y),r}},{key:\"_getExactOverlayX\",value:function(e,t,n){var r={left:\"\",right:\"\"},i=this._getOverlayPoint(t,this._overlayRect,e);return this._isPushed&&(i=this._pushOverlayOnScreen(i,this._overlayRect,n)),\"right\"===(this._isRtl()?\"end\"===e.overlayX?\"left\":\"right\":\"end\"===e.overlayX?\"right\":\"left\")?r.right=\"\".concat(this._document.documentElement.clientWidth-(i.x+this._overlayRect.width),\"px\"):r.left=vp(i.x),r}},{key:\"_getScrollVisibility\",value:function(){var e=this._getOriginRect(),t=this._pane.getBoundingClientRect(),n=this._scrollables.map((function(e){return e.getElementRef().nativeElement.getBoundingClientRect()}));return{isOriginClipped:yw(e,n),isOriginOutsideView:gw(e,n),isOverlayClipped:yw(t,n),isOverlayOutsideView:gw(t,n)}}},{key:\"_subtractOverflows\",value:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r0&&void 0!==arguments[0]?arguments[0]:\"\";return this._bottomOffset=\"\",this._topOffset=e,this._alignItems=\"flex-start\",this}},{key:\"left\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._rightOffset=\"\",this._leftOffset=e,this._justifyContent=\"flex-start\",this}},{key:\"bottom\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._topOffset=\"\",this._bottomOffset=e,this._alignItems=\"flex-end\",this}},{key:\"right\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._leftOffset=\"\",this._rightOffset=e,this._justifyContent=\"flex-end\",this}},{key:\"width\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._overlayRef?this._overlayRef.updateSize({width:e}):this._width=e,this}},{key:\"height\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this._overlayRef?this._overlayRef.updateSize({height:e}):this._height=e,this}},{key:\"centerHorizontally\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this.left(e),this._justifyContent=\"center\",this}},{key:\"centerVertically\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return this.top(e),this._alignItems=\"center\",this}},{key:\"apply\",value:function(){if(this._overlayRef&&this._overlayRef.hasAttached()){var e=this._overlayRef.overlayElement.style,t=this._overlayRef.hostElement.style,n=this._overlayRef.getConfig(),r=n.width,i=n.height,a=n.maxWidth,o=n.maxHeight,s=!(\"100%\"!==r&&\"100vw\"!==r||a&&\"100%\"!==a&&\"100vw\"!==a),l=!(\"100%\"!==i&&\"100vh\"!==i||o&&\"100%\"!==o&&\"100vh\"!==o);e.position=this._cssPosition,e.marginLeft=s?\"0\":this._leftOffset,e.marginTop=l?\"0\":this._topOffset,e.marginBottom=this._bottomOffset,e.marginRight=this._rightOffset,s?t.justifyContent=\"flex-start\":\"center\"===this._justifyContent?t.justifyContent=\"center\":\"rtl\"===this._overlayRef.getConfig().direction?\"flex-start\"===this._justifyContent?t.justifyContent=\"flex-end\":\"flex-end\"===this._justifyContent&&(t.justifyContent=\"flex-start\"):t.justifyContent=this._justifyContent,t.alignItems=l?\"flex-start\":this._alignItems}}},{key:\"dispose\",value:function(){if(!this._isDisposed&&this._overlayRef){var e=this._overlayRef.overlayElement.style,t=this._overlayRef.hostElement,n=t.style;t.classList.remove(\"cdk-global-overlay-wrapper\"),n.justifyContent=n.alignItems=e.marginTop=e.marginBottom=e.marginLeft=e.marginRight=e.position=\"\",this._overlayRef=null,this._isDisposed=!0}}}]),e}(),Ww=((Rw=function(){function e(t,n,r,i){_classCallCheck(this,e),this._viewportRuler=t,this._document=n,this._platform=r,this._overlayContainer=i}return _createClass(e,[{key:\"global\",value:function(){return new Vw}},{key:\"connectedTo\",value:function(e,t,n){return new zw(t,n,e,this._viewportRuler,this._document,this._platform,this._overlayContainer)}},{key:\"flexibleConnectedTo\",value:function(e){return new Aw(e,this._viewportRuler,this._document,this._platform,this._overlayContainer)}}]),e}()).\\u0275fac=function(e){return new(e||Rw)(et(tw),et(Wc),et(Cp),et(Ew))},Rw.\\u0275prov=_e({factory:function(){return new Rw(et(tw),et(Wc),et(Cp),et(Ew))},token:Rw,providedIn:\"root\"}),Rw),Uw=0,Bw=((jw=function(){function e(t,n,r,i,a,o,s,l,u,c){_classCallCheck(this,e),this.scrollStrategies=t,this._overlayContainer=n,this._componentFactoryResolver=r,this._positionBuilder=i,this._keyboardDispatcher=a,this._injector=o,this._ngZone=s,this._document=l,this._directionality=u,this._location=c}return _createClass(e,[{key:\"create\",value:function(e){var t=this._createHostElement(),n=this._createPaneElement(t),r=this._createPortalOutlet(n),i=new Cw(e);return i.direction=i.direction||this._directionality.value,new Iw(r,t,n,i,this._ngZone,this._keyboardDispatcher,this._document,this._location)}},{key:\"position\",value:function(){return this._positionBuilder}},{key:\"_createPaneElement\",value:function(e){var t=this._document.createElement(\"div\");return t.id=\"cdk-overlay-\".concat(Uw++),t.classList.add(\"cdk-overlay-pane\"),e.appendChild(t),t}},{key:\"_createHostElement\",value:function(){var e=this._document.createElement(\"div\");return this._overlayContainer.getContainerElement().appendChild(e),e}},{key:\"_createPortalOutlet\",value:function(e){return this._appRef||(this._appRef=this._injector.get(Oc)),new dw(e,this._componentFactoryResolver,this._appRef,this._injector,this._document)}}]),e}()).\\u0275fac=function(e){return new(e||jw)(et(ww),et(Ew),et(Zs),et(Ww),et(Ow),et(vo),et(cc),et(Wc),et(h_),et(ud,8))},jw.\\u0275prov=_e({token:jw,factory:jw.\\u0275fac}),jw),qw=[{originX:\"start\",originY:\"bottom\",overlayX:\"start\",overlayY:\"top\"},{originX:\"start\",originY:\"top\",overlayX:\"start\",overlayY:\"bottom\"},{originX:\"end\",originY:\"top\",overlayX:\"end\",overlayY:\"bottom\"},{originX:\"end\",originY:\"bottom\",overlayX:\"end\",overlayY:\"top\"}],Gw=new Be(\"cdk-connected-overlay-scroll-strategy\"),$w=((Fw=function e(t){_classCallCheck(this,e),this.elementRef=t}).\\u0275fac=function(e){return new(e||Fw)(Io(Qs))},Fw.\\u0275dir=Lt({type:Fw,selectors:[[\"\",\"cdk-overlay-origin\",\"\"],[\"\",\"overlay-origin\",\"\"],[\"\",\"cdkOverlayOrigin\",\"\"]],exportAs:[\"cdkOverlayOrigin\"]}),Fw),Jw=((Hw=function(){function e(t,n,r,i,a){_classCallCheck(this,e),this._overlay=t,this._dir=a,this._hasBackdrop=!1,this._lockPosition=!1,this._growAfterOpen=!1,this._flexibleDimensions=!1,this._push=!1,this._backdropSubscription=h.EMPTY,this.viewportMargin=0,this.open=!1,this.backdropClick=new bu,this.positionChange=new bu,this.attach=new bu,this.detach=new bu,this.overlayKeydown=new bu,this._templatePortal=new lw(n,r),this._scrollStrategyFactory=i,this.scrollStrategy=this._scrollStrategyFactory()}return _createClass(e,[{key:\"ngOnDestroy\",value:function(){this._overlayRef&&this._overlayRef.dispose(),this._backdropSubscription.unsubscribe()}},{key:\"ngOnChanges\",value:function(e){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),e.origin&&this.open&&this._position.apply()),e.open&&(this.open?this._attachOverlay():this._detachOverlay())}},{key:\"_createOverlay\",value:function(){var e=this;this.positions&&this.positions.length||(this.positions=qw),this._overlayRef=this._overlay.create(this._buildConfig()),this._overlayRef.keydownEvents().subscribe((function(t){e.overlayKeydown.next(t),27!==t.keyCode||Jm(t)||(t.preventDefault(),e._detachOverlay())}))}},{key:\"_buildConfig\",value:function(){var e=this._position=this.positionStrategy||this._createPositionStrategy(),t=new Cw({direction:this._dir,positionStrategy:e,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop});return(this.width||0===this.width)&&(t.width=this.width),(this.height||0===this.height)&&(t.height=this.height),(this.minWidth||0===this.minWidth)&&(t.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(t.minHeight=this.minHeight),this.backdropClass&&(t.backdropClass=this.backdropClass),this.panelClass&&(t.panelClass=this.panelClass),t}},{key:\"_updatePositionStrategy\",value:function(e){var t=this,n=this.positions.map((function(e){return{originX:e.originX,originY:e.originY,overlayX:e.overlayX,overlayY:e.overlayY,offsetX:e.offsetX||t.offsetX,offsetY:e.offsetY||t.offsetY,panelClass:e.panelClass||void 0}}));return e.setOrigin(this.origin.elementRef).withPositions(n).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}},{key:\"_createPositionStrategy\",value:function(){var e=this,t=this._overlay.position().flexibleConnectedTo(this.origin.elementRef);return this._updatePositionStrategy(t),t.positionChanges.subscribe((function(t){return e.positionChange.emit(t)})),t}},{key:\"_attachOverlay\",value:function(){var e=this;this._overlayRef?this._overlayRef.getConfig().hasBackdrop=this.hasBackdrop:this._createOverlay(),this._overlayRef.hasAttached()||(this._overlayRef.attach(this._templatePortal),this.attach.emit()),this.hasBackdrop?this._backdropSubscription=this._overlayRef.backdropClick().subscribe((function(t){e.backdropClick.emit(t)})):this._backdropSubscription.unsubscribe()}},{key:\"_detachOverlay\",value:function(){this._overlayRef&&(this._overlayRef.detach(),this.detach.emit()),this._backdropSubscription.unsubscribe()}},{key:\"offsetX\",get:function(){return this._offsetX},set:function(e){this._offsetX=e,this._position&&this._updatePositionStrategy(this._position)}},{key:\"offsetY\",get:function(){return this._offsetY},set:function(e){this._offsetY=e,this._position&&this._updatePositionStrategy(this._position)}},{key:\"hasBackdrop\",get:function(){return this._hasBackdrop},set:function(e){this._hasBackdrop=mp(e)}},{key:\"lockPosition\",get:function(){return this._lockPosition},set:function(e){this._lockPosition=mp(e)}},{key:\"flexibleDimensions\",get:function(){return this._flexibleDimensions},set:function(e){this._flexibleDimensions=mp(e)}},{key:\"growAfterOpen\",get:function(){return this._growAfterOpen},set:function(e){this._growAfterOpen=mp(e)}},{key:\"push\",get:function(){return this._push},set:function(e){this._push=mp(e)}},{key:\"overlayRef\",get:function(){return this._overlayRef}},{key:\"dir\",get:function(){return this._dir?this._dir.value:\"ltr\"}}]),e}()).\\u0275fac=function(e){return new(e||Hw)(Io(Bw),Io(wl),Io(Ml),Io(Gw),Io(h_,8))},Hw.\\u0275dir=Lt({type:Hw,selectors:[[\"\",\"cdk-connected-overlay\",\"\"],[\"\",\"connected-overlay\",\"\"],[\"\",\"cdkConnectedOverlay\",\"\"]],inputs:{viewportMargin:[\"cdkConnectedOverlayViewportMargin\",\"viewportMargin\"],open:[\"cdkConnectedOverlayOpen\",\"open\"],scrollStrategy:[\"cdkConnectedOverlayScrollStrategy\",\"scrollStrategy\"],offsetX:[\"cdkConnectedOverlayOffsetX\",\"offsetX\"],offsetY:[\"cdkConnectedOverlayOffsetY\",\"offsetY\"],hasBackdrop:[\"cdkConnectedOverlayHasBackdrop\",\"hasBackdrop\"],lockPosition:[\"cdkConnectedOverlayLockPosition\",\"lockPosition\"],flexibleDimensions:[\"cdkConnectedOverlayFlexibleDimensions\",\"flexibleDimensions\"],growAfterOpen:[\"cdkConnectedOverlayGrowAfterOpen\",\"growAfterOpen\"],push:[\"cdkConnectedOverlayPush\",\"push\"],positions:[\"cdkConnectedOverlayPositions\",\"positions\"],origin:[\"cdkConnectedOverlayOrigin\",\"origin\"],positionStrategy:[\"cdkConnectedOverlayPositionStrategy\",\"positionStrategy\"],width:[\"cdkConnectedOverlayWidth\",\"width\"],height:[\"cdkConnectedOverlayHeight\",\"height\"],minWidth:[\"cdkConnectedOverlayMinWidth\",\"minWidth\"],minHeight:[\"cdkConnectedOverlayMinHeight\",\"minHeight\"],backdropClass:[\"cdkConnectedOverlayBackdropClass\",\"backdropClass\"],panelClass:[\"cdkConnectedOverlayPanelClass\",\"panelClass\"],transformOriginSelector:[\"cdkConnectedOverlayTransformOriginOn\",\"transformOriginSelector\"]},outputs:{backdropClick:\"backdropClick\",positionChange:\"positionChange\",attach:\"attach\",detach:\"detach\",overlayKeydown:\"overlayKeydown\"},exportAs:[\"cdkConnectedOverlay\"],features:[Hs]}),Hw),Kw={provide:Gw,deps:[Bw],useFactory:function(e){return function(){return e.scrollStrategies.reposition()}}},Zw=((Nw=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Nw}),Nw.\\u0275inj=ve({factory:function(e){return new(e||Nw)},providers:[Bw,Kw],imports:[[f_,fw,nw],nw]}),Nw);function Qw(e){return new w((function(t){var n;try{n=e()}catch(r){return void t.error(r)}return(n?W(n):up()).subscribe(t)}))}function Xw(e,t){}var eC=function e(){_classCallCheck(this,e),this.role=\"dialog\",this.panelClass=\"\",this.hasBackdrop=!0,this.backdropClass=\"\",this.disableClose=!1,this.width=\"\",this.height=\"\",this.maxWidth=\"80vw\",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.autoFocus=!0,this.restoreFocus=!0,this.closeOnNavigation=!0},tC={dialogContainer:uv(\"dialogContainer\",[fv(\"void, exit\",hv({opacity:0,transform:\"scale(0.7)\"})),fv(\"enter\",hv({transform:\"none\"})),mv(\"* => enter\",cv(\"150ms cubic-bezier(0, 0, 0.2, 1)\",hv({transform:\"none\",opacity:1}))),mv(\"* => void, * => exit\",cv(\"75ms cubic-bezier(0.4, 0.0, 0.2, 1)\",hv({opacity:0})))])};function nC(){throw Error(\"Attempting to attach dialog content after content is already attached\")}var rC,iC,aC,oC=((rC=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this))._elementRef=e,s._focusTrapFactory=r,s._changeDetectorRef=i,s._config=o,s._elementFocusedBeforeDialogWasOpened=null,s._state=\"enter\",s._animationStateChanged=new bu,s.attachDomPortal=function(e){return s._portalOutlet.hasAttached()&&nC(),s._savePreviouslyFocusedElement(),s._portalOutlet.attachDomPortal(e)},s._ariaLabelledBy=o.ariaLabelledBy||null,s._document=a,s}return _createClass(n,[{key:\"attachComponentPortal\",value:function(e){return this._portalOutlet.hasAttached()&&nC(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachComponentPortal(e)}},{key:\"attachTemplatePortal\",value:function(e){return this._portalOutlet.hasAttached()&&nC(),this._savePreviouslyFocusedElement(),this._portalOutlet.attachTemplatePortal(e)}},{key:\"_trapFocus\",value:function(){var e=this._elementRef.nativeElement;if(this._focusTrap||(this._focusTrap=this._focusTrapFactory.create(e)),this._config.autoFocus)this._focusTrap.focusInitialElementWhenReady();else{var t=this._document.activeElement;t===e||e.contains(t)||e.focus()}}},{key:\"_restoreFocus\",value:function(){var e=this._elementFocusedBeforeDialogWasOpened;if(this._config.restoreFocus&&e&&\"function\"==typeof e.focus){var t=this._document.activeElement,n=this._elementRef.nativeElement;t&&t!==this._document.body&&t!==n&&!n.contains(t)||e.focus()}this._focusTrap&&this._focusTrap.destroy()}},{key:\"_savePreviouslyFocusedElement\",value:function(){var e=this;this._document&&(this._elementFocusedBeforeDialogWasOpened=this._document.activeElement,this._elementRef.nativeElement.focus&&Promise.resolve().then((function(){return e._elementRef.nativeElement.focus()})))}},{key:\"_onAnimationDone\",value:function(e){\"enter\"===e.toState?this._trapFocus():\"exit\"===e.toState&&this._restoreFocus(),this._animationStateChanged.emit(e)}},{key:\"_onAnimationStart\",value:function(e){this._animationStateChanged.emit(e)}},{key:\"_startExitAnimation\",value:function(){this._state=\"exit\",this._changeDetectorRef.markForCheck()}}]),n}(cw)).\\u0275fac=function(e){return new(e||rC)(Io(Qs),Io(Kp),Io(eo),Io(Wc,8),Io(eC))},rC.\\u0275cmp=bt({type:rC,selectors:[[\"mat-dialog-container\"]],viewQuery:function(e,t){var n;1&e&&Eu(hw,!0),2&e&&Yu(n=Hu())&&(t._portalOutlet=n.first)},hostAttrs:[\"tabindex\",\"-1\",\"aria-modal\",\"true\",1,\"mat-dialog-container\"],hostVars:6,hostBindings:function(e,t){1&e&&Go(\"@dialogContainer.start\",(function(e){return t._onAnimationStart(e)}))(\"@dialogContainer.done\",(function(e){return t._onAnimationDone(e)})),2&e&&(Do(\"id\",t._id)(\"role\",t._config.role)(\"aria-labelledby\",t._config.ariaLabel?null:t._ariaLabelledBy)(\"aria-label\",t._config.ariaLabel)(\"aria-describedby\",t._config.ariaDescribedBy||null),Os(\"@dialogContainer\",t._state))},features:[Es],decls:1,vars:0,consts:[[\"cdkPortalOutlet\",\"\"]],template:function(e,t){1&e&&Yo(0,Xw,0,0,\"ng-template\",0)},directives:[hw],styles:[\".mat-dialog-container{display:block;padding:24px;border-radius:4px;box-sizing:border-box;overflow:auto;outline:0;width:100%;height:100%;min-height:inherit;max-height:inherit}.cdk-high-contrast-active .mat-dialog-container{outline:solid 1px}.mat-dialog-content{display:block;margin:0 -24px;padding:0 24px;max-height:65vh;overflow:auto;-webkit-overflow-scrolling:touch}.mat-dialog-title{margin:0 0 20px;display:block}.mat-dialog-actions{padding:8px 0;display:flex;flex-wrap:wrap;min-height:52px;align-items:center;margin-bottom:-24px}.mat-dialog-actions[align=end]{justify-content:flex-end}.mat-dialog-actions[align=center]{justify-content:center}.mat-dialog-actions .mat-button-base+.mat-button-base,.mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}\\n\"],encapsulation:2,data:{animation:[tC.dialogContainer]}}),rC),sC=0,lC=function(){function e(t,n){var r=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:\"mat-dialog-\".concat(sC++);_classCallCheck(this,e),this._overlayRef=t,this._containerInstance=n,this.id=i,this.disableClose=this._containerInstance._config.disableClose,this._afterOpened=new x,this._afterClosed=new x,this._beforeClosed=new x,this._state=0,n._id=i,n._animationStateChanged.pipe(Gd((function(e){return\"done\"===e.phaseName&&\"enter\"===e.toState})),cp(1)).subscribe((function(){r._afterOpened.next(),r._afterOpened.complete()})),n._animationStateChanged.pipe(Gd((function(e){return\"done\"===e.phaseName&&\"exit\"===e.toState})),cp(1)).subscribe((function(){clearTimeout(r._closeFallbackTimeout),r._overlayRef.dispose()})),t.detachments().subscribe((function(){r._beforeClosed.next(r._result),r._beforeClosed.complete(),r._afterClosed.next(r._result),r._afterClosed.complete(),r.componentInstance=null,r._overlayRef.dispose()})),t.keydownEvents().pipe(Gd((function(e){return 27===e.keyCode&&!r.disableClose&&!Jm(e)}))).subscribe((function(e){e.preventDefault(),r.close()}))}return _createClass(e,[{key:\"close\",value:function(e){var t=this;this._result=e,this._containerInstance._animationStateChanged.pipe(Gd((function(e){return\"start\"===e.phaseName})),cp(1)).subscribe((function(n){t._beforeClosed.next(e),t._beforeClosed.complete(),t._state=2,t._overlayRef.detachBackdrop(),t._closeFallbackTimeout=setTimeout((function(){t._overlayRef.dispose()}),n.totalTime+100)})),this._containerInstance._startExitAnimation(),this._state=1}},{key:\"afterOpened\",value:function(){return this._afterOpened.asObservable()}},{key:\"afterClosed\",value:function(){return this._afterClosed.asObservable()}},{key:\"beforeClosed\",value:function(){return this._beforeClosed.asObservable()}},{key:\"backdropClick\",value:function(){return this._overlayRef.backdropClick()}},{key:\"keydownEvents\",value:function(){return this._overlayRef.keydownEvents()}},{key:\"updatePosition\",value:function(e){var t=this._getPositionStrategy();return e&&(e.left||e.right)?e.left?t.left(e.left):t.right(e.right):t.centerHorizontally(),e&&(e.top||e.bottom)?e.top?t.top(e.top):t.bottom(e.bottom):t.centerVertically(),this._overlayRef.updatePosition(),this}},{key:\"updateSize\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\";return this._getPositionStrategy().width(e).height(t),this._overlayRef.updatePosition(),this}},{key:\"addPanelClass\",value:function(e){return this._overlayRef.addPanelClass(e),this}},{key:\"removePanelClass\",value:function(e){return this._overlayRef.removePanelClass(e),this}},{key:\"getState\",value:function(){return this._state}},{key:\"_getPositionStrategy\",value:function(){return this._overlayRef.getConfig().positionStrategy}}]),e}(),uC=new Be(\"MatDialogData\"),cC=new Be(\"mat-dialog-default-options\"),dC=new Be(\"mat-dialog-scroll-strategy\"),hC={provide:dC,deps:[Bw],useFactory:function(e){return function(){return e.scrollStrategies.block()}}},fC=((aC=function(){function e(t,n,r,i,a,o,s){var l=this;_classCallCheck(this,e),this._overlay=t,this._injector=n,this._defaultOptions=i,this._parentDialog=o,this._overlayContainer=s,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new x,this._afterOpenedAtThisLevel=new x,this._ariaHiddenElements=new Map,this.afterAllClosed=Qw((function(){return l.openDialogs.length?l._afterAllClosed:l._afterAllClosed.pipe(sv(void 0))})),this._scrollStrategy=a}return _createClass(e,[{key:\"open\",value:function(e,t){var n=this;if((t=function(e,t){return Object.assign(Object.assign({},t),e)}(t,this._defaultOptions||new eC)).id&&this.getDialogById(t.id))throw Error('Dialog with id \"'.concat(t.id,'\" exists already. The dialog id must be unique.'));var r=this._createOverlay(t),i=this._attachDialogContainer(r,t),a=this._attachDialogContent(e,i,r,t);return this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(a),a.afterClosed().subscribe((function(){return n._removeOpenDialog(a)})),this.afterOpened.next(a),a}},{key:\"closeAll\",value:function(){this._closeDialogs(this.openDialogs)}},{key:\"getDialogById\",value:function(e){return this.openDialogs.find((function(t){return t.id===e}))}},{key:\"ngOnDestroy\",value:function(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}},{key:\"_createOverlay\",value:function(e){var t=this._getOverlayConfig(e);return this._overlay.create(t)}},{key:\"_getOverlayConfig\",value:function(e){var t=new Cw({positionStrategy:this._overlay.position().global(),scrollStrategy:e.scrollStrategy||this._scrollStrategy(),panelClass:e.panelClass,hasBackdrop:e.hasBackdrop,direction:e.direction,minWidth:e.minWidth,minHeight:e.minHeight,maxWidth:e.maxWidth,maxHeight:e.maxHeight,disposeOnNavigation:e.closeOnNavigation});return e.backdropClass&&(t.backdropClass=e.backdropClass),t}},{key:\"_attachDialogContainer\",value:function(e,t){var n=vo.create({parent:t&&t.viewContainerRef&&t.viewContainerRef.injector||this._injector,providers:[{provide:eC,useValue:t}]}),r=new sw(oC,t.viewContainerRef,n,t.componentFactoryResolver);return e.attach(r).instance}},{key:\"_attachDialogContent\",value:function(e,t,n,r){var i=new lC(n,t,r.id);if(r.hasBackdrop&&n.backdropClick().subscribe((function(){i.disableClose||i.close()})),e instanceof wl)t.attachTemplatePortal(new lw(e,null,{$implicit:r.data,dialogRef:i}));else{var a=this._createInjector(r,i,t),o=t.attachComponentPortal(new sw(e,r.viewContainerRef,a));i.componentInstance=o.instance}return i.updateSize(r.width,r.height).updatePosition(r.position),i}},{key:\"_createInjector\",value:function(e,t,n){var r=e&&e.viewContainerRef&&e.viewContainerRef.injector,i=[{provide:oC,useValue:n},{provide:uC,useValue:e.data},{provide:lC,useValue:t}];return!e.direction||r&&r.get(h_,null)||i.push({provide:h_,useValue:{value:e.direction,change:Bd()}}),vo.create({parent:r||this._injector,providers:i})}},{key:\"_removeOpenDialog\",value:function(e){var t=this.openDialogs.indexOf(e);t>-1&&(this.openDialogs.splice(t,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((function(e,t){e?t.setAttribute(\"aria-hidden\",e):t.removeAttribute(\"aria-hidden\")})),this._ariaHiddenElements.clear(),this._afterAllClosed.next()))}},{key:\"_hideNonDialogContentFromAssistiveTechnology\",value:function(){var e=this._overlayContainer.getContainerElement();if(e.parentElement)for(var t=e.parentElement.children,n=t.length-1;n>-1;n--){var r=t[n];r===e||\"SCRIPT\"===r.nodeName||\"STYLE\"===r.nodeName||r.hasAttribute(\"aria-live\")||(this._ariaHiddenElements.set(r,r.getAttribute(\"aria-hidden\")),r.setAttribute(\"aria-hidden\",\"true\"))}}},{key:\"_closeDialogs\",value:function(e){for(var t=e.length;t--;)e[t].close()}},{key:\"openDialogs\",get:function(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}},{key:\"afterOpened\",get:function(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}},{key:\"_afterAllClosed\",get:function(){var e=this._parentDialog;return e?e._afterAllClosed:this._afterAllClosedAtThisLevel}}]),e}()).\\u0275fac=function(e){return new(e||aC)(et(Bw),et(vo),et(ud,8),et(cC,8),et(dC),et(aC,12),et(Ew))},aC.\\u0275prov=_e({token:aC,factory:aC.\\u0275fac}),aC),mC=((iC=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:iC}),iC.\\u0275inj=ve({factory:function(e){return new(e||iC)},providers:[fC,hC],imports:[[Zw,fw,zy],zy]}),iC);function pC(e){return function(t){var n=new _C(e),r=t.lift(n);return n.caught=r}}var _C=function(){function e(t){_classCallCheck(this,e),this.selector=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new vC(e,this.selector,this.caught))}}]),e}(),vC=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).selector=r,a.caught=i,a}return _createClass(n,[{key:\"error\",value:function(e){if(!this.isStopped){var t;try{t=this.selector(e,this.caught)}catch(a){return void _get(_getPrototypeOf(n.prototype),\"error\",this).call(this,a)}this._unsubscribeAndRecycle();var r=new Y(this,void 0,void 0);this.add(r);var i=R(this,t,void 0,void 0,r);i!==r&&this.add(i)}}}]),n}(H);function gC(e){return function(t){return t.lift(new yC(e))}}var yC=function(){function e(t){_classCallCheck(this,e),this.callback=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new bC(e,this.callback))}}]),e}(),bC=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).add(new h(r)),i}return n}(p),kC=[\"*\"];function wC(e){return Error('Unable to find icon with the name \"'.concat(e,'\"'))}function CC(e){return Error(\"The URL provided to MatIconRegistry was not trusted as a resource URL \"+\"via Angular's DomSanitizer. Attempted URL was \\\"\".concat(e,'\".'))}function MC(e){return Error(\"The literal provided to MatIconRegistry was not trusted as safe HTML by \"+\"Angular's DomSanitizer. Attempted literal was \\\"\".concat(e,'\".'))}var SC,LC=function e(t,n){_classCallCheck(this,e),this.options=n,t.nodeName?this.svgElement=t:this.url=t},TC=((SC=function(){function e(t,n,r,i){_classCallCheck(this,e),this._httpClient=t,this._sanitizer=n,this._errorHandler=i,this._svgIconConfigs=new Map,this._iconSetConfigs=new Map,this._cachedIconsByUrl=new Map,this._inProgressUrlFetches=new Map,this._fontCssClassesByAlias=new Map,this._defaultFontSetClass=\"material-icons\",this._document=r}return _createClass(e,[{key:\"addSvgIcon\",value:function(e,t,n){return this.addSvgIconInNamespace(\"\",e,t,n)}},{key:\"addSvgIconLiteral\",value:function(e,t,n){return this.addSvgIconLiteralInNamespace(\"\",e,t,n)}},{key:\"addSvgIconInNamespace\",value:function(e,t,n,r){return this._addSvgIconConfig(e,t,new LC(n,r))}},{key:\"addSvgIconLiteralInNamespace\",value:function(e,t,n,r){var i=this._sanitizer.sanitize(Kr.HTML,n);if(!i)throw MC(n);var a=this._createSvgElementForSingleIcon(i,r);return this._addSvgIconConfig(e,t,new LC(a,r))}},{key:\"addSvgIconSet\",value:function(e,t){return this.addSvgIconSetInNamespace(\"\",e,t)}},{key:\"addSvgIconSetLiteral\",value:function(e,t){return this.addSvgIconSetLiteralInNamespace(\"\",e,t)}},{key:\"addSvgIconSetInNamespace\",value:function(e,t,n){return this._addSvgIconSetConfig(e,new LC(t,n))}},{key:\"addSvgIconSetLiteralInNamespace\",value:function(e,t,n){var r=this._sanitizer.sanitize(Kr.HTML,t);if(!r)throw MC(t);var i=this._svgElementFromString(r);return this._addSvgIconSetConfig(e,new LC(i,n))}},{key:\"registerFontClassAlias\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;return this._fontCssClassesByAlias.set(e,t),this}},{key:\"classNameForFontAlias\",value:function(e){return this._fontCssClassesByAlias.get(e)||e}},{key:\"setDefaultFontSetClass\",value:function(e){return this._defaultFontSetClass=e,this}},{key:\"getDefaultFontSetClass\",value:function(){return this._defaultFontSetClass}},{key:\"getSvgIconFromUrl\",value:function(e){var t=this,n=this._sanitizer.sanitize(Kr.RESOURCE_URL,e);if(!n)throw CC(e);var r=this._cachedIconsByUrl.get(n);return r?Bd(xC(r)):this._loadSvgIconFromConfig(new LC(e)).pipe(Km((function(e){return t._cachedIconsByUrl.set(n,e)})),F((function(e){return xC(e)})))}},{key:\"getNamedSvgIcon\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"\",n=DC(t,e),r=this._svgIconConfigs.get(n);if(r)return this._getSvgFromConfig(r);var i=this._iconSetConfigs.get(t);return i?this._getSvgFromIconSetConfigs(e,i):Nk(wC(n))}},{key:\"ngOnDestroy\",value:function(){this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}},{key:\"_getSvgFromConfig\",value:function(e){return e.svgElement?Bd(xC(e.svgElement)):this._loadSvgIconFromConfig(e).pipe(Km((function(t){return e.svgElement=t})),F((function(e){return xC(e)})))}},{key:\"_getSvgFromIconSetConfigs\",value:function(e,t){var n=this,r=this._extractIconWithNameFromAnySet(e,t);return r?Bd(r):Rh(t.filter((function(e){return!e.svgElement})).map((function(e){return n._loadSvgIconSetFromConfig(e).pipe(pC((function(t){var r=\"Loading icon set URL: \".concat(n._sanitizer.sanitize(Kr.RESOURCE_URL,e.url),\" failed: \").concat(t.message);return n._errorHandler?n._errorHandler.handleError(new Error(r)):console.error(r),Bd(null)})))}))).pipe(F((function(){var r=n._extractIconWithNameFromAnySet(e,t);if(!r)throw wC(e);return r})))}},{key:\"_extractIconWithNameFromAnySet\",value:function(e,t){for(var n=t.length-1;n>=0;n--){var r=t[n];if(r.svgElement){var i=this._extractSvgIconFromSet(r.svgElement,e,r.options);if(i)return i}}return null}},{key:\"_loadSvgIconFromConfig\",value:function(e){var t=this;return this._fetchUrl(e.url).pipe(F((function(n){return t._createSvgElementForSingleIcon(n,e.options)})))}},{key:\"_loadSvgIconSetFromConfig\",value:function(e){var t=this;return e.svgElement?Bd(e.svgElement):this._fetchUrl(e.url).pipe(F((function(n){return e.svgElement||(e.svgElement=t._svgElementFromString(n)),e.svgElement})))}},{key:\"_createSvgElementForSingleIcon\",value:function(e,t){var n=this._svgElementFromString(e);return this._setSvgAttributes(n,t),n}},{key:\"_extractSvgIconFromSet\",value:function(e,t,n){var r=e.querySelector('[id=\"'.concat(t,'\"]'));if(!r)return null;var i=r.cloneNode(!0);if(i.removeAttribute(\"id\"),\"svg\"===i.nodeName.toLowerCase())return this._setSvgAttributes(i,n);if(\"symbol\"===i.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(i),n);var a=this._svgElementFromString(\"\");return a.appendChild(i),this._setSvgAttributes(a,n)}},{key:\"_svgElementFromString\",value:function(e){var t=this._document.createElement(\"DIV\");t.innerHTML=e;var n=t.querySelector(\"svg\");if(!n)throw Error(\" tag not found\");return n}},{key:\"_toSvgElement\",value:function(e){for(var t=this._svgElementFromString(\"\"),n=e.attributes,r=0;r enter\",[hv({opacity:0,transform:\"translateY(-100%)\"}),cv(\"300ms cubic-bezier(0.55, 0, 0.55, 0.2)\")])])},hM=((oM=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||oM)},oM.\\u0275dir=Lt({type:oM}),oM);function fM(e){return Error(\"A hint was already declared for 'align=\\\"\".concat(e,\"\\\"'.\"))}var mM,pM,_M,vM,gM,yM,bM,kM,wM,CM=0,MM=((gM=function e(){_classCallCheck(this,e),this.align=\"start\",this.id=\"mat-hint-\".concat(CM++)}).\\u0275fac=function(e){return new(e||gM)},gM.\\u0275dir=Lt({type:gM,selectors:[[\"mat-hint\"]],hostAttrs:[1,\"mat-hint\"],hostVars:4,hostBindings:function(e,t){2&e&&(Do(\"id\",t.id)(\"align\",null),fs(\"mat-right\",\"end\"==t.align))},inputs:{align:\"align\",id:\"id\"}}),gM),SM=((vM=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||vM)},vM.\\u0275dir=Lt({type:vM,selectors:[[\"mat-label\"]]}),vM),LM=((_M=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||_M)},_M.\\u0275dir=Lt({type:_M,selectors:[[\"mat-placeholder\"]]}),_M),TM=((pM=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||pM)},pM.\\u0275dir=Lt({type:pM,selectors:[[\"\",\"matPrefix\",\"\"]]}),pM),xM=((mM=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||mM)},mM.\\u0275dir=Lt({type:mM,selectors:[[\"\",\"matSuffix\",\"\"]]}),mM),DM=0,OM=Wy((function e(t){_classCallCheck(this,e),this._elementRef=t}),\"primary\"),YM=new Be(\"MAT_FORM_FIELD_DEFAULT_OPTIONS\"),EM=((bM=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s,l,u){var c;return _classCallCheck(this,n),(c=t.call(this,e))._elementRef=e,c._changeDetectorRef=r,c._dir=a,c._defaults=o,c._platform=s,c._ngZone=l,c._outlineGapCalculationNeededImmediately=!1,c._outlineGapCalculationNeededOnStable=!1,c._destroyed=new x,c._showAlwaysAnimate=!1,c._subscriptAnimationState=\"\",c._hintLabel=\"\",c._hintLabelId=\"mat-hint-\".concat(DM++),c._labelId=\"mat-form-field-label-\".concat(DM++),c._labelOptions=i||{},c.floatLabel=c._getDefaultFloatLabelState(),c._animationsEnabled=\"NoopAnimations\"!==u,c.appearance=o&&o.appearance?o.appearance:\"legacy\",c._hideRequiredMarker=!(!o||null==o.hideRequiredMarker)&&o.hideRequiredMarker,c}return _createClass(n,[{key:\"getConnectedOverlayOrigin\",value:function(){return this._connectionContainerRef||this._elementRef}},{key:\"ngAfterContentInit\",value:function(){var e=this;this._validateControlChild();var t=this._control;t.controlType&&this._elementRef.nativeElement.classList.add(\"mat-form-field-type-\".concat(t.controlType)),t.stateChanges.pipe(sv(null)).subscribe((function(){e._validatePlaceholders(),e._syncDescribedByIds(),e._changeDetectorRef.markForCheck()})),t.ngControl&&t.ngControl.valueChanges&&t.ngControl.valueChanges.pipe(Ek(this._destroyed)).subscribe((function(){return e._changeDetectorRef.markForCheck()})),this._ngZone.runOutsideAngular((function(){e._ngZone.onStable.asObservable().pipe(Ek(e._destroyed)).subscribe((function(){e._outlineGapCalculationNeededOnStable&&e.updateOutlineGap()}))})),K(this._prefixChildren.changes,this._suffixChildren.changes).subscribe((function(){e._outlineGapCalculationNeededOnStable=!0,e._changeDetectorRef.markForCheck()})),this._hintChildren.changes.pipe(sv(null)).subscribe((function(){e._processHints(),e._changeDetectorRef.markForCheck()})),this._errorChildren.changes.pipe(sv(null)).subscribe((function(){e._syncDescribedByIds(),e._changeDetectorRef.markForCheck()})),this._dir&&this._dir.change.pipe(Ek(this._destroyed)).subscribe((function(){\"function\"==typeof requestAnimationFrame?e._ngZone.runOutsideAngular((function(){requestAnimationFrame((function(){return e.updateOutlineGap()}))})):e.updateOutlineGap()}))}},{key:\"ngAfterContentChecked\",value:function(){this._validateControlChild(),this._outlineGapCalculationNeededImmediately&&this.updateOutlineGap()}},{key:\"ngAfterViewInit\",value:function(){this._subscriptAnimationState=\"enter\",this._changeDetectorRef.detectChanges()}},{key:\"ngOnDestroy\",value:function(){this._destroyed.next(),this._destroyed.complete()}},{key:\"_shouldForward\",value:function(e){var t=this._control?this._control.ngControl:null;return t&&t[e]}},{key:\"_hasPlaceholder\",value:function(){return!!(this._control&&this._control.placeholder||this._placeholderChild)}},{key:\"_hasLabel\",value:function(){return!!this._labelChild}},{key:\"_shouldLabelFloat\",value:function(){return this._canLabelFloat&&(this._control.shouldLabelFloat||this._shouldAlwaysFloat)}},{key:\"_hideControlPlaceholder\",value:function(){return\"legacy\"===this.appearance&&!this._hasLabel()||this._hasLabel()&&!this._shouldLabelFloat()}},{key:\"_hasFloatingLabel\",value:function(){return this._hasLabel()||\"legacy\"===this.appearance&&this._hasPlaceholder()}},{key:\"_getDisplayedMessages\",value:function(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?\"error\":\"hint\"}},{key:\"_animateAndLockLabel\",value:function(){var e=this;this._hasFloatingLabel()&&this._canLabelFloat&&(this._animationsEnabled&&this._label&&(this._showAlwaysAnimate=!0,mk(this._label.nativeElement,\"transitionend\").pipe(cp(1)).subscribe((function(){e._showAlwaysAnimate=!1}))),this.floatLabel=\"always\",this._changeDetectorRef.markForCheck())}},{key:\"_validatePlaceholders\",value:function(){if(this._control.placeholder&&this._placeholderChild)throw Error(\"Placeholder attribute and child element were both specified.\")}},{key:\"_processHints\",value:function(){this._validateHints(),this._syncDescribedByIds()}},{key:\"_validateHints\",value:function(){var e,t,n=this;this._hintChildren&&this._hintChildren.forEach((function(r){if(\"start\"===r.align){if(e||n.hintLabel)throw fM(\"start\");e=r}else if(\"end\"===r.align){if(t)throw fM(\"end\");t=r}}))}},{key:\"_getDefaultFloatLabelState\",value:function(){return this._defaults&&this._defaults.floatLabel||this._labelOptions.float||\"auto\"}},{key:\"_syncDescribedByIds\",value:function(){if(this._control){var e=[];if(\"hint\"===this._getDisplayedMessages()){var t=this._hintChildren?this._hintChildren.find((function(e){return\"start\"===e.align})):null,n=this._hintChildren?this._hintChildren.find((function(e){return\"end\"===e.align})):null;t?e.push(t.id):this._hintLabel&&e.push(this._hintLabelId),n&&e.push(n.id)}else this._errorChildren&&(e=this._errorChildren.map((function(e){return e.id})));this._control.setDescribedByIds(e)}}},{key:\"_validateControlChild\",value:function(){if(!this._control)throw Error(\"mat-form-field must contain a MatFormFieldControl.\")}},{key:\"updateOutlineGap\",value:function(){var e=this._label?this._label.nativeElement:null;if(\"outline\"===this.appearance&&e&&e.children.length&&e.textContent.trim()&&this._platform.isBrowser)if(this._isAttachedToDOM()){var t=0,n=0,r=this._connectionContainerRef.nativeElement,i=r.querySelectorAll(\".mat-form-field-outline-start\"),a=r.querySelectorAll(\".mat-form-field-outline-gap\");if(this._label&&this._label.nativeElement.children.length){var o=r.getBoundingClientRect();if(0===o.width&&0===o.height)return this._outlineGapCalculationNeededOnStable=!0,void(this._outlineGapCalculationNeededImmediately=!1);var s,l=this._getStartEnd(o),u=this._getStartEnd(e.children[0].getBoundingClientRect()),c=0,d=_createForOfIteratorHelper(e.children);try{for(d.s();!(s=d.n()).done;)c+=s.value.offsetWidth}catch(m){d.e(m)}finally{d.f()}t=u-l-5,n=c>0?.75*c+10:0}for(var h=0;h-1)throw Error('Input type \"'.concat(this._type,\"\\\" isn't supported by matInput.\"))}},{key:\"_isNeverEmpty\",value:function(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}},{key:\"_isBadInput\",value:function(){var e=this._elementRef.nativeElement.validity;return e&&e.badInput}},{key:\"setDescribedByIds\",value:function(e){this._ariaDescribedby=e.join(\" \")}},{key:\"onContainerClick\",value:function(){this.focused||this.focus()}},{key:\"disabled\",get:function(){return this.ngControl&&null!==this.ngControl.disabled?this.ngControl.disabled:this._disabled},set:function(e){this._disabled=mp(e),this.focused&&(this.focused=!1,this.stateChanges.next())}},{key:\"id\",get:function(){return this._id},set:function(e){this._id=e||this._uid}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=mp(e)}},{key:\"type\",get:function(){return this._type},set:function(e){this._type=e||\"text\",this._validateType(),!this._isTextarea()&&Lp().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}},{key:\"value\",get:function(){return this._inputValueAccessor.value},set:function(e){e!==this.value&&(this._inputValueAccessor.value=e,this.stateChanges.next())}},{key:\"readonly\",get:function(){return this._readonly},set:function(e){this._readonly=mp(e)}},{key:\"empty\",get:function(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}},{key:\"shouldLabelFloat\",get:function(){if(this._isNativeSelect){var e=this._elementRef.nativeElement,t=e.options[0];return this.focused||e.multiple||!this.empty||!!(e.selectedIndex>-1&&t&&t.label)}return this.focused||!this.empty}}]),n}(RM)).\\u0275fac=function(e){return new(e||wM)(Io(Qs),Io(Cp),Io(tf,10),Io(pm,8),Io(Dm,8),Io(eb),Io(AM,10),Io(VC),Io(cc))},wM.\\u0275dir=Lt({type:wM,selectors:[[\"input\",\"matInput\",\"\"],[\"textarea\",\"matInput\",\"\"],[\"select\",\"matNativeControl\",\"\"],[\"input\",\"matNativeControl\",\"\"],[\"textarea\",\"matNativeControl\",\"\"]],hostAttrs:[1,\"mat-input-element\",\"mat-form-field-autofill-control\"],hostVars:10,hostBindings:function(e,t){1&e&&qo(\"blur\",(function(){return t._focusChanged(!1)}))(\"focus\",(function(){return t._focusChanged(!0)}))(\"input\",(function(){return t._onInput()})),2&e&&(Ds(\"disabled\",t.disabled)(\"required\",t.required),Do(\"id\",t.id)(\"placeholder\",t.placeholder)(\"readonly\",t.readonly&&!t._isNativeSelect||null)(\"aria-describedby\",t._ariaDescribedby||null)(\"aria-invalid\",t.errorState)(\"aria-required\",t.required.toString()),fs(\"mat-input-server\",t._isServer))},inputs:{id:\"id\",disabled:\"disabled\",required:\"required\",type:\"type\",value:\"value\",readonly:\"readonly\",placeholder:\"placeholder\",errorStateMatcher:\"errorStateMatcher\"},exportAs:[\"matInput\"],features:[$s([{provide:hM,useExisting:wM}]),Es,Hs]}),wM),FM=((kM=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:kM}),kM.\\u0275inj=ve({factory:function(e){return new(e||kM)},providers:[eb],imports:[[WC,IM],WC,IM]}),kM);function NM(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:np,r=(t=e)instanceof Date&&!isNaN(+t)?+e-n.now():Math.abs(e);return function(e){return e.lift(new zM(r,n))}}var zM=function(){function e(t,n){_classCallCheck(this,e),this.delay=t,this.scheduler=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new VM(e,this.delay,this.scheduler))}}]),e}(),VM=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).delay=r,a.scheduler=i,a.queue=[],a.active=!1,a.errored=!1,a}return _createClass(n,[{key:\"_schedule\",value:function(e){this.active=!0,this.destination.add(e.schedule(n.dispatch,this.delay,{source:this,destination:this.destination,scheduler:e}))}},{key:\"scheduleNotification\",value:function(e){if(!0!==this.errored){var t=this.scheduler,n=new WM(t.now()+this.delay,e);this.queue.push(n),!1===this.active&&this._schedule(t)}}},{key:\"_next\",value:function(e){this.scheduleNotification(Vk.createNext(e))}},{key:\"_error\",value:function(e){this.errored=!0,this.queue=[],this.destination.error(e),this.unsubscribe()}},{key:\"_complete\",value:function(){this.scheduleNotification(Vk.createComplete()),this.unsubscribe()}}],[{key:\"dispatch\",value:function(e){for(var t=e.source,n=t.queue,r=e.scheduler,i=e.destination;n.length>0&&n[0].time-r.now()<=0;)n.shift().notification.observe(i);if(n.length>0){var a=Math.max(0,n[0].time-r.now());this.schedule(e,a)}else this.unsubscribe(),t.active=!1}}]),n}(p),WM=function e(t,n){_classCallCheck(this,e),this.time=t,this.notification=n},UM=[\"mat-menu-item\",\"\"],BM=[\"*\"];function qM(e,t){if(1&e){var n=Wo();Ho(0,\"div\",0),qo(\"keydown\",(function(e){return nn(n),Zo()._handleKeydown(e)}))(\"click\",(function(){return nn(n),Zo().closed.emit(\"click\")}))(\"@transformMenu.start\",(function(e){return nn(n),Zo()._onAnimationStart(e)}))(\"@transformMenu.done\",(function(e){return nn(n),Zo()._onAnimationDone(e)})),Ho(1,\"div\",1),ns(2),Fo(),Fo()}if(2&e){var r=Zo();jo(\"id\",r.panelId)(\"ngClass\",r._classList)(\"@transformMenu\",r._panelAnimationState),Do(\"aria-label\",r.ariaLabel||null)(\"aria-labelledby\",r.ariaLabelledby||null)(\"aria-describedby\",r.ariaDescribedby||null)}}var GM,$M,JM,KM,ZM,QM,XM,eS,tS,nS={transformMenu:uv(\"transformMenu\",[fv(\"void\",hv({opacity:0,transform:\"scale(0.8)\"})),mv(\"void => enter\",function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return{type:3,steps:e,options:t}}([pv(\".mat-menu-content, .mat-mdc-menu-content\",cv(\"100ms linear\",hv({opacity:1}))),cv(\"120ms cubic-bezier(0, 0, 0.2, 1)\",hv({transform:\"scale(1)\"}))])),mv(\"* => void\",cv(\"100ms 25ms linear\",hv({opacity:0})))]),fadeInItems:uv(\"fadeInItems\",[fv(\"showing\",hv({opacity:1})),mv(\"void => *\",[hv({opacity:0}),cv(\"400ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)\")])])},rS=((GM=function(){function e(t,n,r,i,a,o,s){_classCallCheck(this,e),this._template=t,this._componentFactoryResolver=n,this._appRef=r,this._injector=i,this._viewContainerRef=a,this._document=o,this._changeDetectorRef=s,this._attached=new x}return _createClass(e,[{key:\"attach\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this._portal||(this._portal=new lw(this._template,this._viewContainerRef)),this.detach(),this._outlet||(this._outlet=new dw(this._document.createElement(\"div\"),this._componentFactoryResolver,this._appRef,this._injector));var t=this._template.elementRef.nativeElement;t.parentNode.insertBefore(this._outlet.outletElement,t),this._changeDetectorRef&&this._changeDetectorRef.markForCheck(),this._portal.attach(this._outlet,e),this._attached.next()}},{key:\"detach\",value:function(){this._portal.isAttached&&this._portal.detach()}},{key:\"ngOnDestroy\",value:function(){this._outlet&&this._outlet.dispose()}}]),e}()).\\u0275fac=function(e){return new(e||GM)(Io(wl),Io(Zs),Io(Oc),Io(vo),Io(Ml),Io(Wc),Io(eo))},GM.\\u0275dir=Lt({type:GM,selectors:[[\"ng-template\",\"matMenuContent\",\"\"]]}),GM),iS=new Be(\"MAT_MENU_PANEL\"),aS=Uy(Vy((function e(){_classCallCheck(this,e)}))),oS=(($M=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this))._elementRef=e,o._focusMonitor=i,o._parentMenu=a,o.role=\"menuitem\",o._hovered=new x,o._focused=new x,o._highlighted=!1,o._triggersSubmenu=!1,i&&i.monitor(o._elementRef,!1),a&&a.addItem&&a.addItem(_assertThisInitialized(o)),o._document=r,o}return _createClass(n,[{key:\"focus\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"program\",t=arguments.length>1?arguments[1]:void 0;this._focusMonitor?this._focusMonitor.focusVia(this._getHostElement(),e,t):this._getHostElement().focus(t),this._focused.next(this)}},{key:\"ngOnDestroy\",value:function(){this._focusMonitor&&this._focusMonitor.stopMonitoring(this._elementRef),this._parentMenu&&this._parentMenu.removeItem&&this._parentMenu.removeItem(this),this._hovered.complete(),this._focused.complete()}},{key:\"_getTabIndex\",value:function(){return this.disabled?\"-1\":\"0\"}},{key:\"_getHostElement\",value:function(){return this._elementRef.nativeElement}},{key:\"_checkDisabled\",value:function(e){this.disabled&&(e.preventDefault(),e.stopPropagation())}},{key:\"_handleMouseEnter\",value:function(){this._hovered.next(this)}},{key:\"getLabel\",value:function(){var e=this._elementRef.nativeElement,t=this._document?this._document.TEXT_NODE:3,n=\"\";if(e.childNodes)for(var r=e.childNodes.length,i=0;i0&&void 0!==arguments[0]?arguments[0]:\"program\";this.lazyContent?this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe((function(){return e._focusFirstItem(t)})):this._focusFirstItem(t)}},{key:\"_focusFirstItem\",value:function(e){var t=this._keyManager;if(t.setFocusOrigin(e).setFirstItemActive(),!t.activeItem&&this._directDescendantItems.length)for(var n=this._directDescendantItems.first._getHostElement().parentElement;n;){if(\"menu\"===n.getAttribute(\"role\")){n.focus();break}n=n.parentElement}}},{key:\"resetActiveItem\",value:function(){this._keyManager.setActiveItem(-1)}},{key:\"setElevation\",value:function(e){var t=\"mat-elevation-z\".concat(Math.min(4+e,24)),n=Object.keys(this._classList).find((function(e){return e.startsWith(\"mat-elevation-z\")}));n&&n!==this._previousElevation||(this._previousElevation&&(this._classList[this._previousElevation]=!1),this._classList[t]=!0,this._previousElevation=t)}},{key:\"setPositionClasses\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.xPosition,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.yPosition,n=this._classList;n[\"mat-menu-before\"]=\"before\"===e,n[\"mat-menu-after\"]=\"after\"===e,n[\"mat-menu-above\"]=\"above\"===t,n[\"mat-menu-below\"]=\"below\"===t}},{key:\"_startAnimation\",value:function(){this._panelAnimationState=\"enter\"}},{key:\"_resetAnimation\",value:function(){this._panelAnimationState=\"void\"}},{key:\"_onAnimationDone\",value:function(e){this._animationDone.next(e),this._isAnimating=!1}},{key:\"_onAnimationStart\",value:function(e){this._isAnimating=!0,\"enter\"===e.toState&&0===this._keyManager.activeItemIndex&&(e.element.scrollTop=0)}},{key:\"_updateDirectDescendants\",value:function(){var e=this;this._allItems.changes.pipe(sv(this._allItems)).subscribe((function(t){e._directDescendantItems.reset(t.filter((function(t){return t._parentMenu===e}))),e._directDescendantItems.notifyOnChanges()}))}},{key:\"xPosition\",get:function(){return this._xPosition},set:function(e){\"before\"!==e&&\"after\"!==e&&function(){throw Error('xPosition value must be either \\'before\\' or after\\'.\\n Example: ')}(),this._xPosition=e,this.setPositionClasses()}},{key:\"yPosition\",get:function(){return this._yPosition},set:function(e){\"above\"!==e&&\"below\"!==e&&function(){throw Error('yPosition value must be either \\'above\\' or below\\'.\\n Example: ')}(),this._yPosition=e,this.setPositionClasses()}},{key:\"overlapTrigger\",get:function(){return this._overlapTrigger},set:function(e){this._overlapTrigger=mp(e)}},{key:\"hasBackdrop\",get:function(){return this._hasBackdrop},set:function(e){this._hasBackdrop=mp(e)}},{key:\"panelClass\",set:function(e){var t=this,n=this._previousPanelClass;n&&n.length&&n.split(\" \").forEach((function(e){t._classList[e]=!1})),this._previousPanelClass=e,e&&e.length&&(e.split(\" \").forEach((function(e){t._classList[e]=!0})),this._elementRef.nativeElement.className=\"\")}},{key:\"classList\",get:function(){return this.panelClass},set:function(e){this.panelClass=e}}]),e}()).\\u0275fac=function(e){return new(e||KM)(Io(Qs),Io(cc),Io(sS))},KM.\\u0275dir=Lt({type:KM,contentQueries:function(e,t,n){var r;1&e&&(Pu(n,rS,!0),Pu(n,oS,!0),Pu(n,oS,!1)),2&e&&(Yu(r=Hu())&&(t.lazyContent=r.first),Yu(r=Hu())&&(t._allItems=r),Yu(r=Hu())&&(t.items=r))},viewQuery:function(e,t){var n;1&e&&Iu(wl,!0),2&e&&Yu(n=Hu())&&(t.templateRef=n.first)},inputs:{backdropClass:\"backdropClass\",xPosition:\"xPosition\",yPosition:\"yPosition\",overlapTrigger:\"overlapTrigger\",hasBackdrop:\"hasBackdrop\",panelClass:[\"class\",\"panelClass\"],classList:\"classList\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],ariaDescribedby:[\"aria-describedby\",\"ariaDescribedby\"]},outputs:{closed:\"closed\",close:\"close\"}}),KM),cS=((JM=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return n}(uS)).\\u0275fac=function(e){return dS(e||JM)},JM.\\u0275dir=Lt({type:JM,features:[Es]}),JM),dS=cr(cS),hS=((ZM=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){return _classCallCheck(this,n),t.call(this,e,r,i)}return n}(cS)).\\u0275fac=function(e){return new(e||ZM)(Io(Qs),Io(cc),Io(sS))},ZM.\\u0275cmp=bt({type:ZM,selectors:[[\"mat-menu\"]],exportAs:[\"matMenu\"],features:[$s([{provide:iS,useExisting:cS},{provide:cS,useExisting:ZM}]),Es],ngContentSelectors:BM,decls:1,vars:0,consts:[[\"tabindex\",\"-1\",\"role\",\"menu\",1,\"mat-menu-panel\",3,\"id\",\"ngClass\",\"keydown\",\"click\"],[1,\"mat-menu-content\"]],template:function(e,t){1&e&&(Xo(),Yo(0,qM,3,6,\"ng-template\"))},directives:[kd],styles:['.mat-menu-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;max-height:calc(100vh - 48px);border-radius:4px;outline:0;min-height:64px}.mat-menu-panel.ng-animating{pointer-events:none}.cdk-high-contrast-active .mat-menu-panel{outline:solid 1px}.mat-menu-content:not(:empty){padding-top:8px;padding-bottom:8px}.mat-menu-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:transparent;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;line-height:48px;height:48px;padding:0 16px;text-align:left;text-decoration:none;max-width:100%;position:relative}.mat-menu-item::-moz-focus-inner{border:0}.mat-menu-item[disabled]{cursor:default}[dir=rtl] .mat-menu-item{text-align:right}.mat-menu-item .mat-icon{margin-right:16px;vertical-align:middle}.mat-menu-item .mat-icon svg{vertical-align:top}[dir=rtl] .mat-menu-item .mat-icon{margin-left:16px;margin-right:0}.mat-menu-item[disabled]{pointer-events:none}.cdk-high-contrast-active .mat-menu-item.cdk-program-focused,.cdk-high-contrast-active .mat-menu-item.cdk-keyboard-focused,.cdk-high-contrast-active .mat-menu-item-highlighted{outline:dotted 1px}.mat-menu-item-submenu-trigger{padding-right:32px}.mat-menu-item-submenu-trigger::after{width:0;height:0;border-style:solid;border-width:5px 0 5px 5px;border-color:transparent transparent transparent currentColor;content:\"\";display:inline-block;position:absolute;top:50%;right:16px;transform:translateY(-50%)}[dir=rtl] .mat-menu-item-submenu-trigger{padding-right:16px;padding-left:32px}[dir=rtl] .mat-menu-item-submenu-trigger::after{right:auto;left:16px;transform:rotateY(180deg) translateY(-50%)}button.mat-menu-item{width:100%}.mat-menu-item .mat-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}\\n'],encapsulation:2,data:{animation:[nS.transformMenu,nS.fadeInItems]},changeDetection:0}),ZM),fS=new Be(\"mat-menu-scroll-strategy\"),mS={provide:fS,deps:[Bw],useFactory:function(e){return function(){return e.scrollStrategies.reposition()}}},pS=Tp({passive:!0}),_S=((eS=function(){function e(t,n,r,i,a,o,s,l){var u=this;_classCallCheck(this,e),this._overlay=t,this._element=n,this._viewContainerRef=r,this._parentMenu=a,this._menuItemInstance=o,this._dir=s,this._focusMonitor=l,this._overlayRef=null,this._menuOpen=!1,this._closingActionsSubscription=h.EMPTY,this._hoverSubscription=h.EMPTY,this._menuCloseSubscription=h.EMPTY,this._handleTouchStart=function(){return u._openedBy=\"touch\"},this._openedBy=null,this.restoreFocus=!0,this.menuOpened=new bu,this.onMenuOpen=this.menuOpened,this.menuClosed=new bu,this.onMenuClose=this.menuClosed,n.nativeElement.addEventListener(\"touchstart\",this._handleTouchStart,pS),o&&(o._triggersSubmenu=this.triggersSubmenu()),this._scrollStrategy=i}return _createClass(e,[{key:\"ngAfterContentInit\",value:function(){this._checkMenu(),this._handleHover()}},{key:\"ngOnDestroy\",value:function(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null),this._element.nativeElement.removeEventListener(\"touchstart\",this._handleTouchStart,pS),this._menuCloseSubscription.unsubscribe(),this._closingActionsSubscription.unsubscribe(),this._hoverSubscription.unsubscribe()}},{key:\"triggersSubmenu\",value:function(){return!(!this._menuItemInstance||!this._parentMenu)}},{key:\"toggleMenu\",value:function(){return this._menuOpen?this.closeMenu():this.openMenu()}},{key:\"openMenu\",value:function(){var e=this;if(!this._menuOpen){this._checkMenu();var t=this._createOverlay(),n=t.getConfig();this._setPosition(n.positionStrategy),n.hasBackdrop=null==this.menu.hasBackdrop?!this.triggersSubmenu():this.menu.hasBackdrop,t.attach(this._getPortal()),this.menu.lazyContent&&this.menu.lazyContent.attach(this.menuData),this._closingActionsSubscription=this._menuClosingActions().subscribe((function(){return e.closeMenu()})),this._initMenu(),this.menu instanceof cS&&this.menu._startAnimation()}}},{key:\"closeMenu\",value:function(){this.menu.close.emit()}},{key:\"focus\",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"program\",t=arguments.length>1?arguments[1]:void 0;this._focusMonitor?this._focusMonitor.focusVia(this._element,e,t):this._element.nativeElement.focus(t)}},{key:\"_destroyMenu\",value:function(){var e=this;if(this._overlayRef&&this.menuOpen){var t=this.menu;this._closingActionsSubscription.unsubscribe(),this._overlayRef.detach(),this._restoreFocus(),t instanceof cS?(t._resetAnimation(),t.lazyContent?t._animationDone.pipe(Gd((function(e){return\"void\"===e.toState})),cp(1),Ek(t.lazyContent._attached)).subscribe({next:function(){return t.lazyContent.detach()},complete:function(){return e._setIsMenuOpen(!1)}}):this._setIsMenuOpen(!1)):(this._setIsMenuOpen(!1),t.lazyContent&&t.lazyContent.detach())}}},{key:\"_initMenu\",value:function(){this.menu.parentMenu=this.triggersSubmenu()?this._parentMenu:void 0,this.menu.direction=this.dir,this._setMenuElevation(),this._setIsMenuOpen(!0),this.menu.focusFirstItem(this._openedBy||\"program\")}},{key:\"_setMenuElevation\",value:function(){if(this.menu.setElevation){for(var e=0,t=this.menu.parentMenu;t;)e++,t=t.parentMenu;this.menu.setElevation(e)}}},{key:\"_restoreFocus\",value:function(){this.restoreFocus&&(this._openedBy?this.triggersSubmenu()||this.focus(this._openedBy):this.focus()),this._openedBy=null}},{key:\"_setIsMenuOpen\",value:function(e){this._menuOpen=e,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this.triggersSubmenu()&&(this._menuItemInstance._highlighted=e)}},{key:\"_checkMenu\",value:function(){this.menu||function(){throw Error('matMenuTriggerFor: must pass in an mat-menu instance.\\n\\n Example:\\n \\n ')}()}},{key:\"_createOverlay\",value:function(){if(!this._overlayRef){var e=this._getOverlayConfig();this._subscribeToPositions(e.positionStrategy),this._overlayRef=this._overlay.create(e),this._overlayRef.keydownEvents().subscribe()}return this._overlayRef}},{key:\"_getOverlayConfig\",value:function(){return new Cw({positionStrategy:this._overlay.position().flexibleConnectedTo(this._element).withLockedPosition().withTransformOriginOn(\".mat-menu-panel, .mat-mdc-menu-panel\"),backdropClass:this.menu.backdropClass||\"cdk-overlay-transparent-backdrop\",scrollStrategy:this._scrollStrategy(),direction:this._dir})}},{key:\"_subscribeToPositions\",value:function(e){var t=this;this.menu.setPositionClasses&&e.positionChanges.subscribe((function(e){t.menu.setPositionClasses(\"start\"===e.connectionPair.overlayX?\"after\":\"before\",\"top\"===e.connectionPair.overlayY?\"below\":\"above\")}))}},{key:\"_setPosition\",value:function(e){var t=_slicedToArray(\"before\"===this.menu.xPosition?[\"end\",\"start\"]:[\"start\",\"end\"],2),n=t[0],r=t[1],i=_slicedToArray(\"above\"===this.menu.yPosition?[\"bottom\",\"top\"]:[\"top\",\"bottom\"],2),a=i[0],o=i[1],s=a,l=o,u=n,c=r,d=0;this.triggersSubmenu()?(c=n=\"before\"===this.menu.xPosition?\"start\":\"end\",r=u=\"end\"===n?\"start\":\"end\",d=\"bottom\"===a?8:-8):this.menu.overlapTrigger||(s=\"top\"===a?\"bottom\":\"top\",l=\"top\"===o?\"bottom\":\"top\"),e.withPositions([{originX:n,originY:s,overlayX:u,overlayY:a,offsetY:d},{originX:r,originY:s,overlayX:c,overlayY:a,offsetY:d},{originX:n,originY:l,overlayX:u,overlayY:o,offsetY:-d},{originX:r,originY:l,overlayX:c,overlayY:o,offsetY:-d}])}},{key:\"_menuClosingActions\",value:function(){var e=this,t=this._overlayRef.backdropClick(),n=this._overlayRef.detachments();return K(t,this._parentMenu?this._parentMenu.closed:Bd(),this._parentMenu?this._parentMenu._hovered().pipe(Gd((function(t){return t!==e._menuItemInstance})),Gd((function(){return e._menuOpen}))):Bd(),n)}},{key:\"_handleMousedown\",value:function(e){n_(e)||(this._openedBy=0===e.button?\"mouse\":null,this.triggersSubmenu()&&e.preventDefault())}},{key:\"_handleKeydown\",value:function(e){var t=e.keyCode;this.triggersSubmenu()&&(39===t&&\"ltr\"===this.dir||37===t&&\"rtl\"===this.dir)&&this.openMenu()}},{key:\"_handleClick\",value:function(e){this.triggersSubmenu()?(e.stopPropagation(),this.openMenu()):this.toggleMenu()}},{key:\"_handleHover\",value:function(){var e=this;this.triggersSubmenu()&&(this._hoverSubscription=this._parentMenu._hovered().pipe(Gd((function(t){return t===e._menuItemInstance&&!t.disabled})),NM(0,wk)).subscribe((function(){e._openedBy=\"mouse\",e.menu instanceof cS&&e.menu._isAnimating?e.menu._animationDone.pipe(cp(1),NM(0,wk),Ek(e._parentMenu._hovered())).subscribe((function(){return e.openMenu()})):e.openMenu()})))}},{key:\"_getPortal\",value:function(){return this._portal&&this._portal.templateRef===this.menu.templateRef||(this._portal=new lw(this.menu.templateRef,this._viewContainerRef)),this._portal}},{key:\"_deprecatedMatMenuTriggerFor\",get:function(){return this.menu},set:function(e){this.menu=e}},{key:\"menu\",get:function(){return this._menu},set:function(e){var t=this;e!==this._menu&&(this._menu=e,this._menuCloseSubscription.unsubscribe(),e&&(this._menuCloseSubscription=e.close.asObservable().subscribe((function(e){t._destroyMenu(),\"click\"!==e&&\"tab\"!==e||!t._parentMenu||t._parentMenu.closed.emit(e)}))))}},{key:\"menuOpen\",get:function(){return this._menuOpen}},{key:\"dir\",get:function(){return this._dir&&\"rtl\"===this._dir.value?\"rtl\":\"ltr\"}}]),e}()).\\u0275fac=function(e){return new(e||eS)(Io(Bw),Io(Qs),Io(Ml),Io(fS),Io(cS,8),Io(oS,10),Io(h_,8),Io(t_))},eS.\\u0275dir=Lt({type:eS,selectors:[[\"\",\"mat-menu-trigger-for\",\"\"],[\"\",\"matMenuTriggerFor\",\"\"]],hostAttrs:[\"aria-haspopup\",\"true\",1,\"mat-menu-trigger\"],hostVars:2,hostBindings:function(e,t){1&e&&qo(\"mousedown\",(function(e){return t._handleMousedown(e)}))(\"keydown\",(function(e){return t._handleKeydown(e)}))(\"click\",(function(e){return t._handleClick(e)})),2&e&&Do(\"aria-expanded\",t.menuOpen||null)(\"aria-controls\",t.menuOpen?t.menu.panelId:null)},inputs:{restoreFocus:[\"matMenuTriggerRestoreFocus\",\"restoreFocus\"],_deprecatedMatMenuTriggerFor:[\"mat-menu-trigger-for\",\"_deprecatedMatMenuTriggerFor\"],menu:[\"matMenuTriggerFor\",\"menu\"],menuData:[\"matMenuTriggerData\",\"menuData\"]},outputs:{menuOpened:\"menuOpened\",onMenuOpen:\"onMenuOpen\",menuClosed:\"menuClosed\",onMenuClose:\"onMenuClose\"},exportAs:[\"matMenuTrigger\"]}),eS),vS=((XM=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:XM}),XM.\\u0275inj=ve({factory:function(e){return new(e||XM)},providers:[mS],imports:[zy]}),XM),gS=((QM=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:QM}),QM.\\u0275inj=ve({factory:function(e){return new(e||QM)},providers:[mS],imports:[[Nd,zy,lb,Zw,vS],vS]}),QM),yS=[\"primaryValueBar\"],bS=Wy((function e(t){_classCallCheck(this,e),this._elementRef=t}),\"primary\"),kS=new Be(\"mat-progress-bar-location\",{providedIn:\"root\",factory:function(){var e=tt(Wc),t=e?e.location:null;return{getPathname:function(){return t?t.pathname+t.search:\"\"}}}}),wS=0,CS=((tS=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;_classCallCheck(this,n),(o=t.call(this,e))._elementRef=e,o._ngZone=r,o._animationMode=i,o._isNoopAnimation=!1,o._value=0,o._bufferValue=0,o.animationEnd=new bu,o._animationEndSubscription=h.EMPTY,o.mode=\"determinate\",o.progressbarId=\"mat-progress-bar-\".concat(wS++);var s=a?a.getPathname().split(\"#\")[0]:\"\";return o._rectangleFillValue=\"url('\".concat(s,\"#\").concat(o.progressbarId,\"')\"),o._isNoopAnimation=\"NoopAnimations\"===i,o}return _createClass(n,[{key:\"_primaryTransform\",value:function(){return{transform:\"scaleX(\".concat(this.value/100,\")\")}}},{key:\"_bufferTransform\",value:function(){return\"buffer\"===this.mode?{transform:\"scaleX(\".concat(this.bufferValue/100,\")\")}:null}},{key:\"ngAfterViewInit\",value:function(){var e=this;this._ngZone.runOutsideAngular((function(){var t=e._primaryValueBar.nativeElement;e._animationEndSubscription=mk(t,\"transitionend\").pipe(Gd((function(e){return e.target===t}))).subscribe((function(){\"determinate\"!==e.mode&&\"buffer\"!==e.mode||e._ngZone.run((function(){return e.animationEnd.next({value:e.value})}))}))}))}},{key:\"ngOnDestroy\",value:function(){this._animationEndSubscription.unsubscribe()}},{key:\"value\",get:function(){return this._value},set:function(e){this._value=MS(pp(e)||0)}},{key:\"bufferValue\",get:function(){return this._bufferValue},set:function(e){this._bufferValue=MS(e||0)}}]),n}(bS)).\\u0275fac=function(e){return new(e||tS)(Io(Qs),Io(cc),Io(Yy,8),Io(kS,8))},tS.\\u0275cmp=bt({type:tS,selectors:[[\"mat-progress-bar\"]],viewQuery:function(e,t){var n;1&e&&Iu(yS,!0),2&e&&Yu(n=Hu())&&(t._primaryValueBar=n.first)},hostAttrs:[\"role\",\"progressbar\",\"aria-valuemin\",\"0\",\"aria-valuemax\",\"100\",1,\"mat-progress-bar\"],hostVars:4,hostBindings:function(e,t){2&e&&(Do(\"aria-valuenow\",\"indeterminate\"===t.mode||\"query\"===t.mode?null:t.value)(\"mode\",t.mode),fs(\"_mat-animation-noopable\",t._isNoopAnimation))},inputs:{color:\"color\",mode:\"mode\",value:\"value\",bufferValue:\"bufferValue\"},outputs:{animationEnd:\"animationEnd\"},exportAs:[\"matProgressBar\"],features:[Es],decls:9,vars:4,consts:[[\"width\",\"100%\",\"height\",\"4\",\"focusable\",\"false\",1,\"mat-progress-bar-background\",\"mat-progress-bar-element\"],[\"x\",\"4\",\"y\",\"0\",\"width\",\"8\",\"height\",\"4\",\"patternUnits\",\"userSpaceOnUse\",3,\"id\"],[\"cx\",\"2\",\"cy\",\"2\",\"r\",\"2\"],[\"width\",\"100%\",\"height\",\"100%\"],[1,\"mat-progress-bar-buffer\",\"mat-progress-bar-element\",3,\"ngStyle\"],[1,\"mat-progress-bar-primary\",\"mat-progress-bar-fill\",\"mat-progress-bar-element\",3,\"ngStyle\"],[\"primaryValueBar\",\"\"],[1,\"mat-progress-bar-secondary\",\"mat-progress-bar-fill\",\"mat-progress-bar-element\"]],template:function(e,t){1&e&&(Sn(),Ho(0,\"svg\",0),Ho(1,\"defs\"),Ho(2,\"pattern\",1),No(3,\"circle\",2),Fo(),Fo(),No(4,\"rect\",3),Fo(),Ln(),No(5,\"div\",4),No(6,\"div\",5,6),No(8,\"div\",7)),2&e&&(bi(2),jo(\"id\",t.progressbarId),bi(2),Do(\"fill\",t._rectangleFillValue),bi(1),jo(\"ngStyle\",t._bufferTransform()),bi(1),jo(\"ngStyle\",t._primaryTransform()))},directives:[Hd],styles:['.mat-progress-bar{display:block;height:4px;overflow:hidden;position:relative;transition:opacity 250ms linear;width:100%}._mat-animation-noopable.mat-progress-bar{transition:none;animation:none}.mat-progress-bar .mat-progress-bar-element,.mat-progress-bar .mat-progress-bar-fill::after{height:100%;position:absolute;width:100%}.mat-progress-bar .mat-progress-bar-background{width:calc(100% + 10px)}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-background{display:none}.mat-progress-bar .mat-progress-bar-buffer{transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-buffer{border-top:solid 5px;opacity:.5}.mat-progress-bar .mat-progress-bar-secondary{display:none}.mat-progress-bar .mat-progress-bar-fill{animation:none;transform-origin:top left;transition:transform 250ms ease}.cdk-high-contrast-active .mat-progress-bar .mat-progress-bar-fill{border-top:solid 4px}.mat-progress-bar .mat-progress-bar-fill::after{animation:none;content:\"\";display:inline-block;left:0}.mat-progress-bar[dir=rtl],[dir=rtl] .mat-progress-bar{transform:rotateY(180deg)}.mat-progress-bar[mode=query]{transform:rotateZ(180deg)}.mat-progress-bar[mode=query][dir=rtl],[dir=rtl] .mat-progress-bar[mode=query]{transform:rotateZ(180deg) rotateY(180deg)}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-fill,.mat-progress-bar[mode=query] .mat-progress-bar-fill{transition:none}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary,.mat-progress-bar[mode=query] .mat-progress-bar-primary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-translate 2000ms infinite linear;left:-145.166611%}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-primary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-primary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary,.mat-progress-bar[mode=query] .mat-progress-bar-secondary{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-translate 2000ms infinite linear;left:-54.888891%;display:block}.mat-progress-bar[mode=indeterminate] .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar[mode=query] .mat-progress-bar-secondary.mat-progress-bar-fill::after{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-secondary-indeterminate-scale 2000ms infinite linear}.mat-progress-bar[mode=buffer] .mat-progress-bar-background{-webkit-backface-visibility:hidden;backface-visibility:hidden;animation:mat-progress-bar-background-scroll 250ms infinite linear;display:block}.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-buffer,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-primary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-secondary.mat-progress-bar-fill::after,.mat-progress-bar._mat-animation-noopable .mat-progress-bar-background{animation:none;transition-duration:1ms}@keyframes mat-progress-bar-primary-indeterminate-translate{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(83.67142%)}100%{transform:translateX(200.611057%)}}@keyframes mat-progress-bar-primary-indeterminate-scale{0%{transform:scaleX(0.08)}36.65%{animation-timing-function:cubic-bezier(0.334731, 0.12482, 0.785844, 1);transform:scaleX(0.08)}69.15%{animation-timing-function:cubic-bezier(0.06, 0.11, 0.6, 1);transform:scaleX(0.661479)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-secondary-indeterminate-translate{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(37.651913%)}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(84.386165%)}100%{transform:translateX(160.277782%)}}@keyframes mat-progress-bar-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mat-progress-bar-background-scroll{to{transform:translateX(-8px)}}\\n'],encapsulation:2,changeDetection:0}),tS);function MS(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:100;return Math.max(t,Math.min(n,e))}var SS,LS=((SS=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:SS}),SS.\\u0275inj=ve({factory:function(e){return new(e||SS)},imports:[[Nd,zy],zy]}),SS),TS=[\"trigger\"],xS=[\"panel\"];function DS(e,t){if(1&e&&(Ho(0,\"span\",8),Ls(1),Fo()),2&e){var n=Zo();bi(1),Ts(n.placeholder||\"\\xa0\")}}function OS(e,t){if(1&e&&(Ho(0,\"span\"),Ls(1),Fo()),2&e){var n=Zo(2);bi(1),Ts(n.triggerValue||\"\\xa0\")}}function YS(e,t){1&e&&ns(0,0,[\"*ngSwitchCase\",\"true\"])}function ES(e,t){1&e&&(Ho(0,\"span\",9),Yo(1,OS,2,1,\"span\",10),Yo(2,YS,1,0,void 0,11),Fo()),2&e&&(jo(\"ngSwitch\",!!Zo().customTrigger),bi(2),jo(\"ngSwitchCase\",!0))}function IS(e,t){if(1&e){var n=Wo();Ho(0,\"div\",12),Ho(1,\"div\",13,14),qo(\"@transformPanel.done\",(function(e){return nn(n),Zo()._panelDoneAnimatingStream.next(e.toState)}))(\"keydown\",(function(e){return nn(n),Zo()._handleKeydown(e)})),ns(3,1),Fo(),Fo()}if(2&e){var r=Zo();jo(\"@transformPanelWrap\",void 0),bi(1),i=r._getPanelTheme(),vs(ht,ps,Oo(en(),\"mat-select-panel \",i,\"\"),!0),hs(\"transform-origin\",r._transformOrigin)(\"font-size\",r._triggerFontSize,\"px\"),jo(\"ngClass\",r.panelClass)(\"@transformPanel\",r.multiple?\"showing-multiple\":\"showing\")}var i}var AS,PS,jS,RS=[[[\"mat-select-trigger\"]],\"*\"],HS=[\"mat-select-trigger\",\"*\"],FS={transformPanelWrap:uv(\"transformPanelWrap\",[mv(\"* => void\",pv(\"@transformPanel\",[function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return{type:9,options:e}}()],{optional:!0}))]),transformPanel:uv(\"transformPanel\",[fv(\"void\",hv({transform:\"scaleY(0.8)\",minWidth:\"100%\",opacity:0})),fv(\"showing\",hv({opacity:1,minWidth:\"calc(100% + 32px)\",transform:\"scaleY(1)\"})),fv(\"showing-multiple\",hv({opacity:1,minWidth:\"calc(100% + 64px)\",transform:\"scaleY(1)\"})),mv(\"void => *\",cv(\"120ms cubic-bezier(0, 0, 0.2, 1)\")),mv(\"* => void\",cv(\"100ms 25ms linear\",hv({opacity:0})))])},NS=0,zS=new Be(\"mat-select-scroll-strategy\"),VS=new Be(\"MAT_SELECT_CONFIG\"),WS={provide:zS,deps:[Bw],useFactory:function(e){return function(){return e.scrollStrategies.reposition()}}},US=function e(t,n){_classCallCheck(this,e),this.source=t,this.value=n},BS=Uy(By(Vy(qy((function e(t,n,r,i,a){_classCallCheck(this,e),this._elementRef=t,this._defaultErrorStateMatcher=n,this._parentForm=r,this._parentFormGroup=i,this.ngControl=a}))))),qS=((jS=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||jS)},jS.\\u0275dir=Lt({type:jS,selectors:[[\"mat-select-trigger\"]]}),jS),GS=((PS=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s,l,u,c,d,h,f,m,p){var _;return _classCallCheck(this,n),(_=t.call(this,o,a,l,u,d))._viewportRuler=e,_._changeDetectorRef=r,_._ngZone=i,_._dir=s,_._parentFormField=c,_.ngControl=d,_._liveAnnouncer=m,_._panelOpen=!1,_._required=!1,_._scrollTop=0,_._multiple=!1,_._compareWith=function(e,t){return e===t},_._uid=\"mat-select-\".concat(NS++),_._destroy=new x,_._triggerFontSize=0,_._onChange=function(){},_._onTouched=function(){},_._optionIds=\"\",_._transformOrigin=\"top\",_._panelDoneAnimatingStream=new x,_._offsetY=0,_._positions=[{originX:\"start\",originY:\"top\",overlayX:\"start\",overlayY:\"top\"},{originX:\"start\",originY:\"bottom\",overlayX:\"start\",overlayY:\"bottom\"}],_._disableOptionCentering=!1,_._focused=!1,_.controlType=\"mat-select\",_.ariaLabel=\"\",_.optionSelectionChanges=Qw((function(){var e=_.options;return e?e.changes.pipe(sv(e),Pk((function(){return K.apply(void 0,_toConsumableArray(e.map((function(e){return e.onSelectionChange}))))}))):_._ngZone.onStable.asObservable().pipe(cp(1),Pk((function(){return _.optionSelectionChanges})))})),_.openedChange=new bu,_._openedStream=_.openedChange.pipe(Gd((function(e){return e})),F((function(){}))),_._closedStream=_.openedChange.pipe(Gd((function(e){return!e})),F((function(){}))),_.selectionChange=new bu,_.valueChange=new bu,_.ngControl&&(_.ngControl.valueAccessor=_assertThisInitialized(_)),_._scrollStrategyFactory=f,_._scrollStrategy=_._scrollStrategyFactory(),_.tabIndex=parseInt(h)||0,_.id=_.id,p&&(null!=p.disableOptionCentering&&(_.disableOptionCentering=p.disableOptionCentering),null!=p.typeaheadDebounceInterval&&(_.typeaheadDebounceInterval=p.typeaheadDebounceInterval)),_}return _createClass(n,[{key:\"ngOnInit\",value:function(){var e=this;this._selectionModel=new Qk(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe(Ck(),Ek(this._destroy)).subscribe((function(){e.panelOpen?(e._scrollTop=0,e.openedChange.emit(!0)):(e.openedChange.emit(!1),e.overlayDir.offsetX=0,e._changeDetectorRef.markForCheck())})),this._viewportRuler.change().pipe(Ek(this._destroy)).subscribe((function(){e._panelOpen&&(e._triggerRect=e.trigger.nativeElement.getBoundingClientRect(),e._changeDetectorRef.markForCheck())}))}},{key:\"ngAfterContentInit\",value:function(){var e=this;this._initKeyManager(),this._selectionModel.changed.pipe(Ek(this._destroy)).subscribe((function(e){e.added.forEach((function(e){return e.select()})),e.removed.forEach((function(e){return e.deselect()}))})),this.options.changes.pipe(sv(null),Ek(this._destroy)).subscribe((function(){e._resetOptions(),e._initializeSelection()}))}},{key:\"ngDoCheck\",value:function(){this.ngControl&&this.updateErrorState()}},{key:\"ngOnChanges\",value:function(e){e.disabled&&this.stateChanges.next(),e.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this._typeaheadDebounceInterval)}},{key:\"ngOnDestroy\",value:function(){this._destroy.next(),this._destroy.complete(),this.stateChanges.complete()}},{key:\"toggle\",value:function(){this.panelOpen?this.close():this.open()}},{key:\"open\",value:function(){var e=this;!this.disabled&&this.options&&this.options.length&&!this._panelOpen&&(this._triggerRect=this.trigger.nativeElement.getBoundingClientRect(),this._triggerFontSize=parseInt(getComputedStyle(this.trigger.nativeElement).fontSize||\"0\"),this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._calculateOverlayPosition(),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck(),this._ngZone.onStable.asObservable().pipe(cp(1)).subscribe((function(){e._triggerFontSize&&e.overlayDir.overlayRef&&e.overlayDir.overlayRef.overlayElement&&(e.overlayDir.overlayRef.overlayElement.style.fontSize=\"\".concat(e._triggerFontSize,\"px\"))})))}},{key:\"close\",value:function(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?\"rtl\":\"ltr\"),this._changeDetectorRef.markForCheck(),this._onTouched())}},{key:\"writeValue\",value:function(e){this.options&&this._setSelectionByValue(e)}},{key:\"registerOnChange\",value:function(e){this._onChange=e}},{key:\"registerOnTouched\",value:function(e){this._onTouched=e}},{key:\"setDisabledState\",value:function(e){this.disabled=e,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}},{key:\"_isRtl\",value:function(){return!!this._dir&&\"rtl\"===this._dir.value}},{key:\"_handleKeydown\",value:function(e){this.disabled||(this.panelOpen?this._handleOpenKeydown(e):this._handleClosedKeydown(e))}},{key:\"_handleClosedKeydown\",value:function(e){var t=e.keyCode,n=40===t||38===t||37===t||39===t,r=13===t||32===t,i=this._keyManager;if(!i.isTyping()&&r&&!Jm(e)||(this.multiple||e.altKey)&&n)e.preventDefault(),this.open();else if(!this.multiple){var a=this.selected;36===t||35===t?(36===t?i.setFirstItemActive():i.setLastItemActive(),e.preventDefault()):i.onKeydown(e);var o=this.selected;o&&a!==o&&this._liveAnnouncer.announce(o.viewValue,1e4)}}},{key:\"_handleOpenKeydown\",value:function(e){var t=this._keyManager,n=e.keyCode,r=40===n||38===n,i=t.isTyping();if(36===n||35===n)e.preventDefault(),36===n?t.setFirstItemActive():t.setLastItemActive();else if(r&&e.altKey)e.preventDefault(),this.close();else if(i||13!==n&&32!==n||!t.activeItem||Jm(e))if(!i&&this._multiple&&65===n&&e.ctrlKey){e.preventDefault();var a=this.options.some((function(e){return!e.disabled&&!e.selected}));this.options.forEach((function(e){e.disabled||(a?e.select():e.deselect())}))}else{var o=t.activeItemIndex;t.onKeydown(e),this._multiple&&r&&e.shiftKey&&t.activeItem&&t.activeItemIndex!==o&&t.activeItem._selectViaInteraction()}else e.preventDefault(),t.activeItem._selectViaInteraction()}},{key:\"_onFocus\",value:function(){this.disabled||(this._focused=!0,this.stateChanges.next())}},{key:\"_onBlur\",value:function(){this._focused=!1,this.disabled||this.panelOpen||(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}},{key:\"_onAttached\",value:function(){var e=this;this.overlayDir.positionChange.pipe(cp(1)).subscribe((function(){e._changeDetectorRef.detectChanges(),e._calculateOverlayOffsetX(),e.panel.nativeElement.scrollTop=e._scrollTop}))}},{key:\"_getPanelTheme\",value:function(){return this._parentFormField?\"mat-\".concat(this._parentFormField.color):\"\"}},{key:\"_initializeSelection\",value:function(){var e=this;Promise.resolve().then((function(){e._setSelectionByValue(e.ngControl?e.ngControl.value:e._value),e.stateChanges.next()}))}},{key:\"_setSelectionByValue\",value:function(e){var t=this;if(this.multiple&&e){if(!Array.isArray(e))throw Error(\"Value must be an array in multiple-selection mode.\");this._selectionModel.clear(),e.forEach((function(e){return t._selectValue(e)})),this._sortValues()}else{this._selectionModel.clear();var n=this._selectValue(e);n?this._keyManager.setActiveItem(n):this.panelOpen||this._keyManager.setActiveItem(-1)}this._changeDetectorRef.markForCheck()}},{key:\"_selectValue\",value:function(e){var t=this,n=this.options.find((function(n){try{return null!=n.value&&t._compareWith(n.value,e)}catch(r){return Lr()&&console.warn(r),!1}}));return n&&this._selectionModel.select(n),n}},{key:\"_initKeyManager\",value:function(){var e=this;this._keyManager=new zp(this.options).withTypeAhead(this._typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?\"rtl\":\"ltr\").withAllowedModifierKeys([\"shiftKey\"]),this._keyManager.tabOut.pipe(Ek(this._destroy)).subscribe((function(){!e.multiple&&e._keyManager.activeItem&&e._keyManager.activeItem._selectViaInteraction(),e.focus(),e.close()})),this._keyManager.change.pipe(Ek(this._destroy)).subscribe((function(){e._panelOpen&&e.panel?e._scrollActiveOptionIntoView():e._panelOpen||e.multiple||!e._keyManager.activeItem||e._keyManager.activeItem._selectViaInteraction()}))}},{key:\"_resetOptions\",value:function(){var e=this,t=K(this.options.changes,this._destroy);this.optionSelectionChanges.pipe(Ek(t)).subscribe((function(t){e._onSelect(t.source,t.isUserInput),t.isUserInput&&!e.multiple&&e._panelOpen&&(e.close(),e.focus())})),K.apply(void 0,_toConsumableArray(this.options.map((function(e){return e._stateChanges})))).pipe(Ek(t)).subscribe((function(){e._changeDetectorRef.markForCheck(),e.stateChanges.next()})),this._setOptionIds()}},{key:\"_onSelect\",value:function(e,t){var n=this._selectionModel.isSelected(e);null!=e.value||this._multiple?(n!==e.selected&&(e.selected?this._selectionModel.select(e):this._selectionModel.deselect(e)),t&&this._keyManager.setActiveItem(e),this.multiple&&(this._sortValues(),t&&this.focus())):(e.deselect(),this._selectionModel.clear(),this._propagateChanges(e.value)),n!==this._selectionModel.isSelected(e)&&this._propagateChanges(),this.stateChanges.next()}},{key:\"_sortValues\",value:function(){var e=this;if(this.multiple){var t=this.options.toArray();this._selectionModel.sort((function(n,r){return e.sortComparator?e.sortComparator(n,r,t):t.indexOf(n)-t.indexOf(r)})),this.stateChanges.next()}}},{key:\"_propagateChanges\",value:function(e){var t;t=this.multiple?this.selected.map((function(e){return e.value})):this.selected?this.selected.value:e,this._value=t,this.valueChange.emit(t),this._onChange(t),this.selectionChange.emit(new US(this,t)),this._changeDetectorRef.markForCheck()}},{key:\"_setOptionIds\",value:function(){this._optionIds=this.options.map((function(e){return e.id})).join(\" \")}},{key:\"_highlightCorrectOption\",value:function(){this._keyManager&&(this.empty?this._keyManager.setFirstItemActive():this._keyManager.setActiveItem(this._selectionModel.selected[0]))}},{key:\"_scrollActiveOptionIntoView\",value:function(){var e,t,n,r,i=this._keyManager.activeItemIndex||0,a=yb(i,this.options,this.optionGroups);this.panel.nativeElement.scrollTop=(e=i+a,t=this._getItemHeight(),n=this.panel.nativeElement.scrollTop,(r=e*t)n+256?Math.max(0,r-256+t):n)}},{key:\"focus\",value:function(e){this._elementRef.nativeElement.focus(e)}},{key:\"_getOptionIndex\",value:function(e){return this.options.reduce((function(t,n,r){return void 0!==t?t:e===n?r:void 0}),void 0)}},{key:\"_calculateOverlayPosition\",value:function(){var e=this._getItemHeight(),t=this._getItemCount(),n=Math.min(t*e,256),r=t*e-n,i=this.empty?0:this._getOptionIndex(this._selectionModel.selected[0]);i+=yb(i,this.options,this.optionGroups);var a=n/2;this._scrollTop=this._calculateOverlayScroll(i,a,r),this._offsetY=this._calculateOverlayOffsetY(i,a,r),this._checkOverlayWithinViewport(r)}},{key:\"_calculateOverlayScroll\",value:function(e,t,n){var r=this._getItemHeight();return Math.min(Math.max(0,r*e-t+r/2),n)}},{key:\"_getAriaLabel\",value:function(){return this.ariaLabelledby?null:this.ariaLabel||this.placeholder}},{key:\"_getAriaLabelledby\",value:function(){return this.ariaLabelledby?this.ariaLabelledby:this._parentFormField&&this._parentFormField._hasFloatingLabel()&&!this._getAriaLabel()&&this._parentFormField._labelId||null}},{key:\"_getAriaActiveDescendant\",value:function(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}},{key:\"_calculateOverlayOffsetX\",value:function(){var e,t=this.overlayDir.overlayRef.overlayElement.getBoundingClientRect(),n=this._viewportRuler.getViewportSize(),r=this._isRtl(),i=this.multiple?56:32;if(this.multiple)e=40;else{var a=this._selectionModel.selected[0]||this.options.first;e=a&&a.group?32:16}r||(e*=-1);var o=0-(t.left+e-(r?i:0)),s=t.right+e-n.width+(r?0:i);o>0?e+=o+8:s>0&&(e-=s+8),this.overlayDir.offsetX=Math.round(e),this.overlayDir.overlayRef.updatePosition()}},{key:\"_calculateOverlayOffsetY\",value:function(e,t,n){var r,i=this._getItemHeight(),a=(i-this._triggerRect.height)/2,o=Math.floor(256/i);return this._disableOptionCentering?0:(r=0===this._scrollTop?e*i:this._scrollTop===n?(e-(this._getItemCount()-o))*i+(i-(this._getItemCount()*i-256)%i):t-i/2,Math.round(-1*r-a))}},{key:\"_checkOverlayWithinViewport\",value:function(e){var t=this._getItemHeight(),n=this._viewportRuler.getViewportSize(),r=this._triggerRect.top-8,i=n.height-this._triggerRect.bottom-8,a=Math.abs(this._offsetY),o=Math.min(this._getItemCount()*t,256)-a-this._triggerRect.height;o>i?this._adjustPanelUp(o,i):a>r?this._adjustPanelDown(a,r,e):this._transformOrigin=this._getOriginBasedOnOption()}},{key:\"_adjustPanelUp\",value:function(e,t){var n=Math.round(e-t);this._scrollTop-=n,this._offsetY-=n,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop<=0&&(this._scrollTop=0,this._offsetY=0,this._transformOrigin=\"50% bottom 0px\")}},{key:\"_adjustPanelDown\",value:function(e,t,n){var r=Math.round(e-t);if(this._scrollTop+=r,this._offsetY+=r,this._transformOrigin=this._getOriginBasedOnOption(),this._scrollTop>=n)return this._scrollTop=n,this._offsetY=0,void(this._transformOrigin=\"50% top 0px\")}},{key:\"_getOriginBasedOnOption\",value:function(){var e=this._getItemHeight(),t=(e-this._triggerRect.height)/2;return\"50% \".concat(Math.abs(this._offsetY)-t+e/2,\"px 0px\")}},{key:\"_getItemCount\",value:function(){return this.options.length+this.optionGroups.length}},{key:\"_getItemHeight\",value:function(){return 3*this._triggerFontSize}},{key:\"setDescribedByIds\",value:function(e){this._ariaDescribedby=e.join(\" \")}},{key:\"onContainerClick\",value:function(){this.focus(),this.open()}},{key:\"focused\",get:function(){return this._focused||this._panelOpen}},{key:\"placeholder\",get:function(){return this._placeholder},set:function(e){this._placeholder=e,this.stateChanges.next()}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=mp(e),this.stateChanges.next()}},{key:\"multiple\",get:function(){return this._multiple},set:function(e){if(this._selectionModel)throw Error(\"Cannot change `multiple` mode of select after initialization.\");this._multiple=mp(e)}},{key:\"disableOptionCentering\",get:function(){return this._disableOptionCentering},set:function(e){this._disableOptionCentering=mp(e)}},{key:\"compareWith\",get:function(){return this._compareWith},set:function(e){if(\"function\"!=typeof e)throw Error(\"`compareWith` must be a function.\");this._compareWith=e,this._selectionModel&&this._initializeSelection()}},{key:\"value\",get:function(){return this._value},set:function(e){e!==this._value&&(this.writeValue(e),this._value=e)}},{key:\"typeaheadDebounceInterval\",get:function(){return this._typeaheadDebounceInterval},set:function(e){this._typeaheadDebounceInterval=pp(e)}},{key:\"id\",get:function(){return this._id},set:function(e){this._id=e||this._uid,this.stateChanges.next()}},{key:\"panelOpen\",get:function(){return this._panelOpen}},{key:\"selected\",get:function(){return this.multiple?this._selectionModel.selected:this._selectionModel.selected[0]}},{key:\"triggerValue\",get:function(){if(this.empty)return\"\";if(this._multiple){var e=this._selectionModel.selected.map((function(e){return e.viewValue}));return this._isRtl()&&e.reverse(),e.join(\", \")}return this._selectionModel.selected[0].viewValue}},{key:\"empty\",get:function(){return!this._selectionModel||this._selectionModel.isEmpty()}},{key:\"shouldLabelFloat\",get:function(){return this._panelOpen||!this.empty}}]),n}(BS)).\\u0275fac=function(e){return new(e||PS)(Io(tw),Io(eo),Io(cc),Io(eb),Io(Qs),Io(h_,8),Io(pm,8),Io(Dm,8),Io(EM,8),Io(tf,10),Ao(\"tabindex\"),Io(zS),Io(Xp),Io(VS,8))},PS.\\u0275cmp=bt({type:PS,selectors:[[\"mat-select\"]],contentQueries:function(e,t,n){var r;1&e&&(Pu(n,qS,!0),Pu(n,gb,!0),Pu(n,fb,!0)),2&e&&(Yu(r=Hu())&&(t.customTrigger=r.first),Yu(r=Hu())&&(t.options=r),Yu(r=Hu())&&(t.optionGroups=r))},viewQuery:function(e,t){var n;1&e&&(Iu(TS,!0),Iu(xS,!0),Iu(Jw,!0)),2&e&&(Yu(n=Hu())&&(t.trigger=n.first),Yu(n=Hu())&&(t.panel=n.first),Yu(n=Hu())&&(t.overlayDir=n.first))},hostAttrs:[\"role\",\"listbox\",1,\"mat-select\"],hostVars:19,hostBindings:function(e,t){1&e&&qo(\"keydown\",(function(e){return t._handleKeydown(e)}))(\"focus\",(function(){return t._onFocus()}))(\"blur\",(function(){return t._onBlur()})),2&e&&(Do(\"id\",t.id)(\"tabindex\",t.tabIndex)(\"aria-label\",t._getAriaLabel())(\"aria-labelledby\",t._getAriaLabelledby())(\"aria-required\",t.required.toString())(\"aria-disabled\",t.disabled.toString())(\"aria-invalid\",t.errorState)(\"aria-owns\",t.panelOpen?t._optionIds:null)(\"aria-multiselectable\",t.multiple)(\"aria-describedby\",t._ariaDescribedby||null)(\"aria-activedescendant\",t._getAriaActiveDescendant()),fs(\"mat-select-disabled\",t.disabled)(\"mat-select-invalid\",t.errorState)(\"mat-select-required\",t.required)(\"mat-select-empty\",t.empty))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",tabIndex:\"tabIndex\",ariaLabel:[\"aria-label\",\"ariaLabel\"],id:\"id\",disableOptionCentering:\"disableOptionCentering\",typeaheadDebounceInterval:\"typeaheadDebounceInterval\",placeholder:\"placeholder\",required:\"required\",multiple:\"multiple\",compareWith:\"compareWith\",value:\"value\",panelClass:\"panelClass\",ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],errorStateMatcher:\"errorStateMatcher\",sortComparator:\"sortComparator\"},outputs:{openedChange:\"openedChange\",_openedStream:\"opened\",_closedStream:\"closed\",selectionChange:\"selectionChange\",valueChange:\"valueChange\"},exportAs:[\"matSelect\"],features:[$s([{provide:hM,useExisting:PS},{provide:vb,useExisting:PS}]),Es,Hs],ngContentSelectors:HS,decls:9,vars:9,consts:[[\"cdk-overlay-origin\",\"\",\"aria-hidden\",\"true\",1,\"mat-select-trigger\",3,\"click\"],[\"origin\",\"cdkOverlayOrigin\",\"trigger\",\"\"],[1,\"mat-select-value\",3,\"ngSwitch\"],[\"class\",\"mat-select-placeholder\",4,\"ngSwitchCase\"],[\"class\",\"mat-select-value-text\",3,\"ngSwitch\",4,\"ngSwitchCase\"],[1,\"mat-select-arrow-wrapper\"],[1,\"mat-select-arrow\"],[\"cdk-connected-overlay\",\"\",\"cdkConnectedOverlayLockPosition\",\"\",\"cdkConnectedOverlayHasBackdrop\",\"\",\"cdkConnectedOverlayBackdropClass\",\"cdk-overlay-transparent-backdrop\",3,\"cdkConnectedOverlayScrollStrategy\",\"cdkConnectedOverlayOrigin\",\"cdkConnectedOverlayOpen\",\"cdkConnectedOverlayPositions\",\"cdkConnectedOverlayMinWidth\",\"cdkConnectedOverlayOffsetY\",\"backdropClick\",\"attach\",\"detach\"],[1,\"mat-select-placeholder\"],[1,\"mat-select-value-text\",3,\"ngSwitch\"],[4,\"ngSwitchDefault\"],[4,\"ngSwitchCase\"],[1,\"mat-select-panel-wrap\"],[3,\"ngClass\",\"keydown\"],[\"panel\",\"\"]],template:function(e,t){if(1&e&&(Xo(RS),Ho(0,\"div\",0,1),qo(\"click\",(function(){return t.toggle()})),Ho(3,\"div\",2),Yo(4,DS,2,1,\"span\",3),Yo(5,ES,3,2,\"span\",4),Fo(),Ho(6,\"div\",5),No(7,\"div\",6),Fo(),Fo(),Yo(8,IS,4,10,\"ng-template\",7),qo(\"backdropClick\",(function(){return t.close()}))(\"attach\",(function(){return t._onAttached()}))(\"detach\",(function(){return t.close()}))),2&e){var n=Eo(1);bi(3),jo(\"ngSwitch\",t.empty),bi(1),jo(\"ngSwitchCase\",!0),bi(1),jo(\"ngSwitchCase\",!1),bi(3),jo(\"cdkConnectedOverlayScrollStrategy\",t._scrollStrategy)(\"cdkConnectedOverlayOrigin\",n)(\"cdkConnectedOverlayOpen\",t.panelOpen)(\"cdkConnectedOverlayPositions\",t._positions)(\"cdkConnectedOverlayMinWidth\",null==t._triggerRect?null:t._triggerRect.width)(\"cdkConnectedOverlayOffsetY\",t._offsetY)}},directives:[$w,Pd,jd,Jw,Rd,kd],styles:[\".mat-select{display:inline-block;width:100%;outline:none}.mat-select-trigger{display:inline-table;cursor:pointer;position:relative;box-sizing:border-box}.mat-select-disabled .mat-select-trigger{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.mat-select-value{display:table-cell;max-width:0;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-select-arrow-wrapper{display:table-cell;vertical-align:middle}.mat-form-field-appearance-fill .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-outline .mat-select-arrow-wrapper{transform:translateY(-25%)}.mat-form-field-appearance-standard.mat-form-field-has-label .mat-select:not(.mat-select-empty) .mat-select-arrow-wrapper{transform:translateY(-50%)}.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable.mat-form-field-appearance-standard .mat-select.mat-select-empty .mat-select-arrow-wrapper{transition:none}.mat-select-arrow{width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid;margin:0 4px}.mat-select-panel-wrap{flex-basis:100%}.mat-select-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;padding-top:0;padding-bottom:0;max-height:256px;min-width:100%;border-radius:4px}.cdk-high-contrast-active .mat-select-panel{outline:solid 1px}.mat-select-panel .mat-optgroup-label,.mat-select-panel .mat-option{font-size:inherit;line-height:3em;height:3em}.mat-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-form-field-flex{cursor:pointer}.mat-form-field-type-mat-select .mat-form-field-label{width:calc(100% - 18px)}.mat-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable .mat-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-select-placeholder{color:transparent;-webkit-text-fill-color:transparent;transition:none;display:block}\\n\"],encapsulation:2,data:{animation:[FS.transformPanelWrap,FS.transformPanel]},changeDetection:0}),PS),$S=((AS=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:AS}),AS.\\u0275inj=ve({factory:function(e){return new(e||AS)},providers:[WS],imports:[[Nd,Zw,Pb,zy],IM,Pb,zy]}),AS),JS=[\"*\"];function KS(e,t){if(1&e){var n=Wo();Ho(0,\"div\",2),qo(\"click\",(function(){return nn(n),Zo()._onBackdropClicked()})),Fo()}2&e&&fs(\"mat-drawer-shown\",Zo()._isShowingBackdrop())}function ZS(e,t){1&e&&(Ho(0,\"mat-drawer-content\"),ns(1,2),Fo())}var QS=[[[\"mat-drawer\"]],[[\"mat-drawer-content\"]],\"*\"],XS=[\"mat-drawer\",\"mat-drawer-content\",\"*\"];function eL(e,t){if(1&e){var n=Wo();Ho(0,\"div\",2),qo(\"click\",(function(){return nn(n),Zo()._onBackdropClicked()})),Fo()}2&e&&fs(\"mat-drawer-shown\",Zo()._isShowingBackdrop())}function tL(e,t){1&e&&(Ho(0,\"mat-sidenav-content\",3),ns(1,2),Fo())}var nL=[[[\"mat-sidenav\"]],[[\"mat-sidenav-content\"]],\"*\"],rL=[\"mat-sidenav\",\"mat-sidenav-content\",\"*\"],iL={transformDrawer:uv(\"transform\",[fv(\"open, open-instant\",hv({transform:\"none\",visibility:\"visible\"})),fv(\"void\",hv({\"box-shadow\":\"none\",visibility:\"hidden\"})),mv(\"void => open-instant\",cv(\"0ms\")),mv(\"void <=> open, open-instant => void\",cv(\"400ms cubic-bezier(0.25, 0.8, 0.25, 1)\"))])};function aL(e){throw Error(\"A drawer was already declared for 'position=\\\"\".concat(e,\"\\\"'\"))}var oL,sL,lL,uL,cL,dL,hL,fL,mL,pL,_L=new Be(\"MAT_DRAWER_DEFAULT_AUTOSIZE\",{providedIn:\"root\",factory:function(){return!1}}),vL=new Be(\"MAT_DRAWER_CONTAINER\"),gL=((cL=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this,i,a,o))._changeDetectorRef=e,s._container=r,s}return _createClass(n,[{key:\"ngAfterContentInit\",value:function(){var e=this;this._container._contentMarginChanges.subscribe((function(){e._changeDetectorRef.markForCheck()}))}}]),n}(ew)).\\u0275fac=function(e){return new(e||cL)(Io(eo),Io(De((function(){return bL}))),Io(Qs),Io(Xk),Io(cc))},cL.\\u0275cmp=bt({type:cL,selectors:[[\"mat-drawer-content\"]],hostAttrs:[1,\"mat-drawer-content\"],hostVars:4,hostBindings:function(e,t){2&e&&hs(\"margin-left\",t._container._contentMargins.left,\"px\")(\"margin-right\",t._container._contentMargins.right,\"px\")},features:[Es],ngContentSelectors:JS,decls:1,vars:0,template:function(e,t){1&e&&(Xo(),ns(0))},encapsulation:2,changeDetection:0}),cL),yL=((uL=function(){function e(t,n,r,i,a,o,s){var l=this;_classCallCheck(this,e),this._elementRef=t,this._focusTrapFactory=n,this._focusMonitor=r,this._platform=i,this._ngZone=a,this._doc=o,this._container=s,this._elementFocusedBeforeDrawerWasOpened=null,this._enableAnimations=!1,this._position=\"start\",this._mode=\"over\",this._disableClose=!1,this._opened=!1,this._animationStarted=new x,this._animationEnd=new x,this._animationState=\"void\",this.openedChange=new bu(!0),this._destroyed=new x,this.onPositionChanged=new bu,this._modeChanged=new x,this.openedChange.subscribe((function(e){e?(l._doc&&(l._elementFocusedBeforeDrawerWasOpened=l._doc.activeElement),l._takeFocus()):l._restoreFocus()})),this._ngZone.runOutsideAngular((function(){mk(l._elementRef.nativeElement,\"keydown\").pipe(Gd((function(e){return 27===e.keyCode&&!l.disableClose&&!Jm(e)})),Ek(l._destroyed)).subscribe((function(e){return l._ngZone.run((function(){l.close(),e.stopPropagation(),e.preventDefault()}))}))})),this._animationEnd.pipe(Ck((function(e,t){return e.fromState===t.fromState&&e.toState===t.toState}))).subscribe((function(e){var t=e.fromState,n=e.toState;(0===n.indexOf(\"open\")&&\"void\"===t||\"void\"===n&&0===t.indexOf(\"open\"))&&l.openedChange.emit(l._opened)}))}return _createClass(e,[{key:\"_takeFocus\",value:function(){var e=this;this.autoFocus&&this._focusTrap&&this._focusTrap.focusInitialElementWhenReady().then((function(t){t||\"function\"!=typeof e._elementRef.nativeElement.focus||e._elementRef.nativeElement.focus()}))}},{key:\"_restoreFocus\",value:function(){if(this.autoFocus){var e=this._doc&&this._doc.activeElement;e&&this._elementRef.nativeElement.contains(e)&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,this._openedVia):this._elementRef.nativeElement.blur()),this._elementFocusedBeforeDrawerWasOpened=null,this._openedVia=null}}},{key:\"ngAfterContentInit\",value:function(){this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState()}},{key:\"ngAfterContentChecked\",value:function(){this._platform.isBrowser&&(this._enableAnimations=!0)}},{key:\"ngOnDestroy\",value:function(){this._focusTrap&&this._focusTrap.destroy(),this._animationStarted.complete(),this._animationEnd.complete(),this._modeChanged.complete(),this._destroyed.next(),this._destroyed.complete()}},{key:\"open\",value:function(e){return this.toggle(!0,e)}},{key:\"close\",value:function(){return this.toggle(!1)}},{key:\"toggle\",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:!this.opened,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"program\";return this._opened=t,t?(this._animationState=this._enableAnimations?\"open\":\"open-instant\",this._openedVia=n):(this._animationState=\"void\",this._restoreFocus()),this._updateFocusTrapState(),new Promise((function(t){e.openedChange.pipe(cp(1)).subscribe((function(e){return t(e?\"open\":\"close\")}))}))}},{key:\"_updateFocusTrapState\",value:function(){this._focusTrap&&(this._focusTrap.enabled=this.opened&&\"side\"!==this.mode)}},{key:\"_animationStartListener\",value:function(e){this._animationStarted.next(e)}},{key:\"_animationDoneListener\",value:function(e){this._animationEnd.next(e)}},{key:\"position\",get:function(){return this._position},set:function(e){(e=\"end\"===e?\"end\":\"start\")!=this._position&&(this._position=e,this.onPositionChanged.emit())}},{key:\"mode\",get:function(){return this._mode},set:function(e){this._mode=e,this._updateFocusTrapState(),this._modeChanged.next()}},{key:\"disableClose\",get:function(){return this._disableClose},set:function(e){this._disableClose=mp(e)}},{key:\"autoFocus\",get:function(){var e=this._autoFocus;return null==e?\"side\"!==this.mode:e},set:function(e){this._autoFocus=mp(e)}},{key:\"opened\",get:function(){return this._opened},set:function(e){this.toggle(mp(e))}},{key:\"_openedStream\",get:function(){return this.openedChange.pipe(Gd((function(e){return e})),F((function(){})))}},{key:\"openedStart\",get:function(){return this._animationStarted.pipe(Gd((function(e){return e.fromState!==e.toState&&0===e.toState.indexOf(\"open\")})),F((function(){})))}},{key:\"_closedStream\",get:function(){return this.openedChange.pipe(Gd((function(e){return!e})),F((function(){})))}},{key:\"closedStart\",get:function(){return this._animationStarted.pipe(Gd((function(e){return e.fromState!==e.toState&&\"void\"===e.toState})),F((function(){})))}},{key:\"_width\",get:function(){return this._elementRef.nativeElement&&this._elementRef.nativeElement.offsetWidth||0}}]),e}()).\\u0275fac=function(e){return new(e||uL)(Io(Qs),Io(Kp),Io(t_),Io(Cp),Io(cc),Io(Wc,8),Io(vL,8))},uL.\\u0275cmp=bt({type:uL,selectors:[[\"mat-drawer\"]],hostAttrs:[\"tabIndex\",\"-1\",1,\"mat-drawer\"],hostVars:12,hostBindings:function(e,t){1&e&&Go(\"@transform.start\",(function(e){return t._animationStartListener(e)}))(\"@transform.done\",(function(e){return t._animationDoneListener(e)})),2&e&&(Do(\"align\",null),Os(\"@transform\",t._animationState),fs(\"mat-drawer-end\",\"end\"===t.position)(\"mat-drawer-over\",\"over\"===t.mode)(\"mat-drawer-push\",\"push\"===t.mode)(\"mat-drawer-side\",\"side\"===t.mode)(\"mat-drawer-opened\",t.opened))},inputs:{position:\"position\",mode:\"mode\",disableClose:\"disableClose\",autoFocus:\"autoFocus\",opened:\"opened\"},outputs:{openedChange:\"openedChange\",onPositionChanged:\"positionChanged\",_openedStream:\"opened\",openedStart:\"openedStart\",_closedStream:\"closed\",closedStart:\"closedStart\"},exportAs:[\"matDrawer\"],ngContentSelectors:JS,decls:2,vars:0,consts:[[1,\"mat-drawer-inner-container\"]],template:function(e,t){1&e&&(Xo(),Ho(0,\"div\",0),ns(1),Fo())},encapsulation:2,data:{animation:[iL.transformDrawer]},changeDetection:0}),uL),bL=((lL=function(){function e(t,n,r,i,a){var o=this,s=arguments.length>5&&void 0!==arguments[5]&&arguments[5],l=arguments.length>6?arguments[6]:void 0;_classCallCheck(this,e),this._dir=t,this._element=n,this._ngZone=r,this._changeDetectorRef=i,this._animationMode=l,this._drawers=new wu,this.backdropClick=new bu,this._destroyed=new x,this._doCheckSubject=new x,this._contentMargins={left:null,right:null},this._contentMarginChanges=new x,t&&t.change.pipe(Ek(this._destroyed)).subscribe((function(){o._validateDrawers(),o.updateContentMargins()})),a.change().pipe(Ek(this._destroyed)).subscribe((function(){return o.updateContentMargins()})),this._autosize=s}return _createClass(e,[{key:\"ngAfterContentInit\",value:function(){var e=this;this._allDrawers.changes.pipe(sv(this._allDrawers),Ek(this._destroyed)).subscribe((function(t){e._drawers.reset(t.filter((function(t){return!t._container||t._container===e}))),e._drawers.notifyOnChanges()})),this._drawers.changes.pipe(sv(null)).subscribe((function(){e._validateDrawers(),e._drawers.forEach((function(t){e._watchDrawerToggle(t),e._watchDrawerPosition(t),e._watchDrawerMode(t)})),(!e._drawers.length||e._isDrawerOpen(e._start)||e._isDrawerOpen(e._end))&&e.updateContentMargins(),e._changeDetectorRef.markForCheck()})),this._doCheckSubject.pipe(rp(10),Ek(this._destroyed)).subscribe((function(){return e.updateContentMargins()}))}},{key:\"ngOnDestroy\",value:function(){this._contentMarginChanges.complete(),this._doCheckSubject.complete(),this._drawers.destroy(),this._destroyed.next(),this._destroyed.complete()}},{key:\"open\",value:function(){this._drawers.forEach((function(e){return e.open()}))}},{key:\"close\",value:function(){this._drawers.forEach((function(e){return e.close()}))}},{key:\"updateContentMargins\",value:function(){var e=this,t=0,n=0;if(this._left&&this._left.opened)if(\"side\"==this._left.mode)t+=this._left._width;else if(\"push\"==this._left.mode){var r=this._left._width;t+=r,n-=r}if(this._right&&this._right.opened)if(\"side\"==this._right.mode)n+=this._right._width;else if(\"push\"==this._right.mode){var i=this._right._width;n+=i,t-=i}n=n||null,(t=t||null)===this._contentMargins.left&&n===this._contentMargins.right||(this._contentMargins={left:t,right:n},this._ngZone.run((function(){return e._contentMarginChanges.next(e._contentMargins)})))}},{key:\"ngDoCheck\",value:function(){var e=this;this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular((function(){return e._doCheckSubject.next()}))}},{key:\"_watchDrawerToggle\",value:function(e){var t=this;e._animationStarted.pipe(Gd((function(e){return e.fromState!==e.toState})),Ek(this._drawers.changes)).subscribe((function(e){\"open-instant\"!==e.toState&&\"NoopAnimations\"!==t._animationMode&&t._element.nativeElement.classList.add(\"mat-drawer-transition\"),t.updateContentMargins(),t._changeDetectorRef.markForCheck()})),\"side\"!==e.mode&&e.openedChange.pipe(Ek(this._drawers.changes)).subscribe((function(){return t._setContainerClass(e.opened)}))}},{key:\"_watchDrawerPosition\",value:function(e){var t=this;e&&e.onPositionChanged.pipe(Ek(this._drawers.changes)).subscribe((function(){t._ngZone.onMicrotaskEmpty.asObservable().pipe(cp(1)).subscribe((function(){t._validateDrawers()}))}))}},{key:\"_watchDrawerMode\",value:function(e){var t=this;e&&e._modeChanged.pipe(Ek(K(this._drawers.changes,this._destroyed))).subscribe((function(){t.updateContentMargins(),t._changeDetectorRef.markForCheck()}))}},{key:\"_setContainerClass\",value:function(e){var t=this._element.nativeElement.classList,n=\"mat-drawer-container-has-open\";e?t.add(n):t.remove(n)}},{key:\"_validateDrawers\",value:function(){var e=this;this._start=this._end=null,this._drawers.forEach((function(t){\"end\"==t.position?(null!=e._end&&aL(\"end\"),e._end=t):(null!=e._start&&aL(\"start\"),e._start=t)})),this._right=this._left=null,this._dir&&\"rtl\"===this._dir.value?(this._left=this._end,this._right=this._start):(this._left=this._start,this._right=this._end)}},{key:\"_isPushed\",value:function(){return this._isDrawerOpen(this._start)&&\"over\"!=this._start.mode||this._isDrawerOpen(this._end)&&\"over\"!=this._end.mode}},{key:\"_onBackdropClicked\",value:function(){this.backdropClick.emit(),this._closeModalDrawer()}},{key:\"_closeModalDrawer\",value:function(){var e=this;[this._start,this._end].filter((function(t){return t&&!t.disableClose&&e._canHaveBackdrop(t)})).forEach((function(e){return e.close()}))}},{key:\"_isShowingBackdrop\",value:function(){return this._isDrawerOpen(this._start)&&this._canHaveBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._canHaveBackdrop(this._end)}},{key:\"_canHaveBackdrop\",value:function(e){return\"side\"!==e.mode||!!this._backdropOverride}},{key:\"_isDrawerOpen\",value:function(e){return null!=e&&e.opened}},{key:\"start\",get:function(){return this._start}},{key:\"end\",get:function(){return this._end}},{key:\"autosize\",get:function(){return this._autosize},set:function(e){this._autosize=mp(e)}},{key:\"hasBackdrop\",get:function(){return null==this._backdropOverride?!this._start||\"side\"!==this._start.mode||!this._end||\"side\"!==this._end.mode:this._backdropOverride},set:function(e){this._backdropOverride=null==e?null:mp(e)}},{key:\"scrollable\",get:function(){return this._userContent||this._content}}]),e}()).\\u0275fac=function(e){return new(e||lL)(Io(h_,8),Io(Qs),Io(cc),Io(eo),Io(tw),Io(_L),Io(Yy,8))},lL.\\u0275cmp=bt({type:lL,selectors:[[\"mat-drawer-container\"]],contentQueries:function(e,t,n){var r;1&e&&(Pu(n,gL,!0),Pu(n,yL,!0)),2&e&&(Yu(r=Hu())&&(t._content=r.first),Yu(r=Hu())&&(t._allDrawers=r))},viewQuery:function(e,t){var n;1&e&&Iu(gL,!0),2&e&&Yu(n=Hu())&&(t._userContent=n.first)},hostAttrs:[1,\"mat-drawer-container\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"mat-drawer-container-explicit-backdrop\",t._backdropOverride)},inputs:{autosize:\"autosize\",hasBackdrop:\"hasBackdrop\"},outputs:{backdropClick:\"backdropClick\"},exportAs:[\"matDrawerContainer\"],features:[$s([{provide:vL,useExisting:lL}])],ngContentSelectors:XS,decls:4,vars:2,consts:[[\"class\",\"mat-drawer-backdrop\",3,\"mat-drawer-shown\",\"click\",4,\"ngIf\"],[4,\"ngIf\"],[1,\"mat-drawer-backdrop\",3,\"click\"]],template:function(e,t){1&e&&(Xo(QS),Yo(0,KS,1,2,\"div\",0),ns(1),ns(2,1),Yo(3,ZS,2,0,\"mat-drawer-content\",1)),2&e&&(jo(\"ngIf\",t.hasBackdrop),bi(3),jo(\"ngIf\",!t._content))},directives:[Sd,gL],styles:[\".mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\\n\"],encapsulation:2,changeDetection:0}),lL),kL=((sL=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){return _classCallCheck(this,n),t.call(this,e,r,i,a,o)}return n}(gL)).\\u0275fac=function(e){return new(e||sL)(Io(eo),Io(De((function(){return ML}))),Io(Qs),Io(Xk),Io(cc))},sL.\\u0275cmp=bt({type:sL,selectors:[[\"mat-sidenav-content\"]],hostAttrs:[1,\"mat-drawer-content\",\"mat-sidenav-content\"],hostVars:4,hostBindings:function(e,t){2&e&&hs(\"margin-left\",t._container._contentMargins.left,\"px\")(\"margin-right\",t._container._contentMargins.right,\"px\")},features:[Es],ngContentSelectors:JS,decls:1,vars:0,template:function(e,t){1&e&&(Xo(),ns(0))},encapsulation:2,changeDetection:0}),sL),wL=((oL=function(e){_inherits(n,e);var t=_createSuper(n);function n(){var e;return _classCallCheck(this,n),(e=t.apply(this,arguments))._fixedInViewport=!1,e._fixedTopGap=0,e._fixedBottomGap=0,e}return _createClass(n,[{key:\"fixedInViewport\",get:function(){return this._fixedInViewport},set:function(e){this._fixedInViewport=mp(e)}},{key:\"fixedTopGap\",get:function(){return this._fixedTopGap},set:function(e){this._fixedTopGap=pp(e)}},{key:\"fixedBottomGap\",get:function(){return this._fixedBottomGap},set:function(e){this._fixedBottomGap=pp(e)}}]),n}(yL)).\\u0275fac=function(e){return CL(e||oL)},oL.\\u0275cmp=bt({type:oL,selectors:[[\"mat-sidenav\"]],hostAttrs:[\"tabIndex\",\"-1\",1,\"mat-drawer\",\"mat-sidenav\"],hostVars:17,hostBindings:function(e,t){2&e&&(Do(\"align\",null),hs(\"top\",t.fixedInViewport?t.fixedTopGap:null,\"px\")(\"bottom\",t.fixedInViewport?t.fixedBottomGap:null,\"px\"),fs(\"mat-drawer-end\",\"end\"===t.position)(\"mat-drawer-over\",\"over\"===t.mode)(\"mat-drawer-push\",\"push\"===t.mode)(\"mat-drawer-side\",\"side\"===t.mode)(\"mat-drawer-opened\",t.opened)(\"mat-sidenav-fixed\",t.fixedInViewport))},inputs:{fixedInViewport:\"fixedInViewport\",fixedTopGap:\"fixedTopGap\",fixedBottomGap:\"fixedBottomGap\"},exportAs:[\"matSidenav\"],features:[Es],ngContentSelectors:JS,decls:2,vars:0,consts:[[1,\"mat-drawer-inner-container\"]],template:function(e,t){1&e&&(Xo(),Ho(0,\"div\",0),ns(1),Fo())},encapsulation:2,data:{animation:[iL.transformDrawer]},changeDetection:0}),oL),CL=cr(wL),ML=((dL=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return n}(bL)).\\u0275fac=function(e){return SL(e||dL)},dL.\\u0275cmp=bt({type:dL,selectors:[[\"mat-sidenav-container\"]],contentQueries:function(e,t,n){var r;1&e&&(Pu(n,kL,!0),Pu(n,wL,!0)),2&e&&(Yu(r=Hu())&&(t._content=r.first),Yu(r=Hu())&&(t._allDrawers=r))},hostAttrs:[1,\"mat-drawer-container\",\"mat-sidenav-container\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"mat-drawer-container-explicit-backdrop\",t._backdropOverride)},exportAs:[\"matSidenavContainer\"],features:[$s([{provide:vL,useExisting:dL}]),Es],ngContentSelectors:rL,decls:4,vars:2,consts:[[\"class\",\"mat-drawer-backdrop\",3,\"mat-drawer-shown\",\"click\",4,\"ngIf\"],[\"cdkScrollable\",\"\",4,\"ngIf\"],[1,\"mat-drawer-backdrop\",3,\"click\"],[\"cdkScrollable\",\"\"]],template:function(e,t){1&e&&(Xo(nL),Yo(0,eL,1,2,\"div\",0),ns(1),ns(2,1),Yo(3,tL,2,0,\"mat-sidenav-content\",1)),2&e&&(jo(\"ngIf\",t.hasBackdrop),bi(3),jo(\"ngIf\",!t._content))},directives:[Sd,kL,ew],styles:[\".mat-drawer-container{position:relative;z-index:1;box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer{transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}\\n\"],encapsulation:2,changeDetection:0}),dL),SL=cr(ML),LL=((hL=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:hL}),hL.\\u0275inj=ve({factory:function(e){return new(e||hL)},imports:[[Nd,zy,nw,Mp],zy]}),hL),TL=[\"thumbContainer\"],xL=[\"toggleBar\"],DL=[\"input\"],OL=function(){return{enterDuration:150}},YL=[\"*\"],EL=new Be(\"mat-slide-toggle-default-options\",{providedIn:\"root\",factory:function(){return{disableToggleValue:!1}}}),IL=0,AL={provide:Wh,useExisting:De((function(){return RL})),multi:!0},PL=function e(t,n){_classCallCheck(this,e),this.source=t,this.checked=n},jL=By(Wy(Uy(Vy((function e(t){_classCallCheck(this,e),this._elementRef=t}))),\"accent\")),RL=((pL=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o,s,l,u){var c;return _classCallCheck(this,n),(c=t.call(this,e))._focusMonitor=r,c._changeDetectorRef=i,c.defaults=s,c._animationMode=l,c._onChange=function(e){},c._onTouched=function(){},c._uniqueId=\"mat-slide-toggle-\".concat(++IL),c._required=!1,c._checked=!1,c.name=null,c.id=c._uniqueId,c.labelPosition=\"after\",c.ariaLabel=null,c.ariaLabelledby=null,c.change=new bu,c.toggleChange=new bu,c.dragChange=new bu,c.tabIndex=parseInt(a)||0,c}return _createClass(n,[{key:\"ngAfterContentInit\",value:function(){var e=this;this._focusMonitor.monitor(this._elementRef,!0).subscribe((function(t){\"keyboard\"===t||\"program\"===t?e._inputElement.nativeElement.focus():t||Promise.resolve().then((function(){return e._onTouched()}))}))}},{key:\"ngOnDestroy\",value:function(){this._focusMonitor.stopMonitoring(this._elementRef)}},{key:\"_onChangeEvent\",value:function(e){e.stopPropagation(),this.toggleChange.emit(),this.defaults.disableToggleValue?this._inputElement.nativeElement.checked=this.checked:(this.checked=this._inputElement.nativeElement.checked,this._emitChangeEvent())}},{key:\"_onInputClick\",value:function(e){e.stopPropagation()}},{key:\"writeValue\",value:function(e){this.checked=!!e}},{key:\"registerOnChange\",value:function(e){this._onChange=e}},{key:\"registerOnTouched\",value:function(e){this._onTouched=e}},{key:\"setDisabledState\",value:function(e){this.disabled=e,this._changeDetectorRef.markForCheck()}},{key:\"focus\",value:function(e){this._focusMonitor.focusVia(this._inputElement,\"keyboard\",e)}},{key:\"toggle\",value:function(){this.checked=!this.checked,this._onChange(this.checked)}},{key:\"_emitChangeEvent\",value:function(){this._onChange(this.checked),this.change.emit(new PL(this,this.checked))}},{key:\"_onLabelTextChange\",value:function(){this._changeDetectorRef.detectChanges()}},{key:\"required\",get:function(){return this._required},set:function(e){this._required=mp(e)}},{key:\"checked\",get:function(){return this._checked},set:function(e){this._checked=mp(e),this._changeDetectorRef.markForCheck()}},{key:\"inputId\",get:function(){return\"\".concat(this.id||this._uniqueId,\"-input\")}}]),n}(jL)).\\u0275fac=function(e){return new(e||pL)(Io(Qs),Io(t_),Io(eo),Ao(\"tabindex\"),Io(cc),Io(EL),Io(Yy,8),Io(h_,8))},pL.\\u0275cmp=bt({type:pL,selectors:[[\"mat-slide-toggle\"]],viewQuery:function(e,t){var n;1&e&&(Iu(TL,!0),Iu(xL,!0),Iu(DL,!0)),2&e&&(Yu(n=Hu())&&(t._thumbEl=n.first),Yu(n=Hu())&&(t._thumbBarEl=n.first),Yu(n=Hu())&&(t._inputElement=n.first))},hostAttrs:[1,\"mat-slide-toggle\"],hostVars:12,hostBindings:function(e,t){2&e&&(Ds(\"id\",t.id),Do(\"tabindex\",t.disabled?null:-1)(\"aria-label\",null)(\"aria-labelledby\",null),fs(\"mat-checked\",t.checked)(\"mat-disabled\",t.disabled)(\"mat-slide-toggle-label-before\",\"before\"==t.labelPosition)(\"_mat-animation-noopable\",\"NoopAnimations\"===t._animationMode))},inputs:{disabled:\"disabled\",disableRipple:\"disableRipple\",color:\"color\",tabIndex:\"tabIndex\",name:\"name\",id:\"id\",labelPosition:\"labelPosition\",ariaLabel:[\"aria-label\",\"ariaLabel\"],ariaLabelledby:[\"aria-labelledby\",\"ariaLabelledby\"],required:\"required\",checked:\"checked\"},outputs:{change:\"change\",toggleChange:\"toggleChange\",dragChange:\"dragChange\"},exportAs:[\"matSlideToggle\"],features:[$s([AL]),Es],ngContentSelectors:YL,decls:16,vars:18,consts:[[1,\"mat-slide-toggle-label\"],[\"label\",\"\"],[1,\"mat-slide-toggle-bar\"],[\"toggleBar\",\"\"],[\"type\",\"checkbox\",\"role\",\"switch\",1,\"mat-slide-toggle-input\",\"cdk-visually-hidden\",3,\"id\",\"required\",\"tabIndex\",\"checked\",\"disabled\",\"change\",\"click\"],[\"input\",\"\"],[1,\"mat-slide-toggle-thumb-container\"],[\"thumbContainer\",\"\"],[1,\"mat-slide-toggle-thumb\"],[\"mat-ripple\",\"\",1,\"mat-slide-toggle-ripple\",\"mat-focus-indicator\",3,\"matRippleTrigger\",\"matRippleDisabled\",\"matRippleCentered\",\"matRippleRadius\",\"matRippleAnimation\"],[1,\"mat-ripple-element\",\"mat-slide-toggle-persistent-ripple\"],[1,\"mat-slide-toggle-content\",3,\"cdkObserveContent\"],[\"labelContent\",\"\"],[2,\"display\",\"none\"]],template:function(e,t){if(1&e&&(Xo(),Ho(0,\"label\",0,1),Ho(2,\"div\",2,3),Ho(4,\"input\",4,5),qo(\"change\",(function(e){return t._onChangeEvent(e)}))(\"click\",(function(e){return t._onInputClick(e)})),Fo(),Ho(6,\"div\",6,7),No(8,\"div\",8),Ho(9,\"div\",9),No(10,\"div\",10),Fo(),Fo(),Fo(),Ho(11,\"span\",11,12),qo(\"cdkObserveContent\",(function(){return t._onLabelTextChange()})),Ho(13,\"span\",13),Ls(14,\"\\xa0\"),Fo(),ns(15),Fo(),Fo()),2&e){var n=Eo(1),r=Eo(12);Do(\"for\",t.inputId),bi(2),fs(\"mat-slide-toggle-bar-no-side-margin\",!r.textContent||!r.textContent.trim()),bi(2),jo(\"id\",t.inputId)(\"required\",t.required)(\"tabIndex\",t.tabIndex)(\"checked\",t.checked)(\"disabled\",t.disabled),Do(\"name\",t.name)(\"aria-checked\",t.checked.toString())(\"aria-label\",t.ariaLabel)(\"aria-labelledby\",t.ariaLabelledby),bi(5),jo(\"matRippleTrigger\",n)(\"matRippleDisabled\",t.disableRipple||t.disabled)(\"matRippleCentered\",!0)(\"matRippleRadius\",20)(\"matRippleAnimation\",yu(17,OL))}},directives:[sb,Hp],styles:[\".mat-slide-toggle{display:inline-block;height:24px;max-width:100%;line-height:24px;white-space:nowrap;outline:none;-webkit-tap-highlight-color:transparent}.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(16px, 0, 0)}[dir=rtl] .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container{transform:translate3d(-16px, 0, 0)}.mat-slide-toggle.mat-disabled{opacity:.38}.mat-slide-toggle.mat-disabled .mat-slide-toggle-label,.mat-slide-toggle.mat-disabled .mat-slide-toggle-thumb-container{cursor:default}.mat-slide-toggle-label{display:flex;flex:1;flex-direction:row;align-items:center;height:inherit;cursor:pointer}.mat-slide-toggle-content{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-slide-toggle-label-before .mat-slide-toggle-label{order:1}.mat-slide-toggle-label-before .mat-slide-toggle-bar{order:2}[dir=rtl] .mat-slide-toggle-label-before .mat-slide-toggle-bar,.mat-slide-toggle-bar{margin-right:8px;margin-left:0}[dir=rtl] .mat-slide-toggle-bar,.mat-slide-toggle-label-before .mat-slide-toggle-bar{margin-left:8px;margin-right:0}.mat-slide-toggle-bar-no-side-margin{margin-left:0;margin-right:0}.mat-slide-toggle-thumb-container{position:absolute;z-index:1;width:20px;height:20px;top:-3px;left:0;transform:translate3d(0, 0, 0);transition:all 80ms linear;transition-property:transform}._mat-animation-noopable .mat-slide-toggle-thumb-container{transition:none}[dir=rtl] .mat-slide-toggle-thumb-container{left:auto;right:0}.mat-slide-toggle-thumb{height:20px;width:20px;border-radius:50%}.mat-slide-toggle-bar{position:relative;width:36px;height:14px;flex-shrink:0;border-radius:8px}.mat-slide-toggle-input{bottom:0;left:10px}[dir=rtl] .mat-slide-toggle-input{left:auto;right:10px}.mat-slide-toggle-bar,.mat-slide-toggle-thumb{transition:all 80ms linear;transition-property:background-color;transition-delay:50ms}._mat-animation-noopable .mat-slide-toggle-bar,._mat-animation-noopable .mat-slide-toggle-thumb{transition:none}.mat-slide-toggle .mat-slide-toggle-ripple{position:absolute;top:calc(50% - 20px);left:calc(50% - 20px);height:40px;width:40px;z-index:1;pointer-events:none}.mat-slide-toggle .mat-slide-toggle-ripple .mat-ripple-element:not(.mat-slide-toggle-persistent-ripple){opacity:.12}.mat-slide-toggle-persistent-ripple{width:100%;height:100%;transform:none}.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:.04}.mat-slide-toggle:not(.mat-disabled).cdk-keyboard-focused .mat-slide-toggle-persistent-ripple{opacity:.12}.mat-slide-toggle-persistent-ripple,.mat-slide-toggle.mat-disabled .mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{opacity:0}@media(hover: none){.mat-slide-toggle-bar:hover .mat-slide-toggle-persistent-ripple{display:none}}.cdk-high-contrast-active .mat-slide-toggle-thumb,.cdk-high-contrast-active .mat-slide-toggle-bar{border:1px solid}.cdk-high-contrast-active .mat-slide-toggle.cdk-keyboard-focused .mat-slide-toggle-bar{outline:2px dotted;outline-offset:5px}\\n\"],encapsulation:2,changeDetection:0}),pL),HL=((mL=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:mL}),mL.\\u0275inj=ve({factory:function(e){return new(e||mL)}}),mL),FL=((fL=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:fL}),fL.\\u0275inj=ve({factory:function(e){return new(e||fL)},imports:[[HL,lb,zy,Fp],HL,zy]}),fL),NL={};function zL(){for(var e=arguments.length,t=new Array(e),n=0;n` elements explicitly or just place content inside of a `` for a single row.\")}()}}]),n}(ZL)).\\u0275fac=function(e){return new(e||UL)(Io(Qs),Io(Cp),Io(Wc))},UL.\\u0275cmp=bt({type:UL,selectors:[[\"mat-toolbar\"]],contentQueries:function(e,t,n){var r;1&e&&Pu(n,QL,!0),2&e&&Yu(r=Hu())&&(t._toolbarRows=r)},hostAttrs:[1,\"mat-toolbar\"],hostVars:4,hostBindings:function(e,t){2&e&&fs(\"mat-toolbar-multiple-rows\",t._toolbarRows.length>0)(\"mat-toolbar-single-row\",0===t._toolbarRows.length)},inputs:{color:\"color\"},exportAs:[\"matToolbar\"],features:[Es],ngContentSelectors:KL,decls:2,vars:0,template:function(e,t){1&e&&(Xo(JL),ns(0),ns(1,1))},styles:[\".cdk-high-contrast-active .mat-toolbar{outline:solid 1px}.mat-toolbar-row,.mat-toolbar-single-row{display:flex;box-sizing:border-box;padding:0 16px;width:100%;flex-direction:row;align-items:center;white-space:nowrap}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}\\n\"],encapsulation:2,changeDetection:0}),UL),eT=((WL=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:WL}),WL.\\u0275inj=ve({factory:function(e){return new(e||WL)},imports:[[zy],zy]}),WL),tT=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this))._value=e,r}return _createClass(n,[{key:\"_subscribe\",value:function(e){var t=_get(_getPrototypeOf(n.prototype),\"_subscribe\",this).call(this,e);return t&&!t.closed&&e.next(this._value),t}},{key:\"getValue\",value:function(){if(this.hasError)throw this.thrownError;if(this.closed)throw new S;return this._value}},{key:\"next\",value:function(e){_get(_getPrototypeOf(n.prototype),\"next\",this).call(this,this._value=e)}},{key:\"value\",get:function(){return this.getValue()}}]),n}(x),nT=new w(g);function rT(){return nT}function iT(){for(var e=arguments.length,t=new Array(e),n=0;n0){var o=a.indexOf(n);-1!==o&&a.splice(o,1)}}},{key:\"notifyComplete\",value:function(){}},{key:\"_next\",value:function(e){if(0===this.toRespond.length){var t=[e].concat(_toConsumableArray(this.values));this.project?this._tryProject(t):this.destination.next(t)}}},{key:\"_tryProject\",value:function(e){var t;try{t=this.project.apply(this,e)}catch(n){return void this.destination.error(n)}this.destination.next(t)}}]),n}(H),sT=[\"aria-label\",$localize(_templateObject())];function lT(e,t){if(1&e){var n=Wo();Ho(0,\"button\",1),iu(1,sT),qo(\"click\",(function(){return nn(n),Zo().closeHandler()})),Ho(2,\"span\",2),Ls(3,\"\\xd7\"),Fo(),Fo()}}var uT,cT,dT=[\"*\"];function hT(e,t){if(1&e){var n=Wo();Ho(0,\"li\",7),qo(\"click\",(function(){nn(n);var e=t.$implicit,r=Zo(2);return r.select(e.id,r.NgbSlideEventSource.INDICATOR)})),Fo()}if(2&e){var r=t.$implicit,i=Zo(2);fs(\"active\",r.id===i.activeId),jo(\"id\",r.id)}}function fT(e,t){if(1&e&&(Ho(0,\"ol\",5),Yo(1,hT,1,3,\"li\",6),Fo()),2&e){var n=Zo();bi(1),jo(\"ngForOf\",n.slides)}}function mT(e,t){}function pT(e,t){if(1&e&&(Ho(0,\"div\",8),Yo(1,mT,0,0,\"ng-template\",9),Fo()),2&e){var n=t.$implicit,r=Zo();fs(\"active\",n.id===r.activeId),bi(1),jo(\"ngTemplateOutlet\",n.tplRef)}}function _T(e,t){if(1&e){var n=Wo();Ho(0,\"a\",10),qo(\"click\",(function(){nn(n);var e=Zo();return e.prev(e.NgbSlideEventSource.ARROW_LEFT)})),No(1,\"span\",11),Ho(2,\"span\",12),ru(3,uT),Fo(),Fo()}}function vT(e,t){if(1&e){var n=Wo();Ho(0,\"a\",13),qo(\"click\",(function(){nn(n);var e=Zo();return e.next(e.NgbSlideEventSource.ARROW_RIGHT)})),No(1,\"span\",14),Ho(2,\"span\",12),ru(3,cT),Fo(),Fo()}}function gT(e){return null!=e}uT=$localize(_templateObject2()),cT=$localize(_templateObject3()),$localize(_templateObject4()),$localize(_templateObject5()),$localize(_templateObject6()),$localize(_templateObject7()),$localize(_templateObject8()),$localize(_templateObject9()),$localize(_templateObject10()),$localize(_templateObject11()),$localize(_templateObject12()),$localize(_templateObject13()),$localize(_templateObject14()),$localize(_templateObject15()),$localize(_templateObject16()),$localize(_templateObject17()),$localize(_templateObject18()),$localize(_templateObject19()),$localize(_templateObject20(),\"\\ufffd0\\ufffd\"),$localize(_templateObject21()),$localize(_templateObject22()),$localize(_templateObject23()),$localize(_templateObject24()),$localize(_templateObject25()),$localize(_templateObject26()),$localize(_templateObject27()),$localize(_templateObject28()),$localize(_templateObject29()),$localize(_templateObject30()),$localize(_templateObject31()),$localize(_templateObject32()),$localize(_templateObject33(),\"\\ufffd0\\ufffd\"),$localize(_templateObject34(),\"\\ufffd0\\ufffd\"),$localize(_templateObject35()),\"undefined\"==typeof Element||Element.prototype.closest||(Element.prototype.matches||(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector),Element.prototype.closest=function(e){var t=this;if(!document.documentElement.contains(t))return null;do{if(t.matches(e))return t;t=t.parentElement||t.parentNode}while(null!==t&&1===t.nodeType);return null});var yT,bT,kT,wT,CT,MT,ST,LT,TT,xT,DT,OT=((LT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:LT}),LT.\\u0275inj=ve({factory:function(e){return new(e||LT)},imports:[[Nd]]}),LT),YT=((ST=function e(){_classCallCheck(this,e),this.dismissible=!0,this.type=\"warning\"}).\\u0275prov=_e({token:ST,factory:ST.\\u0275fac=function(e){return new(e||ST)},providedIn:\"root\"}),ST.ngInjectableDef=_e({factory:function(){return new ST},token:ST,providedIn:\"root\"}),ST),ET=((MT=function(){function e(t,n,r){_classCallCheck(this,e),this._renderer=n,this._element=r,this.close=new bu,this.dismissible=t.dismissible,this.type=t.type}return _createClass(e,[{key:\"closeHandler\",value:function(){this.close.emit(null)}},{key:\"ngOnChanges\",value:function(e){var t=e.type;t&&!t.firstChange&&(this._renderer.removeClass(this._element.nativeElement,\"alert-\".concat(t.previousValue)),this._renderer.addClass(this._element.nativeElement,\"alert-\".concat(t.currentValue)))}},{key:\"ngOnInit\",value:function(){this._renderer.addClass(this._element.nativeElement,\"alert-\".concat(this.type))}}]),e}()).\\u0275fac=function(e){return new(e||MT)(Io(YT),Io(nl),Io(Qs))},MT.\\u0275cmp=bt({type:MT,selectors:[[\"ngb-alert\"]],hostAttrs:[\"role\",\"alert\",1,\"alert\"],hostVars:2,hostBindings:function(e,t){2&e&&fs(\"alert-dismissible\",t.dismissible)},inputs:{dismissible:\"dismissible\",type:\"type\"},outputs:{close:\"close\"},features:[Hs],ngContentSelectors:dT,decls:2,vars:1,consts:[[\"type\",\"button\",\"class\",\"close\",\"aria-label\",\"Close\",3,\"click\",4,\"ngIf\"],[\"type\",\"button\",1,\"close\",3,\"click\",6,\"aria-label\"],[\"aria-hidden\",\"true\"]],template:function(e,t){1&e&&(Xo(),ns(0),Yo(1,lT,4,0,\"button\",0)),2&e&&(bi(1),jo(\"ngIf\",t.dismissible))},directives:[Sd],styles:[\"ngb-alert{display:block}\"],encapsulation:2,changeDetection:0}),MT),IT=((CT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:CT}),CT.\\u0275inj=ve({factory:function(e){return new(e||CT)},imports:[[Nd]]}),CT),AT=((wT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:wT}),wT.\\u0275inj=ve({factory:function(e){return new(e||wT)}}),wT),PT=((kT=function e(){_classCallCheck(this,e),this.interval=5e3,this.wrap=!0,this.keyboard=!0,this.pauseOnHover=!0,this.showNavigationArrows=!0,this.showNavigationIndicators=!0}).\\u0275prov=_e({token:kT,factory:kT.\\u0275fac=function(e){return new(e||kT)},providedIn:\"root\"}),kT.ngInjectableDef=_e({factory:function(){return new kT},token:kT,providedIn:\"root\"}),kT),jT=0,RT=((bT=function e(t){_classCallCheck(this,e),this.tplRef=t,this.id=\"ngb-slide-\".concat(jT++)}).\\u0275fac=function(e){return new(e||bT)(Io(wl))},bT.\\u0275dir=Lt({type:bT,selectors:[[\"ng-template\",\"ngbSlide\",\"\"]],inputs:{id:\"id\"}}),bT),HT=((yT=function(){function e(t,n,r,i){_classCallCheck(this,e),this._platformId=n,this._ngZone=r,this._cd=i,this.NgbSlideEventSource=NT,this._destroy$=new x,this._interval$=new tT(0),this._mouseHover$=new tT(!1),this._pauseOnHover$=new tT(!1),this._pause$=new tT(!1),this._wrap$=new tT(!1),this.slide=new bu,this.interval=t.interval,this.wrap=t.wrap,this.keyboard=t.keyboard,this.pauseOnHover=t.pauseOnHover,this.showNavigationArrows=t.showNavigationArrows,this.showNavigationIndicators=t.showNavigationIndicators}return _createClass(e,[{key:\"mouseEnter\",value:function(){this._mouseHover$.next(!0)}},{key:\"mouseLeave\",value:function(){this._mouseHover$.next(!1)}},{key:\"ngAfterContentInit\",value:function(){var e=this;zd(this._platformId)&&this._ngZone.runOutsideAngular((function(){var t=zL(e.slide.pipe(F((function(e){return e.current})),sv(e.activeId)),e._wrap$,e.slides.changes.pipe(sv(null))).pipe(F((function(t){var n=_slicedToArray(t,2),r=n[0],i=n[1],a=e.slides.toArray(),o=e._getSlideIdxById(r);return i?a.length>1:o0?Dk(e,e):nT})),Ek(e._destroy$)).subscribe((function(){return e._ngZone.run((function(){return e.next(NT.TIMER)}))}))})),this.slides.changes.pipe(Ek(this._destroy$)).subscribe((function(){return e._cd.markForCheck()}))}},{key:\"ngAfterContentChecked\",value:function(){var e=this._getSlideById(this.activeId);this.activeId=e?e.id:this.slides.length?this.slides.first.id:null}},{key:\"ngOnDestroy\",value:function(){this._destroy$.next()}},{key:\"select\",value:function(e,t){this._cycleToSelected(e,this._getSlideEventDirection(this.activeId,e),t)}},{key:\"prev\",value:function(e){this._cycleToSelected(this._getPrevSlide(this.activeId),FT.RIGHT,e)}},{key:\"next\",value:function(e){this._cycleToSelected(this._getNextSlide(this.activeId),FT.LEFT,e)}},{key:\"pause\",value:function(){this._pause$.next(!0)}},{key:\"cycle\",value:function(){this._pause$.next(!1)}},{key:\"_cycleToSelected\",value:function(e,t,n){var r=this._getSlideById(e);r&&r.id!==this.activeId&&(this.slide.emit({prev:this.activeId,current:r.id,direction:t,paused:this._pause$.value,source:n}),this.activeId=r.id),this._cd.markForCheck()}},{key:\"_getSlideEventDirection\",value:function(e,t){return this._getSlideIdxById(e)>this._getSlideIdxById(t)?FT.RIGHT:FT.LEFT}},{key:\"_getSlideById\",value:function(e){return this.slides.find((function(t){return t.id===e}))}},{key:\"_getSlideIdxById\",value:function(e){return this.slides.toArray().indexOf(this._getSlideById(e))}},{key:\"_getNextSlide\",value:function(e){var t=this.slides.toArray(),n=this._getSlideIdxById(e);return n===t.length-1?this.wrap?t[0].id:t[t.length-1].id:t[n+1].id}},{key:\"_getPrevSlide\",value:function(e){var t=this.slides.toArray(),n=this._getSlideIdxById(e);return 0===n?this.wrap?t[t.length-1].id:t[0].id:t[n-1].id}},{key:\"interval\",set:function(e){this._interval$.next(e)},get:function(){return this._interval$.value}},{key:\"wrap\",set:function(e){this._wrap$.next(e)},get:function(){return this._wrap$.value}},{key:\"pauseOnHover\",set:function(e){this._pauseOnHover$.next(e)},get:function(){return this._pauseOnHover$.value}}]),e}()).\\u0275fac=function(e){return new(e||yT)(Io(PT),Io($u),Io(cc),Io(eo))},yT.\\u0275cmp=bt({type:yT,selectors:[[\"ngb-carousel\"]],contentQueries:function(e,t,n){var r;1&e&&Pu(n,RT,!1),2&e&&Yu(r=Hu())&&(t.slides=r)},hostAttrs:[\"tabIndex\",\"0\",1,\"carousel\",\"slide\"],hostVars:2,hostBindings:function(e,t){1&e&&qo(\"keydown.arrowLeft\",(function(){return t.keyboard&&t.prev(t.NgbSlideEventSource.ARROW_LEFT)}))(\"keydown.arrowRight\",(function(){return t.keyboard&&t.next(t.NgbSlideEventSource.ARROW_RIGHT)}))(\"mouseenter\",(function(){return t.mouseEnter()}))(\"mouseleave\",(function(){return t.mouseLeave()})),2&e&&hs(\"display\",\"block\")},inputs:{interval:\"interval\",wrap:\"wrap\",keyboard:\"keyboard\",pauseOnHover:\"pauseOnHover\",showNavigationArrows:\"showNavigationArrows\",showNavigationIndicators:\"showNavigationIndicators\",activeId:\"activeId\"},outputs:{slide:\"slide\"},exportAs:[\"ngbCarousel\"],decls:5,vars:4,consts:[[\"class\",\"carousel-indicators\",4,\"ngIf\"],[1,\"carousel-inner\"],[\"class\",\"carousel-item\",3,\"active\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"carousel-control-prev\",\"role\",\"button\",3,\"click\",4,\"ngIf\"],[\"class\",\"carousel-control-next\",\"role\",\"button\",3,\"click\",4,\"ngIf\"],[1,\"carousel-indicators\"],[3,\"id\",\"active\",\"click\",4,\"ngFor\",\"ngForOf\"],[3,\"id\",\"click\"],[1,\"carousel-item\"],[3,\"ngTemplateOutlet\"],[\"role\",\"button\",1,\"carousel-control-prev\",3,\"click\"],[\"aria-hidden\",\"true\",1,\"carousel-control-prev-icon\"],[1,\"sr-only\"],[\"role\",\"button\",1,\"carousel-control-next\",3,\"click\"],[\"aria-hidden\",\"true\",1,\"carousel-control-next-icon\"]],template:function(e,t){1&e&&(Yo(0,fT,2,1,\"ol\",0),Ho(1,\"div\",1),Yo(2,pT,2,3,\"div\",2),Fo(),Yo(3,_T,4,0,\"a\",3),Yo(4,vT,4,0,\"a\",4)),2&e&&(jo(\"ngIf\",t.showNavigationIndicators),bi(2),jo(\"ngForOf\",t.slides),bi(1),jo(\"ngIf\",t.showNavigationArrows),bi(1),jo(\"ngIf\",t.showNavigationArrows))},directives:[Sd,Cd,Fd],encapsulation:2,changeDetection:0}),yT),FT={LEFT:\"left\",RIGHT:\"right\"},NT={TIMER:\"timer\",ARROW_LEFT:\"arrowLeft\",ARROW_RIGHT:\"arrowRight\",INDICATOR:\"indicator\"},zT=((DT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:DT}),DT.\\u0275inj=ve({factory:function(e){return new(e||DT)},imports:[[Nd]]}),DT),VT=((xT=function e(){_classCallCheck(this,e),this.collapsed=!1}).\\u0275fac=function(e){return new(e||xT)},xT.\\u0275dir=Lt({type:xT,selectors:[[\"\",\"ngbCollapse\",\"\"]],hostVars:4,hostBindings:function(e,t){2&e&&fs(\"collapse\",!0)(\"show\",!t.collapsed)},inputs:{collapsed:[\"ngbCollapse\",\"collapsed\"]},exportAs:[\"ngbCollapse\"]}),xT),WT=((TT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:TT}),TT.\\u0275inj=ve({factory:function(e){return new(e||TT)}}),TT),UT=function(){var e={Tab:9,Enter:13,Escape:27,Space:32,PageUp:33,PageDown:34,End:35,Home:36,ArrowLeft:37,ArrowUp:38,ArrowRight:39,ArrowDown:40};return e[e.Tab]=\"Tab\",e[e.Enter]=\"Enter\",e[e.Escape]=\"Escape\",e[e.Space]=\"Space\",e[e.PageUp]=\"PageUp\",e[e.PageDown]=\"PageDown\",e[e.End]=\"End\",e[e.Home]=\"Home\",e[e.ArrowLeft]=\"ArrowLeft\",e[e.ArrowUp]=\"ArrowUp\",e[e.ArrowRight]=\"ArrowRight\",e[e.ArrowDown]=\"ArrowDown\",e}();\"undefined\"!=typeof navigator&&navigator.userAgent&&navigator;var BT=[\"a[href]\",\"button:not([disabled])\",'input:not([disabled]):not([type=\"hidden\"])',\"select:not([disabled])\",\"textarea:not([disabled])\",\"[contenteditable]\",'[tabindex]:not([tabindex=\"-1\"])'].join(\", \");function qT(e){var t=Array.from(e.querySelectorAll(BT)).filter((function(e){return-1!==e.tabIndex}));return[t[0],t[t.length-1]]}var GT,$T,JT,KT,ZT,QT,XT,ex,tx,nx,rx,ix,ax,ox,sx,lx,ux,cx,dx,hx=((JT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:JT}),JT.\\u0275inj=ve({factory:function(e){return new(e||JT)},imports:[[Nd,Gm]]}),JT),fx=(($T=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:$T}),$T.\\u0275inj=ve({factory:function(e){return new(e||$T)}}),$T),mx=((GT=function e(){_classCallCheck(this,e),this.backdrop=!0,this.keyboard=!0}).\\u0275prov=_e({token:GT,factory:GT.\\u0275fac=function(e){return new(e||GT)},providedIn:\"root\"}),GT.ngInjectableDef=_e({factory:function(){return new GT},token:GT,providedIn:\"root\"}),GT),px=function e(t,n,r){_classCallCheck(this,e),this.nodes=t,this.viewRef=n,this.componentRef=r},_x=function(){},vx=((ZT=function(){function e(t){_classCallCheck(this,e),this._document=t}return _createClass(e,[{key:\"compensate\",value:function(){return this._isPresent()?this._adjustBody(this._getWidth()):_x}},{key:\"_adjustBody\",value:function(e){var t=this._document.body,n=t.style.paddingRight,r=parseFloat(window.getComputedStyle(t)[\"padding-right\"]);return t.style[\"padding-right\"]=\"\".concat(r+e,\"px\"),function(){return t.style[\"padding-right\"]=n}}},{key:\"_isPresent\",value:function(){var e=this._document.body.getBoundingClientRect();return e.left+e.right3&&void 0!==arguments[3]&&arguments[3];s._ngZone.runOutsideAngular((function(){var e=mk(t,\"focusin\").pipe(Ek(n),F((function(e){return e.target})));mk(t,\"keydown\").pipe(Ek(n),Gd((function(e){return e.which===UT.Tab})),iT(e)).subscribe((function(e){var n=_slicedToArray(e,2),r=n[0],i=n[1],a=_slicedToArray(qT(t),2),o=a[0],s=a[1];i!==o&&i!==t||!r.shiftKey||(s.focus(),r.preventDefault()),i!==s||r.shiftKey||(o.focus(),r.preventDefault())})),r&&mk(t,\"click\").pipe(Ek(n),iT(e),F((function(e){return e[1]}))).subscribe((function(e){return e.focus()}))}))})(0,e.location.nativeElement,s._activeWindowCmptHasChanged),s._revertAriaHidden(),s._setAriaHidden(e.location.nativeElement)}}))}return _createClass(e,[{key:\"open\",value:function(e,t,n,r){var i=this,a=gT(r.container)?this._document.querySelector(r.container):this._document.body,o=this._rendererFactory.createRenderer(null,null),s=this._scrollBar.compensate(),l=function(){i._modalRefs.length||(o.removeClass(i._document.body,\"modal-open\"),i._revertAriaHidden())};if(!a)throw new Error('The specified modal container \"'.concat(r.container||\"body\",'\" was not found in the DOM.'));var u=new yx,c=this._getContentRef(e,r.injector||t,n,u,r),d=!1!==r.backdrop?this._attachBackdrop(e,a):null,h=this._attachWindowComponent(e,a,c),f=new bx(h,c,d,r.beforeDismiss);return this._registerModalRef(f),this._registerWindowCmpt(h),f.result.then(s,s),f.result.then(l,l),u.close=function(e){f.close(e)},u.dismiss=function(e){f.dismiss(e)},this._applyWindowOptions(h.instance,r),1===this._modalRefs.length&&o.addClass(this._document.body,\"modal-open\"),d&&d.instance&&this._applyBackdropOptions(d.instance,r),f}},{key:\"dismissAll\",value:function(e){this._modalRefs.forEach((function(t){return t.dismiss(e)}))}},{key:\"hasOpenModals\",value:function(){return this._modalRefs.length>0}},{key:\"_attachBackdrop\",value:function(e,t){var n=e.resolveComponentFactory(gx).create(this._injector);return this._applicationRef.attachView(n.hostView),t.appendChild(n.location.nativeElement),n}},{key:\"_attachWindowComponent\",value:function(e,t,n){var r=e.resolveComponentFactory(wx).create(this._injector,n.nodes);return this._applicationRef.attachView(r.hostView),t.appendChild(r.location.nativeElement),r}},{key:\"_applyWindowOptions\",value:function(e,t){this._windowAttributes.forEach((function(n){gT(t[n])&&(e[n]=t[n])}))}},{key:\"_applyBackdropOptions\",value:function(e,t){this._backdropAttributes.forEach((function(n){gT(t[n])&&(e[n]=t[n])}))}},{key:\"_getContentRef\",value:function(e,t,n,r,i){return n?n instanceof wl?this._createFromTemplateRef(n,r):\"string\"==typeof n?this._createFromString(n):this._createFromComponent(e,t,n,r,i):new px([])}},{key:\"_createFromTemplateRef\",value:function(e,t){var n=e.createEmbeddedView({$implicit:t,close:function(e){t.close(e)},dismiss:function(e){t.dismiss(e)}});return this._applicationRef.attachView(n),new px([n.rootNodes],n)}},{key:\"_createFromString\",value:function(e){var t=this._document.createTextNode(\"\".concat(e));return new px([[t]])}},{key:\"_createFromComponent\",value:function(e,t,n,r,i){var a=e.resolveComponentFactory(n),o=vo.create({providers:[{provide:yx,useValue:r}],parent:t}),s=a.create(o),l=s.location.nativeElement;return i.scrollable&&l.classList.add(\"component-host-scrollable\"),this._applicationRef.attachView(s.hostView),new px([[l]],s.hostView,s)}},{key:\"_setAriaHidden\",value:function(e){var t=this,n=e.parentElement;n&&e!==this._document.body&&(Array.from(n.children).forEach((function(n){n!==e&&\"SCRIPT\"!==n.nodeName&&(t._ariaHiddenValues.set(n,n.getAttribute(\"aria-hidden\")),n.setAttribute(\"aria-hidden\",\"true\"))})),this._setAriaHidden(n))}},{key:\"_revertAriaHidden\",value:function(){this._ariaHiddenValues.forEach((function(e,t){e?t.setAttribute(\"aria-hidden\",e):t.removeAttribute(\"aria-hidden\")})),this._ariaHiddenValues.clear()}},{key:\"_registerModalRef\",value:function(e){var t=this,n=function(){var n=t._modalRefs.indexOf(e);n>-1&&t._modalRefs.splice(n,1)};this._modalRefs.push(e),e.result.then(n,n)}},{key:\"_registerWindowCmpt\",value:function(e){var t=this;this._windowCmpts.push(e),this._activeWindowCmptHasChanged.next(),e.onDestroy((function(){var n=t._windowCmpts.indexOf(e);n>-1&&(t._windowCmpts.splice(n,1),t._activeWindowCmptHasChanged.next())}))}}]),e}()).\\u0275fac=function(e){return new(e||ux)(et(Oc),et(vo),et(Wc),et(vx),et(el),et(cc))},ux.\\u0275prov=_e({token:ux,factory:ux.\\u0275fac,providedIn:\"root\"}),ux.ngInjectableDef=_e({factory:function(){return new ux(et(Oc),et(qe),et(Wc),et(vx),et(el),et(cc))},token:ux,providedIn:\"root\"}),ux),Mx=((lx=function(){function e(t,n,r,i){_classCallCheck(this,e),this._moduleCFR=t,this._injector=n,this._modalStack=r,this._config=i}return _createClass(e,[{key:\"open\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=Object.assign({},this._config,t);return this._modalStack.open(this._moduleCFR,this._injector,e,n)}},{key:\"dismissAll\",value:function(e){this._modalStack.dismissAll(e)}},{key:\"hasOpenModals\",value:function(){return this._modalStack.hasOpenModals()}}]),e}()).\\u0275fac=function(e){return new(e||lx)(et(Zs),et(vo),et(Cx),et(mx))},lx.\\u0275prov=_e({token:lx,factory:lx.\\u0275fac,providedIn:\"root\"}),lx.ngInjectableDef=_e({factory:function(){return new lx(et(Zs),et(qe),et(Cx),et(mx))},token:lx,providedIn:\"root\"}),lx),Sx=((sx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:sx}),sx.\\u0275inj=ve({factory:function(e){return new(e||sx)},providers:[Mx]}),sx),Lx=((ox=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:ox}),ox.\\u0275inj=ve({factory:function(e){return new(e||ox)},imports:[[Nd]]}),ox),Tx=((ax=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:ax}),ax.\\u0275inj=ve({factory:function(e){return new(e||ax)},imports:[[Nd]]}),ax),xx=((ix=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:ix}),ix.\\u0275inj=ve({factory:function(e){return new(e||ix)},imports:[[Nd]]}),ix),Dx=((rx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:rx}),rx.\\u0275inj=ve({factory:function(e){return new(e||rx)},imports:[[Nd]]}),rx),Ox=((nx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:nx}),nx.\\u0275inj=ve({factory:function(e){return new(e||nx)},imports:[[Nd]]}),nx),Yx=((tx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:tx}),tx.\\u0275inj=ve({factory:function(e){return new(e||tx)},imports:[[Nd]]}),tx),Ex=((ex=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:ex}),ex.\\u0275inj=ve({factory:function(e){return new(e||ex)},imports:[[Nd]]}),ex),Ix=((XT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:XT}),XT.\\u0275inj=ve({factory:function(e){return new(e||XT)}}),XT),Ax=((QT=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:QT}),QT.\\u0275inj=ve({factory:function(e){return new(e||QT)},imports:[[Nd]]}),QT),Px=[OT,IT,AT,zT,WT,hx,fx,Sx,Lx,Tx,xx,Dx,Ox,Yx,Ex,Ix,Ax],jx=((dx=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:dx}),dx.\\u0275inj=ve({factory:function(e){return new(e||dx)},imports:[Px,OT,IT,AT,zT,WT,hx,fx,Sx,Lx,Tx,xx,Dx,Ox,Yx,Ex,Ix,Ax]}),dx),Rx=n(\"aCrv\"),Hx=[\"header\"],Fx=[\"container\"],Nx=[\"content\"],zx=[\"invisiblePadding\"],Vx=[\"*\"];function Wx(){return{scrollThrottlingTime:0,scrollDebounceTime:0,scrollAnimationTime:750,checkResizeInterval:1e3,resizeBypassRefreshThreshold:5,modifyOverflowStyleOfParentScroll:!0,stripedTable:!1}}var Ux,Bx,qx,Gx=((Bx=function(){function e(t,n,r,i,a,o){_classCallCheck(this,e),this.element=t,this.renderer=n,this.zone=r,this.changeDetectorRef=i,this.window=window,this.executeRefreshOutsideAngularZone=!1,this._enableUnequalChildrenSizes=!1,this.useMarginInsteadOfTranslate=!1,this.ssrViewportWidth=1920,this.ssrViewportHeight=1080,this._bufferAmount=0,this._items=[],this.compareItems=function(e,t){return e===t},this.vsUpdate=new bu,this.vsChange=new bu,this.vsStart=new bu,this.vsEnd=new bu,this.calculatedScrollbarWidth=0,this.calculatedScrollbarHeight=0,this.padding=0,this.previousViewPort={},this.cachedPageSize=0,this.previousScrollNumberElements=0,this.isAngularUniversalSSR=function(e){return\"server\"===e}(a),this.scrollThrottlingTime=o.scrollThrottlingTime,this.scrollDebounceTime=o.scrollDebounceTime,this.scrollAnimationTime=o.scrollAnimationTime,this.scrollbarWidth=o.scrollbarWidth,this.scrollbarHeight=o.scrollbarHeight,this.checkResizeInterval=o.checkResizeInterval,this.resizeBypassRefreshThreshold=o.resizeBypassRefreshThreshold,this.modifyOverflowStyleOfParentScroll=o.modifyOverflowStyleOfParentScroll,this.stripedTable=o.stripedTable,this.horizontal=!1,this.resetWrapGroupDimensions()}return _createClass(e,[{key:\"updateOnScrollFunction\",value:function(){var e=this;this.onScroll=this.scrollDebounceTime?this.debounce((function(){e.refresh_internal(!1)}),this.scrollDebounceTime):this.scrollThrottlingTime?this.throttleTrailing((function(){e.refresh_internal(!1)}),this.scrollThrottlingTime):function(){e.refresh_internal(!1)}}},{key:\"revertParentOverscroll\",value:function(){var e=this.getScrollElement();e&&this.oldParentScrollOverflow&&(e.style[\"overflow-y\"]=this.oldParentScrollOverflow.y,e.style[\"overflow-x\"]=this.oldParentScrollOverflow.x),this.oldParentScrollOverflow=void 0}},{key:\"ngOnInit\",value:function(){this.addScrollEventHandlers()}},{key:\"ngOnDestroy\",value:function(){this.removeScrollEventHandlers(),this.revertParentOverscroll()}},{key:\"ngOnChanges\",value:function(e){var t=this.cachedItemsLength!==this.items.length;this.cachedItemsLength=this.items.length,this.refresh_internal(t||!e.items||!e.items.previousValue||0===e.items.previousValue.length)}},{key:\"ngDoCheck\",value:function(){if(this.cachedItemsLength!==this.items.length)return this.cachedItemsLength=this.items.length,void this.refresh_internal(!0);if(this.previousViewPort&&this.viewPortItems&&this.viewPortItems.length>0){for(var e=!1,t=0;t=0&&this.invalidateCachedMeasurementAtIndex(t)}else this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0;this.refresh_internal(!1)}},{key:\"invalidateCachedMeasurementAtIndex\",value:function(e){if(this.enableUnequalChildrenSizes){var t=this.wrapGroupDimensions.maxChildSizePerWrapGroup[e];t&&(this.wrapGroupDimensions.maxChildSizePerWrapGroup[e]=void 0,--this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes,this.wrapGroupDimensions.sumOfKnownWrapGroupChildWidths-=t.childWidth||0,this.wrapGroupDimensions.sumOfKnownWrapGroupChildHeights-=t.childHeight||0)}else this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0;this.refresh_internal(!1)}},{key:\"scrollInto\",value:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=arguments.length>3?arguments[3]:void 0,i=arguments.length>4?arguments[4]:void 0,a=this.items.indexOf(e);-1!==a&&this.scrollToIndex(a,t,n,r,i)}},{key:\"scrollToIndex\",value:function(e){var t=this,n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,i=arguments.length>3?arguments[3]:void 0,a=arguments.length>4?arguments[4]:void 0,o=5,s=function i(){if(--o<=0)a&&a();else{var s=t.calculateDimensions(),l=Math.min(Math.max(e,0),s.itemCount-1);t.previousViewPort.startIndex!==l?t.scrollToIndex_internal(e,n,r,0,i):a&&a()}};this.scrollToIndex_internal(e,n,r,i,s)}},{key:\"scrollToIndex_internal\",value:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=arguments.length>3?arguments[3]:void 0,i=arguments.length>4?arguments[4]:void 0;r=void 0===r?this.scrollAnimationTime:r;var a=this.calculateDimensions(),o=this.calculatePadding(e,a)+n;t||(o-=a.wrapGroupsPerPage*a[this._childScrollDim]),this.scrollToPosition(o,r,i)}},{key:\"scrollToPosition\",value:function(e,t,n){var r=this;e+=this.getElementsOffset(),t=void 0===t?this.scrollAnimationTime:t;var i,a=this.getScrollElement();if(this.currentTween&&(this.currentTween.stop(),this.currentTween=void 0),!t)return this.renderer.setProperty(a,this._scrollType,e),void this.refresh_internal(!1,n);var o={scrollPosition:a[this._scrollType]},s=new Rx.Tween(o).to({scrollPosition:e},t).easing(Rx.Easing.Quadratic.Out).onUpdate((function(e){isNaN(e.scrollPosition)||(r.renderer.setProperty(a,r._scrollType,e.scrollPosition),r.refresh_internal(!1))})).onStop((function(){cancelAnimationFrame(i)})).start();(function t(a){s.isPlaying()&&(s.update(a),o.scrollPosition!==e?r.zone.runOutsideAngular((function(){i=requestAnimationFrame(t)})):r.refresh_internal(!1,n))})(),this.currentTween=s}},{key:\"getElementSize\",value:function(e){var t=e.getBoundingClientRect(),n=getComputedStyle(e),r=parseInt(n[\"margin-top\"],10)||0,i=parseInt(n[\"margin-bottom\"],10)||0,a=parseInt(n[\"margin-left\"],10)||0,o=parseInt(n[\"margin-right\"],10)||0;return{top:t.top+r,bottom:t.bottom+i,left:t.left+a,right:t.right+o,width:t.width+a+o,height:t.height+r+i}}},{key:\"checkScrollElementResized\",value:function(){var e,t=this.getElementSize(this.getScrollElement());if(this.previousScrollBoundingRect){var n=Math.abs(t.width-this.previousScrollBoundingRect.width),r=Math.abs(t.height-this.previousScrollBoundingRect.height);e=n>this.resizeBypassRefreshThreshold||r>this.resizeBypassRefreshThreshold}else e=!0;e&&(this.previousScrollBoundingRect=t,t.width>0&&t.height>0&&this.refresh_internal(!1))}},{key:\"updateDirection\",value:function(){this.horizontal?(this._invisiblePaddingProperty=\"width\",this._offsetType=\"offsetLeft\",this._pageOffsetType=\"pageXOffset\",this._childScrollDim=\"childWidth\",this._marginDir=\"margin-left\",this._translateDir=\"translateX\",this._scrollType=\"scrollLeft\"):(this._invisiblePaddingProperty=\"height\",this._offsetType=\"offsetTop\",this._pageOffsetType=\"pageYOffset\",this._childScrollDim=\"childHeight\",this._marginDir=\"margin-top\",this._translateDir=\"translateY\",this._scrollType=\"scrollTop\")}},{key:\"debounce\",value:function(e,t){var n=this.throttleTrailing(e,t),r=function(){n.cancel(),n.apply(this,arguments)};return r.cancel=function(){n.cancel()},r}},{key:\"throttleTrailing\",value:function(e,t){var n=void 0,r=arguments,i=function(){var i=this;r=arguments,n||(t<=0?e.apply(i,r):n=setTimeout((function(){n=void 0,e.apply(i,r)}),t))};return i.cancel=function(){n&&(clearTimeout(n),n=void 0)},i}},{key:\"refresh_internal\",value:function(e,t){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:2;if(e&&this.previousViewPort&&this.previousViewPort.scrollStartPosition>0){var i=this.previousViewPort,a=this.viewPortItems,o=t;t=function(){var e=n.previousViewPort.scrollLength-i.scrollLength;if(e>0&&n.viewPortItems){var t=a[0],r=n.items.findIndex((function(e){return n.compareItems(t,e)}));if(r>n.previousViewPort.startIndexWithBuffer){for(var s=!1,l=1;l=0&&i.endIndexWithBuffer>=0?n.items.slice(i.startIndexWithBuffer,i.endIndexWithBuffer+1):[],n.vsUpdate.emit(n.viewPortItems),a&&n.vsStart.emit(f),o&&n.vsEnd.emit(f),(a||o)&&(n.changeDetectorRef.markForCheck(),n.vsChange.emit(f)),r>0?n.refresh_internal(!1,t,r-1):t&&t()};n.executeRefreshOutsideAngularZone?m():n.zone.run(m)}else{if(r>0&&(s||l))return void n.refresh_internal(!1,t,r-1);t&&t()}}))}))}},{key:\"getScrollElement\",value:function(){return this.parentScroll instanceof Window?document.scrollingElement||document.documentElement||document.body:this.parentScroll||this.element.nativeElement}},{key:\"addScrollEventHandlers\",value:function(){var e=this;if(!this.isAngularUniversalSSR){var t=this.getScrollElement();this.removeScrollEventHandlers(),this.zone.runOutsideAngular((function(){e.parentScroll instanceof Window?(e.disposeScrollHandler=e.renderer.listen(\"window\",\"scroll\",e.onScroll),e.disposeResizeHandler=e.renderer.listen(\"window\",\"resize\",e.onScroll)):(e.disposeScrollHandler=e.renderer.listen(t,\"scroll\",e.onScroll),e._checkResizeInterval>0&&(e.checkScrollElementResizedTimer=setInterval((function(){e.checkScrollElementResized()}),e._checkResizeInterval)))}))}}},{key:\"removeScrollEventHandlers\",value:function(){this.checkScrollElementResizedTimer&&clearInterval(this.checkScrollElementResizedTimer),this.disposeScrollHandler&&(this.disposeScrollHandler(),this.disposeScrollHandler=void 0),this.disposeResizeHandler&&(this.disposeResizeHandler(),this.disposeResizeHandler=void 0)}},{key:\"getElementsOffset\",value:function(){if(this.isAngularUniversalSSR)return 0;var e=0;if(this.containerElementRef&&this.containerElementRef.nativeElement&&(e+=this.containerElementRef.nativeElement[this._offsetType]),this.parentScroll){var t=this.getScrollElement(),n=this.getElementSize(this.element.nativeElement),r=this.getElementSize(t);e+=this.horizontal?n.left-r.left:n.top-r.top,this.parentScroll instanceof Window||(e+=t[this._scrollType])}return e}},{key:\"countItemsPerWrapGroup\",value:function(){if(this.isAngularUniversalSSR)return Math.round(this.horizontal?this.ssrViewportHeight/this.ssrChildHeight:this.ssrViewportWidth/this.ssrChildWidth);var e=this.horizontal?\"offsetLeft\":\"offsetTop\",t=(this.containerElementRef&&this.containerElementRef.nativeElement||this.contentElementRef.nativeElement).children,n=t?t.length:0;if(0===n)return 1;for(var r=t[0][e],i=1;i0){var w=Math.min(c,k);k-=w,c-=w}p+=k,k>0&&i>=p&&++t}else{var C=Math.min(m,Math.max(a-_,0));if(c>0){var M=Math.min(c,C);C-=M,c-=M}_+=C,C>0&&a>=_&&++t}++h,f=0,m=0}}var S=this.wrapGroupDimensions.sumOfKnownWrapGroupChildWidths/this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes,L=this.wrapGroupDimensions.sumOfKnownWrapGroupChildHeights/this.wrapGroupDimensions.numberOfKnownWrapGroupChildSizes;n=this.childWidth||S||i,r=this.childHeight||L||a,this.horizontal?i>p&&(t+=Math.ceil((i-p)/n)):a>_&&(t+=Math.ceil((a-_)/r))}else{if(o.children.length>0){this.childWidth&&this.childHeight||(!this.minMeasuredChildWidth&&i>0&&(this.minMeasuredChildWidth=i),!this.minMeasuredChildHeight&&a>0&&(this.minMeasuredChildHeight=a));var T=this.getElementSize(o.children[0]);this.minMeasuredChildWidth=Math.min(this.minMeasuredChildWidth,T.width),this.minMeasuredChildHeight=Math.min(this.minMeasuredChildHeight,T.height)}n=this.childWidth||this.minMeasuredChildWidth||i,r=this.childHeight||this.minMeasuredChildHeight||a;var x=Math.max(Math.ceil(i/n),1),D=Math.max(Math.ceil(a/r),1);t=this.horizontal?x:D}var O=this.items.length,Y=s*t,E=O/Y,I=Math.ceil(O/s),A=0,P=this.horizontal?n:r;if(this.enableUnequalChildrenSizes){for(var j=0,R=0;R0&&(d+=t.itemsPerWrapGroup-h),isNaN(u)&&(u=0),isNaN(d)&&(d=0),u=Math.min(Math.max(u,0),t.itemCount-1),d=Math.min(Math.max(d,0),t.itemCount-1);var f=this.bufferAmount*t.itemsPerWrapGroup;return{startIndex:u,endIndex:d,startIndexWithBuffer:Math.min(Math.max(u-f,0),t.itemCount-1),endIndexWithBuffer:Math.min(Math.max(d+f,0),t.itemCount-1),scrollStartPosition:e,scrollEndPosition:e+t.viewportLength,maxScrollPosition:t.maxScrollPosition}}},{key:\"calculateViewport\",value:function(){var e=this.calculateDimensions(),t=this.getElementsOffset(),n=this.getScrollStartPosition();n>e.scrollLength+t&&!(this.parentScroll instanceof Window)?n=e.scrollLength:n-=t,n=Math.max(0,n);var r=this.calculatePageInfo(n,e),i=this.calculatePadding(r.startIndexWithBuffer,e),a=e.scrollLength;return{startIndex:r.startIndex,endIndex:r.endIndex,startIndexWithBuffer:r.startIndexWithBuffer,endIndexWithBuffer:r.endIndexWithBuffer,padding:Math.round(i),scrollLength:Math.round(a),scrollStartPosition:r.scrollStartPosition,scrollEndPosition:r.scrollEndPosition,maxScrollPosition:r.maxScrollPosition}}},{key:\"viewPortInfo\",get:function(){var e=this.previousViewPort||{};return{startIndex:e.startIndex||0,endIndex:e.endIndex||0,scrollStartPosition:e.scrollStartPosition||0,scrollEndPosition:e.scrollEndPosition||0,maxScrollPosition:e.maxScrollPosition||0,startIndexWithBuffer:e.startIndexWithBuffer||0,endIndexWithBuffer:e.endIndexWithBuffer||0}}},{key:\"enableUnequalChildrenSizes\",get:function(){return this._enableUnequalChildrenSizes},set:function(e){this._enableUnequalChildrenSizes!==e&&(this._enableUnequalChildrenSizes=e,this.minMeasuredChildWidth=void 0,this.minMeasuredChildHeight=void 0)}},{key:\"bufferAmount\",get:function(){return\"number\"==typeof this._bufferAmount&&this._bufferAmount>=0?this._bufferAmount:this.enableUnequalChildrenSizes?5:0},set:function(e){this._bufferAmount=e}},{key:\"scrollThrottlingTime\",get:function(){return this._scrollThrottlingTime},set:function(e){this._scrollThrottlingTime=e,this.updateOnScrollFunction()}},{key:\"scrollDebounceTime\",get:function(){return this._scrollDebounceTime},set:function(e){this._scrollDebounceTime=e,this.updateOnScrollFunction()}},{key:\"checkResizeInterval\",get:function(){return this._checkResizeInterval},set:function(e){this._checkResizeInterval!==e&&(this._checkResizeInterval=e,this.addScrollEventHandlers())}},{key:\"items\",get:function(){return this._items},set:function(e){e!==this._items&&(this._items=e||[],this.refresh_internal(!0))}},{key:\"horizontal\",get:function(){return this._horizontal},set:function(e){this._horizontal=e,this.updateDirection()}},{key:\"parentScroll\",get:function(){return this._parentScroll},set:function(e){if(this._parentScroll!==e){this.revertParentOverscroll(),this._parentScroll=e,this.addScrollEventHandlers();var t=this.getScrollElement();this.modifyOverflowStyleOfParentScroll&&t!==this.element.nativeElement&&(this.oldParentScrollOverflow={x:t.style[\"overflow-x\"],y:t.style[\"overflow-y\"]},t.style[\"overflow-y\"]=this.horizontal?\"visible\":\"auto\",t.style[\"overflow-x\"]=this.horizontal?\"auto\":\"visible\")}}}]),e}()).\\u0275fac=function(e){return new(e||Bx)(Io(Qs),Io(nl),Io(cc),Io(eo),Io($u),Io(\"virtual-scroller-default-options\",8))},Bx.\\u0275cmp=bt({type:Bx,selectors:[[\"virtual-scroller\"],[\"\",\"virtualScroller\",\"\"]],contentQueries:function(e,t,n){var r;1&e&&(Pu(n,Hx,!0,Qs),Pu(n,Fx,!0,Qs)),2&e&&(Yu(r=Hu())&&(t.headerElementRef=r.first),Yu(r=Hu())&&(t.containerElementRef=r.first))},viewQuery:function(e,t){var n;1&e&&(Iu(Nx,!0,Qs),Iu(zx,!0,Qs)),2&e&&(Yu(n=Hu())&&(t.contentElementRef=n.first),Yu(n=Hu())&&(t.invisiblePaddingElementRef=n.first))},hostVars:6,hostBindings:function(e,t){2&e&&fs(\"horizontal\",t.horizontal)(\"vertical\",!t.horizontal)(\"selfScroll\",!t.parentScroll)},inputs:{executeRefreshOutsideAngularZone:\"executeRefreshOutsideAngularZone\",useMarginInsteadOfTranslate:\"useMarginInsteadOfTranslate\",ssrViewportWidth:\"ssrViewportWidth\",ssrViewportHeight:\"ssrViewportHeight\",compareItems:\"compareItems\",scrollThrottlingTime:\"scrollThrottlingTime\",scrollDebounceTime:\"scrollDebounceTime\",scrollAnimationTime:\"scrollAnimationTime\",scrollbarWidth:\"scrollbarWidth\",scrollbarHeight:\"scrollbarHeight\",checkResizeInterval:\"checkResizeInterval\",resizeBypassRefreshThreshold:\"resizeBypassRefreshThreshold\",modifyOverflowStyleOfParentScroll:\"modifyOverflowStyleOfParentScroll\",stripedTable:\"stripedTable\",horizontal:\"horizontal\",enableUnequalChildrenSizes:\"enableUnequalChildrenSizes\",bufferAmount:\"bufferAmount\",items:\"items\",parentScroll:\"parentScroll\",childWidth:\"childWidth\",childHeight:\"childHeight\",ssrChildWidth:\"ssrChildWidth\",ssrChildHeight:\"ssrChildHeight\"},outputs:{vsUpdate:\"vsUpdate\",vsChange:\"vsChange\",vsStart:\"vsStart\",vsEnd:\"vsEnd\"},exportAs:[\"virtualScroller\"],features:[Hs],ngContentSelectors:Vx,decls:5,vars:0,consts:[[1,\"total-padding\"],[\"invisiblePadding\",\"\"],[1,\"scrollable-content\"],[\"content\",\"\"]],template:function(e,t){1&e&&(Xo(),No(0,\"div\",0,1),Ho(2,\"div\",2,3),ns(4),Fo())},styles:[\"[_nghost-%COMP%] {\\n position: relative;\\n\\t display: block;\\n -webkit-overflow-scrolling: touch;\\n }\\n\\t\\n\\t.horizontal.selfScroll[_nghost-%COMP%] {\\n overflow-y: visible;\\n overflow-x: auto;\\n\\t}\\n\\t.vertical.selfScroll[_nghost-%COMP%] {\\n overflow-y: auto;\\n overflow-x: visible;\\n\\t}\\n\\t\\n .scrollable-content[_ngcontent-%COMP%] {\\n top: 0;\\n left: 0;\\n width: 100%;\\n height: 100%;\\n max-width: 100vw;\\n max-height: 100vh;\\n position: absolute;\\n }\\n\\n\\t.scrollable-content[_ngcontent-%COMP%] > * {\\n\\t\\tbox-sizing: border-box;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] {\\n\\t\\twhite-space: nowrap;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] .scrollable-content[_ngcontent-%COMP%] {\\n\\t\\tdisplay: flex;\\n\\t}\\n\\t\\n\\t.horizontal[_nghost-%COMP%] .scrollable-content[_ngcontent-%COMP%] > * {\\n\\t\\tflex-shrink: 0;\\n\\t\\tflex-grow: 0;\\n\\t\\twhite-space: initial;\\n\\t}\\n\\t\\n .total-padding[_ngcontent-%COMP%] {\\n width: 1px;\\n opacity: 0;\\n }\\n \\n .horizontal[_nghost-%COMP%] .total-padding[_ngcontent-%COMP%] {\\n height: 100%;\\n }\"]}),Bx),$x=((Ux=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:Ux}),Ux.\\u0275inj=ve({factory:function(e){return new(e||Ux)},providers:[{provide:\"virtual-scroller-default-options\",useFactory:Wx}],imports:[[Nd]]}),Ux),Jx={on:function(){},off:function(){}},Kx=((qx=function(e){_inherits(n,e);var t=_createSuper(n);function n(e){var r;return _classCallCheck(this,n),(r=t.call(this)).hammerOptions=e,r.events=[\"longpress\",\"slide\",\"slidestart\",\"slideend\",\"slideright\",\"slideleft\"],r}return _createClass(n,[{key:\"buildHammer\",value:function(e){var t=\"undefined\"!=typeof window?window.Hammer:null;if(!t)return Jx;var n=new t(e,this.hammerOptions||void 0),r=new t.Pan,i=new t.Swipe,a=new t.Press,o=this._createRecognizer(r,{event:\"slide\",threshold:0},i),s=this._createRecognizer(a,{event:\"longpress\",time:500});return r.recognizeWith(i),s.recognizeWith(o),n.add([i,a,r,o,s]),n}},{key:\"_createRecognizer\",value:function(e,t){for(var n=new e.constructor(t),r=arguments.length,i=new Array(r>2?r-2:0),a=2;a0)for(var n=this.count>=this.total?this.total:this.count,r=this.ring,i=0;i0&&void 0!==arguments[0]?arguments[0]:iD;return function(t){return t.lift(new nD(e))}}var nD=function(){function e(t){_classCallCheck(this,e),this.errorFactory=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new rD(e,this.errorFactory))}}]),e}(),rD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).errorFactory=r,i.hasValue=!1,i}return _createClass(n,[{key:\"_next\",value:function(e){this.hasValue=!0,this.destination.next(e)}},{key:\"_complete\",value:function(){if(this.hasValue)return this.destination.complete();var e;try{e=this.errorFactory()}catch(t){e=t}this.destination.error(e)}}]),n}(p);function iD(){return new Zx}function aD(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return function(t){return t.lift(new oD(e))}}var oD=function(){function e(t){_classCallCheck(this,e),this.defaultValue=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new sD(e,this.defaultValue))}}]),e}(),sD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).defaultValue=r,i.isEmpty=!0,i}return _createClass(n,[{key:\"_next\",value:function(e){this.isEmpty=!1,this.destination.next(e)}},{key:\"_complete\",value:function(){this.isEmpty&&this.destination.next(this.defaultValue),this.destination.complete()}}]),n}(p);function lD(e,t){var n=arguments.length>=2;return function(r){return r.pipe(e?Gd((function(t,n){return e(t,n,r)})):G,Qx(1),n?aD(t):tD((function(){return new Zx})))}}function uD(e,t){var n=arguments.length>=2;return function(r){return r.pipe(e?Gd((function(t,n){return e(t,n,r)})):G,cp(1),n?aD(t):tD((function(){return new Zx})))}}var cD=function(){function e(t,n,r){_classCallCheck(this,e),this.predicate=t,this.thisArg=n,this.source=r}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new dD(e,this.predicate,this.thisArg,this.source))}}]),e}(),dD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e)).predicate=r,o.thisArg=i,o.source=a,o.index=0,o.thisArg=i||_assertThisInitialized(o),o}return _createClass(n,[{key:\"notifyComplete\",value:function(e){this.destination.next(e),this.destination.complete()}},{key:\"_next\",value:function(e){var t=!1;try{t=this.predicate.call(this.thisArg,e,this.index++,this.source)}catch(n){return void this.destination.error(n)}t||this.notifyComplete(!1)}},{key:\"_complete\",value:function(){this.notifyComplete(!0)}}]),n}(p);function hD(e,t){var n=!1;return arguments.length>=2&&(n=!0),function(r){return r.lift(new mD(e,t,n))}}var fD,mD=function(){function e(t,n){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];_classCallCheck(this,e),this.accumulator=t,this.seed=n,this.hasSeed=r}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new pD(e,this.accumulator,this.seed,this.hasSeed))}}]),e}(),pD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e)).accumulator=r,o._seed=i,o.hasSeed=a,o.index=0,o}return _createClass(n,[{key:\"_next\",value:function(e){if(this.hasSeed)return this._tryNext(e);this.seed=e,this.destination.next(e)}},{key:\"_tryNext\",value:function(e){var t,n=this.index++;try{t=this.accumulator(this.seed,e,n)}catch(r){this.destination.error(r)}this.seed=t,this.destination.next(t)}},{key:\"seed\",get:function(){return this._seed},set:function(e){this.hasSeed=!0,this._seed=e}}]),n}(p),_D=function e(t,n){_classCallCheck(this,e),this.id=t,this.url=n},vD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:\"imperative\",o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;return _classCallCheck(this,n),(i=t.call(this,e,r)).navigationTrigger=a,i.restoredState=o,i}return _createClass(n,[{key:\"toString\",value:function(){return\"NavigationStart(id: \".concat(this.id,\", url: '\").concat(this.url,\"')\")}}]),n}(_D),gD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e,r)).urlAfterRedirects=i,a}return _createClass(n,[{key:\"toString\",value:function(){return\"NavigationEnd(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"')\")}}]),n}(_D),yD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e,r)).reason=i,a}return _createClass(n,[{key:\"toString\",value:function(){return\"NavigationCancel(id: \".concat(this.id,\", url: '\").concat(this.url,\"')\")}}]),n}(_D),bD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e,r)).error=i,a}return _createClass(n,[{key:\"toString\",value:function(){return\"NavigationError(id: \".concat(this.id,\", url: '\").concat(this.url,\"', error: \").concat(this.error,\")\")}}]),n}(_D),kD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e,r)).urlAfterRedirects=i,o.state=a,o}return _createClass(n,[{key:\"toString\",value:function(){return\"RoutesRecognized(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\")\")}}]),n}(_D),wD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e,r)).urlAfterRedirects=i,o.state=a,o}return _createClass(n,[{key:\"toString\",value:function(){return\"GuardsCheckStart(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\")\")}}]),n}(_D),CD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a,o){var s;return _classCallCheck(this,n),(s=t.call(this,e,r)).urlAfterRedirects=i,s.state=a,s.shouldActivate=o,s}return _createClass(n,[{key:\"toString\",value:function(){return\"GuardsCheckEnd(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\", shouldActivate: \").concat(this.shouldActivate,\")\")}}]),n}(_D),MD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e,r)).urlAfterRedirects=i,o.state=a,o}return _createClass(n,[{key:\"toString\",value:function(){return\"ResolveStart(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\")\")}}]),n}(_D),SD=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e,r)).urlAfterRedirects=i,o.state=a,o}return _createClass(n,[{key:\"toString\",value:function(){return\"ResolveEnd(id: \".concat(this.id,\", url: '\").concat(this.url,\"', urlAfterRedirects: '\").concat(this.urlAfterRedirects,\"', state: \").concat(this.state,\")\")}}]),n}(_D),LD=function(){function e(t){_classCallCheck(this,e),this.route=t}return _createClass(e,[{key:\"toString\",value:function(){return\"RouteConfigLoadStart(path: \".concat(this.route.path,\")\")}}]),e}(),TD=function(){function e(t){_classCallCheck(this,e),this.route=t}return _createClass(e,[{key:\"toString\",value:function(){return\"RouteConfigLoadEnd(path: \".concat(this.route.path,\")\")}}]),e}(),xD=function(){function e(t){_classCallCheck(this,e),this.snapshot=t}return _createClass(e,[{key:\"toString\",value:function(){return\"ChildActivationStart(path: '\".concat(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\",\"')\")}}]),e}(),DD=function(){function e(t){_classCallCheck(this,e),this.snapshot=t}return _createClass(e,[{key:\"toString\",value:function(){return\"ChildActivationEnd(path: '\".concat(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\",\"')\")}}]),e}(),OD=function(){function e(t){_classCallCheck(this,e),this.snapshot=t}return _createClass(e,[{key:\"toString\",value:function(){return\"ActivationStart(path: '\".concat(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\",\"')\")}}]),e}(),YD=function(){function e(t){_classCallCheck(this,e),this.snapshot=t}return _createClass(e,[{key:\"toString\",value:function(){return\"ActivationEnd(path: '\".concat(this.snapshot.routeConfig&&this.snapshot.routeConfig.path||\"\",\"')\")}}]),e}(),ED=function(){function e(t,n,r){_classCallCheck(this,e),this.routerEvent=t,this.position=n,this.anchor=r}return _createClass(e,[{key:\"toString\",value:function(){return\"Scroll(anchor: '\".concat(this.anchor,\"', position: '\").concat(this.position?\"\".concat(this.position[0],\", \").concat(this.position[1]):null,\"')\")}}]),e}(),ID=((fD=function e(){_classCallCheck(this,e)}).\\u0275fac=function(e){return new(e||fD)},fD.\\u0275cmp=bt({type:fD,selectors:[[\"ng-component\"]],decls:1,vars:0,template:function(e,t){1&e&&No(0,\"router-outlet\")},directives:function(){return[NY]},encapsulation:2}),fD),AD=function(){function e(t){_classCallCheck(this,e),this.params=t||{}}return _createClass(e,[{key:\"has\",value:function(e){return this.params.hasOwnProperty(e)}},{key:\"get\",value:function(e){if(this.has(e)){var t=this.params[e];return Array.isArray(t)?t[0]:t}return null}},{key:\"getAll\",value:function(e){if(this.has(e)){var t=this.params[e];return Array.isArray(t)?t:[t]}return[]}},{key:\"keys\",get:function(){return Object.keys(this.params)}}]),e}();function PD(e){return new AD(e)}function jD(e){var t=Error(\"NavigationCancelingError: \"+e);return t.ngNavigationCancelingError=!0,t}function RD(e,t,n){var r=n.path.split(\"/\");if(r.length>e.length)return null;if(\"full\"===n.pathMatch&&(t.hasChildren()||r.length1&&void 0!==arguments[1]?arguments[1]:\"\",n=0;n-1})):e===t}function BD(e){return Array.prototype.concat.apply([],e)}function qD(e){return e.length>0?e[e.length-1]:null}function GD(e,t){for(var n in e)e.hasOwnProperty(n)&&t(e[n],n)}function $D(e){return Bo(e)?e:Uo(e)?W(Promise.resolve(e)):Bd(e)}function JD(e,t,n){return n?function(e,t){return WD(e,t)}(e.queryParams,t.queryParams)&&function e(t,n){if(!XD(t.segments,n.segments))return!1;if(t.numberOfChildren!==n.numberOfChildren)return!1;for(var r in n.children){if(!t.children[r])return!1;if(!e(t.children[r],n.children[r]))return!1}return!0}(e.root,t.root):function(e,t){return Object.keys(t).length<=Object.keys(e).length&&Object.keys(t).every((function(n){return UD(e[n],t[n])}))}(e.queryParams,t.queryParams)&&function e(t,n){return function t(n,r,i){if(n.segments.length>i.length)return!!XD(n.segments.slice(0,i.length),i)&&!r.hasChildren();if(n.segments.length===i.length){if(!XD(n.segments,i))return!1;for(var a in r.children){if(!n.children[a])return!1;if(!e(n.children[a],r.children[a]))return!1}return!0}var o=i.slice(0,n.segments.length),s=i.slice(n.segments.length);return!!XD(n.segments,o)&&!!n.children.primary&&t(n.children.primary,r,s)}(t,n,n.segments)}(e.root,t.root)}var KD=function(){function e(t,n,r){_classCallCheck(this,e),this.root=t,this.queryParams=n,this.fragment=r}return _createClass(e,[{key:\"toString\",value:function(){return rO.serialize(this)}},{key:\"queryParamMap\",get:function(){return this._queryParamMap||(this._queryParamMap=PD(this.queryParams)),this._queryParamMap}}]),e}(),ZD=function(){function e(t,n){var r=this;_classCallCheck(this,e),this.segments=t,this.children=n,this.parent=null,GD(n,(function(e,t){return e.parent=r}))}return _createClass(e,[{key:\"hasChildren\",value:function(){return this.numberOfChildren>0}},{key:\"toString\",value:function(){return iO(this)}},{key:\"numberOfChildren\",get:function(){return Object.keys(this.children).length}}]),e}(),QD=function(){function e(t,n){_classCallCheck(this,e),this.path=t,this.parameters=n}return _createClass(e,[{key:\"toString\",value:function(){return cO(this)}},{key:\"parameterMap\",get:function(){return this._parameterMap||(this._parameterMap=PD(this.parameters)),this._parameterMap}}]),e}();function XD(e,t){return e.length===t.length&&e.every((function(e,n){return e.path===t[n].path}))}function eO(e,t){var n=[];return GD(e.children,(function(e,r){\"primary\"===r&&(n=n.concat(t(e,r)))})),GD(e.children,(function(e,r){\"primary\"!==r&&(n=n.concat(t(e,r)))})),n}var tO=function e(){_classCallCheck(this,e)},nO=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"parse\",value:function(e){var t=new pO(e);return new KD(t.parseRootSegment(),t.parseQueryParams(),t.parseFragment())}},{key:\"serialize\",value:function(e){var t,n,r;return\"\".concat(\"/\".concat(function e(t,n){if(!t.hasChildren())return iO(t);if(n){var r=t.children.primary?e(t.children.primary,!1):\"\",i=[];return GD(t.children,(function(t,n){\"primary\"!==n&&i.push(\"\".concat(n,\":\").concat(e(t,!1)))})),i.length>0?\"\".concat(r,\"(\").concat(i.join(\"//\"),\")\"):r}var a=eO(t,(function(n,r){return\"primary\"===r?[e(t.children.primary,!1)]:[\"\".concat(r,\":\").concat(e(n,!1))]}));return\"\".concat(iO(t),\"/(\").concat(a.join(\"//\"),\")\")}(e.root,!0)),(n=e.queryParams,r=Object.keys(n).map((function(e){var t=n[e];return Array.isArray(t)?t.map((function(t){return\"\".concat(oO(e),\"=\").concat(oO(t))})).join(\"&\"):\"\".concat(oO(e),\"=\").concat(oO(t))})),r.length?\"?\".concat(r.join(\"&\")):\"\")).concat(\"string\"==typeof e.fragment?\"#\".concat((t=e.fragment,encodeURI(t))):\"\")}}]),e}(),rO=new nO;function iO(e){return e.segments.map((function(e){return cO(e)})).join(\"/\")}function aO(e){return encodeURIComponent(e).replace(/%40/g,\"@\").replace(/%3A/gi,\":\").replace(/%24/g,\"$\").replace(/%2C/gi,\",\")}function oO(e){return aO(e).replace(/%3B/gi,\";\")}function sO(e){return aO(e).replace(/\\(/g,\"%28\").replace(/\\)/g,\"%29\").replace(/%26/gi,\"&\")}function lO(e){return decodeURIComponent(e)}function uO(e){return lO(e.replace(/\\+/g,\"%20\"))}function cO(e){return\"\".concat(sO(e.path)).concat((t=e.parameters,Object.keys(t).map((function(e){return\";\".concat(sO(e),\"=\").concat(sO(t[e]))})).join(\"\")));var t}var dO=/^[^\\/()?;=#]+/;function hO(e){var t=e.match(dO);return t?t[0]:\"\"}var fO=/^[^=?&#]+/,mO=/^[^?&#]+/,pO=function(){function e(t){_classCallCheck(this,e),this.url=t,this.remaining=t}return _createClass(e,[{key:\"parseRootSegment\",value:function(){return this.consumeOptional(\"/\"),\"\"===this.remaining||this.peekStartsWith(\"?\")||this.peekStartsWith(\"#\")?new ZD([],{}):new ZD([],this.parseChildren())}},{key:\"parseQueryParams\",value:function(){var e={};if(this.consumeOptional(\"?\"))do{this.parseQueryParam(e)}while(this.consumeOptional(\"&\"));return e}},{key:\"parseFragment\",value:function(){return this.consumeOptional(\"#\")?decodeURIComponent(this.remaining):null}},{key:\"parseChildren\",value:function(){if(\"\"===this.remaining)return{};this.consumeOptional(\"/\");var e=[];for(this.peekStartsWith(\"(\")||e.push(this.parseSegment());this.peekStartsWith(\"/\")&&!this.peekStartsWith(\"//\")&&!this.peekStartsWith(\"/(\");)this.capture(\"/\"),e.push(this.parseSegment());var t={};this.peekStartsWith(\"/(\")&&(this.capture(\"/\"),t=this.parseParens(!0));var n={};return this.peekStartsWith(\"(\")&&(n=this.parseParens(!1)),(e.length>0||Object.keys(t).length>0)&&(n.primary=new ZD(e,t)),n}},{key:\"parseSegment\",value:function(){var e=hO(this.remaining);if(\"\"===e&&this.peekStartsWith(\";\"))throw new Error(\"Empty path url segment cannot have parameters: '\".concat(this.remaining,\"'.\"));return this.capture(e),new QD(lO(e),this.parseMatrixParams())}},{key:\"parseMatrixParams\",value:function(){for(var e={};this.consumeOptional(\";\");)this.parseParam(e);return e}},{key:\"parseParam\",value:function(e){var t=hO(this.remaining);if(t){this.capture(t);var n=\"\";if(this.consumeOptional(\"=\")){var r=hO(this.remaining);r&&(n=r,this.capture(n))}e[lO(t)]=lO(n)}}},{key:\"parseQueryParam\",value:function(e){var t=function(e){var t=e.match(fO);return t?t[0]:\"\"}(this.remaining);if(t){this.capture(t);var n=\"\";if(this.consumeOptional(\"=\")){var r=function(e){var t=e.match(mO);return t?t[0]:\"\"}(this.remaining);r&&(n=r,this.capture(n))}var i=uO(t),a=uO(n);if(e.hasOwnProperty(i)){var o=e[i];Array.isArray(o)||(o=[o],e[i]=o),o.push(a)}else e[i]=a}}},{key:\"parseParens\",value:function(e){var t={};for(this.capture(\"(\");!this.consumeOptional(\")\")&&this.remaining.length>0;){var n=hO(this.remaining),r=this.remaining[n.length];if(\"/\"!==r&&\")\"!==r&&\";\"!==r)throw new Error(\"Cannot parse url '\".concat(this.url,\"'\"));var i=void 0;n.indexOf(\":\")>-1?(i=n.substr(0,n.indexOf(\":\")),this.capture(i),this.capture(\":\")):e&&(i=\"primary\");var a=this.parseChildren();t[i]=1===Object.keys(a).length?a.primary:new ZD([],a),this.consumeOptional(\"//\")}return t}},{key:\"peekStartsWith\",value:function(e){return this.remaining.startsWith(e)}},{key:\"consumeOptional\",value:function(e){return!!this.peekStartsWith(e)&&(this.remaining=this.remaining.substring(e.length),!0)}},{key:\"capture\",value:function(e){if(!this.consumeOptional(e))throw new Error('Expected \"'.concat(e,'\".'))}}]),e}(),_O=function(){function e(t){_classCallCheck(this,e),this._root=t}return _createClass(e,[{key:\"parent\",value:function(e){var t=this.pathFromRoot(e);return t.length>1?t[t.length-2]:null}},{key:\"children\",value:function(e){var t=vO(e,this._root);return t?t.children.map((function(e){return e.value})):[]}},{key:\"firstChild\",value:function(e){var t=vO(e,this._root);return t&&t.children.length>0?t.children[0].value:null}},{key:\"siblings\",value:function(e){var t=gO(e,this._root);return t.length<2?[]:t[t.length-2].children.map((function(e){return e.value})).filter((function(t){return t!==e}))}},{key:\"pathFromRoot\",value:function(e){return gO(e,this._root).map((function(e){return e.value}))}},{key:\"root\",get:function(){return this._root.value}}]),e}();function vO(e,t){if(e===t.value)return t;var n,r=_createForOfIteratorHelper(t.children);try{for(r.s();!(n=r.n()).done;){var i=vO(e,n.value);if(i)return i}}catch(a){r.e(a)}finally{r.f()}return null}function gO(e,t){if(e===t.value)return[t];var n,r=_createForOfIteratorHelper(t.children);try{for(r.s();!(n=r.n()).done;){var i=gO(e,n.value);if(i.length)return i.unshift(t),i}}catch(a){r.e(a)}finally{r.f()}return[]}var yO=function(){function e(t,n){_classCallCheck(this,e),this.value=t,this.children=n}return _createClass(e,[{key:\"toString\",value:function(){return\"TreeNode(\".concat(this.value,\")\")}}]),e}();function bO(e){var t={};return e&&e.children.forEach((function(e){return t[e.value.outlet]=e})),t}var kO=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).snapshot=r,TO(_assertThisInitialized(i),e),i}return _createClass(n,[{key:\"toString\",value:function(){return this.snapshot.toString()}}]),n}(_O);function wO(e,t){var n=function(e,t){var n=new SO([],{},{},\"\",{},\"primary\",t,null,e.root,-1,{});return new LO(\"\",new yO(n,[]))}(e,t),r=new tT([new QD(\"\",{})]),i=new tT({}),a=new tT({}),o=new tT({}),s=new tT(\"\"),l=new CO(r,i,o,s,a,\"primary\",t,n.root);return l.snapshot=n.root,new kO(new yO(l,[]),n)}var CO=function(){function e(t,n,r,i,a,o,s,l){_classCallCheck(this,e),this.url=t,this.params=n,this.queryParams=r,this.fragment=i,this.data=a,this.outlet=o,this.component=s,this._futureSnapshot=l}return _createClass(e,[{key:\"toString\",value:function(){return this.snapshot?this.snapshot.toString():\"Future(\".concat(this._futureSnapshot,\")\")}},{key:\"routeConfig\",get:function(){return this._futureSnapshot.routeConfig}},{key:\"root\",get:function(){return this._routerState.root}},{key:\"parent\",get:function(){return this._routerState.parent(this)}},{key:\"firstChild\",get:function(){return this._routerState.firstChild(this)}},{key:\"children\",get:function(){return this._routerState.children(this)}},{key:\"pathFromRoot\",get:function(){return this._routerState.pathFromRoot(this)}},{key:\"paramMap\",get:function(){return this._paramMap||(this._paramMap=this.params.pipe(F((function(e){return PD(e)})))),this._paramMap}},{key:\"queryParamMap\",get:function(){return this._queryParamMap||(this._queryParamMap=this.queryParams.pipe(F((function(e){return PD(e)})))),this._queryParamMap}}]),e}();function MO(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"emptyOnly\",n=e.pathFromRoot,r=0;if(\"always\"!==t)for(r=n.length-1;r>=1;){var i=n[r],a=n[r-1];if(i.routeConfig&&\"\"===i.routeConfig.path)r--;else{if(a.component)break;r--}}return function(e){return e.reduce((function(e,t){return{params:Object.assign(Object.assign({},e.params),t.params),data:Object.assign(Object.assign({},e.data),t.data),resolve:Object.assign(Object.assign({},e.resolve),t._resolvedData)}}),{params:{},data:{},resolve:{}})}(n.slice(r))}var SO=function(){function e(t,n,r,i,a,o,s,l,u,c,d){_classCallCheck(this,e),this.url=t,this.params=n,this.queryParams=r,this.fragment=i,this.data=a,this.outlet=o,this.component=s,this.routeConfig=l,this._urlSegment=u,this._lastPathIndex=c,this._resolve=d}return _createClass(e,[{key:\"toString\",value:function(){return\"Route(url:'\".concat(this.url.map((function(e){return e.toString()})).join(\"/\"),\"', path:'\").concat(this.routeConfig?this.routeConfig.path:\"\",\"')\")}},{key:\"root\",get:function(){return this._routerState.root}},{key:\"parent\",get:function(){return this._routerState.parent(this)}},{key:\"firstChild\",get:function(){return this._routerState.firstChild(this)}},{key:\"children\",get:function(){return this._routerState.children(this)}},{key:\"pathFromRoot\",get:function(){return this._routerState.pathFromRoot(this)}},{key:\"paramMap\",get:function(){return this._paramMap||(this._paramMap=PD(this.params)),this._paramMap}},{key:\"queryParamMap\",get:function(){return this._queryParamMap||(this._queryParamMap=PD(this.queryParams)),this._queryParamMap}}]),e}(),LO=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,r)).url=e,TO(_assertThisInitialized(i),r),i}return _createClass(n,[{key:\"toString\",value:function(){return xO(this._root)}}]),n}(_O);function TO(e,t){t.value._routerState=e,t.children.forEach((function(t){return TO(e,t)}))}function xO(e){var t=e.children.length>0?\" { \".concat(e.children.map(xO).join(\", \"),\" } \"):\"\";return\"\".concat(e.value).concat(t)}function DO(e){if(e.snapshot){var t=e.snapshot,n=e._futureSnapshot;e.snapshot=n,WD(t.queryParams,n.queryParams)||e.queryParams.next(n.queryParams),t.fragment!==n.fragment&&e.fragment.next(n.fragment),WD(t.params,n.params)||e.params.next(n.params),function(e,t){if(e.length!==t.length)return!1;for(var n=0;n0&&YO(r[0]))throw new Error(\"Root segment cannot have matrix parameters\");var i=r.find((function(e){return\"object\"==typeof e&&null!=e&&e.outlets}));if(i&&i!==qD(r))throw new Error(\"{outlets:{}} has to be the last command\")}return _createClass(e,[{key:\"toRoot\",value:function(){return this.isAbsolute&&1===this.commands.length&&\"/\"==this.commands[0]}}]),e}(),AO=function e(t,n,r){_classCallCheck(this,e),this.segmentGroup=t,this.processChildren=n,this.index=r};function PO(e){return\"object\"==typeof e&&null!=e&&e.outlets?e.outlets.primary:\"\".concat(e)}function jO(e,t,n){if(e||(e=new ZD([],{})),0===e.segments.length&&e.hasChildren())return RO(e,t,n);var r=function(e,t,n){for(var r=0,i=t,a={match:!1,pathIndex:0,commandIndex:0};i=n.length)return a;var o=e.segments[i],s=PO(n[r]),l=r0&&void 0===s)break;if(s&&l&&\"object\"==typeof l&&void 0===l.outlets){if(!zO(s,l,o))return a;r+=2}else{if(!zO(s,{},o))return a;r++}i++}return{match:!0,pathIndex:i,commandIndex:r}}(e,t,n),i=n.slice(r.commandIndex);if(r.match&&r.pathIndex0?new ZD([],{primary:e}):e;return new KD(r,t,n)}},{key:\"expandSegmentGroup\",value:function(e,t,n,r){return 0===n.segments.length&&n.hasChildren()?this.expandChildren(e,t,n).pipe(F((function(e){return new ZD([],e)}))):this.expandSegment(e,n,t,n.segments,r,!0)}},{key:\"expandChildren\",value:function(e,t,n){var r=this;return function(n,i){if(0===Object.keys(n).length)return Bd({});var a=[],o=[],s={};return GD(n,(function(n,i){var l,u,c=(l=i,u=n,r.expandSegmentGroup(e,t,u,l)).pipe(F((function(e){return s[i]=e})));\"primary\"===i?a.push(c):o.push(c)})),Bd.apply(null,a.concat(o)).pipe(av(),lD(),F((function(){return s})))}(n.children)}},{key:\"expandSegment\",value:function(e,t,n,r,i,a){var o=this;return Bd.apply(void 0,_toConsumableArray(n)).pipe(F((function(s){return o.expandSegmentAgainstRoute(e,t,n,s,r,i,a).pipe(pC((function(e){if(e instanceof qO)return Bd(null);throw e})))})),av(),uD((function(e){return!!e})),pC((function(e,n){if(e instanceof Zx||\"EmptyError\"===e.name){if(o.noLeftoversInUrl(t,r,i))return Bd(new ZD([],{}));throw new qO(t)}throw e})))}},{key:\"noLeftoversInUrl\",value:function(e,t,n){return 0===t.length&&!e.children[n]}},{key:\"expandSegmentAgainstRoute\",value:function(e,t,n,r,i,a,o){return tY(r)!==a?$O(t):void 0===r.redirectTo?this.matchSegmentAgainstRoute(e,t,r,i):o&&this.allowRedirects?this.expandSegmentAgainstRouteUsingRedirect(e,t,n,r,i,a):$O(t)}},{key:\"expandSegmentAgainstRouteUsingRedirect\",value:function(e,t,n,r,i,a){return\"**\"===r.path?this.expandWildCardWithParamsAgainstRouteUsingRedirect(e,n,r,a):this.expandRegularSegmentAgainstRouteUsingRedirect(e,t,n,r,i,a)}},{key:\"expandWildCardWithParamsAgainstRouteUsingRedirect\",value:function(e,t,n,r){var i=this,a=this.applyRedirectCommands([],n.redirectTo,{});return n.redirectTo.startsWith(\"/\")?JO(a):this.lineralizeSegments(n,a).pipe(U((function(n){var a=new ZD(n,{});return i.expandSegment(e,a,t,n,r,!1)})))}},{key:\"expandRegularSegmentAgainstRouteUsingRedirect\",value:function(e,t,n,r,i,a){var o=this,s=QO(t,r,i),l=s.matched,u=s.consumedSegments,c=s.lastChild,d=s.positionalParamSegments;if(!l)return $O(t);var h=this.applyRedirectCommands(u,r.redirectTo,d);return r.redirectTo.startsWith(\"/\")?JO(h):this.lineralizeSegments(r,h).pipe(U((function(r){return o.expandSegment(e,t,n,r.concat(i.slice(c)),a,!1)})))}},{key:\"matchSegmentAgainstRoute\",value:function(e,t,n,r){var i=this;if(\"**\"===n.path)return n.loadChildren?this.configLoader.load(e.injector,n).pipe(F((function(e){return n._loadedConfig=e,new ZD(r,{})}))):Bd(new ZD(r,{}));var a=QO(t,n,r),o=a.matched,s=a.consumedSegments,l=a.lastChild;if(!o)return $O(t);var u=r.slice(l);return this.getChildConfig(e,n,r).pipe(U((function(e){var n=e.module,r=e.routes,a=function(e,t,n,r){return n.length>0&&function(e,t,n){return n.some((function(n){return eY(e,t,n)&&\"primary\"!==tY(n)}))}(e,n,r)?{segmentGroup:XO(new ZD(t,function(e,t){var n={};n.primary=t;var r,i=_createForOfIteratorHelper(e);try{for(i.s();!(r=i.n()).done;){var a=r.value;\"\"===a.path&&\"primary\"!==tY(a)&&(n[tY(a)]=new ZD([],{}))}}catch(o){i.e(o)}finally{i.f()}return n}(r,new ZD(n,e.children)))),slicedSegments:[]}:0===n.length&&function(e,t,n){return n.some((function(n){return eY(e,t,n)}))}(e,n,r)?{segmentGroup:XO(new ZD(e.segments,function(e,t,n,r){var i,a={},o=_createForOfIteratorHelper(n);try{for(o.s();!(i=o.n()).done;){var s=i.value;eY(e,t,s)&&!r[tY(s)]&&(a[tY(s)]=new ZD([],{}))}}catch(l){o.e(l)}finally{o.f()}return Object.assign(Object.assign({},r),a)}(e,n,r,e.children))),slicedSegments:n}:{segmentGroup:e,slicedSegments:n}}(t,s,u,r),o=a.segmentGroup,l=a.slicedSegments;return 0===l.length&&o.hasChildren()?i.expandChildren(n,r,o).pipe(F((function(e){return new ZD(s,e)}))):0===r.length&&0===l.length?Bd(new ZD(s,{})):i.expandSegment(n,o,r,l,\"primary\",!0).pipe(F((function(e){return new ZD(s.concat(e.segments),e.children)})))})))}},{key:\"getChildConfig\",value:function(e,t,n){var r=this;return t.children?Bd(new HD(t.children,e)):t.loadChildren?void 0!==t._loadedConfig?Bd(t._loadedConfig):function(e,t,n){var r,i=t.canLoad;return i&&0!==i.length?W(i).pipe(F((function(r){var i,a=e.get(r);if(function(e){return e&&UO(e.canLoad)}(a))i=a.canLoad(t,n);else{if(!UO(a))throw new Error(\"Invalid CanLoad guard\");i=a(t,n)}return $D(i)}))).pipe(av(),(r=function(e){return!0===e},function(e){return e.lift(new cD(r,void 0,e))})):Bd(!0)}(e.injector,t,n).pipe(U((function(n){return n?r.configLoader.load(e.injector,t).pipe(F((function(e){return t._loadedConfig=e,e}))):function(e){return new w((function(t){return t.error(jD(\"Cannot load children because the guard of the route \\\"path: '\".concat(e.path,\"'\\\" returned false\")))}))}(t)}))):Bd(new HD([],e))}},{key:\"lineralizeSegments\",value:function(e,t){for(var n=[],r=t.root;;){if(n=n.concat(r.segments),0===r.numberOfChildren)return Bd(n);if(r.numberOfChildren>1||!r.children.primary)return KO(e.redirectTo);r=r.children.primary}}},{key:\"applyRedirectCommands\",value:function(e,t,n){return this.applyRedirectCreatreUrlTree(t,this.urlSerializer.parse(t),e,n)}},{key:\"applyRedirectCreatreUrlTree\",value:function(e,t,n,r){var i=this.createSegmentGroup(e,t.root,n,r);return new KD(i,this.createQueryParams(t.queryParams,this.urlTree.queryParams),t.fragment)}},{key:\"createQueryParams\",value:function(e,t){var n={};return GD(e,(function(e,r){if(\"string\"==typeof e&&e.startsWith(\":\")){var i=e.substring(1);n[r]=t[i]}else n[r]=e})),n}},{key:\"createSegmentGroup\",value:function(e,t,n,r){var i=this,a=this.createSegments(e,t.segments,n,r),o={};return GD(t.children,(function(t,a){o[a]=i.createSegmentGroup(e,t,n,r)})),new ZD(a,o)}},{key:\"createSegments\",value:function(e,t,n,r){var i=this;return t.map((function(t){return t.path.startsWith(\":\")?i.findPosParam(e,t,r):i.findOrReturn(t,n)}))}},{key:\"findPosParam\",value:function(e,t,n){var r=n[t.path.substring(1)];if(!r)throw new Error(\"Cannot redirect to '\".concat(e,\"'. Cannot find '\").concat(t.path,\"'.\"));return r}},{key:\"findOrReturn\",value:function(e,t){var n,r=0,i=_createForOfIteratorHelper(t);try{for(i.s();!(n=i.n()).done;){var a=n.value;if(a.path===e.path)return t.splice(r),a;r++}}catch(o){i.e(o)}finally{i.f()}return e}}]),e}();function QO(e,t,n){if(\"\"===t.path)return\"full\"===t.pathMatch&&(e.hasChildren()||n.length>0)?{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}:{matched:!0,consumedSegments:[],lastChild:0,positionalParamSegments:{}};var r=(t.matcher||RD)(n,e,t);return r?{matched:!0,consumedSegments:r.consumed,lastChild:r.consumed.length,positionalParamSegments:r.posParams}:{matched:!1,consumedSegments:[],lastChild:0,positionalParamSegments:{}}}function XO(e){if(1===e.numberOfChildren&&e.children.primary){var t=e.children.primary;return new ZD(e.segments.concat(t.segments),t.children)}return e}function eY(e,t,n){return(!(e.hasChildren()||t.length>0)||\"full\"!==n.pathMatch)&&\"\"===n.path&&void 0!==n.redirectTo}function tY(e){return e.outlet||\"primary\"}var nY=function e(t){_classCallCheck(this,e),this.path=t,this.route=this.path[this.path.length-1]},rY=function e(t,n){_classCallCheck(this,e),this.component=t,this.route=n};function iY(e,t,n){var r=function(e){if(!e)return null;for(var t=e.parent;t;t=t.parent){var n=t.routeConfig;if(n&&n._loadedConfig)return n._loadedConfig}return null}(t);return(r?r.module.injector:n).get(e)}function aY(e,t,n){var r=bO(e),i=e.value;GD(r,(function(e,r){aY(e,i.component?t?t.children.getContext(r):null:t,n)})),n.canDeactivateChecks.push(new rY(i.component&&t&&t.outlet&&t.outlet.isActivated?t.outlet.component:null,i))}var oY=Symbol(\"INITIAL_VALUE\");function sY(){return Pk((function(e){return zL.apply(void 0,_toConsumableArray(e.map((function(e){return e.pipe(cp(1),sv(oY))})))).pipe(hD((function(e,t){var n=!1;return t.reduce((function(e,r,i){if(e!==oY)return e;if(r===oY&&(n=!0),!n){if(!1===r)return r;if(i===t.length-1||BO(r))return r}return e}),e)}),oY),Gd((function(e){return e!==oY})),F((function(e){return BO(e)?e:!0===e})),cp(1))}))}function lY(e,t){return null!==e&&t&&t(new OD(e)),Bd(!0)}function uY(e,t){return null!==e&&t&&t(new xD(e)),Bd(!0)}function cY(e,t,n){var r=t.routeConfig?t.routeConfig.canActivate:null;return r&&0!==r.length?Bd(r.map((function(r){return Qw((function(){var i,a=iY(r,t,n);if(function(e){return e&&UO(e.canActivate)}(a))i=$D(a.canActivate(t,e));else{if(!UO(a))throw new Error(\"Invalid CanActivate guard\");i=$D(a(t,e))}return i.pipe(uD())}))}))).pipe(sY()):Bd(!0)}function dY(e,t,n){var r=t[t.length-1],i=t.slice(0,t.length-1).reverse().map((function(e){return function(e){var t=e.routeConfig?e.routeConfig.canActivateChild:null;return t&&0!==t.length?{node:e,guards:t}:null}(e)})).filter((function(e){return null!==e})).map((function(t){return Qw((function(){return Bd(t.guards.map((function(i){var a,o=iY(i,t.node,n);if(function(e){return e&&UO(e.canActivateChild)}(o))a=$D(o.canActivateChild(r,e));else{if(!UO(o))throw new Error(\"Invalid CanActivateChild guard\");a=$D(o(r,e))}return a.pipe(uD())}))).pipe(sY())}))}));return Bd(i).pipe(sY())}var hY=function e(){_classCallCheck(this,e)},fY=function(){function e(t,n,r,i,a,o){_classCallCheck(this,e),this.rootComponentType=t,this.config=n,this.urlTree=r,this.url=i,this.paramsInheritanceStrategy=a,this.relativeLinkResolution=o}return _createClass(e,[{key:\"recognize\",value:function(){try{var e=_Y(this.urlTree.root,[],[],this.config,this.relativeLinkResolution).segmentGroup,t=this.processSegmentGroup(this.config,e,\"primary\"),n=new SO([],Object.freeze({}),Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,{},\"primary\",this.rootComponentType,null,this.urlTree.root,-1,{}),r=new yO(n,t),i=new LO(this.url,r);return this.inheritParamsAndData(i._root),Bd(i)}catch(a){return new w((function(e){return e.error(a)}))}}},{key:\"inheritParamsAndData\",value:function(e){var t=this,n=e.value,r=MO(n,this.paramsInheritanceStrategy);n.params=Object.freeze(r.params),n.data=Object.freeze(r.data),e.children.forEach((function(e){return t.inheritParamsAndData(e)}))}},{key:\"processSegmentGroup\",value:function(e,t,n){return 0===t.segments.length&&t.hasChildren()?this.processChildren(e,t):this.processSegment(e,t,t.segments,n)}},{key:\"processChildren\",value:function(e,t){var n,r=this,i=eO(t,(function(t,n){return r.processSegmentGroup(e,t,n)}));return n={},i.forEach((function(e){var t=n[e.value.outlet];if(t){var r=t.url.map((function(e){return e.toString()})).join(\"/\"),i=e.value.url.map((function(e){return e.toString()})).join(\"/\");throw new Error(\"Two segments cannot have the same outlet name: '\".concat(r,\"' and '\").concat(i,\"'.\"))}n[e.value.outlet]=e.value})),i.sort((function(e,t){return\"primary\"===e.value.outlet?-1:\"primary\"===t.value.outlet?1:e.value.outlet.localeCompare(t.value.outlet)})),i}},{key:\"processSegment\",value:function(e,t,n,r){var i,a=_createForOfIteratorHelper(e);try{for(a.s();!(i=a.n()).done;){var o=i.value;try{return this.processSegmentAgainstRoute(o,t,n,r)}catch(s){if(!(s instanceof hY))throw s}}}catch(l){a.e(l)}finally{a.f()}if(this.noLeftoversInUrl(t,n,r))return[];throw new hY}},{key:\"noLeftoversInUrl\",value:function(e,t,n){return 0===t.length&&!e.children[n]}},{key:\"processSegmentAgainstRoute\",value:function(e,t,n,r){if(e.redirectTo)throw new hY;if((e.outlet||\"primary\")!==r)throw new hY;var i,a=[],o=[];if(\"**\"===e.path){var s=n.length>0?qD(n).parameters:{};i=new SO(n,s,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,yY(e),r,e.component,e,mY(t),pY(t)+n.length,bY(e))}else{var l=function(e,t,n){if(\"\"===t.path){if(\"full\"===t.pathMatch&&(e.hasChildren()||n.length>0))throw new hY;return{consumedSegments:[],lastChild:0,parameters:{}}}var r=(t.matcher||RD)(n,e,t);if(!r)throw new hY;var i={};GD(r.posParams,(function(e,t){i[t]=e.path}));var a=r.consumed.length>0?Object.assign(Object.assign({},i),r.consumed[r.consumed.length-1].parameters):i;return{consumedSegments:r.consumed,lastChild:r.consumed.length,parameters:a}}(t,e,n);a=l.consumedSegments,o=n.slice(l.lastChild),i=new SO(a,l.parameters,Object.freeze(Object.assign({},this.urlTree.queryParams)),this.urlTree.fragment,yY(e),r,e.component,e,mY(t),pY(t)+a.length,bY(e))}var u=function(e){return e.children?e.children:e.loadChildren?e._loadedConfig.routes:[]}(e),c=_Y(t,a,o,u,this.relativeLinkResolution),d=c.segmentGroup,h=c.slicedSegments;if(0===h.length&&d.hasChildren()){var f=this.processChildren(u,d);return[new yO(i,f)]}if(0===u.length&&0===h.length)return[new yO(i,[])];var m=this.processSegment(u,d,h,\"primary\");return[new yO(i,m)]}}]),e}();function mY(e){for(var t=e;t._sourceSegment;)t=t._sourceSegment;return t}function pY(e){for(var t=e,n=t._segmentIndexShift?t._segmentIndexShift:0;t._sourceSegment;)n+=(t=t._sourceSegment)._segmentIndexShift?t._segmentIndexShift:0;return n-1}function _Y(e,t,n,r,i){if(n.length>0&&function(e,t,n){return n.some((function(n){return vY(e,t,n)&&\"primary\"!==gY(n)}))}(e,n,r)){var a=new ZD(t,function(e,t,n,r){var i={};i.primary=r,r._sourceSegment=e,r._segmentIndexShift=t.length;var a,o=_createForOfIteratorHelper(n);try{for(o.s();!(a=o.n()).done;){var s=a.value;if(\"\"===s.path&&\"primary\"!==gY(s)){var l=new ZD([],{});l._sourceSegment=e,l._segmentIndexShift=t.length,i[gY(s)]=l}}}catch(u){o.e(u)}finally{o.f()}return i}(e,t,r,new ZD(n,e.children)));return a._sourceSegment=e,a._segmentIndexShift=t.length,{segmentGroup:a,slicedSegments:[]}}if(0===n.length&&function(e,t,n){return n.some((function(n){return vY(e,t,n)}))}(e,n,r)){var o=new ZD(e.segments,function(e,t,n,r,i,a){var o,s={},l=_createForOfIteratorHelper(r);try{for(l.s();!(o=l.n()).done;){var u=o.value;if(vY(e,n,u)&&!i[gY(u)]){var c=new ZD([],{});c._sourceSegment=e,c._segmentIndexShift=\"legacy\"===a?e.segments.length:t.length,s[gY(u)]=c}}}catch(d){l.e(d)}finally{l.f()}return Object.assign(Object.assign({},i),s)}(e,t,n,r,e.children,i));return o._sourceSegment=e,o._segmentIndexShift=t.length,{segmentGroup:o,slicedSegments:n}}var s=new ZD(e.segments,e.children);return s._sourceSegment=e,s._segmentIndexShift=t.length,{segmentGroup:s,slicedSegments:n}}function vY(e,t,n){return(!(e.hasChildren()||t.length>0)||\"full\"!==n.pathMatch)&&\"\"===n.path&&void 0===n.redirectTo}function gY(e){return e.outlet||\"primary\"}function yY(e){return e.data||{}}function bY(e){return e.resolve||{}}function kY(e,t,n,r){var i=iY(e,t,r);return $D(i.resolve?i.resolve(t,n):i(t,n))}function wY(e){return function(t){return t.pipe(Pk((function(t){var n=e(t);return n?W(n).pipe(F((function(){return t}))):W([t])})))}}var CY=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"shouldDetach\",value:function(e){return!1}},{key:\"store\",value:function(e,t){}},{key:\"shouldAttach\",value:function(e){return!1}},{key:\"retrieve\",value:function(e){return null}},{key:\"shouldReuseRoute\",value:function(e,t){return e.routeConfig===t.routeConfig}}]),e}(),MY=new Be(\"ROUTES\"),SY=function(){function e(t,n,r,i){_classCallCheck(this,e),this.loader=t,this.compiler=n,this.onLoadStartListener=r,this.onLoadEndListener=i}return _createClass(e,[{key:\"load\",value:function(e,t){var n=this;return this.onLoadStartListener&&this.onLoadStartListener(t),this.loadModuleFactory(t.loadChildren).pipe(F((function(r){n.onLoadEndListener&&n.onLoadEndListener(t);var i=r.create(e);return new HD(BD(i.injector.get(MY)).map(VD),i)})))}},{key:\"loadModuleFactory\",value:function(e){var t=this;return\"string\"==typeof e?W(this.loader.load(e)):$D(e()).pipe(U((function(e){return e instanceof ot?Bd(e):W(t.compiler.compileModuleAsync(e))})))}}]),e}(),LY=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"shouldProcessUrl\",value:function(e){return!0}},{key:\"extract\",value:function(e){return e}},{key:\"merge\",value:function(e,t){return e}}]),e}();function TY(e){throw e}function xY(e,t,n){return t.parse(\"/\")}function DY(e,t){return Bd(null)}var OY,YY,EY=((YY=function(){function e(t,n,r,i,a,o,s,l){var u=this;_classCallCheck(this,e),this.rootComponentType=t,this.urlSerializer=n,this.rootContexts=r,this.location=i,this.config=l,this.lastSuccessfulNavigation=null,this.currentNavigation=null,this.navigationId=0,this.isNgZoneEnabled=!1,this.events=new x,this.errorHandler=TY,this.malformedUriErrorHandler=xY,this.navigated=!1,this.lastSuccessfulId=-1,this.hooks={beforePreactivation:DY,afterPreactivation:DY},this.urlHandlingStrategy=new LY,this.routeReuseStrategy=new CY,this.onSameUrlNavigation=\"ignore\",this.paramsInheritanceStrategy=\"emptyOnly\",this.urlUpdateStrategy=\"deferred\",this.relativeLinkResolution=\"legacy\",this.ngModule=a.get(at),this.console=a.get(Ku);var c=a.get(cc);this.isNgZoneEnabled=c instanceof cc,this.resetConfig(l),this.currentUrlTree=new KD(new ZD([],{}),{},null),this.rawUrlTree=this.currentUrlTree,this.browserUrlTree=this.currentUrlTree,this.configLoader=new SY(o,s,(function(e){return u.triggerEvent(new LD(e))}),(function(e){return u.triggerEvent(new TD(e))})),this.routerState=wO(this.currentUrlTree,this.rootComponentType),this.transitions=new tT({id:0,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,extractedUrl:this.urlHandlingStrategy.extract(this.currentUrlTree),urlAfterRedirects:this.urlHandlingStrategy.extract(this.currentUrlTree),rawUrl:this.currentUrlTree,extras:{},resolve:null,reject:null,promise:Promise.resolve(!0),source:\"imperative\",restoredState:null,currentSnapshot:this.routerState.snapshot,targetSnapshot:null,currentRouterState:this.routerState,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.navigations=this.setupNavigations(this.transitions),this.processNavigations()}return _createClass(e,[{key:\"setupNavigations\",value:function(e){var t=this,n=this.events;return e.pipe(Gd((function(e){return 0!==e.id})),F((function(e){return Object.assign(Object.assign({},e),{extractedUrl:t.urlHandlingStrategy.extract(e.rawUrl)})})),Pk((function(e){var r,i,a,o=!1,s=!1;return Bd(e).pipe(Km((function(e){t.currentNavigation={id:e.id,initialUrl:e.currentRawUrl,extractedUrl:e.extractedUrl,trigger:e.source,extras:e.extras,previousNavigation:t.lastSuccessfulNavigation?Object.assign(Object.assign({},t.lastSuccessfulNavigation),{previousNavigation:null}):null}})),Pk((function(e){var r,i,a,o,s=!t.navigated||e.extractedUrl.toString()!==t.browserUrlTree.toString();if((\"reload\"===t.onSameUrlNavigation||s)&&t.urlHandlingStrategy.shouldProcessUrl(e.rawUrl))return Bd(e).pipe(Pk((function(e){var r=t.transitions.getValue();return n.next(new vD(e.id,t.serializeUrl(e.extractedUrl),e.source,e.restoredState)),r!==t.transitions.getValue()?lp:[e]})),Pk((function(e){return Promise.resolve(e)})),(r=t.ngModule.injector,i=t.configLoader,a=t.urlSerializer,o=t.config,function(e){return e.pipe(Pk((function(e){return function(e,t,n,r,i){return new ZO(e,t,n,r,i).apply()}(r,i,a,e.extractedUrl,o).pipe(F((function(t){return Object.assign(Object.assign({},e),{urlAfterRedirects:t})})))})))}),Km((function(e){t.currentNavigation=Object.assign(Object.assign({},t.currentNavigation),{finalUrl:e.urlAfterRedirects})})),function(e,n,r,i,a){return function(r){return r.pipe(U((function(r){return function(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:\"emptyOnly\",a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:\"legacy\";return new fY(e,t,n,r,i,a).recognize()}(e,n,r.urlAfterRedirects,(o=r.urlAfterRedirects,t.serializeUrl(o)),i,a).pipe(F((function(e){return Object.assign(Object.assign({},r),{targetSnapshot:e})})));var o})))}}(t.rootComponentType,t.config,0,t.paramsInheritanceStrategy,t.relativeLinkResolution),Km((function(e){\"eager\"===t.urlUpdateStrategy&&(e.extras.skipLocationChange||t.setBrowserUrl(e.urlAfterRedirects,!!e.extras.replaceUrl,e.id,e.extras.state),t.browserUrlTree=e.urlAfterRedirects)})),Km((function(e){var r=new kD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);n.next(r)})));if(s&&t.rawUrlTree&&t.urlHandlingStrategy.shouldProcessUrl(t.rawUrlTree)){var l=e.id,u=e.extractedUrl,c=e.source,d=e.restoredState,h=e.extras,f=new vD(l,t.serializeUrl(u),c,d);n.next(f);var m=wO(u,t.rootComponentType).snapshot;return Bd(Object.assign(Object.assign({},e),{targetSnapshot:m,urlAfterRedirects:u,extras:Object.assign(Object.assign({},h),{skipLocationChange:!1,replaceUrl:!1})}))}return t.rawUrlTree=e.rawUrl,t.browserUrlTree=e.urlAfterRedirects,e.resolve(null),lp})),wY((function(e){var n=e.targetSnapshot,r=e.id,i=e.extractedUrl,a=e.rawUrl,o=e.extras,s=o.skipLocationChange,l=o.replaceUrl;return t.hooks.beforePreactivation(n,{navigationId:r,appliedUrlTree:i,rawUrlTree:a,skipLocationChange:!!s,replaceUrl:!!l})})),Km((function(e){var n=new wD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);t.triggerEvent(n)})),F((function(e){return Object.assign(Object.assign({},e),{guards:(n=e.targetSnapshot,r=e.currentSnapshot,i=t.rootContexts,a=n._root,function e(t,n,r,i){var a=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{canDeactivateChecks:[],canActivateChecks:[]},o=bO(n);return t.children.forEach((function(t){!function(t,n,r,i){var a=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{canDeactivateChecks:[],canActivateChecks:[]},o=t.value,s=n?n.value:null,l=r?r.getContext(t.value.outlet):null;if(s&&o.routeConfig===s.routeConfig){var u=function(e,t,n){if(\"function\"==typeof n)return n(e,t);switch(n){case\"pathParamsChange\":return!XD(e.url,t.url);case\"pathParamsOrQueryParamsChange\":return!XD(e.url,t.url)||!WD(e.queryParams,t.queryParams);case\"always\":return!0;case\"paramsOrQueryParamsChange\":return!OO(e,t)||!WD(e.queryParams,t.queryParams);case\"paramsChange\":default:return!OO(e,t)}}(s,o,o.routeConfig.runGuardsAndResolvers);u?a.canActivateChecks.push(new nY(i)):(o.data=s.data,o._resolvedData=s._resolvedData),e(t,n,o.component?l?l.children:null:r,i,a),u&&a.canDeactivateChecks.push(new rY(l&&l.outlet&&l.outlet.component||null,s))}else s&&aY(n,l,a),a.canActivateChecks.push(new nY(i)),e(t,null,o.component?l?l.children:null:r,i,a)}(t,o[t.value.outlet],r,i.concat([t.value]),a),delete o[t.value.outlet]})),GD(o,(function(e,t){return aY(e,r.getContext(t),a)})),a}(a,r?r._root:null,i,[a.value]))});var n,r,i,a})),function(e,t){return function(n){return n.pipe(U((function(n){var r=n.targetSnapshot,i=n.currentSnapshot,a=n.guards,o=a.canActivateChecks,s=a.canDeactivateChecks;return 0===s.length&&0===o.length?Bd(Object.assign(Object.assign({},n),{guardsResult:!0})):function(e,t,n,r){return W(e).pipe(U((function(e){return function(e,t,n,r,i){var a=t&&t.routeConfig?t.routeConfig.canDeactivate:null;return a&&0!==a.length?Bd(a.map((function(a){var o,s=iY(a,t,i);if(function(e){return e&&UO(e.canDeactivate)}(s))o=$D(s.canDeactivate(e,t,n,r));else{if(!UO(s))throw new Error(\"Invalid CanDeactivate guard\");o=$D(s(e,t,n,r))}return o.pipe(uD())}))).pipe(sY()):Bd(!0)}(e.component,e.route,n,t,r)})),uD((function(e){return!0!==e}),!0))}(s,r,i,e).pipe(U((function(n){return n&&\"boolean\"==typeof n?function(e,t,n,r){return W(t).pipe(qd((function(t){return W([uY(t.route.parent,r),lY(t.route,r),dY(e,t.path,n),cY(e,t.route,n)]).pipe(av(),uD((function(e){return!0!==e}),!0))})),uD((function(e){return!0!==e}),!0))}(r,o,e,t):Bd(n)})),F((function(e){return Object.assign(Object.assign({},n),{guardsResult:e})})))})))}}(t.ngModule.injector,(function(e){return t.triggerEvent(e)})),Km((function(e){if(BO(e.guardsResult)){var n=jD('Redirecting to \"'.concat(t.serializeUrl(e.guardsResult),'\"'));throw n.url=e.guardsResult,n}})),Km((function(e){var n=new CD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot,!!e.guardsResult);t.triggerEvent(n)})),Gd((function(e){if(!e.guardsResult){t.resetUrlToCurrentUrlTree();var r=new yD(e.id,t.serializeUrl(e.extractedUrl),\"\");return n.next(r),e.resolve(!1),!1}return!0})),wY((function(e){if(e.guards.canActivateChecks.length)return Bd(e).pipe(Km((function(e){var n=new MD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);t.triggerEvent(n)})),(n=t.paramsInheritanceStrategy,r=t.ngModule.injector,function(e){return e.pipe(U((function(e){var t=e.targetSnapshot,i=e.guards.canActivateChecks;return i.length?W(i).pipe(qd((function(e){return function(e,t,n,r){return function(e,t,n,r){var i=Object.keys(e);if(0===i.length)return Bd({});if(1===i.length){var a=i[0];return kY(e[a],t,n,r).pipe(F((function(e){return _defineProperty({},a,e)})))}var o={};return W(i).pipe(U((function(i){return kY(e[i],t,n,r).pipe(F((function(e){return o[i]=e,e})))}))).pipe(lD(),F((function(){return o})))}(e._resolve,e,t,r).pipe(F((function(t){return e._resolvedData=t,e.data=Object.assign(Object.assign({},e.data),MO(e,n).resolve),null})))}(e.route,t,n,r)})),function(e,t){return arguments.length>=2?function(n){return y(hD(e,t),Qx(1),aD(t))(n)}:function(t){return y(hD((function(t,n,r){return e(t,n,r+1)})),Qx(1))(t)}}((function(e,t){return e})),F((function(t){return e}))):Bd(e)})))}),Km((function(e){var n=new SD(e.id,t.serializeUrl(e.extractedUrl),t.serializeUrl(e.urlAfterRedirects),e.targetSnapshot);t.triggerEvent(n)})));var n,r})),wY((function(e){var n=e.targetSnapshot,r=e.id,i=e.extractedUrl,a=e.rawUrl,o=e.extras,s=o.skipLocationChange,l=o.replaceUrl;return t.hooks.afterPreactivation(n,{navigationId:r,appliedUrlTree:i,rawUrlTree:a,skipLocationChange:!!s,replaceUrl:!!l})})),F((function(e){var n=function(e,t,n){var r=function e(t,n,r){if(r&&t.shouldReuseRoute(n.value,r.value.snapshot)){var i=r.value;i._futureSnapshot=n.value;var a=function(t,n,r){return n.children.map((function(n){var i,a=_createForOfIteratorHelper(r.children);try{for(a.s();!(i=a.n()).done;){var o=i.value;if(t.shouldReuseRoute(o.value.snapshot,n.value))return e(t,n,o)}}catch(s){a.e(s)}finally{a.f()}return e(t,n)}))}(t,n,r);return new yO(i,a)}var o=t.retrieve(n.value);if(o){var s=o.route;return function e(t,n){if(t.value.routeConfig!==n.value.routeConfig)throw new Error(\"Cannot reattach ActivatedRouteSnapshot created from a different route\");if(t.children.length!==n.children.length)throw new Error(\"Cannot reattach ActivatedRouteSnapshot with a different number of children\");n.value._futureSnapshot=t.value;for(var r=0;r1&&void 0!==arguments[1]?arguments[1]:{},n=t.relativeTo,r=t.queryParams,i=t.fragment,a=t.preserveQueryParams,o=t.queryParamsHandling,s=t.preserveFragment;Lr()&&a&&console&&console.warn&&console.warn(\"preserveQueryParams is deprecated, use queryParamsHandling instead.\");var l=n||this.routerState.root,u=s?this.currentUrlTree.fragment:i,c=null;if(o)switch(o){case\"merge\":c=Object.assign(Object.assign({},this.currentUrlTree.queryParams),r);break;case\"preserve\":c=this.currentUrlTree.queryParams;break;default:c=r||null}else c=a?this.currentUrlTree.queryParams:r||null;return null!==c&&(c=this.removeEmptyProps(c)),function(e,t,n,r,i){if(0===n.length)return EO(t.root,t.root,t,r,i);var a=function(e){if(\"string\"==typeof e[0]&&1===e.length&&\"/\"===e[0])return new IO(!0,0,e);var t=0,n=!1,r=e.reduce((function(e,r,i){if(\"object\"==typeof r&&null!=r){if(r.outlets){var a={};return GD(r.outlets,(function(e,t){a[t]=\"string\"==typeof e?e.split(\"/\"):e})),[].concat(_toConsumableArray(e),[{outlets:a}])}if(r.segmentPath)return[].concat(_toConsumableArray(e),[r.segmentPath])}return\"string\"!=typeof r?[].concat(_toConsumableArray(e),[r]):0===i?(r.split(\"/\").forEach((function(r,i){0==i&&\".\"===r||(0==i&&\"\"===r?n=!0:\"..\"===r?t++:\"\"!=r&&e.push(r))})),e):[].concat(_toConsumableArray(e),[r])}),[]);return new IO(n,t,r)}(n);if(a.toRoot())return EO(t.root,new ZD([],{}),t,r,i);var o=function(e,t,n){if(e.isAbsolute)return new AO(t.root,!0,0);if(-1===n.snapshot._lastPathIndex)return new AO(n.snapshot._urlSegment,!0,0);var r=YO(e.commands[0])?0:1;return function(e,t,n){for(var r=e,i=t,a=n;a>i;){if(a-=i,!(r=r.parent))throw new Error(\"Invalid number of '../'\");i=r.segments.length}return new AO(r,!1,i-a)}(n.snapshot._urlSegment,n.snapshot._lastPathIndex+r,e.numberOfDoubleDots)}(a,t,e),s=o.processChildren?RO(o.segmentGroup,o.index,a.commands):jO(o.segmentGroup,o.index,a.commands);return EO(o.segmentGroup,s,t,r,i)}(l,this.currentUrlTree,e,c,u)}},{key:\"navigateByUrl\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{skipLocationChange:!1};Lr()&&this.isNgZoneEnabled&&!cc.isInAngularZone()&&this.console.warn(\"Navigation triggered outside Angular zone, did you forget to call 'ngZone.run()'?\");var n=BO(e)?e:this.parseUrl(e),r=this.urlHandlingStrategy.merge(n,this.rawUrlTree);return this.scheduleNavigation(r,\"imperative\",null,t)}},{key:\"navigate\",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{skipLocationChange:!1};return function(e){for(var t=0;t2&&void 0!==arguments[2]?arguments[2]:{};_classCallCheck(this,e),this.router=t,this.viewportScroller=n,this.options=r,this.lastId=0,this.lastSource=\"imperative\",this.restoredId=0,this.store={},r.scrollPositionRestoration=r.scrollPositionRestoration||\"disabled\",r.anchorScrolling=r.anchorScrolling||\"disabled\"}return _createClass(e,[{key:\"init\",value:function(){\"disabled\"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration(\"manual\"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}},{key:\"createScrollEvents\",value:function(){var e=this;return this.router.events.subscribe((function(t){t instanceof vD?(e.store[e.lastId]=e.viewportScroller.getScrollPosition(),e.lastSource=t.navigationTrigger,e.restoredId=t.restoredState?t.restoredState.navigationId:0):t instanceof gD&&(e.lastId=t.id,e.scheduleScrollEvent(t,e.router.parseUrl(t.urlAfterRedirects).fragment))}))}},{key:\"consumeScrollEvents\",value:function(){var e=this;return this.router.events.subscribe((function(t){t instanceof ED&&(t.position?\"top\"===e.options.scrollPositionRestoration?e.viewportScroller.scrollToPosition([0,0]):\"enabled\"===e.options.scrollPositionRestoration&&e.viewportScroller.scrollToPosition(t.position):t.anchor&&\"enabled\"===e.options.anchorScrolling?e.viewportScroller.scrollToAnchor(t.anchor):\"disabled\"!==e.options.scrollPositionRestoration&&e.viewportScroller.scrollToPosition([0,0]))}))}},{key:\"scheduleScrollEvent\",value:function(e,t){this.router.triggerEvent(new ED(e,\"popstate\"===this.lastSource?this.store[this.restoredId]:null,t))}},{key:\"ngOnDestroy\",value:function(){this.routerEventsSubscription&&this.routerEventsSubscription.unsubscribe(),this.scrollEventsSubscription&&this.scrollEventsSubscription.unsubscribe()}}]),e}()).\\u0275fac=function(e){Po()},jY.\\u0275dir=Lt({type:jY}),jY),qY=new Be(\"ROUTER_CONFIGURATION\"),GY=new Be(\"ROUTER_FORROOT_GUARD\"),$Y=[ud,{provide:tO,useClass:nO},{provide:EY,useFactory:function(e,t,n,r,i,a,o){var s=arguments.length>7&&void 0!==arguments[7]?arguments[7]:{},l=arguments.length>8?arguments[8]:void 0,u=arguments.length>9?arguments[9]:void 0,c=new EY(null,e,t,n,r,i,a,BD(o));if(l&&(c.urlHandlingStrategy=l),u&&(c.routeReuseStrategy=u),s.errorHandler&&(c.errorHandler=s.errorHandler),s.malformedUriErrorHandler&&(c.malformedUriErrorHandler=s.malformedUriErrorHandler),s.enableTracing){var d=zc();c.events.subscribe((function(e){d.logGroup(\"Router Event: \".concat(e.constructor.name)),d.log(e.toString()),d.log(e),d.logGroupEnd()}))}return s.onSameUrlNavigation&&(c.onSameUrlNavigation=s.onSameUrlNavigation),s.paramsInheritanceStrategy&&(c.paramsInheritanceStrategy=s.paramsInheritanceStrategy),s.urlUpdateStrategy&&(c.urlUpdateStrategy=s.urlUpdateStrategy),s.relativeLinkResolution&&(c.relativeLinkResolution=s.relativeLinkResolution),c},deps:[tO,FY,ud,vo,Ec,oc,MY,qY,[function(){return function e(){_classCallCheck(this,e)}}(),new ce],[function(){return function e(){_classCallCheck(this,e)}}(),new ce]]},FY,{provide:CO,useFactory:function(e){return e.routerState.root},deps:[EY]},{provide:Ec,useClass:Pc},UY,WY,function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"preload\",value:function(e,t){return t().pipe(pC((function(){return Bd(null)})))}}]),e}(),{provide:qY,useValue:{enableTracing:!1}}];function JY(){return new Mc(\"Router\",EY)}var KY,ZY=((KY=function(){function e(t,n){_classCallCheck(this,e)}return _createClass(e,null,[{key:\"forRoot\",value:function(t,n){return{ngModule:e,providers:[$Y,tE(t),{provide:GY,useFactory:eE,deps:[[EY,new ce,new he]]},{provide:qY,useValue:n||{}},{provide:td,useFactory:XY,deps:[Uc,[new ue(od),new ce],qY]},{provide:BY,useFactory:QY,deps:[EY,Wd,qY]},{provide:VY,useExisting:n&&n.preloadingStrategy?n.preloadingStrategy:WY},{provide:Mc,multi:!0,useFactory:JY},[rE,{provide:Vu,multi:!0,useFactory:iE,deps:[rE]},{provide:oE,useFactory:aE,deps:[rE]},{provide:Ju,multi:!0,useExisting:oE}]]}}},{key:\"forChild\",value:function(t){return{ngModule:e,providers:[tE(t)]}}}]),e}()).\\u0275mod=Mt({type:KY}),KY.\\u0275inj=ve({factory:function(e){return new(e||KY)(et(GY,8),et(EY,8))}}),KY);function QY(e,t,n){return n.scrollOffset&&t.setOffset(n.scrollOffset),new BY(e,t,n)}function XY(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return n.useHash?new ld(e,t):new sd(e,t)}function eE(e){if(e)throw new Error(\"RouterModule.forRoot() called twice. Lazy loaded modules should use RouterModule.forChild() instead.\");return\"guarded\"}function tE(e){return[{provide:go,multi:!0,useValue:e},{provide:MY,multi:!0,useValue:e}]}var nE,rE=((nE=function(){function e(t){_classCallCheck(this,e),this.injector=t,this.initNavigation=!1,this.resultOfPreactivationDone=new x}return _createClass(e,[{key:\"appInitializer\",value:function(){var e=this;return this.injector.get(Gc,Promise.resolve(null)).then((function(){var t=null,n=new Promise((function(e){return t=e})),r=e.injector.get(EY),i=e.injector.get(qY);if(e.isLegacyDisabled(i)||e.isLegacyEnabled(i))t(!0);else if(\"disabled\"===i.initialNavigation)r.setUpLocationChangeListener(),t(!0);else{if(\"enabled\"!==i.initialNavigation)throw new Error(\"Invalid initialNavigation options: '\".concat(i.initialNavigation,\"'\"));r.hooks.afterPreactivation=function(){return e.initNavigation?Bd(null):(e.initNavigation=!0,t(!0),e.resultOfPreactivationDone)},r.initialNavigation()}return n}))}},{key:\"bootstrapListener\",value:function(e){var t=this.injector.get(qY),n=this.injector.get(UY),r=this.injector.get(BY),i=this.injector.get(EY),a=this.injector.get(Oc);e===a.components[0]&&(this.isLegacyEnabled(t)?i.initialNavigation():this.isLegacyDisabled(t)&&i.setUpLocationChangeListener(),n.setUpPreloading(),r.init(),i.resetRootComponentType(a.componentTypes[0]),this.resultOfPreactivationDone.next(null),this.resultOfPreactivationDone.complete())}},{key:\"isLegacyEnabled\",value:function(e){return\"legacy_enabled\"===e.initialNavigation||!0===e.initialNavigation||void 0===e.initialNavigation}},{key:\"isLegacyDisabled\",value:function(e){return\"legacy_disabled\"===e.initialNavigation||!1===e.initialNavigation}}]),e}()).\\u0275fac=function(e){return new(e||nE)(et(vo))},nE.\\u0275prov=_e({token:nE,factory:nE.\\u0275fac}),nE);function iE(e){return e.appInitializer.bind(e)}function aE(e){return e.bootstrapListener.bind(e)}var oE=new Be(\"Router Initializer\");function sE(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:np;return(!xk(e)||e<0)&&(e=0),t&&\"function\"==typeof t.schedule||(t=np),new w((function(n){return n.add(t.schedule(lE,e,{subscriber:n,counter:0,period:e})),n}))}function lE(e){var t=e.subscriber,n=e.counter,r=e.period;t.next(n),this.schedule({subscriber:t,counter:n+1,period:r},r)}var uE={leading:!0,trailing:!1},cE=function(){function e(t,n,r){_classCallCheck(this,e),this.durationSelector=t,this.leading=n,this.trailing=r}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new dE(e,this.durationSelector,this.leading,this.trailing))}}]),e}(),dE=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i,a){var o;return _classCallCheck(this,n),(o=t.call(this,e)).destination=e,o.durationSelector=r,o._leading=i,o._trailing=a,o._hasValue=!1,o}return _createClass(n,[{key:\"_next\",value:function(e){this._hasValue=!0,this._sendValue=e,this._throttled||(this._leading?this.send():this.throttle(e))}},{key:\"send\",value:function(){var e=this._hasValue,t=this._sendValue;e&&(this.destination.next(t),this.throttle(t)),this._hasValue=!1,this._sendValue=null}},{key:\"throttle\",value:function(e){var t=this.tryDurationSelector(e);t&&this.add(this._throttled=R(this,t))}},{key:\"tryDurationSelector\",value:function(e){try{return this.durationSelector(e)}catch(t){return this.destination.error(t),null}}},{key:\"throttlingDone\",value:function(){var e=this._throttled,t=this._trailing;e&&e.unsubscribe(),this._throttled=null,t&&this.send()}},{key:\"notifyNext\",value:function(e,t,n,r,i){this.throttlingDone()}},{key:\"notifyComplete\",value:function(){this.throttlingDone()}}]),n}(H);function hE(e){var t=e.start,n=e.index,r=e.count,i=e.subscriber;n>=r?i.complete():(i.next(t),i.closed||(e.index=n+1,e.start=t+1,this.schedule(e)))}function fE(e){return function(t){return t.lift(new pE(e,t))}}var mE,pE=function(){function e(t,n){_classCallCheck(this,e),this.notifier=t,this.source=n}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new _E(e,this.notifier,this.source))}}]),e}(),_E=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).notifier=r,a.source=i,a}return _createClass(n,[{key:\"error\",value:function(e){if(!this.isStopped){var t=this.errors,r=this.retries,i=this.retriesSubscription;if(r)this.errors=null,this.retriesSubscription=null;else{t=new x;try{r=(0,this.notifier)(t)}catch(a){return _get(_getPrototypeOf(n.prototype),\"error\",this).call(this,a)}i=R(this,r)}this._unsubscribeAndRecycle(),this.errors=t,this.retries=r,this.retriesSubscription=i,t.next(e)}}},{key:\"_unsubscribe\",value:function(){var e=this.errors,t=this.retriesSubscription;e&&(e.unsubscribe(),this.errors=null),t&&(t.unsubscribe(),this.retriesSubscription=null),this.retries=null}},{key:\"notifyNext\",value:function(e,t,n,r,i){var a=this._unsubscribe;this._unsubscribe=null,this._unsubscribeAndRecycle(),this._unsubscribe=a,this.source.subscribe(this)}}]),n}(H),vE=function(){function e(t){_classCallCheck(this,e),this.resultSelector=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new gE(e,this.resultSelector))}}]),e}(),gE=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Object.create(null);return _classCallCheck(this,n),(i=t.call(this,e)).iterators=[],i.active=0,i.resultSelector=\"function\"==typeof r?r:null,i.values=a,i}return _createClass(n,[{key:\"_next\",value:function(e){var t=this.iterators;l(e)?t.push(new bE(e)):t.push(\"function\"==typeof e[I]?new yE(e[I]()):new kE(this.destination,this,e))}},{key:\"_complete\",value:function(){var e=this.iterators,t=e.length;if(this.unsubscribe(),0!==t){this.active=t;for(var n=0;nthis.index}},{key:\"hasCompleted\",value:function(){return this.array.length===this.index}}]),e}(),kE=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r,i){var a;return _classCallCheck(this,n),(a=t.call(this,e)).parent=r,a.observable=i,a.stillUnsubscribed=!0,a.buffer=[],a.isComplete=!1,a}return _createClass(n,[{key:I,value:function(){return this}},{key:\"next\",value:function(){var e=this.buffer;return 0===e.length&&this.isComplete?{value:null,done:!0}:{value:e.shift(),done:!1}}},{key:\"hasValue\",value:function(){return this.buffer.length>0}},{key:\"hasCompleted\",value:function(){return 0===this.buffer.length&&this.isComplete}},{key:\"notifyComplete\",value:function(){this.buffer.length>0?(this.isComplete=!0,this.parent.notifyInactive()):this.destination.complete()}},{key:\"notifyNext\",value:function(e,t,n,r,i){this.buffer.push(t),this.parent.checkIterators()}},{key:\"subscribe\",value:function(e,t){return R(this,this.observable,this,t)}}]),n}(H),wE=((mE=function(){function e(t,n){_classCallCheck(this,e),this.http=t,this.router=n}return _createClass(e,[{key:\"get\",value:function(e,t){return this.http.get(TE(e),{headers:xE(t)}).pipe(pC(CE(this.router)),fE(ME()))}},{key:\"post\",value:function(e,t,n){return this.http.post(TE(e),t,{headers:xE(n)}).pipe(pC(CE(this.router)),fE(ME()))}},{key:\"rawPost\",value:function(e,t,n){return this.http.post(TE(e),t,{headers:xE(n),observe:\"response\",responseType:\"text\"}).pipe(pC(CE(this.router)),fE(ME()))}},{key:\"delete\",value:function(e,t){return this.http.delete(TE(e),{headers:xE(t)}).pipe(pC(CE(this.router)),fE(ME()))}},{key:\"put\",value:function(e,t,n){return this.http.put(TE(e),t,{headers:xE(n)}).pipe(pC(CE(this.router)),fE(ME()))}}]),e}()).\\u0275fac=function(e){return new(e||mE)(et(kh),et(EY))},mE.\\u0275prov=_e({token:mE,factory:mE.\\u0275fac,providedIn:\"root\"}),mE);function CE(e){return function(t,n){return Bd(t).pipe(U((function(t){if(403==t.status||401==t.status)return e.routerState.snapshot.url.startsWith(\"/login\")||e.navigate([\"/login\"],{queryParams:{returnUrl:e.url}}),up();throw t})))}}function ME(){return function(e){return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0;return new w((function(r){void 0===t&&(t=e,e=0);var i=0,a=e;if(n)return n.schedule(hE,0,{index:i,count:t,start:e,subscriber:r});for(;;){if(i++>=t){r.complete();break}if(r.next(a++),r.closed)break}}))}(1,10).pipe(function(){for(var e=arguments.length,t=new Array(e),n=0;n144e6})),Pk((function(e){return console.log(\"Renewing user token\"),r.api.rawPost(\"user/token\").pipe(F((function(e){return e.headers.get(\"Authorization\")})),Gd((function(e){return\"\"!=e})),pC((function(e){return console.log(\"Error generating new user token: \",e),rT()})))}))).subscribe((function(e){return r.tokenSubject.next(e)}))}return _createClass(e,[{key:\"create\",value:function(e,t){var n=this,r=new FormData;return r.append(\"user\",e),r.append(\"password\",t),this.http.post(\"/api/v2/token\",r,{observe:\"response\",responseType:\"text\"}).pipe(F((function(e){return e.headers.get(\"Authorization\")})),F((function(e){if(e)return n.tokenSubject.next(e),e;throw new OE(\"test\")})))}},{key:\"delete\",value:function(){this.tokenSubject.next(\"\")}},{key:\"tokenObservable\",value:function(){return this.tokenSubject.pipe(F((function(e){return(e||\"\").replace(\"Bearer \",\"\")})),function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:uE;return function(n){return n.lift(new cE(e,t.leading,t.trailing))}}((function(e){return sE(2e3)})))}},{key:\"tokenUser\",value:function(e){return e?JSON.parse(atob(e.split(\".\")[1])).sub:\"\"}}]),e}()).\\u0275fac=function(e){return new(e||SE)(et(kh),et(wE))},SE.\\u0275prov=_e({token:SE,factory:SE.\\u0275fac,providedIn:\"root\"}),SE),OE=function(e){_inherits(n,_wrapNativeSuper(Error));var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return n}(),YE=[\"placeholder\",$localize(_templateObject36())],EE=[\"placeholder\",$localize(_templateObject37())];function IE(e,t){1&e&&(Ho(0,\"ngb-alert\",7),Ls(1,\"Invalid username or password\"),Fo()),2&e&&jo(\"dismissible\",!1)(\"type\",\"danger\")}LE=$localize(_templateObject38());var AE,PE,jE=((AE=function(){function e(t,n,r){_classCallCheck(this,e),this.router=t,this.route=n,this.tokenService=r,this.loading=!1,this.invalidLogin=!1}return _createClass(e,[{key:\"ngOnInit\",value:function(){this.tokenService.delete(),this.returnURL=this.route.snapshot.queryParams.returnURL||\"/\"}},{key:\"login\",value:function(){var e=this;this.loading=!0,this.tokenService.create(this.user,this.password).subscribe((function(t){e.invalidLogin=!1,e.router.navigate([e.returnURL])}),(function(t){401==t.status&&(e.invalidLogin=!0),e.loading=!1}))}}]),e}()).\\u0275fac=function(e){return new(e||AE)(Io(EY),Io(CO),Io(DE))},AE.\\u0275cmp=bt({type:AE,selectors:[[\"ng-component\"]],decls:13,vars:4,consts:[[1,\"content\"],[\"novalidate\",\"\",1,\"login-form\",3,\"ngSubmit\"],[\"f\",\"ngForm\"],[\"matInput\",\"\",\"name\",\"user\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"password\",\"name\",\"password\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[\"mat-raised-button\",\"\",\"type\",\"submit\",3,\"disabled\"],[3,\"dismissible\",\"type\",4,\"ngIf\"],[3,\"dismissible\",\"type\"]],template:function(e,t){if(1&e&&(Ho(0,\"div\",0),Ho(1,\"form\",1,2),qo(\"ngSubmit\",(function(){return t.login()})),Ho(3,\"mat-form-field\"),Ho(4,\"input\",3),iu(5,YE),qo(\"ngModelChange\",(function(e){return t.user=e})),Fo(),Fo(),Ho(6,\"mat-form-field\"),Ho(7,\"input\",4),iu(8,EE),qo(\"ngModelChange\",(function(e){return t.password=e})),Fo(),Fo(),No(9,\"br\"),Ho(10,\"button\",5),ru(11,LE),Fo(),Yo(12,IE,2,2,\"ngb-alert\",6),Fo(),Fo()),2&e){var n=Eo(2);bi(4),jo(\"ngModel\",t.user),bi(3),jo(\"ngModel\",t.password),bi(3),jo(\"disabled\",t.loading||!n.valid),bi(2),jo(\"ngIf\",t.invalidLogin)}},directives:[Mm,af,pm,EM,HM,$h,Um,rf,Cm,zb,Sd,ET],styles:[\".content[_ngcontent-%COMP%]{display:flex;height:100vh;align-items:center;justify-content:center}button[_ngcontent-%COMP%]{margin-bottom:1rem}\"]}),AE),RE=n(\"BOF4\"),HE=((PE=function(){function e(t){_classCallCheck(this,e),this.router=t}return _createClass(e,[{key:\"canActivate\",value:function(e,t){var n=localStorage.getItem(\"token\");if(n){var r=RE(n);if((!r.exp||r.exp>=(new Date).getTime()/1e3)&&(!r.nbf||r.nbf<(new Date).getTime()/1e3))return!0}return this.router.navigate([\"/login\"],{queryParams:{returnUrl:t.url}}),!1}}]),e}()).\\u0275fac=function(e){return new(e||PE)(et(EY))},PE.\\u0275prov=_e({token:PE,factory:PE.\\u0275fac,providedIn:\"root\"}),PE);function FE(e){return e.events.pipe(Gd((function(e){return e instanceof gD})),F((function(t){return NE([e.routerState.snapshot.root])})),sv(NE([e.routerState.snapshot.root])),Ck(),Gk(1))}function NE(e){var t,n=_createForOfIteratorHelper(e);try{for(n.s();!(t=n.n()).done;){var r=t.value;if(\"primary\"in r.data)return r;var i=NE(r.children);if(null!=i)return i}}catch(a){n.e(a)}finally{n.f()}return null}function zE(e){return e.events.pipe(Gd((function(e){return e instanceof gD})),F((function(t){return VE([e.routerState.snapshot.root])})),sv(VE([e.routerState.snapshot.root])),Ck(),Gk(1))}function VE(e){var t,n=_createForOfIteratorHelper(e);try{for(n.s();!(t=n.n()).done;){var r=t.value;if(\"articleID\"in r.params)return r;var i=VE(r.children);if(null!=i)return i}}catch(a){n.e(a)}finally{n.f()}return null}function WE(){for(var e=arguments.length,t=new Array(e),n=0;n0&&(t.title=t.hits.fragments.title.join(\" \")),t.hits.fragments.description.length>0&&(t.stripped=t.hits.fragments.description.join(\" \"))),t.stripped||(t.stripped=t.description.replace(/<[^>]+>/g,\"\")),t.feed=e[0][t.feedID],t})),t})),hD((function(e,t){if(t.unreadIDs)for(var r=0;r=t.unreadIDRange[0]&&i<=t.unreadIDRange[1]&&(e.articles[r].read=!t.unreadIDs.has(i))}if(t.fromEvent){var a,o=new Array,s=_createForOfIteratorHelper(t.articles);try{for(s.s();!(a=s.n()).done;){var u=a.value;if(u.id in e.indexMap)o.push(u);else if(n.olderFirst){for(var c=e.articles.length-1;c>=0;c--)if(l.shouldInsert(u,e.articles[c],n)){e.articles.splice(c,0,u);break}}else for(var d=0;d0})),F((function(e){return e.map((function(e){return e.id}))})),F((function(e){return[Math.min.apply(Math,e),Math.max.apply(Math,e)]})),F((function(e){return l.preferences.olderFirst?[{afterID:e[1]},e[0]]:[{olderFirst:!0,afterID:e[1]},e[0]]}))).subscribe((function(e){return l.updateSubject.next(e)}),(function(e){return console.log(\"Error refreshing article list after reconnect: \",e)})),this.eventService.articleState.subscribe((function(e){return l.stateChange.next({options:e.options,name:e.state,value:e.value})}));var d=(new Date).getTime();Notification.requestPermission((function(e){\"granted\"==e&&c.pipe(WE(l.source,(function(e,t){return[e[0],e[1],t]})),Pk((function(e){return l.eventService.feedUpdate.pipe(Gd((function(t){return l.shouldUpdate(t,e[2],e[1])})),F((function(t){var n=e[0].get(t.feedID);return n?[\"readeef: updates\",\"Feed \".concat(n,\" has been updated\")]:null})),Gd((function(e){return null!=e})),NM(3e4))}))).subscribe((function(e){document.hasFocus()||(new Date).getTime()-d>3e4&&(new Notification(e[0],{body:e[1],icon:\"/en/readeef.png\",tag:\"readeef\"}),d=(new Date).getTime())}))}))}return _createClass(e,[{key:\"articleObservable\",value:function(){return this.articles}},{key:\"requestNextPage\",value:function(){this.paging.next(null)}},{key:\"ids\",value:function(e,t){return this.api.get(this.buildURL(\"article\".concat(e.url,\"/ids\"),t)).pipe(F((function(e){return e.ids})))}},{key:\"formatArticle\",value:function(e){return this.api.get(\"article/\".concat(e,\"/format\"))}},{key:\"refreshArticles\",value:function(){this.refresh.next(null)}},{key:\"favor\",value:function(e,t){return this.articleStateChange(e,\"favorite\",t)}},{key:\"read\",value:function(e,t){return this.articleStateChange(e,\"read\",t)}},{key:\"readAll\",value:function(){var e=this;this.source.pipe(cp(1),Gd((function(e){return e.updatable})),F((function(e){return\"article\"+e.url+\"/read\"})),U((function(t){return e.api.post(t)})),F((function(e){return e.success}))).subscribe((function(e){}),(function(e){return console.log(e)}))}},{key:\"articleStateChange\",value:function(e,t,n){var r=this,i=\"article/\".concat(e,\"/\").concat(t);return(n?this.api.post(i):this.api.delete(i)).pipe(F((function(e){return e.success})),F((function(i){return i&&r.stateChange.next({options:{ids:[e]},name:t,value:n}),i})))}},{key:\"getArticlesFor\",value:function(e,t,n,r){var i=this,a=Object.assign({},t,{limit:n}),o=Object.assign({},a),s=-1,l=0;r.unreadTime?(s=r.unreadTime,l=r.unreadScore,o.unreadOnly=!0):r.time&&(s=r.time,l=r.score),-1!=s&&(t.olderFirst?(o.afterTime=s,l&&(o.afterScore=l)):(o.beforeTime=s,l&&(o.beforeScore=l)));var u=this.api.get(this.buildURL(\"article\"+e.url,o)).pipe(F((function(e){return yI(e.articles)})));if(r.unreadTime&&((o=Object.assign({},a)).readOnly=!0,r.time&&(t.olderFirst?(o.afterTime=r.time,r.score&&(o.afterScore=r.score)):(o.beforeTime=r.time,r.score&&(o.beforeScore=r.score))),u=u.pipe(U((function(t){return t.length==n?Bd(t):(o.limit=n-t.length,i.api.get(i.buildURL(\"article\"+e.url,o)).pipe(F((function(e){return yI(e.articles)})),F((function(e){return t.concat(e)}))))})))),o.afterID&&(u=u.pipe(U((function(t){if(!t||!t.length)return Bd(t);var a=Math.max.apply(Math,t.map((function(e){return e.id}))),s=Object.assign({},o,{afterID:a});return i.getArticlesFor(e,s,n,r).pipe(F((function(e){return e&&e.length?e.concat(t):t})))})))),!this.initialFetched){this.initialFetched=!0;var c=VE([this.router.routerState.snapshot.root]);if(null!=c&&+c.params.articleID>-1){var d=+c.params.articleID;return this.api.get(this.buildURL(\"article\"+(new kI).url,{ids:[d]})).pipe(F((function(e){return yI(e.articles)[0]})),cp(1),U((function(e){return u.pipe(F((function(t){for(var n=0;n0?e+(-1==e.indexOf(\"?\")?\"?\":\"&\")+n.join(\"&\"):e}},{key:\"nameToSource\",value:function(e,t){var n,r;switch(\"string\"==typeof e?n=e:(n=e.primary,r=e.secondary),n){case\"user\":return new kI;case\"favorite\":return new wI;case\"popular\":return new CI(this.nameToSource(r,t));case\"search\":return new LI(decodeURIComponent(t.query),this.nameToSource(r,t));case\"feed\":return new MI(t.id);case\"tag\":return new SI(t.id)}}},{key:\"datePaging\",value:function(e,t){return this.articles.pipe(cp(1),F((function(n){if(0==n.length)return t?{unreadTime:-1}:{};var r=n[n.length-1],i={time:r.date.getTime()/1e3};if(e instanceof CI&&(i.score=r.score),t&&!(e instanceof LI)){if(!r.read)return i.unreadTime=i.time,e instanceof CI&&(i.unreadScore=i.score),i;for(var a=1;at.date)return!0;return!1}},{key:\"shouldSet\",value:function(e,t,n){return!(t.feedIDs&&-1==t.feedIDs.indexOf(e.feedID)||t.readOnly&&!e.read||t.unreadOnly&&e.read||t.favoriteOnly&&!e.favorite||t.untaggedOnly&&!n.has(e.feedID)||t.beforeID&&e.id>=t.beforeID||t.afterID&&e.id<=t.afterID||t.beforeDate&&e.date>=t.beforeDate||t.afterDate&&e.date<=t.afterDate)}}]),e}()).\\u0275fac=function(e){return new(e||bI)(et(wE),et(DE),et(pI),et(_I),et(vI),et(EY),et(gI))},bI.\\u0275prov=_e({token:bI,factory:bI.\\u0275fac,providedIn:\"root\"}),bI);function DI(e,t){1&e&&No(0,\"div\",9),2&e&&hs(\"background-image\",\"url(\"+Zo().item.thumbnail+\")\",ri)}function OI(e,t){1&e&&No(0,\"div\",9),2&e&&hs(\"background-image\",\"url(\"+Zo().item.thumbnailLink+\")\",ri)}function YI(e,t){if(1&e&&(Ho(0,\"div\",10),Ls(1),Fo()),2&e){var n=Zo();bi(1),xs(\" \",n.item.feed,\" \")}}var EI,II,AI=((EI=function(){function e(t,n,r){_classCallCheck(this,e),this.articleService=t,this.router=n,this.route=r}return _createClass(e,[{key:\"openArticle\",value:function(e){this.router.navigate([\"article\",e.id],{relativeTo:this.route})}},{key:\"favor\",value:function(e,t){this.articleService.favor(e,t).subscribe((function(e){}),(function(e){return console.log(e)}))}}]),e}()).\\u0275fac=function(e){return new(e||EI)(Io(xI),Io(EY),Io(CO))},EI.\\u0275cmp=bt({type:EI,selectors:[[\"list-item\"]],inputs:{item:\"item\"},decls:16,vars:12,consts:[[3,\"id\",\"click\"],[1,\"row\",\"align-items-center\"],[1,\"col\",\"title\"],[\"mat-card-avatar\",\"\",\"mat-icon-button\",\"\",3,\"click\"],[3,\"innerHTML\"],[\"mat-card-image\",\"\",3,\"backgroundImage\",4,\"ngIf\"],[1,\"row\",\"align-items-center\",\"info\"],[\"class\",\"col-mat-auto feed\",4,\"ngIf\"],[1,\"col\",\"time\"],[\"mat-card-image\",\"\"],[1,\"col-mat-auto\",\"feed\"]],template:function(e,t){1&e&&(Ho(0,\"mat-card\",0),qo(\"click\",(function(){return t.openArticle(t.item)})),Ho(1,\"mat-card-header\",1),Ho(2,\"mat-card-title\",2),Ho(3,\"button\",3),qo(\"click\",(function(e){return e.stopPropagation(),t.favor(t.item.id,!t.item.favorite)})),Ho(4,\"mat-icon\"),Ls(5),Fo(),Fo(),No(6,\"span\",4),Fo(),Fo(),Yo(7,DI,1,2,\"div\",5),Yo(8,OI,1,2,\"div\",5),Ho(9,\"mat-card-content\"),No(10,\"div\",4),Fo(),Ho(11,\"mat-card-actions\"),Ho(12,\"div\",6),Yo(13,YI,2,1,\"div\",7),Ho(14,\"div\",8),Ls(15),Fo(),Fo(),Fo(),Fo()),2&e&&(fs(\"read\",t.item.read),rs(\"id\",t.item.id),bi(5),xs(\" \",t.item.favorite?\"bookmark\":\"bookmark_border\",\" \"),bi(1),jo(\"innerHTML\",t.item.title,ei),bi(1),jo(\"ngIf\",t.item.thumbnail),bi(1),jo(\"ngIf\",t.item.thumbnailLink&&!t.item.thumbnail),bi(2),jo(\"innerHTML\",t.item.stripped,ei),bi(2),fs(\"read\",t.item.read),bi(1),jo(\"ngIf\",t.item.feed),bi(2),xs(\" \",t.item.time,\" \"))},directives:[Xb,ek,Jb,zb,Qb,FC,Sd,$b,Kb,Zb],styles:[\"[_nghost-%COMP%]{height:500px}mat-card[_ngcontent-%COMP%]{display:flex;flex-direction:column;max-height:calc(100% - 12px);cursor:pointer}mat-card-header[_ngcontent-%COMP%]{overflow:hidden;flex:0 0 auto}[mat-card-image][_ngcontent-%COMP%]{height:240px;flex:1 0 auto;background-position:50%;background-repeat:no-repeat;background-size:contain}mat-card-content[_ngcontent-%COMP%]{flex:0 1 auto;overflow:hidden;text-overflow:ellipsis-lastline;font-size:12px}mat-card-actions[_ngcontent-%COMP%]{flex:0 0 auto}.read[_ngcontent-%COMP%]{font-weight:100;color:#666}.read[_ngcontent-%COMP%] .title[_ngcontent-%COMP%]{font-weight:300}.title[_ngcontent-%COMP%]{font-weight:700;font-size:14px;overflow:hidden;text-overflow:ellipsis;line-height:1;height:3.85em}.info[_ngcontent-%COMP%]{margin:0}.feed[_ngcontent-%COMP%]{font-weight:200;font-size:10px;text-align:start}.time[_ngcontent-%COMP%]{font-size:11px;text-align:end}button[_ngcontent-%COMP%]:focus, button[_ngcontent-%COMP%]:hover{outline:none;text-decoration:none}\"]}),EI);function PI(e,t){1&e&&No(0,\"list-item\",4),2&e&&jo(\"item\",t.$implicit)}function jI(e,t){1&e&&(Ho(0,\"div\",5),ru(1,II),Fo())}II=$localize(_templateObject63());var RI,HI,FI,NI,zI,VI=function e(t,n){_classCallCheck(this,e),this.iteration=t,this.articles=n},WI=((RI=function(){function e(t,n,r){_classCallCheck(this,e),this.articleService=t,this.router=n,this.route=r,this.items=[],this.finished=!1,this.limit=200}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.loading=!0,this.subscription=this.articleService.articleObservable().pipe(hD((function(t,n,r){return t.iteration>0&&t.articles.length==n.length&&(e.finished=!0),t.articles=[].concat(n),t.iteration++,t}),new VI(0,[])),F((function(e){return e.articles})),Pk((function(e){return sE(6e4).pipe(sv(0),F((function(t){return e.map((function(e){return e.time=uI(e.date).fromNow(),e}))})))}))).subscribe((function(t){e.loading=!1,e.items=t}),(function(t){e.loading=!1,console.log(t)}))}},{key:\"ngOnDestroy\",value:function(){this.subscription.unsubscribe()}},{key:\"fetchMore\",value:function(e){e.endIndex!==this.items.length-1||this.loading||this.finished||(this.loading=!0,this.articleService.requestNextPage())}},{key:\"firstUnread\",value:function(){if(!document.activeElement.matches(\"input\")){var e=this.items.find((function(e){return!e.read}));e&&this.router.navigate([\"article\",e.id],{relativeTo:this.route})}}},{key:\"lastUnread\",value:function(){if(!document.activeElement.matches(\"input\"))for(var e=this.items.length-1;e>-1;e--){var t=this.items[e];if(!t.read)return void this.router.navigate([\"article\",t.id],{relativeTo:this.route})}}},{key:\"refresh\",value:function(){document.activeElement.matches(\"input\")||this.articleService.refreshArticles()}}]),e}()).\\u0275fac=function(e){return new(e||RI)(Io(xI),Io(EY),Io(CO))},RI.\\u0275cmp=bt({type:RI,selectors:[[\"article-list\"]],hostBindings:function(e,t){1&e&&qo(\"keydown.arrowLeft\",(function(){return t.firstUnread()}),!1,qn)(\"keydown.shift.j\",(function(){return t.firstUnread()}),!1,qn)(\"keydown.arrowRight\",(function(){return t.lastUnread()}),!1,qn)(\"keydown.shift.k\",(function(){return t.lastUnread()}),!1,qn)(\"keydown.r\",(function(){return t.refresh()}),!1,qn)},decls:4,vars:3,consts:[[3,\"items\",\"vsEnd\"],[\"scroll\",\"\"],[3,\"item\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"loader\",4,\"ngIf\"],[3,\"item\"],[1,\"loader\"]],template:function(e,t){if(1&e&&(Ho(0,\"virtual-scroller\",0,1),qo(\"vsEnd\",(function(e){return t.fetchMore(e)})),Yo(2,PI,1,1,\"list-item\",2),Yo(3,jI,2,0,\"div\",3),Fo()),2&e){var n=Eo(1);jo(\"items\",t.items),bi(2),jo(\"ngForOf\",n.viewPortItems),bi(1),jo(\"ngIf\",t.loading)}},directives:[Gx,Cd,Sd,AI],styles:['[_nghost-%COMP%]{flex-grow:1;display:flex;height:calc(100% - 64px)}virtual-scroller[_ngcontent-%COMP%]{overflow:hidden;overflow-y:auto;display:block;flex-grow:1;background:#eee}list-item[_ngcontent-%COMP%]{display:inline-block;overflow:hidden;vertical-align:top;border:0;width:calc(25% - 16px);margin:8px}@media (max-width:1350px){list-item[_ngcontent-%COMP%]{width:calc(33% - 16px)}}@media (max-width:900px){list-item[_ngcontent-%COMP%]{width:calc(50% - 16px)}}@media (max-width:600px){list-item[_ngcontent-%COMP%]{width:calc(100% - 16px)}}.loader[_ngcontent-%COMP%]{height:4em;display:block;line-height:4em;text-align:center;position:relative}.loader[_ngcontent-%COMP%]:before{content:\" \";position:absolute;top:0;left:0;width:20%;height:2px;background:red;-webkit-animation:loader-animation 2s ease-out infinite;animation:loader-animation 2s ease-out infinite}@-webkit-keyframes loader-animation{0%{transform:translate(0)}to{transform:translate(500%)}}@keyframes loader-animation{0%{transform:translate(0)}to{transform:translate(500%)}}']}),RI),UI=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new BI(e))}}]),e}(),BI=function(e){_inherits(n,e);var t=_createSuper(n);function n(){return _classCallCheck(this,n),t.apply(this,arguments)}return _createClass(n,[{key:\"_next\",value:function(e){}}]),n}(p),qI=((HI=function(){function e(t,n){var r=this;_classCallCheck(this,e),this.api=t,this.tokenService=n;var i=this.tokenService.tokenObservable().pipe(Pk((function(e){return r.api.get(\"features\").pipe(F((function(e){return e.features})))})),cI(1));i.connect(),this.features=i}return _createClass(e,[{key:\"getFeatures\",value:function(){return this.features}}]),e}()).\\u0275fac=function(e){return new(e||HI)(et(wE),et(DE))},HI.\\u0275prov=_e({token:HI,factory:HI.\\u0275fac,providedIn:\"root\"}),HI),GI=[\"carousel\"];function $I(e,t){if(1&e&&(Ho(0,\"div\",17),Ls(1),Fo()),2&e){var n=Zo(2).$implicit;bi(1),xs(\" \",n.feed,\" \")}}function JI(e,t){if(1&e){var n=Wo();Ho(0,\"div\",18),Ho(1,\"button\",19),qo(\"click\",(function(){nn(n);var e=Zo(2).$implicit;return Zo().formatArticle(e)})),ru(2,NI),Fo(),Fo()}}function KI(e,t){if(1&e){var n=Wo();Ho(0,\"div\",18),Ho(1,\"button\",19),qo(\"click\",(function(){nn(n);var e=Zo(2).$implicit;return Zo().summarizeArticle(e)})),ru(2,zI),Fo(),Fo()}}function ZI(e,t){if(1&e){var n=Wo();Ho(0,\"div\",4),Ho(1,\"h3\",5),Ho(2,\"button\",6),qo(\"click\",(function(){nn(n);var e=Zo().$implicit;return Zo().favorArticle(e)})),Ho(3,\"mat-icon\"),Ls(4),Fo(),Fo(),Ho(5,\"a\",7),qo(\"click\",(function(){return nn(n),Zo(2).viewActive()})),Fo(),Fo(),Ho(6,\"div\",8),Yo(7,$I,2,1,\"div\",9),Ho(8,\"div\",10),Ls(9),Fo(),Ho(10,\"div\",11),Ls(11),Fo(),Fo(),No(12,\"p\",12),Ho(13,\"div\",13),Ho(14,\"div\",14),Ho(15,\"a\",15),qo(\"click\",(function(){return nn(n),Zo(2).viewActive()})),ru(16,FI),Fo(),Fo(),Yo(17,JI,3,0,\"div\",16),Yo(18,KI,3,0,\"div\",16),Fo(),Fo()}if(2&e){var r=Zo().$implicit,i=Zo();bi(4),xs(\" \",r.favorite?\"bookmark\":\"bookmark_border\",\" \"),bi(1),rs(\"href\",r.link,ni),jo(\"innerHTML\",r.title,ei),bi(1),fs(\"read\",r.read),bi(1),jo(\"ngIf\",r.feed),bi(2),xs(\" \",i.index,\" \"),bi(2),xs(\" \",r.time,\" \"),bi(1),jo(\"innerHTML\",r.formatted,ei),bi(3),rs(\"href\",r.link,ni),bi(2),jo(\"ngIf\",i.canExtract),bi(1),jo(\"ngIf\",i.canExtract)}}function QI(e,t){1&e&&Yo(0,ZI,19,12,\"ng-template\",3),2&e&&jo(\"id\",t.$implicit.id.toString())}FI=$localize(_templateObject64()),NI=$localize(_templateObject65()),zI=$localize(_templateObject66());var XI,eA,tA,nA,rA,iA,aA,oA,sA=function(e){return e[e.DESCRIPTION=0]=\"DESCRIPTION\",e[e.FORMAT=1]=\"FORMAT\",e[e.SUMMARY=2]=\"SUMMARY\",e}({}),lA=((eA=function(){function e(t,n,r,i,a,o){_classCallCheck(this,e),this.route=n,this.router=r,this.articleService=i,this.featuresService=a,this.sanitizer=o,this.slides=[],this.offset=new x,this.stateChange=new tT([-1,sA.DESCRIPTION]),this.states=new Map,this.subscriptions=new Array,t.interval=0,t.wrap=!1,t.keyboard=!1}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.subscriptions.push(this.articleService.articleObservable().pipe(Pk((function(t){return e.stateChange.pipe(Pk((function(t){return e.offset.pipe(sv(0),F((function(e){return[e,t]})))})),F((function(n){var r=_slicedToArray(n,2),i=r[0],a=r[1],o=e.route.snapshot.params.articleID,s=[],l=t.findIndex((function(e){return e.id==o}));return-1==l?null:(0!=i&&(l+i!=-1&&l+i0&&s.push(t[l-1]),s.push(t[l]),l+10&&e[--n].read;);return e[n].read?t:e[n].id})),cp(1),Gd((function(e){return e!=t})),U((function(t){return W(e.router.navigate([\"../\",t],{relativeTo:e.route})).pipe(F((function(e){return t})))}))).subscribe((function(t){e.stateChange.next([t,sA.DESCRIPTION])}))}},{key:\"nextUnread\",value:function(){var e=this,t=this.route.snapshot.params.articleID;this.articleService.articleObservable().pipe(F((function(e){for(var n=e.findIndex((function(e){return e.id==t}));n
  • ')+e.keyPoints.join(\"
  • \")+\"
\"}},{key:\"getState\",value:function(e){return this.states.has(e)?this.states.get(e):sA.DESCRIPTION}},{key:\"setFormat\",value:function(e,t){var n=this,r=this.active;t!=sA.DESCRIPTION?(e.format?Bd(e.format):this.articleService.formatArticle(r.id)).subscribe((function(e){r.format=e,n.stateChange.next([r.id,t])}),(function(e){return console.log(e)})):this.stateChange.next([r.id,t])}},{key:\"formatSource\",value:function(e){return e.replace(\"0){var i=new Map;n.forEach((function(e){i.set(e.id,e)})),e.tags=r.map((function(e){return new bA(e.tag.id,\"/tag/\"+e.tag.id,e.tag.value,e.ids.map((function(e){return new kA(e,\"\".concat(e),i.get(e).title,i.get(e).link)})))})),e.tags.forEach((function(t){return e.collapses.set(t.id,!1)}))}}),(function(e){return console.log(e)}))}},{key:\"favicon\",value:function(e){return this.faviconService.iconURL(e)}}]),e}()).\\u0275fac=function(e){return new(e||_A)(Io(_I),Io(pI),Io(qI),Io(uA))},_A.\\u0275cmp=bt({type:_A,selectors:[[\"side-bar\"]],decls:22,vars:5,consts:[[\"color\",\"primary\"],[1,\"content\"],[\"mat-button\",\"\",\"routerLink\",\"/feed/favorite\"],[\"class\",\"group\",4,\"ngIf\"],[1,\"group\"],[1,\"category\"],[\"mat-button\",\"\",1,\"expander\",3,\"click\"],[\"mat-button\",\"\",\"routerLink\",\"/feed\"],[1,\"items\",3,\"ngbCollapse\"],[\"mat-button\",\"\",3,\"routerLink\",4,\"ngFor\",\"ngForOf\"],[\"class\",\"group\",4,\"ngFor\",\"ngForOf\"],[\"mat-button\",\"\",\"routerLink\",\"/settings\"],[\"mat-button\",\"\",\"routerLink\",\"/login\"],[\"mat-button\",\"\",\"routerLink\",\"/feed/popular\"],[\"mat-button\",\"\",3,\"routerLink\"],[1,\"favicon\",3,\"src\"]],template:function(e,t){1&e&&(Ho(0,\"mat-toolbar\",0),ru(1,tA),Fo(),Ho(2,\"div\",1),Ho(3,\"a\",2),ru(4,nA),Fo(),Yo(5,hA,10,4,\"div\",3),No(6,\"hr\"),Ho(7,\"div\",4),Ho(8,\"div\",5),Ho(9,\"button\",6),qo(\"click\",(function(){return t.collapses.__all=!t.collapses.__all})),Ho(10,\"mat-icon\"),Ls(11),Fo(),Fo(),Ho(12,\"a\",7),ru(13,rA),Fo(),Fo(),Ho(14,\"div\",8),Yo(15,fA,3,3,\"a\",9),Fo(),Fo(),Yo(16,pA,9,5,\"div\",10),No(17,\"hr\"),Ho(18,\"a\",11),ru(19,iA),Fo(),Ho(20,\"a\",12),ru(21,aA),Fo(),Fo()),2&e&&(bi(5),jo(\"ngIf\",t.popularity),bi(6),Ts(t.collapses.__all?\"expand_less\":\"expand_more\"),bi(3),jo(\"ngbCollapse\",!t.collapses.__all),bi(1),jo(\"ngForOf\",t.allItems),bi(1),jo(\"ngForOf\",t.tags))},directives:[XL,Vb,IY,Sd,zb,FC,VT,Cd],styles:[\".content[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{margin-bottom:4px}.content[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex;font-size:16px}.items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:13px}.category[_ngcontent-%COMP%], .items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex}.category[_ngcontent-%COMP%] > .expander[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;min-width:24px;flex-shrink:1}.category[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{flex-grow:1;text-align:start}.category[_ngcontent-%COMP%] > .items[_ngcontent-%COMP%]{flex:0 1 100%}.content[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{margin:0}.favicon[_ngcontent-%COMP%]{padding-right:4px}\"]}),_A),bA=function e(t,n,r,i){_classCallCheck(this,e),this.id=t,this.link=n,this.title=r,this.items=i},kA=function e(t,n,r,i){_classCallCheck(this,e),this.id=t,this.link=n,this.title=r,this.url=i},wA=function(){function e(t){_classCallCheck(this,e),this.delayDurationSelector=t}return _createClass(e,[{key:\"call\",value:function(e,t){return t.subscribe(new CA(e,this.delayDurationSelector))}}]),e}(),CA=function(e){_inherits(n,e);var t=_createSuper(n);function n(e,r){var i;return _classCallCheck(this,n),(i=t.call(this,e)).delayDurationSelector=r,i.completed=!1,i.delayNotifierSubscriptions=[],i.index=0,i}return _createClass(n,[{key:\"notifyNext\",value:function(e,t,n,r,i){this.destination.next(e),this.removeSubscription(i),this.tryComplete()}},{key:\"notifyError\",value:function(e,t){this._error(e)}},{key:\"notifyComplete\",value:function(e){var t=this.removeSubscription(e);t&&this.destination.next(t),this.tryComplete()}},{key:\"_next\",value:function(e){var t=this.index++;try{var n=this.delayDurationSelector(e,t);n&&this.tryDelay(n,e)}catch(r){this.destination.error(r)}}},{key:\"_complete\",value:function(){this.completed=!0,this.tryComplete(),this.unsubscribe()}},{key:\"removeSubscription\",value:function(e){e.unsubscribe();var t=this.delayNotifierSubscriptions.indexOf(e);return-1!==t&&this.delayNotifierSubscriptions.splice(t,1),e.outerValue}},{key:\"tryDelay\",value:function(e,t){var n=R(this,e,t);n&&!n.closed&&(this.destination.add(n),this.delayNotifierSubscriptions.push(n))}},{key:\"tryComplete\",value:function(){this.completed&&0===this.delayNotifierSubscriptions.length&&this.destination.complete()}}]),n}(H),MA=[\"search\"];function SA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){return nn(n),Zo().up()})),Ho(1,\"mat-icon\"),Ls(2,\"keyboard_backspace\"),Fo(),Fo()}}function LA(e,t){1&e&&(Ho(0,\"span\"),ru(1,vA),Fo())}function TA(e,t){1&e&&No(0,\"span\",12)}function xA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){nn(n),Zo();var e=Eo(3);return Zo().searchQuery=\"\",e.focus()})),Ho(1,\"mat-icon\"),Ls(2,\"clear\"),Fo(),Fo()}}function DA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){nn(n);var e=Zo(2);return e.performSearch(e.searchQuery)})),Ho(1,\"mat-icon\"),Ls(2,\"keyboard_return\"),Fo(),Fo()}}function OA(e,t){if(1&e){var n=Wo();Ho(0,\"div\",13),Yo(1,xA,3,0,\"button\",0),Ho(2,\"input\",14,15),qo(\"ngModelChange\",(function(e){return nn(n),Zo().searchQuery=e})),Fo(),Yo(4,DA,3,0,\"button\",0),Fo()}if(2&e){var r=Zo();bi(1),jo(\"ngIf\",r.searchQuery),bi(1),jo(\"ngModel\",r.searchQuery),bi(2),jo(\"ngIf\",r.searchQuery)}}function YA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){nn(n);var e=Zo();return e.searchEntry=!e.searchEntry})),Ho(1,\"mat-icon\"),Ls(2,\"search\"),Fo(),Fo()}}function EA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",11),qo(\"click\",(function(){return nn(n),Zo().refresh()})),Ho(1,\"mat-icon\"),Ls(2,\"refresh\"),Fo(),Fo()}}function IA(e,t){if(1&e){var n=Wo();Ho(0,\"mat-checkbox\",16),qo(\"ngModelChange\",(function(e){return nn(n),Zo().articleRead=e}))(\"click\",(function(){return nn(n),Zo().toggleRead()})),ru(1,gA),Fo()}2&e&&jo(\"ngModel\",Zo().articleRead)}function AA(e,t){1&e&&(Ho(0,\"button\",17),Ho(1,\"mat-icon\"),Ls(2,\"share\"),Fo(),Fo()),2&e&&(Zo(),jo(\"matMenuTriggerFor\",Eo(9)))}function PA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",10),qo(\"click\",(function(){nn(n);var e=t.$implicit;return Zo().shareArticleTo(e)})),Ls(1),Fo()}if(2&e){var r=t.$implicit;bi(1),xs(\" \",r.description,\" \")}}function jA(e,t){1&e&&(Ho(0,\"button\",17),Ho(1,\"mat-icon\"),Ls(2,\"more_vert\"),Fo(),Fo()),2&e&&(Zo(),jo(\"matMenuTriggerFor\",Eo(13)))}function RA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",10),qo(\"click\",(function(){return nn(n),Zo().toggleOlderFirst()})),Ho(1,\"span\"),Ls(2,\"Older first\"),Fo(),Fo()}}function HA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",10),qo(\"click\",(function(){return nn(n),Zo().toggleOlderFirst()})),Ho(1,\"span\"),Ls(2,\"Newer first\"),Fo(),Fo()}}function FA(e,t){if(1&e){var n=Wo();Ho(0,\"button\",10),qo(\"click\",(function(){return nn(n),Zo().markAsRead()})),Ho(1,\"span\"),Ls(2,\"Mark all as read\"),Fo(),Fo()}}vA=$localize(_templateObject73()),gA=$localize(_templateObject74());var NA,zA,VA,WA,UA=((VA=function(){function e(t,n,r,i,a,o){_classCallCheck(this,e),this.articleService=t,this.featuresServices=n,this.preferences=r,this.router=i,this.location=a,this.sharingService=o,this.olderFirst=!1,this.showsArticle=!1,this.articleRead=!1,this.searchButton=!1,this.markAllRead=!1,this.inSearch=!1,this.enabledShares=!1,this.shareServices=new Array,this._searchQuery=\"\",this._searchEntry=!1,this.subscriptions=new Array,this.searchQuery=localStorage.getItem(e.key)||\"\"}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this,t=zE(this.router);this.subscriptions.push(t.pipe(F((function(e){return null!=e}))).subscribe((function(t){return e.showsArticle=t}))),this.articleID=t.pipe(F((function(e){return null==e?-1:+e.params.articleID})),Ck(),Gk(1)),this.subscriptions.push(this.articleID.pipe(Pk((function(t){if(-1==t)return Bd(!1);var n,r=!0;return e.articleService.articleObservable().pipe(F((function(e){var n,r=_createForOfIteratorHelper(e);try{for(r.s();!(n=r.n()).done;){var i=n.value;if(i.id==t)return i.read}}catch(a){r.e(a)}finally{r.f()}return!1})),(n=function(e){return e&&!r?Dk(1e3):(r=!1,Dk(0))},function(e){return e.lift(new wA(n))}))}))).subscribe((function(t){return e.articleRead=t}),(function(e){return console.log(e)}))),this.subscriptions.push(FE(this.router).pipe(F((function(e){return null!=e&&\"search\"==e.data.primary}))).subscribe((function(t){return e.inSearch=t}),(function(e){return console.log(e)}))),this.subscriptions.push(this.featuresServices.getFeatures().pipe(Gd((function(e){return e.search})),Pk((function(n){return t.pipe(F((function(e){return null==e})),Ck(),WE(FE(e.router),(function(t,n){var r=!1,i=!1,a=!1;if(t)switch(NE([e.router.routerState.snapshot.root]).data.primary){case\"favorite\":a=!0;case\"popular\":break;case\"search\":i=!0;default:r=!0,a=!0}return[r,i,a]})))}))).subscribe((function(t){e.searchButton=t[0],e.searchEntry=t[1],e.markAllRead=t[2]}),(function(e){return console.log(e)}))),this.subscriptions.push(this.sharingService.enabledServices().subscribe((function(t){e.enabledShares=t.length>0,e.shareServices=t}),(function(e){return console.log(e)})))}},{key:\"ngOnDestroy\",value:function(){this.subscriptions.forEach((function(e){return e.unsubscribe()}))}},{key:\"toggleOlderFirst\",value:function(){this.preferences.olderFirst=!this.preferences.olderFirst,this.olderFirst=this.preferences.olderFirst}},{key:\"toggleUnreadOnly\",value:function(){this.preferences.unreadOnly=!this.preferences.unreadOnly}},{key:\"markAsRead\",value:function(){this.articleService.readAll()}},{key:\"up\",value:function(){var e=this.location.path(),t=e.indexOf(\"/article/\");-1!=t?this.router.navigateByUrl(e.substring(0,t)):this.inSearch&&this.router.navigateByUrl(e.substring(0,e.indexOf(\"/search/\")))}},{key:\"toggleRead\",value:function(){var e=this;this.articleID.pipe(cp(1),Pk((function(t){return-1==t&&up(),e.articleService.articleObservable().pipe(F((function(e){var n,r=_createForOfIteratorHelper(e);try{for(r.s();!(n=r.n()).done;){var i=n.value;if(i.id==t)return i}}catch(a){r.e(a)}finally{r.f()}return null})),cp(1))})),U((function(t){return e.articleService.read(t.id,!t.read)}))).subscribe((function(e){}),(function(e){return console.log(e)}))}},{key:\"keyEnter\",value:function(){this.searchEntry&&this.searchQuery&&this.performSearch(this.searchQuery)}},{key:\"performSearch\",value:function(e){if(\"search\"==NE([this.router.routerState.snapshot.root]).data.primary){var t=this.location.path().indexOf(\"/search/\")+8;this.router.navigateByUrl(this.location.path().substring(0,t)+encodeURIComponent(e))}else this.router.navigateByUrl(this.location.path()+\"/search/\"+encodeURIComponent(e))}},{key:\"refresh\",value:function(){this.articleService.refreshArticles()}},{key:\"shareArticleTo\",value:function(e){var t=this;this.articleID.pipe(cp(1),Gd((function(e){return-1!=e})),Pk((function(e){return t.articleService.articleObservable().pipe(F((function(t){return t.filter((function(t){return t.id==e}))})),Gd((function(e){return e.length>0})),F((function(e){return e[0]})))})),cp(1)).subscribe((function(n){return t.sharingService.submit(e.id,n)}))}},{key:\"searchEntry\",get:function(){return this._searchEntry},set:function(e){var t=this;this._searchEntry=e,e&&setTimeout((function(){t.searchInput.nativeElement.focus()}),10)}},{key:\"searchQuery\",get:function(){return this._searchQuery},set:function(t){this._searchQuery=t,localStorage.setItem(e.key,t)}}]),e}()).key=\"searchQuery\",VA.\\u0275fac=function(e){return new(e||VA)(Io(xI),Io(qI),Io(gI),Io(EY),Io(ud),Io(qE))},VA.\\u0275cmp=bt({type:VA,selectors:[[\"ng-component\"]],viewQuery:function(e,t){var n;1&e&&Iu(MA,!0),2&e&&Yu(n=Hu())&&(t.searchInput=n.first)},hostBindings:function(e,t){1&e&&qo(\"keydown.enter\",(function(){return t.keyEnter()}))},decls:20,vars:13,consts:[[\"mat-icon-button\",\"\",3,\"click\",4,\"ngIf\"],[4,\"ngIf\"],[\"class\",\"spacer\",4,\"ngIf\"],[\"class\",\"input-group\",4,\"ngIf\"],[3,\"ngModel\",\"ngModelChange\",\"click\",4,\"ngIf\"],[\"mat-icon-button\",\"\",3,\"matMenuTriggerFor\",4,\"ngIf\"],[\"shares\",\"matMenu\"],[\"mat-menu-item\",\"\",3,\"click\",4,\"ngFor\",\"ngForOf\"],[\"other\",\"matMenu\"],[\"mat-menu-item\",\"\",3,\"click\",4,\"ngIf\"],[\"mat-menu-item\",\"\",3,\"click\"],[\"mat-icon-button\",\"\",3,\"click\"],[1,\"spacer\"],[1,\"input-group\"],[\"matInput\",\"\",\"focused\",\"\",1,\"spacer\",\"search\",\"mat-toolbar\",\"mat-primary\",\"form-control\",3,\"ngModel\",\"ngModelChange\"],[\"search\",\"\"],[3,\"ngModel\",\"ngModelChange\",\"click\"],[\"mat-icon-button\",\"\",3,\"matMenuTriggerFor\"]],template:function(e,t){1&e&&(Yo(0,SA,3,0,\"button\",0),Yo(1,LA,2,0,\"span\",1),Yo(2,TA,1,0,\"span\",2),Yo(3,OA,5,3,\"div\",3),Yo(4,YA,3,0,\"button\",0),Yo(5,EA,3,0,\"button\",0),Yo(6,IA,2,1,\"mat-checkbox\",4),Yo(7,AA,3,1,\"button\",5),Ho(8,\"mat-menu\",null,6),Yo(10,PA,2,1,\"button\",7),Fo(),Yo(11,jA,3,1,\"button\",5),Ho(12,\"mat-menu\",null,8),Yo(14,RA,3,0,\"button\",9),Yo(15,HA,3,0,\"button\",9),Ho(16,\"button\",10),qo(\"click\",(function(){return t.toggleUnreadOnly()})),Ho(17,\"span\"),Ls(18,\"Unread only\"),Fo(),Fo(),Yo(19,FA,3,0,\"button\",9),Fo()),2&e&&(jo(\"ngIf\",t.showsArticle||t.inSearch),bi(1),jo(\"ngIf\",!t.searchEntry),bi(1),jo(\"ngIf\",!t.searchEntry),bi(1),jo(\"ngIf\",t.searchEntry),bi(1),jo(\"ngIf\",t.searchButton),bi(1),jo(\"ngIf\",!t.showsArticle),bi(1),jo(\"ngIf\",t.showsArticle),bi(1),jo(\"ngIf\",t.showsArticle&&t.enabledShares),bi(3),jo(\"ngForOf\",t.shareServices),bi(1),jo(\"ngIf\",!t.showsArticle),bi(3),jo(\"ngIf\",!t.olderFirst),bi(1),jo(\"ngIf\",t.olderFirst),bi(4),jo(\"ngIf\",!t.inSearch&&t.markAllRead))},directives:[Sd,hS,Cd,oS,zb,FC,HM,$h,rf,Cm,dk,_S],styles:[\"[_nghost-%COMP%]{display:flex;align-items:center}.spacer[_ngcontent-%COMP%], [_nghost-%COMP%]{flex:1 1 auto}.search[_ngcontent-%COMP%]{min-height:0;border:none;background:transparent} label{margin-bottom:0}\"]}),VA),BA=((zA=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"ngOnInit\",value:function(){}}]),e}()).\\u0275fac=function(e){return new(e||zA)},zA.\\u0275cmp=bt({type:zA,selectors:[[\"settings-container\"]],decls:2,vars:0,consts:[[1,\"container\"]],template:function(e,t){1&e&&(Ho(0,\"div\",0),No(1,\"router-outlet\"),Fo())},directives:[NY],styles:[\"[_nghost-%COMP%]{overflow:auto}\"]}),zA),qA=((NA=function(){function e(t){_classCallCheck(this,e),this.api=t,this.user=this.api.get(\"user/current\").pipe(F((function(e){return e.user})),Gk(1))}return _createClass(e,[{key:\"getCurrentUser\",value:function(){return this.user}},{key:\"changeUserPassword\",value:function(e,t){return this.setUserSetting(\"password\",e,{current:t})}},{key:\"setUserSetting\",value:function(e,t,n){var r=\"value=\".concat(encodeURIComponent(t));if(n)for(var i in n)r+=\"&\".concat(i,\"=\").concat(encodeURIComponent(n[i]));return this.api.put(\"user/settings/\".concat(e),r,new Qd({\"Content-Type\":\"application/x-www-form-urlencoded\"})).pipe(F((function(e){return e.success})))}},{key:\"list\",value:function(){return this.api.get(\"user\").pipe(F((function(e){return e.users})))}},{key:\"addUser\",value:function(e,t){var n=new FormData;return n.append(\"login\",e),n.append(\"password\",t),this.api.post(\"user\",n).pipe(F((function(e){return e.success})))}},{key:\"deleteUser\",value:function(e){return this.api.delete(\"user/\".concat(e)).pipe(F((function(e){return e.success})))}},{key:\"toggleActive\",value:function(e,t){return this.api.put(\"user/\".concat(e,\"/settings/is-active\"),\"value=\".concat(t),new Qd({\"Content-Type\":\"application/x-www-form-urlencoded\"})).pipe(F((function(e){return e.success})))}}]),e}()).\\u0275fac=function(e){return new(e||NA)(et(wE))},NA.\\u0275prov=_e({token:NA,factory:NA.\\u0275fac,providedIn:\"root\"}),NA);WA=$localize(_templateObject75());var GA,$A,JA,KA=[\"placeholder\",$localize(_templateObject76())],ZA=[\"placeholder\",$localize(_templateObject77())],QA=[\"placeholder\",$localize(_templateObject78())],XA=[\"placeholder\",$localize(_templateObject79())];function eP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,$A),Fo())}GA=$localize(_templateObject80()),$A=$localize(_templateObject81()),JA=$localize(_templateObject82());var tP,nP,rP,iP=[\"placeholder\",$localize(_templateObject83())],aP=[\"placeholder\",$localize(_templateObject84())];function oP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,nP),Fo())}function sP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,rP),Fo())}tP=$localize(_templateObject85()),nP=$localize(_templateObject86()),rP=$localize(_templateObject87());var lP,uP,cP,dP,hP=((uP=function(){function e(t,n){_classCallCheck(this,e),this.userService=t,this.dialog=n,this.emailFormControl=new cm(\"\",[cf.email]),this.language=localStorage.getItem(\"locale\")||\"en\"}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.userService.getCurrentUser().subscribe((function(t){e.firstName=t.firstName,e.lastName=t.lastName,e.emailFormControl.setValue(t.email)}),(function(e){return console.log(e)}))}},{key:\"firstNameChange\",value:function(){this.userService.setUserSetting(\"first-name\",this.firstName).subscribe((function(){}),(function(e){return console.log(e)}))}},{key:\"lastNameChange\",value:function(){this.userService.setUserSetting(\"last-name\",this.lastName).subscribe((function(){}),(function(e){return console.log(e)}))}},{key:\"emailChange\",value:function(){var e=this;this.emailFormControl.updateValueAndValidity(),this.emailFormControl.valid&&this.userService.setUserSetting(\"email\",this.emailFormControl.value).subscribe((function(t){t||e.emailFormControl.setErrors({email:!0})}),(function(e){return console.log(e)}))}},{key:\"languageChange\",value:function(e){location.href=\"/\"+e+\"/\"}},{key:\"changePassword\",value:function(){this.dialog.open(fP,{width:\"250px\"})}}]),e}()).\\u0275fac=function(e){return new(e||uP)(Io(qA),Io(fC))},uP.\\u0275cmp=bt({type:uP,selectors:[[\"settings-general\"]],decls:26,vars:7,consts:[[1,\"title\"],[\"matInput\",\"\",3,\"ngModel\",\"ngModelChange\",\"change\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"email\",3,\"formControl\",\"change\",6,\"placeholder\"],[4,\"ngIf\"],[3,\"ngModel\",\"change\",\"ngModelChange\",6,\"placeholder\"],[3,\"value\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,WA),Fo(),Ho(2,\"mat-form-field\"),Ho(3,\"input\",1),iu(4,KA),qo(\"ngModelChange\",(function(e){return t.firstName=e}))(\"change\",(function(){return t.firstNameChange()})),Fo(),Fo(),No(5,\"br\"),Ho(6,\"mat-form-field\"),Ho(7,\"input\",1),iu(8,ZA),qo(\"ngModelChange\",(function(e){return t.lastName=e}))(\"change\",(function(){return t.lastNameChange()})),Fo(),Fo(),No(9,\"br\"),Ho(10,\"mat-form-field\"),Ho(11,\"input\",2),iu(12,QA),qo(\"change\",(function(){return t.emailChange()})),Fo(),Yo(13,eP,2,0,\"mat-error\",3),Fo(),No(14,\"br\"),Ho(15,\"mat-form-field\"),Ho(16,\"mat-select\",4),iu(17,XA),qo(\"change\",(function(e){return t.languageChange(e.value)}))(\"ngModelChange\",(function(e){return t.language=e})),Ho(18,\"mat-option\",5),Ls(19,\"English\"),Fo(),Ho(20,\"mat-option\",5),Ls(21,\"\\u0411\\u044a\\u043b\\u0433\\u0430\\u0440\\u0441\\u043a\\u0438\"),Fo(),Fo(),Fo(),No(22,\"br\"),Ho(23,\"div\",6),Ho(24,\"button\",7),qo(\"click\",(function(){return t.changePassword()})),ru(25,GA),Fo(),Fo()),2&e&&(bi(3),jo(\"ngModel\",t.firstName),bi(4),jo(\"ngModel\",t.lastName),bi(4),jo(\"formControl\",t.emailFormControl),bi(2),jo(\"ngIf\",t.emailFormControl.hasError(\"email\")),bi(3),jo(\"ngModel\",t.language),bi(2),jo(\"value\",\"en\"),bi(2),jo(\"value\",\"bg\"))},directives:[EM,HM,$h,rf,Cm,Tm,Sd,GS,gb,zb,cM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),uP),fP=((lP=function(){function e(t,n){_classCallCheck(this,e),this.dialogRef=t,this.userService=n,this.currentFormControl=new cm(\"\",[cf.required]),this.passwordFormControl=new cm(\"\",[cf.required])}return _createClass(e,[{key:\"save\",value:function(){var e=this;this.passwordFormControl.value==this.passwordConfirm?(this.currentFormControl.updateValueAndValidity(),this.currentFormControl.valid&&this.userService.changeUserPassword(this.passwordFormControl.value,this.currentFormControl.value).subscribe((function(t){t?e.close():e.currentFormControl.setErrors({auth:!0})}),(function(t){400!=t.status?console.log(t):e.currentFormControl.setErrors({auth:!0})}))):this.passwordFormControl.setErrors({mismatch:!0})}},{key:\"close\",value:function(){this.dialogRef.close()}}]),e}()).\\u0275fac=function(e){return new(e||lP)(Io(lC),Io(qA))},lP.\\u0275cmp=bt({type:lP,selectors:[[\"ng-component\"]],decls:18,vars:5,consts:[[1,\"title\"],[\"matInput\",\"\",\"type\",\"password\",\"placeholder\",\"Current password\",\"required\",\"\",3,\"formControl\"],[4,\"ngIf\"],[\"matInput\",\"\",\"type\",\"password\",\"required\",\"\",3,\"formControl\",6,\"placeholder\"],[\"matInput\",\"\",\"type\",\"password\",\"required\",\"\",3,\"ngModel\",\"ngModelChange\",6,\"placeholder\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h6\",0),ru(1,JA),Fo(),Ho(2,\"mat-form-field\"),No(3,\"input\",1),Yo(4,oP,2,0,\"mat-error\",2),Fo(),No(5,\"br\"),Ho(6,\"mat-form-field\"),Ho(7,\"input\",3),iu(8,iP),Fo(),Yo(9,sP,2,0,\"mat-error\",2),Fo(),No(10,\"br\"),Ho(11,\"mat-form-field\"),Ho(12,\"input\",4),iu(13,aP),qo(\"ngModelChange\",(function(e){return t.passwordConfirm=e})),Fo(),Fo(),No(14,\"br\"),Ho(15,\"div\",5),Ho(16,\"button\",6),qo(\"click\",(function(){return t.save()})),ru(17,tP),Fo(),Fo()),2&e&&(bi(3),jo(\"formControl\",t.currentFormControl),bi(1),jo(\"ngIf\",t.currentFormControl.hasError(\"auth\")),bi(3),jo(\"formControl\",t.passwordFormControl),bi(2),jo(\"ngIf\",t.passwordFormControl.hasError(\"mismatch\")),bi(3),jo(\"ngModel\",t.passwordConfirm))},directives:[EM,HM,$h,Um,rf,Tm,Sd,Cm,zb,cM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),lP),mP=[\"opmlInput\"];cP=$localize(_templateObject88()),dP=$localize(_templateObject89());var pP,_P=[\"placeholder\",$localize(_templateObject90())];pP=$localize(_templateObject91());var vP,gP,yP,bP,kP,wP,CP,MP,SP,LP,TP=[\"placeholder\",$localize(_templateObject92())];function xP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,gP),Fo())}function DP(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,yP),Fo())}function OP(e,t){1&e&&No(0,\"mat-progress-bar\",7)}function YP(e,t){if(1&e){var n=Wo();Ho(0,\"div\"),Ho(1,\"p\"),ru(2,dP),Fo(),Ho(3,\"mat-form-field\"),Ho(4,\"input\",2),iu(5,_P),qo(\"ngModelChange\",(function(e){return nn(n),Zo().query=e}))(\"keydown.Enter\",(function(){return nn(n),Zo().search()})),Fo(),Yo(6,xP,2,0,\"mat-error\",1),Yo(7,DP,2,0,\"mat-error\",1),Fo(),No(8,\"br\"),Ho(9,\"p\"),ru(10,pP),Fo(),Ho(11,\"input\",3,4),iu(13,TP),qo(\"keydown.Enter\",(function(){return nn(n),Zo().search()})),Fo(),No(14,\"br\"),Ho(15,\"button\",5),qo(\"click\",(function(){return nn(n),Zo().search()})),ru(16,vP),Fo(),No(17,\"br\"),Yo(18,OP,1,0,\"mat-progress-bar\",6),Fo()}if(2&e){var r=Zo();bi(4),jo(\"ngModel\",r.query),bi(2),jo(\"ngIf\",r.queryFormControl.hasError(\"empty\")),bi(1),jo(\"ngIf\",r.queryFormControl.hasError(\"search\")),bi(8),jo(\"disabled\",r.loading),bi(3),jo(\"ngIf\",r.loading)}}function EP(e,t){1&e&&(Ho(0,\"p\"),ru(1,bP),Fo())}function IP(e,t){if(1&e&&(Ho(0,\"div\"),Ho(1,\"mat-checkbox\"),Ls(2),Fo(),No(3,\"br\"),Ho(4,\"a\",11),Ls(5),Fo(),No(6,\"hr\"),Fo()),2&e){var n=t.$implicit,r=Zo(2);bi(2),Ts(n.title),bi(2),rs(\"href\",r.baseURL(n.link),ni),bi(1),Ts(n.description||n.title)}}function AP(e,t){1&e&&(Ho(0,\"p\"),Ls(1,\" No feeds selected \"),Fo())}function PP(e,t){if(1&e){var n=Wo();Ho(0,\"button\",5),qo(\"click\",(function(){return nn(n),Zo(2).add()})),ru(1,kP),Fo()}2&e&&jo(\"disabled\",Zo(2).loading)}function jP(e,t){if(1&e){var n=Wo();Ho(0,\"button\",12),qo(\"click\",(function(){return nn(n),Zo(2).phase=\"query\"})),ru(1,wP),Fo()}}function RP(e,t){if(1&e&&(Ho(0,\"div\"),Yo(1,EP,2,0,\"p\",1),Yo(2,IP,7,3,\"div\",8),Yo(3,AP,2,0,\"p\",1),Yo(4,PP,2,1,\"button\",9),Yo(5,jP,2,0,\"button\",10),Fo()),2&e){var n=Zo();bi(1),jo(\"ngIf\",0==n.feeds.length),bi(1),jo(\"ngForOf\",n.feeds),bi(1),jo(\"ngIf\",n.emptySelection),bi(1),jo(\"ngIf\",n.feeds.length>0),bi(1),jo(\"ngIf\",0==n.feeds.length)}}function HP(e,t){1&e&&(Ho(0,\"p\"),ru(1,MP),Fo())}function FP(e,t){1&e&&(Ho(0,\"p\"),ru(1,SP),Fo())}function NP(e,t){if(1&e&&(Ho(0,\"div\"),Ho(1,\"p\"),ru(2,LP),Fo(),Fo()),2&e){var n=t.$implicit;bi(2),su(n.title)(n.error),lu(2)}}function zP(e,t){if(1&e){var n=Wo();Ho(0,\"div\"),Yo(1,HP,2,0,\"p\",1),Yo(2,FP,2,0,\"p\",1),Yo(3,NP,3,2,\"div\",8),Ho(4,\"button\",12),qo(\"click\",(function(){return nn(n),Zo().phase=\"query\"})),ru(5,CP),Fo(),Fo()}if(2&e){var r=Zo();bi(1),jo(\"ngIf\",!r.addFeedResult.success),bi(1),jo(\"ngIf\",r.addFeedResult.success),bi(1),jo(\"ngForOf\",r.addFeedResult.errors)}}vP=$localize(_templateObject93()),gP=$localize(_templateObject94()),yP=$localize(_templateObject95()),bP=$localize(_templateObject96()),kP=$localize(_templateObject97()),wP=$localize(_templateObject98()),CP=$localize(_templateObject99()),MP=$localize(_templateObject100()),SP=$localize(_templateObject101()),LP=$localize(_templateObject102(),\"\\ufffd0\\ufffd\",\"\\ufffd1\\ufffd\");var VP,WP,UP,BP=((VP=function(){function e(t){_classCallCheck(this,e),this.feedService=t,this.query=\"\",this.phase=\"query\",this.loading=!1,this.feeds=new Array,this.emptySelection=!1,this.queryFormControl=new cm(\"\")}return _createClass(e,[{key:\"search\",value:function(){var e=this;if(!this.loading)if(\"\"!=this.query||this.opml.nativeElement.files.length){var t;if(this.loading=!0,this.opml.nativeElement.files.length){var n=this.opml.nativeElement.files[0];t=w.create((function(e){var t=new FileReader;t.onload=function(t){e.next({opml:t.target.result,dryRun:!0}),e.complete()},t.onerror=function(t){e.error(t)},t.readAsText(n)})).pipe(U((function(t){return e.feedService.importOPML(t)})))}else t=this.feedService.discover(this.query);t.subscribe((function(t){e.loading=!1,e.phase=\"search-result\",e.feeds=t}),(function(t){e.loading=!1,e.queryFormControl.setErrors({search:!0}),console.log(t)}))}else this.queryFormControl.setErrors({empty:!0})}},{key:\"add\",value:function(){var e=this;if(!this.loading){var t=new Array;this.feedChecks.forEach((function(n,r){n.checked&&t.push(e.feeds[r].link)})),0!=t.length?(this.loading=!0,this.feedService.addFeeds(t).subscribe((function(t){e.loading=!1,e.addFeedResult=t,e.phase=\"add-result\"}),(function(t){e.loading=!1,console.log(t)}))):this.emptySelection=!0}}},{key:\"baseURL\",value:function(e){var t=document.createElement(\"a\");return t.href=e,t.pathname=\"\",t.href}}]),e}()).\\u0275fac=function(e){return new(e||VP)(Io(pI))},VP.\\u0275cmp=bt({type:VP,selectors:[[\"settings-discovery\"]],viewQuery:function(e,t){var n;1&e&&(Iu(mP,!0),Iu(dk,!0)),2&e&&(Yu(n=Hu())&&(t.opml=n.first),Yu(n=Hu())&&(t.feedChecks=n))},decls:5,vars:3,consts:[[1,\"title\"],[4,\"ngIf\"],[\"matInput\",\"\",3,\"ngModel\",\"ngModelChange\",\"keydown.Enter\",6,\"placeholder\"],[\"type\",\"file\",\"accept\",\".opml\",3,\"keydown.Enter\",6,\"placeholder\"],[\"opmlInput\",\"\"],[\"mat-raised-button\",\"\",3,\"disabled\",\"click\"],[\"mode\",\"indeterminate\",4,\"ngIf\"],[\"mode\",\"indeterminate\"],[4,\"ngFor\",\"ngForOf\"],[\"mat-raised-button\",\"\",3,\"disabled\",\"click\",4,\"ngIf\"],[\"mat-raised-button\",\"\",3,\"click\",4,\"ngIf\"],[1,\"discovery-link\",3,\"href\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,cP),Fo(),Yo(2,YP,19,5,\"div\",1),Yo(3,RP,6,5,\"div\",1),Yo(4,zP,6,3,\"div\",1)),2&e&&(bi(2),jo(\"ngIf\",\"query\"==t.phase),bi(1),jo(\"ngIf\",\"search-result\"==t.phase),bi(1),jo(\"ngIf\",\"add-result\"==t.phase))},directives:[Sd,EM,HM,$h,rf,Cm,zb,cM,CS,Cd,dk],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\"mat-form-field[_ngcontent-%COMP%]{width:100%}input[type=file][_ngcontent-%COMP%]{width:100%;border-bottom:1px solid grey;padding-bottom:4px;margin-bottom:1em}mat-progress-bar[_ngcontent-%COMP%]{margin-top:1em}.discovery-link[_ngcontent-%COMP%]{display:block;text-align:end}\"]}),VP),qP=[\"downloader\"];function GP(e,t){1&e&&(Ho(0,\"p\",7),Ls(1,\" No feeds have been added\\n\"),Fo())}WP=$localize(_templateObject103()),UP=$localize(_templateObject104());var $P,JP=[\"placeholder\",$localize(_templateObject105())];function KP(e,t){if(1&e){var n=Wo();Ho(0,\"div\",8),No(1,\"img\",9),Ho(2,\"a\",10),Ls(3),Fo(),Ho(4,\"button\",11),qo(\"click\",(function(){nn(n);var e=t.$implicit;return Zo().showError(e[0].updateError)})),Ho(5,\"mat-icon\"),Ls(6,\"warning\"),Fo(),Fo(),Ho(7,\"mat-form-field\",12),Ho(8,\"input\",13),iu(9,JP),qo(\"change\",(function(e){nn(n);var r=t.$implicit;return Zo().tagsChange(e,r[0].id)})),Fo(),Fo(),Ho(10,\"button\",14),qo(\"click\",(function(e){nn(n);var r=t.$implicit;return Zo().deleteFeed(e,r[0].id)})),Ho(11,\"mat-icon\"),Ls(12,\"delete\"),Fo(),Fo(),Fo()}if(2&e){var r=t.$implicit,i=Zo();bi(1),rs(\"src\",i.favicon(r[0].link),ni),bi(1),rs(\"href\",r[0].link,ni),bi(1),Ts(r[0].title),bi(1),fs(\"visible\",r[0].updateError),bi(4),rs(\"value\",r[1].join(\", \"))}}function ZP(e,t){if(1&e&&(Ho(0,\"li\"),Ls(1),Fo()),2&e){var n=t.$implicit;bi(1),Ts(n)}}$P=$localize(_templateObject106());var QP,XP,ej,tj,nj,rj,ij,aj,oj,sj,lj,uj,cj,dj,hj,fj,mj=((XP=function(){function e(t,n,r,i){_classCallCheck(this,e),this.feedService=t,this.tagService=n,this.faviconService=r,this.errorDialog=i,this.feeds=new Array}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.feedService.getFeeds().pipe(WE(this.tagService.getTagsFeedIDs(),(function(e,t){var n,r=new Map,i=_createForOfIteratorHelper(t);try{for(i.s();!(n=i.n()).done;){var a,o=n.value,s=_createForOfIteratorHelper(o.ids);try{for(s.s();!(a=s.n()).done;){var l=a.value;r.has(l)?r.get(l).push(o.tag.value):r.set(l,[o.tag.value])}}catch(u){s.e(u)}finally{s.f()}}}catch(u){i.e(u)}finally{i.f()}return e.map((function(e){return[e,r.get(e.id)||[]]}))}))).subscribe((function(t){return e.feeds=t||[]}),(function(e){return console.log(e)}))}},{key:\"favicon\",value:function(e){return this.faviconService.iconURL(e)}},{key:\"tagsChange\",value:function(e,t){this.feedService.updateTags(t,e.target.value.split(\",\").map((function(e){return e.trim()}))).subscribe((function(e){}),(function(e){return console.log(e)}))}},{key:\"showError\",value:function(e){this.errorDialog.open(pj,{width:\"300px\",data:e.split(\"\\n\").filter((function(e){return e}))})}},{key:\"deleteFeed\",value:function(e,t){this.feedService.deleteFeed(t).subscribe((function(t){if(t){for(var n=e.target.parentNode;(n=n.parentElement)&&!n.classList.contains(\"feed\"););n.parentNode.removeChild(n)}}),(function(e){return console.log(e)}))}},{key:\"exportOPML\",value:function(){var e=this;this.feedService.exportOPML().subscribe((function(t){e.downloader.nativeElement.href=\"data:text/x-opml+xml,\"+encodeURIComponent(t),e.downloader.nativeElement.click()}),(function(e){return console.log(e)}))}}]),e}()).\\u0275fac=function(e){return new(e||XP)(Io(pI),Io(_I),Io(uA),Io(fC))},XP.\\u0275cmp=bt({type:XP,selectors:[[\"settings-management\"]],viewQuery:function(e,t){var n;1&e&&Iu(qP,!0,Qs),2&e&&Yu(n=Hu())&&(t.downloader=n.first)},decls:9,vars:2,consts:[[1,\"title\"],[\"u18n\",\"\",4,\"ngIf\"],[\"class\",\"feed\",4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"hidden\",\"\",\"download\",\"feeds.opml\"],[\"downloader\",\"\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"u18n\",\"\"],[1,\"feed\"],[1,\"favicon\",3,\"src\"],[1,\"name\",3,\"href\"],[\"mat-icon-button\",\"\",1,\"error\",3,\"click\"],[1,\"tags\"],[\"matInput\",\"\",3,\"value\",\"change\",6,\"placeholder\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,WP),Fo(),Yo(2,GP,2,0,\"p\",1),Yo(3,KP,13,6,\"div\",2),Ho(4,\"div\",3),No(5,\"a\",4,5),Ho(7,\"button\",6),qo(\"click\",(function(){return t.exportOPML()})),ru(8,UP),Fo(),Fo()),2&e&&(bi(2),jo(\"ngIf\",0==t.feeds.length),bi(1),jo(\"ngForOf\",t.feeds))},directives:[Sd,Cd,zb,FC,EM,HM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".feed[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.favicon[_ngcontent-%COMP%]{width:16px;height:16px;margin-right:5px;flex-shrink:1}.name[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{flex:1 0 0;min-width:250px}.tags[_ngcontent-%COMP%]{width:auto}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}\"]}),XP),pj=((QP=function(){function e(t,n){_classCallCheck(this,e),this.dialogRef=t,this.errors=n}return _createClass(e,[{key:\"close\",value:function(){this.dialogRef.close()}}]),e}()).\\u0275fac=function(e){return new(e||QP)(Io(lC),Io(uC))},QP.\\u0275cmp=bt({type:QP,selectors:[[\"error-dialog\"]],decls:5,vars:1,consts:[[2,\"max-height\",\"85vh\",\"overflow\",\"auto\"],[4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"ul\",0),Yo(1,ZP,2,1,\"li\",1),Fo(),Ho(2,\"div\",2),Ho(3,\"button\",3),qo(\"click\",(function(){return t.close()})),ru(4,$P),Fo(),Fo()),2&e&&(bi(1),jo(\"ngForOf\",t.errors))},directives:[Cd,zb],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".feed[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.favicon[_ngcontent-%COMP%]{width:16px;height:16px;margin-right:5px;flex-shrink:1}.name[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{flex:1 0 0;min-width:250px}.tags[_ngcontent-%COMP%]{width:auto}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%], .tags[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}\"]}),QP);function _j(e,t){1&e&&(Ho(0,\"p\"),ru(1,nj),Fo())}function vj(e,t){1&e&&(Ho(0,\"span\"),ru(1,ij),Fo())}function gj(e,t){1&e&&(Ho(0,\"span\"),ru(1,aj),Fo())}function yj(e,t){if(1&e&&(Ho(0,\"span\"),Yo(1,vj,2,0,\"span\",1),Yo(2,gj,2,0,\"span\",1),Ho(3,\"span\",13),Ls(4),Fo(),Ho(5,\"span\",14),ru(6,rj),Fo(),Fo()),2&e){var n=Zo().$implicit;bi(1),jo(\"ngIf\",!n.inverseURL),bi(1),jo(\"ngIf\",n.inverseURL),bi(2),Ts(n.urlTerm)}}function bj(e,t){1&e&&(Ho(0,\"span\",15),Ls(1,\" and \"),Fo())}function kj(e,t){1&e&&(Ho(0,\"span\"),ru(1,sj),Fo())}function wj(e,t){1&e&&(Ho(0,\"span\"),ru(1,lj),Fo())}function Cj(e,t){if(1&e&&(Ho(0,\"span\"),Yo(1,kj,2,0,\"span\",1),Yo(2,wj,2,0,\"span\",1),Ho(3,\"span\",13),Ls(4),Fo(),Ho(5,\"span\",16),ru(6,oj),Fo(),Fo()),2&e){var n=Zo().$implicit;bi(1),jo(\"ngIf\",!n.inverseTitle),bi(1),jo(\"ngIf\",n.inverseTitle),bi(2),Ts(n.titleTerm)}}function Mj(e,t){1&e&&(Ho(0,\"span\",17),ru(1,uj),Fo())}function Sj(e,t){1&e&&(Ho(0,\"span\",18),ru(1,cj),Fo())}function Lj(e,t){1&e&&(Ho(0,\"span\",17),ru(1,dj),Fo())}function Tj(e,t){1&e&&(Ho(0,\"span\",18),ru(1,hj),Fo())}function xj(e,t){if(1&e&&(Ho(0,\"span\",19),Ls(1),Fo()),2&e){var n=Zo().$implicit,r=Zo();bi(1),Ts(r.tagLabel(n.tagID))}}function Dj(e,t){if(1&e&&(Ho(0,\"span\",20),Ls(1),Fo()),2&e){var n=Zo().$implicit,r=Zo();bi(1),Ts(r.feedsLabel(n.feedIDs))}}function Oj(e,t){if(1&e){var n=Wo();Ho(0,\"div\",5),Ho(1,\"div\",6),Yo(2,yj,7,3,\"span\",1),Yo(3,bj,2,0,\"span\",7),Yo(4,Cj,7,3,\"span\",1),Yo(5,Mj,2,0,\"span\",8),Yo(6,Sj,2,0,\"span\",9),Yo(7,Lj,2,0,\"span\",8),Yo(8,Tj,2,0,\"span\",9),Yo(9,xj,2,1,\"span\",10),Yo(10,Dj,2,1,\"span\",11),Fo(),Ho(11,\"button\",12),qo(\"click\",(function(e){nn(n);var r=t.$implicit;return Zo().deleteFilter(e,r)})),Ho(12,\"mat-icon\"),Ls(13,\"delete\"),Fo(),Fo(),Fo()}if(2&e){var r=t.$implicit;bi(2),jo(\"ngIf\",r.urlTerm),bi(1),jo(\"ngIf\",r.urlTerm&&r.titleTerm),bi(1),jo(\"ngIf\",r.titleTerm),bi(1),jo(\"ngIf\",r.inverseFeeds&&r.tagID),bi(1),jo(\"ngIf\",r.inverseFeeds&&r.feedIDs&&!r.tagID),bi(1),jo(\"ngIf\",r.tagID),bi(1),jo(\"ngIf\",r.feedIDs&&!r.tagID),bi(1),jo(\"ngIf\",r.tagID),bi(1),jo(\"ngIf\",r.feedIDs)}}ej=$localize(_templateObject107()),tj=$localize(_templateObject108()),nj=$localize(_templateObject109()),rj=$localize(_templateObject110()),ij=$localize(_templateObject111()),aj=$localize(_templateObject112()),oj=$localize(_templateObject113()),sj=$localize(_templateObject114()),lj=$localize(_templateObject115()),uj=$localize(_templateObject116()),cj=$localize(_templateObject117()),dj=$localize(_templateObject118()),hj=$localize(_templateObject119()),fj=$localize(_templateObject120());var Yj,Ej=[\"placeholder\",$localize(_templateObject121())];Yj=$localize(_templateObject122());var Ij,Aj,Pj,jj,Rj,Hj,Fj,Nj,zj=[\"placeholder\",$localize(_templateObject123())];function Vj(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,Hj),Fo())}function Wj(e,t){1&e&&(Ho(0,\"span\"),ru(1,Fj),Fo())}function Uj(e,t){1&e&&(Ho(0,\"span\"),ru(1,Nj),Fo())}Ij=$localize(_templateObject124()),Aj=$localize(_templateObject125()),Pj=$localize(_templateObject126()),jj=$localize(_templateObject127()),Rj=$localize(_templateObject128()),Hj=$localize(_templateObject129()),Fj=$localize(_templateObject130()),Nj=$localize(_templateObject131());var Bj=[\"placeholder\",$localize(_templateObject132())];function qj(e,t){if(1&e&&(Ho(0,\"mat-option\",12),Ls(1),Fo()),2&e){var n=t.$implicit;jo(\"value\",n.id),bi(1),xs(\" \",n.title,\" \")}}function Gj(e,t){if(1&e&&(Ho(0,\"mat-form-field\"),Ho(1,\"mat-select\",10),iu(2,Bj),Yo(3,qj,2,2,\"mat-option\",11),Fo(),Fo()),2&e){var n=Zo();bi(3),jo(\"ngForOf\",n.feeds)}}var $j=[\"placeholder\",$localize(_templateObject133())];function Jj(e,t){if(1&e&&(Ho(0,\"mat-option\",12),Ls(1),Fo()),2&e){var n=t.$implicit;jo(\"value\",n.id),bi(1),xs(\" \",n.value,\" \")}}function Kj(e,t){if(1&e&&(Ho(0,\"mat-form-field\"),Ho(1,\"mat-select\",13),iu(2,$j),Yo(3,Jj,2,2,\"mat-option\",11),Fo(),Fo()),2&e){var n=Zo();bi(3),jo(\"ngForOf\",n.tags)}}var Zj,Qj,Xj,eR=((Qj=function(){function e(t,n,r,i){_classCallCheck(this,e),this.userService=t,this.feedService=n,this.tagService=r,this.dialog=i,this.filters=new Array}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.feedService.getFeeds().pipe(WE(this.tagService.getTags(),this.userService.getCurrentUser(),(function(e,t,n){return[e,t,n]}))).subscribe((function(t){e.feeds=t[0],e.tags=t[1],e.filters=t[2].profileData.filters||[]}),(function(e){return console.log(e)}))}},{key:\"addFilter\",value:function(){var e=this;this.dialog.open(tR,{width:\"350px\",data:{feeds:this.feeds,tags:this.tags}}).afterClosed().subscribe((function(t){return e.ngOnInit()}))}},{key:\"feedsLabel\",value:function(e){var t=this.feeds.filter((function(t){return-1!=e.indexOf(t.id)})).map((function(e){return e.title}));return t.length?t.join(\", \"):\"\".concat(e)}},{key:\"tagLabel\",value:function(e){var t=this.tags.filter((function(t){return t.id==e})).map((function(e){return e.value}));return t.length?t[0]:\"\".concat(e)}},{key:\"deleteFilter\",value:function(e,t){var n=this;this.userService.getCurrentUser().pipe(U((function(e){var r=e.profileData||new Map,i=r.filters||[],a=i.filter((function(e){return e.urlTerm!=t.urlTerm||e.inverseURL!=t.inverseURL||e.titleTerm!=t.titleTerm||e.inverseTitle!=t.inverseTitle||e.tagID!=t.tagID||e.feedIDs!=t.feedIDs||e.inverseFeeds!=t.inverseFeeds}));return a.length==i.length?Bd(!0):(r.filters=a,n.userService.setUserSetting(\"profile\",JSON.stringify(r)))}))).subscribe((function(t){if(t){for(var n=e.target.parentNode;(n=n.parentElement)&&!n.classList.contains(\"filter\"););n.parentNode.removeChild(n)}}),(function(e){return console.log(e)}))}}]),e}()).\\u0275fac=function(e){return new(e||Qj)(Io(qA),Io(pI),Io(_I),Io(fC))},Qj.\\u0275cmp=bt({type:Qj,selectors:[[\"settings-filters\"]],decls:7,vars:2,consts:[[1,\"title\"],[4,\"ngIf\"],[\"class\",\"filter\",4,\"ngFor\",\"ngForOf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[1,\"filter\"],[1,\"info\"],[\"class\",\"url-and-title\",4,\"ngIf\"],[\"class\",\"match-tag\",4,\"ngIf\"],[\"class\",\"match-feeds\",4,\"ngIf\"],[\"class\",\"tag\",4,\"ngIf\"],[\"class\",\"feeds\",4,\"ngIf\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"],[1,\"term\"],[1,\"match-url\"],[1,\"url-and-title\"],[1,\"match-title\"],[1,\"match-tag\"],[1,\"match-feeds\"],[1,\"tag\"],[1,\"feeds\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,ej),Fo(),Yo(2,_j,2,0,\"p\",1),Yo(3,Oj,14,9,\"div\",2),Ho(4,\"div\",3),Ho(5,\"button\",4),qo(\"click\",(function(){return t.addFilter()})),ru(6,tj),Fo(),Fo()),2&e&&(bi(2),jo(\"ngIf\",0==t.filters.length),bi(1),jo(\"ngForOf\",t.filters))},directives:[Sd,Cd,zb,FC],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".filter[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.filter[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{flex:1 0 0}.filter[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{padding-left:4px;padding-right:4px}.filter[_ngcontent-%COMP%] .feeds[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .tag[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .term[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;font-weight:700}.filter[_ngcontent-%COMP%] .url-and-title[_ngcontent-%COMP%]{font-style:italic}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}form[_ngcontent-%COMP%]{display:flex;flex-direction:column;margin-bottom:20px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{flex:1 0 auto}form[_ngcontent-%COMP%] mat-slide-toggle[_ngcontent-%COMP%]{align-self:center;flex:1 0 auto}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{font-size:14px}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%] .mat-checkbox-layout{white-space:normal}form[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{border-bottom:1px solid #ddd;margin-top:12px;margin-bottom:24px;font-size:13px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{width:100%}\"]}),Qj),tR=((Zj=function(){function e(t,n,r,i,a){_classCallCheck(this,e),this.dialogRef=t,this.userService=n,this.tagService=r,this.data=i,this.form=a.group({urlTerm:[\"\"],titleTerm:[\"\"],inverseURL:[!1],inverseTitle:[!1],useFeeds:[!0],feeds:[[]],tag:[],inverseFeeds:[!1]},{validator:function(e){return e.controls.urlTerm.value||e.controls.titleTerm.value?null:{nomatch:!0}}}),this.feeds=i.feeds,this.tags=i.tags}return _createClass(e,[{key:\"save\",value:function(){var e=this;if(this.form.valid){var t=this.form.value;this.userService.getCurrentUser().pipe(U((function(n){var r={urlTerm:t.urlTerm,inverseURL:t.inverseURL,titleTerm:t.titleTerm,inverseTitle:t.inverseTitle,inverseFeeds:t.inverseFeeds};return t.useFeeds?t.feeds&&t.feeds.length>0&&(r.feedIDs=t.feeds):t.tag&&(r.tagID=t.tag),(r.tagID>0?e.tagService.getFeedIDs({id:r.tagID}).pipe(F((function(e){return r.feedIDs=e,r}))):Bd(r)).pipe(U((function(t){var r=n.profileData||new Map,i=r.filters||[];return i.push(t),r.filters=i,e.userService.setUserSetting(\"profile\",JSON.stringify(r))})))}))).subscribe((function(t){return e.close()}),(function(e){return console.log(e)}))}}},{key:\"close\",value:function(){this.dialogRef.close()}}]),e}()).\\u0275fac=function(e){return new(e||Zj)(Io(lC),Io(qA),Io(_I),Io(uC),Io(qm))},Zj.\\u0275cmp=bt({type:Zj,selectors:[[\"new-filter-dialog\"]],decls:32,vars:6,consts:[[\"novalidate\",\"\",\"autocomplete\",\"off\",3,\"formGroup\",\"ngSubmit\"],[\"matInput\",\"\",\"formControlName\",\"titleTerm\",6,\"placeholder\"],[\"formControlName\",\"inverseTitle\"],[\"matInput\",\"\",\"formControlName\",\"urlTerm\",6,\"placeholder\"],[\"formControlName\",\"inverseURL\"],[4,\"ngIf\"],[\"formControlName\",\"useFeeds\"],[\"formControlName\",\"inverseFeeds\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"multiple\",\"\",\"formControlName\",\"feeds\",6,\"placeholder\"],[3,\"value\",4,\"ngFor\",\"ngForOf\"],[3,\"value\"],[\"formControlName\",\"tag\",6,\"placeholder\"]],template:function(e,t){1&e&&(Ho(0,\"div\"),Ho(1,\"form\",0),qo(\"ngSubmit\",(function(){return t.save()})),Ho(2,\"p\"),ru(3,fj),Fo(),Ho(4,\"mat-form-field\"),Ho(5,\"input\",1),iu(6,Ej),Fo(),Fo(),No(7,\"br\"),Ho(8,\"mat-checkbox\",2),ru(9,Yj),Fo(),Ho(10,\"mat-form-field\"),Ho(11,\"input\",3),iu(12,zj),Fo(),Fo(),No(13,\"br\"),Ho(14,\"mat-checkbox\",4),ru(15,Ij),Fo(),Yo(16,Vj,2,0,\"mat-error\",5),No(17,\"br\"),Ho(18,\"p\"),ru(19,Aj),Fo(),Ho(20,\"mat-slide-toggle\",6),Yo(21,Wj,2,0,\"span\",5),Yo(22,Uj,2,0,\"span\",5),Fo(),Yo(23,Gj,4,1,\"mat-form-field\",5),Yo(24,Kj,4,1,\"mat-form-field\",5),Ho(25,\"mat-checkbox\",7),ru(26,Pj),Fo(),Fo(),Fo(),Ho(27,\"div\",8),Ho(28,\"button\",9),qo(\"click\",(function(){return t.save()})),ru(29,jj),Fo(),Ho(30,\"button\",9),qo(\"click\",(function(){return t.close()})),ru(31,Rj),Fo(),Fo()),2&e&&(bi(1),jo(\"formGroup\",t.form),bi(15),jo(\"ngIf\",t.form.hasError(\"nomatch\")),bi(5),jo(\"ngIf\",t.form.value.useFeeds),bi(1),jo(\"ngIf\",!t.form.value.useFeeds),bi(1),jo(\"ngIf\",t.form.value.useFeeds),bi(1),jo(\"ngIf\",!t.form.value.useFeeds))},directives:[Mm,af,Dm,EM,HM,$h,rf,Vm,dk,Sd,RL,zb,cM,GS,Cd,gb],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".filter[_ngcontent-%COMP%]{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:20px}.filter[_ngcontent-%COMP%] .info[_ngcontent-%COMP%]{flex:1 0 0}.filter[_ngcontent-%COMP%] span[_ngcontent-%COMP%]{padding-left:4px;padding-right:4px}.filter[_ngcontent-%COMP%] .feeds[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .tag[_ngcontent-%COMP%], .filter[_ngcontent-%COMP%] .term[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;font-weight:700}.filter[_ngcontent-%COMP%] .url-and-title[_ngcontent-%COMP%]{font-style:italic}.delete[_ngcontent-%COMP%], .error[_ngcontent-%COMP%]{margin-left:8px}.error[_ngcontent-%COMP%]{visibility:hidden}.error.visible[_ngcontent-%COMP%]{visibility:visible}.footer[_ngcontent-%COMP%]{text-align:end;padding-bottom:8px}form[_ngcontent-%COMP%]{display:flex;flex-direction:column;margin-bottom:20px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{flex:1 0 auto}form[_ngcontent-%COMP%] mat-slide-toggle[_ngcontent-%COMP%]{align-self:center;flex:1 0 auto}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{font-size:14px}form[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%] .mat-checkbox-layout{white-space:normal}form[_ngcontent-%COMP%] p[_ngcontent-%COMP%]{border-bottom:1px solid #ddd;margin-top:12px;margin-bottom:24px;font-size:13px}form[_ngcontent-%COMP%] mat-form-field[_ngcontent-%COMP%]{width:100%}\"]}),Zj);function nR(e,t){if(1&e){var n=Wo();Ho(0,\"div\",5),Ho(1,\"mat-slide-toggle\",6,7),qo(\"change\",(function(){nn(n);var e=t.$implicit,r=Eo(2);return Zo(2).toggleService(e[0].id,r.checked)})),Ls(3),Fo(),Fo()}if(2&e){var r=t.$implicit;bi(1),jo(\"checked\",r[1]),bi(2),Ts(r[0].description)}}function rR(e,t){if(1&e&&(Ho(0,\"mat-card\"),Ho(1,\"mat-card-header\"),Ho(2,\"mat-card-title\",3),Ho(3,\"h6\"),Ls(4),Fo(),Fo(),Fo(),Ho(5,\"mat-card-content\"),Yo(6,nR,4,2,\"div\",4),Fo(),Fo()),2&e){var n=t.$implicit;bi(4),xs(\" \",n[0][0].category,\" \"),bi(2),jo(\"ngForOf\",n)}}Xj=$localize(_templateObject134());var iR,aR,oR,sR,lR,uR,cR=((iR=function(){function e(t){_classCallCheck(this,e),this.sharingService=t}return _createClass(e,[{key:\"ngOnInit\",value:function(){this.services=this.sharingService.groupedList()}},{key:\"toggleService\",value:function(e,t){this.sharingService.toggle(e,t)}}]),e}()).\\u0275fac=function(e){return new(e||iR)(Io(qE))},iR.\\u0275cmp=bt({type:iR,selectors:[[\"settings-share-services\"]],decls:4,vars:1,consts:[[1,\"title\"],[1,\"cards-container\"],[4,\"ngFor\",\"ngForOf\"],[1,\"col\",\"title\"],[\"class\",\"service\",4,\"ngFor\",\"ngForOf\"],[1,\"service\"],[3,\"checked\",\"change\"],[\"toggle\",\"\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,Xj),Fo(),Ho(2,\"div\",1),Yo(3,rR,7,2,\"mat-card\",2),Fo()),2&e&&(bi(3),jo(\"ngForOf\",t.services))},directives:[Cd,Xb,ek,Jb,$b,RL],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".cards-container[_ngcontent-%COMP%]{display:flex;flex-direction:row;flex-wrap:wrap}mat-card[_ngcontent-%COMP%]{flex:1 0 0;margin:8px;min-width:250px}.service[_ngcontent-%COMP%]{margin-bottom:16px}\"]}),iR);function dR(e,t){if(1&e&&(Ho(0,\"p\"),ru(1,sR),Fo()),2&e){var n=Zo();bi(1),su(n.current.login),lu(1)}}function hR(e,t){if(1&e){var n=Wo();Ho(0,\"div\",5),Ho(1,\"mat-checkbox\",6,7),qo(\"change\",(function(){nn(n);var e=t.$implicit,r=Eo(2);return Zo(2).toggleActive(e.login,r.checked)}))(\"ngModelChange\",(function(e){return nn(n),t.$implicit.active=e})),Ls(3),Fo(),Ho(4,\"button\",8),qo(\"click\",(function(e){nn(n);var r=t.$implicit;return Zo(2).deleteUser(e,r.login)})),Ho(5,\"mat-icon\"),Ls(6,\"delete\"),Fo(),Fo(),Fo()}if(2&e){var r=t.$implicit;bi(1),jo(\"ngModel\",r.active),bi(2),Ts(r.login)}}function fR(e,t){if(1&e&&(Ho(0,\"div\"),Ho(1,\"h6\"),ru(2,lR),Fo(),Yo(3,hR,7,2,\"div\",4),Fo()),2&e){var n=Zo();bi(3),jo(\"ngForOf\",n.users)}}aR=$localize(_templateObject135()),oR=$localize(_templateObject136()),sR=$localize(_templateObject137(),\"\\ufffd0\\ufffd\"),lR=$localize(_templateObject138()),uR=$localize(_templateObject139());var mR,pR,_R,vR=[\"placeholder\",$localize(_templateObject140())],gR=[\"placeholder\",$localize(_templateObject141())];function yR(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,pR),Fo())}function bR(e,t){1&e&&(Ho(0,\"mat-error\"),ru(1,_R),Fo())}mR=$localize(_templateObject142()),pR=$localize(_templateObject143()),_R=$localize(_templateObject144());var kR,wR,CR,MR,SR,LR,TR,xR,DR,OR,YR,ER=function(){return[\"login\"]},IR=function(){return[\"password\"]},AR=((wR=function(){function e(t,n){_classCallCheck(this,e),this.userService=t,this.dialog=n,this.users=new Array,this.refresher=new x}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.refresher.pipe(sv(null),Pk((function(t){return e.userService.list()})),WE(this.userService.getCurrentUser(),(function(e,t){return e.filter((function(e){return e.login!=t.login}))}))).subscribe((function(t){return e.users=t}),(function(e){return console.log(e)})),this.userService.getCurrentUser().subscribe((function(t){return e.current=t}),(function(e){return console.log(e)}))}},{key:\"toggleActive\",value:function(e,t){this.userService.toggleActive(e,t).subscribe((function(e){}),(function(e){return console.log(e)}))}},{key:\"deleteUser\",value:function(e,t){confirm(\"Are you sure you want to delete user \"+t)&&this.userService.deleteUser(t).subscribe((function(t){if(t){for(var n=e.target.parentNode;(n=n.parentElement)&&!n.classList.contains(\"user\"););n.parentNode.removeChild(n)}}),(function(e){return console.log(e)}))}},{key:\"newUser\",value:function(){var e=this;this.dialog.open(PR,{width:\"250px\"}).afterClosed().subscribe((function(t){return e.refresher.next(null)}))}}]),e}()).\\u0275fac=function(e){return new(e||wR)(Io(qA),Io(fC))},wR.\\u0275cmp=bt({type:wR,selectors:[[\"settings-admin\"]],decls:7,vars:2,consts:[[1,\"title\"],[4,\"ngIf\"],[1,\"footer\"],[\"mat-raised-button\",\"\",3,\"click\"],[\"class\",\"user\",4,\"ngFor\",\"ngForOf\"],[1,\"user\"],[3,\"ngModel\",\"change\",\"ngModelChange\"],[\"check\",\"\"],[\"mat-icon-button\",\"\",1,\"delete\",3,\"click\"]],template:function(e,t){1&e&&(Ho(0,\"h5\",0),ru(1,aR),Fo(),Yo(2,dR,2,1,\"p\",1),Yo(3,fR,4,1,\"div\",1),Ho(4,\"div\",2),Ho(5,\"button\",3),qo(\"click\",(function(){return t.newUser()})),ru(6,oR),Fo(),Fo()),2&e&&(bi(2),jo(\"ngIf\",t.current),bi(1),jo(\"ngIf\",t.users.length))},directives:[Sd,zb,Cd,dk,rf,Cm,FC],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".user[_ngcontent-%COMP%]{display:flex;align-items:center;border-bottom:1px solid #ccc;padding-bottom:4px;margin-bottom:4px}.user[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{flex:1 0 0}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),wR),PR=((kR=function(){function e(t,n,r){_classCallCheck(this,e),this.dialogRef=t,this.userService=n,this.form=r.group({login:[\"\",cf.required],password:[\"\",cf.required]})}return _createClass(e,[{key:\"save\",value:function(){var e=this;if(this.form.valid){var t=this.form.value;this.userService.addUser(t.login,t.password).subscribe((function(t){t&&e.close()}),(function(e){return console.log(e)}))}}},{key:\"close\",value:function(){this.dialogRef.close()}}]),e}()).\\u0275fac=function(e){return new(e||kR)(Io(lC),Io(qA),Io(qm))},kR.\\u0275cmp=bt({type:kR,selectors:[[\"ng-component\"]],decls:16,vars:6,consts:[[1,\"title\"],[\"novalidate\",\"\",\"autocomplete\",\"off\",3,\"formGroup\",\"ngSubmit\"],[\"matInput\",\"\",\"formControlName\",\"login\",\"required\",\"\",6,\"placeholder\"],[4,\"ngIf\"],[\"matInput\",\"\",\"type\",\"password\",\"formControlName\",\"password\",\"required\",\"\",6,\"placeholder\"],[1,\"footer\"],[\"mat-raised-button\",\"\",\"type\",\"submit\",3,\"disabled\"]],template:function(e,t){1&e&&(Ho(0,\"h6\",0),ru(1,uR),Fo(),Ho(2,\"form\",1),qo(\"ngSubmit\",(function(){return t.save()})),Ho(3,\"mat-form-field\"),Ho(4,\"input\",2),iu(5,vR),Fo(),Yo(6,yR,2,0,\"mat-error\",3),Fo(),No(7,\"br\"),Ho(8,\"mat-form-field\"),Ho(9,\"input\",4),iu(10,gR),Fo(),Yo(11,bR,2,0,\"mat-error\",3),Fo(),No(12,\"br\"),Ho(13,\"div\",5),Ho(14,\"button\",6),ru(15,mR),Fo(),Fo(),Fo()),2&e&&(bi(2),jo(\"formGroup\",t.form),bi(4),jo(\"ngIf\",t.form.hasError(\"required\",yu(4,ER))),bi(5),jo(\"ngIf\",t.form.hasError(\"required\",yu(5,IR))),bi(3),jo(\"disabled\",t.form.pristine))},directives:[Mm,af,Dm,EM,HM,$h,rf,Vm,Um,Sd,zb,cM],styles:[\".title[_ngcontent-%COMP%]{padding-top:16px}\",\".user[_ngcontent-%COMP%]{display:flex;align-items:center;border-bottom:1px solid #ccc;padding-bottom:4px;margin-bottom:4px}.user[_ngcontent-%COMP%] mat-checkbox[_ngcontent-%COMP%]{flex:1 0 0}.footer[_ngcontent-%COMP%]{text-align:end}\"]}),kR);CR=$localize(_templateObject145()),MR=$localize(_templateObject146()),SR=$localize(_templateObject147()),LR=$localize(_templateObject148()),TR=$localize(_templateObject149()),xR=$localize(_templateObject150()),DR=$localize(_templateObject151()),OR=$localize(_templateObject152()),YR=$localize(_templateObject153());var jR=function(){return[\"admin\"]};function RR(e,t){1&e&&(Ho(0,\"a\",2),ru(1,YR),Fo()),2&e&&jo(\"routerLink\",yu(1,jR))}var HR,FR=function(){return[\"general\"]},NR=function(){return[\"discovery\"]},zR=function(){return[\"management\"]},VR=function(){return[\"filters\"]},WR=function(){return[\"share-services\"]};HR=$localize(_templateObject154());var UR,BR,qR,GR,$R=ZY.forRoot([{path:\"\",canActivate:[HE],children:[{path:\"\",component:lI,children:[{path:\"feed\",children:[{path:\"\",children:[{path:\"\",data:{primary:\"user\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\"search/:query\",data:{primary:\"search\",secondary:\"user\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\"favorite\",data:{primary:\"favorite\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\"popular/tag/:id\",data:{primary:\"popular\",secondary:\"tag\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\"popular/:id\",data:{primary:\"popular\",secondary:\"feed\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\"popular\",data:{primary:\"popular\",secondary:\"user\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\"tag/:id\",data:{primary:\"tag\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\"tag/:id/search/:query\",data:{primary:\"search\",secondary:\"tag\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\":id\",data:{primary:\"feed\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]},{path:\":id/search/:query\",data:{primary:\"search\",secondary:\"feed\"},children:[{path:\"\",component:WI},{path:\"article/:articleID\",component:lA}]}]},{path:\"\",component:yA,outlet:\"sidebar\"},{path:\"\",component:UA,outlet:\"toolbar\"}]},{path:\"settings\",children:[{path:\"\",component:BA,children:[{path:\"general\",component:hP},{path:\"discovery\",component:BP},{path:\"management\",component:mj},{path:\"filters\",component:eR},{path:\"share-services\",component:cR},{path:\"admin\",component:AR},{path:\"\",redirectTo:\"general\",pathMatch:\"full\"}]},{path:\"\",component:(BR=function(){function e(t){_classCallCheck(this,e),this.userService=t,this.subscriptions=new Array}return _createClass(e,[{key:\"ngOnInit\",value:function(){var e=this;this.subscriptions.push(this.userService.getCurrentUser().pipe(F((function(e){return e.admin}))).subscribe((function(t){return e.admin=t}),(function(e){return console.log(e)})))}},{key:\"ngOnDestroy\",value:function(){var e,t=_createForOfIteratorHelper(this.subscriptions);try{for(t.s();!(e=t.n()).done;)e.value.unsubscribe()}catch(n){t.e(n)}finally{t.f()}}}]),e}(),BR.\\u0275fac=function(e){return new(e||BR)(Io(qA))},BR.\\u0275cmp=bt({type:BR,selectors:[[\"side-bar\"]],decls:19,vars:11,consts:[[\"color\",\"primary\"],[1,\"content\"],[\"mat-button\",\"\",3,\"routerLink\"],[\"mat-button\",\"\",3,\"routerLink\",4,\"ngIf\"],[\"mat-button\",\"\",\"routerLink\",\"/feed\"],[\"mat-button\",\"\",\"routerLink\",\"/login\"]],template:function(e,t){1&e&&(Ho(0,\"mat-toolbar\",0),ru(1,CR),Fo(),Ho(2,\"div\",1),Ho(3,\"a\",2),ru(4,MR),Fo(),Ho(5,\"a\",2),ru(6,SR),Fo(),Ho(7,\"a\",2),ru(8,LR),Fo(),Ho(9,\"a\",2),ru(10,TR),Fo(),Ho(11,\"a\",2),ru(12,xR),Fo(),Yo(13,RR,2,2,\"a\",3),No(14,\"hr\"),Ho(15,\"a\",4),ru(16,DR),Fo(),Ho(17,\"a\",5),ru(18,OR),Fo(),Fo()),2&e&&(bi(3),jo(\"routerLink\",yu(6,FR)),bi(2),jo(\"routerLink\",yu(7,NR)),bi(2),jo(\"routerLink\",yu(8,zR)),bi(2),jo(\"routerLink\",yu(9,VR)),bi(2),jo(\"routerLink\",yu(10,WR)),bi(2),jo(\"ngIf\",t.admin))},directives:[XL,Vb,IY,Sd],styles:[\".content[_ngcontent-%COMP%] > *[_ngcontent-%COMP%]{margin-bottom:4px}.content[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex;font-size:16px}.items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{font-size:13px}.category[_ngcontent-%COMP%], .items[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{display:flex}.category[_ngcontent-%COMP%] > .expander[_ngcontent-%COMP%]{padding-left:8px;padding-right:8px;min-width:24px;flex-shrink:1}.category[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{flex-grow:1;text-align:start}.category[_ngcontent-%COMP%] > .items[_ngcontent-%COMP%]{flex:0 1 100%}.content[_ngcontent-%COMP%] hr[_ngcontent-%COMP%]{margin:0}.favicon[_ngcontent-%COMP%]{padding-right:4px}\"]}),BR),outlet:\"sidebar\"},{path:\"\",component:(UR=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"ngOnInit\",value:function(){}}]),e}(),UR.\\u0275fac=function(e){return new(e||UR)},UR.\\u0275cmp=bt({type:UR,selectors:[[\"ng-component\"]],decls:2,vars:0,template:function(e,t){1&e&&(Ho(0,\"span\"),ru(1,HR),Fo())},styles:[\"[_nghost-%COMP%]{display:flex;align-items:center}.spacer[_ngcontent-%COMP%], [_nghost-%COMP%]{flex:1 1 auto}.search[_ngcontent-%COMP%]{min-height:0;border:none;background:transparent} label{margin-bottom:0}\"]}),UR),outlet:\"toolbar\"}]},{path:\"\",redirectTo:\"feed\",pathMatch:\"full\"}]}]},{path:\"login\",component:jE}],{enableTracing:!1}),JR=((GR=function e(){_classCallCheck(this,e),this.title=\"app\"}).\\u0275fac=function(e){return new(e||GR)},GR.\\u0275cmp=bt({type:GR,selectors:[[\"app-root\"]],decls:2,vars:0,consts:[[1,\"page\"]],template:function(e,t){1&e&&(Ho(0,\"div\",0),No(1,\"router-outlet\"),Fo())},directives:[NY],styles:[\"\"]}),GR),KR=((qR=function e(){_classCallCheck(this,e)}).\\u0275mod=Mt({type:qR,bootstrap:[JR]}),qR.\\u0275inj=ve({factory:function(e){return new(e||qR)},providers:[{provide:U_,useClass:Kx}],imports:[[iv,Iy,jh,$R,Nd,Gm,$m,Wb,tk,fk,mC,NC,FM,gS,LS,$S,$L,LL,FL,eT,jx,$x,$_]]}),qR);(function(){if(Sr)throw new Error(\"Cannot enable prod mode after platform setup.\");Mr=!1})(),nv().bootstrapModule(KR)},zavE:function(e,t,n){!function(e){\"use strict\";e.defineLocale(\"en-SG\",{months:\"January_February_March_April_May_June_July_August_September_October_November_December\".split(\"_\"),monthsShort:\"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec\".split(\"_\"),weekdays:\"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday\".split(\"_\"),weekdaysShort:\"Sun_Mon_Tue_Wed_Thu_Fri_Sat\".split(\"_\"),weekdaysMin:\"Su_Mo_Tu_We_Th_Fr_Sa\".split(\"_\"),longDateFormat:{LT:\"HH:mm\",LTS:\"HH:mm:ss\",L:\"DD/MM/YYYY\",LL:\"D MMMM YYYY\",LLL:\"D MMMM YYYY HH:mm\",LLLL:\"dddd, D MMMM YYYY HH:mm\"},calendar:{sameDay:\"[Today at] LT\",nextDay:\"[Tomorrow at] LT\",nextWeek:\"dddd [at] LT\",lastDay:\"[Yesterday at] LT\",lastWeek:\"[Last] dddd [at] LT\",sameElse:\"L\"},relativeTime:{future:\"in %s\",past:\"%s ago\",s:\"a few seconds\",ss:\"%d seconds\",m:\"a minute\",mm:\"%d minutes\",h:\"an hour\",hh:\"%d hours\",d:\"a day\",dd:\"%d days\",M:\"a month\",MM:\"%d months\",y:\"a year\",yy:\"%d years\"},dayOfMonthOrdinalParse:/\\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10;return e+(1==~~(e%100/10)?\"th\":1===t?\"st\":2===t?\"nd\":3===t?\"rd\":\"th\")},week:{dow:1,doy:4}})}(n(\"wd/R\"))},zn8P:function(e,t){function n(e){return Promise.resolve().then((function(){var t=new Error(\"Cannot find module '\"+e+\"'\");throw t.code=\"MODULE_NOT_FOUND\",t}))}n.keys=function(){return[]},n.resolve=n,e.exports=n,n.id=\"zn8P\"},zx6S:function(e,t,n){!function(e){\"use strict\";var t={words:{ss:[\"sekunda\",\"sekunde\",\"sekundi\"],m:[\"jedan minut\",\"jedne minute\"],mm:[\"minut\",\"minute\",\"minuta\"],h:[\"jedan sat\",\"jednog sata\"],hh:[\"sat\",\"sata\",\"sati\"],dd:[\"dan\",\"dana\",\"dana\"],MM:[\"mesec\",\"meseca\",\"meseci\"],yy:[\"godina\",\"godine\",\"godina\"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&e<=4?t[1]:t[2]},translate:function(e,n,r){var i=t.words[r];return 1===r.length?n?i[0]:i[1]:e+\" \"+t.correctGrammaticalCase(e,i)}};e.defineLocale(\"sr\",{months:\"januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar\".split(\"_\"),monthsShort:\"jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.\".split(\"_\"),monthsParseExact:!0,weekdays:\"nedelja_ponedeljak_utorak_sreda_\\u010detvrtak_petak_subota\".split(\"_\"),weekdaysShort:\"ned._pon._uto._sre._\\u010det._pet._sub.\".split(\"_\"),weekdaysMin:\"ne_po_ut_sr_\\u010de_pe_su\".split(\"_\"),weekdaysParseExact:!0,longDateFormat:{LT:\"H:mm\",LTS:\"H:mm:ss\",L:\"DD.MM.YYYY\",LL:\"D. MMMM YYYY\",LLL:\"D. MMMM YYYY H:mm\",LLLL:\"dddd, D. MMMM YYYY H:mm\"},calendar:{sameDay:\"[danas u] LT\",nextDay:\"[sutra u] LT\",nextWeek:function(){switch(this.day()){case 0:return\"[u] [nedelju] [u] LT\";case 3:return\"[u] [sredu] [u] LT\";case 6:return\"[u] [subotu] [u] LT\";case 1:case 2:case 4:case 5:return\"[u] dddd [u] LT\"}},lastDay:\"[ju\\u010de u] LT\",lastWeek:function(){return[\"[pro\\u0161le] [nedelje] [u] LT\",\"[pro\\u0161log] [ponedeljka] [u] LT\",\"[pro\\u0161log] [utorka] [u] LT\",\"[pro\\u0161le] [srede] [u] LT\",\"[pro\\u0161log] [\\u010detvrtka] [u] LT\",\"[pro\\u0161log] [petka] [u] LT\",\"[pro\\u0161le] [subote] [u] LT\"][this.day()]},sameElse:\"L\"},relativeTime:{future:\"za %s\",past:\"pre %s\",s:\"nekoliko sekundi\",ss:t.translate,m:t.translate,mm:t.translate,h:t.translate,hh:t.translate,d:\"dan\",dd:t.translate,M:\"mesec\",MM:t.translate,y:\"godinu\",yy:t.translate},dayOfMonthOrdinalParse:/\\d{1,2}\\./,ordinal:\"%d.\",week:{dow:1,doy:7}})}(n(\"wd/R\"))}},[[0,0]]]);"); err != nil { + return nil, errors.Wrap(err, fmt.Sprintf("packing file rf-ng/ui/en/main-es5.12ca351b7933925b99f6.js")) } - if err := fs.Add("rf-ng/ui/en/polyfills-es2015.2c95a2527334fc660304.js", 37670, os.FileMode(420), time.Unix(1584880177, 0), "(window.webpackJsonp=window.webpackJsonp||[]).push([[2],{2:function(e,t,n){e.exports=n(\"hN/g\")},\"N/DB\":function(e,t){const n=\"undefined\"!=typeof globalThis&&globalThis,o=\"undefined\"!=typeof window&&window,r=\"undefined\"!=typeof self&&\"undefined\"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&self,s=\"undefined\"!=typeof global&&global,a=function(e,...t){if(a.translate){const n=a.translate(e,t);e=n[0],t=n[1]}let n=i(e[0],e.raw[0]);for(let o=1;o\",this._properties=t&&t.properties||{},this._zoneDelegate=new l(this,this._parent&&this._parent._zoneDelegate,t)}static assertZonePatched(){if(e.Promise!==z.ZoneAwarePromise)throw new Error(\"Zone.js has detected that ZoneAwarePromise `(window|global).Promise` has been overwritten.\\nMost likely cause is that a Promise polyfill has been loaded after Zone.js (Polyfilling Promise api is not necessary when zone.js is loaded. If you must load one, do so before loading zone.js.)\")}static get root(){let e=i.current;for(;e.parent;)e=e.parent;return e}static get current(){return O.zone}static get currentTask(){return j}static __load_patch(t,r){if(z.hasOwnProperty(t)){if(a)throw Error(\"Already loaded patch: \"+t)}else if(!e[\"__Zone_disable_\"+t]){const s=\"Zone:\"+t;n(s),z[t]=r(e,i,C),o(s,s)}}get parent(){return this._parent}get name(){return this._name}get(e){const t=this.getZoneWith(e);if(t)return t._properties[e]}getZoneWith(e){let t=this;for(;t;){if(t._properties.hasOwnProperty(e))return t;t=t._parent}return null}fork(e){if(!e)throw new Error(\"ZoneSpec required!\");return this._zoneDelegate.fork(this,e)}wrap(e,t){if(\"function\"!=typeof e)throw new Error(\"Expecting function got: \"+e);const n=this._zoneDelegate.intercept(this,e,t),o=this;return function(){return o.runGuarded(n,this,arguments,t)}}run(e,t,n,o){O={parent:O,zone:this};try{return this._zoneDelegate.invoke(this,e,t,n,o)}finally{O=O.parent}}runGuarded(e,t=null,n,o){O={parent:O,zone:this};try{try{return this._zoneDelegate.invoke(this,e,t,n,o)}catch(r){if(this._zoneDelegate.handleError(this,r))throw r}}finally{O=O.parent}}runTask(e,t,n){if(e.zone!=this)throw new Error(\"A task can only be run in the zone of creation! (Creation: \"+(e.zone||y).name+\"; Execution: \"+this.name+\")\");if(e.state===v&&(e.type===P||e.type===D))return;const o=e.state!=E;o&&e._transitionTo(E,T),e.runCount++;const r=j;j=e,O={parent:O,zone:this};try{e.type==D&&e.data&&!e.data.isPeriodic&&(e.cancelFn=void 0);try{return this._zoneDelegate.invokeTask(this,e,t,n)}catch(s){if(this._zoneDelegate.handleError(this,s))throw s}}finally{e.state!==v&&e.state!==Z&&(e.type==P||e.data&&e.data.isPeriodic?o&&e._transitionTo(T,E):(e.runCount=0,this._updateTaskCount(e,-1),o&&e._transitionTo(v,E,v))),O=O.parent,j=r}}scheduleTask(e){if(e.zone&&e.zone!==this){let t=this;for(;t;){if(t===e.zone)throw Error(`can not reschedule task to ${this.name} which is descendants of the original zone ${e.zone.name}`);t=t.parent}}e._transitionTo(b,v);const t=[];e._zoneDelegates=t,e._zone=this;try{e=this._zoneDelegate.scheduleTask(this,e)}catch(n){throw e._transitionTo(Z,b,v),this._zoneDelegate.handleError(this,n),n}return e._zoneDelegates===t&&this._updateTaskCount(e,1),e.state==b&&e._transitionTo(T,b),e}scheduleMicroTask(e,t,n,o){return this.scheduleTask(new u(S,e,t,n,o,void 0))}scheduleMacroTask(e,t,n,o,r){return this.scheduleTask(new u(D,e,t,n,o,r))}scheduleEventTask(e,t,n,o,r){return this.scheduleTask(new u(P,e,t,n,o,r))}cancelTask(e){if(e.zone!=this)throw new Error(\"A task can only be cancelled in the zone of creation! (Creation: \"+(e.zone||y).name+\"; Execution: \"+this.name+\")\");e._transitionTo(w,T,E);try{this._zoneDelegate.cancelTask(this,e)}catch(t){throw e._transitionTo(Z,w),this._zoneDelegate.handleError(this,t),t}return this._updateTaskCount(e,-1),e._transitionTo(v,w),e.runCount=0,e}_updateTaskCount(e,t){const n=e._zoneDelegates;-1==t&&(e._zoneDelegates=null);for(let o=0;oe.hasTask(n,o),onScheduleTask:(e,t,n,o)=>e.scheduleTask(n,o),onInvokeTask:(e,t,n,o,r,s)=>e.invokeTask(n,o,r,s),onCancelTask:(e,t,n,o)=>e.cancelTask(n,o)};class l{constructor(e,t,n){this._taskCounts={microTask:0,macroTask:0,eventTask:0},this.zone=e,this._parentDelegate=t,this._forkZS=n&&(n&&n.onFork?n:t._forkZS),this._forkDlgt=n&&(n.onFork?t:t._forkDlgt),this._forkCurrZone=n&&(n.onFork?this.zone:t._forkCurrZone),this._interceptZS=n&&(n.onIntercept?n:t._interceptZS),this._interceptDlgt=n&&(n.onIntercept?t:t._interceptDlgt),this._interceptCurrZone=n&&(n.onIntercept?this.zone:t._interceptCurrZone),this._invokeZS=n&&(n.onInvoke?n:t._invokeZS),this._invokeDlgt=n&&(n.onInvoke?t:t._invokeDlgt),this._invokeCurrZone=n&&(n.onInvoke?this.zone:t._invokeCurrZone),this._handleErrorZS=n&&(n.onHandleError?n:t._handleErrorZS),this._handleErrorDlgt=n&&(n.onHandleError?t:t._handleErrorDlgt),this._handleErrorCurrZone=n&&(n.onHandleError?this.zone:t._handleErrorCurrZone),this._scheduleTaskZS=n&&(n.onScheduleTask?n:t._scheduleTaskZS),this._scheduleTaskDlgt=n&&(n.onScheduleTask?t:t._scheduleTaskDlgt),this._scheduleTaskCurrZone=n&&(n.onScheduleTask?this.zone:t._scheduleTaskCurrZone),this._invokeTaskZS=n&&(n.onInvokeTask?n:t._invokeTaskZS),this._invokeTaskDlgt=n&&(n.onInvokeTask?t:t._invokeTaskDlgt),this._invokeTaskCurrZone=n&&(n.onInvokeTask?this.zone:t._invokeTaskCurrZone),this._cancelTaskZS=n&&(n.onCancelTask?n:t._cancelTaskZS),this._cancelTaskDlgt=n&&(n.onCancelTask?t:t._cancelTaskDlgt),this._cancelTaskCurrZone=n&&(n.onCancelTask?this.zone:t._cancelTaskCurrZone),this._hasTaskZS=null,this._hasTaskDlgt=null,this._hasTaskDlgtOwner=null,this._hasTaskCurrZone=null;const o=n&&n.onHasTask;(o||t&&t._hasTaskZS)&&(this._hasTaskZS=o?n:c,this._hasTaskDlgt=t,this._hasTaskDlgtOwner=this,this._hasTaskCurrZone=e,n.onScheduleTask||(this._scheduleTaskZS=c,this._scheduleTaskDlgt=t,this._scheduleTaskCurrZone=this.zone),n.onInvokeTask||(this._invokeTaskZS=c,this._invokeTaskDlgt=t,this._invokeTaskCurrZone=this.zone),n.onCancelTask||(this._cancelTaskZS=c,this._cancelTaskDlgt=t,this._cancelTaskCurrZone=this.zone))}fork(e,t){return this._forkZS?this._forkZS.onFork(this._forkDlgt,this.zone,e,t):new i(e,t)}intercept(e,t,n){return this._interceptZS?this._interceptZS.onIntercept(this._interceptDlgt,this._interceptCurrZone,e,t,n):t}invoke(e,t,n,o,r){return this._invokeZS?this._invokeZS.onInvoke(this._invokeDlgt,this._invokeCurrZone,e,t,n,o,r):t.apply(n,o)}handleError(e,t){return!this._handleErrorZS||this._handleErrorZS.onHandleError(this._handleErrorDlgt,this._handleErrorCurrZone,e,t)}scheduleTask(e,t){let n=t;if(this._scheduleTaskZS)this._hasTaskZS&&n._zoneDelegates.push(this._hasTaskDlgtOwner),n=this._scheduleTaskZS.onScheduleTask(this._scheduleTaskDlgt,this._scheduleTaskCurrZone,e,t),n||(n=t);else if(t.scheduleFn)t.scheduleFn(t);else{if(t.type!=S)throw new Error(\"Task is missing scheduleFn.\");_(t)}return n}invokeTask(e,t,n,o){return this._invokeTaskZS?this._invokeTaskZS.onInvokeTask(this._invokeTaskDlgt,this._invokeTaskCurrZone,e,t,n,o):t.callback.apply(n,o)}cancelTask(e,t){let n;if(this._cancelTaskZS)n=this._cancelTaskZS.onCancelTask(this._cancelTaskDlgt,this._cancelTaskCurrZone,e,t);else{if(!t.cancelFn)throw Error(\"Task is not cancelable\");n=t.cancelFn(t)}return n}hasTask(e,t){try{this._hasTaskZS&&this._hasTaskZS.onHasTask(this._hasTaskDlgt,this._hasTaskCurrZone,e,t)}catch(n){this.handleError(e,n)}}_updateTaskCount(e,t){const n=this._taskCounts,o=n[e],r=n[e]=o+t;if(r<0)throw new Error(\"More tasks executed then were scheduled.\");0!=o&&0!=r||this.hasTask(this.zone,{microTask:n.microTask>0,macroTask:n.macroTask>0,eventTask:n.eventTask>0,change:e})}}class u{constructor(t,n,o,r,s,a){if(this._zone=null,this.runCount=0,this._zoneDelegates=null,this._state=\"notScheduled\",this.type=t,this.source=n,this.data=r,this.scheduleFn=s,this.cancelFn=a,!o)throw new Error(\"callback is not defined\");this.callback=o;const i=this;this.invoke=t===P&&r&&r.useG?u.invokeTask:function(){return u.invokeTask.call(e,i,this,arguments)}}static invokeTask(e,t,n){e||(e=this),I++;try{return e.runCount++,e.zone.runTask(e,t,n)}finally{1==I&&m(),I--}}get zone(){return this._zone}get state(){return this._state}cancelScheduleRequest(){this._transitionTo(v,b)}_transitionTo(e,t,n){if(this._state!==t&&this._state!==n)throw new Error(`${this.type} '${this.source}': can not transition to '${e}', expecting state '${t}'${n?\" or '\"+n+\"'\":\"\"}, was '${this._state}'.`);this._state=e,e==v&&(this._zoneDelegates=null)}toString(){return this.data&&void 0!==this.data.handleId?this.data.handleId.toString():Object.prototype.toString.call(this)}toJSON(){return{type:this.type,state:this.state,source:this.source,zone:this.zone.name,runCount:this.runCount}}}const h=s(\"setTimeout\"),p=s(\"Promise\"),f=s(\"then\");let d,g=[],k=!1;function _(t){if(0===I&&0===g.length)if(d||e[p]&&(d=e[p].resolve(0)),d){let e=d[f];e||(e=d.then),e.call(d,m)}else e[h](m,0);t&&g.push(t)}function m(){if(!k){for(k=!0;g.length;){const t=g;g=[];for(let n=0;nO,onUnhandledError:N,microtaskDrainDone:N,scheduleMicroTask:_,showUncaughtError:()=>!i[s(\"ignoreConsoleErrorUncaughtError\")],patchEventTarget:()=>[],patchOnProperties:N,patchMethod:()=>N,bindArguments:()=>[],patchThen:()=>N,patchMacroTask:()=>N,setNativePromise:e=>{e&&\"function\"==typeof e.resolve&&(d=e.resolve(0))},patchEventPrototype:()=>N,isIEOrEdge:()=>!1,getGlobalObjects:()=>{},ObjectDefineProperty:()=>N,ObjectGetOwnPropertyDescriptor:()=>{},ObjectCreate:()=>{},ArraySlice:()=>[],patchClass:()=>N,wrapWithCurrentZone:()=>N,filterProperties:()=>[],attachOriginToPatched:()=>N,_redefineProperty:()=>N,patchCallbacks:()=>N};let O={parent:null,zone:new i(null,null)},j=null,I=0;function N(){}o(\"Zone\",\"Zone\"),e.Zone=i}(\"undefined\"!=typeof window&&window||\"undefined\"!=typeof self&&self||global),Zone.__load_patch(\"ZoneAwarePromise\",(e,t,n)=>{const o=Object.getOwnPropertyDescriptor,r=Object.defineProperty,s=n.symbol,a=[],i=!0===e[s(\"DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION\")],c=s(\"Promise\"),l=s(\"then\");n.onUnhandledError=e=>{if(n.showUncaughtError()){const t=e&&e.rejection;t?console.error(\"Unhandled Promise rejection:\",t instanceof Error?t.message:t,\"; Zone:\",e.zone.name,\"; Task:\",e.task&&e.task.source,\"; Value:\",t,t instanceof Error?t.stack:void 0):console.error(e)}},n.microtaskDrainDone=()=>{for(;a.length;){const t=a.shift();try{t.zone.runGuarded(()=>{throw t})}catch(e){h(e)}}};const u=s(\"unhandledPromiseRejectionHandler\");function h(e){n.onUnhandledError(e);try{const n=t[u];\"function\"==typeof n&&n.call(this,e)}catch(o){}}function p(e){return e&&e.then}function f(e){return e}function d(e){return D.reject(e)}const g=s(\"state\"),k=s(\"value\"),_=s(\"finally\"),m=s(\"parentPromiseValue\"),y=s(\"parentPromiseState\");function v(e,t){return n=>{try{T(e,t,n)}catch(o){T(e,!1,o)}}}const b=s(\"currentTaskTrace\");function T(e,o,s){const c=function(){let e=!1;return function(t){return function(){e||(e=!0,t.apply(null,arguments))}}}();if(e===s)throw new TypeError(\"Promise resolved with itself\");if(null===e[g]){let h=null;try{\"object\"!=typeof s&&\"function\"!=typeof s||(h=s&&s.then)}catch(u){return c(()=>{T(e,!1,u)})(),e}if(!1!==o&&s instanceof D&&s.hasOwnProperty(g)&&s.hasOwnProperty(k)&&null!==s[g])w(s),T(e,s[g],s[k]);else if(!1!==o&&\"function\"==typeof h)try{h.call(s,c(v(e,o)),c(v(e,!1)))}catch(u){c(()=>{T(e,!1,u)})()}else{e[g]=o;const c=e[k];if(e[k]=s,e[_]===_&&!0===o&&(e[g]=e[y],e[k]=e[m]),!1===o&&s instanceof Error){const e=t.currentTask&&t.currentTask.data&&t.currentTask.data.__creationTrace__;e&&r(s,b,{configurable:!0,enumerable:!1,writable:!0,value:e})}for(let t=0;t{try{const o=e[k],r=!!n&&_===n[_];r&&(n[m]=o,n[y]=s);const i=t.run(a,void 0,r&&a!==d&&a!==f?[]:[o]);T(n,!0,i)}catch(o){T(n,!1,o)}},n)}const S=function(){};class D{static toString(){return\"function ZoneAwarePromise() { [native code] }\"}static resolve(e){return T(new this(null),!0,e)}static reject(e){return T(new this(null),!1,e)}static race(e){let t,n,o=new this((e,o)=>{t=e,n=o});function r(e){t(e)}function s(e){n(e)}for(let a of e)p(a)||(a=this.resolve(a)),a.then(r,s);return o}static all(e){return D.allWithCallback(e)}static allSettled(e){return(this&&this.prototype instanceof D?this:D).allWithCallback(e,{thenCallback:e=>({status:\"fulfilled\",value:e}),errorCallback:e=>({status:\"rejected\",reason:e})})}static allWithCallback(e,t){let n,o,r=new this((e,t)=>{n=e,o=t}),s=2,a=0;const i=[];for(let l of e){p(l)||(l=this.resolve(l));const e=a;try{l.then(o=>{i[e]=t?t.thenCallback(o):o,s--,0===s&&n(i)},r=>{t?(i[e]=t.errorCallback(r),s--,0===s&&n(i)):o(r)})}catch(c){o(c)}s++,a++}return s-=2,0===s&&n(i),r}constructor(e){const t=this;if(!(t instanceof D))throw new Error(\"Must be an instanceof Promise.\");t[g]=null,t[k]=[];try{e&&e(v(t,!0),v(t,!1))}catch(n){T(t,!1,n)}}get[Symbol.toStringTag](){return\"Promise\"}get[Symbol.species](){return D}then(e,n){let o=this.constructor[Symbol.species];o&&\"function\"==typeof o||(o=this.constructor||D);const r=new o(S),s=t.current;return null==this[g]?this[k].push(s,r,e,n):Z(this,s,r,e,n),r}catch(e){return this.then(null,e)}finally(e){let n=this.constructor[Symbol.species];n&&\"function\"==typeof n||(n=D);const o=new n(S);o[_]=_;const r=t.current;return null==this[g]?this[k].push(r,o,e,e):Z(this,r,o,e,e),o}}D.resolve=D.resolve,D.reject=D.reject,D.race=D.race,D.all=D.all;const P=e[c]=e.Promise,z=t.__symbol__(\"ZoneAwarePromise\");let C=o(e,\"Promise\");C&&!C.configurable||(C&&delete C.writable,C&&delete C.value,C||(C={configurable:!0,enumerable:!0}),C.get=function(){return e[z]?e[z]:e[c]},C.set=function(t){t===D?e[z]=t:(e[c]=t,t.prototype[l]||j(t),n.setNativePromise(t))},r(e,\"Promise\",C)),e.Promise=D;const O=s(\"thenPatched\");function j(e){const t=e.prototype,n=o(t,\"then\");if(n&&(!1===n.writable||!n.configurable))return;const r=t.then;t[l]=r,e.prototype.then=function(e,t){return new D((e,t)=>{r.call(this,e,t)}).then(e,t)},e[O]=!0}if(n.patchThen=j,P){j(P);const t=e.fetch;\"function\"==typeof t&&(e[n.symbol(\"fetch\")]=t,e.fetch=(I=t,function(){let e=I.apply(this,arguments);if(e instanceof D)return e;let t=e.constructor;return t[O]||j(t),e}))}var I;return Promise[t.__symbol__(\"uncaughtPromiseErrors\")]=a,D});const e=Object.getOwnPropertyDescriptor,t=Object.defineProperty,n=Object.getPrototypeOf,o=Object.create,r=Array.prototype.slice,s=Zone.__symbol__(\"addEventListener\"),a=Zone.__symbol__(\"removeEventListener\"),i=Zone.__symbol__(\"\");function c(e,t){return Zone.current.wrap(e,t)}function l(e,t,n,o,r){return Zone.current.scheduleMacroTask(e,t,n,o,r)}const u=Zone.__symbol__,h=\"undefined\"!=typeof window,p=h?window:void 0,f=h&&p||\"object\"==typeof self&&self||global,d=[null];function g(e,t){for(let n=e.length-1;n>=0;n--)\"function\"==typeof e[n]&&(e[n]=c(e[n],t+\"_\"+n));return e}function k(e){return!e||!1!==e.writable&&!(\"function\"==typeof e.get&&void 0===e.set)}const _=\"undefined\"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope,m=!(\"nw\"in f)&&void 0!==f.process&&\"[object process]\"==={}.toString.call(f.process),y=!m&&!_&&!(!h||!p.HTMLElement),v=void 0!==f.process&&\"[object process]\"==={}.toString.call(f.process)&&!_&&!(!h||!p.HTMLElement),b={},T=function(e){if(!(e=e||f.event))return;let t=b[e.type];t||(t=b[e.type]=u(\"ON_PROPERTY\"+e.type));const n=this||e.target||f,o=n[t];let r;if(y&&n===p&&\"error\"===e.type){const t=e;r=o&&o.call(this,t.message,t.filename,t.lineno,t.colno,t.error),!0===r&&e.preventDefault()}else r=o&&o.apply(this,arguments),null==r||r||e.preventDefault();return r};function E(n,o,r){let s=e(n,o);if(!s&&r&&e(r,o)&&(s={enumerable:!0,configurable:!0}),!s||!s.configurable)return;const a=u(\"on\"+o+\"patched\");if(n.hasOwnProperty(a)&&n[a])return;delete s.writable,delete s.value;const i=s.get,c=s.set,l=o.substr(2);let h=b[l];h||(h=b[l]=u(\"ON_PROPERTY\"+l)),s.set=function(e){let t=this;t||n!==f||(t=f),t&&(t[h]&&t.removeEventListener(l,T),c&&c.apply(t,d),\"function\"==typeof e?(t[h]=e,t.addEventListener(l,T,!1)):t[h]=null)},s.get=function(){let e=this;if(e||n!==f||(e=f),!e)return null;const t=e[h];if(t)return t;if(i){let t=i&&i.call(this);if(t)return s.set.call(this,t),\"function\"==typeof e.removeAttribute&&e.removeAttribute(o),t}return null},t(n,o,s),n[a]=!0}function w(e,t,n){if(t)for(let o=0;ofunction(t,o){const s=n(t,o);return s.cbIdx>=0&&\"function\"==typeof o[s.cbIdx]?l(s.name,o[s.cbIdx],s,r):e.apply(t,o)})}function z(e,t){e[u(\"OriginalDelegate\")]=t}let C=!1,O=!1;function j(){try{const e=p.navigator.userAgent;if(-1!==e.indexOf(\"MSIE \")||-1!==e.indexOf(\"Trident/\"))return!0}catch(e){}return!1}function I(){if(C)return O;C=!0;try{const e=p.navigator.userAgent;-1===e.indexOf(\"MSIE \")&&-1===e.indexOf(\"Trident/\")&&-1===e.indexOf(\"Edge/\")||(O=!0)}catch(e){}return O}Zone.__load_patch(\"toString\",e=>{const t=Function.prototype.toString,n=u(\"OriginalDelegate\"),o=u(\"Promise\"),r=u(\"Error\"),s=function(){if(\"function\"==typeof this){const s=this[n];if(s)return\"function\"==typeof s?t.call(s):Object.prototype.toString.call(s);if(this===Promise){const n=e[o];if(n)return t.call(n)}if(this===Error){const n=e[r];if(n)return t.call(n)}}return t.call(this)};s[n]=t,Function.prototype.toString=s;const a=Object.prototype.toString;Object.prototype.toString=function(){return this instanceof Promise?\"[object Promise]\":a.call(this)}});let N=!1;if(\"undefined\"!=typeof window)try{const e=Object.defineProperty({},\"passive\",{get:function(){N=!0}});window.addEventListener(\"test\",e,e),window.removeEventListener(\"test\",e,e)}catch(ie){N=!1}const R={useG:!0},x={},L={},M=new RegExp(\"^\"+i+\"(\\\\w+)(true|false)$\"),A=u(\"propagationStopped\");function H(e,t){const n=(t?t(e):e)+\"false\",o=(t?t(e):e)+\"true\",r=i+n,s=i+o;x[e]={},x[e].false=r,x[e].true=s}function F(e,t,o){const r=o&&o.add||\"addEventListener\",s=o&&o.rm||\"removeEventListener\",a=o&&o.listeners||\"eventListeners\",c=o&&o.rmAll||\"removeAllListeners\",l=u(r),h=\".\"+r+\":\",p=function(e,t,n){if(e.isRemoved)return;const o=e.callback;\"object\"==typeof o&&o.handleEvent&&(e.callback=e=>o.handleEvent(e),e.originalDelegate=o),e.invoke(e,t,[n]);const r=e.options;r&&\"object\"==typeof r&&r.once&&t[s].call(t,n.type,e.originalDelegate?e.originalDelegate:e.callback,r)},f=function(t){if(!(t=t||e.event))return;const n=this||t.target||e,o=n[x[t.type].false];if(o)if(1===o.length)p(o[0],n,t);else{const e=o.slice();for(let o=0;ofunction(t,n){t[A]=!0,e&&e.apply(t,n)})}function W(e,t,n,o,r){const s=Zone.__symbol__(o);if(t[s])return;const a=t[s]=t[o];t[o]=function(s,i,c){return i&&i.prototype&&r.forEach((function(t){const r=`${n}.${o}::`+t,s=i.prototype;if(s.hasOwnProperty(t)){const n=e.ObjectGetOwnPropertyDescriptor(s,t);n&&n.value?(n.value=e.wrapWithCurrentZone(n.value,r),e._redefineProperty(i.prototype,t,n)):s[t]&&(s[t]=e.wrapWithCurrentZone(s[t],r))}else s[t]&&(s[t]=e.wrapWithCurrentZone(s[t],r))})),a.call(t,s,i,c)},e.attachOriginToPatched(t[o],a)}const q=[\"absolutedeviceorientation\",\"afterinput\",\"afterprint\",\"appinstalled\",\"beforeinstallprompt\",\"beforeprint\",\"beforeunload\",\"devicelight\",\"devicemotion\",\"deviceorientation\",\"deviceorientationabsolute\",\"deviceproximity\",\"hashchange\",\"languagechange\",\"message\",\"mozbeforepaint\",\"offline\",\"online\",\"paint\",\"pageshow\",\"pagehide\",\"popstate\",\"rejectionhandled\",\"storage\",\"unhandledrejection\",\"unload\",\"userproximity\",\"vrdisplayconnected\",\"vrdisplaydisconnected\",\"vrdisplaypresentchange\"],U=[\"encrypted\",\"waitingforkey\",\"msneedkey\",\"mozinterruptbegin\",\"mozinterruptend\"],$=[\"load\"],V=[\"blur\",\"error\",\"focus\",\"load\",\"resize\",\"scroll\",\"messageerror\"],X=[\"bounce\",\"finish\",\"start\"],J=[\"loadstart\",\"progress\",\"abort\",\"error\",\"load\",\"progress\",\"timeout\",\"loadend\",\"readystatechange\"],Y=[\"upgradeneeded\",\"complete\",\"abort\",\"success\",\"error\",\"blocked\",\"versionchange\",\"close\"],K=[\"close\",\"error\",\"open\",\"message\"],Q=[\"error\",\"message\"],ee=[\"abort\",\"animationcancel\",\"animationend\",\"animationiteration\",\"auxclick\",\"beforeinput\",\"blur\",\"cancel\",\"canplay\",\"canplaythrough\",\"change\",\"compositionstart\",\"compositionupdate\",\"compositionend\",\"cuechange\",\"click\",\"close\",\"contextmenu\",\"curechange\",\"dblclick\",\"drag\",\"dragend\",\"dragenter\",\"dragexit\",\"dragleave\",\"dragover\",\"drop\",\"durationchange\",\"emptied\",\"ended\",\"error\",\"focus\",\"focusin\",\"focusout\",\"gotpointercapture\",\"input\",\"invalid\",\"keydown\",\"keypress\",\"keyup\",\"load\",\"loadstart\",\"loadeddata\",\"loadedmetadata\",\"lostpointercapture\",\"mousedown\",\"mouseenter\",\"mouseleave\",\"mousemove\",\"mouseout\",\"mouseover\",\"mouseup\",\"mousewheel\",\"orientationchange\",\"pause\",\"play\",\"playing\",\"pointercancel\",\"pointerdown\",\"pointerenter\",\"pointerleave\",\"pointerlockchange\",\"mozpointerlockchange\",\"webkitpointerlockerchange\",\"pointerlockerror\",\"mozpointerlockerror\",\"webkitpointerlockerror\",\"pointermove\",\"pointout\",\"pointerover\",\"pointerup\",\"progress\",\"ratechange\",\"reset\",\"resize\",\"scroll\",\"seeked\",\"seeking\",\"select\",\"selectionchange\",\"selectstart\",\"show\",\"sort\",\"stalled\",\"submit\",\"suspend\",\"timeupdate\",\"volumechange\",\"touchcancel\",\"touchmove\",\"touchstart\",\"touchend\",\"transitioncancel\",\"transitionend\",\"waiting\",\"wheel\"].concat([\"webglcontextrestored\",\"webglcontextlost\",\"webglcontextcreationerror\"],[\"autocomplete\",\"autocompleteerror\"],[\"toggle\"],[\"afterscriptexecute\",\"beforescriptexecute\",\"DOMContentLoaded\",\"freeze\",\"fullscreenchange\",\"mozfullscreenchange\",\"webkitfullscreenchange\",\"msfullscreenchange\",\"fullscreenerror\",\"mozfullscreenerror\",\"webkitfullscreenerror\",\"msfullscreenerror\",\"readystatechange\",\"visibilitychange\",\"resume\"],q,[\"beforecopy\",\"beforecut\",\"beforepaste\",\"copy\",\"cut\",\"paste\",\"dragstart\",\"loadend\",\"animationstart\",\"search\",\"transitionrun\",\"transitionstart\",\"webkitanimationend\",\"webkitanimationiteration\",\"webkitanimationstart\",\"webkittransitionend\"],[\"activate\",\"afterupdate\",\"ariarequest\",\"beforeactivate\",\"beforedeactivate\",\"beforeeditfocus\",\"beforeupdate\",\"cellchange\",\"controlselect\",\"dataavailable\",\"datasetchanged\",\"datasetcomplete\",\"errorupdate\",\"filterchange\",\"layoutcomplete\",\"losecapture\",\"move\",\"moveend\",\"movestart\",\"propertychange\",\"resizeend\",\"resizestart\",\"rowenter\",\"rowexit\",\"rowsdelete\",\"rowsinserted\",\"command\",\"compassneedscalibration\",\"deactivate\",\"help\",\"mscontentzoom\",\"msmanipulationstatechanged\",\"msgesturechange\",\"msgesturedoubletap\",\"msgestureend\",\"msgesturehold\",\"msgesturestart\",\"msgesturetap\",\"msgotpointercapture\",\"msinertiastart\",\"mslostpointercapture\",\"mspointercancel\",\"mspointerdown\",\"mspointerenter\",\"mspointerhover\",\"mspointerleave\",\"mspointermove\",\"mspointerout\",\"mspointerover\",\"mspointerup\",\"pointerout\",\"mssitemodejumplistitemremoved\",\"msthumbnailclick\",\"stop\",\"storagecommit\"]);function te(e,t,n){if(!n||0===n.length)return t;const o=n.filter(t=>t.target===e);if(!o||0===o.length)return t;const r=o[0].ignoreProperties;return t.filter(e=>-1===r.indexOf(e))}function ne(e,t,n,o){e&&w(e,te(e,t,n),o)}function oe(e,t){if(m&&!v)return;if(Zone[e.symbol(\"patchEvents\")])return;const o=\"undefined\"!=typeof WebSocket,r=t.__Zone_ignore_on_properties;if(y){const e=window,t=j?[{target:e,ignoreProperties:[\"error\"]}]:[];ne(e,ee.concat([\"messageerror\"]),r?r.concat(t):r,n(e)),ne(Document.prototype,ee,r),void 0!==e.SVGElement&&ne(e.SVGElement.prototype,ee,r),ne(Element.prototype,ee,r),ne(HTMLElement.prototype,ee,r),ne(HTMLMediaElement.prototype,U,r),ne(HTMLFrameSetElement.prototype,q.concat(V),r),ne(HTMLBodyElement.prototype,q.concat(V),r),ne(HTMLFrameElement.prototype,$,r),ne(HTMLIFrameElement.prototype,$,r);const o=e.HTMLMarqueeElement;o&&ne(o.prototype,X,r);const s=e.Worker;s&&ne(s.prototype,Q,r)}const s=t.XMLHttpRequest;s&&ne(s.prototype,J,r);const a=t.XMLHttpRequestEventTarget;a&&ne(a&&a.prototype,J,r),\"undefined\"!=typeof IDBIndex&&(ne(IDBIndex.prototype,Y,r),ne(IDBRequest.prototype,Y,r),ne(IDBOpenDBRequest.prototype,Y,r),ne(IDBDatabase.prototype,Y,r),ne(IDBTransaction.prototype,Y,r),ne(IDBCursor.prototype,Y,r)),o&&ne(WebSocket.prototype,K,r)}Zone.__load_patch(\"util\",(n,s,a)=>{a.patchOnProperties=w,a.patchMethod=D,a.bindArguments=g,a.patchMacroTask=P;const l=s.__symbol__(\"BLACK_LISTED_EVENTS\"),u=s.__symbol__(\"UNPATCHED_EVENTS\");n[u]&&(n[l]=n[u]),n[l]&&(s[l]=s[u]=n[l]),a.patchEventPrototype=B,a.patchEventTarget=F,a.isIEOrEdge=I,a.ObjectDefineProperty=t,a.ObjectGetOwnPropertyDescriptor=e,a.ObjectCreate=o,a.ArraySlice=r,a.patchClass=S,a.wrapWithCurrentZone=c,a.filterProperties=te,a.attachOriginToPatched=z,a._redefineProperty=Object.defineProperty,a.patchCallbacks=W,a.getGlobalObjects=()=>({globalSources:L,zoneSymbolEventNames:x,eventNames:ee,isBrowser:y,isMix:v,isNode:m,TRUE_STR:\"true\",FALSE_STR:\"false\",ZONE_SYMBOL_PREFIX:i,ADD_EVENT_LISTENER_STR:\"addEventListener\",REMOVE_EVENT_LISTENER_STR:\"removeEventListener\"})});const re=u(\"zoneTask\");function se(e,t,n,o){let r=null,s=null;n+=o;const a={};function i(t){const n=t.data;return n.args[0]=function(){try{t.invoke.apply(this,arguments)}finally{t.data&&t.data.isPeriodic||(\"number\"==typeof n.handleId?delete a[n.handleId]:n.handleId&&(n.handleId[re]=null))}},n.handleId=r.apply(e,n.args),t}function c(e){return s(e.data.handleId)}r=D(e,t+=o,n=>function(r,s){if(\"function\"==typeof s[0]){const e=l(t,s[0],{isPeriodic:\"Interval\"===o,delay:\"Timeout\"===o||\"Interval\"===o?s[1]||0:void 0,args:s},i,c);if(!e)return e;const n=e.data.handleId;return\"number\"==typeof n?a[n]=e:n&&(n[re]=e),n&&n.ref&&n.unref&&\"function\"==typeof n.ref&&\"function\"==typeof n.unref&&(e.ref=n.ref.bind(n),e.unref=n.unref.bind(n)),\"number\"==typeof n||n?n:e}return n.apply(e,s)}),s=D(e,n,t=>function(n,o){const r=o[0];let s;\"number\"==typeof r?s=a[r]:(s=r&&r[re],s||(s=r)),s&&\"string\"==typeof s.type?\"notScheduled\"!==s.state&&(s.cancelFn&&s.data.isPeriodic||0===s.runCount)&&(\"number\"==typeof r?delete a[r]:r&&(r[re]=null),s.zone.cancelTask(s)):t.apply(e,o)})}function ae(e,t){if(Zone[t.symbol(\"patchEventTarget\")])return;const{eventNames:n,zoneSymbolEventNames:o,TRUE_STR:r,FALSE_STR:s,ZONE_SYMBOL_PREFIX:a}=t.getGlobalObjects();for(let c=0;c{const t=e[Zone.__symbol__(\"legacyPatch\")];t&&t()}),Zone.__load_patch(\"timers\",e=>{se(e,\"set\",\"clear\",\"Timeout\"),se(e,\"set\",\"clear\",\"Interval\"),se(e,\"set\",\"clear\",\"Immediate\")}),Zone.__load_patch(\"requestAnimationFrame\",e=>{se(e,\"request\",\"cancel\",\"AnimationFrame\"),se(e,\"mozRequest\",\"mozCancel\",\"AnimationFrame\"),se(e,\"webkitRequest\",\"webkitCancel\",\"AnimationFrame\")}),Zone.__load_patch(\"blocking\",(e,t)=>{const n=[\"alert\",\"prompt\",\"confirm\"];for(let o=0;ofunction(o,s){return t.current.run(n,e,s,r)})}),Zone.__load_patch(\"EventTarget\",(e,t,n)=>{!function(e,t){t.patchEventPrototype(e,t)}(e,n),ae(e,n);const o=e.XMLHttpRequestEventTarget;o&&o.prototype&&n.patchEventTarget(e,[o.prototype]),S(\"MutationObserver\"),S(\"WebKitMutationObserver\"),S(\"IntersectionObserver\"),S(\"FileReader\")}),Zone.__load_patch(\"on_property\",(e,t,n)=>{oe(n,e)}),Zone.__load_patch(\"customElements\",(e,t,n)=>{!function(e,t){const{isBrowser:n,isMix:o}=t.getGlobalObjects();(n||o)&&e.customElements&&\"customElements\"in e&&t.patchCallbacks(t,e.customElements,\"customElements\",\"define\",[\"connectedCallback\",\"disconnectedCallback\",\"adoptedCallback\",\"attributeChangedCallback\"])}(e,n)}),Zone.__load_patch(\"XHR\",(e,t)=>{!function(e){const p=e.XMLHttpRequest;if(!p)return;const f=p.prototype;let d=f[s],g=f[a];if(!d){const t=e.XMLHttpRequestEventTarget;if(t){const e=t.prototype;d=e[s],g=e[a]}}function k(e){const o=e.data,c=o.target;c[i]=!1,c[h]=!1;const l=c[r];d||(d=c[s],g=c[a]),l&&g.call(c,\"readystatechange\",l);const u=c[r]=()=>{if(c.readyState===c.DONE)if(!o.aborted&&c[i]&&\"scheduled\"===e.state){const n=c[t.__symbol__(\"loadfalse\")];if(n&&n.length>0){const r=e.invoke;e.invoke=function(){const n=c[t.__symbol__(\"loadfalse\")];for(let t=0;tfunction(e,t){return e[o]=0==t[2],e[c]=t[1],y.apply(e,t)}),v=u(\"fetchTaskAborting\"),b=u(\"fetchTaskScheduling\"),T=D(f,\"send\",()=>function(e,n){if(!0===t.current[b])return T.apply(e,n);if(e[o])return T.apply(e,n);{const t={target:e,url:e[c],isPeriodic:!1,args:n,aborted:!1},o=l(\"XMLHttpRequest.send\",_,t,k,m);e&&!0===e[h]&&!t.aborted&&\"scheduled\"===o.state&&o.invoke()}}),E=D(f,\"abort\",()=>function(e,o){const r=e[n];if(r&&\"string\"==typeof r.type){if(null==r.cancelFn||r.data&&r.data.aborted)return;r.zone.cancelTask(r)}else if(!0===t.current[v])return E.apply(e,o)})}(e);const n=u(\"xhrTask\"),o=u(\"xhrSync\"),r=u(\"xhrListener\"),i=u(\"xhrScheduled\"),c=u(\"xhrURL\"),h=u(\"xhrErrorBeforeScheduled\")}),Zone.__load_patch(\"geolocation\",t=>{t.navigator&&t.navigator.geolocation&&function(t,n){const o=t.constructor.name;for(let r=0;r{const t=function(){return e.apply(this,g(arguments,o+\".\"+s))};return z(t,e),t})(a)}}}(t.navigator.geolocation,[\"getCurrentPosition\",\"watchPosition\"])}),Zone.__load_patch(\"PromiseRejectionEvent\",(e,t)=>{function n(t){return function(n){G(e,t).forEach(o=>{const r=e.PromiseRejectionEvent;if(r){const e=new r(t,{promise:n.promise,reason:n.rejection});o.invoke(e)}})}}e.PromiseRejectionEvent&&(t[u(\"unhandledPromiseRejectionHandler\")]=n(\"unhandledrejection\"),t[u(\"rejectionHandledHandler\")]=n(\"rejectionhandled\"))})})?o.call(t,n,t,e):o)||(e.exports=r)}},[[2,0]]]);"); err != nil { + if err := fs.Add("rf-ng/ui/en/polyfills-es2015.2c95a2527334fc660304.js", 37670, os.FileMode(420), time.Unix(1587937607, 0), "(window.webpackJsonp=window.webpackJsonp||[]).push([[2],{2:function(e,t,n){e.exports=n(\"hN/g\")},\"N/DB\":function(e,t){const n=\"undefined\"!=typeof globalThis&&globalThis,o=\"undefined\"!=typeof window&&window,r=\"undefined\"!=typeof self&&\"undefined\"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&self,s=\"undefined\"!=typeof global&&global,a=function(e,...t){if(a.translate){const n=a.translate(e,t);e=n[0],t=n[1]}let n=i(e[0],e.raw[0]);for(let o=1;o\",this._properties=t&&t.properties||{},this._zoneDelegate=new l(this,this._parent&&this._parent._zoneDelegate,t)}static assertZonePatched(){if(e.Promise!==z.ZoneAwarePromise)throw new Error(\"Zone.js has detected that ZoneAwarePromise `(window|global).Promise` has been overwritten.\\nMost likely cause is that a Promise polyfill has been loaded after Zone.js (Polyfilling Promise api is not necessary when zone.js is loaded. If you must load one, do so before loading zone.js.)\")}static get root(){let e=i.current;for(;e.parent;)e=e.parent;return e}static get current(){return O.zone}static get currentTask(){return j}static __load_patch(t,r){if(z.hasOwnProperty(t)){if(a)throw Error(\"Already loaded patch: \"+t)}else if(!e[\"__Zone_disable_\"+t]){const s=\"Zone:\"+t;n(s),z[t]=r(e,i,C),o(s,s)}}get parent(){return this._parent}get name(){return this._name}get(e){const t=this.getZoneWith(e);if(t)return t._properties[e]}getZoneWith(e){let t=this;for(;t;){if(t._properties.hasOwnProperty(e))return t;t=t._parent}return null}fork(e){if(!e)throw new Error(\"ZoneSpec required!\");return this._zoneDelegate.fork(this,e)}wrap(e,t){if(\"function\"!=typeof e)throw new Error(\"Expecting function got: \"+e);const n=this._zoneDelegate.intercept(this,e,t),o=this;return function(){return o.runGuarded(n,this,arguments,t)}}run(e,t,n,o){O={parent:O,zone:this};try{return this._zoneDelegate.invoke(this,e,t,n,o)}finally{O=O.parent}}runGuarded(e,t=null,n,o){O={parent:O,zone:this};try{try{return this._zoneDelegate.invoke(this,e,t,n,o)}catch(r){if(this._zoneDelegate.handleError(this,r))throw r}}finally{O=O.parent}}runTask(e,t,n){if(e.zone!=this)throw new Error(\"A task can only be run in the zone of creation! (Creation: \"+(e.zone||y).name+\"; Execution: \"+this.name+\")\");if(e.state===v&&(e.type===P||e.type===D))return;const o=e.state!=E;o&&e._transitionTo(E,T),e.runCount++;const r=j;j=e,O={parent:O,zone:this};try{e.type==D&&e.data&&!e.data.isPeriodic&&(e.cancelFn=void 0);try{return this._zoneDelegate.invokeTask(this,e,t,n)}catch(s){if(this._zoneDelegate.handleError(this,s))throw s}}finally{e.state!==v&&e.state!==Z&&(e.type==P||e.data&&e.data.isPeriodic?o&&e._transitionTo(T,E):(e.runCount=0,this._updateTaskCount(e,-1),o&&e._transitionTo(v,E,v))),O=O.parent,j=r}}scheduleTask(e){if(e.zone&&e.zone!==this){let t=this;for(;t;){if(t===e.zone)throw Error(`can not reschedule task to ${this.name} which is descendants of the original zone ${e.zone.name}`);t=t.parent}}e._transitionTo(b,v);const t=[];e._zoneDelegates=t,e._zone=this;try{e=this._zoneDelegate.scheduleTask(this,e)}catch(n){throw e._transitionTo(Z,b,v),this._zoneDelegate.handleError(this,n),n}return e._zoneDelegates===t&&this._updateTaskCount(e,1),e.state==b&&e._transitionTo(T,b),e}scheduleMicroTask(e,t,n,o){return this.scheduleTask(new u(S,e,t,n,o,void 0))}scheduleMacroTask(e,t,n,o,r){return this.scheduleTask(new u(D,e,t,n,o,r))}scheduleEventTask(e,t,n,o,r){return this.scheduleTask(new u(P,e,t,n,o,r))}cancelTask(e){if(e.zone!=this)throw new Error(\"A task can only be cancelled in the zone of creation! (Creation: \"+(e.zone||y).name+\"; Execution: \"+this.name+\")\");e._transitionTo(w,T,E);try{this._zoneDelegate.cancelTask(this,e)}catch(t){throw e._transitionTo(Z,w),this._zoneDelegate.handleError(this,t),t}return this._updateTaskCount(e,-1),e._transitionTo(v,w),e.runCount=0,e}_updateTaskCount(e,t){const n=e._zoneDelegates;-1==t&&(e._zoneDelegates=null);for(let o=0;oe.hasTask(n,o),onScheduleTask:(e,t,n,o)=>e.scheduleTask(n,o),onInvokeTask:(e,t,n,o,r,s)=>e.invokeTask(n,o,r,s),onCancelTask:(e,t,n,o)=>e.cancelTask(n,o)};class l{constructor(e,t,n){this._taskCounts={microTask:0,macroTask:0,eventTask:0},this.zone=e,this._parentDelegate=t,this._forkZS=n&&(n&&n.onFork?n:t._forkZS),this._forkDlgt=n&&(n.onFork?t:t._forkDlgt),this._forkCurrZone=n&&(n.onFork?this.zone:t._forkCurrZone),this._interceptZS=n&&(n.onIntercept?n:t._interceptZS),this._interceptDlgt=n&&(n.onIntercept?t:t._interceptDlgt),this._interceptCurrZone=n&&(n.onIntercept?this.zone:t._interceptCurrZone),this._invokeZS=n&&(n.onInvoke?n:t._invokeZS),this._invokeDlgt=n&&(n.onInvoke?t:t._invokeDlgt),this._invokeCurrZone=n&&(n.onInvoke?this.zone:t._invokeCurrZone),this._handleErrorZS=n&&(n.onHandleError?n:t._handleErrorZS),this._handleErrorDlgt=n&&(n.onHandleError?t:t._handleErrorDlgt),this._handleErrorCurrZone=n&&(n.onHandleError?this.zone:t._handleErrorCurrZone),this._scheduleTaskZS=n&&(n.onScheduleTask?n:t._scheduleTaskZS),this._scheduleTaskDlgt=n&&(n.onScheduleTask?t:t._scheduleTaskDlgt),this._scheduleTaskCurrZone=n&&(n.onScheduleTask?this.zone:t._scheduleTaskCurrZone),this._invokeTaskZS=n&&(n.onInvokeTask?n:t._invokeTaskZS),this._invokeTaskDlgt=n&&(n.onInvokeTask?t:t._invokeTaskDlgt),this._invokeTaskCurrZone=n&&(n.onInvokeTask?this.zone:t._invokeTaskCurrZone),this._cancelTaskZS=n&&(n.onCancelTask?n:t._cancelTaskZS),this._cancelTaskDlgt=n&&(n.onCancelTask?t:t._cancelTaskDlgt),this._cancelTaskCurrZone=n&&(n.onCancelTask?this.zone:t._cancelTaskCurrZone),this._hasTaskZS=null,this._hasTaskDlgt=null,this._hasTaskDlgtOwner=null,this._hasTaskCurrZone=null;const o=n&&n.onHasTask;(o||t&&t._hasTaskZS)&&(this._hasTaskZS=o?n:c,this._hasTaskDlgt=t,this._hasTaskDlgtOwner=this,this._hasTaskCurrZone=e,n.onScheduleTask||(this._scheduleTaskZS=c,this._scheduleTaskDlgt=t,this._scheduleTaskCurrZone=this.zone),n.onInvokeTask||(this._invokeTaskZS=c,this._invokeTaskDlgt=t,this._invokeTaskCurrZone=this.zone),n.onCancelTask||(this._cancelTaskZS=c,this._cancelTaskDlgt=t,this._cancelTaskCurrZone=this.zone))}fork(e,t){return this._forkZS?this._forkZS.onFork(this._forkDlgt,this.zone,e,t):new i(e,t)}intercept(e,t,n){return this._interceptZS?this._interceptZS.onIntercept(this._interceptDlgt,this._interceptCurrZone,e,t,n):t}invoke(e,t,n,o,r){return this._invokeZS?this._invokeZS.onInvoke(this._invokeDlgt,this._invokeCurrZone,e,t,n,o,r):t.apply(n,o)}handleError(e,t){return!this._handleErrorZS||this._handleErrorZS.onHandleError(this._handleErrorDlgt,this._handleErrorCurrZone,e,t)}scheduleTask(e,t){let n=t;if(this._scheduleTaskZS)this._hasTaskZS&&n._zoneDelegates.push(this._hasTaskDlgtOwner),n=this._scheduleTaskZS.onScheduleTask(this._scheduleTaskDlgt,this._scheduleTaskCurrZone,e,t),n||(n=t);else if(t.scheduleFn)t.scheduleFn(t);else{if(t.type!=S)throw new Error(\"Task is missing scheduleFn.\");_(t)}return n}invokeTask(e,t,n,o){return this._invokeTaskZS?this._invokeTaskZS.onInvokeTask(this._invokeTaskDlgt,this._invokeTaskCurrZone,e,t,n,o):t.callback.apply(n,o)}cancelTask(e,t){let n;if(this._cancelTaskZS)n=this._cancelTaskZS.onCancelTask(this._cancelTaskDlgt,this._cancelTaskCurrZone,e,t);else{if(!t.cancelFn)throw Error(\"Task is not cancelable\");n=t.cancelFn(t)}return n}hasTask(e,t){try{this._hasTaskZS&&this._hasTaskZS.onHasTask(this._hasTaskDlgt,this._hasTaskCurrZone,e,t)}catch(n){this.handleError(e,n)}}_updateTaskCount(e,t){const n=this._taskCounts,o=n[e],r=n[e]=o+t;if(r<0)throw new Error(\"More tasks executed then were scheduled.\");0!=o&&0!=r||this.hasTask(this.zone,{microTask:n.microTask>0,macroTask:n.macroTask>0,eventTask:n.eventTask>0,change:e})}}class u{constructor(t,n,o,r,s,a){if(this._zone=null,this.runCount=0,this._zoneDelegates=null,this._state=\"notScheduled\",this.type=t,this.source=n,this.data=r,this.scheduleFn=s,this.cancelFn=a,!o)throw new Error(\"callback is not defined\");this.callback=o;const i=this;this.invoke=t===P&&r&&r.useG?u.invokeTask:function(){return u.invokeTask.call(e,i,this,arguments)}}static invokeTask(e,t,n){e||(e=this),I++;try{return e.runCount++,e.zone.runTask(e,t,n)}finally{1==I&&m(),I--}}get zone(){return this._zone}get state(){return this._state}cancelScheduleRequest(){this._transitionTo(v,b)}_transitionTo(e,t,n){if(this._state!==t&&this._state!==n)throw new Error(`${this.type} '${this.source}': can not transition to '${e}', expecting state '${t}'${n?\" or '\"+n+\"'\":\"\"}, was '${this._state}'.`);this._state=e,e==v&&(this._zoneDelegates=null)}toString(){return this.data&&void 0!==this.data.handleId?this.data.handleId.toString():Object.prototype.toString.call(this)}toJSON(){return{type:this.type,state:this.state,source:this.source,zone:this.zone.name,runCount:this.runCount}}}const h=s(\"setTimeout\"),p=s(\"Promise\"),f=s(\"then\");let d,g=[],k=!1;function _(t){if(0===I&&0===g.length)if(d||e[p]&&(d=e[p].resolve(0)),d){let e=d[f];e||(e=d.then),e.call(d,m)}else e[h](m,0);t&&g.push(t)}function m(){if(!k){for(k=!0;g.length;){const t=g;g=[];for(let n=0;nO,onUnhandledError:N,microtaskDrainDone:N,scheduleMicroTask:_,showUncaughtError:()=>!i[s(\"ignoreConsoleErrorUncaughtError\")],patchEventTarget:()=>[],patchOnProperties:N,patchMethod:()=>N,bindArguments:()=>[],patchThen:()=>N,patchMacroTask:()=>N,setNativePromise:e=>{e&&\"function\"==typeof e.resolve&&(d=e.resolve(0))},patchEventPrototype:()=>N,isIEOrEdge:()=>!1,getGlobalObjects:()=>{},ObjectDefineProperty:()=>N,ObjectGetOwnPropertyDescriptor:()=>{},ObjectCreate:()=>{},ArraySlice:()=>[],patchClass:()=>N,wrapWithCurrentZone:()=>N,filterProperties:()=>[],attachOriginToPatched:()=>N,_redefineProperty:()=>N,patchCallbacks:()=>N};let O={parent:null,zone:new i(null,null)},j=null,I=0;function N(){}o(\"Zone\",\"Zone\"),e.Zone=i}(\"undefined\"!=typeof window&&window||\"undefined\"!=typeof self&&self||global),Zone.__load_patch(\"ZoneAwarePromise\",(e,t,n)=>{const o=Object.getOwnPropertyDescriptor,r=Object.defineProperty,s=n.symbol,a=[],i=!0===e[s(\"DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION\")],c=s(\"Promise\"),l=s(\"then\");n.onUnhandledError=e=>{if(n.showUncaughtError()){const t=e&&e.rejection;t?console.error(\"Unhandled Promise rejection:\",t instanceof Error?t.message:t,\"; Zone:\",e.zone.name,\"; Task:\",e.task&&e.task.source,\"; Value:\",t,t instanceof Error?t.stack:void 0):console.error(e)}},n.microtaskDrainDone=()=>{for(;a.length;){const t=a.shift();try{t.zone.runGuarded(()=>{throw t})}catch(e){h(e)}}};const u=s(\"unhandledPromiseRejectionHandler\");function h(e){n.onUnhandledError(e);try{const n=t[u];\"function\"==typeof n&&n.call(this,e)}catch(o){}}function p(e){return e&&e.then}function f(e){return e}function d(e){return D.reject(e)}const g=s(\"state\"),k=s(\"value\"),_=s(\"finally\"),m=s(\"parentPromiseValue\"),y=s(\"parentPromiseState\");function v(e,t){return n=>{try{T(e,t,n)}catch(o){T(e,!1,o)}}}const b=s(\"currentTaskTrace\");function T(e,o,s){const c=function(){let e=!1;return function(t){return function(){e||(e=!0,t.apply(null,arguments))}}}();if(e===s)throw new TypeError(\"Promise resolved with itself\");if(null===e[g]){let h=null;try{\"object\"!=typeof s&&\"function\"!=typeof s||(h=s&&s.then)}catch(u){return c(()=>{T(e,!1,u)})(),e}if(!1!==o&&s instanceof D&&s.hasOwnProperty(g)&&s.hasOwnProperty(k)&&null!==s[g])w(s),T(e,s[g],s[k]);else if(!1!==o&&\"function\"==typeof h)try{h.call(s,c(v(e,o)),c(v(e,!1)))}catch(u){c(()=>{T(e,!1,u)})()}else{e[g]=o;const c=e[k];if(e[k]=s,e[_]===_&&!0===o&&(e[g]=e[y],e[k]=e[m]),!1===o&&s instanceof Error){const e=t.currentTask&&t.currentTask.data&&t.currentTask.data.__creationTrace__;e&&r(s,b,{configurable:!0,enumerable:!1,writable:!0,value:e})}for(let t=0;t{try{const o=e[k],r=!!n&&_===n[_];r&&(n[m]=o,n[y]=s);const i=t.run(a,void 0,r&&a!==d&&a!==f?[]:[o]);T(n,!0,i)}catch(o){T(n,!1,o)}},n)}const S=function(){};class D{static toString(){return\"function ZoneAwarePromise() { [native code] }\"}static resolve(e){return T(new this(null),!0,e)}static reject(e){return T(new this(null),!1,e)}static race(e){let t,n,o=new this((e,o)=>{t=e,n=o});function r(e){t(e)}function s(e){n(e)}for(let a of e)p(a)||(a=this.resolve(a)),a.then(r,s);return o}static all(e){return D.allWithCallback(e)}static allSettled(e){return(this&&this.prototype instanceof D?this:D).allWithCallback(e,{thenCallback:e=>({status:\"fulfilled\",value:e}),errorCallback:e=>({status:\"rejected\",reason:e})})}static allWithCallback(e,t){let n,o,r=new this((e,t)=>{n=e,o=t}),s=2,a=0;const i=[];for(let l of e){p(l)||(l=this.resolve(l));const e=a;try{l.then(o=>{i[e]=t?t.thenCallback(o):o,s--,0===s&&n(i)},r=>{t?(i[e]=t.errorCallback(r),s--,0===s&&n(i)):o(r)})}catch(c){o(c)}s++,a++}return s-=2,0===s&&n(i),r}constructor(e){const t=this;if(!(t instanceof D))throw new Error(\"Must be an instanceof Promise.\");t[g]=null,t[k]=[];try{e&&e(v(t,!0),v(t,!1))}catch(n){T(t,!1,n)}}get[Symbol.toStringTag](){return\"Promise\"}get[Symbol.species](){return D}then(e,n){let o=this.constructor[Symbol.species];o&&\"function\"==typeof o||(o=this.constructor||D);const r=new o(S),s=t.current;return null==this[g]?this[k].push(s,r,e,n):Z(this,s,r,e,n),r}catch(e){return this.then(null,e)}finally(e){let n=this.constructor[Symbol.species];n&&\"function\"==typeof n||(n=D);const o=new n(S);o[_]=_;const r=t.current;return null==this[g]?this[k].push(r,o,e,e):Z(this,r,o,e,e),o}}D.resolve=D.resolve,D.reject=D.reject,D.race=D.race,D.all=D.all;const P=e[c]=e.Promise,z=t.__symbol__(\"ZoneAwarePromise\");let C=o(e,\"Promise\");C&&!C.configurable||(C&&delete C.writable,C&&delete C.value,C||(C={configurable:!0,enumerable:!0}),C.get=function(){return e[z]?e[z]:e[c]},C.set=function(t){t===D?e[z]=t:(e[c]=t,t.prototype[l]||j(t),n.setNativePromise(t))},r(e,\"Promise\",C)),e.Promise=D;const O=s(\"thenPatched\");function j(e){const t=e.prototype,n=o(t,\"then\");if(n&&(!1===n.writable||!n.configurable))return;const r=t.then;t[l]=r,e.prototype.then=function(e,t){return new D((e,t)=>{r.call(this,e,t)}).then(e,t)},e[O]=!0}if(n.patchThen=j,P){j(P);const t=e.fetch;\"function\"==typeof t&&(e[n.symbol(\"fetch\")]=t,e.fetch=(I=t,function(){let e=I.apply(this,arguments);if(e instanceof D)return e;let t=e.constructor;return t[O]||j(t),e}))}var I;return Promise[t.__symbol__(\"uncaughtPromiseErrors\")]=a,D});const e=Object.getOwnPropertyDescriptor,t=Object.defineProperty,n=Object.getPrototypeOf,o=Object.create,r=Array.prototype.slice,s=Zone.__symbol__(\"addEventListener\"),a=Zone.__symbol__(\"removeEventListener\"),i=Zone.__symbol__(\"\");function c(e,t){return Zone.current.wrap(e,t)}function l(e,t,n,o,r){return Zone.current.scheduleMacroTask(e,t,n,o,r)}const u=Zone.__symbol__,h=\"undefined\"!=typeof window,p=h?window:void 0,f=h&&p||\"object\"==typeof self&&self||global,d=[null];function g(e,t){for(let n=e.length-1;n>=0;n--)\"function\"==typeof e[n]&&(e[n]=c(e[n],t+\"_\"+n));return e}function k(e){return!e||!1!==e.writable&&!(\"function\"==typeof e.get&&void 0===e.set)}const _=\"undefined\"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope,m=!(\"nw\"in f)&&void 0!==f.process&&\"[object process]\"==={}.toString.call(f.process),y=!m&&!_&&!(!h||!p.HTMLElement),v=void 0!==f.process&&\"[object process]\"==={}.toString.call(f.process)&&!_&&!(!h||!p.HTMLElement),b={},T=function(e){if(!(e=e||f.event))return;let t=b[e.type];t||(t=b[e.type]=u(\"ON_PROPERTY\"+e.type));const n=this||e.target||f,o=n[t];let r;if(y&&n===p&&\"error\"===e.type){const t=e;r=o&&o.call(this,t.message,t.filename,t.lineno,t.colno,t.error),!0===r&&e.preventDefault()}else r=o&&o.apply(this,arguments),null==r||r||e.preventDefault();return r};function E(n,o,r){let s=e(n,o);if(!s&&r&&e(r,o)&&(s={enumerable:!0,configurable:!0}),!s||!s.configurable)return;const a=u(\"on\"+o+\"patched\");if(n.hasOwnProperty(a)&&n[a])return;delete s.writable,delete s.value;const i=s.get,c=s.set,l=o.substr(2);let h=b[l];h||(h=b[l]=u(\"ON_PROPERTY\"+l)),s.set=function(e){let t=this;t||n!==f||(t=f),t&&(t[h]&&t.removeEventListener(l,T),c&&c.apply(t,d),\"function\"==typeof e?(t[h]=e,t.addEventListener(l,T,!1)):t[h]=null)},s.get=function(){let e=this;if(e||n!==f||(e=f),!e)return null;const t=e[h];if(t)return t;if(i){let t=i&&i.call(this);if(t)return s.set.call(this,t),\"function\"==typeof e.removeAttribute&&e.removeAttribute(o),t}return null},t(n,o,s),n[a]=!0}function w(e,t,n){if(t)for(let o=0;ofunction(t,o){const s=n(t,o);return s.cbIdx>=0&&\"function\"==typeof o[s.cbIdx]?l(s.name,o[s.cbIdx],s,r):e.apply(t,o)})}function z(e,t){e[u(\"OriginalDelegate\")]=t}let C=!1,O=!1;function j(){try{const e=p.navigator.userAgent;if(-1!==e.indexOf(\"MSIE \")||-1!==e.indexOf(\"Trident/\"))return!0}catch(e){}return!1}function I(){if(C)return O;C=!0;try{const e=p.navigator.userAgent;-1===e.indexOf(\"MSIE \")&&-1===e.indexOf(\"Trident/\")&&-1===e.indexOf(\"Edge/\")||(O=!0)}catch(e){}return O}Zone.__load_patch(\"toString\",e=>{const t=Function.prototype.toString,n=u(\"OriginalDelegate\"),o=u(\"Promise\"),r=u(\"Error\"),s=function(){if(\"function\"==typeof this){const s=this[n];if(s)return\"function\"==typeof s?t.call(s):Object.prototype.toString.call(s);if(this===Promise){const n=e[o];if(n)return t.call(n)}if(this===Error){const n=e[r];if(n)return t.call(n)}}return t.call(this)};s[n]=t,Function.prototype.toString=s;const a=Object.prototype.toString;Object.prototype.toString=function(){return this instanceof Promise?\"[object Promise]\":a.call(this)}});let N=!1;if(\"undefined\"!=typeof window)try{const e=Object.defineProperty({},\"passive\",{get:function(){N=!0}});window.addEventListener(\"test\",e,e),window.removeEventListener(\"test\",e,e)}catch(ie){N=!1}const R={useG:!0},x={},L={},M=new RegExp(\"^\"+i+\"(\\\\w+)(true|false)$\"),A=u(\"propagationStopped\");function H(e,t){const n=(t?t(e):e)+\"false\",o=(t?t(e):e)+\"true\",r=i+n,s=i+o;x[e]={},x[e].false=r,x[e].true=s}function F(e,t,o){const r=o&&o.add||\"addEventListener\",s=o&&o.rm||\"removeEventListener\",a=o&&o.listeners||\"eventListeners\",c=o&&o.rmAll||\"removeAllListeners\",l=u(r),h=\".\"+r+\":\",p=function(e,t,n){if(e.isRemoved)return;const o=e.callback;\"object\"==typeof o&&o.handleEvent&&(e.callback=e=>o.handleEvent(e),e.originalDelegate=o),e.invoke(e,t,[n]);const r=e.options;r&&\"object\"==typeof r&&r.once&&t[s].call(t,n.type,e.originalDelegate?e.originalDelegate:e.callback,r)},f=function(t){if(!(t=t||e.event))return;const n=this||t.target||e,o=n[x[t.type].false];if(o)if(1===o.length)p(o[0],n,t);else{const e=o.slice();for(let o=0;ofunction(t,n){t[A]=!0,e&&e.apply(t,n)})}function W(e,t,n,o,r){const s=Zone.__symbol__(o);if(t[s])return;const a=t[s]=t[o];t[o]=function(s,i,c){return i&&i.prototype&&r.forEach((function(t){const r=`${n}.${o}::`+t,s=i.prototype;if(s.hasOwnProperty(t)){const n=e.ObjectGetOwnPropertyDescriptor(s,t);n&&n.value?(n.value=e.wrapWithCurrentZone(n.value,r),e._redefineProperty(i.prototype,t,n)):s[t]&&(s[t]=e.wrapWithCurrentZone(s[t],r))}else s[t]&&(s[t]=e.wrapWithCurrentZone(s[t],r))})),a.call(t,s,i,c)},e.attachOriginToPatched(t[o],a)}const q=[\"absolutedeviceorientation\",\"afterinput\",\"afterprint\",\"appinstalled\",\"beforeinstallprompt\",\"beforeprint\",\"beforeunload\",\"devicelight\",\"devicemotion\",\"deviceorientation\",\"deviceorientationabsolute\",\"deviceproximity\",\"hashchange\",\"languagechange\",\"message\",\"mozbeforepaint\",\"offline\",\"online\",\"paint\",\"pageshow\",\"pagehide\",\"popstate\",\"rejectionhandled\",\"storage\",\"unhandledrejection\",\"unload\",\"userproximity\",\"vrdisplayconnected\",\"vrdisplaydisconnected\",\"vrdisplaypresentchange\"],U=[\"encrypted\",\"waitingforkey\",\"msneedkey\",\"mozinterruptbegin\",\"mozinterruptend\"],$=[\"load\"],V=[\"blur\",\"error\",\"focus\",\"load\",\"resize\",\"scroll\",\"messageerror\"],X=[\"bounce\",\"finish\",\"start\"],J=[\"loadstart\",\"progress\",\"abort\",\"error\",\"load\",\"progress\",\"timeout\",\"loadend\",\"readystatechange\"],Y=[\"upgradeneeded\",\"complete\",\"abort\",\"success\",\"error\",\"blocked\",\"versionchange\",\"close\"],K=[\"close\",\"error\",\"open\",\"message\"],Q=[\"error\",\"message\"],ee=[\"abort\",\"animationcancel\",\"animationend\",\"animationiteration\",\"auxclick\",\"beforeinput\",\"blur\",\"cancel\",\"canplay\",\"canplaythrough\",\"change\",\"compositionstart\",\"compositionupdate\",\"compositionend\",\"cuechange\",\"click\",\"close\",\"contextmenu\",\"curechange\",\"dblclick\",\"drag\",\"dragend\",\"dragenter\",\"dragexit\",\"dragleave\",\"dragover\",\"drop\",\"durationchange\",\"emptied\",\"ended\",\"error\",\"focus\",\"focusin\",\"focusout\",\"gotpointercapture\",\"input\",\"invalid\",\"keydown\",\"keypress\",\"keyup\",\"load\",\"loadstart\",\"loadeddata\",\"loadedmetadata\",\"lostpointercapture\",\"mousedown\",\"mouseenter\",\"mouseleave\",\"mousemove\",\"mouseout\",\"mouseover\",\"mouseup\",\"mousewheel\",\"orientationchange\",\"pause\",\"play\",\"playing\",\"pointercancel\",\"pointerdown\",\"pointerenter\",\"pointerleave\",\"pointerlockchange\",\"mozpointerlockchange\",\"webkitpointerlockerchange\",\"pointerlockerror\",\"mozpointerlockerror\",\"webkitpointerlockerror\",\"pointermove\",\"pointout\",\"pointerover\",\"pointerup\",\"progress\",\"ratechange\",\"reset\",\"resize\",\"scroll\",\"seeked\",\"seeking\",\"select\",\"selectionchange\",\"selectstart\",\"show\",\"sort\",\"stalled\",\"submit\",\"suspend\",\"timeupdate\",\"volumechange\",\"touchcancel\",\"touchmove\",\"touchstart\",\"touchend\",\"transitioncancel\",\"transitionend\",\"waiting\",\"wheel\"].concat([\"webglcontextrestored\",\"webglcontextlost\",\"webglcontextcreationerror\"],[\"autocomplete\",\"autocompleteerror\"],[\"toggle\"],[\"afterscriptexecute\",\"beforescriptexecute\",\"DOMContentLoaded\",\"freeze\",\"fullscreenchange\",\"mozfullscreenchange\",\"webkitfullscreenchange\",\"msfullscreenchange\",\"fullscreenerror\",\"mozfullscreenerror\",\"webkitfullscreenerror\",\"msfullscreenerror\",\"readystatechange\",\"visibilitychange\",\"resume\"],q,[\"beforecopy\",\"beforecut\",\"beforepaste\",\"copy\",\"cut\",\"paste\",\"dragstart\",\"loadend\",\"animationstart\",\"search\",\"transitionrun\",\"transitionstart\",\"webkitanimationend\",\"webkitanimationiteration\",\"webkitanimationstart\",\"webkittransitionend\"],[\"activate\",\"afterupdate\",\"ariarequest\",\"beforeactivate\",\"beforedeactivate\",\"beforeeditfocus\",\"beforeupdate\",\"cellchange\",\"controlselect\",\"dataavailable\",\"datasetchanged\",\"datasetcomplete\",\"errorupdate\",\"filterchange\",\"layoutcomplete\",\"losecapture\",\"move\",\"moveend\",\"movestart\",\"propertychange\",\"resizeend\",\"resizestart\",\"rowenter\",\"rowexit\",\"rowsdelete\",\"rowsinserted\",\"command\",\"compassneedscalibration\",\"deactivate\",\"help\",\"mscontentzoom\",\"msmanipulationstatechanged\",\"msgesturechange\",\"msgesturedoubletap\",\"msgestureend\",\"msgesturehold\",\"msgesturestart\",\"msgesturetap\",\"msgotpointercapture\",\"msinertiastart\",\"mslostpointercapture\",\"mspointercancel\",\"mspointerdown\",\"mspointerenter\",\"mspointerhover\",\"mspointerleave\",\"mspointermove\",\"mspointerout\",\"mspointerover\",\"mspointerup\",\"pointerout\",\"mssitemodejumplistitemremoved\",\"msthumbnailclick\",\"stop\",\"storagecommit\"]);function te(e,t,n){if(!n||0===n.length)return t;const o=n.filter(t=>t.target===e);if(!o||0===o.length)return t;const r=o[0].ignoreProperties;return t.filter(e=>-1===r.indexOf(e))}function ne(e,t,n,o){e&&w(e,te(e,t,n),o)}function oe(e,t){if(m&&!v)return;if(Zone[e.symbol(\"patchEvents\")])return;const o=\"undefined\"!=typeof WebSocket,r=t.__Zone_ignore_on_properties;if(y){const e=window,t=j?[{target:e,ignoreProperties:[\"error\"]}]:[];ne(e,ee.concat([\"messageerror\"]),r?r.concat(t):r,n(e)),ne(Document.prototype,ee,r),void 0!==e.SVGElement&&ne(e.SVGElement.prototype,ee,r),ne(Element.prototype,ee,r),ne(HTMLElement.prototype,ee,r),ne(HTMLMediaElement.prototype,U,r),ne(HTMLFrameSetElement.prototype,q.concat(V),r),ne(HTMLBodyElement.prototype,q.concat(V),r),ne(HTMLFrameElement.prototype,$,r),ne(HTMLIFrameElement.prototype,$,r);const o=e.HTMLMarqueeElement;o&&ne(o.prototype,X,r);const s=e.Worker;s&&ne(s.prototype,Q,r)}const s=t.XMLHttpRequest;s&&ne(s.prototype,J,r);const a=t.XMLHttpRequestEventTarget;a&&ne(a&&a.prototype,J,r),\"undefined\"!=typeof IDBIndex&&(ne(IDBIndex.prototype,Y,r),ne(IDBRequest.prototype,Y,r),ne(IDBOpenDBRequest.prototype,Y,r),ne(IDBDatabase.prototype,Y,r),ne(IDBTransaction.prototype,Y,r),ne(IDBCursor.prototype,Y,r)),o&&ne(WebSocket.prototype,K,r)}Zone.__load_patch(\"util\",(n,s,a)=>{a.patchOnProperties=w,a.patchMethod=D,a.bindArguments=g,a.patchMacroTask=P;const l=s.__symbol__(\"BLACK_LISTED_EVENTS\"),u=s.__symbol__(\"UNPATCHED_EVENTS\");n[u]&&(n[l]=n[u]),n[l]&&(s[l]=s[u]=n[l]),a.patchEventPrototype=B,a.patchEventTarget=F,a.isIEOrEdge=I,a.ObjectDefineProperty=t,a.ObjectGetOwnPropertyDescriptor=e,a.ObjectCreate=o,a.ArraySlice=r,a.patchClass=S,a.wrapWithCurrentZone=c,a.filterProperties=te,a.attachOriginToPatched=z,a._redefineProperty=Object.defineProperty,a.patchCallbacks=W,a.getGlobalObjects=()=>({globalSources:L,zoneSymbolEventNames:x,eventNames:ee,isBrowser:y,isMix:v,isNode:m,TRUE_STR:\"true\",FALSE_STR:\"false\",ZONE_SYMBOL_PREFIX:i,ADD_EVENT_LISTENER_STR:\"addEventListener\",REMOVE_EVENT_LISTENER_STR:\"removeEventListener\"})});const re=u(\"zoneTask\");function se(e,t,n,o){let r=null,s=null;n+=o;const a={};function i(t){const n=t.data;return n.args[0]=function(){try{t.invoke.apply(this,arguments)}finally{t.data&&t.data.isPeriodic||(\"number\"==typeof n.handleId?delete a[n.handleId]:n.handleId&&(n.handleId[re]=null))}},n.handleId=r.apply(e,n.args),t}function c(e){return s(e.data.handleId)}r=D(e,t+=o,n=>function(r,s){if(\"function\"==typeof s[0]){const e=l(t,s[0],{isPeriodic:\"Interval\"===o,delay:\"Timeout\"===o||\"Interval\"===o?s[1]||0:void 0,args:s},i,c);if(!e)return e;const n=e.data.handleId;return\"number\"==typeof n?a[n]=e:n&&(n[re]=e),n&&n.ref&&n.unref&&\"function\"==typeof n.ref&&\"function\"==typeof n.unref&&(e.ref=n.ref.bind(n),e.unref=n.unref.bind(n)),\"number\"==typeof n||n?n:e}return n.apply(e,s)}),s=D(e,n,t=>function(n,o){const r=o[0];let s;\"number\"==typeof r?s=a[r]:(s=r&&r[re],s||(s=r)),s&&\"string\"==typeof s.type?\"notScheduled\"!==s.state&&(s.cancelFn&&s.data.isPeriodic||0===s.runCount)&&(\"number\"==typeof r?delete a[r]:r&&(r[re]=null),s.zone.cancelTask(s)):t.apply(e,o)})}function ae(e,t){if(Zone[t.symbol(\"patchEventTarget\")])return;const{eventNames:n,zoneSymbolEventNames:o,TRUE_STR:r,FALSE_STR:s,ZONE_SYMBOL_PREFIX:a}=t.getGlobalObjects();for(let c=0;c{const t=e[Zone.__symbol__(\"legacyPatch\")];t&&t()}),Zone.__load_patch(\"timers\",e=>{se(e,\"set\",\"clear\",\"Timeout\"),se(e,\"set\",\"clear\",\"Interval\"),se(e,\"set\",\"clear\",\"Immediate\")}),Zone.__load_patch(\"requestAnimationFrame\",e=>{se(e,\"request\",\"cancel\",\"AnimationFrame\"),se(e,\"mozRequest\",\"mozCancel\",\"AnimationFrame\"),se(e,\"webkitRequest\",\"webkitCancel\",\"AnimationFrame\")}),Zone.__load_patch(\"blocking\",(e,t)=>{const n=[\"alert\",\"prompt\",\"confirm\"];for(let o=0;ofunction(o,s){return t.current.run(n,e,s,r)})}),Zone.__load_patch(\"EventTarget\",(e,t,n)=>{!function(e,t){t.patchEventPrototype(e,t)}(e,n),ae(e,n);const o=e.XMLHttpRequestEventTarget;o&&o.prototype&&n.patchEventTarget(e,[o.prototype]),S(\"MutationObserver\"),S(\"WebKitMutationObserver\"),S(\"IntersectionObserver\"),S(\"FileReader\")}),Zone.__load_patch(\"on_property\",(e,t,n)=>{oe(n,e)}),Zone.__load_patch(\"customElements\",(e,t,n)=>{!function(e,t){const{isBrowser:n,isMix:o}=t.getGlobalObjects();(n||o)&&e.customElements&&\"customElements\"in e&&t.patchCallbacks(t,e.customElements,\"customElements\",\"define\",[\"connectedCallback\",\"disconnectedCallback\",\"adoptedCallback\",\"attributeChangedCallback\"])}(e,n)}),Zone.__load_patch(\"XHR\",(e,t)=>{!function(e){const p=e.XMLHttpRequest;if(!p)return;const f=p.prototype;let d=f[s],g=f[a];if(!d){const t=e.XMLHttpRequestEventTarget;if(t){const e=t.prototype;d=e[s],g=e[a]}}function k(e){const o=e.data,c=o.target;c[i]=!1,c[h]=!1;const l=c[r];d||(d=c[s],g=c[a]),l&&g.call(c,\"readystatechange\",l);const u=c[r]=()=>{if(c.readyState===c.DONE)if(!o.aborted&&c[i]&&\"scheduled\"===e.state){const n=c[t.__symbol__(\"loadfalse\")];if(n&&n.length>0){const r=e.invoke;e.invoke=function(){const n=c[t.__symbol__(\"loadfalse\")];for(let t=0;tfunction(e,t){return e[o]=0==t[2],e[c]=t[1],y.apply(e,t)}),v=u(\"fetchTaskAborting\"),b=u(\"fetchTaskScheduling\"),T=D(f,\"send\",()=>function(e,n){if(!0===t.current[b])return T.apply(e,n);if(e[o])return T.apply(e,n);{const t={target:e,url:e[c],isPeriodic:!1,args:n,aborted:!1},o=l(\"XMLHttpRequest.send\",_,t,k,m);e&&!0===e[h]&&!t.aborted&&\"scheduled\"===o.state&&o.invoke()}}),E=D(f,\"abort\",()=>function(e,o){const r=e[n];if(r&&\"string\"==typeof r.type){if(null==r.cancelFn||r.data&&r.data.aborted)return;r.zone.cancelTask(r)}else if(!0===t.current[v])return E.apply(e,o)})}(e);const n=u(\"xhrTask\"),o=u(\"xhrSync\"),r=u(\"xhrListener\"),i=u(\"xhrScheduled\"),c=u(\"xhrURL\"),h=u(\"xhrErrorBeforeScheduled\")}),Zone.__load_patch(\"geolocation\",t=>{t.navigator&&t.navigator.geolocation&&function(t,n){const o=t.constructor.name;for(let r=0;r{const t=function(){return e.apply(this,g(arguments,o+\".\"+s))};return z(t,e),t})(a)}}}(t.navigator.geolocation,[\"getCurrentPosition\",\"watchPosition\"])}),Zone.__load_patch(\"PromiseRejectionEvent\",(e,t)=>{function n(t){return function(n){G(e,t).forEach(o=>{const r=e.PromiseRejectionEvent;if(r){const e=new r(t,{promise:n.promise,reason:n.rejection});o.invoke(e)}})}}e.PromiseRejectionEvent&&(t[u(\"unhandledPromiseRejectionHandler\")]=n(\"unhandledrejection\"),t[u(\"rejectionHandledHandler\")]=n(\"rejectionhandled\"))})})?o.call(t,n,t,e):o)||(e.exports=r)}},[[2,0]]]);"); err != nil { return nil, errors.Wrap(err, fmt.Sprintf("packing file rf-ng/ui/en/polyfills-es2015.2c95a2527334fc660304.js")) } - if err := fs.Add("rf-ng/ui/en/polyfills-es5.dcc397f18a36240962f1.js", 132953, os.FileMode(420), time.Unix(1584880181, 0), "function _createForOfIteratorHelper(t){if(\"undefined\"==typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(t=_unsupportedIterableToArray(t))){var e=0,n=function(){};return{s:n,n:function(){return e>=t.length?{done:!0}:{done:!1,value:t[e++]}},e:function(t){throw t},f:n}}throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}var r,o,i=!0,a=!1;return{s:function(){r=t[Symbol.iterator]()},n:function(){var t=r.next();return i=t.done,t},e:function(t){a=!0,o=t},f:function(){try{i||null==r.return||r.return()}finally{if(a)throw o}}}}function _unsupportedIterableToArray(t,e){if(t){if(\"string\"==typeof t)return _arrayLikeToArray(t,e);var n=Object.prototype.toString.call(t).slice(8,-1);return\"Object\"===n&&t.constructor&&(n=t.constructor.name),\"Map\"===n||\"Set\"===n?Array.from(n):\"Arguments\"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?_arrayLikeToArray(t,e):void 0}}function _arrayLikeToArray(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,r=new Array(e);n\")})),f=\"$0\"===\"a\".replace(/./,\"$0\"),l=i(\"replace\"),p=!!/./[l]&&\"\"===/./[l](\"a\",\"$0\"),h=!o((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n=\"ab\".split(t);return 2!==n.length||\"a\"!==n[0]||\"b\"!==n[1]}));t.exports=function(t,e,n,l){var v=i(t),d=!o((function(){var e={};return e[v]=function(){return 7},7!=\"\"[t](e)})),g=d&&!o((function(){var e=!1,n=/a/;return\"split\"===t&&((n={}).constructor={},n.constructor[u]=function(){return n},n.flags=\"\",n[v]=/./[v]),n.exec=function(){return e=!0,null},n[v](\"\"),!e}));if(!d||!g||\"replace\"===t&&(!s||!f||p)||\"split\"===t&&!h){var y=/./[v],b=n(v,\"\"[t],(function(t,e,n,r,o){return e.exec===a?d&&!o?{done:!0,value:y.call(e,n,r)}:{done:!0,value:t.call(n,e,r)}:{done:!1}}),{REPLACE_KEEPS_$0:f,REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE:p}),m=b[1];r(String.prototype,t,b[0]),r(RegExp.prototype,v,2==e?function(t,e){return m.call(t,this,e)}:function(t){return m.call(t,this)})}l&&c(RegExp.prototype[v],\"sham\",!0)}},\"1E5z\":function(t,e,n){var r=n(\"m/L8\").f,o=n(\"UTVS\"),i=n(\"tiKp\")(\"toStringTag\");t.exports=function(t,e,n){t&&!o(t=n?t:t.prototype,i)&&r(t,i,{configurable:!0,value:e})}},\"1Y/n\":function(t,e,n){var r=n(\"HAuM\"),o=n(\"ewvW\"),i=n(\"RK3t\"),a=n(\"UMSQ\"),c=function(t){return function(e,n,c,u){r(n);var s=o(e),f=i(s),l=a(s.length),p=t?l-1:0,h=t?-1:1;if(c<2)for(;;){if(p in f){u=f[p],p+=h;break}if(p+=h,t?p<0:l<=p)throw TypeError(\"Reduce of empty array with no initial value\")}for(;t?p>=0:l>p;p+=h)p in f&&(u=n(u,f[p],p,s));return u}};t.exports={left:c(!1),right:c(!0)}},\"2A+d\":function(t,e,n){var r=n(\"I+eb\"),o=n(\"/GqU\"),i=n(\"UMSQ\");r({target:\"String\",stat:!0},{raw:function(t){for(var e=o(t.raw),n=i(e.length),r=arguments.length,a=[],c=0;n>c;)a.push(String(e[c++])),c1?arguments[1]:void 0)}})},\"2oRo\":function(t,e){var n=function(t){return t&&t.Math==Math&&t};t.exports=n(\"object\"==typeof globalThis&&globalThis)||n(\"object\"==typeof window&&window)||n(\"object\"==typeof self&&self)||n(\"object\"==typeof global&&global)||Function(\"return this\")()},\"33Wh\":function(t,e,n){var r=n(\"yoRg\"),o=n(\"eDl+\");t.exports=Object.keys||function(t){return r(t,o)}},\"3I1R\":function(t,e,n){n(\"dG/n\")(\"hasInstance\")},\"3KgV\":function(t,e,n){var r=n(\"I+eb\"),o=n(\"uy83\"),i=n(\"0Dky\"),a=n(\"hh1v\"),c=n(\"8YOa\").onFreeze,u=Object.freeze;r({target:\"Object\",stat:!0,forced:i((function(){u(1)})),sham:!o},{freeze:function(t){return u&&a(t)?u(c(t)):t}})},\"3bBZ\":function(t,e,n){var r=n(\"2oRo\"),o=n(\"/byt\"),i=n(\"4mDm\"),a=n(\"kRJp\"),c=n(\"tiKp\"),u=c(\"iterator\"),s=c(\"toStringTag\"),f=i.values;for(var l in o){var p=r[l],h=p&&p.prototype;if(h){if(h[u]!==f)try{a(h,u,f)}catch(d){h[u]=f}if(h[s]||a(h,s,l),o[l])for(var v in i)if(h[v]!==i[v])try{a(h,v,i[v])}catch(d){h[v]=i[v]}}}},\"4Brf\":function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"g6v/\"),i=n(\"2oRo\"),a=n(\"UTVS\"),c=n(\"hh1v\"),u=n(\"m/L8\").f,s=n(\"6JNq\"),f=i.Symbol;if(o&&\"function\"==typeof f&&(!(\"description\"in f.prototype)||void 0!==f().description)){var l={},p=function t(){var e=arguments.length<1||void 0===arguments[0]?void 0:String(arguments[0]),n=this instanceof t?new f(e):void 0===e?f():f(e);return\"\"===e&&(l[n]=!0),n};s(p,f);var h=p.prototype=f.prototype;h.constructor=p;var v=h.toString,d=\"Symbol(test)\"==String(f(\"test\")),g=/^Symbol\\((.*)\\)[^)]+$/;u(h,\"description\",{configurable:!0,get:function(){var t=c(this)?this.valueOf():this,e=v.call(t);if(a(l,t))return\"\";var n=d?e.slice(7,-1):e.replace(g,\"$1\");return\"\"===n?void 0:n}}),r({global:!0,forced:!0},{Symbol:p})}},\"4WOD\":function(t,e,n){var r=n(\"UTVS\"),o=n(\"ewvW\"),i=n(\"93I0\"),a=n(\"4Xet\"),c=i(\"IE_PROTO\"),u=Object.prototype;t.exports=a?Object.getPrototypeOf:function(t){return t=o(t),r(t,c)?t[c]:\"function\"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?u:null}},\"4Xet\":function(t,e,n){var r=n(\"0Dky\");t.exports=!r((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},\"4h0Y\":function(t,e,n){var r=n(\"I+eb\"),o=n(\"0Dky\"),i=n(\"hh1v\"),a=Object.isFrozen;r({target:\"Object\",stat:!0,forced:o((function(){a(1)}))},{isFrozen:function(t){return!i(t)||!!a&&a(t)}})},\"4l63\":function(t,e,n){var r=n(\"I+eb\"),o=n(\"wg0c\");r({global:!0,forced:parseInt!=o},{parseInt:o})},\"4mDm\":function(t,e,n){\"use strict\";var r=n(\"/GqU\"),o=n(\"RNIs\"),i=n(\"P4y1\"),a=n(\"afO8\"),c=n(\"fdAy\"),u=a.set,s=a.getterFor(\"Array Iterator\");t.exports=c(Array,\"Array\",(function(t,e){u(this,{type:\"Array Iterator\",target:r(t),index:0,kind:e})}),(function(){var t=s(this),e=t.target,n=t.kind,r=t.index++;return!e||r>=e.length?(t.target=void 0,{value:void 0,done:!0}):\"keys\"==n?{value:r,done:!1}:\"values\"==n?{value:e[r],done:!1}:{value:[r,e[r]],done:!1}}),\"values\"),i.Arguments=i.Array,o(\"keys\"),o(\"values\"),o(\"entries\")},\"4oU/\":function(t,e,n){var r=n(\"2oRo\").isFinite;t.exports=Number.isFinite||function(t){return\"number\"==typeof t&&r(t)}},\"4syw\":function(t,e,n){var r=n(\"busE\");t.exports=function(t,e,n){for(var o in e)r(t,o,e[o],n);return t}},\"5D5o\":function(t,e,n){var r=n(\"I+eb\"),o=n(\"0Dky\"),i=n(\"hh1v\"),a=Object.isSealed;r({target:\"Object\",stat:!0,forced:o((function(){a(1)}))},{isSealed:function(t){return!i(t)||!!a&&a(t)}})},\"5DmW\":function(t,e,n){var r=n(\"I+eb\"),o=n(\"0Dky\"),i=n(\"/GqU\"),a=n(\"Bs8V\").f,c=n(\"g6v/\"),u=o((function(){a(1)}));r({target:\"Object\",stat:!0,forced:!c||u,sham:!c},{getOwnPropertyDescriptor:function(t,e){return a(i(t),e)}})},\"5Tg+\":function(t,e,n){var r=n(\"tiKp\");e.f=r},\"5Yz+\":function(t,e,n){\"use strict\";var r=n(\"/GqU\"),o=n(\"ppGB\"),i=n(\"UMSQ\"),a=n(\"pkCn\"),c=n(\"rkAj\"),u=Math.min,s=[].lastIndexOf,f=!!s&&1/[1].lastIndexOf(1,-0)<0,l=a(\"lastIndexOf\"),p=c(\"indexOf\",{ACCESSORS:!0,1:0});t.exports=!f&&l&&p?s:function(t){if(f)return s.apply(this,arguments)||0;var e=r(this),n=i(e.length),a=n-1;for(arguments.length>1&&(a=u(a,o(arguments[1]))),a<0&&(a=n+a);a>=0;a--)if(a in e&&e[a]===t)return a||0;return-1}},\"5mdu\":function(t,e){t.exports=function(t){try{return{error:!1,value:t()}}catch(e){return{error:!0,value:e}}}},\"5s+n\":function(t,e,n){\"use strict\";var r,o,i,a,c=n(\"I+eb\"),u=n(\"xDBR\"),s=n(\"2oRo\"),f=n(\"0GbY\"),l=n(\"/qmn\"),p=n(\"busE\"),h=n(\"4syw\"),v=n(\"1E5z\"),d=n(\"JiZb\"),g=n(\"hh1v\"),y=n(\"HAuM\"),b=n(\"GarU\"),m=n(\"xrYK\"),k=n(\"iSVu\"),E=n(\"ImZN\"),S=n(\"HH4o\"),x=n(\"SEBh\"),w=n(\"LPSS\").set,_=n(\"tXUg\"),T=n(\"zfnd\"),O=n(\"RN6c\"),I=n(\"8GlL\"),j=n(\"5mdu\"),P=n(\"afO8\"),D=n(\"lMq5\"),R=n(\"tiKp\"),M=n(\"LQDL\"),A=R(\"species\"),N=\"Promise\",C=P.get,L=P.set,Z=P.getterFor(N),F=l,z=s.TypeError,W=s.document,U=s.process,G=f(\"fetch\"),B=I.f,H=B,K=\"process\"==m(U),V=!!(W&&W.createEvent&&s.dispatchEvent),Y=D(N,(function(){if(k(F)===String(F)){if(66===M)return!0;if(!K&&\"function\"!=typeof PromiseRejectionEvent)return!0}if(u&&!F.prototype.finally)return!0;if(M>=51&&/native code/.test(F))return!1;var t=F.resolve(1),e=function(t){t((function(){}),(function(){}))};return(t.constructor={})[A]=e,!(t.then((function(){}))instanceof e)})),q=Y||!S((function(t){F.all(t).catch((function(){}))})),X=function(t){var e;return!(!g(t)||\"function\"!=typeof(e=t.then))&&e},J=function(t,e,n){if(!e.notified){e.notified=!0;var r=e.reactions;_((function(){for(var o=e.value,i=1==e.state,a=0;r.length>a;){var c,u,s,f=r[a++],l=i?f.ok:f.fail,p=f.resolve,h=f.reject,v=f.domain;try{l?(i||(2===e.rejection&&et(t,e),e.rejection=1),!0===l?c=o:(v&&v.enter(),c=l(o),v&&(v.exit(),s=!0)),c===f.promise?h(z(\"Promise-chain cycle\")):(u=X(c))?u.call(c,p,h):p(c)):h(o)}catch(d){v&&!s&&v.exit(),h(d)}}e.reactions=[],e.notified=!1,n&&!e.rejection&&$(t,e)}))}},Q=function(t,e,n){var r,o;V?((r=W.createEvent(\"Event\")).promise=e,r.reason=n,r.initEvent(t,!1,!0),s.dispatchEvent(r)):r={promise:e,reason:n},(o=s[\"on\"+t])?o(r):\"unhandledrejection\"===t&&O(\"Unhandled promise rejection\",n)},$=function(t,e){w.call(s,(function(){var n,r=e.value;if(tt(e)&&(n=j((function(){K?U.emit(\"unhandledRejection\",r,t):Q(\"unhandledrejection\",t,r)})),e.rejection=K||tt(e)?2:1,n.error))throw n.value}))},tt=function(t){return 1!==t.rejection&&!t.parent},et=function(t,e){w.call(s,(function(){K?U.emit(\"rejectionHandled\",t):Q(\"rejectionhandled\",t,e.value)}))},nt=function(t,e,n,r){return function(o){t(e,n,o,r)}},rt=function(t,e,n,r){e.done||(e.done=!0,r&&(e=r),e.value=n,e.state=2,J(t,e,!0))},ot=function t(e,n,r,o){if(!n.done){n.done=!0,o&&(n=o);try{if(e===r)throw z(\"Promise can't be resolved itself\");var i=X(r);i?_((function(){var o={done:!1};try{i.call(r,nt(t,e,o,n),nt(rt,e,o,n))}catch(a){rt(e,o,a,n)}})):(n.value=r,n.state=1,J(e,n,!1))}catch(a){rt(e,{done:!1},a,n)}}};Y&&(F=function(t){b(this,F,N),y(t),r.call(this);var e=C(this);try{t(nt(ot,this,e),nt(rt,this,e))}catch(n){rt(this,e,n)}},(r=function(t){L(this,{type:N,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=h(F.prototype,{then:function(t,e){var n=Z(this),r=B(x(this,F));return r.ok=\"function\"!=typeof t||t,r.fail=\"function\"==typeof e&&e,r.domain=K?U.domain:void 0,n.parent=!0,n.reactions.push(r),0!=n.state&&J(this,n,!1),r.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new r,e=C(t);this.promise=t,this.resolve=nt(ot,t,e),this.reject=nt(rt,t,e)},I.f=B=function(t){return t===F||t===i?new o(t):H(t)},u||\"function\"!=typeof l||(a=l.prototype.then,p(l.prototype,\"then\",(function(t,e){var n=this;return new F((function(t,e){a.call(n,t,e)})).then(t,e)}),{unsafe:!0}),\"function\"==typeof G&&c({global:!0,enumerable:!0,forced:!0},{fetch:function(t){return T(F,G.apply(s,arguments))}}))),c({global:!0,wrap:!0,forced:Y},{Promise:F}),v(F,N,!1,!0),d(N),i=f(N),c({target:N,stat:!0,forced:Y},{reject:function(t){var e=B(this);return e.reject.call(void 0,t),e.promise}}),c({target:N,stat:!0,forced:u||Y},{resolve:function(t){return T(u&&this===i?F:this,t)}}),c({target:N,stat:!0,forced:q},{all:function(t){var e=this,n=B(e),r=n.resolve,o=n.reject,i=j((function(){var n=y(e.resolve),i=[],a=0,c=1;E(t,(function(t){var u=a++,s=!1;i.push(void 0),c++,n.call(e,t).then((function(t){s||(s=!0,i[u]=t,--c||r(i))}),o)})),--c||r(i)}));return i.error&&o(i.value),n.promise},race:function(t){var e=this,n=B(e),r=n.reject,o=j((function(){var o=y(e.resolve);E(t,(function(t){o.call(e,t).then(n.resolve,r)}))}));return o.error&&r(o.value),n.promise}})},\"5uH8\":function(t,e,n){n(\"I+eb\")({target:\"Number\",stat:!0},{MIN_SAFE_INTEGER:-9007199254740991})},\"6JNq\":function(t,e,n){var r=n(\"UTVS\"),o=n(\"Vu81\"),i=n(\"Bs8V\"),a=n(\"m/L8\");t.exports=function(t,e){for(var n=o(e),c=a.f,u=i.f,s=0;s1?arguments[1]:void 0)}})},\"9bJ7\":function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"ZUd8\").codeAt;r({target:\"String\",proto:!0},{codePointAt:function(t){return o(this,t)}})},\"9d/t\":function(t,e,n){var r=n(\"AO7/\"),o=n(\"xrYK\"),i=n(\"tiKp\")(\"toStringTag\"),a=\"Arguments\"==o(function(){return arguments}());t.exports=r?o:function(t){var e,n,r;return void 0===t?\"Undefined\":null===t?\"Null\":\"string\"==typeof(n=function(t,e){try{return t[e]}catch(n){}}(e=Object(t),i))?n:a?o(e):\"Object\"==(r=o(e))&&\"function\"==typeof e.callee?\"Arguments\":r}},\"9mRW\":function(t,e,n){n(\"I+eb\")({target:\"Math\",stat:!0},{fround:n(\"vo4V\")})},\"9tb/\":function(t,e,n){var r=n(\"I+eb\"),o=n(\"I8vh\"),i=String.fromCharCode,a=String.fromCodePoint;r({target:\"String\",stat:!0,forced:!!a&&1!=a.length},{fromCodePoint:function(t){for(var e,n=[],r=arguments.length,a=0;r>a;){if(e=+arguments[a++],o(e,1114111)!==e)throw RangeError(e+\" is not a valid code point\");n.push(e<65536?i(e):i(55296+((e-=65536)>>10),e%1024+56320))}return n.join(\"\")}})},A2ZE:function(t,e,n){var r=n(\"HAuM\");t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 0:return function(){return t.call(e)};case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,o){return t.call(e,n,r,o)}}return function(){return t.apply(e,arguments)}}},\"AO7/\":function(t,e,n){var r={};r[n(\"tiKp\")(\"toStringTag\")]=\"z\",t.exports=\"[object z]\"===String(r)},AmFO:function(t,e,n){var r=n(\"I+eb\"),o=n(\"0Dky\"),i=n(\"jrUv\"),a=Math.abs,c=Math.exp,u=Math.E;r({target:\"Math\",stat:!0,forced:o((function(){return-2e-17!=Math.sinh(-2e-17)}))},{sinh:function(t){return a(t=+t)<1?(i(t)-i(-t))/2:(c(t-1)-c(-t-1))*(u/2)}})},BNMt:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"hXpO\");r({target:\"String\",proto:!0,forced:n(\"rwPt\")(\"blink\")},{blink:function(){return o(this,\"blink\",\"\",\"\")}})},BTho:function(t,e,n){\"use strict\";var r=n(\"HAuM\"),o=n(\"hh1v\"),i=[].slice,a={},c=function(t,e,n){if(!(e in a)){for(var r=[],o=0;ou&&(s=s.slice(0,u)),t?f+s:s+f)}};t.exports={start:c(!1),end:c(!0)}},DPsx:function(t,e,n){var r=n(\"g6v/\"),o=n(\"0Dky\"),i=n(\"zBJ4\");t.exports=!r&&!o((function(){return 7!=Object.defineProperty(i(\"div\"),\"a\",{get:function(){return 7}}).a}))},DQNa:function(t,e,n){var r=n(\"busE\"),o=Date.prototype,i=o.toString,a=o.getTime;new Date(NaN)+\"\"!=\"Invalid Date\"&&r(o,\"toString\",(function(){var t=a.call(this);return t==t?i.call(this):\"Invalid Date\"}))},E5NM:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"hXpO\");r({target:\"String\",proto:!0,forced:n(\"rwPt\")(\"big\")},{big:function(){return o(this,\"big\",\"\",\"\")}})},E9XD:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"1Y/n\").left,i=n(\"pkCn\"),a=n(\"rkAj\"),c=i(\"reduce\"),u=a(\"reduce\",{1:0});r({target:\"Array\",proto:!0,forced:!c||!u},{reduce:function(t){return o(this,t,arguments.length,arguments.length>1?arguments[1]:void 0)}})},ENF9:function(t,e,n){\"use strict\";var r,o=n(\"2oRo\"),i=n(\"4syw\"),a=n(\"8YOa\"),c=n(\"bWFh\"),u=n(\"rKzb\"),s=n(\"hh1v\"),f=n(\"afO8\").enforce,l=n(\"f5p1\"),p=!o.ActiveXObject&&\"ActiveXObject\"in o,h=Object.isExtensible,v=function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}},d=t.exports=c(\"WeakMap\",v,u);if(l&&p){r=u.getConstructor(v,\"WeakMap\",!0),a.REQUIRED=!0;var g=d.prototype,y=g.delete,b=g.has,m=g.get,k=g.set;i(g,{delete:function(t){if(s(t)&&!h(t)){var e=f(this);return e.frozen||(e.frozen=new r),y.call(this,t)||e.frozen.delete(t)}return y.call(this,t)},has:function(t){if(s(t)&&!h(t)){var e=f(this);return e.frozen||(e.frozen=new r),b.call(this,t)||e.frozen.has(t)}return b.call(this,t)},get:function(t){if(s(t)&&!h(t)){var e=f(this);return e.frozen||(e.frozen=new r),b.call(this,t)?m.call(this,t):e.frozen.get(t)}return m.call(this,t)},set:function(t,e){if(s(t)&&!h(t)){var n=f(this);n.frozen||(n.frozen=new r),b.call(this,t)?k.call(this,t,e):n.frozen.set(t,e)}else k.call(this,t,e);return this}})}},EUja:function(t,e,n){\"use strict\";var r=n(\"ppGB\"),o=n(\"HYAF\");t.exports=\"\".repeat||function(t){var e=String(o(this)),n=\"\",i=r(t);if(i<0||i==1/0)throw RangeError(\"Wrong number of repetitions\");for(;i>0;(i>>>=1)&&(e+=e))1&i&&(n+=e);return n}},EnZy:function(t,e,n){\"use strict\";var r=n(\"14Sl\"),o=n(\"ROdP\"),i=n(\"glrk\"),a=n(\"HYAF\"),c=n(\"SEBh\"),u=n(\"iqWW\"),s=n(\"UMSQ\"),f=n(\"FMNM\"),l=n(\"kmMV\"),p=n(\"0Dky\"),h=[].push,v=Math.min,d=!p((function(){return!RegExp(4294967295,\"y\")}));r(\"split\",2,(function(t,e,n){var r;return r=\"c\"==\"abbc\".split(/(b)*/)[1]||4!=\"test\".split(/(?:)/,-1).length||2!=\"ab\".split(/(?:ab)*/).length||4!=\".\".split(/(.?)(.?)/).length||\".\".split(/()()/).length>1||\"\".split(/.?/).length?function(t,n){var r=String(a(this)),i=void 0===n?4294967295:n>>>0;if(0===i)return[];if(void 0===t)return[r];if(!o(t))return e.call(r,t,i);for(var c,u,s,f=[],p=0,v=new RegExp(t.source,(t.ignoreCase?\"i\":\"\")+(t.multiline?\"m\":\"\")+(t.unicode?\"u\":\"\")+(t.sticky?\"y\":\"\")+\"g\");(c=l.call(v,r))&&!((u=v.lastIndex)>p&&(f.push(r.slice(p,c.index)),c.length>1&&c.index=i));)v.lastIndex===c.index&&v.lastIndex++;return p===r.length?!s&&v.test(\"\")||f.push(\"\"):f.push(r.slice(p)),f.length>i?f.slice(0,i):f}:\"0\".split(void 0,0).length?function(t,n){return void 0===t&&0===n?[]:e.call(this,t,n)}:e,[function(e,n){var o=a(this),i=null==e?void 0:e[t];return void 0!==i?i.call(e,o,n):r.call(String(o),e,n)},function(t,o){var a=n(r,t,this,o,r!==e);if(a.done)return a.value;var l=i(t),p=String(this),h=c(l,RegExp),g=l.unicode,y=new h(d?l:\"^(?:\"+l.source+\")\",(l.ignoreCase?\"i\":\"\")+(l.multiline?\"m\":\"\")+(l.unicode?\"u\":\"\")+(d?\"y\":\"g\")),b=void 0===o?4294967295:o>>>0;if(0===b)return[];if(0===p.length)return null===f(y,p)?[p]:[];for(var m=0,k=0,E=[];k1?arguments[1]:void 0)}},FF6l:function(t,e,n){\"use strict\";var r=n(\"ewvW\"),o=n(\"I8vh\"),i=n(\"UMSQ\"),a=Math.min;t.exports=[].copyWithin||function(t,e){var n=r(this),c=i(n.length),u=o(t,c),s=o(e,c),f=arguments.length>2?arguments[2]:void 0,l=a((void 0===f?c:o(f,c))-s,c-u),p=1;for(s0;)s in n?n[u]=n[s]:delete n[u],u+=p,s+=p;return n}},FMNM:function(t,e,n){var r=n(\"xrYK\"),o=n(\"kmMV\");t.exports=function(t,e){var n=t.exec;if(\"function\"==typeof n){var i=n.call(t,e);if(\"object\"!=typeof i)throw TypeError(\"RegExp exec method returned something other than an Object or null\");return i}if(\"RegExp\"!==r(t))throw TypeError(\"RegExp#exec called on incompatible receiver\");return o.call(t,e)}},FZtP:function(t,e,n){var r=n(\"2oRo\"),o=n(\"/byt\"),i=n(\"F8JR\"),a=n(\"kRJp\");for(var c in o){var u=r[c],s=u&&u.prototype;if(s&&s.forEach!==i)try{a(s,\"forEach\",i)}catch(f){s.forEach=i}}},\"G+Rx\":function(t,e,n){var r=n(\"0GbY\");t.exports=r(\"document\",\"documentElement\")},GKVU:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"hXpO\");r({target:\"String\",proto:!0,forced:n(\"rwPt\")(\"anchor\")},{anchor:function(t){return o(this,\"a\",\"name\",t)}})},GRPF:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"hXpO\");r({target:\"String\",proto:!0,forced:n(\"rwPt\")(\"fontsize\")},{fontsize:function(t){return o(this,\"font\",\"size\",t)}})},GXvd:function(t,e,n){n(\"dG/n\")(\"species\")},GarU:function(t,e){t.exports=function(t,e,n){if(!(t instanceof e))throw TypeError(\"Incorrect \"+(n?n+\" \":\"\")+\"invocation\");return t}},H0pb:function(t,e,n){n(\"ma9I\"),n(\"07d7\"),n(\"pNMO\"),n(\"tjZM\"),n(\"4Brf\"),n(\"3I1R\"),n(\"7+kd\"),n(\"0oug\"),n(\"KhsS\"),n(\"jt2F\"),n(\"gOCb\"),n(\"a57n\"),n(\"GXvd\"),n(\"I1Gw\"),n(\"gXIK\"),n(\"lEou\"),n(\"gbiT\"),n(\"I9xj\"),n(\"DEfu\");var r=n(\"Qo9l\");t.exports=r.Symbol},HAuM:function(t,e){t.exports=function(t){if(\"function\"!=typeof t)throw TypeError(String(t)+\" is not a function\");return t}},HH4o:function(t,e,n){var r=n(\"tiKp\")(\"iterator\"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(c){}t.exports=function(t,e){if(!e&&!o)return!1;var n=!1;try{var i={};i[r]=function(){return{next:function(){return{done:n=!0}}}},t(i)}catch(c){}return n}},HNyW:function(t,e,n){var r=n(\"NC/Y\");t.exports=/(iphone|ipod|ipad).*applewebkit/i.test(r)},HRxU:function(t,e,n){var r=n(\"I+eb\"),o=n(\"g6v/\");r({target:\"Object\",stat:!0,forced:!o,sham:!o},{defineProperties:n(\"N+g0\")})},HYAF:function(t,e){t.exports=function(t){if(null==t)throw TypeError(\"Can't call method on \"+t);return t}},Hd5f:function(t,e,n){var r=n(\"0Dky\"),o=n(\"tiKp\"),i=n(\"LQDL\"),a=o(\"species\");t.exports=function(t){return i>=51||!r((function(){var e=[];return(e.constructor={})[a]=function(){return{foo:1}},1!==e[t](Boolean).foo}))}},HsHA:function(t,e){var n=Math.log;t.exports=Math.log1p||function(t){return(t=+t)>-1e-8&&t<1e-8?t-t*t/2:n(1+t)}},\"I+eb\":function(t,e,n){var r=n(\"2oRo\"),o=n(\"Bs8V\").f,i=n(\"kRJp\"),a=n(\"busE\"),c=n(\"zk60\"),u=n(\"6JNq\"),s=n(\"lMq5\");t.exports=function(t,e){var n,f,l,p,h,v=t.target,d=t.global,g=t.stat;if(n=d?r:g?r[v]||c(v,{}):(r[v]||{}).prototype)for(f in e){if(p=e[f],l=t.noTargetGet?(h=o(n,f))&&h.value:n[f],!s(d?f:v+(g?\".\":\"#\")+f,t.forced)&&void 0!==l){if(typeof p==typeof l)continue;u(p,l)}(t.sham||l&&l.sham)&&i(p,\"sham\",!0),a(n,f,p,t)}}},I1Gw:function(t,e,n){n(\"dG/n\")(\"split\")},I8vh:function(t,e,n){var r=n(\"ppGB\"),o=Math.max,i=Math.min;t.exports=function(t,e){var n=r(t);return n<0?o(n+e,0):i(n,e)}},I9xj:function(t,e,n){n(\"1E5z\")(Math,\"Math\",!0)},ImZN:function(t,e,n){var r=n(\"glrk\"),o=n(\"6VoE\"),i=n(\"UMSQ\"),a=n(\"A2ZE\"),c=n(\"NaFW\"),u=n(\"m92n\"),s=function(t,e){this.stopped=t,this.result=e};(t.exports=function(t,e,n,f,l){var p,h,v,d,g,y,b,m=a(e,n,f?2:1);if(l)p=t;else{if(\"function\"!=typeof(h=c(t)))throw TypeError(\"Target is not iterable\");if(o(h)){for(v=0,d=i(t.length);d>v;v++)if((g=f?m(r(b=t[v])[0],b[1]):m(t[v]))&&g instanceof s)return g;return new s(!1)}p=h.call(t)}for(y=p.next;!(b=y.call(p)).done;)if(\"object\"==typeof(g=u(p,m,b.value,f))&&g&&g instanceof s)return g;return new s(!1)}).stop=function(t){return new s(!0,t)}},IxXR:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"hXpO\");r({target:\"String\",proto:!0,forced:n(\"rwPt\")(\"strike\")},{strike:function(){return o(this,\"strike\",\"\",\"\")}})},J30X:function(t,e,n){n(\"I+eb\")({target:\"Array\",stat:!0},{isArray:n(\"6LWA\")})},JBy8:function(t,e,n){var r=n(\"yoRg\"),o=n(\"eDl+\").concat(\"length\",\"prototype\");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},JTJg:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"WjRb\"),i=n(\"HYAF\");r({target:\"String\",proto:!0,forced:!n(\"qxPZ\")(\"includes\")},{includes:function(t){return!!~String(i(this)).indexOf(o(t),arguments.length>1?arguments[1]:void 0)}})},JevA:function(t,e,n){var r=n(\"I+eb\"),o=n(\"wg0c\");r({target:\"Number\",stat:!0,forced:Number.parseInt!=o},{parseInt:o})},JfAA:function(t,e,n){\"use strict\";var r=n(\"busE\"),o=n(\"glrk\"),i=n(\"0Dky\"),a=n(\"rW0t\"),c=RegExp.prototype,u=c.toString;(i((function(){return\"/a/b\"!=u.call({source:\"a\",flags:\"b\"})}))||\"toString\"!=u.name)&&r(RegExp.prototype,\"toString\",(function(){var t=o(this),e=String(t.source),n=t.flags;return\"/\"+e+\"/\"+String(void 0===n&&t instanceof RegExp&&!(\"flags\"in c)?a.call(t):n)}),{unsafe:!0})},JiZb:function(t,e,n){\"use strict\";var r=n(\"0GbY\"),o=n(\"m/L8\"),i=n(\"tiKp\"),a=n(\"g6v/\"),c=i(\"species\");t.exports=function(t){var e=r(t);a&&e&&!e[c]&&(0,o.f)(e,c,{configurable:!0,get:function(){return this}})}},KhsS:function(t,e,n){n(\"dG/n\")(\"match\")},KvGi:function(t,e,n){n(\"I+eb\")({target:\"Math\",stat:!0},{sign:n(\"90hW\")})},Kxld:function(t,e,n){n(\"I+eb\")({target:\"Object\",stat:!0},{is:n(\"Ep9I\")})},LKBx:function(t,e,n){\"use strict\";var r,o=n(\"I+eb\"),i=n(\"Bs8V\").f,a=n(\"UMSQ\"),c=n(\"WjRb\"),u=n(\"HYAF\"),s=n(\"qxPZ\"),f=n(\"xDBR\"),l=\"\".startsWith,p=Math.min,h=s(\"startsWith\");o({target:\"String\",proto:!0,forced:!(!f&&!h&&(r=i(String.prototype,\"startsWith\"),r&&!r.writable)||h)},{startsWith:function(t){var e=String(u(this));c(t);var n=a(p(arguments.length>1?arguments[1]:void 0,e.length)),r=String(t);return l?l.call(e,r,n):e.slice(n,n+r.length)===r}})},LPSS:function(t,e,n){var r,o,i,a=n(\"2oRo\"),c=n(\"0Dky\"),u=n(\"xrYK\"),s=n(\"A2ZE\"),f=n(\"G+Rx\"),l=n(\"zBJ4\"),p=n(\"HNyW\"),h=a.location,v=a.setImmediate,d=a.clearImmediate,g=a.process,y=a.MessageChannel,b=a.Dispatch,m=0,k={},E=function(t){if(k.hasOwnProperty(t)){var e=k[t];delete k[t],e()}},S=function(t){return function(){E(t)}},x=function(t){E(t.data)},w=function(t){a.postMessage(t+\"\",h.protocol+\"//\"+h.host)};v&&d||(v=function(t){for(var e=[],n=1;arguments.length>n;)e.push(arguments[n++]);return k[++m]=function(){(\"function\"==typeof t?t:Function(t)).apply(void 0,e)},r(m),m},d=function(t){delete k[t]},\"process\"==u(g)?r=function(t){g.nextTick(S(t))}:b&&b.now?r=function(t){b.now(S(t))}:y&&!p?(i=(o=new y).port2,o.port1.onmessage=x,r=s(i.postMessage,i,1)):!a.addEventListener||\"function\"!=typeof postMessage||a.importScripts||c(w)?r=\"onreadystatechange\"in l(\"script\")?function(t){f.appendChild(l(\"script\")).onreadystatechange=function(){f.removeChild(this),E(t)}}:function(t){setTimeout(S(t),0)}:(r=w,a.addEventListener(\"message\",x,!1))),t.exports={set:v,clear:d}},LQDL:function(t,e,n){var r,o,i=n(\"2oRo\"),a=n(\"NC/Y\"),c=i.process,u=c&&c.versions,s=u&&u.v8;s?o=(r=s.split(\".\"))[0]+r[1]:a&&(!(r=a.match(/Edge\\/(\\d+)/))||r[1]>=74)&&(r=a.match(/Chrome\\/(\\d+)/))&&(o=r[1]),t.exports=o&&+o},\"N+g0\":function(t,e,n){var r=n(\"g6v/\"),o=n(\"m/L8\"),i=n(\"glrk\"),a=n(\"33Wh\");t.exports=r?Object.defineProperties:function(t,e){i(t);for(var n,r=a(e),c=r.length,u=0;c>u;)o.f(t,n=r[u++],e[n]);return t}},\"N/DB\":function(t,e){var n=\"undefined\"!=typeof globalThis&&globalThis,r=\"undefined\"!=typeof window&&window,o=\"undefined\"!=typeof self&&\"undefined\"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&self,i=\"undefined\"!=typeof global&&global;function a(t,e){return\":\"===e.charAt(0)?t.substring(function(t,e){for(var n=1,r=1;n1?n-1:0),o=1;o=n.length?{value:void 0,done:!0}:(t=r(n,o),e.index+=t.length,{value:t,done:!1})}))},PqOI:function(t,e,n){var r=n(\"I+eb\"),o=n(\"90hW\"),i=Math.abs,a=Math.pow;r({target:\"Math\",stat:!0},{cbrt:function(t){return o(t=+t)*a(i(t),1/3)}})},QFcT:function(t,e,n){var r=n(\"I+eb\"),o=Math.hypot,i=Math.abs,a=Math.sqrt;r({target:\"Math\",stat:!0,forced:!!o&&o(1/0,NaN)!==1/0},{hypot:function(t,e){for(var n,r,o=0,c=0,u=arguments.length,s=0;c0?(r=n/s)*r:n;return s===1/0?1/0:s*a(o)}})},QIpd:function(t,e,n){var r=n(\"xrYK\");t.exports=function(t){if(\"number\"!=typeof t&&\"Number\"!=r(t))throw TypeError(\"Incorrect invocation\");return+t}},QNnp:function(t,e,n){var r=n(\"I+eb\"),o=Math.floor,i=Math.log,a=Math.LOG2E;r({target:\"Math\",stat:!0},{clz32:function(t){return(t>>>=0)?31-o(i(t+.5)*a):32}})},QWBl:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"F8JR\");r({target:\"Array\",proto:!0,forced:[].forEach!=o},{forEach:o})},Qo9l:function(t,e,n){var r=n(\"2oRo\");t.exports=r},R0gw:function(t,e,n){var r,o;void 0===(o=\"function\"==typeof(r=function(){\"use strict\";var t,e,n,r,o,i;function a(){t=Zone.__symbol__,e=Object[t(\"defineProperty\")]=Object.defineProperty,n=Object[t(\"getOwnPropertyDescriptor\")]=Object.getOwnPropertyDescriptor,r=Object.create,o=t(\"unconfigurables\"),Object.defineProperty=function(t,e,n){if(u(t,e))throw new TypeError(\"Cannot assign to read only property '\"+e+\"' of \"+t);var r=n.configurable;return\"prototype\"!==e&&(n=s(t,e,n)),f(t,e,n,r)},Object.defineProperties=function(t,e){return Object.keys(e).forEach((function(n){Object.defineProperty(t,n,e[n])})),t},Object.create=function(t,e){return\"object\"!=typeof e||Object.isFrozen(e)||Object.keys(e).forEach((function(n){e[n]=s(t,n,e[n])})),r(t,e)},Object.getOwnPropertyDescriptor=function(t,e){var r=n(t,e);return r&&u(t,e)&&(r.configurable=!1),r}}function c(t,e,n){var r=n.configurable;return f(t,e,n=s(t,e,n),r)}function u(t,e){return t&&t[o]&&t[o][e]}function s(t,n,r){return Object.isFrozen(r)||(r.configurable=!0),r.configurable||(t[o]||Object.isFrozen(t)||e(t,o,{writable:!0,value:{}}),t[o]&&(t[o][n]=!0)),r}function f(t,n,r,o){try{return e(t,n,r)}catch(a){if(!r.configurable)throw a;void 0===o?delete r.configurable:r.configurable=o;try{return e(t,n,r)}catch(a){var i=null;try{i=JSON.stringify(r)}catch(a){i=r.toString()}console.log(\"Attempting to configure '\"+n+\"' with descriptor '\"+i+\"' on object '\"+t+\"' and got error, giving up: \"+a)}}}function l(t,e){var n=e.getGlobalObjects(),r=n.eventNames,o=n.globalSources,i=n.zoneSymbolEventNames,a=n.TRUE_STR,c=n.FALSE_STR,u=n.ZONE_SYMBOL_PREFIX,s=\"ApplicationCache,EventSource,FileReader,InputMethodContext,MediaController,MessagePort,Node,Performance,SVGElementInstance,SharedWorker,TextTrack,TextTrackCue,TextTrackList,WebKitNamedFlow,Window,Worker,WorkerGlobalScope,XMLHttpRequest,XMLHttpRequestEventTarget,XMLHttpRequestUpload,IDBRequest,IDBOpenDBRequest,IDBDatabase,IDBTransaction,IDBCursor,DBIndex,WebSocket\".split(\",\"),f=[],l=t.wtf,p=\"Anchor,Area,Audio,BR,Base,BaseFont,Body,Button,Canvas,Content,DList,Directory,Div,Embed,FieldSet,Font,Form,Frame,FrameSet,HR,Head,Heading,Html,IFrame,Image,Input,Keygen,LI,Label,Legend,Link,Map,Marquee,Media,Menu,Meta,Meter,Mod,OList,Object,OptGroup,Option,Output,Paragraph,Pre,Progress,Quote,Script,Select,Source,Span,Style,TableCaption,TableCell,TableCol,Table,TableRow,TableSection,TextArea,Title,Track,UList,Unknown,Video\".split(\",\");l?f=p.map((function(t){return\"HTML\"+t+\"Element\"})).concat(s):t.EventTarget?f.push(\"EventTarget\"):f=s;for(var h=t.__Zone_disable_IE_check||!1,v=t.__Zone_enable_cross_context_check||!1,d=e.isIEOrEdge(),g=\"function __BROWSERTOOLS_CONSOLE_SAFEFUNC() { [native code] }\",y={MSPointerCancel:\"pointercancel\",MSPointerDown:\"pointerdown\",MSPointerEnter:\"pointerenter\",MSPointerHover:\"pointerhover\",MSPointerLeave:\"pointerleave\",MSPointerMove:\"pointermove\",MSPointerOut:\"pointerout\",MSPointerOver:\"pointerover\",MSPointerUp:\"pointerup\"},b=0;b1?new i(e,n):new i(e),s=t.ObjectGetOwnPropertyDescriptor(u,\"onmessage\");return s&&!1===s.configurable?(a=t.ObjectCreate(u),c=u,[r,o,\"send\",\"close\"].forEach((function(e){a[e]=function(){var n=t.ArraySlice.call(arguments);if(e===r||e===o){var i=n.length>0?n[0]:void 0;if(i){var c=Zone.__symbol__(\"ON_PROPERTY\"+i);u[c]=a[c]}}return u[e].apply(u,n)}}))):a=u,t.patchOnProperties(a,[\"close\",\"error\",\"message\",\"open\"],c),a};var a=e.WebSocket;for(var c in i)a[c]=i[c]}(t,e),Zone[t.symbol(\"patchEvents\")]=!0}}(i=\"undefined\"!=typeof window?window:\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:{})[(i.__Zone_symbol_prefix||\"__zone_symbol__\")+\"legacyPatch\"]=function(){var t=i.Zone;t.__load_patch(\"defineProperty\",(function(t,e,n){n._redefineProperty=c,a()})),t.__load_patch(\"registerElement\",(function(t,e,n){!function(t,e){var n=e.getGlobalObjects();(n.isBrowser||n.isMix)&&\"registerElement\"in t.document&&e.patchCallbacks(e,document,\"Document\",\"registerElement\",[\"createdCallback\",\"attachedCallback\",\"detachedCallback\",\"attributeChangedCallback\"])}(t,n)})),t.__load_patch(\"EventTargetLegacy\",(function(t,e,n){l(t,n),p(n,t)}))}})?r.call(e,n,e,t):r)||(t.exports=o)},RK3t:function(t,e,n){var r=n(\"0Dky\"),o=n(\"xrYK\"),i=\"\".split;t.exports=r((function(){return!Object(\"z\").propertyIsEnumerable(0)}))?function(t){return\"String\"==o(t)?i.call(t,\"\"):Object(t)}:Object},RN6c:function(t,e,n){var r=n(\"2oRo\");t.exports=function(t,e){var n=r.console;n&&n.error&&(1===arguments.length?n.error(t):n.error(t,e))}},RNIs:function(t,e,n){var r=n(\"tiKp\"),o=n(\"fHMY\"),i=n(\"m/L8\"),a=r(\"unscopables\"),c=Array.prototype;null==c[a]&&i.f(c,a,{configurable:!0,value:o(null)}),t.exports=function(t){c[a][t]=!0}},ROdP:function(t,e,n){var r=n(\"hh1v\"),o=n(\"xrYK\"),i=n(\"tiKp\")(\"match\");t.exports=function(t){var e;return r(t)&&(void 0!==(e=t[i])?!!e:\"RegExp\"==o(t))}},Rfxz:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"tycR\").some,i=n(\"pkCn\"),a=n(\"rkAj\"),c=i(\"some\"),u=a(\"some\");r({target:\"Array\",proto:!0,forced:!c||!u},{some:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},Rm1S:function(t,e,n){\"use strict\";var r=n(\"14Sl\"),o=n(\"glrk\"),i=n(\"UMSQ\"),a=n(\"HYAF\"),c=n(\"iqWW\"),u=n(\"FMNM\");r(\"match\",1,(function(t,e,n){return[function(e){var n=a(this),r=null==e?void 0:e[t];return void 0!==r?r.call(e,n):new RegExp(e)[t](String(n))},function(t){var r=n(e,t,this);if(r.done)return r.value;var a=o(t),s=String(this);if(!a.global)return u(a,s);var f=a.unicode;a.lastIndex=0;for(var l,p=[],h=0;null!==(l=u(a,s));){var v=String(l[0]);p[h]=v,\"\"===v&&(a.lastIndex=c(s,i(a.lastIndex),f)),h++}return 0===h?null:p}]}))},SEBh:function(t,e,n){var r=n(\"glrk\"),o=n(\"HAuM\"),i=n(\"tiKp\")(\"species\");t.exports=function(t,e){var n,a=r(t).constructor;return void 0===a||null==(n=r(a)[i])?e:o(n)}},STAE:function(t,e,n){var r=n(\"0Dky\");t.exports=!!Object.getOwnPropertySymbols&&!r((function(){return!String(Symbol())}))},SYor:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"WKiH\").trim;r({target:\"String\",proto:!0,forced:n(\"yNLB\")(\"trim\")},{trim:function(){return o(this)}})},TFPT:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"hXpO\");r({target:\"String\",proto:!0,forced:n(\"rwPt\")(\"sub\")},{sub:function(){return o(this,\"sub\",\"\",\"\")}})},TWNs:function(t,e,n){var r=n(\"g6v/\"),o=n(\"2oRo\"),i=n(\"lMq5\"),a=n(\"cVYH\"),c=n(\"m/L8\").f,u=n(\"JBy8\").f,s=n(\"ROdP\"),f=n(\"rW0t\"),l=n(\"n3/R\"),p=n(\"busE\"),h=n(\"0Dky\"),v=n(\"afO8\").set,d=n(\"JiZb\"),g=n(\"tiKp\")(\"match\"),y=o.RegExp,b=y.prototype,m=/a/g,k=/a/g,E=new y(m)!==m,S=l.UNSUPPORTED_Y;if(r&&i(\"RegExp\",!E||S||h((function(){return k[g]=!1,y(m)!=m||y(k)==k||\"/a/i\"!=y(m,\"i\")})))){for(var x=function t(e,n){var r,o=this instanceof t,i=s(e),c=void 0===n;if(!o&&i&&e.constructor===t&&c)return e;E?i&&!c&&(e=e.source):e instanceof t&&(c&&(n=f.call(e)),e=e.source),S&&(r=!!n&&n.indexOf(\"y\")>-1)&&(n=n.replace(/y/g,\"\"));var u=a(E?new y(e,n):y(e,n),o?this:b,t);return S&&r&&v(u,{sticky:r}),u},w=function(t){t in x||c(x,t,{configurable:!0,get:function(){return y[t]},set:function(e){y[t]=e}})},_=u(y),T=0;_.length>T;)w(_[T++]);b.constructor=x,x.prototype=b,p(o,\"RegExp\",x)}d(\"RegExp\")},TWQb:function(t,e,n){var r=n(\"/GqU\"),o=n(\"UMSQ\"),i=n(\"I8vh\"),a=function(t){return function(e,n,a){var c,u=r(e),s=o(u.length),f=i(a,s);if(t&&n!=n){for(;s>f;)if((c=u[f++])!=c)return!0}else for(;s>f;f++)if((t||f in u)&&u[f]===n)return t||f||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},TeQF:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"tycR\").filter,i=n(\"Hd5f\"),a=n(\"rkAj\"),c=i(\"filter\"),u=a(\"filter\");r({target:\"Array\",proto:!0,forced:!c||!u},{filter:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},TfTi:function(t,e,n){\"use strict\";var r=n(\"A2ZE\"),o=n(\"ewvW\"),i=n(\"m92n\"),a=n(\"6VoE\"),c=n(\"UMSQ\"),u=n(\"hBjN\"),s=n(\"NaFW\");t.exports=function(t){var e,n,f,l,p,h,v=o(t),d=\"function\"==typeof this?this:Array,g=arguments.length,y=g>1?arguments[1]:void 0,b=void 0!==y,m=s(v),k=0;if(b&&(y=r(y,g>2?arguments[2]:void 0,2)),null==m||d==Array&&a(m))for(n=new d(e=c(v.length));e>k;k++)h=b?y(v[k],k):v[k],u(n,k,h);else for(p=(l=m.call(v)).next,n=new d;!(f=p.call(l)).done;k++)h=b?i(l,y,[f.value,k],!0):f.value,u(n,k,h);return n.length=k,n}},ToJy:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"HAuM\"),i=n(\"ewvW\"),a=n(\"0Dky\"),c=n(\"pkCn\"),u=[],s=u.sort,f=a((function(){u.sort(void 0)})),l=a((function(){u.sort(null)})),p=c(\"sort\");r({target:\"Array\",proto:!0,forced:f||!l||!p},{sort:function(t){return void 0===t?s.call(i(this)):s.call(i(this),o(t))}})},Tskq:function(t,e,n){\"use strict\";var r=n(\"bWFh\"),o=n(\"ZWaQ\");t.exports=r(\"Map\",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),o)},U3f4:function(t,e,n){var r=n(\"g6v/\"),o=n(\"m/L8\"),i=n(\"rW0t\"),a=n(\"n3/R\").UNSUPPORTED_Y;r&&(\"g\"!=/./g.flags||a)&&o.f(RegExp.prototype,\"flags\",{configurable:!0,get:i})},UMSQ:function(t,e,n){var r=n(\"ppGB\"),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},UTVS:function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},UesL:function(t,e,n){\"use strict\";var r=n(\"glrk\"),o=n(\"wE6v\");t.exports=function(t){if(\"string\"!==t&&\"number\"!==t&&\"default\"!==t)throw TypeError(\"Incorrect hint\");return o(r(this),\"number\"!==t)}},UxlC:function(t,e,n){\"use strict\";var r=n(\"14Sl\"),o=n(\"glrk\"),i=n(\"ewvW\"),a=n(\"UMSQ\"),c=n(\"ppGB\"),u=n(\"HYAF\"),s=n(\"iqWW\"),f=n(\"FMNM\"),l=Math.max,p=Math.min,h=Math.floor,v=/\\$([$&'`]|\\d\\d?|<[^>]*>)/g,d=/\\$([$&'`]|\\d\\d?)/g;r(\"replace\",2,(function(t,e,n,r){var g=r.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE,y=r.REPLACE_KEEPS_$0,b=g?\"$\":\"$0\";return[function(n,r){var o=u(this),i=null==n?void 0:n[t];return void 0!==i?i.call(n,o,r):e.call(String(o),n,r)},function(t,r){if(!g&&y||\"string\"==typeof r&&-1===r.indexOf(b)){var i=n(e,t,this,r);if(i.done)return i.value}var u=o(t),h=String(this),v=\"function\"==typeof r;v||(r=String(r));var d=u.global;if(d){var k=u.unicode;u.lastIndex=0}for(var E=[];;){var S=f(u,h);if(null===S)break;if(E.push(S),!d)break;\"\"===String(S[0])&&(u.lastIndex=s(h,a(u.lastIndex),k))}for(var x,w=\"\",_=0,T=0;T=_&&(w+=h.slice(_,I)+M,_=I+O.length)}return w+h.slice(_)}];function m(t,n,r,o,a,c){var u=r+t.length,s=o.length,f=d;return void 0!==a&&(a=i(a),f=v),e.call(c,f,(function(e,i){var c;switch(i.charAt(0)){case\"$\":return\"$\";case\"&\":return t;case\"`\":return n.slice(0,r);case\"'\":return n.slice(u);case\"<\":c=a[i.slice(1,-1)];break;default:var f=+i;if(0===f)return e;if(f>s){var l=h(f/10);return 0===l?e:l<=s?void 0===o[l-1]?i.charAt(1):o[l-1]+i.charAt(1):e}c=o[f-1]}return void 0===c?\"\":c}))}}))},Uydy:function(t,e,n){var r=n(\"I+eb\"),o=n(\"HsHA\"),i=Math.acosh,a=Math.log,c=Math.sqrt,u=Math.LN2;r({target:\"Math\",stat:!0,forced:!i||710!=Math.floor(i(Number.MAX_VALUE))||i(1/0)!=1/0},{acosh:function(t){return(t=+t)<1?NaN:t>94906265.62425156?a(t)+u:o(t-1+c(t-1)*c(t+1))}})},VC3L:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"0Dky\"),i=n(\"QIpd\"),a=1..toPrecision;r({target:\"Number\",proto:!0,forced:o((function(){return\"1\"!==a.call(1,void 0)}))||!o((function(){a.call({})}))},{toPrecision:function(t){return void 0===t?a.call(i(this)):a.call(i(this),t)}})},VpIT:function(t,e,n){var r=n(\"xDBR\"),o=n(\"xs3f\");(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})(\"versions\",[]).push({version:\"3.6.4\",mode:r?\"pure\":\"global\",copyright:\"\\xa9 2020 Denis Pushkarev (zloirock.ru)\"})},Vu81:function(t,e,n){var r=n(\"0GbY\"),o=n(\"JBy8\"),i=n(\"dBg+\"),a=n(\"glrk\");t.exports=r(\"Reflect\",\"ownKeys\")||function(t){var e=o.f(a(t)),n=i.f;return n?e.concat(n(t)):e}},WDsR:function(t,e,n){var r=n(\"I+eb\"),o=n(\"Xol8\"),i=Math.abs;r({target:\"Number\",stat:!0},{isSafeInteger:function(t){return o(t)&&i(t)<=9007199254740991}})},WJkJ:function(t,e){t.exports=\"\\t\\n\\v\\f\\r \\xa0\\u1680\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\u2028\\u2029\\ufeff\"},WKiH:function(t,e,n){var r=n(\"HYAF\"),o=\"[\"+n(\"WJkJ\")+\"]\",i=RegExp(\"^\"+o+o+\"*\"),a=RegExp(o+o+\"*$\"),c=function(t){return function(e){var n=String(r(e));return 1&t&&(n=n.replace(i,\"\")),2&t&&(n=n.replace(a,\"\")),n}};t.exports={start:c(1),end:c(2),trim:c(3)}},WjRb:function(t,e,n){var r=n(\"ROdP\");t.exports=function(t){if(r(t))throw TypeError(\"The method doesn't accept regular expressions\");return t}},XGwC:function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},Xe3L:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"0Dky\"),i=n(\"hBjN\");r({target:\"Array\",stat:!0,forced:o((function(){function t(){}return!(Array.of.call(t)instanceof t)}))},{of:function(){for(var t=0,e=arguments.length,n=new(\"function\"==typeof this?this:Array)(e);e>t;)i(n,t,arguments[t++]);return n.length=e,n}})},Xol8:function(t,e,n){var r=n(\"hh1v\"),o=Math.floor;t.exports=function(t){return!r(t)&&isFinite(t)&&o(t)===t}},YGK4:function(t,e,n){\"use strict\";var r=n(\"bWFh\"),o=n(\"ZWaQ\");t.exports=r(\"Set\",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),o)},YNrV:function(t,e,n){\"use strict\";var r=n(\"g6v/\"),o=n(\"0Dky\"),i=n(\"33Wh\"),a=n(\"dBg+\"),c=n(\"0eef\"),u=n(\"ewvW\"),s=n(\"RK3t\"),f=Object.assign,l=Object.defineProperty;t.exports=!f||o((function(){if(r&&1!==f({b:1},f(l({},\"a\",{enumerable:!0,get:function(){l(this,\"b\",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol();return t[n]=7,\"abcdefghijklmnopqrst\".split(\"\").forEach((function(t){e[t]=t})),7!=f({},t)[n]||\"abcdefghijklmnopqrst\"!=i(f({},e)).join(\"\")}))?function(t,e){for(var n=u(t),o=arguments.length,f=1,l=a.f,p=c.f;o>f;)for(var h,v=s(arguments[f++]),d=l?i(v).concat(l(v)):i(v),g=d.length,y=0;g>y;)h=d[y++],r&&!p.call(v,h)||(n[h]=v[h]);return n}:f},ZOXb:function(t,e,n){\"use strict\";var r=n(\"0Dky\"),o=n(\"DMt2\").start,i=Math.abs,a=Date.prototype,c=a.getTime,u=a.toISOString;t.exports=r((function(){return\"0385-07-25T07:06:39.999Z\"!=u.call(new Date(-50000000000001))}))||!r((function(){u.call(new Date(NaN))}))?function(){if(!isFinite(c.call(this)))throw RangeError(\"Invalid time value\");var t=this.getUTCFullYear(),e=this.getUTCMilliseconds(),n=t<0?\"-\":t>9999?\"+\":\"\";return n+o(i(t),n?6:4,0)+\"-\"+o(this.getUTCMonth()+1,2,0)+\"-\"+o(this.getUTCDate(),2,0)+\"T\"+o(this.getUTCHours(),2,0)+\":\"+o(this.getUTCMinutes(),2,0)+\":\"+o(this.getUTCSeconds(),2,0)+\".\"+o(e,3,0)+\"Z\"}:u},ZUd8:function(t,e,n){var r=n(\"ppGB\"),o=n(\"HYAF\"),i=function(t){return function(e,n){var i,a,c=String(o(e)),u=r(n),s=c.length;return u<0||u>=s?t?\"\":void 0:(i=c.charCodeAt(u))<55296||i>56319||u+1===s||(a=c.charCodeAt(u+1))<56320||a>57343?t?c.charAt(u):i:t?c.slice(u,u+2):a-56320+(i-55296<<10)+65536}};t.exports={codeAt:i(!1),charAt:i(!0)}},ZWaQ:function(t,e,n){\"use strict\";var r=n(\"m/L8\").f,o=n(\"fHMY\"),i=n(\"4syw\"),a=n(\"A2ZE\"),c=n(\"GarU\"),u=n(\"ImZN\"),s=n(\"fdAy\"),f=n(\"JiZb\"),l=n(\"g6v/\"),p=n(\"8YOa\").fastKey,h=n(\"afO8\"),v=h.set,d=h.getterFor;t.exports={getConstructor:function(t,e,n,s){var f=t((function(t,r){c(t,f,e),v(t,{type:e,index:o(null),first:void 0,last:void 0,size:0}),l||(t.size=0),null!=r&&u(r,t[s],t,n)})),h=d(e),g=function(t,e,n){var r,o,i=h(t),a=y(t,e);return a?a.value=n:(i.last=a={index:o=p(e,!0),key:e,value:n,previous:r=i.last,next:void 0,removed:!1},i.first||(i.first=a),r&&(r.next=a),l?i.size++:t.size++,\"F\"!==o&&(i.index[o]=a)),t},y=function(t,e){var n,r=h(t),o=p(e);if(\"F\"!==o)return r.index[o];for(n=r.first;n;n=n.next)if(n.key==e)return n};return i(f.prototype,{clear:function(){for(var t=h(this),e=t.index,n=t.first;n;)n.removed=!0,n.previous&&(n.previous=n.previous.next=void 0),delete e[n.index],n=n.next;t.first=t.last=void 0,l?t.size=0:this.size=0},delete:function(t){var e=h(this),n=y(this,t);if(n){var r=n.next,o=n.previous;delete e.index[n.index],n.removed=!0,o&&(o.next=r),r&&(r.previous=o),e.first==n&&(e.first=r),e.last==n&&(e.last=o),l?e.size--:this.size--}return!!n},forEach:function(t){for(var e,n=h(this),r=a(t,arguments.length>1?arguments[1]:void 0,3);e=e?e.next:n.first;)for(r(e.value,e.key,this);e&&e.removed;)e=e.previous},has:function(t){return!!y(this,t)}}),i(f.prototype,n?{get:function(t){var e=y(this,t);return e&&e.value},set:function(t,e){return g(this,0===t?0:t,e)}}:{add:function(t){return g(this,t=0===t?0:t,t)}}),l&&r(f.prototype,\"size\",{get:function(){return h(this).size}}),f},setStrong:function(t,e,n){var r=e+\" Iterator\",o=d(e),i=d(r);s(t,e,(function(t,e){v(this,{type:r,target:t,state:o(t),kind:e,last:void 0})}),(function(){for(var t=i(this),e=t.kind,n=t.last;n&&n.removed;)n=n.previous;return t.target&&(t.last=n=n?n.next:t.state.first)?\"keys\"==e?{value:n.key,done:!1}:\"values\"==e?{value:n.value,done:!1}:{value:[n.key,n.value],done:!1}:(t.target=void 0,{value:void 0,done:!0})}),n?\"entries\":\"values\",!n,!0),f(e)}}},ZfDv:function(t,e,n){var r=n(\"hh1v\"),o=n(\"6LWA\"),i=n(\"tiKp\")(\"species\");t.exports=function(t,e){var n;return o(t)&&(\"function\"!=typeof(n=t.constructor)||n!==Array&&!o(n.prototype)?r(n)&&null===(n=n[i])&&(n=void 0):n=void 0),new(void 0===n?Array:n)(0===e?0:e)}},Zk8X:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"hXpO\");r({target:\"String\",proto:!0,forced:n(\"rwPt\")(\"sup\")},{sup:function(){return o(this,\"sup\",\"\",\"\")}})},a57n:function(t,e,n){n(\"dG/n\")(\"search\")},a5NK:function(t,e,n){var r=n(\"I+eb\"),o=Math.log,i=Math.LOG10E;r({target:\"Math\",stat:!0},{log10:function(t){return o(t)*i}})},afO8:function(t,e,n){var r,o,i,a=n(\"f5p1\"),c=n(\"2oRo\"),u=n(\"hh1v\"),s=n(\"kRJp\"),f=n(\"UTVS\"),l=n(\"93I0\"),p=n(\"0BK2\");if(a){var h=new(0,c.WeakMap),v=h.get,d=h.has,g=h.set;r=function(t,e){return g.call(h,t,e),e},o=function(t){return v.call(h,t)||{}},i=function(t){return d.call(h,t)}}else{var y=l(\"state\");p[y]=!0,r=function(t,e){return s(t,y,e),e},o=function(t){return f(t,y)?t[y]:{}},i=function(t){return f(t,y)}}t.exports={set:r,get:o,has:i,enforce:function(t){return i(t)?o(t):r(t,{})},getterFor:function(t){return function(e){var n;if(!u(e)||(n=o(e)).type!==t)throw TypeError(\"Incompatible receiver, \"+t+\" required\");return n}}}},bWFh:function(t,e,n){\"use strict\";var r=n(\"I+eb\"),o=n(\"2oRo\"),i=n(\"lMq5\"),a=n(\"busE\"),c=n(\"8YOa\"),u=n(\"ImZN\"),s=n(\"GarU\"),f=n(\"hh1v\"),l=n(\"0Dky\"),p=n(\"HH4o\"),h=n(\"1E5z\"),v=n(\"cVYH\");t.exports=function(t,e,n){var d=-1!==t.indexOf(\"Map\"),g=-1!==t.indexOf(\"Weak\"),y=d?\"set\":\"add\",b=o[t],m=b&&b.prototype,k=b,E={},S=function(t){var e=m[t];a(m,t,\"add\"==t?function(t){return e.call(this,0===t?0:t),this}:\"delete\"==t?function(t){return!(g&&!f(t))&&e.call(this,0===t?0:t)}:\"get\"==t?function(t){return g&&!f(t)?void 0:e.call(this,0===t?0:t)}:\"has\"==t?function(t){return!(g&&!f(t))&&e.call(this,0===t?0:t)}:function(t,n){return e.call(this,0===t?0:t,n),this})};if(i(t,\"function\"!=typeof b||!(g||m.forEach&&!l((function(){(new b).entries().next()})))))k=n.getConstructor(e,t,d,y),c.REQUIRED=!0;else if(i(t,!0)){var x=new k,w=x[y](g?{}:-0,1)!=x,_=l((function(){x.has(1)})),T=p((function(t){new b(t)})),O=!g&&l((function(){for(var t=new b,e=5;e--;)t[y](e,e);return!t.has(-0)}));T||((k=e((function(e,n){s(e,k,t);var r=v(new b,e,k);return null!=n&&u(n,r[y],r,d),r}))).prototype=m,m.constructor=k),(_||O)&&(S(\"delete\"),S(\"has\"),d&&S(\"get\")),(O||w)&&S(y),g&&m.clear&&delete m.clear}return E[t]=k,r({global:!0,forced:k!=b},E),h(k,t),g||n.setStrong(k,t,d),k}},brp2:function(t,e,n){n(\"I+eb\")({target:\"Date\",stat:!0},{now:function(){return(new Date).getTime()}})},busE:function(t,e,n){var r=n(\"2oRo\"),o=n(\"kRJp\"),i=n(\"UTVS\"),a=n(\"zk60\"),c=n(\"iSVu\"),u=n(\"afO8\"),s=u.get,f=u.enforce,l=String(String).split(\"String\");(t.exports=function(t,e,n,c){var u=!!c&&!!c.unsafe,s=!!c&&!!c.enumerable,p=!!c&&!!c.noTargetGet;\"function\"==typeof n&&(\"string\"!=typeof e||i(n,\"name\")||o(n,\"name\",e),f(n).source=l.join(\"string\"==typeof e?e:\"\")),t!==r?(u?!p&&t[e]&&(s=!0):delete t[e],s?t[e]=n:o(t,e,n)):s?t[e]=n:a(e,n)})(Function.prototype,\"toString\",(function(){return\"function\"==typeof this&&s(this).source||c(this)}))},cDke:function(t,e,n){var r=n(\"I+eb\"),o=n(\"0Dky\"),i=n(\"BX/b\").f;r({target:\"Object\",stat:!0,forced:o((function(){return!Object.getOwnPropertyNames(1)}))},{getOwnPropertyNames:i})},cVYH:function(t,e,n){var r=n(\"hh1v\"),o=n(\"0rvr\");t.exports=function(t,e,n){var i,a;return o&&\"function\"==typeof(i=e.constructor)&&i!==n&&r(a=i.prototype)&&a!==n.prototype&&o(t,a),t}},\"dBg+\":function(t,e){e.f=Object.getOwnPropertySymbols},\"dG/n\":function(t,e,n){var r=n(\"Qo9l\"),o=n(\"UTVS\"),i=n(\"5Tg+\"),a=n(\"m/L8\").f;t.exports=function(t){var e=r.Symbol||(r.Symbol={});o(e,t)||a(e,t,{value:i.f(t)})}},\"eDl+\":function(t,e){t.exports=[\"constructor\",\"hasOwnProperty\",\"isPrototypeOf\",\"propertyIsEnumerable\",\"toLocaleString\",\"toString\",\"valueOf\"]},eJiR:function(t,e,n){var r=n(\"I+eb\"),o=n(\"jrUv\"),i=Math.exp;r({target:\"Math\",stat:!0},{tanh:function(t){var e=o(t=+t),n=o(-t);return e==1/0?1:n==1/0?-1:(e-n)/(i(t)+i(-t))}})},eajv:function(t,e,n){var r=n(\"I+eb\"),o=Math.asinh,i=Math.log,a=Math.sqrt;r({target:\"Math\",stat:!0,forced:!(o&&1/o(0)>0)},{asinh:function t(e){return isFinite(e=+e)&&0!=e?e<0?-t(-e):i(e+a(e*e+1)):e}})},eoL8:function(t,e,n){var r=n(\"I+eb\"),o=n(\"g6v/\");r({target:\"Object\",stat:!0,forced:!o,sham:!o},{defineProperty:n(\"m/L8\").f})},ewvW:function(t,e,n){var r=n(\"HYAF\");t.exports=function(t){return Object(r(t))}},f5p1:function(t,e,n){var r=n(\"2oRo\"),o=n(\"iSVu\"),i=r.WeakMap;t.exports=\"function\"==typeof i&&/native code/.test(o(i))},fHMY:function(t,e,n){var r,o=n(\"glrk\"),i=n(\"N+g0\"),a=n(\"eDl+\"),c=n(\"0BK2\"),u=n(\"G+Rx\"),s=n(\"zBJ4\"),f=n(\"93I0\")(\"IE_PROTO\"),l=function(){},p=function(t){return\"